/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();;

var Drupal = Drupal || { 'settings': {}, 'behaviors': {}, 'themes': {}, 'locale': {} };

/**
 * Set the variable that indicates if JavaScript behaviors should be applied
 */
Drupal.jsEnabled = document.getElementsByTagName && document.createElement && document.createTextNode && document.documentElement && document.getElementById;

/**
 * Attach all registered behaviors to a page element.
 *
 * Behaviors are event-triggered actions that attach to page elements, enhancing
 * default non-Javascript UIs. Behaviors are registered in the Drupal.behaviors
 * object as follows:
 * @code
 *    Drupal.behaviors.behaviorName = function () {
 *      ...
 *    };
 * @endcode
 *
 * Drupal.attachBehaviors is added below to the jQuery ready event and so
 * runs on initial page load. Developers implementing AHAH/AJAX in their
 * solutions should also call this function after new page content has been
 * loaded, feeding in an element to be processed, in order to attach all
 * behaviors to the new content.
 *
 * Behaviors should use a class in the form behaviorName-processed to ensure
 * the behavior is attached only once to a given element. (Doing so enables
 * the reprocessing of given elements, which may be needed on occasion despite
 * the ability to limit behavior attachment to a particular element.)
 *
 * @param context
 *   An element to attach behaviors to. If none is given, the document element
 *   is used.
 */
Drupal.attachBehaviors = function(context) {
  context = context || document;
  if (Drupal.jsEnabled) {
    // Execute all of them.
    jQuery.each(Drupal.behaviors, function() {
      this(context);
    });
  }
};

/**
 * Encode special characters in a plain-text string for display as HTML.
 */
Drupal.checkPlain = function(str) {
  str = String(str);
  var replace = { '&': '&amp;', '"': '&quot;', '<': '&lt;', '>': '&gt;' };
  for (var character in replace) {
    var regex = new RegExp(character, 'g');
    str = str.replace(regex, replace[character]);
  }
  return str;
};

/**
 * Translate strings to the page language or a given language.
 *
 * See the documentation of the server-side t() function for further details.
 *
 * @param str
 *   A string containing the English string to translate.
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 * @return
 *   The translated string.
 */
Drupal.t = function(str, args) {
  // Fetch the localized version of the string.
  if (Drupal.locale.strings && Drupal.locale.strings[str]) {
    str = Drupal.locale.strings[str];
  }

  if (args) {
    // Transform arguments before inserting them
    for (var key in args) {
      switch (key.charAt(0)) {
        // Escaped only
        case '@':
          args[key] = Drupal.checkPlain(args[key]);
        break;
        // Pass-through
        case '!':
          break;
        // Escaped and placeholder
        case '%':
        default:
          args[key] = Drupal.theme('placeholder', args[key]);
          break;
      }
      str = str.replace(key, args[key]);
    }
  }
  return str;
};

/**
 * Format a string containing a count of items.
 *
 * This function ensures that the string is pluralized correctly. Since Drupal.t() is
 * called by this function, make sure not to pass already-localized strings to it.
 *
 * See the documentation of the server-side format_plural() function for further details.
 *
 * @param count
 *   The item count to display.
 * @param singular
 *   The string for the singular case. Please make sure it is clear this is
 *   singular, to ease translation (e.g. use "1 new comment" instead of "1 new").
 *   Do not use @count in the singular string.
 * @param plural
 *   The string for the plural case. Please make sure it is clear this is plural,
 *   to ease translation. Use @count in place of the item count, as in "@count
 *   new comments".
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 *   Note that you do not need to include @count in this array.
 *   This replacement is done automatically for the plural case.
 * @return
 *   A translated string.
 */
Drupal.formatPlural = function(count, singular, plural, args) {
  var args = args || {};
  args['@count'] = count;
  // Determine the index of the plural form.
  var index = Drupal.locale.pluralFormula ? Drupal.locale.pluralFormula(args['@count']) : ((args['@count'] == 1) ? 0 : 1);

  if (index == 0) {
    return Drupal.t(singular, args);
  }
  else if (index == 1) {
    return Drupal.t(plural, args);
  }
  else {
    args['@count['+ index +']'] = args['@count'];
    delete args['@count'];
    return Drupal.t(plural.replace('@count', '@count['+ index +']'));
  }
};

/**
 * Generate the themed representation of a Drupal object.
 *
 * All requests for themed output must go through this function. It examines
 * the request and routes it to the appropriate theme function. If the current
 * theme does not provide an override function, the generic theme function is
 * called.
 *
 * For example, to retrieve the HTML that is output by theme_placeholder(text),
 * call Drupal.theme('placeholder', text).
 *
 * @param func
 *   The name of the theme function to call.
 * @param ...
 *   Additional arguments to pass along to the theme function.
 * @return
 *   Any data the theme function returns. This could be a plain HTML string,
 *   but also a complex object.
 */
Drupal.theme = function(func) {
  for (var i = 1, args = []; i < arguments.length; i++) {
    args.push(arguments[i]);
  }

  return (Drupal.theme[func] || Drupal.theme.prototype[func]).apply(this, args);
};

/**
 * Parse a JSON response.
 *
 * The result is either the JSON object, or an object with 'status' 0 and 'data' an error message.
 */
Drupal.parseJson = function (data) {
  if ((data.substring(0, 1) != '{') && (data.substring(0, 1) != '[')) {
    return { status: 0, data: data.length ? data : Drupal.t('Unspecified error') };
  }
  return eval('(' + data + ');');
};

/**
 * Freeze the current body height (as minimum height). Used to prevent
 * unnecessary upwards scrolling when doing DOM manipulations.
 */
Drupal.freezeHeight = function () {
  Drupal.unfreezeHeight();
  var div = document.createElement('div');
  $(div).css({
    position: 'absolute',
    top: '0px',
    left: '0px',
    width: '1px',
    height: $('body').css('height')
  }).attr('id', 'freeze-height');
  $('body').append(div);
};

/**
 * Unfreeze the body height
 */
Drupal.unfreezeHeight = function () {
  $('#freeze-height').remove();
};

/**
 * Wrapper around encodeURIComponent() which avoids Apache quirks (equivalent of
 * drupal_urlencode() in PHP). This function should only be used on paths, not
 * on query string arguments.
 */
Drupal.encodeURIComponent = function (item, uri) {
  uri = uri || location.href;
  item = encodeURIComponent(item).replace(/%2F/g, '/');
  return (uri.indexOf('?q=') != -1) ? item : item.replace(/%26/g, '%2526').replace(/%23/g, '%2523').replace(/\/\//g, '/%252F');
};

/**
 * Get the text selection in a textarea.
 */
Drupal.getSelection = function (element) {
  if (typeof(element.selectionStart) != 'number' && document.selection) {
    // The current selection
    var range1 = document.selection.createRange();
    var range2 = range1.duplicate();
    // Select all text.
    range2.moveToElementText(element);
    // Now move 'dummy' end point to end point of original range.
    range2.setEndPoint('EndToEnd', range1);
    // Now we can calculate start and end points.
    var start = range2.text.length - range1.text.length;
    var end = start + range1.text.length;
    return { 'start': start, 'end': end };
  }
  return { 'start': element.selectionStart, 'end': element.selectionEnd };
};

/**
 * Build an error message from ahah response.
 */
Drupal.ahahError = function(xmlhttp, uri) {
  if (xmlhttp.status == 200) {
    if (jQuery.trim($(xmlhttp.responseText).text())) {
      var message = Drupal.t("An error occurred. \n@uri\n@text", {'@uri': uri, '@text': xmlhttp.responseText });
    }
    else {
      var message = Drupal.t("An error occurred. \n@uri\n(no information available).", {'@uri': uri, '@text': xmlhttp.responseText });
    }
  }
  else {
    var message = Drupal.t("An HTTP error @status occurred. \n@uri", {'@uri': uri, '@status': xmlhttp.status });
  }
  return message;
}

// Global Killswitch on the <html> element
if (Drupal.jsEnabled) {
  // Global Killswitch on the <html> element
  $(document.documentElement).addClass('js');
  // 'js enabled' cookie
  document.cookie = 'has_js=1; path=/';
  // Attach all behaviors.
  $(document).ready(function() {
    Drupal.attachBehaviors(this);
  });
}

/**
 * The default themes.
 */
Drupal.theme.prototype = {

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
Drupal.locale = { 'pluralFormula': function($n) { return Number(($n!=1)); }, 'strings': { "Unspecified error": "Onbekend probleem", "Upload": "Uploaden", "Select all rows in this table": "Selecteer alle regels van deze tabel", "Deselect all rows in this table": "De-selecteer alle regels van deze tabel", "Only files with the following extensions are allowed: %files-allowed.": "Uitsluitend bestanden met de volgende extensies zijn toegelaten: %files-allowed.", "Drag to re-order": "Slepen om de volgorde te wijzigen", "Changes made in this table will not be saved until the form is submitted.": "Wijzigingen in deze tabel worden pas opgeslagen wanneer het formulier wordt ingediend.", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "Wijzigingen aan de blokken worden pas opgeslagen wanneer u de knop \x3cem\x3eBlokken opslaan\x3c/em\x3e aanklikt.", "The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.": "Het bestand %filename kan niet geüpload worden. Alleen bestanden met de volgende extensies zijn toegestaan: %extensions", "Automatic alias": "Automatische alias", "Close": "Sluiten", "unlimited": "ongelimiteerd", "Log messages": "Log berichten", "Please select a file.": "Selecteer a.u.b. een bestand.", "You are not allowed to operate on more than %num files.": "U mag aan niet meer dan %num bestanden werken.", "%filename is not an image.": "%filename is geen afbeelding.", "File browsing is disabled in directory %dir.": "Bestanden zoeken is uitgeschakeld in folder %dir.", "Do you want to refresh the current directory?": "Wilt u de huidige map verversen?", "Delete selected files?": "Geselecteerde bestanden verwijderen?", "Please select a thumbnail.": "Kies een miniatuur", "You must select at least %num files.": "Er dienen tenminste %num bestanden geselecteerd te worden.", "You can not perform this operation.": "U kunt deze actie niet uitvoeren.", "Insert file": "Bestand toevoegen" } };;
// ColorBox v1.3.16 - a full featured, light-weight, customizable lightbox based on jQuery 1.3+
// Copyright (c) 2011 Jack Moore - jack@colorpowered.com
// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
(function(a,b,c){function ba(b){if(!T){O=b,Z(a.extend(J,a.data(O,e))),x=a(O),P=0,J.rel!=="nofollow"&&(x=a("."+V).filter(function(){var b=a.data(this,e).rel||this.rel;return b===J.rel}),P=x.index(O),P===-1&&(x=x.add(O),P=x.length-1));if(!R){R=S=!0,q.show();if(J.returnFocus)try{O.blur(),a(O).one(k,function(){try{this.focus()}catch(a){}})}catch(c){}p.css({opacity:+J.opacity,cursor:J.overlayClose?"pointer":"auto"}).show(),J.w=X(J.initialWidth,"x"),J.h=X(J.initialHeight,"y"),U.position(0),n&&y.bind("resize."+o+" scroll."+o,function(){p.css({width:y.width(),height:y.height(),top:y.scrollTop(),left:y.scrollLeft()})}).trigger("resize."+o),$(g,J.onOpen),I.add(C).hide(),H.html(J.close).show()}U.load(!0)}}function _(){var a,b=f+"Slideshow_",c="click."+f,d,e,g;J.slideshow&&x[1]&&(d=function(){E.text(J.slideshowStop).unbind(c).bind(i,function(){if(P<x.length-1||J.loop)a=setTimeout(U.next,J.slideshowSpeed)}).bind(h,function(){clearTimeout(a)}).one(c+" "+j,e),q.removeClass(b+"off").addClass(b+"on"),a=setTimeout(U.next,J.slideshowSpeed)},e=function(){clearTimeout(a),E.text(J.slideshowStart).unbind([i,h,j,c].join(" ")).one(c,d),q.removeClass(b+"on").addClass(b+"off")},J.slideshowAuto?d():e())}function $(b,c){c&&c.call(O),a.event.trigger(b)}function Z(b){for(var c in b)a.isFunction(b[c])&&c.substring(0,2)!=="on"&&(b[c]=b[c].call(O));b.rel=b.rel||O.rel||"nofollow",b.href=a.trim(b.href||a(O).attr("href")),b.title=b.title||O.title}function Y(a){return J.photo||/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i.test(a)}function X(a,b){b=b==="x"?y.width():y.height();return typeof a=="string"?Math.round(/%/.test(a)?b/100*parseInt(a,10):parseInt(a,10)):a}function W(c,d){var e=b.createElement("div");c&&(e.id=f+c),e.style.cssText=d||!1;return a(e)}var d={transition:"elastic",speed:300,width:!1,initialWidth:"600",innerWidth:!1,maxWidth:!1,height:!1,initialHeight:"450",innerHeight:!1,maxHeight:!1,scalePhotos:!0,scrolling:!0,inline:!1,html:!1,iframe:!1,fastIframe:!0,photo:!1,href:!1,title:!1,rel:!1,opacity:.9,preloading:!0,current:"image {current} of {total}",previous:"previous",next:"next",close:"close",open:!1,returnFocus:!0,loop:!0,slideshow:!1,slideshowAuto:!0,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",onOpen:!1,onLoad:!1,onComplete:!1,onCleanup:!1,onClosed:!1,overlayClose:!0,escKey:!0,arrowKey:!0},e="colorbox",f="cbox",g=f+"_open",h=f+"_load",i=f+"_complete",j=f+"_cleanup",k=f+"_closed",l=f+"_purge",m=a.browser.msie&&!a.support.opacity,n=m&&a.browser.version<7,o=f+"_IE6",p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J={},K,L,M,N,O,P,Q,R,S,T=!1,U,V=f+"Element";U=a.fn[e]=a[e]=function(b,c){var f=this,g;if(!f[0]&&f.selector)return f;b=b||{},c&&(b.onComplete=c);if(!f[0]||f.selector===undefined)f=a("<a/>"),b.open=!0;f.each(function(){a.data(this,e,a.extend({},a.data(this,e)||d,b)),a(this).addClass(V)}),g=b.open,a.isFunction(g)&&(g=g.call(f)),g&&ba(f[0]);return f},U.init=function(){y=a(c),q=W().attr({id:e,"class":m?f+(n?"IE6":"IE"):""}),p=W("Overlay",n?"position:absolute":"").hide(),r=W("Wrapper"),s=W("Content").append(z=W("LoadedContent","width:0; height:0; overflow:hidden"),B=W("LoadingOverlay").add(W("LoadingGraphic")),C=W("Title"),D=W("Current"),F=W("Next"),G=W("Previous"),E=W("Slideshow").bind(g,_),H=W("Close")),r.append(W().append(W("TopLeft"),t=W("TopCenter"),W("TopRight")),W(!1,"clear:left").append(u=W("MiddleLeft"),s,v=W("MiddleRight")),W(!1,"clear:left").append(W("BottomLeft"),w=W("BottomCenter"),W("BottomRight"))).children().children().css({"float":"left"}),A=W(!1,"position:absolute; width:9999px; visibility:hidden; display:none"),a("body").prepend(p,q.append(r,A)),s.children().hover(function(){a(this).addClass("hover")},function(){a(this).removeClass("hover")}).addClass("hover"),K=t.height()+w.height()+s.outerHeight(!0)-s.height(),L=u.width()+v.width()+s.outerWidth(!0)-s.width(),M=z.outerHeight(!0),N=z.outerWidth(!0),q.css({"padding-bottom":K,"padding-right":L}).hide(),F.click(function(){U.next()}),G.click(function(){U.prev()}),H.click(function(){U.close()}),I=F.add(G).add(D).add(E),s.children().removeClass("hover"),a("."+V).live("click",function(a){a.button!==0&&typeof a.button!="undefined"||a.ctrlKey||a.shiftKey||a.altKey||(a.preventDefault(),ba(this))}),p.click(function(){J.overlayClose&&U.close()}),a(b).bind("keypress."+f,function(a){var b=a.keyCode;R&&J.escKey&&b===27&&(a.preventDefault(),U.close()),R&&J.arrowKey&&x[1]&&(b===37?(a.preventDefault(),G.click()):b===39&&(a.preventDefault(),F.click()))})},U.remove=function(){q.add(p).remove(),a("."+V).die("click").removeData(e).removeClass(V)},U.position=function(a,c){function g(a){t[0].style.width=w[0].style.width=s[0].style.width=a.style.width,B[0].style.height=B[1].style.height=s[0].style.height=u[0].style.height=v[0].style.height=a.style.height}var d,e=Math.max(b.documentElement.clientHeight-J.h-M-K,0)/2+y.scrollTop(),f=Math.max(y.width()-J.w-N-L,0)/2+y.scrollLeft();d=q.width()===J.w+N&&q.height()===J.h+M?0:a,r[0].style.width=r[0].style.height="9999px",q.dequeue().animate({width:J.w+N,height:J.h+M,top:e,left:f},{duration:d,complete:function(){g(this),S=!1,r[0].style.width=J.w+N+L+"px",r[0].style.height=J.h+M+K+"px",c&&c()},step:function(){g(this)}})},U.resize=function(a){if(R){a=a||{},a.width&&(J.w=X(a.width,"x")-N-L),a.innerWidth&&(J.w=X(a.innerWidth,"x")),z.css({width:J.w}),a.height&&(J.h=X(a.height,"y")-M-K),a.innerHeight&&(J.h=X(a.innerHeight,"y"));if(!a.innerHeight&&!a.height){var b=z.wrapInner("<div style='overflow:auto'></div>").children();J.h=b.height(),b.replaceWith(b.children())}z.css({height:J.h}),U.position(J.transition==="none"?0:J.speed)}},U.prep=function(b){function h(b){U.position(b,function(){var b,d,g,h,j=x.length,k,n;!R||(n=function(){B.hide(),$(i,J.onComplete)},m&&Q&&z.fadeIn(100),C.html(J.title).add(z).show(),j>1?(typeof J.current=="string"&&D.html(J.current.replace(/\{current\}/,P+1).replace(/\{total\}/,j)).show(),F[J.loop||P<j-1?"show":"hide"]().html(J.next),G[J.loop||P?"show":"hide"]().html(J.previous),b=P?x[P-1]:x[j-1],g=P<j-1?x[P+1]:x[0],J.slideshow&&E.show(),J.preloading&&(h=a.data(g,e).href||g.href,d=a.data(b,e).href||b.href,h=a.isFunction(h)?h.call(g):h,d=a.isFunction(d)?d.call(b):d,Y(h)&&(a("<img/>")[0].src=h),Y(d)&&(a("<img/>")[0].src=d))):I.hide(),J.iframe?(k=a("<iframe/>").addClass(f+"Iframe")[0],J.fastIframe?n():a(k).load(n),k.name=f+ +(new Date),k.src=J.href,J.scrolling||(k.scrolling="no"),m&&(k.frameborder=0,k.allowTransparency="true"),a(k).appendTo(z).one(l,function(){k.src="//about:blank"})):n(),J.transition==="fade"?q.fadeTo(c,1,function(){q[0].style.filter=""}):q[0].style.filter="",y.bind("resize."+f,function(){U.position(0)}))})}function g(){J.h=J.h||z.height(),J.h=J.mh&&J.mh<J.h?J.mh:J.h;return J.h}function d(){J.w=J.w||z.width(),J.w=J.mw&&J.mw<J.w?J.mw:J.w;return J.w}if(!!R){var c=J.transition==="none"?0:J.speed;y.unbind("resize."+f),z.remove(),z=W("LoadedContent").html(b),z.hide().appendTo(A.show()).css({width:d(),overflow:J.scrolling?"auto":"hidden"}).css({height:g()}).prependTo(s),A.hide(),a(Q).css({"float":"none"}),n&&a("select").not(q.find("select")).filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one(j,function(){this.style.visibility="inherit"}),J.transition==="fade"?q.fadeTo(c,0,function(){h(0)}):h(c)}},U.load=function(b){var c,d,g=U.prep;S=!0,Q=!1,O=x[P],b||Z(a.extend(J,a.data(O,e))),$(l),$(h,J.onLoad),J.h=J.height?X(J.height,"y")-M-K:J.innerHeight&&X(J.innerHeight,"y"),J.w=J.width?X(J.width,"x")-N-L:J.innerWidth&&X(J.innerWidth,"x"),J.mw=J.w,J.mh=J.h,J.maxWidth&&(J.mw=X(J.maxWidth,"x")-N-L,J.mw=J.w&&J.w<J.mw?J.w:J.mw),J.maxHeight&&(J.mh=X(J.maxHeight,"y")-M-K,J.mh=J.h&&J.h<J.mh?J.h:J.mh),c=J.href,B.show(),J.inline?(W().hide().insertBefore(a(c)[0]).one(l,function(){a(this).replaceWith(z.children())}),g(a(c))):J.iframe?g(" "):J.html?g(J.html):Y(c)?(a(Q=new Image).addClass(f+"Photo").error(function(){J.title=!1,g(W("Error").text("This image could not be loaded"))}).load(function(){var a;Q.onload=null,J.scalePhotos&&(d=function(){Q.height-=Q.height*a,Q.width-=Q.width*a},J.mw&&Q.width>J.mw&&(a=(Q.width-J.mw)/Q.width,d()),J.mh&&Q.height>J.mh&&(a=(Q.height-J.mh)/Q.height,d())),J.h&&(Q.style.marginTop=Math.max(J.h-Q.height,0)/2+"px"),x[1]&&(P<x.length-1||J.loop)&&(Q.style.cursor="pointer",Q.onclick=function(){U.next()}),m&&(Q.style.msInterpolationMode="bicubic"),setTimeout(function(){g(Q)},1)}),setTimeout(function(){Q.src=c},1)):c&&A.load(c,function(b,c,d){g(c==="error"?W("Error").text("Request unsuccessful: "+d.statusText):a(this).contents())})},U.next=function(){!S&&x[1]&&(P<x.length-1||J.loop)&&(P=P<x.length-1?P+1:0,U.load())},U.prev=function(){!S&&x[1]&&(P||J.loop)&&(P=P?P-1:x.length-1,U.load())},U.close=function(){R&&!T&&(T=!0,R=!1,$(j,J.onCleanup),y.unbind("."+f+" ."+o),p.fadeTo(200,0),q.stop().fadeTo(300,0,function(){q.add(p).css({opacity:1,cursor:"auto"}).hide(),$(l),z.remove(),setTimeout(function(){T=!1,$(k,J.onClosed)},1)}))},U.element=function(){return a(O)},U.settings=d,a(U.init)})(jQuery,document,this);;
(function ($) {

Drupal.behaviors.initColorbox = function (context) {
  if (!$.isFunction($.colorbox)) {
    return;
  }
  $('a, area, input', context)
    .filter('.colorbox:not(.initColorbox-processed)')
    .addClass('initColorbox-processed')
    .colorbox(Drupal.settings.colorbox);
};

{
  $(document).bind('cbox_complete', function () {
    Drupal.attachBehaviors('#cboxLoadedContent');
  });
}

})(jQuery);
;
(function ($) {

Drupal.behaviors.initColorboxDefaultStyle = function (context) {
  $(document).bind('cbox_complete', function () {
    // Only run if there is a title.
    if ($('#cboxTitle:empty', context).length == false) {
      setTimeout(function () { $('#cboxTitle', context).slideUp() }, 1500);
      $('#cboxLoadedContent img', context).bind('mouseover', function () {
        $('#cboxTitle', context).slideDown();
      });
      $('#cboxOverlay', context).bind('mouseover', function () {
        $('#cboxTitle', context).slideUp();
      });
    }
    else {
      $('#cboxTitle', context).hide();
    }
  });
};

})(jQuery);
;

$(document).ready(function() {

  // Attach onclick event to document only and catch clicks on all elements.
  $(document.body).click(function(event) {
    // Catch only the first parent link of a clicked element.
    $(event.target).parents("a:first,area:first").andSelf().filter("a,area").each(function() {

      var ga = Drupal.settings.googleanalytics;
      // Expression to check for absolute internal links.
      var isInternal = new RegExp("^(https?):\/\/" + window.location.host, "i");
      // Expression to check for special links like gotwo.module /go/* links.
      var isInternalSpecial = new RegExp("(\/go\/.*)$", "i");
      // Expression to check for download links.
      var isDownload = new RegExp("\\.(" + ga.trackDownloadExtensions + ")$", "i");

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});
;
$(document).ready(function(){
	// init cufon function
	initCufon();
});

// cufon function
function initCufon() {
	Cufon.replace('#main h2', { fontFamily: 'Verlag Bold'});
	Cufon.replace('#main .add-section h2, #sidebar h2', { fontFamily: 'Verlag Book'});
	Cufon.replace('#content h3', { fontFamily: 'Verlag Light'});
}

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}})());
Cufon.registerFont({"w":165,"face":{"font-family":"Verlag Bold","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","bbox":"-22 -413 363 116","underline-thickness":"18","underline-position":"-18","stemh":"33","stemv":"41","unicode-range":"U+0020-U+FB04"},"glyphs":{" ":{"w":77},"\ufb03":{"d":"128,-263r-5,34v-29,-4,-46,1,-46,38r0,37r44,0r0,33r-44,0r0,121r-40,0r0,-121r-29,0v4,-17,21,-21,29,-34v-8,-73,19,-126,91,-108xm244,-263r-4,34v-29,-4,-47,1,-46,38r0,37r43,0r0,33r-43,0r0,121r-41,0r0,-121r-28,0v4,-17,20,-22,28,-34v-8,-73,19,-126,91,-108xm306,-207v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24xm302,0r-41,0r0,-154r41,0r0,154","w":324},"\ufb04":{"d":"128,-263r-5,34v-29,-4,-46,1,-46,38r0,37r44,0r0,33r-44,0r0,121r-40,0r0,-121r-29,0v4,-17,21,-21,29,-34v-8,-73,19,-126,91,-108xm244,-263r-4,34v-29,-4,-47,1,-46,38r0,37r43,0r0,33r-43,0r0,121r-41,0r0,-121r-28,0v4,-17,20,-22,28,-34v-8,-73,19,-126,91,-108xm301,0r-41,0r0,-264r41,0r0,264","w":323,"k":{"\u00ec":-13,"j":-13,"\/":4}},"\ufb00":{"d":"128,-263r-5,34v-29,-4,-46,1,-46,38r0,37r44,0r0,33r-44,0r0,121r-40,0r0,-121r-29,0v4,-17,21,-21,29,-34v-8,-73,19,-126,91,-108xm244,-263r-4,34v-29,-4,-47,1,-46,38r0,37r43,0r0,33r-43,0r0,121r-41,0r0,-121r-28,0v4,-17,20,-22,28,-34v-8,-73,19,-126,91,-108","w":238,"k":{"\u0105":4,"\u00e3":4,"\u012d":-14,"\u00ee":-7,"\u00ef":-13,"\u00ec":-23,"\u012b":-9,"\u0142":-5,"\/":4,"?":-19,"}":-29,"]":-29,"!":-11,")":-29,"-":7,"\u2013":7,"\u2014":7,".":25,",":25,"\u2026":25,"\u201d":-26,"\u2019":-26,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"b":-7,"h":-7,"k":-7,"l":-7,"\u0127":-7,"\u0137":-7,"\u013a":-7,"\u013e":-7,"\u013c":-7,"\u0140":-7,"\u201c":-24,"\u2018":-24,"\u00ae":-21,"\u2122":-21,"\u2120":-21}},"\ufb01":{"d":"189,-207v0,13,-10,24,-23,24v-13,0,-25,-11,-25,-24v0,-13,12,-24,25,-24v13,0,23,11,23,24xm128,-263r-5,34v-29,-4,-46,1,-46,38r0,37r44,0r0,33r-44,0r0,121r-40,0r0,-121r-29,0v4,-17,21,-21,29,-34v-8,-73,19,-126,91,-108xm186,0r-41,0r0,-154r41,0r0,154","w":208},"\ufb02":{"d":"128,-263r-5,34v-29,-4,-46,1,-46,38r0,37r44,0r0,33r-44,0r0,121r-40,0r0,-121r-29,0v4,-17,21,-21,29,-34v-8,-73,19,-126,91,-108xm185,0r-41,0r0,-264r41,0r0,264","w":206,"k":{"\u00ec":-13,"j":-13,"\/":4}},"A":{"d":"248,0r-47,0r-26,-60r-104,0r-26,60r-46,0r122,-267r6,0xm161,-96r-38,-88r-37,88r75,0","w":247,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-5,"t":4,"\u0165":4,"\u0163":2,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":2,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,".":-4,",":-4,"\u2026":-4,"\u201d":45,"\u2019":45,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":39,"\u2018":39,"\u00ae":26,"\u2122":26,"\u2120":26,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"B":{"d":"207,-73v0,39,-36,76,-107,76v-22,0,-48,-3,-71,-6r0,-258v19,-3,45,-5,67,-5v109,-4,140,95,58,129v39,11,53,35,53,64xm100,-150v72,4,71,-79,4,-77v-11,0,-22,1,-31,2r0,73v6,1,16,2,27,2xm159,-78v4,-31,-44,-46,-86,-39r0,79v40,8,91,-4,86,-40","w":221,"k":{"Y":7,"\u00dd":7,"\u0176":7,"\u0178":7,"\u1ef2":7,"-":-7,"\u2013":-7,"\u2014":-7,".":11,",":11,"\u2026":11}},"C":{"d":"248,-21v-22,14,-53,25,-86,25v-84,0,-142,-58,-142,-136v0,-112,137,-172,227,-112r-16,38v-66,-43,-163,-13,-163,74v0,86,99,118,166,73","w":258,"k":{"Q":11,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u015f":2,"\u0259":4,"\/":-3,"t":4,"\u0165":4,"\u0163":2,"\u0173":2,"v":11,"x":4,"\u00ff":11,"\u1ef3":11,"?":-7,"}":-18,"]":-18,"!":-7,")":-18,"-":7,"\u2013":7,"\u2014":7,"\u201d":-7,"\u2019":-7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":2,"\u015b":2,"\u0161":2,"\u0219":2,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":11,"\u1e83":11,"\u0175":11,"\u1e85":11,"\u1e81":11,"y":11,"\u00fd":11,"\u0177":11,"S":-2,"\u015a":-2,"\u0160":-2,"\u015e":-2,"\u0218":-2,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11}},"D":{"d":"258,-134v0,74,-49,136,-153,136v-29,0,-49,-1,-76,-4r0,-259v26,-3,47,-5,73,-5v104,0,156,61,156,132xm210,-134v0,-66,-58,-103,-136,-90r0,184v79,14,136,-24,136,-94","w":277,"k":{"\u0105":14,"\u00e3":14,"\u0119":7,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":7,"\u01ff":7,"\u00f5":7,"p":7,"q":7,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":7,"\u0259":7,"\/":15,"t":4,"\u0165":4,"\u0163":2,"\u0173":7,"J":22,"V":14,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":23,",":23,"\u2026":23,"\u00c6":18,"\u01fc":18,"A":18,"\u00c1":18,"\u0102":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u0100":18,"\u0104":18,"\u00c5":18,"\u01fa":18,"\u00c3":18,"\u201d":18,"\u2019":18,"a":14,"\u00e1":14,"\u0103":14,"\u00e2":14,"\u00e4":14,"\u00e0":14,"\u0101":14,"\u00e5":14,"\u01fb":14,"\u00e6":14,"\u01fd":14,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":7,"\u00f3":7,"\u014f":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u0151":7,"\u014d":7,"\u0153":7,"s":7,"\u015b":7,"\u0161":7,"\u0219":7,"u":7,"\u00fa":7,"\u016d":7,"\u00fb":7,"\u00fc":7,"\u00f9":7,"\u0171":7,"\u016b":7,"\u016f":7,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"W":7,"\u1e82":7,"\u0174":7,"\u1e84":7,"\u1e80":7,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":22,"\u0164":22,"\u0162":22,"Z":14,"\u0179":14,"\u017d":14,"\u017b":14,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"E":{"d":"190,0r-161,0r0,-264r161,0r0,41r-116,0r0,69r105,0r0,40r-105,0r0,73r116,0r0,41","w":213,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-4,"t":11,"\u0165":11,"\u0163":5,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":11,"n":11,"\u0144":11,"\u0148":11,"\u0146":11,"\u00f1":11,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"F":{"d":"190,-223r-116,0r0,77r102,0r0,40r-102,0r0,106r-45,0r0,-264r161,0r0,41","w":199,"k":{"}":-11,"]":-11,")":-11,"\/":20,"?":-7,"&":11,"\u0259":14,"\u1ef3":4,"\u00ff":4,"\u0173":7,"\u0163":2,"\u0165":4,"\u015f":11,"\u0157":11,"\u0159":11,"\u0155":11,"\u00f5":14,"\u01ff":14,"\u00f8":14,"\u012f":6,"\u012b":-1,"\u00ec":-17,"\u00ef":-5,"\u00ee":-1,"\u012d":-5,"\u00ed":6,"\u0119":14,"\u00e3":18,"\u0105":18,"\u00e0":18,"x":7,"v":4,"t":4,"r":11,"q":14,"p":11,"j":11,"i":6,"J":36,"-":11,"\u2013":11,"\u2014":11,".":40,",":40,"\u2026":40,"\u00c6":16,"\u01fc":16,"A":16,"\u00c1":16,"\u0102":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u0100":16,"\u0104":16,"\u00c5":16,"\u01fa":16,"\u00c3":16,":":7,";":7,"\u00ab":6,"\u2039":6,"\u201d":-11,"\u2019":-11,"a":18,"\u00e1":18,"\u0103":18,"\u00e2":18,"\u00e4":18,"\u0101":18,"\u00e5":18,"\u01fb":18,"\u00e6":18,"\u01fd":18,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":7,"\ufb03":7,"\ufb04":7,"\ufb00":7,"\ufb01":7,"\ufb02":7,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":11,"n":11,"\u0144":11,"\u0148":11,"\u0146":11,"\u00f1":11,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":7,"\u00fa":7,"\u016d":7,"\u00fb":7,"\u00fc":7,"\u00f9":7,"\u0171":7,"\u016b":7,"\u016f":7,"w":4,"\u1e83":4,"\u0175":4,"\u1e85":4,"\u1e81":4,"y":4,"\u00fd":4,"\u0177":4,"z":4,"\u017a":4,"\u017e":4,"\u017c":4}},"G":{"d":"153,-140r105,0r0,116v-90,63,-238,14,-238,-108v0,-120,144,-171,233,-109r-20,36v-65,-48,-165,-11,-165,73v0,76,82,119,147,84r0,-52r-62,0r0,-40","w":279,"k":{"\/":-2,"Y":10,"\u00dd":10,"\u0176":10,"\u0178":10,"\u1ef2":10,".":7,",":7,"\u2026":7,"T":5,"\u0164":5,"\u0162":5}},"H":{"d":"240,0r-45,0r0,-113r-121,0r0,113r-45,0r0,-264r45,0r0,110r121,0r0,-110r45,0r0,264","w":268,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":2,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"I":{"d":"76,0r-45,0r0,-264r45,0r0,264","w":106,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":2,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"J":{"d":"154,-264v-9,110,40,270,-85,268v-26,0,-45,-6,-64,-18r17,-37v33,23,87,22,87,-37r0,-176r45,0","w":181,"k":{"\/":7,"\u0259":4,"\u0173":4,"\u015f":4,"\u0157":4,"\u0159":4,"\u0155":4,"\u00f5":4,"\u01ff":4,"\u00f8":4,"\u0142":2,"\u012f":4,"\u012b":4,"\u00ec":4,"\u00ef":4,"\u00ee":4,"\u012d":4,"\u00ed":4,"\u0119":4,"\u00e3":4,"\u0105":4,"r":4,"q":4,"p":4,"j":4,"i":4,"J":7,".":11,",":11,"\u2026":11,"\u00c6":4,"\u01fc":4,"A":4,"\u00c1":4,"\u0102":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u0100":4,"\u0104":4,"\u00c5":4,"\u01fa":4,"\u00c3":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"K":{"d":"238,0r-56,0r-108,-127r0,127r-45,0r0,-264r45,0r0,119r103,-119r55,0r-115,127","w":241,"k":{"Q":23,"\u0105":4,"\u00e3":4,"\u0119":11,"i":-2,"\u00ed":-2,"\u012d":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-9,"\u012b":-2,"\u012f":-2,"\u00f8":11,"\u01ff":11,"\u00f5":11,"q":11,"\u0259":11,"\/":-4,"t":7,"\u0165":7,"\u0163":4,"\u0173":5,"v":18,"\u00ff":13,"\u1ef3":13,"}":-11,"]":-11,")":-11,"-":32,"\u2013":32,"\u2014":32,"\u201d":-7,"\u2019":-7,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":11,"\u0107":11,"\u010d":11,"\u00e7":11,"\u010b":11,"d":11,"\u010f":11,"\u0111":11,"e":11,"\u00e9":11,"\u0115":11,"\u011b":11,"\u00ea":11,"\u00eb":11,"\u0117":11,"\u00e8":11,"\u0113":11,"g":11,"\u011f":11,"\u0123":11,"\u0121":11,"o":11,"\u00f3":11,"\u014f":11,"\u00f4":11,"\u00f6":11,"\u00f2":11,"\u0151":11,"\u014d":11,"\u0153":11,"u":5,"\u00fa":5,"\u016d":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u0171":5,"\u016b":5,"\u016f":5,"w":14,"\u1e83":14,"\u0175":14,"\u1e85":14,"\u1e81":14,"y":13,"\u00fd":13,"\u0177":13,"C":23,"\u0106":23,"\u010c":23,"\u00c7":23,"\u010a":23,"G":23,"\u011e":23,"\u0122":23,"\u0120":23,"O":23,"\u00d3":23,"\u014e":23,"\u00d4":23,"\u00d6":23,"\u00d2":23,"\u0150":23,"\u014c":23,"\u00d8":23,"\u01fe":23,"\u00d5":23,"\u0152":23}},"L":{"d":"190,0r-161,0r0,-264r45,0r0,223r116,0r0,41","w":196,"k":{"Q":15,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u0259":4,"\/":-13,"t":4,"\u0165":4,"\u0163":2,"\u0173":2,"v":14,"\u00ff":14,"\u1ef3":14,"V":25,"?":2,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"\u1ef2":32,"-":18,"\u2013":18,"\u2014":18,"\u201d":43,"\u2019":43,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":16,"\u1e83":16,"\u0175":16,"\u1e85":16,"\u1e81":16,"y":14,"\u00fd":14,"\u0177":14,"W":14,"\u1e82":14,"\u0174":14,"\u1e84":14,"\u1e80":14,"T":40,"\u0164":40,"\u0162":40,"C":15,"\u0106":15,"\u010c":15,"\u00c7":15,"\u010a":15,"G":15,"\u011e":15,"\u0122":15,"\u0120":15,"O":15,"\u00d3":15,"\u014e":15,"\u00d4":15,"\u00d6":15,"\u00d2":15,"\u0150":15,"\u014c":15,"\u00d8":15,"\u01fe":15,"\u00d5":15,"\u0152":15,"\u201c":25,"\u2018":25,"\u00ae":29,"\u2122":29,"\u2120":29,"U":11,"\u00da":11,"\u016c":11,"\u00db":11,"\u00dc":11,"\u00d9":11,"\u0170":11,"\u016a":11,"\u0172":11,"\u016e":11}},"M":{"d":"293,0r-45,0r-3,-158r-83,126r-6,0r-84,-126r-3,158r-44,0r11,-267r7,-1r117,175r114,-175r8,1","w":317,"k":{"\u0105":2,"\u00e3":2,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u015f":2,"\u0259":2,"\/":-2,"\u0173":2,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"s":2,"\u015b":2,"\u0161":2,"\u0219":2,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2}},"N":{"d":"244,4r-5,1r-165,-174r0,169r-45,0r0,-267r7,-2r163,172r0,-167r45,0r0,268","w":272,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":2,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"O":{"d":"287,-132v0,78,-59,136,-135,136v-76,0,-132,-58,-132,-136v0,-78,58,-136,134,-136v76,0,133,58,133,136xm238,-132v0,-55,-35,-96,-85,-96v-50,0,-85,41,-85,96v0,55,35,96,85,96v50,0,85,-41,85,-96","w":306,"k":{"\u0105":7,"\u00e3":7,"\u0119":5,"\u0142":1,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":5,"\u015f":4,"\u0259":5,"\/":15,"\u0173":1,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":23,",":23,"\u2026":23,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":1,"\u00fa":1,"\u016d":1,"\u00fb":1,"\u00fc":1,"\u00f9":1,"\u0171":1,"\u016b":1,"\u016f":1,"b":1,"h":1,"k":1,"l":1,"\u0127":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"P":{"d":"205,-177v0,62,-53,101,-131,91r0,86r-45,0r0,-261v23,-3,45,-5,67,-5v72,0,109,40,109,89xm158,-175v4,-36,-40,-57,-84,-47r0,96v46,9,88,-10,84,-49","w":215,"k":{"\/":20,"&":7,"\u0259":14,"\u0173":4,"\u015f":7,"\u0157":4,"\u0159":4,"\u0155":4,"\u00f5":14,"\u01ff":14,"\u00f8":14,"\u012f":-9,"\u012b":-14,"\u00ec":-22,"\u00ef":-18,"\u00ee":-18,"\u012d":-13,"\u00ed":-9,"\u0119":14,"\u00e3":9,"\u0105":9,"r":4,"q":14,"p":4,"i":-9,"J":36,"Y":5,"\u00dd":5,"\u0176":5,"\u0178":5,"\u1ef2":5,"-":14,"\u2013":14,"\u2014":14,".":43,",":43,"\u2026":43,"\u00c6":20,"\u01fc":20,"A":20,"\u00c1":20,"\u0102":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u0100":20,"\u0104":20,"\u00c5":20,"\u01fa":20,"\u00c3":20,":":11,";":11,"\u00ab":17,"\u2039":17,"a":9,"\u00e1":9,"\u0103":9,"\u00e2":9,"\u00e4":9,"\u00e0":9,"\u0101":9,"\u00e5":9,"\u01fb":9,"\u00e6":9,"\u01fd":9,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":7,"\u015b":7,"\u0161":7,"\u0219":7,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"W":-4,"\u1e82":-4,"\u0174":-4,"\u1e84":-4,"\u1e80":-4,"\u00bb":8,"\u203a":8}},"Q":{"d":"291,-22r-27,32r-34,-31v-85,63,-210,-1,-210,-111v0,-78,58,-136,134,-136v110,0,171,134,106,218xm225,-80v34,-61,-3,-148,-72,-148v-50,0,-85,41,-85,96v0,73,70,120,130,83r-44,-38r28,-32v0,0,41,37,43,39","w":306,"k":{"}":14,"]":14,")":14,"\/":5,"\u0259":4,"\u015f":2,"\u00f5":4,"\u01ff":4,"\u00f8":4,"\u0119":4,"\u00e3":7,"\u0105":7,"q":4,"X":14,"V":7,"J":7,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":14,",":14,"\u2026":14,"\u00c6":11,"\u01fc":11,"A":7,"\u00c1":7,"\u0102":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u0100":7,"\u0104":7,"\u00c5":7,"\u01fa":7,"\u00c3":7,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":2,"\u015b":2,"\u0161":2,"\u0219":2,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"R":{"d":"224,0r-52,0r-58,-95r-40,0r0,95r-45,0r0,-261v21,-3,43,-5,70,-5v124,0,139,122,56,160xm159,-180v0,-37,-43,-52,-85,-43r0,90v45,6,85,-8,85,-47","w":227,"k":{"Q":4,"\u0105":2,"\u00e3":2,"\u0119":5,"\u00f8":5,"\u01ff":5,"\u00f5":5,"q":5,"\u0259":5,"\/":-5,"\u0173":2,"V":4,"}":7,"]":7,")":7,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"\u1ef2":11,"-":18,"\u2013":18,"\u2014":18,"\u201d":7,"\u2019":7,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":5,"\u00f3":5,"\u014f":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u0151":5,"\u014d":5,"\u0153":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"W":2,"\u1e82":2,"\u0174":2,"\u1e84":2,"\u1e80":2,"T":5,"\u0164":5,"\u0162":5,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"S":{"d":"179,-75v0,42,-33,79,-87,79v-30,0,-60,-11,-83,-26r15,-40v30,28,107,40,109,-10v0,-18,-7,-30,-49,-48v-46,-19,-63,-42,-63,-74v0,-38,32,-74,87,-74v26,0,51,9,66,19r-15,39v-24,-23,-95,-26,-93,15v0,18,13,28,46,42v52,23,67,43,67,78","w":193,"k":{"Q":4,"x":2,"J":4,"}":-7,"]":-7,")":-7,"Y":5,"\u00dd":5,"\u0176":5,"\u0178":5,"\u1ef2":5,"-":-11,"\u2013":-11,"\u2014":-11,".":11,",":11,"\u2026":11,"\u00c6":4,"\u01fc":4,"A":4,"\u00c1":4,"\u0102":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u0100":4,"\u0104":4,"\u00c5":4,"\u01fa":4,"\u00c3":4,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"T":{"d":"221,-223r-83,0r0,223r-45,0r0,-223r-84,0r0,-41r212,0r0,41","w":230,"k":{"\u0177":54,"\u016f":54,"\u016b":54,"\u0171":54,"\u00f9":54,"\u00fc":54,"\u00fb":54,"\u016d":54,"\u014d":61,"\u0151":61,"\u00f2":61,"\u00f6":61,"\u00f4":61,"\u014f":61,"\u0113":61,"\u00e8":61,"\u0117":61,"\u00eb":61,"\u00ea":61,"\u011b":61,"\u00e5":61,"\u0101":61,"\u00e0":61,"\u00e4":61,"\u00e2":61,"\u0103":61,"Q":15,"\u0105":61,"\u00e3":36,"\u0119":61,"i":22,"\u00ed":22,"\u012d":-2,"\u00ee":5,"\u00ef":-2,"\u00ec":-16,"\u012b":2,"\u012f":22,"j":22,"\u00f8":61,"\u01ff":61,"\u00f5":40,"p":54,"q":61,"r":54,"\u0155":54,"\u0159":54,"\u0157":54,"\u015f":61,"\u0259":61,"\/":36,"t":54,"\u0165":54,"\u0163":27,"\u0173":54,"v":54,"x":58,"\u00ff":34,"\u1ef3":23,"J":29,"?":-7,"}":-14,"]":-14,")":-14,"&":40,"\u0131":65,"-":47,"\u2013":47,"\u2014":47,".":36,",":36,"\u2026":36,"\u00c6":23,"\u01fc":23,"A":23,"\u00c1":23,"\u0102":23,"\u00c2":23,"\u00c4":23,"\u00c0":23,"\u0100":23,"\u0104":23,"\u00c5":23,"\u01fa":23,"\u00c3":23,":":40,";":40,"\u00ab":35,"\u2039":35,"\u201d":-5,"\u2019":-5,"a":61,"\u00e1":61,"\u01fb":61,"\u00e6":61,"\u01fd":61,"c":61,"\u0107":61,"\u010d":61,"\u00e7":61,"\u010b":61,"d":58,"\u010f":58,"\u0111":58,"e":61,"\u00e9":61,"\u0115":61,"f":14,"\ufb03":14,"\ufb04":14,"\ufb00":14,"\ufb01":14,"\ufb02":14,"g":61,"\u011f":61,"\u0123":61,"\u0121":61,"m":54,"n":54,"\u0144":54,"\u0148":54,"\u0146":54,"\u00f1":54,"o":61,"\u00f3":61,"\u0153":61,"s":61,"\u015b":61,"\u0161":61,"\u0219":61,"u":54,"\u00fa":54,"w":54,"\u1e83":54,"\u0175":54,"\u1e85":54,"\u1e81":54,"y":54,"\u00fd":54,"z":58,"\u017a":58,"\u017e":58,"\u017c":58,"\u00bb":35,"\u203a":35,"S":5,"\u015a":5,"\u0160":5,"\u015e":5,"\u0218":5,"C":15,"\u0106":15,"\u010c":15,"\u00c7":15,"\u010a":15,"G":15,"\u011e":15,"\u0122":15,"\u0120":15,"O":15,"\u00d3":15,"\u014e":15,"\u00d4":15,"\u00d6":15,"\u00d2":15,"\u0150":15,"\u014c":15,"\u00d8":15,"\u01fe":15,"\u00d5":15,"\u0152":15}},"U":{"d":"237,-101v0,67,-41,105,-106,105v-66,0,-105,-37,-105,-105r0,-163r45,0r0,160v0,45,22,67,60,67v38,0,61,-22,61,-67r0,-160r45,0r0,163","w":262,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":12,"t":2,"\u0165":2,"\u0163":1,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"V":{"d":"248,-264r-121,268r-6,0r-122,-268r51,0r75,176r73,-176r50,0","w":247,"k":{"}":-14,"]":-14,")":-14,"\/":27,"?":-7,"&":25,"\u0259":43,"\u1ef3":22,"\u00ff":22,"\u0173":32,"\u00f9":32,"\u0163":13,"\u0165":25,"\u015f":41,"\u0157":32,"\u0159":32,"\u0155":32,"\u00f5":43,"\u01ff":43,"\u00f8":43,"\u00f2":43,"\u012f":14,"\u012b":4,"\u00ec":-11,"\u00ef":2,"\u00ee":5,"\u012d":2,"\u00ed":14,"\u0119":43,"\u00e8":43,"\u011b":43,"\u00e3":36,"\u0105":36,"\u00e0":36,"\u0103":36,"x":23,"v":22,"t":25,"r":32,"q":43,"p":32,"j":14,"i":14,"Q":11,"J":25,"-":36,"\u2013":36,"\u2014":36,".":47,",":47,"\u2026":47,"\u00c6":25,"\u01fc":25,"A":25,"\u00c1":25,"\u0102":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u0100":25,"\u0104":25,"\u00c5":25,"\u01fa":25,"\u00c3":25,":":25,";":25,"\u00ab":29,"\u2039":29,"\u201d":-7,"\u2019":-7,"a":36,"\u00e1":36,"\u00e2":36,"\u00e4":36,"\u0101":36,"\u00e5":36,"\u01fb":36,"\u00e6":36,"\u01fd":36,"c":43,"\u0107":43,"\u010d":43,"\u00e7":43,"\u010b":43,"d":43,"\u010f":43,"\u0111":43,"e":43,"\u00e9":43,"\u0115":43,"\u00ea":43,"\u00eb":43,"\u0117":43,"\u0113":43,"f":7,"\ufb03":7,"\ufb04":7,"\ufb00":7,"\ufb01":7,"\ufb02":7,"g":43,"\u011f":43,"\u0123":43,"\u0121":43,"m":32,"n":32,"\u0144":32,"\u0148":32,"\u0146":32,"\u00f1":32,"o":43,"\u00f3":43,"\u014f":43,"\u00f4":43,"\u00f6":43,"\u0151":43,"\u014d":43,"\u0153":43,"s":41,"\u015b":41,"\u0161":41,"\u0219":41,"u":32,"\u00fa":32,"\u016d":32,"\u00fb":32,"\u00fc":32,"\u0171":32,"\u016b":32,"\u016f":32,"w":22,"\u1e83":22,"\u0175":22,"\u1e85":22,"\u1e81":22,"y":22,"\u00fd":22,"\u0177":22,"z":25,"\u017a":25,"\u017e":25,"\u017c":25,"\u00bb":29,"\u203a":29,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11}},"W":{"d":"347,-264r-83,268r-8,1r-82,-184r-81,184r-7,-1r-84,-268r49,0r48,166r73,-168r5,0r74,167r47,-165r49,0","w":348,"k":{"\u00e0":23,"Q":7,"\u0105":23,"\u00e3":23,"\u0119":25,"i":7,"\u00ed":7,"\u012d":-5,"\u00ee":-2,"\u00ef":-4,"\u00ec":-14,"\u012b":-2,"\u012f":7,"j":7,"\u00f8":25,"\u01ff":25,"\u00f5":25,"p":18,"q":25,"r":18,"\u0155":18,"\u0159":18,"\u0157":18,"\u015f":23,"\u0259":25,"\/":18,"t":7,"\u0165":7,"\u0163":4,"\u0173":18,"v":7,"x":11,"\u00ff":7,"\u1ef3":7,"J":22,"?":-7,"}":-14,"]":-14,")":-14,"&":11,"-":14,"\u2013":14,"\u2014":14,".":32,",":32,"\u2026":32,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,":":14,";":14,"\u00ab":16,"\u2039":16,"\u201d":-7,"\u2019":-7,"a":23,"\u00e1":23,"\u0103":23,"\u00e2":23,"\u00e4":23,"\u0101":23,"\u00e5":23,"\u01fb":23,"\u00e6":23,"\u01fd":23,"c":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"d":25,"\u010f":25,"\u0111":25,"e":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":25,"\u011f":25,"\u0123":25,"\u0121":25,"m":18,"n":18,"\u0144":18,"\u0148":18,"\u0146":18,"\u00f1":18,"o":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u0153":25,"s":23,"\u015b":23,"\u0161":23,"\u0219":23,"u":18,"\u00fa":18,"\u016d":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,"\u0171":18,"\u016b":18,"\u016f":18,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":11,"\u017a":11,"\u017e":11,"\u017c":11,"\u00bb":16,"\u203a":16,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"X":{"d":"246,0r-54,0r-66,-99r-66,99r-53,0r92,-130r-92,-134r54,0r66,99r67,-99r52,0r-92,130","w":253,"k":{"}":-14,"]":-14,")":-14,"\/":-4,"?":-4,"\u0259":11,"\u1ef3":14,"\u00ff":14,"\u0173":7,"\u0163":4,"\u0165":7,"\u015f":4,"\u00f5":11,"\u01ff":11,"\u00f8":11,"\u0119":11,"\u00e3":7,"\u0105":7,"v":14,"t":7,"q":11,"Q":18,"-":18,"\u2013":18,"\u2014":18,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":11,"\u0107":11,"\u010d":11,"\u00e7":11,"\u010b":11,"d":11,"\u010f":11,"\u0111":11,"e":11,"\u00e9":11,"\u0115":11,"\u011b":11,"\u00ea":11,"\u00eb":11,"\u0117":11,"\u00e8":11,"\u0113":11,"g":11,"\u011f":11,"\u0123":11,"\u0121":11,"o":11,"\u00f3":11,"\u014f":11,"\u00f4":11,"\u00f6":11,"\u00f2":11,"\u0151":11,"\u014d":11,"\u0153":11,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":7,"\u00fa":7,"\u016d":7,"\u00fb":7,"\u00fc":7,"\u00f9":7,"\u0171":7,"\u016b":7,"\u016f":7,"w":14,"\u1e83":14,"\u0175":14,"\u1e85":14,"\u1e81":14,"y":14,"\u00fd":14,"\u0177":14,"C":18,"\u0106":18,"\u010c":18,"\u00c7":18,"\u010a":18,"G":18,"\u011e":18,"\u0122":18,"\u0120":18,"O":18,"\u00d3":18,"\u014e":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u0150":18,"\u014c":18,"\u00d8":18,"\u01fe":18,"\u00d5":18,"\u0152":18}},"Y":{"d":"236,-264r-93,153r0,111r-45,0r0,-111r-93,-153r52,0r65,112r64,-112r50,0","w":241,"k":{"\u00f9":50,"\u00f2":58,"\u014f":58,"\u00e8":58,"\u00eb":58,"\u011b":58,"\u00e5":58,"\u0101":58,"\u00e0":58,"\u00e4":58,"\u00e2":58,"\u0103":58,"Q":24,"\u0105":58,"\u00e3":52,"\u0119":58,"i":25,"\u00ed":25,"\u012d":13,"\u00ee":16,"\u00ef":13,"\u00ec":2,"\u012b":14,"\u012f":25,"j":25,"\u00f8":58,"\u01ff":58,"\u00f5":58,"p":50,"q":58,"r":50,"\u0155":50,"\u0159":50,"\u0157":50,"\u015f":58,"\u0259":58,"\/":36,"t":43,"\u0165":43,"\u0163":22,"\u0173":50,"v":47,"x":47,"\u00ff":47,"\u1ef3":36,"J":25,"?":-4,"}":-14,"]":-14,")":-14,"&":40,"-":40,"\u2013":40,"\u2014":40,".":47,",":47,"\u2026":47,"\u00c6":27,"\u01fc":27,"A":27,"\u00c1":27,"\u0102":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u0100":27,"\u0104":27,"\u00c5":27,"\u01fa":27,"\u00c3":27,":":40,";":40,"\u00ab":38,"\u2039":38,"a":58,"\u00e1":58,"\u01fb":58,"\u00e6":58,"\u01fd":58,"c":58,"\u0107":58,"\u010d":58,"\u00e7":58,"\u010b":58,"d":58,"\u010f":58,"\u0111":58,"e":58,"\u00e9":58,"\u0115":58,"\u00ea":58,"\u0117":58,"\u0113":58,"f":25,"\ufb03":25,"\ufb04":25,"\ufb00":25,"\ufb01":25,"\ufb02":25,"g":58,"\u011f":58,"\u0123":58,"\u0121":58,"m":50,"n":50,"\u0144":50,"\u0148":50,"\u0146":50,"\u00f1":50,"o":58,"\u00f3":58,"\u00f4":58,"\u00f6":58,"\u0151":58,"\u014d":58,"\u0153":58,"s":58,"\u015b":58,"\u0161":58,"\u0219":58,"u":50,"\u00fa":50,"\u016d":50,"\u00fb":50,"\u00fc":50,"\u0171":50,"\u016b":50,"\u016f":50,"w":43,"\u1e83":43,"\u0175":43,"\u1e85":43,"\u1e81":43,"y":47,"\u00fd":47,"\u0177":47,"z":47,"\u017a":47,"\u017e":47,"\u017c":47,"\u00bb":38,"\u203a":38,"S":7,"\u015a":7,"\u0160":7,"\u015e":7,"\u0218":7,"C":24,"\u0106":24,"\u010c":24,"\u00c7":24,"\u010a":24,"G":24,"\u011e":24,"\u0122":24,"\u0120":24,"O":24,"\u00d3":24,"\u014e":24,"\u00d4":24,"\u00d6":24,"\u00d2":24,"\u0150":24,"\u014c":24,"\u00d8":24,"\u01fe":24,"\u00d5":24,"\u0152":24}},"Z":{"d":"223,-258r-140,217r137,0r0,41r-207,0r-2,-5r140,-218r-131,0r0,-41r201,0","w":234,"k":{"Q":14,"\u0105":7,"\u00e3":7,"\u0119":14,"i":4,"\u00ed":4,"\u00ee":2,"\u00ef":2,"\u00ec":-5,"\u012b":2,"\u012f":4,"j":4,"\u0142":2,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":4,"q":14,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":4,"\u0259":14,"\/":-4,"t":7,"\u0165":7,"\u0163":4,"\u0173":5,"v":22,"x":7,"\u00ff":18,"\u1ef3":18,"?":-4,"}":-11,"]":-11,")":-11,"&":7,"-":32,"\u2013":32,"\u2014":32,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":5,"\u00fa":5,"\u016d":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u0171":5,"\u016b":5,"\u016f":5,"w":22,"\u1e83":22,"\u0175":22,"\u1e85":22,"\u1e81":22,"y":18,"\u00fd":18,"\u0177":18,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4,"C":14,"\u0106":14,"\u010c":14,"\u00c7":14,"\u010a":14,"G":14,"\u011e":14,"\u0122":14,"\u0120":14,"O":14,"\u00d3":14,"\u014e":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u0150":14,"\u014c":14,"\u00d8":14,"\u01fe":14,"\u00d5":14,"\u0152":14}},"a":{"d":"148,0r-39,0r0,-15v-28,32,-98,20,-98,-31v0,-43,64,-60,97,-38v6,-45,-42,-47,-75,-34r-5,-31v55,-19,120,-6,120,60r0,89xm77,-24v19,-1,35,-9,31,-34v-18,-15,-58,-15,-59,12v0,14,10,22,28,22","k":{"\u201d":11,"\u2019":11}},"b":{"d":"178,-79v0,63,-71,108,-118,65r0,14r-39,0r0,-264r40,0r0,124v45,-39,117,-6,117,61xm138,-78v5,-46,-52,-59,-77,-31r0,62v23,31,82,17,77,-31","w":192,"k":{"\/":2,"\u00e3":1,"\u0105":1,"x":4,".":14,",":14,"\u2026":14,"\u201d":25,"\u2019":25,"a":1,"\u00e1":1,"\u0103":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u0101":1,"\u00e5":1,"\u01fb":1,"\u00e6":1,"\u01fd":1}},"c":{"d":"151,-13v-52,38,-146,1,-138,-63v-7,-64,84,-105,138,-65r-13,28v-34,-19,-85,-13,-85,36v0,46,54,56,87,36","w":155,"k":{"\/":-3,"x":-5,".":-4,",":-4,"\u2026":-4}},"d":{"d":"172,0r-40,0r0,-14v-46,41,-118,4,-118,-62v0,-61,70,-105,117,-67r0,-121r41,0r0,264xm131,-47r0,-59v-22,-30,-76,-22,-76,29v0,46,53,63,76,30","w":191,"k":{"\u00ec":-13,"j":-13,"\/":4}},"e":{"d":"91,-157v53,1,76,41,69,93r-107,0v0,38,57,41,93,27r5,31v-67,25,-138,-4,-138,-70v0,-41,28,-81,78,-81xm54,-90r71,0v-2,-21,-14,-35,-35,-35v-20,0,-33,13,-36,35","w":171,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"f":{"d":"128,-263r-5,34v-29,-4,-46,1,-46,38r0,37r44,0r0,33r-44,0r0,121r-40,0r0,-121r-29,0v4,-17,21,-21,29,-34v-8,-73,19,-126,91,-108","w":122,"k":{"\u0105":4,"\u00e3":4,"\u012d":-14,"\u00ee":-7,"\u00ef":-13,"\u00ec":-23,"\u012b":-9,"\u0142":-5,"\/":4,"?":-19,"}":-29,"]":-29,"!":-11,")":-29,"-":7,"\u2013":7,"\u2014":7,".":25,",":25,"\u2026":25,"\u201d":-26,"\u2019":-26,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"b":-7,"h":-7,"k":-7,"l":-7,"\u0127":-7,"\u0137":-7,"\u013a":-7,"\u013e":-7,"\u013c":-7,"\u0140":-7,"\u201c":-24,"\u2018":-24,"\u00ae":-21,"\u2122":-21,"\u2120":-21}},"g":{"d":"172,8v3,76,-62,82,-123,65r4,-36v41,15,89,11,78,-47v-46,32,-117,1,-117,-65v0,-62,69,-105,118,-68r0,-11r40,0r0,162xm131,-45r0,-63v-25,-29,-80,-16,-76,33v-5,42,53,62,76,30","w":190,"k":{"\/":-5}},"h":{"d":"168,0r-41,0r0,-95v-1,-43,-47,-29,-65,-6r0,101r-41,0r0,-264r40,0r0,135v31,-44,107,-35,107,24r0,105","w":185},"i":{"d":"67,-207v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24xm63,0r-41,0r0,-154r41,0r0,154","w":85,"k":{"\u012b":-5,"\u00ec":-14,"\u00ef":-9,"\u00ee":-2,"\u012d":-2}},"j":{"d":"67,-207v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24xm64,-154r0,175v3,51,-37,68,-85,57r4,-34v22,3,40,1,40,-24r0,-174r41,0","w":85,"k":{"\/":-2,"\u012b":-5,"\u00ec":-13,"\u00ef":-9,"\u00ee":-2,"\u012d":-2,".":7,",":7,"\u2026":7}},"k":{"d":"170,0r-49,0r-60,-73r0,73r-40,0r0,-264r40,0r0,176r57,-66r49,0r-68,73","w":171,"k":{"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u0259":4,"&":4,"-":14,"\u2013":14,"\u2014":14,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4}},"l":{"d":"62,0r-41,0r0,-264r41,0r0,264","w":83,"k":{"\u00ec":-13,"j":-13,"\/":4}},"m":{"d":"263,0r-41,0r0,-96v-1,-41,-42,-27,-60,-5r0,101r-41,0r0,-95v1,-43,-44,-29,-59,-5r0,100r-41,0r0,-154r39,0r0,26v25,-34,85,-42,98,1v29,-42,105,-42,105,22r0,105","w":280},"n":{"d":"167,0r-41,0r0,-95v-1,-43,-47,-29,-64,-6r0,101r-41,0r0,-154r39,0r0,26v31,-43,107,-38,107,23r0,105","w":184},"o":{"d":"174,-77v0,44,-31,80,-80,80v-50,0,-81,-36,-81,-80v0,-44,31,-80,81,-80v49,0,80,36,80,80xm133,-77v0,-30,-15,-48,-39,-48v-24,0,-40,18,-40,48v0,30,16,49,40,49v24,0,39,-19,39,-49","w":186,"k":{"\u0105":1,"\u00e3":1,"\/":2,"v":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":1,"\u00e1":1,"\u0103":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u0101":1,"\u00e5":1,"\u01fb":1,"\u00e6":1,"\u01fd":1}},"p":{"d":"178,-78v0,60,-62,101,-117,71r0,85r-40,0r0,-232r39,0r0,15v44,-41,118,-7,118,61xm138,-78v0,-46,-53,-60,-77,-30r0,64v26,27,77,14,77,-34","w":192,"k":{"\/":2,"\u00e3":1,"\u0105":1,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":1,"\u00e1":1,"\u0103":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u0101":1,"\u00e5":1,"\u01fb":1,"\u00e6":1,"\u01fd":1}},"q":{"d":"172,78r-41,0r0,-89v-46,35,-117,1,-117,-64v0,-64,71,-106,118,-67r0,-12r40,0r0,232xm131,-46r0,-60v-22,-32,-76,-19,-76,30v0,44,53,61,76,30","w":191,"k":{"\/":-7}},"r":{"d":"115,-116v-24,-3,-44,2,-53,15r0,101r-41,0r0,-154r39,0r0,25v14,-19,31,-28,55,-28r0,41","w":120,"k":{"\/":8,"&":7,"\u0259":4,"\u1ef3":-4,"\u00ff":-4,"\u00f5":4,"\u01ff":4,"\u00f8":4,"\u0119":4,"\u00e3":4,"\u0105":4,"x":-4,"v":-4,"q":4,"-":7,"\u2013":7,"\u2014":7,".":22,",":22,"\u2026":22,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"w":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"y":-4,"\u00fd":-4,"\u0177":-4}},"s":{"d":"129,-46v1,54,-86,61,-121,29r16,-29v14,11,31,18,44,18v15,0,22,-6,22,-16v0,-24,-73,-15,-73,-64v0,-49,74,-61,109,-34r-12,30v-17,-13,-60,-24,-60,1v0,23,75,14,75,65","w":138,"k":{"-":4,"\u2013":4,"\u2014":4,".":7,",":7,"\u2026":7}},"t":{"d":"116,-121r-43,0v5,34,-19,102,31,88r8,32v-44,10,-80,5,-80,-51r0,-69r-29,0v4,-17,21,-21,29,-34r0,-25r41,-26r0,52r43,0r0,33","w":122,"k":{"\/":2,"\u1ef3":-4,"\u00ff":-4,"v":-4,"-":7,"\u2013":7,"\u2014":7,"w":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"y":-4,"\u00fd":-4,"\u0177":-4,"z":-4,"\u017a":-4,"\u017e":-4,"\u017c":-4}},"u":{"d":"165,0r-39,0r0,-24v-29,39,-107,36,-107,-25r0,-105r41,0r0,95v1,41,46,31,64,8r0,-103r41,0r0,154","w":183},"v":{"d":"166,-154r-81,158r-7,0r-80,-158r46,0r39,92r39,-92r44,0","w":164,"k":{"\/":11,"?":7,"&":4,"\u0259":2,"\u00f5":2,"\u01ff":2,"\u00f8":2,"\u0119":2,"\u00e3":4,"\u0105":4,"q":2,".":29,",":29,"\u2026":29,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2}},"w":{"d":"229,-154r-59,158r-8,0r-47,-94r-47,94r-8,0r-59,-158r45,0r26,87r39,-87r7,0r41,87r25,-87r45,0","w":228,"k":{"\u0105":4,"\u00e3":4,"\/":5,"?":7,".":21,",":21,"\u2026":21,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4}},"x":{"d":"161,0r-45,0r-34,-51r-34,51r-43,0r55,-76r-55,-78r45,0r33,52r34,-52r44,0r-55,77","w":164,"k":{"\u0259":4,"\u00f5":4,"\u01ff":4,"\u00f8":4,"\u0119":4,"\u00e3":4,"\u0105":4,"q":4,"-":7,"\u2013":7,"\u2014":7,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4}},"y":{"d":"167,-154r-109,232r-41,0r47,-93r-65,-139r46,0r39,98r38,-98r45,0","k":{"\u0105":4,"\u00e3":4,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u015f":2,"\u0259":2,"\/":11,"?":7,"&":5,".":32,",":32,"\u2026":32,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"s":2,"\u015b":2,"\u0161":2,"\u0219":2}},"z":{"d":"146,-148r-81,114r79,0r0,34r-136,0r-2,-5r80,-115r-73,0r0,-34r131,0","w":152,"k":{"\/":-3,"-":4,"\u2013":4,"\u2014":4}},"\u00c1":{"d":"248,0r-47,0r-26,-60r-104,0r-26,60r-46,0r122,-267r6,0xm161,-96r-38,-88r-37,88r75,0xm185,-317r-73,32r-10,-20r65,-48","w":247,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-5,"t":4,"\u0165":4,"\u0163":2,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":2,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,".":-4,",":-4,"\u2026":-4,"\u201d":45,"\u2019":45,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":39,"\u2018":39,"\u00ae":26,"\u2122":26,"\u2120":26,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u00e1":{"d":"148,0r-39,0r0,-15v-28,32,-98,20,-98,-31v0,-43,64,-60,97,-38v6,-45,-42,-47,-75,-34r-5,-31v55,-19,120,-6,120,60r0,89xm77,-24v19,-1,35,-9,31,-34v-18,-15,-58,-15,-59,12v0,14,10,22,28,22xm147,-204r-73,32r-11,-20r66,-48","k":{"\u201d":11,"\u2019":11}},"\u0102":{"d":"248,0r-47,0r-26,-60r-104,0r-26,60r-46,0r122,-267r6,0xm161,-96r-38,-88r-37,88r75,0xm175,-338v0,27,-20,50,-52,50v-32,0,-51,-23,-51,-50r32,-2v0,16,7,25,19,25v13,0,20,-9,20,-25","w":247,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-5,"t":4,"\u0165":4,"\u0163":2,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":2,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,".":-4,",":-4,"\u2026":-4,"\u201d":45,"\u2019":45,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":39,"\u2018":39,"\u00ae":26,"\u2122":26,"\u2120":26,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u0103":{"d":"148,0r-39,0r0,-15v-28,32,-98,20,-98,-31v0,-43,64,-60,97,-38v6,-45,-42,-47,-75,-34r-5,-31v55,-19,120,-6,120,60r0,89xm77,-24v19,-1,35,-9,31,-34v-18,-15,-58,-15,-59,12v0,14,10,22,28,22xm136,-225v0,27,-19,49,-51,49v-32,0,-51,-22,-51,-49r32,-3v0,16,7,25,19,25v13,0,20,-9,20,-25","k":{"\u201d":11,"\u2019":11}},"\u00c2":{"d":"248,0r-47,0r-26,-60r-104,0r-26,60r-46,0r122,-267r6,0xm161,-96r-38,-88r-37,88r75,0xm184,-290r-38,0r-24,-30r-23,30r-36,0r53,-64r16,0","w":247,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-5,"t":4,"\u0165":4,"\u0163":2,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":2,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,".":-4,",":-4,"\u2026":-4,"\u201d":45,"\u2019":45,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":39,"\u2018":39,"\u00ae":26,"\u2122":26,"\u2120":26,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u00e2":{"d":"148,0r-39,0r0,-15v-28,32,-98,20,-98,-31v0,-43,64,-60,97,-38v6,-45,-42,-47,-75,-34r-5,-31v55,-19,120,-6,120,60r0,89xm77,-24v19,-1,35,-9,31,-34v-18,-15,-58,-15,-59,12v0,14,10,22,28,22xm146,-177r-39,0r-23,-31r-23,31r-37,0r54,-64r16,0","k":{"\u201d":11,"\u2019":11}},"\u00c4":{"d":"248,0r-47,0r-26,-60r-104,0r-26,60r-46,0r122,-267r6,0xm161,-96r-38,-88r-37,88r75,0xm179,-313v0,12,-10,23,-22,23v-13,0,-23,-11,-23,-23v0,-13,10,-23,23,-23v12,0,22,10,22,23xm113,-313v0,12,-9,23,-22,23v-12,0,-23,-11,-23,-23v0,-13,11,-23,23,-23v13,0,22,10,22,23","w":247,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-5,"t":4,"\u0165":4,"\u0163":2,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":2,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,".":-4,",":-4,"\u2026":-4,"\u201d":45,"\u2019":45,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":39,"\u2018":39,"\u00ae":26,"\u2122":26,"\u2120":26,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u00e4":{"d":"148,0r-39,0r0,-15v-28,32,-98,20,-98,-31v0,-43,64,-60,97,-38v6,-45,-42,-47,-75,-34r-5,-31v55,-19,120,-6,120,60r0,89xm77,-24v19,-1,35,-9,31,-34v-18,-15,-58,-15,-59,12v0,14,10,22,28,22xm140,-201v0,12,-10,23,-22,23v-13,0,-23,-11,-23,-23v0,-13,10,-22,23,-22v12,0,22,9,22,22xm75,-201v0,12,-10,23,-23,23v-12,0,-22,-11,-22,-23v0,-13,10,-22,22,-22v13,0,23,9,23,22","k":{"\u201d":11,"\u2019":11}},"\u00c0":{"d":"248,0r-47,0r-26,-60r-104,0r-26,60r-46,0r122,-267r6,0xm161,-96r-38,-88r-37,88r75,0xm144,-304r-12,19r-74,-33r19,-34","w":247,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-5,"t":4,"\u0165":4,"\u0163":2,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":2,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,".":-4,",":-4,"\u2026":-4,"\u201d":45,"\u2019":45,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":39,"\u2018":39,"\u00ae":26,"\u2122":26,"\u2120":26,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u00e0":{"d":"148,0r-39,0r0,-15v-28,32,-98,20,-98,-31v0,-43,64,-60,97,-38v6,-45,-42,-47,-75,-34r-5,-31v55,-19,120,-6,120,60r0,89xm77,-24v19,-1,35,-9,31,-34v-18,-15,-58,-15,-59,12v0,14,10,22,28,22xm105,-192r-11,20r-74,-33r19,-35","k":{"\u201d":11,"\u2019":11}},"\u0100":{"d":"248,0r-47,0r-26,-60r-104,0r-26,60r-46,0r122,-267r6,0xm161,-96r-38,-88r-37,88r75,0xm175,-294r-103,0r0,-31r103,0r0,31","w":247,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-5,"t":4,"\u0165":4,"\u0163":2,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":2,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,".":-4,",":-4,"\u2026":-4,"\u201d":45,"\u2019":45,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":39,"\u2018":39,"\u00ae":26,"\u2122":26,"\u2120":26,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u0101":{"d":"148,0r-39,0r0,-15v-28,32,-98,20,-98,-31v0,-43,64,-60,97,-38v6,-45,-42,-47,-75,-34r-5,-31v55,-19,120,-6,120,60r0,89xm77,-24v19,-1,35,-9,31,-34v-18,-15,-58,-15,-59,12v0,14,10,22,28,22xm137,-181r-104,0r0,-31r104,0r0,31","k":{"\u201d":11,"\u2019":11}},"\u0104":{"d":"249,62v-15,25,-71,25,-69,-14v0,-16,9,-29,26,-48r-5,0r-26,-60r-104,0r-26,60r-46,0r122,-267r6,0r121,267r-17,0v-14,18,-22,30,-22,42v1,17,20,16,29,4xm161,-96r-38,-88r-37,88r75,0","w":247,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-5,"t":4,"\u0165":4,"\u0163":2,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":2,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,".":-4,",":-4,"\u2026":-4,"\u201d":45,"\u2019":45,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":39,"\u2018":39,"\u00ae":26,"\u2122":26,"\u2120":26,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u0105":{"d":"154,60v-15,25,-71,25,-69,-14v0,-16,7,-29,24,-47r0,-14v-28,32,-98,20,-98,-31v0,-43,64,-60,97,-38v6,-45,-42,-47,-75,-34r-5,-31v55,-19,120,-6,120,60r0,89r-14,0v-14,17,-20,29,-20,40v1,17,20,16,29,4xm77,-24v19,-1,35,-9,31,-34v-18,-15,-58,-15,-59,12v0,14,10,22,28,22","k":{"j":-13,"\u201d":11,"\u2019":11}},"\u00c5":{"d":"123,-333v51,0,58,73,11,81r114,252r-47,0r-26,-60r-104,0r-26,60r-46,0r114,-252v-46,-8,-41,-81,10,-81xm161,-96r-38,-88r-37,88r75,0xm142,-292v0,-12,-9,-20,-19,-20v-10,0,-17,8,-17,20v0,12,7,21,17,21v10,0,19,-9,19,-21","w":247,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-5,"t":4,"\u0165":4,"\u0163":2,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":2,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,".":-4,",":-4,"\u2026":-4,"\u201d":45,"\u2019":45,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":39,"\u2018":39,"\u00ae":26,"\u2122":26,"\u2120":26,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u00e5":{"d":"148,0r-39,0r0,-15v-28,32,-98,20,-98,-31v0,-43,64,-60,97,-38v6,-45,-42,-47,-75,-34r-5,-31v55,-19,120,-6,120,60r0,89xm77,-24v19,-1,35,-9,31,-34v-18,-15,-58,-15,-59,12v0,14,10,22,28,22xm127,-216v0,22,-16,41,-42,41v-26,0,-43,-19,-43,-41v0,-22,17,-41,43,-41v26,0,42,19,42,41xm103,-216v0,-12,-8,-21,-18,-21v-10,0,-18,9,-18,21v0,12,8,20,18,20v10,0,18,-8,18,-20","k":{"\u201d":11,"\u2019":11}},"\u01fa":{"d":"184,-377r-73,32r-11,-20r66,-48xm123,-333v51,0,58,73,11,81r114,252r-47,0r-26,-60r-104,0r-26,60r-46,0r114,-252v-46,-8,-41,-81,10,-81xm161,-96r-38,-88r-37,88r75,0xm142,-292v0,-12,-9,-20,-19,-20v-10,0,-17,8,-17,20v0,12,7,21,17,21v10,0,19,-9,19,-21","w":247,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-5,"t":4,"\u0165":4,"\u0163":2,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":2,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,".":-4,",":-4,"\u2026":-4,"\u201d":45,"\u2019":45,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":39,"\u2018":39,"\u00ae":26,"\u2122":26,"\u2120":26,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u01fb":{"d":"148,0r-39,0r0,-15v-28,32,-98,20,-98,-31v0,-43,64,-60,97,-38v6,-45,-42,-47,-75,-34r-5,-31v55,-19,120,-6,120,60r0,89xm77,-24v19,-1,35,-9,31,-34v-18,-15,-58,-15,-59,12v0,14,10,22,28,22xm144,-303r-73,32r-10,-20r65,-48xm126,-216v0,22,-16,41,-42,41v-26,0,-43,-19,-43,-41v0,-22,17,-41,43,-41v26,0,42,19,42,41xm102,-216v0,-12,-8,-21,-18,-21v-10,0,-18,9,-18,21v0,12,8,20,18,20v10,0,18,-8,18,-20","k":{"\u201d":11,"\u2019":11}},"\u00c3":{"d":"248,0r-47,0r-26,-60r-104,0r-26,60r-46,0r122,-267r6,0xm161,-96r-38,-88r-37,88r75,0xm103,-335v25,0,48,29,67,0r16,23v-21,31,-56,18,-83,8v-9,0,-17,4,-25,13r-14,-23v10,-13,26,-21,39,-21","w":247,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-5,"t":4,"\u0165":4,"\u0163":2,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":2,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,".":-4,",":-4,"\u2026":-4,"\u201d":45,"\u2019":45,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":39,"\u2018":39,"\u00ae":26,"\u2122":26,"\u2120":26,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u00e3":{"d":"148,0r-39,0r0,-15v-28,32,-98,20,-98,-31v0,-43,64,-60,97,-38v6,-45,-42,-47,-75,-34r-5,-31v55,-19,120,-6,120,60r0,89xm77,-24v19,-1,35,-9,31,-34v-18,-15,-58,-15,-59,12v0,14,10,22,28,22xm26,-201v20,-31,56,-18,82,-8v9,0,16,-5,24,-14r15,24v-28,49,-79,-16,-107,21","k":{"\u201d":11,"\u2019":11}},"\u00c6":{"d":"342,0r-161,0r0,-65r-88,0r-44,65r-51,0r183,-264r161,0r0,41r-116,0r0,69r105,0r0,40r-105,0r0,73r116,0r0,41xm181,-102r0,-96r-64,96r64,0","w":366},"\u00e6":{"d":"108,-84v7,-45,-42,-47,-75,-34r-5,-31v35,-11,91,-13,105,17v43,-53,144,-14,122,68r-107,0v1,38,57,42,93,27r5,31v-45,15,-97,11,-118,-21v-26,42,-114,42,-117,-19v-2,-44,63,-60,97,-38xm220,-90v-1,-21,-14,-35,-35,-35v-20,0,-33,13,-36,35r71,0xm113,-52v-11,-20,-63,-27,-64,5v3,32,57,28,64,-5","w":266,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u01fc":{"d":"301,-317r-73,32r-11,-20r66,-48xm342,0r-161,0r0,-65r-88,0r-44,65r-51,0r183,-264r161,0r0,41r-116,0r0,69r105,0r0,40r-105,0r0,73r116,0r0,41xm181,-102r0,-96r-64,96r64,0","w":366},"\u01fd":{"d":"196,-204r-73,32r-10,-20r65,-48xm108,-84v7,-45,-42,-47,-75,-34r-5,-31v35,-11,91,-13,105,17v43,-53,144,-14,122,68r-107,0v1,38,57,42,93,27r5,31v-45,15,-97,11,-118,-21v-26,42,-114,42,-117,-19v-2,-44,63,-60,97,-38xm220,-90v-1,-21,-14,-35,-35,-35v-20,0,-33,13,-36,35r71,0xm113,-52v-11,-20,-63,-27,-64,5v3,32,57,28,64,-5","w":266,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u0106":{"d":"214,-317r-73,32r-10,-20r65,-48xm248,-21v-22,14,-53,25,-86,25v-84,0,-142,-58,-142,-136v0,-112,137,-172,227,-112r-16,38v-66,-43,-163,-13,-163,74v0,86,99,118,166,73","w":258,"k":{"Q":11,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u015f":2,"\u0259":4,"\/":-3,"t":4,"\u0165":4,"\u0163":2,"\u0173":2,"v":11,"x":4,"\u00ff":11,"\u1ef3":11,"?":-7,"}":-18,"]":-18,"!":-7,")":-18,"-":7,"\u2013":7,"\u2014":7,"\u201d":-7,"\u2019":-7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":2,"\u015b":2,"\u0161":2,"\u0219":2,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":11,"\u1e83":11,"\u0175":11,"\u1e85":11,"\u1e81":11,"y":11,"\u00fd":11,"\u0177":11,"S":-2,"\u015a":-2,"\u0160":-2,"\u015e":-2,"\u0218":-2,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11}},"\u0107":{"d":"152,-204r-72,32r-11,-20r66,-48xm151,-13v-52,38,-146,1,-138,-63v-7,-64,84,-105,138,-65r-13,28v-34,-19,-85,-13,-85,36v0,46,54,56,87,36","w":155,"k":{"\/":-3,"x":-5,".":-4,",":-4,"\u2026":-4}},"\u010c":{"d":"213,-351r-54,64r-15,0r-52,-64r38,0r23,30r23,-30r37,0xm248,-21v-22,14,-53,25,-86,25v-84,0,-142,-58,-142,-136v0,-112,137,-172,227,-112r-16,38v-66,-43,-163,-13,-163,74v0,86,99,118,166,73","w":258,"k":{"Q":11,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u015f":2,"\u0259":4,"\/":-3,"t":4,"\u0165":4,"\u0163":2,"\u0173":2,"v":11,"x":4,"\u00ff":11,"\u1ef3":11,"?":-7,"}":-18,"]":-18,"!":-7,")":-18,"-":7,"\u2013":7,"\u2014":7,"\u201d":-7,"\u2019":-7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":2,"\u015b":2,"\u0161":2,"\u0219":2,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":11,"\u1e83":11,"\u0175":11,"\u1e85":11,"\u1e81":11,"y":11,"\u00fd":11,"\u0177":11,"S":-2,"\u015a":-2,"\u0160":-2,"\u015e":-2,"\u0218":-2,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11}},"\u010d":{"d":"152,-239r-54,64r-16,0r-52,-64r38,0r24,31r23,-31r37,0xm151,-13v-52,38,-146,1,-138,-63v-7,-64,84,-105,138,-65r-13,28v-34,-19,-85,-13,-85,36v0,46,54,56,87,36","w":155,"k":{"\/":-3,"x":-5,".":-4,",":-4,"\u2026":-4}},"\u00c7":{"d":"201,53v2,38,-55,48,-84,23r10,-22v13,8,23,12,34,12v8,0,13,-4,13,-12v0,-8,-8,-16,-34,-17v-4,-9,5,-22,6,-33v-75,-6,-126,-63,-126,-136v0,-112,137,-172,227,-112r-16,38v-66,-43,-163,-13,-163,74v0,86,99,118,166,73r14,38v-21,14,-51,24,-82,25r-3,13v29,7,38,20,38,36","w":258,"k":{"Q":11,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u015f":2,"\u0259":4,"\/":-3,"t":4,"\u0165":4,"\u0163":2,"\u0173":2,"v":11,"x":4,"\u00ff":11,"\u1ef3":11,"?":-7,"}":-18,"]":-18,"!":-7,")":-18,"-":7,"\u2013":7,"\u2014":7,"\u201d":-7,"\u2019":-7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":2,"\u015b":2,"\u0161":2,"\u0219":2,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":11,"\u1e83":11,"\u0175":11,"\u1e85":11,"\u1e81":11,"y":11,"\u00fd":11,"\u0177":11,"S":-2,"\u015a":-2,"\u0160":-2,"\u015e":-2,"\u0218":-2,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11}},"\u00e7":{"d":"131,53v2,38,-55,48,-84,23r10,-22v13,8,23,12,34,12v8,0,13,-4,13,-12v0,-8,-8,-16,-34,-17v-4,-10,6,-25,7,-37v-41,-8,-64,-39,-64,-76v0,-64,84,-105,138,-65r-13,28v-34,-19,-85,-13,-85,36v0,46,54,56,87,36r11,28v-15,10,-33,17,-55,16r-3,14v29,7,38,20,38,36","w":155,"k":{"\/":-3,"x":-5,".":-4,",":-4,"\u2026":-4}},"\u010a":{"d":"248,-21v-22,14,-53,25,-86,25v-84,0,-142,-58,-142,-136v0,-112,137,-172,227,-112r-16,38v-66,-43,-163,-13,-163,74v0,86,99,118,166,73xm130,-313v0,-13,10,-23,22,-23v13,0,23,10,23,23v0,12,-10,23,-23,23v-12,0,-22,-11,-22,-23","w":258,"k":{"Q":11,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u015f":2,"\u0259":4,"\/":-3,"t":4,"\u0165":4,"\u0163":2,"\u0173":2,"v":11,"x":4,"\u00ff":11,"\u1ef3":11,"?":-7,"}":-18,"]":-18,"!":-7,")":-18,"-":7,"\u2013":7,"\u2014":7,"\u201d":-7,"\u2019":-7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":2,"\u015b":2,"\u0161":2,"\u0219":2,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":11,"\u1e83":11,"\u0175":11,"\u1e85":11,"\u1e81":11,"y":11,"\u00fd":11,"\u0177":11,"S":-2,"\u015a":-2,"\u0160":-2,"\u015e":-2,"\u0218":-2,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11}},"\u010b":{"d":"151,-13v-52,38,-146,1,-138,-63v-7,-64,84,-105,138,-65r-13,28v-34,-19,-85,-13,-85,36v0,46,54,56,87,36xm68,-201v0,-13,11,-22,23,-22v13,0,22,9,22,22v0,12,-9,23,-22,23v-12,0,-23,-11,-23,-23","w":155,"k":{"\/":-3,"x":-5,".":-4,",":-4,"\u2026":-4}},"\u010e":{"d":"193,-351r-54,64r-16,0r-51,-64r38,0r23,30r23,-30r37,0xm258,-134v0,74,-49,136,-153,136v-29,0,-49,-1,-76,-4r0,-259v26,-3,47,-5,73,-5v104,0,156,61,156,132xm210,-134v0,-66,-58,-103,-136,-90r0,184v79,14,136,-24,136,-94","w":277,"k":{"\u0105":14,"\u00e3":14,"\u0119":7,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":7,"\u01ff":7,"\u00f5":7,"p":7,"q":7,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":7,"\u0259":7,"\/":15,"t":4,"\u0165":4,"\u0163":2,"\u0173":7,"J":22,"V":14,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":23,",":23,"\u2026":23,"\u00c6":18,"\u01fc":18,"A":18,"\u00c1":18,"\u0102":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u0100":18,"\u0104":18,"\u00c5":18,"\u01fa":18,"\u00c3":18,"\u201d":18,"\u2019":18,"a":14,"\u00e1":14,"\u0103":14,"\u00e2":14,"\u00e4":14,"\u00e0":14,"\u0101":14,"\u00e5":14,"\u01fb":14,"\u00e6":14,"\u01fd":14,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":7,"\u00f3":7,"\u014f":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u0151":7,"\u014d":7,"\u0153":7,"s":7,"\u015b":7,"\u0161":7,"\u0219":7,"u":7,"\u00fa":7,"\u016d":7,"\u00fb":7,"\u00fc":7,"\u00f9":7,"\u0171":7,"\u016b":7,"\u016f":7,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"W":7,"\u1e82":7,"\u0174":7,"\u1e84":7,"\u1e80":7,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":22,"\u0164":22,"\u0162":22,"Z":14,"\u0179":14,"\u017d":14,"\u017b":14,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u010f":{"d":"204,-264r33,6v0,32,-14,55,-35,70r-19,-12v13,-15,20,-35,21,-64xm172,0r-40,0r0,-14v-46,41,-118,4,-118,-62v0,-61,70,-105,117,-67r0,-121r41,0r0,264xm131,-47r0,-59v-22,-30,-76,-22,-76,29v0,46,53,63,76,30","w":191,"k":{"}":-50,"]":-50,")":-54,"\u0142":-16,"j":-29,"i":-27,"\u201d":-47,"\u2019":-47,"f":-14,"\ufb03":-14,"\ufb04":-14,"\ufb00":-14,"\ufb01":-14,"\ufb02":-14,"b":-41,"h":-41,"k":-41,"l":-41,"\u0127":-41,"\u0137":-41,"\u013a":-41,"\u013e":-41,"\u013c":-41,"\u0140":-41,"\"":-5,"'":-5,"\u201c":-41,"\u2018":-41,"\u00ae":-49,"\u2122":-49,"\u2120":-49}},"\u0110":{"d":"265,-134v0,74,-49,136,-153,136v-29,0,-49,-1,-76,-4r0,-114r-29,0r0,-37r29,0r0,-108v26,-3,47,-5,73,-5v104,0,156,61,156,132xm217,-134v0,-66,-58,-103,-136,-90r0,71r40,0r0,37r-40,0r0,76v79,14,136,-24,136,-94","w":281,"k":{"\u0105":14,"\u00e3":14,"\u0119":7,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":7,"\u01ff":7,"\u00f5":7,"p":7,"q":7,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":7,"\u0259":7,"\/":15,"t":4,"\u0165":4,"\u0163":2,"\u0173":7,"J":22,"V":14,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":23,",":23,"\u2026":23,"\u00c6":18,"\u01fc":18,"A":18,"\u00c1":18,"\u0102":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u0100":18,"\u0104":18,"\u00c5":18,"\u01fa":18,"\u00c3":18,"\u201d":18,"\u2019":18,"a":14,"\u00e1":14,"\u0103":14,"\u00e2":14,"\u00e4":14,"\u00e0":14,"\u0101":14,"\u00e5":14,"\u01fb":14,"\u00e6":14,"\u01fd":14,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":7,"\u00f3":7,"\u014f":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u0151":7,"\u014d":7,"\u0153":7,"s":7,"\u015b":7,"\u0161":7,"\u0219":7,"u":7,"\u00fa":7,"\u016d":7,"\u00fb":7,"\u00fc":7,"\u00f9":7,"\u0171":7,"\u016b":7,"\u016f":7,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"W":7,"\u1e82":7,"\u0174":7,"\u1e84":7,"\u1e80":7,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":22,"\u0164":22,"\u0162":22,"Z":14,"\u0179":14,"\u017d":14,"\u017b":14,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u0111":{"d":"172,0r-40,0r0,-14v-46,41,-118,4,-118,-62v0,-61,70,-105,117,-67r0,-54r-51,0r0,-31r51,0r0,-36r41,0r0,36r19,0r0,31r-19,0r0,197xm131,-47r0,-59v-22,-30,-76,-22,-76,29v0,46,53,63,76,30","w":191,"k":{"\u00ec":-5,"j":-4}},"\u00c9":{"d":"171,-317r-73,32r-10,-20r65,-48xm190,0r-161,0r0,-264r161,0r0,41r-116,0r0,69r105,0r0,40r-105,0r0,73r116,0r0,41","w":213,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-4,"t":11,"\u0165":11,"\u0163":5,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":11,"n":11,"\u0144":11,"\u0148":11,"\u0146":11,"\u00f1":11,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u00e9":{"d":"152,-204r-73,32r-11,-20r66,-48xm91,-157v53,1,76,41,69,93r-107,0v0,38,57,41,93,27r5,31v-67,25,-138,-4,-138,-70v0,-41,28,-81,78,-81xm54,-90r71,0v-2,-21,-14,-35,-35,-35v-20,0,-33,13,-36,35","w":171,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u0114":{"d":"190,0r-161,0r0,-264r161,0r0,41r-116,0r0,69r105,0r0,40r-105,0r0,73r116,0r0,41xm161,-338v0,27,-20,50,-52,50v-32,0,-51,-23,-51,-50r32,-2v0,16,7,25,19,25v13,0,20,-9,20,-25","w":213,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-4,"t":11,"\u0165":11,"\u0163":5,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":11,"n":11,"\u0144":11,"\u0148":11,"\u0146":11,"\u00f1":11,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u0115":{"d":"91,-157v53,1,76,41,69,93r-107,0v0,38,57,41,93,27r5,31v-67,25,-138,-4,-138,-70v0,-41,28,-81,78,-81xm54,-90r71,0v-2,-21,-14,-35,-35,-35v-20,0,-33,13,-36,35xm141,-225v0,27,-19,49,-51,49v-32,0,-51,-22,-51,-49r32,-3v0,16,7,25,19,25v13,0,20,-9,20,-25","w":171,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u011a":{"d":"170,-351r-53,64r-16,0r-52,-64r38,0r24,30r23,-30r36,0xm190,0r-161,0r0,-264r161,0r0,41r-116,0r0,69r105,0r0,40r-105,0r0,73r116,0r0,41","w":213,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-4,"t":11,"\u0165":11,"\u0163":5,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":11,"n":11,"\u0144":11,"\u0148":11,"\u0146":11,"\u00f1":11,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u011b":{"d":"151,-239r-54,64r-16,0r-51,-64r38,0r23,31r23,-31r37,0xm91,-157v53,1,76,41,69,93r-107,0v0,38,57,41,93,27r5,31v-67,25,-138,-4,-138,-70v0,-41,28,-81,78,-81xm54,-90r71,0v-2,-21,-14,-35,-35,-35v-20,0,-33,13,-36,35","w":171,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u00ca":{"d":"170,-290r-38,0r-24,-30r-23,30r-36,0r53,-64r16,0xm190,0r-161,0r0,-264r161,0r0,41r-116,0r0,69r105,0r0,40r-105,0r0,73r116,0r0,41","w":213,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-4,"t":11,"\u0165":11,"\u0163":5,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":11,"n":11,"\u0144":11,"\u0148":11,"\u0146":11,"\u00f1":11,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u00ea":{"d":"151,-177r-39,0r-23,-31r-23,31r-36,0r53,-64r16,0xm91,-157v53,1,76,41,69,93r-107,0v0,38,57,41,93,27r5,31v-67,25,-138,-4,-138,-70v0,-41,28,-81,78,-81xm54,-90r71,0v-2,-21,-14,-35,-35,-35v-20,0,-33,13,-36,35","w":171,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u00cb":{"d":"165,-313v0,12,-10,23,-22,23v-13,0,-23,-11,-23,-23v0,-13,10,-23,23,-23v12,0,22,10,22,23xm99,-313v0,12,-9,23,-22,23v-12,0,-23,-11,-23,-23v0,-13,11,-23,23,-23v13,0,22,10,22,23xm190,0r-161,0r0,-264r161,0r0,41r-116,0r0,69r105,0r0,40r-105,0r0,73r116,0r0,41","w":213,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-4,"t":11,"\u0165":11,"\u0163":5,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":11,"n":11,"\u0144":11,"\u0148":11,"\u0146":11,"\u00f1":11,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u00eb":{"d":"145,-201v0,12,-10,23,-22,23v-13,0,-23,-11,-23,-23v0,-13,10,-22,23,-22v12,0,22,9,22,22xm80,-201v0,12,-10,23,-23,23v-12,0,-22,-11,-22,-23v0,-13,10,-22,22,-22v13,0,23,9,23,22xm91,-157v53,1,76,41,69,93r-107,0v0,38,57,41,93,27r5,31v-67,25,-138,-4,-138,-70v0,-41,28,-81,78,-81xm54,-90r71,0v-2,-21,-14,-35,-35,-35v-20,0,-33,13,-36,35","w":171,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u0116":{"d":"190,0r-161,0r0,-264r161,0r0,41r-116,0r0,69r105,0r0,40r-105,0r0,73r116,0r0,41xm87,-313v0,-13,10,-23,22,-23v13,0,23,10,23,23v0,12,-10,23,-23,23v-12,0,-22,-11,-22,-23","w":213,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-4,"t":11,"\u0165":11,"\u0163":5,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":11,"n":11,"\u0144":11,"\u0148":11,"\u0146":11,"\u00f1":11,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u0117":{"d":"91,-157v53,1,76,41,69,93r-107,0v0,38,57,41,93,27r5,31v-67,25,-138,-4,-138,-70v0,-41,28,-81,78,-81xm54,-90r71,0v-2,-21,-14,-35,-35,-35v-20,0,-33,13,-36,35xm68,-201v0,-13,10,-22,22,-22v13,0,23,9,23,22v0,12,-10,23,-23,23v-12,0,-22,-11,-22,-23","w":171,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u00c8":{"d":"190,0r-161,0r0,-264r161,0r0,41r-116,0r0,69r105,0r0,40r-105,0r0,73r116,0r0,41xm130,-304r-12,19r-73,-33r19,-34","w":213,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-4,"t":11,"\u0165":11,"\u0163":5,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":11,"n":11,"\u0144":11,"\u0148":11,"\u0146":11,"\u00f1":11,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u00e8":{"d":"91,-157v53,1,76,41,69,93r-107,0v0,38,57,41,93,27r5,31v-67,25,-138,-4,-138,-70v0,-41,28,-81,78,-81xm54,-90r71,0v-2,-21,-14,-35,-35,-35v-20,0,-33,13,-36,35xm111,-192r-12,20r-74,-33r19,-35","w":171,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u0112":{"d":"190,0r-161,0r0,-264r161,0r0,41r-116,0r0,69r105,0r0,40r-105,0r0,73r116,0r0,41xm161,-294r-103,0r0,-31r103,0r0,31","w":213,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-4,"t":11,"\u0165":11,"\u0163":5,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":11,"n":11,"\u0144":11,"\u0148":11,"\u0146":11,"\u00f1":11,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u0113":{"d":"91,-157v53,1,76,41,69,93r-107,0v0,38,57,41,93,27r5,31v-67,25,-138,-4,-138,-70v0,-41,28,-81,78,-81xm54,-90r71,0v-2,-21,-14,-35,-35,-35v-20,0,-33,13,-36,35xm142,-181r-103,0r0,-31r103,0r0,31","w":171,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u0118":{"d":"190,0r-15,0v-14,18,-22,30,-22,42v1,17,20,16,29,4r12,16v-16,25,-72,25,-70,-14v0,-16,9,-29,26,-48r-121,0r0,-264r161,0r0,41r-116,0r0,69r105,0r0,40r-105,0r0,73r116,0r0,41","w":213,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-4,"t":11,"\u0165":11,"\u0163":5,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":11,"n":11,"\u0144":11,"\u0148":11,"\u0146":11,"\u00f1":11,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u0119":{"d":"91,-157v53,1,76,41,69,93r-107,0v0,38,57,41,93,27r5,31v-19,17,-30,35,-30,48v1,18,19,15,28,4r12,16v-17,24,-72,26,-70,-14v0,-16,9,-30,26,-47v-63,11,-104,-27,-104,-77v0,-41,28,-81,78,-81xm54,-90r71,0v-2,-21,-14,-35,-35,-35v-20,0,-33,13,-36,35","w":171,"k":{"j":-13,".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u00d0":{"d":"265,-134v0,74,-49,136,-153,136v-29,0,-49,-1,-76,-4r0,-114r-29,0r0,-37r29,0r0,-108v26,-3,47,-5,73,-5v104,0,156,61,156,132xm217,-134v0,-66,-58,-103,-136,-90r0,71r40,0r0,37r-40,0r0,76v79,14,136,-24,136,-94","w":281,"k":{"\u0105":14,"\u00e3":14,"\u0119":7,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":7,"\u01ff":7,"\u00f5":7,"p":7,"q":7,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":7,"\u0259":7,"\/":15,"t":4,"\u0165":4,"\u0163":2,"\u0173":7,"J":22,"V":14,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":23,",":23,"\u2026":23,"\u00c6":18,"\u01fc":18,"A":18,"\u00c1":18,"\u0102":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u0100":18,"\u0104":18,"\u00c5":18,"\u01fa":18,"\u00c3":18,"\u201d":18,"\u2019":18,"a":14,"\u00e1":14,"\u0103":14,"\u00e2":14,"\u00e4":14,"\u00e0":14,"\u0101":14,"\u00e5":14,"\u01fb":14,"\u00e6":14,"\u01fd":14,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":7,"\u00f3":7,"\u014f":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u0151":7,"\u014d":7,"\u0153":7,"s":7,"\u015b":7,"\u0161":7,"\u0219":7,"u":7,"\u00fa":7,"\u016d":7,"\u00fb":7,"\u00fc":7,"\u00f9":7,"\u0171":7,"\u016b":7,"\u016f":7,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"W":7,"\u1e82":7,"\u0174":7,"\u1e84":7,"\u1e80":7,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":22,"\u0164":22,"\u0162":22,"Z":14,"\u0179":14,"\u017d":14,"\u017b":14,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u00f0":{"d":"57,-175r-18,-21r23,-20v-12,-8,-23,-14,-35,-19r15,-31v16,7,32,16,47,26r24,-22r19,23r-20,16v36,32,63,76,63,136v0,54,-32,91,-81,91v-104,0,-105,-161,-9,-161v18,0,33,7,43,17v-8,-21,-23,-42,-43,-59xm136,-77v0,-29,-17,-49,-42,-49v-23,0,-40,18,-40,47v0,28,15,51,41,51v26,0,41,-21,41,-49","w":188},"\u011e":{"d":"153,-140r105,0r0,116v-90,63,-238,14,-238,-108v0,-120,144,-171,233,-109r-20,36v-65,-48,-165,-11,-165,73v0,76,82,119,147,84r0,-52r-62,0r0,-40xm207,-338v0,27,-19,50,-51,50v-32,0,-52,-23,-52,-50r32,-2v0,16,8,25,20,25v13,0,19,-9,19,-25","w":279,"k":{"\/":-2,"Y":10,"\u00dd":10,"\u0176":10,"\u0178":10,"\u1ef2":10,".":7,",":7,"\u2026":7,"T":5,"\u0164":5,"\u0162":5}},"\u011f":{"d":"172,8v3,76,-62,82,-123,65r4,-36v41,15,89,11,78,-47v-46,32,-117,1,-117,-65v0,-62,69,-105,118,-68r0,-11r40,0r0,162xm131,-45r0,-63v-25,-29,-80,-16,-76,33v-5,42,53,62,76,30xm151,-225v0,27,-19,49,-51,49v-32,0,-51,-22,-51,-49r31,-3v0,16,8,25,20,25v13,0,20,-9,20,-25","w":190,"k":{"\/":-5}},"\u0122":{"d":"179,54v0,22,-16,49,-43,62r-5,-7v14,-12,21,-24,25,-37v-32,1,-30,-46,-2,-46v16,0,25,13,25,28xm153,-140r105,0r0,116v-90,63,-238,14,-238,-108v0,-120,144,-171,233,-109r-20,36v-65,-48,-165,-11,-165,73v0,76,82,119,147,84r0,-52r-62,0r0,-40","w":279,"k":{"\/":-2,"Y":10,"\u00dd":10,"\u0176":10,"\u0178":10,"\u1ef2":10,".":7,",":7,"\u2026":7,"T":5,"\u0164":5,"\u0162":5}},"\u0123":{"d":"76,-210v0,-22,17,-49,44,-62r4,7v-14,12,-21,24,-25,37v31,-1,31,46,2,46v-16,0,-25,-13,-25,-28xm172,8v3,76,-62,82,-123,65r4,-36v41,15,89,11,78,-47v-46,32,-117,1,-117,-65v0,-62,69,-105,118,-68r0,-11r40,0r0,162xm131,-45r0,-63v-25,-29,-80,-16,-76,33v-5,42,53,62,76,30","w":190,"k":{"\/":-5}},"\u0120":{"d":"153,-140r105,0r0,116v-90,63,-238,14,-238,-108v0,-120,144,-171,233,-109r-20,36v-65,-48,-165,-11,-165,73v0,76,82,119,147,84r0,-52r-62,0r0,-40xm133,-313v0,-13,11,-23,23,-23v13,0,22,10,22,23v0,12,-9,23,-22,23v-12,0,-23,-11,-23,-23","w":279,"k":{"\/":-2,"Y":10,"\u00dd":10,"\u0176":10,"\u0178":10,"\u1ef2":10,".":7,",":7,"\u2026":7,"T":5,"\u0164":5,"\u0162":5}},"\u0121":{"d":"172,8v3,76,-62,82,-123,65r4,-36v41,15,89,11,78,-47v-46,32,-117,1,-117,-65v0,-62,69,-105,118,-68r0,-11r40,0r0,162xm131,-45r0,-63v-25,-29,-80,-16,-76,33v-5,42,53,62,76,30xm77,-201v0,-13,11,-22,23,-22v13,0,22,9,22,22v0,12,-9,23,-22,23v-12,0,-23,-11,-23,-23","w":190,"k":{"\/":-5}},"\u0126":{"d":"240,0r-45,0r0,-110r-121,0r0,110r-45,0r0,-192r-26,0r0,-31r26,0r0,-41r45,0r0,41r121,0r0,-41r45,0r0,41r26,0r0,31r-26,0r0,192xm74,-150r121,0r0,-42r-121,0r0,42","w":268,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":2,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u0127":{"d":"168,0r-41,0r0,-95v-1,-43,-47,-29,-65,-6r0,101r-41,0r0,-197r-20,0r0,-31r20,0r0,-36r40,0r0,36r51,0r0,31r-51,0r0,68v31,-44,107,-35,107,24r0,105","w":185},"\u00cd":{"d":"76,0r-45,0r0,-264r45,0r0,264xm114,-320r-72,32r-11,-19r66,-49","w":106,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":2,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00ed":{"d":"105,-204r-73,32r-10,-20r65,-48xm64,0r-41,0r0,-154r41,0r0,154","w":86,"k":{"}":-13,"]":-5,")":-13,"\u0142":-5,"j":-11,"i":-13,"\u201d":-14,"\u2019":-14,"b":-11,"h":-11,"k":-11,"l":-11,"\u0127":-11,"\u0137":-11,"\u013a":-11,"\u013e":-11,"\u013c":-11,"\u0140":-11,"\"":-5,"'":-5,"\u201c":-18,"\u2018":-18,"\u00ae":-14,"\u2122":-14,"\u2120":-14}},"\u012c":{"d":"76,0r-45,0r0,-264r45,0r0,264xm104,-338v0,27,-19,50,-51,50v-32,0,-51,-23,-51,-50r31,-2v0,16,8,25,20,25v13,0,20,-9,20,-25","w":106,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":2,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u012d":{"d":"64,0r-41,0r0,-154r41,0r0,154xm95,-225v0,27,-20,49,-52,49v-32,0,-51,-22,-51,-49r32,-3v0,16,7,25,19,25v13,0,20,-9,20,-25","w":86,"k":{"j":-2,"i":-2}},"\u00ce":{"d":"76,0r-45,0r0,-264r45,0r0,264xm114,-290r-39,0r-23,-30r-23,30r-37,0r54,-64r16,0","w":106,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":2,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00ee":{"d":"104,-177r-38,0r-24,-31r-23,31r-36,0r53,-64r16,0xm64,0r-41,0r0,-154r41,0r0,154","w":86,"k":{"j":-2,"i":-2}},"\u00cf":{"d":"76,0r-45,0r0,-264r45,0r0,264xm108,-313v0,12,-10,23,-22,23v-13,0,-23,-11,-23,-23v0,-13,10,-23,23,-23v12,0,22,10,22,23xm43,-313v0,12,-10,23,-23,23v-12,0,-23,-11,-23,-23v0,-13,11,-23,23,-23v13,0,23,10,23,23","w":106,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":2,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00ef":{"d":"99,-201v0,12,-11,23,-23,23v-13,0,-22,-11,-22,-23v0,-13,9,-22,22,-22v12,0,23,9,23,22xm33,-201v0,12,-10,23,-23,23v-12,0,-22,-11,-22,-23v0,-13,10,-22,22,-22v13,0,23,9,23,22xm64,0r-41,0r0,-154r41,0r0,154","w":86,"k":{"j":-9,"i":-9}},"\u0130":{"d":"76,0r-45,0r0,-264r45,0r0,264xm31,-313v0,-13,10,-23,22,-23v13,0,23,10,23,23v0,12,-10,23,-23,23v-12,0,-22,-11,-22,-23","w":106,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":2,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u0131":{"d":"64,0r-41,0r0,-154r41,0r0,154","w":86},"\u00cc":{"d":"76,0r-45,0r0,-264r45,0r0,264xm73,-304r-11,19r-74,-33r19,-34","w":106,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":2,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00ec":{"d":"64,0r-41,0r0,-154r41,0r0,154xm64,-192r-12,20r-74,-33r19,-35","w":86},"\u012a":{"d":"76,0r-45,0r0,-264r45,0r0,264xm105,-294r-104,0r0,-31r104,0r0,31","w":106,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":2,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u012b":{"d":"64,0r-41,0r0,-154r41,0r0,154xm95,-181r-103,0r0,-31r103,0r0,31","w":86,"k":{"j":-5,"i":-5,"f":-4,"\ufb03":-4,"\ufb04":-4,"\ufb00":-4,"\ufb01":-4,"\ufb02":-4}},"\u012e":{"d":"85,62v-16,25,-72,25,-70,-14v0,-16,9,-29,26,-48r-10,0r0,-264r45,0r0,264r-9,0v-14,18,-22,30,-22,42v1,17,19,16,28,4","w":106,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":2,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u012f":{"d":"76,60v-17,25,-71,25,-70,-14v0,-16,8,-28,24,-46r-8,0r0,-154r41,0r0,154r-7,0v-14,17,-20,29,-20,40v1,17,19,16,28,4xm67,-207v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24","w":84,"k":{")":-4,"j":-13}},"\u0136":{"d":"148,50v0,22,-17,49,-44,62r-4,-7v14,-12,21,-24,25,-37v-31,1,-31,-46,-2,-46v16,0,25,13,25,28xm238,0r-56,0r-108,-127r0,127r-45,0r0,-264r45,0r0,119r103,-119r55,0r-115,127","w":241,"k":{"Q":23,"\u0105":4,"\u00e3":4,"\u0119":11,"i":-2,"\u00ed":-2,"\u012d":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-9,"\u012b":-2,"\u012f":-2,"\u00f8":11,"\u01ff":11,"\u00f5":11,"q":11,"\u0259":11,"\/":-4,"t":7,"\u0165":7,"\u0163":4,"\u0173":5,"v":18,"\u00ff":13,"\u1ef3":13,"}":-11,"]":-11,")":-11,"-":32,"\u2013":32,"\u2014":32,"\u201d":-7,"\u2019":-7,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":11,"\u0107":11,"\u010d":11,"\u00e7":11,"\u010b":11,"d":11,"\u010f":11,"\u0111":11,"e":11,"\u00e9":11,"\u0115":11,"\u011b":11,"\u00ea":11,"\u00eb":11,"\u0117":11,"\u00e8":11,"\u0113":11,"g":11,"\u011f":11,"\u0123":11,"\u0121":11,"o":11,"\u00f3":11,"\u014f":11,"\u00f4":11,"\u00f6":11,"\u00f2":11,"\u0151":11,"\u014d":11,"\u0153":11,"u":5,"\u00fa":5,"\u016d":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u0171":5,"\u016b":5,"\u016f":5,"w":14,"\u1e83":14,"\u0175":14,"\u1e85":14,"\u1e81":14,"y":13,"\u00fd":13,"\u0177":13,"C":23,"\u0106":23,"\u010c":23,"\u00c7":23,"\u010a":23,"G":23,"\u011e":23,"\u0122":23,"\u0120":23,"O":23,"\u00d3":23,"\u014e":23,"\u00d4":23,"\u00d6":23,"\u00d2":23,"\u0150":23,"\u014c":23,"\u00d8":23,"\u01fe":23,"\u00d5":23,"\u0152":23}},"\u0137":{"d":"113,54v0,22,-16,49,-43,62r-4,-7v14,-12,20,-24,24,-37v-31,1,-28,-46,-1,-46v16,0,24,13,24,28xm170,0r-49,0r-60,-73r0,73r-40,0r0,-264r40,0r0,176r57,-66r49,0r-68,73","w":171,"k":{"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u0259":4,"&":4,"-":14,"\u2013":14,"\u2014":14,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4}},"\u0139":{"d":"130,-320r-73,32r-11,-19r66,-49xm190,0r-161,0r0,-264r45,0r0,223r116,0r0,41","w":196,"k":{"Q":15,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u0259":4,"\/":-13,"t":4,"\u0165":4,"\u0163":2,"\u0173":2,"v":14,"\u00ff":14,"\u1ef3":14,"V":25,"?":2,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"\u1ef2":32,"-":18,"\u2013":18,"\u2014":18,"\u201d":43,"\u2019":43,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":16,"\u1e83":16,"\u0175":16,"\u1e85":16,"\u1e81":16,"y":14,"\u00fd":14,"\u0177":14,"W":14,"\u1e82":14,"\u0174":14,"\u1e84":14,"\u1e80":14,"T":40,"\u0164":40,"\u0162":40,"C":15,"\u0106":15,"\u010c":15,"\u00c7":15,"\u010a":15,"G":15,"\u011e":15,"\u0122":15,"\u0120":15,"O":15,"\u00d3":15,"\u014e":15,"\u00d4":15,"\u00d6":15,"\u00d2":15,"\u0150":15,"\u014c":15,"\u00d8":15,"\u01fe":15,"\u00d5":15,"\u0152":15,"\u201c":25,"\u2018":25,"\u00ae":29,"\u2122":29,"\u2120":29,"U":11,"\u00da":11,"\u016c":11,"\u00db":11,"\u00dc":11,"\u00d9":11,"\u0170":11,"\u016a":11,"\u0172":11,"\u016e":11}},"\u013a":{"d":"109,-318r-73,32r-10,-20r65,-48xm62,0r-41,0r0,-264r41,0r0,264","w":83,"k":{"\u00ec":-13,"j":-13,"\/":4}},"\u013d":{"d":"116,-264r33,6v0,32,-14,55,-35,70r-19,-12v13,-15,20,-35,21,-64xm190,0r-161,0r0,-264r45,0r0,223r116,0r0,41","w":196,"k":{"Q":15,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u0259":4,"\/":-13,"t":4,"\u0165":4,"\u0163":2,"\u0173":2,"v":14,"\u00ff":14,"\u1ef3":14,"V":25,"?":2,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"\u1ef2":32,"-":18,"\u2013":18,"\u2014":18,"\u201d":43,"\u2019":43,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":16,"\u1e83":16,"\u0175":16,"\u1e85":16,"\u1e81":16,"y":14,"\u00fd":14,"\u0177":14,"W":14,"\u1e82":14,"\u0174":14,"\u1e84":14,"\u1e80":14,"T":40,"\u0164":40,"\u0162":40,"C":15,"\u0106":15,"\u010c":15,"\u00c7":15,"\u010a":15,"G":15,"\u011e":15,"\u0122":15,"\u0120":15,"O":15,"\u00d3":15,"\u014e":15,"\u00d4":15,"\u00d6":15,"\u00d2":15,"\u0150":15,"\u014c":15,"\u00d8":15,"\u01fe":15,"\u00d5":15,"\u0152":15,"\u201c":25,"\u2018":25,"\u00ae":29,"\u2122":29,"\u2120":29,"U":11,"\u00da":11,"\u016c":11,"\u00db":11,"\u00dc":11,"\u00d9":11,"\u0170":11,"\u016a":11,"\u0172":11,"\u016e":11}},"\u013e":{"d":"94,-264r33,6v0,32,-14,55,-35,70r-19,-12v13,-15,20,-35,21,-64xm62,0r-41,0r0,-264r41,0r0,264","w":83,"k":{"}":-50,"]":-50,")":-52,"\u0142":-16,"j":-27,"i":-27,"\u201d":-45,"\u2019":-45,"f":-14,"\ufb03":-14,"\ufb04":-14,"\ufb00":-14,"\ufb01":-14,"\ufb02":-14,"b":-40,"h":-40,"k":-40,"l":-40,"\u0127":-40,"\u0137":-40,"\u013a":-40,"\u013e":-40,"\u013c":-40,"\u0140":-40,"\"":-5,"'":-5,"\u201c":-41,"\u2018":-41,"\u00ae":-50,"\u2122":-50,"\u2120":-50}},"\u013b":{"d":"131,54v0,22,-17,49,-44,62r-4,-7v14,-12,21,-24,25,-37v-32,1,-30,-46,-2,-46v16,0,25,13,25,28xm190,0r-161,0r0,-264r45,0r0,223r116,0r0,41","w":196,"k":{"Q":15,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u0259":4,"\/":-13,"t":4,"\u0165":4,"\u0163":2,"\u0173":2,"v":14,"\u00ff":14,"\u1ef3":14,"V":25,"?":2,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"\u1ef2":32,"-":18,"\u2013":18,"\u2014":18,"\u201d":43,"\u2019":43,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":16,"\u1e83":16,"\u0175":16,"\u1e85":16,"\u1e81":16,"y":14,"\u00fd":14,"\u0177":14,"W":14,"\u1e82":14,"\u0174":14,"\u1e84":14,"\u1e80":14,"T":40,"\u0164":40,"\u0162":40,"C":15,"\u0106":15,"\u010c":15,"\u00c7":15,"\u010a":15,"G":15,"\u011e":15,"\u0122":15,"\u0120":15,"O":15,"\u00d3":15,"\u014e":15,"\u00d4":15,"\u00d6":15,"\u00d2":15,"\u0150":15,"\u014c":15,"\u00d8":15,"\u01fe":15,"\u00d5":15,"\u0152":15,"\u201c":25,"\u2018":25,"\u00ae":29,"\u2122":29,"\u2120":29,"U":11,"\u00da":11,"\u016c":11,"\u00db":11,"\u00dc":11,"\u00d9":11,"\u0170":11,"\u016a":11,"\u0172":11,"\u016e":11}},"\u013c":{"d":"65,54v0,22,-16,49,-43,62r-5,-7v14,-12,21,-24,25,-37v-32,1,-30,-46,-2,-46v16,0,25,13,25,28xm62,0r-41,0r0,-264r41,0r0,264","w":83,"k":{"\u00ec":-13,"j":-13,"\/":4}},"\u013f":{"d":"190,0r-161,0r0,-264r45,0r0,223r116,0r0,41xm129,-138v0,12,11,22,23,22v13,0,22,-10,22,-22v0,-13,-9,-23,-22,-23v-12,0,-23,10,-23,23","w":196,"k":{"Q":15,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u0259":4,"\/":-13,"t":4,"\u0165":4,"\u0163":2,"\u0173":2,"v":14,"\u00ff":14,"\u1ef3":14,"V":25,"?":2,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"\u1ef2":32,"-":18,"\u2013":18,"\u2014":18,"\u201d":43,"\u2019":43,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":16,"\u1e83":16,"\u0175":16,"\u1e85":16,"\u1e81":16,"y":14,"\u00fd":14,"\u0177":14,"W":14,"\u1e82":14,"\u0174":14,"\u1e84":14,"\u1e80":14,"T":40,"\u0164":40,"\u0162":40,"C":15,"\u0106":15,"\u010c":15,"\u00c7":15,"\u010a":15,"G":15,"\u011e":15,"\u0122":15,"\u0120":15,"O":15,"\u00d3":15,"\u014e":15,"\u00d4":15,"\u00d6":15,"\u00d2":15,"\u0150":15,"\u014c":15,"\u00d8":15,"\u01fe":15,"\u00d5":15,"\u0152":15,"\u201c":25,"\u2018":25,"\u00ae":29,"\u2122":29,"\u2120":29,"U":11,"\u00da":11,"\u016c":11,"\u00db":11,"\u00dc":11,"\u00d9":11,"\u0170":11,"\u016a":11,"\u0172":11,"\u016e":11}},"\u0140":{"d":"62,0r-41,0r0,-264r41,0r0,264xm80,-132v0,12,10,23,22,23v13,0,23,-11,23,-23v0,-13,-10,-23,-23,-23v-12,0,-22,10,-22,23","w":120},"\u0141":{"d":"190,0r-161,0r0,-98r-21,9r0,-38r21,-10r0,-127r45,0r0,107r37,-17r0,38r-37,17r0,78r116,0r0,41","w":196},"\u0142":{"d":"82,-125r-17,9r0,116r-41,0r0,-96r-16,8r0,-39r16,-8r0,-129r41,0r0,109r17,-8r0,38","w":88},"\u0143":{"d":"198,-314r-73,32r-11,-20r66,-48xm244,4r-5,1r-165,-174r0,169r-45,0r0,-267r7,-2r163,172r0,-167r45,0r0,268","w":272,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":2,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u0144":{"d":"155,-204r-73,32r-10,-20r65,-48xm167,0r-41,0r0,-95v-1,-43,-47,-29,-64,-6r0,101r-41,0r0,-154r39,0r0,26v31,-43,107,-38,107,23r0,105","w":184},"\u0147":{"d":"197,-349r-54,64r-16,0r-51,-64r38,0r23,31r23,-31r37,0xm244,4r-5,1r-165,-174r0,169r-45,0r0,-267r7,-2r163,172r0,-167r45,0r0,268","w":272,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":2,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u0148":{"d":"154,-239r-54,64r-15,0r-52,-64r38,0r23,31r23,-31r37,0xm167,0r-41,0r0,-95v-1,-43,-47,-29,-64,-6r0,101r-41,0r0,-154r39,0r0,26v31,-43,107,-38,107,23r0,105","w":184},"\u0145":{"d":"160,50v0,22,-17,49,-44,62r-4,-7v14,-12,21,-24,25,-37v-31,1,-31,-46,-2,-46v16,0,25,13,25,28xm244,4r-5,1r-165,-174r0,169r-45,0r0,-267r7,-2r163,172r0,-167r45,0r0,268","w":272,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":2,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u0146":{"d":"117,54v0,22,-17,49,-44,62r-4,-7v14,-12,21,-24,25,-37v-32,1,-30,-46,-2,-46v16,0,25,13,25,28xm167,0r-41,0r0,-95v-1,-43,-47,-29,-64,-6r0,101r-41,0r0,-154r39,0r0,26v31,-43,107,-38,107,23r0,105","w":184},"\u00d1":{"d":"244,4r-5,1r-165,-174r0,169r-45,0r0,-267r7,-2r163,172r0,-167r45,0r0,268xm77,-311v28,-48,78,15,106,-22r15,24v-29,49,-79,-16,-107,21","w":272,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":2,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00f1":{"d":"167,0r-41,0r0,-95v-1,-43,-47,-29,-64,-6r0,101r-41,0r0,-154r39,0r0,26v31,-43,107,-38,107,23r0,105xm34,-201v20,-31,56,-18,82,-8v9,0,16,-5,24,-14r16,24v-10,13,-26,21,-39,21v-26,0,-49,-29,-69,0","w":184},"\u00d3":{"d":"215,-317r-73,32r-11,-20r66,-48xm287,-132v0,78,-59,136,-135,136v-76,0,-132,-58,-132,-136v0,-78,58,-136,134,-136v76,0,133,58,133,136xm238,-132v0,-55,-35,-96,-85,-96v-50,0,-85,41,-85,96v0,55,35,96,85,96v50,0,85,-41,85,-96","w":306,"k":{"\u0105":7,"\u00e3":7,"\u0119":5,"\u0142":1,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":5,"\u015f":4,"\u0259":5,"\/":15,"\u0173":1,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":23,",":23,"\u2026":23,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":1,"\u00fa":1,"\u016d":1,"\u00fb":1,"\u00fc":1,"\u00f9":1,"\u0171":1,"\u016b":1,"\u016f":1,"b":1,"h":1,"k":1,"l":1,"\u0127":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u00f3":{"d":"156,-204r-73,32r-11,-20r66,-48xm174,-77v0,44,-31,80,-80,80v-50,0,-81,-36,-81,-80v0,-44,31,-80,81,-80v49,0,80,36,80,80xm133,-77v0,-30,-15,-48,-39,-48v-24,0,-40,18,-40,48v0,30,16,49,40,49v24,0,39,-19,39,-49","w":188,"k":{"\u0105":1,"\u00e3":1,"\/":2,"v":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":1,"\u00e1":1,"\u0103":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u0101":1,"\u00e5":1,"\u01fb":1,"\u00e6":1,"\u01fd":1}},"\u014e":{"d":"287,-132v0,78,-59,136,-135,136v-76,0,-132,-58,-132,-136v0,-78,58,-136,134,-136v76,0,133,58,133,136xm238,-132v0,-55,-35,-96,-85,-96v-50,0,-85,41,-85,96v0,55,35,96,85,96v50,0,85,-41,85,-96xm204,-338v0,27,-19,50,-51,50v-32,0,-51,-23,-51,-50r32,-2v0,16,7,25,19,25v13,0,20,-9,20,-25","w":306,"k":{"\u0105":7,"\u00e3":7,"\u0119":5,"\u0142":1,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":5,"\u015f":4,"\u0259":5,"\/":15,"\u0173":1,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":23,",":23,"\u2026":23,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":1,"\u00fa":1,"\u016d":1,"\u00fb":1,"\u00fc":1,"\u00f9":1,"\u0171":1,"\u016b":1,"\u016f":1,"b":1,"h":1,"k":1,"l":1,"\u0127":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u014f":{"d":"174,-77v0,44,-31,80,-80,80v-50,0,-81,-36,-81,-80v0,-44,31,-80,81,-80v49,0,80,36,80,80xm133,-77v0,-30,-15,-48,-39,-48v-24,0,-40,18,-40,48v0,30,16,49,40,49v24,0,39,-19,39,-49xm145,-225v0,27,-19,49,-51,49v-32,0,-51,-22,-51,-49r32,-3v0,16,7,25,19,25v13,0,20,-9,20,-25","w":188,"k":{"\u0105":1,"\u00e3":1,"\/":2,"v":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":1,"\u00e1":1,"\u0103":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u0101":1,"\u00e5":1,"\u01fb":1,"\u00e6":1,"\u01fd":1}},"\u00d4":{"d":"214,-290r-39,0r-23,-30r-23,30r-36,0r53,-64r16,0xm287,-132v0,78,-59,136,-135,136v-76,0,-132,-58,-132,-136v0,-78,58,-136,134,-136v76,0,133,58,133,136xm238,-132v0,-55,-35,-96,-85,-96v-50,0,-85,41,-85,96v0,55,35,96,85,96v50,0,85,-41,85,-96","w":306,"k":{"\u0105":7,"\u00e3":7,"\u0119":5,"\u0142":1,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":5,"\u015f":4,"\u0259":5,"\/":15,"\u0173":1,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":23,",":23,"\u2026":23,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":1,"\u00fa":1,"\u016d":1,"\u00fb":1,"\u00fc":1,"\u00f9":1,"\u0171":1,"\u016b":1,"\u016f":1,"b":1,"h":1,"k":1,"l":1,"\u0127":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u00f4":{"d":"155,-177r-39,0r-23,-31r-23,31r-37,0r54,-64r16,0xm174,-77v0,44,-31,80,-80,80v-50,0,-81,-36,-81,-80v0,-44,31,-80,81,-80v49,0,80,36,80,80xm133,-77v0,-30,-15,-48,-39,-48v-24,0,-40,18,-40,48v0,30,16,49,40,49v24,0,39,-19,39,-49","w":188,"k":{"\u0105":1,"\u00e3":1,"\/":2,"v":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":1,"\u00e1":1,"\u0103":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u0101":1,"\u00e5":1,"\u01fb":1,"\u00e6":1,"\u01fd":1}},"\u00d6":{"d":"208,-313v0,12,-10,23,-22,23v-13,0,-23,-11,-23,-23v0,-13,10,-23,23,-23v12,0,22,10,22,23xm143,-313v0,12,-10,23,-23,23v-12,0,-22,-11,-22,-23v0,-13,10,-23,22,-23v13,0,23,10,23,23xm287,-132v0,78,-59,136,-135,136v-76,0,-132,-58,-132,-136v0,-78,58,-136,134,-136v76,0,133,58,133,136xm238,-132v0,-55,-35,-96,-85,-96v-50,0,-85,41,-85,96v0,55,35,96,85,96v50,0,85,-41,85,-96","w":306,"k":{"\u0105":7,"\u00e3":7,"\u0119":5,"\u0142":1,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":5,"\u015f":4,"\u0259":5,"\/":15,"\u0173":1,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":23,",":23,"\u2026":23,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":1,"\u00fa":1,"\u016d":1,"\u00fb":1,"\u00fc":1,"\u00f9":1,"\u0171":1,"\u016b":1,"\u016f":1,"b":1,"h":1,"k":1,"l":1,"\u0127":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u00f6":{"d":"149,-201v0,12,-10,23,-22,23v-13,0,-23,-11,-23,-23v0,-13,10,-22,23,-22v12,0,22,9,22,22xm84,-201v0,12,-10,23,-23,23v-12,0,-22,-11,-22,-23v0,-13,10,-22,22,-22v13,0,23,9,23,22xm174,-77v0,44,-31,80,-80,80v-50,0,-81,-36,-81,-80v0,-44,31,-80,81,-80v49,0,80,36,80,80xm133,-77v0,-30,-15,-48,-39,-48v-24,0,-40,18,-40,48v0,30,16,49,40,49v24,0,39,-19,39,-49","w":188,"k":{"\u0105":1,"\u00e3":1,"\/":2,"v":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":1,"\u00e1":1,"\u0103":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u0101":1,"\u00e5":1,"\u01fb":1,"\u00e6":1,"\u01fd":1}},"\u00d2":{"d":"287,-132v0,78,-59,136,-135,136v-76,0,-132,-58,-132,-136v0,-78,58,-136,134,-136v76,0,133,58,133,136xm238,-132v0,-55,-35,-96,-85,-96v-50,0,-85,41,-85,96v0,55,35,96,85,96v50,0,85,-41,85,-96xm173,-304r-12,19r-73,-33r19,-34","w":306,"k":{"\u0105":7,"\u00e3":7,"\u0119":5,"\u0142":1,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":5,"\u015f":4,"\u0259":5,"\/":15,"\u0173":1,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":23,",":23,"\u2026":23,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":1,"\u00fa":1,"\u016d":1,"\u00fb":1,"\u00fc":1,"\u00f9":1,"\u0171":1,"\u016b":1,"\u016f":1,"b":1,"h":1,"k":1,"l":1,"\u0127":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u00f2":{"d":"174,-77v0,44,-31,80,-80,80v-50,0,-81,-36,-81,-80v0,-44,31,-80,81,-80v49,0,80,36,80,80xm133,-77v0,-30,-15,-48,-39,-48v-24,0,-40,18,-40,48v0,30,16,49,40,49v24,0,39,-19,39,-49xm114,-192r-11,20r-74,-33r19,-35","w":188,"k":{"\u0105":1,"\u00e3":1,"\/":2,"v":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":1,"\u00e1":1,"\u0103":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u0101":1,"\u00e5":1,"\u01fb":1,"\u00e6":1,"\u01fd":1}},"\u0150":{"d":"179,-343r-53,56r-15,-14r41,-65xm236,-339r-53,55r-15,-14r40,-65xm287,-132v0,78,-59,136,-135,136v-76,0,-132,-58,-132,-136v0,-78,58,-136,134,-136v76,0,133,58,133,136xm238,-132v0,-55,-35,-96,-85,-96v-50,0,-85,41,-85,96v0,55,35,96,85,96v50,0,85,-41,85,-96","w":306,"k":{"\u0105":7,"\u00e3":7,"\u0119":5,"\u0142":1,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":5,"\u015f":4,"\u0259":5,"\/":15,"\u0173":1,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":23,",":23,"\u2026":23,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":1,"\u00fa":1,"\u016d":1,"\u00fb":1,"\u00fc":1,"\u00f9":1,"\u0171":1,"\u016b":1,"\u016f":1,"b":1,"h":1,"k":1,"l":1,"\u0127":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u0151":{"d":"120,-231r-53,56r-15,-13r41,-66xm177,-227r-53,55r-15,-13r40,-65xm174,-77v0,44,-31,80,-80,80v-50,0,-81,-36,-81,-80v0,-44,31,-80,81,-80v49,0,80,36,80,80xm133,-77v0,-30,-15,-48,-39,-48v-24,0,-40,18,-40,48v0,30,16,49,40,49v24,0,39,-19,39,-49","w":188,"k":{"\u0105":1,"\u00e3":1,"\/":2,"v":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":1,"\u00e1":1,"\u0103":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u0101":1,"\u00e5":1,"\u01fb":1,"\u00e6":1,"\u01fd":1}},"\u014c":{"d":"205,-294r-103,0r0,-31r103,0r0,31xm287,-132v0,78,-59,136,-135,136v-76,0,-132,-58,-132,-136v0,-78,58,-136,134,-136v76,0,133,58,133,136xm238,-132v0,-55,-35,-96,-85,-96v-50,0,-85,41,-85,96v0,55,35,96,85,96v50,0,85,-41,85,-96","w":306,"k":{"\u0105":7,"\u00e3":7,"\u0119":5,"\u0142":1,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":5,"\u015f":4,"\u0259":5,"\/":15,"\u0173":1,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":23,",":23,"\u2026":23,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":1,"\u00fa":1,"\u016d":1,"\u00fb":1,"\u00fc":1,"\u00f9":1,"\u0171":1,"\u016b":1,"\u016f":1,"b":1,"h":1,"k":1,"l":1,"\u0127":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u014d":{"d":"146,-181r-104,0r0,-31r104,0r0,31xm174,-77v0,44,-31,80,-80,80v-50,0,-81,-36,-81,-80v0,-44,31,-80,81,-80v49,0,80,36,80,80xm133,-77v0,-30,-15,-48,-39,-48v-24,0,-40,18,-40,48v0,30,16,49,40,49v24,0,39,-19,39,-49","w":188,"k":{"\u0105":1,"\u00e3":1,"\/":2,"v":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":1,"\u00e1":1,"\u0103":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u0101":1,"\u00e5":1,"\u01fb":1,"\u00e6":1,"\u01fd":1}},"\u00d8":{"d":"261,-215v64,86,1,219,-109,219v-32,0,-62,-10,-84,-28r-26,26r-24,-25r27,-26v-62,-86,-1,-219,109,-219v32,0,62,11,84,29r26,-27r25,24xm153,-36v67,0,106,-84,73,-145r-126,126v14,12,32,19,53,19xm206,-209v-55,-46,-138,-2,-138,77v0,18,4,35,12,49","w":306,"k":{"\u0105":7,"\u00e3":7,"\u0119":5,"\u0142":1,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":5,"\u015f":4,"\u0259":5,"\/":15,"\u0173":1,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":23,",":23,"\u2026":23,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":1,"\u00fa":1,"\u016d":1,"\u00fb":1,"\u00fc":1,"\u00f9":1,"\u0171":1,"\u016b":1,"\u016f":1,"b":1,"h":1,"k":1,"l":1,"\u0127":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u00f8":{"d":"176,-142r-18,17v38,50,5,128,-64,128v-21,0,-38,-7,-52,-17v-5,4,-17,17,-17,17r-14,-14r17,-17v-36,-52,-4,-132,66,-129v21,0,38,7,51,18r17,-17xm57,-55r63,-60v-34,-31,-84,12,-63,60xm130,-98r-63,60v34,30,81,-10,63,-60","w":186,"k":{"\/":2,"\u00e3":1,"\u0105":1,"x":4,"v":2,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":1,"\u00e1":1,"\u0103":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u0101":1,"\u00e5":1,"\u01fb":1,"\u00e6":1,"\u01fd":1}},"\u01fe":{"d":"261,-215v64,86,1,219,-109,219v-32,0,-62,-10,-84,-28r-26,26r-24,-25r27,-26v-62,-86,-1,-219,109,-219v32,0,62,11,84,29r26,-27r25,24xm153,-36v67,0,106,-84,73,-145r-126,126v14,12,32,19,53,19xm206,-209v-55,-46,-138,-2,-138,77v0,18,4,35,12,49xm215,-317r-73,32r-11,-20r66,-48","w":306,"k":{"\u0105":7,"\u00e3":7,"\u0119":5,"\u0142":1,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":5,"\u015f":4,"\u0259":5,"\/":15,"\u0173":1,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":23,",":23,"\u2026":23,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":1,"\u00fa":1,"\u016d":1,"\u00fb":1,"\u00fc":1,"\u00f9":1,"\u0171":1,"\u016b":1,"\u016f":1,"b":1,"h":1,"k":1,"l":1,"\u0127":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u01ff":{"d":"176,-142r-18,17v38,50,5,128,-64,128v-21,0,-38,-7,-52,-17v-5,4,-17,17,-17,17r-14,-14r17,-17v-36,-52,-4,-132,66,-129v21,0,38,7,51,18r17,-17xm57,-55r63,-60v-34,-31,-84,12,-63,60xm130,-98r-63,60v34,30,81,-10,63,-60xm156,-204r-73,32r-11,-20r66,-48","w":188,"k":{"\/":2,"\u00e3":1,"\u0105":1,"x":4,"v":2,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":1,"\u00e1":1,"\u0103":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u0101":1,"\u00e5":1,"\u01fb":1,"\u00e6":1,"\u01fd":1}},"\u00d5":{"d":"287,-132v0,78,-59,136,-135,136v-76,0,-132,-58,-132,-136v0,-78,58,-136,134,-136v76,0,133,58,133,136xm238,-132v0,-55,-35,-96,-85,-96v-50,0,-85,41,-85,96v0,55,35,96,85,96v50,0,85,-41,85,-96xm94,-314v28,-49,79,16,106,-21r15,23v-28,48,-79,-14,-107,21","w":306,"k":{"\u0105":7,"\u00e3":7,"\u0119":5,"\u0142":1,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":5,"\u015f":4,"\u0259":5,"\/":15,"\u0173":1,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":23,",":23,"\u2026":23,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":1,"\u00fa":1,"\u016d":1,"\u00fb":1,"\u00fc":1,"\u00f9":1,"\u0171":1,"\u016b":1,"\u016f":1,"b":1,"h":1,"k":1,"l":1,"\u0127":1,"\u0137":1,"\u013a":1,"\u013e":1,"\u013c":1,"\u0140":1,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u00f5":{"d":"174,-77v0,44,-31,80,-80,80v-50,0,-81,-36,-81,-80v0,-44,31,-80,81,-80v49,0,80,36,80,80xm133,-77v0,-30,-15,-48,-39,-48v-24,0,-40,18,-40,48v0,30,16,49,40,49v24,0,39,-19,39,-49xm35,-201v20,-31,56,-18,82,-8v9,0,16,-5,24,-14r15,24v-28,49,-79,-16,-107,21","w":188,"k":{"\/":2,"\u00e3":1,"\u0105":1,"x":4,"v":2,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":1,"\u00e1":1,"\u0103":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u0101":1,"\u00e5":1,"\u01fb":1,"\u00e6":1,"\u01fd":1}},"\u0152":{"d":"363,0r-189,2v-100,0,-154,-60,-154,-131v0,-91,81,-135,200,-135r143,0r0,41r-115,0r0,69r104,0r0,40r-104,0r0,73r115,0r0,41xm203,-40r0,-184v-77,-14,-135,24,-135,95v0,66,59,102,135,89","w":387,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-4,"t":11,"\u0165":11,"\u0163":5,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":11,"n":11,"\u0144":11,"\u0148":11,"\u0146":11,"\u00f1":11,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u0153":{"d":"212,-157v52,1,75,41,68,93r-107,0v0,38,56,41,92,27r5,31v-44,16,-98,11,-118,-20v-37,56,-147,21,-139,-51v-8,-72,102,-109,140,-50v12,-18,32,-30,59,-30xm244,-90v-1,-48,-68,-44,-70,0r70,0xm133,-77v0,-30,-16,-48,-40,-48v-24,0,-39,18,-39,48v0,30,15,49,39,49v24,0,40,-19,40,-49","w":289,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u0154":{"d":"174,-317r-72,32r-11,-20r66,-48xm224,0r-52,0r-58,-95r-40,0r0,95r-45,0r0,-261v21,-3,43,-5,70,-5v124,0,139,122,56,160xm159,-180v0,-37,-43,-52,-85,-43r0,90v45,6,85,-8,85,-47","w":227,"k":{"Q":4,"\u0105":2,"\u00e3":2,"\u0119":5,"\u00f8":5,"\u01ff":5,"\u00f5":5,"q":5,"\u0259":5,"\/":-5,"\u0173":2,"V":4,"}":7,"]":7,")":7,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"\u1ef2":11,"-":18,"\u2013":18,"\u2014":18,"\u201d":7,"\u2019":7,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":5,"\u00f3":5,"\u014f":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u0151":5,"\u014d":5,"\u0153":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"W":2,"\u1e82":2,"\u0174":2,"\u1e84":2,"\u1e80":2,"T":5,"\u0164":5,"\u0162":5,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"\u0155":{"d":"127,-204r-72,32r-11,-20r66,-48xm115,-116v-24,-3,-44,2,-53,15r0,101r-41,0r0,-154r39,0r0,25v14,-19,31,-28,55,-28r0,41","w":120,"k":{"\/":8,"&":7,"\u0259":4,"\u1ef3":-4,"\u00ff":-4,"\u00f5":4,"\u01ff":4,"\u00f8":4,"\u0119":4,"\u00e3":4,"\u0105":4,"x":-4,"v":-4,"q":4,"i":-2,"-":7,"\u2013":7,"\u2014":7,".":22,",":22,"\u2026":22,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"w":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"y":-4,"\u00fd":-4,"\u0177":-4}},"\u0158":{"d":"174,-351r-54,64r-16,0r-52,-64r38,0r24,30r23,-30r37,0xm224,0r-52,0r-58,-95r-40,0r0,95r-45,0r0,-261v21,-3,43,-5,70,-5v124,0,139,122,56,160xm159,-180v0,-37,-43,-52,-85,-43r0,90v45,6,85,-8,85,-47","w":227,"k":{"Q":4,"\u0105":2,"\u00e3":2,"\u0119":5,"\u00f8":5,"\u01ff":5,"\u00f5":5,"q":5,"\u0259":5,"\/":-5,"\u0173":2,"V":4,"}":7,"]":7,")":7,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"\u1ef2":11,"-":18,"\u2013":18,"\u2014":18,"\u201d":7,"\u2019":7,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":5,"\u00f3":5,"\u014f":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u0151":5,"\u014d":5,"\u0153":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"W":2,"\u1e82":2,"\u0174":2,"\u1e84":2,"\u1e80":2,"T":5,"\u0164":5,"\u0162":5,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"\u0159":{"d":"127,-239r-54,64r-16,0r-52,-64r39,0r23,31r23,-31r37,0xm115,-116v-24,-3,-44,2,-53,15r0,101r-41,0r0,-154r39,0r0,25v14,-19,31,-28,55,-28r0,41","w":120,"k":{"\/":8,"&":7,"\u0259":4,"\u1ef3":-4,"\u00ff":-4,"\u00f5":4,"\u01ff":4,"\u00f8":4,"\u0119":4,"\u00e3":4,"\u0105":4,"x":-4,"v":-4,"q":4,"-":7,"\u2013":7,"\u2014":7,".":22,",":22,"\u2026":22,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"w":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"y":-4,"\u00fd":-4,"\u0177":-4}},"\u0156":{"d":"136,50v0,22,-16,49,-43,62r-4,-7v14,-12,20,-24,24,-37v-30,0,-29,-46,-1,-46v16,0,24,13,24,28xm224,0r-52,0r-58,-95r-40,0r0,95r-45,0r0,-261v21,-3,43,-5,70,-5v124,0,139,122,56,160xm159,-180v0,-37,-43,-52,-85,-43r0,90v45,6,85,-8,85,-47","w":227,"k":{"Q":4,"\u0105":2,"\u00e3":2,"\u0119":5,"\u00f8":5,"\u01ff":5,"\u00f5":5,"q":5,"\u0259":5,"\/":-5,"\u0173":2,"V":4,"}":7,"]":7,")":7,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"\u1ef2":11,"-":18,"\u2013":18,"\u2014":18,"\u201d":7,"\u2019":7,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":5,"\u00f3":5,"\u014f":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u0151":5,"\u014d":5,"\u0153":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"W":2,"\u1e82":2,"\u0174":2,"\u1e84":2,"\u1e80":2,"T":5,"\u0164":5,"\u0162":5,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"\u0157":{"d":"66,54v0,22,-17,49,-44,62r-4,-7v14,-12,21,-24,25,-37v-32,1,-30,-46,-2,-46v16,0,25,13,25,28xm115,-116v-24,-3,-44,2,-53,15r0,101r-41,0r0,-154r39,0r0,25v14,-19,31,-28,55,-28r0,41","w":120,"k":{"\/":8,"&":7,"\u0259":4,"\u1ef3":-4,"\u00ff":-4,"\u00f5":4,"\u01ff":4,"\u00f8":4,"\u0119":4,"\u00e3":4,"\u0105":4,"x":-4,"v":-4,"q":4,"-":7,"\u2013":7,"\u2014":7,".":22,",":22,"\u2026":22,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"w":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"y":-4,"\u00fd":-4,"\u0177":-4}},"\u015a":{"d":"161,-317r-72,32r-11,-20r66,-48xm179,-75v0,42,-33,79,-87,79v-30,0,-60,-11,-83,-26r15,-40v30,28,107,40,109,-10v0,-18,-7,-30,-49,-48v-46,-19,-63,-42,-63,-74v0,-38,32,-74,87,-74v26,0,51,9,66,19r-15,39v-24,-23,-95,-26,-93,15v0,18,13,28,46,42v52,23,67,43,67,78","w":193,"k":{"Q":4,"x":2,"J":4,"}":-7,"]":-7,")":-7,"Y":5,"\u00dd":5,"\u0176":5,"\u0178":5,"\u1ef2":5,"-":-11,"\u2013":-11,"\u2014":-11,".":11,",":11,"\u2026":11,"\u00c6":4,"\u01fc":4,"A":4,"\u00c1":4,"\u0102":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u0100":4,"\u0104":4,"\u00c5":4,"\u01fa":4,"\u00c3":4,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"\u015b":{"d":"135,-204r-73,32r-11,-20r66,-48xm129,-46v1,54,-86,61,-121,29r16,-29v14,11,31,18,44,18v15,0,22,-6,22,-16v0,-24,-73,-15,-73,-64v0,-49,74,-61,109,-34r-12,30v-17,-13,-60,-24,-60,1v0,23,75,14,75,65","w":138,"k":{"-":4,"\u2013":4,"\u2014":4,".":7,",":7,"\u2026":7}},"\u0160":{"d":"161,-351r-54,64r-16,0r-52,-64r38,0r24,30r23,-30r37,0xm179,-75v0,42,-33,79,-87,79v-30,0,-60,-11,-83,-26r15,-40v30,28,107,40,109,-10v0,-18,-7,-30,-49,-48v-46,-19,-63,-42,-63,-74v0,-38,32,-74,87,-74v26,0,51,9,66,19r-15,39v-24,-23,-95,-26,-93,15v0,18,13,28,46,42v52,23,67,43,67,78","w":193,"k":{"Q":4,"x":2,"J":4,"}":-7,"]":-7,")":-7,"Y":5,"\u00dd":5,"\u0176":5,"\u0178":5,"\u1ef2":5,"-":-11,"\u2013":-11,"\u2014":-11,".":11,",":11,"\u2026":11,"\u00c6":4,"\u01fc":4,"A":4,"\u00c1":4,"\u0102":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u0100":4,"\u0104":4,"\u00c5":4,"\u01fa":4,"\u00c3":4,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"\u0161":{"d":"134,-239r-54,64r-16,0r-51,-64r38,0r23,31r23,-31r37,0xm129,-46v1,54,-86,61,-121,29r16,-29v14,11,31,18,44,18v15,0,22,-6,22,-16v0,-24,-73,-15,-73,-64v0,-49,74,-61,109,-34r-12,30v-17,-13,-60,-24,-60,1v0,23,75,14,75,65","w":138,"k":{"-":4,"\u2013":4,"\u2014":4,".":7,",":7,"\u2026":7}},"\u015e":{"d":"135,53v2,38,-55,47,-85,23r10,-22v13,8,24,12,35,12v8,0,13,-4,13,-12v0,-8,-9,-16,-35,-17v-2,-11,5,-22,7,-33v-26,-2,-51,-13,-71,-26r15,-40v30,28,107,40,109,-10v0,-18,-7,-30,-49,-48v-46,-19,-63,-42,-63,-74v0,-38,32,-74,87,-74v26,0,51,9,66,19r-15,39v-24,-23,-95,-26,-93,15v0,18,13,28,46,42v52,23,67,43,67,78v0,41,-30,76,-80,79r-3,13v29,7,39,20,39,36","w":193,"k":{"Q":4,"x":2,"J":4,"}":-7,"]":-7,")":-7,"Y":5,"\u00dd":5,"\u0176":5,"\u0178":5,"\u1ef2":5,"-":-11,"\u2013":-11,"\u2014":-11,".":11,",":11,"\u2026":11,"\u00c6":4,"\u01fc":4,"A":4,"\u00c1":4,"\u0102":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u0100":4,"\u0104":4,"\u00c5":4,"\u01fa":4,"\u00c3":4,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"\u015f":{"d":"108,53v2,38,-55,48,-84,23r10,-22v13,8,23,12,34,12v8,0,13,-4,13,-12v0,-8,-8,-16,-34,-17v-4,-10,6,-24,7,-35v-17,-3,-33,-9,-46,-19r16,-29v14,11,31,18,44,18v15,0,22,-6,22,-16v0,-24,-73,-15,-73,-64v0,-49,74,-61,109,-34r-12,30v-17,-13,-60,-24,-60,1v0,23,75,14,75,65v0,27,-24,48,-56,49r-3,14v29,7,38,20,38,36","w":138,"k":{"-":4,"\u2013":4,"\u2014":4,".":7,",":7,"\u2026":7}},"\u0218":{"d":"118,54v0,22,-16,49,-43,62r-5,-7v14,-12,21,-24,25,-37v-32,1,-30,-46,-2,-46v16,0,25,13,25,28xm179,-75v0,42,-33,79,-87,79v-30,0,-60,-11,-83,-26r15,-40v30,28,107,40,109,-10v0,-18,-7,-30,-49,-48v-46,-19,-63,-42,-63,-74v0,-38,32,-74,87,-74v26,0,51,9,66,19r-15,39v-24,-23,-95,-26,-93,15v0,18,13,28,46,42v52,23,67,43,67,78","w":193,"k":{"Q":4,"x":2,"J":4,"}":-7,"]":-7,")":-7,"Y":5,"\u00dd":5,"\u0176":5,"\u0178":5,"\u1ef2":5,"-":-11,"\u2013":-11,"\u2014":-11,".":11,",":11,"\u2026":11,"\u00c6":4,"\u01fc":4,"A":4,"\u00c1":4,"\u0102":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u0100":4,"\u0104":4,"\u00c5":4,"\u01fa":4,"\u00c3":4,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"\u0219":{"d":"94,54v0,22,-17,49,-44,62r-4,-7v14,-12,21,-24,25,-37v-32,1,-30,-46,-2,-46v16,0,25,13,25,28xm129,-46v1,54,-86,61,-121,29r16,-29v14,11,31,18,44,18v15,0,22,-6,22,-16v0,-24,-73,-15,-73,-64v0,-49,74,-61,109,-34r-12,30v-17,-13,-60,-24,-60,1v0,23,75,14,75,65","w":138,"k":{"-":4,"\u2013":4,"\u2014":4,".":7,",":7,"\u2026":7}},"\u0164":{"d":"176,-351r-54,64r-16,0r-52,-64r39,0r23,30r23,-30r37,0xm221,-223r-83,0r0,223r-45,0r0,-223r-84,0r0,-41r212,0r0,41","w":230,"k":{"\u0177":54,"\u016f":54,"\u016b":54,"\u0171":54,"\u00f9":54,"\u00fc":54,"\u00fb":54,"\u016d":54,"\u014d":61,"\u0151":61,"\u00f2":61,"\u00f6":61,"\u00f4":61,"\u014f":61,"\u0113":61,"\u00e8":61,"\u0117":61,"\u00eb":61,"\u00ea":61,"\u011b":61,"\u0115":61,"\u00e5":61,"\u0101":61,"\u00e0":61,"\u00e4":61,"\u00e2":61,"\u0103":61,"Q":15,"\u0105":61,"\u00e3":36,"\u0119":61,"i":22,"\u00ed":22,"\u012d":-2,"\u00ee":5,"\u00ef":-2,"\u00ec":-16,"\u012b":2,"\u012f":22,"j":22,"\u00f8":61,"\u01ff":61,"\u00f5":40,"p":54,"q":61,"r":54,"\u0155":54,"\u0159":54,"\u0157":54,"\u015f":61,"\u0259":61,"\/":36,"t":54,"\u0165":54,"\u0163":27,"\u0173":54,"v":54,"x":58,"\u00ff":34,"\u1ef3":23,"J":29,"?":-7,"}":-14,"]":-14,")":-14,"&":40,"\u0131":65,"-":47,"\u2013":47,"\u2014":47,".":36,",":36,"\u2026":36,"\u00c6":23,"\u01fc":23,"A":23,"\u00c1":23,"\u0102":23,"\u00c2":23,"\u00c4":23,"\u00c0":23,"\u0100":23,"\u0104":23,"\u00c5":23,"\u01fa":23,"\u00c3":23,":":40,";":40,"\u00ab":35,"\u2039":35,"\u201d":-5,"\u2019":-5,"a":61,"\u00e1":61,"\u01fb":61,"\u00e6":61,"\u01fd":61,"c":61,"\u0107":61,"\u010d":61,"\u00e7":61,"\u010b":61,"d":58,"\u010f":58,"\u0111":58,"e":61,"\u00e9":61,"f":14,"\ufb03":14,"\ufb04":14,"\ufb00":14,"\ufb01":14,"\ufb02":14,"g":61,"\u011f":61,"\u0123":61,"\u0121":61,"m":54,"n":54,"\u0144":54,"\u0148":54,"\u0146":54,"\u00f1":54,"o":61,"\u00f3":61,"\u0153":61,"s":61,"\u015b":61,"\u0161":61,"\u0219":61,"u":54,"\u00fa":54,"w":54,"\u1e83":54,"\u0175":54,"\u1e85":54,"\u1e81":54,"y":54,"\u00fd":54,"z":58,"\u017a":58,"\u017e":58,"\u017c":58,"\u00bb":35,"\u203a":35,"S":5,"\u015a":5,"\u0160":5,"\u015e":5,"\u0218":5,"C":15,"\u0106":15,"\u010c":15,"\u00c7":15,"\u010a":15,"G":15,"\u011e":15,"\u0122":15,"\u0120":15,"O":15,"\u00d3":15,"\u014e":15,"\u00d4":15,"\u00d6":15,"\u00d2":15,"\u0150":15,"\u014c":15,"\u00d8":15,"\u01fe":15,"\u00d5":15,"\u0152":15}},"\u0165":{"d":"105,-251r33,7v0,32,-14,54,-35,69r-18,-12v13,-15,19,-35,20,-64xm116,-121r-43,0v5,34,-19,102,31,88r8,32v-44,10,-80,5,-80,-51r0,-69r-29,0v4,-17,21,-21,29,-34r0,-25r41,-26r0,52r43,0r0,33","w":122,"k":{"}":-7,"]":-7,")":-11,"\/":2,"\u1ef3":-4,"\u00ff":-4,"\u0142":-4,"v":-4,"j":-7,"-":7,"\u2013":7,"\u2014":7,"\u201d":-16,"\u2019":-16,"w":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"y":-4,"\u00fd":-4,"\u0177":-4,"z":-4,"\u017a":-4,"\u017e":-4,"\u017c":-4,"b":-11,"h":-11,"k":-11,"l":-11,"\u0127":-11,"\u0137":-11,"\u013a":-11,"\u013e":-11,"\u013c":-11,"\u0140":-11,"\u201c":-16,"\u2018":-16,"\u00ae":-18,"\u2122":-18,"\u2120":-18}},"\u0162":{"d":"139,54v0,22,-17,49,-44,62r-4,-7v14,-12,21,-24,25,-37v-32,1,-30,-46,-2,-46v16,0,25,13,25,28xm221,-223r-83,0r0,223r-45,0r0,-223r-84,0r0,-41r212,0r0,41","w":230,"k":{"\u0177":54,"\u016f":54,"\u016b":54,"\u0171":54,"\u00f9":54,"\u00fc":54,"\u00fb":54,"\u016d":54,"\u014d":61,"\u0151":61,"\u00f2":61,"\u00f6":61,"\u00f4":61,"\u014f":61,"\u0113":61,"\u00e8":61,"\u0117":61,"\u00eb":61,"\u00ea":61,"\u011b":61,"\u0115":61,"\u00e5":61,"\u0101":61,"\u00e0":61,"\u00e4":61,"\u00e2":61,"\u0103":61,"Q":15,"\u0105":61,"\u00e3":36,"\u0119":61,"i":22,"\u00ed":22,"\u012d":-2,"\u00ee":5,"\u00ef":-2,"\u00ec":-16,"\u012b":2,"\u012f":22,"j":22,"\u00f8":61,"\u01ff":61,"\u00f5":40,"p":54,"q":61,"r":54,"\u0155":54,"\u0159":54,"\u0157":54,"\u015f":61,"\u0259":61,"\/":36,"t":54,"\u0165":54,"\u0163":27,"\u0173":54,"v":54,"x":58,"\u00ff":34,"\u1ef3":23,"J":29,"?":-7,"}":-14,"]":-14,")":-14,"&":40,"\u0131":65,"-":47,"\u2013":47,"\u2014":47,".":36,",":36,"\u2026":36,"\u00c6":23,"\u01fc":23,"A":23,"\u00c1":23,"\u0102":23,"\u00c2":23,"\u00c4":23,"\u00c0":23,"\u0100":23,"\u0104":23,"\u00c5":23,"\u01fa":23,"\u00c3":23,":":40,";":40,"\u00ab":35,"\u2039":35,"\u201d":-5,"\u2019":-5,"a":61,"\u00e1":61,"\u01fb":61,"\u00e6":61,"\u01fd":61,"c":61,"\u0107":61,"\u010d":61,"\u00e7":61,"\u010b":61,"d":58,"\u010f":58,"\u0111":58,"e":61,"\u00e9":61,"f":14,"\ufb03":14,"\ufb04":14,"\ufb00":14,"\ufb01":14,"\ufb02":14,"g":61,"\u011f":61,"\u0123":61,"\u0121":61,"m":54,"n":54,"\u0144":54,"\u0148":54,"\u0146":54,"\u00f1":54,"o":61,"\u00f3":61,"\u0153":61,"s":61,"\u015b":61,"\u0161":61,"\u0219":61,"u":54,"\u00fa":54,"w":54,"\u1e83":54,"\u0175":54,"\u1e85":54,"\u1e81":54,"y":54,"\u00fd":54,"z":58,"\u017a":58,"\u017e":58,"\u017c":58,"\u00bb":35,"\u203a":35,"S":5,"\u015a":5,"\u0160":5,"\u015e":5,"\u0218":5,"C":15,"\u0106":15,"\u010c":15,"\u00c7":15,"\u010a":15,"G":15,"\u011e":15,"\u0122":15,"\u0120":15,"O":15,"\u00d3":15,"\u014e":15,"\u00d4":15,"\u00d6":15,"\u00d2":15,"\u0150":15,"\u014c":15,"\u00d8":15,"\u01fe":15,"\u00d5":15,"\u0152":15}},"\u0163":{"d":"92,54v0,22,-16,49,-43,62r-5,-7v14,-12,21,-24,25,-37v-32,1,-30,-46,-2,-46v16,0,25,13,25,28xm116,-121r-43,0v5,34,-19,102,31,88r8,32v-44,10,-80,5,-80,-51r0,-69r-29,0v4,-17,21,-21,29,-34r0,-25r41,-26r0,52r43,0r0,33","w":122,"k":{"\/":2,"\u1ef3":-4,"\u00ff":-4,"v":-4,"-":7,"\u2013":7,"\u2014":7,"w":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"y":-4,"\u00fd":-4,"\u0177":-4,"z":-4,"\u017a":-4,"\u017e":-4,"\u017c":-4}},"\u00de":{"d":"205,-133v0,62,-53,101,-131,91r0,42r-45,0r0,-264r45,0r0,42v78,-7,131,33,131,89xm158,-132v4,-36,-40,-57,-84,-47r0,97v48,7,88,-11,84,-50","w":215},"\u00fe":{"d":"178,-78v0,59,-62,101,-116,71r0,85r-41,0r0,-342r40,0r0,124v45,-40,117,-5,117,62xm138,-78v0,-46,-53,-60,-77,-30r0,64v26,27,77,14,77,-34","w":192},"\u00da":{"d":"193,-314r-73,32r-10,-20r65,-48xm237,-101v0,67,-41,105,-106,105v-66,0,-105,-37,-105,-105r0,-163r45,0r0,160v0,45,22,67,60,67v38,0,61,-22,61,-67r0,-160r45,0r0,163","w":262,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":12,"t":2,"\u0165":2,"\u0163":1,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00fa":{"d":"153,-204r-72,32r-11,-20r66,-48xm165,0r-39,0r0,-24v-29,39,-107,36,-107,-25r0,-105r41,0r0,95v1,41,46,31,64,8r0,-103r41,0r0,154","w":183},"\u016c":{"d":"237,-101v0,67,-41,105,-106,105v-66,0,-105,-37,-105,-105r0,-163r45,0r0,160v0,45,22,67,60,67v38,0,61,-22,61,-67r0,-160r45,0r0,163xm183,-335v0,27,-20,50,-52,50v-32,0,-51,-23,-51,-50r32,-3v0,16,7,25,19,25v13,0,20,-9,20,-25","w":262,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":12,"t":2,"\u0165":2,"\u0163":1,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u016d":{"d":"165,0r-39,0r0,-24v-29,39,-107,36,-107,-25r0,-105r41,0r0,95v1,41,46,31,64,8r0,-103r41,0r0,154xm143,-225v0,27,-19,49,-51,49v-32,0,-51,-22,-51,-49r31,-3v0,16,8,25,20,25v13,0,20,-9,20,-25","w":183},"\u00db":{"d":"192,-287r-38,0r-24,-31r-23,31r-36,0r53,-64r16,0xm237,-101v0,67,-41,105,-106,105v-66,0,-105,-37,-105,-105r0,-163r45,0r0,160v0,45,22,67,60,67v38,0,61,-22,61,-67r0,-160r45,0r0,163","w":262,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":12,"t":2,"\u0165":2,"\u0163":1,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00fb":{"d":"153,-177r-39,0r-23,-31r-23,31r-37,0r54,-64r16,0xm165,0r-39,0r0,-24v-29,39,-107,36,-107,-25r0,-105r41,0r0,95v1,41,46,31,64,8r0,-103r41,0r0,154","w":183},"\u00dc":{"d":"187,-310v0,12,-10,22,-22,22v-13,0,-23,-10,-23,-22v0,-13,10,-23,23,-23v12,0,22,10,22,23xm121,-310v0,12,-9,22,-22,22v-12,0,-23,-10,-23,-22v0,-13,11,-23,23,-23v13,0,22,10,22,23xm237,-101v0,67,-41,105,-106,105v-66,0,-105,-37,-105,-105r0,-163r45,0r0,160v0,45,22,67,60,67v38,0,61,-22,61,-67r0,-160r45,0r0,163","w":262,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":12,"t":2,"\u0165":2,"\u0163":1,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00fc":{"d":"147,-201v0,12,-10,23,-22,23v-13,0,-23,-11,-23,-23v0,-13,10,-22,23,-22v12,0,22,9,22,22xm82,-201v0,12,-10,23,-23,23v-12,0,-23,-11,-23,-23v0,-13,11,-22,23,-22v13,0,23,9,23,22xm165,0r-39,0r0,-24v-29,39,-107,36,-107,-25r0,-105r41,0r0,95v1,41,46,31,64,8r0,-103r41,0r0,154","w":183},"\u00d9":{"d":"237,-101v0,67,-41,105,-106,105v-66,0,-105,-37,-105,-105r0,-163r45,0r0,160v0,45,22,67,60,67v38,0,61,-22,61,-67r0,-160r45,0r0,163xm152,-301r-12,19r-74,-33r19,-35","w":262,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":12,"t":2,"\u0165":2,"\u0163":1,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00f9":{"d":"165,0r-39,0r0,-24v-29,39,-107,36,-107,-25r0,-105r41,0r0,95v1,41,46,31,64,8r0,-103r41,0r0,154xm112,-192r-12,20r-73,-33r19,-35","w":183},"\u0170":{"d":"237,-101v0,67,-41,105,-106,105v-66,0,-105,-37,-105,-105r0,-163r45,0r0,160v0,45,22,67,60,67v38,0,61,-22,61,-67r0,-160r45,0r0,163xm157,-341r-52,56r-15,-13r40,-66xm214,-337r-53,55r-15,-13r41,-65","w":262,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":12,"t":2,"\u0165":2,"\u0163":1,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u0171":{"d":"165,0r-39,0r0,-24v-29,39,-107,36,-107,-25r0,-105r41,0r0,95v1,41,46,31,64,8r0,-103r41,0r0,154xm118,-231r-52,56r-16,-13r41,-66xm175,-227r-53,55r-15,-13r41,-65","w":183},"\u016a":{"d":"237,-101v0,67,-41,105,-106,105v-66,0,-105,-37,-105,-105r0,-163r45,0r0,160v0,45,22,67,60,67v38,0,61,-22,61,-67r0,-160r45,0r0,163xm183,-291r-103,0r0,-31r103,0r0,31","w":262,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":12,"t":2,"\u0165":2,"\u0163":1,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u016b":{"d":"165,0r-39,0r0,-24v-29,39,-107,36,-107,-25r0,-105r41,0r0,95v1,41,46,31,64,8r0,-103r41,0r0,154xm144,-181r-104,0r0,-31r104,0r0,31","w":183},"\u0172":{"d":"237,-101v0,61,-34,98,-89,104v-13,16,-20,28,-20,39v1,17,20,16,29,4r11,16v-15,25,-71,25,-69,-14v0,-15,8,-27,22,-44v-60,-3,-95,-40,-95,-105r0,-163r45,0r0,160v0,45,22,67,60,67v38,0,61,-22,61,-67r0,-160r45,0r0,163","w":262,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":12,"t":2,"\u0165":2,"\u0163":1,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u0173":{"d":"165,0r-14,0v-14,17,-21,29,-21,40v1,17,20,16,29,4r12,16v-16,25,-72,25,-70,-14v0,-16,9,-28,25,-46r0,-24v-29,39,-107,36,-107,-25r0,-105r41,0r0,95v1,41,46,31,64,8r0,-103r41,0r0,154","w":183,"k":{"j":-9}},"\u016e":{"d":"174,-326v0,22,-17,41,-43,41v-26,0,-42,-19,-42,-41v0,-22,16,-41,42,-41v26,0,43,19,43,41xm149,-326v0,-12,-8,-21,-18,-21v-10,0,-18,9,-18,21v0,12,8,20,18,20v10,0,18,-8,18,-20xm237,-101v0,67,-41,105,-106,105v-66,0,-105,-37,-105,-105r0,-163r45,0r0,160v0,45,22,67,60,67v38,0,61,-22,61,-67r0,-160r45,0r0,163","w":262,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":12,"t":2,"\u0165":2,"\u0163":1,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u016f":{"d":"135,-216v0,22,-17,41,-43,41v-26,0,-42,-19,-42,-41v0,-22,16,-41,42,-41v26,0,43,19,43,41xm110,-216v0,-12,-8,-21,-18,-21v-10,0,-18,9,-18,21v0,12,8,20,18,20v10,0,18,-8,18,-20xm165,0r-39,0r0,-24v-29,39,-107,36,-107,-25r0,-105r41,0r0,95v1,41,46,31,64,8r0,-103r41,0r0,154","w":183},"\u1e82":{"d":"236,-317r-73,32r-10,-20r65,-48xm347,-264r-83,268r-8,1r-82,-184r-81,184r-7,-1r-84,-268r49,0r48,166r73,-168r5,0r74,167r47,-165r49,0","w":348,"k":{"\u00e0":23,"Q":7,"\u0105":23,"\u00e3":23,"\u0119":25,"i":7,"\u00ed":7,"\u012d":-5,"\u00ee":-2,"\u00ef":-4,"\u00ec":-14,"\u012b":-2,"\u012f":7,"j":7,"\u00f8":25,"\u01ff":25,"\u00f5":25,"p":18,"q":25,"r":18,"\u0155":18,"\u0159":18,"\u0157":18,"\u015f":23,"\u0259":25,"\/":18,"t":7,"\u0165":7,"\u0163":4,"\u0173":18,"v":7,"x":11,"\u00ff":7,"\u1ef3":7,"J":22,"?":-7,"}":-14,"]":-14,")":-14,"&":11,"-":14,"\u2013":14,"\u2014":14,".":32,",":32,"\u2026":32,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,":":14,";":14,"\u00ab":16,"\u2039":16,"\u201d":-7,"\u2019":-7,"a":23,"\u00e1":23,"\u0103":23,"\u00e2":23,"\u00e4":23,"\u0101":23,"\u00e5":23,"\u01fb":23,"\u00e6":23,"\u01fd":23,"c":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"d":25,"\u010f":25,"\u0111":25,"e":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":25,"\u011f":25,"\u0123":25,"\u0121":25,"m":18,"n":18,"\u0144":18,"\u0148":18,"\u0146":18,"\u00f1":18,"o":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u0153":25,"s":23,"\u015b":23,"\u0161":23,"\u0219":23,"u":18,"\u00fa":18,"\u016d":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,"\u0171":18,"\u016b":18,"\u016f":18,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":11,"\u017a":11,"\u017e":11,"\u017c":11,"\u00bb":16,"\u203a":16,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u1e83":{"d":"176,-204r-73,32r-10,-20r65,-48xm229,-154r-59,158r-8,0r-47,-94r-47,94r-8,0r-59,-158r45,0r26,87r39,-87r7,0r41,87r25,-87r45,0","w":228,"k":{"\u0105":4,"\u00e3":4,"\/":5,"?":7,".":21,",":21,"\u2026":21,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4}},"\u0174":{"d":"235,-290r-38,0r-24,-30r-23,30r-36,0r53,-64r16,0xm347,-264r-83,268r-8,1r-82,-184r-81,184r-7,-1r-84,-268r49,0r48,166r73,-168r5,0r74,167r47,-165r49,0","w":348,"k":{"\u00e0":23,"Q":7,"\u0105":23,"\u00e3":23,"\u0119":25,"i":7,"\u00ed":7,"\u012d":-5,"\u00ee":-2,"\u00ef":-4,"\u00ec":-14,"\u012b":-2,"\u012f":7,"j":7,"\u00f8":25,"\u01ff":25,"\u00f5":25,"p":18,"q":25,"r":18,"\u0155":18,"\u0159":18,"\u0157":18,"\u015f":23,"\u0259":25,"\/":18,"t":7,"\u0165":7,"\u0163":4,"\u0173":18,"v":7,"x":11,"\u00ff":7,"\u1ef3":7,"J":22,"?":-7,"}":-14,"]":-14,")":-14,"&":11,"-":14,"\u2013":14,"\u2014":14,".":32,",":32,"\u2026":32,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,":":14,";":14,"\u00ab":16,"\u2039":16,"\u201d":-7,"\u2019":-7,"a":23,"\u00e1":23,"\u0103":23,"\u00e2":23,"\u00e4":23,"\u0101":23,"\u00e5":23,"\u01fb":23,"\u00e6":23,"\u01fd":23,"c":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"d":25,"\u010f":25,"\u0111":25,"e":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":25,"\u011f":25,"\u0123":25,"\u0121":25,"m":18,"n":18,"\u0144":18,"\u0148":18,"\u0146":18,"\u00f1":18,"o":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u0153":25,"s":23,"\u015b":23,"\u0161":23,"\u0219":23,"u":18,"\u00fa":18,"\u016d":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,"\u0171":18,"\u016b":18,"\u016f":18,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":11,"\u017a":11,"\u017e":11,"\u017c":11,"\u00bb":16,"\u203a":16,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u0175":{"d":"175,-177r-38,0r-24,-31r-23,31r-36,0r53,-64r16,0xm229,-154r-59,158r-8,0r-47,-94r-47,94r-8,0r-59,-158r45,0r26,87r39,-87r7,0r41,87r25,-87r45,0","w":228,"k":{"\u0105":4,"\u00e3":4,"\/":5,"?":7,".":21,",":21,"\u2026":21,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4}},"\u1e84":{"d":"230,-313v0,12,-11,23,-23,23v-13,0,-22,-11,-22,-23v0,-13,9,-23,22,-23v12,0,23,10,23,23xm164,-313v0,12,-10,23,-23,23v-12,0,-22,-11,-22,-23v0,-13,10,-23,22,-23v13,0,23,10,23,23xm347,-264r-83,268r-8,1r-82,-184r-81,184r-7,-1r-84,-268r49,0r48,166r73,-168r5,0r74,167r47,-165r49,0","w":348,"k":{"\u00e0":23,"Q":7,"\u0105":23,"\u00e3":23,"\u0119":25,"i":7,"\u00ed":7,"\u012d":-5,"\u00ee":-2,"\u00ef":-4,"\u00ec":-14,"\u012b":-2,"\u012f":7,"j":7,"\u00f8":25,"\u01ff":25,"\u00f5":25,"p":18,"q":25,"r":18,"\u0155":18,"\u0159":18,"\u0157":18,"\u015f":23,"\u0259":25,"\/":18,"t":7,"\u0165":7,"\u0163":4,"\u0173":18,"v":7,"x":11,"\u00ff":7,"\u1ef3":7,"J":22,"?":-7,"}":-14,"]":-14,")":-14,"&":11,"-":14,"\u2013":14,"\u2014":14,".":32,",":32,"\u2026":32,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,":":14,";":14,"\u00ab":16,"\u2039":16,"\u201d":-7,"\u2019":-7,"a":23,"\u00e1":23,"\u0103":23,"\u00e2":23,"\u00e4":23,"\u0101":23,"\u00e5":23,"\u01fb":23,"\u00e6":23,"\u01fd":23,"c":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"d":25,"\u010f":25,"\u0111":25,"e":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":25,"\u011f":25,"\u0123":25,"\u0121":25,"m":18,"n":18,"\u0144":18,"\u0148":18,"\u0146":18,"\u00f1":18,"o":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u0153":25,"s":23,"\u015b":23,"\u0161":23,"\u0219":23,"u":18,"\u00fa":18,"\u016d":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,"\u0171":18,"\u016b":18,"\u016f":18,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":11,"\u017a":11,"\u017e":11,"\u017c":11,"\u00bb":16,"\u203a":16,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u1e85":{"d":"170,-201v0,12,-10,23,-22,23v-13,0,-23,-11,-23,-23v0,-13,10,-22,23,-22v12,0,22,9,22,22xm104,-201v0,12,-9,23,-22,23v-12,0,-23,-11,-23,-23v0,-13,11,-22,23,-22v13,0,22,9,22,22xm229,-154r-59,158r-8,0r-47,-94r-47,94r-8,0r-59,-158r45,0r26,87r39,-87r7,0r41,87r25,-87r45,0","w":228,"k":{"\u0105":4,"\u00e3":4,"\/":5,"?":7,".":21,",":21,"\u2026":21,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4}},"\u1e80":{"d":"347,-264r-83,268r-8,1r-82,-184r-81,184r-7,-1r-84,-268r49,0r48,166r73,-168r5,0r74,167r47,-165r49,0xm195,-304r-12,19r-74,-33r20,-34","w":348,"k":{"\u00e0":23,"Q":7,"\u0105":23,"\u00e3":23,"\u0119":25,"i":7,"\u00ed":7,"\u012d":-5,"\u00ee":-2,"\u00ef":-4,"\u00ec":-14,"\u012b":-2,"\u012f":7,"j":7,"\u00f8":25,"\u01ff":25,"\u00f5":25,"p":18,"q":25,"r":18,"\u0155":18,"\u0159":18,"\u0157":18,"\u015f":23,"\u0259":25,"\/":18,"t":7,"\u0165":7,"\u0163":4,"\u0173":18,"v":7,"x":11,"\u00ff":7,"\u1ef3":7,"J":22,"?":-7,"}":-14,"]":-14,")":-14,"&":11,"-":14,"\u2013":14,"\u2014":14,".":32,",":32,"\u2026":32,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,":":14,";":14,"\u00ab":16,"\u2039":16,"\u201d":-7,"\u2019":-7,"a":23,"\u00e1":23,"\u0103":23,"\u00e2":23,"\u00e4":23,"\u0101":23,"\u00e5":23,"\u01fb":23,"\u00e6":23,"\u01fd":23,"c":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"d":25,"\u010f":25,"\u0111":25,"e":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":25,"\u011f":25,"\u0123":25,"\u0121":25,"m":18,"n":18,"\u0144":18,"\u0148":18,"\u0146":18,"\u00f1":18,"o":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u0153":25,"s":23,"\u015b":23,"\u0161":23,"\u0219":23,"u":18,"\u00fa":18,"\u016d":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,"\u0171":18,"\u016b":18,"\u016f":18,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":11,"\u017a":11,"\u017e":11,"\u017c":11,"\u00bb":16,"\u203a":16,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u1e81":{"d":"229,-154r-59,158r-8,0r-47,-94r-47,94r-8,0r-59,-158r45,0r26,87r39,-87r7,0r41,87r25,-87r45,0xm135,-192r-12,20r-73,-33r19,-35","w":228,"k":{"\u0105":4,"\u00e3":4,"\/":5,"?":7,".":21,",":21,"\u2026":21,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4}},"\u00dd":{"d":"236,-264r-93,153r0,111r-45,0r0,-111r-93,-153r52,0r65,112r64,-112r50,0xm182,-314r-73,32r-10,-20r66,-48","w":241,"k":{"\u00f9":50,"\u00f2":58,"\u014f":58,"\u00e8":58,"\u00eb":58,"\u011b":58,"\u00e5":58,"\u0101":58,"\u00e0":58,"\u00e4":58,"\u00e2":58,"\u0103":58,"Q":24,"\u0105":58,"\u00e3":52,"\u0119":58,"i":25,"\u00ed":25,"\u012d":13,"\u00ee":16,"\u00ef":13,"\u00ec":2,"\u012b":14,"\u012f":25,"j":25,"\u00f8":58,"\u01ff":58,"\u00f5":58,"p":50,"q":58,"r":50,"\u0155":50,"\u0159":50,"\u0157":50,"\u015f":58,"\u0259":58,"\/":36,"t":43,"\u0165":43,"\u0163":22,"\u0173":50,"v":47,"x":47,"\u00ff":47,"\u1ef3":36,"J":25,"?":-4,"}":-14,"]":-14,")":-14,"&":40,"-":40,"\u2013":40,"\u2014":40,".":47,",":47,"\u2026":47,"\u00c6":27,"\u01fc":27,"A":27,"\u00c1":27,"\u0102":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u0100":27,"\u0104":27,"\u00c5":27,"\u01fa":27,"\u00c3":27,":":40,";":40,"\u00ab":38,"\u2039":38,"a":58,"\u00e1":58,"\u01fb":58,"\u00e6":58,"\u01fd":58,"c":58,"\u0107":58,"\u010d":58,"\u00e7":58,"\u010b":58,"d":58,"\u010f":58,"\u0111":58,"e":58,"\u00e9":58,"\u0115":58,"\u00ea":58,"\u0117":58,"\u0113":58,"f":25,"\ufb03":25,"\ufb04":25,"\ufb00":25,"\ufb01":25,"\ufb02":25,"g":58,"\u011f":58,"\u0123":58,"\u0121":58,"m":50,"n":50,"\u0144":50,"\u0148":50,"\u0146":50,"\u00f1":50,"o":58,"\u00f3":58,"\u00f4":58,"\u00f6":58,"\u0151":58,"\u014d":58,"\u0153":58,"s":58,"\u015b":58,"\u0161":58,"\u0219":58,"u":50,"\u00fa":50,"\u016d":50,"\u00fb":50,"\u00fc":50,"\u0171":50,"\u016b":50,"\u016f":50,"w":43,"\u1e83":43,"\u0175":43,"\u1e85":43,"\u1e81":43,"y":47,"\u00fd":47,"\u0177":47,"z":47,"\u017a":47,"\u017e":47,"\u017c":47,"\u00bb":38,"\u203a":38,"S":7,"\u015a":7,"\u0160":7,"\u015e":7,"\u0218":7,"C":24,"\u0106":24,"\u010c":24,"\u00c7":24,"\u010a":24,"G":24,"\u011e":24,"\u0122":24,"\u0120":24,"O":24,"\u00d3":24,"\u014e":24,"\u00d4":24,"\u00d6":24,"\u00d2":24,"\u0150":24,"\u014c":24,"\u00d8":24,"\u01fe":24,"\u00d5":24,"\u0152":24}},"\u00fd":{"d":"167,-154r-109,232r-41,0r47,-93r-65,-139r46,0r39,98r38,-98r45,0xm144,-204r-72,32r-11,-20r66,-48","k":{"\u0105":4,"\u00e3":4,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u015f":2,"\u0259":2,"\/":11,"?":7,"&":5,".":32,",":32,"\u2026":32,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"s":2,"\u015b":2,"\u0161":2,"\u0219":2}},"\u0176":{"d":"236,-264r-93,153r0,111r-45,0r0,-111r-93,-153r52,0r65,112r64,-112r50,0xm181,-287r-38,0r-23,-31r-24,31r-36,0r53,-64r17,0","w":241,"k":{"\u00f9":50,"\u00f2":58,"\u014f":58,"\u00e8":58,"\u00eb":58,"\u011b":58,"\u00e5":58,"\u0101":58,"\u00e0":58,"\u00e4":58,"\u00e2":58,"\u0103":58,"Q":24,"\u0105":58,"\u00e3":52,"\u0119":58,"i":25,"\u00ed":25,"\u012d":13,"\u00ee":16,"\u00ef":13,"\u00ec":2,"\u012b":14,"\u012f":25,"j":25,"\u00f8":58,"\u01ff":58,"\u00f5":58,"p":50,"q":58,"r":50,"\u0155":50,"\u0159":50,"\u0157":50,"\u015f":58,"\u0259":58,"\/":36,"t":43,"\u0165":43,"\u0163":22,"\u0173":50,"v":47,"x":47,"\u00ff":47,"\u1ef3":36,"J":25,"?":-4,"}":-14,"]":-14,")":-14,"&":40,"-":40,"\u2013":40,"\u2014":40,".":47,",":47,"\u2026":47,"\u00c6":27,"\u01fc":27,"A":27,"\u00c1":27,"\u0102":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u0100":27,"\u0104":27,"\u00c5":27,"\u01fa":27,"\u00c3":27,":":40,";":40,"\u00ab":38,"\u2039":38,"a":58,"\u00e1":58,"\u01fb":58,"\u00e6":58,"\u01fd":58,"c":58,"\u0107":58,"\u010d":58,"\u00e7":58,"\u010b":58,"d":58,"\u010f":58,"\u0111":58,"e":58,"\u00e9":58,"\u0115":58,"\u00ea":58,"\u0117":58,"\u0113":58,"f":25,"\ufb03":25,"\ufb04":25,"\ufb00":25,"\ufb01":25,"\ufb02":25,"g":58,"\u011f":58,"\u0123":58,"\u0121":58,"m":50,"n":50,"\u0144":50,"\u0148":50,"\u0146":50,"\u00f1":50,"o":58,"\u00f3":58,"\u00f4":58,"\u00f6":58,"\u0151":58,"\u014d":58,"\u0153":58,"s":58,"\u015b":58,"\u0161":58,"\u0219":58,"u":50,"\u00fa":50,"\u016d":50,"\u00fb":50,"\u00fc":50,"\u0171":50,"\u016b":50,"\u016f":50,"w":43,"\u1e83":43,"\u0175":43,"\u1e85":43,"\u1e81":43,"y":47,"\u00fd":47,"\u0177":47,"z":47,"\u017a":47,"\u017e":47,"\u017c":47,"\u00bb":38,"\u203a":38,"S":7,"\u015a":7,"\u0160":7,"\u015e":7,"\u0218":7,"C":24,"\u0106":24,"\u010c":24,"\u00c7":24,"\u010a":24,"G":24,"\u011e":24,"\u0122":24,"\u0120":24,"O":24,"\u00d3":24,"\u014e":24,"\u00d4":24,"\u00d6":24,"\u00d2":24,"\u0150":24,"\u014c":24,"\u00d8":24,"\u01fe":24,"\u00d5":24,"\u0152":24}},"\u0177":{"d":"167,-154r-109,232r-41,0r47,-93r-65,-139r46,0r39,98r38,-98r45,0xm144,-177r-39,0r-23,-31r-23,31r-37,0r54,-64r16,0","k":{"\u0105":4,"\u00e3":4,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u015f":2,"\u0259":2,"\/":11,"?":7,"&":5,".":32,",":32,"\u2026":32,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"s":2,"\u015b":2,"\u0161":2,"\u0219":2}},"\u0178":{"d":"236,-264r-93,153r0,111r-45,0r0,-111r-93,-153r52,0r65,112r64,-112r50,0xm176,-310v0,12,-10,22,-22,22v-13,0,-23,-10,-23,-22v0,-13,10,-23,23,-23v12,0,22,10,22,23xm111,-310v0,12,-10,22,-23,22v-12,0,-23,-10,-23,-22v0,-13,11,-23,23,-23v13,0,23,10,23,23","w":241,"k":{"\u00f9":50,"\u00f2":58,"\u014f":58,"\u00e8":58,"\u00eb":58,"\u011b":58,"\u00e5":58,"\u0101":58,"\u00e0":58,"\u00e4":58,"\u00e2":58,"\u0103":58,"Q":24,"\u0105":58,"\u00e3":52,"\u0119":58,"i":25,"\u00ed":25,"\u012d":13,"\u00ee":16,"\u00ef":13,"\u00ec":2,"\u012b":14,"\u012f":25,"j":25,"\u00f8":58,"\u01ff":58,"\u00f5":58,"p":50,"q":58,"r":50,"\u0155":50,"\u0159":50,"\u0157":50,"\u015f":58,"\u0259":58,"\/":36,"t":43,"\u0165":43,"\u0163":22,"\u0173":50,"v":47,"x":47,"\u00ff":47,"\u1ef3":36,"J":25,"?":-4,"}":-14,"]":-14,")":-14,"&":40,"-":40,"\u2013":40,"\u2014":40,".":47,",":47,"\u2026":47,"\u00c6":27,"\u01fc":27,"A":27,"\u00c1":27,"\u0102":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u0100":27,"\u0104":27,"\u00c5":27,"\u01fa":27,"\u00c3":27,":":40,";":40,"\u00ab":38,"\u2039":38,"a":58,"\u00e1":58,"\u01fb":58,"\u00e6":58,"\u01fd":58,"c":58,"\u0107":58,"\u010d":58,"\u00e7":58,"\u010b":58,"d":58,"\u010f":58,"\u0111":58,"e":58,"\u00e9":58,"\u0115":58,"\u00ea":58,"\u0117":58,"\u0113":58,"f":25,"\ufb03":25,"\ufb04":25,"\ufb00":25,"\ufb01":25,"\ufb02":25,"g":58,"\u011f":58,"\u0123":58,"\u0121":58,"m":50,"n":50,"\u0144":50,"\u0148":50,"\u0146":50,"\u00f1":50,"o":58,"\u00f3":58,"\u00f4":58,"\u00f6":58,"\u0151":58,"\u014d":58,"\u0153":58,"s":58,"\u015b":58,"\u0161":58,"\u0219":58,"u":50,"\u00fa":50,"\u016d":50,"\u00fb":50,"\u00fc":50,"\u0171":50,"\u016b":50,"\u016f":50,"w":43,"\u1e83":43,"\u0175":43,"\u1e85":43,"\u1e81":43,"y":47,"\u00fd":47,"\u0177":47,"z":47,"\u017a":47,"\u017e":47,"\u017c":47,"\u00bb":38,"\u203a":38,"S":7,"\u015a":7,"\u0160":7,"\u015e":7,"\u0218":7,"C":24,"\u0106":24,"\u010c":24,"\u00c7":24,"\u010a":24,"G":24,"\u011e":24,"\u0122":24,"\u0120":24,"O":24,"\u00d3":24,"\u014e":24,"\u00d4":24,"\u00d6":24,"\u00d2":24,"\u0150":24,"\u014c":24,"\u00d8":24,"\u01fe":24,"\u00d5":24,"\u0152":24}},"\u00ff":{"d":"167,-154r-109,232r-41,0r47,-93r-65,-139r46,0r39,98r38,-98r45,0xm138,-201v0,12,-10,23,-22,23v-13,0,-23,-11,-23,-23v0,-13,10,-22,23,-22v12,0,22,9,22,22xm73,-201v0,12,-10,23,-23,23v-12,0,-23,-11,-23,-23v0,-13,11,-22,23,-22v13,0,23,9,23,22","k":{"\u0105":4,"\u00e3":4,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u015f":2,"\u0259":2,"\/":11,"?":7,"&":5,".":32,",":32,"\u2026":32,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"s":2,"\u015b":2,"\u0161":2,"\u0219":2}},"\u1ef2":{"d":"236,-264r-93,153r0,111r-45,0r0,-111r-93,-153r52,0r65,112r64,-112r50,0xm141,-301r-12,19r-74,-33r20,-35","w":241,"k":{"\u00f9":50,"\u00f2":58,"\u014f":58,"\u00e8":58,"\u00eb":58,"\u011b":58,"\u00e5":58,"\u0101":58,"\u00e0":58,"\u00e4":58,"\u00e2":58,"\u0103":58,"Q":24,"\u0105":58,"\u00e3":52,"\u0119":58,"i":25,"\u00ed":25,"\u012d":13,"\u00ee":16,"\u00ef":13,"\u00ec":2,"\u012b":14,"\u012f":25,"j":25,"\u00f8":58,"\u01ff":58,"\u00f5":58,"p":50,"q":58,"r":50,"\u0155":50,"\u0159":50,"\u0157":50,"\u015f":58,"\u0259":58,"\/":36,"t":43,"\u0165":43,"\u0163":22,"\u0173":50,"v":47,"x":47,"\u00ff":47,"\u1ef3":36,"J":25,"?":-4,"}":-14,"]":-14,")":-14,"&":40,"-":40,"\u2013":40,"\u2014":40,".":47,",":47,"\u2026":47,"\u00c6":27,"\u01fc":27,"A":27,"\u00c1":27,"\u0102":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u0100":27,"\u0104":27,"\u00c5":27,"\u01fa":27,"\u00c3":27,":":40,";":40,"\u00ab":38,"\u2039":38,"a":58,"\u00e1":58,"\u01fb":58,"\u00e6":58,"\u01fd":58,"c":58,"\u0107":58,"\u010d":58,"\u00e7":58,"\u010b":58,"d":58,"\u010f":58,"\u0111":58,"e":58,"\u00e9":58,"\u0115":58,"\u00ea":58,"\u0117":58,"\u0113":58,"f":25,"\ufb03":25,"\ufb04":25,"\ufb00":25,"\ufb01":25,"\ufb02":25,"g":58,"\u011f":58,"\u0123":58,"\u0121":58,"m":50,"n":50,"\u0144":50,"\u0148":50,"\u0146":50,"\u00f1":50,"o":58,"\u00f3":58,"\u00f4":58,"\u00f6":58,"\u0151":58,"\u014d":58,"\u0153":58,"s":58,"\u015b":58,"\u0161":58,"\u0219":58,"u":50,"\u00fa":50,"\u016d":50,"\u00fb":50,"\u00fc":50,"\u0171":50,"\u016b":50,"\u016f":50,"w":43,"\u1e83":43,"\u0175":43,"\u1e85":43,"\u1e81":43,"y":47,"\u00fd":47,"\u0177":47,"z":47,"\u017a":47,"\u017e":47,"\u017c":47,"\u00bb":38,"\u203a":38,"S":7,"\u015a":7,"\u0160":7,"\u015e":7,"\u0218":7,"C":24,"\u0106":24,"\u010c":24,"\u00c7":24,"\u010a":24,"G":24,"\u011e":24,"\u0122":24,"\u0120":24,"O":24,"\u00d3":24,"\u014e":24,"\u00d4":24,"\u00d6":24,"\u00d2":24,"\u0150":24,"\u014c":24,"\u00d8":24,"\u01fe":24,"\u00d5":24,"\u0152":24}},"\u1ef3":{"d":"167,-154r-109,232r-41,0r47,-93r-65,-139r46,0r39,98r38,-98r45,0xm103,-192r-12,20r-73,-33r19,-35","k":{"\u0105":4,"\u00e3":4,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u015f":2,"\u0259":2,"\/":11,"?":7,"&":5,".":32,",":32,"\u2026":32,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"s":2,"\u015b":2,"\u0161":2,"\u0219":2}},"\u0179":{"d":"178,-317r-73,32r-10,-20r66,-48xm223,-258r-140,217r137,0r0,41r-207,0r-2,-5r140,-218r-131,0r0,-41r201,0","w":234,"k":{"Q":14,"\u0105":7,"\u00e3":7,"\u0119":14,"i":4,"\u00ed":4,"\u00ee":2,"\u00ef":2,"\u00ec":-5,"\u012b":2,"\u012f":4,"j":4,"\u0142":2,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":4,"q":14,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":4,"\u0259":14,"\/":-4,"t":7,"\u0165":7,"\u0163":4,"\u0173":5,"v":22,"x":7,"\u00ff":18,"\u1ef3":18,"?":-4,"}":-11,"]":-11,")":-11,"&":7,"-":32,"\u2013":32,"\u2014":32,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":5,"\u00fa":5,"\u016d":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u0171":5,"\u016b":5,"\u016f":5,"w":22,"\u1e83":22,"\u0175":22,"\u1e85":22,"\u1e81":22,"y":18,"\u00fd":18,"\u0177":18,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4,"C":14,"\u0106":14,"\u010c":14,"\u00c7":14,"\u010a":14,"G":14,"\u011e":14,"\u0122":14,"\u0120":14,"O":14,"\u00d3":14,"\u014e":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u0150":14,"\u014c":14,"\u00d8":14,"\u01fe":14,"\u00d5":14,"\u0152":14}},"\u017a":{"d":"139,-204r-73,32r-11,-20r66,-48xm146,-148r-81,114r79,0r0,34r-136,0r-2,-5r80,-115r-73,0r0,-34r131,0","w":152,"k":{"\/":-3,"-":4,"\u2013":4,"\u2014":4}},"\u017d":{"d":"177,-351r-53,64r-16,0r-52,-64r38,0r24,30r23,-30r36,0xm223,-258r-140,217r137,0r0,41r-207,0r-2,-5r140,-218r-131,0r0,-41r201,0","w":234,"k":{"Q":14,"\u0105":7,"\u00e3":7,"\u0119":14,"i":4,"\u00ed":4,"\u00ee":2,"\u00ef":2,"\u00ec":-5,"\u012b":2,"\u012f":4,"j":4,"\u0142":2,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":4,"q":14,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":4,"\u0259":14,"\/":-4,"t":7,"\u0165":7,"\u0163":4,"\u0173":5,"v":22,"x":7,"\u00ff":18,"\u1ef3":18,"?":-4,"}":-11,"]":-11,")":-11,"&":7,"-":32,"\u2013":32,"\u2014":32,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":5,"\u00fa":5,"\u016d":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u0171":5,"\u016b":5,"\u016f":5,"w":22,"\u1e83":22,"\u0175":22,"\u1e85":22,"\u1e81":22,"y":18,"\u00fd":18,"\u0177":18,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4,"C":14,"\u0106":14,"\u010c":14,"\u00c7":14,"\u010a":14,"G":14,"\u011e":14,"\u0122":14,"\u0120":14,"O":14,"\u00d3":14,"\u014e":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u0150":14,"\u014c":14,"\u00d8":14,"\u01fe":14,"\u00d5":14,"\u0152":14}},"\u017e":{"d":"138,-239r-54,64r-16,0r-51,-64r38,0r23,31r23,-31r37,0xm146,-148r-81,114r79,0r0,34r-136,0r-2,-5r80,-115r-73,0r0,-34r131,0","w":152,"k":{"\/":-3,"-":4,"\u2013":4,"\u2014":4}},"\u017b":{"d":"223,-258r-140,217r137,0r0,41r-207,0r-2,-5r140,-218r-131,0r0,-41r201,0xm94,-313v0,-13,11,-23,23,-23v13,0,22,10,22,23v0,12,-9,23,-22,23v-12,0,-23,-11,-23,-23","w":234,"k":{"Q":14,"\u0105":7,"\u00e3":7,"\u0119":14,"i":4,"\u00ed":4,"\u00ee":2,"\u00ef":2,"\u00ec":-5,"\u012b":2,"\u012f":4,"j":4,"\u0142":2,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":4,"q":14,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":4,"\u0259":14,"\/":-4,"t":7,"\u0165":7,"\u0163":4,"\u0173":5,"v":22,"x":7,"\u00ff":18,"\u1ef3":18,"?":-4,"}":-11,"]":-11,")":-11,"&":7,"-":32,"\u2013":32,"\u2014":32,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":5,"\u00fa":5,"\u016d":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u0171":5,"\u016b":5,"\u016f":5,"w":22,"\u1e83":22,"\u0175":22,"\u1e85":22,"\u1e81":22,"y":18,"\u00fd":18,"\u0177":18,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4,"C":14,"\u0106":14,"\u010c":14,"\u00c7":14,"\u010a":14,"G":14,"\u011e":14,"\u0122":14,"\u0120":14,"O":14,"\u00d3":14,"\u014e":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u0150":14,"\u014c":14,"\u00d8":14,"\u01fe":14,"\u00d5":14,"\u0152":14}},"\u017c":{"d":"146,-148r-81,114r79,0r0,34r-136,0r-2,-5r80,-115r-73,0r0,-34r131,0xm55,-201v0,-13,10,-22,22,-22v13,0,23,9,23,22v0,12,-10,23,-23,23v-12,0,-22,-11,-22,-23","w":152,"k":{"\/":-3,"-":4,"\u2013":4,"\u2014":4}},"\u0259":{"d":"81,3v-52,0,-78,-42,-69,-92r106,0v0,-39,-56,-43,-92,-27r-5,-32v68,-26,137,6,137,71v0,41,-27,80,-77,80xm117,-64r-70,0v1,48,68,44,70,0","w":171,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u00df":{"d":"191,-149r-49,69v80,27,34,121,-37,114v-7,0,-15,-1,-22,-2r4,-33v29,4,59,-4,57,-27v3,-18,-23,-30,-49,-25r-3,-5r41,-62r-69,0r0,120r-40,0r0,-191v-2,-57,36,-85,91,-72r-4,34v-29,-4,-48,1,-47,38r0,37r125,0","w":194},"0":{"d":"187,-105v0,58,-29,109,-86,109v-57,0,-85,-51,-85,-109v0,-58,29,-108,86,-108v57,0,85,50,85,108xm145,-105v0,-43,-13,-75,-43,-75v-29,0,-44,32,-44,75v0,43,15,74,44,74v30,0,43,-31,43,-74","w":202,"k":{"\/":7}},"1":{"d":"99,0r-40,0r0,-164r-37,14r-13,-34v31,-9,54,-27,90,-31r0,215","w":135,"k":{"\/":8}},"2":{"d":"146,-150v-3,45,-41,84,-72,115r76,0r0,35r-140,0r0,-17v47,-49,82,-71,95,-126v1,-40,-51,-41,-77,-20r-14,-32v44,-36,136,-16,132,45","w":167,"k":{"\/":3,"4":4}},"3":{"d":"149,-190r-63,67v44,5,62,28,62,59v0,56,-79,85,-135,58r9,-34v33,12,82,14,85,-23v2,-26,-41,-37,-71,-28r-6,-14r62,-70r-76,0r0,-35r132,0","w":163,"k":{"\/":5}},"4":{"d":"172,-53r-32,0r0,54r-38,0r0,-54r-94,0r0,-22r112,-139r20,0r0,128r32,0r0,33xm102,-86r0,-55r-44,55r44,0","w":179,"k":{"\/":1,"-":-7,"\u2013":-7,"\u2014":-7}},"5":{"d":"158,-68v0,61,-77,88,-137,62r7,-35v30,15,94,12,90,-25v4,-32,-52,-37,-85,-28r-3,-4r0,-112r117,0r0,35r-79,0r0,43v57,-4,90,22,90,64","w":174,"k":{"\/":8,"5":5,".":7,",":7,"\u2026":7}},"6":{"d":"165,-69v0,36,-26,73,-74,73v-45,0,-75,-33,-75,-76v0,-52,31,-105,118,-148r17,32v-39,18,-70,39,-85,65v40,-32,99,4,99,54xm125,-67v0,-23,-12,-39,-33,-39v-23,0,-36,14,-36,38v0,22,14,39,35,39v22,0,34,-17,34,-38","w":181,"k":{"\/":6,".":4,",":4,"\u2026":4}},"7":{"d":"161,-210r-93,210r-41,0r77,-174r-89,0r0,-36r146,0","w":164,"k":{"\u00a2":22,"\/":23,"&":14,"9":5,"8":5,"6":9,"5":4,"4":18,"0":5,"-":22,"\u2013":22,"\u2014":22,".":36,",":36,"\u2026":36}},"8":{"d":"130,-107v61,26,35,111,-38,111v-73,0,-99,-85,-38,-111v-56,-27,-29,-106,38,-106v66,0,91,79,38,106xm121,-150v0,-17,-11,-30,-29,-30v-18,0,-30,13,-30,30v0,17,12,29,30,29v18,0,29,-12,29,-29xm123,-61v0,-18,-12,-31,-31,-31v-19,0,-31,13,-31,31v0,18,12,31,31,31v19,0,31,-13,31,-31","w":183,"k":{"\/":7,"8":5}},"9":{"d":"166,-136v0,50,-32,103,-119,146r-17,-31v39,-19,67,-40,84,-64v-41,25,-96,-8,-96,-56v0,-37,27,-72,73,-72v46,0,75,32,75,77xm125,-144v0,-22,-13,-37,-34,-37v-22,0,-34,17,-34,37v0,23,12,38,33,38v23,0,35,-14,35,-38","w":179,"k":{"\/":14,".":18,",":18,"\u2026":18}},"\u2044":{"d":"198,-201r-170,207r-19,-15r171,-207","w":208},".":{"d":"21,-21v0,-13,11,-23,24,-23v13,0,23,10,23,23v0,13,-10,24,-23,24v-13,0,-24,-11,-24,-24","w":88,"k":{"Q":23,"\u0119":14,"\u00f8":14,"\u01ff":14,"\u00f5":14,"q":14,"\u0259":14,"t":15,"\u0165":15,"\u0163":5,"v":29,"\u00ff":22,"\u1ef3":22,"V":47,"1":14,"2":-4,"4":7,"Y":47,"\u00dd":47,"\u0176":47,"\u0178":47,"\u1ef2":47,"A":-4,"\u00c1":-4,"\u0102":-4,"\u00c2":-4,"\u00c4":-4,"\u00c0":-4,"\u0100":-4,"\u0104":-4,"\u00c5":-4,"\u01fa":-4,"\u00c3":-4,"\u201d":16,"\u2019":16,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":17,"\ufb03":17,"\ufb04":17,"\ufb00":17,"\ufb01":17,"\ufb02":17,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"w":21,"\u1e83":21,"\u0175":21,"\u1e85":21,"\u1e81":21,"y":22,"\u00fd":22,"\u0177":22,"W":32,"\u1e82":32,"\u0174":32,"\u1e84":32,"\u1e80":32,"T":36,"\u0164":36,"\u0162":36,"C":23,"\u0106":23,"\u010c":23,"\u00c7":23,"\u010a":23,"G":23,"\u011e":23,"\u0122":23,"\u0120":23,"O":23,"\u00d3":23,"\u014e":23,"\u00d4":23,"\u00d6":23,"\u00d2":23,"\u0150":23,"\u014c":23,"\u00d8":23,"\u01fe":23,"\u00d5":23,"\u0152":23,"\u201c":16,"\u2018":16,"U":17,"\u00da":17,"\u016c":17,"\u00db":17,"\u00dc":17,"\u00d9":17,"\u0170":17,"\u016a":17,"\u0172":17,"\u016e":17}},",":{"d":"68,-15v0,22,-16,49,-43,62r-4,-7v14,-13,20,-24,24,-37v-30,0,-29,-47,-1,-47v16,0,24,14,24,29","w":88,"k":{"Q":23,"\u0119":14,"\u00f8":14,"\u01ff":14,"\u00f5":14,"q":14,"\u0259":14,"t":15,"\u0165":15,"\u0163":5,"v":29,"\u00ff":22,"\u1ef3":22,"V":47,"1":14,"2":-4,"4":7,"Y":47,"\u00dd":47,"\u0176":47,"\u0178":47,"\u1ef2":47,"A":-4,"\u00c1":-4,"\u0102":-4,"\u00c2":-4,"\u00c4":-4,"\u00c0":-4,"\u0100":-4,"\u0104":-4,"\u00c5":-4,"\u01fa":-4,"\u00c3":-4,"\u201d":16,"\u2019":16,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":17,"\ufb03":17,"\ufb04":17,"\ufb00":17,"\ufb01":17,"\ufb02":17,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"w":21,"\u1e83":21,"\u0175":21,"\u1e85":21,"\u1e81":21,"y":22,"\u00fd":22,"\u0177":22,"W":32,"\u1e82":32,"\u0174":32,"\u1e84":32,"\u1e80":32,"T":36,"\u0164":36,"\u0162":36,"C":23,"\u0106":23,"\u010c":23,"\u00c7":23,"\u010a":23,"G":23,"\u011e":23,"\u0122":23,"\u0120":23,"O":23,"\u00d3":23,"\u014e":23,"\u00d4":23,"\u00d6":23,"\u00d2":23,"\u0150":23,"\u014c":23,"\u00d8":23,"\u01fe":23,"\u00d5":23,"\u0152":23,"\u201c":16,"\u2018":16,"U":17,"\u00da":17,"\u016c":17,"\u00db":17,"\u00dc":17,"\u00d9":17,"\u0170":17,"\u016a":17,"\u0172":17,"\u016e":17}},":":{"d":"21,-21v0,-13,11,-23,24,-23v13,0,23,10,23,23v0,13,-10,24,-23,24v-13,0,-24,-11,-24,-24xm21,-116v0,-13,11,-23,24,-23v13,0,23,10,23,23v0,13,-10,24,-23,24v-13,0,-24,-11,-24,-24","w":88},";":{"d":"68,-15v0,22,-16,49,-43,62r-4,-7v14,-13,20,-24,24,-37v-30,0,-29,-47,-1,-47v16,0,24,14,24,29xm21,-116v0,-13,11,-23,24,-23v13,0,23,10,23,23v0,13,-10,24,-23,24v-13,0,-24,-11,-24,-24","w":88},"\u2026":{"d":"25,-21v0,-13,10,-23,23,-23v13,0,24,10,24,23v0,13,-11,24,-24,24v-13,0,-23,-11,-23,-24xm116,-21v0,-13,10,-23,23,-23v13,0,23,10,23,23v0,13,-10,24,-23,24v-13,0,-23,-11,-23,-24xm206,-21v0,-13,11,-23,24,-23v13,0,23,10,23,23v0,13,-10,24,-23,24v-13,0,-24,-11,-24,-24","w":277,"k":{"Q":23,"\u0119":14,"\u00f8":14,"\u01ff":14,"\u00f5":14,"q":14,"\u0259":14,"t":15,"\u0165":15,"\u0163":5,"v":29,"\u00ff":22,"\u1ef3":22,"V":47,"1":14,"2":-4,"4":7,"Y":47,"\u00dd":47,"\u0176":47,"\u0178":47,"\u1ef2":47,"A":-4,"\u00c1":-4,"\u0102":-4,"\u00c2":-4,"\u00c4":-4,"\u00c0":-4,"\u0100":-4,"\u0104":-4,"\u00c5":-4,"\u01fa":-4,"\u00c3":-4,"\u201d":16,"\u2019":16,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":17,"\ufb03":17,"\ufb04":17,"\ufb00":17,"\ufb01":17,"\ufb02":17,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"w":21,"\u1e83":21,"\u0175":21,"\u1e85":21,"\u1e81":21,"y":22,"\u00fd":22,"\u0177":22,"W":32,"\u1e82":32,"\u0174":32,"\u1e84":32,"\u1e80":32,"T":36,"\u0164":36,"\u0162":36,"C":23,"\u0106":23,"\u010c":23,"\u00c7":23,"\u010a":23,"G":23,"\u011e":23,"\u0122":23,"\u0120":23,"O":23,"\u00d3":23,"\u014e":23,"\u00d4":23,"\u00d6":23,"\u00d2":23,"\u0150":23,"\u014c":23,"\u00d8":23,"\u01fe":23,"\u00d5":23,"\u0152":23,"\u201c":16,"\u2018":16,"U":17,"\u00da":17,"\u016c":17,"\u00db":17,"\u00dc":17,"\u00d9":17,"\u0170":17,"\u016a":17,"\u0172":17,"\u016e":17}},"\u00b7":{"d":"28,-132v0,-13,11,-23,24,-23v13,0,23,10,23,23v0,13,-10,24,-23,24v-13,0,-24,-11,-24,-24","w":103},"\u2022":{"d":"136,-132v0,33,-26,59,-58,59v-32,0,-59,-26,-59,-59v0,-33,27,-59,59,-59v32,0,58,26,58,59","w":155},"&":{"d":"189,-105r25,20v-11,14,-23,28,-35,40v9,8,20,17,30,25r-24,25v-11,-9,-22,-17,-32,-26v-41,40,-134,33,-135,-35v0,-26,19,-47,48,-60v-32,-42,-4,-99,46,-99v76,0,77,89,6,110v10,12,22,24,37,38v12,-12,24,-25,34,-38xm135,-162v0,-13,-10,-22,-23,-22v-26,0,-28,37,-11,57v24,-10,34,-23,34,-35xm129,-44v-18,-17,-33,-32,-45,-47v-33,10,-34,62,7,61v12,0,26,-5,38,-14","w":227,"k":{"v":4,"V":22,"Y":37,"\u00dd":37,"\u0176":37,"\u0178":37,"\u1ef2":37,"W":7,"\u1e82":7,"\u0174":7,"\u1e84":7,"\u1e80":7,"T":36,"\u0164":36,"\u0162":36}},"!":{"d":"70,-264r-9,190r-28,0r-9,-190r46,0xm71,-21v0,13,-11,24,-24,24v-13,0,-23,-11,-23,-24v0,-13,10,-23,23,-23v13,0,24,10,24,23","w":94},"\u00a1":{"d":"24,-243v0,-13,10,-24,23,-24v13,0,24,11,24,24v0,13,-11,23,-24,23v-13,0,-23,-10,-23,-23xm25,0r8,-190r29,0r8,190r-45,0","w":94},"?":{"d":"136,-204v-5,61,-79,60,-66,126r-37,0v-13,-67,54,-85,57,-122v3,-33,-48,-33,-74,-21r-8,-36v53,-23,132,-1,128,53xm75,-21v0,13,-11,24,-24,24v-13,0,-23,-11,-23,-24v0,-13,10,-23,23,-23v13,0,24,10,24,23","w":141},"\u00bf":{"d":"67,-243v0,-13,11,-24,24,-24v13,0,23,11,23,24v0,13,-10,23,-23,23v-13,0,-24,-10,-24,-23xm6,-60v5,-62,79,-60,66,-126r36,0v13,67,-53,85,-56,122v-3,33,48,33,74,21r8,36v-52,25,-132,1,-128,-53","w":141,"k":{"V":6,"Q":7,"Y":9,"\u00dd":9,"\u0176":9,"\u0178":9,"\u1ef2":9,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"T":7,"\u0164":7,"\u0162":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u201c":{"d":"91,-230v29,-1,30,43,2,43v-45,-11,-19,-68,16,-83r5,7v-12,10,-19,22,-23,33xm33,-230v29,-1,30,43,2,43v-45,-11,-20,-68,16,-83r4,7v-12,10,-18,22,-22,33","w":127,"k":{"Q":22,"\u0105":7,"\u00e3":7,"\u0119":14,"\u00ec":-16,"\u00f8":14,"\u01ff":14,"\u00f5":14,"q":14,"\u015f":9,"\u0259":14,"J":61,"V":-7,".":10,",":10,"\u2026":10,"\u00c6":54,"\u01fc":54,"A":46,"\u00c1":46,"\u0102":46,"\u00c2":46,"\u00c4":46,"\u00c0":46,"\u0100":46,"\u0104":46,"\u00c5":46,"\u01fa":46,"\u00c3":46,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":18,"\u010f":18,"\u0111":18,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":11,"\u011f":11,"\u0123":11,"\u0121":11,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":9,"\u015b":9,"\u0161":9,"\u0219":9,"W":-7,"\u1e82":-7,"\u0174":-7,"\u1e84":-7,"\u1e80":-7,"S":7,"\u015a":7,"\u0160":7,"\u015e":7,"\u0218":7,"Z":7,"\u0179":7,"\u017d":7,"\u017b":7,"C":22,"\u0106":22,"\u010c":22,"\u00c7":22,"\u010a":22,"G":22,"\u011e":22,"\u0122":22,"\u0120":22,"O":22,"\u00d3":22,"\u014e":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"\u0150":22,"\u014c":22,"\u00d8":22,"\u01fe":22,"\u00d5":22,"\u0152":22}},"\u201d":{"d":"116,-242v0,20,-14,44,-40,57r-4,-7v12,-10,18,-22,22,-33v-29,0,-28,-44,-1,-43v15,0,23,12,23,26xm58,-242v0,20,-15,44,-40,57r-4,-7v12,-10,18,-22,22,-33v-29,0,-28,-44,-1,-43v15,0,23,12,23,26","w":127,"k":{"Q":22,"\u0105":18,"\u00e3":18,"\u0119":18,"\u00ec":-16,"\u00f8":18,"\u01ff":18,"\u00f5":18,"q":18,"\u015f":22,"\u0259":18,"t":7,"\u0165":7,"\u0163":4,"J":54,"V":-7,".":11,",":11,"\u2026":11,"\u00c6":47,"\u01fc":47,"A":45,"\u00c1":45,"\u0102":45,"\u00c2":45,"\u00c4":45,"\u00c0":45,"\u0100":45,"\u0104":45,"\u00c5":45,"\u01fa":45,"\u00c3":45,"a":18,"\u00e1":18,"\u0103":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u0101":18,"\u00e5":18,"\u01fb":18,"\u00e6":18,"\u01fd":18,"c":18,"\u0107":18,"\u010d":18,"\u00e7":18,"\u010b":18,"d":18,"\u010f":18,"\u0111":18,"e":18,"\u00e9":18,"\u0115":18,"\u011b":18,"\u00ea":18,"\u00eb":18,"\u0117":18,"\u00e8":18,"\u0113":18,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":18,"\u011f":18,"\u0123":18,"\u0121":18,"o":18,"\u00f3":18,"\u014f":18,"\u00f4":18,"\u00f6":18,"\u00f2":18,"\u0151":18,"\u014d":18,"\u0153":18,"s":22,"\u015b":22,"\u0161":22,"\u0219":22,"W":-7,"\u1e82":-7,"\u0174":-7,"\u1e84":-7,"\u1e80":-7,"T":-5,"\u0164":-5,"\u0162":-5,"C":22,"\u0106":22,"\u010c":22,"\u00c7":22,"\u010a":22,"G":22,"\u011e":22,"\u0122":22,"\u0120":22,"O":22,"\u00d3":22,"\u014e":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"\u0150":22,"\u014c":22,"\u00d8":22,"\u01fe":22,"\u00d5":22,"\u0152":22}},"\u2018":{"d":"33,-230v29,-1,30,43,2,43v-45,-11,-20,-68,16,-83r4,7v-12,10,-18,22,-22,33","w":69,"k":{"Q":22,"\u0105":7,"\u00e3":7,"\u0119":14,"\u00ec":-16,"\u00f8":14,"\u01ff":14,"\u00f5":14,"q":14,"\u015f":9,"\u0259":14,"J":61,"V":-7,".":10,",":10,"\u2026":10,"\u00c6":54,"\u01fc":54,"A":46,"\u00c1":46,"\u0102":46,"\u00c2":46,"\u00c4":46,"\u00c0":46,"\u0100":46,"\u0104":46,"\u00c5":46,"\u01fa":46,"\u00c3":46,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":18,"\u010f":18,"\u0111":18,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":11,"\u011f":11,"\u0123":11,"\u0121":11,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":9,"\u015b":9,"\u0161":9,"\u0219":9,"W":-7,"\u1e82":-7,"\u0174":-7,"\u1e84":-7,"\u1e80":-7,"S":7,"\u015a":7,"\u0160":7,"\u015e":7,"\u0218":7,"Z":7,"\u0179":7,"\u017d":7,"\u017b":7,"C":22,"\u0106":22,"\u010c":22,"\u00c7":22,"\u010a":22,"G":22,"\u011e":22,"\u0122":22,"\u0120":22,"O":22,"\u00d3":22,"\u014e":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"\u0150":22,"\u014c":22,"\u00d8":22,"\u01fe":22,"\u00d5":22,"\u0152":22}},"\u2019":{"d":"58,-242v0,20,-15,44,-40,57r-4,-7v12,-10,18,-22,22,-33v-29,0,-28,-44,-1,-43v15,0,23,12,23,26","w":69,"k":{"Q":22,"\u0105":18,"\u00e3":18,"\u0119":18,"\u00ec":-16,"\u00f8":18,"\u01ff":18,"\u00f5":18,"q":18,"\u015f":22,"\u0259":18,"t":7,"\u0165":7,"\u0163":4,"J":54,"V":-7,".":11,",":11,"\u2026":11,"\u00c6":47,"\u01fc":47,"A":45,"\u00c1":45,"\u0102":45,"\u00c2":45,"\u00c4":45,"\u00c0":45,"\u0100":45,"\u0104":45,"\u00c5":45,"\u01fa":45,"\u00c3":45,"a":18,"\u00e1":18,"\u0103":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u0101":18,"\u00e5":18,"\u01fb":18,"\u00e6":18,"\u01fd":18,"c":18,"\u0107":18,"\u010d":18,"\u00e7":18,"\u010b":18,"d":18,"\u010f":18,"\u0111":18,"e":18,"\u00e9":18,"\u0115":18,"\u011b":18,"\u00ea":18,"\u00eb":18,"\u0117":18,"\u00e8":18,"\u0113":18,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":18,"\u011f":18,"\u0123":18,"\u0121":18,"o":18,"\u00f3":18,"\u014f":18,"\u00f4":18,"\u00f6":18,"\u00f2":18,"\u0151":18,"\u014d":18,"\u0153":18,"s":22,"\u015b":22,"\u0161":22,"\u0219":22,"W":-7,"\u1e82":-7,"\u0174":-7,"\u1e84":-7,"\u1e80":-7,"T":-5,"\u0164":-5,"\u0162":-5,"C":22,"\u0106":22,"\u010c":22,"\u00c7":22,"\u010a":22,"G":22,"\u011e":22,"\u0122":22,"\u0120":22,"O":22,"\u00d3":22,"\u014e":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"\u0150":22,"\u014c":22,"\u00d8":22,"\u01fe":22,"\u00d5":22,"\u0152":22}},"\u201e":{"d":"120,-17v0,20,-14,44,-40,57r-4,-7v12,-10,18,-22,22,-34v-14,-1,-22,-9,-22,-21v0,-12,9,-22,21,-22v15,0,23,12,23,27xm62,-17v0,20,-15,44,-40,57r-4,-7v12,-10,18,-22,22,-34v-14,-1,-22,-9,-22,-21v0,-12,9,-22,21,-22v15,0,23,12,23,27","w":136,"k":{"Q":23,"\u0119":14,"\u00f8":14,"\u01ff":14,"\u00f5":14,"q":14,"\u0259":14,"t":15,"\u0165":15,"\u0163":5,"v":29,"\u00ff":22,"\u1ef3":22,"V":47,"1":14,"2":-4,"4":7,"Y":47,"\u00dd":47,"\u0176":47,"\u0178":47,"\u1ef2":47,"A":-4,"\u00c1":-4,"\u0102":-4,"\u00c2":-4,"\u00c4":-4,"\u00c0":-4,"\u0100":-4,"\u0104":-4,"\u00c5":-4,"\u01fa":-4,"\u00c3":-4,"\u201d":16,"\u2019":16,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":17,"\ufb03":17,"\ufb04":17,"\ufb00":17,"\ufb01":17,"\ufb02":17,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"w":21,"\u1e83":21,"\u0175":21,"\u1e85":21,"\u1e81":21,"y":22,"\u00fd":22,"\u0177":22,"W":32,"\u1e82":32,"\u0174":32,"\u1e84":32,"\u1e80":32,"T":36,"\u0164":36,"\u0162":36,"C":23,"\u0106":23,"\u010c":23,"\u00c7":23,"\u010a":23,"G":23,"\u011e":23,"\u0122":23,"\u0120":23,"O":23,"\u00d3":23,"\u014e":23,"\u00d4":23,"\u00d6":23,"\u00d2":23,"\u0150":23,"\u014c":23,"\u00d8":23,"\u01fe":23,"\u00d5":23,"\u0152":23,"\u201c":16,"\u2018":16,"U":17,"\u00da":17,"\u016c":17,"\u00db":17,"\u00dc":17,"\u00d9":17,"\u0170":17,"\u016a":17,"\u0172":17,"\u016e":17}},"\u201a":{"d":"62,-18v0,21,-15,45,-40,58r-4,-7v12,-10,18,-22,22,-34v-14,-1,-22,-9,-22,-21v0,-12,9,-22,21,-22v15,0,23,12,23,26","w":77,"k":{"Q":23,"\u0119":14,"\u00f8":14,"\u01ff":14,"\u00f5":14,"q":14,"\u0259":14,"t":15,"\u0165":15,"\u0163":5,"v":29,"\u00ff":22,"\u1ef3":22,"V":47,"1":14,"2":-4,"4":7,"Y":47,"\u00dd":47,"\u0176":47,"\u0178":47,"\u1ef2":47,"A":-4,"\u00c1":-4,"\u0102":-4,"\u00c2":-4,"\u00c4":-4,"\u00c0":-4,"\u0100":-4,"\u0104":-4,"\u00c5":-4,"\u01fa":-4,"\u00c3":-4,"\u201d":16,"\u2019":16,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":17,"\ufb03":17,"\ufb04":17,"\ufb00":17,"\ufb01":17,"\ufb02":17,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"w":21,"\u1e83":21,"\u0175":21,"\u1e85":21,"\u1e81":21,"y":22,"\u00fd":22,"\u0177":22,"W":32,"\u1e82":32,"\u0174":32,"\u1e84":32,"\u1e80":32,"T":36,"\u0164":36,"\u0162":36,"C":23,"\u0106":23,"\u010c":23,"\u00c7":23,"\u010a":23,"G":23,"\u011e":23,"\u0122":23,"\u0120":23,"O":23,"\u00d3":23,"\u014e":23,"\u00d4":23,"\u00d6":23,"\u00d2":23,"\u0150":23,"\u014c":23,"\u00d8":23,"\u01fe":23,"\u00d5":23,"\u0152":23,"\u201c":16,"\u2018":16,"U":17,"\u00da":17,"\u016c":17,"\u00db":17,"\u00dc":17,"\u00d9":17,"\u0170":17,"\u016a":17,"\u0172":17,"\u016e":17}},"\u00ab":{"d":"156,-3r-39,0r-37,-59r37,-59r39,0r-40,59xm93,-3r-38,0r-38,-59r38,-59r38,0r-39,59","w":169,"k":{"V":14,"Y":16,"\u00dd":16,"\u0176":16,"\u0178":16,"\u1ef2":16,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":14,"\u0164":14,"\u0162":14}},"\u00bb":{"d":"153,-62r-38,59r-38,0r39,-59r-39,-59r38,0xm91,-62r-38,59r-39,0r40,-59r-40,-59r39,0","w":169,"k":{"V":29,"Y":38,"\u00dd":38,"\u0176":38,"\u0178":38,"\u1ef2":38,"W":16,"\u1e82":16,"\u0174":16,"\u1e84":16,"\u1e80":16,"T":35,"\u0164":35,"\u0162":35}},"\u2039":{"d":"93,-3r-38,0r-38,-59r38,-59r38,0r-39,59","w":109,"k":{"V":14,"Y":16,"\u00dd":16,"\u0176":16,"\u0178":16,"\u1ef2":16,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":14,"\u0164":14,"\u0162":14}},"\u203a":{"d":"92,-62r-38,59r-38,0r39,-59r-39,-59r38,0","w":109,"k":{"V":29,"Y":38,"\u00dd":38,"\u0176":38,"\u0178":38,"\u1ef2":38,"W":16,"\u1e82":16,"\u0174":16,"\u1e84":16,"\u1e80":16,"T":35,"\u0164":35,"\u0162":35}},"-":{"d":"107,-72r-89,0r0,-32r89,0r0,32","w":124,"k":{"x":7,"J":25,"V":36,"X":18,"1":14,"2":11,"Y":40,"\u00dd":40,"\u0176":40,"\u0178":40,"\u1ef2":40,"\u00c6":11,"\u01fc":11,"A":11,"\u00c1":11,"\u0102":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u0100":11,"\u0104":11,"\u00c5":11,"\u01fa":11,"\u00c3":11,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"W":14,"\u1e82":14,"\u0174":14,"\u1e84":14,"\u1e80":14,"S":11,"\u015a":11,"\u0160":11,"\u015e":11,"\u0218":11,"T":47,"\u0164":47,"\u0162":47,"Z":18,"\u0179":18,"\u017d":18,"\u017b":18}},"\u2013":{"d":"162,-74r-144,0r0,-28r144,0r0,28","w":180,"k":{"x":7,"J":25,"V":36,"X":18,"1":14,"2":11,"Y":40,"\u00dd":40,"\u0176":40,"\u0178":40,"\u1ef2":40,"\u00c6":11,"\u01fc":11,"A":11,"\u00c1":11,"\u0102":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u0100":11,"\u0104":11,"\u00c5":11,"\u01fa":11,"\u00c3":11,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"W":14,"\u1e82":14,"\u0174":14,"\u1e84":14,"\u1e80":14,"S":11,"\u015a":11,"\u0160":11,"\u015e":11,"\u0218":11,"T":47,"\u0164":47,"\u0162":47,"Z":18,"\u0179":18,"\u017d":18,"\u017b":18}},"\u2014":{"d":"252,-74r-234,0r0,-28r234,0r0,28","w":270,"k":{"x":7,"J":25,"V":36,"X":18,"1":14,"2":11,"Y":40,"\u00dd":40,"\u0176":40,"\u0178":40,"\u1ef2":40,"\u00c6":11,"\u01fc":11,"A":11,"\u00c1":11,"\u0102":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u0100":11,"\u0104":11,"\u00c5":11,"\u01fa":11,"\u00c3":11,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"W":14,"\u1e82":14,"\u0174":14,"\u1e84":14,"\u1e80":14,"S":11,"\u015a":11,"\u0160":11,"\u015e":11,"\u0218":11,"T":47,"\u0164":47,"\u0162":47,"Z":18,"\u0179":18,"\u017d":18,"\u017b":18}},"\/":{"d":"128,-264r-86,342r-32,0r86,-342r32,0","w":128,"k":{"\/":20,"9":-5,"8":-5,"7":-14,"6":1,"4":5,"3":-13,"2":-5,"1":-7,"0":-5,"\u0259":1,"\u1ef3":-9,"\u00ff":-9,"\u0165":-2,"\u015f":2,"\u00f5":1,"\u01ff":1,"\u00f8":1,"\u0142":-12,"\u012f":-6,"\u012b":-6,"\u00ec":-6,"\u00ef":-6,"\u00ee":-6,"\u012d":-6,"\u00ed":-6,"\u0119":1,"\u00e3":3,"\u0105":3,"x":-2,"v":-9,"t":-2,"q":1,"j":-6,"i":-6,"X":-30,"V":-32,"Q":-14,"P":-26,"J":6,"F":-26,"B":-26,"Y":-23,"\u00dd":-23,"\u0176":-23,"\u0178":-23,"\u1ef2":-23,"\u00c6":1,"\u01fc":1,"A":1,"\u00c1":1,"\u0102":1,"\u00c2":1,"\u00c4":1,"\u00c0":1,"\u0100":1,"\u0104":1,"\u00c5":1,"\u01fa":1,"\u00c3":1,"a":3,"\u00e1":3,"\u0103":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u0101":3,"\u00e5":3,"\u01fb":3,"\u00e6":3,"\u01fd":3,"c":1,"\u0107":1,"\u010d":1,"\u00e7":1,"\u010b":1,"d":1,"\u010f":1,"\u0111":1,"e":1,"\u00e9":1,"\u0115":1,"\u011b":1,"\u00ea":1,"\u00eb":1,"\u0117":1,"\u00e8":1,"\u0113":1,"f":-3,"\ufb03":-3,"\ufb04":-3,"\ufb00":-3,"\ufb01":-3,"\ufb02":-3,"g":1,"\u011f":1,"\u0123":1,"\u0121":1,"o":1,"\u00f3":1,"\u014f":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u0151":1,"\u014d":1,"\u0153":1,"s":2,"\u015b":2,"\u0161":2,"\u0219":2,"w":-9,"\u1e83":-9,"\u0175":-9,"\u1e85":-9,"\u1e81":-9,"y":-9,"\u00fd":-9,"\u0177":-9,"z":-3,"\u017a":-3,"\u017e":-3,"\u017c":-3,"b":-19,"h":-19,"k":-19,"l":-19,"\u0127":-19,"\u0137":-19,"\u013a":-19,"\u013e":-19,"\u013c":-19,"\u0140":-19,"W":-30,"\u1e82":-30,"\u0174":-30,"\u1e84":-30,"\u1e80":-30,"S":-21,"\u015a":-21,"\u0160":-21,"\u015e":-21,"\u0218":-21,"T":-28,"\u0164":-28,"\u0162":-28,"Z":-20,"\u0179":-20,"\u017d":-20,"\u017b":-20,"C":-14,"\u0106":-14,"\u010c":-14,"\u00c7":-14,"\u010a":-14,"G":-14,"\u011e":-14,"\u0122":-14,"\u0120":-14,"O":-14,"\u00d3":-14,"\u014e":-14,"\u00d4":-14,"\u00d6":-14,"\u00d2":-14,"\u0150":-14,"\u014c":-14,"\u00d8":-14,"\u01fe":-14,"\u00d5":-14,"\u0152":-14,"D":-26,"\u010e":-26,"E":-26,"\u00c9":-26,"\u0114":-26,"\u011a":-26,"\u00ca":-26,"\u00cb":-26,"\u0116":-26,"\u00c8":-26,"\u0112":-26,"\u0118":-26,"H":-26,"\u0126":-26,"I":-26,"\u00cd":-26,"\u012c":-26,"\u00ce":-26,"\u00cf":-26,"\u0130":-26,"\u00cc":-26,"\u012a":-26,"\u012e":-26,"K":-26,"\u0136":-26,"L":-26,"\u0139":-26,"\u013d":-26,"\u013b":-26,"\u013f":-26,"M":-18,"N":-26,"\u0143":-26,"\u0147":-26,"\u0145":-26,"\u00d1":-26,"R":-26,"\u0154":-26,"\u0158":-26,"\u0156":-26,"U":-28,"\u00da":-28,"\u016c":-28,"\u00db":-28,"\u00dc":-28,"\u00d9":-28,"\u0170":-28,"\u016a":-28,"\u0172":-28,"\u016e":-28}},"\\":{"d":"118,78r-32,0r-86,-342r32,0","w":128},"|":{"d":"64,78r-32,0r0,-342r32,0r0,342","w":96},"(":{"d":"133,59r-19,27v-127,-80,-127,-278,0,-358r19,27v-106,66,-106,238,0,304","w":130,"k":{"7":-9,"6":7,"4":7,"3":-11,"2":-7,"\u012f":-7,"\u00ec":-14,"j":-29,"X":-14,"V":-14,"Q":14,"J":7,"Y":-14,"\u00dd":-14,"\u0176":-14,"\u0178":-14,"\u1ef2":-14,"\u00c6":7,"\u01fc":7,"A":7,"\u00c1":7,"\u0102":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u0100":7,"\u0104":7,"\u00c5":7,"\u01fa":7,"\u00c3":7,"W":-14,"\u1e82":-14,"\u0174":-14,"\u1e84":-14,"\u1e80":-14,"T":-14,"\u0164":-14,"\u0162":-14,"Z":-7,"\u0179":-7,"\u017d":-7,"\u017b":-7,"C":14,"\u0106":14,"\u010c":14,"\u00c7":14,"\u010a":14,"G":14,"\u011e":14,"\u0122":14,"\u0120":14,"O":14,"\u00d3":14,"\u014e":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u0150":14,"\u014c":14,"\u00d8":14,"\u01fe":14,"\u00d5":14,"\u0152":14}},")":{"d":"16,-272v128,80,128,278,0,358r-19,-27v106,-66,106,-238,0,-304","w":130},"[":{"d":"108,78r-80,0r0,-342r80,0r0,31r-45,0r0,280r45,0r0,31","w":115,"k":{"7":-9,"6":7,"4":7,"3":-11,"2":-7,"\u00ec":-7,"j":-29,"X":-14,"V":-14,"Q":14,"J":7,"Y":-14,"\u00dd":-14,"\u0176":-14,"\u0178":-14,"\u1ef2":-14,"\u00c6":7,"\u01fc":7,"A":7,"\u00c1":7,"\u0102":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u0100":7,"\u0104":7,"\u00c5":7,"\u01fa":7,"\u00c3":7,"W":-14,"\u1e82":-14,"\u0174":-14,"\u1e84":-14,"\u1e80":-14,"T":-14,"\u0164":-14,"\u0162":-14,"Z":-7,"\u0179":-7,"\u017d":-7,"\u017b":-7,"C":14,"\u0106":14,"\u010c":14,"\u00c7":14,"\u010a":14,"G":14,"\u011e":14,"\u0122":14,"\u0120":14,"O":14,"\u00d3":14,"\u014e":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u0150":14,"\u014c":14,"\u00d8":14,"\u01fe":14,"\u00d5":14,"\u0152":14}},"]":{"d":"88,78r-80,0r0,-31r45,0r0,-280r-45,0r0,-31r80,0r0,342","w":115},"{":{"d":"108,80v-73,4,-71,-64,-68,-135v1,-18,-10,-25,-31,-23r0,-30v49,8,31,-54,31,-93v0,-42,24,-65,68,-65r0,33v-69,-5,2,123,-60,140v40,11,27,60,27,104v0,27,11,36,33,36r0,33","w":111,"k":{"7":-9,"6":7,"4":7,"3":-11,"2":-7,"\u00ec":-14,"j":-29,"X":-14,"V":-14,"Q":14,"J":7,"Y":-14,"\u00dd":-14,"\u0176":-14,"\u0178":-14,"\u1ef2":-14,"\u00c6":7,"\u01fc":7,"A":7,"\u00c1":7,"\u0102":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u0100":7,"\u0104":7,"\u00c5":7,"\u01fa":7,"\u00c3":7,"W":-14,"\u1e82":-14,"\u0174":-14,"\u1e84":-14,"\u1e80":-14,"T":-14,"\u0164":-14,"\u0162":-14,"Z":-7,"\u0179":-7,"\u017d":-7,"\u017b":-7,"C":14,"\u0106":14,"\u010c":14,"\u00c7":14,"\u010a":14,"G":14,"\u011e":14,"\u0122":14,"\u0120":14,"O":14,"\u00d3":14,"\u014e":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u0150":14,"\u014c":14,"\u00d8":14,"\u01fe":14,"\u00d5":14,"\u0152":14}},"}":{"d":"103,-78v-49,-8,-31,54,-31,93v0,42,-23,65,-68,65r0,-33v69,6,0,-122,60,-140v-40,-11,-26,-60,-26,-104v0,-27,-12,-36,-34,-36r0,-33v74,-4,70,64,68,135v-1,18,10,25,31,23r0,30","w":111},"@":{"d":"183,-69v20,-1,27,-20,27,-42v0,-35,-23,-82,-85,-82v-46,0,-85,40,-85,89v0,64,69,108,139,81r5,19v-85,29,-166,-25,-166,-100v0,-59,49,-109,107,-109v71,0,105,55,105,100v0,44,-50,85,-78,44v-17,23,-68,20,-70,-15v-1,-26,38,-34,59,-23v3,-26,-25,-26,-45,-19r-3,-21v45,-15,86,4,74,61v0,12,8,17,16,17xm124,-71v11,0,19,-5,17,-19v-8,-9,-32,-9,-32,6v0,8,5,13,15,13","w":247},"\u00a9":{"d":"285,-132v0,75,-59,136,-133,136v-74,0,-134,-61,-134,-136v0,-75,60,-136,134,-136v74,0,133,61,133,136xm261,-132v0,-64,-49,-115,-109,-115v-60,0,-110,51,-110,115v0,63,50,115,110,115v60,0,109,-52,109,-115xm202,-76v-47,29,-117,1,-117,-57v0,-57,69,-87,116,-57r-9,23v-30,-21,-78,-8,-78,34v0,41,48,55,79,34","w":303},"\u2117":{"d":"178,-153v0,-16,-18,-26,-38,-21r0,43v21,4,38,-4,38,-22xm206,-154v0,31,-25,51,-66,47r0,41r-27,0r0,-132v46,-10,93,5,93,44xm285,-132v0,75,-59,136,-133,136v-74,0,-134,-61,-134,-136v0,-75,60,-136,134,-136v74,0,133,61,133,136xm261,-132v0,-64,-49,-115,-109,-115v-60,0,-110,51,-110,115v0,63,50,115,110,115v60,0,109,-52,109,-115","w":303},"\u00ae":{"d":"49,-175r0,-62v20,-4,44,1,44,20v0,8,-4,15,-11,18r15,24r-15,0v-7,-7,-5,-22,-20,-21r0,21r-13,0xm68,-226v-10,-1,-5,12,-6,19v18,4,24,-18,6,-19xm69,-154v28,0,50,-24,50,-52v0,-29,-22,-52,-50,-52v-27,0,-49,23,-49,52v0,28,22,52,49,52xm69,-143v-34,0,-61,-29,-61,-63v0,-35,27,-63,61,-63v34,0,62,28,62,63v0,34,-28,63,-62,63","w":138},"\u2122":{"d":"172,-184r-18,0r-1,-39v-9,9,-13,21,-24,28r-22,-28r-1,39r-18,0v3,-26,-1,-59,6,-81r36,46v13,-15,22,-34,38,-46xm76,-246r-24,0r0,62r-20,0r0,-62r-23,0r0,-18r67,0r0,18","w":181},"\u2120":{"d":"31,-243v0,11,41,19,34,36v3,24,-39,31,-56,16r6,-16v7,7,28,13,31,0v-1,-11,-41,-18,-34,-36v-3,-22,36,-27,51,-16r-5,16v-6,-5,-25,-11,-27,0xm161,-184r-18,0r-1,-39v-9,9,-13,21,-24,28r-22,-28r-1,39r-18,0r4,-81v18,11,25,32,39,46v13,-15,22,-34,37,-46","w":170},"*":{"d":"128,-213r-39,10r26,30r-23,16r-21,-33r-21,33r-23,-16r26,-30r-39,-10r9,-26r37,15r-3,-40r28,0r-3,40r37,-15","w":142},"\u2020":{"d":"154,-171r-52,0r0,118r-37,0r0,-118r-53,0r0,-34r53,0r0,-59r37,0r0,59r52,0r0,34"},"\u2021":{"d":"156,-102r-54,0r0,49r-37,0r0,-49r-51,0r0,-34r51,0r0,-45r-53,0r0,-34r53,0r0,-49r37,0r0,49r52,0r0,34r-52,0r0,45r54,0r0,34"},"$":{"d":"89,-239r24,1r-2,26v18,3,32,8,43,15r-14,34v-9,-6,-20,-12,-32,-15r-5,56v81,19,65,122,-12,126r-2,26r-24,-2r2,-25v-22,-3,-41,-12,-55,-22r15,-34v13,9,28,18,43,21r5,-61v-77,-19,-66,-114,12,-120xm94,-31v31,-3,34,-43,5,-53xm84,-179v-31,3,-31,38,-4,48","w":172},"\u00a3":{"d":"165,-198r-14,35v-33,-27,-81,-11,-70,43r43,0r0,34r-43,0r0,50r82,0r0,36r-150,0r0,-36r27,0r0,-50r-26,0v5,-14,18,-19,26,-30v-5,-58,15,-96,74,-98v18,0,36,7,51,16","w":170,"k":{"7":-14,"3":-14,"2":-14,"1":-14}},"\u20ac":{"d":"33,-116r-23,0r0,-27r29,0v17,-64,116,-92,175,-51r-15,32v-37,-25,-100,-21,-117,19r91,0r0,27r-99,0v-1,8,-1,15,0,23r99,0r0,27r-90,0v17,38,82,43,119,18r13,32v-59,40,-160,16,-176,-50r-29,0r0,-27r23,0r0,-23","w":233,"k":{"9":4,"8":2,"6":6,"5":3,"4":9,"0":7}},"\u00a5":{"d":"188,-210r-55,89r40,0r0,30r-53,0r0,22r53,0r0,29r-53,0r0,40r-41,0r0,-40r-55,0r0,-29r55,0r0,-22r-55,0r0,-30r42,0r-57,-89r47,0r44,76r43,-76r45,0","w":196,"k":{"9":4,"8":4,"7":-4,"6":4,"3":-14}},"\u00a2":{"d":"74,29r2,-29v-38,-8,-63,-37,-63,-76v0,-44,32,-76,76,-80r2,-27r25,1r-3,26v15,3,28,9,38,15r-13,29v-8,-5,-17,-8,-27,-10r-8,92v13,0,24,-6,36,-12r12,29v-16,10,-33,15,-51,16r-2,27xm86,-123v-40,3,-45,77,-7,89","w":157},"#":{"d":"212,-158r-7,29r-38,0r-11,48r39,0r-7,29r-38,0r-11,52r-32,0r11,-52r-38,0r-12,52r-32,0r12,-52r-39,0r7,-29r38,0r10,-48r-38,0r7,-29r38,0r11,-52r32,0r-11,52r38,0r12,-52r32,0r-12,52r39,0xm135,-129r-39,0r-10,48r38,0","w":220},"\u00b6":{"d":"198,0r-31,0r0,-175v-6,-1,-14,-2,-23,-2r0,177r-31,0r0,-54v-49,3,-92,-25,-92,-74v0,-69,94,-99,177,-82r0,210xm113,-90r0,-86v-31,4,-48,22,-48,46v0,27,22,41,48,40","w":225},"\u00a7":{"d":"154,-105v0,14,-8,25,-21,33v32,29,0,76,-49,76v-23,0,-45,-8,-62,-20r16,-29v14,11,33,18,47,18v15,0,22,-5,22,-15v0,-25,-83,-14,-83,-63v0,-15,8,-27,21,-34v-32,-28,1,-75,48,-75v19,0,39,7,52,15r-13,29v-18,-13,-57,-21,-62,2v0,22,84,15,84,63xm116,-101v0,-10,-12,-15,-38,-23v-10,1,-16,7,-16,14v0,12,18,15,41,23v8,-2,13,-7,13,-14","w":171},"\u00aa":{"d":"120,-148r-34,0r0,-11v-21,26,-75,15,-75,-24v0,-33,48,-45,74,-29v4,-33,-31,-34,-57,-25r-3,-25v43,-15,95,-3,95,47r0,67xm63,-167v14,0,25,-7,22,-25v-11,-11,-41,-10,-41,9v0,10,7,16,19,16","w":133},"\u00ba":{"d":"132,-207v0,33,-23,62,-62,62v-39,0,-63,-29,-63,-62v0,-33,24,-61,63,-61v39,0,62,28,62,61xm98,-207v0,-22,-11,-35,-28,-35v-18,0,-28,13,-28,35v0,22,10,35,28,35v17,0,28,-13,28,-35","w":139},"\u00b0":{"d":"114,-209v0,22,-16,38,-40,38v-24,0,-41,-16,-41,-38v0,-22,17,-39,41,-39v24,0,40,17,40,39xm91,-210v0,-11,-7,-19,-17,-19v-10,0,-17,8,-17,19v0,12,7,20,17,20v10,0,17,-8,17,-20","w":147},"%":{"d":"114,-159v0,29,-17,54,-48,54v-31,0,-48,-25,-48,-54v0,-29,17,-54,48,-54v31,0,48,25,48,54xm222,-201r-171,207r-19,-15r171,-207xm236,-51v0,29,-17,55,-48,55v-31,0,-47,-26,-47,-55v0,-28,17,-54,48,-54v31,0,47,26,47,54xm85,-159v0,-18,-6,-31,-19,-31v-12,0,-19,13,-19,31v0,18,7,30,19,30v13,0,19,-12,19,-30xm207,-51v0,-18,-6,-30,-19,-30v-13,0,-19,12,-19,30v0,18,6,31,19,31v13,0,19,-13,19,-31","w":254},"\u2030":{"d":"85,-159v0,-18,-6,-31,-19,-31v-12,0,-19,13,-19,31v0,18,7,30,19,30v13,0,19,-12,19,-30xm114,-159v0,29,-17,54,-48,54v-31,0,-48,-25,-48,-54v0,-29,17,-54,48,-54v31,0,48,25,48,54xm222,-201r-171,207r-19,-15r171,-207xm207,-51v0,-18,-6,-30,-19,-30v-13,0,-19,12,-19,30v0,18,6,31,19,31v13,0,19,-13,19,-31xm236,-51v0,29,-17,55,-48,55v-31,0,-47,-26,-47,-55v0,-28,17,-54,48,-54v31,0,47,26,47,54xm317,-51v0,-18,-7,-30,-19,-30v-13,0,-19,12,-19,30v0,18,6,31,19,31v12,0,19,-13,19,-31xm346,-51v0,29,-17,55,-48,55v-31,0,-48,-26,-48,-55v0,-28,17,-54,48,-54v31,0,48,26,48,54","w":363},"\"":{"d":"84,-230r-53,71r-18,-12r40,-79xm147,-226r-53,71r-18,-12r40,-80","w":153,"k":{"\u00ec":-5}},"'":{"d":"84,-230r-53,71r-18,-12r40,-79","w":90,"k":{"\u00ec":-5}},"+":{"d":"144,-88r-45,0r0,47r-33,0r0,-47r-44,0r0,-32r44,0r0,-47r33,0r0,47r45,0r0,32"},"\u2212":{"d":"22,-88r0,-32r122,0r0,32r-122,0"},"\u00f7":{"d":"22,-89r0,-30r122,0r0,30r-122,0xm62,-154v0,-12,9,-21,21,-21v12,0,20,9,20,21v0,11,-8,20,-20,20v-12,0,-21,-9,-21,-20xm62,-53v0,-12,9,-21,21,-21v12,0,20,9,20,21v0,12,-8,21,-20,21v-12,0,-21,-9,-21,-21"},"=":{"d":"134,-117r-112,0r0,-31r112,0r0,31xm134,-60r-112,0r0,-30r112,0r0,30","w":155},"\u00d7":{"d":"22,-141r22,-22r37,37r37,-37r22,22r-38,37r38,38r-22,22r-37,-38r-37,38r-22,-22r37,-38","w":161},"<":{"d":"128,-41r-24,25r-90,-88r90,-88r24,25r-67,64","w":141},">":{"d":"128,-104r-90,88r-24,-25r67,-63r-67,-63r24,-25","w":141},"\u0192":{"d":"144,-209r-5,37v-33,-10,-49,13,-50,49r34,0r0,33r-38,0r-10,90r-40,0r10,-90r-30,0v7,-20,33,-20,35,-45v6,-57,39,-87,94,-74","w":151,"k":{"8":7,"7":-14,"6":11,"4":14,"3":-11,"2":-4,"1":-7}},"_":{"d":"187,0r-187,0r0,-24r187,0r0,24","w":187},"\u2190":{"d":"237,-80r-164,0r53,47r-23,24r-91,-85r0,-5r91,-85r23,25r-53,46r164,0r0,33","w":254},"\u2192":{"d":"18,-113r164,0r-53,-46r23,-25r91,85r0,5r-91,85r-23,-24r53,-47r-164,0r0,-33","w":254},"^":{"d":"147,-177r-39,0r-23,-30r-23,30r-37,0r53,-63r17,0","w":169},"~":{"d":"24,-133v29,-48,78,14,107,-21r15,23v-10,13,-25,21,-38,21v-25,0,-49,-27,-69,0","w":169},"\u00b4":{"d":"126,-204r-73,32r-10,-20r65,-48","w":169},"\u02dd":{"d":"95,-231r-52,56r-15,-13r40,-66xm152,-227r-53,55r-15,-13r41,-65","w":169},"`":{"d":"132,-192r-11,20r-74,-33r19,-35","w":169},"\u02c6":{"d":"147,-177r-39,0r-23,-31r-23,31r-37,0r53,-64r17,0","w":169},"\u02c7":{"d":"144,-239r-53,64r-16,0r-52,-64r38,0r24,31r23,-31r36,0","w":169},"\u02d8":{"d":"136,-225v0,27,-19,49,-51,49v-32,0,-52,-22,-52,-49r32,-3v0,16,8,25,20,25v13,0,19,-9,19,-25","w":169},"\u02dc":{"d":"24,-201v21,-31,57,-18,83,-8v9,0,16,-5,24,-14r15,24v-28,49,-79,-16,-107,21","w":169},"\u00af":{"d":"136,-181r-103,0r0,-31r103,0r0,31","w":169},"\u00a8":{"d":"140,-201v0,12,-10,23,-22,23v-13,0,-23,-11,-23,-23v0,-13,10,-22,23,-22v12,0,22,9,22,22xm75,-201v0,12,-10,23,-23,23v-12,0,-23,-11,-23,-23v0,-13,11,-22,23,-22v13,0,23,9,23,22","w":169},"\u02d9":{"d":"57,-201v0,-13,10,-22,22,-22v13,0,23,9,23,22v0,12,-10,23,-23,23v-12,0,-22,-11,-22,-23","w":158},"\u02da":{"d":"127,-216v0,22,-16,41,-42,41v-26,0,-43,-19,-43,-41v0,-22,17,-41,43,-41v26,0,42,19,42,41xm103,-216v0,-12,-8,-21,-18,-21v-10,0,-18,9,-18,21v0,12,8,20,18,20v10,0,18,-8,18,-20","w":169},"\u0326":{"d":"58,54v0,22,-17,49,-44,62r-4,-7v14,-12,21,-24,25,-37v-32,1,-30,-46,-2,-46v16,0,25,13,25,28","w":68,"k":{"\u0259":9,"\u0163":4,"\u0165":4,"\u015f":11,"\u00f5":9,"\u01ff":9,"\u00f8":9,"\u0119":9,"\u00e3":9,"\u0105":9,"t":4,"q":9,"V":-4,"Q":11,"J":27,".":4,",":4,"\u2026":4,"A":22,"\u00c1":22,"\u0102":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u0100":22,"\u0104":22,"\u00c5":22,"\u01fa":22,"\u00c3":22,"a":9,"\u00e1":9,"\u0103":9,"\u00e2":9,"\u00e4":9,"\u00e0":9,"\u0101":9,"\u00e5":9,"\u01fb":9,"\u00e6":9,"\u01fd":9,"c":9,"\u0107":9,"\u010d":9,"\u00e7":9,"\u010b":9,"d":9,"\u010f":9,"\u0111":9,"e":9,"\u00e9":9,"\u0115":9,"\u011b":9,"\u00ea":9,"\u00eb":9,"\u0117":9,"\u00e8":9,"\u0113":9,"f":5,"\ufb03":5,"\ufb04":5,"\ufb00":5,"\ufb01":5,"\ufb02":5,"g":9,"\u011f":9,"\u0123":9,"\u0121":9,"o":9,"\u00f3":9,"\u014f":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u0151":9,"\u014d":9,"\u0153":9,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"W":-4,"\u1e82":-4,"\u0174":-4,"\u1e84":-4,"\u1e80":-4,"T":-3,"\u0164":-3,"\u0162":-3,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11}},"\u00b8":{"d":"129,55v1,37,-56,47,-85,23r10,-22v13,8,24,12,35,12v8,0,13,-5,13,-13v0,-8,-9,-15,-35,-16v-1,-15,8,-30,10,-45r18,5r-5,19v29,7,39,21,39,37","w":169},"\u02db":{"d":"123,62v-15,25,-69,25,-69,-14v0,-20,13,-35,39,-61r14,10v-16,19,-24,33,-24,45v1,17,20,16,29,4","w":169},"\u00a0":{"w":0},"\u2003":{"w":360},"\u2002":{"w":180},"\u2004":{"w":119},"\u2005":{"w":90},"\u2009":{"w":47},"\u200a":{"w":27},"\u2007":{"w":187}}});
Cufon.registerFont({"w":158,"face":{"font-family":"Verlag Book","font-weight":325,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","bbox":"-20 -399 365 104","underline-thickness":"18","underline-position":"-18","stemh":"24","stemv":"28","unicode-range":"U+0020-U+FB04"},"glyphs":{" ":{"w":81},"\ufb03":{"d":"116,-263r-5,24v-33,-4,-50,3,-50,41r0,47r44,0r0,24r-44,0r0,127r-28,0r0,-127r-24,0v4,-13,17,-17,24,-27v-7,-70,13,-129,83,-109xm222,-263r-5,24v-33,-4,-50,3,-50,41r0,47r45,0r0,24r-45,0r0,127r-28,0r0,-127r-23,0v4,-13,16,-17,23,-27v-7,-70,13,-129,83,-109xm268,-203v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-19,18,-19v10,0,18,9,18,19xm264,0r-28,0r0,-151r28,0r0,151","w":286},"\ufb04":{"d":"116,-263r-5,24v-33,-4,-50,3,-50,41r0,47r44,0r0,24r-44,0r0,127r-28,0r0,-127r-24,0v4,-13,17,-17,24,-27v-7,-70,13,-129,83,-109xm222,-263r-5,24v-33,-4,-50,3,-50,41r0,47r45,0r0,24r-45,0r0,127r-28,0r0,-127r-23,0v4,-13,16,-17,23,-27v-7,-70,13,-129,83,-109xm264,0r-28,0r0,-264r28,0r0,264","w":287,"k":{"\u00ec":-11,"j":-11}},"\ufb00":{"d":"116,-263r-5,24v-33,-4,-50,3,-50,41r0,47r44,0r0,24r-44,0r0,127r-28,0r0,-127r-24,0v4,-13,17,-17,24,-27v-7,-70,13,-129,83,-109xm222,-263r-5,24v-33,-4,-50,3,-50,41r0,47r45,0r0,24r-45,0r0,127r-28,0r0,-127r-23,0v4,-13,16,-17,23,-27v-7,-70,13,-129,83,-109","w":212,"k":{"\u0105":4,"\u00e3":4,"\u012d":-7,"\u00ee":-7,"\u00ef":-7,"\u00ec":-22,"\u012b":-7,"\u0142":-11,"\/":7,"?":-20,"}":-29,"]":-29,"!":-11,")":-29,"-":7,"\u2013":7,"\u2014":7,".":25,",":25,"\u2026":25,"\u201d":-27,"\u2019":-27,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"b":-7,"h":-7,"k":-7,"l":-7,"\u0127":-7,"\u0137":-7,"\u013a":-7,"\u013e":-7,"\u013c":-7,"\u0140":-7,"\u201c":-23,"\u2018":-23,"\u00ae":-23,"\u2122":-23,"\u2120":-23}},"\ufb01":{"d":"162,-203v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-19,18,-19v10,0,18,9,18,19xm116,-263r-5,24v-33,-4,-50,3,-50,41r0,47r44,0r0,24r-44,0r0,127r-28,0r0,-127r-24,0v4,-13,17,-17,24,-27v-7,-70,13,-129,83,-109xm158,0r-28,0r0,-151r28,0r0,151","w":180},"\ufb02":{"d":"116,-263r-5,24v-33,-4,-50,3,-50,41r0,47r44,0r0,24r-44,0r0,127r-28,0r0,-127r-24,0v4,-13,17,-17,24,-27v-7,-70,13,-129,83,-109xm158,0r-28,0r0,-264r28,0r0,264","w":181,"k":{"\u00ec":-11,"j":-11}},"A":{"d":"243,0r-31,0r-31,-73r-118,0r-31,73r-30,0r118,-269r5,0xm171,-97r-49,-114r-49,114r98,0","w":245,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-4,"t":4,"\u0165":4,"\u0163":4,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":4,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,"\u201d":47,"\u2019":47,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":40,"\u2018":40,"\u00ae":27,"\u2122":27,"\u2120":27,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"B":{"d":"189,-72v0,37,-34,74,-96,74v-22,0,-45,-2,-64,-4r0,-259v19,-3,39,-5,61,-5v102,-2,125,100,45,130v41,10,54,36,54,64xm89,-146v86,3,83,-98,4,-95v-11,0,-26,1,-35,3r0,91v6,1,20,1,31,1xm158,-75v5,-34,-49,-57,-100,-48r0,97v47,11,106,-5,100,-49","w":200,"k":{"Y":7,"\u00dd":7,"\u0176":7,"\u0178":7,"\u1ef2":7,"-":-7,"\u2013":-7,"\u2014":-7,".":11,",":11,"\u2026":11}},"C":{"d":"247,-21v-21,13,-52,25,-87,25v-81,0,-140,-57,-140,-136v0,-78,60,-136,140,-136v35,0,66,12,87,25r-12,24v-22,-13,-53,-22,-78,-22v-67,0,-106,47,-106,109v0,95,110,138,187,87","w":257,"k":{"Q":11,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u015f":2,"\u0259":4,"\/":-5,"t":4,"\u0165":4,"\u0163":4,"\u0173":2,"v":11,"x":4,"\u00ff":11,"\u1ef3":11,"?":-7,"}":-18,"]":-18,"!":-7,")":-18,"-":7,"\u2013":7,"\u2014":7,"\u201d":-7,"\u2019":-7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":2,"\u015b":2,"\u0161":2,"\u0219":2,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":11,"\u1e83":11,"\u0175":11,"\u1e85":11,"\u1e81":11,"y":11,"\u00fd":11,"\u0177":11,"S":-2,"\u015a":-2,"\u0160":-2,"\u015e":-2,"\u0218":-2,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11}},"D":{"d":"248,-134v0,71,-49,136,-148,136v-27,0,-50,-2,-71,-4r0,-259v20,-3,42,-5,69,-5v99,0,150,64,150,132xm217,-134v0,-75,-69,-121,-159,-104r0,212v11,2,25,3,46,3v78,0,113,-48,113,-111","w":268,"k":{"\u0105":14,"\u00e3":14,"\u0119":7,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":7,"\u00f8":7,"\u01ff":7,"\u00f5":7,"p":7,"q":7,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":7,"\u0259":7,"\/":16,"t":4,"\u0165":4,"\u0163":4,"\u0173":7,"J":22,"V":14,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":25,",":25,"\u2026":25,"\u00c6":18,"\u01fc":18,"A":18,"\u00c1":18,"\u0102":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u0100":18,"\u0104":18,"\u00c5":18,"\u01fa":18,"\u00c3":18,"\u201d":18,"\u2019":18,"a":14,"\u00e1":14,"\u0103":14,"\u00e2":14,"\u00e4":14,"\u00e0":14,"\u0101":14,"\u00e5":14,"\u01fb":14,"\u00e6":14,"\u01fd":14,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":7,"\u00f3":7,"\u014f":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u0151":7,"\u014d":7,"\u0153":7,"s":7,"\u015b":7,"\u0161":7,"\u0219":7,"u":7,"\u00fa":7,"\u016d":7,"\u00fb":7,"\u00fc":7,"\u00f9":7,"\u0171":7,"\u016b":7,"\u016f":7,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"W":7,"\u1e82":7,"\u0174":7,"\u1e84":7,"\u1e80":7,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":22,"\u0164":22,"\u0162":22,"Z":14,"\u0179":14,"\u017d":14,"\u017b":14,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"E":{"d":"183,0r-154,0r0,-264r154,0r0,26r-125,0r0,91r113,0r0,26r-113,0r0,95r125,0r0,26","w":206,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":7,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-7,"t":11,"\u0165":11,"\u0163":11,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"F":{"d":"183,-238r-125,0r0,96r113,0r0,26r-113,0r0,116r-29,0r0,-264r154,0r0,26","w":193,"k":{"}":-11,"]":-11,")":-11,"\/":23,"?":-7,"&":11,"\u0259":14,"\u1ef3":4,"\u00ff":4,"\u0173":7,"\u0163":4,"\u0165":4,"\u015f":11,"\u0157":11,"\u0159":11,"\u0155":11,"\u00f5":14,"\u01ff":14,"\u00f8":14,"\u012f":2,"\u012b":2,"\u00ec":-13,"\u00ef":2,"\u00ee":2,"\u012d":2,"\u00ed":2,"\u0119":14,"\u00e3":18,"\u0105":18,"x":7,"v":4,"t":4,"r":11,"q":14,"p":11,"j":11,"i":2,"J":36,"-":11,"\u2013":11,"\u2014":11,".":40,",":40,"\u2026":40,"\u00c6":16,"\u01fc":16,"A":16,"\u00c1":16,"\u0102":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u0100":16,"\u0104":16,"\u00c5":16,"\u01fa":16,"\u00c3":16,":":7,";":7,"\u00ab":9,"\u2039":9,"\u201d":-11,"\u2019":-11,"a":18,"\u00e1":18,"\u0103":18,"\u00e2":18,"\u00e4":18,"\u00e0":18,"\u0101":18,"\u00e5":18,"\u01fb":18,"\u00e6":18,"\u01fd":18,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":7,"\ufb03":7,"\ufb04":7,"\ufb00":7,"\ufb01":7,"\ufb02":7,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":11,"n":11,"\u0144":11,"\u0148":11,"\u0146":11,"\u00f1":11,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":7,"\u00fa":7,"\u016d":7,"\u00fb":7,"\u00fc":7,"\u00f9":7,"\u0171":7,"\u016b":7,"\u016f":7,"w":4,"\u1e83":4,"\u0175":4,"\u1e85":4,"\u1e81":4,"y":4,"\u00fd":4,"\u0177":4,"z":4,"\u017a":4,"\u017e":4,"\u017c":4}},"G":{"d":"159,-131r98,0r0,104v-86,68,-237,17,-237,-105v0,-125,152,-172,236,-104r-15,23v-24,-18,-54,-29,-83,-29v-68,0,-107,52,-107,110v0,89,102,141,178,93r0,-65r-70,0r0,-27","w":279,"k":{"Y":9,"\u00dd":9,"\u0176":9,"\u0178":9,"\u1ef2":9,".":7,",":7,"\u2026":7,"T":5,"\u0164":5,"\u0162":5}},"H":{"d":"228,0r-29,0r0,-121r-141,0r0,121r-29,0r0,-264r29,0r0,117r141,0r0,-117r29,0r0,264","w":256,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":4,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"I":{"d":"59,0r-28,0r0,-264r28,0r0,264","w":90,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":4,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"J":{"d":"136,-264r0,186v8,74,-80,104,-131,64r15,-22v35,25,88,18,88,-43r0,-185r28,0","w":163,"k":{"\/":5,"\u0259":4,"\u0173":4,"\u015f":4,"\u0157":4,"\u0159":4,"\u0155":4,"\u00f5":4,"\u01ff":4,"\u00f8":4,"\u0142":4,"\u012f":4,"\u012b":4,"\u00ec":4,"\u00ef":4,"\u00ee":4,"\u012d":4,"\u00ed":4,"\u0119":4,"\u00e3":4,"\u0105":4,"r":4,"q":4,"p":4,"j":4,"i":4,"J":7,".":11,",":11,"\u2026":11,"\u00c6":4,"\u01fc":4,"A":4,"\u00c1":4,"\u0102":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u0100":4,"\u0104":4,"\u00c5":4,"\u01fa":4,"\u00c3":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"K":{"d":"215,0r-38,0r-119,-130r0,130r-29,0r0,-264r29,0r0,123r114,-123r37,0r-123,128","w":215,"k":{"Q":16,"\u0105":4,"\u00e3":4,"\u0119":11,"i":-4,"\u00ed":-4,"\u012d":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-11,"\u012b":-4,"\u012f":-4,"\u00f8":11,"\u01ff":11,"\u00f5":11,"q":11,"\u0259":11,"\/":-7,"t":7,"\u0165":7,"\u0163":7,"\u0173":5,"v":18,"\u00ff":13,"\u1ef3":13,"}":-11,"]":-11,")":-11,"-":32,"\u2013":32,"\u2014":32,"\u201d":-7,"\u2019":-7,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":11,"\u0107":11,"\u010d":11,"\u00e7":11,"\u010b":11,"d":11,"\u010f":11,"\u0111":11,"e":11,"\u00e9":11,"\u0115":11,"\u011b":11,"\u00ea":11,"\u00eb":11,"\u0117":11,"\u00e8":11,"\u0113":11,"g":11,"\u011f":11,"\u0123":11,"\u0121":11,"o":11,"\u00f3":11,"\u014f":11,"\u00f4":11,"\u00f6":11,"\u00f2":11,"\u0151":11,"\u014d":11,"\u0153":11,"u":5,"\u00fa":5,"\u016d":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u0171":5,"\u016b":5,"\u016f":5,"w":14,"\u1e83":14,"\u0175":14,"\u1e85":14,"\u1e81":14,"y":13,"\u00fd":13,"\u0177":13,"C":16,"\u0106":16,"\u010c":16,"\u00c7":16,"\u010a":16,"G":16,"\u011e":16,"\u0122":16,"\u0120":16,"O":16,"\u00d3":16,"\u014e":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u0150":16,"\u014c":16,"\u00d8":16,"\u01fe":16,"\u00d5":16,"\u0152":16}},"L":{"d":"183,0r-154,0r0,-264r29,0r0,238r125,0r0,26","w":189,"k":{"Q":22,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u0259":4,"\/":-11,"t":4,"\u0165":4,"\u0163":4,"\u0173":2,"v":14,"\u00ff":14,"\u1ef3":14,"V":25,"?":4,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"\u1ef2":32,"-":18,"\u2013":18,"\u2014":18,"\u201d":43,"\u2019":43,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":16,"\u1e83":16,"\u0175":16,"\u1e85":16,"\u1e81":16,"y":14,"\u00fd":14,"\u0177":14,"W":14,"\u1e82":14,"\u0174":14,"\u1e84":14,"\u1e80":14,"T":40,"\u0164":40,"\u0162":40,"C":22,"\u0106":22,"\u010c":22,"\u00c7":22,"\u010a":22,"G":22,"\u011e":22,"\u0122":22,"\u0120":22,"O":22,"\u00d3":22,"\u014e":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"\u0150":22,"\u014c":22,"\u00d8":22,"\u01fe":22,"\u00d5":22,"\u0152":22,"\u201c":25,"\u2018":25,"\u00ae":29,"\u2122":29,"\u2120":29,"U":11,"\u00da":11,"\u016c":11,"\u00db":11,"\u00dc":11,"\u00d9":11,"\u0170":11,"\u016a":11,"\u0172":11,"\u016e":11}},"M":{"d":"283,0r-30,0r-4,-186r-93,159r-4,0r-94,-160r-4,187r-29,0r10,-268r6,-1r114,199r112,-199r6,1","w":307,"k":{"\u0105":2,"\u00e3":2,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u015f":2,"\u0259":2,"\u0173":2,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"s":2,"\u015b":2,"\u0161":2,"\u0219":2,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2}},"N":{"d":"233,4r-4,1r-171,-205r0,200r-29,0r0,-267r6,-2r169,202r0,-197r29,0r0,268","w":261,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":4,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"O":{"d":"283,-132v0,79,-62,136,-133,136v-71,0,-130,-57,-130,-136v0,-79,62,-136,133,-136v71,0,130,57,130,136xm252,-132v0,-62,-42,-110,-100,-110v-59,0,-101,48,-101,110v0,62,42,111,101,111v58,0,100,-49,100,-111","w":302,"k":{"\u0105":7,"\u00e3":7,"\u0119":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":7,"\u015f":5,"\u0259":7,"\/":16,"\u0173":2,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":25,",":25,"\u2026":25,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"b":2,"h":2,"k":2,"l":2,"\u0127":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"P":{"d":"191,-182v0,62,-56,99,-133,89r0,93r-29,0r0,-261v19,-3,38,-5,60,-5v68,0,102,39,102,84xm89,-117v93,3,95,-123,5,-123v-12,0,-27,1,-36,3r0,118v9,1,21,2,31,2","w":198,"k":{"\/":16,"&":7,"\u0259":14,"\u0173":4,"\u015f":7,"\u0157":4,"\u0159":4,"\u0155":4,"\u00f5":14,"\u01ff":14,"\u00f8":14,"\u012f":-18,"\u012b":-25,"\u00ec":-29,"\u00ef":-25,"\u00ee":-25,"\u012d":-22,"\u00ed":-18,"\u0119":14,"\u00e3":9,"\u0105":9,"r":4,"q":14,"p":4,"i":-18,"J":36,"Y":5,"\u00dd":5,"\u0176":5,"\u0178":5,"\u1ef2":5,"-":14,"\u2013":14,"\u2014":14,".":43,",":43,"\u2026":43,"\u00c6":20,"\u01fc":20,"A":20,"\u00c1":20,"\u0102":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u0100":20,"\u0104":20,"\u00c5":20,"\u01fa":20,"\u00c3":20,":":11,";":11,"\u00ab":16,"\u2039":16,"a":9,"\u00e1":9,"\u0103":9,"\u00e2":9,"\u00e4":9,"\u00e0":9,"\u0101":9,"\u00e5":9,"\u01fb":9,"\u00e6":9,"\u01fd":9,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":7,"\u015b":7,"\u0161":7,"\u0219":7,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"W":-4,"\u1e82":-4,"\u0174":-4,"\u1e84":-4,"\u1e80":-4,"\u00bb":5,"\u203a":5}},"Q":{"d":"285,-12r-18,21v0,0,-19,-18,-36,-32v-84,66,-211,4,-211,-109v0,-79,61,-136,132,-136v72,0,131,57,131,136v0,35,-13,66,-32,89xm230,-62v49,-66,7,-180,-79,-180v-58,0,-100,48,-100,110v0,87,92,143,160,91r-49,-44r19,-21","w":302,"k":{"}":14,"]":14,")":14,"\/":5,"\u0259":4,"\u015f":2,"\u00f5":4,"\u01ff":4,"\u00f8":4,"\u0119":4,"\u00e3":7,"\u0105":7,"q":4,"X":14,"V":7,"J":7,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":14,",":14,"\u2026":14,"\u00c6":7,"\u01fc":7,"A":7,"\u00c1":7,"\u0102":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u0100":7,"\u0104":7,"\u00c5":7,"\u01fa":7,"\u00c3":7,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":2,"\u015b":2,"\u0161":2,"\u0219":2,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"R":{"d":"211,0r-35,0r-71,-104v-15,2,-31,0,-47,0r0,104r-29,0r0,-261v19,-3,39,-5,61,-5v119,0,134,128,44,156xm161,-185v4,-43,-53,-64,-103,-52r0,107v54,9,109,-10,103,-55","w":213,"k":{"Q":4,"\u0105":2,"\u00e3":2,"\u0119":5,"\u00f8":5,"\u01ff":5,"\u00f5":5,"q":5,"\u0259":5,"\/":-5,"\u0173":2,"V":4,"}":7,"]":7,")":7,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"\u1ef2":11,"-":18,"\u2013":18,"\u2014":18,"\u201d":7,"\u2019":7,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":5,"\u00f3":5,"\u014f":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u0151":5,"\u014d":5,"\u0153":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"W":2,"\u1e82":2,"\u0174":2,"\u1e84":2,"\u1e80":2,"T":5,"\u0164":5,"\u0162":5,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"S":{"d":"166,-71v0,76,-105,95,-157,51r14,-25v35,32,115,32,113,-23v0,-23,-9,-37,-52,-56v-46,-20,-62,-40,-62,-72v0,-62,91,-93,139,-54r-13,24v-30,-27,-98,-18,-98,28v0,18,13,33,45,48v55,25,71,44,71,79","w":180,"k":{"Q":4,"x":2,"J":4,"}":-7,"]":-7,")":-7,"Y":5,"\u00dd":5,"\u0176":5,"\u0178":5,"\u1ef2":5,"-":-11,"\u2013":-11,"\u2014":-11,".":11,",":11,"\u2026":11,"\u00c6":4,"\u01fc":4,"A":4,"\u00c1":4,"\u0102":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u0100":4,"\u0104":4,"\u00c5":4,"\u01fa":4,"\u00c3":4,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"T":{"d":"214,-238r-88,0r0,238r-29,0r0,-238r-88,0r0,-26r205,0r0,26","w":222,"k":{"\u0177":54,"\u016f":54,"\u016b":54,"\u0171":54,"\u00f9":54,"\u00fc":54,"\u00fb":54,"\u016d":54,"\u014d":61,"\u0151":61,"\u00f2":61,"\u00f6":61,"\u00f4":61,"\u014f":61,"\u0113":61,"\u00e8":61,"\u00eb":61,"\u00ea":61,"\u011b":61,"\u0115":61,"\u00e5":61,"\u0101":61,"\u00e0":61,"\u00e4":61,"\u00e2":61,"\u0103":61,"Q":18,"\u0105":61,"\u00e3":47,"\u0119":61,"i":22,"\u00ed":22,"\u012d":11,"\u00ee":11,"\u00ef":11,"\u00ec":-11,"\u012b":11,"\u012f":22,"j":22,"\u00f8":61,"\u01ff":61,"\u00f5":50,"p":54,"q":61,"r":54,"\u0155":54,"\u0159":54,"\u0157":54,"\u015f":61,"\u0259":61,"\/":41,"t":54,"\u0165":54,"\u0163":54,"\u0173":54,"v":54,"x":58,"\u00ff":43,"\u1ef3":32,"J":29,"?":-7,"}":-14,"]":-14,")":-14,"&":40,"\u0131":65,"-":47,"\u2013":47,"\u2014":47,".":36,",":36,"\u2026":36,"\u00c6":23,"\u01fc":23,"A":23,"\u00c1":23,"\u0102":23,"\u00c2":23,"\u00c4":23,"\u00c0":23,"\u0100":23,"\u0104":23,"\u00c5":23,"\u01fa":23,"\u00c3":23,":":40,";":40,"\u00ab":43,"\u2039":43,"\u201d":-5,"\u2019":-5,"a":61,"\u00e1":61,"\u01fb":61,"\u00e6":61,"\u01fd":61,"c":61,"\u0107":61,"\u010d":61,"\u00e7":61,"\u010b":61,"d":58,"\u010f":58,"\u0111":58,"e":61,"\u00e9":61,"\u0117":61,"f":14,"\ufb03":14,"\ufb04":14,"\ufb00":14,"\ufb01":14,"\ufb02":14,"g":61,"\u011f":61,"\u0123":61,"\u0121":61,"m":54,"n":54,"\u0144":54,"\u0148":54,"\u0146":54,"\u00f1":54,"o":61,"\u00f3":61,"\u0153":61,"s":61,"\u015b":61,"\u0161":61,"\u0219":61,"u":54,"\u00fa":54,"w":54,"\u1e83":54,"\u0175":54,"\u1e85":54,"\u1e81":54,"y":54,"\u00fd":54,"z":58,"\u017a":58,"\u017e":58,"\u017c":58,"\u00bb":43,"\u203a":43,"S":5,"\u015a":5,"\u0160":5,"\u015e":5,"\u0218":5,"C":18,"\u0106":18,"\u010c":18,"\u00c7":18,"\u010a":18,"G":18,"\u011e":18,"\u0122":18,"\u0120":18,"O":18,"\u00d3":18,"\u014e":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u0150":18,"\u014c":18,"\u00d8":18,"\u01fe":18,"\u00d5":18,"\u0152":18}},"U":{"d":"224,-95v0,61,-40,99,-99,99v-60,0,-99,-36,-99,-99r0,-169r28,0r0,167v0,53,30,75,71,75v41,0,70,-22,70,-75r0,-167r29,0r0,169","w":249,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":9,"t":2,"\u0165":2,"\u0163":2,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"V":{"d":"241,-264r-117,269r-5,0r-117,-269r32,0r88,209r88,-209r31,0","w":243,"k":{"}":-14,"]":-14,")":-14,"\/":31,"?":-7,"&":25,"\u0259":43,"\u1ef3":22,"\u00ff":22,"\u0173":32,"\u00f9":32,"\u0163":25,"\u0165":25,"\u015f":41,"\u0157":32,"\u0159":32,"\u0155":32,"\u00f5":43,"\u01ff":43,"\u00f8":43,"\u00f2":43,"\u012f":14,"\u012b":4,"\u00ec":-7,"\u00ef":4,"\u00ee":4,"\u012d":4,"\u00ed":14,"\u0119":43,"\u00e8":43,"\u00e3":36,"\u0105":36,"\u00e0":36,"x":23,"v":22,"t":25,"r":32,"q":43,"p":32,"j":14,"i":14,"Q":11,"J":25,"-":36,"\u2013":36,"\u2014":36,".":47,",":47,"\u2026":47,"\u00c6":25,"\u01fc":25,"A":25,"\u00c1":25,"\u0102":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u0100":25,"\u0104":25,"\u00c5":25,"\u01fa":25,"\u00c3":25,":":25,";":25,"\u00ab":29,"\u2039":29,"\u201d":-7,"\u2019":-7,"a":36,"\u00e1":36,"\u0103":36,"\u00e2":36,"\u00e4":36,"\u0101":36,"\u00e5":36,"\u01fb":36,"\u00e6":36,"\u01fd":36,"c":43,"\u0107":43,"\u010d":43,"\u00e7":43,"\u010b":43,"d":43,"\u010f":43,"\u0111":43,"e":43,"\u00e9":43,"\u0115":43,"\u011b":43,"\u00ea":43,"\u00eb":43,"\u0117":43,"\u0113":43,"f":7,"\ufb03":7,"\ufb04":7,"\ufb00":7,"\ufb01":7,"\ufb02":7,"g":43,"\u011f":43,"\u0123":43,"\u0121":43,"m":32,"n":32,"\u0144":32,"\u0148":32,"\u0146":32,"\u00f1":32,"o":43,"\u00f3":43,"\u014f":43,"\u00f4":43,"\u00f6":43,"\u0151":43,"\u014d":43,"\u0153":43,"s":41,"\u015b":41,"\u0161":41,"\u0219":41,"u":32,"\u00fa":32,"\u016d":32,"\u00fb":32,"\u00fc":32,"\u0171":32,"\u016b":32,"\u016f":32,"w":22,"\u1e83":22,"\u0175":22,"\u1e85":22,"\u1e81":22,"y":22,"\u00fd":22,"\u0177":22,"z":25,"\u017a":25,"\u017e":25,"\u017c":25,"\u00bb":29,"\u203a":29,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11}},"W":{"d":"326,-264r-73,268r-5,1r-84,-209r-82,209r-6,-1r-72,-268r29,0r52,195r78,-197r4,0r78,195r52,-193r29,0","w":329,"k":{"Q":7,"\u0105":23,"\u00e3":23,"\u0119":25,"i":7,"\u00ed":7,"\u012d":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-14,"\u012b":-4,"\u012f":7,"j":7,"\u00f8":25,"\u01ff":25,"\u00f5":25,"p":18,"q":25,"r":18,"\u0155":18,"\u0159":18,"\u0157":18,"\u015f":23,"\u0259":25,"\/":16,"t":7,"\u0165":7,"\u0163":7,"\u0173":18,"v":7,"x":11,"\u00ff":7,"\u1ef3":7,"J":22,"?":-7,"}":-14,"]":-14,")":-14,"&":11,"-":14,"\u2013":14,"\u2014":14,".":32,",":32,"\u2026":32,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,":":14,";":14,"\u00ab":11,"\u2039":11,"\u201d":-7,"\u2019":-7,"a":23,"\u00e1":23,"\u0103":23,"\u00e2":23,"\u00e4":23,"\u00e0":23,"\u0101":23,"\u00e5":23,"\u01fb":23,"\u00e6":23,"\u01fd":23,"c":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"d":25,"\u010f":25,"\u0111":25,"e":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":25,"\u011f":25,"\u0123":25,"\u0121":25,"m":18,"n":18,"\u0144":18,"\u0148":18,"\u0146":18,"\u00f1":18,"o":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u0153":25,"s":23,"\u015b":23,"\u0161":23,"\u0219":23,"u":18,"\u00fa":18,"\u016d":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,"\u0171":18,"\u016b":18,"\u016f":18,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":11,"\u017a":11,"\u017e":11,"\u017c":11,"\u00bb":11,"\u203a":11,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"X":{"d":"233,0r-34,0r-79,-111r-79,111r-34,0r97,-131r-97,-133r35,0r79,111r79,-111r33,0r-97,132","w":240,"k":{"}":-14,"]":-14,")":-14,"?":-4,"\u0259":11,"\u1ef3":14,"\u00ff":14,"\u0173":7,"\u0163":7,"\u0165":7,"\u015f":4,"\u00f5":11,"\u01ff":11,"\u00f8":11,"\u0119":11,"\u00e3":7,"\u0105":7,"v":14,"t":7,"q":11,"Q":18,"-":18,"\u2013":18,"\u2014":18,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":11,"\u0107":11,"\u010d":11,"\u00e7":11,"\u010b":11,"d":11,"\u010f":11,"\u0111":11,"e":11,"\u00e9":11,"\u0115":11,"\u011b":11,"\u00ea":11,"\u00eb":11,"\u0117":11,"\u00e8":11,"\u0113":11,"g":11,"\u011f":11,"\u0123":11,"\u0121":11,"o":11,"\u00f3":11,"\u014f":11,"\u00f4":11,"\u00f6":11,"\u00f2":11,"\u0151":11,"\u014d":11,"\u0153":11,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":7,"\u00fa":7,"\u016d":7,"\u00fb":7,"\u00fc":7,"\u00f9":7,"\u0171":7,"\u016b":7,"\u016f":7,"w":14,"\u1e83":14,"\u0175":14,"\u1e85":14,"\u1e81":14,"y":14,"\u00fd":14,"\u0177":14,"C":18,"\u0106":18,"\u010c":18,"\u00c7":18,"\u010a":18,"G":18,"\u011e":18,"\u0122":18,"\u0120":18,"O":18,"\u00d3":18,"\u014e":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u0150":18,"\u014c":18,"\u00d8":18,"\u01fe":18,"\u00d5":18,"\u0152":18}},"Y":{"d":"221,-264r-92,147r0,117r-29,0r0,-117r-93,-147r33,0r75,123r75,-123r31,0","w":228,"k":{"\u00f9":50,"\u00f2":58,"\u00e8":58,"\u011b":58,"\u00e0":58,"Q":23,"\u0105":58,"\u00e3":58,"\u0119":58,"i":25,"\u00ed":25,"\u012d":14,"\u00ee":14,"\u00ef":14,"\u00ec":4,"\u012b":14,"\u012f":25,"j":25,"\u00f8":58,"\u01ff":58,"\u00f5":58,"p":50,"q":58,"r":50,"\u0155":50,"\u0159":50,"\u0157":50,"\u015f":58,"\u0259":58,"\/":40,"t":43,"\u0165":43,"\u0163":43,"\u0173":50,"v":47,"x":47,"\u00ff":47,"\u1ef3":36,"J":25,"?":-4,"}":-14,"]":-14,")":-14,"&":40,"-":40,"\u2013":40,"\u2014":40,".":47,",":47,"\u2026":47,"\u00c6":27,"\u01fc":27,"A":27,"\u00c1":27,"\u0102":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u0100":27,"\u0104":27,"\u00c5":27,"\u01fa":27,"\u00c3":27,":":40,";":40,"\u00ab":43,"\u2039":43,"a":58,"\u00e1":58,"\u0103":58,"\u00e2":58,"\u00e4":58,"\u0101":58,"\u00e5":58,"\u01fb":58,"\u00e6":58,"\u01fd":58,"c":58,"\u0107":58,"\u010d":58,"\u00e7":58,"\u010b":58,"d":58,"\u010f":58,"\u0111":58,"e":58,"\u00e9":58,"\u0115":58,"\u00ea":58,"\u00eb":58,"\u0117":58,"\u0113":58,"f":25,"\ufb03":25,"\ufb04":25,"\ufb00":25,"\ufb01":25,"\ufb02":25,"g":58,"\u011f":58,"\u0123":58,"\u0121":58,"m":50,"n":50,"\u0144":50,"\u0148":50,"\u0146":50,"\u00f1":50,"o":58,"\u00f3":58,"\u014f":58,"\u00f4":58,"\u00f6":58,"\u0151":58,"\u014d":58,"\u0153":58,"s":58,"\u015b":58,"\u0161":58,"\u0219":58,"u":50,"\u00fa":50,"\u016d":50,"\u00fb":50,"\u00fc":50,"\u0171":50,"\u016b":50,"\u016f":50,"w":43,"\u1e83":43,"\u0175":43,"\u1e85":43,"\u1e81":43,"y":47,"\u00fd":47,"\u0177":47,"z":47,"\u017a":47,"\u017e":47,"\u017c":47,"\u00bb":43,"\u203a":43,"S":7,"\u015a":7,"\u0160":7,"\u015e":7,"\u0218":7,"C":23,"\u0106":23,"\u010c":23,"\u00c7":23,"\u010a":23,"G":23,"\u011e":23,"\u0122":23,"\u0120":23,"O":23,"\u00d3":23,"\u014e":23,"\u00d4":23,"\u00d6":23,"\u00d2":23,"\u0150":23,"\u014c":23,"\u00d8":23,"\u01fe":23,"\u00d5":23,"\u0152":23}},"Z":{"d":"208,-260r-149,234r147,0r0,26r-191,0r-2,-4r150,-234r-140,0r0,-26r183,0","w":223,"k":{"Q":14,"\u0105":7,"\u00e3":7,"\u0119":14,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":-4,"\u012b":4,"\u012f":4,"j":4,"\u0142":4,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":4,"q":14,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":4,"\u0259":14,"t":7,"\u0165":7,"\u0163":7,"\u0173":5,"v":22,"x":7,"\u00ff":18,"\u1ef3":18,"?":-4,"}":-11,"]":-11,")":-11,"&":7,"-":32,"\u2013":32,"\u2014":32,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":5,"\u00fa":5,"\u016d":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u0171":5,"\u016b":5,"\u016f":5,"w":22,"\u1e83":22,"\u0175":22,"\u1e85":22,"\u1e81":22,"y":18,"\u00fd":18,"\u0177":18,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4,"C":14,"\u0106":14,"\u010c":14,"\u00c7":14,"\u010a":14,"G":14,"\u011e":14,"\u0122":14,"\u0120":14,"O":14,"\u00d3":14,"\u014e":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u0150":14,"\u014c":14,"\u00d8":14,"\u01fe":14,"\u00d5":14,"\u0152":14}},"a":{"d":"140,0r-27,0r0,-16v-28,33,-101,22,-101,-30v0,-46,66,-57,100,-37v10,-49,-44,-53,-79,-39r-5,-24v52,-17,112,-9,112,56r0,90xm74,-20v20,0,43,-10,38,-39v-22,-16,-71,-21,-73,13v0,17,13,26,35,26","w":156,"k":{"\u201d":11,"\u2019":11}},"b":{"d":"169,-77v0,65,-75,105,-122,62r0,15r-27,0r0,-264r29,0r0,126v46,-36,120,-7,120,61xm141,-76v0,-52,-63,-70,-92,-36r0,71v26,37,92,18,92,-35","w":183,"k":{"\u00e3":2,"\u0105":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":25,"\u2019":25,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2}},"c":{"d":"148,-13v-51,37,-134,4,-134,-62v0,-65,81,-101,134,-64r-12,22v-36,-25,-94,-13,-94,42v0,52,59,65,96,41","w":154,"k":{"x":-5,".":-4,",":-4,"\u2026":-4}},"d":{"d":"163,0r-27,0r0,-15v-44,41,-122,7,-122,-59v0,-63,74,-103,121,-65r0,-125r28,0r0,264xm135,-41r0,-69v-26,-36,-93,-20,-93,35v0,51,66,72,93,34","w":183,"k":{"\u00ec":-11,"j":-11}},"e":{"d":"88,-154v48,0,71,39,65,87r-111,0v-2,41,57,56,98,37r5,24v-64,26,-131,-6,-131,-69v0,-41,27,-79,74,-79xm43,-89r85,0v-2,-23,-15,-41,-42,-41v-24,0,-40,15,-43,41","w":165,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"f":{"d":"116,-263r-5,24v-33,-4,-50,3,-50,41r0,47r44,0r0,24r-44,0r0,127r-28,0r0,-127r-24,0v4,-13,17,-17,24,-27v-7,-70,13,-129,83,-109","w":106,"k":{"\u0105":4,"\u00e3":4,"\u012d":-7,"\u00ee":-7,"\u00ef":-7,"\u00ec":-22,"\u012b":-7,"\u0142":-11,"\/":7,"?":-20,"}":-29,"]":-29,"!":-11,")":-29,"-":7,"\u2013":7,"\u2014":7,".":25,",":25,"\u2026":25,"\u201d":-27,"\u2019":-27,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"b":-7,"h":-7,"k":-7,"l":-7,"\u0127":-7,"\u0137":-7,"\u013a":-7,"\u013e":-7,"\u013c":-7,"\u0140":-7,"\u201c":-23,"\u2018":-23,"\u00ae":-23,"\u2122":-23,"\u2120":-23}},"g":{"d":"163,14v2,68,-59,77,-114,58r4,-26v36,13,84,15,82,-29r0,-30v-46,38,-121,4,-121,-61v0,-64,77,-104,122,-63r0,-14r27,0r0,165xm135,-39r0,-71v-27,-36,-98,-19,-93,36v-5,49,65,73,93,35","w":183,"k":{"\/":-5}},"h":{"d":"156,0r-29,0v-6,-47,21,-129,-31,-130v-17,0,-36,11,-47,24r0,106r-29,0r0,-264r29,0r0,135v30,-40,107,-31,107,26r0,103","w":174},"i":{"d":"54,-203v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-19,18,-19v10,0,18,9,18,19xm50,0r-28,0r0,-151r28,0r0,151","w":72,"k":{"\u012b":-11,"\u00ec":-14,"\u00ef":-11,"\u00ee":-4,"\u012d":-4}},"j":{"d":"55,-203v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-19,18,-19v10,0,18,9,18,19xm51,-151r0,184v1,44,-29,54,-67,45r3,-24v19,3,36,0,36,-19r0,-186r28,0","w":72,"k":{"\/":-4,"\u012b":-11,"\u00ec":-14,"\u00ef":-11,"\u00ee":-4,"\u012d":-4,".":7,",":7,"\u2026":7}},"k":{"d":"152,0r-36,0r-67,-75r0,75r-29,0r0,-264r29,0r0,179r64,-66r35,0r-73,70","w":151,"k":{"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u0259":4,"&":4,"-":14,"\u2013":14,"\u2014":14,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4}},"l":{"d":"50,0r-28,0r0,-264r28,0r0,264","w":71,"k":{"\u00ec":-11,"j":-11}},"m":{"d":"251,0r-28,0v-7,-46,21,-130,-28,-130v-17,0,-32,11,-45,25r0,105r-28,0r0,-95v4,-51,-58,-37,-73,-10r0,105r-29,0r0,-151r27,0r0,23v22,-28,86,-39,97,2v28,-37,107,-41,107,24r0,102","w":270},"n":{"d":"154,0r-29,0v-7,-46,21,-128,-30,-130v-17,0,-34,11,-46,24r0,106r-29,0r0,-151r27,0r0,23v30,-39,107,-34,107,25r0,103","w":172},"o":{"d":"167,-76v0,43,-30,79,-76,79v-46,0,-77,-36,-77,-79v0,-43,31,-78,77,-78v46,0,76,35,76,78xm139,-76v0,-33,-19,-55,-48,-55v-29,0,-49,22,-49,55v0,33,20,56,49,56v29,0,48,-23,48,-56","w":181,"k":{"\u0105":2,"\u00e3":2,"v":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2}},"p":{"d":"169,-77v0,61,-65,100,-120,69r0,86r-29,0r0,-229r27,0r0,15v44,-39,122,-11,122,59xm141,-76v5,-53,-64,-70,-93,-36r0,74v29,33,98,16,93,-38","w":183,"k":{"\u00e3":2,"\u0105":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2}},"q":{"d":"163,78r-28,0r0,-90v-45,35,-121,4,-121,-62v0,-65,77,-103,122,-64r0,-13r27,0r0,229xm135,-40r0,-70v-26,-36,-93,-20,-93,35v0,51,65,72,93,35","w":183,"k":{"\/":-9}},"r":{"d":"101,-126v-22,0,-42,8,-52,23r0,103r-29,0r0,-151r27,0r0,25v14,-19,34,-28,54,-28r0,28","w":106,"k":{"\/":9,"&":7,"\u0259":4,"\u1ef3":-4,"\u00ff":-4,"\u00f5":4,"\u01ff":4,"\u00f8":4,"\u0119":4,"\u00e3":4,"\u0105":4,"x":-4,"v":-4,"q":4,"-":7,"\u2013":7,"\u2014":7,".":22,",":22,"\u2026":22,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"w":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"y":-4,"\u00fd":-4,"\u0177":-4}},"s":{"d":"114,-45v0,51,-74,61,-104,28r14,-20v18,19,64,26,64,-5v0,-30,-70,-22,-70,-67v0,-43,64,-58,95,-31r-13,22v-14,-15,-56,-20,-56,6v0,26,70,20,70,67","w":126,"k":{"-":4,"\u2013":4,"\u2014":4,".":7,",":7,"\u2026":7}},"t":{"d":"102,-127r-45,0r0,85v-1,18,17,22,36,19r3,23v-38,9,-67,-1,-67,-45r0,-82r-24,0v4,-13,17,-17,24,-27r0,-26r28,-21r0,50r45,0r0,24","w":106,"k":{"\u1ef3":-4,"\u00ff":-4,"v":-4,"-":7,"\u2013":7,"\u2014":7,"w":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"y":-4,"\u00fd":-4,"\u0177":-4,"z":-4,"\u017a":-4,"\u017e":-4,"\u017c":-4}},"u":{"d":"152,0r-27,0r0,-21v-28,36,-106,31,-106,-28r0,-102r28,0v6,48,-21,129,32,130v17,0,33,-11,45,-23r0,-107r28,0r0,151","w":172},"v":{"d":"155,-151r-75,155r-5,0r-74,-155r32,0r46,106r46,-106r30,0","w":156,"k":{"\/":11,"?":7,"&":4,"\u0259":2,"\u00f5":2,"\u01ff":2,"\u00f8":2,"\u0119":2,"\u00e3":4,"\u0105":4,"q":2,".":29,",":29,"\u2026":29,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2}},"w":{"d":"213,-151r-54,155r-4,0r-46,-103r-47,103r-5,0r-54,-155r32,0r29,98r42,-99r5,0r44,99r28,-98r30,0","w":214,"k":{"\u0105":4,"\u00e3":4,"\/":4,"?":7,".":20,",":20,"\u2026":20,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4}},"x":{"d":"145,0r-32,0r-37,-55r-39,55r-30,0r55,-75r-55,-76r32,0r38,55r38,-55r30,0r-54,75","w":150,"k":{"\u0259":4,"\u00f5":4,"\u01ff":4,"\u00f8":4,"\u0119":4,"\u00e3":4,"\u0105":4,"q":4,"-":7,"\u2013":7,"\u2014":7,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4}},"y":{"d":"155,-151r-107,229r-28,0r45,-92r-64,-137r32,0r46,108r46,-108r30,0","w":156,"k":{"\u0105":4,"\u00e3":4,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u015f":2,"\u0259":2,"\/":11,"?":7,"&":5,".":32,",":32,"\u2026":32,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"s":2,"\u015b":2,"\u0161":2,"\u0219":2}},"z":{"d":"139,-147r-89,123r87,0r0,24r-129,0r-2,-4r89,-123r-82,0r0,-24r124,0","w":145,"k":{"-":4,"\u2013":4,"\u2014":4}},"\u00c1":{"d":"243,0r-31,0r-31,-73r-118,0r-31,73r-30,0r118,-269r5,0xm171,-97r-49,-114r-49,114r98,0xm179,-318r-68,32r-9,-16r63,-45","w":245,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-4,"t":4,"\u0165":4,"\u0163":4,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":4,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,"\u201d":47,"\u2019":47,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":40,"\u2018":40,"\u00ae":27,"\u2122":27,"\u2120":27,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u00e1":{"d":"140,0r-27,0r0,-16v-28,33,-101,22,-101,-30v0,-46,66,-57,100,-37v10,-49,-44,-53,-79,-39r-5,-24v52,-17,112,-9,112,56r0,90xm74,-20v20,0,43,-10,38,-39v-22,-16,-71,-21,-73,13v0,17,13,26,35,26xm138,-203r-69,32r-8,-15r63,-45","w":156,"k":{"\u201d":11,"\u2019":11}},"\u0102":{"d":"243,0r-31,0r-31,-73r-118,0r-31,73r-30,0r118,-269r5,0xm171,-97r-49,-114r-49,114r98,0xm166,-331v0,23,-16,42,-44,42v-27,0,-43,-19,-43,-42r26,-2v0,14,6,23,17,23v12,0,18,-9,18,-23","w":245,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-4,"t":4,"\u0165":4,"\u0163":4,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":4,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,"\u201d":47,"\u2019":47,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":40,"\u2018":40,"\u00ae":27,"\u2122":27,"\u2120":27,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u0103":{"d":"140,0r-27,0r0,-16v-28,33,-101,22,-101,-30v0,-46,66,-57,100,-37v10,-49,-44,-53,-79,-39r-5,-24v52,-17,112,-9,112,56r0,90xm74,-20v20,0,43,-10,38,-39v-22,-16,-71,-21,-73,13v0,17,13,26,35,26xm125,-216v0,23,-16,42,-44,42v-27,0,-44,-19,-44,-42r26,-2v0,14,7,23,18,23v12,0,18,-9,18,-23","w":156,"k":{"\u201d":11,"\u2019":11}},"\u00c2":{"d":"243,0r-31,0r-31,-73r-118,0r-31,73r-30,0r118,-269r5,0xm171,-97r-49,-114r-49,114r98,0xm175,-291r-30,0r-24,-31r-23,31r-28,0r48,-58r10,0","w":245,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-4,"t":4,"\u0165":4,"\u0163":4,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":4,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,"\u201d":47,"\u2019":47,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":40,"\u2018":40,"\u00ae":27,"\u2122":27,"\u2120":27,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u00e2":{"d":"140,0r-27,0r0,-16v-28,33,-101,22,-101,-30v0,-46,66,-57,100,-37v10,-49,-44,-53,-79,-39r-5,-24v52,-17,112,-9,112,56r0,90xm74,-20v20,0,43,-10,38,-39v-22,-16,-71,-21,-73,13v0,17,13,26,35,26xm134,-176r-30,0r-24,-31r-24,31r-28,0r48,-58r11,0","w":156,"k":{"\u201d":11,"\u2019":11}},"\u00c4":{"d":"243,0r-31,0r-31,-73r-118,0r-31,73r-30,0r118,-269r5,0xm171,-97r-49,-114r-49,114r98,0xm172,-311v0,10,-8,18,-18,18v-10,0,-19,-8,-19,-18v0,-10,9,-18,19,-18v10,0,18,8,18,18xm109,-311v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18","w":245,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-4,"t":4,"\u0165":4,"\u0163":4,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":4,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,"\u201d":47,"\u2019":47,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":40,"\u2018":40,"\u00ae":27,"\u2122":27,"\u2120":27,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u00e4":{"d":"140,0r-27,0r0,-16v-28,33,-101,22,-101,-30v0,-46,66,-57,100,-37v10,-49,-44,-53,-79,-39r-5,-24v52,-17,112,-9,112,56r0,90xm74,-20v20,0,43,-10,38,-39v-22,-16,-71,-21,-73,13v0,17,13,26,35,26xm130,-196v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18xm68,-196v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18","w":156,"k":{"\u201d":11,"\u2019":11}},"\u00c0":{"d":"243,0r-31,0r-31,-73r-118,0r-31,73r-30,0r118,-269r5,0xm171,-97r-49,-114r-49,114r98,0xm143,-301r-9,15r-69,-32r15,-28","w":245,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-4,"t":4,"\u0165":4,"\u0163":4,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":4,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,"\u201d":47,"\u2019":47,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":40,"\u2018":40,"\u00ae":27,"\u2122":27,"\u2120":27,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u00e0":{"d":"140,0r-27,0r0,-16v-28,33,-101,22,-101,-30v0,-46,66,-57,100,-37v10,-49,-44,-53,-79,-39r-5,-24v52,-17,112,-9,112,56r0,90xm74,-20v20,0,43,-10,38,-39v-22,-16,-71,-21,-73,13v0,17,13,26,35,26xm102,-186r-10,15r-69,-32r16,-28","w":156,"k":{"\u201d":11,"\u2019":11}},"\u0100":{"d":"243,0r-31,0r-31,-73r-118,0r-31,73r-30,0r118,-269r5,0xm171,-97r-49,-114r-49,114r98,0xm174,-296r-103,0r0,-24r103,0r0,24","w":245,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-4,"t":4,"\u0165":4,"\u0163":4,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":4,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,"\u201d":47,"\u2019":47,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":40,"\u2018":40,"\u00ae":27,"\u2122":27,"\u2120":27,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u0101":{"d":"140,0r-27,0r0,-16v-28,33,-101,22,-101,-30v0,-46,66,-57,100,-37v10,-49,-44,-53,-79,-39r-5,-24v52,-17,112,-9,112,56r0,90xm74,-20v20,0,43,-10,38,-39v-22,-16,-71,-21,-73,13v0,17,13,26,35,26xm133,-180r-103,0r0,-24r103,0r0,24","w":156,"k":{"\u201d":11,"\u2019":11}},"\u0104":{"d":"247,60v-15,27,-62,25,-62,-10v0,-14,5,-26,27,-50r-31,-73r-118,0r-31,73r-30,0r118,-269r5,0r118,269r-11,0v-18,22,-25,35,-25,46v1,19,20,17,29,4xm171,-97r-49,-114r-49,114r98,0","w":245,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-4,"t":4,"\u0165":4,"\u0163":4,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":4,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,"\u201d":47,"\u2019":47,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":40,"\u2018":40,"\u00ae":27,"\u2122":27,"\u2120":27,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u0105":{"d":"147,60v-14,28,-62,24,-62,-10v0,-14,6,-26,28,-50r0,-16v-28,33,-101,22,-101,-30v0,-46,66,-57,100,-37v10,-49,-44,-53,-79,-39r-5,-24v52,-17,112,-9,112,56r0,90r-8,0v-18,22,-24,35,-24,46v1,19,19,17,28,4xm74,-20v20,0,43,-10,38,-39v-22,-16,-71,-21,-73,13v0,17,13,26,35,26","w":156,"k":{"j":-11,"\u201d":11,"\u2019":11}},"\u00c5":{"d":"123,-328v47,0,51,68,8,73r112,255r-31,0r-31,-73r-118,0r-31,73r-30,0r112,-255v-42,-5,-37,-73,9,-73xm171,-97r-49,-114r-49,114r98,0xm141,-292v0,-12,-8,-20,-18,-20v-10,0,-19,8,-19,20v0,12,9,21,19,21v10,0,18,-9,18,-21","w":245,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-4,"t":4,"\u0165":4,"\u0163":4,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":4,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,"\u201d":47,"\u2019":47,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":40,"\u2018":40,"\u00ae":27,"\u2122":27,"\u2120":27,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u00e5":{"d":"140,0r-27,0r0,-16v-28,33,-101,22,-101,-30v0,-46,66,-57,100,-37v10,-49,-44,-53,-79,-39r-5,-24v52,-17,112,-9,112,56r0,90xm74,-20v20,0,43,-10,38,-39v-22,-16,-71,-21,-73,13v0,17,13,26,35,26xm119,-211v0,21,-14,36,-38,36v-24,0,-38,-15,-38,-36v0,-21,14,-37,38,-37v24,0,38,16,38,37xm99,-212v0,-12,-8,-20,-18,-20v-10,0,-18,8,-18,20v0,12,8,21,18,21v10,0,18,-9,18,-21","w":156,"k":{"\u201d":11,"\u2019":11}},"\u01fa":{"d":"123,-328v47,0,51,68,8,73r112,255r-31,0r-31,-73r-118,0r-31,73r-30,0r112,-255v-42,-5,-37,-73,9,-73xm171,-97r-49,-114r-49,114r98,0xm141,-292v0,-12,-8,-20,-18,-20v-10,0,-19,8,-19,20v0,12,9,21,19,21v10,0,18,-9,18,-21xm179,-370r-68,32r-9,-16r63,-45","w":245,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-4,"t":4,"\u0165":4,"\u0163":4,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":4,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,"\u201d":47,"\u2019":47,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":40,"\u2018":40,"\u00ae":27,"\u2122":27,"\u2120":27,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u01fb":{"d":"140,0r-27,0r0,-16v-28,33,-101,22,-101,-30v0,-46,66,-57,100,-37v10,-49,-44,-53,-79,-39r-5,-24v52,-17,112,-9,112,56r0,90xm74,-20v20,0,43,-10,38,-39v-22,-16,-71,-21,-73,13v0,17,13,26,35,26xm119,-211v0,21,-14,36,-38,36v-24,0,-38,-15,-38,-36v0,-21,14,-37,38,-37v24,0,38,16,38,37xm99,-212v0,-12,-8,-20,-18,-20v-10,0,-18,8,-18,20v0,12,8,21,18,21v10,0,18,-9,18,-21xm138,-293r-69,32r-8,-15r63,-45","w":156,"k":{"\u201d":11,"\u2019":11}},"\u00c3":{"d":"243,0r-31,0r-31,-73r-118,0r-31,73r-30,0r118,-269r5,0xm171,-97r-49,-114r-49,114r98,0xm70,-309v26,-46,69,17,94,-19r13,17v-26,46,-70,-16,-94,19","w":245,"k":{"Q":11,"\u0119":2,"\u00f8":2,"\u01ff":2,"\u00f5":2,"q":2,"\u0259":2,"\/":-4,"t":4,"\u0165":4,"\u0163":4,"v":14,"\u00ff":7,"\u1ef3":7,"J":-4,"V":22,"?":4,"Y":25,"\u00dd":25,"\u0176":25,"\u0178":25,"\u1ef2":25,"-":11,"\u2013":11,"\u2014":11,"\u201d":47,"\u2019":47,"c":2,"\u0107":2,"\u010d":2,"\u00e7":2,"\u010b":2,"d":2,"\u010f":2,"\u0111":2,"e":2,"\u00e9":2,"\u0115":2,"\u011b":2,"\u00ea":2,"\u00eb":2,"\u0117":2,"\u00e8":2,"\u0113":2,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":2,"\u011f":2,"\u0123":2,"\u0121":2,"o":2,"\u00f3":2,"\u014f":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u0151":2,"\u014d":2,"\u0153":2,"w":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"y":7,"\u00fd":7,"\u0177":7,"W":11,"\u1e82":11,"\u0174":11,"\u1e84":11,"\u1e80":11,"T":22,"\u0164":22,"\u0162":22,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11,"\u201c":40,"\u2018":40,"\u00ae":27,"\u2122":27,"\u2120":27,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u00e3":{"d":"140,0r-27,0r0,-16v-28,33,-101,22,-101,-30v0,-46,66,-57,100,-37v10,-49,-44,-53,-79,-39r-5,-24v52,-17,112,-9,112,56r0,90xm74,-20v20,0,43,-10,38,-39v-22,-16,-71,-21,-73,13v0,17,13,26,35,26xm29,-194v26,-47,70,19,93,-19r13,17v-26,47,-68,-16,-93,19","w":156,"k":{"\u201d":11,"\u2019":11}},"\u00c6":{"d":"344,0r-155,0r0,-85r-96,0r-60,85r-33,0r189,-264r155,0r0,26r-126,0r0,91r113,0r0,26r-113,0r0,95r126,0r0,26xm189,-109r0,-111r-78,111r78,0","w":367},"\u00e6":{"d":"112,-82v10,-50,-43,-54,-79,-40r-5,-24v35,-12,90,-13,102,19v37,-54,140,-19,121,60r-111,0v-2,41,57,55,98,37r5,24v-44,16,-97,10,-116,-21v-24,42,-115,42,-115,-19v0,-46,68,-57,100,-36xm225,-89v-2,-23,-15,-41,-42,-41v-24,0,-39,15,-42,41r84,0xm114,-55v-15,-18,-75,-27,-75,9v0,17,13,26,35,26v16,0,33,-10,40,-35","w":263,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u01fc":{"d":"344,0r-155,0r0,-85r-96,0r-60,85r-33,0r189,-264r155,0r0,26r-126,0r0,91r113,0r0,26r-113,0r0,95r126,0r0,26xm189,-109r0,-111r-78,111r78,0xm292,-318r-69,32r-8,-16r63,-45","w":367},"\u01fd":{"d":"112,-82v10,-50,-43,-54,-79,-40r-5,-24v35,-12,90,-13,102,19v37,-54,140,-19,121,60r-111,0v-2,41,57,55,98,37r5,24v-44,16,-97,10,-116,-21v-24,42,-115,42,-115,-19v0,-46,68,-57,100,-36xm225,-89v-2,-23,-15,-41,-42,-41v-24,0,-39,15,-42,41r84,0xm114,-55v-15,-18,-75,-27,-75,9v0,17,13,26,35,26v16,0,33,-10,40,-35xm189,-203r-69,32r-8,-15r63,-45","w":263,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u0106":{"d":"247,-21v-21,13,-52,25,-87,25v-81,0,-140,-57,-140,-136v0,-78,60,-136,140,-136v35,0,66,12,87,25r-12,24v-22,-13,-53,-22,-78,-22v-67,0,-106,47,-106,109v0,95,110,138,187,87xm208,-318r-69,32r-8,-16r63,-45","w":257,"k":{"Q":11,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u015f":2,"\u0259":4,"\/":-5,"t":4,"\u0165":4,"\u0163":4,"\u0173":2,"v":11,"x":4,"\u00ff":11,"\u1ef3":11,"?":-7,"}":-18,"]":-18,"!":-7,")":-18,"-":7,"\u2013":7,"\u2014":7,"\u201d":-7,"\u2019":-7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":2,"\u015b":2,"\u0161":2,"\u0219":2,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":11,"\u1e83":11,"\u0175":11,"\u1e85":11,"\u1e81":11,"y":11,"\u00fd":11,"\u0177":11,"S":-2,"\u015a":-2,"\u0160":-2,"\u015e":-2,"\u0218":-2,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11}},"\u0107":{"d":"148,-13v-51,37,-134,4,-134,-62v0,-65,81,-101,134,-64r-12,22v-36,-25,-94,-13,-94,42v0,52,59,65,96,41xm148,-203r-69,32r-8,-15r63,-45","w":154,"k":{"x":-5,".":-4,",":-4,"\u2026":-4}},"\u010c":{"d":"247,-21v-21,13,-52,25,-87,25v-81,0,-140,-57,-140,-136v0,-78,60,-136,140,-136v35,0,66,12,87,25r-12,24v-22,-13,-53,-22,-78,-22v-67,0,-106,47,-106,109v0,95,110,138,187,87xm204,-345r-48,58r-11,0r-46,-58r29,0r24,31r24,-31r28,0","w":257,"k":{"Q":11,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u015f":2,"\u0259":4,"\/":-5,"t":4,"\u0165":4,"\u0163":4,"\u0173":2,"v":11,"x":4,"\u00ff":11,"\u1ef3":11,"?":-7,"}":-18,"]":-18,"!":-7,")":-18,"-":7,"\u2013":7,"\u2014":7,"\u201d":-7,"\u2019":-7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":2,"\u015b":2,"\u0161":2,"\u0219":2,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":11,"\u1e83":11,"\u0175":11,"\u1e85":11,"\u1e81":11,"y":11,"\u00fd":11,"\u0177":11,"S":-2,"\u015a":-2,"\u0160":-2,"\u015e":-2,"\u0218":-2,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11}},"\u010d":{"d":"148,-13v-51,37,-134,4,-134,-62v0,-65,81,-101,134,-64r-12,22v-36,-25,-94,-13,-94,42v0,52,59,65,96,41xm144,-230r-49,58r-10,0r-46,-58r29,0r24,31r24,-31r28,0","w":154,"k":{"x":-5,".":-4,",":-4,"\u2026":-4}},"\u00c7":{"d":"195,53v2,34,-48,40,-74,20r8,-16v16,10,45,17,45,-4v0,-9,-10,-17,-34,-18v-2,-10,5,-21,6,-31v-74,-6,-126,-61,-126,-136v0,-78,60,-136,140,-136v35,0,66,12,87,25r-12,24v-22,-13,-53,-22,-78,-22v-67,0,-106,47,-106,109v0,95,110,138,187,87r9,24v-20,13,-50,24,-83,25r-4,14v27,6,35,21,35,35","w":257,"k":{"Q":11,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u015f":2,"\u0259":4,"\/":-5,"t":4,"\u0165":4,"\u0163":4,"\u0173":2,"v":11,"x":4,"\u00ff":11,"\u1ef3":11,"?":-7,"}":-18,"]":-18,"!":-7,")":-18,"-":7,"\u2013":7,"\u2014":7,"\u201d":-7,"\u2019":-7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":2,"\u015b":2,"\u0161":2,"\u0219":2,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":11,"\u1e83":11,"\u0175":11,"\u1e85":11,"\u1e81":11,"y":11,"\u00fd":11,"\u0177":11,"S":-2,"\u015a":-2,"\u0160":-2,"\u015e":-2,"\u0218":-2,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11}},"\u00e7":{"d":"124,53v2,34,-48,40,-74,20r8,-16v16,10,45,17,45,-4v0,-9,-10,-17,-34,-18v-2,-11,5,-23,7,-34v-37,-8,-62,-39,-62,-76v0,-65,81,-101,134,-64r-12,22v-36,-25,-94,-13,-94,42v0,52,59,65,96,41r10,21v-15,9,-34,17,-55,16r-4,15v27,6,35,21,35,35","w":154,"k":{"x":-5,".":-4,",":-4,"\u2026":-4}},"\u010a":{"d":"247,-21v-21,13,-52,25,-87,25v-81,0,-140,-57,-140,-136v0,-78,60,-136,140,-136v35,0,66,12,87,25r-12,24v-22,-13,-53,-22,-78,-22v-67,0,-106,47,-106,109v0,95,110,138,187,87xm133,-311v0,-10,8,-18,18,-18v10,0,19,8,19,18v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18","w":257,"k":{"Q":11,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u015f":2,"\u0259":4,"\/":-5,"t":4,"\u0165":4,"\u0163":4,"\u0173":2,"v":11,"x":4,"\u00ff":11,"\u1ef3":11,"?":-7,"}":-18,"]":-18,"!":-7,")":-18,"-":7,"\u2013":7,"\u2014":7,"\u201d":-7,"\u2019":-7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":2,"\u015b":2,"\u0161":2,"\u0219":2,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":11,"\u1e83":11,"\u0175":11,"\u1e85":11,"\u1e81":11,"y":11,"\u00fd":11,"\u0177":11,"S":-2,"\u015a":-2,"\u0160":-2,"\u015e":-2,"\u0218":-2,"C":11,"\u0106":11,"\u010c":11,"\u00c7":11,"\u010a":11,"G":11,"\u011e":11,"\u0122":11,"\u0120":11,"O":11,"\u00d3":11,"\u014e":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u0150":11,"\u014c":11,"\u00d8":11,"\u01fe":11,"\u00d5":11,"\u0152":11}},"\u010b":{"d":"148,-13v-51,37,-134,4,-134,-62v0,-65,81,-101,134,-64r-12,22v-36,-25,-94,-13,-94,42v0,52,59,65,96,41xm73,-196v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":154,"k":{"x":-5,".":-4,",":-4,"\u2026":-4}},"\u010e":{"d":"248,-134v0,71,-49,136,-148,136v-27,0,-50,-2,-71,-4r0,-259v20,-3,42,-5,69,-5v99,0,150,64,150,132xm217,-134v0,-75,-69,-121,-159,-104r0,212v11,2,25,3,46,3v78,0,113,-48,113,-111xm183,-345r-48,58r-10,0r-47,-58r29,0r24,31r24,-31r28,0","w":268,"k":{"\u0105":14,"\u00e3":14,"\u0119":7,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":7,"\u00f8":7,"\u01ff":7,"\u00f5":7,"p":7,"q":7,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":7,"\u0259":7,"\/":16,"t":4,"\u0165":4,"\u0163":4,"\u0173":7,"J":22,"V":14,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":25,",":25,"\u2026":25,"\u00c6":18,"\u01fc":18,"A":18,"\u00c1":18,"\u0102":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u0100":18,"\u0104":18,"\u00c5":18,"\u01fa":18,"\u00c3":18,"\u201d":18,"\u2019":18,"a":14,"\u00e1":14,"\u0103":14,"\u00e2":14,"\u00e4":14,"\u00e0":14,"\u0101":14,"\u00e5":14,"\u01fb":14,"\u00e6":14,"\u01fd":14,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":7,"\u00f3":7,"\u014f":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u0151":7,"\u014d":7,"\u0153":7,"s":7,"\u015b":7,"\u0161":7,"\u0219":7,"u":7,"\u00fa":7,"\u016d":7,"\u00fb":7,"\u00fc":7,"\u00f9":7,"\u0171":7,"\u016b":7,"\u016f":7,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"W":7,"\u1e82":7,"\u0174":7,"\u1e84":7,"\u1e80":7,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":22,"\u0164":22,"\u0162":22,"Z":14,"\u0179":14,"\u017d":14,"\u017b":14,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u010f":{"d":"163,0r-27,0r0,-15v-44,41,-122,7,-122,-59v0,-63,74,-103,121,-65r0,-125r28,0r0,264xm135,-41r0,-69v-26,-36,-93,-20,-93,35v0,51,66,72,93,34xm197,-264r27,4v0,31,-12,52,-32,68r-14,-10v13,-15,18,-34,19,-62","w":183,"k":{"}":-47,"]":-47,")":-54,"\u0142":-32,"j":-22,"i":-22,"\u201d":-40,"\u2019":-40,"f":-14,"\ufb03":-14,"\ufb04":-14,"\ufb00":-14,"\ufb01":-14,"\ufb02":-14,"b":-40,"h":-40,"k":-40,"l":-40,"\u0127":-40,"\u0137":-40,"\u013a":-40,"\u013e":-40,"\u013c":-40,"\u0140":-40,"\"":-11,"'":-11,"\u201c":-40,"\u2018":-40,"\u00ae":-47,"\u2122":-47,"\u2120":-47}},"\u0110":{"d":"256,-134v0,71,-50,136,-149,136v-27,0,-50,-2,-71,-4r0,-119r-32,0r0,-26r32,0r0,-114v20,-3,42,-5,69,-5v99,0,151,64,151,132xm224,-134v0,-75,-68,-122,-159,-104r0,91r39,0r0,26r-39,0r0,95v11,2,25,3,46,3v78,0,113,-48,113,-111","w":275,"k":{"\u0105":14,"\u00e3":14,"\u0119":7,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":7,"\u00f8":7,"\u01ff":7,"\u00f5":7,"p":7,"q":7,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":7,"\u0259":7,"\/":16,"t":4,"\u0165":4,"\u0163":4,"\u0173":7,"J":22,"V":14,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":25,",":25,"\u2026":25,"\u00c6":18,"\u01fc":18,"A":18,"\u00c1":18,"\u0102":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u0100":18,"\u0104":18,"\u00c5":18,"\u01fa":18,"\u00c3":18,"\u201d":18,"\u2019":18,"a":14,"\u00e1":14,"\u0103":14,"\u00e2":14,"\u00e4":14,"\u00e0":14,"\u0101":14,"\u00e5":14,"\u01fb":14,"\u00e6":14,"\u01fd":14,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":7,"\u00f3":7,"\u014f":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u0151":7,"\u014d":7,"\u0153":7,"s":7,"\u015b":7,"\u0161":7,"\u0219":7,"u":7,"\u00fa":7,"\u016d":7,"\u00fb":7,"\u00fc":7,"\u00f9":7,"\u0171":7,"\u016b":7,"\u016f":7,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"W":7,"\u1e82":7,"\u0174":7,"\u1e84":7,"\u1e80":7,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":22,"\u0164":22,"\u0162":22,"Z":14,"\u0179":14,"\u017d":14,"\u017b":14,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u0111":{"d":"163,0r-27,0r0,-15v-44,41,-122,7,-122,-59v0,-63,74,-103,121,-65r0,-63r-52,0r0,-23r52,0r0,-39r28,0r0,39r21,0r0,23r-21,0r0,202xm135,-41r0,-69v-26,-36,-93,-20,-93,35v0,51,66,72,93,34","w":183,"k":{"\u00ec":-11,"j":-7}},"\u00c9":{"d":"183,0r-154,0r0,-264r154,0r0,26r-125,0r0,91r113,0r0,26r-113,0r0,95r125,0r0,26xm164,-318r-69,32r-8,-16r63,-45","w":206,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":7,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-7,"t":11,"\u0165":11,"\u0163":11,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u00e9":{"d":"88,-154v48,0,71,39,65,87r-111,0v-2,41,57,56,98,37r5,24v-64,26,-131,-6,-131,-69v0,-41,27,-79,74,-79xm43,-89r85,0v-2,-23,-15,-41,-42,-41v-24,0,-40,15,-43,41xm144,-203r-69,32r-8,-15r63,-45","w":165,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u0114":{"d":"183,0r-154,0r0,-264r154,0r0,26r-125,0r0,91r113,0r0,26r-113,0r0,95r125,0r0,26xm151,-331v0,23,-16,42,-44,42v-27,0,-44,-19,-44,-42r26,-2v0,14,7,23,18,23v12,0,18,-9,18,-23","w":206,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":7,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-7,"t":11,"\u0165":11,"\u0163":11,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u0115":{"d":"88,-154v48,0,71,39,65,87r-111,0v-2,41,57,56,98,37r5,24v-64,26,-131,-6,-131,-69v0,-41,27,-79,74,-79xm43,-89r85,0v-2,-23,-15,-41,-42,-41v-24,0,-40,15,-43,41xm131,-216v0,23,-16,42,-44,42v-27,0,-43,-19,-43,-42r25,-2v0,14,7,23,18,23v12,0,18,-9,18,-23","w":165,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u011a":{"d":"183,0r-154,0r0,-264r154,0r0,26r-125,0r0,91r113,0r0,26r-113,0r0,95r125,0r0,26xm159,-345r-48,58r-10,0r-47,-58r30,0r24,31r23,-31r28,0","w":206,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":7,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-7,"t":11,"\u0165":11,"\u0163":11,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u011b":{"d":"88,-154v48,0,71,39,65,87r-111,0v-2,41,57,56,98,37r5,24v-64,26,-131,-6,-131,-69v0,-41,27,-79,74,-79xm43,-89r85,0v-2,-23,-15,-41,-42,-41v-24,0,-40,15,-43,41xm140,-230r-49,58r-10,0r-46,-58r29,0r24,31r24,-31r28,0","w":165,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u00ca":{"d":"183,0r-154,0r0,-264r154,0r0,26r-125,0r0,91r113,0r0,26r-113,0r0,95r125,0r0,26xm159,-291r-29,0r-24,-31r-24,31r-28,0r48,-58r11,0","w":206,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":7,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-7,"t":11,"\u0165":11,"\u0163":11,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u00ea":{"d":"88,-154v48,0,71,39,65,87r-111,0v-2,41,57,56,98,37r5,24v-64,26,-131,-6,-131,-69v0,-41,27,-79,74,-79xm43,-89r85,0v-2,-23,-15,-41,-42,-41v-24,0,-40,15,-43,41xm140,-176r-30,0r-24,-31r-24,31r-27,0r47,-58r11,0","w":165,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u00cb":{"d":"183,0r-154,0r0,-264r154,0r0,26r-125,0r0,91r113,0r0,26r-113,0r0,95r125,0r0,26xm156,-311v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18xm94,-311v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18","w":206,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":7,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-7,"t":11,"\u0165":11,"\u0163":11,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u00eb":{"d":"88,-154v48,0,71,39,65,87r-111,0v-2,41,57,56,98,37r5,24v-64,26,-131,-6,-131,-69v0,-41,27,-79,74,-79xm43,-89r85,0v-2,-23,-15,-41,-42,-41v-24,0,-40,15,-43,41xm136,-196v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18xm74,-196v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18","w":165,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u0116":{"d":"183,0r-154,0r0,-264r154,0r0,26r-125,0r0,91r113,0r0,26r-113,0r0,95r125,0r0,26xm89,-311v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":206,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":7,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-7,"t":11,"\u0165":11,"\u0163":11,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u0117":{"d":"88,-154v48,0,71,39,65,87r-111,0v-2,41,57,56,98,37r5,24v-64,26,-131,-6,-131,-69v0,-41,27,-79,74,-79xm43,-89r85,0v-2,-23,-15,-41,-42,-41v-24,0,-40,15,-43,41xm69,-196v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":165,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u00c8":{"d":"183,0r-154,0r0,-264r154,0r0,26r-125,0r0,91r113,0r0,26r-113,0r0,95r125,0r0,26xm127,-301r-9,15r-69,-32r15,-28","w":206,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":7,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-7,"t":11,"\u0165":11,"\u0163":11,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u00e8":{"d":"88,-154v48,0,71,39,65,87r-111,0v-2,41,57,56,98,37r5,24v-64,26,-131,-6,-131,-69v0,-41,27,-79,74,-79xm43,-89r85,0v-2,-23,-15,-41,-42,-41v-24,0,-40,15,-43,41xm108,-186r-10,15r-68,-32r15,-28","w":165,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u0112":{"d":"183,0r-154,0r0,-264r154,0r0,26r-125,0r0,91r113,0r0,26r-113,0r0,95r125,0r0,26xm159,-296r-104,0r0,-24r104,0r0,24","w":206,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":7,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-7,"t":11,"\u0165":11,"\u0163":11,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u0113":{"d":"88,-154v48,0,71,39,65,87r-111,0v-2,41,57,56,98,37r5,24v-64,26,-131,-6,-131,-69v0,-41,27,-79,74,-79xm43,-89r85,0v-2,-23,-15,-41,-42,-41v-24,0,-40,15,-43,41xm139,-180r-103,0r0,-24r103,0r0,24","w":165,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u0118":{"d":"188,60v-14,28,-62,24,-62,-10v0,-14,6,-27,28,-50r-125,0r0,-264r154,0r0,26r-125,0r0,91r113,0r0,26r-113,0r0,95r125,0r0,26r-9,0v-18,22,-25,35,-25,46v1,19,19,17,28,4","w":206,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":7,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-7,"t":11,"\u0165":11,"\u0163":11,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u0119":{"d":"88,-154v48,0,71,39,65,87r-111,0v-2,41,57,56,98,37r5,23v-20,21,-31,40,-31,53v1,19,20,17,29,4r10,10v-14,28,-62,24,-62,-10v0,-14,7,-29,28,-50v-60,14,-105,-24,-105,-75v0,-41,27,-79,74,-79xm43,-89r85,0v-2,-23,-15,-41,-42,-41v-24,0,-40,15,-43,41","w":165,"k":{"j":-7,".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u00d0":{"d":"256,-134v0,71,-50,136,-149,136v-27,0,-50,-2,-71,-4r0,-119r-32,0r0,-26r32,0r0,-114v20,-3,42,-5,69,-5v99,0,151,64,151,132xm224,-134v0,-75,-68,-122,-159,-104r0,91r39,0r0,26r-39,0r0,95v11,2,25,3,46,3v78,0,113,-48,113,-111","w":275,"k":{"\u0105":14,"\u00e3":14,"\u0119":7,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":7,"\u00f8":7,"\u01ff":7,"\u00f5":7,"p":7,"q":7,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":7,"\u0259":7,"\/":16,"t":4,"\u0165":4,"\u0163":4,"\u0173":7,"J":22,"V":14,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":25,",":25,"\u2026":25,"\u00c6":18,"\u01fc":18,"A":18,"\u00c1":18,"\u0102":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u0100":18,"\u0104":18,"\u00c5":18,"\u01fa":18,"\u00c3":18,"\u201d":18,"\u2019":18,"a":14,"\u00e1":14,"\u0103":14,"\u00e2":14,"\u00e4":14,"\u00e0":14,"\u0101":14,"\u00e5":14,"\u01fb":14,"\u00e6":14,"\u01fd":14,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":7,"\u00f3":7,"\u014f":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u0151":7,"\u014d":7,"\u0153":7,"s":7,"\u015b":7,"\u0161":7,"\u0219":7,"u":7,"\u00fa":7,"\u016d":7,"\u00fb":7,"\u00fc":7,"\u00f9":7,"\u0171":7,"\u016b":7,"\u016f":7,"z":4,"\u017a":4,"\u017e":4,"\u017c":4,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"W":7,"\u1e82":7,"\u0174":7,"\u1e84":7,"\u1e80":7,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":22,"\u0164":22,"\u0162":22,"Z":14,"\u0179":14,"\u017d":14,"\u017b":14,"U":4,"\u00da":4,"\u016c":4,"\u00db":4,"\u00dc":4,"\u00d9":4,"\u0170":4,"\u016a":4,"\u0172":4,"\u016e":4}},"\u00f0":{"d":"54,-182r-14,-17r26,-23v-12,-8,-25,-15,-38,-21r12,-22v16,7,31,16,45,26r23,-22r15,18r-21,18v40,34,66,82,66,142v0,51,-32,86,-77,86v-51,0,-77,-38,-77,-82v0,-66,80,-99,120,-54v-8,-26,-25,-53,-50,-75xm140,-76v0,-31,-19,-55,-50,-55v-28,0,-48,21,-48,54v0,30,19,56,49,56v31,0,49,-23,49,-55","w":182},"\u011e":{"d":"159,-131r98,0r0,104v-86,68,-237,17,-237,-105v0,-125,152,-172,236,-104r-15,23v-24,-18,-54,-29,-83,-29v-68,0,-107,52,-107,110v0,89,102,141,178,93r0,-65r-70,0r0,-27xm198,-331v0,23,-16,42,-44,42v-27,0,-43,-19,-43,-42r26,-2v0,14,6,23,17,23v12,0,18,-9,18,-23","w":279,"k":{"Y":9,"\u00dd":9,"\u0176":9,"\u0178":9,"\u1ef2":9,".":7,",":7,"\u2026":7,"T":5,"\u0164":5,"\u0162":5}},"\u011f":{"d":"163,14v2,68,-59,77,-114,58r4,-26v36,13,84,15,82,-29r0,-30v-46,38,-121,4,-121,-61v0,-64,77,-104,122,-63r0,-14r27,0r0,165xm135,-39r0,-71v-27,-36,-98,-19,-93,36v-5,49,65,73,93,35xm140,-216v0,23,-16,42,-44,42v-27,0,-44,-19,-44,-42r26,-2v0,14,7,23,18,23v12,0,18,-9,18,-23","w":183,"k":{"\/":-5}},"\u0122":{"d":"159,-131r98,0r0,104v-86,68,-237,17,-237,-105v0,-125,152,-172,236,-104r-15,23v-24,-18,-54,-29,-83,-29v-68,0,-107,52,-107,110v0,89,102,141,178,93r0,-65r-70,0r0,-27xm173,48v0,17,-11,41,-37,56r-4,-6v13,-12,20,-26,23,-36v-25,0,-24,-36,-1,-36v13,0,19,10,19,22","w":279,"k":{"Y":9,"\u00dd":9,"\u0176":9,"\u0178":9,"\u1ef2":9,".":7,",":7,"\u2026":7,"T":5,"\u0164":5,"\u0162":5}},"\u0123":{"d":"163,14v2,68,-59,77,-114,58r4,-26v36,13,84,15,82,-29r0,-30v-46,38,-121,4,-121,-61v0,-64,77,-104,122,-63r0,-14r27,0r0,165xm135,-39r0,-71v-27,-36,-98,-19,-93,36v-5,49,65,73,93,35xm77,-209v0,-17,11,-41,37,-56r4,6v-13,12,-20,26,-23,36v25,0,24,36,1,36v-13,0,-19,-10,-19,-22","w":183,"k":{"\/":-5}},"\u0120":{"d":"159,-131r98,0r0,104v-86,68,-237,17,-237,-105v0,-125,152,-172,236,-104r-15,23v-24,-18,-54,-29,-83,-29v-68,0,-107,52,-107,110v0,89,102,141,178,93r0,-65r-70,0r0,-27xm136,-311v0,-10,8,-18,18,-18v10,0,19,8,19,18v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18","w":279,"k":{"Y":9,"\u00dd":9,"\u0176":9,"\u0178":9,"\u1ef2":9,".":7,",":7,"\u2026":7,"T":5,"\u0164":5,"\u0162":5}},"\u0121":{"d":"163,14v2,68,-59,77,-114,58r4,-26v36,13,84,15,82,-29r0,-30v-46,38,-121,4,-121,-61v0,-64,77,-104,122,-63r0,-14r27,0r0,165xm135,-39r0,-71v-27,-36,-98,-19,-93,36v-5,49,65,73,93,35xm78,-196v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":183,"k":{"\/":-5}},"\u0126":{"d":"228,0r-29,0r0,-121r-142,0r0,121r-28,0r0,-195r-29,0r0,-25r29,0r0,-44r28,0r0,44r142,0r0,-44r29,0r0,44r28,0r0,25r-28,0r0,195xm57,-147r142,0r0,-48r-142,0r0,48","w":256,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":4,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u0127":{"d":"156,0r-29,0v-6,-47,21,-129,-31,-130v-17,0,-36,11,-47,24r0,106r-29,0r0,-202r-20,0r0,-23r20,0r0,-39r29,0r0,39r51,0r0,23r-51,0r0,73v30,-40,107,-31,107,26r0,103","w":174},"\u00cd":{"d":"59,0r-28,0r0,-264r28,0r0,264xm102,-318r-69,32r-9,-16r63,-45","w":89,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":4,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00ed":{"d":"52,0r-29,0r0,-151r29,0r0,151xm94,-203r-68,32r-9,-15r63,-45","w":74,"k":{"}":-11,")":-11,"\u0142":-11,"j":-14,"i":-14,"\u201d":-14,"\u2019":-14,"b":-11,"h":-11,"k":-11,"l":-11,"\u0127":-11,"\u0137":-11,"\u013a":-11,"\u013e":-11,"\u013c":-11,"\u0140":-11,"\"":-11,"'":-11,"\u201c":-18,"\u2018":-18,"\u00ae":-14,"\u2122":-14,"\u2120":-14}},"\u012c":{"d":"59,0r-28,0r0,-264r28,0r0,264xm89,-331v0,23,-16,42,-44,42v-27,0,-44,-19,-44,-42r26,-2v0,14,7,23,18,23v12,0,18,-9,18,-23","w":89,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":4,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u012d":{"d":"52,0r-29,0r0,-151r29,0r0,151xm81,-216v0,23,-16,42,-44,42v-27,0,-43,-19,-43,-42r26,-2v0,14,6,23,17,23v12,0,18,-9,18,-23","w":74,"k":{"j":-4,"i":-4}},"\u00ce":{"d":"59,0r-28,0r0,-264r28,0r0,264xm97,-291r-29,0r-24,-31r-24,31r-28,0r48,-58r10,0","w":89,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":4,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00ee":{"d":"52,0r-29,0r0,-151r29,0r0,151xm90,-176r-30,0r-24,-31r-23,31r-28,0r48,-58r10,0","w":74,"k":{"j":-4,"i":-4}},"\u00cf":{"d":"59,0r-28,0r0,-264r28,0r0,264xm94,-311v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18xm32,-311v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,19,8,19,18","w":89,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":4,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00ef":{"d":"52,0r-29,0r0,-151r29,0r0,151xm87,-196v0,10,-8,18,-18,18v-10,0,-19,-8,-19,-18v0,-10,9,-18,19,-18v10,0,18,8,18,18xm24,-196v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18","w":74,"k":{"j":-11,"i":-11}},"\u0130":{"d":"59,0r-28,0r0,-264r28,0r0,264xm27,-311v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":89,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":4,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u0131":{"d":"52,0r-29,0r0,-151r29,0r0,151","w":74},"\u00cc":{"d":"59,0r-28,0r0,-264r28,0r0,264xm65,-301r-9,15r-69,-32r15,-28","w":89,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":4,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00ec":{"d":"52,0r-29,0r0,-151r29,0r0,151xm58,-186r-9,15r-69,-32r15,-28","w":74},"\u012a":{"d":"59,0r-28,0r0,-264r28,0r0,264xm96,-296r-103,0r0,-24r103,0r0,24","w":89,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":4,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u012b":{"d":"52,0r-29,0r0,-151r29,0r0,151xm89,-180r-103,0r0,-24r103,0r0,24","w":74,"k":{"j":-11,"i":-11,"f":-7,"\ufb03":-7,"\ufb04":-7,"\ufb00":-7,"\ufb01":-7,"\ufb02":-7}},"\u012e":{"d":"71,60v-15,27,-62,25,-62,-10v0,-14,5,-27,27,-50r-5,0r0,-264r28,0r0,264r-3,0v-18,22,-25,35,-25,46v1,19,20,17,29,4","w":89,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":4,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u012f":{"d":"62,60v-14,28,-62,24,-62,-10v0,-14,6,-27,28,-50r-6,0r0,-151r28,0v-2,49,4,106,-2,151v-18,22,-25,35,-25,46v1,19,19,17,28,4xm54,-203v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-19,18,-19v10,0,18,9,18,19","w":72,"k":{")":-4,"j":-11}},"\u0136":{"d":"215,0r-38,0r-119,-130r0,130r-29,0r0,-264r29,0r0,123r114,-123r37,0r-123,128xm132,43v0,17,-12,40,-38,55r-4,-5v13,-12,20,-26,23,-36v-24,0,-23,-36,-1,-36v13,0,20,10,20,22","w":215,"k":{"Q":16,"\u0105":4,"\u00e3":4,"\u0119":11,"i":-4,"\u00ed":-4,"\u012d":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-11,"\u012b":-4,"\u012f":-4,"\u00f8":11,"\u01ff":11,"\u00f5":11,"q":11,"\u0259":11,"\/":-7,"t":7,"\u0165":7,"\u0163":7,"\u0173":5,"v":18,"\u00ff":13,"\u1ef3":13,"}":-11,"]":-11,")":-11,"-":32,"\u2013":32,"\u2014":32,"\u201d":-7,"\u2019":-7,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":11,"\u0107":11,"\u010d":11,"\u00e7":11,"\u010b":11,"d":11,"\u010f":11,"\u0111":11,"e":11,"\u00e9":11,"\u0115":11,"\u011b":11,"\u00ea":11,"\u00eb":11,"\u0117":11,"\u00e8":11,"\u0113":11,"g":11,"\u011f":11,"\u0123":11,"\u0121":11,"o":11,"\u00f3":11,"\u014f":11,"\u00f4":11,"\u00f6":11,"\u00f2":11,"\u0151":11,"\u014d":11,"\u0153":11,"u":5,"\u00fa":5,"\u016d":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u0171":5,"\u016b":5,"\u016f":5,"w":14,"\u1e83":14,"\u0175":14,"\u1e85":14,"\u1e81":14,"y":13,"\u00fd":13,"\u0177":13,"C":16,"\u0106":16,"\u010c":16,"\u00c7":16,"\u010a":16,"G":16,"\u011e":16,"\u0122":16,"\u0120":16,"O":16,"\u00d3":16,"\u014e":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u0150":16,"\u014c":16,"\u00d8":16,"\u01fe":16,"\u00d5":16,"\u0152":16}},"\u0137":{"d":"152,0r-36,0r-67,-75r0,75r-29,0r0,-264r29,0r0,179r64,-66r35,0r-73,70xm97,48v0,17,-12,41,-38,56r-4,-6v13,-12,20,-26,23,-36v-24,0,-23,-36,-1,-36v13,0,20,10,20,22","w":151,"k":{"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u0259":4,"&":4,"-":14,"\u2013":14,"\u2014":14,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4}},"\u0139":{"d":"183,0r-154,0r0,-264r29,0r0,238r125,0r0,26xm116,-318r-68,32r-9,-16r63,-45","w":189,"k":{"Q":22,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u0259":4,"\/":-11,"t":4,"\u0165":4,"\u0163":4,"\u0173":2,"v":14,"\u00ff":14,"\u1ef3":14,"V":25,"?":4,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"\u1ef2":32,"-":18,"\u2013":18,"\u2014":18,"\u201d":43,"\u2019":43,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":16,"\u1e83":16,"\u0175":16,"\u1e85":16,"\u1e81":16,"y":14,"\u00fd":14,"\u0177":14,"W":14,"\u1e82":14,"\u0174":14,"\u1e84":14,"\u1e80":14,"T":40,"\u0164":40,"\u0162":40,"C":22,"\u0106":22,"\u010c":22,"\u00c7":22,"\u010a":22,"G":22,"\u011e":22,"\u0122":22,"\u0120":22,"O":22,"\u00d3":22,"\u014e":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"\u0150":22,"\u014c":22,"\u00d8":22,"\u01fe":22,"\u00d5":22,"\u0152":22,"\u201c":25,"\u2018":25,"\u00ae":29,"\u2122":29,"\u2120":29,"U":11,"\u00da":11,"\u016c":11,"\u00db":11,"\u00dc":11,"\u00d9":11,"\u0170":11,"\u016a":11,"\u0172":11,"\u016e":11}},"\u013a":{"d":"50,0r-28,0r0,-264r28,0r0,264xm104,-314r-68,32r-9,-16r63,-45","w":71,"k":{"\u00ec":-11,"j":-11}},"\u013d":{"d":"183,0r-154,0r0,-264r29,0r0,238r125,0r0,26xm103,-264r27,4v0,31,-13,52,-33,68r-14,-10v13,-15,19,-34,20,-62","w":189,"k":{"Q":22,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u0259":4,"\/":-11,"t":4,"\u0165":4,"\u0163":4,"\u0173":2,"v":14,"\u00ff":14,"\u1ef3":14,"V":25,"?":4,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"\u1ef2":32,"-":18,"\u2013":18,"\u2014":18,"\u201d":43,"\u2019":43,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":16,"\u1e83":16,"\u0175":16,"\u1e85":16,"\u1e81":16,"y":14,"\u00fd":14,"\u0177":14,"W":14,"\u1e82":14,"\u0174":14,"\u1e84":14,"\u1e80":14,"T":40,"\u0164":40,"\u0162":40,"C":22,"\u0106":22,"\u010c":22,"\u00c7":22,"\u010a":22,"G":22,"\u011e":22,"\u0122":22,"\u0120":22,"O":22,"\u00d3":22,"\u014e":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"\u0150":22,"\u014c":22,"\u00d8":22,"\u01fe":22,"\u00d5":22,"\u0152":22,"\u201c":25,"\u2018":25,"\u00ae":29,"\u2122":29,"\u2120":29,"U":11,"\u00da":11,"\u016c":11,"\u00db":11,"\u00dc":11,"\u00d9":11,"\u0170":11,"\u016a":11,"\u0172":11,"\u016e":11}},"\u013e":{"d":"50,0r-28,0r0,-264r28,0r0,264xm84,-264r27,4v0,31,-13,52,-33,68r-14,-10v13,-15,19,-34,20,-62","w":71,"k":{"}":-47,"]":-47,")":-50,"\u0142":-32,"j":-22,"i":-22,"\u201d":-40,"\u2019":-40,"f":-14,"\ufb03":-14,"\ufb04":-14,"\ufb00":-14,"\ufb01":-14,"\ufb02":-14,"b":-36,"h":-36,"k":-36,"l":-36,"\u0127":-36,"\u0137":-36,"\u013a":-36,"\u013e":-36,"\u013c":-36,"\u0140":-36,"\"":-11,"'":-11,"\u201c":-40,"\u2018":-40,"\u00ae":-47,"\u2122":-47,"\u2120":-47}},"\u013b":{"d":"183,0r-154,0r0,-264r29,0r0,238r125,0r0,26xm121,48v0,17,-11,41,-37,56r-4,-6v13,-12,20,-26,23,-36v-25,0,-24,-36,-1,-36v13,0,19,10,19,22","w":189,"k":{"Q":22,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u0259":4,"\/":-11,"t":4,"\u0165":4,"\u0163":4,"\u0173":2,"v":14,"\u00ff":14,"\u1ef3":14,"V":25,"?":4,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"\u1ef2":32,"-":18,"\u2013":18,"\u2014":18,"\u201d":43,"\u2019":43,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":16,"\u1e83":16,"\u0175":16,"\u1e85":16,"\u1e81":16,"y":14,"\u00fd":14,"\u0177":14,"W":14,"\u1e82":14,"\u0174":14,"\u1e84":14,"\u1e80":14,"T":40,"\u0164":40,"\u0162":40,"C":22,"\u0106":22,"\u010c":22,"\u00c7":22,"\u010a":22,"G":22,"\u011e":22,"\u0122":22,"\u0120":22,"O":22,"\u00d3":22,"\u014e":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"\u0150":22,"\u014c":22,"\u00d8":22,"\u01fe":22,"\u00d5":22,"\u0152":22,"\u201c":25,"\u2018":25,"\u00ae":29,"\u2122":29,"\u2120":29,"U":11,"\u00da":11,"\u016c":11,"\u00db":11,"\u00dc":11,"\u00d9":11,"\u0170":11,"\u016a":11,"\u0172":11,"\u016e":11}},"\u013c":{"d":"50,0r-28,0r0,-264r28,0r0,264xm54,48v0,17,-11,41,-37,56r-4,-6v13,-12,20,-26,23,-36v-25,0,-24,-36,-1,-36v13,0,19,10,19,22","w":71,"k":{"\u00ec":-11,"j":-11}},"\u013f":{"d":"183,0r-154,0r0,-264r29,0r0,238r125,0r0,26xm125,-134v0,10,8,18,18,18v10,0,18,-8,18,-18v0,-10,-8,-18,-18,-18v-10,0,-18,8,-18,18","w":189,"k":{"Q":22,"\u0119":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":4,"\u0259":4,"\/":-11,"t":4,"\u0165":4,"\u0163":4,"\u0173":2,"v":14,"\u00ff":14,"\u1ef3":14,"V":25,"?":4,"Y":32,"\u00dd":32,"\u0176":32,"\u0178":32,"\u1ef2":32,"-":18,"\u2013":18,"\u2014":18,"\u201d":43,"\u2019":43,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"w":16,"\u1e83":16,"\u0175":16,"\u1e85":16,"\u1e81":16,"y":14,"\u00fd":14,"\u0177":14,"W":14,"\u1e82":14,"\u0174":14,"\u1e84":14,"\u1e80":14,"T":40,"\u0164":40,"\u0162":40,"C":22,"\u0106":22,"\u010c":22,"\u00c7":22,"\u010a":22,"G":22,"\u011e":22,"\u0122":22,"\u0120":22,"O":22,"\u00d3":22,"\u014e":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"\u0150":22,"\u014c":22,"\u00d8":22,"\u01fe":22,"\u00d5":22,"\u0152":22,"\u201c":25,"\u2018":25,"\u00ae":29,"\u2122":29,"\u2120":29,"U":11,"\u00da":11,"\u016c":11,"\u00db":11,"\u00dc":11,"\u00d9":11,"\u0170":11,"\u016a":11,"\u0172":11,"\u016e":11}},"\u0140":{"d":"50,0r-28,0r0,-264r28,0r0,264xm68,-132v0,10,8,18,18,18v10,0,18,-8,18,-18v0,-10,-8,-18,-18,-18v-10,0,-18,8,-18,18","w":100},"\u0141":{"d":"183,0r-154,0r0,-109r-21,9r0,-28r21,-10r0,-126r29,0r0,114r31,-15r0,29r-31,14r0,96r125,0r0,26","w":189},"\u0142":{"d":"67,-129r-15,7r0,122r-29,0r0,-107r-15,7r0,-28r15,-8r0,-128r29,0r0,114r15,-8r0,29","w":75},"\u0143":{"d":"233,4r-4,1r-171,-205r0,200r-29,0r0,-267r6,-2r169,202r0,-197r29,0r0,268xm188,-312r-69,32r-8,-16r63,-45","w":261,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":4,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u0144":{"d":"154,0r-29,0v-7,-46,21,-128,-30,-130v-17,0,-34,11,-46,24r0,106r-29,0r0,-151r27,0r0,23v30,-39,107,-34,107,25r0,103xm144,-203r-69,32r-8,-15r63,-45","w":172},"\u0147":{"d":"233,4r-4,1r-171,-205r0,200r-29,0r0,-267r6,-2r169,202r0,-197r29,0r0,268xm183,-339r-48,57r-10,0r-47,-57r29,0r24,30r24,-30r28,0","w":261,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":4,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u0148":{"d":"154,0r-29,0v-7,-46,21,-128,-30,-130v-17,0,-34,11,-46,24r0,106r-29,0r0,-151r27,0r0,23v30,-39,107,-34,107,25r0,103xm139,-230r-48,58r-10,0r-47,-58r29,0r24,31r24,-31r28,0","w":172},"\u0145":{"d":"233,4r-4,1r-171,-205r0,200r-29,0r0,-267r6,-2r169,202r0,-197r29,0r0,268xm149,43v0,17,-11,40,-37,55r-4,-5v13,-12,20,-26,23,-36v-25,0,-24,-36,-1,-36v13,0,19,10,19,22","w":261,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":4,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u0146":{"d":"154,0r-29,0v-7,-46,21,-128,-30,-130v-17,0,-34,11,-46,24r0,106r-29,0r0,-151r27,0r0,23v30,-39,107,-34,107,25r0,103xm105,48v0,17,-11,41,-37,56r-4,-6v13,-12,20,-26,23,-36v-25,0,-24,-36,-1,-36v13,0,19,10,19,22","w":172},"\u00d1":{"d":"233,4r-4,1r-171,-205r0,200r-29,0r0,-267r6,-2r169,202r0,-197r29,0r0,268xm78,-303v27,-48,70,17,94,-20r13,17v-26,48,-69,-17,-94,19","w":261,"k":{"\u0105":4,"\u00e3":4,"\u0119":4,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":7,"q":4,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":4,"\u0259":4,"t":4,"\u0165":4,"\u0163":4,"\u0173":4,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":4,"\u015b":4,"\u0161":4,"\u0219":4,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00f1":{"d":"154,0r-29,0v-7,-46,21,-128,-30,-130v-17,0,-34,11,-46,24r0,106r-29,0r0,-151r27,0r0,23v30,-39,107,-34,107,25r0,103xm35,-194v27,-47,69,19,93,-19r13,17v-26,48,-69,-16,-93,19","w":172},"\u00d3":{"d":"283,-132v0,79,-62,136,-133,136v-71,0,-130,-57,-130,-136v0,-79,62,-136,133,-136v71,0,130,57,130,136xm252,-132v0,-62,-42,-110,-100,-110v-59,0,-101,48,-101,110v0,62,42,111,101,111v58,0,100,-49,100,-111xm208,-318r-69,32r-8,-16r63,-45","w":302,"k":{"\u0105":7,"\u00e3":7,"\u0119":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":7,"\u015f":5,"\u0259":7,"\/":16,"\u0173":2,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":25,",":25,"\u2026":25,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"b":2,"h":2,"k":2,"l":2,"\u0127":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u00f3":{"d":"167,-76v0,43,-30,79,-76,79v-46,0,-77,-36,-77,-79v0,-43,31,-78,77,-78v46,0,76,35,76,78xm139,-76v0,-33,-19,-55,-48,-55v-29,0,-49,22,-49,55v0,33,20,56,49,56v29,0,48,-23,48,-56xm148,-203r-69,32r-8,-15r63,-45","w":181,"k":{"\u0105":2,"\u00e3":2,"v":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2}},"\u014e":{"d":"283,-132v0,79,-62,136,-133,136v-71,0,-130,-57,-130,-136v0,-79,62,-136,133,-136v71,0,130,57,130,136xm252,-132v0,-62,-42,-110,-100,-110v-59,0,-101,48,-101,110v0,62,42,111,101,111v58,0,100,-49,100,-111xm195,-331v0,23,-16,42,-44,42v-27,0,-43,-19,-43,-42r26,-2v0,14,6,23,17,23v12,0,18,-9,18,-23","w":302,"k":{"\u0105":7,"\u00e3":7,"\u0119":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":7,"\u015f":5,"\u0259":7,"\/":16,"\u0173":2,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":25,",":25,"\u2026":25,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"b":2,"h":2,"k":2,"l":2,"\u0127":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u014f":{"d":"167,-76v0,43,-30,79,-76,79v-46,0,-77,-36,-77,-79v0,-43,31,-78,77,-78v46,0,76,35,76,78xm139,-76v0,-33,-19,-55,-48,-55v-29,0,-49,22,-49,55v0,33,20,56,49,56v29,0,48,-23,48,-56xm135,-216v0,23,-16,42,-44,42v-27,0,-44,-19,-44,-42r26,-2v0,14,7,23,18,23v12,0,18,-9,18,-23","w":181,"k":{"\u0105":2,"\u00e3":2,"v":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2}},"\u00d4":{"d":"283,-132v0,79,-62,136,-133,136v-71,0,-130,-57,-130,-136v0,-79,62,-136,133,-136v71,0,130,57,130,136xm252,-132v0,-62,-42,-110,-100,-110v-59,0,-101,48,-101,110v0,62,42,111,101,111v58,0,100,-49,100,-111xm204,-291r-30,0r-24,-31r-24,31r-27,0r48,-58r10,0","w":302,"k":{"\u0105":7,"\u00e3":7,"\u0119":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":7,"\u015f":5,"\u0259":7,"\/":16,"\u0173":2,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":25,",":25,"\u2026":25,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"b":2,"h":2,"k":2,"l":2,"\u0127":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u00f4":{"d":"167,-76v0,43,-30,79,-76,79v-46,0,-77,-36,-77,-79v0,-43,31,-78,77,-78v46,0,76,35,76,78xm139,-76v0,-33,-19,-55,-48,-55v-29,0,-49,22,-49,55v0,33,20,56,49,56v29,0,48,-23,48,-56xm143,-176r-29,0r-24,-31r-24,31r-28,0r48,-58r10,0","w":181,"k":{"\u0105":2,"\u00e3":2,"v":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2}},"\u00d6":{"d":"283,-132v0,79,-62,136,-133,136v-71,0,-130,-57,-130,-136v0,-79,62,-136,133,-136v71,0,130,57,130,136xm252,-132v0,-62,-42,-110,-100,-110v-59,0,-101,48,-101,110v0,62,42,111,101,111v58,0,100,-49,100,-111xm201,-311v0,10,-8,18,-18,18v-10,0,-19,-8,-19,-18v0,-10,9,-18,19,-18v10,0,18,8,18,18xm138,-311v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18","w":302,"k":{"\u0105":7,"\u00e3":7,"\u0119":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":7,"\u015f":5,"\u0259":7,"\/":16,"\u0173":2,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":25,",":25,"\u2026":25,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"b":2,"h":2,"k":2,"l":2,"\u0127":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u00f6":{"d":"167,-76v0,43,-30,79,-76,79v-46,0,-77,-36,-77,-79v0,-43,31,-78,77,-78v46,0,76,35,76,78xm139,-76v0,-33,-19,-55,-48,-55v-29,0,-49,22,-49,55v0,33,20,56,49,56v29,0,48,-23,48,-56xm140,-196v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18xm78,-196v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,19,8,19,18","w":181,"k":{"\u0105":2,"\u00e3":2,"v":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2}},"\u00d2":{"d":"283,-132v0,79,-62,136,-133,136v-71,0,-130,-57,-130,-136v0,-79,62,-136,133,-136v71,0,130,57,130,136xm252,-132v0,-62,-42,-110,-100,-110v-59,0,-101,48,-101,110v0,62,42,111,101,111v58,0,100,-49,100,-111xm172,-301r-10,15r-68,-32r15,-28","w":302,"k":{"\u0105":7,"\u00e3":7,"\u0119":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":7,"\u015f":5,"\u0259":7,"\/":16,"\u0173":2,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":25,",":25,"\u2026":25,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"b":2,"h":2,"k":2,"l":2,"\u0127":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u00f2":{"d":"167,-76v0,43,-30,79,-76,79v-46,0,-77,-36,-77,-79v0,-43,31,-78,77,-78v46,0,76,35,76,78xm139,-76v0,-33,-19,-55,-48,-55v-29,0,-49,22,-49,55v0,33,20,56,49,56v29,0,48,-23,48,-56xm111,-186r-9,15r-69,-32r15,-28","w":181,"k":{"\u0105":2,"\u00e3":2,"v":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2}},"\u0150":{"d":"283,-132v0,79,-62,136,-133,136v-71,0,-130,-57,-130,-136v0,-79,62,-136,133,-136v71,0,130,57,130,136xm252,-132v0,-62,-42,-110,-100,-110v-59,0,-101,48,-101,110v0,62,42,111,101,111v58,0,100,-49,100,-111xm170,-344r-40,55r-14,-9r29,-61xm219,-340r-41,56r-13,-9r29,-62","w":302,"k":{"\u0105":7,"\u00e3":7,"\u0119":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":7,"\u015f":5,"\u0259":7,"\/":16,"\u0173":2,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":25,",":25,"\u2026":25,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"b":2,"h":2,"k":2,"l":2,"\u0127":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u0151":{"d":"167,-76v0,43,-30,79,-76,79v-46,0,-77,-36,-77,-79v0,-43,31,-78,77,-78v46,0,76,35,76,78xm139,-76v0,-33,-19,-55,-48,-55v-29,0,-49,22,-49,55v0,33,20,56,49,56v29,0,48,-23,48,-56xm109,-229r-40,55r-14,-9r30,-61xm158,-225r-40,56r-14,-9r30,-62","w":181,"k":{"\u0105":2,"\u00e3":2,"v":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2}},"\u014c":{"d":"283,-132v0,79,-62,136,-133,136v-71,0,-130,-57,-130,-136v0,-79,62,-136,133,-136v71,0,130,57,130,136xm252,-132v0,-62,-42,-110,-100,-110v-59,0,-101,48,-101,110v0,62,42,111,101,111v58,0,100,-49,100,-111xm203,-296r-103,0r0,-24r103,0r0,24","w":302,"k":{"\u0105":7,"\u00e3":7,"\u0119":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":7,"\u015f":5,"\u0259":7,"\/":16,"\u0173":2,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":25,",":25,"\u2026":25,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"b":2,"h":2,"k":2,"l":2,"\u0127":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u014d":{"d":"167,-76v0,43,-30,79,-76,79v-46,0,-77,-36,-77,-79v0,-43,31,-78,77,-78v46,0,76,35,76,78xm139,-76v0,-33,-19,-55,-48,-55v-29,0,-49,22,-49,55v0,33,20,56,49,56v29,0,48,-23,48,-56xm143,-180r-104,0r0,-24r104,0r0,24","w":181,"k":{"\u0105":2,"\u00e3":2,"v":2,"x":4,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2}},"\u00d8":{"d":"283,-132v0,114,-133,176,-216,106r-27,28r-17,-18r26,-28v-18,-23,-29,-53,-29,-88v0,-114,133,-176,216,-106r26,-28r18,18r-27,28v19,23,30,53,30,88xm216,-217v-62,-59,-165,-5,-165,85v0,25,7,49,19,67xm152,-21v83,0,128,-109,81,-177r-147,152v17,15,40,25,66,25","w":302,"k":{"\u0105":7,"\u00e3":7,"\u0119":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":7,"\u015f":5,"\u0259":7,"\/":16,"\u0173":2,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":25,",":25,"\u2026":25,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"b":2,"h":2,"k":2,"l":2,"\u0127":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u00f8":{"d":"172,-138r-18,16v33,51,1,125,-63,125v-20,0,-36,-6,-49,-17r-18,17r-14,-14r18,-17v-34,-50,-3,-126,63,-126v20,0,37,6,50,18r17,-16xm48,-47r75,-72v-31,-27,-81,-7,-81,43v0,11,2,21,6,29xm135,-103r-76,72v42,34,102,-14,76,-72","w":181,"k":{"\u00e3":2,"\u0105":2,"x":4,"v":2,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2}},"\u01fe":{"d":"283,-132v0,114,-133,176,-216,106r-27,28r-17,-18r26,-28v-18,-23,-29,-53,-29,-88v0,-114,133,-176,216,-106r26,-28r18,18r-27,28v19,23,30,53,30,88xm216,-217v-62,-59,-165,-5,-165,85v0,25,7,49,19,67xm152,-21v83,0,128,-109,81,-177r-147,152v17,15,40,25,66,25xm208,-318r-69,32r-8,-16r63,-45","w":302,"k":{"\u0105":7,"\u00e3":7,"\u0119":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":7,"\u015f":5,"\u0259":7,"\/":16,"\u0173":2,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":25,",":25,"\u2026":25,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"b":2,"h":2,"k":2,"l":2,"\u0127":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u01ff":{"d":"172,-138r-18,16v33,51,1,125,-63,125v-20,0,-36,-6,-49,-17r-18,17r-14,-14r18,-17v-34,-50,-3,-126,63,-126v20,0,37,6,50,18r17,-16xm48,-47r75,-72v-31,-27,-81,-7,-81,43v0,11,2,21,6,29xm135,-103r-76,72v42,34,102,-14,76,-72xm148,-203r-69,32r-8,-15r63,-45","w":181,"k":{"\u00e3":2,"\u0105":2,"x":4,"v":2,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2}},"\u00d5":{"d":"283,-132v0,79,-62,136,-133,136v-71,0,-130,-57,-130,-136v0,-79,62,-136,133,-136v71,0,130,57,130,136xm252,-132v0,-62,-42,-110,-100,-110v-59,0,-101,48,-101,110v0,62,42,111,101,111v58,0,100,-49,100,-111xm99,-309v26,-46,69,17,94,-19r13,17v-27,46,-70,-16,-94,19","w":302,"k":{"\u0105":7,"\u00e3":7,"\u0119":7,"\u0142":2,"\u00f8":4,"\u01ff":4,"\u00f5":4,"q":7,"\u015f":5,"\u0259":7,"\/":16,"\u0173":2,"J":18,"V":7,"?":7,"}":14,"]":14,")":14,"X":14,"Y":18,"\u00dd":18,"\u0176":18,"\u0178":18,"\u1ef2":18,".":25,",":25,"\u2026":25,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,"\u201d":18,"\u2019":18,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":7,"\u0107":7,"\u010d":7,"\u00e7":7,"\u010b":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u00e9":7,"\u0115":7,"\u011b":7,"\u00ea":7,"\u00eb":7,"\u0117":7,"\u00e8":7,"\u0113":7,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":7,"\u011f":7,"\u0123":7,"\u0121":7,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"b":2,"h":2,"k":2,"l":2,"\u0127":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"S":4,"\u015a":4,"\u0160":4,"\u015e":4,"\u0218":4,"T":14,"\u0164":14,"\u0162":14,"Z":11,"\u0179":11,"\u017d":11,"\u017b":11}},"\u00f5":{"d":"167,-76v0,43,-30,79,-76,79v-46,0,-77,-36,-77,-79v0,-43,31,-78,77,-78v46,0,76,35,76,78xm139,-76v0,-33,-19,-55,-48,-55v-29,0,-49,22,-49,55v0,33,20,56,49,56v29,0,48,-23,48,-56xm39,-194v27,-47,69,19,93,-19r13,17v-26,48,-69,-17,-94,19","w":181,"k":{"\u00e3":2,"\u0105":2,"x":4,"v":2,".":14,",":14,"\u2026":14,"\u201d":14,"\u2019":14,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2}},"\u0152":{"d":"365,0r-194,2v-99,0,-151,-63,-151,-131v0,-85,76,-135,193,-135r152,0r0,26r-125,0r0,91r113,0r0,26r-113,0r0,95r125,0r0,26xm211,-26r0,-212v-11,-2,-25,-3,-46,-3v-78,0,-114,49,-114,112v0,75,70,120,160,103","w":388,"k":{"Q":7,"\u0105":11,"\u00e3":11,"\u0119":14,"i":7,"\u00ed":7,"\u012d":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"\u012b":7,"\u012f":7,"j":7,"\u0142":7,"\u00f8":14,"\u01ff":14,"\u00f5":14,"p":7,"q":14,"r":7,"\u0155":7,"\u0159":7,"\u0157":7,"\u015f":11,"\u0259":14,"\/":-7,"t":11,"\u0165":11,"\u0163":11,"\u0173":9,"v":7,"x":7,"\u00ff":7,"\u1ef3":7,"-":11,"\u2013":11,"\u2014":11,".":7,",":7,"\u2026":7,":":7,";":7,"\u201d":-7,"\u2019":-7,"a":11,"\u00e1":11,"\u0103":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u0101":11,"\u00e5":11,"\u01fb":11,"\u00e6":11,"\u01fd":11,"c":14,"\u0107":14,"\u010d":14,"\u00e7":14,"\u010b":14,"d":14,"\u010f":14,"\u0111":14,"e":14,"\u00e9":14,"\u0115":14,"\u011b":14,"\u00ea":14,"\u00eb":14,"\u0117":14,"\u00e8":14,"\u0113":14,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":14,"\u011f":14,"\u0123":14,"\u0121":14,"m":7,"n":7,"\u0144":7,"\u0148":7,"\u0146":7,"\u00f1":7,"o":14,"\u00f3":14,"\u014f":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"\u0151":14,"\u014d":14,"\u0153":14,"s":11,"\u015b":11,"\u0161":11,"\u0219":11,"u":9,"\u00fa":9,"\u016d":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,"\u0171":9,"\u016b":9,"\u016f":9,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":7,"\u017a":7,"\u017e":7,"\u017c":7,"b":7,"h":7,"k":7,"l":7,"\u0127":7,"\u0137":7,"\u013a":7,"\u013e":7,"\u013c":7,"\u0140":7,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u0153":{"d":"212,-154v46,0,72,38,66,87r-111,0v-2,41,57,55,98,37r5,24v-45,17,-99,9,-118,-24v-33,61,-146,28,-138,-46v-8,-74,106,-106,139,-45v12,-19,31,-33,59,-33xm252,-89v-2,-23,-15,-41,-42,-41v-24,0,-39,15,-42,41r84,0xm139,-76v0,-33,-19,-55,-48,-55v-29,0,-49,22,-49,55v0,33,20,56,49,56v29,0,48,-23,48,-56","w":289,"k":{".":7,",":7,"\u2026":7,"\u201d":11,"\u2019":11}},"\u0154":{"d":"211,0r-35,0r-71,-104v-15,2,-31,0,-47,0r0,104r-29,0r0,-261v19,-3,39,-5,61,-5v119,0,134,128,44,156xm161,-185v4,-43,-53,-64,-103,-52r0,107v54,9,109,-10,103,-55xm161,-318r-69,32r-8,-16r63,-45","w":213,"k":{"Q":4,"\u0105":2,"\u00e3":2,"\u0119":5,"\u00f8":5,"\u01ff":5,"\u00f5":5,"q":5,"\u0259":5,"\/":-5,"\u0173":2,"V":4,"}":7,"]":7,")":7,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"\u1ef2":11,"-":18,"\u2013":18,"\u2014":18,"\u201d":7,"\u2019":7,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":5,"\u00f3":5,"\u014f":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u0151":5,"\u014d":5,"\u0153":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"W":2,"\u1e82":2,"\u0174":2,"\u1e84":2,"\u1e80":2,"T":5,"\u0164":5,"\u0162":5,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"\u0155":{"d":"101,-126v-22,0,-42,8,-52,23r0,103r-29,0r0,-151r27,0r0,25v14,-19,34,-28,54,-28r0,28xm114,-203r-69,32r-8,-15r63,-45","w":106,"k":{"\/":9,"&":7,"\u0259":4,"\u1ef3":-4,"\u00ff":-4,"\u00f5":4,"\u01ff":4,"\u00f8":4,"\u0119":4,"\u00e3":4,"\u0105":4,"x":-4,"v":-4,"q":4,"i":-4,"-":7,"\u2013":7,"\u2014":7,".":22,",":22,"\u2026":22,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"w":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"y":-4,"\u00fd":-4,"\u0177":-4}},"\u0158":{"d":"211,0r-35,0r-71,-104v-15,2,-31,0,-47,0r0,104r-29,0r0,-261v19,-3,39,-5,61,-5v119,0,134,128,44,156xm161,-185v4,-43,-53,-64,-103,-52r0,107v54,9,109,-10,103,-55xm156,-345r-48,58r-10,0r-47,-58r29,0r24,31r24,-31r28,0","w":213,"k":{"Q":4,"\u0105":2,"\u00e3":2,"\u0119":5,"\u00f8":5,"\u01ff":5,"\u00f5":5,"q":5,"\u0259":5,"\/":-5,"\u0173":2,"V":4,"}":7,"]":7,")":7,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"\u1ef2":11,"-":18,"\u2013":18,"\u2014":18,"\u201d":7,"\u2019":7,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":5,"\u00f3":5,"\u014f":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u0151":5,"\u014d":5,"\u0153":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"W":2,"\u1e82":2,"\u0174":2,"\u1e84":2,"\u1e80":2,"T":5,"\u0164":5,"\u0162":5,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"\u0159":{"d":"101,-126v-22,0,-42,8,-52,23r0,103r-29,0r0,-151r27,0r0,25v14,-19,34,-28,54,-28r0,28xm110,-230r-48,58r-11,0r-46,-58r29,0r24,31r24,-31r28,0","w":106,"k":{"\/":9,"&":7,"\u0259":4,"\u1ef3":-4,"\u00ff":-4,"\u00f5":4,"\u01ff":4,"\u00f8":4,"\u0119":4,"\u00e3":4,"\u0105":4,"x":-4,"v":-4,"q":4,"-":7,"\u2013":7,"\u2014":7,".":22,",":22,"\u2026":22,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"w":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"y":-4,"\u00fd":-4,"\u0177":-4}},"\u0156":{"d":"211,0r-35,0r-71,-104v-15,2,-31,0,-47,0r0,104r-29,0r0,-261v19,-3,39,-5,61,-5v119,0,134,128,44,156xm161,-185v4,-43,-53,-64,-103,-52r0,107v54,9,109,-10,103,-55xm122,43v0,17,-11,40,-37,55r-4,-5v13,-12,20,-26,23,-36v-25,0,-24,-36,-1,-36v13,0,19,10,19,22","w":213,"k":{"Q":4,"\u0105":2,"\u00e3":2,"\u0119":5,"\u00f8":5,"\u01ff":5,"\u00f5":5,"q":5,"\u0259":5,"\/":-5,"\u0173":2,"V":4,"}":7,"]":7,")":7,"Y":11,"\u00dd":11,"\u0176":11,"\u0178":11,"\u1ef2":11,"-":18,"\u2013":18,"\u2014":18,"\u201d":7,"\u2019":7,"a":2,"\u00e1":2,"\u0103":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u0101":2,"\u00e5":2,"\u01fb":2,"\u00e6":2,"\u01fd":2,"c":5,"\u0107":5,"\u010d":5,"\u00e7":5,"\u010b":5,"d":5,"\u010f":5,"\u0111":5,"e":5,"\u00e9":5,"\u0115":5,"\u011b":5,"\u00ea":5,"\u00eb":5,"\u0117":5,"\u00e8":5,"\u0113":5,"g":5,"\u011f":5,"\u0123":5,"\u0121":5,"o":5,"\u00f3":5,"\u014f":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u0151":5,"\u014d":5,"\u0153":5,"u":2,"\u00fa":2,"\u016d":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u0171":2,"\u016b":2,"\u016f":2,"W":2,"\u1e82":2,"\u0174":2,"\u1e84":2,"\u1e80":2,"T":5,"\u0164":5,"\u0162":5,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"\u0157":{"d":"101,-126v-22,0,-42,8,-52,23r0,103r-29,0r0,-151r27,0r0,25v14,-19,34,-28,54,-28r0,28xm55,48v0,17,-12,41,-38,56r-4,-6v13,-12,20,-26,23,-36v-24,0,-23,-36,-1,-36v13,0,20,10,20,22","w":106,"k":{"\/":9,"&":7,"\u0259":4,"\u1ef3":-4,"\u00ff":-4,"\u00f5":4,"\u01ff":4,"\u00f8":4,"\u0119":4,"\u00e3":4,"\u0105":4,"x":-4,"v":-4,"q":4,"-":7,"\u2013":7,"\u2014":7,".":22,",":22,"\u2026":22,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"w":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"y":-4,"\u00fd":-4,"\u0177":-4}},"\u015a":{"d":"166,-71v0,76,-105,95,-157,51r14,-25v35,32,115,32,113,-23v0,-23,-9,-37,-52,-56v-46,-20,-62,-40,-62,-72v0,-62,91,-93,139,-54r-13,24v-30,-27,-98,-18,-98,28v0,18,13,33,45,48v55,25,71,44,71,79xm153,-318r-69,32r-8,-16r63,-45","w":180,"k":{"Q":4,"x":2,"J":4,"}":-7,"]":-7,")":-7,"Y":5,"\u00dd":5,"\u0176":5,"\u0178":5,"\u1ef2":5,"-":-11,"\u2013":-11,"\u2014":-11,".":11,",":11,"\u2026":11,"\u00c6":4,"\u01fc":4,"A":4,"\u00c1":4,"\u0102":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u0100":4,"\u0104":4,"\u00c5":4,"\u01fa":4,"\u00c3":4,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"\u015b":{"d":"114,-45v0,51,-74,61,-104,28r14,-20v18,19,64,26,64,-5v0,-30,-70,-22,-70,-67v0,-43,64,-58,95,-31r-13,22v-14,-15,-56,-20,-56,6v0,26,70,20,70,67xm125,-203r-69,32r-8,-15r63,-45","w":127,"k":{"-":4,"\u2013":4,"\u2014":4,".":7,",":7,"\u2026":7}},"\u0160":{"d":"166,-71v0,76,-105,95,-157,51r14,-25v35,32,115,32,113,-23v0,-23,-9,-37,-52,-56v-46,-20,-62,-40,-62,-72v0,-62,91,-93,139,-54r-13,24v-30,-27,-98,-18,-98,28v0,18,13,33,45,48v55,25,71,44,71,79xm149,-345r-49,58r-10,0r-46,-58r29,0r24,31r24,-31r28,0","w":180,"k":{"Q":4,"x":2,"J":4,"}":-7,"]":-7,")":-7,"Y":5,"\u00dd":5,"\u0176":5,"\u0178":5,"\u1ef2":5,"-":-11,"\u2013":-11,"\u2014":-11,".":11,",":11,"\u2026":11,"\u00c6":4,"\u01fc":4,"A":4,"\u00c1":4,"\u0102":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u0100":4,"\u0104":4,"\u00c5":4,"\u01fa":4,"\u00c3":4,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"\u0161":{"d":"114,-45v0,51,-74,61,-104,28r14,-20v18,19,64,26,64,-5v0,-30,-70,-22,-70,-67v0,-43,64,-58,95,-31r-13,22v-14,-15,-56,-20,-56,6v0,26,70,20,70,67xm120,-230r-48,58r-10,0r-47,-58r29,0r24,31r24,-31r28,0","w":127,"k":{"-":4,"\u2013":4,"\u2014":4,".":7,",":7,"\u2026":7}},"\u015e":{"d":"123,53v2,34,-48,40,-74,20r8,-16v16,10,45,17,45,-4v0,-9,-10,-17,-34,-18v-2,-10,5,-21,6,-31v-25,-2,-45,-11,-65,-24r14,-25v35,32,115,32,113,-23v0,-23,-9,-37,-52,-56v-46,-20,-62,-40,-62,-72v0,-62,91,-93,139,-54r-13,24v-30,-27,-98,-18,-98,28v0,18,13,33,45,48v55,25,71,44,71,79v0,41,-32,72,-74,75r-4,14v27,6,35,21,35,35","w":180,"k":{"Q":4,"x":2,"J":4,"}":-7,"]":-7,")":-7,"Y":5,"\u00dd":5,"\u0176":5,"\u0178":5,"\u1ef2":5,"-":-11,"\u2013":-11,"\u2014":-11,".":11,",":11,"\u2026":11,"\u00c6":4,"\u01fc":4,"A":4,"\u00c1":4,"\u0102":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u0100":4,"\u0104":4,"\u00c5":4,"\u01fa":4,"\u00c3":4,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"\u015f":{"d":"98,53v2,34,-49,41,-75,20r9,-16v16,10,44,17,44,-4v0,-9,-9,-17,-33,-18v-4,-9,5,-23,6,-34v-15,-3,-27,-9,-39,-18r14,-20v18,19,64,26,64,-5v0,-30,-70,-22,-70,-67v0,-43,64,-58,95,-31r-13,22v-14,-15,-56,-20,-56,6v0,26,70,20,70,67v0,24,-19,47,-47,48r-4,15v27,6,35,21,35,35","w":127,"k":{"-":4,"\u2013":4,"\u2014":4,".":7,",":7,"\u2026":7}},"\u0218":{"d":"166,-71v0,76,-105,95,-157,51r14,-25v35,32,115,32,113,-23v0,-23,-9,-37,-52,-56v-46,-20,-62,-40,-62,-72v0,-62,91,-93,139,-54r-13,24v-30,-27,-98,-18,-98,28v0,18,13,33,45,48v55,25,71,44,71,79xm104,48v0,17,-11,41,-37,56r-4,-6v13,-12,20,-26,23,-36v-25,0,-24,-36,-1,-36v13,0,19,10,19,22","w":180,"k":{"Q":4,"x":2,"J":4,"}":-7,"]":-7,")":-7,"Y":5,"\u00dd":5,"\u0176":5,"\u0178":5,"\u1ef2":5,"-":-11,"\u2013":-11,"\u2014":-11,".":11,",":11,"\u2026":11,"\u00c6":4,"\u01fc":4,"A":4,"\u00c1":4,"\u0102":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u0100":4,"\u0104":4,"\u00c5":4,"\u01fa":4,"\u00c3":4,"Z":2,"\u0179":2,"\u017d":2,"\u017b":2,"C":4,"\u0106":4,"\u010c":4,"\u00c7":4,"\u010a":4,"G":4,"\u011e":4,"\u0122":4,"\u0120":4,"O":4,"\u00d3":4,"\u014e":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u0150":4,"\u014c":4,"\u00d8":4,"\u01fe":4,"\u00d5":4,"\u0152":4}},"\u0219":{"d":"114,-45v0,51,-74,61,-104,28r14,-20v18,19,64,26,64,-5v0,-30,-70,-22,-70,-67v0,-43,64,-58,95,-31r-13,22v-14,-15,-56,-20,-56,6v0,26,70,20,70,67xm81,48v0,17,-11,41,-37,56r-4,-6v13,-12,20,-26,23,-36v-25,0,-24,-36,-1,-36v13,0,19,10,19,22","w":127,"k":{"-":4,"\u2013":4,"\u2014":4,".":7,",":7,"\u2026":7}},"\u0164":{"d":"214,-238r-88,0r0,238r-29,0r0,-238r-88,0r0,-26r205,0r0,26xm164,-345r-48,58r-11,0r-46,-58r29,0r24,31r24,-31r28,0","w":222,"k":{"\u0177":54,"\u016f":54,"\u016b":54,"\u0171":54,"\u00f9":54,"\u00fc":54,"\u00fb":54,"\u016d":54,"\u014d":61,"\u0151":61,"\u00f6":61,"\u00f4":61,"\u014f":61,"\u0113":61,"\u00e8":61,"\u00eb":61,"\u00ea":61,"\u011b":61,"\u0115":61,"\u00e5":61,"\u0101":61,"\u00e0":61,"\u00e4":61,"\u00e2":61,"\u0103":61,"Q":18,"\u0105":61,"\u00e3":47,"\u0119":61,"i":22,"\u00ed":22,"\u012d":11,"\u00ee":11,"\u00ef":11,"\u00ec":-11,"\u012b":11,"\u012f":22,"j":22,"\u00f8":61,"\u01ff":61,"\u00f5":50,"p":54,"q":61,"r":54,"\u0155":54,"\u0159":54,"\u0157":54,"\u015f":61,"\u0259":61,"\/":41,"t":54,"\u0165":54,"\u0163":54,"\u0173":54,"v":54,"x":58,"\u00ff":43,"\u1ef3":32,"J":29,"?":-7,"}":-14,"]":-14,")":-14,"&":40,"\u0131":65,"-":47,"\u2013":47,"\u2014":47,".":36,",":36,"\u2026":36,"\u00c6":23,"\u01fc":23,"A":23,"\u00c1":23,"\u0102":23,"\u00c2":23,"\u00c4":23,"\u00c0":23,"\u0100":23,"\u0104":23,"\u00c5":23,"\u01fa":23,"\u00c3":23,":":40,";":40,"\u00ab":43,"\u2039":43,"\u201d":-5,"\u2019":-5,"a":61,"\u00e1":61,"\u01fb":61,"\u00e6":61,"\u01fd":61,"c":61,"\u0107":61,"\u010d":61,"\u00e7":61,"\u010b":61,"d":58,"\u010f":58,"\u0111":58,"e":61,"\u00e9":61,"\u0117":61,"f":14,"\ufb03":14,"\ufb04":14,"\ufb00":14,"\ufb01":14,"\ufb02":14,"g":61,"\u011f":61,"\u0123":61,"\u0121":61,"m":54,"n":54,"\u0144":54,"\u0148":54,"\u0146":54,"\u00f1":54,"o":61,"\u00f3":61,"\u00f2":61,"\u0153":61,"s":61,"\u015b":61,"\u0161":61,"\u0219":61,"u":54,"\u00fa":54,"w":54,"\u1e83":54,"\u0175":54,"\u1e85":54,"\u1e81":54,"y":54,"\u00fd":54,"z":58,"\u017a":58,"\u017e":58,"\u017c":58,"\u00bb":43,"\u203a":43,"S":5,"\u015a":5,"\u0160":5,"\u015e":5,"\u0218":5,"C":18,"\u0106":18,"\u010c":18,"\u00c7":18,"\u010a":18,"G":18,"\u011e":18,"\u0122":18,"\u0120":18,"O":18,"\u00d3":18,"\u014e":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u0150":18,"\u014c":18,"\u00d8":18,"\u01fe":18,"\u00d5":18,"\u0152":18}},"\u0165":{"d":"102,-127r-45,0r0,85v-1,18,17,22,36,19r3,23v-38,9,-67,-1,-67,-45r0,-82r-24,0v4,-13,17,-17,24,-27r0,-26r28,-21r0,50r45,0r0,24xm90,-245r27,5v0,31,-13,52,-33,68r-13,-11v13,-15,18,-34,19,-62","w":106,"k":{"}":-14,"]":-14,")":-22,"\u1ef3":-4,"\u00ff":-4,"\u0142":-7,"v":-4,"j":-4,"-":7,"\u2013":7,"\u2014":7,"\u201d":-14,"\u2019":-14,"w":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"y":-4,"\u00fd":-4,"\u0177":-4,"z":-4,"\u017a":-4,"\u017e":-4,"\u017c":-4,"b":-7,"h":-7,"k":-7,"l":-7,"\u0127":-7,"\u0137":-7,"\u013a":-7,"\u013e":-7,"\u013c":-7,"\u0140":-7,"\u201c":-14,"\u2018":-14,"\u00ae":-14,"\u2122":-14,"\u2120":-14}},"\u0162":{"d":"214,-238r-88,0r0,238r-29,0r0,-238r-88,0r0,-26r205,0r0,26xm130,48v0,17,-11,41,-37,56r-4,-6v13,-12,20,-26,23,-36v-25,0,-24,-36,-1,-36v13,0,19,10,19,22","w":222,"k":{"\u0177":54,"\u016f":54,"\u016b":54,"\u0171":54,"\u00f9":54,"\u00fc":54,"\u00fb":54,"\u016d":54,"\u014d":61,"\u0151":61,"\u00f2":61,"\u00f6":61,"\u00f4":61,"\u014f":61,"\u0113":61,"\u00e8":61,"\u00eb":61,"\u00ea":61,"\u011b":61,"\u0115":61,"\u00e5":61,"\u0101":61,"\u00e0":61,"\u00e4":61,"\u00e2":61,"\u0103":61,"Q":18,"\u0105":61,"\u00e3":47,"\u0119":61,"i":22,"\u00ed":22,"\u012d":11,"\u00ee":11,"\u00ef":11,"\u00ec":-11,"\u012b":11,"\u012f":22,"j":22,"\u00f8":61,"\u01ff":61,"\u00f5":50,"p":54,"q":61,"r":54,"\u0155":54,"\u0159":54,"\u0157":54,"\u015f":61,"\u0259":61,"\/":41,"t":54,"\u0165":54,"\u0163":54,"\u0173":54,"v":54,"x":58,"\u00ff":43,"\u1ef3":32,"J":29,"?":-7,"}":-14,"]":-14,")":-14,"&":40,"\u0131":65,"-":47,"\u2013":47,"\u2014":47,".":36,",":36,"\u2026":36,"\u00c6":23,"\u01fc":23,"A":23,"\u00c1":23,"\u0102":23,"\u00c2":23,"\u00c4":23,"\u00c0":23,"\u0100":23,"\u0104":23,"\u00c5":23,"\u01fa":23,"\u00c3":23,":":40,";":40,"\u00ab":43,"\u2039":43,"\u201d":-5,"\u2019":-5,"a":61,"\u00e1":61,"\u01fb":61,"\u00e6":61,"\u01fd":61,"c":61,"\u0107":61,"\u010d":61,"\u00e7":61,"\u010b":61,"d":58,"\u010f":58,"\u0111":58,"e":61,"\u00e9":61,"\u0117":61,"f":14,"\ufb03":14,"\ufb04":14,"\ufb00":14,"\ufb01":14,"\ufb02":14,"g":61,"\u011f":61,"\u0123":61,"\u0121":61,"m":54,"n":54,"\u0144":54,"\u0148":54,"\u0146":54,"\u00f1":54,"o":61,"\u00f3":61,"\u0153":61,"s":61,"\u015b":61,"\u0161":61,"\u0219":61,"u":54,"\u00fa":54,"w":54,"\u1e83":54,"\u0175":54,"\u1e85":54,"\u1e81":54,"y":54,"\u00fd":54,"z":58,"\u017a":58,"\u017e":58,"\u017c":58,"\u00bb":43,"\u203a":43,"S":5,"\u015a":5,"\u0160":5,"\u015e":5,"\u0218":5,"C":18,"\u0106":18,"\u010c":18,"\u00c7":18,"\u010a":18,"G":18,"\u011e":18,"\u0122":18,"\u0120":18,"O":18,"\u00d3":18,"\u014e":18,"\u00d4":18,"\u00d6":18,"\u00d2":18,"\u0150":18,"\u014c":18,"\u00d8":18,"\u01fe":18,"\u00d5":18,"\u0152":18}},"\u0163":{"d":"102,-127r-45,0r0,85v-1,18,17,22,36,19r3,23v-38,9,-67,-1,-67,-45r0,-82r-24,0v4,-13,17,-17,24,-27r0,-26r28,-21r0,50r45,0r0,24xm80,48v0,17,-12,41,-38,56r-4,-6v13,-12,20,-26,23,-36v-25,0,-24,-36,-1,-36v13,0,20,10,20,22","w":106,"k":{"\u1ef3":-4,"\u00ff":-4,"v":-4,"-":7,"\u2013":7,"\u2014":7,"w":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"y":-4,"\u00fd":-4,"\u0177":-4,"z":-4,"\u017a":-4,"\u017e":-4,"\u017c":-4}},"\u00de":{"d":"191,-135v0,62,-56,99,-133,89r0,46r-29,0r0,-264r29,0r0,45v77,-11,133,29,133,84xm89,-71v94,4,95,-122,5,-122v-12,0,-27,1,-36,3r0,117v9,1,21,2,31,2","w":198},"\u00fe":{"d":"169,-77v0,61,-65,100,-120,69r0,86r-29,0r0,-342r27,0r0,128v44,-39,122,-11,122,59xm141,-76v5,-53,-64,-70,-93,-36r0,74v29,33,98,16,93,-38","w":183},"\u00da":{"d":"224,-95v0,61,-40,99,-99,99v-60,0,-99,-36,-99,-99r0,-169r28,0r0,167v0,53,30,75,71,75v41,0,70,-22,70,-75r0,-167r29,0r0,169xm182,-312r-69,32r-8,-16r63,-45","w":249,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":9,"t":2,"\u0165":2,"\u0163":2,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00fa":{"d":"152,0r-27,0r0,-21v-28,36,-106,31,-106,-28r0,-102r28,0v6,48,-21,129,32,130v17,0,33,-11,45,-23r0,-107r28,0r0,151xm142,-203r-69,32r-8,-15r63,-45","w":172},"\u016c":{"d":"224,-95v0,61,-40,99,-99,99v-60,0,-99,-36,-99,-99r0,-169r28,0r0,167v0,53,30,75,71,75v41,0,70,-22,70,-75r0,-167r29,0r0,169xm169,-325v0,23,-16,42,-44,42v-27,0,-43,-19,-43,-42r26,-3v0,14,6,23,17,23v12,0,18,-9,18,-23","w":249,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":9,"t":2,"\u0165":2,"\u0163":2,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u016d":{"d":"152,0r-27,0r0,-21v-28,36,-106,31,-106,-28r0,-102r28,0v6,48,-21,129,32,130v17,0,33,-11,45,-23r0,-107r28,0r0,151xm129,-216v0,23,-16,42,-44,42v-27,0,-43,-19,-43,-42r26,-2v0,14,6,23,17,23v12,0,18,-9,18,-23","w":172},"\u00db":{"d":"224,-95v0,61,-40,99,-99,99v-60,0,-99,-36,-99,-99r0,-169r28,0r0,167v0,53,30,75,71,75v41,0,70,-22,70,-75r0,-167r29,0r0,169xm178,-286r-30,0r-24,-30r-24,30r-27,0r48,-57r10,0","w":249,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":9,"t":2,"\u0165":2,"\u0163":2,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00fb":{"d":"152,0r-27,0r0,-21v-28,36,-106,31,-106,-28r0,-102r28,0v6,48,-21,129,32,130v17,0,33,-11,45,-23r0,-107r28,0r0,151xm138,-176r-30,0r-24,-31r-24,31r-27,0r48,-58r10,0","w":172},"\u00dc":{"d":"224,-95v0,61,-40,99,-99,99v-60,0,-99,-36,-99,-99r0,-169r28,0r0,167v0,53,30,75,71,75v41,0,70,-22,70,-75r0,-167r29,0r0,169xm175,-306v0,10,-8,18,-18,18v-10,0,-19,-8,-19,-18v0,-10,9,-18,19,-18v10,0,18,8,18,18xm112,-306v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18","w":249,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":9,"t":2,"\u0165":2,"\u0163":2,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00fc":{"d":"152,0r-27,0r0,-21v-28,36,-106,31,-106,-28r0,-102r28,0v6,48,-21,129,32,130v17,0,33,-11,45,-23r0,-107r28,0r0,151xm135,-196v0,10,-8,18,-18,18v-10,0,-19,-8,-19,-18v0,-10,9,-18,19,-18v10,0,18,8,18,18xm72,-196v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18","w":172},"\u00d9":{"d":"224,-95v0,61,-40,99,-99,99v-60,0,-99,-36,-99,-99r0,-169r28,0r0,167v0,53,30,75,71,75v41,0,70,-22,70,-75r0,-167r29,0r0,169xm146,-296r-10,16r-68,-32r15,-29","w":249,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":9,"t":2,"\u0165":2,"\u0163":2,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u00f9":{"d":"152,0r-27,0r0,-21v-28,36,-106,31,-106,-28r0,-102r28,0v6,48,-21,129,32,130v17,0,33,-11,45,-23r0,-107r28,0r0,151xm106,-186r-10,15r-68,-32r15,-28","w":172},"\u0170":{"d":"224,-95v0,61,-40,99,-99,99v-60,0,-99,-36,-99,-99r0,-169r28,0r0,167v0,53,30,75,71,75v41,0,70,-22,70,-75r0,-167r29,0r0,169xm144,-339r-40,56r-14,-9r30,-62xm193,-335r-41,56r-13,-9r29,-62","w":249,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":9,"t":2,"\u0165":2,"\u0163":2,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u0171":{"d":"152,0r-27,0r0,-21v-28,36,-106,31,-106,-28r0,-102r28,0v6,48,-21,129,32,130v17,0,33,-11,45,-23r0,-107r28,0r0,151xm104,-229r-40,55r-14,-9r30,-61xm153,-225r-41,56r-13,-9r29,-62","w":172},"\u016a":{"d":"224,-95v0,61,-40,99,-99,99v-60,0,-99,-36,-99,-99r0,-169r28,0r0,167v0,53,30,75,71,75v41,0,70,-22,70,-75r0,-167r29,0r0,169xm177,-290r-103,0r0,-24r103,0r0,24","w":249,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":9,"t":2,"\u0165":2,"\u0163":2,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u016b":{"d":"152,0r-27,0r0,-21v-28,36,-106,31,-106,-28r0,-102r28,0v6,48,-21,129,32,130v17,0,33,-11,45,-23r0,-107r28,0r0,151xm137,-180r-103,0r0,-24r103,0r0,24","w":172},"\u0172":{"d":"156,60v-14,28,-62,24,-62,-10v0,-13,6,-25,24,-46v-57,-3,-92,-38,-92,-99r0,-169r28,0r0,167v0,53,30,75,71,75v41,0,70,-22,70,-75r0,-167r29,0r0,169v0,56,-34,93,-85,98v-16,20,-22,32,-22,43v1,19,19,17,28,4","w":249,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":9,"t":2,"\u0165":2,"\u0163":2,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u0173":{"d":"160,60v-14,28,-62,24,-62,-10v0,-13,10,-29,27,-50r0,-21v-28,36,-106,31,-106,-28r0,-102r28,0v6,48,-21,129,32,130v17,0,33,-11,45,-23r0,-107r28,0r0,151r-7,0v-18,22,-24,35,-24,46v1,19,19,17,28,4","w":172,"k":{"j":-7}},"\u016e":{"d":"224,-95v0,61,-40,99,-99,99v-60,0,-99,-36,-99,-99r0,-169r28,0r0,167v0,53,30,75,71,75v41,0,70,-22,70,-75r0,-167r29,0r0,169xm163,-321v0,21,-14,37,-38,37v-24,0,-38,-16,-38,-37v0,-21,14,-37,38,-37v24,0,38,16,38,37xm144,-321v0,-12,-9,-21,-19,-21v-10,0,-18,9,-18,21v0,12,8,20,18,20v10,0,19,-8,19,-20","w":249,"k":{"\u0105":7,"\u00e3":7,"\u0119":4,"i":4,"\u00ed":4,"\u012d":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"\u012b":4,"\u012f":4,"j":4,"\u0142":4,"\u00f8":4,"\u01ff":4,"\u00f5":4,"p":4,"q":4,"r":4,"\u0155":4,"\u0159":4,"\u0157":4,"\u015f":5,"\u0259":4,"\/":9,"t":2,"\u0165":2,"\u0163":2,"\u0173":4,"J":7,"?":-4,".":18,",":18,"\u2026":18,"\u00c6":5,"\u01fc":5,"A":5,"\u00c1":5,"\u0102":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u0100":5,"\u0104":5,"\u00c5":5,"\u01fa":5,"\u00c3":5,":":4,";":4,"a":7,"\u00e1":7,"\u0103":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u0101":7,"\u00e5":7,"\u01fb":7,"\u00e6":7,"\u01fd":7,"c":4,"\u0107":4,"\u010d":4,"\u00e7":4,"\u010b":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u00e9":4,"\u0115":4,"\u011b":4,"\u00ea":4,"\u00eb":4,"\u0117":4,"\u00e8":4,"\u0113":4,"f":4,"\ufb03":4,"\ufb04":4,"\ufb00":4,"\ufb01":4,"\ufb02":4,"g":4,"\u011f":4,"\u0123":4,"\u0121":4,"m":4,"n":4,"\u0144":4,"\u0148":4,"\u0146":4,"\u00f1":4,"o":4,"\u00f3":4,"\u014f":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u0151":4,"\u014d":4,"\u0153":4,"s":5,"\u015b":5,"\u0161":5,"\u0219":5,"u":4,"\u00fa":4,"\u016d":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u0171":4,"\u016b":4,"\u016f":4,"b":4,"h":4,"k":4,"l":4,"\u0127":4,"\u0137":4,"\u013a":4,"\u013e":4,"\u013c":4,"\u0140":4}},"\u016f":{"d":"152,0r-27,0r0,-21v-28,36,-106,31,-106,-28r0,-102r28,0v6,48,-21,129,32,130v17,0,33,-11,45,-23r0,-107r28,0r0,151xm123,-211v0,21,-14,36,-38,36v-24,0,-38,-15,-38,-36v0,-21,14,-37,38,-37v24,0,38,16,38,37xm104,-212v0,-12,-9,-20,-19,-20v-10,0,-18,8,-18,20v0,12,8,21,18,21v10,0,19,-9,19,-21","w":172},"\u1e82":{"d":"326,-264r-73,268r-5,1r-84,-209r-82,209r-6,-1r-72,-268r29,0r52,195r78,-197r4,0r78,195r52,-193r29,0xm222,-318r-69,32r-8,-16r63,-45","w":329,"k":{"Q":7,"\u0105":23,"\u00e3":23,"\u0119":25,"i":7,"\u00ed":7,"\u012d":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-14,"\u012b":-4,"\u012f":7,"j":7,"\u00f8":25,"\u01ff":25,"\u00f5":25,"p":18,"q":25,"r":18,"\u0155":18,"\u0159":18,"\u0157":18,"\u015f":23,"\u0259":25,"\/":16,"t":7,"\u0165":7,"\u0163":7,"\u0173":18,"v":7,"x":11,"\u00ff":7,"\u1ef3":7,"J":22,"?":-7,"}":-14,"]":-14,")":-14,"&":11,"-":14,"\u2013":14,"\u2014":14,".":32,",":32,"\u2026":32,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,":":14,";":14,"\u00ab":11,"\u2039":11,"\u201d":-7,"\u2019":-7,"a":23,"\u00e1":23,"\u0103":23,"\u00e2":23,"\u00e4":23,"\u00e0":23,"\u0101":23,"\u00e5":23,"\u01fb":23,"\u00e6":23,"\u01fd":23,"c":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"d":25,"\u010f":25,"\u0111":25,"e":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":25,"\u011f":25,"\u0123":25,"\u0121":25,"m":18,"n":18,"\u0144":18,"\u0148":18,"\u0146":18,"\u00f1":18,"o":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u0153":25,"s":23,"\u015b":23,"\u0161":23,"\u0219":23,"u":18,"\u00fa":18,"\u016d":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,"\u0171":18,"\u016b":18,"\u016f":18,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":11,"\u017a":11,"\u017e":11,"\u017c":11,"\u00bb":11,"\u203a":11,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u1e83":{"d":"213,-151r-54,155r-4,0r-46,-103r-47,103r-5,0r-54,-155r32,0r29,98r42,-99r5,0r44,99r28,-98r30,0xm165,-203r-69,32r-8,-15r63,-45","w":214,"k":{"\u0105":4,"\u00e3":4,"\/":4,"?":7,".":20,",":20,"\u2026":20,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4}},"\u0174":{"d":"326,-264r-73,268r-5,1r-84,-209r-82,209r-6,-1r-72,-268r29,0r52,195r78,-197r4,0r78,195r52,-193r29,0xm217,-291r-29,0r-24,-31r-24,31r-28,0r48,-58r11,0","w":329,"k":{"Q":7,"\u0105":23,"\u00e3":23,"\u0119":25,"i":7,"\u00ed":7,"\u012d":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-14,"\u012b":-4,"\u012f":7,"j":7,"\u00f8":25,"\u01ff":25,"\u00f5":25,"p":18,"q":25,"r":18,"\u0155":18,"\u0159":18,"\u0157":18,"\u015f":23,"\u0259":25,"\/":16,"t":7,"\u0165":7,"\u0163":7,"\u0173":18,"v":7,"x":11,"\u00ff":7,"\u1ef3":7,"J":22,"?":-7,"}":-14,"]":-14,")":-14,"&":11,"-":14,"\u2013":14,"\u2014":14,".":32,",":32,"\u2026":32,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u0102":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u0100":14,"\u0104":14,"\u00c5":14,"\u01fa":14,"\u00c3":14,":":14,";":14,"\u00ab":11,"\u2039":11,"\u201d":-7,"\u2019":-7,"a":23,"\u00e1":23,"\u0103":23,"\u00e2":23,"\u00e4":23,"\u00e0":23,"\u0101":23,"\u00e5":23,"\u01fb":23,"\u00e6":23,"\u01fd":23,"c":25,"\u0107":25,"\u010d":25,"\u00e7":25,"\u010b":25,"d":25,"\u010f":25,"\u0111":25,"e":25,"\u00e9":25,"\u0115":25,"\u011b":25,"\u00ea":25,"\u00eb":25,"\u0117":25,"\u00e8":25,"\u0113":25,"f":11,"\ufb03":11,"\ufb04":11,"\ufb00":11,"\ufb01":11,"\ufb02":11,"g":25,"\u011f":25,"\u0123":25,"\u0121":25,"m":18,"n":18,"\u0144":18,"\u0148":18,"\u0146":18,"\u00f1":18,"o":25,"\u00f3":25,"\u014f":25,"\u00f4":25,"\u00f6":25,"\u00f2":25,"\u0151":25,"\u014d":25,"\u0153":25,"s":23,"\u015b":23,"\u0161":23,"\u0219":23,"u":18,"\u00fa":18,"\u016d":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,"\u0171":18,"\u016b":18,"\u016f":18,"w":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"y":7,"\u00fd":7,"\u0177":7,"z":11,"\u017a":11,"\u017e":11,"\u017c":11,"\u00bb":11,"\u203a":11,"C":7,"\u0106":7,"\u010c":7,"\u00c7":7,"\u010a":7,"G":7,"\u011e":7,"\u0122":7,"\u0120":7,"O":7,"\u00d3":7,"\u014e":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u0150":7,"\u014c":7,"\u00d8":7,"\u01fe":7,"\u00d5":7,"\u0152":7}},"\u0175":{"d":"213,-151r-54,155r-4,0r-46,-103r-47,103r-5,0r-54,-155r32,0r29,98r42,-99r5,0r44,99r28,-98r30,0xm161,-176r-30,0r-24,-31r-24,31r-28,0r48,-58r11,0","w":214,"k":{"\u0105":4,"\u00e3":4,"\/":4,"?":7,".":20,",":20,"\u2026":20,"a":4,"\u00e1":4,"\u0103":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u0101":4,"\u00e5":4,"\u01fb":4,"\u00e6":4,"\u01fd":4}},"\u1e84":{"d":"326,-264r-73,268r-5,1r-84,-209r-82,209r-6,-1r-72,-268r29,0r52,195r78,-197r4,0r78,195r52,-193r29,0xm214,-311v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18xm152,-311v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18","w":329,"k":{"Q":7,"\u0105":23,"\u00e3":23,"\u0119":25,"i":7,"\u00ed":7,"\u012d":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-14,"\u012b":-4,"\u012f":7,"j":7,"\u00f8":25,"\u01ff":25,"\u00f5":25,"p":18,"q":25,"r":18,"\u0155":18,"\u0159":18,"\u0157":18,"\u015f":23,"\u0259":25,"\/":16,"t":7,"\u0165":7,"\u0163":7,"\u0173":18,"v":7,"x":11,"\u00ff":7,"\u1ef3":7,"J":22,"?":-7,"}":-14,"]":-14,")":-14,"&":11,"-":14,"\u2013":14,"\u2014":14,".":32,",":32,"\u2026":32,"\u00c6":14,"\u01fc":14,"A":14,"\u00c1":14,"\u010
