//----------------------------------------------------------
// Copyright (C) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------
// MicrosoftAjax.js
Function.__typeName = "Function"; Function.__class = true; Function.createCallback = function(b, a) { return function() { var e = arguments.length; if (e > 0) { var d = []; for (var c = 0; c < e; c++) d[c] = arguments[c]; d[e] = a; return b.apply(this, d) } return b.call(this, a) } }; Function.createDelegate = function(a, b) { return function() { return b.apply(a, arguments) } }; Function.emptyFunction = Function.emptyMethod = function() { }; Function._validateParams = function(e, c) { var a; a = Function._validateParameterCount(e, c); if (a) { a.popStackFrame(); return a } for (var b = 0; b < e.length; b++) { var d = c[Math.min(b, c.length - 1)], f = d.name; if (d.parameterArray) f += "[" + (b - c.length + 1) + "]"; a = Function._validateParameter(e[b], d, f); if (a) { a.popStackFrame(); return a } } return null }; Function._validateParameterCount = function(e, a) { var c = a.length, d = 0; for (var b = 0; b < a.length; b++) if (a[b].parameterArray) c = Number.MAX_VALUE; else if (!a[b].optional) d++; if (e.length < d || e.length > c) { var f = Error.parameterCount(); f.popStackFrame(); return f } return null }; Function._validateParameter = function(c, a, h) { var b, g = a.type, l = !!a.integer, k = !!a.domElement, m = !!a.mayBeNull; b = Function._validateParameterType(c, g, l, k, m, h); if (b) { b.popStackFrame(); return b } var e = a.elementType, f = !!a.elementMayBeNull; if (g === Array && typeof c !== "undefined" && c !== null && (e || !f)) { var j = !!a.elementInteger, i = !!a.elementDomElement; for (var d = 0; d < c.length; d++) { var n = c[d]; b = Function._validateParameterType(n, e, j, i, f, h + "[" + d + "]"); if (b) { b.popStackFrame(); return b } } } return null }; Function._validateParameterType = function(a, c, n, m, k, d) { var b; if (typeof a === "undefined") if (k) return null; else { b = Error.argumentUndefined(d); b.popStackFrame(); return b } if (a === null) if (k) return null; else { b = Error.argumentNull(d); b.popStackFrame(); return b } if (c && c.__enum) { if (typeof a !== "number") { b = Error.argumentType(d, Object.getType(a), c); b.popStackFrame(); return b } if (a % 1 === 0) { var e = c.prototype; if (!c.__flags || a === 0) { for (var i in e) if (e[i] === a) return null } else { var l = a; for (var i in e) { var f = e[i]; if (f === 0) continue; if ((f & a) === f) l -= f; if (l === 0) return null } } } b = Error.argumentOutOfRange(d, a, String.format(Sys.Res.enumInvalidValue, a, c.getName())); b.popStackFrame(); return b } if (m) { var h; if (typeof a.nodeType !== "number") { var g = a.ownerDocument || a.document || a; if (g != a) { var j = g.defaultView || g.parentWindow; h = j != a && !(j.document && a.document && j.document === a.document) } else h = typeof g.body === "undefined" } else h = a.nodeType === 3; if (h) { b = Error.argument(d, Sys.Res.argumentDomElement); b.popStackFrame(); return b } } if (c && !c.isInstanceOfType(a)) { b = Error.argumentType(d, Object.getType(a), c); b.popStackFrame(); return b } if (c === Number && n) if (a % 1 !== 0) { b = Error.argumentOutOfRange(d, a, Sys.Res.argumentInteger); b.popStackFrame(); return b } return null }; Error.__typeName = "Error"; Error.__class = true; Error.create = function(d, b) { var a = new Error(d); a.message = d; if (b) for (var c in b) a[c] = b[c]; a.popStackFrame(); return a }; Error.argument = function(a, c) { var b = "Sys.ArgumentException: " + (c ? c : Sys.Res.argument); if (a) b += "\n" + String.format(Sys.Res.paramName, a); var d = Error.create(b, { name: "Sys.ArgumentException", paramName: a }); d.popStackFrame(); return d }; Error.argumentNull = function(a, c) { var b = "Sys.ArgumentNullException: " + (c ? c : Sys.Res.argumentNull); if (a) b += "\n" + String.format(Sys.Res.paramName, a); var d = Error.create(b, { name: "Sys.ArgumentNullException", paramName: a }); d.popStackFrame(); return d }; Error.argumentOutOfRange = function(c, a, d) { var b = "Sys.ArgumentOutOfRangeException: " + (d ? d : Sys.Res.argumentOutOfRange); if (c) b += "\n" + String.format(Sys.Res.paramName, c); if (typeof a !== "undefined" && a !== null) b += "\n" + String.format(Sys.Res.actualValue, a); var e = Error.create(b, { name: "Sys.ArgumentOutOfRangeException", paramName: c, actualValue: a }); e.popStackFrame(); return e }; Error.argumentType = function(d, c, b, e) { var a = "Sys.ArgumentTypeException: "; if (e) a += e; else if (c && b) a += String.format(Sys.Res.argumentTypeWithTypes, c.getName(), b.getName()); else a += Sys.Res.argumentType; if (d) a += "\n" + String.format(Sys.Res.paramName, d); var f = Error.create(a, { name: "Sys.ArgumentTypeException", paramName: d, actualType: c, expectedType: b }); f.popStackFrame(); return f }; Error.argumentUndefined = function(a, c) { var b = "Sys.ArgumentUndefinedException: " + (c ? c : Sys.Res.argumentUndefined); if (a) b += "\n" + String.format(Sys.Res.paramName, a); var d = Error.create(b, { name: "Sys.ArgumentUndefinedException", paramName: a }); d.popStackFrame(); return d }; Error.format = function(a) { var c = "Sys.FormatException: " + (a ? a : Sys.Res.format), b = Error.create(c, { name: "Sys.FormatException" }); b.popStackFrame(); return b }; Error.invalidOperation = function(a) { var c = "Sys.InvalidOperationException: " + (a ? a : Sys.Res.invalidOperation), b = Error.create(c, { name: "Sys.InvalidOperationException" }); b.popStackFrame(); return b }; Error.notImplemented = function(a) { var c = "Sys.NotImplementedException: " + (a ? a : Sys.Res.notImplemented), b = Error.create(c, { name: "Sys.NotImplementedException" }); b.popStackFrame(); return b }; Error.parameterCount = function(a) { var c = "Sys.ParameterCountException: " + (a ? a : Sys.Res.parameterCount), b = Error.create(c, { name: "Sys.ParameterCountException" }); b.popStackFrame(); return b }; Error.prototype.popStackFrame = function() { if (typeof this.stack === "undefined" || this.stack === null || typeof this.fileName === "undefined" || this.fileName === null || typeof this.lineNumber === "undefined" || this.lineNumber === null) return; var a = this.stack.split("\n"), c = a[0], e = this.fileName + ":" + this.lineNumber; while (typeof c !== "undefined" && c !== null && c.indexOf(e) === -1) { a.shift(); c = a[0] } var d = a[1]; if (typeof d === "undefined" || d === null) return; var b = d.match(/@(.*):(\d+)$/); if (typeof b === "undefined" || b === null) return; this.fileName = b[1]; this.lineNumber = parseInt(b[2]); a.shift(); this.stack = a.join("\n") }; Object.__typeName = "Object"; Object.__class = true; Object.getType = function(b) { var a = b.constructor; if (!a || typeof a !== "function" || !a.__typeName || a.__typeName === "Object") return Object; return a }; Object.getTypeName = function(a) { return Object.getType(a).getName() }; String.__typeName = "String"; String.__class = true; String.prototype.endsWith = function(a) { return this.substr(this.length - a.length) === a }; String.prototype.startsWith = function(a) { return this.substr(0, a.length) === a }; String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g, "") }; String.prototype.trimEnd = function() { return this.replace(/\s+$/, "") }; String.prototype.trimStart = function() { return this.replace(/^\s+/, "") }; String.format = function() { return String._toFormattedString(false, arguments) }; String.localeFormat = function() { return String._toFormattedString(true, arguments) }; String._toFormattedString = function(l, j) { var c = "", e = j[0]; for (var a = 0; true; ) { var f = e.indexOf("{", a), d = e.indexOf("}", a); if (f < 0 && d < 0) { c += e.slice(a); break } if (d > 0 && (d < f || f < 0)) { c += e.slice(a, d + 1); a = d + 2; continue } c += e.slice(a, f); a = f + 1; if (e.charAt(a) === "{") { c += "{"; a++; continue } if (d < 0) break; var h = e.substring(a, d), g = h.indexOf(":"), k = parseInt(g < 0 ? h : h.substring(0, g), 10) + 1, i = g < 0 ? "" : h.substring(g + 1), b = j[k]; if (typeof b === "undefined" || b === null) b = ""; if (b.toFormattedString) c += b.toFormattedString(i); else if (l && b.localeFormat) c += b.localeFormat(i); else if (b.format) c += b.format(i); else c += b.toString(); a = d + 1 } return c }; Boolean.__typeName = "Boolean"; Boolean.__class = true; Boolean.parse = function(b) { var a = b.trim().toLowerCase(); if (a === "false") return false; if (a === "true") return true }; Date.__typeName = "Date"; Date.__class = true; Date._appendPreOrPostMatch = function(e, b) { var d = 0, a = false; for (var c = 0, g = e.length; c < g; c++) { var f = e.charAt(c); switch (f) { case "'": if (a) b.append("'"); else d++; a = false; break; case "\\": if (a) b.append("\\"); a = !a; break; default: b.append(f); a = false } } return d }; Date._expandFormat = function(a, b) { if (!b) b = "F"; if (b.length === 1) switch (b) { case "d": return a.ShortDatePattern; case "D": return a.LongDatePattern; case "t": return a.ShortTimePattern; case "T": return a.LongTimePattern; case "F": return a.FullDateTimePattern; case "M": case "m": return a.MonthDayPattern; case "s": return a.SortableDateTimePattern; case "Y": case "y": return a.YearMonthPattern; default: throw Error.format(Sys.Res.formatInvalidString) } return b }; Date._expandYear = function(c, a) { if (a < 100) { var b = (new Date).getFullYear(); a += b - b % 100; if (a > c.Calendar.TwoDigitYearMax) return a - 100 } return a }; Date._getParseRegExp = function(b, e) { if (!b._parseRegExp) b._parseRegExp = {}; else if (b._parseRegExp[e]) return b._parseRegExp[e]; var c = Date._expandFormat(b, e); c = c.replace(/([\^\$\.\*\+\?\|\[\]\(\)\{\}])/g, "\\\\$1"); var a = new Sys.StringBuilder("^"), j = [], f = 0, i = 0, h = Date._getTokenRegExp(), d; while ((d = h.exec(c)) !== null) { var l = c.slice(f, d.index); f = h.lastIndex; i += Date._appendPreOrPostMatch(l, a); if (i % 2 === 1) { a.append(d[0]); continue } switch (d[0]) { case "dddd": case "ddd": case "MMMM": case "MMM": a.append("(\\D+)"); break; case "tt": case "t": a.append("(\\D*)"); break; case "yyyy": a.append("(\\d{4})"); break; case "fff": a.append("(\\d{3})"); break; case "ff": a.append("(\\d{2})"); break; case "f": a.append("(\\d)"); break; case "dd": case "d": case "MM": case "M": case "yy": case "y": case "HH": case "H": case "hh": case "h": case "mm": case "m": case "ss": case "s": a.append("(\\d\\d?)"); break; case "zzz": a.append("([+-]?\\d\\d?:\\d{2})"); break; case "zz": case "z": a.append("([+-]?\\d\\d?)") } Array.add(j, d[0]) } Date._appendPreOrPostMatch(c.slice(f), a); a.append("$"); var k = a.toString().replace(/\s+/g, "\\s+"), g = { "regExp": k, "groups": j }; b._parseRegExp[e] = g; return g }; Date._getTokenRegExp = function() { return /dddd|ddd|dd|d|MMMM|MMM|MM|M|yyyy|yy|y|hh|h|HH|H|mm|m|ss|s|tt|t|fff|ff|f|zzz|zz|z/g }; Date.parseLocale = function(a) { return Date._parse(a, Sys.CultureInfo.CurrentCulture, arguments) }; Date.parseInvariant = function(a) { return Date._parse(a, Sys.CultureInfo.InvariantCulture, arguments) }; Date._parse = function(g, c, h) { var e = false; for (var a = 1, i = h.length; a < i; a++) { var f = h[a]; if (f) { e = true; var b = Date._parseExact(g, f, c); if (b) return b } } if (!e) { var d = c._getDateTimeFormats(); for (var a = 0, i = d.length; a < i; a++) { var b = Date._parseExact(g, d[a], c); if (b) return b } } return null }; Date._parseExact = function(s, y, j) { s = s.trim(); var m = j.dateTimeFormat, v = Date._getParseRegExp(m, y), x = (new RegExp(v.regExp)).exec(s); if (x === null) return null; var w = v.groups, f = null, c = null, h = null, g = null, d = 0, n = 0, o = 0, e = 0, k = null, r = false; for (var p = 0, z = w.length; p < z; p++) { var a = x[p + 1]; if (a) switch (w[p]) { case "dd": case "d": h = parseInt(a, 10); if (h < 1 || h > 31) return null; break; case "MMMM": c = j._getMonthIndex(a); if (c < 0 || c > 11) return null; break; case "MMM": c = j._getAbbrMonthIndex(a); if (c < 0 || c > 11) return null; break; case "M": case "MM": var c = parseInt(a, 10) - 1; if (c < 0 || c > 11) return null; break; case "y": case "yy": f = Date._expandYear(m, parseInt(a, 10)); if (f < 0 || f > 9999) return null; break; case "yyyy": f = parseInt(a, 10); if (f < 0 || f > 9999) return null; break; case "h": case "hh": d = parseInt(a, 10); if (d === 12) d = 0; if (d < 0 || d > 11) return null; break; case "H": case "HH": d = parseInt(a, 10); if (d < 0 || d > 23) return null; break; case "m": case "mm": n = parseInt(a, 10); if (n < 0 || n > 59) return null; break; case "s": case "ss": o = parseInt(a, 10); if (o < 0 || o > 59) return null; break; case "tt": case "t": var u = a.toUpperCase(); r = u === m.PMDesignator.toUpperCase(); if (!r && u !== m.AMDesignator.toUpperCase()) return null; break; case "f": e = parseInt(a, 10) * 100; if (e < 0 || e > 999) return null; break; case "ff": e = parseInt(a, 10) * 10; if (e < 0 || e > 999) return null; break; case "fff": e = parseInt(a, 10); if (e < 0 || e > 999) return null; break; case "dddd": g = j._getDayIndex(a); if (g < 0 || g > 6) return null; break; case "ddd": g = j._getAbbrDayIndex(a); if (g < 0 || g > 6) return null; break; case "zzz": var q = a.split(/:/); if (q.length !== 2) return null; var i = parseInt(q[0], 10); if (i < -12 || i > 13) return null; var l = parseInt(q[1], 10); if (l < 0 || l > 59) return null; k = i * 60 + (a.startsWith("-") ? -l : l); break; case "z": case "zz": var i = parseInt(a, 10); if (i < -12 || i > 13) return null; k = i * 60 } } var b = new Date; if (f === null) f = b.getFullYear(); if (c === null) c = b.getMonth(); if (h === null) h = b.getDate(); b.setFullYear(f, c, h); if (b.getDate() !== h) return null; if (g !== null && b.getDay() !== g) return null; if (r && d < 12) d += 12; b.setHours(d, n, o, e); if (k !== null) { var t = b.getMinutes() - (k + b.getTimezoneOffset()); b.setHours(b.getHours() + parseInt(t / 60, 10), t % 60) } return b }; Date.prototype.format = function(a) { return this._toFormattedString(a, Sys.CultureInfo.InvariantCulture) }; Date.prototype.localeFormat = function(a) { return this._toFormattedString(a, Sys.CultureInfo.CurrentCulture) }; Date.prototype._toFormattedString = function(e, h) { if (!e || e.length === 0 || e === "i") if (h && h.name.length > 0) return this.toLocaleString(); else return this.toString(); var d = h.dateTimeFormat; e = Date._expandFormat(d, e); var a = new Sys.StringBuilder, b; function c(a) { if (a < 10) return "0" + a; return a.toString() } function g(a) { if (a < 10) return "00" + a; if (a < 100) return "0" + a; return a.toString() } var j = 0, i = Date._getTokenRegExp(); for (; true; ) { var l = i.lastIndex, f = i.exec(e), k = e.slice(l, f ? f.index : e.length); j += Date._appendPreOrPostMatch(k, a); if (!f) break; if (j % 2 === 1) { a.append(f[0]); continue } switch (f[0]) { case "dddd": a.append(d.DayNames[this.getDay()]); break; case "ddd": a.append(d.AbbreviatedDayNames[this.getDay()]); break; case "dd": a.append(c(this.getDate())); break; case "d": a.append(this.getDate()); break; case "MMMM": a.append(d.MonthNames[this.getMonth()]); break; case "MMM": a.append(d.AbbreviatedMonthNames[this.getMonth()]); break; case "MM": a.append(c(this.getMonth() + 1)); break; case "M": a.append(this.getMonth() + 1); break; case "yyyy": a.append(this.getFullYear()); break; case "yy": a.append(c(this.getFullYear() % 100)); break; case "y": a.append(this.getFullYear() % 100); break; case "hh": b = this.getHours() % 12; if (b === 0) b = 12; a.append(c(b)); break; case "h": b = this.getHours() % 12; if (b === 0) b = 12; a.append(b); break; case "HH": a.append(c(this.getHours())); break; case "H": a.append(this.getHours()); break; case "mm": a.append(c(this.getMinutes())); break; case "m": a.append(this.getMinutes()); break; case "ss": a.append(c(this.getSeconds())); break; case "s": a.append(this.getSeconds()); break; case "tt": a.append(this.getHours() < 12 ? d.AMDesignator : d.PMDesignator); break; case "t": a.append((this.getHours() < 12 ? d.AMDesignator : d.PMDesignator).charAt(0)); break; case "f": a.append(g(this.getMilliseconds()).charAt(0)); break; case "ff": a.append(g(this.getMilliseconds()).substr(0, 2)); break; case "fff": a.append(g(this.getMilliseconds())); break; case "z": b = this.getTimezoneOffset() / 60; a.append((b <= 0 ? "+" : "-") + Math.floor(Math.abs(b))); break; case "zz": b = this.getTimezoneOffset() / 60; a.append((b <= 0 ? "+" : "-") + c(Math.floor(Math.abs(b)))); break; case "zzz": b = this.getTimezoneOffset() / 60; a.append((b <= 0 ? "+" : "-") + c(Math.floor(Math.abs(b))) + d.TimeSeparator + c(Math.abs(this.getTimezoneOffset() % 60))) } } return a.toString() }; Number.__typeName = "Number"; Number.__class = true; Number.parseLocale = function(a) { return Number._parse(a, Sys.CultureInfo.CurrentCulture) }; Number.parseInvariant = function(a) { return Number._parse(a, Sys.CultureInfo.InvariantCulture) }; Number._parse = function(b, o) { b = b.trim(); if (b.match(/^[+-]?infinity$/i)) return parseFloat(b); if (b.match(/^0x[a-f0-9]+$/i)) return parseInt(b); var a = o.numberFormat, g = Number._parseNumberNegativePattern(b, a, a.NumberNegativePattern), h = g[0], e = g[1]; if (h === "" && a.NumberNegativePattern !== 1) { g = Number._parseNumberNegativePattern(b, a, 1); h = g[0]; e = g[1] } if (h === "") h = "+"; var j, d, f = e.indexOf("e"); if (f < 0) f = e.indexOf("E"); if (f < 0) { d = e; j = null } else { d = e.substr(0, f); j = e.substr(f + 1) } var c, k, m = d.indexOf(a.NumberDecimalSeparator); if (m < 0) { c = d; k = null } else { c = d.substr(0, m); k = d.substr(m + a.NumberDecimalSeparator.length) } c = c.split(a.NumberGroupSeparator).join(""); var n = a.NumberGroupSeparator.replace(/\u00A0/g, " "); if (a.NumberGroupSeparator !== n) c = c.split(n).join(""); var l = h + c; if (k !== null) l += "." + k; if (j !== null) { var i = Number._parseNumberNegativePattern(j, a, 1); if (i[0] === "") i[0] = "+"; l += "e" + i[0] + i[1] } if (l.match(/^[+-]?\d*\.?\d*(e[+-]?\d+)?$/)) return parseFloat(l); return Number.NaN }; Number._parseNumberNegativePattern = function(a, d, e) { var b = d.NegativeSign, c = d.PositiveSign; switch (e) { case 4: b = " " + b; c = " " + c; case 3: if (a.endsWith(b)) return ["-", a.substr(0, a.length - b.length)]; else if (a.endsWith(c)) return ["+", a.substr(0, a.length - c.length)]; break; case 2: b += " "; c += " "; case 1: if (a.startsWith(b)) return ["-", a.substr(b.length)]; else if (a.startsWith(c)) return ["+", a.substr(c.length)]; break; case 0: if (a.startsWith("(") && a.endsWith(")")) return ["-", a.substr(1, a.length - 2)] } return ["", a] }; Number.prototype.format = function(a) { return this._toFormattedString(a, Sys.CultureInfo.InvariantCulture) }; Number.prototype.localeFormat = function(a) { return this._toFormattedString(a, Sys.CultureInfo.CurrentCulture) }; Number.prototype._toFormattedString = function(d, j) { if (!d || d.length === 0 || d === "i") if (j && j.name.length > 0) return this.toLocaleString(); else return this.toString(); var o = ["n %", "n%", "%n"], n = ["-n %", "-n%", "-%n"], p = ["(n)", "-n", "- n", "n-", "n -"], m = ["$n", "n$", "$ n", "n $"], l = ["($n)", "-$n", "$-n", "$n-", "(n$)", "-n$", "n-$", "n$-", "-n $", "-$ n", "n $-", "$ n-", "$ -n", "n- $", "($ n)", "(n $)"]; function g(a, c, d) { for (var b = a.length; b < c; b++) a = d ? "0" + a : a + "0"; return a } function i(j, i, l, n, p) { var h = l[0], k = 1, o = Math.pow(10, i), m = Math.round(j * o) / o; if (!isFinite(m)) m = j; j = m; var b = j.toString(), a = "", c, e = b.split(/e/i); b = e[0]; c = e.length > 1 ? parseInt(e[1]) : 0; e = b.split("."); b = e[0]; a = e.length > 1 ? e[1] : ""; var q; if (c > 0) { a = g(a, c, false); b += a.slice(0, c); a = a.substr(c) } else if (c < 0) { c = -c; b = g(b, c + 1, true); a = b.slice(-c, b.length) + a; b = b.slice(0, -c) } if (i > 0) { if (a.length > i) a = a.slice(0, i); else a = g(a, i, false); a = p + a } else a = ""; var d = b.length - 1, f = ""; while (d >= 0) { if (h === 0 || h > d) if (f.length > 0) return b.slice(0, d + 1) + n + f + a; else return b.slice(0, d + 1) + a; if (f.length > 0) f = b.slice(d - h + 1, d + 1) + n + f; else f = b.slice(d - h + 1, d + 1); d -= h; if (k < l.length) { h = l[k]; k++ } } return b.slice(0, d + 1) + n + f + a } var a = j.numberFormat, e = Math.abs(this); if (!d) d = "D"; var b = -1; if (d.length > 1) b = parseInt(d.slice(1), 10); var c; switch (d.charAt(0)) { case "d": case "D": c = "n"; if (b !== -1) e = g("" + e, b, true); if (this < 0) e = -e; break; case "c": case "C": if (this < 0) c = l[a.CurrencyNegativePattern]; else c = m[a.CurrencyPositivePattern]; if (b === -1) b = a.CurrencyDecimalDigits; e = i(Math.abs(this), b, a.CurrencyGroupSizes, a.CurrencyGroupSeparator, a.CurrencyDecimalSeparator); break; case "n": case "N": if (this < 0) c = p[a.NumberNegativePattern]; else c = "n"; if (b === -1) b = a.NumberDecimalDigits; e = i(Math.abs(this), b, a.NumberGroupSizes, a.NumberGroupSeparator, a.NumberDecimalSeparator); break; case "p": case "P": if (this < 0) c = n[a.PercentNegativePattern]; else c = o[a.PercentPositivePattern]; if (b === -1) b = a.PercentDecimalDigits; e = i(Math.abs(this) * 100, b, a.PercentGroupSizes, a.PercentGroupSeparator, a.PercentDecimalSeparator); break; default: throw Error.format(Sys.Res.formatBadFormatSpecifier) } var k = /n|\$|-|%/g, f = ""; for (; true; ) { var q = k.lastIndex, h = k.exec(c); f += c.slice(q, h ? h.index : c.length); if (!h) break; switch (h[0]) { case "n": f += e; break; case "$": f += a.CurrencySymbol; break; case "-": f += a.NegativeSign; break; case "%": f += a.PercentSymbol } } return f }; RegExp.__typeName = "RegExp"; RegExp.__class = true; Array.__typeName = "Array"; Array.__class = true; Array.add = Array.enqueue = function(a, b) { a[a.length] = b }; Array.addRange = function(a, b) { a.push.apply(a, b) }; Array.clear = function(a) { a.length = 0 }; Array.clone = function(a) { if (a.length === 1) return [a[0]]; else return Array.apply(null, a) }; Array.contains = function(a, b) { return Array.indexOf(a, b) >= 0 }; Array.dequeue = function(a) { return a.shift() }; Array.forEach = function(b, e, d) { for (var a = 0, f = b.length; a < f; a++) { var c = b[a]; if (typeof c !== "undefined") e.call(d, c, a, b) } }; Array.indexOf = function(d, e, a) { if (typeof e === "undefined") return -1; var c = d.length; if (c !== 0) { a = a - 0; if (isNaN(a)) a = 0; else { if (isFinite(a)) a = a - a % 1; if (a < 0) a = Math.max(0, c + a) } for (var b = a; b < c; b++) if (typeof d[b] !== "undefined" && d[b] === e) return b } return -1 }; Array.insert = function(a, b, c) { a.splice(b, 0, c) }; Array.parse = function(value) { if (!value) return []; return eval(value) }; Array.remove = function(b, c) { var a = Array.indexOf(b, c); if (a >= 0) b.splice(a, 1); return a >= 0 }; Array.removeAt = function(a, b) { a.splice(b, 1) }; if (!window) this.window = this; window.Type = Function; Type.prototype.callBaseMethod = function(a, d, b) { var c = this.getBaseMethod(a, d); if (!b) return c.apply(a); else return c.apply(a, b) }; Type.prototype.getBaseMethod = function(d, c) { var b = this.getBaseType(); if (b) { var a = b.prototype[c]; return a instanceof Function ? a : null } return null }; Type.prototype.getBaseType = function() { return typeof this.__baseType === "undefined" ? null : this.__baseType }; Type.prototype.getInterfaces = function() { var a = [], b = this; while (b) { var c = b.__interfaces; if (c) for (var d = 0, f = c.length; d < f; d++) { var e = c[d]; if (!Array.contains(a, e)) a[a.length] = e } b = b.__baseType } return a }; Type.prototype.getName = function() { return typeof this.__typeName === "undefined" ? "" : this.__typeName }; Type.prototype.implementsInterface = function(d) { this.resolveInheritance(); var c = d.getName(), a = this.__interfaceCache; if (a) { var e = a[c]; if (typeof e !== "undefined") return e } else a = this.__interfaceCache = {}; var b = this; while (b) { var f = b.__interfaces; if (f) if (Array.indexOf(f, d) !== -1) return a[c] = true; b = b.__baseType } return a[c] = false }; Type.prototype.inheritsFrom = function(b) { this.resolveInheritance(); var a = this.__baseType; while (a) { if (a === b) return true; a = a.__baseType } return false }; Type.prototype.initializeBase = function(a, b) { this.resolveInheritance(); if (this.__baseType) if (!b) this.__baseType.apply(a); else this.__baseType.apply(a, b); return a }; Type.prototype.isImplementedBy = function(a) { if (typeof a === "undefined" || a === null) return false; var b = Object.getType(a); return !!(b.implementsInterface && b.implementsInterface(this)) }; Type.prototype.isInstanceOfType = function(b) { if (typeof b === "undefined" || b === null) return false; if (b instanceof this) return true; var a = Object.getType(b); return !!(a === this) || a.inheritsFrom && a.inheritsFrom(this) || a.implementsInterface && a.implementsInterface(this) }; Type.prototype.registerClass = function(c, b, d) { this.prototype.constructor = this; this.__typeName = c; this.__class = true; if (b) { this.__baseType = b; this.__basePrototypePending = true } Sys.__upperCaseTypes[c.toUpperCase()] = this; if (d) { this.__interfaces = []; for (var a = 2, f = arguments.length; a < f; a++) { var e = arguments[a]; this.__interfaces.push(e) } } return this }; Type.prototype.registerInterface = function(a) { Sys.__upperCaseTypes[a.toUpperCase()] = this; this.prototype.constructor = this; this.__typeName = a; this.__interface = true; return this }; Type.prototype.resolveInheritance = function() { if (this.__basePrototypePending) { var b = this.__baseType; b.resolveInheritance(); for (var a in b.prototype) { var c = b.prototype[a]; if (!this.prototype[a]) this.prototype[a] = c } delete this.__basePrototypePending } }; Type.getRootNamespaces = function() { return Array.clone(Sys.__rootNamespaces) }; Type.isClass = function(a) { if (typeof a === "undefined" || a === null) return false; return !!a.__class }; Type.isInterface = function(a) { if (typeof a === "undefined" || a === null) return false; return !!a.__interface }; Type.isNamespace = function(a) { if (typeof a === "undefined" || a === null) return false; return !!a.__namespace }; Type.parse = function(typeName, ns) { var fn; if (ns) { fn = Sys.__upperCaseTypes[ns.getName().toUpperCase() + "." + typeName.toUpperCase()]; return fn || null } if (!typeName) return null; if (!Type.__htClasses) Type.__htClasses = {}; fn = Type.__htClasses[typeName]; if (!fn) { fn = eval(typeName); Type.__htClasses[typeName] = fn } return fn }; Type.registerNamespace = function(f) { var d = window, c = f.split("."); for (var b = 0; b < c.length; b++) { var e = c[b], a = d[e]; if (!a) { a = d[e] = { __namespace: true, __typeName: c.slice(0, b + 1).join(".") }; if (b === 0) Sys.__rootNamespaces[Sys.__rootNamespaces.length] = a; a.getName = function() { return this.__typeName } } d = a } }; window.Sys = { __namespace: true, __typeName: "Sys", getName: function() { return "Sys" }, __upperCaseTypes: {} }; Sys.__rootNamespaces = [Sys]; Sys.IDisposable = function() { }; Sys.IDisposable.prototype = {}; Sys.IDisposable.registerInterface("Sys.IDisposable"); Sys.StringBuilder = function(a) { this._parts = typeof a !== "undefined" && a !== null && a !== "" ? [a.toString()] : []; this._value = {}; this._len = 0 }; Sys.StringBuilder.prototype = { append: function(a) { this._parts[this._parts.length] = a }, appendLine: function(a) { this._parts[this._parts.length] = typeof a === "undefined" || a === null || a === "" ? "\r\n" : a + "\r\n" }, clear: function() { this._parts = []; this._value = {}; this._len = 0 }, isEmpty: function() { if (this._parts.length === 0) return true; return this.toString() === "" }, toString: function(a) { a = a || ""; var b = this._parts; if (this._len !== b.length) { this._value = {}; this._len = b.length } var d = this._value; if (typeof d[a] === "undefined") { if (a !== "") for (var c = 0; c < b.length; ) if (typeof b[c] === "undefined" || b[c] === "" || b[c] === null) b.splice(c, 1); else c++; d[a] = this._parts.join(a) } return d[a] } }; Sys.StringBuilder.registerClass("Sys.StringBuilder"); if (!window.XMLHttpRequest) window.XMLHttpRequest = function() { var b = ["Msxml2.XMLHTTP.3.0", "Msxml2.XMLHTTP"]; for (var a = 0, c = b.length; a < c; a++) try { return new ActiveXObject(b[a]) } catch (d) { } return null }; Sys.Browser = {}; Sys.Browser.InternetExplorer = {}; Sys.Browser.Firefox = {}; Sys.Browser.Safari = {}; Sys.Browser.Opera = {}; Sys.Browser.agent = null; Sys.Browser.hasDebuggerStatement = false; Sys.Browser.name = navigator.appName; Sys.Browser.version = parseFloat(navigator.appVersion); Sys.Browser.documentMode = 0; if (navigator.userAgent.indexOf(" MSIE ") > -1) { Sys.Browser.agent = Sys.Browser.InternetExplorer; Sys.Browser.version = parseFloat(navigator.userAgent.match(/MSIE (\d+\.\d+)/)[1]); if (Sys.Browser.version >= 8) if (document.documentMode >= 7) Sys.Browser.documentMode = document.documentMode; Sys.Browser.hasDebuggerStatement = true } else if (navigator.userAgent.indexOf(" Firefox/") > -1) { Sys.Browser.agent = Sys.Browser.Firefox; Sys.Browser.version = parseFloat(navigator.userAgent.match(/Firefox\/(\d+\.\d+)/)[1]); Sys.Browser.name = "Firefox"; Sys.Browser.hasDebuggerStatement = true } else if (navigator.userAgent.indexOf(" AppleWebKit/") > -1) { Sys.Browser.agent = Sys.Browser.Safari; Sys.Browser.version = parseFloat(navigator.userAgent.match(/AppleWebKit\/(\d+(\.\d+)?)/)[1]); Sys.Browser.name = "Safari" } else if (navigator.userAgent.indexOf("Opera/") > -1) Sys.Browser.agent = Sys.Browser.Opera; Type.registerNamespace("Sys.UI"); Sys._Debug = function() { }; Sys._Debug.prototype = { _appendConsole: function(a) { if (typeof Debug !== "undefined" && Debug.writeln) Debug.writeln(a); if (window.console && window.console.log) window.console.log(a); if (window.opera) window.opera.postError(a); if (window.debugService) window.debugService.trace(a) }, _appendTrace: function(b) { var a = document.getElementById("TraceConsole"); if (a && a.tagName.toUpperCase() === "TEXTAREA") a.value += b + "\n" }, assert: function(c, a, b) { if (!c) { a = b && this.assert.caller ? String.format(Sys.Res.assertFailedCaller, a, this.assert.caller) : String.format(Sys.Res.assertFailed, a); if (confirm(String.format(Sys.Res.breakIntoDebugger, a))) this.fail(a) } }, clearTrace: function() { var a = document.getElementById("TraceConsole"); if (a && a.tagName.toUpperCase() === "TEXTAREA") a.value = "" }, fail: function(message) { this._appendConsole(message); if (Sys.Browser.hasDebuggerStatement) eval("debugger") }, trace: function(a) { this._appendConsole(a); this._appendTrace(a) }, traceDump: function(a, b) { var c = this._traceDump(a, b, true) }, _traceDump: function(a, c, f, b, d) { c = c ? c : "traceDump"; b = b ? b : ""; if (a === null) { this.trace(b + c + ": null"); return } switch (typeof a) { case "undefined": this.trace(b + c + ": Undefined"); break; case "number": case "string": case "boolean": this.trace(b + c + ": " + a); break; default: if (Date.isInstanceOfType(a) || RegExp.isInstanceOfType(a)) { this.trace(b + c + ": " + a.toString()); break } if (!d) d = []; else if (Array.contains(d, a)) { this.trace(b + c + ": ..."); return } Array.add(d, a); if (a == window || a === document || window.HTMLElement && a instanceof HTMLElement || typeof a.nodeName === "string") { var k = a.tagName ? a.tagName : "DomElement"; if (a.id) k += " - " + a.id; this.trace(b + c + " {" + k + "}") } else { var i = Object.getTypeName(a); this.trace(b + c + (typeof i === "string" ? " {" + i + "}" : "")); if (b === "" || f) { b += "    "; var e, j, l, g, h; if (Array.isInstanceOfType(a)) { j = a.length; for (e = 0; e < j; e++) this._traceDump(a[e], "[" + e + "]", f, b, d) } else for (g in a) { h = a[g]; if (!Function.isInstanceOfType(h)) this._traceDump(h, g, f, b, d) } } } Array.remove(d, a) } } }; Sys._Debug.registerClass("Sys._Debug"); Sys.Debug = new Sys._Debug; Sys.Debug.isDebug = false; function Sys$Enum$parse(c, e) { var a, b, i; if (e) { a = this.__lowerCaseValues; if (!a) { this.__lowerCaseValues = a = {}; var g = this.prototype; for (var f in g) a[f.toLowerCase()] = g[f] } } else a = this.prototype; if (!this.__flags) { i = e ? c.toLowerCase() : c; b = a[i.trim()]; if (typeof b !== "number") throw Error.argument("value", String.format(Sys.Res.enumInvalidValue, c, this.__typeName)); return b } else { var h = (e ? c.toLowerCase() : c).split(","), j = 0; for (var d = h.length - 1; d >= 0; d--) { var k = h[d].trim(); b = a[k]; if (typeof b !== "number") throw Error.argument("value", String.format(Sys.Res.enumInvalidValue, c.split(",")[d].trim(), this.__typeName)); j |= b } return j } } function Sys$Enum$toString(c) { if (typeof c === "undefined" || c === null) return this.__string; var d = this.prototype, a; if (!this.__flags || c === 0) { for (a in d) if (d[a] === c) return a } else { var b = this.__sortedValues; if (!b) { b = []; for (a in d) b[b.length] = { key: a, value: d[a] }; b.sort(function(a, b) { return a.value - b.value }); this.__sortedValues = b } var e = [], g = c; for (a = b.length - 1; a >= 0; a--) { var h = b[a], f = h.value; if (f === 0) continue; if ((f & c) === f) { e[e.length] = h.key; g -= f; if (g === 0) break } } if (e.length && g === 0) return e.reverse().join(", ") } return "" } Type.prototype.registerEnum = function(b, c) { Sys.__upperCaseTypes[b.toUpperCase()] = this; for (var a in this.prototype) this[a] = this.prototype[a]; this.__typeName = b; this.parse = Sys$Enum$parse; this.__string = this.toString(); this.toString = Sys$Enum$toString; this.__flags = c; this.__enum = true }; Type.isEnum = function(a) { if (typeof a === "undefined" || a === null) return false; return !!a.__enum }; Type.isFlags = function(a) { if (typeof a === "undefined" || a === null) return false; return !!a.__flags }; Sys.EventHandlerList = function() { this._list = {} }; Sys.EventHandlerList.prototype = { addHandler: function(b, a) { Array.add(this._getEvent(b, true), a) }, removeHandler: function(c, b) { var a = this._getEvent(c); if (!a) return; Array.remove(a, b) }, getHandler: function(b) { var a = this._getEvent(b); if (!a || a.length === 0) return null; a = Array.clone(a); return function(c, d) { for (var b = 0, e = a.length; b < e; b++) a[b](c, d) } }, _getEvent: function(a, b) { if (!this._list[a]) { if (!b) return null; this._list[a] = [] } return this._list[a] } }; Sys.EventHandlerList.registerClass("Sys.EventHandlerList"); Sys.EventArgs = function() { }; Sys.EventArgs.registerClass("Sys.EventArgs"); Sys.EventArgs.Empty = new Sys.EventArgs; Sys.CancelEventArgs = function() { Sys.CancelEventArgs.initializeBase(this); this._cancel = false }; Sys.CancelEventArgs.prototype = { get_cancel: function() { return this._cancel }, set_cancel: function(a) { this._cancel = a } }; Sys.CancelEventArgs.registerClass("Sys.CancelEventArgs", Sys.EventArgs); Sys.INotifyPropertyChange = function() { }; Sys.INotifyPropertyChange.prototype = {}; Sys.INotifyPropertyChange.registerInterface("Sys.INotifyPropertyChange"); Sys.PropertyChangedEventArgs = function(a) { Sys.PropertyChangedEventArgs.initializeBase(this); this._propertyName = a }; Sys.PropertyChangedEventArgs.prototype = { get_propertyName: function() { return this._propertyName } }; Sys.PropertyChangedEventArgs.registerClass("Sys.PropertyChangedEventArgs", Sys.EventArgs); Sys.INotifyDisposing = function() { }; Sys.INotifyDisposing.prototype = {}; Sys.INotifyDisposing.registerInterface("Sys.INotifyDisposing"); Sys.Component = function() { if (Sys.Application) Sys.Application.registerDisposableObject(this) }; Sys.Component.prototype = { _id: null, _initialized: false, _updating: false, get_events: function() { if (!this._events) this._events = new Sys.EventHandlerList; return this._events }, get_id: function() { return this._id }, set_id: function(a) { this._id = a }, get_isInitialized: function() { return this._initialized }, get_isUpdating: function() { return this._updating }, add_disposing: function(a) { this.get_events().addHandler("disposing", a) }, remove_disposing: function(a) { this.get_events().removeHandler("disposing", a) }, add_propertyChanged: function(a) { this.get_events().addHandler("propertyChanged", a) }, remove_propertyChanged: function(a) { this.get_events().removeHandler("propertyChanged", a) }, beginUpdate: function() { this._updating = true }, dispose: function() { if (this._events) { var a = this._events.getHandler("disposing"); if (a) a(this, Sys.EventArgs.Empty) } delete this._events; Sys.Application.unregisterDisposableObject(this); Sys.Application.removeComponent(this) }, endUpdate: function() { this._updating = false; if (!this._initialized) this.initialize(); this.updated() }, initialize: function() { this._initialized = true }, raisePropertyChanged: function(b) { if (!this._events) return; var a = this._events.getHandler("propertyChanged"); if (a) a(this, new Sys.PropertyChangedEventArgs(b)) }, updated: function() { } }; Sys.Component.registerClass("Sys.Component", null, Sys.IDisposable, Sys.INotifyPropertyChange, Sys.INotifyDisposing); function Sys$Component$_setProperties(a, i) { var d, j = Object.getType(a), e = j === Object || j === Sys.UI.DomElement, h = Sys.Component.isInstanceOfType(a) && !a.get_isUpdating(); if (h) a.beginUpdate(); for (var c in i) { var b = i[c], f = e ? null : a["get_" + c]; if (e || typeof f !== "function") { var k = a[c]; if (!b || typeof b !== "object" || e && !k) a[c] = b; else Sys$Component$_setProperties(k, b) } else { var l = a["set_" + c]; if (typeof l === "function") l.apply(a, [b]); else if (b instanceof Array) { d = f.apply(a); for (var g = 0, m = d.length, n = b.length; g < n; g++, m++) d[m] = b[g] } else if (typeof b === "object" && Object.getType(b) === Object) { d = f.apply(a); Sys$Component$_setProperties(d, b) } } } if (h) a.endUpdate() } function Sys$Component$_setReferences(c, b) { for (var a in b) { var e = c["set_" + a], d = $find(b[a]); e.apply(c, [d]) } } var $create = Sys.Component.create = function(h, f, d, c, g) { var a = g ? new h(g) : new h, b = Sys.Application, i = b.get_isCreatingComponents(); a.beginUpdate(); if (f) Sys$Component$_setProperties(a, f); if (d) for (var e in d) a["add_" + e](d[e]); if (a.get_id()) b.addComponent(a); if (i) { b._createdComponents[b._createdComponents.length] = a; if (c) b._addComponentToSecondPass(a, c); else a.endUpdate() } else { if (c) Sys$Component$_setReferences(a, c); a.endUpdate() } return a }; Sys.UI.MouseButton = function() { throw Error.notImplemented() }; Sys.UI.MouseButton.prototype = { leftButton: 0, middleButton: 1, rightButton: 2 }; Sys.UI.MouseButton.registerEnum("Sys.UI.MouseButton"); Sys.UI.Key = function() { throw Error.notImplemented() }; Sys.UI.Key.prototype = { backspace: 8, tab: 9, enter: 13, esc: 27, space: 32, pageUp: 33, pageDown: 34, end: 35, home: 36, left: 37, up: 38, right: 39, down: 40, del: 127 }; Sys.UI.Key.registerEnum("Sys.UI.Key"); Sys.UI.Point = function(a, b) { this.x = a; this.y = b }; Sys.UI.Point.registerClass("Sys.UI.Point"); Sys.UI.Bounds = function(c, d, b, a) { this.x = c; this.y = d; this.height = a; this.width = b }; Sys.UI.Bounds.registerClass("Sys.UI.Bounds"); Sys.UI.DomEvent = function(e) { var a = e, b = this.type = a.type.toLowerCase(); this.rawEvent = a; this.altKey = a.altKey; if (typeof a.button !== "undefined") this.button = typeof a.which !== "undefined" ? a.button : a.button === 4 ? Sys.UI.MouseButton.middleButton : a.button === 2 ? Sys.UI.MouseButton.rightButton : Sys.UI.MouseButton.leftButton; if (b === "keypress") this.charCode = a.charCode || a.keyCode; else if (a.keyCode && a.keyCode === 46) this.keyCode = 127; else this.keyCode = a.keyCode; this.clientX = a.clientX; this.clientY = a.clientY; this.ctrlKey = a.ctrlKey; this.target = a.target ? a.target : a.srcElement; if (!b.startsWith("key")) if (typeof a.offsetX !== "undefined" && typeof a.offsetY !== "undefined") { this.offsetX = a.offsetX; this.offsetY = a.offsetY } else if (this.target && this.target.nodeType !== 3 && typeof a.clientX === "number") { var c = Sys.UI.DomElement.getLocation(this.target), d = Sys.UI.DomElement._getWindow(this.target); this.offsetX = (d.pageXOffset || 0) + a.clientX - c.x; this.offsetY = (d.pageYOffset || 0) + a.clientY - c.y } this.screenX = a.screenX; this.screenY = a.screenY; this.shiftKey = a.shiftKey }; Sys.UI.DomEvent.prototype = { preventDefault: function() { if (this.rawEvent.preventDefault) this.rawEvent.preventDefault(); else if (window.event) this.rawEvent.returnValue = false }, stopPropagation: function() { if (this.rawEvent.stopPropagation) this.rawEvent.stopPropagation(); else if (window.event) this.rawEvent.cancelBubble = true } }; Sys.UI.DomEvent.registerClass("Sys.UI.DomEvent"); var $addHandler = Sys.UI.DomEvent.addHandler = function(a, d, e) { if (!a._events) a._events = {}; var c = a._events[d]; if (!c) a._events[d] = c = []; var b; if (a.addEventListener) { b = function(b) { return e.call(a, new Sys.UI.DomEvent(b)) }; a.addEventListener(d, b, false) } else if (a.attachEvent) { b = function() { var b = {}; try { b = Sys.UI.DomElement._getWindow(a).event } catch (c) { } return e.call(a, new Sys.UI.DomEvent(b)) }; a.attachEvent("on" + d, b) } c[c.length] = { handler: e, browserHandler: b} }, $addHandlers = Sys.UI.DomEvent.addHandlers = function(e, d, c) { for (var b in d) { var a = d[b]; if (c) a = Function.createDelegate(c, a); $addHandler(e, b, a) } }, $clearHandlers = Sys.UI.DomEvent.clearHandlers = function(a) { if (a._events) { var e = a._events; for (var b in e) { var d = e[b]; for (var c = d.length - 1; c >= 0; c--) $removeHandler(a, b, d[c].handler) } a._events = null } }, $removeHandler = Sys.UI.DomEvent.removeHandler = function(a, e, f) { var d = null, c = a._events[e]; for (var b = 0, g = c.length; b < g; b++) if (c[b].handler === f) { d = c[b].browserHandler; break } if (a.removeEventListener) a.removeEventListener(e, d, false); else if (a.detachEvent) a.detachEvent("on" + e, d); c.splice(b, 1) }; Sys.UI.DomElement = function() { }; Sys.UI.DomElement.registerClass("Sys.UI.DomElement"); Sys.UI.DomElement.addCssClass = function(a, b) { if (!Sys.UI.DomElement.containsCssClass(a, b)) if (a.className === "") a.className = b; else a.className += " " + b }; Sys.UI.DomElement.containsCssClass = function(b, a) { return Array.contains(b.className.split(" "), a) }; Sys.UI.DomElement.getBounds = function(a) { var b = Sys.UI.DomElement.getLocation(a); return new Sys.UI.Bounds(b.x, b.y, a.offsetWidth || 0, a.offsetHeight || 0) }; var $get = Sys.UI.DomElement.getElementById = function(f, e) { if (!e) return document.getElementById(f); if (e.getElementById) return e.getElementById(f); var c = [], d = e.childNodes; for (var b = 0; b < d.length; b++) { var a = d[b]; if (a.nodeType == 1) c[c.length] = a } while (c.length) { a = c.shift(); if (a.id == f) return a; d = a.childNodes; for (b = 0; b < d.length; b++) { a = d[b]; if (a.nodeType == 1) c[c.length] = a } } return null }; switch (Sys.Browser.agent) { case Sys.Browser.InternetExplorer: Sys.UI.DomElement.getLocation = function(a) { if (a.self || a.nodeType === 9) return new Sys.UI.Point(0, 0); var b = a.getBoundingClientRect(); if (!b) return new Sys.UI.Point(0, 0); var d = a.ownerDocument.documentElement, e = b.left - 2 + d.scrollLeft, f = b.top - 2 + d.scrollTop; try { var c = a.ownerDocument.parentWindow.frameElement || null; if (c) { var g = c.frameBorder === "0" || c.frameBorder === "no" ? 2 : 0; e += g; f += g } } catch (h) { } return new Sys.UI.Point(e, f) }; break; case Sys.Browser.Safari: Sys.UI.DomElement.getLocation = function(c) { if (c.window && c.window === c || c.nodeType === 9) return new Sys.UI.Point(0, 0); var f = 0, g = 0, j = null, e = null, b; for (var a = c; a; j = a, (e = b, a = a.offsetParent)) { b = Sys.UI.DomElement._getCurrentStyle(a); var d = a.tagName ? a.tagName.toUpperCase() : null; if ((a.offsetLeft || a.offsetTop) && (d !== "BODY" || (!e || e.position !== "absolute"))) { f += a.offsetLeft; g += a.offsetTop } } b = Sys.UI.DomElement._getCurrentStyle(c); var h = b ? b.position : null; if (!h || h !== "absolute") for (var a = c.parentNode; a; a = a.parentNode) { d = a.tagName ? a.tagName.toUpperCase() : null; if (d !== "BODY" && d !== "HTML" && (a.scrollLeft || a.scrollTop)) { f -= a.scrollLeft || 0; g -= a.scrollTop || 0 } b = Sys.UI.DomElement._getCurrentStyle(a); var i = b ? b.position : null; if (i && i === "absolute") break } return new Sys.UI.Point(f, g) }; break; case Sys.Browser.Opera: Sys.UI.DomElement.getLocation = function(b) { if (b.window && b.window === b || b.nodeType === 9) return new Sys.UI.Point(0, 0); var d = 0, e = 0, i = null; for (var a = b; a; i = a, a = a.offsetParent) { var f = a.tagName; d += a.offsetLeft || 0; e += a.offsetTop || 0 } var g = b.style.position, c = g && g !== "static"; for (var a = b.parentNode; a; a = a.parentNode) { f = a.tagName ? a.tagName.toUpperCase() : null; if (f !== "BODY" && f !== "HTML" && (a.scrollLeft || a.scrollTop) && (c && (a.style.overflow === "scroll" || a.style.overflow === "auto"))) { d -= a.scrollLeft || 0; e -= a.scrollTop || 0 } var h = a && a.style ? a.style.position : null; c = c || h && h !== "static" } return new Sys.UI.Point(d, e) }; break; default: Sys.UI.DomElement.getLocation = function(d) { if (d.window && d.window === d || d.nodeType === 9) return new Sys.UI.Point(0, 0); var e = 0, f = 0, i = null, g = null, b = null; for (var a = d; a; i = a, (g = b, a = a.offsetParent)) { var c = a.tagName ? a.tagName.toUpperCase() : null; b = Sys.UI.DomElement._getCurrentStyle(a); if ((a.offsetLeft || a.offsetTop) && !(c === "BODY" && (!g || g.position !== "absolute"))) { e += a.offsetLeft; f += a.offsetTop } if (i !== null && b) { if (c !== "TABLE" && c !== "TD" && c !== "HTML") { e += parseInt(b.borderLeftWidth) || 0; f += parseInt(b.borderTopWidth) || 0 } if (c === "TABLE" && (b.position === "relative" || b.position === "absolute")) { e += parseInt(b.marginLeft) || 0; f += parseInt(b.marginTop) || 0 } } } b = Sys.UI.DomElement._getCurrentStyle(d); var h = b ? b.position : null; if (!h || h !== "absolute") for (var a = d.parentNode; a; a = a.parentNode) { c = a.tagName ? a.tagName.toUpperCase() : null; if (c !== "BODY" && c !== "HTML" && (a.scrollLeft || a.scrollTop)) { e -= a.scrollLeft || 0; f -= a.scrollTop || 0; b = Sys.UI.DomElement._getCurrentStyle(a); if (b) { e += parseInt(b.borderLeftWidth) || 0; f += parseInt(b.borderTopWidth) || 0 } } } return new Sys.UI.Point(e, f) } } Sys.UI.DomElement.removeCssClass = function(d, c) { var a = " " + d.className + " ", b = a.indexOf(" " + c + " "); if (b >= 0) d.className = (a.substr(0, b) + " " + a.substring(b + c.length + 1, a.length)).trim() }; Sys.UI.DomElement.setLocation = function(b, c, d) { var a = b.style; a.position = "absolute"; a.left = c + "px"; a.top = d + "px" }; Sys.UI.DomElement.toggleCssClass = function(b, a) { if (Sys.UI.DomElement.containsCssClass(b, a)) Sys.UI.DomElement.removeCssClass(b, a); else Sys.UI.DomElement.addCssClass(b, a) }; Sys.UI.DomElement.getVisibilityMode = function(a) { return a._visibilityMode === Sys.UI.VisibilityMode.hide ? Sys.UI.VisibilityMode.hide : Sys.UI.VisibilityMode.collapse }; Sys.UI.DomElement.setVisibilityMode = function(a, b) { Sys.UI.DomElement._ensureOldDisplayMode(a); if (a._visibilityMode !== b) { a._visibilityMode = b; if (Sys.UI.DomElement.getVisible(a) === false) if (a._visibilityMode === Sys.UI.VisibilityMode.hide) a.style.display = a._oldDisplayMode; else a.style.display = "none"; a._visibilityMode = b } }; Sys.UI.DomElement.getVisible = function(b) { var a = b.currentStyle || Sys.UI.DomElement._getCurrentStyle(b); if (!a) return true; return a.visibility !== "hidden" && a.display !== "none" }; Sys.UI.DomElement.setVisible = function(a, b) { if (b !== Sys.UI.DomElement.getVisible(a)) { Sys.UI.DomElement._ensureOldDisplayMode(a); a.style.visibility = b ? "visible" : "hidden"; if (b || a._visibilityMode === Sys.UI.VisibilityMode.hide) a.style.display = a._oldDisplayMode; else a.style.display = "none" } }; Sys.UI.DomElement._ensureOldDisplayMode = function(a) { if (!a._oldDisplayMode) { var b = a.currentStyle || Sys.UI.DomElement._getCurrentStyle(a); a._oldDisplayMode = b ? b.display : null; if (!a._oldDisplayMode || a._oldDisplayMode === "none") switch (a.tagName.toUpperCase()) { case "DIV": case "P": case "ADDRESS": case "BLOCKQUOTE": case "BODY": case "COL": case "COLGROUP": case "DD": case "DL": case "DT": case "FIELDSET": case "FORM": case "H1": case "H2": case "H3": case "H4": case "H5": case "H6": case "HR": case "IFRAME": case "LEGEND": case "OL": case "PRE": case "TABLE": case "TD": case "TH": case "TR": case "UL": a._oldDisplayMode = "block"; break; case "LI": a._oldDisplayMode = "list-item"; break; default: a._oldDisplayMode = "inline" } } }; Sys.UI.DomElement._getWindow = function(a) { var b = a.ownerDocument || a.document || a; return b.defaultView || b.parentWindow }; Sys.UI.DomElement._getCurrentStyle = function(a) { if (a.nodeType === 3) return null; var c = Sys.UI.DomElement._getWindow(a); if (a.documentElement) a = a.documentElement; var b = c && a !== c && c.getComputedStyle ? c.getComputedStyle(a, null) : a.currentStyle || a.style; if (!b && Sys.Browser.agent === Sys.Browser.Safari && a.style) { var g = a.style.display, f = a.style.position; a.style.position = "absolute"; a.style.display = "block"; var e = c.getComputedStyle(a, null); a.style.display = g; a.style.position = f; b = {}; for (var d in e) b[d] = e[d]; b.display = "none" } return b }; Sys.IContainer = function() { }; Sys.IContainer.prototype = {}; Sys.IContainer.registerInterface("Sys.IContainer"); Sys._ScriptLoader = function() { this._scriptsToLoad = null; this._sessions = []; this._scriptLoadedDelegate = Function.createDelegate(this, this._scriptLoadedHandler) }; Sys._ScriptLoader.prototype = { dispose: function() { this._stopSession(); this._loading = false; if (this._events) delete this._events; this._sessions = null; this._currentSession = null; this._scriptLoadedDelegate = null }, loadScripts: function(d, b, c, a) { var e = { allScriptsLoadedCallback: b, scriptLoadFailedCallback: c, scriptLoadTimeoutCallback: a, scriptsToLoad: this._scriptsToLoad, scriptTimeout: d }; this._scriptsToLoad = null; this._sessions[this._sessions.length] = e; if (!this._loading) this._nextSession() }, notifyScriptLoaded: function() { if (!this._loading) return; this._currentTask._notified++; if (Sys.Browser.agent === Sys.Browser.Safari) if (this._currentTask._notified === 1) window.setTimeout(Function.createDelegate(this, function() { this._scriptLoadedHandler(this._currentTask.get_scriptElement(), true) }), 0) }, queueCustomScriptTag: function(a) { if (!this._scriptsToLoad) this._scriptsToLoad = []; Array.add(this._scriptsToLoad, a) }, queueScriptBlock: function(a) { if (!this._scriptsToLoad) this._scriptsToLoad = []; Array.add(this._scriptsToLoad, { text: a }) }, queueScriptReference: function(a) { if (!this._scriptsToLoad) this._scriptsToLoad = []; Array.add(this._scriptsToLoad, { src: a }) }, _createScriptElement: function(c) { var a = document.createElement("script"); a.type = "text/javascript"; for (var b in c) a[b] = c[b]; return a }, _loadScriptsInternal: function() { var b = this._currentSession; if (b.scriptsToLoad && b.scriptsToLoad.length > 0) { var c = Array.dequeue(b.scriptsToLoad), a = this._createScriptElement(c); if (a.text && Sys.Browser.agent === Sys.Browser.Safari) { a.innerHTML = a.text; delete a.text } if (typeof c.src === "string") { this._currentTask = new Sys._ScriptLoaderTask(a, this._scriptLoadedDelegate); this._currentTask.execute() } else { document.getElementsByTagName("head")[0].appendChild(a); Sys._ScriptLoader._clearScript(a); this._loadScriptsInternal() } } else { this._stopSession(); var d = b.allScriptsLoadedCallback; if (d) d(this); this._nextSession() } }, _nextSession: function() { if (this._sessions.length === 0) { this._loading = false; this._currentSession = null; return } this._loading = true; var a = Array.dequeue(this._sessions); this._currentSession = a; if (a.scriptTimeout > 0) this._timeoutCookie = window.setTimeout(Function.createDelegate(this, this._scriptLoadTimeoutHandler), a.scriptTimeout * 1000); this._loadScriptsInternal() }, _raiseError: function(a) { var c = this._currentSession.scriptLoadFailedCallback, b = this._currentTask.get_scriptElement(); this._stopSession(); if (c) { c(this, b, a); this._nextSession() } else { this._loading = false; throw Sys._ScriptLoader._errorScriptLoadFailed(b.src, a) } }, _scriptLoadedHandler: function(a, b) { if (b && this._currentTask._notified) if (this._currentTask._notified > 1) this._raiseError(true); else { Array.add(Sys._ScriptLoader._getLoadedScripts(), a.src); this._currentTask.dispose(); this._currentTask = null; this._loadScriptsInternal() } else this._raiseError(false) }, _scriptLoadTimeoutHandler: function() { var a = this._currentSession.scriptLoadTimeoutCallback; this._stopSession(); if (a) a(this); this._nextSession() }, _stopSession: function() { if (this._timeoutCookie) { window.clearTimeout(this._timeoutCookie); this._timeoutCookie = null } if (this._currentTask) { this._currentTask.dispose(); this._currentTask = null } } }; Sys._ScriptLoader.registerClass("Sys._ScriptLoader", null, Sys.IDisposable); Sys._ScriptLoader.getInstance = function() { var a = Sys._ScriptLoader._activeInstance; if (!a) a = Sys._ScriptLoader._activeInstance = new Sys._ScriptLoader; return a }; Sys._ScriptLoader.isScriptLoaded = function(b) { var a = document.createElement("script"); a.src = b; return Array.contains(Sys._ScriptLoader._getLoadedScripts(), a.src) }; Sys._ScriptLoader.readLoadedScripts = function() { if (!Sys._ScriptLoader._referencedScripts) { var b = Sys._ScriptLoader._referencedScripts = [], c = document.getElementsByTagName("script"); for (i = c.length - 1; i >= 0; i--) { var d = c[i], a = d.src; if (a.length) if (!Array.contains(b, a)) Array.add(b, a) } } }; Sys._ScriptLoader._clearScript = function(a) { if (!Sys.Debug.isDebug) a.parentNode.removeChild(a) }; Sys._ScriptLoader._errorScriptLoadFailed = function(b, d) { var a; if (d) a = Sys.Res.scriptLoadMultipleCallbacks; else a = Sys.Res.scriptLoadFailed; var e = "Sys.ScriptLoadFailedException: " + String.format(a, b), c = Error.create(e, { name: "Sys.ScriptLoadFailedException", "scriptUrl": b }); c.popStackFrame(); return c }; Sys._ScriptLoader._getLoadedScripts = function() { if (!Sys._ScriptLoader._referencedScripts) { Sys._ScriptLoader._referencedScripts = []; Sys._ScriptLoader.readLoadedScripts() } return Sys._ScriptLoader._referencedScripts }; Sys._ScriptLoaderTask = function(b, a) { this._scriptElement = b; this._completedCallback = a; this._notified = 0 }; Sys._ScriptLoaderTask.prototype = { get_scriptElement: function() { return this._scriptElement }, dispose: function() { if (this._disposed) return; this._disposed = true; this._removeScriptElementHandlers(); Sys._ScriptLoader._clearScript(this._scriptElement); this._scriptElement = null }, execute: function() { this._addScriptElementHandlers(); document.getElementsByTagName("head")[0].appendChild(this._scriptElement) }, _addScriptElementHandlers: function() { this._scriptLoadDelegate = Function.createDelegate(this, this._scriptLoadHandler); if (Sys.Browser.agent !== Sys.Browser.InternetExplorer) { this._scriptElement.readyState = "loaded"; $addHandler(this._scriptElement, "load", this._scriptLoadDelegate) } else $addHandler(this._scriptElement, "readystatechange", this._scriptLoadDelegate); if (this._scriptElement.addEventListener) { this._scriptErrorDelegate = Function.createDelegate(this, this._scriptErrorHandler); this._scriptElement.addEventListener("error", this._scriptErrorDelegate, false) } }, _removeScriptElementHandlers: function() { if (this._scriptLoadDelegate) { var a = this.get_scriptElement(); if (Sys.Browser.agent !== Sys.Browser.InternetExplorer) $removeHandler(a, "load", this._scriptLoadDelegate); else $removeHandler(a, "readystatechange", this._scriptLoadDelegate); if (this._scriptErrorDelegate) { this._scriptElement.removeEventListener("error", this._scriptErrorDelegate, false); this._scriptErrorDelegate = null } this._scriptLoadDelegate = null } }, _scriptErrorHandler: function() { if (this._disposed) return; this._completedCallback(this.get_scriptElement(), false) }, _scriptLoadHandler: function() { if (this._disposed) return; var a = this.get_scriptElement(); if (a.readyState !== "loaded" && a.readyState !== "complete") return; var b = this; window.setTimeout(function() { b._completedCallback(a, true) }, 0) } }; Sys._ScriptLoaderTask.registerClass("Sys._ScriptLoaderTask", null, Sys.IDisposable); Sys.ApplicationLoadEventArgs = function(b, a) { Sys.ApplicationLoadEventArgs.initializeBase(this); this._components = b; this._isPartialLoad = a }; Sys.ApplicationLoadEventArgs.prototype = { get_components: function() { return this._components }, get_isPartialLoad: function() { return this._isPartialLoad } }; Sys.ApplicationLoadEventArgs.registerClass("Sys.ApplicationLoadEventArgs", Sys.EventArgs); Sys.HistoryEventArgs = function(a) { Sys.HistoryEventArgs.initializeBase(this); this._state = a }; Sys.HistoryEventArgs.prototype = { get_state: function() { return this._state } }; Sys.HistoryEventArgs.registerClass("Sys.HistoryEventArgs", Sys.EventArgs); Sys._Application = function() { Sys._Application.initializeBase(this); this._disposableObjects = []; this._components = {}; this._createdComponents = []; this._secondPassComponents = []; this._appLoadHandler = null; this._beginRequestHandler = null; this._clientId = null; this._currentEntry = ""; this._endRequestHandler = null; this._history = null; this._enableHistory = false; this._historyFrame = null; this._historyInitialized = false; this._historyInitialLength = 0; this._historyLength = 0; this._historyPointIsNew = false; this._ignoreTimer = false; this._initialState = null; this._state = {}; this._timerCookie = 0; this._timerHandler = null; this._uniqueId = null; this._unloadHandlerDelegate = Function.createDelegate(this, this._unloadHandler); this._loadHandlerDelegate = Function.createDelegate(this, this._loadHandler); Sys.UI.DomEvent.addHandler(window, "unload", this._unloadHandlerDelegate); Sys.UI.DomEvent.addHandler(window, "load", this._loadHandlerDelegate) }; Sys._Application.prototype = { _creatingComponents: false, _disposing: false, get_isCreatingComponents: function() { return this._creatingComponents }, get_stateString: function() { var a = window.location.hash; if (this._isSafari2()) { var b = this._getHistory(); if (b) a = b[window.history.length - this._historyInitialLength] } if (a.length > 0 && a.charAt(0) === "#") a = a.substring(1); if (Sys.Browser.agent === Sys.Browser.Firefox) a = this._serializeState(this._deserializeState(a, true)); return a }, get_enableHistory: function() { return this._enableHistory }, set_enableHistory: function(a) { this._enableHistory = a }, add_init: function(a) { if (this._initialized) a(this, Sys.EventArgs.Empty); else this.get_events().addHandler("init", a) }, remove_init: function(a) { this.get_events().removeHandler("init", a) }, add_load: function(a) { this.get_events().addHandler("load", a) }, remove_load: function(a) { this.get_events().removeHandler("load", a) }, add_navigate: function(a) { this.get_events().addHandler("navigate", a) }, remove_navigate: function(a) { this.get_events().removeHandler("navigate", a) }, add_unload: function(a) { this.get_events().addHandler("unload", a) }, remove_unload: function(a) { this.get_events().removeHandler("unload", a) }, addComponent: function(a) { this._components[a.get_id()] = a }, addHistoryPoint: function(c, f) { this._ensureHistory(); var b = this._state; for (var a in c) { var d = c[a]; if (d === null) { if (typeof b[a] !== "undefined") delete b[a] } else b[a] = d } var e = this._serializeState(b); this._historyPointIsNew = true; this._setState(e, f); this._raiseNavigate() }, beginCreateComponents: function() { this._creatingComponents = true }, dispose: function() { if (!this._disposing) { this._disposing = true; if (this._timerCookie) { window.clearTimeout(this._timerCookie); delete this._timerCookie } if (this._endRequestHandler) { Sys.WebForms.PageRequestManager.getInstance().remove_endRequest(this._endRequestHandler); delete this._endRequestHandler } if (this._beginRequestHandler) { Sys.WebForms.PageRequestManager.getInstance().remove_beginRequest(this._beginRequestHandler); delete this._beginRequestHandler } if (window.pageUnload) window.pageUnload(this, Sys.EventArgs.Empty); var c = this.get_events().getHandler("unload"); if (c) c(this, Sys.EventArgs.Empty); var b = Array.clone(this._disposableObjects); for (var a = 0, e = b.length; a < e; a++) b[a].dispose(); Array.clear(this._disposableObjects); Sys.UI.DomEvent.removeHandler(window, "unload", this._unloadHandlerDelegate); if (this._loadHandlerDelegate) { Sys.UI.DomEvent.removeHandler(window, "load", this._loadHandlerDelegate); this._loadHandlerDelegate = null } var d = Sys._ScriptLoader.getInstance(); if (d) d.dispose(); Sys._Application.callBaseMethod(this, "dispose") } }, endCreateComponents: function() { var b = this._secondPassComponents; for (var a = 0, d = b.length; a < d; a++) { var c = b[a].component; Sys$Component$_setReferences(c, b[a].references); c.endUpdate() } this._secondPassComponents = []; this._creatingComponents = false }, findComponent: function(b, a) { return a ? Sys.IContainer.isInstanceOfType(a) ? a.findComponent(b) : a[b] || null : Sys.Application._components[b] || null }, getComponents: function() { var a = [], b = this._components; for (var c in b) a[a.length] = b[c]; return a }, initialize: function() { if (!this._initialized && !this._initializing) { this._initializing = true; window.setTimeout(Function.createDelegate(this, this._doInitialize), 0) } }, notifyScriptLoaded: function() { var a = Sys._ScriptLoader.getInstance(); if (a) a.notifyScriptLoaded() }, registerDisposableObject: function(a) { if (!this._disposing) this._disposableObjects[this._disposableObjects.length] = a }, raiseLoad: function() { var b = this.get_events().getHandler("load"), a = new Sys.ApplicationLoadEventArgs(Array.clone(this._createdComponents), !this._initializing); if (b) b(this, a); if (window.pageLoad) window.pageLoad(this, a); this._createdComponents = [] }, removeComponent: function(b) { var a = b.get_id(); if (a) delete this._components[a] }, setServerId: function(a, b) { this._clientId = a; this._uniqueId = b }, setServerState: function(a) { this._ensureHistory(); this._state.__s = a; this._updateHiddenField(a) }, unregisterDisposableObject: function(a) { if (!this._disposing) Array.remove(this._disposableObjects, a) }, _addComponentToSecondPass: function(b, a) { this._secondPassComponents[this._secondPassComponents.length] = { component: b, references: a} }, _deserializeState: function(a, i) { var e = {}; a = a || ""; var b = a.indexOf("&&"); if (b !== -1 && b + 2 < a.length) { e.__s = a.substr(b + 2); a = a.substr(0, b) } var g = a.split("&"); for (var f = 0, k = g.length; f < k; f++) { var d = g[f], c = d.indexOf("="); if (c !== -1 && c + 1 < d.length) { var j = d.substr(0, c), h = d.substr(c + 1); e[j] = i ? h : decodeURIComponent(h) } } return e }, _doInitialize: function() { Sys._Application.callBaseMethod(this, "initialize"); var b = this.get_events().getHandler("init"); if (b) { this.beginCreateComponents(); b(this, Sys.EventArgs.Empty); this.endCreateComponents() } if (Sys.WebForms) { this._beginRequestHandler = Function.createDelegate(this, this._onPageRequestManagerBeginRequest); Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(this._beginRequestHandler); this._endRequestHandler = Function.createDelegate(this, this._onPageRequestManagerEndRequest); Sys.WebForms.PageRequestManager.getInstance().add_endRequest(this._endRequestHandler) } var a = this.get_stateString(); if (a !== this._currentEntry) this._navigate(a); this.raiseLoad(); this._initializing = false }, _enableHistoryInScriptManager: function() { this._enableHistory = true }, _ensureHistory: function() { if (!this._historyInitialized && this._enableHistory) { if (Sys.Browser.agent === Sys.Browser.InternetExplorer && Sys.Browser.documentMode < 8) { this._historyFrame = document.getElementById("__historyFrame"); this._ignoreIFrame = true } if (this._isSafari2()) { var a = document.getElementById("__history"); this._setHistory([window.location.hash]); this._historyInitialLength = window.history.length } this._timerHandler = Function.createDelegate(this, this._onIdle); this._timerCookie = window.setTimeout(this._timerHandler, 100); try { this._initialState = this._deserializeState(this.get_stateString()) } catch (b) { } this._historyInitialized = true } }, _getHistory: function() { var a = document.getElementById("__history"); if (!a) return ""; var b = a.value; return b ? Sys.Serialization.JavaScriptSerializer.deserialize(b, true) : "" }, _isSafari2: function() { return Sys.Browser.agent === Sys.Browser.Safari && Sys.Browser.version <= 419.3 }, _loadHandler: function() { if (this._loadHandlerDelegate) { Sys.UI.DomEvent.removeHandler(window, "load", this._loadHandlerDelegate); this._loadHandlerDelegate = null } this.initialize() }, _navigate: function(c) { this._ensureHistory(); var b = this._deserializeState(c); if (this._uniqueId) { var d = this._state.__s || "", a = b.__s || ""; if (a !== d) { this._updateHiddenField(a); __doPostBack(this._uniqueId, a); this._state = b; return } } this._setState(c); this._state = b; this._raiseNavigate() }, _onIdle: function() { delete this._timerCookie; var a = this.get_stateString(); if (a !== this._currentEntry) { if (!this._ignoreTimer) { this._historyPointIsNew = false; this._navigate(a); this._historyLength = window.history.length } } else this._ignoreTimer = false; this._timerCookie = window.setTimeout(this._timerHandler, 100) }, _onIFrameLoad: function(a) { this._ensureHistory(); if (!this._ignoreIFrame) { this._historyPointIsNew = false; this._navigate(a) } this._ignoreIFrame = false }, _onPageRequestManagerBeginRequest: function() { this._ignoreTimer = true }, _onPageRequestManagerEndRequest: function(e, d) { var b = d.get_dataItems()[this._clientId], a = document.getElementById("__EVENTTARGET"); if (a && a.value === this._uniqueId) a.value = ""; if (typeof b !== "undefined") { this.setServerState(b); this._historyPointIsNew = true } else this._ignoreTimer = false; var c = this._serializeState(this._state); if (c !== this._currentEntry) { this._ignoreTimer = true; this._setState(c); this._raiseNavigate() } }, _raiseNavigate: function() { var c = this.get_events().getHandler("navigate"), b = {}; for (var a in this._state) if (a !== "__s") b[a] = this._state[a]; var d = new Sys.HistoryEventArgs(b); if (c) c(this, d) }, _serializeState: function(d) { var b = []; for (var a in d) { var e = d[a]; if (a === "__s") var c = e; else b[b.length] = a + "=" + encodeURIComponent(e) } return b.join("&") + (c ? "&&" + c : "") }, _setHistory: function(b) { var a = document.getElementById("__history"); if (a) a.value = Sys.Serialization.JavaScriptSerializer.serialize(b) }, _setState: function(a, c) { a = a || ""; if (a !== this._currentEntry) { if (window.theForm) { var e = window.theForm.action, f = e.indexOf("#"); window.theForm.action = (f !== -1 ? e.substring(0, f) : e) + "#" + a } if (this._historyFrame && this._historyPointIsNew) { this._ignoreIFrame = true; this._historyPointIsNew = false; var d = this._historyFrame.contentWindow.document; d.open("javascript:'<html></html>'"); d.write("<html><head><title>" + (c || document.title) + "</title><scri" + 'pt type="text/javascript">parent.Sys.Application._onIFrameLoad(\'' + a + "');</scri" + "pt></head><body></body></html>"); d.close() } this._ignoreTimer = false; var h = this.get_stateString(); this._currentEntry = a; if (a !== h) { if (this._isSafari2()) { var g = this._getHistory(); g[window.history.length - this._historyInitialLength + 1] = a; this._setHistory(g); this._historyLength = window.history.length + 1; var b = document.createElement("form"); b.method = "get"; b.action = "#" + a; document.appendChild(b); b.submit(); document.removeChild(b) } else window.location.hash = a; if (typeof c !== "undefined" && c !== null) document.title = c } } }, _unloadHandler: function() { this.dispose() }, _updateHiddenField: function(b) { if (this._clientId) { var a = document.getElementById(this._clientId); if (a) a.value = b } } }; Sys._Application.registerClass("Sys._Application", Sys.Component, Sys.IContainer); Sys.Application = new Sys._Application; var $find = Sys.Application.findComponent; Type.registerNamespace("Sys.Net"); Sys.Net.WebRequestExecutor = function() { this._webRequest = null; this._resultObject = null }; Sys.Net.WebRequestExecutor.prototype = { get_webRequest: function() { return this._webRequest }, _set_webRequest: function(a) { this._webRequest = a }, get_started: function() { throw Error.notImplemented() }, get_responseAvailable: function() { throw Error.notImplemented() }, get_timedOut: function() { throw Error.notImplemented() }, get_aborted: function() { throw Error.notImplemented() }, get_responseData: function() { throw Error.notImplemented() }, get_statusCode: function() { throw Error.notImplemented() }, get_statusText: function() { throw Error.notImplemented() }, get_xml: function() { throw Error.notImplemented() }, get_object: function() { if (!this._resultObject) this._resultObject = Sys.Serialization.JavaScriptSerializer.deserialize(this.get_responseData()); return this._resultObject }, executeRequest: function() { throw Error.notImplemented() }, abort: function() { throw Error.notImplemented() }, getResponseHeader: function() { throw Error.notImplemented() }, getAllResponseHeaders: function() { throw Error.notImplemented() } }; Sys.Net.WebRequestExecutor.registerClass("Sys.Net.WebRequestExecutor"); Sys.Net.XMLDOM = function(d) { if (!window.DOMParser) { var c = ["Msxml2.DOMDocument.3.0", "Msxml2.DOMDocument"]; for (var b = 0, f = c.length; b < f; b++) try { var a = new ActiveXObject(c[b]); a.async = false; a.loadXML(d); a.setProperty("SelectionLanguage", "XPath"); return a } catch (g) { } } else try { var e = new window.DOMParser; return e.parseFromString(d, "text/xml") } catch (g) { } return null }; Sys.Net.XMLHttpExecutor = function() { Sys.Net.XMLHttpExecutor.initializeBase(this); var a = this; this._xmlHttpRequest = null; this._webRequest = null; this._responseAvailable = false; this._timedOut = false; this._timer = null; this._aborted = false; this._started = false; this._onReadyStateChange = function() { if (a._xmlHttpRequest.readyState === 4) { try { if (typeof a._xmlHttpRequest.status === "undefined") return } catch (b) { return } a._clearTimer(); a._responseAvailable = true; try { a._webRequest.completed(Sys.EventArgs.Empty) } finally { if (a._xmlHttpRequest != null) { a._xmlHttpRequest.onreadystatechange = Function.emptyMethod; a._xmlHttpRequest = null } } } }; this._clearTimer = function() { if (a._timer != null) { window.clearTimeout(a._timer); a._timer = null } }; this._onTimeout = function() { if (!a._responseAvailable) { a._clearTimer(); a._timedOut = true; a._xmlHttpRequest.onreadystatechange = Function.emptyMethod; a._xmlHttpRequest.abort(); a._webRequest.completed(Sys.EventArgs.Empty); a._xmlHttpRequest = null } } }; Sys.Net.XMLHttpExecutor.prototype = { get_timedOut: function() { return this._timedOut }, get_started: function() { return this._started }, get_responseAvailable: function() { return this._responseAvailable }, get_aborted: function() { return this._aborted }, executeRequest: function() { this._webRequest = this.get_webRequest(); var c = this._webRequest.get_body(), a = this._webRequest.get_headers(); this._xmlHttpRequest = new XMLHttpRequest; this._xmlHttpRequest.onreadystatechange = this._onReadyStateChange; var e = this._webRequest.get_httpVerb(); this._xmlHttpRequest.open(e, this._webRequest.getResolvedUrl(), true); if (a) for (var b in a) { var f = a[b]; if (typeof f !== "function") this._xmlHttpRequest.setRequestHeader(b, f) } if (e.toLowerCase() === "post") { if (a === null || !a["Content-Type"]) this._xmlHttpRequest.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=utf-8"); if (!c) c = "" } var d = this._webRequest.get_timeout(); if (d > 0) this._timer = window.setTimeout(Function.createDelegate(this, this._onTimeout), d); this._xmlHttpRequest.send(c); this._started = true }, getResponseHeader: function(b) { var a; try { a = this._xmlHttpRequest.getResponseHeader(b) } catch (c) { } if (!a) a = ""; return a }, getAllResponseHeaders: function() { return this._xmlHttpRequest.getAllResponseHeaders() }, get_responseData: function() { return this._xmlHttpRequest.responseText }, get_statusCode: function() { var a = 0; try { a = this._xmlHttpRequest.status } catch (b) { } return a }, get_statusText: function() { return this._xmlHttpRequest.statusText }, get_xml: function() { var a = this._xmlHttpRequest.responseXML; if (!a || !a.documentElement) { a = Sys.Net.XMLDOM(this._xmlHttpRequest.responseText); if (!a || !a.documentElement) return null } else if (navigator.userAgent.indexOf("MSIE") !== -1) a.setProperty("SelectionLanguage", "XPath"); if (a.documentElement.namespaceURI === "http://www.mozilla.org/newlayout/xml/parsererror.xml" && a.documentElement.tagName === "parsererror") return null; if (a.documentElement.firstChild && a.documentElement.firstChild.tagName === "parsererror") return null; return a }, abort: function() { if (this._aborted || this._responseAvailable || this._timedOut) return; this._aborted = true; this._clearTimer(); if (this._xmlHttpRequest && !this._responseAvailable) { this._xmlHttpRequest.onreadystatechange = Function.emptyMethod; this._xmlHttpRequest.abort(); this._xmlHttpRequest = null; this._webRequest.completed(Sys.EventArgs.Empty) } } }; Sys.Net.XMLHttpExecutor.registerClass("Sys.Net.XMLHttpExecutor", Sys.Net.WebRequestExecutor); Sys.Net._WebRequestManager = function() { this._defaultTimeout = 0; this._defaultExecutorType = "Sys.Net.XMLHttpExecutor" }; Sys.Net._WebRequestManager.prototype = { add_invokingRequest: function(a) { this._get_eventHandlerList().addHandler("invokingRequest", a) }, remove_invokingRequest: function(a) { this._get_eventHandlerList().removeHandler("invokingRequest", a) }, add_completedRequest: function(a) { this._get_eventHandlerList().addHandler("completedRequest", a) }, remove_completedRequest: function(a) { this._get_eventHandlerList().removeHandler("completedRequest", a) }, _get_eventHandlerList: function() { if (!this._events) this._events = new Sys.EventHandlerList; return this._events }, get_defaultTimeout: function() { return this._defaultTimeout }, set_defaultTimeout: function(a) { this._defaultTimeout = a }, get_defaultExecutorType: function() { return this._defaultExecutorType }, set_defaultExecutorType: function(a) { this._defaultExecutorType = a }, executeRequest: function(webRequest) { var executor = webRequest.get_executor(); if (!executor) { var failed = false; try { var executorType = eval(this._defaultExecutorType); executor = new executorType } catch (a) { failed = true } webRequest.set_executor(executor) } if (executor.get_aborted()) return; var evArgs = new Sys.Net.NetworkRequestEventArgs(webRequest), handler = this._get_eventHandlerList().getHandler("invokingRequest"); if (handler) handler(this, evArgs); if (!evArgs.get_cancel()) executor.executeRequest() } }; Sys.Net._WebRequestManager.registerClass("Sys.Net._WebRequestManager"); Sys.Net.WebRequestManager = new Sys.Net._WebRequestManager; Sys.Net.NetworkRequestEventArgs = function(a) { Sys.Net.NetworkRequestEventArgs.initializeBase(this); this._webRequest = a }; Sys.Net.NetworkRequestEventArgs.prototype = { get_webRequest: function() { return this._webRequest } }; Sys.Net.NetworkRequestEventArgs.registerClass("Sys.Net.NetworkRequestEventArgs", Sys.CancelEventArgs); Sys.Net.WebRequest = function() { this._url = ""; this._headers = {}; this._body = null; this._userContext = null; this._httpVerb = null; this._executor = null; this._invokeCalled = false; this._timeout = 0 }; Sys.Net.WebRequest.prototype = { add_completed: function(a) { this._get_eventHandlerList().addHandler("completed", a) }, remove_completed: function(a) { this._get_eventHandlerList().removeHandler("completed", a) }, completed: function(b) { var a = Sys.Net.WebRequestManager._get_eventHandlerList().getHandler("completedRequest"); if (a) a(this._executor, b); a = this._get_eventHandlerList().getHandler("completed"); if (a) a(this._executor, b) }, _get_eventHandlerList: function() { if (!this._events) this._events = new Sys.EventHandlerList; return this._events }, get_url: function() { return this._url }, set_url: function(a) { this._url = a }, get_headers: function() { return this._headers }, get_httpVerb: function() { if (this._httpVerb === null) { if (this._body === null) return "GET"; return "POST" } return this._httpVerb }, set_httpVerb: function(a) { this._httpVerb = a }, get_body: function() { return this._body }, set_body: function(a) { this._body = a }, get_userContext: function() { return this._userContext }, set_userContext: function(a) { this._userContext = a }, get_executor: function() { return this._executor }, set_executor: function(a) { this._executor = a; this._executor._set_webRequest(this) }, get_timeout: function() { if (this._timeout === 0) return Sys.Net.WebRequestManager.get_defaultTimeout(); return this._timeout }, set_timeout: function(a) { this._timeout = a }, getResolvedUrl: function() { return Sys.Net.WebRequest._resolveUrl(this._url) }, invoke: function() { Sys.Net.WebRequestManager.executeRequest(this); this._invokeCalled = true } }; Sys.Net.WebRequest._resolveUrl = function(b, a) { if (b && b.indexOf("://") !== -1) return b; if (!a || a.length === 0) { var d = document.getElementsByTagName("base")[0]; if (d && d.href && d.href.length > 0) a = d.href; else a = document.URL } var c = a.indexOf("?"); if (c !== -1) a = a.substr(0, c); c = a.indexOf("#"); if (c !== -1) a = a.substr(0, c); a = a.substr(0, a.lastIndexOf("/") + 1); if (!b || b.length === 0) return a; if (b.charAt(0) === "/") { var e = a.indexOf("://"), g = a.indexOf("/", e + 3); return a.substr(0, g) + b } else { var f = a.lastIndexOf("/"); return a.substr(0, f + 1) + b } }; Sys.Net.WebRequest._createQueryString = function(d, b) { if (!b) b = encodeURIComponent; var a = new Sys.StringBuilder, f = 0; for (var c in d) { var e = d[c]; if (typeof e === "function") continue; var g = Sys.Serialization.JavaScriptSerializer.serialize(e); if (f !== 0) a.append("&"); a.append(c); a.append("="); a.append(b(g)); f++ } return a.toString() }; Sys.Net.WebRequest._createUrl = function(a, b) { if (!b) return a; var d = Sys.Net.WebRequest._createQueryString(b); if (d.length > 0) { var c = "?"; if (a && a.indexOf("?") !== -1) c = "&"; return a + c + d } else return a }; Sys.Net.WebRequest.registerClass("Sys.Net.WebRequest"); Sys.Net.WebServiceProxy = function() { }; Sys.Net.WebServiceProxy.prototype = { get_timeout: function() { return this._timeout }, set_timeout: function(a) { if (a < 0) throw Error.argumentOutOfRange("value", a, Sys.Res.invalidTimeout); this._timeout = a }, get_defaultUserContext: function() { return this._userContext }, set_defaultUserContext: function(a) { this._userContext = a }, get_defaultSucceededCallback: function() { return this._succeeded }, set_defaultSucceededCallback: function(a) { this._succeeded = a }, get_defaultFailedCallback: function() { return this._failed }, set_defaultFailedCallback: function(a) { this._failed = a }, get_path: function() { return this._path }, set_path: function(a) { this._path = a }, _invoke: function(d, e, g, f, c, b, a) { if (c === null || typeof c === "undefined") c = this.get_defaultSucceededCallback(); if (b === null || typeof b === "undefined") b = this.get_defaultFailedCallback(); if (a === null || typeof a === "undefined") a = this.get_defaultUserContext(); return Sys.Net.WebServiceProxy.invoke(d, e, g, f, c, b, a, this.get_timeout()) } }; Sys.Net.WebServiceProxy.registerClass("Sys.Net.WebServiceProxy"); Sys.Net.WebServiceProxy.invoke = function(k, a, j, d, i, c, f, h) { var b = new Sys.Net.WebRequest; b.get_headers()["Content-Type"] = "application/json; charset=utf-8"; if (!d) d = {}; var g = d; if (!j || !g) g = {}; b.set_url(Sys.Net.WebRequest._createUrl(k + "/" + encodeURIComponent(a), g)); var e = null; if (!j) { e = Sys.Serialization.JavaScriptSerializer.serialize(d); if (e === "{}") e = "" } b.set_body(e); b.add_completed(l); if (h && h > 0) b.set_timeout(h); b.invoke(); function l(d) { if (d.get_responseAvailable()) { var g = d.get_statusCode(), b = null; try { var e = d.getResponseHeader("Content-Type"); if (e.startsWith("application/json")) b = d.get_object(); else if (e.startsWith("text/xml")) b = d.get_xml(); else b = d.get_responseData() } catch (m) { } var k = d.getResponseHeader("jsonerror"), h = k === "true"; if (h) { if (b) b = new Sys.Net.WebServiceError(false, b.Message, b.StackTrace, b.ExceptionType) } else if (e.startsWith("application/json")) b = b.d; if (g < 200 || g >= 300 || h) { if (c) { if (!b || !h) b = new Sys.Net.WebServiceError(false, String.format(Sys.Res.webServiceFailedNoMsg, a), "", ""); b._statusCode = g; c(b, f, a) } } else if (i) i(b, f, a) } else { var j; if (d.get_timedOut()) j = String.format(Sys.Res.webServiceTimedOut, a); else j = String.format(Sys.Res.webServiceFailedNoMsg, a); if (c) c(new Sys.Net.WebServiceError(d.get_timedOut(), j, "", ""), f, a) } } return b }; Sys.Net.WebServiceProxy._generateTypedConstructor = function(a) { return function(b) { if (b) for (var c in b) this[c] = b[c]; this.__type = a } }; Sys.Net.WebServiceError = function(c, d, b, a) { this._timedOut = c; this._message = d; this._stackTrace = b; this._exceptionType = a; this._statusCode = -1 }; Sys.Net.WebServiceError.prototype = { get_timedOut: function() { return this._timedOut }, get_statusCode: function() { return this._statusCode }, get_message: function() { return this._message }, get_stackTrace: function() { return this._stackTrace }, get_exceptionType: function() { return this._exceptionType } }; Sys.Net.WebServiceError.registerClass("Sys.Net.WebServiceError"); Type.registerNamespace("Sys.Services"); Sys.Services._ProfileService = function() { Sys.Services._ProfileService.initializeBase(this); this.properties = {} }; Sys.Services._ProfileService.DefaultWebServicePath = ""; Sys.Services._ProfileService.prototype = { _defaultLoadCompletedCallback: null, _defaultSaveCompletedCallback: null, _path: "", _timeout: 0, get_defaultLoadCompletedCallback: function() { return this._defaultLoadCompletedCallback }, set_defaultLoadCompletedCallback: function(a) { this._defaultLoadCompletedCallback = a }, get_defaultSaveCompletedCallback: function() { return this._defaultSaveCompletedCallback }, set_defaultSaveCompletedCallback: function(a) { this._defaultSaveCompletedCallback = a }, get_path: function() { return this._path || "" }, load: function(c, d, e, f) { var b, a; if (!c) { a = "GetAllPropertiesForCurrentUser"; b = { authenticatedUserOnly: false} } else { a = "GetPropertiesForCurrentUser"; b = { properties: this._clonePropertyNames(c), authenticatedUserOnly: false} } this._invoke(this._get_path(), a, false, b, Function.createDelegate(this, this._onLoadComplete), Function.createDelegate(this, this._onLoadFailed), [d, e, f]) }, save: function(d, b, c, e) { var a = this._flattenProperties(d, this.properties); this._invoke(this._get_path(), "SetPropertiesForCurrentUser", false, { values: a.value, authenticatedUserOnly: false }, Function.createDelegate(this, this._onSaveComplete), Function.createDelegate(this, this._onSaveFailed), [b, c, e, a.count]) }, _clonePropertyNames: function(e) { var c = [], d = {}; for (var b = 0; b < e.length; b++) { var a = e[b]; if (!d[a]) { Array.add(c, a); d[a] = true } } return c }, _flattenProperties: function(a, i, j) { var b = {}, e, d, g = 0; if (a && a.length === 0) return { value: b, count: 0 }; for (var c in i) { e = i[c]; d = j ? j + "." + c : c; if (Sys.Services.ProfileGroup.isInstanceOfType(e)) { var k = this._flattenProperties(a, e, d), h = k.value; g += k.count; for (var f in h) { var l = h[f]; b[f] = l } } else if (!a || Array.indexOf(a, d) !== -1) { b[d] = e; g++ } } return { value: b, count: g} }, _get_path: function() { var a = this.get_path(); if (!a.length) a = Sys.Services._ProfileService.DefaultWebServicePath; if (!a || !a.length) throw Error.invalidOperation(Sys.Res.servicePathNotSet); return a }, _onLoadComplete: function(a, e, g) { if (typeof a !== "object") throw Error.invalidOperation(String.format(Sys.Res.webServiceInvalidReturnType, g, "Object")); var c = this._unflattenProperties(a); for (var b in c) this.properties[b] = c[b]; var d = e[0] || this.get_defaultLoadCompletedCallback() || this.get_defaultSucceededCallback(); if (d) { var f = e[2] || this.get_defaultUserContext(); d(a.length, f, "Sys.Services.ProfileService.load") } }, _onLoadFailed: function(d, b) { var a = b[1] || this.get_defaultFailedCallback(); if (a) { var c = b[2] || this.get_defaultUserContext(); a(d, c, "Sys.Services.ProfileService.load") } }, _onSaveComplete: function(a, b, f) { var c = b[3]; if (a !== null) if (a instanceof Array) c -= a.length; else if (typeof a === "number") c = a; else throw Error.invalidOperation(String.format(Sys.Res.webServiceInvalidReturnType, f, "Array")); var d = b[0] || this.get_defaultSaveCompletedCallback() || this.get_defaultSucceededCallback(); if (d) { var e = b[2] || this.get_defaultUserContext(); d(c, e, "Sys.Services.ProfileService.save") } }, _onSaveFailed: function(d, b) { var a = b[1] || this.get_defaultFailedCallback(); if (a) { var c = b[2] || this.get_defaultUserContext(); a(d, c, "Sys.Services.ProfileService.save") } }, _unflattenProperties: function(e) { var c = {}, d, f, h = 0; for (var a in e) { h++; f = e[a]; d = a.indexOf("."); if (d !== -1) { var g = a.substr(0, d); a = a.substr(d + 1); var b = c[g]; if (!b || !Sys.Services.ProfileGroup.isInstanceOfType(b)) { b = new Sys.Services.ProfileGroup; c[g] = b } b[a] = f } else c[a] = f } e.length = h; return c } }; Sys.Services._ProfileService.registerClass("Sys.Services._ProfileService", Sys.Net.WebServiceProxy); Sys.Services.ProfileService = new Sys.Services._ProfileService; Sys.Services.ProfileGroup = function(a) { if (a) for (var b in a) this[b] = a[b] }; Sys.Services.ProfileGroup.registerClass("Sys.Services.ProfileGroup"); Sys.Services._AuthenticationService = function() { Sys.Services._AuthenticationService.initializeBase(this) }; Sys.Services._AuthenticationService.DefaultWebServicePath = ""; Sys.Services._AuthenticationService.prototype = { _defaultLoginCompletedCallback: null, _defaultLogoutCompletedCallback: null, _path: "", _timeout: 0, _authenticated: false, get_defaultLoginCompletedCallback: function() { return this._defaultLoginCompletedCallback }, set_defaultLoginCompletedCallback: function(a) { this._defaultLoginCompletedCallback = a }, get_defaultLogoutCompletedCallback: function() { return this._defaultLogoutCompletedCallback }, set_defaultLogoutCompletedCallback: function(a) { this._defaultLogoutCompletedCallback = a }, get_isLoggedIn: function() { return this._authenticated }, get_path: function() { return this._path || "" }, login: function(c, b, a, h, f, d, e, g) { this._invoke(this._get_path(), "Login", false, { userName: c, password: b, createPersistentCookie: a }, Function.createDelegate(this, this._onLoginComplete), Function.createDelegate(this, this._onLoginFailed), [c, b, a, h, f, d, e, g]) }, logout: function(c, a, b, d) { this._invoke(this._get_path(), "Logout", false, {}, Function.createDelegate(this, this._onLogoutComplete), Function.createDelegate(this, this._onLogoutFailed), [c, a, b, d]) }, _get_path: function() { var a = this.get_path(); if (!a.length) a = Sys.Services._AuthenticationService.DefaultWebServicePath; if (!a || !a.length) throw Error.invalidOperation(Sys.Res.servicePathNotSet); return a }, _onLoginComplete: function(e, c, f) { if (typeof e !== "boolean") throw Error.invalidOperation(String.format(Sys.Res.webServiceInvalidReturnType, f, "Boolean")); var b = c[4], d = c[7] || this.get_defaultUserContext(), a = c[5] || this.get_defaultLoginCompletedCallback() || this.get_defaultSucceededCallback(); if (e) { this._authenticated = true; if (a) a(true, d, "Sys.Services.AuthenticationService.login"); if (typeof b !== "undefined" && b !== null) window.location.href = b } else if (a) a(false, d, "Sys.Services.AuthenticationService.login") }, _onLoginFailed: function(d, b) { var a = b[6] || this.get_defaultFailedCallback(); if (a) { var c = b[7] || this.get_defaultUserContext(); a(d, c, "Sys.Services.AuthenticationService.login") } }, _onLogoutComplete: function(f, a, e) { if (f !== null) throw Error.invalidOperation(String.format(Sys.Res.webServiceInvalidReturnType, e, "null")); var b = a[0], d = a[3] || this.get_defaultUserContext(), c = a[1] || this.get_defaultLogoutCompletedCallback() || this.get_defaultSucceededCallback(); this._authenticated = false; if (c) c(null, d, "Sys.Services.AuthenticationService.logout"); if (!b) window.location.reload(); else window.location.href = b }, _onLogoutFailed: function(c, b) { var a = b[2] || this.get_defaultFailedCallback(); if (a) a(c, b[3], "Sys.Services.AuthenticationService.logout") }, _setAuthenticated: function(a) { this._authenticated = a } }; Sys.Services._AuthenticationService.registerClass("Sys.Services._AuthenticationService", Sys.Net.WebServiceProxy); Sys.Services.AuthenticationService = new Sys.Services._AuthenticationService; Sys.Services._RoleService = function() { Sys.Services._RoleService.initializeBase(this); this._roles = [] }; Sys.Services._RoleService.DefaultWebServicePath = ""; Sys.Services._RoleService.prototype = { _defaultLoadCompletedCallback: null, _rolesIndex: null, _timeout: 0, _path: "", get_defaultLoadCompletedCallback: function() { return this._defaultLoadCompletedCallback }, set_defaultLoadCompletedCallback: function(a) { this._defaultLoadCompletedCallback = a }, get_path: function() { return this._path || "" }, get_roles: function() { return Array.clone(this._roles) }, isUserInRole: function(a) { var b = this._get_rolesIndex()[a.trim().toLowerCase()]; return !!b }, load: function(a, b, c) { Sys.Net.WebServiceProxy.invoke(this._get_path(), "GetRolesForCurrentUser", false, {}, Function.createDelegate(this, this._onLoadComplete), Function.createDelegate(this, this._onLoadFailed), [a, b, c], this.get_timeout()) }, _get_path: function() { var a = this.get_path(); if (!a || !a.length) a = Sys.Services._RoleService.DefaultWebServicePath; if (!a || !a.length) throw Error.invalidOperation(Sys.Res.servicePathNotSet); return a }, _get_rolesIndex: function() { if (!this._rolesIndex) { var b = {}; for (var a = 0; a < this._roles.length; a++) b[this._roles[a].toLowerCase()] = true; this._rolesIndex = b } return this._rolesIndex }, _onLoadComplete: function(a, c, f) { if (a && !(a instanceof Array)) throw Error.invalidOperation(String.format(Sys.Res.webServiceInvalidReturnType, f, "Array")); this._roles = a; this._rolesIndex = null; var b = c[0] || this.get_defaultLoadCompletedCallback() || this.get_defaultSucceededCallback(); if (b) { var e = c[2] || this.get_defaultUserContext(), d = Array.clone(a); b(d, e, "Sys.Services.RoleService.load") } }, _onLoadFailed: function(d, b) { var a = b[1] || this.get_defaultFailedCallback(); if (a) { var c = b[2] || this.get_defaultUserContext(); a(d, c, "Sys.Services.RoleService.load") } } }; Sys.Services._RoleService.registerClass("Sys.Services._RoleService", Sys.Net.WebServiceProxy); Sys.Services.RoleService = new Sys.Services._RoleService; Type.registerNamespace("Sys.Serialization"); Sys.Serialization.JavaScriptSerializer = function() { }; Sys.Serialization.JavaScriptSerializer.registerClass("Sys.Serialization.JavaScriptSerializer"); Sys.Serialization.JavaScriptSerializer._charsToEscapeRegExs = []; Sys.Serialization.JavaScriptSerializer._charsToEscape = []; Sys.Serialization.JavaScriptSerializer._dateRegEx = new RegExp('(^|[^\\\\])\\"\\\\/Date\\((-?[0-9]+)(?:[a-zA-Z]|(?:\\+|-)[0-9]{4})?\\)\\\\/\\"', "g"); Sys.Serialization.JavaScriptSerializer._escapeChars = {}; Sys.Serialization.JavaScriptSerializer._escapeRegEx = new RegExp('["\\\\\\x00-\\x1F]', "i"); Sys.Serialization.JavaScriptSerializer._escapeRegExGlobal = new RegExp('["\\\\\\x00-\\x1F]', "g"); Sys.Serialization.JavaScriptSerializer._jsonRegEx = new RegExp("[^,:{}\\[\\]0-9.\\-+Eaeflnr-u \\n\\r\\t]", "g"); Sys.Serialization.JavaScriptSerializer._jsonStringRegEx = new RegExp('"(\\\\.|[^"\\\\])*"', "g"); Sys.Serialization.JavaScriptSerializer._serverTypeFieldName = "__type"; Sys.Serialization.JavaScriptSerializer._init = function() { var c = ["\\u0000", "\\u0001", "\\u0002", "\\u0003", "\\u0004", "\\u0005", "\\u0006", "\\u0007", "\\b", "\\t", "\\n", "\\u000b", "\\f", "\\r", "\\u000e", "\\u000f", "\\u0010", "\\u0011", "\\u0012", "\\u0013", "\\u0014", "\\u0015", "\\u0016", "\\u0017", "\\u0018", "\\u0019", "\\u001a", "\\u001b", "\\u001c", "\\u001d", "\\u001e", "\\u001f"]; Sys.Serialization.JavaScriptSerializer._charsToEscape[0] = "\\"; Sys.Serialization.JavaScriptSerializer._charsToEscapeRegExs["\\"] = new RegExp("\\\\", "g"); Sys.Serialization.JavaScriptSerializer._escapeChars["\\"] = "\\\\"; Sys.Serialization.JavaScriptSerializer._charsToEscape[1] = '"'; Sys.Serialization.JavaScriptSerializer._charsToEscapeRegExs['"'] = new RegExp('"', "g"); Sys.Serialization.JavaScriptSerializer._escapeChars['"'] = '\\"'; for (var a = 0; a < 32; a++) { var b = String.fromCharCode(a); Sys.Serialization.JavaScriptSerializer._charsToEscape[a + 2] = b; Sys.Serialization.JavaScriptSerializer._charsToEscapeRegExs[b] = new RegExp(b, "g"); Sys.Serialization.JavaScriptSerializer._escapeChars[b] = c[a] } }; Sys.Serialization.JavaScriptSerializer._serializeBooleanWithBuilder = function(b, a) { a.append(b.toString()) }; Sys.Serialization.JavaScriptSerializer._serializeNumberWithBuilder = function(a, b) { if (isFinite(a)) b.append(String(a)); else throw Error.invalidOperation(Sys.Res.cannotSerializeNonFiniteNumbers) }; Sys.Serialization.JavaScriptSerializer._serializeStringWithBuilder = function(a, c) { c.append('"'); if (Sys.Serialization.JavaScriptSerializer._escapeRegEx.test(a)) { if (Sys.Serialization.JavaScriptSerializer._charsToEscape.length === 0) Sys.Serialization.JavaScriptSerializer._init(); if (a.length < 128) a = a.replace(Sys.Serialization.JavaScriptSerializer._escapeRegExGlobal, function(a) { return Sys.Serialization.JavaScriptSerializer._escapeChars[a] }); else for (var d = 0; d < 34; d++) { var b = Sys.Serialization.JavaScriptSerializer._charsToEscape[d]; if (a.indexOf(b) !== -1) if (Sys.Browser.agent === Sys.Browser.Opera || Sys.Browser.agent === Sys.Browser.FireFox) a = a.split(b).join(Sys.Serialization.JavaScriptSerializer._escapeChars[b]); else a = a.replace(Sys.Serialization.JavaScriptSerializer._charsToEscapeRegExs[b], Sys.Serialization.JavaScriptSerializer._escapeChars[b]) } } c.append(a); c.append('"') }; Sys.Serialization.JavaScriptSerializer._serializeWithBuilder = function(b, a, i, g) { var c; switch (typeof b) { case "object": if (b) if (Number.isInstanceOfType(b)) Sys.Serialization.JavaScriptSerializer._serializeNumberWithBuilder(b, a); else if (Boolean.isInstanceOfType(b)) Sys.Serialization.JavaScriptSerializer._serializeBooleanWithBuilder(b, a); else if (String.isInstanceOfType(b)) Sys.Serialization.JavaScriptSerializer._serializeStringWithBuilder(b, a); else if (Array.isInstanceOfType(b)) { a.append("["); for (c = 0; c < b.length; ++c) { if (c > 0) a.append(","); Sys.Serialization.JavaScriptSerializer._serializeWithBuilder(b[c], a, false, g) } a.append("]") } else { if (Date.isInstanceOfType(b)) { a.append('"\\/Date('); a.append(b.getTime()); a.append(')\\/"'); break } var d = [], f = 0; for (var e in b) { if (e.startsWith("$")) continue; if (e === Sys.Serialization.JavaScriptSerializer._serverTypeFieldName && f !== 0) { d[f++] = d[0]; d[0] = e } else d[f++] = e } if (i) d.sort(); a.append("{"); var j = false; for (c = 0; c < f; c++) { var h = b[d[c]]; if (typeof h !== "undefined" && typeof h !== "function") { if (j) a.append(","); else j = true; Sys.Serialization.JavaScriptSerializer._serializeWithBuilder(d[c], a, i, g); a.append(":"); Sys.Serialization.JavaScriptSerializer._serializeWithBuilder(h, a, i, g) } } a.append("}") } else a.append("null"); break; case "number": Sys.Serialization.JavaScriptSerializer._serializeNumberWithBuilder(b, a); break; case "string": Sys.Serialization.JavaScriptSerializer._serializeStringWithBuilder(b, a); break; case "boolean": Sys.Serialization.JavaScriptSerializer._serializeBooleanWithBuilder(b, a); break; default: a.append("null") } }; Sys.Serialization.JavaScriptSerializer.serialize = function(b) { var a = new Sys.StringBuilder; Sys.Serialization.JavaScriptSerializer._serializeWithBuilder(b, a, false); return a.toString() }; Sys.Serialization.JavaScriptSerializer.deserialize = function(data, secure) { if (data.length === 0) throw Error.argument("data", Sys.Res.cannotDeserializeEmptyString); try { var exp = data.replace(Sys.Serialization.JavaScriptSerializer._dateRegEx, "$1new Date($2)"); if (secure && Sys.Serialization.JavaScriptSerializer._jsonRegEx.test(exp.replace(Sys.Serialization.JavaScriptSerializer._jsonStringRegEx, ""))) throw null; return eval("(" + exp + ")") } catch (a) { throw Error.argument("data", Sys.Res.cannotDeserializeInvalidJson) } }; Sys.CultureInfo = function(c, b, a) { this.name = c; this.numberFormat = b; this.dateTimeFormat = a }; Sys.CultureInfo.prototype = { _getDateTimeFormats: function() { if (!this._dateTimeFormats) { var a = this.dateTimeFormat; this._dateTimeFormats = [a.MonthDayPattern, a.YearMonthPattern, a.ShortDatePattern, a.ShortTimePattern, a.LongDatePattern, a.LongTimePattern, a.FullDateTimePattern, a.RFC1123Pattern, a.SortableDateTimePattern, a.UniversalSortableDateTimePattern] } return this._dateTimeFormats }, _getMonthIndex: function(a) { if (!this._upperMonths) this._upperMonths = this._toUpperArray(this.dateTimeFormat.MonthNames); return Array.indexOf(this._upperMonths, this._toUpper(a)) }, _getAbbrMonthIndex: function(a) { if (!this._upperAbbrMonths) this._upperAbbrMonths = this._toUpperArray(this.dateTimeFormat.AbbreviatedMonthNames); return Array.indexOf(this._upperAbbrMonths, this._toUpper(a)) }, _getDayIndex: function(a) { if (!this._upperDays) this._upperDays = this._toUpperArray(this.dateTimeFormat.DayNames); return Array.indexOf(this._upperDays, this._toUpper(a)) }, _getAbbrDayIndex: function(a) { if (!this._upperAbbrDays) this._upperAbbrDays = this._toUpperArray(this.dateTimeFormat.AbbreviatedDayNames); return Array.indexOf(this._upperAbbrDays, this._toUpper(a)) }, _toUpperArray: function(c) { var b = []; for (var a = 0, d = c.length; a < d; a++) b[a] = this._toUpper(c[a]); return b }, _toUpper: function(a) { return a.split("\u00a0").join(" ").toUpperCase() } }; Sys.CultureInfo._parse = function(b) { var a = Sys.Serialization.JavaScriptSerializer.deserialize(b); return new Sys.CultureInfo(a.name, a.numberFormat, a.dateTimeFormat) }; Sys.CultureInfo.registerClass("Sys.CultureInfo"); Sys.CultureInfo.InvariantCulture = Sys.CultureInfo._parse('{"name":"","numberFormat":{"CurrencyDecimalDigits":2,"CurrencyDecimalSeparator":".","IsReadOnly":true,"CurrencyGroupSizes":[3],"NumberGroupSizes":[3],"PercentGroupSizes":[3],"CurrencyGroupSeparator":",","CurrencySymbol":"\u00a4","NaNSymbol":"NaN","CurrencyNegativePattern":0,"NumberNegativePattern":1,"PercentPositivePattern":0,"PercentNegativePattern":0,"NegativeInfinitySymbol":"-Infinity","NegativeSign":"-","NumberDecimalDigits":2,"NumberDecimalSeparator":".","NumberGroupSeparator":",","CurrencyPositivePattern":0,"PositiveInfinitySymbol":"Infinity","PositiveSign":"+","PercentDecimalDigits":2,"PercentDecimalSeparator":".","PercentGroupSeparator":",","PercentSymbol":"%","PerMilleSymbol":"\u2030","NativeDigits":["0","1","2","3","4","5","6","7","8","9"],"DigitSubstitution":1},"dateTimeFormat":{"AMDesignator":"AM","Calendar":{"MinSupportedDateTime":"@-62135568000000@","MaxSupportedDateTime":"@253402300799999@","AlgorithmType":1,"CalendarType":1,"Eras":[1],"TwoDigitYearMax":2029,"IsReadOnly":true},"DateSeparator":"/","FirstDayOfWeek":0,"CalendarWeekRule":0,"FullDateTimePattern":"dddd, dd MMMM yyyy HH:mm:ss","LongDatePattern":"dddd, dd MMMM yyyy","LongTimePattern":"HH:mm:ss","MonthDayPattern":"MMMM dd","PMDesignator":"PM","RFC1123Pattern":"ddd, dd MMM yyyy HH\':\'mm\':\'ss \'GMT\'","ShortDatePattern":"MM/dd/yyyy","ShortTimePattern":"HH:mm","SortableDateTimePattern":"yyyy\'-\'MM\'-\'dd\'T\'HH\':\'mm\':\'ss","TimeSeparator":":","UniversalSortableDateTimePattern":"yyyy\'-\'MM\'-\'dd HH\':\'mm\':\'ss\'Z\'","YearMonthPattern":"yyyy MMMM","AbbreviatedDayNames":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"ShortestDayNames":["Su","Mo","Tu","We","Th","Fr","Sa"],"DayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"AbbreviatedMonthNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"MonthNames":["January","February","March","April","May","June","July","August","September","October","November","December",""],"IsReadOnly":true,"NativeCalendarName":"Gregorian Calendar","AbbreviatedMonthGenitiveNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"MonthGenitiveNames":["January","February","March","April","May","June","July","August","September","October","November","December",""]}}'); if (typeof __cultureInfo === "undefined") var __cultureInfo = '{"name":"en-US","numberFormat":{"CurrencyDecimalDigits":2,"CurrencyDecimalSeparator":".","IsReadOnly":false,"CurrencyGroupSizes":[3],"NumberGroupSizes":[3],"PercentGroupSizes":[3],"CurrencyGroupSeparator":",","CurrencySymbol":"$","NaNSymbol":"NaN","CurrencyNegativePattern":0,"NumberNegativePattern":1,"PercentPositivePattern":0,"PercentNegativePattern":0,"NegativeInfinitySymbol":"-Infinity","NegativeSign":"-","NumberDecimalDigits":2,"NumberDecimalSeparator":".","NumberGroupSeparator":",","CurrencyPositivePattern":0,"PositiveInfinitySymbol":"Infinity","PositiveSign":"+","PercentDecimalDigits":2,"PercentDecimalSeparator":".","PercentGroupSeparator":",","PercentSymbol":"%","PerMilleSymbol":"\u2030","NativeDigits":["0","1","2","3","4","5","6","7","8","9"],"DigitSubstitution":1},"dateTimeFormat":{"AMDesignator":"AM","Calendar":{"MinSupportedDateTime":"@-62135568000000@","MaxSupportedDateTime":"@253402300799999@","AlgorithmType":1,"CalendarType":1,"Eras":[1],"TwoDigitYearMax":2029,"IsReadOnly":false},"DateSeparator":"/","FirstDayOfWeek":0,"CalendarWeekRule":0,"FullDateTimePattern":"dddd, MMMM dd, yyyy h:mm:ss tt","LongDatePattern":"dddd, MMMM dd, yyyy","LongTimePattern":"h:mm:ss tt","MonthDayPattern":"MMMM dd","PMDesignator":"PM","RFC1123Pattern":"ddd, dd MMM yyyy HH\':\'mm\':\'ss \'GMT\'","ShortDatePattern":"M/d/yyyy","ShortTimePattern":"h:mm tt","SortableDateTimePattern":"yyyy\'-\'MM\'-\'dd\'T\'HH\':\'mm\':\'ss","TimeSeparator":":","UniversalSortableDateTimePattern":"yyyy\'-\'MM\'-\'dd HH\':\'mm\':\'ss\'Z\'","YearMonthPattern":"MMMM, yyyy","AbbreviatedDayNames":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"ShortestDayNames":["Su","Mo","Tu","We","Th","Fr","Sa"],"DayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"AbbreviatedMonthNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"MonthNames":["January","February","March","April","May","June","July","August","September","October","November","December",""],"IsReadOnly":false,"NativeCalendarName":"Gregorian Calendar","AbbreviatedMonthGenitiveNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"MonthGenitiveNames":["January","February","March","April","May","June","July","August","September","October","November","December",""]}}'; Sys.CultureInfo.CurrentCulture = Sys.CultureInfo._parse(__cultureInfo); delete __cultureInfo; Sys.UI.Behavior = function(b) { Sys.UI.Behavior.initializeBase(this); this._element = b; var a = b._behaviors; if (!a) b._behaviors = [this]; else a[a.length] = this }; Sys.UI.Behavior.prototype = { _name: null, get_element: function() { return this._element }, get_id: function() { var a = Sys.UI.Behavior.callBaseMethod(this, "get_id"); if (a) return a; if (!this._element || !this._element.id) return ""; return this._element.id + "$" + this.get_name() }, get_name: function() { if (this._name) return this._name; var a = Object.getTypeName(this), b = a.lastIndexOf("."); if (b != -1) a = a.substr(b + 1); if (!this.get_isInitialized()) this._name = a; return a }, set_name: function(a) { this._name = a }, initialize: function() { Sys.UI.Behavior.callBaseMethod(this, "initialize"); var a = this.get_name(); if (a) this._element[a] = this }, dispose: function() { Sys.UI.Behavior.callBaseMethod(this, "dispose"); if (this._element) { var a = this.get_name(); if (a) this._element[a] = null; Array.remove(this._element._behaviors, this); delete this._element } } }; Sys.UI.Behavior.registerClass("Sys.UI.Behavior", Sys.Component); Sys.UI.Behavior.getBehaviorByName = function(b, c) { var a = b[c]; return a && Sys.UI.Behavior.isInstanceOfType(a) ? a : null }; Sys.UI.Behavior.getBehaviors = function(a) { if (!a._behaviors) return []; return Array.clone(a._behaviors) }; Sys.UI.Behavior.getBehaviorsByType = function(d, e) { var a = d._behaviors, c = []; if (a) for (var b = 0, f = a.length; b < f; b++) if (e.isInstanceOfType(a[b])) c[c.length] = a[b]; return c }; Sys.UI.VisibilityMode = function() { throw Error.notImplemented() }; Sys.UI.VisibilityMode.prototype = { hide: 0, collapse: 1 }; Sys.UI.VisibilityMode.registerEnum("Sys.UI.VisibilityMode"); Sys.UI.Control = function(a) { Sys.UI.Control.initializeBase(this); this._element = a; a.control = this }; Sys.UI.Control.prototype = { _parent: null, _visibilityMode: Sys.UI.VisibilityMode.hide, get_element: function() { return this._element }, get_id: function() { if (!this._element) return ""; return this._element.id }, set_id: function() { throw Error.invalidOperation(Sys.Res.cantSetId) }, get_parent: function() { if (this._parent) return this._parent; if (!this._element) return null; var a = this._element.parentNode; while (a) { if (a.control) return a.control; a = a.parentNode } return null }, set_parent: function(a) { this._parent = a }, get_visibilityMode: function() { return Sys.UI.DomElement.getVisibilityMode(this._element) }, set_visibilityMode: function(a) { Sys.UI.DomElement.setVisibilityMode(this._element, a) }, get_visible: function() { return Sys.UI.DomElement.getVisible(this._element) }, set_visible: function(a) { Sys.UI.DomElement.setVisible(this._element, a) }, addCssClass: function(a) { Sys.UI.DomElement.addCssClass(this._element, a) }, dispose: function() { Sys.UI.Control.callBaseMethod(this, "dispose"); if (this._element) { this._element.control = undefined; delete this._element } if (this._parent) delete this._parent }, onBubbleEvent: function() { return false }, raiseBubbleEvent: function(b, c) { var a = this.get_parent(); while (a) { if (a.onBubbleEvent(b, c)) return; a = a.get_parent() } }, removeCssClass: function(a) { Sys.UI.DomElement.removeCssClass(this._element, a) }, toggleCssClass: function(a) { Sys.UI.DomElement.toggleCssClass(this._element, a) } }; Sys.UI.Control.registerClass("Sys.UI.Control", Sys.Component);
Type.registerNamespace('Sys'); Sys.Res = { 'argumentInteger': 'Value must be an integer.', 'scriptLoadMultipleCallbacks': 'The script \'{0}\' contains multiple calls to Sys.Application.notifyScriptLoaded(). Only one is allowed.', 'invokeCalledTwice': 'Cannot call invoke more than once.', 'webServiceFailed': 'The server method \'{0}\' failed with the following error: {1}', 'webServiceInvalidJsonWrapper': 'The server method \'{0}\' returned invalid data. The \'d\' property is missing from the JSON wrapper.', 'argumentType': 'Object cannot be converted to the required type.', 'argumentNull': 'Value cannot be null.', 'controlCantSetId': 'The id property can\'t be set on a control.', 'formatBadFormatSpecifier': 'Format specifier was invalid.', 'webServiceFailedNoMsg': 'The server method \'{0}\' failed.', 'argumentDomElement': 'Value must be a DOM element.', 'invalidExecutorType': 'Could not create a valid Sys.Net.WebRequestExecutor from: {0}.', 'cannotCallBeforeResponse': 'Cannot call {0} when responseAvailable is false.', 'actualValue': 'Actual value was {0}.', 'enumInvalidValue': '\'{0}\' is not a valid value for enum {1}.', 'scriptLoadFailed': 'The script \'{0}\' could not be loaded.', 'parameterCount': 'Parameter count mismatch.', 'cannotDeserializeEmptyString': 'Cannot deserialize empty string.', 'formatInvalidString': 'Input string was not in a correct format.', 'invalidTimeout': 'Value must be greater than or equal to zero.', 'cannotAbortBeforeStart': 'Cannot abort when executor has not started.', 'argument': 'Value does not fall within the expected range.', 'cannotDeserializeInvalidJson': 'Cannot deserialize. The data does not correspond to valid JSON.', 'invalidHttpVerb': 'httpVerb cannot be set to an empty or null string.', 'nullWebRequest': 'Cannot call executeRequest with a null webRequest.', 'eventHandlerInvalid': 'Handler was not added through the Sys.UI.DomEvent.addHandler method.', 'cannotSerializeNonFiniteNumbers': 'Cannot serialize non finite numbers.', 'argumentUndefined': 'Value cannot be undefined.', 'webServiceInvalidReturnType': 'The server method \'{0}\' returned an invalid type. Expected type: {1}', 'servicePathNotSet': 'The path to the web service has not been set.', 'argumentTypeWithTypes': 'Object of type \'{0}\' cannot be converted to type \'{1}\'.', 'cannotCallOnceStarted': 'Cannot call {0} once started.', 'badBaseUrl1': 'Base URL does not contain ://.', 'badBaseUrl2': 'Base URL does not contain another /.', 'badBaseUrl3': 'Cannot find last / in base URL.', 'setExecutorAfterActive': 'Cannot set executor after it has become active.', 'paramName': 'Parameter name: {0}', 'cannotCallOutsideHandler': 'Cannot call {0} outside of a completed event handler.', 'cannotSerializeObjectWithCycle': 'Cannot serialize object with cyclic reference within child properties.', 'format': 'One of the identified items was in an invalid format.', 'assertFailedCaller': 'Assertion Failed: {0}\r\nat {1}', 'argumentOutOfRange': 'Specified argument was out of the range of valid values.', 'webServiceTimedOut': 'The server method \'{0}\' timed out.', 'notImplemented': 'The method or operation is not implemented.', 'assertFailed': 'Assertion Failed: {0}', 'invalidOperation': 'Operation is not valid due to the current state of the object.', 'breakIntoDebugger': '{0}\r\n\r\nBreak into debugger?' };
if (typeof (Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();

Type.registerNamespace('Sys.Mvc'); Sys.Mvc.$create_AjaxOptions = function() { return {}; }
Sys.Mvc.InsertionMode = function() { }; Sys.Mvc.InsertionMode.prototype = { replace: 0, insertBefore: 1, insertAfter: 2 }
Sys.Mvc.InsertionMode.registerEnum('Sys.Mvc.InsertionMode', false); Sys.Mvc.AjaxContext = function(request, updateTarget, loadingElement, insertionMode) { this.$3 = request; this.$4 = updateTarget; this.$1 = loadingElement; this.$0 = insertionMode; }
Sys.Mvc.AjaxContext.prototype = { $0: 0, $1: null, $2: null, $3: null, $4: null, get_data: function() { if (this.$2) { return this.$2.get_responseData(); } else { return null; } }, get_insertionMode: function() { return this.$0; }, get_loadingElement: function() { return this.$1; }, get_response: function() { return this.$2; }, set_response: function(value) { this.$2 = value; return value; }, get_request: function() { return this.$3; }, get_updateTarget: function() { return this.$4; } }
Sys.Mvc.AsyncHyperlink = function() { }
Sys.Mvc.AsyncHyperlink.handleClick = function(anchor, evt, ajaxOptions) { evt.preventDefault(); Sys.Mvc.MvcHelpers.$1(anchor.href, 'post', '', anchor, ajaxOptions); }
Sys.Mvc.MvcHelpers = function() { }
Sys.Mvc.MvcHelpers.$0 = function($p0) { var $0 = $p0.elements; var $1 = new Sys.StringBuilder(); var $2 = $0.length; for (var $3 = 0; $3 < $2; $3++) { var $4 = $0[$3]; var $5 = $4.name; if (!$5 || !$5.length) { continue; } var $6 = $4.tagName.toUpperCase(); if ($6 === 'INPUT') { var $7 = $4; var $8 = $7.type; if (($8 === 'text') || ($8 === 'password') || ($8 === 'hidden') || ((($8 === 'checkbox') || ($8 === 'radio')) && $4.checked)) { $1.append(encodeURIComponent($5)); $1.append('='); $1.append(encodeURIComponent($7.value)); $1.append('&'); } } else if ($6 === 'SELECT') { var $9 = $4; var $A = $9.options.length; for (var $B = 0; $B < $A; $B++) { var $C = $9.options[$B]; if ($C.selected) { $1.append(encodeURIComponent($5)); $1.append('='); $1.append(encodeURIComponent($C.value)); $1.append('&'); } } } else if ($6 === 'TEXTAREA') { $1.append(encodeURIComponent($5)); $1.append('='); $1.append(encodeURIComponent(($4.value))); $1.append('&'); } } return $1.toString(); }
Sys.Mvc.MvcHelpers.$1 = function($p0, $p1, $p2, $p3, $p4) {
    if ($p4.confirm) { if (!confirm($p4.confirm)) { return; } } if ($p4.url) { $p0 = $p4.url; } if ($p4.httpMethod) { $p1 = $p4.httpMethod; } if ($p2.length > 0 && !$p2.endsWith('&')) { $p2 += '&'; } $p2 += 'X-Requested-With=XMLHttpRequest'; var $0 = ''; if ($p1.toUpperCase() === 'GET' || $p1.toUpperCase() === 'DELETE') { if ($p0.indexOf('?') > -1) { if (!$p0.endsWith('&')) { $p0 += '&'; } $p0 += $p2; } else { $p0 += '?'; $p0 += $p2; } } else { $0 = $p2; } var $1 = new Sys.Net.WebRequest(); $1.set_url($p0); $1.set_httpVerb($p1); $1.set_body($0); if ($p1.toUpperCase() === 'PUT') { $1.get_headers()['Content-Type'] = 'application/x-www-form-urlencoded;'; } $1.get_headers()['X-Requested-With'] = 'XMLHttpRequest'; var $2 = null; if ($p4.updateTargetId) { $2 = $get($p4.updateTargetId); } var $3 = null; if ($p4.loadingElementId) { $3 = $get($p4.loadingElementId); } var $4 = new Sys.Mvc.AjaxContext($1, $2, $3, $p4.insertionMode); var $5 = true; if ($p4.onBegin) { $5 = $p4.onBegin($4) !== false; } if ($3) { Sys.UI.DomElement.setVisible($4.get_loadingElement(), true); } if ($5) {
        $1.add_completed(Function.createDelegate(null, function($p1_0) {
            Sys.Mvc.MvcHelpers.$2($1, $p4, $4);
        })); $1.invoke();
    }
}
Sys.Mvc.MvcHelpers.$2 = function($p0, $p1, $p2) { $p2.set_response($p0.get_executor()); if ($p1.onComplete && $p1.onComplete($p2) === false) { return; } var $0 = $p2.get_response().get_statusCode(); if (($0 >= 200 && $0 < 300) || $0 === 304 || $0 === 1223) { if ($0 !== 204 && $0 !== 304 && $0 !== 1223) { var $1 = $p2.get_response().getResponseHeader('Content-Type'); if (($1) && ($1.indexOf('application/x-javascript') !== -1)) { eval($p2.get_data()); } else { Sys.Mvc.MvcHelpers.updateDomElement($p2.get_updateTarget(), $p2.get_insertionMode(), $p2.get_data()); } } if ($p1.onSuccess) { $p1.onSuccess($p2); } } else { if ($p1.onFailure) { $p1.onFailure($p2); } } if ($p2.get_loadingElement()) { Sys.UI.DomElement.setVisible($p2.get_loadingElement(), false); } }
Sys.Mvc.MvcHelpers.updateDomElement = function(target, insertionMode, content) { if (target) { switch (insertionMode) { case 0: target.innerHTML = content; break; case 1: if (content && content.length > 0) { target.innerHTML = content + target.innerHTML.trimStart(); } break; case 2: if (content && content.length > 0) { target.innerHTML = target.innerHTML.trimEnd() + content; } break; } } }
Sys.Mvc.AsyncForm = function() { }
Sys.Mvc.AsyncForm.handleSubmit = function(form, evt, ajaxOptions) { evt.preventDefault(); var $0 = Sys.Mvc.MvcHelpers.$0(form); Sys.Mvc.MvcHelpers.$1(form.action, form.method || 'post', $0, form, ajaxOptions); }
Sys.Mvc.AjaxContext.registerClass('Sys.Mvc.AjaxContext'); Sys.Mvc.AsyncHyperlink.registerClass('Sys.Mvc.AsyncHyperlink'); Sys.Mvc.MvcHelpers.registerClass('Sys.Mvc.MvcHelpers'); Sys.Mvc.AsyncForm.registerClass('Sys.Mvc.AsyncForm');
// ---- Do not remove this footer ----
// Generated using Script# v0.5.0.0 (http://projects.nikhilk.net)
// -----------------------------------


/*
* Copyright (c) 2009 Simo Kinnunen.
* Licensed under the MIT license.
*
* @version 1.09i
*/
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2000, 2004 Adobe Systems Incorporated. All Rights Reserved. U.S. Patent
 * D454,582.
 * 
 * Trademark:
 * Myriad is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * MyriadPro-Regular
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":184,"face":{"font-family":"Myriad Pro","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 3 3 4 3 2 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-16 -343 309 90","underline-thickness":"18","underline-position":"-18","stemh":"24","stemv":"32","unicode-range":"U+0020-U+0233"},"glyphs":{" ":{"w":76,"k":{"T":15,"\u0166":15,"\u0164":15,"\u0162":15,"\u021a":15,"V":13,"W":13,"\u0174":13,"Y":17,"\u00dd":17,"\u0178":17,"\u0232":17}},"!":{"d":"54,-70r-25,0r-5,-173r35,0xm41,4v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22","w":82},"\"":{"d":"18,-249r32,0r-6,86r-20,0xm72,-249r31,0r-6,86r-19,0","w":121,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u0162":-6,"\u021a":-6,"J":21,"\u0134":21,"M":2,"C":1,"G":1,"O":1,"Q":1,"\u00d8":1,"\u0152":1,"\u00c7":1,"\u00d3":1,"\u00d4":1,"\u00d6":1,"\u00d2":1,"\u00d5":1,"\u0106":1,"\u010c":1,"\u0108":1,"\u010a":1,"\u011e":1,"\u011c":1,"\u0122":1,"\u0120":1,"\u014e":1,"\u0150":1,"\u014c":1,"\u01fe":1,"\u01a0":1,"V":-6,"W":-6,"\u0174":-6,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,"\u01fa":22,"\u01fc":22,"f":-9,"\u00df":-9,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0111":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"\u01a1":3,"t":-9,"\u0167":-9,"\u0165":-9,"\u0163":-9,"\u021b":-9,"v":-8,"w":-8,"y":-8,"\u00fd":-8,"\u00ff":-8,"\u0175":-8,"\u0233":-8,",":41,".":41}},"#":{"d":"68,-92r37,0r7,-52r-37,0xm55,0r-22,0r10,-71r-30,0r0,-21r33,0r7,-52r-31,0r0,-21r34,0r10,-69r20,0r-9,69r38,0r9,-69r21,0r-9,69r30,0r0,21r-33,0r-6,52r31,0r0,21r-35,0r-9,71r-21,0r9,-71r-38,0","w":178},"$":{"d":"101,31r-23,0r0,-36v-21,0,-42,-7,-55,-16r9,-24v25,21,97,23,95,-20v0,-20,-14,-32,-41,-43v-37,-14,-59,-31,-59,-62v0,-30,21,-53,54,-58r0,-37r22,0r0,35v22,1,37,7,47,13r-9,24v-8,-4,-22,-13,-45,-13v-28,0,-38,17,-38,31v0,19,12,31,44,41v73,23,76,112,-1,128r0,37"},"%":{"d":"11,-165v0,-47,25,-73,57,-73v32,0,54,25,54,70v0,49,-26,74,-56,74v-29,0,-55,-24,-55,-71xm66,-219v-19,0,-30,23,-30,53v0,30,10,53,30,53v21,0,30,-23,30,-54v0,-28,-8,-52,-30,-52xm83,4r-20,0r138,-242r20,0xm220,-141v32,0,54,25,54,70v0,49,-26,74,-56,74v-29,0,-55,-24,-55,-71v0,-47,26,-73,57,-73xm219,-122v-19,0,-31,23,-31,53v0,30,12,52,31,52v21,0,30,-22,30,-53v0,-28,-8,-52,-30,-52","w":285},"&":{"d":"217,0r-38,0v-7,-7,-13,-14,-22,-24v-43,50,-146,28,-146,-40v0,-34,22,-55,48,-72v-36,-40,-23,-109,41,-111v30,0,54,21,54,52v0,27,-17,45,-54,66r59,67v11,-17,19,-39,24,-70r29,0v-6,38,-17,68,-35,89xm41,-69v0,53,74,63,100,27r-68,-76v-13,8,-32,23,-32,49xm98,-225v-42,0,-35,58,-12,79v24,-14,40,-27,40,-48v0,-15,-8,-31,-28,-31","w":217},"(":{"d":"70,-250r25,0v-58,61,-58,232,0,294r-25,0v-23,-30,-47,-77,-47,-147v0,-71,24,-117,47,-147","w":102,"k":{"T":-17,"\u0166":-17,"\u0164":-17,"\u0162":-17,"\u021a":-17,"J":-6,"\u0134":-6,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u0108":4,"\u010a":4,"\u011e":4,"\u011c":4,"\u0122":4,"\u0120":4,"\u014e":4,"\u0150":4,"\u014c":4,"\u01fe":4,"\u01a0":4,"V":-18,"W":-18,"\u0174":-18,"X":-4,"Y":-15,"\u00dd":-15,"\u0178":-15,"\u0232":-15,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4,"\u0102":4,"\u0100":4,"\u0104":4,"\u01fa":4,"\u01fc":4,"j":-20,"\u0135":-20}},")":{"d":"32,44r-25,0v26,-36,46,-83,46,-148v0,-64,-20,-110,-46,-146r25,0v23,30,47,76,47,147v0,71,-24,116,-47,147","w":102},"*":{"d":"97,-247r21,13r-34,45r55,-7r0,25v-18,-1,-39,-7,-55,-6r35,43r-23,13v-8,-16,-13,-35,-22,-50r-24,50r-20,-13r34,-44r-53,7r0,-25v17,1,38,7,53,6r-34,-44r22,-12v8,16,13,35,23,50","w":149},"+":{"d":"96,-192r23,0r0,85r81,0r0,22r-81,0r0,85r-23,0r0,-85r-82,0r0,-22r82,0r0,-85","w":214},",":{"d":"28,42r-22,2v8,-21,17,-60,21,-86r36,-3v-8,31,-25,70,-35,87","w":74,"k":{"\"":37,"'":37}},"-":{"d":"11,-109r89,0r0,23r-89,0r0,-23","w":110,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"J":7,"\u0134":7,"C":-5,"G":-5,"O":-5,"Q":-5,"\u00d8":-5,"\u0152":-5,"\u00c7":-5,"\u00d3":-5,"\u00d4":-5,"\u00d6":-5,"\u00d2":-5,"\u00d5":-5,"\u0106":-5,"\u010c":-5,"\u0108":-5,"\u010a":-5,"\u011e":-5,"\u011c":-5,"\u0122":-5,"\u0120":-5,"\u014e":-5,"\u0150":-5,"\u014c":-5,"\u01fe":-5,"\u01a0":-5,"V":4,"W":4,"\u0174":4,"X":8,"Y":18,"\u00dd":18,"\u0178":18,"\u0232":18,"A":1,"\u00c6":1,"\u00c1":1,"\u00c2":1,"\u00c4":1,"\u00c0":1,"\u00c5":1,"\u00c3":1,"\u0102":1,"\u0100":1,"\u0104":1,"\u01fa":1,"\u01fc":1,"g":-5,"\u011f":-5,"\u011d":-5,"\u0123":-5,"\u0121":-5,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"\u00f8":-6,"\u0153":-6,"\u00e7":-6,"\u00e9":-6,"\u00ea":-6,"\u00eb":-6,"\u00e8":-6,"\u00f3":-6,"\u00f4":-6,"\u00f6":-6,"\u00f2":-6,"\u00f5":-6,"\u0111":-6,"\u0107":-6,"\u010d":-6,"\u0109":-6,"\u010b":-6,"\u010f":-6,"\u0115":-6,"\u011b":-6,"\u0117":-6,"\u0113":-6,"\u0119":-6,"\u014f":-6,"\u0151":-6,"\u014d":-6,"\u01ff":-6,"\u01a1":-6,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0175":2,"\u0233":2}},".":{"d":"40,4v-12,0,-21,-10,-21,-23v0,-13,8,-22,21,-22v13,0,22,9,22,22v0,13,-9,23,-22,23","w":74,"k":{"\"":37,"'":37}},"\/":{"d":"24,14r-24,0r100,-261r25,0","w":123},"0":{"d":"94,-238v49,0,78,43,78,118v0,80,-30,124,-82,124v-46,0,-77,-43,-77,-120v0,-78,33,-122,81,-122xm93,-213v-28,0,-48,33,-48,97v0,61,18,95,47,95v32,0,48,-37,48,-97v0,-58,-14,-95,-47,-95"},"1":{"d":"85,0r-1,-204r-40,21r-7,-24v25,-10,40,-31,79,-27r0,234r-31,0"},"2":{"d":"166,0r-150,0v-4,-27,13,-32,25,-44v58,-58,87,-87,87,-122v0,-24,-11,-46,-46,-46v-21,0,-39,11,-50,20r-10,-22v16,-14,39,-24,66,-24v50,0,72,35,72,68v0,47,-55,100,-100,144r106,0r0,26"},"3":{"d":"15,-12r9,-24v9,6,30,14,52,14v41,0,53,-26,53,-45v-1,-39,-38,-50,-79,-47r0,-24v35,2,66,-5,70,-39v5,-40,-68,-42,-88,-20r-8,-23v12,-9,36,-18,61,-18v81,0,88,90,24,111v80,20,64,134,-33,131v-26,0,-49,-8,-61,-16"},"4":{"d":"144,0r-30,0r0,-64r-109,0r0,-21r105,-149r34,0r0,145r33,0r0,25r-33,0r0,64xm114,-89r0,-114v-22,44,-50,75,-77,114r77,0"},"5":{"d":"58,-147v54,-8,99,16,103,71v5,69,-93,99,-146,66r8,-25v32,22,110,16,106,-37v6,-40,-50,-60,-100,-50r15,-112r112,0r0,27r-89,0"},"6":{"d":"150,-238r0,26v-61,-1,-104,42,-104,85v34,-49,127,-26,127,49v0,43,-29,82,-78,82v-50,0,-83,-39,-83,-100v0,-89,51,-139,138,-142xm141,-77v6,-66,-92,-70,-97,-10v-8,78,99,90,97,10"},"7":{"d":"21,-234r147,0r0,21r-102,213r-33,0r102,-208r-114,0r0,-26"},"8":{"d":"60,-122v-66,-28,-39,-119,35,-116v78,3,91,83,29,113v76,24,52,129,-32,129v-91,0,-104,-102,-32,-126xm93,-19v28,0,46,-18,46,-42v0,-28,-19,-42,-51,-51v-56,11,-57,91,5,93xm93,-215v-26,0,-41,17,-41,37v0,23,18,36,45,43v42,-9,52,-78,-4,-80"},"9":{"d":"35,4r0,-26v59,3,99,-33,104,-86v-37,49,-124,20,-124,-47v0,-44,32,-83,80,-83v95,0,90,167,37,208v-27,21,-56,34,-97,34xm46,-157v0,60,94,66,94,14v0,-40,-15,-71,-48,-71v-27,0,-46,24,-46,57"},":":{"d":"40,-123v-12,0,-21,-9,-21,-22v0,-13,8,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22xm40,4v-12,0,-21,-9,-21,-22v0,-13,8,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22","w":74},";":{"d":"28,42r-22,2v8,-21,18,-60,22,-86r35,-3v-9,31,-25,70,-35,87xm64,-145v0,13,-8,22,-22,22v-12,0,-20,-9,-20,-22v0,-13,9,-23,21,-23v13,0,21,10,21,23","w":74},"<":{"d":"24,-86r0,-19r167,-87r0,25r-141,72r141,70r0,25","w":214},"=":{"d":"200,-121r-186,0r0,-22r186,0r0,22xm200,-51r-186,0r0,-21r186,0r0,21","w":214},">":{"d":"191,-106r0,20r-167,86r0,-25r142,-71r-142,-71r0,-25","w":214},"?":{"d":"79,-69r-28,0v-17,-44,45,-86,47,-121v2,-34,-50,-39,-71,-20r-9,-23v36,-29,121,-9,112,39v3,45,-64,75,-51,125xm64,4v-12,0,-21,-9,-21,-22v0,-13,8,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22","w":146},"@":{"d":"117,-43v36,0,47,-52,52,-89v-40,-13,-76,21,-75,62v0,16,7,27,23,27xm183,8r6,15v-78,40,-174,-3,-174,-98v0,-74,52,-138,132,-138v63,0,105,44,105,104v0,54,-30,86,-64,86v-14,0,-28,-10,-27,-32r-2,0v-20,43,-87,45,-89,-14v-2,-58,63,-103,124,-78r-13,66v-5,27,-1,40,11,40v18,0,39,-24,39,-66v0,-52,-31,-90,-87,-90v-59,0,-108,47,-108,120v0,82,81,120,147,85","w":265},"A":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-9,39,-24,77,-36,114","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u0162":28,"\u021a":28,"J":-7,"\u0134":-7,"M":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u01a0":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"\u01af":10,"V":19,"W":19,"\u0174":19,"X":5,"Y":28,"\u00dd":28,"\u0178":28,"\u0232":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"b":1,"h":1,"k":1,"l":1,"\u0142":1,"\u0127":1,"\u0125":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"j":1,"\u0135":1,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u0163":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u0175":8,"\u0233":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,"-":1,"\u00ad":1,")":3,"]":3,"}":3,"\"":21,"'":21}},"B":{"d":"180,-69v0,71,-85,76,-153,68r0,-238v57,-10,144,-11,144,55v0,24,-17,43,-41,54v23,6,50,25,50,61xm59,-218r0,78v42,4,81,-8,81,-41v0,-38,-47,-43,-81,-37xm59,-116r0,92v40,6,89,-1,88,-45v0,-42,-42,-50,-88,-47","w":195,"k":{"T":3,"\u0166":3,"\u0164":3,"\u0162":3,"\u021a":3,"V":-1,"W":-1,"\u0174":-1,"Y":5,"\u00dd":5,"\u0178":5,"\u0232":5,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0175":-1,"\u0233":-1,"-":-2,"\u00ad":-2,",":5,".":5}},"C":{"d":"190,-33r7,25v-80,33,-184,-4,-184,-111v0,-97,99,-152,184,-117r-7,26v-67,-29,-144,6,-144,90v0,79,75,116,144,87","w":208,"k":{"\u0152":8,"T":-10,"\u0166":-10,"\u0164":-10,"\u0162":-10,"\u021a":-10,"J":-1,"\u0134":-1,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u01a0":8,"V":-4,"W":-4,"\u0174":-4,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"A":-1,"\u00c6":-1,"\u00c1":-1,"\u00c2":-1,"\u00c4":-1,"\u00c0":-1,"\u00c5":-1,"\u00c3":-1,"\u0102":-1,"\u0100":-1,"\u0104":-1,"\u01fa":-1,"\u01fc":-1,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fb":3,"\u01fd":3,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0175":7,"\u0233":7,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,"\u00ab":4,")":-6,"]":-6,"}":-6}},"D":{"d":"226,-127v0,107,-89,142,-199,126r0,-238v102,-18,199,7,199,112xm59,-216r0,191v79,12,135,-24,135,-101v0,-69,-60,-107,-135,-90","w":239,"k":{"\u0142":-1,"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,"X":10,"Y":10,"\u00dd":10,"\u0178":10,"\u0232":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"x":2,"\u00ab":-5,"-":-5,"\u00ad":-5,")":3,"]":3,"}":3,",":12,".":12}},"E":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u0162":-6,"\u021a":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u0174":-3,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,",":1,".":1}},"F":{"d":"27,0r0,-243r131,0r0,27r-99,0r0,80r91,0r0,26r-91,0r0,110r-32,0","w":175,"k":{"\u00ef":9,"J":31,"\u0134":31,"M":6,"A":28,"\u00c6":28,"\u00c1":28,"\u00c2":28,"\u00c4":28,"\u00c0":28,"\u00c5":28,"\u00c3":28,"\u0102":28,"\u0100":28,"\u0104":28,"\u01fa":28,"\u01fc":28,"a":16,"\u00e6":16,"\u00e1":16,"\u00e2":16,"\u00e4":16,"\u00e0":16,"\u00e5":16,"\u00e3":16,"\u0103":16,"\u0101":16,"\u0105":16,"\u01fb":16,"\u01fd":16,"g":6,"\u011f":6,"\u011d":6,"\u0123":6,"\u0121":6,"b":6,"h":6,"k":6,"l":6,"\u0142":6,"\u0127":6,"\u0125":6,"\u0137":6,"\u013a":6,"\u013e":6,"\u013c":6,"\u0140":6,"i":9,"m":9,"n":9,"p":9,"r":9,"\u0131":9,"\u00ed":9,"\u00ee":9,"\u00ec":9,"\u00f1":9,"\u014b":9,"\u0138":9,"\u0133":9,"\u012d":9,"\u012b":9,"\u012f":9,"\u0129":9,"\u0144":9,"\u0148":9,"\u0146":9,"\u0155":9,"\u0159":9,"\u0157":9,"c":11,"d":11,"e":11,"o":11,"q":11,"\u00f8":11,"\u0153":11,"\u00e7":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00e8":11,"\u00f3":11,"\u00f4":11,"\u00f6":11,"\u00f2":11,"\u00f5":11,"\u0111":11,"\u0107":11,"\u010d":11,"\u0109":11,"\u010b":11,"\u010f":11,"\u0115":11,"\u011b":11,"\u0117":11,"\u0113":11,"\u0119":11,"\u014f":11,"\u0151":11,"\u014d":11,"\u01ff":11,"\u01a1":11,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"\u016d":13,"\u0171":13,"\u016b":13,"\u0173":13,"\u016f":13,"\u0169":13,"\u01b0":13,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u0175":8,"\u0233":8,":":5,";":5,"\u00bb":5,"\u00ab":5,",":35,".":35}},"G":{"d":"138,3v-73,1,-125,-46,-125,-123v0,-94,102,-150,192,-114r-8,26v-66,-30,-151,5,-151,87v0,78,68,114,135,91r0,-72r-49,0r0,-25r80,0r0,116v-14,5,-41,14,-74,14","w":232,"k":{"a":-3,"\u00e6":-3,"\u00e1":-3,"\u00e2":-3,"\u00e4":-3,"\u00e0":-3,"\u00e5":-3,"\u00e3":-3,"\u0103":-3,"\u0101":-3,"\u0105":-3,"\u01fb":-3,"\u01fd":-3,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0111":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u01a1":-2}},"H":{"d":"27,-243r32,0r0,102r117,0r0,-102r32,0r0,243r-32,0r0,-114r-117,0r0,114r-32,0r0,-243","w":234,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"I":{"d":"27,-243r32,0r0,243r-32,0r0,-243","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"J":{"d":"77,-83r0,-160r31,0r0,163v1,79,-50,94,-107,78r5,-25v40,10,71,5,71,-56","w":133,"k":{"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,")":-15,"]":-15,"}":-15,",":4,".":4}},"K":{"d":"27,0r0,-243r32,0r1,117v29,-41,62,-78,93,-117r39,0r-88,103r95,140r-37,0r-80,-119r-23,26r0,93r-32,0","w":195,"k":{"T":-8,"\u0166":-8,"\u0164":-8,"\u0162":-8,"\u021a":-8,"J":-14,"\u0134":-14,"C":6,"G":6,"O":6,"Q":6,"\u00d8":6,"\u0152":6,"\u00c7":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"\u0106":6,"\u010c":6,"\u0108":6,"\u010a":6,"\u011e":6,"\u011c":6,"\u0122":6,"\u0120":6,"\u014e":6,"\u0150":6,"\u014c":6,"\u01fe":6,"\u01a0":6,"V":-5,"W":-5,"\u0174":-5,"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"A":-4,"\u00c6":-4,"\u00c1":-4,"\u00c2":-4,"\u00c4":-4,"\u00c0":-4,"\u00c5":-4,"\u00c3":-4,"\u0102":-4,"\u0100":-4,"\u0104":-4,"\u01fa":-4,"\u01fc":-4,"Z":-7,"\u017d":-7,"\u0179":-7,"\u017b":-7,"a":-6,"\u00e6":-6,"\u00e1":-6,"\u00e2":-6,"\u00e4":-6,"\u00e0":-6,"\u00e5":-6,"\u00e3":-6,"\u0103":-6,"\u0101":-6,"\u0105":-6,"\u01fb":-6,"\u01fd":-6,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u016d":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"\u0169":2,"\u01b0":2,"v":6,"w":6,"y":6,"\u00fd":6,"\u00ff":6,"\u0175":6,"\u0233":6,":":-8,";":-8,"\u00ab":2,"-":6,"\u00ad":6,")":-8,"]":-8,"}":-8,",":-6,".":-6,"\u00b5":-2}},"L":{"d":"27,0r0,-243r32,0r0,217r103,0r0,26r-135,0","w":169,"k":{"\u01fe":14,"\u00d8":14,"T":32,"\u0166":32,"\u0164":32,"\u0162":32,"\u021a":32,"J":-4,"\u0134":-4,"C":14,"G":14,"O":14,"Q":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u0108":14,"\u010a":14,"\u011e":14,"\u011c":14,"\u0122":14,"\u0120":14,"\u014e":14,"\u0150":14,"\u014c":14,"\u01a0":14,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"\u01af":13,"V":21,"W":21,"\u0174":21,"Y":30,"\u00dd":30,"\u0178":30,"\u0232":30,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"\u01b0":5,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u0175":10,"\u0233":10,"\u00ab":14,"-":15,"\u00ad":15,"\"":35,"'":35}},"M":{"d":"238,0r-11,-211v-19,67,-49,143,-73,210r-24,0r-39,-116v-13,-33,-19,-67,-29,-94r-11,211r-30,0r17,-243r40,0r67,199v16,-63,46,-137,68,-199r40,0r16,243r-31,0","w":289,"k":{"T":4,"\u0166":4,"\u0164":4,"\u0162":4,"\u021a":4,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4,"\u0102":4,"\u0100":4,"\u0104":4,"\u01fa":4,"\u01fc":4,"a":-2,"\u00e6":-2,"\u00e1":-2,"\u00e2":-2,"\u00e4":-2,"\u00e0":-2,"\u00e5":-2,"\u00e3":-2,"\u0103":-2,"\u0101":-2,"\u0105":-2,"\u01fb":-2,"\u01fd":-2,"j":-4,"\u0135":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0111":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u01a1":-2,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"-":-2,"\u00ad":-2,"\u00b5":-1}},"N":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,28,31,56,45,79v-6,-60,-3,-135,-4,-202r30,0r0,243r-32,0r-77,-123v-18,-27,-33,-57,-47,-81v4,59,3,138,3,204","w":236,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"O":{"d":"126,-247v66,0,109,51,109,123v0,84,-51,128,-113,128v-64,0,-109,-50,-109,-123v0,-77,48,-128,113,-128xm124,-221v-52,0,-78,48,-78,101v0,52,29,98,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99","w":248,"k":{"\u0142":-1,"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,"X":10,"Y":10,"\u00dd":10,"\u0178":10,"\u0232":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"x":2,"\u00ab":-5,"-":-5,"\u00ad":-5,")":3,"]":3,"}":3,",":12,".":12}},"P":{"d":"177,-174v0,61,-55,87,-118,77r0,97r-32,0r0,-240v64,-11,150,-6,150,66xm59,-217r0,94v42,11,90,-7,86,-49v5,-43,-48,-54,-86,-45","w":191,"k":{"\u0127":2,"J":27,"\u0134":27,"M":4,"X":5,"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"A":30,"\u00c6":30,"\u00c1":30,"\u00c2":30,"\u00c4":30,"\u00c0":30,"\u00c5":30,"\u00c3":30,"\u0102":30,"\u0100":30,"\u0104":30,"\u01fa":30,"\u01fc":30,"Z":11,"\u017d":11,"\u0179":11,"\u017b":11,"a":9,"\u00e6":9,"\u00e1":9,"\u00e2":9,"\u00e4":9,"\u00e0":9,"\u00e5":9,"\u00e3":9,"\u0103":9,"\u0101":9,"\u0105":9,"\u01fb":9,"\u01fd":9,"g":9,"\u011f":9,"\u011d":9,"\u0123":9,"\u0121":9,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"i":6,"m":6,"n":6,"p":6,"r":6,"\u0131":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"\u00f1":6,"\u014b":6,"\u0138":6,"\u0133":6,"\u012d":6,"\u012b":6,"\u012f":6,"\u0129":6,"\u0144":6,"\u0148":6,"\u0146":6,"\u0155":6,"\u0159":6,"\u0157":6,"c":9,"d":9,"e":9,"o":9,"q":9,"\u00f8":9,"\u0153":9,"\u00e7":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,"\u0111":9,"\u0107":9,"\u010d":9,"\u0109":9,"\u010b":9,"\u010f":9,"\u0115":9,"\u011b":9,"\u0117":9,"\u0113":9,"\u0119":9,"\u014f":9,"\u0151":9,"\u014d":9,"\u01ff":9,"\u01a1":9,"s":8,"\u0161":8,"\u015b":8,"\u015f":8,"\u015d":8,"\u0219":8,"t":-2,"\u0167":-2,"\u0165":-2,"\u0163":-2,"\u021b":-2,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"\u01b0":5,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0175":-1,"\u0233":-1,":":4,";":4,"\u00ab":8,"-":6,"\u00ad":6,",":50,".":50,"\u00b5":4}},"Q":{"d":"228,36r-108,-32v-58,-2,-107,-45,-107,-123v0,-78,47,-128,113,-128v66,0,109,51,109,123v0,64,-32,99,-69,118v24,6,50,11,71,15xm46,-120v0,51,28,99,78,98v50,0,78,-45,78,-100v0,-49,-26,-99,-77,-99v-53,0,-79,48,-79,101","w":248,"k":{"\u0142":-1,"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,"X":10,"Y":10,"\u00dd":10,"\u0178":10,"\u0232":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"x":2,"\u00ab":-5,"-":-5,"\u00ad":-5,")":3,"]":3,"}":3,",":12,".":12}},"R":{"d":"27,-239v63,-11,150,-10,150,60v0,33,-22,52,-46,63v38,3,42,98,54,116r-32,0v-4,-7,-10,-28,-16,-58v-9,-44,-32,-49,-78,-47r0,105r-32,0r0,-239xm59,-217r0,88v46,4,86,-6,86,-46v0,-43,-50,-50,-86,-42","w":193,"k":{"T":-3,"\u0166":-3,"\u0164":-3,"\u0162":-3,"\u021a":-3,"C":-1,"G":-1,"O":-1,"Q":-1,"\u00d8":-1,"\u0152":-1,"\u00c7":-1,"\u00d3":-1,"\u00d4":-1,"\u00d6":-1,"\u00d2":-1,"\u00d5":-1,"\u0106":-1,"\u010c":-1,"\u0108":-1,"\u010a":-1,"\u011e":-1,"\u011c":-1,"\u0122":-1,"\u0120":-1,"\u014e":-1,"\u0150":-1,"\u014c":-1,"\u01fe":-1,"\u01a0":-1,"V":-6,"W":-6,"\u0174":-6,"X":-2,"Y":4,"\u00dd":4,"\u0178":4,"\u0232":4,"A":-2,"\u00c6":-2,"\u00c1":-2,"\u00c2":-2,"\u00c4":-2,"\u00c0":-2,"\u00c5":-2,"\u00c3":-2,"\u0102":-2,"\u0100":-2,"\u0104":-2,"\u01fa":-2,"\u01fc":-2,"a":-4,"\u00e6":-4,"\u00e1":-4,"\u00e2":-4,"\u00e4":-4,"\u00e0":-4,"\u00e5":-4,"\u00e3":-4,"\u0103":-4,"\u0101":-4,"\u0105":-4,"\u01fb":-4,"\u01fd":-4,"b":-3,"h":-3,"k":-3,"l":-3,"\u0142":-3,"\u0127":-3,"\u0125":-3,"\u0137":-3,"\u013a":-3,"\u013e":-3,"\u013c":-3,"\u0140":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-7,"\u0167":-7,"\u0165":-7,"\u0163":-7,"\u021b":-7,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5}},"S":{"d":"15,-12r8,-26v29,24,107,22,107,-26v0,-23,-12,-39,-46,-48v-88,-22,-82,-136,15,-135v25,0,42,6,53,12r-8,26v-8,-4,-24,-12,-46,-12v-33,0,-46,20,-46,37v0,23,14,36,48,46v88,26,83,142,-23,142v-23,0,-49,-7,-62,-16","w":177,"k":{"\u01fd":-1,"\u00e6":-1,"a":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"j":1,"\u0135":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0111":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u01a1":-2,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"-":-2,"\u00ad":-2}},"T":{"d":"73,0r0,-216r-73,0r0,-27r179,0r0,27r-74,0r0,216r-32,0","w":178,"k":{"\u0129":16,"\u012f":16,"\u012b":16,"\u012d":16,"\u0133":16,"\u00ec":16,"\u00ef":16,"\u00ee":16,"\u00ed":16,"\u00e8":26,"\u00e0":23,"\u0131":16,"i":16,"T":-14,"\u0166":-14,"\u0164":-14,"\u0162":-14,"\u021a":-14,"J":15,"\u0134":15,"C":10,"G":10,"O":10,"Q":10,"\u00d8":10,"\u0152":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"\u0106":10,"\u010c":10,"\u0108":10,"\u010a":10,"\u011e":10,"\u011c":10,"\u0122":10,"\u0120":10,"\u014e":10,"\u0150":10,"\u014c":10,"\u01fe":10,"\u01a0":10,"V":-14,"W":-14,"\u0174":-14,"X":-8,"Y":-10,"\u00dd":-10,"\u0178":-10,"\u0232":-10,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"\u0102":27,"\u0100":27,"\u0104":27,"\u01fa":27,"\u01fc":27,"S":2,"\u0160":2,"\u015a":2,"\u015e":2,"\u015c":2,"\u0218":2,"a":23,"\u00e6":23,"\u00e1":23,"\u00e2":23,"\u00e4":23,"\u00e5":23,"\u00e3":23,"\u0103":23,"\u0101":23,"\u0105":23,"\u01fb":23,"\u01fd":23,"g":23,"\u011f":23,"\u011d":23,"\u0123":23,"\u0121":23,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"m":16,"n":16,"p":16,"r":16,"\u00f1":16,"\u014b":16,"\u0138":16,"\u0144":16,"\u0148":16,"\u0146":16,"\u0155":16,"\u0159":16,"\u0157":16,"c":26,"d":26,"e":26,"o":26,"q":26,"\u00f8":26,"\u0153":26,"\u00e7":26,"\u00e9":26,"\u00ea":26,"\u00eb":26,"\u00f3":26,"\u00f4":26,"\u00f6":26,"\u00f2":26,"\u00f5":26,"\u0111":26,"\u0107":26,"\u010d":26,"\u0109":26,"\u010b":26,"\u010f":26,"\u0115":26,"\u011b":26,"\u0117":26,"\u0113":26,"\u0119":26,"\u014f":26,"\u0151":26,"\u014d":26,"\u01ff":26,"\u01a1":26,"s":19,"\u0161":19,"\u015b":19,"\u015f":19,"\u015d":19,"\u0219":19,"u":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u00f9":16,"\u016d":16,"\u0171":16,"\u016b":16,"\u0173":16,"\u016f":16,"\u0169":16,"\u01b0":16,"v":14,"w":14,"y":14,"\u00fd":14,"\u00ff":14,"\u0175":14,"\u0233":14,"z":18,"\u017e":18,"\u017a":18,"\u017c":18,"x":12,":":9,";":9,"\u00bb":13,"\u00ab":18,"-":18,"\u00ad":18,")":-22,"]":-22,"}":-22,"\"":-6,"'":-6,",":22,".":22,"\u00b5":12}},"U":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-23,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-29,-87,-104r0,-143","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fa":12,"\u01fc":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u0163":-1,"\u021b":-1,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u0175":1,"\u0233":1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,",":10,".":10}},"V":{"d":"115,0r-34,0r-80,-243r34,0r65,211v17,-69,46,-144,68,-211r34,0","w":200,"k":{"\u012d":6,"\u01fc":21,"\u00ef":6,"\u00c6":21,"T":-12,"\u0166":-12,"\u0164":-12,"\u0162":-12,"\u021a":-12,"J":8,"\u0134":8,"V":-6,"W":-6,"\u0174":-6,"A":21,"\u00c1":21,"\u00c2":21,"\u00c4":21,"\u00c0":21,"\u00c5":21,"\u00c3":21,"\u0102":21,"\u0100":21,"\u0104":21,"\u01fa":21,"a":12,"\u00e6":12,"\u00e1":12,"\u00e2":12,"\u00e4":12,"\u00e0":12,"\u00e5":12,"\u00e3":12,"\u0103":12,"\u0101":12,"\u0105":12,"\u01fb":12,"\u01fd":12,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"i":6,"m":6,"n":6,"p":6,"r":6,"\u0131":6,"\u00ed":6,"\u00ee":6,"\u00ec":6,"\u00f1":6,"\u014b":6,"\u0138":6,"\u0133":6,"\u012b":6,"\u012f":6,"\u0129":6,"\u0144":6,"\u0148":6,"\u0146":6,"\u0155":6,"\u0159":6,"\u0157":6,"c":12,"d":12,"e":12,"o":12,"q":12,"\u00f8":12,"\u0153":12,"\u00e7":12,"\u00e9":12,"\u00ea":12,"\u00eb":12,"\u00e8":12,"\u00f3":12,"\u00f4":12,"\u00f6":12,"\u00f2":12,"\u00f5":12,"\u0111":12,"\u0107":12,"\u010d":12,"\u0109":12,"\u010b":12,"\u010f":12,"\u0115":12,"\u011b":12,"\u0117":12,"\u0113":12,"\u0119":12,"\u014f":12,"\u0151":12,"\u014d":12,"\u01ff":12,"\u01a1":12,"s":9,"\u0161":9,"\u015b":9,"\u015f":9,"\u015d":9,"\u0219":9,"t":-3,"\u0167":-3,"\u0165":-3,"\u0163":-3,"\u021b":-3,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u016d":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"\u0169":6,"\u01b0":6,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u0175":1,"\u0233":1,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,":":6,";":6,"\u00bb":4,"\u00ab":9,"-":5,"\u00ad":5,")":-20,"]":-20,"}":-20,"\"":-7,"'":-7,",":20,".":20}},"W":{"d":"100,0r-33,0r-62,-243r34,0r47,207r52,-207r33,0r30,123v8,28,10,60,17,84r52,-207r32,0r-69,243r-33,0r-30,-126v-9,-30,-11,-58,-17,-80v-12,65,-37,141,-53,206","w":304,"k":{"\u012d":6,"\u01fc":21,"\u00ef":6,"\u00c6":21,"T":-12,"\u0166":-12,"\u0164":-12,"\u0162":-12,"\u021a":-12,"J":8,"\u0134":8,"V":-6,"W":-6,"\u0174":-6,"A":21,"\u00c1":21,"\u00c2":21,"\u00c4":21,"\u00c0":21,"\u00c5":21,"\u00c3":21,"\u0102":21,"\u0100":21,"\u0104":21,"\u01fa":21,"a":12,"\u00e6":12,"\u00e1":12,"\u00e2":12,"\u00e4":12,"\u00e0":12,"\u00e5":12,"\u00e3":12,"\u0103":12,"\u0101":12,"\u0105":12,"\u01fb":12,"\u01fd":12,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"i":6,"m":6,"n":6,"p":6,"r":6,"\u0131":6,"\u00ed":6,"\u00ee":6,"\u00ec":6,"\u00f1":6,"\u014b":6,"\u0138":6,"\u0133":6,"\u012b":6,"\u012f":6,"\u0129":6,"\u0144":6,"\u0148":6,"\u0146":6,"\u0155":6,"\u0159":6,"\u0157":6,"c":12,"d":12,"e":12,"o":12,"q":12,"\u00f8":12,"\u0153":12,"\u00e7":12,"\u00e9":12,"\u00ea":12,"\u00eb":12,"\u00e8":12,"\u00f3":12,"\u00f4":12,"\u00f6":12,"\u00f2":12,"\u00f5":12,"\u0111":12,"\u0107":12,"\u010d":12,"\u0109":12,"\u010b":12,"\u010f":12,"\u0115":12,"\u011b":12,"\u0117":12,"\u0113":12,"\u0119":12,"\u014f":12,"\u0151":12,"\u014d":12,"\u01ff":12,"\u01a1":12,"s":9,"\u0161":9,"\u015b":9,"\u015f":9,"\u015d":9,"\u0219":9,"t":-3,"\u0167":-3,"\u0165":-3,"\u0163":-3,"\u021b":-3,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u016d":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"\u0169":6,"\u01b0":6,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u0175":1,"\u0233":1,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,":":6,";":6,"\u00bb":4,"\u00ab":9,"-":5,"\u00ad":5,")":-20,"]":-20,"}":-20,"\"":-7,"'":-7,",":20,".":20}},"X":{"d":"197,0r-37,0r-60,-102v-13,28,-39,71,-55,102r-36,0r74,-123r-71,-120r36,0r56,98v16,-33,37,-66,55,-98r36,0r-74,118","w":205,"k":{"T":-3,"\u0166":-3,"\u0164":-3,"\u0162":-3,"\u021a":-3,"J":-1,"\u0134":-1,"C":10,"G":10,"O":10,"Q":10,"\u00d8":10,"\u0152":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"\u0106":10,"\u010c":10,"\u0108":10,"\u010a":10,"\u011e":10,"\u011c":10,"\u0122":10,"\u0120":10,"\u014e":10,"\u0150":10,"\u014c":10,"\u01fe":10,"\u01a0":10,"V":-3,"W":-3,"\u0174":-3,"X":5,"Y":-2,"\u00dd":-2,"\u0178":-2,"\u0232":-2,"A":3,"\u00c6":3,"\u00c1":3,"\u00c2":3,"\u00c4":3,"\u00c0":3,"\u00c5":3,"\u00c3":3,"\u0102":3,"\u0100":3,"\u0104":3,"\u01fa":3,"\u01fc":3,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fb":2,"\u01fd":2,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0175":7,"\u0233":7,"\u00ab":6,"-":8,"\u00ad":8}},"Y":{"d":"113,0r-32,0r0,-103r-76,-140r35,0r59,117r60,-117r35,0r-81,140r0,103","w":194,"k":{"\u012d":5,"\u00f6":27,"\u00ef":5,"\u00eb":27,"\u00e4":25,"T":-12,"\u0166":-12,"\u0164":-12,"\u0162":-12,"\u021a":-12,"J":19,"\u0134":19,"M":4,"C":13,"G":13,"O":13,"Q":13,"\u00d8":13,"\u0152":13,"\u00c7":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"\u0106":13,"\u010c":13,"\u0108":13,"\u010a":13,"\u011e":13,"\u011c":13,"\u0122":13,"\u0120":13,"\u014e":13,"\u0150":13,"\u014c":13,"\u01fe":13,"\u01a0":13,"V":-10,"W":-10,"\u0174":-10,"X":1,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,"\u0102":29,"\u0100":29,"\u0104":29,"\u01fa":29,"\u01fc":29,"S":5,"\u0160":5,"\u015a":5,"\u015e":5,"\u015c":5,"\u0218":5,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"\u0141":3,"\u00d0":3,"\u00c9":3,"\u00ca":3,"\u00cb":3,"\u00c8":3,"\u00cd":3,"\u00ce":3,"\u00cf":3,"\u00cc":3,"\u00d1":3,"\u0110":3,"\u014a":3,"\u0126":3,"\u0132":3,"\u010e":3,"\u0114":3,"\u011a":3,"\u0116":3,"\u0112":3,"\u0118":3,"\u0124":3,"\u012c":3,"\u0130":3,"\u012a":3,"\u012e":3,"\u0128":3,"\u0136":3,"\u0139":3,"\u013d":3,"\u013b":3,"\u013f":3,"\u0143":3,"\u0147":3,"\u0145":3,"\u0154":3,"\u0158":3,"\u0156":3,"a":25,"\u00e6":25,"\u00e1":25,"\u00e2":25,"\u00e0":25,"\u00e5":25,"\u00e3":25,"\u0103":25,"\u0101":25,"\u0105":25,"\u01fb":25,"\u01fd":25,"g":14,"\u011f":14,"\u011d":14,"\u0123":14,"\u0121":14,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"i":5,"m":5,"n":5,"p":5,"r":5,"\u0131":5,"\u00ed":5,"\u00ee":5,"\u00ec":5,"\u00f1":5,"\u014b":5,"\u0138":5,"\u0133":5,"\u012b":5,"\u012f":5,"\u0129":5,"\u0144":5,"\u0148":5,"\u0146":5,"\u0155":5,"\u0159":5,"\u0157":5,"c":27,"d":27,"e":27,"o":27,"q":27,"\u00f8":27,"\u0153":27,"\u00e7":27,"\u00e9":27,"\u00ea":27,"\u00e8":27,"\u00f3":27,"\u00f4":27,"\u00f2":27,"\u00f5":27,"\u0111":27,"\u0107":27,"\u010d":27,"\u0109":27,"\u010b":27,"\u010f":27,"\u0115":27,"\u011b":27,"\u0117":27,"\u0113":27,"\u0119":27,"\u014f":27,"\u0151":27,"\u014d":27,"\u01ff":27,"\u01a1":27,"s":19,"\u0161":19,"\u015b":19,"\u015f":19,"\u015d":19,"\u0219":19,"t":7,"\u0167":7,"\u0165":7,"\u0163":7,"\u021b":7,"u":19,"\u00fa":19,"\u00fb":19,"\u00fc":19,"\u00f9":19,"\u016d":19,"\u0171":19,"\u016b":19,"\u0173":19,"\u016f":19,"\u0169":19,"\u01b0":19,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u0175":10,"\u0233":10,"z":9,"\u017e":9,"\u017a":9,"\u017c":9,"x":9,":":12,";":12,"\u00bb":7,"\u00ab":18,"-":18,"\u00ad":18,")":-20,"]":-20,"}":-20,"\"":-3,"'":-3,",":34,".":34}},"Z":{"d":"11,0r0,-18r134,-198r-123,0r0,-27r164,0r0,19r-134,198r136,0r0,26r-177,0","w":199,"k":{"J":-3,"\u0134":-3,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u0152":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u01a0":8,"X":2,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"-":10,"\u00ad":10}},"[":{"d":"95,40r-65,0r0,-287r65,0r0,20r-41,0r0,248r41,0r0,19","w":102,"k":{"T":-17,"\u0166":-17,"\u0164":-17,"\u0162":-17,"\u021a":-17,"J":-6,"\u0134":-6,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u0108":4,"\u010a":4,"\u011e":4,"\u011c":4,"\u0122":4,"\u0120":4,"\u014e":4,"\u0150":4,"\u014c":4,"\u01fe":4,"\u01a0":4,"V":-18,"W":-18,"\u0174":-18,"X":-4,"Y":-15,"\u00dd":-15,"\u0178":-15,"\u0232":-15,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4,"\u0102":4,"\u0100":4,"\u0104":4,"\u01fa":4,"\u01fc":4,"j":-20,"\u0135":-20}},"\\":{"d":"123,14r-24,0r-98,-261r24,0","w":122},"]":{"d":"7,-247r66,0r0,287r-66,0r0,-19r41,0r0,-248r-41,0r0,-20","w":102},"^":{"d":"193,-68r-25,0r-61,-140r-60,140r-25,0r74,-166r22,0","w":214},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"82,-178v96,3,57,98,70,178r-29,0v-2,-7,0,-17,-4,-22v-10,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-16,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm44,-50v0,53,74,30,74,-9r0,-30v-35,-1,-74,5,-74,39","w":173},"b":{"d":"25,0r1,-256r32,0r0,110v36,-60,133,-30,133,57v0,94,-95,122,-137,60r-2,29r-27,0xm108,-153v-36,-1,-54,35,-50,83v3,31,23,48,49,49v33,0,52,-27,52,-67v0,-35,-17,-65,-51,-65","w":204,"k":{"T":14,"\u0166":14,"\u0164":14,"\u0162":14,"\u021a":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"-":-5,"\u00ad":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"c":{"d":"145,-30r5,24v-8,4,-27,10,-50,10v-53,0,-86,-36,-86,-89v0,-70,72,-112,137,-84r-7,25v-42,-24,-106,5,-98,57v-4,57,55,78,99,57","w":161,"k":{"T":4,"\u0166":4,"\u0164":4,"\u0162":4,"\u021a":4,"f":-1,"\u00df":-1,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0111":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"\u01a1":2,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,"\u0175":-6,"\u0233":-6,"\u00bb":-5,"-":-2,"\u00ad":-2,",":4,".":4}},"d":{"d":"145,-256r32,0r1,256r-28,0r-2,-30v-34,62,-134,33,-134,-55v0,-86,90,-120,131,-67r0,-104xm97,-22v36,0,48,-34,48,-81v0,-31,-19,-50,-47,-50v-33,0,-52,28,-52,67v0,35,17,64,51,64","w":203,"k":{",":4,".":4}},"e":{"d":"166,-81r-122,0v-2,64,66,69,108,51r5,23v-11,5,-30,11,-58,11v-54,0,-85,-35,-85,-88v0,-53,30,-94,81,-94v63,0,75,53,71,97xm44,-104r93,0v0,-20,-8,-52,-44,-52v-32,0,-46,30,-49,52","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"x":1,"-":-10,"\u00ad":-10,",":4,".":4}},"f":{"d":"30,-174v-7,-58,35,-101,89,-81r-4,25v-36,-15,-60,13,-54,56r42,0r0,24r-42,0r0,150r-31,0r0,-150r-25,0r0,-24r25,0","w":105,"k":{"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"s":3,"\u0161":3,"\u015b":3,"\u015f":3,"\u015d":3,"\u0219":3,"t":-4,"\u0167":-4,"\u0165":-4,"\u0163":-4,"\u021b":-4,":":-12,";":-12,"\u00bb":-5,")":-37,"]":-37,"}":-37,"\"":-20,"'":-20,",":12,".":12}},"g":{"d":"175,-25v10,94,-78,119,-146,86r8,-24v38,22,112,22,107,-47v-1,-6,2,-16,-1,-20v-10,16,-28,29,-55,29v-43,0,-74,-37,-74,-85v0,-90,99,-118,133,-62r2,-26r27,0xm97,-25v35,1,51,-35,47,-80v-3,-29,-18,-48,-46,-48v-30,0,-52,26,-52,66v0,34,17,62,51,62","w":201,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"f":-1,"\u00df":-1,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u0138":2,"\u0133":2,"\u012d":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,",":5,".":5}},"h":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r0,-256r32,0r1,109v29,-45,116,-51,116,43r0,104r-32,0v-6,-59,22,-152,-40,-152","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0233":5,"\"":3,"'":3}},"i":{"d":"58,0r-32,0r0,-174r32,0r0,174xm42,-243v12,0,20,9,20,20v0,11,-8,19,-21,19v-11,0,-19,-8,-19,-19v0,-11,8,-20,20,-20","w":84},"j":{"d":"-16,51v41,-7,46,-16,46,-79r0,-146r32,0v-8,98,36,248,-75,250xm46,-243v12,0,20,9,20,20v0,10,-7,19,-20,19v-12,0,-20,-9,-20,-19v0,-11,8,-20,20,-20","w":87,"k":{",":4,".":4}},"k":{"d":"58,-256r0,162r67,-80r38,0r-67,71r76,103r-38,0r-60,-84r-16,18r0,66r-32,0r0,-256r32,0","w":168,"k":{"T":7,"\u0166":7,"\u0164":7,"\u0162":7,"\u021a":7,"a":-6,"\u00e6":-6,"\u00e1":-6,"\u00e2":-6,"\u00e4":-6,"\u00e0":-6,"\u00e5":-6,"\u00e3":-6,"\u0103":-6,"\u0101":-6,"\u0105":-6,"\u01fb":-6,"\u01fd":-6,"b":-6,"h":-6,"k":-6,"l":-6,"\u0142":-6,"\u0127":-6,"\u0125":-6,"\u0137":-6,"\u013a":-6,"\u013e":-6,"\u013c":-6,"\u0140":-6,"i":-6,"m":-6,"n":-6,"p":-6,"r":-6,"\u0131":-6,"\u00ed":-6,"\u00ee":-6,"\u00ef":-6,"\u00ec":-6,"\u00f1":-6,"\u014b":-6,"\u0138":-6,"\u0133":-6,"\u012d":-6,"\u012b":-6,"\u012f":-6,"\u0129":-6,"\u0144":-6,"\u0148":-6,"\u0146":-6,"\u0155":-6,"\u0159":-6,"\u0157":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,":":-4,";":-4,"-":4,"\u00ad":4,",":-5,".":-5}},"l":{"d":"26,0r0,-256r32,0r0,256r-32,0","w":84,"k":{",":4,".":4}},"m":{"d":"99,-152v-61,0,-38,92,-42,152r-31,0r-1,-174r28,0v1,9,-1,21,2,28v15,-39,92,-43,105,3v27,-50,115,-57,115,40r0,103r-31,0v-4,-56,19,-152,-38,-152v-59,0,-36,93,-40,152r-31,0v-5,-56,20,-152,-36,-152","w":300,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0233":5,"\"":3,"'":3}},"n":{"d":"103,-152v-64,0,-41,91,-45,152r-32,0r-1,-174r28,0r2,29v27,-46,119,-55,120,41r0,104r-32,0v-6,-59,22,-152,-40,-152","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0233":5,"\"":3,"'":3}},"o":{"d":"100,-178v50,0,84,36,84,89v0,64,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92xm99,-154v-37,0,-53,34,-53,67v0,38,22,67,53,67v30,0,53,-28,53,-67v0,-30,-16,-67,-53,-67","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u0162":14,"\u021a":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"-":-5,"\u00ad":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"p":{"d":"26,71r-1,-245r28,0r2,30v37,-62,136,-34,136,54v0,91,-89,121,-133,67r0,94r-32,0xm108,-153v-36,0,-50,35,-50,82v0,32,23,50,49,50v33,0,52,-27,52,-67v0,-35,-18,-65,-51,-65","w":204,"k":{"T":14,"\u0166":14,"\u0164":14,"\u0162":14,"\u021a":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"-":-5,"\u00ad":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"q":{"d":"145,71r-1,-98v-34,58,-130,29,-130,-57v0,-95,94,-120,133,-64r1,-26r30,0r-1,245r-32,0xm97,-21v37,0,48,-36,48,-83v0,-30,-19,-49,-47,-49v-33,0,-52,28,-52,67v0,35,16,65,51,65","w":202,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,",":3,".":3}},"r":{"d":"112,-147v-68,-12,-53,82,-54,147r-32,0r-1,-174r28,0v1,11,-1,25,2,34v10,-25,29,-42,57,-37r0,30","w":117,"k":{"\u0142":-1,"T":5,"\u0166":5,"\u0164":5,"\u0162":5,"\u021a":5,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fb":2,"\u01fd":2,"f":-11,"\u00df":-11,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"t":-9,"\u0167":-9,"\u0165":-9,"\u0163":-9,"\u021b":-9,"v":-9,"w":-9,"y":-9,"\u00fd":-9,"\u00ff":-9,"\u0175":-9,"\u0233":-9,"z":-3,"\u017e":-3,"\u017a":-3,"\u017c":-3,"x":-6,":":-3,";":-3,"\u00bb":-4,"\u00ab":2,"-":2,"\u00ad":2,",":19,".":19}},"s":{"d":"14,-8r8,-24v17,16,76,18,76,-14v0,-15,-9,-25,-33,-32v-68,-19,-57,-99,14,-100v18,0,33,5,43,11r-8,23v-13,-12,-65,-16,-65,13v0,14,9,23,33,30v67,19,58,107,-19,105v-19,0,-37,-5,-49,-12","w":142,"k":{"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,",":4,".":4}},"t":{"d":"108,-1v-39,15,-75,-4,-75,-54r0,-95r-27,0r0,-24r27,0r0,-32r31,-10r0,42r46,0r0,24r-46,0r0,94v-3,31,19,38,43,32","w":119,"k":{"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0111":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"\u01a1":2,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"-":2,"\u00ad":2,",":1,".":1}},"u":{"d":"96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v5,57,-20,152,39,152","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,",":3,".":3}},"v":{"d":"5,-174r34,0r49,142r48,-142r34,0r-69,174r-30,0","w":173,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,":":-9,";":-9,"-":1,"\u00ad":1,",":14,".":14}},"w":{"d":"6,-174r33,0r37,144v11,-49,29,-97,44,-144r27,0r43,144v8,-48,26,-98,38,-144r32,0r-57,174r-28,0r-43,-140v-11,50,-29,93,-44,140r-29,0","w":264,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,":":-9,";":-9,"-":1,"\u00ad":1,",":14,".":14}},"x":{"d":"6,-174r35,0r44,66v13,-24,27,-44,41,-66r35,0r-60,84r61,90r-36,0r-45,-69r-43,69r-35,0r62,-89","w":166,"k":{"T":8,"\u0166":8,"\u0164":8,"\u0162":8,"\u021a":8,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"-":2,"\u00ad":2}},"y":{"d":"13,53v25,-9,46,-29,57,-58v-19,-59,-46,-112,-67,-169r35,0r50,138r46,-138r33,0v-41,87,-60,232,-146,254","w":169,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,":":-9,";":-9,"-":1,"\u00ad":1,",":14,".":14}},"z":{"d":"6,0r0,-18r102,-131r-94,0r0,-25r133,0r-1,20r-100,129r102,0r0,25r-142,0","w":154,"k":{"T":7,"\u0166":7,"\u0164":7,"\u0162":7,"\u021a":7,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0111":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"\u01a1":3,"v":-9,"w":-9,"y":-9,"\u00fd":-9,"\u00ff":-9,"\u0175":-9,"\u0233":-9,"\u00bb":-6}},"{":{"d":"33,-9v-1,-35,28,-81,-23,-85r0,-19v52,-3,21,-53,23,-87v2,-35,25,-49,60,-47r0,20v-72,-7,3,109,-56,124v59,6,-19,127,56,124r0,19v-35,1,-58,-10,-60,-49","w":102,"k":{"T":-17,"\u0166":-17,"\u0164":-17,"\u0162":-17,"\u021a":-17,"J":-6,"\u0134":-6,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u0108":4,"\u010a":4,"\u011e":4,"\u011c":4,"\u0122":4,"\u0120":4,"\u014e":4,"\u0150":4,"\u014c":4,"\u01fe":4,"\u01a0":4,"V":-18,"W":-18,"\u0174":-18,"X":-4,"Y":-15,"\u00dd":-15,"\u0178":-15,"\u0232":-15,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4,"\u0102":4,"\u0100":4,"\u0104":4,"\u01fa":4,"\u01fc":4,"j":-20,"\u0135":-20}},"|":{"d":"31,-270r24,0r0,360r-24,0r0,-360","w":86},"}":{"d":"69,-200v1,35,-28,84,23,87r0,19v-52,3,-21,50,-23,85v-2,39,-25,51,-60,49r0,-19v72,7,-2,-109,55,-125v-58,-7,20,-126,-55,-123r0,-20v35,-1,59,12,60,47","w":102},"~":{"d":"197,-129v-1,98,-90,33,-137,23v-13,0,-20,8,-21,30r-21,0v-1,-36,17,-54,42,-54v23,0,71,32,96,31v13,0,20,-10,20,-30r21,0","w":214},"\u00a1":{"d":"59,70r-35,0r5,-172r25,0xm42,-176v12,0,21,10,21,23v0,13,-9,22,-22,22v-13,0,-21,-9,-21,-22v0,-13,9,-23,22,-23","w":82},"\u00a2":{"d":"96,-31v-45,-7,-72,-35,-72,-86v0,-46,28,-82,72,-89r0,-36r23,0r0,35v16,0,31,5,39,9r-7,24v-38,-23,-103,3,-95,55v-4,59,57,76,97,55r6,22v-7,4,-22,10,-40,11r0,36r-23,0r0,-36"},"\u00a3":{"d":"89,-106v4,37,-8,62,-27,80r108,0r0,26r-150,0r0,-18v31,-16,47,-46,39,-88r-37,0r0,-23r34,0v-15,-55,10,-112,65,-109v19,0,31,4,39,9r-7,24v-28,-17,-72,-3,-72,38v0,15,3,26,5,38r52,0r0,23r-49,0"},"\u00a5":{"d":"105,0r-30,0r0,-63r-56,0r0,-18r56,0r0,-26r-56,0r0,-18r47,0r-60,-109r34,0v19,35,32,75,53,107v13,-37,35,-73,53,-107r33,0r-65,109r47,0r0,18r-56,0r0,26r56,0r0,18r-56,0r0,63"},"\u0192":{"d":"40,-122r0,-22r36,0v-1,-53,32,-110,95,-89r-6,23v-41,-14,-59,24,-59,66r43,0r0,22r-46,0v-5,73,-13,180,-99,146r6,-22v60,28,55,-71,63,-124r-33,0"},"\u00a7":{"d":"63,-154v-28,24,-20,48,22,62v18,6,33,12,41,17v23,-20,19,-50,-18,-61v-14,-4,-33,-11,-45,-18xm150,-234r-7,21v-17,-16,-83,-18,-81,15v0,19,17,28,45,34v54,12,80,67,36,101v6,5,13,16,13,31v0,60,-85,65,-125,40r9,-21v17,16,90,24,88,-15v0,-17,-10,-29,-44,-38v-59,-16,-88,-62,-36,-99v-34,-33,1,-81,53,-81v20,0,37,5,49,12","w":186},"\u00a4":{"d":"51,-177v19,-19,64,-20,83,-1r25,-27r16,17r-28,25v17,18,15,70,0,87r27,26r-16,16r-24,-28v-22,20,-62,21,-84,2r-24,26r-15,-16r26,-25v-17,-17,-18,-70,0,-88r-27,-25r16,-17xm134,-120v0,-25,-14,-51,-43,-50v-26,0,-42,23,-42,51v0,68,83,68,85,-1"},"'":{"d":"18,-249r32,0r-6,86r-20,0","w":67,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u0162":-6,"\u021a":-6,"J":21,"\u0134":21,"M":2,"C":1,"G":1,"O":1,"Q":1,"\u00d8":1,"\u0152":1,"\u00c7":1,"\u00d3":1,"\u00d4":1,"\u00d6":1,"\u00d2":1,"\u00d5":1,"\u0106":1,"\u010c":1,"\u0108":1,"\u010a":1,"\u011e":1,"\u011c":1,"\u0122":1,"\u0120":1,"\u014e":1,"\u0150":1,"\u014c":1,"\u01fe":1,"\u01a0":1,"V":-6,"W":-6,"\u0174":-6,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,"\u01fa":22,"\u01fc":22,"f":-9,"\u00df":-9,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0111":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"\u01a1":3,"t":-9,"\u0167":-9,"\u0165":-9,"\u0163":-9,"\u021b":-9,"v":-8,"w":-8,"y":-8,"\u00fd":-8,"\u00ff":-8,"\u0175":-8,"\u0233":-8,",":41,".":41}},"\u00ab":{"d":"84,-157r-49,66r49,67r-26,0r-48,-67r48,-66r26,0xm143,-157r-49,66r49,67r-26,0r-48,-67r48,-66r26,0","w":150,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"J":1,"\u0134":1,"V":4,"W":4,"\u0174":4,"Y":13,"\u00dd":13,"\u0178":13,"\u0232":13}},"\u00b7":{"d":"37,-72v-12,0,-21,-10,-21,-23v0,-13,8,-22,21,-22v13,0,22,9,22,22v0,13,-9,23,-22,23","w":74},"\u00b6":{"d":"105,18r-22,0r0,-113v-32,1,-69,-21,-71,-68v-1,-37,20,-80,99,-80v19,0,33,1,42,3r0,258r-22,0r0,-239r-26,0r0,239"},"\u00bb":{"d":"57,-91r-49,-66r26,0r48,66r-48,67r-25,0xm115,-91r-48,-66r26,0r47,66r-47,67r-26,0","w":150,"k":{"T":20,"\u0166":20,"\u0164":20,"\u0162":20,"\u021a":20,"J":6,"\u0134":6,"C":-4,"G":-4,"O":-4,"Q":-4,"\u00d8":-4,"\u0152":-4,"\u00c7":-4,"\u00d3":-4,"\u00d4":-4,"\u00d6":-4,"\u00d2":-4,"\u00d5":-4,"\u0106":-4,"\u010c":-4,"\u0108":-4,"\u010a":-4,"\u011e":-4,"\u011c":-4,"\u0122":-4,"\u0120":-4,"\u014e":-4,"\u0150":-4,"\u014c":-4,"\u01fe":-4,"\u01a0":-4,"V":10,"W":10,"\u0174":10,"X":5,"Y":18,"\u00dd":18,"\u0178":18,"\u0232":18,"S":1,"\u0160":1,"\u015a":1,"\u015e":1,"\u015c":1,"\u0218":1,"g":-4,"\u011f":-4,"\u011d":-4,"\u0123":-4,"\u0121":-4}},"\u00bf":{"d":"64,-153v0,-13,8,-23,22,-23v13,0,21,10,21,23v0,13,-9,22,-22,22v-13,0,-21,-9,-21,-22xm20,22v-3,-45,61,-73,51,-125r28,0v16,43,-46,85,-46,121v0,35,49,38,70,20r9,23v-36,28,-121,11,-112,-39","w":146},"`":{"d":"8,-249r35,0r31,51r-22,0","w":108},"\u00b4":{"d":"68,-249r35,0r-44,51r-23,0","w":108},"\u00af":{"d":"14,-231r81,0r0,20r-81,0r0,-20","w":108},"\u00a8":{"d":"21,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19xm87,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19","w":108},"\u00b8":{"d":"49,-1r19,0r-11,19v13,2,25,11,25,25v1,30,-40,35,-62,23r5,-16v11,7,33,11,35,-6v0,-9,-11,-14,-28,-15","w":108},"\u00c6":{"d":"32,0r-32,0r111,-243r151,0r0,27r-103,0r9,77r91,0r0,26r-87,0r11,87r89,0r0,26r-116,0r-11,-86r-74,0xm81,-111r61,0v-6,-35,-4,-78,-14,-109v-13,37,-31,74,-47,109","w":283,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u0162":-6,"\u021a":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u0174":-3,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,",":1,".":1}},"\u00aa":{"d":"110,-96r-22,0v-1,-5,0,-12,-3,-15v-14,26,-73,21,-73,-17v0,-26,26,-42,72,-41v0,-12,-1,-26,-26,-26v-12,0,-23,4,-31,10r-6,-16v10,-8,26,-12,41,-12v63,1,41,65,48,117xm36,-130v0,31,47,19,49,-4r0,-20v-23,0,-49,3,-49,24","w":124},"\u0141":{"d":"164,0r-135,0r0,-97r-30,22r0,-24r30,-22r0,-122r31,0r0,100r48,-35r0,25r-48,35r0,92r104,0r0,26","w":171,"k":{"\u01fe":14,"\u00d8":14,"T":32,"\u0166":32,"\u0164":32,"\u0162":32,"\u021a":32,"J":-4,"\u0134":-4,"C":14,"G":14,"O":14,"Q":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u0108":14,"\u010a":14,"\u011e":14,"\u011c":14,"\u0122":14,"\u0120":14,"\u014e":14,"\u0150":14,"\u014c":14,"\u01a0":14,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"\u01af":13,"V":21,"W":21,"\u0174":21,"Y":30,"\u00dd":30,"\u0178":30,"\u0232":30,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"\u01b0":5,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u0175":10,"\u0233":10,"\u00ab":14,"-":15,"\u00ad":15,"\"":35,"'":35}},"\u00d8":{"d":"40,15r-17,-14r22,-31v-20,-22,-32,-54,-32,-90v0,-102,94,-159,172,-108r22,-29r19,13r-23,31v20,22,32,54,32,90v1,112,-95,155,-172,108xm170,-204v-55,-46,-125,11,-125,82v0,27,7,46,18,65xm186,-185r-108,146v55,47,125,-7,125,-83v0,-21,-4,-42,-17,-63","w":248,"k":{"\u0142":-1,"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,"X":10,"Y":10,"\u00dd":10,"\u0178":10,"\u0232":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"x":2,"\u00ab":-5,"-":-5,"\u00ad":-5,")":3,"]":3,"}":3,",":12,".":12}},"\u0152":{"d":"13,-120v2,-102,73,-123,174,-123r116,0r0,27r-100,0r0,76r94,0r0,27r-94,0r0,87r106,0r0,26r-125,0v-98,20,-172,-30,-171,-120xm172,-26r0,-190v-68,-20,-126,21,-126,95v0,72,53,113,126,95","w":321,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u0162":-6,"\u021a":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u0174":-3,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,",":1,".":1}},"\u00ba":{"d":"6,-152v0,-37,27,-61,59,-61v35,0,56,25,56,59v1,82,-117,76,-115,2xm97,-153v0,-18,-9,-43,-34,-42v-46,1,-39,83,1,83v19,0,33,-16,33,-41","w":127},"\u00e6":{"d":"264,-84r-116,0v-8,63,64,74,103,53r5,23v-39,22,-109,13,-124,-27v-11,24,-35,39,-65,39v-36,0,-54,-25,-54,-50v0,-40,37,-64,105,-63v1,-19,-3,-46,-41,-46v-17,0,-34,7,-44,14r-8,-21v35,-25,102,-21,111,21v12,-23,34,-37,61,-37v58,0,71,54,67,94xm75,-19v37,-1,47,-28,43,-68v-33,-1,-74,5,-74,39v0,18,14,29,31,29xm147,-107r88,0v1,-18,-9,-49,-41,-49v-31,0,-46,29,-47,49","w":278,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"x":1,"-":-10,"\u00ad":-10,",":4,".":4}},"\u0131":{"d":"58,0r-32,0r0,-174r32,0r0,174","w":84},"\u0142":{"d":"59,0r-31,0r0,-104r-25,21r0,-25r25,-21r0,-127r31,0r0,103r26,-22r0,25r-26,22r0,128","w":87,"k":{",":4,".":4}},"\u00f8":{"d":"14,-86v-2,-76,69,-113,130,-80r15,-21r14,10r-15,22v17,16,26,39,26,66v-2,83,-71,112,-130,81r-15,22r-13,-11r15,-22v-17,-16,-27,-39,-27,-67xm57,-43v26,-32,47,-68,72,-101v-57,-38,-114,44,-72,101xm141,-130v-26,31,-47,67,-72,100v56,40,109,-42,72,-100","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u0162":14,"\u021a":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"-":-5,"\u00ad":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"\u0153":{"d":"297,-82r-119,0v-4,61,64,72,105,51r6,23v-45,22,-106,15,-127,-29v-36,73,-148,42,-148,-49v0,-94,116,-125,149,-50v15,-26,36,-43,64,-42v61,3,74,54,70,96xm149,-87v0,-33,-15,-68,-52,-67v-74,2,-62,134,1,134v31,0,51,-27,51,-67xm178,-104r89,0v0,-19,-7,-51,-42,-51v-31,0,-45,29,-47,51","w":310,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"x":1,"-":-10,"\u00ad":-10,",":4,".":4}},"\u00df":{"d":"151,-51v0,-34,-48,-50,-48,-85v0,-18,11,-34,32,-44v12,-25,-7,-55,-34,-55v-28,0,-43,20,-43,71r0,164r-32,0v6,-105,-31,-260,79,-260v46,0,80,50,56,91v-16,7,-26,17,-26,29v0,32,47,46,47,87v0,48,-59,70,-102,49r5,-24v24,14,66,6,66,-23","w":197,"k":{"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,",":4,".":4}},"\u00ac":{"d":"14,-144r186,0r0,100r-23,0r0,-78r-163,0r0,-22","w":214},"\u00b5":{"d":"97,-22v64,0,40,-91,44,-152r32,0r0,126v0,19,3,26,16,27r-2,24v-24,5,-36,-6,-43,-30v-8,27,-70,45,-88,11v0,28,-1,65,4,87r-29,0v-11,-64,-3,-170,-5,-245r32,0v6,58,-22,152,39,152","w":199,"k":{"-":-2,"\u00ad":-2}},"\u00d0":{"d":"228,-127v4,106,-89,144,-199,127r0,-111r-30,0r0,-25r30,0r0,-104v19,-3,42,-6,67,-6v86,1,129,38,132,119xm125,-136r0,25r-65,0r0,87v82,9,135,-24,135,-103v0,-71,-58,-105,-135,-90r0,81r65,0","w":241,"k":{"\u0142":-1,"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,"X":10,"Y":10,"\u00dd":10,"\u0178":10,"\u0232":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"x":2,"\u00ab":-5,"-":-5,"\u00ad":-5,")":3,"]":3,"}":3,",":12,".":12}},"\u00bd":{"d":"66,-96r-25,0r-1,-118r-26,12r-4,-18v17,-7,29,-19,56,-16r0,140xm63,4r-20,0r136,-242r20,0xm158,0v-2,-22,15,-24,23,-35v30,-27,45,-44,45,-62v0,-29,-44,-30,-57,-14r-8,-16v23,-27,100,-13,92,25v2,31,-35,57,-59,82r62,0r0,20r-98,0","w":273},"\u00b1":{"d":"96,-206r23,0r0,70r81,0r0,22r-81,0r0,72r-23,0r0,-72r-82,0r0,-22r82,0r0,-70xm14,-22r186,0r0,22r-186,0r0,-22","w":214},"\u00de":{"d":"58,-195v58,-12,119,7,119,64v0,60,-55,85,-119,75r0,56r-31,0r0,-243r31,0r0,48xm58,-170r0,88v44,8,87,-7,87,-46v0,-43,-49,-50,-87,-42","w":191},"\u00bc":{"d":"71,-96r-25,0r-1,-118r-26,12r-4,-18v17,-7,29,-19,56,-16r0,140xm70,4r-20,0r136,-242r21,0xm239,0r-24,0r0,-37r-72,0r0,-14r69,-91r27,0r0,87r22,0r0,18r-22,0r0,37xm215,-55v-1,-21,3,-46,0,-65v-14,25,-30,43,-46,65r46,0","w":273},"\u00f7":{"d":"107,-139v-11,0,-19,-9,-19,-20v0,-12,8,-20,20,-20v11,0,18,8,18,20v0,11,-7,20,-19,20xm200,-85r-186,0r0,-22r186,0r0,22xm107,-13v-11,0,-19,-9,-19,-20v0,-12,8,-20,20,-20v11,0,18,8,18,20v0,11,-7,20,-19,20","w":214},"\u00a6":{"d":"31,-63r24,0r0,126r-24,0r0,-126xm31,-243r24,0r0,126r-24,0r0,-126","w":86},"\u00b0":{"d":"10,-198v0,-28,21,-49,49,-49v29,0,47,23,47,47v0,29,-23,48,-48,48v-28,0,-48,-21,-48,-46xm58,-230v-37,0,-36,63,0,61v16,0,28,-12,28,-30v0,-14,-7,-31,-28,-31","w":114},"\u00fe":{"d":"26,-241r32,0r0,94v38,-58,133,-29,133,58v0,92,-89,119,-133,66r0,94r-32,0r0,-312xm108,-153v-35,0,-55,37,-50,84v3,29,23,48,49,48v31,0,52,-26,52,-68v0,-35,-19,-64,-51,-64","w":204},"\u00be":{"d":"24,-210r-6,-16v19,-21,93,-12,85,22v1,15,-12,25,-27,33v19,3,33,17,33,35v8,37,-69,54,-98,32r6,-18v14,14,71,11,65,-15v-1,-21,-24,-26,-48,-25r0,-17v20,1,41,-3,43,-23v3,-24,-43,-17,-53,-8xm84,4r-21,0r137,-242r20,0xm243,0r-24,0r0,-37r-72,0r0,-14r69,-91r27,0r0,87r22,0r0,18r-22,0r0,37xm219,-55v-1,-21,3,-46,0,-65v-12,25,-34,45,-46,65r46,0","w":273},"\u00ae":{"d":"104,-156v-29,7,-7,-29,-38,-24r0,24r-13,0r0,-59v16,-3,49,-5,49,15v0,8,-8,11,-13,15v10,0,12,24,15,29xm74,-207v-12,-2,-5,10,-7,18v19,4,30,-17,7,-18xm76,-246v34,0,60,26,60,59v0,33,-26,60,-60,60v-34,0,-61,-27,-61,-60v0,-33,27,-59,61,-59xm121,-187v0,-26,-19,-47,-46,-47v-26,0,-45,21,-45,47v0,26,19,47,46,47v26,0,45,-21,45,-47","w":150},"\u00f0":{"d":"148,-87v0,-42,-12,-66,-50,-66v-72,0,-65,135,-2,133v31,0,52,-27,52,-67xm119,-218v36,29,60,66,61,127v0,67,-42,95,-84,95v-47,0,-82,-35,-82,-89v0,-74,70,-110,121,-75v-10,-17,-24,-32,-42,-46r-51,23r-7,-15r42,-20v-11,-8,-25,-15,-38,-21r14,-20v17,8,36,18,51,29r46,-22r7,16","w":194},"\u00d7":{"d":"14,-174r16,-15r77,78r77,-78r16,15r-77,79r77,79r-16,16r-77,-79r-77,79r-16,-16r77,-79","w":214},"\u00a9":{"d":"13,-122v0,-61,48,-111,110,-111v60,0,108,50,108,111v0,62,-48,111,-109,111v-61,0,-109,-49,-109,-111xm122,-219v-51,0,-91,43,-91,98v0,54,39,95,91,95v51,0,91,-41,91,-96v0,-54,-40,-97,-91,-97xm171,-177r-5,14v-5,-3,-18,-9,-35,-9v-34,0,-50,22,-50,51v0,43,53,63,87,41r4,14v-47,28,-110,0,-110,-54v0,-57,68,-82,109,-57","w":243},"\u00c1":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-9,39,-24,77,-36,114xm125,-298r38,0r-45,42r-26,0","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u0162":28,"\u021a":28,"J":-7,"\u0134":-7,"M":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u01a0":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"\u01af":10,"V":19,"W":19,"\u0174":19,"X":5,"Y":28,"\u00dd":28,"\u0178":28,"\u0232":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"b":1,"h":1,"k":1,"l":1,"\u0142":1,"\u0127":1,"\u0125":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"j":1,"\u0135":1,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u0163":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u0175":8,"\u0233":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,"-":1,"\u00ad":1,")":3,"]":3,"}":3,"\"":21,"'":21}},"\u00c2":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-9,39,-24,77,-36,114xm100,-297r24,0r37,41r-26,0v-8,-8,-15,-17,-24,-24r-23,24r-25,0","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u0162":28,"\u021a":28,"J":-7,"\u0134":-7,"M":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u01a0":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"\u01af":10,"V":19,"W":19,"\u0174":19,"X":5,"Y":28,"\u00dd":28,"\u0178":28,"\u0232":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"b":1,"h":1,"k":1,"l":1,"\u0142":1,"\u0127":1,"\u0125":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"j":1,"\u0135":1,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u0163":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u0175":8,"\u0233":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,"-":1,"\u00ad":1,")":3,"]":3,"}":3,"\"":21,"'":21}},"\u00c4":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-9,39,-24,77,-36,114xm78,-259v-10,0,-17,-8,-17,-18v0,-10,7,-18,17,-18v10,0,18,8,18,18v0,10,-8,18,-18,18xm145,-259v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-7,18,-18,18","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u0162":28,"\u021a":28,"J":-7,"\u0134":-7,"M":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u01a0":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"\u01af":10,"V":19,"W":19,"\u0174":19,"X":5,"Y":28,"\u00dd":28,"\u0178":28,"\u0232":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"b":1,"h":1,"k":1,"l":1,"\u0142":1,"\u0127":1,"\u0125":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"j":1,"\u0135":1,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u0163":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u0175":8,"\u0233":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,"-":1,"\u00ad":1,")":3,"]":3,"}":3,"\"":21,"'":21}},"\u00c0":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-9,39,-24,77,-36,114xm58,-298r38,0r34,42r-26,0","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u0162":28,"\u021a":28,"J":-7,"\u0134":-7,"M":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u01a0":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"\u01af":10,"V":19,"W":19,"\u0174":19,"X":5,"Y":28,"\u00dd":28,"\u0178":28,"\u0232":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"b":1,"h":1,"k":1,"l":1,"\u0142":1,"\u0127":1,"\u0125":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"j":1,"\u0135":1,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u0163":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u0175":8,"\u0233":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,"-":1,"\u00ad":1,")":3,"]":3,"}":3,"\"":21,"'":21}},"\u00c5":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-9,39,-24,77,-36,114xm75,-284v0,-18,14,-32,37,-32v22,0,35,14,35,32v0,18,-15,32,-36,32v-22,0,-36,-14,-36,-32xm128,-284v0,-10,-6,-19,-18,-19v-10,0,-16,9,-16,19v0,9,7,19,17,19v11,0,17,-9,17,-19","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u0162":28,"\u021a":28,"J":-7,"\u0134":-7,"M":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u01a0":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"\u01af":10,"V":19,"W":19,"\u0174":19,"X":5,"Y":28,"\u00dd":28,"\u0178":28,"\u0232":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"b":1,"h":1,"k":1,"l":1,"\u0142":1,"\u0127":1,"\u0125":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"j":1,"\u0135":1,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u0163":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u0175":8,"\u0233":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,"-":1,"\u00ad":1,")":3,"]":3,"}":3,"\"":21,"'":21}},"\u00c3":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-9,39,-24,77,-36,114xm156,-294v3,49,-42,32,-63,21v-6,0,-8,6,-9,16r-17,0v-1,-22,8,-37,24,-37v18,0,43,33,49,0r16,0","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u0162":28,"\u021a":28,"J":-7,"\u0134":-7,"M":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u01a0":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"\u01af":10,"V":19,"W":19,"\u0174":19,"X":5,"Y":28,"\u00dd":28,"\u0178":28,"\u0232":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"b":1,"h":1,"k":1,"l":1,"\u0142":1,"\u0127":1,"\u0125":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"j":1,"\u0135":1,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u0163":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u0175":8,"\u0233":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,"-":1,"\u00ad":1,")":3,"]":3,"}":3,"\"":21,"'":21}},"\u00c7":{"d":"190,-33r7,25v-11,6,-33,12,-63,12r-9,14v13,3,25,12,25,27v1,31,-41,35,-63,23r6,-16v10,7,34,9,35,-7v0,-9,-11,-13,-28,-15r15,-27v-59,-7,-102,-49,-102,-122v0,-97,99,-152,184,-117r-7,26v-67,-29,-144,6,-144,90v0,79,75,116,144,87","w":210,"k":{"\u0152":8,"T":-10,"\u0166":-10,"\u0164":-10,"\u0162":-10,"\u021a":-10,"J":-1,"\u0134":-1,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u01a0":8,"V":-4,"W":-4,"\u0174":-4,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"A":-1,"\u00c6":-1,"\u00c1":-1,"\u00c2":-1,"\u00c4":-1,"\u00c0":-1,"\u00c5":-1,"\u00c3":-1,"\u0102":-1,"\u0100":-1,"\u0104":-1,"\u01fa":-1,"\u01fc":-1,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fb":3,"\u01fd":3,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0175":7,"\u0233":7,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,"\u00ab":4,")":-6,"]":-6,"}":-6}},"\u00c9":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0xm109,-298r38,0r-46,42r-26,0","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u0162":-6,"\u021a":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u0174":-3,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,",":1,".":1}},"\u00ca":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0xm81,-297r24,0r37,41r-26,0v-8,-8,-15,-17,-24,-24r-23,24r-25,0","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u0162":-6,"\u021a":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u0174":-3,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,",":1,".":1}},"\u00cb":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0xm76,-278v0,10,-7,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18xm125,-260v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-18,18","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u0162":-6,"\u021a":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u0174":-3,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,",":1,".":1}},"\u00c8":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0xm43,-298r38,0r33,42r-25,0","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u0162":-6,"\u021a":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u0174":-3,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,",":1,".":1}},"\u00cd":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm58,-298r38,0r-46,42r-26,0","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"\u00ce":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm31,-297r24,0r38,41r-27,0v-8,-8,-15,-17,-24,-24r-23,24r-25,0","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"\u00cf":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm10,-260v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-17,18xm94,-278v0,10,-6,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"\u00cc":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm-9,-298r38,0r34,42r-26,0","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"\u00d1":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,28,31,56,45,79v-6,-60,-3,-135,-4,-202r30,0r0,243r-32,0r-77,-123v-18,-27,-33,-57,-47,-81v4,59,3,138,3,204xm165,-294v3,49,-42,32,-63,21v-6,0,-8,6,-9,16r-17,0v-1,-22,8,-37,24,-37v17,0,43,34,48,0r17,0","w":236,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"\u00d3":{"d":"126,-247v66,0,109,51,109,123v0,84,-51,128,-113,128v-64,0,-109,-50,-109,-123v0,-77,48,-128,113,-128xm124,-221v-52,0,-78,48,-78,101v0,52,29,98,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99xm138,-299r38,0r-45,42r-26,0","w":248,"k":{"\u0142":-1,"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,"X":10,"Y":10,"\u00dd":10,"\u0178":10,"\u0232":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"x":2,"\u00ab":-5,"-":-5,"\u00ad":-5,")":3,"]":3,"}":3,",":12,".":12}},"\u00d4":{"d":"126,-247v66,0,109,51,109,123v0,84,-51,128,-113,128v-64,0,-109,-50,-109,-123v0,-77,48,-128,113,-128xm124,-221v-52,0,-78,48,-78,101v0,52,29,98,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99xm112,-298r24,0r37,41r-26,0v-8,-8,-15,-18,-24,-25r-23,25r-25,0","w":248,"k":{"\u0142":-1,"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,"X":10,"Y":10,"\u00dd":10,"\u0178":10,"\u0232":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"x":2,"\u00ab":-5,"-":-5,"\u00ad":-5,")":3,"]":3,"}":3,",":12,".":12}},"\u00d6":{"d":"126,-247v66,0,109,51,109,123v0,84,-51,128,-113,128v-64,0,-109,-50,-109,-123v0,-77,48,-128,113,-128xm124,-221v-52,0,-78,48,-78,101v0,52,29,98,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99xm108,-278v0,10,-7,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18xm157,-260v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-18,18","w":248,"k":{"\u0142":-1,"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,"X":10,"Y":10,"\u00dd":10,"\u0178":10,"\u0232":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"x":2,"\u00ab":-5,"-":-5,"\u00ad":-5,")":3,"]":3,"}":3,",":12,".":12}},"\u00d2":{"d":"126,-247v66,0,109,51,109,123v0,84,-51,128,-113,128v-64,0,-109,-50,-109,-123v0,-77,48,-128,113,-128xm124,-221v-52,0,-78,48,-78,101v0,52,29,98,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99xm72,-299r38,0r33,42r-26,0","w":248,"k":{"\u0142":-1,"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,"X":10,"Y":10,"\u00dd":10,"\u0178":10,"\u0232":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"x":2,"\u00ab":-5,"-":-5,"\u00ad":-5,")":3,"]":3,"}":3,",":12,".":12}},"\u00d5":{"d":"126,-247v66,0,109,51,109,123v0,84,-51,128,-113,128v-64,0,-109,-50,-109,-123v0,-77,48,-128,113,-128xm124,-221v-52,0,-78,48,-78,101v0,52,29,98,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99xm168,-295v3,50,-41,32,-63,21v-6,0,-8,6,-9,16r-17,0v-1,-22,9,-37,25,-37v18,0,42,33,48,0r16,0","w":248,"k":{"\u0142":-1,"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,"X":10,"Y":10,"\u00dd":10,"\u0178":10,"\u0232":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"x":2,"\u00ab":-5,"-":-5,"\u00ad":-5,")":3,"]":3,"}":3,",":12,".":12}},"\u0160":{"d":"15,-12r8,-26v29,24,107,22,107,-26v0,-23,-12,-39,-46,-48v-88,-22,-82,-136,15,-135v25,0,42,6,53,12r-8,26v-8,-4,-24,-12,-46,-12v-33,0,-46,20,-46,37v0,23,14,36,48,46v88,26,83,142,-23,142v-23,0,-49,-7,-62,-16xm105,-257r-24,0r-38,-41r27,0v8,8,15,18,24,25r22,-25r26,0","w":177,"k":{"\u01fd":-1,"\u00e6":-1,"a":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"j":1,"\u0135":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0111":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u01a1":-2,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"-":-2,"\u00ad":-2}},"\u00da":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-23,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-29,-87,-104r0,-143xm132,-298r38,0r-45,42r-26,0","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fa":12,"\u01fc":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u0163":-1,"\u021b":-1,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u0175":1,"\u0233":1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,",":10,".":10}},"\u00db":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-23,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-29,-87,-104r0,-143xm107,-297r24,0r37,41r-26,0v-8,-8,-15,-17,-24,-24r-23,24r-26,0","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fa":12,"\u01fc":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u0163":-1,"\u021b":-1,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u0175":1,"\u0233":1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,",":10,".":10}},"\u00dc":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-23,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-29,-87,-104r0,-143xm84,-260v-10,0,-17,-8,-17,-18v0,-10,7,-18,17,-18v10,0,18,8,18,18v0,10,-8,18,-18,18xm168,-278v0,10,-6,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fa":12,"\u01fc":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u0163":-1,"\u021b":-1,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u0175":1,"\u0233":1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,",":10,".":10}},"\u00d9":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-23,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-29,-87,-104r0,-143xm66,-298r38,0r34,42r-26,0","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fa":12,"\u01fc":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u0163":-1,"\u021b":-1,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u0175":1,"\u0233":1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,",":10,".":10}},"\u00dd":{"d":"113,0r-32,0r0,-103r-76,-140r35,0r59,117r60,-117r35,0r-81,140r0,103xm115,-296r38,0r-45,42r-26,0","w":194,"k":{"\u012d":5,"\u00f6":27,"\u00ef":5,"\u00eb":27,"\u00e4":25,"T":-12,"\u0166":-12,"\u0164":-12,"\u0162":-12,"\u021a":-12,"J":19,"\u0134":19,"M":4,"C":13,"G":13,"O":13,"Q":13,"\u00d8":13,"\u0152":13,"\u00c7":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"\u0106":13,"\u010c":13,"\u0108":13,"\u010a":13,"\u011e":13,"\u011c":13,"\u0122":13,"\u0120":13,"\u014e":13,"\u0150":13,"\u014c":13,"\u01fe":13,"\u01a0":13,"V":-10,"W":-10,"\u0174":-10,"X":1,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,"\u0102":29,"\u0100":29,"\u0104":29,"\u01fa":29,"\u01fc":29,"S":5,"\u0160":5,"\u015a":5,"\u015e":5,"\u015c":5,"\u0218":5,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"\u0141":3,"\u00d0":3,"\u00c9":3,"\u00ca":3,"\u00cb":3,"\u00c8":3,"\u00cd":3,"\u00ce":3,"\u00cf":3,"\u00cc":3,"\u00d1":3,"\u0110":3,"\u014a":3,"\u0126":3,"\u0132":3,"\u010e":3,"\u0114":3,"\u011a":3,"\u0116":3,"\u0112":3,"\u0118":3,"\u0124":3,"\u012c":3,"\u0130":3,"\u012a":3,"\u012e":3,"\u0128":3,"\u0136":3,"\u0139":3,"\u013d":3,"\u013b":3,"\u013f":3,"\u0143":3,"\u0147":3,"\u0145":3,"\u0154":3,"\u0158":3,"\u0156":3,"a":25,"\u00e6":25,"\u00e1":25,"\u00e2":25,"\u00e0":25,"\u00e5":25,"\u00e3":25,"\u0103":25,"\u0101":25,"\u0105":25,"\u01fb":25,"\u01fd":25,"g":14,"\u011f":14,"\u011d":14,"\u0123":14,"\u0121":14,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"i":5,"m":5,"n":5,"p":5,"r":5,"\u0131":5,"\u00ed":5,"\u00ee":5,"\u00ec":5,"\u00f1":5,"\u014b":5,"\u0138":5,"\u0133":5,"\u012b":5,"\u012f":5,"\u0129":5,"\u0144":5,"\u0148":5,"\u0146":5,"\u0155":5,"\u0159":5,"\u0157":5,"c":27,"d":27,"e":27,"o":27,"q":27,"\u00f8":27,"\u0153":27,"\u00e7":27,"\u00e9":27,"\u00ea":27,"\u00e8":27,"\u00f3":27,"\u00f4":27,"\u00f2":27,"\u00f5":27,"\u0111":27,"\u0107":27,"\u010d":27,"\u0109":27,"\u010b":27,"\u010f":27,"\u0115":27,"\u011b":27,"\u0117":27,"\u0113":27,"\u0119":27,"\u014f":27,"\u0151":27,"\u014d":27,"\u01ff":27,"\u01a1":27,"s":19,"\u0161":19,"\u015b":19,"\u015f":19,"\u015d":19,"\u0219":19,"t":7,"\u0167":7,"\u0165":7,"\u0163":7,"\u021b":7,"u":19,"\u00fa":19,"\u00fb":19,"\u00fc":19,"\u00f9":19,"\u016d":19,"\u0171":19,"\u016b":19,"\u0173":19,"\u016f":19,"\u0169":19,"\u01b0":19,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u0175":10,"\u0233":10,"z":9,"\u017e":9,"\u017a":9,"\u017c":9,"x":9,":":12,";":12,"\u00bb":7,"\u00ab":18,"-":18,"\u00ad":18,")":-20,"]":-20,"}":-20,"\"":-3,"'":-3,",":34,".":34}},"\u0178":{"d":"113,0r-32,0r0,-103r-76,-140r35,0r59,117r60,-117r35,0r-81,140r0,103xm67,-257v-10,0,-17,-8,-17,-18v0,-10,7,-18,17,-18v10,0,18,8,18,18v0,10,-8,18,-18,18xm134,-257v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-7,18,-18,18","w":194,"k":{"\u012d":5,"\u00f6":27,"\u00ef":5,"\u00eb":27,"\u00e4":25,"T":-12,"\u0166":-12,"\u0164":-12,"\u0162":-12,"\u021a":-12,"J":19,"\u0134":19,"M":4,"C":13,"G":13,"O":13,"Q":13,"\u00d8":13,"\u0152":13,"\u00c7":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"\u0106":13,"\u010c":13,"\u0108":13,"\u010a":13,"\u011e":13,"\u011c":13,"\u0122":13,"\u0120":13,"\u014e":13,"\u0150":13,"\u014c":13,"\u01fe":13,"\u01a0":13,"V":-10,"W":-10,"\u0174":-10,"X":1,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,"\u0102":29,"\u0100":29,"\u0104":29,"\u01fa":29,"\u01fc":29,"S":5,"\u0160":5,"\u015a":5,"\u015e":5,"\u015c":5,"\u0218":5,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"\u0141":3,"\u00d0":3,"\u00c9":3,"\u00ca":3,"\u00cb":3,"\u00c8":3,"\u00cd":3,"\u00ce":3,"\u00cf":3,"\u00cc":3,"\u00d1":3,"\u0110":3,"\u014a":3,"\u0126":3,"\u0132":3,"\u010e":3,"\u0114":3,"\u011a":3,"\u0116":3,"\u0112":3,"\u0118":3,"\u0124":3,"\u012c":3,"\u0130":3,"\u012a":3,"\u012e":3,"\u0128":3,"\u0136":3,"\u0139":3,"\u013d":3,"\u013b":3,"\u013f":3,"\u0143":3,"\u0147":3,"\u0145":3,"\u0154":3,"\u0158":3,"\u0156":3,"a":25,"\u00e6":25,"\u00e1":25,"\u00e2":25,"\u00e0":25,"\u00e5":25,"\u00e3":25,"\u0103":25,"\u0101":25,"\u0105":25,"\u01fb":25,"\u01fd":25,"g":14,"\u011f":14,"\u011d":14,"\u0123":14,"\u0121":14,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"i":5,"m":5,"n":5,"p":5,"r":5,"\u0131":5,"\u00ed":5,"\u00ee":5,"\u00ec":5,"\u00f1":5,"\u014b":5,"\u0138":5,"\u0133":5,"\u012b":5,"\u012f":5,"\u0129":5,"\u0144":5,"\u0148":5,"\u0146":5,"\u0155":5,"\u0159":5,"\u0157":5,"c":27,"d":27,"e":27,"o":27,"q":27,"\u00f8":27,"\u0153":27,"\u00e7":27,"\u00e9":27,"\u00ea":27,"\u00e8":27,"\u00f3":27,"\u00f4":27,"\u00f2":27,"\u00f5":27,"\u0111":27,"\u0107":27,"\u010d":27,"\u0109":27,"\u010b":27,"\u010f":27,"\u0115":27,"\u011b":27,"\u0117":27,"\u0113":27,"\u0119":27,"\u014f":27,"\u0151":27,"\u014d":27,"\u01ff":27,"\u01a1":27,"s":19,"\u0161":19,"\u015b":19,"\u015f":19,"\u015d":19,"\u0219":19,"t":7,"\u0167":7,"\u0165":7,"\u0163":7,"\u021b":7,"u":19,"\u00fa":19,"\u00fb":19,"\u00fc":19,"\u00f9":19,"\u016d":19,"\u0171":19,"\u016b":19,"\u0173":19,"\u016f":19,"\u0169":19,"\u01b0":19,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u0175":10,"\u0233":10,"z":9,"\u017e":9,"\u017a":9,"\u017c":9,"x":9,":":12,";":12,"\u00bb":7,"\u00ab":18,"-":18,"\u00ad":18,")":-20,"]":-20,"}":-20,"\"":-3,"'":-3,",":34,".":34}},"\u017d":{"d":"11,0r0,-18r134,-198r-123,0r0,-27r164,0r0,19r-134,198r136,0r0,26r-177,0xm115,-256r-24,0r-38,-41r27,0v8,8,15,18,24,25r22,-25r26,0","w":199,"k":{"J":-3,"\u0134":-3,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u0152":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u01a0":8,"X":2,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"-":10,"\u00ad":10}},"\u00e1":{"d":"99,-249r35,0r-44,51r-23,0xm82,-178v96,3,57,98,70,178r-29,0v-2,-7,0,-17,-4,-22v-10,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-16,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm44,-50v0,53,74,30,74,-9r0,-30v-35,-1,-74,5,-74,39","w":173},"\u00e2":{"d":"74,-249r22,0r35,51r-25,0r-21,-34r-21,34r-24,0xm82,-178v96,3,57,98,70,178r-29,0v-2,-7,0,-17,-4,-22v-10,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-16,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm44,-50v0,53,74,30,74,-9r0,-30v-35,-1,-74,5,-74,39","w":173},"\u00e4":{"d":"71,-224v0,10,-7,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18v10,0,17,8,17,18xm120,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19xm82,-178v96,3,57,98,70,178r-29,0v-2,-7,0,-17,-4,-22v-10,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-16,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm44,-50v0,53,74,30,74,-9r0,-30v-35,-1,-74,5,-74,39","w":173},"\u00e0":{"d":"34,-249r35,0r31,51r-22,0xm82,-178v96,3,57,98,70,178r-29,0v-2,-7,0,-17,-4,-22v-10,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-16,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm44,-50v0,53,74,30,74,-9r0,-30v-35,-1,-74,5,-74,39","w":173},"\u00e5":{"d":"86,-193v-22,0,-36,-15,-36,-33v0,-19,14,-34,37,-34v22,0,35,15,35,34v0,19,-15,33,-36,33xm86,-207v12,0,19,-9,19,-20v0,-11,-7,-20,-19,-20v-25,0,-22,40,0,40xm82,-178v96,3,57,98,70,178r-29,0v-2,-7,0,-17,-4,-22v-10,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-16,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm44,-50v0,53,74,30,74,-9r0,-30v-35,-1,-74,5,-74,39","w":173},"\u00e3":{"d":"130,-243v3,49,-39,35,-62,23v-6,0,-8,6,-9,16r-18,0v-1,-23,10,-38,25,-38v17,0,43,34,47,-1r17,0xm82,-178v96,3,57,98,70,178r-29,0v-2,-7,0,-17,-4,-22v-10,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-16,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm44,-50v0,53,74,30,74,-9r0,-30v-35,-1,-74,5,-74,39","w":173},"\u00e7":{"d":"145,-30r6,24v-8,4,-24,10,-46,10r-9,14v13,3,25,11,25,26v0,32,-38,36,-62,24r5,-16v10,6,35,10,35,-7v0,-10,-11,-13,-28,-15r15,-27v-44,-5,-72,-40,-72,-88v0,-70,72,-112,137,-84r-7,25v-42,-24,-106,5,-98,57v-4,57,55,78,99,57","w":160,"k":{"T":4,"\u0166":4,"\u0164":4,"\u0162":4,"\u021a":4,"f":-1,"\u00df":-1,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0111":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"\u01a1":2,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,"\u0175":-6,"\u0233":-6,"\u00bb":-5,"-":-2,"\u00ad":-2,",":4,".":4}},"\u00e9":{"d":"109,-249r35,0r-44,51r-22,0xm166,-81r-122,0v-2,64,66,69,108,51r5,23v-11,5,-30,11,-58,11v-54,0,-85,-35,-85,-88v0,-53,30,-94,81,-94v63,0,75,53,71,97xm44,-104r93,0v0,-20,-8,-52,-44,-52v-32,0,-46,30,-49,52","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"x":1,"-":-10,"\u00ad":-10,",":4,".":4}},"\u00ea":{"d":"84,-249r21,0r35,51r-24,0v-8,-11,-13,-24,-22,-34r-21,34r-23,0xm166,-81r-122,0v-2,64,66,69,108,51r5,23v-11,5,-30,11,-58,11v-54,0,-85,-35,-85,-88v0,-53,30,-94,81,-94v63,0,75,53,71,97xm44,-104r93,0v0,-20,-8,-52,-44,-52v-32,0,-46,30,-49,52","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"x":1,"-":-10,"\u00ad":-10,",":4,".":4}},"\u00eb":{"d":"63,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19xm130,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19xm166,-81r-122,0v-2,64,66,69,108,51r5,23v-11,5,-30,11,-58,11v-54,0,-85,-35,-85,-88v0,-53,30,-94,81,-94v63,0,75,53,71,97xm44,-104r93,0v0,-20,-8,-52,-44,-52v-32,0,-46,30,-49,52","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"x":1,"-":-10,"\u00ad":-10,",":4,".":4}},"\u00e8":{"d":"49,-249r35,0r31,51r-22,0xm166,-81r-122,0v-2,64,66,69,108,51r5,23v-11,5,-30,11,-58,11v-54,0,-85,-35,-85,-88v0,-53,30,-94,81,-94v63,0,75,53,71,97xm44,-104r93,0v0,-20,-8,-52,-44,-52v-32,0,-46,30,-49,52","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"x":1,"-":-10,"\u00ad":-10,",":4,".":4}},"\u00ed":{"d":"56,-249r35,0r-44,51r-23,0xm58,0r-32,0r0,-174r32,0r0,174","w":84},"\u00ee":{"d":"31,-249r22,0r34,51r-24,0v-8,-11,-13,-24,-22,-34r-20,34r-24,0xm58,0r-32,0r0,-174r32,0r0,174","w":84},"\u00ef":{"d":"9,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19xm93,-224v0,10,-7,19,-18,19v-10,0,-17,-9,-17,-19v0,-10,8,-18,18,-18v10,0,17,8,17,18xm58,0r-32,0r0,-174r32,0r0,174","w":84},"\u00ec":{"d":"-10,-249r35,0r32,51r-23,0xm58,0r-32,0r0,-174r32,0r0,174","w":84},"\u00f1":{"d":"145,-243v3,50,-40,34,-63,23v-6,0,-8,6,-9,16r-17,0v-3,-49,38,-39,62,-24v6,0,9,-3,10,-15r17,0xm103,-152v-64,0,-41,91,-45,152r-32,0r-1,-174r28,0r2,29v27,-46,119,-55,120,41r0,104r-32,0v-6,-59,22,-152,-40,-152","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0233":5,"\"":3,"'":3}},"\u00f3":{"d":"111,-249r35,0r-44,51r-22,0xm100,-178v50,0,84,36,84,89v0,64,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92xm99,-154v-37,0,-53,34,-53,67v0,38,22,67,53,67v30,0,53,-28,53,-67v0,-30,-16,-67,-53,-67","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u0162":14,"\u021a":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"-":-5,"\u00ad":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"\u00f4":{"d":"87,-249r22,0r35,51r-24,0v-8,-11,-13,-24,-22,-34r-21,34r-23,0xm100,-178v50,0,84,36,84,89v0,64,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92xm99,-154v-37,0,-53,34,-53,67v0,38,22,67,53,67v30,0,53,-28,53,-67v0,-30,-16,-67,-53,-67","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u0162":14,"\u021a":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"-":-5,"\u00ad":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"\u00f6":{"d":"83,-224v0,10,-7,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18v10,0,17,8,17,18xm132,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19xm100,-178v50,0,84,36,84,89v0,64,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92xm99,-154v-37,0,-53,34,-53,67v0,38,22,67,53,67v30,0,53,-28,53,-67v0,-30,-16,-67,-53,-67","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u0162":14,"\u021a":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"-":-5,"\u00ad":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"\u00f2":{"d":"52,-249r35,0r31,51r-22,0xm100,-178v50,0,84,36,84,89v0,64,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92xm99,-154v-37,0,-53,34,-53,67v0,38,22,67,53,67v30,0,53,-28,53,-67v0,-30,-16,-67,-53,-67","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u0162":14,"\u021a":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"-":-5,"\u00ad":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"\u00f5":{"d":"143,-243v3,49,-39,35,-62,23v-6,0,-8,6,-9,16r-18,0v-1,-23,10,-38,25,-38v17,0,43,34,47,-1r17,0xm100,-178v50,0,84,36,84,89v0,64,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92xm99,-154v-37,0,-53,34,-53,67v0,38,22,67,53,67v30,0,53,-28,53,-67v0,-30,-16,-67,-53,-67","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u0162":14,"\u021a":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"-":-5,"\u00ad":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"\u0161":{"d":"85,-198r-23,0r-35,-51r24,0r22,34r22,-34r23,0xm14,-8r8,-24v17,16,76,18,76,-14v0,-15,-9,-25,-33,-32v-68,-19,-57,-99,14,-100v18,0,33,5,43,11r-8,23v-13,-12,-65,-16,-65,13v0,14,9,23,33,30v67,19,58,107,-19,105v-19,0,-37,-5,-49,-12","w":142,"k":{"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,",":4,".":4}},"\u00fa":{"d":"116,-249r34,0r-43,51r-23,0xm96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v5,57,-20,152,39,152","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,",":3,".":3}},"\u00fb":{"d":"88,-249r22,0r34,51r-24,0v-8,-11,-13,-24,-22,-34r-21,34r-23,0xm96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v5,57,-20,152,39,152","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,",":3,".":3}},"\u00fc":{"d":"67,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19xm151,-224v0,10,-7,19,-18,19v-10,0,-17,-9,-17,-19v0,-10,8,-18,18,-18v10,0,17,8,17,18xm96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v5,57,-20,152,39,152","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,",":3,".":3}},"\u00f9":{"d":"50,-249r35,0r32,51r-23,0xm96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v5,57,-20,152,39,152","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,",":3,".":3}},"\u00fd":{"d":"103,-249r35,0r-44,51r-23,0xm13,53v25,-9,46,-29,57,-58v-19,-59,-46,-112,-67,-169r35,0r50,138r46,-138r33,0v-41,87,-60,232,-146,254","w":169,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,":":-9,";":-9,"-":1,"\u00ad":1,",":14,".":14}},"\u00ff":{"d":"73,-224v0,10,-7,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18v10,0,17,8,17,18xm122,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19xm13,53v25,-9,46,-29,57,-58v-19,-59,-46,-112,-67,-169r35,0r50,138r46,-138r33,0v-41,87,-60,232,-146,254","w":169,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,":":-9,";":-9,"-":1,"\u00ad":1,",":14,".":14}},"\u017e":{"d":"93,-198r-23,0r-34,-51r24,0v8,11,13,24,22,34r21,-34r24,0xm6,0r0,-18r102,-131r-94,0r0,-25r133,0r-1,20r-100,129r102,0r0,25r-142,0","w":154,"k":{"T":7,"\u0166":7,"\u0164":7,"\u0162":7,"\u021a":7,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0111":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"\u01a1":3,"v":-9,"w":-9,"y":-9,"\u00fd":-9,"\u00ff":-9,"\u0175":-9,"\u0233":-9,"\u00bb":-6}},"\u0110":{"d":"228,-127v4,106,-89,144,-199,127r0,-111r-30,0r0,-25r30,0r0,-104v19,-3,42,-6,67,-6v86,1,129,38,132,119xm125,-136r0,25r-65,0r0,87v82,9,135,-24,135,-103v0,-71,-58,-105,-135,-90r0,81r65,0","w":241,"k":{"\u0142":-1,"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,"X":10,"Y":10,"\u00dd":10,"\u0178":10,"\u0232":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"x":2,"\u00ab":-5,"-":-5,"\u00ad":-5,")":3,"]":3,"}":3,",":12,".":12}},"\u014a":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,28,31,56,45,79v-6,-60,-3,-135,-4,-202r30,0r0,229v0,51,-24,79,-70,86r-6,-25v29,-6,42,-19,45,-45r-78,-125v-18,-27,-33,-57,-47,-81v4,59,3,138,3,204","w":236,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"\u0126":{"d":"229,-172r-21,0r0,172r-31,0r0,-109r-118,0r0,109r-31,0r0,-172r-20,0r0,-21r20,0r0,-50r31,0r0,50r118,0r0,-50r31,0r0,50r21,0r0,21xm177,-136r0,-36r-118,0r0,36r118,0","w":236,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"\u0166":{"d":"179,-216r-74,0r0,80r45,0r0,21r-45,0r0,115r-32,0r0,-115r-44,0r0,-21r44,0r0,-80r-73,0r0,-27r179,0r0,27","w":178,"k":{"\u0129":16,"\u012f":16,"\u012b":16,"\u012d":16,"\u0133":16,"\u00ec":16,"\u00ef":16,"\u00ee":16,"\u00ed":16,"\u00e8":26,"\u00e0":23,"\u0131":16,"i":16,"T":-14,"\u0166":-14,"\u0164":-14,"\u0162":-14,"\u021a":-14,"J":15,"\u0134":15,"C":10,"G":10,"O":10,"Q":10,"\u00d8":10,"\u0152":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"\u0106":10,"\u010c":10,"\u0108":10,"\u010a":10,"\u011e":10,"\u011c":10,"\u0122":10,"\u0120":10,"\u014e":10,"\u0150":10,"\u014c":10,"\u01fe":10,"\u01a0":10,"V":-14,"W":-14,"\u0174":-14,"X":-8,"Y":-10,"\u00dd":-10,"\u0178":-10,"\u0232":-10,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"\u0102":27,"\u0100":27,"\u0104":27,"\u01fa":27,"\u01fc":27,"S":2,"\u0160":2,"\u015a":2,"\u015e":2,"\u015c":2,"\u0218":2,"a":23,"\u00e6":23,"\u00e1":23,"\u00e2":23,"\u00e4":23,"\u00e5":23,"\u00e3":23,"\u0103":23,"\u0101":23,"\u0105":23,"\u01fb":23,"\u01fd":23,"g":23,"\u011f":23,"\u011d":23,"\u0123":23,"\u0121":23,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"m":16,"n":16,"p":16,"r":16,"\u00f1":16,"\u014b":16,"\u0138":16,"\u0144":16,"\u0148":16,"\u0146":16,"\u0155":16,"\u0159":16,"\u0157":16,"c":26,"d":26,"e":26,"o":26,"q":26,"\u00f8":26,"\u0153":26,"\u00e7":26,"\u00e9":26,"\u00ea":26,"\u00eb":26,"\u00f3":26,"\u00f4":26,"\u00f6":26,"\u00f2":26,"\u00f5":26,"\u0111":26,"\u0107":26,"\u010d":26,"\u0109":26,"\u010b":26,"\u010f":26,"\u0115":26,"\u011b":26,"\u0117":26,"\u0113":26,"\u0119":26,"\u014f":26,"\u0151":26,"\u014d":26,"\u01ff":26,"\u01a1":26,"s":19,"\u0161":19,"\u015b":19,"\u015f":19,"\u015d":19,"\u0219":19,"u":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u00f9":16,"\u016d":16,"\u0171":16,"\u016b":16,"\u0173":16,"\u016f":16,"\u0169":16,"\u01b0":16,"v":14,"w":14,"y":14,"\u00fd":14,"\u00ff":14,"\u0175":14,"\u0233":14,"z":18,"\u017e":18,"\u017a":18,"\u017c":18,"x":12,":":9,";":9,"\u00bb":13,"\u00ab":18,"-":18,"\u00ad":18,")":-22,"]":-22,"}":-22,"\"":-6,"'":-6,",":22,".":22,"\u00b5":12}},"\u021c":{"d":"23,41r-4,-24v58,-9,107,-41,107,-83v0,-40,-46,-57,-87,-41r-4,-22v41,-9,72,-32,72,-60v0,-40,-68,-35,-89,-19r-7,-22v34,-26,128,-22,128,36v0,28,-23,47,-45,60v36,4,65,27,65,66v0,55,-53,99,-136,109","w":172},"\u0111":{"d":"204,-199r-27,0r1,199r-28,0r-2,-30v-34,62,-134,33,-134,-55v0,-86,90,-120,131,-67r0,-47r-71,0r0,-20r71,0r0,-37r32,0r0,37r27,0r0,20xm97,-22v36,0,48,-34,48,-81v0,-31,-19,-50,-47,-50v-33,0,-52,28,-52,67v0,35,17,64,51,64","w":203,"k":{",":4,".":4}},"\u014b":{"d":"103,-152v-64,0,-41,91,-45,152r-32,0r-1,-174r28,0r2,29v27,-46,119,-55,120,41r0,83v0,55,-30,80,-69,85r-6,-25v56,-6,42,-79,43,-139v0,-28,-10,-52,-40,-52","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0233":5,"\"":3,"'":3}},"\u0127":{"d":"58,-147v31,-44,117,-52,117,43r0,104r-32,0v-6,-59,22,-152,-40,-152v-63,0,-42,91,-45,152r-32,0r0,-199r-27,0r0,-20r27,0r0,-37r32,0r0,37r69,0r0,20r-69,0r0,52","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0233":5,"\"":3,"'":3}},"\u0138":{"d":"58,-174r0,80r67,-80r38,0r-67,71r76,103r-38,0r-60,-84r-16,18r0,66r-32,0r0,-174r32,0","w":168,"k":{"T":7,"\u0166":7,"\u0164":7,"\u0162":7,"\u021a":7,"a":-6,"\u00e6":-6,"\u00e1":-6,"\u00e2":-6,"\u00e4":-6,"\u00e0":-6,"\u00e5":-6,"\u00e3":-6,"\u0103":-6,"\u0101":-6,"\u0105":-6,"\u01fb":-6,"\u01fd":-6,"b":-6,"h":-6,"k":-6,"l":-6,"\u0142":-6,"\u0127":-6,"\u0125":-6,"\u0137":-6,"\u013a":-6,"\u013e":-6,"\u013c":-6,"\u0140":-6,"i":-6,"m":-6,"n":-6,"p":-6,"r":-6,"\u0131":-6,"\u00ed":-6,"\u00ee":-6,"\u00ef":-6,"\u00ec":-6,"\u00f1":-6,"\u014b":-6,"\u0138":-6,"\u0133":-6,"\u012d":-6,"\u012b":-6,"\u012f":-6,"\u0129":-6,"\u0144":-6,"\u0148":-6,"\u0146":-6,"\u0155":-6,"\u0159":-6,"\u0157":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,":":-4,";":-4,"-":4,"\u00ad":4,",":-5,".":-5}},"\u0149":{"d":"103,-152v-64,0,-41,91,-45,152r-32,0r-1,-174r28,0r2,29v27,-46,119,-55,120,41r0,104r-32,0v-6,-59,22,-152,-40,-152xm32,-260v28,16,-4,92,-26,57v12,-10,21,-39,3,-51","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0233":5,"\"":3,"'":3}},"\u0167":{"d":"108,-1v-39,15,-81,-5,-75,-54r0,-34r-24,0r0,-20r24,0r0,-41r-27,0r0,-24r27,0r0,-32r31,-10r0,42r46,0r0,24r-46,0r0,41r36,0r0,20r-36,0v0,29,-5,69,24,67v9,0,14,-1,19,-2","w":119,"k":{"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0111":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"\u01a1":2,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"-":2,"\u00ad":2,",":1,".":1}},"\u021d":{"d":"16,75r-3,-24v14,-1,99,-12,99,-68v0,-33,-44,-48,-78,-34r-5,-22v39,-9,67,-24,67,-50v0,-39,-63,-33,-82,-17r-7,-21v32,-27,119,-23,119,32v0,25,-17,41,-38,52v33,4,56,24,56,56v0,47,-44,89,-128,96","w":153},"\u0132":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm163,-83r0,-160r31,0r0,163v1,79,-50,94,-107,78r5,-25v40,10,71,5,71,-56","w":219,"k":{"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,")":-15,"]":-15,"}":-15,",":4,".":4}},"\u0133":{"d":"58,0r-32,0r0,-174r32,0r0,174xm42,-243v12,0,20,9,20,20v0,11,-8,19,-21,19v-11,0,-19,-8,-19,-19v0,-11,8,-20,20,-20xm68,51v42,-7,47,-15,46,-79r0,-146r32,0v-8,98,36,248,-75,250xm131,-243v12,0,19,9,19,20v0,10,-7,19,-20,19v-12,0,-19,-9,-19,-19v0,-11,8,-20,20,-20","w":171,"k":{",":4,".":4}},"\u00b9":{"d":"64,-159r-25,0r-1,-119r-26,13r-4,-19v17,-7,29,-19,56,-16r0,141","w":87},"\u00b2":{"d":"4,-159v-3,-22,13,-25,23,-35v29,-28,45,-44,45,-62v0,-30,-44,-31,-57,-14r-8,-17v10,-8,26,-15,44,-15v81,0,46,81,0,112v-3,4,-9,6,-11,11r62,0r0,20r-98,0","w":111},"\u00b3":{"d":"16,-274r-6,-17v20,-19,94,-11,85,23v0,14,-10,27,-27,33v20,3,33,17,33,35v8,37,-69,54,-98,32r7,-18v14,15,68,11,65,-15v-3,-20,-25,-26,-48,-25r0,-16v20,1,39,-3,42,-23v3,-23,-43,-20,-53,-9","w":109},"\u0102":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-9,39,-24,77,-36,114xm65,-294r19,0v2,8,8,18,26,18v18,0,24,-9,26,-18r18,0v-1,21,-14,38,-45,38v-31,0,-43,-16,-44,-38","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u0162":28,"\u021a":28,"J":-7,"\u0134":-7,"M":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u01a0":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"\u01af":10,"V":19,"W":19,"\u0174":19,"X":5,"Y":28,"\u00dd":28,"\u0178":28,"\u0232":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"b":1,"h":1,"k":1,"l":1,"\u0142":1,"\u0127":1,"\u0125":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"j":1,"\u0135":1,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u0163":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u0175":8,"\u0233":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,"-":1,"\u00ad":1,")":3,"]":3,"}":3,"\"":21,"'":21}},"\u0100":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-9,39,-24,77,-36,114xm67,-284r86,0r0,20r-86,0r0,-20","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u0162":28,"\u021a":28,"J":-7,"\u0134":-7,"M":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u01a0":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"\u01af":10,"V":19,"W":19,"\u0174":19,"X":5,"Y":28,"\u00dd":28,"\u0178":28,"\u0232":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"b":1,"h":1,"k":1,"l":1,"\u0142":1,"\u0127":1,"\u0125":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"j":1,"\u0135":1,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u0163":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u0175":8,"\u0233":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,"-":1,"\u00ad":1,")":3,"]":3,"}":3,"\"":21,"'":21}},"\u0104":{"d":"129,-243r83,243v-28,-5,-47,50,-14,53v6,0,13,-2,17,-4r5,17v-23,15,-63,10,-63,-23v0,-18,12,-34,21,-44r-25,-75r-86,0r-26,76r-32,0r82,-243r38,0xm73,-101r73,0r-37,-114v-9,39,-24,77,-36,114","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u0162":28,"\u021a":28,"J":-7,"\u0134":-7,"M":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u01a0":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"\u01af":10,"V":19,"W":19,"\u0174":19,"X":5,"Y":28,"\u00dd":28,"\u0178":28,"\u0232":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"b":1,"h":1,"k":1,"l":1,"\u0142":1,"\u0127":1,"\u0125":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"j":1,"\u0135":1,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u0163":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u0175":8,"\u0233":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,"-":1,"\u00ad":1,")":3,"]":3,"}":3,"\"":21,"'":21}},"\u01fa":{"d":"112,-249v-20,0,-32,-13,-32,-28v0,-15,12,-28,33,-28v20,0,32,12,32,28v0,16,-14,28,-33,28xm112,-262v10,0,16,-6,16,-15v0,-8,-6,-15,-16,-15v-10,0,-16,7,-16,15v0,8,7,15,16,15xm132,-343r41,0v-25,11,-38,35,-79,31xm153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-9,39,-24,77,-36,114","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u0162":28,"\u021a":28,"J":-7,"\u0134":-7,"M":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u01a0":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"\u01af":10,"V":19,"W":19,"\u0174":19,"X":5,"Y":28,"\u00dd":28,"\u0178":28,"\u0232":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"b":1,"h":1,"k":1,"l":1,"\u0142":1,"\u0127":1,"\u0125":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"j":1,"\u0135":1,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u0163":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u0175":8,"\u0233":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,"-":1,"\u00ad":1,")":3,"]":3,"}":3,"\"":21,"'":21}},"\u0106":{"d":"190,-33r7,25v-80,33,-184,-4,-184,-111v0,-97,99,-152,184,-117r-7,26v-67,-29,-144,6,-144,90v0,79,75,116,144,87xm144,-298r38,0r-46,42r-25,0","w":208,"k":{"\u0152":8,"T":-10,"\u0166":-10,"\u0164":-10,"\u0162":-10,"\u021a":-10,"J":-1,"\u0134":-1,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u01a0":8,"V":-4,"W":-4,"\u0174":-4,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"A":-1,"\u00c6":-1,"\u00c1":-1,"\u00c2":-1,"\u00c4":-1,"\u00c0":-1,"\u00c5":-1,"\u00c3":-1,"\u0102":-1,"\u0100":-1,"\u0104":-1,"\u01fa":-1,"\u01fc":-1,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fb":3,"\u01fd":3,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0175":7,"\u0233":7,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,"\u00ab":4,")":-6,"]":-6,"}":-6}},"\u010c":{"d":"190,-33r7,25v-80,33,-184,-4,-184,-111v0,-97,99,-152,184,-117r-7,26v-67,-29,-144,6,-144,90v0,79,75,116,144,87xm139,-257r-24,0r-38,-41r27,0r23,25r23,-25r26,0","w":208,"k":{"\u0152":8,"T":-10,"\u0166":-10,"\u0164":-10,"\u0162":-10,"\u021a":-10,"J":-1,"\u0134":-1,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u01a0":8,"V":-4,"W":-4,"\u0174":-4,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"A":-1,"\u00c6":-1,"\u00c1":-1,"\u00c2":-1,"\u00c4":-1,"\u00c0":-1,"\u00c5":-1,"\u00c3":-1,"\u0102":-1,"\u0100":-1,"\u0104":-1,"\u01fa":-1,"\u01fc":-1,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fb":3,"\u01fd":3,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0175":7,"\u0233":7,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,"\u00ab":4,")":-6,"]":-6,"}":-6}},"\u0108":{"d":"190,-33r7,25v-80,33,-184,-4,-184,-111v0,-97,99,-152,184,-117r-7,26v-67,-29,-144,6,-144,90v0,79,75,116,144,87xm113,-298r24,0r38,41r-27,0r-23,-25r-23,25r-26,0","w":208,"k":{"\u0152":8,"T":-10,"\u0166":-10,"\u0164":-10,"\u0162":-10,"\u021a":-10,"J":-1,"\u0134":-1,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u01a0":8,"V":-4,"W":-4,"\u0174":-4,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"A":-1,"\u00c6":-1,"\u00c1":-1,"\u00c2":-1,"\u00c4":-1,"\u00c0":-1,"\u00c5":-1,"\u00c3":-1,"\u0102":-1,"\u0100":-1,"\u0104":-1,"\u01fa":-1,"\u01fc":-1,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fb":3,"\u01fd":3,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0175":7,"\u0233":7,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,"\u00ab":4,")":-6,"]":-6,"}":-6}},"\u010a":{"d":"190,-33r7,25v-80,33,-184,-4,-184,-111v0,-97,99,-152,184,-117r-7,26v-67,-29,-144,6,-144,90v0,79,75,116,144,87xm125,-259v-10,0,-18,-9,-18,-18v0,-9,9,-18,19,-18v10,0,17,9,17,18v0,9,-8,18,-18,18","w":208,"k":{"\u0152":8,"T":-10,"\u0166":-10,"\u0164":-10,"\u0162":-10,"\u021a":-10,"J":-1,"\u0134":-1,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u01a0":8,"V":-4,"W":-4,"\u0174":-4,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"A":-1,"\u00c6":-1,"\u00c1":-1,"\u00c2":-1,"\u00c4":-1,"\u00c0":-1,"\u00c5":-1,"\u00c3":-1,"\u0102":-1,"\u0100":-1,"\u0104":-1,"\u01fa":-1,"\u01fc":-1,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fb":3,"\u01fd":3,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0175":7,"\u0233":7,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,"\u00ab":4,")":-6,"]":-6,"}":-6}},"\u010e":{"d":"226,-127v0,107,-89,142,-199,126r0,-238v102,-18,199,7,199,112xm59,-216r0,191v79,12,135,-24,135,-101v0,-69,-60,-107,-135,-90xm123,-256r-24,0r-38,-41r27,0v8,8,15,17,24,24r22,-24r26,0","w":239,"k":{"\u0142":-1,"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,"X":10,"Y":10,"\u00dd":10,"\u0178":10,"\u0232":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"x":2,"\u00ab":-5,"-":-5,"\u00ad":-5,")":3,"]":3,"}":3,",":12,".":12}},"\u0114":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0xm47,-297r19,0v2,8,7,18,25,18v18,0,25,-9,27,-18r18,0v-1,21,-14,38,-45,38v-31,0,-43,-16,-44,-38","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u0162":-6,"\u021a":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u0174":-3,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,",":1,".":1}},"\u011a":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0xm105,-256r-24,0r-38,-41r26,0r24,25r23,-25r26,0","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u0162":-6,"\u021a":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u0174":-3,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,",":1,".":1}},"\u0116":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0xm90,-260v-10,0,-18,-9,-18,-18v0,-9,9,-18,19,-18v10,0,17,9,17,18v0,9,-8,18,-18,18","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u0162":-6,"\u021a":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u0174":-3,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,",":1,".":1}},"\u0112":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0xm50,-284r86,0r0,20r-86,0r0,-20","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u0162":-6,"\u021a":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u0174":-3,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,",":1,".":1}},"\u0118":{"d":"161,50r5,17v-21,13,-62,9,-62,-22v0,-19,15,-36,28,-45r-105,0r0,-243r131,0r0,27r-99,0r0,76r94,0r0,26r-94,0r0,88r105,0r0,26v-22,2,-33,26,-35,38v-1,16,19,18,32,12","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u0162":-6,"\u021a":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u0174":-3,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,",":1,".":1}},"\u011e":{"d":"138,3v-73,1,-125,-46,-125,-123v0,-94,102,-150,192,-114r-8,26v-66,-30,-151,5,-151,87v0,78,68,114,135,91r0,-72r-49,0r0,-25r80,0r0,116v-14,5,-41,14,-74,14xm83,-298r19,0v2,8,7,18,25,18v18,0,25,-9,27,-18r18,0v-1,21,-14,38,-45,38v-31,0,-43,-16,-44,-38","w":232,"k":{"a":-3,"\u00e6":-3,"\u00e1":-3,"\u00e2":-3,"\u00e4":-3,"\u00e0":-3,"\u00e5":-3,"\u00e3":-3,"\u0103":-3,"\u0101":-3,"\u0105":-3,"\u01fb":-3,"\u01fd":-3,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0111":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u01a1":-2}},"\u011c":{"d":"138,3v-73,1,-125,-46,-125,-123v0,-94,102,-150,192,-114r-8,26v-66,-30,-151,5,-151,87v0,78,68,114,135,91r0,-72r-49,0r0,-25r80,0r0,116v-14,5,-41,14,-74,14xm117,-298r24,0r38,41r-26,0v-8,-8,-15,-18,-24,-25r-23,25r-26,0","w":232,"k":{"a":-3,"\u00e6":-3,"\u00e1":-3,"\u00e2":-3,"\u00e4":-3,"\u00e0":-3,"\u00e5":-3,"\u00e3":-3,"\u0103":-3,"\u0101":-3,"\u0105":-3,"\u01fb":-3,"\u01fd":-3,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0111":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u01a1":-2}},"\u0122":{"d":"138,3v-73,1,-125,-46,-125,-123v0,-94,102,-150,192,-114r-8,26v-66,-30,-151,5,-151,87v0,78,68,114,135,91r0,-72r-49,0r0,-25r80,0r0,116v-14,5,-41,14,-74,14xm107,80r-6,-15v26,-2,36,-31,15,-45r23,-5v32,20,4,71,-32,65","w":232,"k":{"a":-3,"\u00e6":-3,"\u00e1":-3,"\u00e2":-3,"\u00e4":-3,"\u00e0":-3,"\u00e5":-3,"\u00e3":-3,"\u0103":-3,"\u0101":-3,"\u0105":-3,"\u01fb":-3,"\u01fd":-3,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0111":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u01a1":-2}},"\u0120":{"d":"138,3v-73,1,-125,-46,-125,-123v0,-94,102,-150,192,-114r-8,26v-66,-30,-151,5,-151,87v0,78,68,114,135,91r0,-72r-49,0r0,-25r80,0r0,116v-14,5,-41,14,-74,14xm130,-259v-10,0,-18,-9,-18,-18v0,-9,9,-18,19,-18v10,0,17,9,17,18v0,9,-8,18,-18,18","w":232,"k":{"a":-3,"\u00e6":-3,"\u00e1":-3,"\u00e2":-3,"\u00e4":-3,"\u00e0":-3,"\u00e5":-3,"\u00e3":-3,"\u0103":-3,"\u0101":-3,"\u0105":-3,"\u01fb":-3,"\u01fd":-3,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0111":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u01a1":-2}},"\u0124":{"d":"27,-243r32,0r0,102r117,0r0,-102r32,0r0,243r-32,0r0,-114r-117,0r0,114r-32,0r0,-243xm105,-297r25,0r37,41r-26,0v-8,-8,-15,-17,-24,-24r-23,24r-26,0","w":234,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"\u012c":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm-1,-296r18,0v2,8,8,17,26,17v18,0,24,-8,26,-17r19,0v-1,21,-14,38,-45,38v-31,0,-43,-16,-44,-38","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"\u0130":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm61,-278v0,9,-7,18,-18,18v-10,0,-17,-9,-17,-18v0,-9,8,-18,18,-18v10,0,17,9,17,18","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"\u012a":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm0,-284r86,0r0,20r-86,0r0,-20","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"\u012e":{"d":"59,-243r0,243v-27,-4,-37,53,-8,54v7,0,13,-1,17,-3r5,16v-23,16,-64,9,-63,-23v0,-18,11,-34,17,-44r0,-243r32,0","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"\u0128":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm88,-294v3,49,-42,32,-63,21v-6,0,-9,6,-10,16r-16,0v-1,-22,8,-37,24,-37v17,0,43,34,48,0r17,0","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"\u0134":{"d":"77,-83r0,-160r31,0r0,163v1,79,-50,94,-107,78r5,-25v40,10,71,5,71,-56xm79,-297r24,0r38,41r-27,0r-23,-24r-23,24r-26,0","w":133,"k":{"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,")":-15,"]":-15,"}":-15,",":4,".":4}},"\u0136":{"d":"27,0r0,-243r32,0r1,117v29,-41,62,-78,93,-117r39,0r-88,103r95,140r-37,0r-80,-119r-23,26r0,93r-32,0xm77,79r-6,-15v27,-2,35,-30,15,-45r23,-5v32,20,4,71,-32,65","w":195,"k":{"T":-8,"\u0166":-8,"\u0164":-8,"\u0162":-8,"\u021a":-8,"J":-14,"\u0134":-14,"C":6,"G":6,"O":6,"Q":6,"\u00d8":6,"\u0152":6,"\u00c7":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"\u0106":6,"\u010c":6,"\u0108":6,"\u010a":6,"\u011e":6,"\u011c":6,"\u0122":6,"\u0120":6,"\u014e":6,"\u0150":6,"\u014c":6,"\u01fe":6,"\u01a0":6,"V":-5,"W":-5,"\u0174":-5,"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"A":-4,"\u00c6":-4,"\u00c1":-4,"\u00c2":-4,"\u00c4":-4,"\u00c0":-4,"\u00c5":-4,"\u00c3":-4,"\u0102":-4,"\u0100":-4,"\u0104":-4,"\u01fa":-4,"\u01fc":-4,"Z":-7,"\u017d":-7,"\u0179":-7,"\u017b":-7,"a":-6,"\u00e6":-6,"\u00e1":-6,"\u00e2":-6,"\u00e4":-6,"\u00e0":-6,"\u00e5":-6,"\u00e3":-6,"\u0103":-6,"\u0101":-6,"\u0105":-6,"\u01fb":-6,"\u01fd":-6,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u016d":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"\u0169":2,"\u01b0":2,"v":6,"w":6,"y":6,"\u00fd":6,"\u00ff":6,"\u0175":6,"\u0233":6,":":-8,";":-8,"\u00ab":2,"-":6,"\u00ad":6,")":-8,"]":-8,"}":-8,",":-6,".":-6,"\u00b5":-2}},"\u0139":{"d":"27,0r0,-243r32,0r0,217r103,0r0,26r-135,0xm64,-298r39,0r-46,42r-26,0","w":169,"k":{"\u01fe":14,"\u00d8":14,"T":32,"\u0166":32,"\u0164":32,"\u0162":32,"\u021a":32,"J":-4,"\u0134":-4,"C":14,"G":14,"O":14,"Q":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u0108":14,"\u010a":14,"\u011e":14,"\u011c":14,"\u0122":14,"\u0120":14,"\u014e":14,"\u0150":14,"\u014c":14,"\u01a0":14,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"\u01af":13,"V":21,"W":21,"\u0174":21,"Y":30,"\u00dd":30,"\u0178":30,"\u0232":30,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"\u01b0":5,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u0175":10,"\u0233":10,"\u00ab":14,"-":15,"\u00ad":15,"\"":35,"'":35}},"\u013d":{"d":"27,0r0,-243r32,0r0,217r103,0r0,26r-135,0xm94,-181r-7,-15v26,-2,36,-31,15,-46r24,-5v30,20,4,72,-32,66","w":169,"k":{"\u01fe":14,"\u00d8":14,"T":32,"\u0166":32,"\u0164":32,"\u0162":32,"\u021a":32,"J":-4,"\u0134":-4,"C":14,"G":14,"O":14,"Q":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u0108":14,"\u010a":14,"\u011e":14,"\u011c":14,"\u0122":14,"\u0120":14,"\u014e":14,"\u0150":14,"\u014c":14,"\u01a0":14,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"\u01af":13,"V":21,"W":21,"\u0174":21,"Y":30,"\u00dd":30,"\u0178":30,"\u0232":30,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"\u01b0":5,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u0175":10,"\u0233":10,"\u00ab":14,"-":15,"\u00ad":15,"\"":35,"'":35}},"\u013b":{"d":"27,0r0,-243r32,0r0,217r103,0r0,26r-135,0xm67,80r-6,-15v26,-2,36,-31,15,-45r23,-5v32,20,4,71,-32,65","w":169,"k":{"\u01fe":14,"\u00d8":14,"T":32,"\u0166":32,"\u0164":32,"\u0162":32,"\u021a":32,"J":-4,"\u0134":-4,"C":14,"G":14,"O":14,"Q":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u0108":14,"\u010a":14,"\u011e":14,"\u011c":14,"\u0122":14,"\u0120":14,"\u014e":14,"\u0150":14,"\u014c":14,"\u01a0":14,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"\u01af":13,"V":21,"W":21,"\u0174":21,"Y":30,"\u00dd":30,"\u0178":30,"\u0232":30,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"\u01b0":5,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u0175":10,"\u0233":10,"\u00ab":14,"-":15,"\u00ad":15,"\"":35,"'":35}},"\u013f":{"d":"27,0r0,-243r32,0r0,217r103,0r0,26r-135,0xm140,-134v0,9,-7,20,-18,19v-22,-1,-22,-37,1,-37v10,0,17,9,17,18","w":169,"k":{"\u01a0":14,"\u01fe":14,"\u014c":14,"\u0150":14,"\u014e":14,"\u0120":14,"\u0122":14,"\u011c":14,"\u011e":14,"\u010a":14,"\u0108":14,"\u010c":14,"\u0106":14,"\u00d5":14,"\u00d2":14,"\u00d6":14,"\u00d4":14,"\u00d3":14,"\u00c7":14,"\u0152":14,"\u00d8":14,"Q":14,"O":14,"G":14,"C":14,"T":32,"\u0166":32,"\u0164":32,"\u0162":32,"\u021a":32,"J":-4,"\u0134":-4,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"\u01af":13,"V":21,"W":21,"\u0174":21,"Y":30,"\u00dd":30,"\u0178":30,"\u0232":30,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"\u01b0":5,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u0175":10,"\u0233":10,"\u00ab":14,"-":15,"\u00ad":15,"\"":35,"'":35}},"\u0143":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,28,31,56,45,79v-6,-60,-3,-135,-4,-202r30,0r0,243r-32,0r-77,-123v-18,-27,-33,-57,-47,-81v4,59,3,138,3,204xm134,-298r38,0r-46,42r-26,0","w":236,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"\u0147":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,28,31,56,45,79v-6,-60,-3,-135,-4,-202r30,0r0,243r-32,0r-77,-123v-18,-27,-33,-57,-47,-81v4,59,3,138,3,204xm131,-254r-24,0r-38,-41r27,0v8,8,15,18,24,25r22,-25r26,0","w":236,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"\u0145":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,28,31,56,45,79v-6,-60,-3,-135,-4,-202r30,0r0,243r-32,0r-77,-123v-18,-27,-33,-57,-47,-81v4,59,3,138,3,204xm97,80r-6,-15v26,-2,36,-31,15,-46r23,-5v7,5,15,15,15,27v0,27,-25,38,-47,39","w":236,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u0232":3,"f":-4,"\u00df":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"j":-3,"\u0135":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"x":-2}},"\u014e":{"d":"126,-247v66,0,109,51,109,123v0,84,-51,128,-113,128v-64,0,-109,-50,-109,-123v0,-77,48,-128,113,-128xm124,-221v-52,0,-78,48,-78,101v0,52,29,98,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99xm79,-299r19,0v2,8,8,18,26,18v18,0,24,-9,26,-18r18,0v-1,21,-14,38,-45,38v-31,0,-43,-16,-44,-38","w":248,"k":{"\u0142":-1,"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,"X":10,"Y":10,"\u00dd":10,"\u0178":10,"\u0232":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"x":2,"\u00ab":-5,"-":-5,"\u00ad":-5,")":3,"]":3,"}":3,",":12,".":12}},"\u0150":{"d":"126,-247v66,0,109,51,109,123v0,84,-51,128,-113,128v-64,0,-109,-50,-109,-123v0,-77,48,-128,113,-128xm124,-221v-52,0,-78,48,-78,101v0,52,29,98,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99xm115,-299r34,0r-40,41r-23,0xm168,-299r34,0r-40,41r-23,0","w":248,"k":{"\u0142":-1,"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,"X":10,"Y":10,"\u00dd":10,"\u0178":10,"\u0232":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"x":2,"\u00ab":-5,"-":-5,"\u00ad":-5,")":3,"]":3,"}":3,",":12,".":12}},"\u014c":{"d":"126,-247v66,0,109,51,109,123v0,84,-51,128,-113,128v-64,0,-109,-50,-109,-123v0,-77,48,-128,113,-128xm124,-221v-52,0,-78,48,-78,101v0,52,29,98,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99xm81,-285r86,0r0,19r-86,0r0,-19","w":248,"k":{"\u0142":-1,"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,"X":10,"Y":10,"\u00dd":10,"\u0178":10,"\u0232":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"x":2,"\u00ab":-5,"-":-5,"\u00ad":-5,")":3,"]":3,"}":3,",":12,".":12}},"\u01fe":{"d":"40,15r-17,-14r22,-31v-20,-22,-32,-54,-32,-90v0,-102,94,-159,172,-108r22,-29r19,13r-23,31v20,22,32,54,32,90v1,112,-95,155,-172,108xm170,-204v-55,-46,-125,11,-125,82v0,27,7,46,18,65xm186,-185r-108,146v55,47,125,-7,125,-83v0,-21,-4,-42,-17,-63xm141,-301r38,0r-45,43r-26,0","w":248,"k":{"\u0142":-1,"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,"X":10,"Y":10,"\u00dd":10,"\u0178":10,"\u0232":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"x":2,"\u00ab":-5,"-":-5,"\u00ad":-5,")":3,"]":3,"}":3,",":12,".":12}},"\u0154":{"d":"27,-239v63,-11,150,-10,150,60v0,33,-22,52,-46,63v38,3,42,98,54,116r-32,0v-4,-7,-10,-28,-16,-58v-9,-44,-32,-49,-78,-47r0,105r-32,0r0,-239xm59,-217r0,88v46,4,86,-6,86,-46v0,-43,-50,-50,-86,-42xm109,-299r38,0r-46,42r-26,0","w":193,"k":{"T":-3,"\u0166":-3,"\u0164":-3,"\u0162":-3,"\u021a":-3,"C":-1,"G":-1,"O":-1,"Q":-1,"\u00d8":-1,"\u0152":-1,"\u00c7":-1,"\u00d3":-1,"\u00d4":-1,"\u00d6":-1,"\u00d2":-1,"\u00d5":-1,"\u0106":-1,"\u010c":-1,"\u0108":-1,"\u010a":-1,"\u011e":-1,"\u011c":-1,"\u0122":-1,"\u0120":-1,"\u014e":-1,"\u0150":-1,"\u014c":-1,"\u01fe":-1,"\u01a0":-1,"V":-6,"W":-6,"\u0174":-6,"X":-2,"Y":4,"\u00dd":4,"\u0178":4,"\u0232":4,"A":-2,"\u00c6":-2,"\u00c1":-2,"\u00c2":-2,"\u00c4":-2,"\u00c0":-2,"\u00c5":-2,"\u00c3":-2,"\u0102":-2,"\u0100":-2,"\u0104":-2,"\u01fa":-2,"\u01fc":-2,"a":-4,"\u00e6":-4,"\u00e1":-4,"\u00e2":-4,"\u00e4":-4,"\u00e0":-4,"\u00e5":-4,"\u00e3":-4,"\u0103":-4,"\u0101":-4,"\u0105":-4,"\u01fb":-4,"\u01fd":-4,"b":-3,"h":-3,"k":-3,"l":-3,"\u0142":-3,"\u0127":-3,"\u0125":-3,"\u0137":-3,"\u013a":-3,"\u013e":-3,"\u013c":-3,"\u0140":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-7,"\u0167":-7,"\u0165":-7,"\u0163":-7,"\u021b":-7,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5}},"\u0158":{"d":"27,-239v63,-11,150,-10,150,60v0,33,-22,52,-46,63v38,3,42,98,54,116r-32,0v-4,-7,-10,-28,-16,-58v-9,-44,-32,-49,-78,-47r0,105r-32,0r0,-239xm59,-217r0,88v46,4,86,-6,86,-46v0,-43,-50,-50,-86,-42xm107,-257r-24,0r-38,-41r27,0r23,25r23,-25r26,0","w":193,"k":{"T":-3,"\u0166":-3,"\u0164":-3,"\u0162":-3,"\u021a":-3,"C":-1,"G":-1,"O":-1,"Q":-1,"\u00d8":-1,"\u0152":-1,"\u00c7":-1,"\u00d3":-1,"\u00d4":-1,"\u00d6":-1,"\u00d2":-1,"\u00d5":-1,"\u0106":-1,"\u010c":-1,"\u0108":-1,"\u010a":-1,"\u011e":-1,"\u011c":-1,"\u0122":-1,"\u0120":-1,"\u014e":-1,"\u0150":-1,"\u014c":-1,"\u01fe":-1,"\u01a0":-1,"V":-6,"W":-6,"\u0174":-6,"X":-2,"Y":4,"\u00dd":4,"\u0178":4,"\u0232":4,"A":-2,"\u00c6":-2,"\u00c1":-2,"\u00c2":-2,"\u00c4":-2,"\u00c0":-2,"\u00c5":-2,"\u00c3":-2,"\u0102":-2,"\u0100":-2,"\u0104":-2,"\u01fa":-2,"\u01fc":-2,"a":-4,"\u00e6":-4,"\u00e1":-4,"\u00e2":-4,"\u00e4":-4,"\u00e0":-4,"\u00e5":-4,"\u00e3":-4,"\u0103":-4,"\u0101":-4,"\u0105":-4,"\u01fb":-4,"\u01fd":-4,"b":-3,"h":-3,"k":-3,"l":-3,"\u0142":-3,"\u0127":-3,"\u0125":-3,"\u0137":-3,"\u013a":-3,"\u013e":-3,"\u013c":-3,"\u0140":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-7,"\u0167":-7,"\u0165":-7,"\u0163":-7,"\u021b":-7,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5}},"\u0156":{"d":"27,-239v63,-11,150,-10,150,60v0,33,-22,52,-46,63v38,3,42,98,54,116r-32,0v-4,-7,-10,-28,-16,-58v-9,-44,-32,-49,-78,-47r0,105r-32,0r0,-239xm59,-217r0,88v46,4,86,-6,86,-46v0,-43,-50,-50,-86,-42xm76,77r-6,-14v26,-2,36,-31,15,-46r23,-5v7,5,15,15,15,27v0,27,-25,37,-47,38","w":193,"k":{"T":-3,"\u0166":-3,"\u0164":-3,"\u0162":-3,"\u021a":-3,"C":-1,"G":-1,"O":-1,"Q":-1,"\u00d8":-1,"\u0152":-1,"\u00c7":-1,"\u00d3":-1,"\u00d4":-1,"\u00d6":-1,"\u00d2":-1,"\u00d5":-1,"\u0106":-1,"\u010c":-1,"\u0108":-1,"\u010a":-1,"\u011e":-1,"\u011c":-1,"\u0122":-1,"\u0120":-1,"\u014e":-1,"\u0150":-1,"\u014c":-1,"\u01fe":-1,"\u01a0":-1,"V":-6,"W":-6,"\u0174":-6,"X":-2,"Y":4,"\u00dd":4,"\u0178":4,"\u0232":4,"A":-2,"\u00c6":-2,"\u00c1":-2,"\u00c2":-2,"\u00c4":-2,"\u00c0":-2,"\u00c5":-2,"\u00c3":-2,"\u0102":-2,"\u0100":-2,"\u0104":-2,"\u01fa":-2,"\u01fc":-2,"a":-4,"\u00e6":-4,"\u00e1":-4,"\u00e2":-4,"\u00e4":-4,"\u00e0":-4,"\u00e5":-4,"\u00e3":-4,"\u0103":-4,"\u0101":-4,"\u0105":-4,"\u01fb":-4,"\u01fd":-4,"b":-3,"h":-3,"k":-3,"l":-3,"\u0142":-3,"\u0127":-3,"\u0125":-3,"\u0137":-3,"\u013a":-3,"\u013e":-3,"\u013c":-3,"\u0140":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-7,"\u0167":-7,"\u0165":-7,"\u0163":-7,"\u021b":-7,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5}},"\u015a":{"d":"15,-12r8,-26v29,24,107,22,107,-26v0,-23,-12,-39,-46,-48v-88,-22,-82,-136,15,-135v25,0,42,6,53,12r-8,26v-8,-4,-24,-12,-46,-12v-33,0,-46,20,-46,37v0,23,14,36,48,46v88,26,83,142,-23,142v-23,0,-49,-7,-62,-16xm108,-299r38,0r-46,42r-26,0","w":177,"k":{"\u01fd":-1,"\u00e6":-1,"a":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"j":1,"\u0135":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0111":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u01a1":-2,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"-":-2,"\u00ad":-2}},"\u015e":{"d":"15,-12r8,-26v29,24,107,22,107,-26v0,-23,-12,-39,-46,-48v-88,-22,-82,-136,15,-135v25,0,42,6,53,12r-8,26v-8,-4,-24,-12,-46,-12v-33,0,-46,20,-46,37v0,23,14,36,48,46v80,24,84,123,-1,140r-10,16v14,2,25,12,25,25v1,30,-41,35,-62,23r5,-16v10,7,34,11,35,-6v0,-9,-11,-13,-28,-15v3,-8,15,-20,12,-25v-21,0,-47,-7,-61,-16","w":177,"k":{"\u01fd":-1,"\u00e6":-1,"a":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"j":1,"\u0135":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0111":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u01a1":-2,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"-":-2,"\u00ad":-2}},"\u015c":{"d":"15,-12r8,-26v29,24,107,22,107,-26v0,-23,-12,-39,-46,-48v-88,-22,-82,-136,15,-135v25,0,42,6,53,12r-8,26v-8,-4,-24,-12,-46,-12v-33,0,-46,20,-46,37v0,23,14,36,48,46v88,26,83,142,-23,142v-23,0,-49,-7,-62,-16xm77,-298r24,0r38,41r-27,0r-23,-25r-23,25r-26,0","w":177,"k":{"\u01fd":-1,"\u00e6":-1,"a":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"j":1,"\u0135":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0111":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u01a1":-2,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"-":-2,"\u00ad":-2}},"\u0218":{"d":"15,-12r8,-26v29,24,107,22,107,-26v0,-23,-12,-39,-46,-48v-88,-22,-82,-136,15,-135v25,0,42,6,53,12r-8,26v-8,-4,-24,-12,-46,-12v-33,0,-46,20,-46,37v0,23,14,36,48,46v88,26,83,142,-23,142v-23,0,-49,-7,-62,-16xm67,80r-7,-15v26,-2,36,-31,15,-45r24,-5v30,20,3,71,-32,65","w":177,"k":{"\u01fd":-1,"\u00e6":-1,"a":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"j":1,"\u0135":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0111":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u01a1":-2,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"-":-2,"\u00ad":-2}},"\u0164":{"d":"73,0r0,-216r-73,0r0,-27r179,0r0,27r-74,0r0,216r-32,0xm102,-256r-25,0r-37,-41r26,0v8,8,15,18,24,25r23,-25r26,0","w":178,"k":{"\u0129":16,"\u012f":16,"\u012b":16,"\u012d":16,"\u0133":16,"\u00ec":16,"\u00ef":16,"\u00ee":16,"\u00ed":16,"\u00e8":26,"\u00e0":23,"\u0131":16,"i":16,"T":-14,"\u0166":-14,"\u0164":-14,"\u0162":-14,"\u021a":-14,"J":15,"\u0134":15,"C":10,"G":10,"O":10,"Q":10,"\u00d8":10,"\u0152":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"\u0106":10,"\u010c":10,"\u0108":10,"\u010a":10,"\u011e":10,"\u011c":10,"\u0122":10,"\u0120":10,"\u014e":10,"\u0150":10,"\u014c":10,"\u01fe":10,"\u01a0":10,"V":-14,"W":-14,"\u0174":-14,"X":-8,"Y":-10,"\u00dd":-10,"\u0178":-10,"\u0232":-10,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"\u0102":27,"\u0100":27,"\u0104":27,"\u01fa":27,"\u01fc":27,"S":2,"\u0160":2,"\u015a":2,"\u015e":2,"\u015c":2,"\u0218":2,"a":23,"\u00e6":23,"\u00e1":23,"\u00e2":23,"\u00e4":23,"\u00e5":23,"\u00e3":23,"\u0103":23,"\u0101":23,"\u0105":23,"\u01fb":23,"\u01fd":23,"g":23,"\u011f":23,"\u011d":23,"\u0123":23,"\u0121":23,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"m":16,"n":16,"p":16,"r":16,"\u00f1":16,"\u014b":16,"\u0138":16,"\u0144":16,"\u0148":16,"\u0146":16,"\u0155":16,"\u0159":16,"\u0157":16,"c":26,"d":26,"e":26,"o":26,"q":26,"\u00f8":26,"\u0153":26,"\u00e7":26,"\u00e9":26,"\u00ea":26,"\u00eb":26,"\u00f3":26,"\u00f4":26,"\u00f6":26,"\u00f2":26,"\u00f5":26,"\u0111":26,"\u0107":26,"\u010d":26,"\u0109":26,"\u010b":26,"\u010f":26,"\u0115":26,"\u011b":26,"\u0117":26,"\u0113":26,"\u0119":26,"\u014f":26,"\u0151":26,"\u014d":26,"\u01ff":26,"\u01a1":26,"s":19,"\u0161":19,"\u015b":19,"\u015f":19,"\u015d":19,"\u0219":19,"u":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u00f9":16,"\u016d":16,"\u0171":16,"\u016b":16,"\u0173":16,"\u016f":16,"\u0169":16,"\u01b0":16,"v":14,"w":14,"y":14,"\u00fd":14,"\u00ff":14,"\u0175":14,"\u0233":14,"z":18,"\u017e":18,"\u017a":18,"\u017c":18,"x":12,":":9,";":9,"\u00bb":13,"\u00ab":18,"-":18,"\u00ad":18,")":-22,"]":-22,"}":-22,"\"":-6,"'":-6,",":22,".":22,"\u00b5":12}},"\u0162":{"d":"73,0r0,-216r-73,0r0,-27r179,0r0,27r-74,0r0,216r-32,0xm65,80r-6,-15v26,-2,36,-32,14,-45r24,-5v30,20,3,71,-32,65","w":178,"k":{"\u0129":16,"\u012f":16,"\u012b":16,"\u012d":16,"\u0133":16,"\u00ec":16,"\u00ef":16,"\u00ee":16,"\u00ed":16,"\u00e8":26,"\u00e0":23,"\u0131":16,"i":16,"T":-14,"\u0166":-14,"\u0164":-14,"\u0162":-14,"\u021a":-14,"J":15,"\u0134":15,"C":10,"G":10,"O":10,"Q":10,"\u00d8":10,"\u0152":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"\u0106":10,"\u010c":10,"\u0108":10,"\u010a":10,"\u011e":10,"\u011c":10,"\u0122":10,"\u0120":10,"\u014e":10,"\u0150":10,"\u014c":10,"\u01fe":10,"\u01a0":10,"V":-14,"W":-14,"\u0174":-14,"X":-8,"Y":-10,"\u00dd":-10,"\u0178":-10,"\u0232":-10,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"\u0102":27,"\u0100":27,"\u0104":27,"\u01fa":27,"\u01fc":27,"S":2,"\u0160":2,"\u015a":2,"\u015e":2,"\u015c":2,"\u0218":2,"a":23,"\u00e6":23,"\u00e1":23,"\u00e2":23,"\u00e4":23,"\u00e5":23,"\u00e3":23,"\u0103":23,"\u0101":23,"\u0105":23,"\u01fb":23,"\u01fd":23,"g":23,"\u011f":23,"\u011d":23,"\u0123":23,"\u0121":23,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"m":16,"n":16,"p":16,"r":16,"\u00f1":16,"\u014b":16,"\u0138":16,"\u0144":16,"\u0148":16,"\u0146":16,"\u0155":16,"\u0159":16,"\u0157":16,"c":26,"d":26,"e":26,"o":26,"q":26,"\u00f8":26,"\u0153":26,"\u00e7":26,"\u00e9":26,"\u00ea":26,"\u00eb":26,"\u00f3":26,"\u00f4":26,"\u00f6":26,"\u00f2":26,"\u00f5":26,"\u0111":26,"\u0107":26,"\u010d":26,"\u0109":26,"\u010b":26,"\u010f":26,"\u0115":26,"\u011b":26,"\u0117":26,"\u0113":26,"\u0119":26,"\u014f":26,"\u0151":26,"\u014d":26,"\u01ff":26,"\u01a1":26,"s":19,"\u0161":19,"\u015b":19,"\u015f":19,"\u015d":19,"\u0219":19,"u":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u00f9":16,"\u016d":16,"\u0171":16,"\u016b":16,"\u0173":16,"\u016f":16,"\u0169":16,"\u01b0":16,"v":14,"w":14,"y":14,"\u00fd":14,"\u00ff":14,"\u0175":14,"\u0233":14,"z":18,"\u017e":18,"\u017a":18,"\u017c":18,"x":12,":":9,";":9,"\u00bb":13,"\u00ab":18,"-":18,"\u00ad":18,")":-22,"]":-22,"}":-22,"\"":-6,"'":-6,",":22,".":22,"\u00b5":12}},"\u016c":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-23,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-29,-87,-104r0,-143xm72,-298r18,0v2,8,8,18,26,18v18,0,25,-9,27,-18r18,0v-1,21,-14,38,-45,38v-31,0,-43,-16,-44,-38","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fa":12,"\u01fc":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u0163":-1,"\u021b":-1,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u0175":1,"\u0233":1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,",":10,".":10}},"\u0170":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-23,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-29,-87,-104r0,-143xm102,-298r34,0r-40,41r-23,0xm155,-298r34,0r-40,41r-23,0","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fa":12,"\u01fc":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u0163":-1,"\u021b":-1,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u0175":1,"\u0233":1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,",":10,".":10}},"\u016a":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-23,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-29,-87,-104r0,-143xm73,-284r86,0r0,20r-86,0r0,-20","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fa":12,"\u01fc":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u0163":-1,"\u021b":-1,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u0175":1,"\u0233":1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,",":10,".":10}},"\u0172":{"d":"150,49r4,16v-21,14,-61,10,-61,-20v0,-16,10,-31,20,-41v-50,-1,-85,-29,-86,-104r0,-143r32,0r0,144v0,54,24,77,56,77v36,0,59,-23,59,-77r0,-144r32,0r0,142v0,62,-28,93,-67,101v-15,11,-37,48,-6,52v6,0,12,-1,17,-3","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fa":12,"\u01fc":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u0163":-1,"\u021b":-1,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u0175":1,"\u0233":1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,",":10,".":10}},"\u016e":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-23,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-29,-87,-104r0,-143xm117,-314v22,0,36,14,36,32v0,18,-15,32,-36,32v-22,0,-36,-14,-36,-32v0,-18,14,-32,36,-32xm116,-301v-10,0,-17,9,-17,19v0,9,7,19,17,19v11,0,18,-9,18,-19v0,-10,-7,-19,-18,-19","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fa":12,"\u01fc":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u0163":-1,"\u021b":-1,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u0175":1,"\u0233":1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,",":10,".":10}},"\u0168":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-23,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-29,-87,-104r0,-143xm161,-294v3,49,-42,32,-63,21v-6,0,-8,6,-9,16r-17,0v-1,-22,8,-37,24,-37v17,0,43,34,48,0r17,0","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fa":12,"\u01fc":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u0163":-1,"\u021b":-1,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u0175":1,"\u0233":1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,",":10,".":10}},"\u0174":{"d":"100,0r-33,0r-62,-243r34,0r47,207r52,-207r33,0r30,123v8,28,10,60,17,84r52,-207r32,0r-69,243r-33,0r-30,-126v-9,-30,-11,-58,-17,-80v-12,65,-37,141,-53,206xm141,-297r24,0r37,41r-26,0v-8,-8,-15,-17,-24,-24r-23,24r-25,0","w":304,"k":{"\u012d":6,"\u01fc":21,"\u00ef":6,"\u00c6":21,"T":-12,"\u0166":-12,"\u0164":-12,"\u0162":-12,"\u021a":-12,"J":8,"\u0134":8,"V":-6,"W":-6,"\u0174":-6,"A":21,"\u00c1":21,"\u00c2":21,"\u00c4":21,"\u00c0":21,"\u00c5":21,"\u00c3":21,"\u0102":21,"\u0100":21,"\u0104":21,"\u01fa":21,"a":12,"\u00e6":12,"\u00e1":12,"\u00e2":12,"\u00e4":12,"\u00e0":12,"\u00e5":12,"\u00e3":12,"\u0103":12,"\u0101":12,"\u0105":12,"\u01fb":12,"\u01fd":12,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"i":6,"m":6,"n":6,"p":6,"r":6,"\u0131":6,"\u00ed":6,"\u00ee":6,"\u00ec":6,"\u00f1":6,"\u014b":6,"\u0138":6,"\u0133":6,"\u012b":6,"\u012f":6,"\u0129":6,"\u0144":6,"\u0148":6,"\u0146":6,"\u0155":6,"\u0159":6,"\u0157":6,"c":12,"d":12,"e":12,"o":12,"q":12,"\u00f8":12,"\u0153":12,"\u00e7":12,"\u00e9":12,"\u00ea":12,"\u00eb":12,"\u00e8":12,"\u00f3":12,"\u00f4":12,"\u00f6":12,"\u00f2":12,"\u00f5":12,"\u0111":12,"\u0107":12,"\u010d":12,"\u0109":12,"\u010b":12,"\u010f":12,"\u0115":12,"\u011b":12,"\u0117":12,"\u0113":12,"\u0119":12,"\u014f":12,"\u0151":12,"\u014d":12,"\u01ff":12,"\u01a1":12,"s":9,"\u0161":9,"\u015b":9,"\u015f":9,"\u015d":9,"\u0219":9,"t":-3,"\u0167":-3,"\u0165":-3,"\u0163":-3,"\u021b":-3,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u016d":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"\u0169":6,"\u01b0":6,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u0175":1,"\u0233":1,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,":":6,";":6,"\u00bb":4,"\u00ab":9,"-":5,"\u00ad":5,")":-20,"]":-20,"}":-20,"\"":-7,"'":-7,",":20,".":20}},"\u0176":{"d":"113,0r-32,0r0,-103r-76,-140r35,0r59,117r60,-117r35,0r-81,140r0,103xm85,-297r24,0r38,41r-26,0v-8,-8,-15,-17,-24,-24r-23,24r-26,0","w":194},"\u0232":{"d":"113,0r-32,0r0,-103r-76,-140r35,0r59,117r60,-117r35,0r-81,140r0,103xm54,-284r86,0r0,20r-86,0r0,-20","w":194,"k":{"\u012d":5,"\u00f6":27,"\u00ef":5,"\u00eb":27,"\u00e4":25,"T":-12,"\u0166":-12,"\u0164":-12,"\u0162":-12,"\u021a":-12,"J":19,"\u0134":19,"M":4,"C":13,"G":13,"O":13,"Q":13,"\u00d8":13,"\u0152":13,"\u00c7":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"\u0106":13,"\u010c":13,"\u0108":13,"\u010a":13,"\u011e":13,"\u011c":13,"\u0122":13,"\u0120":13,"\u014e":13,"\u0150":13,"\u014c":13,"\u01fe":13,"\u01a0":13,"V":-10,"W":-10,"\u0174":-10,"X":1,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,"\u0102":29,"\u0100":29,"\u0104":29,"\u01fa":29,"\u01fc":29,"S":5,"\u0160":5,"\u015a":5,"\u015e":5,"\u015c":5,"\u0218":5,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"\u0141":3,"\u00d0":3,"\u00c9":3,"\u00ca":3,"\u00cb":3,"\u00c8":3,"\u00cd":3,"\u00ce":3,"\u00cf":3,"\u00cc":3,"\u00d1":3,"\u0110":3,"\u014a":3,"\u0126":3,"\u0132":3,"\u010e":3,"\u0114":3,"\u011a":3,"\u0116":3,"\u0112":3,"\u0118":3,"\u0124":3,"\u012c":3,"\u0130":3,"\u012a":3,"\u012e":3,"\u0128":3,"\u0136":3,"\u0139":3,"\u013d":3,"\u013b":3,"\u013f":3,"\u0143":3,"\u0147":3,"\u0145":3,"\u0154":3,"\u0158":3,"\u0156":3,"a":25,"\u00e6":25,"\u00e1":25,"\u00e2":25,"\u00e0":25,"\u00e5":25,"\u00e3":25,"\u0103":25,"\u0101":25,"\u0105":25,"\u01fb":25,"\u01fd":25,"g":14,"\u011f":14,"\u011d":14,"\u0123":14,"\u0121":14,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"i":5,"m":5,"n":5,"p":5,"r":5,"\u0131":5,"\u00ed":5,"\u00ee":5,"\u00ec":5,"\u00f1":5,"\u014b":5,"\u0138":5,"\u0133":5,"\u012b":5,"\u012f":5,"\u0129":5,"\u0144":5,"\u0148":5,"\u0146":5,"\u0155":5,"\u0159":5,"\u0157":5,"c":27,"d":27,"e":27,"o":27,"q":27,"\u00f8":27,"\u0153":27,"\u00e7":27,"\u00e9":27,"\u00ea":27,"\u00e8":27,"\u00f3":27,"\u00f4":27,"\u00f2":27,"\u00f5":27,"\u0111":27,"\u0107":27,"\u010d":27,"\u0109":27,"\u010b":27,"\u010f":27,"\u0115":27,"\u011b":27,"\u0117":27,"\u0113":27,"\u0119":27,"\u014f":27,"\u0151":27,"\u014d":27,"\u01ff":27,"\u01a1":27,"s":19,"\u0161":19,"\u015b":19,"\u015f":19,"\u015d":19,"\u0219":19,"t":7,"\u0167":7,"\u0165":7,"\u0163":7,"\u021b":7,"u":19,"\u00fa":19,"\u00fb":19,"\u00fc":19,"\u00f9":19,"\u016d":19,"\u0171":19,"\u016b":19,"\u0173":19,"\u016f":19,"\u0169":19,"\u01b0":19,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u0175":10,"\u0233":10,"z":9,"\u017e":9,"\u017a":9,"\u017c":9,"x":9,":":12,";":12,"\u00bb":7,"\u00ab":18,"-":18,"\u00ad":18,")":-20,"]":-20,"}":-20,"\"":-3,"'":-3,",":34,".":34}},"\u0179":{"d":"11,0r0,-18r134,-198r-123,0r0,-27r164,0r0,19r-134,198r136,0r0,26r-177,0xm117,-298r38,0r-46,42r-25,0","w":199,"k":{"J":-3,"\u0134":-3,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u0152":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u01a0":8,"X":2,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"-":10,"\u00ad":10}},"\u017b":{"d":"11,0r0,-18r134,-198r-123,0r0,-27r164,0r0,19r-134,198r136,0r0,26r-177,0xm101,-259v-23,-1,-23,-37,1,-37v10,0,17,9,17,18v0,9,-8,19,-18,19","w":199,"k":{"J":-3,"\u0134":-3,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u0152":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u01a0":8,"X":2,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"-":10,"\u00ad":10}},"\u01fc":{"d":"32,0r-32,0r111,-243r151,0r0,27r-103,0r9,77r91,0r0,26r-87,0r11,87r89,0r0,26r-116,0r-11,-86r-74,0xm81,-111r61,0v-6,-35,-4,-78,-14,-109v-13,37,-31,74,-47,109xm176,-298r38,0r-46,42r-26,0","w":283,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u0162":-6,"\u021a":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u0174":-3,"Y":-1,"\u00dd":-1,"\u0178":-1,"\u0232":-1,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"\u01b0":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,",":1,".":1}},"\u0103":{"d":"42,-246r19,0v2,14,11,25,26,25v17,0,25,-13,26,-25r18,0v0,27,-17,45,-44,45v-32,0,-45,-23,-45,-45xm82,-178v96,3,57,98,70,178r-29,0v-2,-7,0,-17,-4,-22v-10,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-16,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm44,-50v0,53,74,30,74,-9r0,-30v-35,-1,-74,5,-74,39","w":173},"\u0101":{"d":"46,-231r81,0r0,20r-81,0r0,-20xm82,-178v96,3,57,98,70,178r-29,0v-2,-7,0,-17,-4,-22v-10,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-16,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm44,-50v0,53,74,30,74,-9r0,-30v-35,-1,-74,5,-74,39","w":173},"\u0105":{"d":"82,-178v96,2,57,98,70,178v-18,-2,-21,21,-23,35v-3,19,21,21,33,14r5,17v-22,15,-62,10,-62,-22v0,-27,27,-41,14,-66v-10,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-16,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm44,-50v0,53,74,30,74,-9r0,-30v-35,-1,-74,5,-74,39","w":173},"\u01fb":{"d":"107,-300r35,0r-51,38r-23,0xm82,-178v96,3,57,98,70,178r-29,0v-2,-7,0,-17,-4,-22v-10,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-16,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm44,-50v0,53,74,30,74,-9r0,-30v-35,-1,-74,5,-74,39xm87,-187v-22,0,-37,-15,-37,-33v0,-19,14,-34,37,-34v22,0,36,15,36,34v0,19,-15,33,-36,33xm86,-201v12,0,19,-9,19,-20v0,-11,-7,-19,-19,-19v-11,0,-17,9,-17,20v0,9,7,19,17,19","w":173},"\u0107":{"d":"109,-249r35,0r-44,51r-23,0xm145,-30r5,24v-8,4,-27,10,-50,10v-53,0,-86,-36,-86,-89v0,-70,72,-112,137,-84r-7,25v-42,-24,-106,5,-98,57v-4,57,55,78,99,57","w":161,"k":{"T":4,"\u0166":4,"\u0164":4,"\u0162":4,"\u021a":4,"f":-1,"\u00df":-1,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0111":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"\u01a1":2,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,"\u0175":-6,"\u0233":-6,"\u00bb":-5,"-":-2,"\u00ad":-2,",":4,".":4}},"\u010d":{"d":"106,-198r-23,0r-35,-51r25,0v8,11,13,24,22,34r21,-34r24,0xm145,-30r5,24v-8,4,-27,10,-50,10v-53,0,-86,-36,-86,-89v0,-70,72,-112,137,-84r-7,25v-42,-24,-106,5,-98,57v-4,57,55,78,99,57","w":161,"k":{"T":4,"\u0166":4,"\u0164":4,"\u0162":4,"\u021a":4,"f":-1,"\u00df":-1,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0111":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"\u01a1":2,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,"\u0175":-6,"\u0233":-6,"\u00bb":-5,"-":-2,"\u00ad":-2,",":4,".":4}},"\u0109":{"d":"82,-249r22,0r35,51r-25,0v-7,-11,-12,-24,-21,-34r-21,34r-23,0xm145,-30r5,24v-8,4,-27,10,-50,10v-53,0,-86,-36,-86,-89v0,-70,72,-112,137,-84r-7,25v-42,-24,-106,5,-98,57v-4,57,55,78,99,57","w":161,"k":{"T":4,"\u0166":4,"\u0164":4,"\u0162":4,"\u021a":4,"f":-1,"\u00df":-1,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0111":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"\u01a1":2,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,"\u0175":-6,"\u0233":-6,"\u00bb":-5,"-":-2,"\u00ad":-2,",":4,".":4}},"\u010b":{"d":"95,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19xm145,-30r5,24v-8,4,-27,10,-50,10v-53,0,-86,-36,-86,-89v0,-70,72,-112,137,-84r-7,25v-42,-24,-106,5,-98,57v-4,57,55,78,99,57","w":161,"k":{"T":4,"\u0166":4,"\u0164":4,"\u0162":4,"\u021a":4,"f":-1,"\u00df":-1,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0111":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"\u01a1":2,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,"\u0175":-6,"\u0233":-6,"\u00bb":-5,"-":-2,"\u00ad":-2,",":4,".":4}},"\u010f":{"d":"145,-256r32,0r1,256r-28,0r-2,-30v-34,62,-134,33,-134,-55v0,-86,90,-120,131,-67r0,-104xm97,-22v36,0,48,-34,48,-81v0,-31,-19,-50,-47,-50v-33,0,-52,28,-52,67v0,35,17,64,51,64xm217,-259v29,16,-3,97,-24,61v13,-11,19,-45,1,-56","w":206,"k":{"\u0140":-20,"\u013c":-20,"\u013e":-20,"\u013a":-20,"\u0137":-20,"\u0125":-20,"\u0127":-20,"\u0142":-20,"l":-20,"k":-20,"h":-20,"b":-20,",":4,".":4}},"\u0115":{"d":"46,-246r19,0v2,14,11,25,26,25v17,0,25,-13,26,-25r19,0v0,27,-18,45,-45,45v-32,0,-45,-23,-45,-45xm166,-81r-122,0v-2,64,66,69,108,51r5,23v-11,5,-30,11,-58,11v-54,0,-85,-35,-85,-88v0,-53,30,-94,81,-94v63,0,75,53,71,97xm44,-104r93,0v0,-20,-8,-52,-44,-52v-32,0,-46,30,-49,52","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"x":1,"-":-10,"\u00ad":-10,",":4,".":4}},"\u011b":{"d":"103,-198r-23,0r-35,-51r25,0v8,11,13,24,22,34r21,-34r24,0xm166,-81r-122,0v-2,64,66,69,108,51r5,23v-11,5,-30,11,-58,11v-54,0,-85,-35,-85,-88v0,-53,30,-94,81,-94v63,0,75,53,71,97xm44,-104r93,0v0,-20,-8,-52,-44,-52v-32,0,-46,30,-49,52","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"x":1,"-":-10,"\u00ad":-10,",":4,".":4}},"\u0117":{"d":"109,-224v0,10,-7,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18v10,0,17,8,17,18xm166,-81r-122,0v-2,64,66,69,108,51r5,23v-11,5,-30,11,-58,11v-54,0,-85,-35,-85,-88v0,-53,30,-94,81,-94v63,0,75,53,71,97xm44,-104r93,0v0,-20,-8,-52,-44,-52v-32,0,-46,30,-49,52","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"x":1,"-":-10,"\u00ad":-10,",":4,".":4}},"\u0113":{"d":"51,-231r81,0r0,20r-81,0r0,-20xm166,-81r-122,0v-2,64,66,69,108,51r5,23v-11,5,-30,11,-58,11v-54,0,-85,-35,-85,-88v0,-53,30,-94,81,-94v63,0,75,53,71,97xm44,-104r93,0v0,-20,-8,-52,-44,-52v-32,0,-46,30,-49,52","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"x":1,"-":-10,"\u00ad":-10,",":4,".":4}},"\u0119":{"d":"157,-7v-23,7,-50,22,-50,44v0,18,19,18,32,12r5,16v-20,16,-62,11,-62,-20v0,-19,16,-32,26,-42v-57,6,-95,-33,-94,-87v0,-53,30,-94,81,-94v63,0,75,53,71,97r-122,0v-2,64,66,69,108,51xm44,-104r93,0v0,-20,-8,-52,-44,-52v-32,0,-46,30,-49,52","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"x":1,"-":-10,"\u00ad":-10,",":4,".":4}},"\u011f":{"d":"53,-246r19,0v2,14,11,25,26,25v17,0,25,-13,26,-25r19,0v0,27,-18,45,-45,45v-32,0,-45,-23,-45,-45xm175,-25v10,94,-78,119,-146,86r8,-24v38,22,112,22,107,-47v-1,-6,2,-16,-1,-20v-10,16,-28,29,-55,29v-43,0,-74,-37,-74,-85v0,-90,99,-118,133,-62r2,-26r27,0xm97,-25v35,1,51,-35,47,-80v-3,-29,-18,-48,-46,-48v-30,0,-52,26,-52,66v0,34,17,62,51,62","w":201,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"f":-1,"\u00df":-1,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u0138":2,"\u0133":2,"\u012d":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,",":5,".":5}},"\u011d":{"d":"89,-251r22,0r35,52r-25,0r-21,-34r-21,34r-24,0xm175,-25v10,94,-78,119,-146,86r8,-24v38,22,112,22,107,-47v-1,-6,2,-16,-1,-20v-10,16,-28,29,-55,29v-43,0,-74,-37,-74,-85v0,-90,99,-118,133,-62r2,-26r27,0xm97,-25v35,1,51,-35,47,-80v-3,-29,-18,-48,-46,-48v-30,0,-52,26,-52,66v0,34,17,62,51,62","w":201,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"f":-1,"\u00df":-1,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u0138":2,"\u0133":2,"\u012d":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,",":5,".":5}},"\u0123":{"d":"175,-25v10,94,-78,119,-146,86r8,-24v38,22,112,22,107,-47v-1,-6,2,-16,-1,-20v-10,16,-28,29,-55,29v-43,0,-74,-37,-74,-85v0,-90,99,-118,133,-62r2,-26r27,0xm97,-25v35,1,51,-35,47,-80v-3,-29,-18,-48,-46,-48v-30,0,-52,26,-52,66v0,34,17,62,51,62xm122,-255r6,13v-28,0,-36,31,-16,45r-22,4v-32,-20,-4,-68,32,-62","w":201,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"f":-1,"\u00df":-1,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u0138":2,"\u0133":2,"\u012d":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,",":5,".":5}},"\u0121":{"d":"100,-206v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19xm175,-25v10,94,-78,119,-146,86r8,-24v38,22,112,22,107,-47v-1,-6,2,-16,-1,-20v-10,16,-28,29,-55,29v-43,0,-74,-37,-74,-85v0,-90,99,-118,133,-62r2,-26r27,0xm97,-25v35,1,51,-35,47,-80v-3,-29,-18,-48,-46,-48v-30,0,-52,26,-52,66v0,34,17,62,51,62","w":201,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"f":-1,"\u00df":-1,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u0138":2,"\u0133":2,"\u012d":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,",":5,".":5}},"\u0125":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r0,-256r32,0r1,109v29,-45,116,-51,116,43r0,104r-32,0v-6,-59,22,-152,-40,-152xm31,-303r24,0r38,41r-26,0v-8,-8,-15,-18,-24,-25r-23,25r-26,0","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0233":5,"\"":3,"'":3}},"\u012d":{"d":"-1,-246r18,0v2,14,11,25,26,25v17,0,25,-13,26,-25r19,0v0,27,-18,45,-45,45v-32,0,-44,-23,-44,-45xm58,0r-32,0r0,-174r32,0r0,174","w":84},"\u012b":{"d":"2,-231r81,0r0,20r-81,0r0,-20xm58,0r-32,0r0,-174r32,0r0,174","w":84},"\u012f":{"d":"62,-225v0,11,-7,20,-21,20v-12,0,-19,-9,-19,-20v0,-11,8,-21,20,-21v12,0,20,10,20,21xm58,-174r0,174v-27,-4,-37,53,-8,54v7,0,13,-1,17,-3r5,16v-23,15,-63,10,-63,-23v0,-18,11,-34,17,-44r0,-174r32,0","w":84},"\u0129":{"d":"87,-243v3,50,-40,34,-63,23v-6,0,-8,6,-9,16r-17,0v-3,-49,38,-39,62,-24v6,0,9,-3,10,-15r17,0xm58,0r-32,0r0,-174r32,0r0,174","w":84},"\u0135":{"d":"-16,51v41,-7,46,-16,46,-79r0,-146r32,0v-8,98,36,248,-75,250xm33,-247r22,0r34,52r-24,0v-8,-11,-13,-25,-22,-35r-21,35r-23,0","w":87,"k":{",":4,".":4}},"\u0137":{"d":"58,-256r0,162r67,-80r38,0r-67,71r76,103r-38,0r-60,-84r-16,18r0,66r-32,0r0,-256r32,0xm64,80r-6,-15v26,-1,36,-32,14,-45r24,-5v30,20,3,71,-32,65","w":168,"k":{"T":7,"\u0166":7,"\u0164":7,"\u0162":7,"\u021a":7,"a":-6,"\u00e6":-6,"\u00e1":-6,"\u00e2":-6,"\u00e4":-6,"\u00e0":-6,"\u00e5":-6,"\u00e3":-6,"\u0103":-6,"\u0101":-6,"\u0105":-6,"\u01fb":-6,"\u01fd":-6,"b":-6,"h":-6,"k":-6,"l":-6,"\u0142":-6,"\u0127":-6,"\u0125":-6,"\u0137":-6,"\u013a":-6,"\u013e":-6,"\u013c":-6,"\u0140":-6,"i":-6,"m":-6,"n":-6,"p":-6,"r":-6,"\u0131":-6,"\u00ed":-6,"\u00ee":-6,"\u00ef":-6,"\u00ec":-6,"\u00f1":-6,"\u014b":-6,"\u0138":-6,"\u0133":-6,"\u012d":-6,"\u012b":-6,"\u012f":-6,"\u0129":-6,"\u0144":-6,"\u0148":-6,"\u0146":-6,"\u0155":-6,"\u0159":-6,"\u0157":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,":":-4,";":-4,"-":4,"\u00ad":4,",":-5,".":-5}},"\u013a":{"d":"26,0r0,-256r32,0r0,256r-32,0xm55,-308r39,0r-46,42r-26,0","w":84,"k":{",":4,".":4}},"\u013e":{"d":"26,0r0,-256r32,0r0,256r-32,0xm86,-188r-14,-10v13,-10,19,-44,2,-56r23,-5v6,4,12,14,12,27v0,26,-18,39,-23,44","w":87,"k":{",":4,".":4}},"\u013c":{"d":"26,0r0,-256r32,0r0,256r-32,0xm19,80r-6,-15v26,-1,36,-32,14,-45r24,-5v30,20,3,71,-32,65","w":84,"k":{",":4,".":4}},"\u0140":{"d":"26,0r0,-256r32,0r0,256r-32,0xm91,-123v-10,0,-17,-9,-17,-18v0,-10,7,-18,17,-18v9,0,17,8,17,18v0,9,-7,18,-17,18","w":97,"k":{",":4,".":4}},"\u0144":{"d":"114,-249r35,0r-44,51r-22,0xm103,-152v-64,0,-41,91,-45,152r-32,0r-1,-174r28,0r2,29v27,-46,119,-55,120,41r0,104r-32,0v-6,-59,22,-152,-40,-152","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0233":5,"\"":3,"'":3}},"\u0148":{"d":"112,-198r-23,0r-35,-51r24,0r22,34r22,-34r23,0xm103,-152v-64,0,-41,91,-45,152r-32,0r-1,-174r28,0r2,29v27,-46,119,-55,120,41r0,104r-32,0v-6,-59,22,-152,-40,-152","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0233":5,"\"":3,"'":3}},"\u0146":{"d":"103,-152v-64,0,-41,91,-45,152r-32,0r-1,-174r28,0r2,29v27,-46,119,-55,120,41r0,104r-32,0v-6,-59,22,-152,-40,-152xm80,80r-7,-15v26,-1,36,-32,15,-46r24,-5v30,20,4,72,-32,66","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"t":1,"\u0167":1,"\u0165":1,"\u0163":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0233":5,"\"":3,"'":3}},"\u014f":{"d":"54,-246r19,0v2,14,11,25,26,25v17,0,25,-13,26,-25r18,0v0,27,-17,45,-44,45v-32,0,-45,-23,-45,-45xm100,-178v50,0,84,36,84,89v0,64,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92xm99,-154v-37,0,-53,34,-53,67v0,38,22,67,53,67v30,0,53,-28,53,-67v0,-30,-16,-67,-53,-67","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u0162":14,"\u021a":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"-":-5,"\u00ad":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"\u0151":{"d":"86,-249r31,0r-40,49r-20,0xm138,-249r30,0r-39,49r-20,0xm100,-178v50,0,84,36,84,89v0,64,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92xm99,-154v-37,0,-53,34,-53,67v0,38,22,67,53,67v30,0,53,-28,53,-67v0,-30,-16,-67,-53,-67","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u0162":14,"\u021a":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"-":-5,"\u00ad":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"\u014d":{"d":"58,-231r81,0r0,20r-81,0r0,-20xm100,-178v50,0,84,36,84,89v0,64,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92xm99,-154v-37,0,-53,34,-53,67v0,38,22,67,53,67v30,0,53,-28,53,-67v0,-30,-16,-67,-53,-67","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u0162":14,"\u021a":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"-":-5,"\u00ad":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"\u01ff":{"d":"113,-249r35,0r-44,51r-22,0xm14,-86v-2,-76,69,-113,130,-80r15,-21r14,10r-15,22v17,16,26,39,26,66v-2,83,-71,112,-130,81r-15,22r-13,-11r15,-22v-17,-16,-27,-39,-27,-67xm57,-43v26,-32,47,-68,72,-101v-57,-38,-114,44,-72,101xm141,-130v-26,31,-47,67,-72,100v56,40,109,-42,72,-100","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u0162":14,"\u021a":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"-":-5,"\u00ad":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"\u0155":{"d":"78,-249r35,0r-44,51r-23,0xm112,-147v-68,-12,-53,82,-54,147r-32,0r-1,-174r28,0v1,11,-1,25,2,34v10,-25,29,-42,57,-37r0,30","w":117,"k":{"\u0142":-1,"T":5,"\u0166":5,"\u0164":5,"\u0162":5,"\u021a":5,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fb":2,"\u01fd":2,"f":-11,"\u00df":-11,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"t":-9,"\u0167":-9,"\u0165":-9,"\u0163":-9,"\u021b":-9,"v":-9,"w":-9,"y":-9,"\u00fd":-9,"\u00ff":-9,"\u0175":-9,"\u0233":-9,"z":-3,"\u017e":-3,"\u017a":-3,"\u017c":-3,"x":-6,":":-3,";":-3,"\u00bb":-4,"\u00ab":2,"-":2,"\u00ad":2,",":19,".":19}},"\u0159":{"d":"77,-198r-23,0r-35,-51r25,0v8,11,13,24,22,34r21,-34r24,0xm112,-147v-68,-12,-53,82,-54,147r-32,0r-1,-174r28,0v1,11,-1,25,2,34v10,-25,29,-42,57,-37r0,30","w":117,"k":{"\u0142":-1,"T":5,"\u0166":5,"\u0164":5,"\u0162":5,"\u021a":5,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fb":2,"\u01fd":2,"f":-11,"\u00df":-11,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"t":-9,"\u0167":-9,"\u0165":-9,"\u0163":-9,"\u021b":-9,"v":-9,"w":-9,"y":-9,"\u00fd":-9,"\u00ff":-9,"\u0175":-9,"\u0233":-9,"z":-3,"\u017e":-3,"\u017a":-3,"\u017c":-3,"x":-6,":":-3,";":-3,"\u00bb":-4,"\u00ab":2,"-":2,"\u00ad":2,",":19,".":19}},"\u0157":{"d":"112,-147v-68,-12,-53,82,-54,147r-32,0r-1,-174r28,0v1,11,-1,25,2,34v10,-25,29,-42,57,-37r0,30xm22,80r-7,-15v26,-1,36,-31,15,-45r24,-5v30,20,3,71,-32,65","w":117,"k":{"\u0142":-1,"T":5,"\u0166":5,"\u0164":5,"\u0162":5,"\u021a":5,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fb":2,"\u01fd":2,"f":-11,"\u00df":-11,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"t":-9,"\u0167":-9,"\u0165":-9,"\u0163":-9,"\u021b":-9,"v":-9,"w":-9,"y":-9,"\u00fd":-9,"\u00ff":-9,"\u0175":-9,"\u0233":-9,"z":-3,"\u017e":-3,"\u017a":-3,"\u017c":-3,"x":-6,":":-3,";":-3,"\u00bb":-4,"\u00ab":2,"-":2,"\u00ad":2,",":19,".":19}},"\u015b":{"d":"88,-249r35,0r-44,51r-23,0xm14,-8r8,-24v17,16,76,18,76,-14v0,-15,-9,-25,-33,-32v-68,-19,-57,-99,14,-100v18,0,33,5,43,11r-8,23v-13,-12,-65,-16,-65,13v0,14,9,23,33,30v67,19,58,107,-19,105v-19,0,-37,-5,-49,-12","w":142,"k":{"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,",":4,".":4}},"\u015f":{"d":"14,-8r8,-24v17,16,76,18,76,-14v0,-15,-9,-25,-33,-32v-68,-19,-57,-99,14,-100v18,0,33,5,43,11r-8,23v-13,-12,-65,-16,-65,13v0,14,9,23,33,30v60,17,61,91,0,103r-10,16v13,2,25,11,25,25v1,30,-40,35,-62,23r5,-16v11,7,33,11,35,-6v0,-9,-11,-14,-28,-15v3,-8,15,-20,13,-25v-14,0,-32,-4,-46,-12","w":142,"k":{"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,",":4,".":4}},"\u015d":{"d":"61,-249r22,0r34,51r-24,0v-8,-11,-13,-24,-22,-34r-21,34r-23,0xm14,-8r8,-24v17,16,76,18,76,-14v0,-15,-9,-25,-33,-32v-68,-19,-57,-99,14,-100v18,0,33,5,43,11r-8,23v-13,-12,-65,-16,-65,13v0,14,9,23,33,30v67,19,58,107,-19,105v-19,0,-37,-5,-49,-12","w":142,"k":{"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,",":4,".":4}},"\u0219":{"d":"14,-8r8,-24v17,16,76,18,76,-14v0,-15,-9,-25,-33,-32v-68,-19,-57,-99,14,-100v18,0,33,5,43,11r-8,23v-13,-12,-65,-16,-65,13v0,14,9,23,33,30v67,19,58,107,-19,105v-19,0,-37,-5,-49,-12xm49,80r-6,-15v26,-1,36,-31,15,-45r23,-5v30,20,3,71,-32,65","w":142,"k":{"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,",":4,".":4}},"\u0165":{"d":"108,-1v-39,15,-75,-4,-75,-54r0,-95r-27,0r0,-24r27,0r0,-32r31,-10r0,42r46,0r0,24r-46,0r0,94v-3,31,19,38,43,32xm100,-195r-10,-12v13,-8,20,-37,3,-48r23,-5v26,13,3,66,-16,65","w":122,"k":{"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0111":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"\u01a1":2,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"-":2,"\u00ad":2,",":1,".":1}},"\u0163":{"d":"108,-1v-39,15,-75,-4,-75,-54r0,-95r-27,0r0,-24r27,0r0,-32r31,-10r0,42r46,0r0,24r-46,0r0,94v-3,31,19,38,43,32xm44,82r-6,-15v26,-1,36,-31,15,-45r23,-5v30,20,3,71,-32,65","w":119,"k":{"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0111":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"\u01a1":2,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"-":2,"\u00ad":2,",":1,".":1}},"\u016d":{"d":"54,-246r19,0v2,14,11,25,26,25v17,0,25,-13,26,-25r19,0v0,27,-18,45,-45,45v-32,0,-45,-23,-45,-45xm96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v5,57,-20,152,39,152","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,",":3,".":3}},"\u0171":{"d":"89,-249r31,0r-40,49r-20,0xm140,-249r31,0r-39,49r-20,0xm96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v5,57,-20,152,39,152","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,",":3,".":3}},"\u016b":{"d":"59,-231r81,0r0,20r-81,0r0,-20xm96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v5,57,-20,152,39,152","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,",":3,".":3}},"\u0173":{"d":"96,-22v64,0,40,-91,44,-152r32,0r2,174v-17,-4,-22,21,-23,34v-2,19,21,23,35,16r5,16v-23,16,-63,9,-63,-23v0,-28,26,-41,15,-71v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v5,57,-20,152,39,152","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,",":3,".":3}},"\u016f":{"d":"99,-193v-22,0,-36,-15,-36,-33v0,-19,14,-34,37,-34v22,0,35,15,35,34v0,19,-15,33,-36,33xm99,-207v12,0,19,-9,19,-20v0,-11,-7,-20,-19,-20v-25,0,-22,40,0,40xm96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v5,57,-20,152,39,152","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,",":3,".":3}},"\u0169":{"d":"144,-243v3,50,-40,34,-63,23v-6,0,-8,6,-9,16r-17,0v-3,-49,38,-39,62,-24v6,0,9,-3,10,-15r17,0xm96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v5,57,-20,152,39,152","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,",":3,".":3}},"\u0175":{"d":"121,-249r22,0r35,51r-25,0r-21,-34r-21,34r-24,0xm6,-174r33,0r37,144v11,-49,29,-97,44,-144r27,0r43,144v8,-48,26,-98,38,-144r32,0r-57,174r-28,0r-43,-140v-11,50,-29,93,-44,140r-29,0","w":264,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,":":-9,";":-9,"-":1,"\u00ad":1,",":14,".":14}},"\u0177":{"d":"75,-249r21,0r35,51r-24,0v-8,-11,-13,-24,-22,-34r-21,34r-23,0xm13,53v25,-9,46,-29,57,-58v-19,-59,-46,-112,-67,-169r35,0r50,138r46,-138r33,0v-41,87,-60,232,-146,254","w":169},"\u0233":{"d":"45,-231r81,0r0,20r-81,0r0,-20xm13,53v25,-9,46,-29,57,-58v-19,-59,-46,-112,-67,-169r35,0r50,138r46,-138r33,0v-41,87,-60,232,-146,254","w":169,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,":":-9,";":-9,"-":1,"\u00ad":1,",":14,".":14}},"\u017a":{"d":"94,-249r35,0r-44,51r-23,0xm6,0r0,-18r102,-131r-94,0r0,-25r133,0r-1,20r-100,129r102,0r0,25r-142,0","w":154,"k":{"T":7,"\u0166":7,"\u0164":7,"\u0162":7,"\u021a":7,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0111":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"\u01a1":3,"v":-9,"w":-9,"y":-9,"\u00fd":-9,"\u00ff":-9,"\u0175":-9,"\u0233":-9,"\u00bb":-6}},"\u017c":{"d":"78,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19xm6,0r0,-18r102,-131r-94,0r0,-25r133,0r-1,20r-100,129r102,0r0,25r-142,0","w":154,"k":{"T":7,"\u0166":7,"\u0164":7,"\u0162":7,"\u021a":7,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0111":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"\u01a1":3,"v":-9,"w":-9,"y":-9,"\u00fd":-9,"\u00ff":-9,"\u0175":-9,"\u0233":-9,"\u00bb":-6}},"\u01fd":{"d":"154,-249r35,0r-44,51r-22,0xm264,-84r-116,0v-8,63,64,74,103,53r5,23v-39,22,-109,13,-124,-27v-11,24,-35,39,-65,39v-36,0,-54,-25,-54,-50v0,-40,37,-64,105,-63v1,-19,-3,-46,-41,-46v-17,0,-34,7,-44,14r-8,-21v35,-25,102,-21,111,21v12,-23,34,-37,61,-37v58,0,71,54,67,94xm75,-19v37,-1,47,-28,43,-68v-33,-1,-74,5,-74,39v0,18,14,29,31,29xm147,-107r88,0v1,-18,-9,-49,-41,-49v-31,0,-46,29,-47,49","w":278,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,"x":1,"-":-10,"\u00ad":-10,",":4,".":4}},"\u01a0":{"d":"124,-22v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99v-52,0,-78,48,-78,101v0,51,28,98,78,98xm126,-247v32,0,50,17,77,19v23,2,16,-27,10,-38r25,-5v12,26,8,68,-31,61v16,19,28,48,28,86v0,84,-51,128,-113,128v-64,0,-109,-50,-109,-123v0,-77,48,-128,113,-128","w":248,"k":{"\u0142":-1,"T":9,"\u0166":9,"\u0164":9,"\u0162":9,"\u021a":9,"X":10,"Y":10,"\u00dd":10,"\u0178":10,"\u0232":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"x":2,"\u00ab":-5,"-":-5,"\u00ad":-5,")":3,"]":3,"}":3,",":12,".":12}},"\u01af":{"d":"213,-277r25,-5v13,26,6,61,-32,58r0,123v0,75,-39,105,-92,105v-50,0,-87,-29,-87,-104r0,-143r32,0r0,144v0,54,24,77,56,77v36,0,59,-23,59,-77r0,-144v17,-1,47,6,45,-13v0,-7,-2,-15,-6,-21","w":243,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fa":12,"\u01fc":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fb":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u0163":-1,"\u021b":-1,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u0175":1,"\u0233":1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,",":10,".":10}},"\u01a1":{"d":"99,-154v-37,0,-53,34,-53,67v0,38,22,67,53,67v30,0,53,-28,53,-67v0,-30,-16,-67,-53,-67xm100,-178v24,0,40,12,61,14v19,1,15,-25,8,-35r24,-5v12,24,7,61,-27,58v12,14,18,34,18,57v0,64,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92","w":199,"k":{"T":14,"\u0166":14,"\u0164":14,"\u0162":14,"\u021a":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"-":-5,"\u00ad":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"\u01b0":{"d":"96,-22v64,0,40,-91,44,-152v17,0,42,4,42,-14v0,-7,-2,-15,-6,-21r24,-4v15,23,5,60,-28,56r2,157r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v5,57,-20,152,39,152","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u0162":11,"\u021a":11,",":3,".":3}},"\u021a":{"d":"73,0r0,-216r-73,0r0,-27r179,0r0,27r-74,0r0,216r-32,0xm65,80r-6,-15v26,-2,36,-32,14,-45r24,-5v30,20,3,71,-32,65","w":178,"k":{"\u0129":16,"\u012f":16,"\u012b":16,"\u012d":16,"\u0133":16,"\u00ec":16,"\u00ef":16,"\u00ee":16,"\u00ed":16,"\u00e8":26,"\u00e0":23,"\u0131":16,"i":16,"T":-14,"\u0166":-14,"\u0164":-14,"\u0162":-14,"\u021a":-14,"J":15,"\u0134":15,"C":10,"G":10,"O":10,"Q":10,"\u00d8":10,"\u0152":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"\u0106":10,"\u010c":10,"\u0108":10,"\u010a":10,"\u011e":10,"\u011c":10,"\u0122":10,"\u0120":10,"\u014e":10,"\u0150":10,"\u014c":10,"\u01fe":10,"\u01a0":10,"V":-14,"W":-14,"\u0174":-14,"X":-8,"Y":-10,"\u00dd":-10,"\u0178":-10,"\u0232":-10,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"\u0102":27,"\u0100":27,"\u0104":27,"\u01fa":27,"\u01fc":27,"S":2,"\u0160":2,"\u015a":2,"\u015e":2,"\u015c":2,"\u0218":2,"a":23,"\u00e6":23,"\u00e1":23,"\u00e2":23,"\u00e4":23,"\u00e5":23,"\u00e3":23,"\u0103":23,"\u0101":23,"\u0105":23,"\u01fb":23,"\u01fd":23,"g":23,"\u011f":23,"\u011d":23,"\u0123":23,"\u0121":23,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"m":16,"n":16,"p":16,"r":16,"\u00f1":16,"\u014b":16,"\u0138":16,"\u0144":16,"\u0148":16,"\u0146":16,"\u0155":16,"\u0159":16,"\u0157":16,"c":26,"d":26,"e":26,"o":26,"q":26,"\u00f8":26,"\u0153":26,"\u00e7":26,"\u00e9":26,"\u00ea":26,"\u00eb":26,"\u00f3":26,"\u00f4":26,"\u00f6":26,"\u00f2":26,"\u00f5":26,"\u0111":26,"\u0107":26,"\u010d":26,"\u0109":26,"\u010b":26,"\u010f":26,"\u0115":26,"\u011b":26,"\u0117":26,"\u0113":26,"\u0119":26,"\u014f":26,"\u0151":26,"\u014d":26,"\u01ff":26,"\u01a1":26,"s":19,"\u0161":19,"\u015b":19,"\u015f":19,"\u015d":19,"\u0219":19,"u":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u00f9":16,"\u016d":16,"\u0171":16,"\u016b":16,"\u0173":16,"\u016f":16,"\u0169":16,"\u01b0":16,"v":14,"w":14,"y":14,"\u00fd":14,"\u00ff":14,"\u0175":14,"\u0233":14,"z":18,"\u017e":18,"\u017a":18,"\u017c":18,"x":12,":":9,";":9,"\u00bb":13,"\u00ab":18,"-":18,"\u00ad":18,")":-22,"]":-22,"}":-22,"\"":-6,"'":-6,",":22,".":22,"\u00b5":12}},"\u021b":{"d":"108,-1v-39,15,-75,-4,-75,-54r0,-95r-27,0r0,-24r27,0r0,-32r31,-10r0,42r46,0r0,24r-46,0r0,94v-3,31,19,38,43,32xm44,82r-6,-15v26,-1,36,-31,15,-45r23,-5v30,20,3,71,-32,65","w":119,"k":{"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0111":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"\u01a1":2,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"-":2,"\u00ad":2,",":1,".":1}},"\u00ad":{"d":"11,-109r89,0r0,23r-89,0r0,-23","w":104,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"J":7,"\u0134":7,"C":-5,"G":-5,"O":-5,"Q":-5,"\u00d8":-5,"\u0152":-5,"\u00c7":-5,"\u00d3":-5,"\u00d4":-5,"\u00d6":-5,"\u00d2":-5,"\u00d5":-5,"\u0106":-5,"\u010c":-5,"\u0108":-5,"\u010a":-5,"\u011e":-5,"\u011c":-5,"\u0122":-5,"\u0120":-5,"\u014e":-5,"\u0150":-5,"\u014c":-5,"\u01fe":-5,"\u01a0":-5,"V":4,"W":4,"\u0174":4,"X":8,"Y":18,"\u00dd":18,"\u0178":18,"\u0232":18,"A":1,"\u00c6":1,"\u00c1":1,"\u00c2":1,"\u00c4":1,"\u00c0":1,"\u00c5":1,"\u00c3":1,"\u0102":1,"\u0100":1,"\u0104":1,"\u01fa":1,"\u01fc":1,"g":-5,"\u011f":-5,"\u011d":-5,"\u0123":-5,"\u0121":-5,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"\u00f8":-6,"\u0153":-6,"\u00e7":-6,"\u00e9":-6,"\u00ea":-6,"\u00eb":-6,"\u00e8":-6,"\u00f3":-6,"\u00f4":-6,"\u00f6":-6,"\u00f2":-6,"\u00f5":-6,"\u0111":-6,"\u0107":-6,"\u010d":-6,"\u0109":-6,"\u010b":-6,"\u010f":-6,"\u0115":-6,"\u011b":-6,"\u0117":-6,"\u0113":-6,"\u0119":-6,"\u014f":-6,"\u0151":-6,"\u014d":-6,"\u01ff":-6,"\u01a1":-6,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0175":2,"\u0233":2}},"\u00a0":{"w":76,"k":{"T":15,"\u0166":15,"\u0164":15,"\u0162":15,"\u021a":15,"V":13,"W":13,"\u0174":13,"Y":17,"\u00dd":17,"\u0178":17,"\u0232":17}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2000, 2004 Adobe Systems Incorporated. All Rights Reserved. U.S. Patent
 * D454,582.
 * 
 * Trademark:
 * Myriad is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * MyriadPro-Bold
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":190,"face":{"font-family":"Myriad Pro","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 3 3 4 3 2 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-14 -354 323 90","underline-thickness":"18","underline-position":"-18","stemh":"40","stemv":"55","unicode-range":"U+0020-U+0233"},"glyphs":{" ":{"w":72,"k":{"T":14,"\u0166":14,"\u0164":14,"\u0162":14,"\u021a":14,"V":13,"W":13,"\u0174":13,"Y":14,"\u00dd":14,"\u0178":14,"\u0232":14}},"!":{"d":"69,-80r-41,0r-9,-163r58,0xm48,4v-19,0,-32,-14,-32,-33v0,-19,13,-33,32,-33v19,0,32,14,32,33v0,19,-13,33,-32,33","w":96},"\"":{"d":"13,-249r48,0r-8,97r-32,0xm82,-249r48,0r-8,97r-32,0","w":142,"k":{"T":-3,"\u0166":-3,"\u0164":-3,"\u0162":-3,"\u021a":-3,"J":21,"\u0134":21,"C":3,"G":3,"O":3,"Q":3,"\u00d8":3,"\u0152":3,"\u00c7":3,"\u00d3":3,"\u00d4":3,"\u00d6":3,"\u00d2":3,"\u00d5":3,"\u0106":3,"\u010c":3,"\u0108":3,"\u010a":3,"\u011e":3,"\u011c":3,"\u0122":3,"\u0120":3,"\u014e":3,"\u0150":3,"\u014c":3,"\u01fe":3,"\u01a0":3,"V":-3,"W":-3,"\u0174":-3,"X":-1,"Y":-3,"\u00dd":-3,"\u0178":-3,"\u0232":-3,"A":17,"\u00c6":17,"\u00c1":17,"\u00c2":17,"\u00c4":17,"\u00c0":17,"\u00c5":17,"\u00c3":17,"\u0102":17,"\u0100":17,"\u0104":17,"\u01fa":17,"\u01fc":17,"f":-9,"\u00df":-9,"g":7,"\u011f":7,"\u011d":7,"\u0123":7,"\u0121":7,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"t":-8,"\u0167":-8,"\u0165":-8,"\u0163":-8,"\u021b":-8,"v":-2,"w":-2,"y":-2,"\u00fd":-2,"\u00ff":-2,"\u0175":-2,"\u0233":-2,",":45,".":45}},"#":{"d":"80,-98r33,0r6,-40r-33,0xm66,0r-33,0r9,-64r-29,0r0,-34r35,0r6,-40r-31,0r0,-33r36,0r9,-63r32,0r-9,63r33,0r9,-63r32,0r-9,63r29,0r0,33r-34,0r-6,40r30,0r0,34r-35,0r-9,64r-33,0r9,-64r-32,0","w":198},"$":{"d":"116,31r-35,0r0,-34v-24,-1,-47,-7,-61,-15r11,-42v20,14,94,28,94,-7v0,-14,-10,-25,-38,-31v-80,-17,-88,-115,-4,-130r0,-34r35,0r0,31v24,1,40,6,52,12r-10,41v-8,-10,-83,-22,-83,8v0,12,11,22,43,31v84,24,77,119,-4,134r0,36","w":199},"%":{"d":"10,-165v0,-42,25,-73,66,-73v40,0,62,30,62,70v0,49,-31,74,-65,74v-36,0,-63,-27,-63,-71xm74,-208v-16,0,-24,18,-24,42v0,24,9,43,25,43v15,0,23,-16,23,-43v0,-24,-7,-42,-24,-42xm105,4r-29,0r135,-242r29,0xm244,-141v40,0,63,30,63,70v0,49,-31,74,-65,74v-35,0,-64,-26,-64,-70v0,-42,26,-74,66,-74xm243,-111v-16,0,-24,19,-24,42v0,24,8,42,24,42v15,0,23,-16,23,-42v0,-24,-6,-42,-23,-42","w":316},"&":{"d":"177,-190v1,25,-16,47,-48,64v14,15,29,33,41,45v10,-15,17,-37,20,-59r49,0v-6,37,-18,68,-40,92r43,48r-64,0v-5,-5,-10,-11,-16,-17v-16,12,-37,21,-66,21v-103,1,-107,-108,-39,-138v-33,-44,-20,-112,55,-113v37,0,65,22,65,57xm82,-107v-30,16,-23,71,22,71v14,0,26,-5,33,-12v-15,-15,-35,-37,-55,-59xm131,-188v0,-12,-7,-26,-22,-24v-30,3,-24,42,-5,59v18,-12,27,-21,27,-35","w":244},"(":{"d":"63,-249r38,0v-48,58,-47,233,0,291r-38,0v-19,-28,-41,-76,-41,-145v0,-70,22,-118,41,-146","w":113,"k":{"T":-8,"\u0166":-8,"\u0164":-8,"\u0162":-8,"\u021a":-8,"J":-4,"\u0134":-4,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u0152":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u01a0":8,"V":-10,"W":-10,"\u0174":-10,"X":-2,"Y":-11,"\u00dd":-11,"\u0178":-11,"\u0232":-11,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"\u0102":7,"\u0100":7,"\u0104":7,"\u01fa":7,"\u01fc":7,"j":-18,"\u0135":-18}},")":{"d":"51,42r-38,0v46,-58,47,-233,0,-291r38,0v19,28,41,75,41,145v0,70,-22,118,-41,146","w":113},"*":{"d":"102,-247r32,18r-39,47r58,-11r0,36v-19,-2,-41,-9,-58,-9r39,44r-32,19r-21,-55r-21,55r-31,-19r38,-45r-56,10r0,-36v18,2,40,10,56,10r-38,-45r32,-19v8,18,12,39,21,55","w":163},"+":{"d":"90,-192r35,0r0,79r75,0r0,34r-75,0r0,79r-35,0r0,-79r-76,0r0,-34r76,0r0,-79","w":214},",":{"d":"37,40r-36,3v11,-32,21,-69,26,-102r55,-4v-12,37,-28,75,-45,103","w":93,"k":{"\"":44,"'":44}},"-":{"d":"11,-113r94,0r0,37r-94,0r0,-37","w":115,"k":{"T":20,"\u0166":20,"\u0164":20,"\u0162":20,"\u021a":20,"J":2,"\u0134":2,"C":-4,"G":-4,"O":-4,"Q":-4,"\u00d8":-4,"\u0152":-4,"\u00c7":-4,"\u00d3":-4,"\u00d4":-4,"\u00d6":-4,"\u00d2":-4,"\u00d5":-4,"\u0106":-4,"\u010c":-4,"\u0108":-4,"\u010a":-4,"\u011e":-4,"\u011c":-4,"\u0122":-4,"\u0120":-4,"\u014e":-4,"\u0150":-4,"\u014c":-4,"\u01fe":-4,"\u01a0":-4,"V":9,"W":9,"\u0174":9,"X":6,"Y":22,"\u00dd":22,"\u0178":22,"\u0232":22,"A":2,"\u00c6":2,"\u00c1":2,"\u00c2":2,"\u00c4":2,"\u00c0":2,"\u00c5":2,"\u00c3":2,"\u0102":2,"\u0100":2,"\u0104":2,"\u01fa":2,"\u01fc":2,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"\u00f8":-6,"\u0153":-6,"\u00e7":-6,"\u00e9":-6,"\u00ea":-6,"\u00eb":-6,"\u00e8":-6,"\u00f3":-6,"\u00f4":-6,"\u00f6":-6,"\u00f2":-6,"\u00f5":-6,"\u0111":-6,"\u0107":-6,"\u010d":-6,"\u0109":-6,"\u010b":-6,"\u010f":-6,"\u0115":-6,"\u011b":-6,"\u0117":-6,"\u0113":-6,"\u0119":-6,"\u014f":-6,"\u0151":-6,"\u014d":-6,"\u01ff":-6,"\u01a1":-6}},".":{"d":"50,4v-18,0,-32,-14,-32,-33v0,-19,13,-34,32,-34v19,0,32,14,32,34v0,19,-13,33,-32,33","w":93,"k":{"\"":44,"'":44}},"\/":{"d":"42,14r-36,0r77,-261r36,0","w":119},"0":{"d":"101,-238v63,0,87,56,87,120v0,72,-29,122,-89,122v-60,0,-87,-55,-87,-121v0,-68,29,-121,89,-121xm100,-197v-20,0,-33,26,-33,80v0,54,12,80,33,80v21,0,33,-27,33,-80v0,-52,-11,-80,-33,-80","w":199},"1":{"d":"85,0r-1,-185r-44,21r-9,-41r62,-29r45,0r0,234r-53,0","w":199},"2":{"d":"181,0r-166,0r0,-33v38,-35,114,-99,107,-127v4,-44,-69,-38,-89,-15r-15,-39v18,-13,45,-24,77,-24v53,0,82,31,82,73v0,48,-50,88,-84,120r88,0r0,45","w":199},"3":{"d":"14,-13r11,-41v19,16,100,25,97,-17v-2,-30,-35,-35,-69,-33r0,-39v29,1,60,0,63,-27v2,-34,-68,-26,-84,-11r-11,-39v14,-9,42,-18,72,-18v87,0,105,89,35,113v28,5,51,26,51,57v0,41,-37,72,-96,72v-30,0,-55,-8,-69,-17","w":199},"4":{"d":"164,0r-52,0r0,-56r-104,0r0,-35r89,-143r67,0r0,137r28,0r0,41r-28,0r0,56xm59,-98v15,3,36,0,53,1v-1,-30,6,-69,0,-95v-15,34,-33,64,-53,94","w":199},"5":{"d":"76,-153v56,-6,106,20,105,75v0,44,-38,82,-101,82v-28,0,-52,-6,-65,-13r10,-41v26,14,101,21,100,-25v8,-33,-56,-43,-98,-36r15,-123r129,0r0,45r-90,0","w":199},"6":{"d":"165,-237r0,42v-53,-3,-98,26,-97,57v42,-40,122,-15,122,57v0,46,-35,85,-86,85v-111,0,-113,-154,-52,-206v28,-24,65,-37,113,-35xm100,-118v-19,0,-35,12,-35,34v1,25,13,48,38,48v19,0,32,-18,32,-42v0,-22,-12,-40,-35,-40","w":199},"7":{"d":"18,-234r165,0r0,35r-97,199r-58,0r97,-189r-107,0r0,-45","w":199},"8":{"d":"98,4v-99,0,-110,-95,-45,-125v-66,-33,-27,-121,49,-117v88,4,98,79,43,113v75,28,43,129,-47,129xm100,-34v19,0,32,-12,32,-29v0,-21,-14,-33,-36,-39v-38,7,-39,67,4,68xm99,-201v-43,5,-31,53,5,59v30,-6,35,-58,-5,-59","w":199},"9":{"d":"32,3r0,-43v49,6,96,-19,99,-58v-40,38,-120,9,-120,-56v0,-46,37,-84,88,-84v109,0,107,160,48,208v-28,23,-67,36,-115,33xm99,-120v21,0,32,-8,33,-29v0,-25,-9,-50,-35,-49v-18,0,-31,17,-31,41v0,20,11,37,33,37","w":199},":":{"d":"50,-112v-18,0,-32,-14,-32,-33v0,-19,13,-33,32,-33v19,0,32,13,32,33v0,19,-13,33,-32,33xm50,4v-18,0,-32,-14,-32,-33v0,-19,13,-33,32,-33v19,0,32,13,32,33v0,19,-13,33,-32,33","w":93},";":{"d":"37,40r-36,3v11,-32,21,-69,26,-102r55,-4v-12,37,-28,75,-45,103xm52,-112v-19,0,-32,-14,-32,-33v0,-19,13,-33,32,-33v19,0,32,13,32,33v0,19,-13,33,-32,33","w":93},"<":{"d":"21,-80r0,-31r173,-81r0,39r-131,58r131,57r0,38","w":214},"=":{"d":"200,-117r-186,0r0,-33r186,0r0,33xm200,-42r-186,0r0,-34r186,0r0,34","w":214},">":{"d":"194,-112r0,33r-173,79r0,-38r133,-58r-133,-57r0,-39","w":214},"?":{"d":"147,-191v1,48,-54,62,-49,112r-48,0v-13,-38,38,-72,41,-103v2,-28,-45,-25,-61,-11r-13,-39v13,-8,34,-15,60,-15v48,0,70,26,70,56xm72,4v-19,0,-32,-14,-32,-33v0,-19,13,-33,32,-33v19,0,33,14,33,33v0,19,-14,33,-33,33","w":160},"@":{"d":"129,-52v24,0,33,-44,36,-72v-30,-9,-54,17,-54,49v0,14,6,23,18,23xm190,4r7,20v-82,36,-180,-3,-179,-100v0,-73,54,-137,135,-137v63,0,109,44,109,104v0,53,-30,86,-69,86v-17,0,-29,-9,-31,-28v-21,40,-87,39,-87,-19v0,-60,68,-104,127,-75r-11,67v-4,21,-1,31,9,31v15,0,35,-20,35,-61v0,-47,-30,-83,-86,-83v-55,0,-103,43,-103,112v0,81,77,113,144,83","w":277},"A":{"d":"150,-62r-70,0r-17,62r-57,0r74,-243r72,0r76,243r-60,0xm88,-103r54,0r-28,-99","w":236,"k":{"T":30,"\u0166":30,"\u0164":30,"\u0162":30,"\u021a":30,"J":-5,"\u0134":-5,"C":9,"G":9,"O":9,"Q":9,"\u00d8":9,"\u0152":9,"\u00c7":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"\u0106":9,"\u010c":9,"\u0108":9,"\u010a":9,"\u011e":9,"\u011c":9,"\u0122":9,"\u0120":9,"\u014e":9,"\u0150":9,"\u014c":9,"\u01fe":9,"\u01a0":9,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"\u01af":13,"V":21,"W":21,"\u0174":21,"X":9,"Y":34,"\u00dd":34,"\u0178":34,"\u0232":34,"Z":-2,"\u017d":-2,"\u0179":-2,"\u017b":-2,"f":5,"\u00df":5,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"j":2,"\u0135":2,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u0138":2,"\u0133":2,"\u012d":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":7,"\u0167":7,"\u0165":7,"\u0163":7,"\u021b":7,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"\u01b0":5,"v":11,"w":11,"y":11,"\u00fd":11,"\u00ff":11,"\u0175":11,"\u0233":11,"x":1,"-":3,"\u00ad":3,")":6,"]":6,"}":6,"\"":17,"'":17}},"B":{"d":"204,-71v0,60,-45,73,-121,74v-27,0,-47,-2,-59,-4r0,-238v62,-8,171,-16,171,56v0,22,-12,42,-39,52v28,8,48,29,48,60xm78,-203r0,56v32,2,65,-5,62,-29v5,-26,-36,-31,-62,-27xm78,-107r0,68v31,4,68,-2,68,-34v0,-30,-33,-36,-68,-34","w":217,"k":{"T":6,"\u0166":6,"\u0164":6,"\u0162":6,"\u021a":6,"V":4,"W":4,"\u0174":4,"Y":12,"\u00dd":12,"\u0178":12,"\u0232":12,"A":1,"\u00c6":1,"\u00c1":1,"\u00c2":1,"\u00c4":1,"\u00c0":1,"\u00c5":1,"\u00c3":1,"\u0102":1,"\u0100":1,"\u0104":1,"\u01fa":1,"\u01fc":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0111":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u01a1":-2,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0175":2,"\u0233":2,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"-":-4,"\u00ad":-4,",":5,".":5}},"C":{"d":"194,-50r8,43v-10,5,-32,11,-62,11v-84,0,-127,-53,-127,-122v0,-106,104,-151,192,-118r-11,44v-55,-23,-124,-2,-124,71v0,68,65,94,124,71","w":214,"k":{"\u0127":1,"\u0152":11,"T":-5,"\u0166":-5,"\u0164":-5,"\u0162":-5,"\u021a":-5,"J":-4,"\u0134":-4,"C":11,"G":11,"O":11,"Q":11,"\u00d8":11,"\u00c7":11,"\u00d3":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u00d5":11,"\u0106":11,"\u010c":11,"\u0108":11,"\u010a":11,"\u011e":11,"\u011c":11,"\u0122":11,"\u0120":11,"\u014e":11,"\u0150":11,"\u014c":11,"\u01fe":11,"\u01a0":11,"V":-3,"W":-3,"\u0174":-3,"X":-1,"Y":-3,"\u00dd":-3,"\u0178":-3,"\u0232":-3,"A":-4,"\u00c6":-4,"\u00c1":-4,"\u00c2":-4,"\u00c4":-4,"\u00c0":-4,"\u00c5":-4,"\u00c3":-4,"\u0102":-4,"\u0100":-4,"\u0104":-4,"\u01fa":-4,"\u01fc":-4,"b":1,"h":1,"k":1,"l":1,"\u0142":1,"\u0125":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":7,"d":7,"e":7,"o":7,"q":7,"\u00f8":7,"\u0153":7,"\u00e7":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,"\u0111":7,"\u0107":7,"\u010d":7,"\u0109":7,"\u010b":7,"\u010f":7,"\u0115":7,"\u011b":7,"\u0117":7,"\u0113":7,"\u0119":7,"\u014f":7,"\u0151":7,"\u014d":7,"\u01ff":7,"\u01a1":7,"u":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"\u00f9":7,"\u016d":7,"\u0171":7,"\u016b":7,"\u0173":7,"\u016f":7,"\u0169":7,"\u01b0":7,"v":12,"w":12,"y":12,"\u00fd":12,"\u00ff":12,"\u0175":12,"\u0233":12,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"\u0103":4,"\u0101":4,"\u0105":4,"\u01fb":4,"\u01fd":4,"z":-3,"\u017e":-3,"\u017a":-3,"\u017c":-3,"\u00ab":1,")":-3,"]":-3,"}":-3,"\"":-2,"'":-2}},"D":{"d":"238,-127v5,116,-103,141,-214,126r0,-238v20,-3,46,-5,74,-5v91,-1,137,34,140,117xm79,-200r0,159v61,7,101,-19,101,-84v0,-59,-43,-85,-101,-75","w":250,"k":{"\u0142":-1,"T":10,"\u0166":10,"\u0164":10,"\u0162":10,"\u021a":10,"V":3,"W":3,"\u0174":3,"X":12,"Y":13,"\u00dd":13,"\u0178":13,"\u0232":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"\u0102":6,"\u0100":6,"\u0104":6,"\u01fa":6,"\u01fc":6,"f":-4,"\u00df":-4,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"u":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u00f9":-2,"\u016d":-2,"\u0171":-2,"\u016b":-2,"\u0173":-2,"\u016f":-2,"\u0169":-2,"\u01b0":-2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,"x":4,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"\u00ab":-1,"-":-4,"\u00ad":-4,")":7,"]":7,"}":7,",":14,".":14}},"E":{"d":"168,-147r0,44r-89,0r0,58r100,0r0,45r-155,0r0,-243r150,0r0,45r-95,0r0,51r89,0","w":192,"k":{"T":-2,"\u0166":-2,"\u0164":-2,"\u0162":-2,"\u021a":-2,"J":-8,"\u0134":-8,"V":-3,"W":-3,"\u0174":-3,"f":2,"\u00df":2,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"j":2,"\u0135":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"s":-1,"\u0161":-1,"\u015b":-1,"\u015f":-1,"\u015d":-1,"\u0219":-1,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0233":4,"z":-2,"\u017e":-2,"\u017a":-2,"\u017c":-2,",":3,".":3}},"F":{"d":"24,0r0,-243r148,0r0,45r-93,0r0,56r87,0r0,44r-87,0r0,98r-55,0","w":189,"k":{"\u00ef":7,"J":25,"\u0134":25,"A":24,"\u00c6":24,"\u00c1":24,"\u00c2":24,"\u00c4":24,"\u00c0":24,"\u00c5":24,"\u00c3":24,"\u0102":24,"\u0100":24,"\u0104":24,"\u01fa":24,"\u01fc":24,"M":5,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":5,"h":5,"k":5,"l":5,"\u0142":5,"\u0127":5,"\u0125":5,"\u0137":5,"\u013a":5,"\u013e":5,"\u013c":5,"\u0140":5,"i":7,"m":7,"n":7,"p":7,"r":7,"\u0131":7,"\u00ed":7,"\u00ee":7,"\u00ec":7,"\u00f1":7,"\u014b":7,"\u0138":7,"\u0133":7,"\u012d":7,"\u012b":7,"\u012f":7,"\u0129":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u0155":7,"\u0159":7,"\u0157":7,"c":9,"d":9,"e":9,"o":9,"q":9,"\u00f8":9,"\u0153":9,"\u00e7":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,"\u0111":9,"\u0107":9,"\u010d":9,"\u0109":9,"\u010b":9,"\u010f":9,"\u0115":9,"\u011b":9,"\u0117":9,"\u0113":9,"\u0119":9,"\u014f":9,"\u0151":9,"\u014d":9,"\u01ff":9,"\u01a1":9,"u":10,"\u00fa":10,"\u00fb":10,"\u00fc":10,"\u00f9":10,"\u016d":10,"\u0171":10,"\u016b":10,"\u0173":10,"\u016f":10,"\u0169":10,"\u01b0":10,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0175":7,"\u0233":7,"a":14,"\u00e6":14,"\u00e1":14,"\u00e2":14,"\u00e4":14,"\u00e0":14,"\u00e5":14,"\u00e3":14,"\u0103":14,"\u0101":14,"\u0105":14,"\u01fb":14,"\u01fd":14,":":6,";":6,"\u00bb":2,"\u00ab":1,",":32,".":32}},"G":{"d":"145,3v-83,1,-128,-45,-132,-121v-6,-106,116,-150,206,-115r-12,44v-53,-24,-137,-10,-137,68v0,60,48,89,104,76r0,-51r-38,0r0,-43r90,0r0,128v-17,6,-49,14,-81,14","w":245,"k":{"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0111":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u01a1":-2,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"\u01b0":-1,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"a":-3,"\u00e6":-3,"\u00e1":-3,"\u00e2":-3,"\u00e4":-3,"\u00e0":-3,"\u00e5":-3,"\u00e3":-3,"\u0103":-3,"\u0101":-3,"\u0105":-3,"\u01fb":-3,"\u01fd":-3}},"H":{"d":"24,-243r55,0r0,94r90,0r0,-94r55,0r0,243r-55,0r0,-102r-90,0r0,102r-55,0r0,-243","w":248,"k":{"Y":6,"\u00dd":6,"\u0178":6,"\u0232":6,"f":-2,"\u00df":-2,"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":-3,"\u0167":-3,"\u0165":-3,"\u0163":-3,"\u021b":-3,"x":1,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1}},"I":{"d":"24,-243r55,0r0,243r-55,0r0,-243","w":102,"k":{"Y":6,"\u00dd":6,"\u0178":6,"\u0232":6,"f":-2,"\u00df":-2,"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":-3,"\u0167":-3,"\u0165":-3,"\u0163":-3,"\u021b":-3,"x":1,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1}},"J":{"d":"71,-90r0,-153r55,0r0,154v2,86,-58,104,-126,87r6,-44v34,9,65,8,65,-44","w":147,"k":{"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0175":-1,"\u0233":-1,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fb":2,"\u01fd":2,")":-5,"]":-5,"}":-5,",":3,".":3}},"K":{"d":"24,0r0,-243r54,0r1,108r72,-108r67,0r-80,104r84,139r-64,0r-59,-105r-21,26r0,79r-54,0","w":221,"k":{"T":-2,"\u0166":-2,"\u0164":-2,"\u0162":-2,"\u021a":-2,"J":-10,"\u0134":-10,"C":12,"G":12,"O":12,"Q":12,"\u00d8":12,"\u0152":12,"\u00c7":12,"\u00d3":12,"\u00d4":12,"\u00d6":12,"\u00d2":12,"\u00d5":12,"\u0106":12,"\u010c":12,"\u0108":12,"\u010a":12,"\u011e":12,"\u011c":12,"\u0122":12,"\u0120":12,"\u014e":12,"\u0150":12,"\u014c":12,"\u01fe":12,"\u01a0":12,"Y":5,"\u00dd":5,"\u0178":5,"\u0232":5,"Z":-6,"\u017d":-6,"\u0179":-6,"\u017b":-6,"A":-5,"\u00c6":-5,"\u00c1":-5,"\u00c2":-5,"\u00c4":-5,"\u00c0":-5,"\u00c5":-5,"\u00c3":-5,"\u0102":-5,"\u0100":-5,"\u0104":-5,"\u01fa":-5,"\u01fc":-5,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"c":6,"d":6,"e":6,"o":6,"q":6,"\u00f8":6,"\u0153":6,"\u00e7":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"\u0111":6,"\u0107":6,"\u010d":6,"\u0109":6,"\u010b":6,"\u010f":6,"\u0115":6,"\u011b":6,"\u0117":6,"\u0113":6,"\u0119":6,"\u014f":6,"\u0151":6,"\u014d":6,"\u01ff":6,"\u01a1":6,"u":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"\u00f9":7,"\u016d":7,"\u0171":7,"\u016b":7,"\u0173":7,"\u016f":7,"\u0169":7,"\u01b0":7,"v":15,"w":15,"y":15,"\u00fd":15,"\u00ff":15,"\u0175":15,"\u0233":15,":":-3,";":-3,"\u00ab":3,"-":8,"\u00ad":8,")":-3,"]":-3,"}":-3,"\"":-1,"'":-1,",":-3,".":-3}},"L":{"d":"24,0r0,-243r55,0r0,197r96,0r0,46r-151,0","w":183,"k":{"\u01fe":14,"\u00d8":14,"T":37,"\u0166":37,"\u0164":37,"\u0162":37,"\u021a":37,"J":-10,"\u0134":-10,"C":14,"G":14,"O":14,"Q":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u0108":14,"\u010a":14,"\u011e":14,"\u011c":14,"\u0122":14,"\u0120":14,"\u014e":14,"\u0150":14,"\u014c":14,"\u01a0":14,"U":11,"\u00da":11,"\u00db":11,"\u00dc":11,"\u00d9":11,"\u016c":11,"\u0170":11,"\u016a":11,"\u0172":11,"\u016e":11,"\u0168":11,"\u01af":11,"V":23,"W":23,"\u0174":23,"Y":32,"\u00dd":32,"\u0178":32,"\u0232":32,"A":-2,"\u00c6":-2,"\u00c1":-2,"\u00c2":-2,"\u00c4":-2,"\u00c0":-2,"\u00c5":-2,"\u00c3":-2,"\u0102":-2,"\u0100":-2,"\u0104":-2,"\u01fa":-2,"\u01fc":-2,"f":1,"\u00df":1,"j":1,"\u0135":1,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0111":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"\u01a1":3,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":13,"w":13,"y":13,"\u00fd":13,"\u00ff":13,"\u0175":13,"\u0233":13,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"\u00bb":-1,"\u00ab":6,"-":6,"\u00ad":6,"\"":36,"'":36}},"M":{"d":"233,0r-7,-193r-57,189r-43,0r-26,-94v-8,-29,-16,-63,-22,-95r-9,193r-51,0r16,-243r73,0r24,81v9,27,13,61,21,87v14,-58,31,-114,49,-168r72,0r13,243r-53,0","w":304,"k":{"T":5,"\u0166":5,"\u0164":5,"\u0162":5,"\u021a":5,"A":1,"\u00c6":1,"\u00c1":1,"\u00c2":1,"\u00c4":1,"\u00c0":1,"\u00c5":1,"\u00c3":1,"\u0102":1,"\u0100":1,"\u0104":1,"\u01fa":1,"\u01fc":1,"j":-1,"\u0135":-1,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"\u0131":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2,"\u00f1":-2,"\u014b":-2,"\u0138":-2,"\u0133":-2,"\u012d":-2,"\u012b":-2,"\u012f":-2,"\u0129":-2,"\u0144":-2,"\u0148":-2,"\u0146":-2,"\u0155":-2,"\u0159":-2,"\u0157":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"-":-1,"\u00ad":-1,"\u00b5":-2}},"N":{"d":"74,0r-50,0r0,-243r64,0r50,89v15,25,28,58,41,83v-7,-52,-5,-113,-5,-172r51,0r0,243r-58,0r-52,-94v-15,-25,-29,-59,-43,-85","w":248,"k":{"Y":6,"\u00dd":6,"\u0178":6,"\u0232":6,"f":-2,"\u00df":-2,"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":-3,"\u0167":-3,"\u0165":-3,"\u0163":-3,"\u021b":-3,"x":1,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1}},"O":{"d":"131,-247v75,0,115,56,115,123v0,80,-48,128,-119,128v-72,0,-114,-55,-114,-124v0,-73,46,-127,118,-127xm129,-203v-37,0,-58,35,-58,82v0,48,22,81,59,81v37,0,58,-35,58,-82v0,-44,-21,-81,-59,-81","w":258,"k":{"\u0142":-1,"T":10,"\u0166":10,"\u0164":10,"\u0162":10,"\u021a":10,"V":3,"W":3,"\u0174":3,"X":12,"Y":13,"\u00dd":13,"\u0178":13,"\u0232":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"\u0102":6,"\u0100":6,"\u0104":6,"\u01fa":6,"\u01fc":6,"f":-4,"\u00df":-4,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"u":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u00f9":-2,"\u016d":-2,"\u0171":-2,"\u016b":-2,"\u0173":-2,"\u016f":-2,"\u0169":-2,"\u01b0":-2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,"x":4,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"\u00ab":-1,"-":-4,"\u00ad":-4,")":7,"]":7,"}":7,",":14,".":14}},"P":{"d":"198,-169v2,63,-54,90,-120,82r0,87r-54,0r0,-239v17,-3,41,-5,74,-5v62,-1,98,21,100,75xm78,-201r0,72v33,5,68,-7,66,-38v4,-30,-37,-41,-66,-34","w":209,"k":{"J":27,"\u0134":27,"V":3,"W":3,"\u0174":3,"X":10,"Y":7,"\u00dd":7,"\u0178":7,"\u0232":7,"Z":3,"\u017d":3,"\u0179":3,"\u017b":3,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,"\u01fa":22,"\u01fc":22,"M":5,"g":9,"\u011f":9,"\u011d":9,"\u0123":9,"\u0121":9,"i":3,"m":3,"n":3,"p":3,"r":3,"\u0131":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"\u00f1":3,"\u014b":3,"\u0138":3,"\u0133":3,"\u012d":3,"\u012b":3,"\u012f":3,"\u0129":3,"\u0144":3,"\u0148":3,"\u0146":3,"\u0155":3,"\u0159":3,"\u0157":3,"c":9,"d":9,"e":9,"o":9,"q":9,"\u00f8":9,"\u0153":9,"\u00e7":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,"\u0111":9,"\u0107":9,"\u010d":9,"\u0109":9,"\u010b":9,"\u010f":9,"\u0115":9,"\u011b":9,"\u0117":9,"\u0113":9,"\u0119":9,"\u014f":9,"\u0151":9,"\u014d":9,"\u01ff":9,"\u01a1":9,"s":8,"\u0161":8,"\u015b":8,"\u015f":8,"\u015d":8,"\u0219":8,"t":-4,"\u0167":-4,"\u0165":-4,"\u0163":-4,"\u021b":-4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"\u0103":6,"\u0101":6,"\u0105":6,"\u01fb":6,"\u01fd":6,":":4,";":4,"\u00ab":6,"-":5,"\u00ad":5,")":1,"]":1,"}":1,",":52,".":52,"\u00b5":1}},"Q":{"d":"231,42v-41,-10,-71,-32,-113,-38v-54,-8,-105,-44,-105,-123v0,-73,46,-128,118,-128v74,0,115,57,115,123v0,57,-29,92,-58,110v19,5,40,9,59,13xm71,-121v0,46,21,81,59,81v37,0,58,-34,58,-82v0,-44,-21,-81,-58,-81v-37,0,-59,37,-59,82","w":258,"k":{"\u0142":-1,"T":10,"\u0166":10,"\u0164":10,"\u0162":10,"\u021a":10,"V":3,"W":3,"\u0174":3,"X":12,"Y":13,"\u00dd":13,"\u0178":13,"\u0232":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"\u0102":6,"\u0100":6,"\u0104":6,"\u01fa":6,"\u01fc":6,"f":-4,"\u00df":-4,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"u":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u00f9":-2,"\u016d":-2,"\u0171":-2,"\u016b":-2,"\u0173":-2,"\u016f":-2,"\u0169":-2,"\u01b0":-2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,"x":4,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"\u00ab":-1,"-":-4,"\u00ad":-4,")":7,"]":7,"}":7,",":14,".":14}},"R":{"d":"97,-244v61,-1,99,17,101,69v2,32,-24,51,-43,61v34,9,40,92,52,114r-56,0v-4,-7,-11,-27,-17,-57v-8,-37,-22,-39,-56,-38r0,95r-54,0r0,-239v18,-3,44,-5,73,-5xm78,-202r0,67v35,3,65,-6,65,-35v0,-31,-38,-38,-65,-32","w":213,"k":{"J":-2,"\u0134":-2,"C":1,"G":1,"O":1,"Q":1,"\u00d8":1,"\u0152":1,"\u00c7":1,"\u00d3":1,"\u00d4":1,"\u00d6":1,"\u00d2":1,"\u00d5":1,"\u0106":1,"\u010c":1,"\u0108":1,"\u010a":1,"\u011e":1,"\u011c":1,"\u0122":1,"\u0120":1,"\u014e":1,"\u0150":1,"\u014c":1,"\u01fe":1,"\u01a0":1,"U":2,"\u00da":2,"\u00db":2,"\u00dc":2,"\u00d9":2,"\u016c":2,"\u0170":2,"\u016a":2,"\u0172":2,"\u016e":2,"\u0168":2,"\u01af":2,"V":2,"W":2,"\u0174":2,"X":-3,"Y":7,"\u00dd":7,"\u0178":7,"\u0232":7,"A":-3,"\u00c6":-3,"\u00c1":-3,"\u00c2":-3,"\u00c4":-3,"\u00c0":-3,"\u00c5":-3,"\u00c3":-3,"\u0102":-3,"\u0100":-3,"\u0104":-3,"\u01fa":-3,"\u01fc":-3,"b":-3,"h":-3,"k":-3,"l":-3,"\u0142":-3,"\u0127":-3,"\u0125":-3,"\u0137":-3,"\u013a":-3,"\u013e":-3,"\u013c":-3,"\u0140":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"t":-4,"\u0167":-4,"\u0165":-4,"\u0163":-4,"\u021b":-4,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0175":-1,"\u0233":-1,"a":-3,"\u00e6":-3,"\u00e1":-3,"\u00e2":-3,"\u00e4":-3,"\u00e0":-3,"\u00e5":-3,"\u00e3":-3,"\u0103":-3,"\u0101":-3,"\u0105":-3,"\u01fb":-3,"\u01fd":-3}},"S":{"d":"14,-11r12,-46v22,16,98,29,99,-11v0,-15,-12,-24,-41,-34v-40,-14,-66,-37,-66,-72v0,-41,34,-73,91,-73v27,0,48,7,62,13r-12,44v-13,-12,-86,-21,-86,12v0,15,13,24,45,34v96,30,81,150,-35,148v-28,0,-55,-7,-69,-15","w":194,"k":{"\u01fd":-3,"\u00e6":-3,"b":1,"h":1,"k":1,"l":1,"\u0142":1,"\u0127":1,"\u0125":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"j":3,"\u0135":3,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"\u00f8":-3,"\u0153":-3,"\u00e7":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"\u00f3":-3,"\u00f4":-3,"\u00f6":-3,"\u00f2":-3,"\u00f5":-3,"\u0111":-3,"\u0107":-3,"\u010d":-3,"\u0109":-3,"\u010b":-3,"\u010f":-3,"\u0115":-3,"\u011b":-3,"\u0117":-3,"\u0113":-3,"\u0119":-3,"\u014f":-3,"\u0151":-3,"\u014d":-3,"\u01ff":-3,"\u01a1":-3,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0233":5,"a":-3,"\u00e1":-3,"\u00e2":-3,"\u00e4":-3,"\u00e0":-3,"\u00e5":-3,"\u00e3":-3,"\u0103":-3,"\u0101":-3,"\u0105":-3,"\u01fb":-3,"-":-4,"\u00ad":-4}},"T":{"d":"71,0r0,-197r-66,0r0,-46r187,0r0,46r-66,0r0,197r-55,0","w":197,"k":{"\u0129":19,"\u012f":19,"\u012b":19,"\u012d":19,"\u0133":19,"\u00ec":19,"\u00ef":19,"\u00ee":19,"\u00ed":19,"\u00e8":29,"\u00e0":24,"\u0131":19,"i":19,"T":-8,"\u0166":-8,"\u0164":-8,"\u0162":-8,"\u021a":-8,"J":19,"\u0134":19,"C":10,"G":10,"O":10,"Q":10,"\u00d8":10,"\u0152":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"\u0106":10,"\u010c":10,"\u0108":10,"\u010a":10,"\u011e":10,"\u011c":10,"\u0122":10,"\u0120":10,"\u014e":10,"\u0150":10,"\u014c":10,"\u01fe":10,"\u01a0":10,"V":-10,"W":-10,"\u0174":-10,"X":-6,"Y":-3,"\u00dd":-3,"\u0178":-3,"\u0232":-3,"A":26,"\u00c6":26,"\u00c1":26,"\u00c2":26,"\u00c4":26,"\u00c0":26,"\u00c5":26,"\u00c3":26,"\u0102":26,"\u0100":26,"\u0104":26,"\u01fa":26,"\u01fc":26,"M":1,"S":3,"\u0160":3,"\u015a":3,"\u015e":3,"\u015c":3,"\u0218":3,"g":22,"\u011f":22,"\u011d":22,"\u0123":22,"\u0121":22,"b":4,"h":4,"k":4,"l":4,"\u0142":4,"\u0127":4,"\u0125":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4,"m":19,"n":19,"p":19,"r":19,"\u00f1":19,"\u014b":19,"\u0138":19,"\u0144":19,"\u0148":19,"\u0146":19,"\u0155":19,"\u0159":19,"\u0157":19,"c":29,"d":29,"e":29,"o":29,"q":29,"\u00f8":29,"\u0153":29,"\u00e7":29,"\u00e9":29,"\u00ea":29,"\u00eb":29,"\u00f3":29,"\u00f4":29,"\u00f6":29,"\u00f2":29,"\u00f5":29,"\u0111":29,"\u0107":29,"\u010d":29,"\u0109":29,"\u010b":29,"\u010f":29,"\u0115":29,"\u011b":29,"\u0117":29,"\u0113":29,"\u0119":29,"\u014f":29,"\u0151":29,"\u014d":29,"\u01ff":29,"\u01a1":29,"s":26,"\u0161":26,"\u015b":26,"\u015f":26,"\u015d":26,"\u0219":26,"u":19,"\u00fa":19,"\u00fb":19,"\u00fc":19,"\u00f9":19,"\u016d":19,"\u0171":19,"\u016b":19,"\u0173":19,"\u016f":19,"\u0169":19,"\u01b0":19,"v":19,"w":19,"y":19,"\u00fd":19,"\u00ff":19,"\u0175":19,"\u0233":19,"x":5,"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e5":24,"\u00e3":24,"\u0103":24,"\u0101":24,"\u0105":24,"\u01fb":24,"\u01fd":24,"z":21,"\u017e":21,"\u017a":21,"\u017c":21,":":13,";":13,"\u00bb":15,"\u00ab":19,"-":22,"\u00ad":22,")":-11,"]":-11,"}":-11,"\"":-3,"'":-3,",":30,".":30,"\u00b5":14}},"U":{"d":"23,-243r55,0v6,70,-25,203,44,203v70,0,38,-133,45,-203r55,0r0,136v0,75,-38,111,-101,111v-61,0,-98,-34,-98,-111r0,-136","w":245,"k":{"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11,"\u0102":11,"\u0100":11,"\u0104":11,"\u01fa":11,"\u01fc":11,"f":-2,"\u00df":-2,"s":5,"\u0161":5,"\u015b":5,"\u015f":5,"\u015d":5,"\u0219":5,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0175":2,"\u0233":2,"x":4,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fb":2,"\u01fd":2,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,",":8,".":8}},"V":{"d":"145,0r-64,0r-78,-243r60,0r30,103v10,28,12,61,23,87v14,-66,35,-127,52,-190r59,0","w":228,"k":{"\u012d":10,"\u01fc":19,"\u00ef":10,"\u00c6":19,"T":-8,"\u0166":-8,"\u0164":-8,"\u0162":-8,"\u021a":-8,"J":14,"\u0134":14,"C":3,"G":3,"O":3,"Q":3,"\u00d8":3,"\u0152":3,"\u00c7":3,"\u00d3":3,"\u00d4":3,"\u00d6":3,"\u00d2":3,"\u00d5":3,"\u0106":3,"\u010c":3,"\u0108":3,"\u010a":3,"\u011e":3,"\u011c":3,"\u0122":3,"\u0120":3,"\u014e":3,"\u0150":3,"\u014c":3,"\u01fe":3,"\u01a0":3,"V":-2,"W":-2,"\u0174":-2,"A":19,"\u00c1":19,"\u00c2":19,"\u00c4":19,"\u00c0":19,"\u00c5":19,"\u00c3":19,"\u0102":19,"\u0100":19,"\u0104":19,"\u01fa":19,"S":3,"\u0160":3,"\u015a":3,"\u015e":3,"\u015c":3,"\u0218":3,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"i":10,"m":10,"n":10,"p":10,"r":10,"\u0131":10,"\u00ed":10,"\u00ee":10,"\u00ec":10,"\u00f1":10,"\u014b":10,"\u0138":10,"\u0133":10,"\u012b":10,"\u012f":10,"\u0129":10,"\u0144":10,"\u0148":10,"\u0146":10,"\u0155":10,"\u0159":10,"\u0157":10,"c":15,"d":15,"e":15,"o":15,"q":15,"\u00f8":15,"\u0153":15,"\u00e7":15,"\u00e9":15,"\u00ea":15,"\u00eb":15,"\u00e8":15,"\u00f3":15,"\u00f4":15,"\u00f6":15,"\u00f2":15,"\u00f5":15,"\u0111":15,"\u0107":15,"\u010d":15,"\u0109":15,"\u010b":15,"\u010f":15,"\u0115":15,"\u011b":15,"\u0117":15,"\u0113":15,"\u0119":15,"\u014f":15,"\u0151":15,"\u014d":15,"\u01ff":15,"\u01a1":15,"s":14,"\u0161":14,"\u015b":14,"\u015f":14,"\u015d":14,"\u0219":14,"t":3,"\u0167":3,"\u0165":3,"\u0163":3,"\u021b":3,"u":11,"\u00fa":11,"\u00fb":11,"\u00fc":11,"\u00f9":11,"\u016d":11,"\u0171":11,"\u016b":11,"\u0173":11,"\u016f":11,"\u0169":11,"\u01b0":11,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0233":5,"a":15,"\u00e6":15,"\u00e1":15,"\u00e2":15,"\u00e4":15,"\u00e0":15,"\u00e5":15,"\u00e3":15,"\u0103":15,"\u0101":15,"\u0105":15,"\u01fb":15,"\u01fd":15,":":8,";":8,"\u00bb":8,"\u00ab":12,"-":9,"\u00ad":9,")":-10,"]":-10,"}":-10,"\"":-5,"'":-5,",":25,".":25}},"W":{"d":"123,0r-60,0r-58,-243r59,0r34,185r36,-185r58,0r33,184r34,-184r56,0r-63,243r-59,0r-21,-104v-6,-23,-6,-50,-12,-75v-9,64,-25,119,-37,179","w":319,"k":{"\u012d":10,"\u01fc":19,"\u00ef":10,"\u00c6":19,"T":-8,"\u0166":-8,"\u0164":-8,"\u0162":-8,"\u021a":-8,"J":14,"\u0134":14,"C":3,"G":3,"O":3,"Q":3,"\u00d8":3,"\u0152":3,"\u00c7":3,"\u00d3":3,"\u00d4":3,"\u00d6":3,"\u00d2":3,"\u00d5":3,"\u0106":3,"\u010c":3,"\u0108":3,"\u010a":3,"\u011e":3,"\u011c":3,"\u0122":3,"\u0120":3,"\u014e":3,"\u0150":3,"\u014c":3,"\u01fe":3,"\u01a0":3,"V":-2,"W":-2,"\u0174":-2,"A":19,"\u00c1":19,"\u00c2":19,"\u00c4":19,"\u00c0":19,"\u00c5":19,"\u00c3":19,"\u0102":19,"\u0100":19,"\u0104":19,"\u01fa":19,"S":3,"\u0160":3,"\u015a":3,"\u015e":3,"\u015c":3,"\u0218":3,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"i":10,"m":10,"n":10,"p":10,"r":10,"\u0131":10,"\u00ed":10,"\u00ee":10,"\u00ec":10,"\u00f1":10,"\u014b":10,"\u0138":10,"\u0133":10,"\u012b":10,"\u012f":10,"\u0129":10,"\u0144":10,"\u0148":10,"\u0146":10,"\u0155":10,"\u0159":10,"\u0157":10,"c":15,"d":15,"e":15,"o":15,"q":15,"\u00f8":15,"\u0153":15,"\u00e7":15,"\u00e9":15,"\u00ea":15,"\u00eb":15,"\u00e8":15,"\u00f3":15,"\u00f4":15,"\u00f6":15,"\u00f2":15,"\u00f5":15,"\u0111":15,"\u0107":15,"\u010d":15,"\u0109":15,"\u010b":15,"\u010f":15,"\u0115":15,"\u011b":15,"\u0117":15,"\u0113":15,"\u0119":15,"\u014f":15,"\u0151":15,"\u014d":15,"\u01ff":15,"\u01a1":15,"s":14,"\u0161":14,"\u015b":14,"\u015f":14,"\u015d":14,"\u0219":14,"t":3,"\u0167":3,"\u0165":3,"\u0163":3,"\u021b":3,"u":11,"\u00fa":11,"\u00fb":11,"\u00fc":11,"\u00f9":11,"\u016d":11,"\u0171":11,"\u016b":11,"\u0173":11,"\u016f":11,"\u0169":11,"\u01b0":11,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0233":5,"a":15,"\u00e6":15,"\u00e1":15,"\u00e2":15,"\u00e4":15,"\u00e0":15,"\u00e5":15,"\u00e3":15,"\u0103":15,"\u0101":15,"\u0105":15,"\u01fb":15,"\u01fd":15,":":8,";":8,"\u00bb":8,"\u00ab":12,"-":9,"\u00ad":9,")":-10,"]":-10,"}":-10,"\"":-5,"'":-5,",":25,".":25}},"X":{"d":"215,0r-63,0r-45,-87v-10,28,-26,60,-39,87r-62,0r70,-123r-68,-120r63,0r41,85v11,-31,24,-57,37,-85r62,0r-68,119","w":220,"k":{"T":-2,"\u0166":-2,"\u0164":-2,"\u0162":-2,"\u021a":-2,"J":-4,"\u0134":-4,"C":14,"G":14,"O":14,"Q":14,"\u00d8":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u0108":14,"\u010a":14,"\u011e":14,"\u011c":14,"\u0122":14,"\u0120":14,"\u014e":14,"\u0150":14,"\u014c":14,"\u01fe":14,"\u01a0":14,"V":-3,"W":-3,"\u0174":-3,"X":4,"Y":-4,"\u00dd":-4,"\u0178":-4,"\u0232":-4,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fa":5,"\u01fc":5,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":7,"d":7,"e":7,"o":7,"q":7,"\u00f8":7,"\u0153":7,"\u00e7":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,"\u0111":7,"\u0107":7,"\u010d":7,"\u0109":7,"\u010b":7,"\u010f":7,"\u0115":7,"\u011b":7,"\u0117":7,"\u0113":7,"\u0119":7,"\u014f":7,"\u0151":7,"\u014d":7,"\u01ff":7,"\u01a1":7,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":13,"w":13,"y":13,"\u00fd":13,"\u00ff":13,"\u0175":13,"\u0233":13,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fb":3,"\u01fd":3,"\u00ab":6,"-":6,"\u00ad":6,"\"":-1,"'":-1}},"Y":{"d":"135,0r-55,0r0,-99r-77,-144r63,0r44,105r43,-105r62,0r-80,142r0,101","w":217,"k":{"\u012d":8,"\u00f6":39,"\u00ef":8,"\u00eb":39,"\u00e4":33,"J":25,"\u0134":25,"C":17,"G":17,"O":17,"Q":17,"\u00d8":17,"\u0152":17,"\u00c7":17,"\u00d3":17,"\u00d4":17,"\u00d6":17,"\u00d2":17,"\u00d5":17,"\u0106":17,"\u010c":17,"\u0108":17,"\u010a":17,"\u011e":17,"\u011c":17,"\u0122":17,"\u0120":17,"\u014e":17,"\u0150":17,"\u014c":17,"\u01fe":17,"\u01a0":17,"V":-7,"W":-7,"\u0174":-7,"X":8,"Y":9,"\u00dd":9,"\u0178":9,"\u0232":9,"A":33,"\u00c6":33,"\u00c1":33,"\u00c2":33,"\u00c4":33,"\u00c0":33,"\u00c5":33,"\u00c3":33,"\u0102":33,"\u0100":33,"\u0104":33,"\u01fa":33,"\u01fc":33,"M":8,"S":10,"\u0160":10,"\u015a":10,"\u015e":10,"\u015c":10,"\u0218":10,"B":6,"D":6,"E":6,"F":6,"H":6,"I":6,"K":6,"L":6,"N":6,"P":6,"R":6,"\u0141":6,"\u00d0":6,"\u00c9":6,"\u00ca":6,"\u00cb":6,"\u00c8":6,"\u00cd":6,"\u00ce":6,"\u00cf":6,"\u00cc":6,"\u00d1":6,"\u0110":6,"\u014a":6,"\u0126":6,"\u0132":6,"\u010e":6,"\u0114":6,"\u011a":6,"\u0116":6,"\u0112":6,"\u0118":6,"\u0124":6,"\u012c":6,"\u0130":6,"\u012a":6,"\u012e":6,"\u0128":6,"\u0136":6,"\u0139":6,"\u013d":6,"\u013b":6,"\u013f":6,"\u0143":6,"\u0147":6,"\u0145":6,"\u0154":6,"\u0158":6,"\u0156":6,"g":29,"\u011f":29,"\u011d":29,"\u0123":29,"\u0121":29,"b":5,"h":5,"k":5,"l":5,"\u0142":5,"\u0127":5,"\u0125":5,"\u0137":5,"\u013a":5,"\u013e":5,"\u013c":5,"\u0140":5,"i":8,"m":8,"n":8,"p":8,"r":8,"\u0131":8,"\u00ed":8,"\u00ee":8,"\u00ec":8,"\u00f1":8,"\u014b":8,"\u0138":8,"\u0133":8,"\u012b":8,"\u012f":8,"\u0129":8,"\u0144":8,"\u0148":8,"\u0146":8,"\u0155":8,"\u0159":8,"\u0157":8,"c":39,"d":39,"e":39,"o":39,"q":39,"\u00f8":39,"\u0153":39,"\u00e7":39,"\u00e9":39,"\u00ea":39,"\u00e8":39,"\u00f3":39,"\u00f4":39,"\u00f2":39,"\u00f5":39,"\u0111":39,"\u0107":39,"\u010d":39,"\u0109":39,"\u010b":39,"\u010f":39,"\u0115":39,"\u011b":39,"\u0117":39,"\u0113":39,"\u0119":39,"\u014f":39,"\u0151":39,"\u014d":39,"\u01ff":39,"\u01a1":39,"s":23,"\u0161":23,"\u015b":23,"\u015f":23,"\u015d":23,"\u0219":23,"t":16,"\u0167":16,"\u0165":16,"\u0163":16,"\u021b":16,"u":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u00f9":26,"\u016d":26,"\u0171":26,"\u016b":26,"\u0173":26,"\u016f":26,"\u0169":26,"\u01b0":26,"v":19,"w":19,"y":19,"\u00fd":19,"\u00ff":19,"\u0175":19,"\u0233":19,"x":20,"a":33,"\u00e6":33,"\u00e1":33,"\u00e2":33,"\u00e0":33,"\u00e5":33,"\u00e3":33,"\u0103":33,"\u0101":33,"\u0105":33,"\u01fb":33,"\u01fd":33,"z":18,"\u017e":18,"\u017a":18,"\u017c":18,":":18,";":18,"\u00bb":16,"\u00ab":26,"-":22,"\u00ad":22,")":-12,"]":-12,"}":-12,"\"":-3,"'":-3,",":42,".":42}},"Z":{"d":"8,0r0,-30r116,-167r-105,0r0,-46r176,0r0,32r-113,166r115,0r0,45r-189,0","w":207,"k":{"J":-8,"\u0134":-8,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u0152":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u01a0":8,"X":2,"Y":-2,"\u00dd":-2,"\u0178":-2,"\u0232":-2,"A":-3,"\u00c6":-3,"\u00c1":-3,"\u00c2":-3,"\u00c4":-3,"\u00c0":-3,"\u00c5":-3,"\u00c3":-3,"\u0102":-3,"\u0100":-3,"\u0104":-3,"\u01fa":-3,"\u01fc":-3,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0111":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"\u01a1":3,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":6,"w":6,"y":6,"\u00fd":6,"\u00ff":6,"\u0175":6,"\u0233":6,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"-":3,"\u00ad":3}},"[":{"d":"98,40r-74,0r0,-287r74,0r0,30r-34,0r0,227r34,0r0,30","w":113,"k":{"T":-8,"\u0166":-8,"\u0164":-8,"\u0162":-8,"\u021a":-8,"J":-4,"\u0134":-4,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u0152":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u01a0":8,"V":-10,"W":-10,"\u0174":-10,"X":-2,"Y":-11,"\u00dd":-11,"\u0178":-11,"\u0232":-11,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"\u0102":7,"\u0100":7,"\u0104":7,"\u01fa":7,"\u01fc":7,"j":-18,"\u0135":-18}},"\\":{"d":"113,14r-36,0r-73,-261r37,0","w":118},"]":{"d":"15,-247r74,0r0,287r-74,0r0,-30r34,0r0,-227r-34,0r0,-30","w":113},"^":{"d":"199,-64r-39,0r-53,-128r-53,128r-39,0r76,-170r33,0","w":214},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"91,-180v103,-1,72,94,80,180r-49,0v-2,-6,-1,-14,-4,-18v-28,40,-108,20,-108,-32v0,-46,42,-67,104,-67v4,-37,-62,-26,-81,-12r-10,-36v12,-7,36,-15,68,-15xm64,-55v0,35,52,19,52,-9r0,-19v-29,0,-52,7,-52,28"},"b":{"d":"21,0r1,-256r55,0r0,101v40,-51,126,-19,126,64v0,90,-87,124,-134,67r-2,24r-46,0xm148,-89v0,-54,-68,-68,-71,-12v-2,33,4,62,33,62v23,0,38,-18,38,-50","w":215,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"x":9,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"-":-6,"\u00ad":-6,")":3,"]":3,"}":3,"\"":7,"'":7,",":12,".":12}},"c":{"d":"148,-45r6,41v-64,24,-142,-8,-142,-82v0,-65,69,-113,142,-87r-8,41v-32,-15,-78,0,-78,43v0,45,45,59,80,44","w":162,"k":{"T":5,"\u0166":5,"\u0164":5,"\u0162":5,"\u021a":5,"f":-3,"\u00df":-3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"\u00bb":-4,"-":-4,"\u00ad":-4,"\"":-2,"'":-2,",":3,".":3}},"d":{"d":"138,-256r55,0r1,256r-49,0v-2,-8,0,-20,-3,-26v-39,60,-130,24,-130,-60v0,-82,80,-120,126,-74r0,-96xm67,-88v0,58,71,64,71,10v0,-32,-4,-60,-33,-60v-25,0,-38,22,-38,50","w":214,"k":{",":3,".":3}},"e":{"d":"177,-71r-113,0v2,39,64,39,98,27r8,37v-69,28,-158,2,-158,-79v0,-45,28,-94,89,-94v64,0,84,54,76,109xm64,-108r65,0v0,-13,-6,-36,-31,-36v-23,0,-33,21,-34,36","k":{"T":15,"\u0166":15,"\u0164":15,"\u0162":15,"\u021a":15,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0175":2,"\u0233":2,"x":4,"-":-11,"\u00ad":-11,"\"":1,"'":1,",":6,".":6}},"f":{"d":"28,-176v-6,-57,43,-98,100,-80r-2,42v-27,-8,-48,6,-43,38r35,0r0,40r-35,0r0,136r-55,0r0,-136r-23,0r0,-40r23,0","w":122,"k":{"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"s":2,"\u0161":2,"\u015b":2,"\u015f":2,"\u015d":2,"\u0219":2,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,":":-10,";":-10,"\u00bb":-3,"-":1,"\u00ad":1,")":-26,"]":-26,"}":-26,"\"":-15,"'":-15,",":14,".":14}},"g":{"d":"189,-26v11,91,-86,123,-162,88r11,-42v32,22,111,19,96,-44v-41,51,-122,11,-122,-63v0,-82,87,-121,129,-68r2,-21r47,0xm67,-89v0,52,67,65,67,11v0,-32,-3,-61,-31,-61v-20,0,-36,18,-36,50","w":210,"k":{"T":12,"\u0166":12,"\u0164":12,"\u0162":12,"\u021a":12,",":6,".":6}},"h":{"d":"106,-136v-50,0,-22,88,-29,136r-55,0r0,-256r55,0r0,101v34,-44,112,-30,112,52r0,103r-55,0r0,-97v0,-23,-7,-39,-28,-39","w":210,"k":{"T":21,"\u0166":21,"\u0164":21,"\u0162":21,"\u021a":21,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0175":7,"\u0233":7,"\"":5,"'":5}},"i":{"d":"77,0r-55,0r0,-176r55,0r0,176xm49,-253v18,0,29,12,29,28v0,15,-11,27,-29,27v-17,0,-28,-12,-28,-27v0,-16,10,-28,28,-28","w":98},"j":{"d":"-14,35v38,-6,43,-14,43,-69r0,-142r55,0v-6,107,35,260,-93,253xm57,-253v18,0,28,12,28,28v0,15,-11,27,-29,27v-17,0,-29,-12,-29,-27v0,-16,12,-28,30,-28","w":104,"k":{",":4,".":4}},"k":{"d":"77,-256r0,154r49,-74r66,0r-63,71r72,105r-68,0r-42,-72r-14,17r0,55r-55,0r0,-256r55,0","w":195,"k":{"T":10,"\u0166":10,"\u0164":10,"\u0162":10,"\u021a":10,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0175":-1,"\u0233":-1,"a":-2,"\u00e6":-2,"\u00e1":-2,"\u00e2":-2,"\u00e4":-2,"\u00e0":-2,"\u00e5":-2,"\u00e3":-2,"\u0103":-2,"\u0101":-2,"\u0105":-2,"\u01fb":-2,"\u01fd":-2,":":-1,";":-1,"-":2,"\u00ad":2,",":-1,".":-1}},"l":{"d":"22,0r0,-256r55,0r0,256r-55,0","w":99,"k":{",":3,".":3}},"m":{"d":"103,-136v-49,0,-21,88,-28,136r-53,0r-1,-176r46,0v2,7,0,18,3,24v8,-11,23,-28,53,-28v23,0,41,12,49,30v32,-47,116,-42,116,46r0,104r-53,0r0,-96v0,-26,-8,-40,-26,-40v-48,0,-22,88,-28,136r-53,0r0,-99v0,-22,-8,-37,-25,-37","w":309,"k":{"T":21,"\u0166":21,"\u0164":21,"\u0162":21,"\u021a":21,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0175":7,"\u0233":7,"\"":5,"'":5}},"n":{"d":"107,-136v-51,0,-23,87,-30,136r-55,0r-1,-176r47,0v2,7,0,18,4,24v7,-11,25,-28,54,-28v36,0,63,24,63,76r0,104r-55,0r0,-98v0,-23,-7,-38,-27,-38","w":210,"k":{"T":21,"\u0166":21,"\u0164":21,"\u0162":21,"\u021a":21,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0175":7,"\u0233":7,"\"":5,"'":5}},"o":{"d":"106,-180v54,0,90,37,90,90v0,64,-46,94,-93,94v-51,0,-91,-34,-91,-91v0,-57,37,-93,94,-93xm104,-141v-26,0,-36,27,-36,53v0,30,13,53,36,53v21,0,35,-21,35,-53v0,-26,-10,-53,-35,-53","w":207,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"x":9,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"-":-6,"\u00ad":-6,")":3,"]":3,"}":3,"\"":7,"'":7,",":12,".":12}},"p":{"d":"22,71r-1,-247r47,0r3,24v42,-55,132,-25,132,62v0,86,-81,119,-126,74r0,87r-55,0xm148,-88v0,-56,-68,-66,-71,-12v-2,34,4,62,33,62v24,0,38,-20,38,-50","w":215,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"x":9,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"-":-6,"\u00ad":-6,")":3,"]":3,"}":3,"\"":7,"'":7,",":12,".":12}},"q":{"d":"138,71r-1,-93v-41,54,-125,19,-125,-64v0,-87,84,-121,127,-70r2,-20r53,0r-1,247r-55,0xm68,-88v0,58,67,65,70,12v2,-33,-3,-61,-33,-62v-25,0,-37,22,-37,50","w":214,"k":{"T":13,"\u0166":13,"\u0164":13,"\u0162":13,"\u021a":13,",":3,".":3}},"r":{"d":"130,-127v-29,-7,-53,6,-53,38r0,89r-55,0r-1,-176r47,0v2,10,-3,26,3,32v13,-30,32,-39,59,-35r0,52","w":136,"k":{"\u0142":1,"T":7,"\u0166":7,"\u0164":7,"\u0162":7,"\u021a":7,"f":-10,"\u00df":-10,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":1,"h":1,"k":1,"l":1,"\u0127":1,"\u0125":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0111":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"\u01a1":3,"t":-8,"\u0167":-8,"\u0165":-8,"\u0163":-8,"\u021b":-8,"u":1,"\u00fa":1,"\u00fb":1,"\u00fc":1,"\u00f9":1,"\u016d":1,"\u0171":1,"\u016b":1,"\u0173":1,"\u016f":1,"\u0169":1,"\u01b0":1,"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,"\u0175":-6,"\u0233":-6,"x":-5,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"\u0103":4,"\u0101":4,"\u0105":4,"\u01fb":4,"\u01fd":4,"z":-3,"\u017e":-3,"\u017a":-3,"\u017c":-3,":":1,";":1,"\u00bb":-3,",":23,".":23}},"s":{"d":"12,-9r10,-39v13,9,68,24,70,-1v0,-9,-5,-14,-26,-20v-80,-23,-58,-111,22,-111v21,0,39,5,50,10r-10,38v-11,-7,-57,-20,-59,4v0,8,6,13,28,20v74,22,60,116,-28,112v-23,0,-44,-6,-57,-13","w":156,"k":{"T":13,"\u0166":13,"\u0164":13,"\u0162":13,"\u021a":13,",":4,".":4}},"t":{"d":"121,-1v-47,14,-91,-3,-91,-63r0,-72r-24,0r0,-40r24,0r0,-33r53,-15r0,48r39,0r0,40r-39,0v4,39,-18,108,38,94r0,41","w":132,"k":{"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0111":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"\u01a1":2,"v":-2,"w":-2,"y":-2,"\u00fd":-2,"\u00ff":-2,"\u0175":-2,"\u0233":-2,",":3,".":3}},"u":{"d":"76,-81v-7,51,57,52,57,10r0,-105r55,0r1,176r-47,0v-2,-8,0,-19,-4,-25v-7,11,-23,29,-55,29v-36,0,-62,-23,-62,-77r0,-103r55,0r0,95","w":209,"k":{"T":13,"\u0166":13,"\u0164":13,"\u0162":13,"\u021a":13,",":3,".":3}},"v":{"d":"3,-176r60,0v13,40,19,88,35,125v7,-43,21,-84,32,-125r58,0r-66,176r-55,0","k":{"T":13,"\u0166":13,"\u0164":13,"\u0162":13,"\u021a":13,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"s":6,"\u0161":6,"\u015b":6,"\u015f":6,"\u015d":6,"\u0219":6,"v":-7,"w":-7,"y":-7,"\u00fd":-7,"\u00ff":-7,"\u0175":-7,"\u0233":-7,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fb":3,"\u01fd":3,":":-2,";":-2,"-":3,"\u00ad":3,",":17,".":17}},"w":{"d":"4,-176r56,0r25,130r31,-130r43,0r32,130v6,-45,16,-88,25,-130r54,0r-54,176r-52,0r-28,-117v-6,46,-19,77,-29,117r-52,0","w":273,"k":{"T":13,"\u0166":13,"\u0164":13,"\u0162":13,"\u021a":13,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"s":6,"\u0161":6,"\u015b":6,"\u015f":6,"\u015d":6,"\u0219":6,"v":-7,"w":-7,"y":-7,"\u00fd":-7,"\u00ff":-7,"\u0175":-7,"\u0233":-7,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fb":3,"\u01fd":3,":":-2,";":-2,"-":3,"\u00ad":3,",":17,".":17}},"x":{"d":"3,-176r61,0v11,18,20,38,32,55r29,-55r60,0r-58,84r58,92r-62,0v-11,-19,-19,-41,-32,-58r-30,58r-60,0r60,-90","w":186,"k":{"T":10,"\u0166":10,"\u0164":10,"\u0162":10,"\u021a":10,"c":8,"d":8,"e":8,"o":8,"q":8,"\u00f8":8,"\u0153":8,"\u00e7":8,"\u00e9":8,"\u00ea":8,"\u00eb":8,"\u00e8":8,"\u00f3":8,"\u00f4":8,"\u00f6":8,"\u00f2":8,"\u00f5":8,"\u0111":8,"\u0107":8,"\u010d":8,"\u0109":8,"\u010b":8,"\u010f":8,"\u0115":8,"\u011b":8,"\u0117":8,"\u0113":8,"\u0119":8,"\u014f":8,"\u0151":8,"\u014d":8,"\u01ff":8,"\u01a1":8,"s":3,"\u0161":3,"\u015b":3,"\u015f":3,"\u015d":3,"\u0219":3,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"v":-7,"w":-7,"y":-7,"\u00fd":-7,"\u00ff":-7,"\u0175":-7,"\u0233":-7,"-":1,"\u00ad":1}},"y":{"d":"20,33v22,-5,58,-22,47,-48r-65,-161r61,0r36,119r30,-119r58,0v-40,94,-59,246,-156,256","w":188,"k":{"T":13,"\u0166":13,"\u0164":13,"\u0162":13,"\u021a":13,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"s":6,"\u0161":6,"\u015b":6,"\u015f":6,"\u015d":6,"\u0219":6,"v":-7,"w":-7,"y":-7,"\u00fd":-7,"\u00ff":-7,"\u0175":-7,"\u0233":-7,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fb":3,"\u01fd":3,":":-2,";":-2,"-":3,"\u00ad":3,",":17,".":17}},"z":{"d":"8,0r0,-31r55,-70v10,-13,19,-19,28,-32r-77,0r0,-43r144,0r0,33r-82,99r85,0r0,44r-153,0","w":168,"k":{"T":10,"\u0166":10,"\u0164":10,"\u0162":10,"\u021a":10,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0111":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"\u01a1":3,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"\u00bb":-2}},"{":{"d":"34,-9v-2,-34,25,-76,-23,-81r0,-27v48,-4,21,-47,23,-81v2,-38,28,-52,68,-49r0,31v-63,-6,7,108,-56,113v37,2,31,51,27,87v-2,19,8,28,29,26r0,30v-40,2,-66,-8,-68,-49","w":113,"k":{"T":-8,"\u0166":-8,"\u0164":-8,"\u0162":-8,"\u021a":-8,"J":-4,"\u0134":-4,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u0152":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u01a0":8,"V":-10,"W":-10,"\u0174":-10,"X":-2,"Y":-11,"\u00dd":-11,"\u0178":-11,"\u0232":-11,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"\u0102":7,"\u0100":7,"\u0104":7,"\u01fa":7,"\u01fc":7,"j":-18,"\u0135":-18}},"|":{"d":"32,-270r38,0r0,360r-38,0r0,-360","w":101},"}":{"d":"79,-198v0,34,-24,77,23,81r0,27v-47,5,-21,47,-23,81v-2,40,-28,51,-67,49r0,-30v62,5,-8,-109,55,-114v-37,-2,-31,-51,-27,-87v2,-18,-8,-27,-28,-25r0,-31v40,-2,67,11,67,49","w":113},"~":{"d":"151,-66v-25,0,-63,-31,-84,-33v-9,0,-16,7,-17,30r-35,0v0,-48,22,-67,51,-67v25,0,63,30,84,31v9,0,14,-7,15,-29r34,0v2,51,-21,68,-48,68","w":214},"\u00a1":{"d":"77,69r-57,0r8,-163r41,0xm16,-145v0,-19,13,-33,33,-33v19,0,31,14,31,33v0,19,-13,33,-32,33v-19,0,-32,-14,-32,-33","w":96},"\u00a2":{"d":"100,-31v-44,-7,-73,-38,-73,-87v0,-43,26,-81,73,-90r0,-34r36,0r0,32v11,1,24,4,34,8r-8,40v-33,-16,-79,0,-79,42v0,47,48,56,83,42r6,39v-9,4,-22,8,-36,9r0,34r-36,0r0,-35","w":199},"\u00a3":{"d":"107,-96v1,25,-6,38,-21,51r97,0r0,45r-165,0r0,-29v22,-10,47,-33,40,-67r-36,0r0,-38r29,0v-24,-76,54,-125,121,-95r-9,41v-22,-14,-72,-2,-64,27v0,9,2,18,4,27r49,0r0,38r-45,0","w":199},"\u00a5":{"d":"124,0r-52,0r0,-58r-55,0r0,-25r55,0r0,-23r-55,0r0,-26r42,0r-58,-102r58,0r41,97r41,-97r58,0r-61,102r42,0r0,26r-56,0r0,23r56,0r0,25r-56,0r0,58","w":199},"\u0192":{"d":"41,-110r0,-38r33,0v3,-38,11,-84,79,-90v12,0,24,3,30,6r-9,39v-30,-15,-48,14,-48,45r37,0r0,38r-41,0v-10,65,-3,144,-80,143v-15,0,-27,-3,-32,-6r7,-39v32,8,40,2,46,-48r6,-50r-28,0","w":199},"\u00a7":{"d":"72,-142v-23,16,-14,37,18,47v17,5,34,11,42,15v39,-38,-38,-51,-60,-62xm167,-235r-9,33v-12,-10,-80,-18,-79,7v0,11,11,20,38,25v61,11,95,72,42,107v7,5,16,17,16,33v0,69,-97,69,-147,42r11,-33v13,12,87,28,87,-4v0,-12,-10,-21,-38,-27v-60,-13,-102,-69,-42,-106v-36,-38,4,-88,64,-88v21,0,40,3,57,11","w":201},"\u00a4":{"d":"58,-185v20,-18,64,-17,84,0r28,-30r23,24r-31,28v15,16,15,72,-1,86r31,29r-24,24r-27,-32v-23,18,-60,19,-83,1r-26,31r-24,-24r30,-29v-16,-15,-16,-72,0,-86r-32,-27r25,-26xm99,-161v-18,0,-33,16,-33,41v2,57,66,56,67,-1v0,-23,-15,-40,-34,-40","w":199},"'":{"d":"13,-249r48,0r-8,97r-32,0","w":73,"k":{"T":-3,"\u0166":-3,"\u0164":-3,"\u0162":-3,"\u021a":-3,"J":21,"\u0134":21,"C":3,"G":3,"O":3,"Q":3,"\u00d8":3,"\u0152":3,"\u00c7":3,"\u00d3":3,"\u00d4":3,"\u00d6":3,"\u00d2":3,"\u00d5":3,"\u0106":3,"\u010c":3,"\u0108":3,"\u010a":3,"\u011e":3,"\u011c":3,"\u0122":3,"\u0120":3,"\u014e":3,"\u0150":3,"\u014c":3,"\u01fe":3,"\u01a0":3,"V":-3,"W":-3,"\u0174":-3,"X":-1,"Y":-3,"\u00dd":-3,"\u0178":-3,"\u0232":-3,"A":17,"\u00c6":17,"\u00c1":17,"\u00c2":17,"\u00c4":17,"\u00c0":17,"\u00c5":17,"\u00c3":17,"\u0102":17,"\u0100":17,"\u0104":17,"\u01fa":17,"\u01fc":17,"f":-9,"\u00df":-9,"g":7,"\u011f":7,"\u011d":7,"\u0123":7,"\u0121":7,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"t":-8,"\u0167":-8,"\u0165":-8,"\u0163":-8,"\u021b":-8,"v":-2,"w":-2,"y":-2,"\u00fd":-2,"\u00ff":-2,"\u0175":-2,"\u0233":-2,",":45,".":45}},"\u00ab":{"d":"89,-159r-43,68r43,69r-38,0r-42,-69r42,-68r38,0xm159,-159r-43,68r43,69r-38,0r-42,-69r42,-68r38,0","w":167,"k":{"T":15,"\u0166":15,"\u0164":15,"\u0162":15,"\u021a":15,"J":-1,"\u0134":-1,"V":8,"W":8,"\u0174":8,"Y":19,"\u00dd":19,"\u0178":19,"\u0232":19,"f":-2,"\u00df":-2}},"\u00b7":{"d":"79,-93v0,19,-13,33,-33,33v-19,0,-32,-14,-32,-33v0,-19,14,-34,33,-34v19,0,32,14,32,34","w":93},"\u00b6":{"d":"109,17r-35,0v-2,-36,4,-80,-2,-112v-21,0,-60,-21,-61,-67v0,-38,20,-82,107,-82v22,0,40,1,51,4r0,257r-35,0r0,-227r-25,0r0,227","w":195},"\u00bb":{"d":"51,-91r-43,-68r38,0r42,68r-42,69r-38,0xm120,-91r-43,-68r38,0r42,68r-42,69r-38,0","w":167,"k":{"T":24,"\u0166":24,"\u0164":24,"\u0162":24,"\u021a":24,"J":3,"\u0134":3,"C":-2,"G":-2,"O":-2,"Q":-2,"\u00d8":-2,"\u0152":-2,"\u00c7":-2,"\u00d3":-2,"\u00d4":-2,"\u00d6":-2,"\u00d2":-2,"\u00d5":-2,"\u0106":-2,"\u010c":-2,"\u0108":-2,"\u010a":-2,"\u011e":-2,"\u011c":-2,"\u0122":-2,"\u0120":-2,"\u014e":-2,"\u0150":-2,"\u014c":-2,"\u01fe":-2,"\u01a0":-2,"V":12,"W":12,"\u0174":12,"X":5,"Y":24,"\u00dd":24,"\u0178":24,"\u0232":24,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1}},"\u00bf":{"d":"57,-145v0,-19,13,-33,33,-33v19,0,31,14,31,33v0,19,-13,33,-32,33v-19,0,-32,-14,-32,-33xm15,17v-1,-49,54,-62,49,-112r48,0v10,42,-39,72,-42,103v-3,27,45,26,62,11r12,39v-13,8,-34,15,-60,15v-48,0,-69,-26,-69,-56","w":160},"`":{"d":"1,-253r51,0r31,55r-38,0","w":108},"\u00b4":{"d":"58,-253r51,0r-44,55r-38,0","w":108},"\u00af":{"d":"9,-239r90,0r0,29r-90,0r0,-29","w":108},"\u00a8":{"d":"41,-226v0,14,-10,25,-25,25v-14,0,-25,-11,-25,-25v0,-15,12,-25,26,-25v14,0,24,10,24,25xm117,-226v0,14,-11,25,-26,25v-14,0,-24,-11,-24,-25v0,-15,11,-25,25,-25v14,0,25,10,25,25","w":108},"\u00b8":{"d":"44,-1r29,0r-10,17v14,1,26,12,26,26v2,34,-49,37,-72,24r7,-20v10,6,32,11,32,-4v0,-7,-8,-11,-28,-12","w":108},"\u00c6":{"d":"57,0r-56,0r103,-243r185,0r0,45r-100,0r7,52r92,0r0,44r-85,0r7,57r92,0r0,45r-139,0r-9,-66r-70,0xm100,-110r48,0r-12,-94","w":312,"k":{"T":-2,"\u0166":-2,"\u0164":-2,"\u0162":-2,"\u021a":-2,"J":-8,"\u0134":-8,"V":-3,"W":-3,"\u0174":-3,"f":2,"\u00df":2,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"j":2,"\u0135":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"s":-1,"\u0161":-1,"\u015b":-1,"\u015f":-1,"\u015d":-1,"\u0219":-1,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0233":4,"z":-2,"\u017e":-2,"\u017a":-2,"\u017c":-2,",":3,".":3}},"\u00aa":{"d":"123,-96r-34,0r-3,-12v-19,23,-74,16,-74,-21v0,-28,28,-42,71,-42v3,-22,-43,-17,-55,-7r-7,-23v9,-5,25,-12,47,-12v68,0,49,62,55,117xm64,-118v16,0,22,-13,20,-32v-19,0,-35,5,-35,18v0,8,6,14,15,14","w":136},"\u0141":{"d":"177,0r-151,0r0,-85r-27,19r0,-38r27,-19r0,-120r55,0r0,84r45,-31r0,38r-45,31r0,75r96,0r0,46","w":186,"k":{"\u01fe":14,"\u00d8":14,"T":37,"\u0166":37,"\u0164":37,"\u0162":37,"\u021a":37,"J":-10,"\u0134":-10,"C":14,"G":14,"O":14,"Q":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u0108":14,"\u010a":14,"\u011e":14,"\u011c":14,"\u0122":14,"\u0120":14,"\u014e":14,"\u0150":14,"\u014c":14,"\u01a0":14,"U":11,"\u00da":11,"\u00db":11,"\u00dc":11,"\u00d9":11,"\u016c":11,"\u0170":11,"\u016a":11,"\u0172":11,"\u016e":11,"\u0168":11,"\u01af":11,"V":23,"W":23,"\u0174":23,"Y":32,"\u00dd":32,"\u0178":32,"\u0232":32,"A":-2,"\u00c6":-2,"\u00c1":-2,"\u00c2":-2,"\u00c4":-2,"\u00c0":-2,"\u00c5":-2,"\u00c3":-2,"\u0102":-2,"\u0100":-2,"\u0104":-2,"\u01fa":-2,"\u01fc":-2,"f":1,"\u00df":1,"j":1,"\u0135":1,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0111":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"\u01a1":3,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":13,"w":13,"y":13,"\u00fd":13,"\u00ff":13,"\u0175":13,"\u0233":13,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"\u00bb":-1,"\u00ab":6,"-":6,"\u00ad":6,"\"":36,"'":36}},"\u00d8":{"d":"55,24r-29,-23r20,-31v-68,-71,-25,-217,84,-217v20,0,38,5,53,13r20,-29r31,21r-20,30v21,23,32,55,32,89v2,99,-85,152,-169,115xm158,-195v-62,-39,-113,51,-81,118xm183,-163v-29,37,-53,78,-80,116v59,35,109,-48,80,-116","w":258,"k":{"\u0142":-1,"T":10,"\u0166":10,"\u0164":10,"\u0162":10,"\u021a":10,"V":3,"W":3,"\u0174":3,"X":12,"Y":13,"\u00dd":13,"\u0178":13,"\u0232":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"\u0102":6,"\u0100":6,"\u0104":6,"\u01fa":6,"\u01fc":6,"f":-4,"\u00df":-4,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"u":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u00f9":-2,"\u016d":-2,"\u0171":-2,"\u016b":-2,"\u0173":-2,"\u016f":-2,"\u0169":-2,"\u01b0":-2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,"x":4,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"\u00ab":-1,"-":-4,"\u00ad":-4,")":7,"]":7,"}":7,",":14,".":14}},"\u0152":{"d":"13,-119v-1,-99,74,-124,177,-124r128,0r0,45r-95,0r0,51r89,0r0,44r-89,0r0,58r100,0r0,45r-137,0r-52,4v-83,0,-121,-57,-121,-123xm168,-44r0,-154v-51,-17,-97,13,-97,77v0,56,41,93,97,77","w":336,"k":{"T":-2,"\u0166":-2,"\u0164":-2,"\u0162":-2,"\u021a":-2,"J":-8,"\u0134":-8,"V":-3,"W":-3,"\u0174":-3,"f":2,"\u00df":2,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"j":2,"\u0135":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"s":-1,"\u0161":-1,"\u015b":-1,"\u015f":-1,"\u015d":-1,"\u0219":-1,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0233":4,"z":-2,"\u017e":-2,"\u017a":-2,"\u017c":-2,",":3,".":3}},"\u00ba":{"d":"70,-213v37,0,60,26,60,59v0,41,-30,60,-61,60v-33,0,-61,-22,-61,-58v0,-36,26,-61,62,-61xm69,-186v-31,1,-28,66,0,65v14,0,22,-14,22,-33v0,-15,-7,-32,-22,-32","w":138},"\u00e6":{"d":"277,-73r-111,0v-3,40,67,43,96,27r8,37v-44,22,-110,17,-133,-18v-23,46,-127,39,-127,-24v0,-43,42,-65,104,-65v1,-13,-2,-26,-33,-26v-18,0,-36,7,-47,13r-11,-34v27,-20,105,-26,121,11v14,-18,34,-28,60,-28v59,2,79,52,73,107xm64,-55v0,33,54,21,52,-9r0,-18v-29,0,-52,7,-52,27xm165,-110r63,0v0,-12,-5,-34,-30,-34v-23,0,-33,21,-33,34","w":289,"k":{"T":15,"\u0166":15,"\u0164":15,"\u0162":15,"\u021a":15,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0175":2,"\u0233":2,"x":4,"-":-11,"\u00ad":-11,"\"":1,"'":1,",":6,".":6}},"\u0131":{"d":"77,0r-55,0r0,-176r55,0r0,176","w":98},"\u0142":{"d":"79,0r-55,0r0,-82r-23,18r0,-39r23,-19r0,-134r55,0r0,94r26,-21r0,39r-26,21r0,123","w":103,"k":{",":3,".":3}},"\u00f8":{"d":"12,-88v0,-71,69,-111,135,-83r16,-24r20,13r-17,24v19,16,30,39,30,69v-1,79,-71,110,-134,84r-17,25r-18,-14r15,-24v-19,-15,-30,-39,-30,-70xm71,-60v19,-23,34,-51,52,-75v-41,-24,-76,35,-52,75xm136,-115r-51,73v37,27,72,-28,53,-72","w":207,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"x":9,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"-":-6,"\u00ad":-6,")":3,"]":3,"}":3,"\"":7,"'":7,",":12,".":12}},"\u0153":{"d":"301,-72r-112,0v0,40,67,40,97,26r8,37v-49,21,-100,20,-130,-18v-47,60,-152,29,-152,-61v0,-84,107,-123,152,-61v14,-21,36,-31,61,-31v63,2,82,52,76,108xm104,-141v-52,0,-46,106,0,106v22,0,34,-21,34,-53v0,-28,-11,-53,-34,-53xm189,-108r62,0v0,-13,-3,-36,-30,-36v-22,0,-32,22,-32,36","w":312,"k":{"T":15,"\u0166":15,"\u0164":15,"\u0162":15,"\u021a":15,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0175":2,"\u0233":2,"x":4,"-":-11,"\u00ad":-11,"\"":1,"'":1,",":6,".":6}},"\u00df":{"d":"148,-56v-3,-27,-40,-40,-40,-75v0,-18,10,-35,29,-45v7,-21,-4,-43,-26,-42v-20,0,-34,14,-34,58r0,160r-55,0r0,-155v1,-71,29,-101,92,-105v56,-3,97,49,69,97v-55,33,20,58,20,105v0,51,-59,74,-110,56r6,-40v14,9,52,6,49,-14","w":216,"k":{"T":13,"\u0166":13,"\u0164":13,"\u0162":13,"\u021a":13,",":4,".":4}},"\u00ac":{"d":"14,-152r186,0r0,114r-35,0r0,-80r-151,0r0,-34","w":214},"\u00b5":{"d":"103,-40v52,0,24,-87,31,-136r54,0r0,119v0,15,5,20,15,20r-3,38v-25,9,-54,-3,-60,-25v-6,20,-49,39,-69,16v0,25,0,60,4,79r-48,0v-10,-65,-3,-170,-5,-247r55,0r0,98v0,24,8,38,26,38","w":210,"k":{"\u00b5":-1,":":-3,";":-3,"\u00bb":-1,"-":-4,"\u00ad":-4,",":-3,".":-3}},"\u00d0":{"d":"241,-127v5,117,-103,142,-214,127r0,-102r-26,0r0,-43r26,0r0,-95v20,-3,46,-6,74,-6v91,0,136,35,140,119xm130,-145r0,43r-49,0r0,62v61,4,101,-19,102,-86v1,-62,-44,-84,-102,-75r0,56r49,0","w":253,"k":{"\u0142":-1,"T":10,"\u0166":10,"\u0164":10,"\u0162":10,"\u021a":10,"V":3,"W":3,"\u0174":3,"X":12,"Y":13,"\u00dd":13,"\u0178":13,"\u0232":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"\u0102":6,"\u0100":6,"\u0104":6,"\u01fa":6,"\u01fc":6,"f":-4,"\u00df":-4,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"u":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u00f9":-2,"\u016d":-2,"\u0171":-2,"\u016b":-2,"\u0173":-2,"\u016f":-2,"\u0169":-2,"\u01b0":-2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,"x":4,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"\u00ab":-1,"-":-4,"\u00ad":-4,")":7,"]":7,"}":7,",":14,".":14}},"\u00bd":{"d":"85,-96r-42,0r-1,-106r-28,13r-6,-30v22,-10,42,-21,77,-17r0,140xm84,4r-30,0r132,-242r30,0xm175,0r0,-20v19,-19,66,-54,64,-72v-2,-23,-41,-18,-53,-7r-11,-28v28,-26,108,-18,108,28v0,30,-30,48,-50,68r52,0r0,31r-110,0","w":299},"\u00b1":{"d":"90,-208r35,0r0,62r75,0r0,33r-75,0r0,64r-35,0r0,-64r-76,0r0,-33r76,0r0,-62xm14,-33r186,0r0,33r-186,0r0,-33","w":214},"\u00de":{"d":"78,-199v62,-8,120,13,120,70v0,69,-57,90,-120,81r0,48r-54,0r0,-243r54,0r0,44xm78,-157r0,67v32,5,71,-6,66,-34v4,-31,-37,-40,-66,-33","w":208},"\u00bc":{"d":"90,-96r-42,0r-1,-106r-29,13r-5,-30v22,-10,42,-21,77,-17r0,140xm92,4r-30,0r133,-242r30,0xm267,0r-38,0r0,-32r-71,0r0,-23r61,-87r48,0r0,83r20,0r0,27r-20,0r0,32xm229,-59v-1,-17,3,-38,0,-53v-7,21,-26,36,-32,53r32,0","w":299},"\u00f7":{"d":"107,-133v-15,0,-26,-11,-26,-26v0,-17,11,-27,26,-27v16,0,27,10,27,27v0,15,-11,26,-27,26xm200,-79r-186,0r0,-34r186,0r0,34xm107,-6v-15,0,-26,-11,-26,-27v0,-16,11,-26,26,-26v16,0,27,10,27,26v0,16,-11,27,-27,27","w":214},"\u00a6":{"d":"32,-63r38,0r0,126r-38,0r0,-126xm32,-243r38,0r0,126r-38,0r0,-126","w":101},"\u00b0":{"d":"10,-193v0,-30,23,-54,55,-54v32,0,54,25,54,53v0,31,-25,53,-55,53v-32,0,-54,-23,-54,-52xm64,-222v-15,0,-25,14,-25,29v0,15,10,27,25,27v15,0,26,-12,26,-28v0,-14,-9,-28,-26,-28","w":128},"\u00fe":{"d":"22,-244r55,0r0,90v40,-51,126,-23,126,64v0,88,-82,118,-126,73r0,88r-55,0r0,-315xm148,-89v0,-54,-68,-66,-71,-13v-2,34,4,64,33,64v23,0,38,-20,38,-51","w":215},"\u00be":{"d":"23,-201r-8,-25v24,-19,111,-15,103,24v1,16,-15,25,-30,32v20,2,35,15,35,33v0,41,-80,54,-113,33r8,-28v13,10,60,15,61,-7v0,-15,-22,-19,-42,-18r0,-24v17,1,37,-2,38,-16v1,-19,-43,-11,-52,-4xm104,4r-30,0r132,-242r30,0xm271,0r-39,0r0,-32r-70,0r0,-23r61,-87r48,0r0,83r19,0r0,27r-19,0r0,32xm232,-59r1,-53v-8,19,-26,37,-33,53r32,0","w":299},"\u00ae":{"d":"94,-155v-5,-6,-1,-25,-19,-21r0,21r-18,0r0,-57v15,-4,58,-8,55,15v0,6,-6,11,-14,13v10,0,13,23,16,29r-20,0xm81,-202v-8,-2,-4,9,-5,14v15,4,21,-14,5,-14xm83,-247v35,0,64,28,64,62v0,35,-28,63,-64,63v-36,0,-64,-28,-64,-63v0,-34,28,-62,64,-62xm82,-231v-25,0,-44,21,-44,47v0,26,19,46,45,46v26,0,45,-21,45,-47v0,-26,-20,-46,-46,-46","w":165},"\u00f0":{"d":"138,-87v0,-33,-7,-50,-34,-50v-51,0,-46,103,0,102v22,0,34,-21,34,-52xm136,-214v33,28,58,64,59,121v4,131,-183,125,-183,8v0,-63,58,-98,110,-79v-9,-12,-20,-22,-32,-30r-51,22r-10,-22r38,-17v-10,-6,-22,-12,-34,-17r24,-30v19,7,38,16,56,28r50,-21r11,21","w":206},"\u00d7":{"d":"14,-165r24,-24r69,71r70,-71r23,24r-69,70r69,71r-24,24r-69,-71r-69,71r-24,-24r70,-71","w":214},"\u00a9":{"d":"12,-122v0,-61,48,-111,111,-111v61,0,109,50,109,111v0,62,-48,111,-110,111v-62,0,-110,-49,-110,-111xm122,-213v-48,0,-87,41,-87,91v0,50,39,91,87,91v48,0,87,-41,87,-91v0,-50,-39,-91,-87,-91xm171,-177r-6,19v-26,-16,-86,-6,-79,37v-4,42,52,56,81,36r5,18v-45,29,-111,3,-111,-53v0,-57,67,-82,110,-57","w":243},"\u00c1":{"d":"150,-62r-70,0r-17,62r-57,0r74,-243r72,0r76,243r-60,0xm88,-103r54,0r-28,-99xm121,-300r58,0r-44,44r-44,0","w":236,"k":{"T":30,"\u0166":30,"\u0164":30,"\u0162":30,"\u021a":30,"J":-5,"\u0134":-5,"C":9,"G":9,"O":9,"Q":9,"\u00d8":9,"\u0152":9,"\u00c7":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"\u0106":9,"\u010c":9,"\u0108":9,"\u010a":9,"\u011e":9,"\u011c":9,"\u0122":9,"\u0120":9,"\u014e":9,"\u0150":9,"\u014c":9,"\u01fe":9,"\u01a0":9,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"\u01af":13,"V":21,"W":21,"\u0174":21,"X":9,"Y":34,"\u00dd":34,"\u0178":34,"\u0232":34,"Z":-2,"\u017d":-2,"\u0179":-2,"\u017b":-2,"f":5,"\u00df":5,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"j":2,"\u0135":2,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u0138":2,"\u0133":2,"\u012d":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":7,"\u0167":7,"\u0165":7,"\u0163":7,"\u021b":7,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"\u01b0":5,"v":11,"w":11,"y":11,"\u00fd":11,"\u00ff":11,"\u0175":11,"\u0233":11,"x":1,"-":3,"\u00ad":3,")":6,"]":6,"}":6,"\"":17,"'":17}},"\u00c2":{"d":"150,-62r-70,0r-17,62r-57,0r74,-243r72,0r76,243r-60,0xm88,-103r54,0r-28,-99xm98,-300r41,0r36,44r-39,0r-18,-22r-18,22r-38,0","w":236,"k":{"T":30,"\u0166":30,"\u0164":30,"\u0162":30,"\u021a":30,"J":-5,"\u0134":-5,"C":9,"G":9,"O":9,"Q":9,"\u00d8":9,"\u0152":9,"\u00c7":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"\u0106":9,"\u010c":9,"\u0108":9,"\u010a":9,"\u011e":9,"\u011c":9,"\u0122":9,"\u0120":9,"\u014e":9,"\u0150":9,"\u014c":9,"\u01fe":9,"\u01a0":9,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"\u01af":13,"V":21,"W":21,"\u0174":21,"X":9,"Y":34,"\u00dd":34,"\u0178":34,"\u0232":34,"Z":-2,"\u017d":-2,"\u0179":-2,"\u017b":-2,"f":5,"\u00df":5,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"j":2,"\u0135":2,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u0138":2,"\u0133":2,"\u012d":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":7,"\u0167":7,"\u0165":7,"\u0163":7,"\u021b":7,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"\u01b0":5,"v":11,"w":11,"y":11,"\u00fd":11,"\u00ff":11,"\u0175":11,"\u0233":11,"x":1,"-":3,"\u00ad":3,")":6,"]":6,"}":6,"\"":17,"'":17}},"\u00c4":{"d":"150,-62r-70,0r-17,62r-57,0r74,-243r72,0r76,243r-60,0xm88,-103r54,0r-28,-99xm82,-256v-14,0,-25,-12,-25,-25v0,-14,11,-25,25,-25v13,0,24,11,24,25v0,13,-10,25,-24,25xm157,-256v-14,0,-25,-12,-25,-25v0,-14,11,-25,25,-25v14,0,24,11,24,25v0,13,-10,25,-24,25","w":236,"k":{"T":30,"\u0166":30,"\u0164":30,"\u0162":30,"\u021a":30,"J":-5,"\u0134":-5,"C":9,"G":9,"O":9,"Q":9,"\u00d8":9,"\u0152":9,"\u00c7":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"\u0106":9,"\u010c":9,"\u0108":9,"\u010a":9,"\u011e":9,"\u011c":9,"\u0122":9,"\u0120":9,"\u014e":9,"\u0150":9,"\u014c":9,"\u01fe":9,"\u01a0":9,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"\u01af":13,"V":21,"W":21,"\u0174":21,"X":9,"Y":34,"\u00dd":34,"\u0178":34,"\u0232":34,"Z":-2,"\u017d":-2,"\u0179":-2,"\u017b":-2,"f":5,"\u00df":5,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"j":2,"\u0135":2,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u0138":2,"\u0133":2,"\u012d":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":7,"\u0167":7,"\u0165":7,"\u0163":7,"\u021b":7,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"\u01b0":5,"v":11,"w":11,"y":11,"\u00fd":11,"\u00ff":11,"\u0175":11,"\u0233":11,"x":1,"-":3,"\u00ad":3,")":6,"]":6,"}":6,"\"":17,"'":17}},"\u00c0":{"d":"150,-62r-70,0r-17,62r-57,0r74,-243r72,0r76,243r-60,0xm88,-103r54,0r-28,-99xm55,-300r57,0r31,44r-44,0","w":236,"k":{"T":30,"\u0166":30,"\u0164":30,"\u0162":30,"\u021a":30,"J":-5,"\u0134":-5,"C":9,"G":9,"O":9,"Q":9,"\u00d8":9,"\u0152":9,"\u00c7":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"\u0106":9,"\u010c":9,"\u0108":9,"\u010a":9,"\u011e":9,"\u011c":9,"\u0122":9,"\u0120":9,"\u014e":9,"\u0150":9,"\u014c":9,"\u01fe":9,"\u01a0":9,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"\u01af":13,"V":21,"W":21,"\u0174":21,"X":9,"Y":34,"\u00dd":34,"\u0178":34,"\u0232":34,"Z":-2,"\u017d":-2,"\u0179":-2,"\u017b":-2,"f":5,"\u00df":5,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"j":2,"\u0135":2,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u0138":2,"\u0133":2,"\u012d":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":7,"\u0167":7,"\u0165":7,"\u0163":7,"\u021b":7,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"\u01b0":5,"v":11,"w":11,"y":11,"\u00fd":11,"\u00ff":11,"\u0175":11,"\u0233":11,"x":1,"-":3,"\u00ad":3,")":6,"]":6,"}":6,"\"":17,"'":17}},"\u00c5":{"d":"150,-62r-70,0r-17,62r-57,0r74,-243r72,0r76,243r-60,0xm88,-103r54,0r-28,-99xm117,-323v27,0,41,15,41,35v0,20,-15,35,-41,35v-26,0,-41,-15,-41,-34v0,-19,14,-36,41,-36xm132,-288v0,-9,-5,-17,-16,-17v-20,1,-20,34,1,34v10,0,15,-8,15,-17","w":236,"k":{"T":30,"\u0166":30,"\u0164":30,"\u0162":30,"\u021a":30,"J":-5,"\u0134":-5,"C":9,"G":9,"O":9,"Q":9,"\u00d8":9,"\u0152":9,"\u00c7":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"\u0106":9,"\u010c":9,"\u0108":9,"\u010a":9,"\u011e":9,"\u011c":9,"\u0122":9,"\u0120":9,"\u014e":9,"\u0150":9,"\u014c":9,"\u01fe":9,"\u01a0":9,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"\u01af":13,"V":21,"W":21,"\u0174":21,"X":9,"Y":34,"\u00dd":34,"\u0178":34,"\u0232":34,"Z":-2,"\u017d":-2,"\u0179":-2,"\u017b":-2,"f":5,"\u00df":5,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"j":2,"\u0135":2,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u0138":2,"\u0133":2,"\u012d":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":7,"\u0167":7,"\u0165":7,"\u0163":7,"\u021b":7,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"\u01b0":5,"v":11,"w":11,"y":11,"\u00fd":11,"\u00ff":11,"\u0175":11,"\u0233":11,"x":1,"-":3,"\u00ad":3,")":6,"]":6,"}":6,"\"":17,"'":17}},"\u00c3":{"d":"150,-62r-70,0r-17,62r-57,0r74,-243r72,0r76,243r-60,0xm88,-103r54,0r-28,-99xm170,-305v5,57,-42,48,-67,32v-5,0,-8,6,-9,16r-25,0v-5,-57,41,-49,66,-32v6,0,9,-4,10,-16r25,0","w":236,"k":{"T":30,"\u0166":30,"\u0164":30,"\u0162":30,"\u021a":30,"J":-5,"\u0134":-5,"C":9,"G":9,"O":9,"Q":9,"\u00d8":9,"\u0152":9,"\u00c7":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"\u0106":9,"\u010c":9,"\u0108":9,"\u010a":9,"\u011e":9,"\u011c":9,"\u0122":9,"\u0120":9,"\u014e":9,"\u0150":9,"\u014c":9,"\u01fe":9,"\u01a0":9,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"\u01af":13,"V":21,"W":21,"\u0174":21,"X":9,"Y":34,"\u00dd":34,"\u0178":34,"\u0232":34,"Z":-2,"\u017d":-2,"\u0179":-2,"\u017b":-2,"f":5,"\u00df":5,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"j":2,"\u0135":2,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u0138":2,"\u0133":2,"\u012d":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":7,"\u0167":7,"\u0165":7,"\u0163":7,"\u021b":7,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"\u01b0":5,"v":11,"w":11,"y":11,"\u00fd":11,"\u00ff":11,"\u0175":11,"\u0233":11,"x":1,"-":3,"\u00ad":3,")":6,"]":6,"}":6,"\"":17,"'":17}},"\u00c7":{"d":"194,-50r8,43v-9,5,-30,11,-57,11r-7,12v14,3,26,12,26,29v0,36,-47,39,-74,27r8,-23v9,5,31,9,33,-4v0,-7,-9,-11,-29,-13r14,-30v-68,-9,-103,-57,-103,-120v0,-106,104,-151,192,-118r-11,44v-55,-23,-124,-2,-124,71v0,68,65,94,124,71","w":214,"k":{"\u0127":1,"\u0152":11,"T":-5,"\u0166":-5,"\u0164":-5,"\u0162":-5,"\u021a":-5,"J":-4,"\u0134":-4,"C":11,"G":11,"O":11,"Q":11,"\u00d8":11,"\u00c7":11,"\u00d3":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u00d5":11,"\u0106":11,"\u010c":11,"\u0108":11,"\u010a":11,"\u011e":11,"\u011c":11,"\u0122":11,"\u0120":11,"\u014e":11,"\u0150":11,"\u014c":11,"\u01fe":11,"\u01a0":11,"V":-3,"W":-3,"\u0174":-3,"X":-1,"Y":-3,"\u00dd":-3,"\u0178":-3,"\u0232":-3,"A":-4,"\u00c6":-4,"\u00c1":-4,"\u00c2":-4,"\u00c4":-4,"\u00c0":-4,"\u00c5":-4,"\u00c3":-4,"\u0102":-4,"\u0100":-4,"\u0104":-4,"\u01fa":-4,"\u01fc":-4,"b":1,"h":1,"k":1,"l":1,"\u0142":1,"\u0125":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"i":1,"m":1,"n":1,"p":1,"r":1,"\u0131":1,"\u00ed":1,"\u00ee":1,"\u00ef":1,"\u00ec":1,"\u00f1":1,"\u014b":1,"\u0138":1,"\u0133":1,"\u012d":1,"\u012b":1,"\u012f":1,"\u0129":1,"\u0144":1,"\u0148":1,"\u0146":1,"\u0155":1,"\u0159":1,"\u0157":1,"c":7,"d":7,"e":7,"o":7,"q":7,"\u00f8":7,"\u0153":7,"\u00e7":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,"\u0111":7,"\u0107":7,"\u010d":7,"\u0109":7,"\u010b":7,"\u010f":7,"\u0115":7,"\u011b":7,"\u0117":7,"\u0113":7,"\u0119":7,"\u014f":7,"\u0151":7,"\u014d":7,"\u01ff":7,"\u01a1":7,"u":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"\u00f9":7,"\u016d":7,"\u0171":7,"\u016b":7,"\u0173":7,"\u016f":7,"\u0169":7,"\u01b0":7,"v":12,"w":12,"y":12,"\u00fd":12,"\u00ff":12,"\u0175":12,"\u0233":12,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"\u0103":4,"\u0101":4,"\u0105":4,"\u01fb":4,"\u01fd":4,"z":-3,"\u017e":-3,"\u017a":-3,"\u017c":-3,"\u00ab":1,")":-3,"]":-3,"}":-3,"\"":-2,"'":-2}},"\u00c9":{"d":"168,-147r0,44r-89,0r0,58r100,0r0,45r-155,0r0,-243r150,0r0,45r-95,0r0,51r89,0xm104,-300r58,0r-44,44r-44,0","w":192,"k":{"T":-2,"\u0166":-2,"\u0164":-2,"\u0162":-2,"\u021a":-2,"J":-8,"\u0134":-8,"V":-3,"W":-3,"\u0174":-3,"f":2,"\u00df":2,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"j":2,"\u0135":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"s":-1,"\u0161":-1,"\u015b":-1,"\u015f":-1,"\u015d":-1,"\u0219":-1,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0233":4,"z":-2,"\u017e":-2,"\u017a":-2,"\u017c":-2,",":3,".":3}},"\u00ca":{"d":"168,-147r0,44r-89,0r0,58r100,0r0,45r-155,0r0,-243r150,0r0,45r-95,0r0,51r89,0xm80,-300r41,0r36,44r-38,0v-7,-7,-11,-16,-19,-22r-18,22r-38,0","w":192,"k":{"T":-2,"\u0166":-2,"\u0164":-2,"\u0162":-2,"\u021a":-2,"J":-8,"\u0134":-8,"V":-3,"W":-3,"\u0174":-3,"f":2,"\u00df":2,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"j":2,"\u0135":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"s":-1,"\u0161":-1,"\u015b":-1,"\u015f":-1,"\u015d":-1,"\u0219":-1,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0233":4,"z":-2,"\u017e":-2,"\u017a":-2,"\u017c":-2,",":3,".":3}},"\u00cb":{"d":"168,-147r0,44r-89,0r0,58r100,0r0,45r-155,0r0,-243r150,0r0,45r-95,0r0,51r89,0xm60,-257v-14,0,-24,-11,-24,-24v0,-14,11,-25,25,-25v13,0,23,11,23,25v0,13,-10,24,-24,24xm135,-257v-14,0,-24,-11,-24,-24v0,-14,10,-25,24,-25v14,0,24,11,24,25v0,13,-10,24,-24,24","w":192,"k":{"T":-2,"\u0166":-2,"\u0164":-2,"\u0162":-2,"\u021a":-2,"J":-8,"\u0134":-8,"V":-3,"W":-3,"\u0174":-3,"f":2,"\u00df":2,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"j":2,"\u0135":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"s":-1,"\u0161":-1,"\u015b":-1,"\u015f":-1,"\u015d":-1,"\u0219":-1,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0233":4,"z":-2,"\u017e":-2,"\u017a":-2,"\u017c":-2,",":3,".":3}},"\u00c8":{"d":"168,-147r0,44r-89,0r0,58r100,0r0,45r-155,0r0,-243r150,0r0,45r-95,0r0,51r89,0xm40,-300r57,0r31,44r-44,0","w":192,"k":{"T":-2,"\u0166":-2,"\u0164":-2,"\u0162":-2,"\u021a":-2,"J":-8,"\u0134":-8,"V":-3,"W":-3,"\u0174":-3,"f":2,"\u00df":2,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"j":2,"\u0135":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"s":-1,"\u0161":-1,"\u015b":-1,"\u015f":-1,"\u015d":-1,"\u0219":-1,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":4,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"\u0175":4,"\u0233":4,"z":-2,"\u017e":-2,"\u017a":-2,"\u017c":-2,",":3,".":3}},"\u00cd":{"d":"24,-243r55,0r0,243r-55,0r0,-243xm55,-300r57,0r-44,44r-44,0","w":102,"k":{"Y":6,"\u00dd":6,"\u0178":6,"\u0232":6,"f":-2,"\u00df":-2,"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":-3,"\u0167":-3,"\u0165":-3,"\u0163":-3,"\u021b":-3,"x":1,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1}},"\u00ce":{"d":"24,-243r55,0r0,243r-55,0r0,-243xm31,-300r41,0r36,44r-39,0r-18,-22r-18,22r-38,0","w":102,"k":{"Y":6,"\u00dd":6,"\u0178":6,"\u0232":6,"f":-2,"\u00df":-2,"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":-3,"\u0167":-3,"\u0165":-3,"\u0163":-3,"\u021b":-3,"x":1,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1}},"\u00cf":{"d":"24,-243r55,0r0,243r-55,0r0,-243xm14,-257v-14,0,-25,-11,-25,-24v0,-14,11,-25,25,-25v13,0,24,11,24,25v0,13,-10,24,-24,24xm89,-257v-14,0,-25,-11,-25,-24v0,-14,11,-25,25,-25v14,0,24,11,24,25v0,13,-10,24,-24,24","w":102,"k":{"Y":6,"\u00dd":6,"\u0178":6,"\u0232":6,"f":-2,"\u00df":-2,"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":-3,"\u0167":-3,"\u0165":-3,"\u0163":-3,"\u021b":-3,"x":1,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1}},"\u00cc":{"d":"24,-243r55,0r0,243r-55,0r0,-243xm-10,-300r58,0r30,44r-44,0","w":102,"k":{"Y":6,"\u00dd":6,"\u0178":6,"\u0232":6,"f":-2,"\u00df":-2,"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":-3,"\u0167":-3,"\u0165":-3,"\u0163":-3,"\u021b":-3,"x":1,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1}},"\u00d1":{"d":"74,0r-50,0r0,-243r64,0r50,89v15,25,28,58,41,83v-7,-52,-5,-113,-5,-172r51,0r0,243r-58,0r-52,-94v-15,-25,-29,-59,-43,-85xm176,-305v5,58,-42,47,-68,32v-5,0,-7,6,-8,16r-25,0v-1,-30,10,-46,27,-46v22,0,44,34,49,-2r25,0","w":248,"k":{"Y":6,"\u00dd":6,"\u0178":6,"\u0232":6,"f":-2,"\u00df":-2,"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":-3,"\u0167":-3,"\u0165":-3,"\u0163":-3,"\u021b":-3,"x":1,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1}},"\u00d3":{"d":"131,-247v75,0,115,56,115,123v0,80,-48,128,-119,128v-72,0,-114,-55,-114,-124v0,-73,46,-127,118,-127xm129,-203v-37,0,-58,35,-58,82v0,48,22,81,59,81v37,0,58,-35,58,-82v0,-44,-21,-81,-59,-81xm134,-300r58,0r-44,44r-44,0","w":258,"k":{"\u0142":-1,"T":10,"\u0166":10,"\u0164":10,"\u0162":10,"\u021a":10,"V":3,"W":3,"\u0174":3,"X":12,"Y":13,"\u00dd":13,"\u0178":13,"\u0232":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"\u0102":6,"\u0100":6,"\u0104":6,"\u01fa":6,"\u01fc":6,"f":-4,"\u00df":-4,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"u":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u00f9":-2,"\u016d":-2,"\u0171":-2,"\u016b":-2,"\u0173":-2,"\u016f":-2,"\u0169":-2,"\u01b0":-2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,"x":4,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"\u00ab":-1,"-":-4,"\u00ad":-4,")":7,"]":7,"}":7,",":14,".":14}},"\u00d4":{"d":"131,-247v75,0,115,56,115,123v0,80,-48,128,-119,128v-72,0,-114,-55,-114,-124v0,-73,46,-127,118,-127xm129,-203v-37,0,-58,35,-58,82v0,48,22,81,59,81v37,0,58,-35,58,-82v0,-44,-21,-81,-59,-81xm109,-300r41,0r36,44r-38,0v-7,-7,-11,-16,-19,-22r-18,22r-38,0","w":258,"k":{"\u0142":-1,"T":10,"\u0166":10,"\u0164":10,"\u0162":10,"\u021a":10,"V":3,"W":3,"\u0174":3,"X":12,"Y":13,"\u00dd":13,"\u0178":13,"\u0232":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"\u0102":6,"\u0100":6,"\u0104":6,"\u01fa":6,"\u01fc":6,"f":-4,"\u00df":-4,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"u":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u00f9":-2,"\u016d":-2,"\u0171":-2,"\u016b":-2,"\u0173":-2,"\u016f":-2,"\u0169":-2,"\u01b0":-2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,"x":4,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"\u00ab":-1,"-":-4,"\u00ad":-4,")":7,"]":7,"}":7,",":14,".":14}},"\u00d6":{"d":"131,-247v75,0,115,56,115,123v0,80,-48,128,-119,128v-72,0,-114,-55,-114,-124v0,-73,46,-127,118,-127xm129,-203v-37,0,-58,35,-58,82v0,48,22,81,59,81v37,0,58,-35,58,-82v0,-44,-21,-81,-59,-81xm92,-257v-14,0,-25,-11,-25,-24v0,-14,12,-25,26,-25v13,0,23,11,23,25v0,13,-10,24,-24,24xm167,-257v-14,0,-25,-11,-25,-24v0,-14,11,-25,25,-25v14,0,24,11,24,25v0,13,-10,24,-24,24","w":258,"k":{"\u0142":-1,"T":10,"\u0166":10,"\u0164":10,"\u0162":10,"\u021a":10,"V":3,"W":3,"\u0174":3,"X":12,"Y":13,"\u00dd":13,"\u0178":13,"\u0232":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"\u0102":6,"\u0100":6,"\u0104":6,"\u01fa":6,"\u01fc":6,"f":-4,"\u00df":-4,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"u":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u00f9":-2,"\u016d":-2,"\u0171":-2,"\u016b":-2,"\u0173":-2,"\u016f":-2,"\u0169":-2,"\u01b0":-2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,"x":4,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"\u00ab":-1,"-":-4,"\u00ad":-4,")":7,"]":7,"}":7,",":14,".":14}},"\u00d2":{"d":"131,-247v75,0,115,56,115,123v0,80,-48,128,-119,128v-72,0,-114,-55,-114,-124v0,-73,46,-127,118,-127xm129,-203v-37,0,-58,35,-58,82v0,48,22,81,59,81v37,0,58,-35,58,-82v0,-44,-21,-81,-59,-81xm68,-300r57,0r31,43r-44,0","w":258,"k":{"\u0142":-1,"T":10,"\u0166":10,"\u0164":10,"\u0162":10,"\u021a":10,"V":3,"W":3,"\u0174":3,"X":12,"Y":13,"\u00dd":13,"\u0178":13,"\u0232":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"\u0102":6,"\u0100":6,"\u0104":6,"\u01fa":6,"\u01fc":6,"f":-4,"\u00df":-4,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"u":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u00f9":-2,"\u016d":-2,"\u0171":-2,"\u016b":-2,"\u0173":-2,"\u016f":-2,"\u0169":-2,"\u01b0":-2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,"x":4,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"\u00ab":-1,"-":-4,"\u00ad":-4,")":7,"]":7,"}":7,",":14,".":14}},"\u00d5":{"d":"131,-247v75,0,115,56,115,123v0,80,-48,128,-119,128v-72,0,-114,-55,-114,-124v0,-73,46,-127,118,-127xm129,-203v-37,0,-58,35,-58,82v0,48,22,81,59,81v37,0,58,-35,58,-82v0,-44,-21,-81,-59,-81xm180,-305v6,58,-42,48,-67,32v-5,0,-8,6,-9,16r-25,0v-1,-30,11,-46,28,-46v22,0,43,34,48,-2r25,0","w":258,"k":{"\u0142":-1,"T":10,"\u0166":10,"\u0164":10,"\u0162":10,"\u021a":10,"V":3,"W":3,"\u0174":3,"X":12,"Y":13,"\u00dd":13,"\u0178":13,"\u0232":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"\u0102":6,"\u0100":6,"\u0104":6,"\u01fa":6,"\u01fc":6,"f":-4,"\u00df":-4,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"u":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u00f9":-2,"\u016d":-2,"\u0171":-2,"\u016b":-2,"\u0173":-2,"\u016f":-2,"\u0169":-2,"\u01b0":-2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,"x":4,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"\u00ab":-1,"-":-4,"\u00ad":-4,")":7,"]":7,"}":7,",":14,".":14}},"\u0160":{"d":"14,-11r12,-46v22,16,98,29,99,-11v0,-15,-12,-24,-41,-34v-40,-14,-66,-37,-66,-72v0,-41,34,-73,91,-73v27,0,48,7,62,13r-12,44v-13,-12,-86,-21,-86,12v0,15,13,24,45,34v96,30,81,150,-35,148v-28,0,-55,-7,-69,-15xm121,-256r-41,0r-36,-44r38,0v7,7,11,16,19,22r18,-22r38,0","w":194,"k":{"\u01fd":-3,"\u00e6":-3,"b":1,"h":1,"k":1,"l":1,"\u0142":1,"\u0127":1,"\u0125":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"j":3,"\u0135":3,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"\u00f8":-3,"\u0153":-3,"\u00e7":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"\u00f3":-3,"\u00f4":-3,"\u00f6":-3,"\u00f2":-3,"\u00f5":-3,"\u0111":-3,"\u0107":-3,"\u010d":-3,"\u0109":-3,"\u010b":-3,"\u010f":-3,"\u0115":-3,"\u011b":-3,"\u0117":-3,"\u0113":-3,"\u0119":-3,"\u014f":-3,"\u0151":-3,"\u014d":-3,"\u01ff":-3,"\u01a1":-3,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u0175":5,"\u0233":5,"a":-3,"\u00e1":-3,"\u00e2":-3,"\u00e4":-3,"\u00e0":-3,"\u00e5":-3,"\u00e3":-3,"\u0103":-3,"\u0101":-3,"\u0105":-3,"\u01fb":-3,"-":-4,"\u00ad":-4}},"\u00da":{"d":"23,-243r55,0v6,70,-25,203,44,203v70,0,38,-133,45,-203r55,0r0,136v0,75,-38,111,-101,111v-61,0,-98,-34,-98,-111r0,-136xm125,-300r58,0r-44,44r-44,0","w":245,"k":{"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11,"\u0102":11,"\u0100":11,"\u0104":11,"\u01fa":11,"\u01fc":11,"f":-2,"\u00df":-2,"s":5,"\u0161":5,"\u015b":5,"\u015f":5,"\u015d":5,"\u0219":5,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0175":2,"\u0233":2,"x":4,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fb":2,"\u01fd":2,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,",":8,".":8}},"\u00db":{"d":"23,-243r55,0v6,70,-25,203,44,203v70,0,38,-133,45,-203r55,0r0,136v0,75,-38,111,-101,111v-61,0,-98,-34,-98,-111r0,-136xm106,-300r41,0r36,44r-38,0v-7,-7,-11,-16,-19,-22r-18,22r-38,0","w":245,"k":{"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11,"\u0102":11,"\u0100":11,"\u0104":11,"\u01fa":11,"\u01fc":11,"f":-2,"\u00df":-2,"s":5,"\u0161":5,"\u015b":5,"\u015f":5,"\u015d":5,"\u0219":5,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0175":2,"\u0233":2,"x":4,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fb":2,"\u01fd":2,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,",":8,".":8}},"\u00dc":{"d":"23,-243r55,0v6,70,-25,203,44,203v70,0,38,-133,45,-203r55,0r0,136v0,75,-38,111,-101,111v-61,0,-98,-34,-98,-111r0,-136xm112,-281v0,13,-10,24,-25,24v-14,0,-24,-11,-24,-24v0,-14,11,-25,25,-25v13,0,24,11,24,25xm187,-281v0,13,-10,24,-25,24v-14,0,-24,-11,-24,-24v0,-14,11,-25,25,-25v14,0,24,11,24,25","w":245,"k":{"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11,"\u0102":11,"\u0100":11,"\u0104":11,"\u01fa":11,"\u01fc":11,"f":-2,"\u00df":-2,"s":5,"\u0161":5,"\u015b":5,"\u015f":5,"\u015d":5,"\u0219":5,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0175":2,"\u0233":2,"x":4,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fb":2,"\u01fd":2,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,",":8,".":8}},"\u00d9":{"d":"23,-243r55,0v6,70,-25,203,44,203v70,0,38,-133,45,-203r55,0r0,136v0,75,-38,111,-101,111v-61,0,-98,-34,-98,-111r0,-136xm62,-300r58,0r30,44r-43,0","w":245,"k":{"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11,"\u0102":11,"\u0100":11,"\u0104":11,"\u01fa":11,"\u01fc":11,"f":-2,"\u00df":-2,"s":5,"\u0161":5,"\u015b":5,"\u015f":5,"\u015d":5,"\u0219":5,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0175":2,"\u0233":2,"x":4,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fb":2,"\u01fd":2,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,",":8,".":8}},"\u00dd":{"d":"135,0r-55,0r0,-99r-77,-144r63,0r44,105r43,-105r62,0r-80,142r0,101xm115,-299r57,0r-43,44r-44,0","w":217,"k":{"\u012d":8,"\u00f6":39,"\u00ef":8,"\u00eb":39,"\u00e4":33,"J":25,"\u0134":25,"C":17,"G":17,"O":17,"Q":17,"\u00d8":17,"\u0152":17,"\u00c7":17,"\u00d3":17,"\u00d4":17,"\u00d6":17,"\u00d2":17,"\u00d5":17,"\u0106":17,"\u010c":17,"\u0108":17,"\u010a":17,"\u011e":17,"\u011c":17,"\u0122":17,"\u0120":17,"\u014e":17,"\u0150":17,"\u014c":17,"\u01fe":17,"\u01a0":17,"V":-7,"W":-7,"\u0174":-7,"X":8,"Y":9,"\u00dd":9,"\u0178":9,"\u0232":9,"A":33,"\u00c6":33,"\u00c1":33,"\u00c2":33,"\u00c4":33,"\u00c0":33,"\u00c5":33,"\u00c3":33,"\u0102":33,"\u0100":33,"\u0104":33,"\u01fa":33,"\u01fc":33,"M":8,"S":10,"\u0160":10,"\u015a":10,"\u015e":10,"\u015c":10,"\u0218":10,"B":6,"D":6,"E":6,"F":6,"H":6,"I":6,"K":6,"L":6,"N":6,"P":6,"R":6,"\u0141":6,"\u00d0":6,"\u00c9":6,"\u00ca":6,"\u00cb":6,"\u00c8":6,"\u00cd":6,"\u00ce":6,"\u00cf":6,"\u00cc":6,"\u00d1":6,"\u0110":6,"\u014a":6,"\u0126":6,"\u0132":6,"\u010e":6,"\u0114":6,"\u011a":6,"\u0116":6,"\u0112":6,"\u0118":6,"\u0124":6,"\u012c":6,"\u0130":6,"\u012a":6,"\u012e":6,"\u0128":6,"\u0136":6,"\u0139":6,"\u013d":6,"\u013b":6,"\u013f":6,"\u0143":6,"\u0147":6,"\u0145":6,"\u0154":6,"\u0158":6,"\u0156":6,"g":29,"\u011f":29,"\u011d":29,"\u0123":29,"\u0121":29,"b":5,"h":5,"k":5,"l":5,"\u0142":5,"\u0127":5,"\u0125":5,"\u0137":5,"\u013a":5,"\u013e":5,"\u013c":5,"\u0140":5,"i":8,"m":8,"n":8,"p":8,"r":8,"\u0131":8,"\u00ed":8,"\u00ee":8,"\u00ec":8,"\u00f1":8,"\u014b":8,"\u0138":8,"\u0133":8,"\u012b":8,"\u012f":8,"\u0129":8,"\u0144":8,"\u0148":8,"\u0146":8,"\u0155":8,"\u0159":8,"\u0157":8,"c":39,"d":39,"e":39,"o":39,"q":39,"\u00f8":39,"\u0153":39,"\u00e7":39,"\u00e9":39,"\u00ea":39,"\u00e8":39,"\u00f3":39,"\u00f4":39,"\u00f2":39,"\u00f5":39,"\u0111":39,"\u0107":39,"\u010d":39,"\u0109":39,"\u010b":39,"\u010f":39,"\u0115":39,"\u011b":39,"\u0117":39,"\u0113":39,"\u0119":39,"\u014f":39,"\u0151":39,"\u014d":39,"\u01ff":39,"\u01a1":39,"s":23,"\u0161":23,"\u015b":23,"\u015f":23,"\u015d":23,"\u0219":23,"t":16,"\u0167":16,"\u0165":16,"\u0163":16,"\u021b":16,"u":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u00f9":26,"\u016d":26,"\u0171":26,"\u016b":26,"\u0173":26,"\u016f":26,"\u0169":26,"\u01b0":26,"v":19,"w":19,"y":19,"\u00fd":19,"\u00ff":19,"\u0175":19,"\u0233":19,"x":20,"a":33,"\u00e6":33,"\u00e1":33,"\u00e2":33,"\u00e0":33,"\u00e5":33,"\u00e3":33,"\u0103":33,"\u0101":33,"\u0105":33,"\u01fb":33,"\u01fd":33,"z":18,"\u017e":18,"\u017a":18,"\u017c":18,":":18,";":18,"\u00bb":16,"\u00ab":26,"-":22,"\u00ad":22,")":-12,"]":-12,"}":-12,"\"":-3,"'":-3,",":42,".":42}},"\u0178":{"d":"135,0r-55,0r0,-99r-77,-144r63,0r44,105r43,-105r62,0r-80,142r0,101xm98,-280v0,13,-9,24,-24,24v-14,0,-24,-11,-24,-24v0,-14,11,-25,25,-25v13,0,23,11,23,25xm149,-256v-14,0,-24,-11,-24,-24v0,-14,10,-25,24,-25v14,0,25,11,25,25v0,13,-11,24,-25,24","w":217,"k":{"\u012d":8,"\u00f6":39,"\u00ef":8,"\u00eb":39,"\u00e4":33,"J":25,"\u0134":25,"C":17,"G":17,"O":17,"Q":17,"\u00d8":17,"\u0152":17,"\u00c7":17,"\u00d3":17,"\u00d4":17,"\u00d6":17,"\u00d2":17,"\u00d5":17,"\u0106":17,"\u010c":17,"\u0108":17,"\u010a":17,"\u011e":17,"\u011c":17,"\u0122":17,"\u0120":17,"\u014e":17,"\u0150":17,"\u014c":17,"\u01fe":17,"\u01a0":17,"V":-7,"W":-7,"\u0174":-7,"X":8,"Y":9,"\u00dd":9,"\u0178":9,"\u0232":9,"A":33,"\u00c6":33,"\u00c1":33,"\u00c2":33,"\u00c4":33,"\u00c0":33,"\u00c5":33,"\u00c3":33,"\u0102":33,"\u0100":33,"\u0104":33,"\u01fa":33,"\u01fc":33,"M":8,"S":10,"\u0160":10,"\u015a":10,"\u015e":10,"\u015c":10,"\u0218":10,"B":6,"D":6,"E":6,"F":6,"H":6,"I":6,"K":6,"L":6,"N":6,"P":6,"R":6,"\u0141":6,"\u00d0":6,"\u00c9":6,"\u00ca":6,"\u00cb":6,"\u00c8":6,"\u00cd":6,"\u00ce":6,"\u00cf":6,"\u00cc":6,"\u00d1":6,"\u0110":6,"\u014a":6,"\u0126":6,"\u0132":6,"\u010e":6,"\u0114":6,"\u011a":6,"\u0116":6,"\u0112":6,"\u0118":6,"\u0124":6,"\u012c":6,"\u0130":6,"\u012a":6,"\u012e":6,"\u0128":6,"\u0136":6,"\u0139":6,"\u013d":6,"\u013b":6,"\u013f":6,"\u0143":6,"\u0147":6,"\u0145":6,"\u0154":6,"\u0158":6,"\u0156":6,"g":29,"\u011f":29,"\u011d":29,"\u0123":29,"\u0121":29,"b":5,"h":5,"k":5,"l":5,"\u0142":5,"\u0127":5,"\u0125":5,"\u0137":5,"\u013a":5,"\u013e":5,"\u013c":5,"\u0140":5,"i":8,"m":8,"n":8,"p":8,"r":8,"\u0131":8,"\u00ed":8,"\u00ee":8,"\u00ec":8,"\u00f1":8,"\u014b":8,"\u0138":8,"\u0133":8,"\u012b":8,"\u012f":8,"\u0129":8,"\u0144":8,"\u0148":8,"\u0146":8,"\u0155":8,"\u0159":8,"\u0157":8,"c":39,"d":39,"e":39,"o":39,"q":39,"\u00f8":39,"\u0153":39,"\u00e7":39,"\u00e9":39,"\u00ea":39,"\u00e8":39,"\u00f3":39,"\u00f4":39,"\u00f2":39,"\u00f5":39,"\u0111":39,"\u0107":39,"\u010d":39,"\u0109":39,"\u010b":39,"\u010f":39,"\u0115":39,"\u011b":39,"\u0117":39,"\u0113":39,"\u0119":39,"\u014f":39,"\u0151":39,"\u014d":39,"\u01ff":39,"\u01a1":39,"s":23,"\u0161":23,"\u015b":23,"\u015f":23,"\u015d":23,"\u0219":23,"t":16,"\u0167":16,"\u0165":16,"\u0163":16,"\u021b":16,"u":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u00f9":26,"\u016d":26,"\u0171":26,"\u016b":26,"\u0173":26,"\u016f":26,"\u0169":26,"\u01b0":26,"v":19,"w":19,"y":19,"\u00fd":19,"\u00ff":19,"\u0175":19,"\u0233":19,"x":20,"a":33,"\u00e6":33,"\u00e1":33,"\u00e2":33,"\u00e0":33,"\u00e5":33,"\u00e3":33,"\u0103":33,"\u0101":33,"\u0105":33,"\u01fb":33,"\u01fd":33,"z":18,"\u017e":18,"\u017a":18,"\u017c":18,":":18,";":18,"\u00bb":16,"\u00ab":26,"-":22,"\u00ad":22,")":-12,"]":-12,"}":-12,"\"":-3,"'":-3,",":42,".":42}},"\u017d":{"d":"8,0r0,-30r116,-167r-105,0r0,-46r176,0r0,32r-113,166r115,0r0,45r-189,0xm127,-256r-41,0r-37,-44r39,0v7,7,11,17,19,23r18,-23r38,0","w":207,"k":{"J":-8,"\u0134":-8,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u0152":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u01a0":8,"X":2,"Y":-2,"\u00dd":-2,"\u0178":-2,"\u0232":-2,"A":-3,"\u00c6":-3,"\u00c1":-3,"\u00c2":-3,"\u00c4":-3,"\u00c0":-3,"\u00c5":-3,"\u00c3":-3,"\u0102":-3,"\u0100":-3,"\u0104":-3,"\u01fa":-3,"\u01fc":-3,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0111":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"\u01a1":3,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"\u01b0":4,"v":6,"w":6,"y":6,"\u00fd":6,"\u00ff":6,"\u0175":6,"\u0233":6,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"-":3,"\u00ad":3}},"\u00e1":{"d":"101,-253r51,0r-44,55r-38,0xm91,-180v103,-1,72,94,80,180r-49,0v-2,-6,-1,-14,-4,-18v-28,40,-108,20,-108,-32v0,-46,42,-67,104,-67v4,-37,-62,-26,-81,-12r-10,-36v12,-7,36,-15,68,-15xm64,-55v0,35,52,19,52,-9r0,-19v-29,0,-52,7,-52,28"},"\u00e2":{"d":"75,-253r37,0r36,55r-36,0v-7,-10,-11,-22,-19,-31r-18,31r-35,0xm91,-180v103,-1,72,94,80,180r-49,0v-2,-6,-1,-14,-4,-18v-28,40,-108,20,-108,-32v0,-46,42,-67,104,-67v4,-37,-62,-26,-81,-12r-10,-36v12,-7,36,-15,68,-15xm64,-55v0,35,52,19,52,-9r0,-19v-29,0,-52,7,-52,28"},"\u00e4":{"d":"82,-226v0,14,-10,25,-25,25v-14,0,-25,-11,-25,-25v0,-15,12,-25,26,-25v14,0,24,10,24,25xm158,-226v0,14,-11,25,-26,25v-14,0,-24,-11,-24,-25v0,-15,11,-25,25,-25v14,0,25,10,25,25xm91,-180v103,-1,72,94,80,180r-49,0v-2,-6,-1,-14,-4,-18v-28,40,-108,20,-108,-32v0,-46,42,-67,104,-67v4,-37,-62,-26,-81,-12r-10,-36v12,-7,36,-15,68,-15xm64,-55v0,35,52,19,52,-9r0,-19v-29,0,-52,7,-52,28"},"\u00e0":{"d":"36,-253r50,0r31,55r-37,0xm91,-180v103,-1,72,94,80,180r-49,0v-2,-6,-1,-14,-4,-18v-28,40,-108,20,-108,-32v0,-46,42,-67,104,-67v4,-37,-62,-26,-81,-12r-10,-36v12,-7,36,-15,68,-15xm64,-55v0,35,52,19,52,-9r0,-19v-29,0,-52,7,-52,28"},"\u00e5":{"d":"96,-194v-26,0,-42,-16,-42,-35v0,-20,15,-36,42,-36v26,0,40,15,40,36v0,20,-15,35,-40,35xm95,-212v11,0,17,-8,17,-17v0,-9,-6,-18,-17,-18v-21,0,-21,35,0,35xm91,-180v103,-1,72,94,80,180r-49,0v-2,-6,-1,-14,-4,-18v-28,40,-108,20,-108,-32v0,-46,42,-67,104,-67v4,-37,-62,-26,-81,-12r-10,-36v12,-7,36,-15,68,-15xm64,-55v0,35,52,19,52,-9r0,-19v-29,0,-52,7,-52,28"},"\u00e3":{"d":"143,-250v5,60,-40,49,-68,33v-5,0,-8,5,-8,16r-26,0v-5,-56,41,-51,68,-33v6,0,8,-3,9,-16r25,0xm91,-180v103,-1,72,94,80,180r-49,0v-2,-6,-1,-14,-4,-18v-28,40,-108,20,-108,-32v0,-46,42,-67,104,-67v4,-37,-62,-26,-81,-12r-10,-36v12,-7,36,-15,68,-15xm64,-55v0,35,52,19,52,-9r0,-19v-29,0,-52,7,-52,28"},"\u00e7":{"d":"148,-45r6,41v-8,4,-22,7,-40,8r-7,12v14,3,26,12,26,29v-1,36,-46,39,-74,27r8,-23v9,5,31,10,33,-4v0,-7,-9,-11,-29,-13r15,-30v-46,-7,-74,-39,-74,-88v0,-65,69,-113,142,-87r-8,41v-32,-15,-78,0,-78,43v0,45,45,59,80,44","w":162,"k":{"T":5,"\u0166":5,"\u0164":5,"\u0162":5,"\u021a":5,"f":-3,"\u00df":-3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0111":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"\u01a1":4,"t":-6,"\u0167":-6,"\u0165":-6,"\u0163":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u0175":-5,"\u0233":-5,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fb":-1,"\u01fd":-1,"\u00bb":-4,"-":-4,"\u00ad":-4,"\"":-2,"'":-2,",":3,".":3}},"\u00e9":{"d":"108,-253r51,0r-44,55r-38,0xm177,-71r-113,0v2,39,64,39,98,27r8,37v-69,28,-158,2,-158,-79v0,-45,28,-94,89,-94v64,0,84,54,76,109xm64,-108r65,0v0,-13,-6,-36,-31,-36v-23,0,-33,21,-34,36","k":{"T":15,"\u0166":15,"\u0164":15,"\u0162":15,"\u021a":15,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0175":2,"\u0233":2,"x":4,"-":-11,"\u00ad":-11,"\"":1,"'":1,",":6,".":6}},"\u00ea":{"d":"80,-253r37,0r36,55r-36,0v-7,-10,-11,-22,-19,-31r-18,31r-35,0xm177,-71r-113,0v2,39,64,39,98,27r8,37v-69,28,-158,2,-158,-79v0,-45,28,-94,89,-94v64,0,84,54,76,109xm64,-108r65,0v0,-13,-6,-36,-31,-36v-23,0,-33,21,-34,36","k":{"T":15,"\u0166":15,"\u0164":15,"\u0162":15,"\u021a":15,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0175":2,"\u0233":2,"x":4,"-":-11,"\u00ad":-11,"\"":1,"'":1,",":6,".":6}},"\u00eb":{"d":"63,-201v-14,0,-26,-11,-26,-25v0,-15,12,-25,26,-25v14,0,25,10,25,25v0,14,-11,25,-25,25xm164,-226v0,14,-11,25,-26,25v-14,0,-25,-11,-25,-25v0,-15,12,-25,26,-25v14,0,25,10,25,25xm177,-71r-113,0v2,39,64,39,98,27r8,37v-69,28,-158,2,-158,-79v0,-45,28,-94,89,-94v64,0,84,54,76,109xm64,-108r65,0v0,-13,-6,-36,-31,-36v-23,0,-33,21,-34,36","k":{"T":15,"\u0166":15,"\u0164":15,"\u0162":15,"\u021a":15,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0175":2,"\u0233":2,"x":4,"-":-11,"\u00ad":-11,"\"":1,"'":1,",":6,".":6}},"\u00e8":{"d":"43,-253r51,0r31,55r-38,0xm177,-71r-113,0v2,39,64,39,98,27r8,37v-69,28,-158,2,-158,-79v0,-45,28,-94,89,-94v64,0,84,54,76,109xm64,-108r65,0v0,-13,-6,-36,-31,-36v-23,0,-33,21,-34,36","k":{"T":15,"\u0166":15,"\u0164":15,"\u0162":15,"\u021a":15,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u0175":2,"\u0233":2,"x":4,"-":-11,"\u00ad":-11,"\"":1,"'":1,",":6,".":6}},"\u00ed":{"d":"57,-253r51,0r-44,55r-38,0xm77,0r-55,0r0,-176r55,0r0,176","w":98},"\u00ee":{"d":"31,-253r37,0r36,55r-36,0v-7,-10,-11,-22,-19,-31r-18,31r-36,0xm77,0r-55,0r0,-176r55,0r0,176","w":98},"\u00ef":{"d":"12,-201v-14,0,-26,-11,-26,-25v0,-15,12,-25,26,-25v14,0,24,10,24,25v0,14,-10,25,-24,25xm87,-201v-14,0,-25,-11,-25,-25v0,-15,11,-25,25,-25v14,0,25,10,25,25v0,14,-11,25,-25,25xm77,0r-55,0r0,-176r55,0r0,176","w":98},"\u00ec":{"d":"-11,-253r51,0r31,55r-38,0xm77,0r-55,0r0,-176r55,0r0,176","w":98},"\u00f1":{"d":"157,-250v5,60,-40,49,-68,33v-5,0,-8,5,-8,16r-26,0v-5,-56,41,-51,68,-33v6,0,8,-3,9,-16r25,0xm107,-136v-51,0,-23,87,-30,136r-55,0r-1,-176r47,0v2,7,0,18,4,24v7,-11,25,-28,54,-28v36,0,63,24,63,76r0,104r-55,0r0,-98v0,-23,-7,-38,-27,-38","w":210,"k":{"T":21,"\u0166":21,"\u0164":21,"\u0162":21,"\u021a":21,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0175":7,"\u0233":7,"\"":5,"'":5}},"\u00f3":{"d":"111,-253r50,0r-44,55r-37,0xm106,-180v54,0,90,37,90,90v0,64,-46,94,-93,94v-51,0,-91,-34,-91,-91v0,-57,37,-93,94,-93xm104,-141v-26,0,-36,27,-36,53v0,30,13,53,36,53v21,0,35,-21,35,-53v0,-26,-10,-53,-35,-53","w":207,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"x":9,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"-":-6,"\u00ad":-6,")":3,"]":3,"}":3,"\"":7,"'":7,",":12,".":12}},"\u00f4":{"d":"85,-253r37,0r36,55r-36,0v-7,-10,-11,-22,-19,-31r-18,31r-35,0xm106,-180v54,0,90,37,90,90v0,64,-46,94,-93,94v-51,0,-91,-34,-91,-91v0,-57,37,-93,94,-93xm104,-141v-26,0,-36,27,-36,53v0,30,13,53,36,53v21,0,35,-21,35,-53v0,-26,-10,-53,-35,-53","w":207,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"x":9,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"-":-6,"\u00ad":-6,")":3,"]":3,"}":3,"\"":7,"'":7,",":12,".":12}},"\u00f6":{"d":"66,-201v-14,0,-26,-11,-26,-25v0,-15,12,-25,26,-25v14,0,25,10,25,25v0,14,-11,25,-25,25xm167,-226v0,14,-11,25,-26,25v-14,0,-25,-11,-25,-25v0,-15,12,-25,26,-25v14,0,25,10,25,25xm106,-180v54,0,90,37,90,90v0,64,-46,94,-93,94v-51,0,-91,-34,-91,-91v0,-57,37,-93,94,-93xm104,-141v-26,0,-36,27,-36,53v0,30,13,53,36,53v21,0,35,-21,35,-53v0,-26,-10,-53,-35,-53","w":207,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"x":9,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"-":-6,"\u00ad":-6,")":3,"]":3,"}":3,"\"":7,"'":7,",":12,".":12}},"\u00f2":{"d":"48,-253r50,0r31,55r-37,0xm106,-180v54,0,90,37,90,90v0,64,-46,94,-93,94v-51,0,-91,-34,-91,-91v0,-57,37,-93,94,-93xm104,-141v-26,0,-36,27,-36,53v0,30,13,53,36,53v21,0,35,-21,35,-53v0,-26,-10,-53,-35,-53","w":207,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"x":9,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"-":-6,"\u00ad":-6,")":3,"]":3,"}":3,"\"":7,"'":7,",":12,".":12}},"\u00f5":{"d":"155,-250v5,60,-40,49,-68,33v-5,0,-9,5,-9,16r-25,0v-1,-30,10,-47,29,-47v20,-4,44,35,48,-2r25,0xm106,-180v54,0,90,37,90,90v0,64,-46,94,-93,94v-51,0,-91,-34,-91,-91v0,-57,37,-93,94,-93xm104,-141v-26,0,-36,27,-36,53v0,30,13,53,36,53v21,0,35,-21,35,-53v0,-26,-10,-53,-35,-53","w":207,"k":{"T":18,"\u0166":18,"\u0164":18,"\u0162":18,"\u021a":18,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0111":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"\u01a1":-1,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u0175":3,"\u0233":3,"x":9,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"-":-6,"\u00ad":-6,")":3,"]":3,"}":3,"\"":7,"'":7,",":12,".":12}},"\u0161":{"d":"98,-198r-38,0r-35,-55r35,0v7,10,12,23,20,32r18,-32r36,0xm12,-9r10,-39v13,9,68,24,70,-1v0,-9,-5,-14,-26,-20v-80,-23,-58,-111,22,-111v21,0,39,5,50,10r-10,38v-11,-7,-57,-20,-59,4v0,8,6,13,28,20v74,22,60,116,-28,112v-23,0,-44,-6,-57,-13","w":156,"k":{"T":13,"\u0166":13,"\u0164":13,"\u0162":13,"\u021a":13,",":4,".":4}},"\u00fa":{"d":"113,-253r51,0r-44,55r-38,0xm76,-81v-7,51,57,52,57,10r0,-105r55,0r1,176r-47,0v-2,-8,0,-19,-4,-25v-7,11,-23,29,-55,29v-36,0,-62,-23,-62,-77r0,-103r55,0r0,95","w":209,"k":{"T":13,"\u0166":13,"\u0164":13,"\u0162":13,"\u021a":13,",":3,".":3}},"\u00fb":{"d":"87,-253r37,0r35,55r-35,0r-19,-31r-18,31r-36,0xm76,-81v-7,51,57,52,57,10r0,-105r55,0r1,176r-47,0v-2,-8,0,-19,-4,-25v-7,11,-23,29,-55,29v-36,0,-62,-23,-62,-77r0,-103r55,0r0,95","w":209,"k":{"T":13,"\u0166":13,"\u0164":13,"\u0162":13,"\u021a":13,",":3,".":3}},"\u00fc":{"d":"93,-226v0,14,-10,25,-25,25v-14,0,-25,-11,-25,-25v0,-15,12,-25,26,-25v14,0,24,10,24,25xm144,-201v-14,0,-25,-11,-25,-25v0,-15,11,-25,25,-25v14,0,25,10,25,25v0,14,-11,25,-25,25xm76,-81v-7,51,57,52,57,10r0,-105r55,0r1,176r-47,0v-2,-8,0,-19,-4,-25v-7,11,-23,29,-55,29v-36,0,-62,-23,-62,-77r0,-103r55,0r0,95","w":209,"k":{"T":13,"\u0166":13,"\u0164":13,"\u0162":13,"\u021a":13,",":3,".":3}},"\u00f9":{"d":"48,-253r50,0r31,55r-38,0xm76,-81v-7,51,57,52,57,10r0,-105r55,0r1,176r-47,0v-2,-8,0,-19,-4,-25v-7,11,-23,29,-55,29v-36,0,-62,-23,-62,-77r0,-103r55,0r0,95","w":209,"k":{"T":13,"\u0166":13,"\u0164":13,"\u0162":13,"\u021a":13,",":3,".":3}},"\u00fd":{"d":"107,-253r50,0r-44,55r-37,0xm20,33v22,-5,58,-22,47,-48r-65,-161r61,0r36,119r30,-119r58,0v-40,94,-59,246,-156,256","w":188,"k":{"T":13,"\u0166":13,"\u0164":13,"\u0162":13,"\u021a":13,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"s":6,"\u0161":6,"\u015b":6,"\u015f":6,"\u015d":6,"\u0219":6,"v":-7,"w":-7,"y":-7,"\u00fd":-7,"\u00ff":-7,"\u0175":-7,"\u0233":-7,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fb":3,"\u01fd":3,":":-2,";":-2,"-":3,"\u00ad":3,",":17,".":17}},"\u00ff":{"d":"85,-226v0,14,-10,25,-25,25v-14,0,-25,-11,-25,-25v0,-15,12,-25,26,-25v14,0,24,10,24,25xm136,-201v-14,0,-25,-11,-25,-25v0,-15,11,-25,25,-25v14,0,25,10,25,25v0,14,-11,25,-25,25xm20,33v22,-5,58,-22,47,-48r-65,-161r61,0r36,119r30,-119r58,0v-40,94,-59,246,-156,256","w":188,"k":{"T":13,"\u0166":13,"\u0164":13,"\u0162":13,"\u021a":13,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"s":6,"\u0161":6,"\u015b":6,"\u015f":6,"\u015d":6,"\u0219":6,"v":-7,"w":-7,"y":-7,"\u00fd":-7,"\u00ff":-7,"\u0175":-7,"\u0233":-7,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fb":3,"\u01fd":3,":":-2,";":-2,"-":3,"\u00ad":3,",":17,".":17}},"\u017e":{"d":"105,-198r-37,0r-36,-55r36,0v7,10,11,23,19,32r18,-32r36,0xm8,0r0,-31r55,-70v10,-13,19,-19,28,-32r-77,0r0,-43r144,0r0,33r-82,99r85,0r0,44r-153,0","w":168,"k":{"T":10,"\u0166":10,"\u0164":10,"\u0162":10,"\u021a":10,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0111":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"\u01a1":3,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u0175":-3,"\u0233":-3,"\u00bb":-2}},"\u0110":{"d":"241,-127v5,117,-103,142,-214,127r0,-102r-26,0r0,-43r26,0r0,-95v20,-3,46,-6,74,-6v91,0,136,35,140,119xm130,-145r0,43r-49,0r0,62v61,4,101,-19,102,-86v1,-62,-44,-84,-102,-75r0,56r49,0","w":253,"k":{"\u0142":-1,"T":10,"\u0166":10,"\u0164":10,"\u0162":10,"\u021a":10,"V":3,"W":3,"\u0174":3,"X":12,"Y":13,"\u00dd":13,"\u0178":13,"\u0232":13,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"\u0102":6,"\u0100":6,"\u0104":6,"\u01fa":6,"\u01fc":6,"f":-4,"\u00df":-4,"g":-1,"\u011f":-1,"\u011d":-1,"\u0123":-1,"\u0121":-1,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"t":-5,"\u0167":-5,"\u0165":-5,"\u0163":-5,"\u021b":-5,"u":-2,"\u00fa":-2,"\u00fb":-2,"\u00fc":-2,"\u00f9":-2,"\u016d":-2,"\u0171":-2,"\u016b":-2,"\u0173":-2,"\u016f":-2,"\u0169":-2,"\u01b0":-2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u0175":-4,"\u0233":-4,"x":4,"z":1,"\u017e":1,"\u017a":1,"\u017c":1,"\u00ab":-1,"-":-4,"\u00ad":-4,")":7,"]":7,"}":7,",":14,".":14}},"\u014a":{"d":"74,0r-50,0r0,-243r64,0r50,89v15,25,28,58,41,83v-7,-52,-5,-113,-5,-172r51,0r0,226v0,62,-33,89,-82,95r-12,-42v24,-6,36,-15,40,-31r-56,-99v-15,-25,-29,-59,-43,-85","w":248,"k":{"Y":6,"\u00dd":6,"\u0178":6,"\u0232":6,"f":-2,"\u00df":-2,"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":-3,"\u0167":-3,"\u0165":-3,"\u0163":-3,"\u021b":-3,"x":1,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1}},"\u0126":{"d":"249,-170r-23,0r0,170r-55,0r0,-92r-90,0r0,92r-55,0r0,-170r-23,0r0,-32r23,0r0,-41r55,0r0,41r90,0r0,-41r55,0r0,41r23,0r0,32xm171,-140r0,-30r-90,0r0,30r90,0","w":252,"k":{"Y":6,"\u00dd":6,"\u0178":6,"\u0232":6,"f":-2,"\u00df":-2,"b":-1,"h":-1,"k":-1,"l":-1,"\u0142":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u0138":-1,"\u0133":-1,"\u012d":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0111":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"\u01a1":1,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":-3,"\u0167":-3,"\u0165":-3,"\u0163":-3,"\u021b":-3,"x":1,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1}},"\u0166":{"d":"192,-197r-66,0r0,60r41,0r0,33r-41,0r0,104r-55,0r0,-104r-42,0r0,-33r42,0r0,-60r-66,0r0,-46r187,0r0,46","w":197,"k":{"\u0129":19,"\u012f":19,"\u012b":19,"\u012d":19,"\u0133":19,"\u00ec":19,"\u00ef":19,"\u00ee":19,"\u00ed":19,"\u00e8":29,"\u00e0":24,"\u0131":19,"i":19,"T":-8,"\u0166":-8,"\u0164":-8,"\u0162":-8,"\u021a":-8,"J":19,"\u0134":19,"C":10,"G":10,"O":10,"Q":10,"\u00d8":10,"\u0152":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"\u0106":10,"\u010c":10,"\u0108":10,"\u010a":10,"\u011e":10,"\u011c":10,"\u0122":10,"\u0120":10,"\u014e":10,"\u0150":10,"\u014c":10,"\u01fe":10,"\u01a0":10,"V":-10,"W":-10,"\u0174":-10,"X":-6,"Y":-3,"\u00dd":-3,"\u0178":-3,"\u0232":-3,"A":26,"\u00c6":26,"\u00c1":26,"\u00c2":26,"\u00c4":26,"\u00c0":26,"\u00c5":26,"\u00c3":26,"\u0102":26,"\u0100":26,"\u0104":26,"\u01fa":26,"\u01fc":26,"M":1,"S":3,"\u0160":3,"\u015a":3,"\u015e":3,"\u015c":3,"\u0218":3,"g":22,"\u011f":22,"\u011d":22,"\u0123":22,"\u0121":22,"b":4,"h":4,"k":4,"l":4,"\u0142":4,"\u0127":4,"\u0125":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4,"m":19,"n":19,"p":19,"r":19,"\u00f1":19,"\u014b":19,"\u0138":19,"\u0144":19,"\u0148":19,"\u0146":19,"\u0155":19,"\u0159":19,"\u0157":19,"c":29,"d":29,"e":29,"o":29,"q":29,"\u00f8":29,"\u0153":29,"\u00e7":29,"\u00e9":29,"\u00ea":29,"\u00eb":29,"\u00f3":29,"\u00f4":29,"\u00f6":29,"\u00f2":29,"\u00f5":29,"\u0111":29,"\u0107":29,"\u010d":29,"\u0109":29,"\u010b":29,"\u010f":29,"\u0115":29,"\u011b":29,"\u0117":29,"\u0113":29,"\u0119":29,"\u014f":29,"\u0151":29,"\u014d":29,"\u01ff":29,"\u01a1":29,"s":26,"\u0161":26,"\u015b":26,"\u015f":26,"\u015d":26,"\u0219":26,"u":19,"\u00fa":19,"\u00fb":19,"\u00fc":19,"\u00f9":19,"\u016d":19,"\u0171":19,"\u016b":19,"\u0173":19,"\u016f":19,"\u0169":19,"\u01b0":19,"v":19,"w":19,"y":19,"\u00fd":19,"\u00ff":19,"\u0175":19,"\u0233":19,"x":5,"a":24,"\u00e6":24,"\u00e1":24,"\u00e2":24,"\u00e4":24,"\u00e5":24,"\u00e3":24,"\u0103":24,"\u0101":24,"\u0105":24,"\u01fb":24,"\u01fd":24,"z":21,"\u017e":21,"\u017a":21,"\u017c":21,":":13,";":13,"\u00bb":15,"\u00ab":19,"-":22,"\u00ad":22,")":-11,"]":-11,"}":-11,"\"":-3,"'":-3,",":30,".":30,"\u00b5":14}},"\u021c":{"d":"27,45r-6,-42v36,-3,100,-27,100,-66v0,-31,-44,-44,-79,-29r-6,-37v33,-6,68,-24,68,-51v0,-34,-61,-24,-80,-12r-11,-36v41,-30,146,-26,146,38v0,26,-18,46,-43,58v35,5,63,27,63,66v0,62,-69,108,-152,111","w":193},"\u0111":{"d":"221,-194r-28,0r1,194r-49,0v-2,-8,0,-20,-3,-26v-39,60,-130,24,-130,-60v0,-82,80,-120,126,-74r0,-34r-65,0r0,-30r65,0r0,-32r55,0r0,32r28,0r0,30xm67,-88v0,58,71,64,71,10v0,-32,-4,-60,-33,-60v-25,0,-38,22,-38,50","w":214,"k":{",":3,".":3}},"\u014b":{"d":"107,-136v-51,0,-23,87,-30,136r-55,0r-1,-176r47,0v2,7,0,18,4,24v7,-11,25,-28,54,-28v36,0,63,24,63,76r0,83v0,64,-34,86,-75,91r-10,-42v47,-5,30,-79,30,-126v0,-23,-7,-38,-27,-38","w":210,"k":{"T":21,"\u0166":21,"\u0164":21,"\u0162":21,"\u021a":21,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0175":7,"\u0233":7,"\"":5,"'":5}},"\u0127":{"d":"77,-155v34,-44,112,-30,112,52r0,103r-55,0r0,-97v0,-23,-7,-39,-28,-39v-50,0,-22,88,-29,136r-55,0r0,-194r-28,0r0,-30r28,0r0,-32r55,0r0,32r66,0r0,30r-66,0r0,39","w":210,"k":{"T":21,"\u0166":21,"\u0164":21,"\u0162":21,"\u021a":21,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0175":7,"\u0233":7,"\"":5,"'":5}},"\u0138":{"d":"77,-176r0,74r49,-74r66,0r-63,71r72,105r-68,0r-42,-72r-14,17r0,55r-55,0r0,-176r55,0","w":195,"k":{"T":10,"\u0166":10,"\u0164":10,"\u0162":10,"\u021a":10,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u0138":-4,"\u0133":-4,"\u012d":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0175":-1,"\u0233":-1,"a":-2,"\u00e6":-2,"\u00e1":-2,"\u00e2":-2,"\u00e4":-2,"\u00e0":-2,"\u00e5":-2,"\u00e3":-2,"\u0103":-2,"\u0101":-2,"\u0105":-2,"\u01fb":-2,"\u01fd":-2,":":-1,";":-1,"-":2,"\u00ad":2,",":-1,".":-1}},"\u0149":{"d":"107,-136v-51,0,-23,87,-30,136r-55,0r-1,-176r47,0v2,7,0,18,4,24v7,-11,25,-28,54,-28v36,0,63,24,63,76r0,104r-55,0r0,-98v0,-23,-7,-38,-27,-38xm27,-189r-24,-14v10,-15,16,-37,4,-52r35,-9v5,3,11,14,11,28v0,25,-19,41,-26,47","w":210,"k":{"T":21,"\u0166":21,"\u0164":21,"\u0162":21,"\u021a":21,"t":2,"\u0167":2,"\u0165":2,"\u0163":2,"\u021b":2,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u0175":7,"\u0233":7,"\"":5,"'":5}},"\u0167":{"d":"121,-1v-54,17,-103,-10,-91,-81r-23,0r0,-29r23,0r0,-25r-24,0r0,-40r24,0r0,-33r53,-15r0,48r39,0r0,40r-39,0r0,25r30,0r0,29r-30,0v-4,31,9,48,38,40r0,41","w":132,"k":{"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0111":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"\u01a1":2,"v":-2,"w":-2,"y":-2,"\u00fd":-2,"\u00ff":-2,"\u0175":-2,"\u0233":-2,",":3,".":3}},"\u021d":{"d":"18,75r-6,-42v21,0,91,-8,91,-51v6,-24,-41,-37,-67,-23r-7,-37v33,-7,61,-18,61,-39v0,-30,-57,-21,-73,-9r-10,-35v36,-30,136,-27,136,33v0,22,-14,35,-37,48v34,5,54,25,54,56v0,60,-68,97,-142,99","w":170},"\u0132":{"d":"24,-243r55,0r0,243r-55,0r0,-243xm174,-90r0,-153r55,0r0,154v2,86,-59,104,-127,87r6,-44v34,9,66,8,66,-44","w":250,"k":{"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u0175":-1,"\u0233":-1,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fb":2,"\u01fd":2,")":-5,"]":-5,"}":-5,",":3,".":3}},"\u0133":{"d":"77,0r-55,0r0,-176r55,0r0,176xm49,-253v18,0,29,12,29,28v0,15,-11,27,-29,27v-17,0,-28,-12,-28,-27v0,-16,10,-28,28,-28xm84,35v39,-6,44,-13,43,-69r0,-142r56,0v-6,107,35,260,-93,253xm155,-253v18,0,29,12,29,28v0,15,-12,27,-30,27v-17,0,-28,-12,-28,-27v0,-16,11,-28,29,-28","w":203,"k":{",":4,".":4}},"\u00b9":{"d":"85,-159r-43,0r0,-107r-29,13r-5,-30v22,-10,42,-21,77,-17r0,141","w":108},"\u00b2":{"d":"5,-159r0,-21v19,-19,68,-54,64,-72v0,-24,-40,-18,-52,-7r-11,-27v27,-27,108,-19,108,28v0,30,-29,47,-50,67r52,0r0,32r-111,0","w":126},"\u00b3":{"d":"17,-264r-8,-26v24,-19,103,-15,103,24v0,15,-13,27,-30,32v20,2,35,15,35,33v0,42,-80,54,-114,33r9,-28v13,10,60,16,60,-7v0,-15,-22,-19,-41,-18r0,-24v16,1,36,-1,37,-15v0,-19,-42,-12,-51,-4","w":124},"\u0102":{"d":"150,-62r-70,0r-17,62r-57,0r74,-243r72,0r76,243r-60,0xm88,-103r54,0r-28,-99xm67,-300r29,0v1,8,6,16,21,16v15,0,21,-7,23,-16r28,0v-1,26,-17,45,-51,45v-35,0,-50,-19,-50,-45","w":236,"k":{"T":30,"\u0166":30,"\u0164":30,"\u0162":30,"\u021a":30,"J":-5,"\u0134":-5,"C":9,"G":9,"O":9,"Q":9,"\u00d8":9,"\u0152":9,"\u00c7":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"\u0106":9,"\u010c":9,"\u0108":9,"\u010a":9,"\u011e":9,"\u011c":9,"\u0122":9,"\u0120":9,"\u014e":9,"\u0150":9,"\u014c":9,"\u01fe":9,"\u01a0":9,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"\u01af":13,"V":21,"W":21,"\u0174":21,"X":9,"Y":34,"\u00dd":34,"\u0178":34,"\u0232":34,"Z":-2,"\u017d":-2,"\u0179":-2,"\u017b":-2,"f":5,"\u00df":5,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"j":2,"\u0135":2,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u0138":2,"\u0133":2,"\u012d":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":7,"\u0167":7,"\u0165":7,"\u0163":7,"\u021b":7,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"\u01b0":5,"v":11,"w":11,"y":11,"\u00fd":11,"\u00ff":11,"\u0175":11,"\u0233":11,"x":1,"-":3,"\u00ad":3,")":6,"]":6,"}":6,"\"":17,"'":17}},"\u0100":{"d":"150,-62r-70,0r-17,62r-57,0r74,-243r72,0r76,243r-60,0xm88,-103r54,0r-28,-99xm70,-293r93,0r0,29r-93,0r0,-29","w":236,"k":{"T":30,"\u0166":30,"\u0164":30,"\u0162":30,"\u021a":30,"J":-5,"\u0134":-5,"C":9,"G":9,"O":9,"Q":9,"\u00d8":9,"\u0152":9,"\u00c7":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"\u0106":9,"\u010c":9,"\u0108":9,"\u010a":9,"\u011e":9,"\u011c":9,"\u0122":9,"\u0120":9,"\u014e":9,"\u0150":9,"\u014c":9,"\u01fe":9,"\u01a0":9,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"\u01af":13,"V":21,"W":21,"\u0174":21,"X":9,"Y":34,"\u00dd":34,"\u0178":34,"\u0232":34,"Z":-2,"\u017d":-2,"\u0179":-2,"\u017b":-2,"f":5,"\u00df":5,"g":5,"\u011f":5,"\u011d":5,"\u0123":5,"\u0121":5,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"j":2,"\u0135":2,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u0138":2,"\u0133":2,"\u012d":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0111":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"\u01a1":5,"s":1,"\u0161":1,"\u015b":1,"\u015f":1,"\u015d":1,"\u0219":1,"t":7,"\u0167":7,"\u0165":7,"\u0163":7,"\u021b":7,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"\u01b0":5,"v":11,"w":11,"y":11,"\u00fd":11,"\u00ff":11,"\u0175":11,"\u0233":11,"x":1,"-":3,"\u00ad":
