UNPKG

@nagwa-limited/mathlive

Version:

A web component for math input

1,223 lines (1,218 loc) 1.42 MB
/** Nagwa MathLive 3.3.33 */ (function(global,factory){typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : typeof define === 'function' && define.amd ? define(['exports'],factory):(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.MathLive = {}));})(this, (function (exports) { 'use strict'; var MathLive = (() => { var __defProp = Object.defineProperty; var __defProps = Object.defineProperties; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropDescs = Object.getOwnPropertyDescriptors; var __getOwnPropNames = Object.getOwnPropertyNames; var __getOwnPropSymbols = Object.getOwnPropertySymbols; var __hasOwnProp = Object.prototype.hasOwnProperty; var __propIsEnum = Object.prototype.propertyIsEnumerable; var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value; var __spreadValues = (a, b) => { for (var prop in b || (b = {})) if (__hasOwnProp.call(b, prop)) __defNormalProp(a, prop, b[prop]); if (__getOwnPropSymbols) for (var prop of __getOwnPropSymbols(b)) { if (__propIsEnum.call(b, prop)) __defNormalProp(a, prop, b[prop]); } return a; }; var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b)); var __restKey = (key) => typeof key === "symbol" ? key : key + ""; var __objRest = (source, exclude) => { var target = {}; for (var prop in source) if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0) target[prop] = source[prop]; if (source != null && __getOwnPropSymbols) for (var prop of __getOwnPropSymbols(source)) { if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop)) target[prop] = source[prop]; } return target; }; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); // src/mathlive.ts var mathlive_exports = {}; __export(mathlive_exports, { MathfieldElement: () => MathfieldElement, autoRenderMathInElement: () => autoRenderMathInElement, convertAsciiMathToLatex: () => convertAsciiMathToLatex, convertLatexToAsciiMath: () => convertLatexToAsciiMath, convertLatexToMarkup: () => convertLatexToMarkup, convertLatexToMathMl: () => convertLatexToMathMl, convertLatexToSpeakableText: () => convertLatexToSpeakableText, convertMathFieldsInDocumentToEditable: () => convertMathFieldsInDocumentToEditable, convertMathFieldsInDocumentToReadonly: () => convertMathFieldsInDocumentToReadonly, convertMathFieldsInDocumentToRenderedMath: () => convertMathFieldsInDocumentToRenderedMath, globalMathLive: () => globalMathLive, makeSharedVirtualKeyboard: () => makeSharedVirtualKeyboard, renderMathInDocument: () => renderMathInDocument, renderMathInElement: () => renderMathInElement, serializeMathJsonToLatex: () => serializeMathJsonToLatex, validateLatex: () => validateLatex2, version: () => version }); // src/common/capabilities.ts function isBrowser() { return "window" in globalThis && "document" in globalThis; } function canVibrate() { return typeof navigator.vibrate === "function"; } function osPlatform() { var _a4, _b3; if (!isBrowser()) return "other"; const platform2 = (_b3 = (_a4 = navigator["userAgentData"]) == null ? void 0 : _a4.platform) != null ? _b3 : navigator.platform; if (/^mac/i.test(platform2)) { if (navigator.maxTouchPoints === 5) return "ios"; return "macos"; } if (/^win/i.test(platform2)) return "windows"; if (/android/i.test(navigator.userAgent)) return "android"; if (/iphone|ipod|ipad/i.test(navigator.userAgent)) return "ios"; if (/\bcros\b/i.test(navigator.userAgent)) return "chromeos"; return "other"; } function supportRegexPropertyEscape() { if (!isBrowser()) return true; if (/firefox/i.test(navigator.userAgent)) { const m = navigator.userAgent.match(/firefox\/(\d+)/i); if (!m) return false; const version2 = parseInt(m[1]); return version2 >= 78; } if (/trident/i.test(navigator.userAgent)) return false; if (/edge/i.test(navigator.userAgent)) { const m = navigator.userAgent.match(/edg\/(\d+)/i); if (!m) return false; const version2 = parseInt(m[1]); return version2 >= 79; } return true; } // src/common/script-url.ts function getFileUrl() { const stackTraceFrames = String(new Error().stack).replace(/^Error.*\n/, "").split("\n"); if (stackTraceFrames.length === 0) { console.error( `Can't use relative paths to specify assets location because the sourcefile location could not be determined (unexpected stack trace format "${new Error().stack}").` ); return ""; } let callerFrame = stackTraceFrames[1]; let m = callerFrame.match(/http.*\.ts[\?:]/); if (m) { callerFrame = stackTraceFrames[2]; } m = callerFrame.match(/(https?:.*):[0-9]+:[0-9]+/); if (!m) { m = callerFrame.match(/at (.*(\.ts))[\?:]/); if (!m) m = callerFrame.match(/at (.*(\.mjs|\.js))[\?:]/); } if (!m) { console.error(stackTraceFrames); console.error( `Can't use relative paths to specify assets location because the source file location could not be determined (unexpected location "${callerFrame}").` ); return ""; } return m[1]; } var gResolvedScriptUrl = null; var _a, _b; var gScriptUrl = ((_b = (_a = globalThis == null ? void 0 : globalThis.document) == null ? void 0 : _a.currentScript) == null ? void 0 : _b.src) || getFileUrl(); async function resolveUrl(url) { if (/^(?:[a-z+]+:)?\/\//i.test(url)) return new URL(url).href; if (gResolvedScriptUrl === null) { try { const response = await fetch(gScriptUrl, { method: "HEAD" }); if (response.status === 200) gResolvedScriptUrl = response.url; } catch (e) { console.error(`Invalid URL "${url}" (relative to "${gScriptUrl}")`); } } return new URL(url, gResolvedScriptUrl != null ? gResolvedScriptUrl : gScriptUrl).href; } // src/core/fonts.ts function makeFontFace(name, source, descriptors = {}) { return new FontFace( name, `url(${source}.woff2) format('woff2')`, descriptors ); } var gFontsState = "not-loaded"; async function reloadFonts() { gFontsState = "not-loaded"; return loadFonts(); } async function loadFonts() { var _a4; if (gFontsState !== "not-loaded") return; gFontsState = "loading"; const useStaticFonts = (_a4 = getComputedStyle(document.documentElement).getPropertyValue( "--ML__static-fonts" )) != null ? _a4 : false; if (useStaticFonts) { gFontsState = "ready"; return; } document.body.classList.remove("ML__fonts-did-not-load"); if ("fonts" in document) { const fontFamilies = [ "KaTeX_Main", "KaTeX_Math", "KaTeX_AMS", "KaTeX_Caligraphic", "KaTeX_Fraktur", "KaTeX_SansSerif", "KaTeX_Script", "KaTeX_Typewriter", "KaTeX_Size1", "KaTeX_Size2", "KaTeX_Size3", "KaTeX_Size4", // Arabic fonts related "KaTeX_NotoNaskhArabic", "KaTeX_AltArabicMath", "KaTeX_Tailed", "KaTeX_Looped", "NotoNaskhArabic", // Arabic related "STIX2Text" // STIX2 font for normal text ]; const fontsInDocument = Array.from(document.fonts).map((f) => f.family); if (fontFamilies.every((x) => fontsInDocument.includes(x))) { gFontsState = "ready"; return; } if (!window.MathfieldElement.fontsDirectory) { gFontsState = "not-loaded"; return; } const fontsFolder = await resolveUrl( window.MathfieldElement.fontsDirectory ); if (!fontsFolder) { document.body.classList.add("ML__fonts-did-not-load"); gFontsState = "error"; return; } const fonts = [ ["KaTeX_Main-Regular"], // ['KaTeX_Main-BoldItalic', { style: 'italic', weight: 'bold' }], ["KaTeX_Main-Bold", { weight: "bold" }], // ['KaTeX_Main-Italic', { style: 'italic' }], ["KaTeX_Math-Italic", { style: "italic" }], ["KaTeX_Math-BoldItalic", { style: "italic", weight: "bold" }], ["KaTeX_AMS-Regular"], ["KaTeX_Caligraphic-Regular"], ["KaTeX_Caligraphic-Bold", { weight: "bold" }], ["KaTeX_Fraktur-Regular"], ["KaTeX_Fraktur-Bold", { weight: "bold" }], ["KaTeX_SansSerif-Regular"], ["KaTeX_SansSerif-Bold", { weight: "bold" }], ["KaTeX_SansSerif-Italic", { style: "italic" }], ["KaTeX_Script-Regular"], ["KaTeX_Typewriter-Regular"], ["KaTeX_Size1-Regular"], ["KaTeX_Size2-Regular"], ["KaTeX_Size3-Regular"], ["KaTeX_Size4-Regular"], // Arabic fonts related ["KaTeX_NotoNaskhArabic-Regular"], ["KaTeX_AltArabicMath-Regular"], ["KaTeX_Tailed-Regular"], ["KaTeX_Looped-Regular"], // Arabic fonts related ["NotoNaskhArabic-Regular"], ["NotoNaskhArabic-Bold", { weight: "bold" }], // STIX2 font for normal text ["STIX2Text-Regular"], ["STIX2Text-Bold", { weight: "bold" }], ["STIX2Text-Italic", { style: "italic" }], ["STIX2Text-BoldItalic", { weight: "bold", style: "italic" }] ].map( (x) => makeFontFace( x[0].replace(/-[a-zA-Z]+$/, ""), `${fontsFolder}/${x[0]}`, x[1] ) ); try { const loadedFonts = await Promise.all( fonts.map((x) => { try { return x.load(); } catch (e) { } return void 0; }) ); loadedFonts.forEach((font) => document.fonts.add(font)); gFontsState = "ready"; return; } catch (error) { console.error( `Nagwa MathLive 3.3.33: The math fonts could not be loaded from "${fontsFolder}"`, { cause: error } ); document.body.classList.add("ML__fonts-did-not-load"); } gFontsState = "error"; } } // src/core/font-metrics-data.ts var font_metrics_data_default = { "AMS-Regular": { "32": [0, 0, 0, 0, 0.25], "65": [0, 0.67265, 0, 0, 0.759], "66": [0, 0.67265, 0, 0, 0.692], "67": [0.01407, 0.6855, 0, 0, 0.722], "68": [0, 0.67265, 0, 0, 0.739], "69": [0, 0.67265, 0, 0, 0.637], "70": [0, 0.67265, 0, 0, 0.6], "71": [0.01644, 0.71083, 0, 0, 0.723], "72": [0, 0.6855, 0, 0, 0.735], "73": [0, 0.67265, 0, 0, 0.329], "74": [0.01644, 0.67265, 0, 0, 0.573], "75": [0, 0.71083, 0, 0, 0.752], "76": [0, 0.67265, 0, 0, 0.605], "77": [0, 0.67265, 0, 0, 0.875], "78": [0, 0.6855, 0, 0, 0.715], "79": [0.01644, 0.71083, 0, 0, 0.778], "80": [0, 0.6855, 0, 0, 0.694], "81": [0.067, 0.6855, 0, 0, 0.783], "82": [0, 0.6855, 0, 0, 0.765], "83": [0.01644, 0.71083, 0, 0, 0.651], "84": [0, 0.67265, 0, 0, 0.657], "85": [0.01644, 0.67265, 0, 0, 0.715], "86": [0, 0.67265, 0, 0, 0.676], "87": [0, 0.67265, 0, 0, 0.99], "88": [0, 0.67265, 0, 0, 0.786], "89": [0, 0.67265, 0, 0, 0.719], "90": [0, 0.6855, 0, 0, 0.744], "97": [0.01644, 0.47683, 0, 0, 0.574], "98": [0.01644, 0.71083, 0, 0, 0.578], "99": [0.01644, 0.47683, 0, 0, 0.532], "100": [0.01644, 0.71083, 0, 0, 0.588], "101": [0.01644, 0.47683, 0, 0, 0.535], "102": [0, 0.71083, 0, 0, 0.449], "103": [0.22225, 0.47683, 0, 0, 0.588], "104": [0, 0.71083, 0, 0, 0.557], "105": [0, 0.71083, 0, 0, 0.264], "106": [0.22225, 0.71083, 0, 0, 0.312], "107": [0, 0.71083, 0, 0, 0.564], "108": [0, 0.71083, 0, 0, 0.264], "109": [0, 0.47683, 0, 0, 0.85], "110": [0, 0.47683, 0, 0, 0.557], "111": [0.01644, 0.47683, 0, 0, 0.566], "112": [0.22225, 0.47683, 0, 0, 0.588], "113": [0.22225, 0.47683, 0, 0, 0.588], "114": [0, 0.47683, 0, 0, 0.432], "115": [0.01644, 0.47683, 0, 0, 0.531], "116": [0.01644, 0.648, 0, 0, 0.337], "117": [0.01644, 0.461, 0, 0, 0.557], "118": [0, 0.461, 0, 0, 0.504], "119": [0, 0.461, 0, 0, 0.724], "120": [0, 0.461, 0, 0, 0.573], "121": [0.22225, 0.461, 0, 0, 0.538], "122": [0, 0.461, 0, 0, 0.531], "160": [0, 0, 0, 0, 0.25], "8463": [0.01407, 0.6855, 0, 0, 0.569], "8602": [0, 0.45606, 0, 0, 0.948], "8603": [0, 0.45606, 0, 0, 0.948], "8606": [0, 0.45606, 0, 0, 0.948], "8608": [0, 0.45606, 0, 0, 0.948], "8610": [0, 0.45606, 0, 0, 0.948], "8611": [0, 0.45606, 0, 0, 0.948], "8619": [0, 0.56529, 0, 0, 0.948], "8620": [0, 0.56529, 0, 0, 0.948], "8621": [0, 0.45606, 0, 0, 1.229], "8622": [0, 0.45606, 0, 0, 0.948], "8624": [0.15675, 0.6855, 0, 0, 0.474], "8625": [0.15675, 0.6855, 0, 0, 0.474], "8630": [0, 0.54472, 0, 0, 0.948], "8631": [0, 0.54472, 0, 0, 0.948], "8634": [0.12186, 0.7405, 0, 0, 0.997], "8635": [0.12186, 0.7405, 0, 0, 0.997], "8638": [0.16019, 0.67834, 0, 0, 0.523], "8639": [0.16019, 0.67834, 0, 0, 0.523], "8642": [0.16019, 0.67834, 0, 0, 0.523], "8643": [0.16019, 0.67834, 0, 0, 0.523], "8644": [0.09317, 0.61956, 0, 0, 0.948], "8646": [0.09317, 0.61956, 0, 0, 0.948], "8647": [0.09317, 0.61956, 0, 0, 0.948], "8648": [0.16019, 0.67834, 0, 0, 0.791], "8649": [0.09317, 0.61956, 0, 0, 0.948], "8650": [0.16019, 0.67834, 0, 0, 0.791], "8651": [0.03455, 0.54472, 0, 0, 0.948], "8652": [0.03455, 0.54472, 0, 0, 0.948], "8653": [0.03455, 0.54472, 0, 0, 0.948], "8654": [0, 0.54472, 0, 0, 0.948], "8655": [0.03455, 0.54472, 0, 0, 0.948], "8666": [0.14267, 0.64494, 0, 0, 0.872], "8667": [0.14267, 0.64494, 0, 0, 0.872], "8669": [0, 0.46581, 0, 0, 0.948], "8672": [-0.059, 0.46, 0, 0, 0.948], "8674": [-0.059, 0.46, 0, 0, 0.948], "8705": [0, 0.7405, 0, 0, 0.474], "8708": [0.12186, 0.7405, 0, 0, 0.573], "8709": [0.081, 0.59333, 0, 0, 0.78], "8717": [0, 0.46581, 0, 0, 0.497], "8718": [0, 0.64494, 0, 0, 0.558], "8724": [0.03455, 0.7405, 0, 0, 0.701], "8726": [0, 0.42517, 0, 0, 0.438], "8733": [0, 0.7099, 0, 0, 0.701], "8737": [0.071, 0.54472, 0, 0, 0.701], "8738": [0, 0.54472, 0, 0, 0.701], "8740": [0.193, 0.7405, 0, 0, 0.413], "8742": [0.193, 0.7405, 0, 0, 0.623], "8756": [0, 0.54472, 0, 0, 0.635], "8757": [0, 0.54472, 0, 0, 0.635], "8764": [0, 0.37, 0, 0, 0.701], "8765": [0, 0.37, 0, 0, 0.701], "8769": [0, 0.42517, 0, 0, 0.701], "8770": [0, 0.46581, 0, 0, 0.701], "8774": [0.107, 0.61956, 0, 0, 0.701], "8776": [0, 0.46581, 0, 0, 0.701], "8778": [0.03455, 0.54472, 0, 0, 0.701], "8782": [0, 0.46581, 0, 0, 0.701], "8783": [0, 0.46581, 0, 0, 0.701], "8785": [0.107, 0.61956, 0, 0, 0.701], "8786": [0.107, 0.61956, 0, 0, 0.701], "8787": [0.107, 0.61956, 0, 0, 0.701], "8790": [0, 0.42517, 0, 0, 0.701], "8791": [0, 0.7405, 0, 0, 0.701], "8796": [0, 0.8755, 0, 0, 0.701], "8806": [0.22742, 0.7405, 0, 0, 0.701], "8807": [0.22742, 0.7405, 0, 0, 0.701], "8808": [0.2654, 0.7405, 0, 0, 0.701], "8809": [0.2654, 0.7405, 0, 0, 0.701], "8812": [0.22742, 0.7405, 0, 0, 0.477], "8814": [0.16019, 0.67834, 0, 0, 0.701], "8815": [0.16019, 0.67834, 0, 0, 0.701], "8816": [0.22742, 0.7405, 0, 0, 0.701], "8817": [0.22742, 0.7405, 0, 0, 0.701], "8818": [0.168, 0.67834, 0, 0, 0.701], "8819": [0.168, 0.67834, 0, 0, 0.701], "8822": [0.20833, 0.7405, 0, 0, 0.701], "8823": [0.20833, 0.7405, 0, 0, 0.701], "8828": [0.12186, 0.64494, 0, 0, 0.701], "8829": [0.12186, 0.64494, 0, 0, 0.701], "8830": [0.168, 0.67834, 0, 0, 0.701], "8831": [0.168, 0.67834, 0, 0, 0.701], "8832": [0.16019, 0.67834, 0, 0, 0.701], "8833": [0.16019, 0.67834, 0, 0, 0.701], "8840": [0.22742, 0.7405, 0, 0, 0.701], "8841": [0.22742, 0.7405, 0, 0, 0.701], "8842": [0.22742, 0.64494, 0, 0, 0.701], "8843": [0.22742, 0.64494, 0, 0, 0.701], "8847": [0.03455, 0.54472, 0, 0, 0.701], "8848": [0.03455, 0.54472, 0, 0, 0.701], "8858": [0.12186, 0.64494, 0, 0, 0.862], "8859": [0.12186, 0.64494, 0, 0, 0.862], "8861": [0.12186, 0.64494, 0, 0, 0.862], "8862": [0.16019, 0.67834, 0, 0, 0.932], "8863": [0.16019, 0.67834, 0, 0, 0.932], "8864": [0.16019, 0.67834, 0, 0, 0.932], "8865": [0.16019, 0.67834, 0, 0, 0.932], "8872": [0, 0.67834, 0, 0, 0.701], "8873": [0, 0.67834, 0, 0, 0.88], "8874": [0, 0.67834, 0, 0, 0.88], "8876": [0, 0.67834, 0, 0, 0.805], "8877": [0, 0.67834, 0, 0, 0.805], "8878": [0, 0.67834, 0, 0, 0.991], "8879": [0, 0.67834, 0, 0, 0.991], "8882": [0.03455, 0.54472, 0, 0, 0.701], "8883": [0.03455, 0.54472, 0, 0, 0.701], "8884": [0.107, 0.61956, 0, 0, 0.701], "8885": [0.107, 0.61956, 0, 0, 0.701], "8888": [0, 0.42517, 0, 0, 0.869], "8890": [0.22742, 0.46581, 0, 0, 0.491], "8891": [0.14267, 0.54472, 0, 0, 0.635], "8892": [0.03455, 0.64494, 0, 0, 0.635], "8903": [0, 0.673, 0, 0, 0.701], "8905": [0.08333, 0.673, 0, 0, 0.829], "8906": [0.08333, 0.673, 0, 0, 0.829], "8907": [0.08333, 0.673, 0, 0, 0.829], "8908": [0.08333, 0.673, 0, 0, 0.829], "8909": [0, 0.4572, 0, 0, 0.701], "8910": [0, 0.673, 0, 0, 0.594], "8911": [0, 0.673, 0, 0, 0.594], "8912": [0, 0.673, 0, 0, 0.701], "8913": [0, 0.673, 0, 0, 0.701], "8914": [0, 0.673, 0, 0, 0.635], "8915": [0, 0.673, 0, 0, 0.635], "8916": [0, 0.673, 0, 0, 0.635], "8918": [0, 0.673, 0, 0, 0.701], "8919": [0, 0.673, 0, 0, 0.701], "8920": [0, 0.673, 0, 0, 1.304], "8921": [0, 0.673, 0, 0, 1.304], "8922": [0.332, 0.8365, 0, 0, 0.701], "8923": [0.332, 0.8365, 0, 0, 0.701], "8926": [0.12517, 0.673, 0, 0, 0.701], "8927": [0.12517, 0.673, 0, 0, 0.701], "8928": [0.2262, 0.673, 0, 0, 0.701], "8929": [0.2262, 0.673, 0, 0, 0.701], "8934": [0.286, 0.673, 0, 0, 0.701], "8935": [0.286, 0.673, 0, 0, 0.701], "8936": [0.286, 0.673, 0, 0, 0.701], "8937": [0.286, 0.673, 0, 0, 0.701], "8938": [0.16067, 0.673, 0, 0, 0.65], "8939": [0.16067, 0.673, 0, 0, 0.65], "8940": [0.2262, 0.673, 0, 0, 0.65], "8941": [0.2262, 0.673, 0, 0, 0.65], "9632": [0.16167, 0.67871, 0, 0, 0.932], "9633": [0.16167, 0.67871, 0, 0, 0.932], "9650": [0.12806, 0.80992, 0, 0, 1.172], "9651": [0.12806, 0.80992, 0, 0, 1.172], "9654": [0.29187, 0.80992, 0, 0, 1.068], "9660": [0.12806, 0.80992, 0, 0, 1.172], "9661": [0.12806, 0.80992, 0, 0, 1.172], "9664": [0.29187, 0.80992, 0, 0, 1.068], "9674": [0.29187, 0.80992, 0, 0, 0.809], "9733": [0.068, 0.67871, 0, 0, 0.891], "10003": [0.01407, 0.67871, 0, 0, 0.773], "10016": [0.0835, 0.67871, 0, 0, 0.785], "10731": [0.26846, 0.787, 0, 0, 0.809], "10846": [0.03177, 0.787, 0, 0, 0.635], "10877": [0.13352, 0.64942, 0, 0, 0.701], "10878": [0.13352, 0.64942, 0, 0, 0.701], "10885": [0.26846, 0.787, 0, 0, 0.701], "10886": [0.26846, 0.787, 0, 0, 0.701], "10887": [0.22175, 0.64942, 0, 0, 0.701], "10888": [0.22175, 0.64942, 0, 0, 0.703], "10889": [0.317, 0.787, 0, 0, 0.701], "10890": [0.317, 0.787, 0, 0, 0.701], "10891": [0.434, 0.952, 0, 0, 0.701], "10892": [0.434, 0.952, 0, 0, 0.701], "10901": [0.13352, 0.64942, 0, 0, 0.701], "10902": [0.13352, 0.64942, 0, 0, 0.701], "10933": [0.26846, 0.787, 0, 0, 0.701], "10934": [0.26846, 0.787, 0, 0, 0.701], "10935": [0.26846, 0.787, 0, 0, 0.701], "10936": [0.26846, 0.787, 0, 0, 0.701], "10937": [0.317, 0.787, 0, 0, 0.701], "10938": [0.317, 0.787, 0, 0, 0.701], "10949": [0.22175, 0.72655, 0, 0, 0.701], "10950": [0.22175, 0.72655, 0, 0, 0.701], "10955": [0.33, 0.72655, 0, 0, 0.701], "10956": [0.33, 0.72655, 0, 0, 0.701] }, "AltArabicMath-Regular": { "32": [0, 0, 0, 0, 0.25], "160": [0, 0, 0, 0, 0.25], "1575": [0, 0.66597, 0, 0, 0.237], "1583": [0, 0.41791, 0, 0, 0.478], "1606": [0, 0.41791, 0, 0, 0.586] }, "Caligraphic-Bold": { "32": [0, 0, 0, 0, 0.25], "65": [0, 0.67773, 0, 0, 0.871], "66": [0, 0.67773, 0, 0, 0.755], "67": [0, 0.67773, 0.047, 0, 0.667], "68": [0, 0.67773, 0.051, 0, 0.802], "69": [0, 0.67773, 0.062, 0, 0.609], "70": [0, 0.67773, 0.138, 0, 0.645], "71": [0.14433, 0.67773, 0, 0, 0.615], "72": [0, 0.67773, 0.054, 0, 0.849], "73": [0, 0.67773, 0.047, 0, 0.621], "74": [0.118, 0.67773, 0.211, 0, 0.645], "75": [0, 0.67773, 0, 0, 0.856], "76": [0, 0.67773, 0, 0, 0.726], "77": [0, 0.67773, 0, 0, 1.186], "78": [0, 0.81443, 0.146, 0, 0.997], "79": [0, 0.67773, 0.055, 0, 0.772], "80": [0, 0.67773, 0.131, 0, 0.645], "81": [0.14433, 0.67773, 0, 0, 0.778], "82": [0, 0.67773, 0, 0, 0.869], "83": [0, 0.67773, 0.077, 0, 0.667], "84": [0, 0.81443, 0.245, 0, 0.547], "85": [0, 0.67773, 0.194, 0, 0.787], "86": [0, 0.67773, 0.099, 0, 0.652], "87": [0, 0.67773, 0.099, 0, 0.956], "88": [0, 0.67773, 0.106, 0, 0.72], "89": [0.14433, 0.67773, 0.098, 0, 0.72], "90": [0.096, 0.67773, 0, 0, 0.778], "160": [0, 0, 0, 0, 0.25] }, "Caligraphic-Regular": { "32": [0, 0, 0, 0, 0.25], "65": [0, 0.67773, 0, 0, 0.852], "66": [0, 0.67773, 0, 0, 0.724], "67": [0, 0.67773, 0.062, 0, 0.569], "68": [0, 0.67773, 0, 0, 0.801], "69": [0, 0.67773, 0.091, 0, 0.553], "70": [0, 0.67773, 0.103, 0, 0.652], "71": [0.131, 0.67773, 0, 0, 0.58], "72": [0, 0.67773, 0.059, 0, 0.831], "73": [0, 0.67773, 0.061, 0, 0.575], "74": [0.118, 0.67773, 0.198, 0, 0.632], "75": [0, 0.67773, 0, 0, 0.809], "76": [0, 0.67773, 0, 0, 0.693], "77": [0, 0.67773, 0, 0, 1.166], "78": [0, 0.81443, 0.152, 0, 0.957], "79": [0, 0.67773, 0, 0, 0.737], "80": [0, 0.67773, 0.087, 0, 0.667], "81": [0.131, 0.67773, 0, 0, 0.744], "82": [0, 0.67773, 0, 0, 0.854], "83": [0, 0.67773, 0.082, 0, 0.634], "84": [0, 0.67773, 0.266, 0, 0.509], "85": [0, 0.67773, 0.178, 0, 0.817], "86": [0, 0.67773, 0.087, 0, 0.638], "87": [0, 0.67773, 0.087, 0, 0.956], "88": [0, 0.67773, 0.092, 0, 0.692], "89": [0.131, 0.67773, 0.089, 0, 0.719], "90": [0.096, 0.67773, 0, 0, 0.752], "160": [0, 0, 0, 0, 0.25] }, "Fraktur-Bold": { "32": [0, 0, 0, 0, 0.25], "65": [0.01644, 0.71083, 0, 0, 0.876], "66": [0.01644, 0.71083, 0, 0, 0.869], "67": [0.01644, 0.71083, 0, 0, 0.791], "68": [0.01644, 0.71083, 0, 0, 0.912], "69": [0.01644, 0.71083, 0, 0, 0.807], "70": [0.2096, 0.71083, 0, 0, 0.822], "71": [0.01644, 0.71083, 0, 0, 0.853], "72": [0.2096, 0.71083, 0, 0, 0.863], "73": [0.01644, 0.71083, 0, 0, 0.809], "74": [0.2096, 0.71083, 0, 0, 0.822], "75": [0.01644, 0.71083, 0, 0, 0.884], "76": [0.01644, 0.71083, 0, 0, 0.716], "77": [0.01644, 0.71083, 0, 0, 1.16], "78": [0.02524, 0.71793, 0, 0, 0.882], "79": [0.01967, 0.71793, 0, 0, 0.931], "80": [0.20967, 0.71793, 0, 0, 0.87], "81": [0.061, 0.71793, 0, 0, 0.952], "82": [0.02524, 0.71793, 0, 0, 0.905], "83": [0.01967, 0.71793, 0, 0, 0.872], "84": [0.02524, 0.71793, 0, 0, 0.812], "85": [0.02524, 0.71793, 0, 0, 0.88], "86": [0.01967, 0.71793, 0, 0, 0.875], "87": [0.01967, 0.71793, 0, 0, 1.148], "88": [0.02524, 0.71793, 0, 0, 0.838], "89": [0.20967, 0.71793, 0, 0, 0.857], "90": [0.2, 0.71793, 0, 0, 0.773], "97": [0.02524, 0.48477, 0, 0, 0.614], "98": [0.02524, 0.7108, 0, 0, 0.572], "99": [0.02524, 0.48477, 0, 0, 0.475], "100": [0.02524, 0.7108, 0, 0, 0.57], "101": [0.02524, 0.48477, 0, 0, 0.487], "102": [0.22078, 0.71793, 0, 0, 0.379], "103": [0.225, 0.48477, 0, 0, 0.579], "104": [0.225, 0.7108, 0, 0, 0.59], "105": [0.02524, 0.713, 0, 0, 0.439], "106": [0.225, 0.713, 0, 0, 0.398], "107": [0.02524, 0.7108, 0, 0, 0.467], "108": [0.02524, 0.7108, 0, 0, 0.443], "109": [0.02524, 0.48477, 0, 0, 1.007], "110": [0.02524, 0.48477, 0, 0, 0.712], "111": [0.02524, 0.48477, 0, 0, 0.567], "112": [0.225, 0.607, 0, 0, 0.655], "113": [0.225, 0.48477, 0, 0, 0.588], "114": [0.02524, 0.48477, 0, 0, 0.537], "115": [0.032, 0.65702, 0, 0, 0.57], "116": [0.02524, 0.66994, 0, 0, 0.448], "117": [0.02524, 0.48477, 0, 0, 0.697], "118": [0.02524, 0.607, 0, 0, 0.587], "119": [0.02524, 0.607, 0, 0, 0.87], "120": [0.214, 0.48477, 0, 0, 0.533], "121": [0.225, 0.607, 0, 0, 0.61], "122": [0.225, 0.48477, 0, 0, 0.495], "160": [0, 0, 0, 0, 0.25] }, "Fraktur-Regular": { "32": [0, 0, 0, 0, 0.25], "65": [0.01644, 0.71083, 0, 0, 0.804], "66": [0.01644, 0.71083, 0, 0, 0.841], "67": [0.01407, 0.6855, 0, 0, 0.734], "68": [0.01644, 0.71083, 0, 0, 0.889], "69": [0.01644, 0.71083, 0, 0, 0.746], "70": [0.2096, 0.71083, 0, 0, 0.785], "71": [0.01644, 0.71083, 0, 0, 0.825], "72": [0.20767, 0.6855, 0, 0, 0.844], "73": [0.03675, 0.6855, 0, 0, 0.78], "74": [0.2096, 0.71083, 0, 0, 0.79], "75": [0.01644, 0.71083, 0, 0, 0.866], "76": [0.01644, 0.71083, 0, 0, 0.685], "77": [0.01644, 0.71083, 0, 0, 1.109], "78": [0.01644, 0.71083, 0, 0, 0.847], "79": [0.01644, 0.71083, 0, 0, 0.857], "80": [0.2096, 0.71083, 0, 0, 0.843], "81": [0.066, 0.71083, 0, 0, 0.886], "82": [0.01407, 0.6855, 0, 0, 0.895], "83": [0.01644, 0.71083, 0, 0, 0.876], "84": [0.01644, 0.71083, 0, 0, 0.784], "85": [0.01644, 0.71083, 0, 0, 0.806], "86": [0.01644, 0.71083, 0, 0, 0.851], "87": [0.01644, 0.71083, 0, 0, 1.101], "88": [0.031, 0.71083, 0, 0, 0.781], "89": [0.2096, 0.71083, 0, 0, 0.784], "90": [0.20767, 0.6855, 0, 0, 0.743], "97": [0.01644, 0.47683, 0, 0, 0.542], "98": [0.01644, 0.71083, 0, 0, 0.525], "99": [0.01644, 0.47683, 0, 0, 0.394], "100": [0.01644, 0.71083, 0, 0, 0.518], "101": [0.01644, 0.47683, 0, 0, 0.43], "102": [0.214, 0.71083, 0, 0, 0.335], "103": [0.214, 0.47683, 0, 0, 0.511], "104": [0.214, 0.71083, 0, 0, 0.54], "105": [0.01644, 0.71083, 0, 0, 0.393], "106": [0.214, 0.71083, 0, 0, 0.353], "107": [0.01644, 0.71083, 0, 0, 0.43], "108": [0.01644, 0.71083, 0, 0, 0.407], "109": [0.01644, 0.47683, 0, 0, 0.932], "110": [0.01644, 0.47683, 0, 0, 0.651], "111": [0.01644, 0.47683, 0, 0, 0.515], "112": [0.214, 0.6, 0, 0, 0.568], "113": [0.214, 0.47683, 0, 0, 0.519], "114": [0.01644, 0.47683, 0, 0, 0.474], "115": [0.01644, 0.638, 0, 0, 0.53], "116": [0.01644, 0.67265, 0, 0, 0.383], "117": [0.01644, 0.47683, 0, 0, 0.662], "118": [0.01644, 0.6, 0, 0, 0.527], "119": [0.01644, 0.6, 0, 0, 0.777], "120": [0.194, 0.47683, 0, 0, 0.467], "121": [0.214, 0.6, 0, 0, 0.528], "122": [0.214, 0.47683, 0, 0, 0.468], "160": [0, 0, 0, 0, 0.25] }, "Looped-Regular": { "32": [0, 0, 0, 0, 0.25], "160": [0, 0, 0, 0, 0.25], "1575": [0.14241, 0.67915, 0, 0, 0.217], "1576": [0.19433, 0.402, 0, 0, 0.771], "1578": [0.098, 0.56887, 0, 0, 0.771], "1579": [0.098, 0.56887, 0, 0, 0.771], "1580": [0.122, 0.56887, 0, 0, 0.635], "1581": [0.122, 0.56887, 0, 0, 0.635], "1582": [0.122, 0.782, 0, 0, 0.635], "1583": [0.0676, 0.402, 0, 0, 0.478], "1584": [0.0676, 0.56887, 0, 0, 0.478], "1585": [0.073, 0.56887, 0, 0, 0.495], "1586": [0.073, 0.7335, 0, 0, 0.495], "1587": [0.092, 0.51967, 0, 0, 1.043], "1588": [0.092, 0.67915, 0, 0, 1.043], "1589": [0.092, 0.56887, 0, 0, 1.125], "1590": [0.092, 0.7335, 0, 0, 1.125], "1591": [0.0676, 0.67915, 0, 0, 0.869], "1592": [0.0676, 0.67915, 0, 0, 0.769], "1593": [0.162, 0.67915, 0, 0, 0.647], "1594": [0.162, 0.8648, 0, 0, 0.647], "1601": [0.098, 0.67915, 0, 0, 0.848], "1602": [0.14241, 0.67915, 0, 0, 0.646], "1604": [0.092, 0.67915, 0, 0, 0.595], "1605": [0.11302, 0.67915, 0, 0, 0.488], "1606": [0.092, 0.56887, 0, 0, 0.586], "1607": [0.08359, 0.433, 0, 0, 0.813], "1608": [0.14241, 0.56887, 0, 0, 0.523], "1609": [0.0676, 0.56887, 0, 0, 0.618], "1610": [0.0676, 0.56887, 0, 0, 0.618] }, "Main-Bold": { "32": [0, 0, 0, 0, 0.25], "48": [0.011, 0.642, 0, 0, 0.589], "49": [0, 0.639, 0, 0, 0.494], "50": [0, 0.649, 0, 0, 0.485], "51": [0.015, 0.653, 0, 0, 0.505], "52": [0, 0.64567, 0, 0, 0.543], "53": [0.022, 0.63, 0, 0, 0.5], "54": [0.014, 0.64567, 0, 0, 0.54], "55": [8e-3, 0.63, 0, 0, 0.487], "56": [0.014, 0.649, 0, 0, 0.526], "57": [0.013, 0.64567, 0, 0, 0.538], "65": [0, 0.68422, 0, 0, 0.743], "66": [0, 0.68422, 0, 0, 0.668], "67": [0, 0.68422, 0, 0, 0.675], "68": [0, 0.68422, 0, 0, 0.763], "69": [0, 0.68422, 0, 0, 0.672], "70": [0, 0.68422, 0, 0, 0.623], "71": [0, 0.68422, 0, 0, 0.726], "72": [0, 0.68422, 0, 0, 0.853], "73": [0, 0.68422, 0, 0, 0.414], "74": [0, 0.68422, 0, 0, 0.482], "75": [0, 0.68422, 0, 0, 0.787], "76": [0, 0.68422, 0, 0, 0.637], "77": [0, 0.68422, 0, 0, 1.006], "78": [0, 0.68422, 0, 0, 0.81], "79": [0, 0.68422, 0, 0, 0.746], "80": [0, 0.68422, 0, 0, 0.629], "81": [0.174, 0.68422, 0, 0, 0.745], "82": [0, 0.68422, 0, 0, 0.749], "83": [0, 0.68422, 0, 0, 0.523], "84": [0, 0.68422, 0, 0, 0.659], "85": [0, 0.68422, 0, 0, 0.808], "86": [0, 0.68422, 0, 0, 0.741], "87": [0, 0.68422, 0, 0, 1.051], "88": [0, 0.68422, 0, 0, 0.723], "89": [0, 0.68422, 0, 0, 0.697], "90": [0, 0.68422, 0, 0, 0.626], "97": [0, 0.48303, 0, 0, 0.528], "98": [0, 0.68422, 0, 0, 0.566], "99": [0, 0.48303, 0, 0, 0.496], "100": [0, 0.68422, 0, 0, 0.576], "101": [0, 0.48303, 0, 0, 0.503], "102": [0, 0.68422, 0, 0, 0.376], "103": [0.23588, 0.48303, 0, 0, 0.531], "104": [0, 0.68422, 0, 0, 0.632], "105": [0, 0.68422, 0, 0, 0.328], "106": [0.23588, 0.68422, 0, 0, 0.284], "107": [0, 0.68422, 0, 0, 0.605], "108": [0, 0.68422, 0, 0, 0.327], "109": [0, 0.48303, 0, 0, 0.93], "110": [0, 0.48303, 0, 0, 0.631], "111": [0, 0.48303, 0, 0, 0.54], "112": [0.22, 0.48303, 0, 0, 0.574], "113": [0.22, 0.48303, 0, 0, 0.574], "114": [0, 0.48303, 0, 0, 0.43], "115": [0, 0.48303, 0, 0, 0.428], "116": [0, 0.68422, 0, 0, 0.369], "117": [0, 0.48303, 0, 0, 0.619], "118": [0, 0.48303, 0, 0, 0.566], "119": [0, 0.48303, 0, 0, 0.877], "120": [0, 0.48303, 0, 0, 0.555], "121": [0.22, 0.48303, 0, 0, 0.569], "122": [0, 0.48303, 0, 0, 0.476], "160": [0, 0, 0, 0, 0.25] }, "Main-Regular": { "32": [0, 0, 0, 0, 0.25], "33": [0.01001, 0.67311, 0, 0, 0.283], "34": [0, 0.67311, 0, 0, 0.334], "35": [0.0225, 0.67311, 0, 0, 0.702], "36": [0.093, 0.67311, 0, 0, 0.495], "37": [0.0225, 0.67311, 0, 0, 0.692], "38": [0.01001, 0.67311, 0, 0, 0.736], "39": [0, 0.67311, 0, 0, 0.187], "40": [0.186, 0.67311, 0, 0, 0.356], "41": [0.186, 0.67311, 0, 0, 0.356], "42": [0, 0.67311, 0, 0, 0.41], "43": [0.039, 0.53943, 0, 0, 0.72], "44": [0.142, 0.111, 0, 0, 0.251], "45": [0, 0.283, 0, 0, 0.315], "46": [0.01001, 0.111, 0, 0, 0.246], "47": [0.089, 0.67311, 0, 0, 0.387], "48": [0.01001, 0.67311, 0, 0, 0.495], "49": [0, 0.67311, 0, 0, 0.495], "50": [0, 0.67311, 0, 0, 0.495], "51": [0.01001, 0.67311, 0, 0, 0.495], "52": [0, 0.67311, 0, 0, 0.495], "53": [0.01001, 0.67311, 0, 0, 0.495], "54": [0.01001, 0.67311, 0, 0, 0.495], "55": [0.01001, 0.67311, 0, 0, 0.495], "56": [0.01001, 0.67311, 0, 0, 0.495], "57": [0.01001, 0.67311, 0, 0, 0.495], "58": [0.01001, 0.48214, 0, 0, 0.261], "59": [0.142, 0.48214, 0, 0, 0.261], "60": [0.0225, 0.53943, 0, 0, 0.701], "61": [0, 0.3985, 0, 0, 0.72], "62": [0.0225, 0.53943, 0, 0, 0.701], "63": [0.01001, 0.67311, 0, 0, 0.411], "64": [0.186, 0.67311, 0, 0, 0.905], "65": [0, 0.67311, 0, 0, 0.718], "66": [0, 0.67311, 0, 0, 0.618], "67": [0.01001, 0.67311, 0, 0, 0.67], "68": [0, 0.67311, 0, 0, 0.73], "69": [0, 0.67311, 0, 0, 0.626], "70": [0, 0.67311, 0, 0, 0.588], "71": [0.01001, 0.67311, 0, 0, 0.72], "72": [0, 0.67311, 0, 0, 0.777], "73": [0, 0.67311, 0, 0, 0.357], "74": [0.01001, 0.67311, 0, 0, 0.396], "75": [0, 0.67311, 0, 0, 0.702], "76": [0, 0.67311, 0, 0, 0.585], "77": [0, 0.67311, 0, 0, 0.895], "78": [0.01001, 0.67311, 0, 0, 0.742], "79": [0.01001, 0.67311, 0, 0, 0.737], "80": [0, 0.67311, 0, 0, 0.569], "81": [0.173, 0.67311, 0, 0, 0.737], "82": [0, 0.67311, 0, 0, 0.659], "83": [0.01001, 0.67311, 0, 0, 0.504], "84": [0, 0.67311, 0, 0, 0.603], "85": [0.01001, 0.67311, 0, 0, 0.752], "86": [0.01001, 0.67311, 0, 0, 0.68], "87": [0.01001, 0.67311, 0, 0, 0.944], "88": [0, 0.67311, 0, 0, 0.664], "89": [0, 0.67311, 0, 0, 0.647], "90": [0, 0.67311, 0, 0, 0.594], "91": [0.186, 0.67311, 0, 0, 0.347], "92": [0.089, 0.67311, 0, 0, 0.385], "93": [0.186, 0.67311, 0, 0, 0.347], "94": [0, 0.75487, 0, 0, 0.48], "95": [0.128, -0.077, 0, 0, 0.512], "97": [0.01001, 0.48214, 0, 0, 0.48], "98": [0.01001, 0.67311, 0, 0, 0.522], "99": [0.01001, 0.48214, 0, 0, 0.446], "100": [0.01001, 0.67311, 0, 0, 0.539], "101": [0.01001, 0.48214, 0, 0, 0.464], "102": [0, 0.67311, 0, 0, 0.307], "103": [0.23489, 0.48214, 0, 0, 0.484], "104": [0, 0.67311, 0, 0, 0.577], "105": [0, 0.67311, 0, 0, 0.285], "106": [0.23489, 0.67311, 0, 0, 0.263], "107": [0, 0.67311, 0, 0, 0.542], "108": [0, 0.67311, 0, 0, 0.283], "109": [0, 0.48214, 0, 0, 0.852], "110": [0, 0.48214, 0, 0, 0.576], "111": [0.01001, 0.48214, 0, 0, 0.514], "112": [0.21756, 0.48214, 0, 0, 0.537], "113": [0.21756, 0.48214, 0, 0, 0.521], "114": [0, 0.48214, 0, 0, 0.38], "115": [0.01001, 0.48214, 0, 0, 0.395], "116": [0.01001, 0.67311, 0, 0, 0.315], "117": [0.01001, 0.48214, 0, 0, 0.57], "118": [0.01001, 0.48214, 0, 0, 0.481], "119": [0.01001, 0.48214, 0, 0, 0.749], "120": [0, 0.48214, 0, 0, 0.479], "121": [0.21756, 0.48214, 0, 0, 0.483], "122": [0, 0.48214, 0, 0, 0.458], "123": [0.186, 0.67311, 0, 0, 0.325], "124": [0.23489, 0.67311, 0, 0, 0.267], "125": [0.186, 0.67311, 0, 0, 0.325], "126": [0, 0.336, 0, 0, 0.557], "160": [0, 0, 0, 0, 0.256], "163": [0.01001, 0.67311, 0, 0, 0.495], "167": [0.203, 0.67311, 0, 0, 0.491], "168": [0, 0.67311, 0, 0, 0.391], "171": [0, 0.442, 0, 0, 0.517], "172": [0, 0.3985, 0, 0, 0.614], "176": [0, 0.67311, 0, 0, 0.409], "177": [0.089, 0.53943, 0, 0, 0.701], "181": [0.21756, 0.48214, 0, 0, 0.556], "182": [0.148, 0.67311, 0, 0, 0.605], "183": [0, 0.317, 0, 0, 0.282], "184": [0.21756, 133e-5, 0, 0, 0.247], "186": [0, 0.67311, 0, 0, 0.432], "187": [0, 0.442, 0, 0, 0.517], "191": [0.196, 0.48214, 0, 0, 0.411], "192": [0, 0.8265, 0, 0, 0.718], "193": [0, 0.8265, 0, 0, 0.718], "194": [0, 0.8265, 0, 0, 0.718], "195": [0, 0.8265, 0, 0, 0.718], "196": [0, 0.8265, 0, 0, 0.718], "197": [0, 0.899, 0, 0, 0.718], "198": [0, 0.67311, 0, 0, 0.894], "199": [0.21756, 0.67311, 0, 0, 0.67], "200": [0, 0.8265, 0, 0, 0.626], "201": [0, 0.8265, 0, 0, 0.626], "202": [0, 0.8265, 0, 0, 0.626], "203": [0, 0.8265, 0, 0, 0.626], "204": [0, 0.8265, 0, 0, 0.357], "205": [0, 0.8265, 0, 0, 0.357], "206": [0, 0.8265, 0, 0, 0.357], "207": [0, 0.8265, 0, 0, 0.357], "208": [0, 0.67311, 0, 0, 0.737], "209": [0.01001, 0.8265, 0, 0, 0.742], "210": [0.01001, 0.8265, 0, 0, 0.737], "211": [0.01001, 0.8265, 0, 0, 0.737], "212": [0.01001, 0.8265, 0, 0, 0.737], "213": [0.01001, 0.8265, 0, 0, 0.737], "214": [0.01001, 0.8265, 0, 0, 0.737], "215": [0.0225, 0.53943, 0, 0, 0.655], "216": [0.0225, 0.67311, 0, 0, 0.737], "217": [0.01001, 0.8265, 0, 0, 0.752], "218": [0.01001, 0.8265, 0, 0, 0.752], "219": [0.01001, 0.8265, 0, 0, 0.752], "220": [0.01001, 0.8265, 0, 0, 0.752], "221": [0, 0.8265, 0, 0, 0.647], "222": [0, 0.67311, 0, 0, 0.572], "223": [0.01001, 0.67311, 0, 0, 0.563], "224": [0.01001, 0.67311, 0, 0, 0.48], "225": [0.01001, 0.67311, 0, 0, 0.48], "226": [0.01001, 0.67311, 0, 0, 0.48], "227": [0.01001, 0.67311, 0, 0, 0.48], "228": [0.01001, 0.67311, 0, 0, 0.48], "229": [0.01001, 0.67311, 0, 0, 0.48], "230": [0.01001, 0.48214, 0, 0, 0.709], "231": [0.21756, 0.48214, 0, 0, 0.446], "232": [0.01001, 0.67311, 0, 0, 0.464], "233": [0.01001, 0.67311, 0, 0, 0.464], "234": [0.01001, 0.67311, 0, 0, 0.464], "235": [0.01001, 0.67311, 0, 0, 0.464], "236": [0, 0.67311, 0, 0, 0.285], "237": [0, 0.67311, 0, 0, 0.285], "238": [0, 0.67311, 0, 0, 0.285], "239": [0, 0.67311, 0, 0, 0.285], "240": [0.01001, 0.67311, 0, 0, 0.532], "241": [0, 0.67311, 0, 0, 0.576], "242": [0.01001, 0.67311, 0, 0, 0.514], "243": [0.01001, 0.67311, 0, 0, 0.514], "244": [0.01001, 0.67311, 0, 0, 0.514], "245": [0.01001, 0.67311, 0, 0, 0.514], "246": [0.01001, 0.67311, 0, 0, 0.514], "247": [0.01001, 0.53943, 0, 0, 0.641], "248": [0.01001, 0.48214, 0, 0, 0.514], "249": [0.01001, 0.67311, 0, 0, 0.57], "250": [0.01001, 0.67311, 0, 0, 0.57], "251": [0.01001, 0.67311, 0, 0, 0.57], "252": [0.01001, 0.67311, 0, 0, 0.57], "253": [0.21756, 0.67311, 0, 0, 0.483], "254": [0.21756, 0.67311, 0, 0, 0.524], "255": [0.21756, 0.67311, 0, 0, 0.483], "256": [0, 0.779, 0, 0, 0.718], "257": [0.01001, 0.67311, 0, 0, 0.48], "258": [0, 0.865, 0, 0, 0.718], "259": [0.01001, 0.67311, 0, 0, 0.48], "260": [0.21756, 0.67311, 0, 0, 0.719], "261": [0.21756, 0.48214, 0, 0, 0.48], "262": [0.01001, 0.8265, 0, 0, 0.67], "263": [0.01001, 0.67311, 0, 0, 0.446], "264": [0.01001, 0.8265, 0, 0, 0.67], "265": [0.01001, 0.67311, 0, 0, 0.446], "266": [0.01001, 0.8265, 0, 0, 0.67], "267": [0.01001, 0.67311, 0, 0, 0.446], "268": [0.01001, 0.8265, 0, 0, 0.67], "269": [0.01001, 0.67311, 0, 0, 0.446], "270": [0, 0.8265, 0, 0, 0.73], "271": [0.01001, 0.67311, 0, 0, 0.626], "272": [0, 0.67311, 0, 0, 0.733], "273": [0.01001, 0.67311, 0, 0, 0.54], "274": [0, 0.779, 0, 0, 0.626], "275": [0.01001, 0.67311, 0, 0, 0.464], "276": [0, 0.865, 0, 0, 0.626], "277": [0.01001, 0.67311, 0, 0, 0.464], "278": [0, 0.8265, 0, 0, 0.626], "279": [0.01001, 0.67311, 0, 0, 0.464], "280": [0.21756, 0.67311, 0, 0, 0.625], "281": [0.21756, 0.48214, 0, 0, 0.464], "282": [0, 0.8265, 0, 0, 0.626], "283": [0.01001, 0.67311, 0, 0, 0.464], "284": [0.01001, 0.8265, 0, 0, 0.72], "285": [0.23489, 0.67311, 0, 0, 0.484], "286": [0.01001, 0.865, 0, 0, 0.72], "287": [0.23489, 0.67311, 0, 0, 0.484], "288": [0.01001, 0.8265, 0, 0, 0.72], "289": [0.23489, 0.67311, 0, 0, 0.484], "290": [0.277, 0.67311, 0, 0, 0.72], "291": [0.23489, 0.67311, 0, 0, 0.484], "292": [0, 0.8265, 0, 0, 0.777], "293": [0, 0.865, 0, 0, 0.577], "294": [0, 0.67311, 0, 0, 0.788], "295": [0, 0.67311, 0, 0, 0.579], "296": [0, 0.8265, 0, 0, 0.357], "297": [0, 0.67311, 0, 0, 0.285], "298": [0, 0.779, 0, 0, 0.357], "299": [0, 0.67311, 0, 0, 0.285], "300": [0, 0.865, 0, 0, 0.357], "301": [0, 0.67311, 0, 0, 0.285], "302": [0.21756, 0.67311, 0, 0, 0.357], "303": [0.21756, 0.67311, 0, 0, 0.285], "304": [0, 0.8265, 0, 0, 0.357], "305": [0, 0.48214, 0, 0, 0.285], "306": [0.01001, 0.67311, 0, 0, 0.753], "307": [0.23489, 0.67311, 0, 0, 0.548], "308": [0.01001, 0.8265, 0, 0, 0.396], "309": [0.23489, 0.67311, 0, 0, 0.263], "310": [0.277, 0.67311, 0, 0, 0.702], "311": [0.277, 0.67311, 0, 0, 0.542], "312": [0, 0.48214, 0, 0, 0.542], "313": [0, 0.8265, 0, 0, 0.585], "314": [0, 0.865, 0, 0, 0.283], "315": [0.277, 0.67311, 0, 0, 0.585], "316": [0.277, 0.67311, 0, 0, 0.283], "317": [0, 0.67311, 0, 0, 0.585], "318": [0, 0.67311, 0, 0, 0.366], "319": [0, 0.67311, 0, 0, 0.585], "320": [0, 0.67311, 0, 0, 0.361], "321": [0, 0.68756, 0, 0, 0.59], "322": [0, 0.68756, 0, 0, 0.29], "323": [0.01048, 0.82933, 0, 0, 0.742], "324": [0, 0.68756, 0, 0, 0.576], "325": [0.277, 0.68756, 0, 0, 0.742], "326": [0.277, 0.48081, 0, 0, 0.576], "327": [0.01048, 0.82933, 0, 0, 0.742], "328": [0, 0.68756, 0, 0, 0.576], "329": [0, 0.68756, 0, 0, 0.576], "330": [0.23282, 0.68756, 0, 0, 0.742], "331": [0.23282, 0.48081, 0, 0, 0.559], "332": [0.01048, 0.772, 0, 0, 0.737], "333": [0.01048, 0.61, 0, 0, 0.514], "334": [0.01048, 0.86533, 0, 0, 0.737], "335": [0.01048, 0.68756, 0, 0, 0.514], "336": [0.01048, 0.82933, 0, 0, 0.737], "337": [0.01048, 0.68756, 0, 0, 0.514], "338": [0.01048, 0.68756, 0, 0, 0.945], "339": [0.01048, 0.48081, 0, 0, 0.807], "340": [0, 0.82933, 0, 0, 0.659], "341": [0, 0.68756, 0, 0, 0.38], "342": [0.277, 0.68756, 0, 0, 0.659], "343": [0.277, 0.48081, 0, 0, 0.38], "344": [0, 0.82933, 0, 0, 0.659], "345": [0, 0.68756, 0, 0, 0.38], "346": [0.01048, 0.82933, 0, 0, 0.504], "347": [0.01048, 0.68756, 0, 0, 0.394], "348": [0.01048, 0.82933, 0, 0, 0.504], "349": [0.01048, 0.68756, 0, 0, 0.394], "350": [0.21533, 0.68756, 0, 0, 0.504], "351": [0.21533, 0.48081, 0, 0, 0.394], "352": [0.01048, 0.82933, 0, 0, 0.504], "353": [0.01048, 0.68756, 0, 0, 0.394], "354": [0.21533, 0.68756, 0, 0, 0.603], "355": [0.21533, 0.61, 0, 0, 0.315], "356": [0, 0.82933, 0, 0, 0.603], "357": [0.01048, 0.68756, 0, 0, 0.353], "358": [0, 0.68756, 0, 0, 0.603], "359": [0.01048, 0.61, 0, 0, 0.328], "360": [0.01048, 0.82933, 0, 0, 0.752], "361": [0.01048, 0.68756, 0, 0, 0.57], "362": [0.01048, 0.772, 0, 0, 0.752], "363": [0.01048, 0.61, 0, 0, 0.57], "364": [0.01048, 0.86533, 0, 0, 0.752], "365": [0.01048, 0.68756, 0, 0, 0.57], "366": [0.01048, 0.899, 0, 0, 0.752], "367": [0.01048, 0.68756, 0, 0, 0.57], "368": [0.01048, 0.82933, 0, 0, 0.752], "369": [0.01048, 0.68756, 0, 0, 0.57], "370": [0.21533, 0.68756, 0, 0, 0.753], "371": [0.21533, 0.48081, 0, 0, 0.57], "372": [0.01048, 0.82933, 0, 0, 0.944], "373": [0.01048, 0.68756, 0, 0, 0.749], "374": [0, 0.82933, 0, 0, 0.647], "375": [0.22017, 0.68756, 0, 0, 0.483], "376": [0, 0.82933, 0, 0, 0.647], "377": [0, 0.82933, 0, 0, 0.594], "378": [0, 0.68756, 0, 0, 0.458], "379": [0, 0.82933, 0, 0, 0.594], "380": [0, 0.68756, 0, 0, 0.458], "381": [0, 0.82933, 0, 0, 0.594], "382": [0, 0.68756, 0, 0, 0.458], "383": [0, 0.68756, 0, 0, 0.285], "384": [0.01048, 0.68756, 0, 0, 0.522], "392": [0.01048, 0.68756, 0, 0, 0.446], "400": [0.01048, 0.68756, 0, 0, 0.518], "402": [0.212, 0.68756, 0, 0, 0.301], "405": [0.01048, 0.68756, 0, 0, 0.798], "409": [0, 0.68756, 0, 0, 0.538], "410": [0, 0.68756, 0, 0, 0.287], "411": [0, 0.68756, 0, 0, 0.495], "414": [0.22017, 0.48081, 0, 0, 0.559], "416": [0.01048, 0.80225, 0, 0, 0.737], "417": [0.01048, 0.68756, 0, 0, 0.516], "421": [0.22017, 0.68756, 0, 0, 0.522], "426": [0.23282, 0.68756, 0, 0, 0.298], "427": [0.224, 0.61, 0, 0, 0.321], "429": [0.01048, 0.68756, 0, 0, 0.315], "431": [0.01048, 0.82933, 0, 0, 0.762], "432": [0.01048, 0.68756, 0, 0, 0.574], "437": [0, 0.68756, 0, 0, 0.594], "442": [0.23282, 0.48081, 0, 0, 0.43], "443": [0, 0.68756, 0, 0, 0.508], "446": [0.01048, 0.61, 0, 0, 0.406], "448": [0, 0.68756, 0, 0, 0.25], "449": [0, 0.68756, 0, 0, 0.423], "450": [0, 0.68756, 0, 0, 0.422], "451": [0.01048, 0.68756, 0, 0, 0.245], "478": [0, 0.899, 0, 0, 0.718], "479": [0.01048, 0.772, 0, 0, 0.48], "496": [0.23282, 0.68756, 0, 0, 0.263], "506": [0, 1.026, 0, 0, 0.718], "507": [0.01048, 0.86533, 0, 0, 0.48], "508": [0, 0.82933, 0, 0, 0.894], "509": [0.01048, 0.68756, 0, 0, 0.709], "510": [0.01048, 0.82933, 0, 0, 0.737], "511": [0.01048, 0.68756, 0, 0, 0.514], "536": [0.277, 0.68756, 0, 0, 0.504], "537": [0.277, 0.48081, 0, 0, 0.394], "538": [0.277, 0.68756, 0, 0, 0.603], "539": [0.277, 0.61, 0, 0, 0.315], "545": [0.15533, 0.68756, 0, 0, 0.674], "552": [0.21533, 0.68756, 0, 0, 0.626], "553": [0.21533, 0.48081, 0, 0, 0.464], "564": [0.15533, 0.68756, 0, 0, 0.399], "565": [0.15533, 0.48081, 0, 0, 0.702], "566": [0.15533, 0.61, 0, 0, 0.406], "567": [0.23282, 0.48081, 0, 0, 0.263], "775": [0, 0.67066, 0, 0, 0], "778": [0, 0.7421, 0, 0, 0], "915": [0, 0.67066, 0, 0, 0.569], "916": [0, 0.67066, 0, 0, 0.667], "922": [0, 0.67066, 0, 0, 0.702], "923": [0, 0.67066, 0, 0, 0.71], "928": [0, 0.67066, 0, 0, 0.759], "931": [0, 0.67066, 0, 0, 0.604], "934": [0, 0.67066, 0, 0, 0.718], "936": [0, 0.67066, 0, 0, 0.72], "937": [0, 0.67066, 0, 0, 0.777], "1071": [0, 0.67066, 0, 0, 0.654], "1544": [0.25975, 0.45202, 0, 0, 0.974], "1548": [0, 0.24878, 0, 0, 0.25], "1563": [0.06382, 0.38056, 0, 0, 0.212], "1566": [0.06382, 0.2096, 0, 0, 0.356], "1567": [0.06382, 0.62407, 0, 0, 0.424], "1569": [0.037, 0.277, 0, 0, 0.436], "1575": [0, 0.67915, 0, 0, 0.237], "1576": [0.2, 0.402, 0, 0, 0.771], "1577": [0, 0.62407, 0, 0, 0.423], "1578": [0, 0.56887, 0, 0, 0.771], "1579": [0, 0.56887, 0, 0, 0.771], "1580": [0.2, 0.34, 0, 0, 0.75], "1581": [0, 0.34, 0, 0, 0.75], "1582": [0, 0.56887, 0, 0, 0.75], "1583": [0, 0.402, 0, 0, 0.415], "1584": [0, 0.56887, 0, 0, 0.478], "1585": [0, 0.56887, 0, 0, 0.495], "1586": [0, 0.7335, 0, 0, 0.495], "1587": [0.08359, 0.51967, 0, 0, 1.013], "1588": [0.08359, 0.67915, 0, 0, 1.013], "1589": [0.08359, 0.56887, 0, 0, 1.095], "1590": [0.08359, 0.7335, 0, 0, 1.095], "1591": [0, 0.67915, 0, 0, 0.769], "1592": [0, 0.67915, 0, 0, 0.769], "1593": [0.08359, 0.67915, 0, 0, 0.604], "1594": [0.08359, 0.8648, 0, 0, 0.604], "1601": [0, 0.67915, 0, 0, 0.848], "1602": [0.08359, 0.67915, 0, 0, 0.646], "1603": [0, 0.67915, 0, 0, 0.557], "1604": [0.08359, 0.67915, 0, 0, 0.595], "1605": [0, 0.67915, 0, 0, 0.488], "1606": [0.08359, 0.56887, 0, 0, 0.586], "1607": [0, 0.433, 0, 0, 0.703], "1608": [0, 0.56887, 0, 0, 0.523], "1609": [0, 0.56887, 0, 0, 0.618], "1610": [0, 0.56887, 0, 0, 0.618], "1632": [0, 0.32, 0, 0, 0.314], "1633": [0, 0.56985, 0, 0, 0.316], "1634": [0, 0.56985, 0, 0, 0.413], "1635": [0, 0.56985, 0, 0, 0.477], "1636": [0, 0.56985, 0, 0, 0.419], "1637": [0, 0.50825, 0, 0, 0.381], "1638": [0, 0.56985, 0, 0, 0.445], "1639": [0, 0.56985, 0, 0, 0.436], "1640": [0, 0.56985, 0, 0, 0.436], "1641": [0, 0.56985, 0, 0, 0.433], "1642": [0.06125, 0.50825, 0, 0, 0.401], "1643"