/*
 * 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")}})})();

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.02
 */
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}),hasClass:function(C,B){return RegExp("(?:^|\\s)"+B+"(?=\\s|$)").test(C.className)},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},textDecoration:function(G,F){if(!F){F=this.getStyle(G)}var C={underline:null,overline:null,"line-through":null};for(var B=G;B.parentNode&&B.parentNode.nodeType==1;){var E=true;for(var D in C){if(!k(C,D)||C[D]){continue}if(F.get("textDecoration").indexOf(D)!=-1){C[D]=F.get("color")}E=false}if(E){break}F=this.getStyle(B=B.parentNode)}return C},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 B={inline:1,"inline-block":1,"run-in":1};return function(E,C,D){if(B[C.get("display")]){return E}if(!D.previousSibling){E=E.replace(/^\s+/,"")}if(!D.nextSibling){E=E.replace(/\s+$/,"")}return E}})()};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(C){var B=this.face=C.face;this.glyphs=C.glyphs;this.w=C.w;this.baseSize=parseInt(B["units-per-em"],10);this.family=B["font-family"].toLowerCase();this.weight=B["font-weight"];this.style=B["font-style"]||"normal";this.viewBox=(function(){var E=B.bbox.split(/\s+/);var D={minX:parseInt(E[0],10),minY:parseInt(E[1],10),maxX:parseInt(E[2],10),maxY:parseInt(E[3],10)};D.width=D.maxX-D.minX;D.height=D.maxY-D.minY;D.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return D})();this.ascent=-parseInt(B.ascent,10);this.descent=-parseInt(B.descent,10);this.height=-this.ascent+this.descent}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)}function E(F){C(this)}function C(F){setTimeout(function(){m.replace(F,d.get(F).options,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 B={},D,F;for(var E=0,C=arguments.length;D=arguments[E],E<C;++E){for(F in D){if(k(D,F)){B[F]=D[F]}}}return B}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(C,J){var B=n.getStyle(v(C,J)).extend(J);var D=c(C,B),E,H,G,F,I;for(E=C.firstChild;E;E=G){H=E.nodeType;G=E.nextSibling;if(H==3){if(F){F.appendData(E.data);C.removeChild(E)}else{F=E}if(G){continue}}if(F){C.replaceChild(o(D,n.whiteSpace(F.data,B,F),B,J,E,C),F);F=null}if(H==1&&E.firstChild){if(n.hasClass(E,"cufon")){z[J.engine](D,null,B,J,E,C)}else{arguments.callee(E,J)}}}}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={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textShadow:"none"};var p={words:/[^\S\u00a0]+/,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){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(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}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("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-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").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(ah,H,Z,D,L,ai){var n=(H===null);if(n){H=L.alt}var J=ah.viewBox;var p=Z.getSize("fontSize",ah.baseSize);var X=Z.get("letterSpacing");X=(X=="normal")?0:p.convertFrom(parseInt(X,10));var K=0,Y=0,W=0,F=0;var I=D.textShadow,U=[];if(I){for(var ag=I.length;ag--;){var O=I[ag];var T=p.convertFrom(parseFloat(O.offX));var R=p.convertFrom(parseFloat(O.offY));U[ag]=[T,R];if(R<K){K=R}if(T>Y){Y=T}if(R>W){W=R}if(T<F){F=T}}}var al=Cufon.CSS.textTransform(H,Z).split(""),B;var o=ah.glyphs,E,r,ac;var h=0,v,N=[];for(var ag=0,ae=0,ab=al.length;ag<ab;++ag){E=o[B=al[ag]]||ah.missingGlyph;if(!E){continue}if(r){h-=ac=r[B]||0;N[ae-1]-=ac}h+=v=N[ae++]=~~(E.w||ah.w)+X;r=E.k}if(v===undefined){return null}Y+=J.width-v;F+=J.minX;var C,q;if(n){C=L;q=L.firstChild}else{C=document.createElement("span");C.className="cufon cufon-canvas";C.alt=H;q=document.createElement("canvas");C.appendChild(q);if(D.printable){var ad=document.createElement("span");ad.className="cufon-alt";ad.appendChild(document.createTextNode(H));C.appendChild(ad)}}var am=C.style;var Q=q.style;var m=p.convert(J.height);var ak=Math.ceil(m);var V=ak/m;var P=V*Cufon.CSS.fontStretch(Z.get("fontStretch"));var S=h*P;var aa=Math.ceil(p.convert(S+Y-F));var t=Math.ceil(p.convert(J.height-K+W));q.width=aa;q.height=t;Q.width=aa+"px";Q.height=t+"px";K+=J.minY;Q.top=Math.round(p.convert(K-ah.ascent))+"px";Q.left=Math.round(p.convert(F))+"px";var A=Math.ceil(p.convert(S))+"px";if(a){am.width=A;am.height=p.convert(ah.height)+"px"}else{am.paddingLeft=A;am.paddingBottom=(p.convert(ah.height)-1)+"px"}var aj=q.getContext("2d"),M=m/J.height;aj.scale(M,M*V);aj.translate(-F,-K);aj.lineWidth=ah.face["underline-thickness"];aj.save();function s(i,g){aj.strokeStyle=g;aj.beginPath();aj.moveTo(0,i);aj.lineTo(h,i);aj.stroke()}var u=D.enableTextDecoration?Cufon.CSS.textDecoration(ai,Z):{};if(u.underline){s(-ah.face["underline-position"],u.underline)}if(u.overline){s(ah.ascent,u.overline)}function af(){aj.scale(P,1);for(var x=0,k=0,g=al.length;x<g;++x){var y=o[al[x]]||ah.missingGlyph;if(!y){continue}if(y.d){aj.beginPath();if(y.code){c(y.code,aj)}else{y.code=d("m"+y.d,aj)}aj.fill()}aj.translate(N[k++],0)}aj.restore()}if(I){for(var ag=I.length;ag--;){var O=I[ag];aj.save();aj.fillStyle=O.color;aj.translate.apply(aj,U[ag]);af()}}var z=D.textGradient;if(z){var G=z.stops,w=aj.createLinearGradient(0,J.minY,0,J.maxY);for(var ag=0,ab=G.length;ag<ab;++ag){w.addColorStop.apply(w,G[ag])}aj.fillStyle=w}else{aj.fillStyle=Z.get("color")}af();if(u["line-through"]){s(-ah.descent,u["line-through"])}return C}})());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 g=(document.documentMode||0)<8;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(g?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>").replace(/;/g,"!important;"));function c(h,i){return a(h,/(?:em|ex|%)$|^[a-z-]+$/i.test(i)?"1em":i)}function a(k,l){if(/px$/i.test(l)){return parseFloat(l)}var j=k.style.left,i=k.runtimeStyle.left;k.runtimeStyle.left=k.currentStyle.left;k.style.left=l.replace("%","em");var h=k.style.pixelLeft;k.style.left=j;k.runtimeStyle.left=i;return h}var f={};function d(o){var p=o.id;if(!f[p]){var m=o.stops,n=document.createElement("cvml:fill"),h=[];n.type="gradient";n.angle=180;n.focus="0";n.method="sigma";n.color=m[0][1];for(var l=1,i=m.length-1;l<i;++l){h.push(m[l][0]*100+"% "+m[l][1])}n.colors=h.join(",");n.color2=m[i][1];f[p]=n}return f[p]}return function(aj,K,ad,G,O,ak,ab){var o=(K===null);if(o){K=O.alt}var M=aj.viewBox;var q=ad.computedFontSize||(ad.computedFontSize=new Cufon.CSS.Size(c(ak,ad.get("fontSize"))+"px",aj.baseSize));var aa=ad.computedLSpacing;if(aa==undefined){aa=ad.get("letterSpacing");ad.computedLSpacing=aa=(aa=="normal")?0:~~q.convertFrom(a(ak,aa))}var C,r;if(o){C=O;r=O.firstChild}else{C=document.createElement("span");C.className="cufon cufon-vml";C.alt=K;r=document.createElement("span");r.className="cufon-vml-canvas";C.appendChild(r);if(G.printable){var ag=document.createElement("span");ag.className="cufon-alt";ag.appendChild(document.createTextNode(K));C.appendChild(ag)}if(!ab){C.appendChild(document.createElement("cvml:shape"))}}var ap=C.style;var V=r.style;var m=q.convert(M.height),am=Math.ceil(m);var Z=am/m;var T=Z*Cufon.CSS.fontStretch(ad.get("fontStretch"));var Y=M.minX,X=M.minY;V.height=am;V.top=Math.round(q.convert(X-aj.ascent));V.left=Math.round(q.convert(Y));ap.height=q.convert(aj.height)+"px";var v=G.enableTextDecoration?Cufon.CSS.textDecoration(ak,ad):{};var J=ad.get("color");var ao=Cufon.CSS.textTransform(K,ad).split(""),B;var p=aj.glyphs,H,s,af;var h=0,P=[],W=0,x;var z,L=G.textShadow;for(var ai=0,ah=0,ae=ao.length;ai<ae;++ai){H=p[B=ao[ai]]||aj.missingGlyph;if(!H){continue}if(s){h-=af=s[B]||0;P[ah-1]-=af}h+=x=P[ah++]=~~(H.w||aj.w)+aa;s=H.k}if(x===undefined){return null}var A=-Y+h+(M.width-x);var an=q.convert(A*T),ac=Math.round(an);var S=A+","+M.height,n;var N="r"+S+"ns";var y=G.textGradient&&d(G.textGradient);for(ai=0,ah=0;ai<ae;++ai){H=p[ao[ai]]||aj.missingGlyph;if(!H){continue}if(o){z=r.childNodes[ah];while(z.firstChild){z.removeChild(z.firstChild)}}else{z=document.createElement("cvml:shape");r.appendChild(z)}z.stroked="f";z.coordsize=S;z.coordorigin=n=(Y-W)+","+X;z.path=(H.d?"m"+H.d+"xe":"")+"m"+n+N;z.fillcolor=J;if(y){z.appendChild(y.cloneNode(false))}var al=z.style;al.width=ac;al.height=am;if(L){var u=L[0],t=L[1];var F=Cufon.CSS.color(u.color),D;var R=document.createElement("cvml:shadow");R.on="t";R.color=F.color;R.offset=u.offX+","+u.offY;if(t){D=Cufon.CSS.color(t.color);R.type="double";R.color2=D.color;R.offset2=t.offX+","+t.offY}R.opacity=F.opacity||(D&&D.opacity)||1;z.appendChild(R)}W+=P[ah++]}var Q=z.nextSibling,w,E;if(G.forceHitArea){if(!Q){Q=document.createElement("cvml:rect");Q.stroked="f";Q.className="cufon-vml-cover";w=document.createElement("cvml:fill");w.opacity=0;Q.appendChild(w);r.appendChild(Q)}E=Q.style;E.width=ac;E.height=am}else{if(Q){r.removeChild(Q)}}ap.width=Math.max(Math.ceil(q.convert(h*T)),0);if(g){var U=ad.computedYAdjust;if(U===undefined){var I=ad.get("lineHeight");if(I=="normal"){I="1em"}else{if(!isNaN(I)){I+="em"}}ad.computedYAdjust=U=0.5*(a(ak,I)-parseFloat(ap.height))}if(U){ap.marginTop=Math.ceil(U)+"px";ap.marginBottom=U+"px"}}return C}})());

/* snip - remplacer pour le truc qu'audrey va te fournir */
/* erreur ici et le code n'est pas comme les exemple donner lorsque je compare ! err= Var B*/
Cufon.registerFont({"w":180,"face":{"font-family":"Bell Gothic Std","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 6 2 2 3 2 2 4","ascent":"269","descent":"-91","x-height":"4","bbox":"-8 -333 340 90","underline-thickness":"18","underline-position":"-18","stemh":"24","stemv":"32","unicode-range":"U+0020-U+0192"},"glyphs":{" ":{"w":99,"k":{"T":36,"V":36,"W":29,"Y":36,"\u0178":36,"A":22,"\u00c2":22,"\u00c4":22,"\u00c0":22}},"!":{"d":"51,-266r37,0r-7,177r-23,0xm71,2v-16,0,-26,-12,-26,-25v0,-14,12,-25,25,-25v13,0,25,11,25,25v0,13,-10,25,-24,25","w":140},"\"":{"d":"71,-167r0,-97r29,0r0,97r-29,0xm20,-167r0,-97r29,0r0,97r-29,0","w":119},"#":{"d":"186,-100r0,23r-36,0r-11,77r-26,0r11,-77r-43,0r-10,77r-26,0r10,-77r-35,0r-1,-23r40,0r7,-52r-36,0r0,-23r39,0r11,-77r26,0r-11,77r43,0r10,-77r27,0r-11,77r32,0r1,23r-36,0r-8,52r33,0xm135,-152r-43,0r-7,52r42,0","w":216},"$":{"d":"92,-125v-54,-15,-107,-69,-52,-123v17,-16,39,-16,52,-17r0,-31r20,0r0,31v40,4,63,20,68,26r-20,28v-19,-20,-34,-24,-48,-27r0,84v47,19,69,30,73,79v3,40,-33,74,-73,73r0,48r-20,0r0,-47v-30,-3,-47,-6,-79,-32r17,-29v19,17,37,32,62,33r0,-96xm92,-162r0,-76v-21,0,-42,8,-42,32v0,24,20,38,42,44xm112,-117r0,89v40,1,59,-53,26,-75v-6,-5,-19,-12,-26,-14","w":200},"%":{"d":"274,-131v34,0,66,29,66,65v0,37,-30,66,-66,66v-36,0,-67,-27,-67,-65v0,-38,31,-66,67,-66xm236,-66v0,24,18,39,38,39v22,0,38,-20,38,-39v0,-22,-19,-37,-38,-37v-22,0,-38,17,-38,37xm89,-264v30,0,64,25,64,63v0,37,-30,68,-66,68v-36,0,-67,-28,-67,-65v0,-34,26,-66,69,-66xm124,-199v0,-18,-15,-37,-38,-37v-20,0,-37,14,-37,37v0,23,17,37,37,37v21,0,38,-16,38,-37xm254,-270r24,0r-173,277r-23,0","w":360},"&":{"d":"62,-213v0,-24,30,-61,59,-55v26,0,55,18,55,51v0,36,-35,53,-57,64v16,28,34,53,54,78v14,-18,24,-41,30,-56r35,12v-14,30,-26,46,-44,69v14,19,31,28,52,17r0,33v-28,16,-64,-5,-76,-24v-23,19,-39,32,-71,32v-56,0,-80,-45,-80,-81v0,-50,42,-75,58,-84v-7,-14,-15,-32,-15,-56xm51,-82v0,45,66,82,100,35v-24,-29,-37,-46,-63,-90v-15,10,-37,25,-37,55xm152,-219v0,-21,-17,-30,-30,-30v-47,0,-34,48,-13,77v23,-11,43,-21,43,-47","w":259},"(":{"d":"80,6v-26,-34,-52,-76,-52,-132v0,-50,12,-87,52,-143r33,0v-36,53,-55,57,-55,138v0,61,33,106,56,137r-34,0","w":140},")":{"d":"111,-130v0,70,-33,113,-51,136r-33,0v25,-25,62,-111,55,-136v9,-13,-23,-105,-56,-139r33,0v27,39,52,77,52,139","w":140},"*":{"d":"31,-207r8,-31r55,26r-9,-56r31,0r-8,56r53,-25r8,30r-59,6r43,45r-26,18r-27,-54r-27,54r-26,-18r43,-43","w":200},"+":{"d":"93,-106r0,-76r30,0r0,76r76,0r0,30r-76,0r0,76r-30,0r0,-76r-76,0r0,-30r76,0","w":216},",":{"d":"43,-48r29,0r-42,114r-30,0","w":100,"k":{" ":22}},"-":{"d":"13,-78r0,-30r94,0r0,30r-94,0","w":119},".":{"d":"51,-46v32,1,37,47,0,49v-14,0,-25,-10,-25,-24v0,-14,12,-25,25,-25","w":100,"k":{" ":14}},"\/":{"d":"108,-268r-86,276r-30,0r85,-276r31,0","w":100},"0":{"d":"104,-270v98,2,97,163,60,238v-17,35,-47,37,-65,37v-13,0,-44,-5,-63,-38v-19,-32,-21,-77,-21,-94v0,-105,40,-143,89,-143xm102,-240v-44,0,-52,71,-52,113v0,27,5,101,53,101v40,0,47,-61,47,-112v0,-77,-16,-102,-48,-102","w":200},"1":{"d":"27,0r0,-29r57,0r0,-205r-61,0r0,-30r98,0r0,235r51,0r0,29r-145,0","w":200},"2":{"d":"13,-211v10,-32,50,-58,85,-58v22,0,81,12,81,75v0,76,-109,92,-123,162r124,0r0,32r-164,0v2,-62,25,-88,75,-125v25,-19,53,-40,53,-70v0,-18,-11,-43,-44,-43v-19,0,-45,9,-59,45","w":200},"3":{"d":"31,-201r-19,-25v13,-13,41,-40,89,-40v36,0,66,17,66,55v0,36,-37,54,-51,60v13,1,35,0,49,18v35,46,18,85,-31,118v-41,28,-95,24,-126,24r0,-31v37,2,64,5,107,-20v28,-16,30,-39,30,-49v-3,-43,-46,-46,-83,-28r-10,-24v34,-14,49,-21,68,-39v22,-12,12,-56,-23,-56v-27,0,-44,17,-66,37","w":200},"4":{"d":"37,-103r82,0r0,-142r-3,0xm96,-264r58,0r0,160r29,0r0,31r-29,0r0,73r-34,0r0,-73r-109,0r0,-40","w":200},"5":{"d":"57,-167v65,-25,125,13,123,77v0,40,-26,98,-118,98v-17,0,-23,-2,-50,-7r5,-33v48,21,127,5,127,-58v0,-65,-68,-66,-94,-37r-26,0r14,-137r126,0r0,32r-100,0","w":200},"6":{"d":"11,-87v0,-100,39,-136,67,-181r47,0v-33,36,-62,70,-73,126v9,-7,23,-18,50,-18v56,0,83,40,83,81v0,42,-22,87,-89,87v-44,0,-85,-29,-85,-95xm48,-76v0,35,22,55,50,55v28,0,50,-18,50,-54v0,-24,-15,-56,-50,-56v-22,0,-50,16,-50,55","w":200},"7":{"d":"13,-231r0,-33r169,0v-35,84,-71,160,-93,264r-42,0v22,-77,52,-157,88,-231r-122,0","w":200},"8":{"d":"99,-130v-25,0,-49,26,-49,57v0,18,11,51,50,51v22,0,50,-14,50,-56v0,-15,-9,-52,-51,-52xm99,-156v62,0,58,-87,0,-87v-24,0,-45,19,-45,44v0,24,20,43,45,43xm14,-70v0,-45,35,-66,48,-74v-11,-3,-43,-18,-43,-59v0,-38,31,-67,77,-67v62,0,84,36,84,68v0,20,-18,51,-42,59v27,10,48,31,48,72v0,63,-88,105,-148,57v-20,-17,-24,-43,-24,-56","w":200},"9":{"d":"185,-175v0,71,-42,151,-67,180r-47,0v26,-27,67,-76,73,-125v-8,6,-23,17,-50,17v-110,-3,-115,-165,4,-168v58,-2,87,48,87,96xm98,-242v-28,0,-50,27,-50,55v0,30,19,55,49,55v21,0,51,-13,51,-54v0,-33,-21,-56,-50,-56","w":200},":":{"d":"83,-21v0,10,-8,24,-25,24v-13,0,-25,-10,-25,-25v0,-35,49,-31,50,1xm60,-144v-41,0,-30,-51,-2,-49v12,0,25,10,25,24v0,14,-11,25,-23,25","w":119,"k":{" ":14}},";":{"d":"86,-170v0,12,-10,25,-26,25v-14,0,-24,-10,-24,-24v0,-35,50,-29,50,-1xm47,-47r30,0r-43,113r-31,0","w":119,"k":{" ":22}},"<":{"d":"199,-27r0,30r-182,-81r0,-26r182,-81r0,29r-145,65","w":216},"=":{"d":"199,-143r0,29r-182,0r0,-29r182,0xm199,-68r0,29r-182,0r0,-29r182,0","w":216},">":{"d":"17,-27r145,-64r-145,-65r0,-29r182,81r0,26r-182,81r0,-30","w":216},"?":{"d":"152,-213v0,57,-66,67,-54,125r-30,0v-9,-63,49,-83,49,-127v0,-16,-11,-29,-30,-29v-25,0,-33,22,-36,32r-33,-12v6,-16,28,-46,70,-46v17,0,64,8,64,57xm57,-21v2,-37,51,-31,51,-1v0,12,-9,25,-25,25v-15,0,-26,-11,-26,-24"},"@":{"d":"234,-55r14,14v-21,26,-55,45,-96,45v-74,0,-134,-56,-134,-130v0,-73,60,-130,131,-130v64,0,121,43,121,102v0,63,-52,98,-84,98v-13,1,-20,-9,-23,-21v-26,37,-91,20,-91,-31v0,-62,79,-129,118,-65r5,-19r25,0r-24,87v-3,12,-4,25,5,25v23,0,45,-33,45,-64v0,-56,-44,-90,-97,-90v-61,0,-105,49,-105,109v0,99,133,142,190,70xm151,-174v-30,0,-50,36,-50,59v0,19,12,33,29,33v28,0,49,-36,49,-59v0,-17,-13,-33,-28,-33","w":288},"A":{"d":"77,-86r84,0r-43,-136v-17,42,-26,92,-41,136xm190,0r-18,-55r-105,0r-16,55r-39,0r86,-264r41,0r89,264r-38,0","w":240,"k":{"v":14,"w":22,"T":22,"U":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":22,"W":22,"y":14,"Y":29,"\u0178":29}},"B":{"d":"216,-70v0,93,-96,65,-177,70r0,-264v52,3,96,-12,137,12v51,29,17,103,-22,104v-4,0,-5,1,-5,4v0,6,16,7,21,10v25,8,46,32,46,64xm73,-128r0,97v51,-5,104,22,104,-45v0,-28,-15,-45,-43,-50v-1,0,-21,-3,-61,-2xm73,-156v47,-1,92,7,92,-43v0,-46,-53,-35,-92,-37r0,80","w":240},"C":{"d":"113,-24v38,0,40,-30,44,-56r36,7v-1,21,-9,43,-25,59v-23,23,-49,23,-59,23v-22,0,-86,-12,-86,-139v0,-61,15,-137,90,-137v17,0,39,4,55,21v18,18,21,39,23,52r-34,6v-3,-26,-15,-48,-44,-48v-48,0,-54,74,-54,98v0,58,10,114,54,114","w":219},"D":{"d":"179,-132v0,-58,-27,-111,-105,-99r0,198v78,10,105,-39,105,-99xm217,-129v0,66,-15,131,-122,129r-58,0r0,-264r58,0v87,0,122,50,122,135","w":240,"k":{"Y":14,"\u0178":14,",":14,".":14}},"E":{"d":"43,0r0,-264r164,0r0,32r-126,0r0,77r93,0r0,33r-92,0r0,89r132,0r0,33r-171,0","w":240},"F":{"d":"38,0r0,-264r163,0r0,33r-125,0r0,80r90,0r0,34r-90,0r0,117r-38,0","w":219,"k":{"\u00eb":22,"\u00e0":22,"\u00e4":22,",":50,".":50,"e":22,"\u00e9":22,"\u00ea":22,"\u00e8":22,"i":14,"\u00ee":14,"o":22,"\u0153":22,"\u00f4":22,"\u00f6":22,"\u00f2":22,"a":22,"\u00e2":22,"A":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"r":22}},"G":{"d":"174,-21v-27,22,-81,56,-120,2v-44,-61,-45,-142,-10,-207v42,-78,135,-42,149,20r-34,8v-4,-12,-13,-40,-43,-40v-9,0,-39,3,-49,47v-15,62,-14,92,7,137v30,63,100,17,94,-34r-51,0r0,-34r86,0r0,127r-13,0v-4,-7,-10,-24,-16,-26","w":240},"H":{"d":"46,0r0,-264r37,0r0,111r94,0r0,-111r37,0r0,264r-37,0r0,-122r-94,0r0,122r-37,0","w":259},"I":{"d":"28,0r0,-23r23,0r0,-217r-23,0r0,-24r84,0r0,24r-24,0r0,217r24,0r0,23r-84,0","w":140},"J":{"d":"109,-79r0,-185r38,0r0,174v0,52,-13,98,-75,98v-39,0,-71,-42,-70,-74r38,-14v-1,32,6,54,35,54v33,0,34,-40,34,-53","k":{"u":7,"\u00fb":7,"\u00fc":7,"\u00f9":7}},"K":{"d":"86,-141r106,-123r41,0r0,5r-103,116r105,139r0,4r-45,0xm41,0r0,-264r36,0r0,264r-36,0","w":240,"k":{"y":7,"e":14,"\u00e9":14,"\u00ea":14,"\u00eb":14,"\u00e8":14,"o":7,"\u0153":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"u":14,"\u00fb":14,"\u00fc":14,"\u00f9":14}},"L":{"d":"43,0r0,-264r37,0r0,231r122,0r0,33r-159,0","w":219,"k":{"T":43,"V":36,"W":36,"y":22,"Y":43,"\u0178":43}},"M":{"d":"175,0r-30,0r-64,-241v-1,-3,-6,-3,-6,1r0,240r-30,0r0,-264r55,0r57,205v1,4,6,4,7,0r55,-205r56,0r0,264r-30,0r0,-238v-1,-4,-4,-6,-6,-1","w":320},"N":{"d":"42,0r0,-264r47,0r87,196v4,5,7,29,13,30r-1,-226r31,0r0,264r-47,0r-77,-172v-12,-23,-16,-51,-23,-57v-6,6,2,49,0,53r0,176r-30,0","w":259},"O":{"d":"111,-237v-44,0,-51,53,-52,108v0,33,4,104,50,104v37,0,52,-38,52,-105v0,-35,-3,-107,-50,-107xm110,-268v70,0,88,72,89,137v0,63,-18,139,-89,139v-99,0,-108,-166,-68,-237v20,-36,49,-39,68,-39","w":219,"k":{",":7}},"P":{"d":"175,-184v-5,-58,-56,-48,-94,-49r0,96v47,3,98,0,94,-47xm215,-184v0,77,-65,80,-134,79r0,105r-37,0r0,-264v85,-6,171,3,171,80","w":240,"k":{",":72,".":90,"e":14,"\u00e9":14,"\u00ea":14,"\u00eb":14,"\u00e8":14,"o":14,"\u0153":14,"\u00f4":14,"\u00f6":14,"\u00f2":14,"A":29,"\u00c2":29,"\u00c4":29,"\u00c0":29}},"Q":{"d":"110,-268v70,0,88,72,89,137v0,41,-7,88,-33,116v12,18,23,20,40,20r0,37v-18,0,-44,-1,-63,-41v-117,47,-152,-139,-101,-230v20,-36,49,-39,68,-39xm111,-237v-44,0,-51,53,-52,108v-1,37,10,121,67,101r-24,-39r18,-13r25,35v12,-17,17,-46,17,-85v0,-35,-3,-107,-51,-107","w":219,"k":{",":-7}},"R":{"d":"43,0r0,-264r82,0v74,0,89,44,89,71v0,50,-32,63,-56,71r69,122r-43,0r-63,-117r-41,0r0,117r-37,0xm80,-146v50,-2,91,9,97,-43v5,-43,-48,-46,-97,-44r0,87","w":240},"S":{"d":"197,-71v4,71,-87,106,-144,58v-17,-14,-24,-27,-30,-40r32,-20v8,21,25,47,61,47v43,1,70,-56,14,-82v-43,-20,-98,-27,-98,-94v0,-40,34,-68,75,-68v40,0,69,21,85,57r-31,18v-12,-24,-23,-43,-54,-43v-16,0,-40,9,-40,35v18,78,124,29,130,132","w":219},"T":{"d":"14,-264r192,0r0,33r-77,0r0,231r-38,0r0,-231r-77,0r0,-33","w":219,"k":{"\u00fc":43,"\u00f2":43,"\u00f6":43,"\u00ee":14,"\u00e8":43,"\u00eb":43,"\u00ea":43,"\u00e0":36,"\u00e4":36,"\u00e2":36,"w":43,"y":36,",":36,".":43,"e":43,"\u00e9":43,"i":14,"o":43,"\u0153":43,"\u00f4":43,"a":36,"A":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"r":47,"u":43,"\u00fb":43,"\u00f9":43,"-":22,":":29,";":29}},"U":{"d":"46,-264r37,0r0,176v0,28,6,62,49,62v12,0,32,-5,41,-22v18,-61,4,-143,8,-216r33,0v-7,87,21,196,-24,248v-20,23,-47,24,-66,24v-13,0,-43,-4,-61,-31v-15,-22,-17,-43,-17,-67r0,-174","w":259,"k":{",":22,".":14,"H":14,"M":14,"N":14,"R":14}},"V":{"d":"190,-264r35,0r-84,264r-40,0r-86,-264r39,0r68,211v1,0,3,-1,3,-2","w":240,"k":{"\u00f6":22,"\u00f4":22,"\u00ee":14,"\u00e8":22,"\u00eb":22,"\u00ea":22,"\u00e0":22,"\u00e4":22,"\u00e2":22,",":36,".":36,"e":22,"\u00e9":22,"i":14,"o":22,"\u0153":22,"\u00f2":22,"a":22,"A":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"u":14,"\u00fb":14,"\u00fc":14,"\u00f9":14,"-":14}},"W":{"d":"104,-40v13,-28,17,-76,25,-110r28,-114r30,0r28,110v10,30,11,68,26,114v5,-1,4,-7,5,-12v11,-62,12,-68,21,-108r25,-104r32,0r-66,264r-38,0r-50,-215v-11,32,-14,75,-23,113r-25,102r-38,0r-68,-264r35,0r29,115r20,105v0,2,3,4,4,4","w":339,"k":{"\u00fc":14,"\u00f6":22,"\u00ea":22,"\u00e4":14,",":22,".":22,"e":22,"\u00e9":22,"\u00eb":22,"\u00e8":22,"i":7,"\u00ee":7,"o":22,"\u0153":22,"\u00f4":22,"\u00f2":22,"a":14,"\u00e2":14,"\u00e0":14,"A":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"u":14,"\u00fb":14,"\u00f9":14,"-":7}},"X":{"d":"177,-264r40,0r-79,126r91,138r-45,0r-67,-110v-23,31,-45,76,-67,110r-39,0r85,-136r-84,-128r43,0v22,33,38,71,63,101","w":240},"Y":{"d":"228,-264r-87,160r0,104r-39,0r0,-102r-90,-162r43,0r67,129v8,0,10,-20,14,-23r54,-106r38,0","w":240,"k":{"\u00fc":22,"\u00f6":43,",":50,".":50,"e":43,"\u00e9":43,"\u00ea":43,"\u00eb":43,"\u00e8":43,"i":14,"\u00ee":14,"o":43,"\u0153":43,"\u00f4":43,"\u00f2":43,"a":29,"\u00e2":29,"\u00e4":29,"\u00e0":29,"A":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"u":22,"\u00fb":22,"\u00f9":22,"-":29,":":14,";":14}},"Z":{"d":"68,-34v30,4,89,-1,132,1r0,33r-179,0r0,-27r124,-202v-26,-8,-81,1,-120,-2r0,-33r169,0r0,22r-119,192v-7,11,-6,11,-7,16","w":219},"[":{"d":"125,0r-104,3r0,-268r104,3r0,14r-74,-1r0,236r74,-1r0,14","w":140},"\\":{"d":"78,8r-86,-276r31,0r85,276r-30,0","w":100},"]":{"d":"119,3r-104,-3r0,-14r74,1r0,-236r-74,1r0,-14r104,-3r0,268","w":140},"^":{"d":"94,-252r27,0r81,163r-30,0r-64,-132r-64,132r-30,0","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18"},"a":{"d":"19,-171v42,-32,131,-33,131,34r0,95v0,10,0,21,16,20r0,26v-25,0,-41,-9,-47,-32v-29,40,-108,48,-110,-14v-2,-54,53,-76,108,-75v-3,-28,12,-50,-30,-50v-19,0,-38,10,-54,20xm117,-46r0,-52v-40,0,-76,16,-76,49v0,16,11,30,28,30v21,0,38,-17,48,-27"},"b":{"d":"104,4v-33,0,-41,-29,-51,-42v-5,11,-1,30,-3,44r-28,-12r0,-251r31,-12v2,36,-4,78,2,110v39,-63,113,-33,110,66v0,27,-8,97,-61,97xm97,-22v36,0,35,-59,35,-71v0,-24,-3,-74,-37,-74v-13,0,-42,13,-42,74v0,36,17,71,44,71","k":{"v":4,",":7,".":7}},"c":{"d":"44,-104v1,38,4,80,42,80v20,0,29,-17,32,-36r29,13v-6,31,-29,51,-61,51v-72,0,-73,-85,-73,-95v0,-18,0,-48,19,-74v17,-23,37,-27,50,-27v13,-5,58,19,61,42r-27,14v-3,-8,-10,-30,-32,-30v-22,0,-40,23,-40,62","w":159},"d":{"d":"74,-193v27,0,36,17,48,34v8,-25,0,-67,3,-98r32,-12r0,262r-28,12v-2,-14,1,-33,-4,-44v-9,10,-21,43,-50,43v-40,0,-62,-42,-62,-102v0,-40,16,-95,61,-95xm46,-91v0,17,1,68,36,68v60,-1,54,-144,1,-144v-28,0,-37,32,-37,76","k":{"y":-7}},"e":{"d":"89,-193v51,0,72,48,71,102r-112,0v0,42,13,70,46,70v22,0,32,-10,38,-15r18,17v-12,11,-27,24,-61,24v-44,0,-74,-35,-74,-94v0,-96,57,-104,74,-104xm49,-113r78,0v7,-55,-52,-75,-71,-32v-6,14,-7,26,-7,32","k":{"v":9,"w":7,",":7,".":7,"x":7}},"f":{"d":"120,-263r0,27v-5,-3,-12,-6,-22,-6v-38,0,-18,39,-23,69r33,0r0,21r-33,0r0,152r-34,0r0,-152r-26,0r0,-20r26,0v-10,-67,18,-113,79,-91","w":119,"k":{",":22,".":14,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"i":14,"\u00ee":14,"o":14,"\u0153":14,"\u00f4":14,"\u00f6":14,"\u00f2":14}},"g":{"d":"72,-193v34,0,42,21,54,37v6,-5,2,-22,3,-33r26,0v-2,66,5,142,-4,201v-4,25,-63,59,-118,37r0,-33v24,-3,15,15,45,14v51,-2,46,-39,44,-79v-10,9,-15,29,-49,30v-45,1,-60,-51,-60,-95v0,-45,26,-79,59,-79xm82,-45v12,0,43,-9,43,-61v0,-44,-20,-62,-43,-62v-37,0,-37,50,-37,67v0,12,3,56,37,56"},"h":{"d":"103,-169v-23,0,-35,26,-46,41r0,128r-33,0r0,-257r33,-13v2,37,-4,81,2,114v12,-16,37,-43,57,-37v27,0,37,19,37,46r0,147r-32,0r0,-146v0,-14,-4,-23,-18,-23"},"i":{"d":"29,-223r0,-34r42,0r0,34r-42,0xm34,0r0,-188r33,0r0,188r-33,0","w":100},"j":{"d":"4,53r0,-33v14,9,36,8,36,-11r0,-197r32,0r0,199v4,28,-28,53,-68,42xm36,-222r0,-35r40,0r0,35r-40,0","w":100},"k":{"d":"130,-188r36,0r-68,90v23,34,52,62,72,98r-38,0r-70,-95xm24,0r0,-257v11,-3,19,-10,32,-11r0,268r-32,0","k":{"y":-7}},"l":{"d":"34,0r0,-257v11,-3,19,-10,32,-11r0,268r-32,0","w":100,"k":{"w":7}},"m":{"d":"109,-167v-22,7,-29,15,-51,45r0,122r-31,0r0,-183r28,-10v2,15,-4,37,3,46v29,-24,23,-42,63,-45v32,-3,30,27,37,42v21,-25,46,-47,64,-43v19,3,33,12,33,56r0,137r-31,0r0,-134v0,-15,0,-33,-19,-33v-14,0,-27,15,-48,42r0,125r-31,0r0,-140v0,-26,-9,-27,-17,-27","w":280,"k":{"y":-7,"a":-7,"\u00e2":-7,"\u00e4":-7,"\u00e0":-7,"u":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7}},"n":{"d":"104,-168v-27,1,-41,35,-46,41r0,127r-32,0r0,-181r29,-12v1,12,-6,50,9,35v17,-36,91,-59,91,14r0,144r-32,0r0,-143v0,-5,0,-25,-19,-25","k":{"y":-7,"e":-7,"\u00e9":-7,"\u00ea":-7,"\u00eb":-7,"\u00e8":-7,"a":-7,"\u00e2":-7,"\u00e4":-7,"\u00e0":-7}},"o":{"d":"88,-193v61,1,77,50,77,100v0,57,-30,97,-76,97v-33,0,-46,-17,-53,-26v-14,-18,-21,-44,-21,-76v0,-66,34,-95,73,-95xm130,-95v0,-33,-7,-71,-41,-71v-36,0,-42,45,-42,74v0,14,6,68,43,68v35,0,40,-44,40,-71","k":{"v":11,"w":11,",":7,"x":7}},"p":{"d":"132,-99v0,-20,-2,-69,-36,-69v-28,0,-43,39,-43,71v0,56,25,72,45,72v16,0,34,-15,34,-74xm165,-97v2,103,-71,126,-110,66v-3,28,0,64,-1,94r-32,0r0,-247r28,-13v1,14,-3,36,3,45v9,-3,11,-42,51,-43v46,0,61,54,61,98","k":{",":7}},"q":{"d":"45,-98v2,34,1,73,37,73v32,0,43,-40,43,-70v0,-49,-23,-73,-43,-73v-34,0,-37,54,-37,70xm72,-195v35,0,40,28,53,43v5,-10,0,-31,2,-45r29,13r0,247r-32,0v-1,-31,3,-67,-2,-94v-15,14,-28,34,-49,34v-32,0,-60,-32,-60,-96v0,-72,29,-102,59,-102"},"r":{"d":"25,0r0,-181r30,-12v1,21,-3,47,2,64v9,1,11,-15,15,-18v24,-36,47,-45,52,-46r0,53v-31,-5,-50,11,-66,32r0,108r-33,0","w":140,"k":{"y":-11,",":43,".":43,"l":7,"\u0142":7,"t":-7,"-":14}},"s":{"d":"120,-176r-9,25v-17,-21,-71,-25,-71,8v13,49,88,24,88,91v0,33,-26,57,-62,57v-27,0,-45,-11,-56,-18r13,-24v26,28,76,25,76,-11v0,-15,-7,-20,-38,-35v-35,-17,-48,-31,-48,-56v0,-54,59,-67,107,-37","w":140},"t":{"d":"4,-153r0,-20r27,0r0,-43v12,-9,19,-23,34,-29r0,72r30,0r0,20r-32,0r0,112v-3,23,35,17,48,7r0,28v-32,13,-80,25,-80,-31r0,-116r-27,0","w":119,"k":{"a":-11,"\u00e2":-11,"\u00e4":-11,"\u00e0":-11}},"u":{"d":"122,-35v-15,13,-30,39,-58,39v-21,0,-38,-12,-38,-47r0,-145r32,0r0,135v0,9,1,34,20,34v16,0,27,-17,45,-43r0,-126r31,0r0,182r-29,11v-1,-13,3,-32,-3,-40","k":{"b":-7}},"v":{"d":"118,-188r31,0r-48,188r-39,0r-52,-188r34,0r36,152v10,-2,7,-19,10,-30","w":159,"k":{",":22,".":22,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"a":-7,"\u00e2":-7,"\u00e4":-7,"\u00e0":-7}},"w":{"d":"14,-188r32,0v13,50,18,108,34,155v16,-44,21,-105,36,-155r34,0r34,154v14,-47,20,-104,33,-154r29,0r-48,188r-34,0r-19,-87v-5,-22,-4,-50,-13,-68v-15,47,-19,106,-34,155r-34,0","w":259,"k":{",":22,".":22,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7}},"x":{"d":"90,-72r-3,0r-37,72r-36,0r57,-95r-57,-93r39,0v13,22,22,48,37,68v14,-21,24,-46,37,-68r36,0r-55,91r58,97r-37,0","k":{"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7}},"y":{"d":"9,60r0,-36v12,-1,8,10,25,10v17,0,21,-13,33,-48r-61,-174r35,0r40,128v16,-41,24,-85,39,-128r32,0r-59,185v-22,64,-35,71,-84,63","w":159,"k":{",":29,".":29,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"t":-11}},"z":{"d":"17,0r0,-24r59,-95v9,-16,22,-27,28,-42v-23,-2,-56,1,-84,0r0,-27r121,0r0,25r-85,134v17,5,59,-1,86,1r0,28r-125,0","w":159},"{":{"d":"112,-269r0,22v-43,-9,-36,33,-36,72v0,35,-24,45,-31,49v8,2,31,12,31,49v0,32,-6,69,36,61r0,22v-51,9,-65,-21,-65,-78v0,-26,-15,-43,-30,-43r0,-24v28,1,30,-46,30,-83v0,-43,26,-50,65,-47","w":119},"|":{"d":"25,90r0,-360r30,0r0,360r-30,0","w":79},"}":{"d":"8,-247r0,-22v55,-11,65,29,65,88v0,25,15,42,30,42r0,24v-25,-2,-30,39,-30,74v0,43,-26,50,-65,47r0,-22v39,8,37,-25,36,-61v-1,-38,24,-45,31,-50v-8,-1,-31,-14,-31,-48v0,-34,11,-81,-36,-72","w":119},"~":{"d":"147,-64v-38,-3,-87,-50,-109,-1r-17,-19v12,-18,26,-32,48,-32v43,2,85,49,110,1r16,19v-12,18,-26,34,-48,32","w":216},"\u0192":{"d":"119,-133v-16,78,0,192,-83,192v-18,0,-26,-6,-33,-11r12,-30v27,27,48,5,56,-52r14,-99r-52,0r0,-27r54,0v0,-4,6,-44,15,-71v12,-38,57,-48,85,-28r-11,29v-5,-7,-12,-12,-21,-12v-35,0,-26,63,-33,82r51,0r0,27r-54,0","w":200},"'":{"d":"25,-167r0,-97r30,0r0,97r-30,0","w":79},"`":{"d":"40,-257r32,50r-24,0r-48,-50r40,0","w":100},"\u0141":{"d":"80,-33r122,0r0,33r-159,0r0,-105r-39,20r0,-28r39,-19r0,-132r37,0r0,113r53,-27r0,28r-53,29r0,88","w":219,"k":{"T":43,"V":36,"W":36,"y":22,"Y":43,"\u0178":43}},"\u0152":{"d":"112,0v-63,8,-98,-69,-98,-126v0,-26,1,-92,47,-123v23,-15,41,-15,60,-15r196,0r0,32r-122,0r0,78r88,0r0,32r-88,0r0,89r127,0r0,33r-210,0xm53,-126v0,46,7,93,62,93v31,0,43,-11,43,-41r0,-122v0,-25,-14,-34,-38,-34v-64,0,-67,64,-67,104","w":339,"k":{",":7}},"\u0131":{"d":"34,0r0,-188r32,0r0,188r-32,0","w":100,"k":{"y":-7}},"\u0142":{"d":"66,-268r0,125r34,-15r0,21r-34,15r0,122r-32,0r0,-107r-34,15r0,-21r34,-15r0,-129v11,-3,19,-10,32,-11","w":100,"k":{"w":7}},"\u0153":{"d":"92,-166v-38,0,-42,51,-42,75v0,15,3,65,44,65v37,0,39,-50,39,-68v0,-40,-9,-72,-41,-72xm43,-172v28,-34,81,-23,103,3v27,-30,85,-36,110,11v12,23,13,36,14,67r-112,0v-1,37,10,70,45,70v21,0,31,-9,38,-15r19,17v-19,27,-92,32,-116,0v-12,13,-29,23,-54,23v-74,-2,-99,-114,-47,-176xm237,-113v0,-35,-10,-56,-38,-56v-16,0,-39,15,-40,56r78,0","w":280,"k":{"v":11,"w":11,",":7,"x":7}},"\u00c2":{"d":"77,-86r84,0r-43,-136v-17,42,-26,92,-41,136xm190,0r-18,-55r-105,0r-16,55r-39,0r86,-264r41,0r89,264r-38,0xm104,-333r33,0r36,50r-29,0r-24,-33r-24,33r-28,0","w":240,"k":{"v":14,"w":22,"T":22,"U":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":22,"W":22,"y":14,"Y":29,"\u0178":29}},"\u00c4":{"d":"77,-86r84,0r-43,-136v-17,42,-26,92,-41,136xm190,0r-18,-55r-105,0r-16,55r-39,0r86,-264r41,0r89,264r-38,0xm75,-287r0,-37r33,0r0,37r-33,0xm133,-287r0,-37r33,0r0,37r-33,0","w":240,"k":{"v":14,"w":22,"T":22,"U":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":22,"W":22,"y":14,"Y":29,"\u0178":29}},"\u00c0":{"d":"77,-86r84,0r-43,-136v-17,42,-26,92,-41,136xm190,0r-18,-55r-105,0r-16,55r-39,0r86,-264r41,0r89,264r-38,0xm110,-333r32,50r-24,0r-47,-50r39,0","w":240,"k":{"v":14,"w":22,"T":22,"U":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":22,"W":22,"y":14,"Y":29,"\u0178":29}},"\u00c7":{"d":"113,-24v38,0,40,-30,44,-56r36,7v4,38,-43,84,-75,81r-10,14v24,-6,44,11,41,26v3,34,-52,39,-77,25r6,-14v18,6,40,12,44,-10v-5,-17,-15,-16,-31,-11v-13,-9,6,-20,11,-30v-26,-3,-79,-24,-79,-138v0,-61,15,-137,90,-137v17,0,39,4,55,21v18,18,21,39,23,52r-34,6v-10,-42,-10,-42,-44,-48v-48,-8,-54,74,-54,98v0,58,10,114,54,114","w":219},"\u00c9":{"d":"43,0r0,-264r164,0r0,32r-126,0r0,77r93,0r0,33r-92,0r0,89r132,0r0,33r-171,0xm126,-333r40,0r-48,50r-24,0","w":240},"\u00ca":{"d":"43,0r0,-264r164,0r0,32r-126,0r0,77r93,0r0,33r-92,0r0,89r132,0r0,33r-171,0xm104,-333r33,0r36,50r-29,0r-24,-33r-24,33r-28,0","w":240},"\u00cb":{"d":"43,0r0,-264r164,0r0,32r-126,0r0,77r93,0r0,33r-92,0r0,89r132,0r0,33r-171,0xm75,-287r0,-37r33,0r0,37r-33,0xm133,-287r0,-37r33,0r0,37r-33,0","w":240},"\u00c8":{"d":"43,0r0,-264r164,0r0,32r-126,0r0,77r93,0r0,33r-92,0r0,89r132,0r0,33r-171,0xm110,-333r32,50r-24,0r-47,-50r39,0","w":240},"\u00ce":{"d":"28,0r0,-23r23,0r0,-217r-23,0r0,-24r84,0r0,24r-24,0r0,217r24,0r0,23r-84,0xm54,-333r33,0r36,50r-29,0r-24,-33r-24,33r-28,0","w":140},"\u00cf":{"d":"28,0r0,-23r23,0r0,-217r-23,0r0,-24r84,0r0,24r-24,0r0,217r24,0r0,23r-84,0xm25,-287r0,-37r33,0r0,37r-33,0xm83,-287r0,-37r33,0r0,37r-33,0","w":140},"\u00d4":{"d":"111,-237v-44,0,-51,53,-52,108v0,33,4,104,50,104v37,0,52,-38,52,-105v0,-35,-3,-107,-50,-107xm110,-268v70,0,88,72,89,137v0,63,-18,139,-89,139v-99,0,-108,-166,-68,-237v20,-36,49,-39,68,-39xm94,-333r33,0r36,50r-29,0r-24,-33r-24,33r-28,0","w":219,"k":{",":7}},"\u00d6":{"d":"111,-237v-44,0,-51,53,-52,108v0,33,4,104,50,104v37,0,52,-38,52,-105v0,-35,-3,-107,-50,-107xm110,-268v70,0,88,72,89,137v0,63,-18,139,-89,139v-99,0,-108,-166,-68,-237v20,-36,49,-39,68,-39xm65,-287r0,-37r33,0r0,37r-33,0xm123,-287r0,-37r33,0r0,37r-33,0","w":219,"k":{",":7}},"\u00d2":{"d":"111,-237v-44,0,-51,53,-52,108v0,33,4,104,50,104v37,0,52,-38,52,-105v0,-35,-3,-107,-50,-107xm110,-268v70,0,88,72,89,137v0,63,-18,139,-89,139v-99,0,-108,-166,-68,-237v20,-36,49,-39,68,-39xm100,-333r32,50r-24,0r-48,-50r40,0","w":219,"k":{",":7}},"\u0160":{"d":"197,-71v4,71,-87,106,-144,58v-17,-14,-24,-27,-30,-40r32,-20v8,21,25,47,61,47v43,1,70,-56,14,-82v-43,-20,-98,-27,-98,-94v0,-40,34,-68,75,-68v40,0,69,21,85,57r-31,18v-12,-24,-23,-43,-54,-43v-16,0,-40,9,-40,35v18,78,124,29,130,132xm163,-333r-36,50r-33,0r-36,-50r28,0r24,33r24,-33r29,0","w":219},"\u00db":{"d":"46,-264r37,0r0,176v0,28,6,62,49,62v12,0,32,-5,41,-22v18,-61,4,-143,8,-216r33,0v-7,87,21,196,-24,248v-20,23,-47,24,-66,24v-13,0,-43,-4,-61,-31v-15,-22,-17,-43,-17,-67r0,-174xm113,-333r34,0r36,50r-29,0r-24,-33r-24,33r-29,0","w":259,"k":{",":22,".":14,"H":14,"M":14,"N":14,"R":14}},"\u00dc":{"d":"46,-264r37,0r0,176v0,28,6,62,49,62v12,0,32,-5,41,-22v18,-61,4,-143,8,-216r33,0v-7,87,21,196,-24,248v-20,23,-47,24,-66,24v-13,0,-43,-4,-61,-31v-15,-22,-17,-43,-17,-67r0,-174xm85,-287r0,-37r33,0r0,37r-33,0xm143,-287r0,-37r32,0r0,37r-32,0","w":259,"k":{",":22,".":14,"H":14,"M":14,"N":14,"R":14}},"\u00d9":{"d":"46,-264r37,0r0,176v0,28,6,62,49,62v12,0,32,-5,41,-22v18,-61,4,-143,8,-216r33,0v-7,87,21,196,-24,248v-20,23,-47,24,-66,24v-13,0,-43,-4,-61,-31v-15,-22,-17,-43,-17,-67r0,-174xm120,-333r32,50r-25,0r-47,-50r40,0","w":259,"k":{",":22,".":14,"H":14,"M":14,"N":14,"R":14}},"\u0178":{"d":"228,-264r-87,160r0,104r-39,0r0,-102r-90,-162r43,0r67,129v8,0,10,-20,14,-23r54,-106r38,0xm75,-287r0,-37r33,0r0,37r-33,0xm133,-287r0,-37r33,0r0,37r-33,0","w":240,"k":{",":50,".":50,"e":43,"\u00e9":43,"\u00ea":43,"\u00eb":43,"\u00e8":43,"i":14,"\u00ee":14,"o":43,"\u0153":43,"\u00f4":43,"\u00f6":43,"\u00f2":43,"a":29,"\u00e2":29,"\u00e4":29,"\u00e0":29,"A":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"u":22,"\u00fb":22,"\u00fc":22,"\u00f9":22,"-":29,":":14,";":14}},"\u017d":{"d":"68,-34v30,4,89,-1,132,1r0,33r-179,0r0,-27r124,-202v-26,-8,-81,1,-120,-2r0,-33r169,0r0,22r-119,192v-7,11,-6,11,-7,16xm163,-333r-36,50r-33,0r-36,-50r28,0r24,33r24,-33r29,0","w":219},"\u00e2":{"d":"19,-171v42,-32,131,-33,131,34r0,95v0,10,0,21,16,20r0,26v-25,0,-41,-9,-47,-32v-29,40,-108,48,-110,-14v-2,-54,53,-76,108,-75v-3,-28,12,-50,-30,-50v-19,0,-38,10,-54,20xm117,-46r0,-52v-40,0,-76,16,-76,49v0,16,11,30,28,30v21,0,38,-17,48,-27xm73,-257r34,0r36,50r-29,0r-24,-33r-24,33r-29,0"},"\u00e4":{"d":"19,-171v42,-32,131,-33,131,34r0,95v0,10,0,21,16,20r0,26v-25,0,-41,-9,-47,-32v-29,40,-108,48,-110,-14v-2,-54,53,-76,108,-75v-3,-28,12,-50,-30,-50v-19,0,-38,10,-54,20xm117,-46r0,-52v-40,0,-76,16,-76,49v0,16,11,30,28,30v21,0,38,-17,48,-27xm45,-211r0,-37r33,0r0,37r-33,0xm103,-211r0,-37r32,0r0,37r-32,0"},"\u00e0":{"d":"19,-171v42,-32,131,-33,131,34r0,95v0,10,0,21,16,20r0,26v-25,0,-41,-9,-47,-32v-29,40,-108,48,-110,-14v-2,-54,53,-76,108,-75v-3,-28,12,-50,-30,-50v-19,0,-38,10,-54,20xm117,-46r0,-52v-40,0,-76,16,-76,49v0,16,11,30,28,30v21,0,38,-17,48,-27xm80,-257r32,50r-25,0r-47,-50r40,0"},"\u00e7":{"d":"147,-47v0,27,-35,52,-60,51r-13,18v24,-6,44,11,41,26v3,34,-52,39,-77,25r6,-14v18,7,40,11,44,-10v-5,-17,-15,-16,-31,-11r-7,-7r21,-28v-57,-11,-58,-84,-58,-94v0,-18,0,-48,19,-74v17,-23,37,-27,50,-27v13,-5,58,19,61,42r-27,14v-3,-8,-10,-30,-32,-30v-22,0,-40,23,-40,62v1,38,4,80,42,80v20,0,29,-17,32,-36","w":159},"\u00e9":{"d":"89,-193v51,0,72,48,71,102r-112,0v0,42,13,70,46,70v22,0,32,-10,38,-15r18,17v-12,11,-27,24,-61,24v-44,0,-74,-35,-74,-94v0,-96,57,-104,74,-104xm49,-113r78,0v7,-55,-52,-75,-71,-32v-6,14,-7,26,-7,32xm96,-257r39,0r-47,50r-24,0","k":{"v":9,"w":7,",":7,".":7,"x":7}},"\u00ea":{"d":"89,-193v51,0,72,48,71,102r-112,0v0,42,13,70,46,70v22,0,32,-10,38,-15r18,17v-12,11,-27,24,-61,24v-44,0,-74,-35,-74,-94v0,-96,57,-104,74,-104xm49,-113r78,0v7,-55,-52,-75,-71,-32v-6,14,-7,26,-7,32xm73,-257r34,0r36,50r-29,0r-24,-33r-24,33r-29,0","k":{"v":9,"w":7,",":7,".":7,"x":7}},"\u00eb":{"d":"89,-193v51,0,72,48,71,102r-112,0v0,42,13,70,46,70v22,0,32,-10,38,-15r18,17v-12,11,-27,24,-61,24v-44,0,-74,-35,-74,-94v0,-96,57,-104,74,-104xm49,-113r78,0v7,-55,-52,-75,-71,-32v-6,14,-7,26,-7,32xm45,-211r0,-37r33,0r0,37r-33,0xm103,-211r0,-37r32,0r0,37r-32,0","k":{"v":9,"w":7,",":7,".":7,"x":7}},"\u00e8":{"d":"89,-193v51,0,72,48,71,102r-112,0v0,42,13,70,46,70v22,0,32,-10,38,-15r18,17v-12,11,-27,24,-61,24v-44,0,-74,-35,-74,-94v0,-96,57,-104,74,-104xm49,-113r78,0v7,-55,-52,-75,-71,-32v-6,14,-7,26,-7,32xm80,-257r32,50r-25,0r-47,-50r40,0","k":{"v":9,"w":7,",":7,".":7,"x":7}},"\u00ee":{"d":"34,0r0,-188r32,0r0,188r-32,0xm33,-257r34,0r36,50r-29,0r-24,-33r-24,33r-29,0","w":100},"\u00f4":{"d":"88,-193v61,1,77,50,77,100v0,57,-30,97,-76,97v-33,0,-46,-17,-53,-26v-14,-18,-21,-44,-21,-76v0,-66,34,-95,73,-95xm130,-95v0,-33,-7,-71,-41,-71v-36,0,-42,45,-42,74v0,14,6,68,43,68v35,0,40,-44,40,-71xm73,-257r34,0r36,50r-29,0r-24,-33r-24,33r-29,0","k":{"v":11,"w":11,",":7,"x":7}},"\u00f6":{"d":"88,-193v61,1,77,50,77,100v0,57,-30,97,-76,97v-33,0,-46,-17,-53,-26v-14,-18,-21,-44,-21,-76v0,-66,34,-95,73,-95xm130,-95v0,-33,-7,-71,-41,-71v-36,0,-42,45,-42,74v0,14,6,68,43,68v35,0,40,-44,40,-71xm45,-211r0,-37r33,0r0,37r-33,0xm103,-211r0,-37r32,0r0,37r-32,0","k":{"v":11,"w":11,",":7,"x":7}},"\u00f2":{"d":"88,-193v61,1,77,50,77,100v0,57,-30,97,-76,97v-33,0,-46,-17,-53,-26v-14,-18,-21,-44,-21,-76v0,-66,34,-95,73,-95xm130,-95v0,-33,-7,-71,-41,-71v-36,0,-42,45,-42,74v0,14,6,68,43,68v35,0,40,-44,40,-71xm80,-257r32,50r-25,0r-47,-50r40,0","k":{"v":11,"w":11,",":7,"x":7}},"\u0161":{"d":"120,-176r-9,25v-17,-21,-71,-25,-71,8v13,49,88,24,88,91v0,33,-26,57,-62,57v-27,0,-45,-11,-56,-18r13,-24v26,28,76,25,76,-11v0,-15,-7,-20,-38,-35v-35,-17,-48,-31,-48,-56v0,-54,59,-67,107,-37xm123,-257r-36,50r-33,0r-36,-50r28,0r24,33r24,-33r29,0","w":140},"\u00fb":{"d":"122,-35v-15,13,-30,39,-58,39v-21,0,-38,-12,-38,-47r0,-145r32,0r0,135v0,9,1,34,20,34v16,0,27,-17,45,-43r0,-126r31,0r0,182r-29,11v-1,-13,3,-32,-3,-40xm73,-257r34,0r36,50r-29,0r-24,-33r-24,33r-29,0","k":{"b":-7}},"\u00fc":{"d":"122,-35v-15,13,-30,39,-58,39v-21,0,-38,-12,-38,-47r0,-145r32,0r0,135v0,9,1,34,20,34v16,0,27,-17,45,-43r0,-126r31,0r0,182r-29,11v-1,-13,3,-32,-3,-40xm45,-211r0,-37r33,0r0,37r-33,0xm103,-211r0,-37r32,0r0,37r-32,0","k":{"b":-7}},"\u00f9":{"d":"122,-35v-15,13,-30,39,-58,39v-21,0,-38,-12,-38,-47r0,-145r32,0r0,135v0,9,1,34,20,34v16,0,27,-17,45,-43r0,-126r31,0r0,182r-29,11v-1,-13,3,-32,-3,-40xm80,-257r32,50r-25,0r-47,-50r40,0","k":{"b":-7}},"\u017e":{"d":"17,0r0,-24r59,-95v9,-16,22,-27,28,-42v-23,-2,-56,1,-84,0r0,-27r121,0r0,25r-85,134v17,5,59,-1,86,1r0,28r-125,0xm132,-257r-36,50r-33,0r-36,-50r29,0r24,33r24,-33r28,0","w":159},"\u00a0":{"w":99,"k":{"T":36,"V":36,"W":29,"Y":36,"\u0178":36,"A":22,"\u00c2":22,"\u00c4":22,"\u00c0":22}}}});
/* snip */

Cufon.replace('#Telephone',{hover: true, fontFamily: 'Bell Gothic Std'});
Cufon.replace('#Slogan',{hover: true, fontFamily: 'Bell Gothic Std'});
Cufon.replace('.Bell',{hover: true, fontFamily: 'Bell Gothic Std'});
Cufon.replace('h1',{hover: true, fontFamily: 'Bell Gothic Std'});
Cufon.replace('h2',{hover: true, fontFamily: 'Bell Gothic Std'});
Cufon.replace('h2', {
	 fontFamily: 'Bell Gothic Std'
});

Cufon.replace('h3',{hover: true, fontFamily: 'Bell Gothic Std'});
Cufon.replace('#rdv1',{hover: true, fontFamily: 'Bell Gothic Std'});
Cufon.replace('#rdv2',{hover: true, fontFamily: 'Bell Gothic Std'});

Cufon.registerFont({"w":262,"face":{"font-family":"Segoe Print","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"9","cap-height":"6","bbox":"-63.5047 -399 407.942 178.086","underline-thickness":"25.1367","underline-position":"-10.8984","unicode-range":"U+0020-U+017F"},"glyphs":{" ":{"w":143},"!":{"d":"57,-222v-3,-30,25,-54,37,-28v0,3,-6,32,-20,89v-8,33,-5,51,-12,73v-6,0,-20,-2,-23,-4v-5,-17,20,-109,18,-130xm25,-21v0,-19,27,-35,37,-14v5,26,-35,47,-37,14","w":116},"\"":{"d":"113,-258v19,-8,28,4,18,30v-10,28,-2,85,-27,89v-32,-8,5,-68,3,-90v3,-16,4,-26,6,-29xm51,-262v25,8,3,54,0,74v-5,30,1,42,-16,46v-30,-15,5,-78,5,-107v0,-9,5,-13,11,-13","w":145},"#":{"d":"78,-91v5,-10,14,-53,16,-51v-14,-4,-77,19,-82,-2v2,-18,63,-16,80,-21v16,-4,20,-59,43,-62v17,9,-14,49,-13,60r57,-7v10,-12,8,-90,31,-86v6,0,9,4,9,11v0,23,-16,48,-21,72v22,-2,36,-6,59,-6v19,-4,22,15,13,21v-38,0,-64,2,-78,7v2,14,-23,47,-6,52r48,-9v27,-6,30,28,10,29v-22,-12,-41,2,-72,0v-3,14,-11,31,-10,45v3,27,-22,17,-22,1v0,-11,4,-28,7,-39v-12,0,-39,5,-53,7v-10,36,-19,53,-26,53v-5,0,-8,-3,-8,-8v0,-15,5,-29,13,-45v-25,-4,-65,9,-65,-9v5,-23,44,-14,70,-13xm157,-103v2,-10,13,-36,14,-50v-27,2,-47,6,-58,9v-6,13,-10,30,-14,50v34,-2,36,2,58,-9","w":286},"$":{"d":"88,-34v-23,0,-69,26,-83,4v3,-33,58,-17,85,-33v4,-29,6,-50,6,-62v-18,-11,-64,-19,-64,-51v0,-17,55,-37,72,-37v5,-22,-10,-65,19,-64v21,1,5,43,6,59v16,2,53,-15,53,10v0,24,-28,8,-55,14v0,26,-16,64,11,69v13,9,27,10,27,36v0,18,-18,33,-53,43v-2,28,-6,56,-1,82v-9,14,-29,6,-27,-17xm103,-190v-24,5,-38,11,-42,18v2,6,14,13,38,23xm119,-115v-3,20,-4,35,-4,46v42,-16,27,-31,4,-46","w":197},"%":{"d":"26,-170v0,-36,45,-101,84,-67v3,1,34,4,91,8v5,8,1,14,-8,19v-34,58,-85,126,-108,191v-4,12,-22,19,-22,0v18,-74,64,-121,103,-191v-17,-5,-35,-6,-55,-5v13,43,-24,81,-61,83v-16,0,-24,-13,-24,-38xm48,-160v17,21,48,-9,46,-31v0,-6,-2,-15,-6,-29v-28,-3,-41,34,-40,60xm244,-66v-1,37,-31,52,-66,56v-23,2,-31,-17,-32,-34v-2,-20,24,-61,44,-61v26,0,54,15,54,39xm222,-63v-11,-35,-55,-19,-51,17v-2,17,9,12,21,14v7,-2,35,-15,30,-31"},"&":{"d":"311,-20v-18,34,-92,21,-118,-1v-21,14,-46,33,-79,34v-63,3,-104,-48,-70,-104v10,-16,26,-32,51,-47v10,-14,0,-41,0,-60v0,-39,16,-67,52,-67v24,-1,39,26,39,50v0,45,-27,49,-55,80v3,24,44,73,65,84v17,-11,21,-33,34,-60v-33,-6,-41,4,-44,-22v8,-19,43,-1,56,-2r65,-6v19,-1,17,12,6,18v-4,5,-39,6,-52,15v-8,11,-32,61,-39,67v10,16,50,19,74,11v10,0,15,3,15,10xm140,-240v-14,1,-19,19,-19,39v0,26,1,41,3,42v24,-19,35,-39,35,-60v0,-8,-12,-21,-19,-21xm63,-52v-1,21,29,37,50,37v12,0,31,-6,58,-19v-8,-13,-38,-31,-44,-48v-13,-21,-19,-31,-21,-33v-20,8,-42,37,-43,63","w":332},"'":{"d":"49,-166v0,18,1,30,-12,32v-7,1,-15,-15,-14,-22v4,-28,11,-96,35,-104v20,2,5,30,2,39v-3,10,-11,40,-11,55","w":83},"(":{"d":"113,-236v-50,49,-97,121,-67,218v3,49,43,66,58,97v-22,31,-58,-23,-67,-39v-29,-53,-38,-160,-1,-214v23,-56,45,-70,82,-98v9,-4,20,-8,20,6v0,4,-8,14,-25,30","w":144,"k":{"j":-25}},")":{"d":"7,-260v-8,-7,4,-19,13,-19v81,56,129,234,48,330v-14,16,-29,55,-46,27v10,-29,37,-44,49,-87v40,-73,-5,-163,-29,-210v-7,-14,-20,-27,-35,-41","w":130},"*":{"d":"107,-208v19,8,68,-24,72,6v1,16,-68,8,-71,14v5,15,63,55,27,63v-15,-5,-41,-51,-48,-54v-15,10,-36,99,-54,49r35,-51v-21,-3,-42,3,-58,8v-13,-16,14,-24,27,-24v19,0,31,-2,36,-4v-3,-8,-42,-41,-23,-50v7,0,19,13,37,38v6,-2,34,-45,46,-49v16,0,12,15,1,20v-9,16,-16,24,-27,34","w":185,"k":{"J":25,"A":23,"\u00c4":23,"\u00c5":23,"\u00c6":23,"\u00c0":23,"\u00c3":23,"\u00c2":23,"\u00c1":23,"\u0100":23,"\u0102":23,"\u0104":23}},"+":{"d":"96,-187v19,11,1,53,7,78v24,9,89,-18,87,20v-19,12,-57,-4,-87,3v-7,15,-5,47,-5,63v0,6,-2,9,-9,9v-10,0,-14,-4,-13,-14r6,-58v-19,-9,-65,14,-65,-10v0,-24,43,-3,66,-11v9,-20,-13,-73,13,-80","w":205},",":{"d":"99,-48v26,49,-23,92,-68,94v-3,0,-6,-2,-6,-8v0,-2,1,-4,2,-5v32,-6,48,-22,51,-44v3,-21,-15,-33,0,-44v3,0,19,5,21,7","w":123,"k":{"9":21,"7":26}},"-":{"d":"204,-88v-35,-7,-82,-6,-123,-3v-14,1,-23,-5,-17,-17v29,-15,92,-1,126,-10v7,2,31,6,28,18v1,10,-4,12,-14,12","w":230},".":{"d":"23,-26v-6,-30,36,-30,42,-11v1,19,-16,27,-28,32v-13,-1,-11,-5,-14,-21","w":90},"\/":{"d":"188,-277v23,14,14,23,-10,56v-52,70,-52,70,-99,141v-22,32,-44,76,-68,103v-16,-7,-17,-14,-5,-35v47,-83,110,-168,162,-247v8,-13,16,-18,20,-18","w":207},"0":{"d":"256,-137v-3,68,-112,141,-194,141v-38,0,-58,-30,-58,-67v2,-86,75,-166,156,-173v51,6,99,35,96,99xm84,-25v57,0,129,-59,143,-106v1,-35,-21,-58,-41,-71v-9,11,-21,-3,-30,-3v-39,0,-43,12,-69,35v-26,23,-47,57,-49,98v-2,37,18,47,46,47","k":{",":11,".":11}},"1":{"d":"144,-49v21,-1,73,-20,94,-17v14,29,-14,29,-43,33v-24,3,-39,7,-47,11v3,15,-1,19,-22,19v-3,1,-11,-13,-14,-11v-26,2,-80,37,-87,2v4,-23,80,-22,88,-32v2,-45,12,-105,18,-151v-22,3,-63,39,-85,34v-9,2,-10,-17,-5,-21v25,-9,92,-49,115,-60v7,-1,14,14,14,21v-20,58,-30,121,-26,172","k":{",":-4,".":-4}},"2":{"d":"210,-177v-5,45,-75,114,-115,132v48,-1,105,11,145,-2v4,-1,12,8,11,12v0,17,-22,26,-40,24v-61,-9,-154,-19,-182,27v-9,5,-26,2,-25,-10v2,-44,63,-55,91,-79v25,-21,74,-56,77,-99v-6,-29,-44,-54,-74,-24v-24,12,-26,31,-53,34v-4,-1,-15,-17,-10,-24v27,-20,59,-52,109,-52v32,0,57,39,66,61","k":{",":-7,".":-7}},"3":{"d":"205,-89v-5,-44,-92,-36,-122,-19v-15,1,-15,-8,-10,-17v24,-27,58,-53,88,-75v-27,-6,-135,33,-128,-20v3,-27,27,-1,45,-1r116,-9v14,0,21,5,21,14v-11,37,-68,41,-83,72v53,-6,98,4,104,50v-7,57,-84,98,-152,96v-20,-1,-64,-2,-61,-27v4,-39,48,0,69,-4v43,1,107,-23,113,-60","k":{",":11,".":11}},"4":{"d":"218,-114v28,-9,42,23,21,32v-20,-6,-40,-11,-67,-9v-8,27,-11,68,4,86v0,7,-11,18,-17,18v-42,-3,-16,-66,-16,-102v-53,-11,-103,32,-137,0v16,-33,137,-128,185,-161v9,0,15,2,15,7r-30,124v8,3,22,5,42,5xm167,-202r-109,92v2,6,73,-6,91,-8v3,-24,20,-78,18,-84","k":{",":21}},"5":{"d":"205,-225v26,0,60,-20,73,4v-14,46,-108,10,-155,27v-9,7,-23,31,-33,44v45,20,132,5,126,76v-6,71,-152,106,-192,47v9,-38,51,6,76,1v39,2,115,-37,70,-75v-25,-22,-102,-2,-117,-38v3,-18,52,-80,57,-81v5,-2,37,-5,95,-5","k":{",":26}},"6":{"d":"83,-33v0,-63,31,-97,105,-97v36,0,73,44,42,74v-29,28,-60,56,-124,56v-59,0,-94,-55,-70,-109v20,-45,65,-89,98,-117v15,-12,38,-14,41,5v1,14,-8,14,-16,16v-28,6,-61,56,-85,78v-9,15,-24,50,-14,74v2,5,10,12,23,20xm217,-90v-48,-31,-116,-11,-113,59v44,15,106,-29,113,-59","k":{",":26}},"7":{"d":"121,5v-10,0,-17,-14,-17,-23v16,-55,73,-147,107,-183r-3,-3v-54,3,-105,5,-152,5v-18,0,-8,-30,4,-30v59,0,129,3,182,-3v27,10,-9,39,-15,47v-31,44,-79,109,-90,172v1,11,-6,18,-16,18","k":{",":32,".":32}},"8":{"d":"210,-194v36,26,-44,69,-57,82v19,7,54,35,54,59v10,48,-56,53,-90,57v-28,-3,-70,-6,-68,-41v2,-32,46,-56,62,-70v-33,-16,-78,-43,-49,-81v19,-24,91,-65,130,-26v5,1,8,29,9,33v1,-3,7,-11,9,-13xm146,-205v-16,0,-62,26,-62,38v-4,11,31,35,51,44v28,-23,42,-39,42,-50v0,-18,-13,-32,-31,-32xm108,-21v53,0,94,-20,57,-55v-10,-9,-21,-16,-32,-21v-36,25,-53,45,-53,60v0,10,18,16,28,16","k":{",":14,".":14}},"9":{"d":"47,-131v8,-64,64,-95,126,-103v22,-3,38,21,50,29v2,1,3,4,5,11v-13,42,-44,122,-46,167v0,18,-4,26,-12,26v-13,0,-19,-17,-19,-27v-2,-3,13,-53,22,-86r-3,-2v-35,20,-41,24,-84,27v-12,1,-41,-30,-39,-42xm76,-137v13,53,88,3,105,-13v7,-6,14,-37,17,-40v-3,-10,-14,-15,-31,-15v-39,0,-88,42,-91,68","k":{",":21,".":21}},":":{"d":"79,-156v-1,11,-14,25,-28,22v-22,-4,-17,-44,8,-44v5,5,24,7,20,22xm75,-37v4,24,-42,52,-42,13v-6,-29,35,-35,42,-13","w":107},";":{"d":"84,-156v1,11,-18,20,-28,19v-18,-3,-13,-39,4,-41v6,4,29,6,24,22xm44,8v24,-24,-11,-54,11,-66v22,-3,25,21,25,40v0,36,-43,56,-75,62v-4,1,-5,-10,-3,-13v21,-5,36,-13,42,-23","w":118},"<":{"d":"163,-217v2,16,-81,72,-109,103v30,27,114,43,118,69v-2,11,-11,20,-26,10v-45,-29,-55,-27,-99,-51v-43,-24,-26,-36,3,-58v13,-20,73,-62,94,-82v7,-5,20,-1,19,9","w":193},"=":{"d":"72,-178v48,9,111,-20,122,18v-3,29,-31,3,-51,11v-33,-5,-71,3,-103,3v-11,0,-13,-2,-14,-13v-1,-18,32,-17,46,-19xm197,-74v-5,31,-57,10,-100,11r-55,1v-4,1,-13,-15,-13,-18v20,-21,75,-4,111,-13v21,0,55,2,57,19","w":225},">":{"d":"93,-33v-10,15,-32,28,-40,5v22,-34,65,-68,93,-92v-27,-39,-104,-39,-117,-92v5,-16,14,-9,29,3v26,21,100,60,126,79v16,22,-47,36,-62,65","w":206},"?":{"d":"104,-267v45,0,86,8,81,63v-6,67,-34,65,-96,88v-10,18,-2,50,-33,48v-10,-20,1,-37,12,-62v16,-22,90,-21,90,-68v0,-22,-12,-42,-37,-42v-23,0,-37,5,-42,19v0,8,-11,13,-21,12v-7,0,-10,-4,-10,-11v0,-17,41,-47,56,-47xm29,-10v2,-10,25,-31,37,-14v8,0,12,3,12,10v1,22,-48,34,-49,4","w":185},"@":{"d":"277,-154v0,50,-59,106,-96,63v-11,9,-41,24,-58,25v-15,1,-36,-17,-35,-31v-4,-29,44,-94,70,-91v19,1,36,2,35,22v2,7,23,-8,22,9v-1,11,-17,31,-14,46v0,5,4,8,12,8v21,2,44,-29,43,-49v-2,-40,-37,-91,-77,-91v-61,0,-126,102,-137,161v1,39,57,69,102,67v38,-1,96,-22,118,-41v14,0,11,21,3,28v-24,21,-89,34,-134,35v-52,0,-119,-36,-113,-89v8,-73,83,-175,160,-181v54,-4,99,60,99,109xm174,-116v-8,-21,20,-39,-4,-49v-23,-4,-54,46,-55,62v1,11,5,13,19,13v8,1,43,-17,40,-26","w":296},"A":{"d":"153,-258v23,-3,15,19,19,34v7,30,17,44,26,72v19,58,41,107,74,141v9,9,-3,26,-15,26v-15,0,-34,-24,-55,-71v-9,-19,-13,-28,-15,-28v-27,1,-80,15,-104,21v-4,1,-8,-3,-11,-5v-19,11,-34,77,-56,75v-14,-2,-25,-19,-11,-32v6,-10,4,-9,25,-38v36,-49,85,-151,107,-182v7,-9,12,-13,16,-13xm85,-94v19,-5,92,-17,96,-18r-35,-100","w":279,"k":{"C":4,"\u00c7":4,"\u0106":4,"\u010c":4,",":-8,".":-8,":":-11,";":-11,"V":12,"Y":14,"\u0178":14,"\u00dd":14,"a":-4,"\u00e6":-4,"\u0105":-4,"c":-4,"\u00e7":-4,"\u0107":-4,"\u010d":-4,"d":-4,"\u010f":-4,"\u0111":-4,"e":-4,"\u0119":-4,"O":4,"\u00d6":4,"\u00d8":4,"\u00d5":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d2":4,"\u014c":4,"\u0150":4,"T":21,"\u0164":21,"U":7,"\u00dc":7,"\u00da":7,"\u00db":7,"\u00d9":7,"\u016a":7,"\u016e":7,"\u0170":7,"\u0172":7,"W":3,"Z":-7,"\u017d":-7,"\u0179":-7,"\u017b":-7,"*":7,"t":-7,"\u0165":-7,"v":2,"w":4,"g":-4,"\u011f":-4,"\u0123":-4,"n":-4,"s":-4,"\u0161":-4,"\u015f":-4,"\u015b":-4,"j":-7,"x":-5,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"h":-4}},"B":{"d":"163,-118v-13,2,-55,26,-55,-5v11,-15,62,-27,78,-50v16,-15,23,-28,23,-38v-3,-42,-94,-19,-113,-5v-4,17,-34,178,-26,201v0,13,-5,26,-18,26v-13,0,-20,-12,-20,-27v7,-35,23,-141,27,-174v3,-23,-28,-5,-25,-26v21,-37,210,-84,210,2v0,28,-30,53,-52,70v20,13,51,27,51,62v0,47,-78,104,-132,104v-14,0,-27,-2,-28,-11v-3,-19,21,-26,45,-22v40,-7,83,-28,83,-69v0,-22,-22,-40,-48,-38","w":264},"C":{"d":"108,-12v34,0,78,-29,99,-41v5,0,7,2,7,8v-13,30,-67,62,-112,61v-44,0,-82,-32,-82,-80v0,-84,104,-210,180,-206v52,-8,64,85,18,91v-28,-6,16,-64,-19,-66v-71,11,-142,98,-146,177v-2,32,21,56,55,56","w":251,"k":{")":-18,"]":-18,"}":-18,"\u00ab":-11,"?":-18,"A":4,"\u00c4":4,"\u00c5":4,"\u00c6":4,"\u00c0":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u0100":4,"\u0102":4,"\u0104":4,"a":7,"\u00e6":7,"\u0105":7,"c":4,"\u00e7":4,"\u0107":4,"\u010d":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u0119":4,"w":4,"g":4,"\u011f":4,"\u0123":4,"o":7,"\u00f8":7,"\u0153":7,"p":4,"i":4,"\u0131":4,"\u012f":4}},"D":{"d":"111,-8v-37,7,-66,45,-83,6v18,-47,18,-151,30,-210v2,-12,-25,-9,-22,-21v0,-18,20,-21,42,-19v18,1,70,-4,87,-4v62,0,111,39,108,99v-3,83,-77,133,-162,149xm243,-158v-2,-72,-81,-81,-153,-66v-14,84,-21,143,-21,177v0,10,-3,20,8,19v63,-9,169,-50,166,-130","w":285,"k":{",":28,".":28,"J":4,"A":14,"\u00c4":14,"\u00c5":14,"\u00c6":14,"\u00c0":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u0100":14,"\u0102":14,"\u0104":14,"d":7,"\u010f":7,"\u0111":7,"t":-7,"\u0165":-7,"v":-4,"m":4,"x":7,"y":4,"\u00ff":4,"\u00fd":4}},"E":{"d":"211,-258v29,-6,35,24,16,31r-128,12v-16,10,-18,70,-22,84v35,2,86,-12,113,-14v30,-3,26,26,7,30v-11,3,-122,13,-122,19v-5,3,-13,60,-12,69v25,29,101,-7,140,-7v11,0,23,15,14,26v-39,13,-101,14,-157,21v-29,3,-30,-3,-33,-26v15,-48,28,-143,32,-198v-8,-10,-15,-32,6,-32v44,3,96,-5,146,-15","w":246,"k":{"J":-4,"\u00ed":9,"\u00ec":9,"\u00ee":9,"\u00ef":9,"\u012b":9,"V":-11,"Y":-7,"\u0178":-7,"\u00dd":-7,"W":-4,"t":-4,"\u0165":-4,"w":4,"z":-11,"\u017e":-11,"\u017a":-11,"\u017c":-11}},"F":{"d":"197,-257v34,-3,37,32,12,36v-31,-7,-96,-4,-119,7v-6,10,-18,73,-16,93v29,-6,57,-5,86,-13v34,-20,62,20,21,28v-36,7,-80,7,-111,19v-3,18,-4,63,-4,85v0,12,-4,18,-13,18v-10,-1,-22,-10,-22,-23v0,-21,14,-137,25,-205v-7,-13,-7,-36,10,-38v42,7,88,-3,131,-7","w":213,"k":{",":17,".":17,"J":5,"A":7,"\u00c4":7,"\u00c5":7,"\u00c6":7,"\u00c0":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u0100":7,"\u0102":7,"\u0104":7,"\u00ed":-11,"\u00ec":-11,"\u00ee":-11,"\u00ef":-11,"\u012b":-11,"V":-19,"t":-14,"\u0165":-14,"v":-4,"S":-6,"\u0160":-6,"\u015e":-6,"\u015a":-6}},"G":{"d":"213,40v-40,-3,-13,-50,-11,-92v-43,34,-82,51,-117,51v-40,1,-64,-25,-64,-66v0,-93,106,-203,195,-203v22,0,43,8,44,25v1,10,-11,35,-21,34v-13,-8,-13,-31,-37,-28v-74,11,-150,87,-150,169v0,73,94,30,126,6v29,-23,35,-28,40,-67v1,-8,8,-13,19,-13v12,0,17,4,17,11v-13,45,-37,99,-25,155v0,7,-7,19,-16,18","w":279,"k":{"V":-7,"T":-7,"\u0164":-7}},"H":{"d":"236,-190v6,-28,-7,-73,21,-79v29,9,16,30,9,72v-7,44,-17,142,-17,183v0,20,-34,36,-36,8v0,-6,10,-79,10,-92v0,-11,-1,-16,-10,-15r-139,11v-15,27,-2,102,-28,115v-6,0,-21,-16,-20,-24v14,-59,33,-156,33,-233v0,-6,9,-13,14,-13v38,7,2,86,5,114v2,10,6,11,20,11v23,0,122,-4,130,-18v3,-6,3,-19,8,-40","w":290},"I":{"d":"34,-39v0,-63,17,-144,28,-205v4,-7,23,-21,29,-6v2,5,4,11,4,17v-8,28,-29,128,-29,164v0,28,16,73,-15,75v-17,-3,-17,-21,-17,-45","w":114,"k":{"v":4,"w":4}},"J":{"d":"162,-251v0,-16,32,-20,31,-2v-7,91,-7,252,-103,255v-29,1,-91,-35,-92,-57v0,-10,6,-15,18,-15v23,11,54,46,75,42v70,-13,71,-143,71,-223","w":214,"k":{",":9,".":9,"A":5,"\u00c4":5,"\u00c5":5,"\u00c6":5,"\u00c0":5,"\u00c3":5,"\u00c2":5,"\u00c1":5,"\u0100":5,"\u0102":5,"\u0104":5,"a":4,"\u00e6":4,"\u0105":4,"c":4,"\u00e7":4,"\u0107":4,"\u010d":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u0119":4,"t":-7,"\u0165":-7,"w":4,"g":4,"\u011f":4,"\u0123":4,"o":4,"\u00f8":4,"\u0153":4,"m":4,"s":4,"\u0161":4,"\u015f":4,"\u015b":4,"u":4,"\u0173":4,"j":5,"x":4,"i":5,"\u0131":5,"\u012f":5}},"K":{"d":"221,-228v-9,32,-69,77,-112,115v39,27,79,63,120,86v5,1,15,2,28,3v7,28,-22,35,-45,22v-30,-17,-92,-73,-131,-90v-34,4,-9,109,-41,107v-14,-1,-17,-16,-12,-31v8,-24,16,-182,29,-229v5,-17,36,-16,31,8v-9,44,-14,78,-18,121v43,-28,87,-69,114,-109v10,-15,14,-23,18,-23v8,0,20,12,19,20","w":267,"k":{"J":-14,"Y":7,"\u0178":7,"\u00dd":7,"d":-7,"\u010f":-7,"\u0111":-7,"t":-4,"\u0165":-4,"v":4,"w":7,"g":-7,"\u011f":-7,"\u0123":-7,"x":-4,"z":-13,"\u017e":-13,"\u017a":-13,"\u017c":-13}},"L":{"d":"42,10v-26,-4,-11,-39,-9,-60r22,-193v2,-9,8,-16,19,-14v18,3,18,20,12,41v-3,12,-22,161,-22,176v0,9,1,9,8,10v31,-6,93,-7,138,-16v7,0,16,7,15,15v-1,25,-32,22,-56,20v-43,-3,-86,12,-127,21","w":226,"k":{"J":-14,"A":-14,"\u00c4":-14,"\u00c5":-14,"\u00c6":-14,"\u00c0":-14,"\u00c3":-14,"\u00c2":-14,"\u00c1":-14,"\u0100":-14,"\u0102":-14,"\u0104":-14,"V":7,"Y":11,"\u0178":11,"\u00dd":11,"a":-7,"\u00e6":-7,"\u0105":-7,"c":-7,"\u00e7":-7,"\u0107":-7,"\u010d":-7,"d":-7,"\u010f":-7,"\u0111":-7,"e":-7,"\u0119":-7,"T":14,"\u0164":14,"U":-7,"\u00dc":-7,"\u00da":-7,"\u00db":-7,"\u00d9":-7,"\u016a":-7,"\u016e":-7,"\u0170":-7,"\u0172":-7,"v":-2,"g":-7,"\u011f":-7,"\u0123":-7,"Q":-4,"o":-7,"\u00f8":-7,"\u0153":-7,"q":-7,"n":-7,"p":-4,"r":-4,"\u0155":-4,"\u0157":-4,"\u0159":-4,"s":-7,"\u0161":-7,"\u015f":-7,"\u015b":-7,"u":-4,"\u0173":-4,"j":-7,"x":-8,"y":-4,"\u00ff":-4,"\u00fd":-4,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"i":-4,"\u0131":-4,"\u012f":-4,"h":-7,"b":-7,"\u00fe":-7,"k":-4,"\u0137":-4}},"M":{"d":"265,-24v0,-16,14,-129,15,-183v-31,28,-86,136,-129,147v-30,-7,-49,-127,-60,-132r-20,89v-12,52,-16,87,-20,104v-4,17,-32,10,-32,-8v0,-67,47,-162,47,-232v0,-13,25,-22,34,-6v21,40,36,117,59,147v6,-1,28,-27,64,-77v40,-56,63,-84,69,-84v40,13,19,15,14,92v-3,49,-16,103,-4,147v0,11,-4,30,-19,26v-12,0,-18,-9,-18,-30","w":340,"k":{"t":4,"\u0165":4}},"N":{"d":"63,-219v-6,-24,21,-37,34,-20v8,59,77,156,110,194v10,-39,32,-147,32,-188v0,-22,8,-26,24,-29v15,9,12,28,6,51v-12,46,-34,146,-32,196v0,21,-30,28,-41,9v-11,-12,-7,-19,-19,-33v-35,-42,-64,-90,-91,-141v-9,36,-26,104,-26,160v0,20,-7,29,-19,34v-15,2,-16,-16,-16,-26v0,-46,36,-158,38,-207","w":290,"k":{"v":4,"w":4,"o":5,"\u00f8":5,"\u0153":5,"q":5,"m":4,"p":4,"r":5,"\u0155":5,"\u0157":5,"\u0159":5,"u":5,"\u0173":5,"y":4,"\u00ff":4,"\u00fd":4,"l":4,"\u0142":4,"\u013a":4,"\u013c":4,"\u013e":4}},"O":{"d":"170,-257v66,0,110,25,108,94v-2,74,-66,134,-117,162v-18,9,-41,14,-69,14v-37,0,-74,-50,-72,-86v6,-85,63,-184,150,-184xm170,-232v-53,-3,-118,101,-118,157v0,30,23,58,51,58v68,0,142,-84,142,-153v0,-45,-34,-59,-75,-62","w":289,"k":{",":21,".":21,"J":4,"A":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u00c0":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u0100":12,"\u0102":12,"\u0104":12,"a":7,"\u00e6":7,"\u0105":7,"c":5,"\u00e7":5,"\u0107":5,"\u010d":5,"d":5,"\u010f":5,"\u0111":5,"T":-1,"\u0164":-1,"t":-4,"\u0165":-4,"v":-4,"g":5,"\u011f":5,"\u0123":5,"o":4,"\u00f8":4,"\u0153":4,"q":4,"m":4,"p":4,"r":4,"\u0155":4,"\u0157":4,"\u0159":4,"u":4,"\u0173":4,"j":6,"x":7,"y":5,"\u00ff":5,"\u00fd":5,"z":4,"\u017e":4,"\u017a":4,"\u017c":4,"i":6,"\u0131":6,"\u012f":6,"k":4,"\u0137":4,"l":2,"\u0142":2,"\u013a":2,"\u013c":2,"\u013e":2}},"P":{"d":"54,-178v4,-28,-11,-31,-12,-49v4,-20,99,-33,127,-33v45,0,84,20,84,58v0,77,-102,103,-180,121v-11,18,9,94,-22,92v-10,0,-15,-7,-15,-21v2,-36,11,-124,18,-168xm76,-112v58,-8,147,-36,147,-86v0,-51,-90,-38,-135,-21","w":254,"k":{",":35,".":35,"J":26,"A":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u00c0":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u0100":12,"\u0102":12,"\u0104":12,"Y":-18,"\u0178":-18,"\u00dd":-18,"G":3,"\u011e":3,"\u0122":3,"a":8,"\u00e6":8,"\u0105":8,"\u00e1":10,"\u00e0":10,"\u00e2":10,"\u00e4":10,"\u00e3":10,"\u00e5":10,"\u0101":10,"\u0103":10,"c":6,"\u00e7":6,"\u0107":6,"\u010d":6,"d":6,"\u010f":6,"\u0111":6,"e":5,"\u0119":5,"W":-11,"t":-9,"\u0165":-9,"v":-4,"w":4,"g":11,"\u011f":11,"\u0123":11,"\u00e9":5,"\u00e8":5,"\u00ea":5,"\u00eb":5,"\u0113":5,"\u0117":5,"\u011b":5,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f2":9,"\u00f4":9,"\u00f6":9,"\u00f5":9,"\u014d":9,"\u0151":9,"q":11,"m":7,"n":4,"p":5,"r":11,"\u0155":11,"\u0157":11,"\u0159":11,"s":11,"\u0161":11,"\u015f":11,"\u015b":11,"u":11,"\u0173":11,"j":4,"x":7,"y":14,"\u00ff":14,"\u00fd":14,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"i":4,"\u0131":4,"\u012f":4,"l":4,"\u0142":4,"\u013a":4,"\u013c":4,"\u013e":4}},"Q":{"d":"193,-265v12,-1,29,18,26,32v25,22,51,59,51,100v0,47,-36,91,-70,111v1,1,9,13,29,34v26,28,24,38,0,48v-19,-7,-21,-28,-38,-46v-13,-14,-18,-22,-19,-22v-64,23,-157,9,-154,-63v4,-91,88,-183,175,-194xm50,-74v-3,49,57,58,101,44v2,-4,-25,-31,-25,-33v0,-7,14,-19,22,-17v19,-4,17,34,36,34v23,0,61,-55,58,-83v6,-37,-41,-100,-65,-102v-66,9,-122,88,-127,157","w":291,"k":{"A":4,"\u00c4":4,"\u00c5":4,"\u00c6":4,"\u00c0":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u0100":4,"\u0102":4,"\u0104":4,"a":5,"\u00e6":5,"\u0105":5,"c":4,"\u00e7":4,"\u0107":4,"\u010d":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u0119":4,"v":-4,"o":5,"\u00f8":5,"\u0153":5,"q":4,"m":4,"p":4,"r":3,"\u0155":3,"\u0157":3,"\u0159":3,"f":2,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"i":4,"\u0131":4,"\u012f":4,"b":4,"\u00fe":4,"k":2,"\u0137":2,"l":2,"\u0142":2,"\u013a":2,"\u013c":2,"\u013e":2}},"R":{"d":"52,-215v-18,-21,1,-41,25,-33v78,-18,157,-15,157,53v0,47,-49,74,-87,90v11,13,82,67,103,78v17,9,5,30,-8,31v-37,-7,-120,-96,-139,-100v-14,0,-22,-2,-22,-14v0,-17,23,-19,40,-15v20,-1,90,-39,82,-70v-2,-43,-72,-41,-111,-30v-25,39,-36,155,-30,218v1,7,-10,16,-17,16v-12,0,-19,-10,-19,-30v-1,-47,10,-117,26,-194","k":{",":-16,".":-16,":":-14,";":-14,"J":-14,"a":-7,"\u00e6":-7,"\u0105":-7,"c":-4,"\u00e7":-4,"\u0107":-4,"\u010d":-4,"v":2,"w":7,"q":-4,"n":-4,"s":-7,"\u0161":-7,"\u015f":-7,"\u015b":-7,"j":-4,"x":-7,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"h":-4}},"S":{"d":"156,-258v37,0,73,14,59,50v-3,8,-8,12,-18,12v0,-31,-16,-33,-43,-34v-40,-1,-98,18,-98,50v0,64,150,39,153,108v-9,52,-89,86,-150,87v-21,0,-40,-3,-43,-17v-1,-6,5,-21,10,-21v52,24,139,-9,152,-47v-10,-23,-28,-19,-69,-35v-55,-21,-79,-25,-83,-72v-4,-51,76,-81,130,-81","w":229,"k":{"a":4,"\u00e6":4,"\u0105":4,"t":-7,"\u0165":-7,"w":5,"o":2,"\u00f8":2,"\u0153":2,"m":2,"n":-2}},"T":{"d":"121,-207v-17,-20,-92,13,-114,-7v-6,-23,7,-22,38,-22v68,1,118,-13,191,-16v19,0,40,0,40,18v-1,23,-34,8,-52,10v-16,2,-66,2,-72,11v-6,32,-25,161,-11,199v1,9,-6,21,-14,21v-22,-5,-20,-21,-22,-59v0,-24,6,-86,16,-155","w":241,"k":{",":18,".":18,"J":19,"A":14,"\u00c4":14,"\u00c5":14,"\u00c6":14,"\u00c0":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u0100":14,"\u0102":14,"\u0104":14,"Y":-32,"\u0178":-32,"\u00dd":-32,"a":18,"\u00e6":18,"\u0105":18,"c":14,"\u00e7":14,"\u0107":14,"\u010d":14,"d":21,"\u010f":21,"\u0111":21,"e":21,"\u0119":21,"T":-18,"\u0164":-18,"W":-21,"v":7,"w":7,"g":25,"\u011f":25,"\u0123":25,"Q":5,"o":25,"\u00f8":25,"\u0153":25,"q":14,"m":7,"n":11,"p":7,"r":4,"\u0155":4,"\u0157":4,"\u0159":4,"s":12,"\u0161":12,"\u015f":12,"\u015b":12,"u":11,"\u0173":11,"j":-11,"x":7,"y":14,"\u00ff":14,"\u00fd":14}},"U":{"d":"62,-102v0,96,115,111,146,42v23,-30,1,-191,45,-191v8,0,12,7,12,20v0,112,-3,248,-140,243v-80,-3,-112,-87,-85,-179v7,-28,4,-65,20,-85v11,-14,24,7,24,17v-7,21,-22,100,-22,133","w":278,"k":{"A":3,"\u00c4":3,"\u00c5":3,"\u00c6":3,"\u00c0":3,"\u00c3":3,"\u00c2":3,"\u00c1":3,"\u0100":3,"\u0102":3,"\u0104":3,"a":4,"\u00e6":4,"\u0105":4,"d":4,"\u010f":4,"\u0111":4,"e":2,"\u0119":2,"v":-2,"w":2,"g":5,"\u011f":5,"\u0123":5,"m":2,"p":2,"x":2}},"V":{"d":"126,-43v42,-60,115,-215,145,-221v20,5,11,19,0,37r-108,171v-25,30,-9,53,-51,57v-21,-33,-51,-130,-93,-228v1,-11,8,-25,19,-25v10,0,17,12,21,35v3,23,26,80,67,174","w":258,"k":{"C":6,"\u00c7":6,"\u0106":6,"\u010c":6,"J":11,"A":18,"\u00c4":18,"\u00c5":18,"\u00c6":18,"\u00c0":18,"\u00c3":18,"\u00c2":18,"\u00c1":18,"\u0100":18,"\u0102":18,"\u0104":18,"V":-14,"G":4,"\u011e":4,"\u0122":4,"a":14,"\u00e6":14,"\u0105":14,"c":14,"\u00e7":14,"\u0107":14,"\u010d":14,"d":14,"\u010f":14,"\u0111":14,"e":7,"\u0119":7,"O":4,"\u00d6":4,"\u00d8":4,"\u00d5":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d2":4,"\u014c":4,"\u0150":4,"W":-7,"w":4,"S":-7,"\u0160":-7,"\u015e":-7,"\u015a":-7,"g":11,"\u011f":11,"\u0123":11,"Q":4,"o":12,"\u00f8":12,"\u0153":12,"q":14,"m":7,"n":7,"p":11,"r":3,"\u0155":3,"\u0157":3,"\u0159":3,"s":7,"\u0161":7,"\u015f":7,"\u015b":7,"u":4,"\u0173":4,"x":2,"y":7,"\u00ff":7,"\u00fd":7,"b":-2,"\u00fe":-2,"k":-2,"\u0137":-2}},"W":{"d":"336,-249v2,-17,28,-16,27,6v-9,97,-47,153,-84,239v-33,19,-39,-11,-54,-49r-33,-86v-4,5,-11,17,-22,36v-44,80,-69,120,-74,120v-33,-11,-28,-32,-40,-88r-33,-160v1,-17,24,-27,30,-6v15,48,29,176,44,208v52,-85,50,-74,85,-151v5,-10,17,-14,23,-2v14,28,53,145,59,145v41,-68,63,-139,72,-212","w":364,"k":{"A":11,"\u00c4":11,"\u00c5":11,"\u00c6":11,"\u00c0":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u0100":11,"\u0102":11,"\u0104":11,"a":7,"\u00e6":7,"\u0105":7,"c":7,"\u00e7":7,"\u0107":7,"\u010d":7,"d":7,"\u010f":7,"\u0111":7,"e":7,"\u0119":7,"w":7,"g":14,"\u011f":14,"\u0123":14,"o":7,"\u00f8":7,"\u0153":7,"q":5,"m":7,"p":5,"s":4,"\u0161":4,"\u015f":4,"\u015b":4,"u":7,"\u0173":7,"x":7,"y":7,"\u00ff":7,"\u00fd":7,"z":4,"\u017e":4,"\u017a":4,"\u017c":4,"i":4,"\u0131":4,"\u012f":4}},"X":{"d":"37,-240v1,-26,23,-29,35,-2v11,27,32,56,60,89v56,-60,69,-83,108,-109v7,-1,18,10,17,17v-18,24,-94,90,-108,116v17,24,48,68,76,82v14,7,35,35,8,40v-46,-9,-66,-62,-106,-103v-32,34,-87,92,-85,100v-9,21,-8,31,-31,32v-9,0,-14,-4,-14,-13v-7,-13,60,-85,113,-141v0,-2,-4,-7,-12,-18v-41,-54,-61,-84,-61,-90","w":264,"k":{"d":-4,"\u010f":-4,"\u0111":-4,"t":4,"\u0165":4,"v":4,"w":4,"m":5,"p":3,"r":2,"\u0155":2,"\u0157":2,"\u0159":2,"u":4,"\u0173":4,"x":-4,"z":-3,"\u017e":-3,"\u017a":-3,"\u017c":-3}},"Y":{"d":"115,10v-36,-15,12,-100,-5,-133v-21,-20,-53,-77,-82,-94v-21,-12,-33,-34,-8,-42v41,7,97,106,114,112r22,-24v39,-40,62,-66,70,-78v12,-19,35,-29,39,-4v-9,29,-89,91,-115,132v-12,19,-13,101,-19,126v-1,2,-12,6,-16,5","w":241,"k":{"C":11,"\u00c7":11,"\u0106":11,"\u010c":11,"J":18,"A":16,"\u00c4":16,"\u00c5":16,"\u00c6":16,"\u00c0":16,"\u00c3":16,"\u00c2":16,"\u00c1":16,"\u0100":16,"\u0102":16,"\u0104":16,"V":-11,"G":12,"\u011e":12,"\u0122":12,"a":18,"\u00e6":18,"\u0105":18,"c":21,"\u00e7":21,"\u0107":21,"\u010d":21,"d":18,"\u010f":18,"\u0111":18,"e":18,"\u0119":18,"O":6,"\u00d6":6,"\u00d8":6,"\u00d5":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d2":6,"\u014c":6,"\u0150":6,"W":-7,"v":11,"w":14,"g":21,"\u011f":21,"\u0123":21,"Q":6,"o":21,"\u00f8":21,"\u0153":21,"q":14,"m":11,"n":11,"p":7,"r":7,"\u0155":7,"\u0157":7,"\u0159":7,"s":11,"\u0161":11,"\u015f":11,"\u015b":11,"u":14,"\u0173":14,"f":7,"B":-5,"x":14,"y":21,"\u00ff":21,"\u00fd":21,"z":7,"\u017e":7,"\u017a":7,"\u017c":7}},"Z":{"d":"52,-246v61,12,144,-1,205,-8v11,2,12,27,-2,29v-41,40,-91,100,-126,135r-53,53v0,2,2,4,5,4r125,-8v31,0,46,6,46,20v-2,34,-46,5,-70,11v-56,2,-122,4,-164,18v-16,1,-13,-26,-4,-31v38,-26,171,-157,196,-195v-42,-2,-92,8,-133,8v-34,0,-49,-24,-25,-36","w":275,"k":{"a":-4,"\u00e6":-4,"\u0105":-4,"c":-2,"\u00e7":-2,"\u0107":-2,"\u010d":-2,"d":-4,"\u010f":-4,"\u0111":-4,"t":-4,"\u0165":-4,"v":7,"w":11,"g":-4,"\u011f":-4,"\u0123":-4,"o":11,"\u00f8":11,"\u0153":11,"q":7,"m":6,"n":4,"p":7,"r":11,"\u0155":11,"\u0157":11,"\u0159":11,"u":7,"\u0173":7,"f":7,"j":11,"\u00bb":-21,"y":4,"\u00ff":4,"\u00fd":4,"z":-11,"\u017e":-11,"\u017a":-11,"\u017c":-11,"i":9,"\u0131":9,"\u012f":9,"h":7,"b":11,"\u00fe":11,"k":7,"\u0137":7,"l":7,"\u0142":7,"\u013a":7,"\u013c":7,"\u013e":7}},"[":{"d":"112,-273v42,-6,45,30,8,31r-45,1v-6,3,-1,13,-1,19v4,27,-18,227,-11,277v15,16,62,-19,62,12v0,29,-61,17,-79,29v-25,-5,-5,-47,-12,-75v1,-90,26,-198,2,-274v2,-29,45,-16,76,-20","w":146,"k":{"j":-25}},"\\":{"d":"188,4v13,21,-3,38,-22,31r-63,-130v-34,-76,-73,-118,-98,-177v8,-21,36,-10,39,12v48,70,106,200,144,264","w":197},"]":{"d":"-3,77v-3,-40,40,-18,65,-26v9,-3,10,4,14,-3v1,-103,4,-218,28,-294v0,-3,-1,-4,-4,-4v-22,-2,-44,6,-62,8v-5,0,-20,-5,-19,-11v2,-13,15,-30,34,-21v34,-5,98,-24,78,28v-27,72,-35,215,-28,315v1,22,-27,13,-44,12v-21,-1,-53,12,-62,-4","w":150},"^":{"d":"163,-168v9,11,53,54,22,70v-30,-22,-52,-84,-82,-102v-17,15,-56,78,-65,94v-8,13,-25,3,-24,-10v15,-28,63,-90,80,-117v28,-17,29,26,50,41","w":207},"_":{"d":"161,27v0,19,-33,6,-48,6r-113,3v-7,0,-11,-4,-11,-12v17,-26,83,-3,125,-13v17,5,47,-6,47,16","w":150},"`":{"d":"102,-206v11,11,-8,34,-20,18v-17,-23,-69,-53,-78,-75v3,-8,16,-18,26,-6v15,18,56,46,72,63","w":113},"a":{"d":"173,8v-24,-5,-31,-37,-31,-72v-25,33,-51,63,-93,66v-19,1,-33,-20,-33,-41v0,-54,71,-157,123,-153v14,-3,19,18,29,23v9,0,14,4,14,11v-5,56,-25,112,5,139v5,3,8,6,8,10v0,8,-14,18,-22,17xm60,-27v26,1,88,-77,88,-111v0,-17,-6,-25,-17,-25v-28,0,-85,85,-85,116v0,13,5,20,14,20","w":211},"b":{"d":"36,-21v0,-12,-14,-16,-12,-28v5,-59,30,-186,40,-239v4,-21,38,-34,35,0v-6,63,-30,93,-43,188v22,-41,62,-88,110,-92v20,-2,33,23,33,44v0,65,-65,151,-128,151v-15,0,-35,-11,-35,-24xm171,-139v0,-10,-4,-22,-12,-22v-40,0,-99,81,-108,120v6,11,13,17,22,17v52,-3,98,-65,98,-115","w":209},"c":{"d":"165,-44v-1,21,-64,54,-94,54v-36,0,-52,-22,-54,-57v-3,-51,60,-148,104,-148v28,0,51,61,21,73v-14,6,-15,-47,-28,-43v-24,-1,-72,88,-68,117v10,61,82,14,113,-3v4,0,6,2,6,7","w":182},"d":{"d":"226,-30v-1,13,-30,35,-48,32v-24,4,-31,-40,-29,-75v-24,37,-54,75,-98,79v-24,2,-37,-21,-37,-48v0,-63,82,-180,148,-122r25,-115v1,-12,11,-19,21,-20v8,0,12,7,12,22v-15,49,-44,150,-44,214v0,45,23,37,44,25v4,0,6,3,6,8xm151,-131v2,-11,-13,-24,-25,-24v-36,0,-84,73,-84,110v0,15,5,22,15,22v42,0,87,-69,94,-108","w":238},"e":{"d":"82,-21v28,3,59,-24,86,-48v4,0,6,3,6,9v0,27,-62,72,-97,69v-38,-3,-59,-24,-59,-63v0,-60,53,-145,108,-141v44,3,33,56,3,81v-19,16,-42,32,-71,49v-23,13,-1,48,24,44xm52,-87v50,-30,74,-53,74,-71v0,-7,-3,-11,-9,-11v-30,4,-59,48,-65,82","w":187},"f":{"d":"68,-140v-10,56,-15,100,-10,148v-8,17,-39,12,-35,-16v-2,-8,14,-103,13,-125v1,-5,-16,-12,-15,-17v5,-17,30,-26,27,-55v10,-58,24,-99,77,-103v44,-5,46,68,17,82v-12,-7,4,-62,-23,-56v-29,-4,-48,80,-48,106v12,22,72,-7,73,14v1,21,-58,15,-76,22","w":134,"k":{")":-35,"]":-35,"}":-35,"\u00ab":-7,"?":-7,"*":-28}},"g":{"d":"-13,45v42,22,107,69,137,7v11,-23,19,-74,24,-116v-21,18,-58,58,-99,58v-22,0,-35,-15,-34,-37v4,-70,75,-138,143,-144v21,-2,37,13,39,32v-39,88,-3,256,-119,267v-34,3,-95,-36,-97,-59v0,-6,2,-8,6,-8xm59,-34v46,0,103,-61,103,-107v0,-13,-5,-19,-15,-19v-47,0,-102,65,-102,111v0,8,6,15,14,15","w":206},"h":{"d":"90,-268v0,55,-43,158,-38,215v44,-81,80,-120,108,-120v42,0,23,112,50,137v14,13,6,27,-9,28v-41,3,-36,-84,-44,-117v-2,-8,-6,-11,-11,-11v-12,0,-37,33,-75,96v-16,27,-18,40,-39,47v-17,-2,-20,-14,-15,-35v16,-73,26,-148,34,-221v3,-23,6,-37,19,-42v11,0,20,10,20,23","w":225},"i":{"d":"80,-235v-18,-16,-15,-58,15,-55v5,-1,17,7,17,11v0,19,-13,45,-32,44xm79,-167v-15,62,-29,97,-18,163v-11,21,-35,17,-35,-18v0,-20,14,-95,18,-132v-6,-26,31,-37,35,-13","w":104},"j":{"d":"104,-267v0,27,-45,38,-46,5v0,-13,4,-21,15,-22v10,2,31,3,31,17xm57,-183v11,-12,37,-4,29,16v-32,76,18,267,-85,279v-24,3,-76,-37,-54,-58v28,18,51,44,74,14v27,-36,19,-164,27,-230v1,-10,5,-17,9,-21","w":116},"k":{"d":"56,-275v7,-21,32,-25,31,0v-2,38,-27,145,-30,193v28,-19,100,-104,129,-104v22,0,15,29,0,35v-13,6,-74,44,-76,59v15,21,51,74,91,71v4,0,7,1,7,5v-2,13,-18,24,-36,24v-37,0,-64,-70,-93,-81v-19,11,-28,23,-24,67v2,19,-35,23,-36,4r17,-121v9,-90,16,-140,20,-152","w":212},"l":{"d":"48,14v-18,0,-16,-24,-17,-49v-2,-52,23,-219,37,-248v9,-19,28,-21,30,2v-13,65,-48,182,-32,273v2,11,-9,22,-18,22","w":103},"m":{"d":"190,-12v-40,3,-17,-115,-34,-127v-11,0,-33,34,-70,97v-21,36,-12,36,-45,43v-8,0,-12,-15,-12,-46v0,-16,13,-100,16,-133v0,-8,3,-11,10,-11v45,2,1,106,5,133v31,-27,58,-122,106,-122v36,0,16,77,32,117v22,-5,49,-124,96,-117v50,8,15,119,58,143v7,3,10,7,10,11v-4,21,-38,27,-49,2v-10,-8,-16,-78,-21,-107v-1,-6,-5,-10,-8,-10v-38,13,-52,114,-94,127","w":370},"n":{"d":"200,-8v-50,10,-23,-121,-57,-127v-45,8,-66,137,-105,137v-14,0,-20,-7,-20,-20v3,-43,14,-89,12,-136v-1,-7,11,-23,17,-23v15,0,16,9,16,28v4,9,-15,77,-12,99v23,-27,63,-162,125,-105v23,21,-2,138,52,113v5,0,7,3,7,9v0,12,-20,27,-35,25","w":238},"o":{"d":"186,-115v0,55,-59,124,-111,124v-34,0,-56,-30,-56,-64v0,-55,48,-133,104,-133v37,0,63,35,63,73xm119,-160v-37,0,-70,64,-69,101v0,20,10,40,28,40v35,0,78,-52,78,-93v0,-26,-13,-48,-37,-48","w":203},"p":{"d":"86,4v-18,0,-21,-10,-29,-24v-11,29,-12,101,-27,136v-7,17,-26,0,-29,-8v17,-96,43,-187,36,-270v-3,-35,35,-51,35,-10v0,15,-8,67,-8,76v25,-45,60,-92,110,-97v24,-2,42,21,42,46v0,67,-71,151,-130,151xm185,-135v-1,-14,-7,-25,-19,-27v-30,-4,-97,91,-97,119v0,9,14,18,25,18v34,0,95,-70,91,-110","w":232},"q":{"d":"132,111v-36,-12,-1,-85,2,-118v2,-23,8,-39,10,-50v-26,27,-52,56,-94,58v-24,0,-35,-23,-35,-48v0,-57,75,-157,132,-152v17,-3,17,20,28,25v27,13,17,25,9,61v-8,39,-35,158,-32,208v1,10,-10,17,-20,16xm58,-28v36,2,100,-75,100,-114v0,-18,-7,-27,-21,-27v-34,0,-93,81,-93,119v0,14,5,22,14,22","w":206},"r":{"d":"73,-172v-6,35,-14,55,-14,102v25,-47,44,-107,104,-116v19,-3,36,13,34,31v-2,27,-28,5,-40,1v-35,6,-88,92,-90,142v-1,16,-6,22,-21,22v-30,-16,-13,-106,-11,-146v1,-19,3,-49,25,-49v8,0,14,6,13,13","w":183,"k":{"e":-2,"\u0119":-2,"t":-16,"\u0165":-16,"v":-16,"w":-11,"g":4,"\u011f":4,"\u0123":4,"q":4,"m":-4,"n":-7,"p":-7,"r":-4,"\u0155":-4,"\u0157":-4,"\u0159":-4,"s":-7,"\u0161":-7,"\u015f":-7,"\u015b":-7,"u":-4,"\u0173":-4,"f":-11,"j":-2,"x":-4,"z":-12,"\u017e":-12,"\u017a":-12,"\u017c":-12,"i":-4,"\u0131":-4,"\u012f":-4,"h":-7,"b":-11,"\u00fe":-11,"k":-5,"\u0137":-5,"l":-5,"\u0142":-5,"\u013a":-5,"\u013c":-5,"\u013e":-5}},"s":{"d":"4,-8v10,-27,53,0,80,-16v15,-4,24,-10,28,-16v-10,-32,-89,-41,-89,-80v0,-41,60,-77,92,-81v28,-3,36,30,15,35v-19,-17,-77,16,-77,37v0,41,84,35,87,83v2,38,-71,57,-108,57v-19,0,-28,-6,-28,-19","w":152},"t":{"d":"66,-53v1,65,54,13,79,0v5,0,7,3,7,8v-1,19,-47,53,-74,53v-71,0,-30,-111,-25,-151v-10,-7,-45,7,-45,-19v0,-19,30,-7,46,-11v25,-6,13,-77,41,-82v34,6,2,55,0,78v19,-2,41,-6,60,-5v16,0,19,0,21,11v-4,27,-70,12,-90,24v-2,0,-22,89,-20,94","w":168},"u":{"d":"175,7v-26,-5,-28,-45,-28,-83v-22,36,-49,73,-89,79v-66,-12,-20,-124,-16,-176v6,-16,34,-11,33,6v-2,28,-27,83,-25,110v5,51,30,25,56,0v22,-21,42,-75,58,-108v8,-10,26,-8,24,10v-14,46,-24,123,7,149v1,6,-14,14,-20,13","w":219},"v":{"d":"183,-186v11,-8,27,0,26,13v0,6,-5,11,-14,18v-34,28,-68,86,-97,140v-16,29,-22,39,-41,17v-4,-31,-51,-146,-44,-163v0,-17,6,-25,17,-25v21,0,15,35,17,50v4,29,20,77,31,102v33,-50,61,-117,105,-152","w":196},"w":{"d":"238,-4v-52,-5,-49,-53,-75,-112v-18,18,-52,114,-80,127v-32,2,-60,-134,-58,-169v-5,-28,35,-44,38,-13v-10,39,1,117,23,135v19,-14,60,-120,86,-143v17,1,17,15,14,30v-5,28,26,97,41,103v27,-33,32,-142,79,-148v9,-1,12,14,8,21v-23,20,-52,126,-65,155v-4,9,-8,14,-11,14","w":317},"x":{"d":"177,-22v4,12,-7,25,-18,25v-16,0,-41,-23,-75,-68v-35,28,-45,56,-63,86v-14,-1,-21,-7,-21,-19v-4,-17,33,-58,68,-90v-23,-35,-35,-61,-35,-80v0,-21,18,-32,30,-20v8,27,7,56,29,82v39,-33,55,-58,74,-88v10,-8,26,2,26,15v0,12,-28,44,-85,96v23,28,44,46,70,61","w":193},"y":{"d":"90,82v42,0,64,-96,63,-144v-32,27,-58,47,-94,54v-67,-6,-23,-130,-9,-163v9,-12,32,-8,29,12v-11,27,-26,49,-27,87v0,8,4,34,15,31v51,-15,92,-35,92,-111v0,-23,6,-35,17,-35v14,1,15,8,15,24v0,87,-16,180,-46,239v-30,60,-129,25,-142,-16v0,-8,8,-24,15,-14v16,23,39,36,72,36","w":212},"z":{"d":"55,-30v15,5,78,-17,91,-12v33,-3,40,22,27,40v-34,-23,-123,-8,-151,12v-9,12,-35,11,-38,-4r23,-24v53,-54,93,-98,121,-133v-29,-7,-104,22,-110,-14v2,-26,30,-7,50,-9v30,3,70,-13,98,-5v4,2,6,6,5,11v-3,10,-34,48,-93,111v-14,15,-22,24,-23,27","w":180},"{":{"d":"134,-243v-49,-12,-49,43,-42,86v6,42,-12,53,-31,69v43,21,-24,181,78,135v10,0,14,2,14,8v-2,21,-27,29,-51,26v-43,-5,-49,-58,-49,-113v0,-20,0,-33,-11,-36v-12,3,-37,18,-39,-5v7,-30,70,-28,65,-65v-2,-18,-9,-45,-9,-61v-2,-40,33,-70,64,-76v22,-5,26,26,11,32","w":152,"k":{"j":-25}},"|":{"d":"47,-308v0,-14,-7,-55,12,-53v7,0,11,8,11,24r-1,428v0,35,-2,59,-3,70v-2,23,-24,20,-24,4","w":116},"}":{"d":"122,-109v29,-1,23,31,4,31v-10,0,-19,-1,-26,-4v-22,24,5,64,5,98v0,40,-18,70,-55,70v-17,0,-30,-4,-31,-17v2,-11,23,-18,37,-12v34,-12,13,-88,11,-124v0,-14,5,-18,16,-21v-58,-16,-5,-92,-5,-138v0,-34,-56,-28,-73,-11v-3,0,-5,-1,-5,-4v0,-25,19,-37,58,-37v25,0,47,24,46,55v-1,38,-26,70,-24,107v9,14,25,8,42,7","w":145},"~":{"d":"268,-165v-14,39,-42,72,-92,71v-36,-2,-47,-54,-91,-50v-27,3,-34,45,-53,58v-28,-6,-10,-49,4,-56v17,-17,58,-43,85,-20v27,24,88,74,111,7v4,-11,31,-32,36,-10","w":280},"\u00c4":{"d":"153,-258v23,-3,15,19,19,34v7,30,17,44,26,72v19,58,41,107,74,141v9,9,-3,26,-15,26v-15,0,-34,-24,-55,-71v-9,-19,-13,-28,-15,-28v-27,1,-80,15,-104,21v-4,1,-8,-3,-11,-5v-19,11,-34,77,-56,75v-14,-2,-25,-19,-11,-32v6,-10,4,-9,25,-38v36,-49,85,-151,107,-182v7,-9,12,-13,16,-13xm85,-94v19,-5,92,-17,96,-18r-35,-100xm178,-307v-1,-14,19,-20,32,-15v9,12,2,33,-16,31v-8,-1,-16,-8,-16,-16xm121,-318v21,0,41,33,7,31v-5,1,-20,-4,-19,-9v0,-15,4,-22,12,-22","w":279,"k":{"C":4,"\u00c7":4,"\u0106":4,"\u010c":4,",":-8,".":-8,":":-11,";":-11,"V":12,"Y":14,"\u0178":14,"\u00dd":14,"a":-4,"\u00e6":-4,"\u0105":-4,"c":-4,"\u00e7":-4,"\u0107":-4,"\u010d":-4,"d":-4,"\u010f":-4,"\u0111":-4,"e":-4,"\u0119":-4,"O":4,"\u00d6":4,"\u00d8":4,"\u00d5":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d2":4,"\u014c":4,"\u0150":4,"T":21,"\u0164":21,"U":7,"\u00dc":7,"\u00da":7,"\u00db":7,"\u00d9":7,"\u016a":7,"\u016e":7,"\u0170":7,"\u0172":7,"W":3,"Z":-7,"\u017d":-7,"\u0179":-7,"\u017b":-7,"*":7,"t":-7,"\u0165":-7,"v":2,"w":4,"g":-4,"\u011f":-4,"\u0123":-4,"n":-4,"s":-4,"\u0161":-4,"\u015f":-4,"\u015b":-4,"j":-7,"x":-5,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"h":-4}},"\u00c5":{"d":"16,7v-14,-2,-25,-19,-11,-32v6,-10,5,-9,25,-38v35,-48,87,-152,107,-182v-45,-18,-19,-79,29,-79v19,0,35,19,35,38v0,29,-39,30,-29,62v9,29,17,44,26,72v19,58,41,107,74,141v9,9,-3,26,-15,26v-15,0,-34,-24,-55,-71v-9,-19,-13,-28,-15,-28v-27,1,-80,15,-104,21v-4,1,-8,-3,-11,-5v-19,11,-34,77,-56,75xm179,-284v-1,-11,-5,-23,-21,-20v-27,-1,-26,45,-3,45v10,0,26,-10,24,-25xm85,-94v19,-5,92,-17,96,-18r-35,-100","w":279,"k":{"C":4,"\u00c7":4,"\u0106":4,"\u010c":4,",":-8,".":-8,":":-11,";":-11,"V":12,"Y":14,"\u0178":14,"\u00dd":14,"a":-4,"\u00e6":-4,"\u0105":-4,"c":-4,"\u00e7":-4,"\u0107":-4,"\u010d":-4,"d":-4,"\u010f":-4,"\u0111":-4,"e":-4,"\u0119":-4,"O":4,"\u00d6":4,"\u00d8":4,"\u00d5":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d2":4,"\u014c":4,"\u0150":4,"T":21,"\u0164":21,"U":7,"\u00dc":7,"\u00da":7,"\u00db":7,"\u00d9":7,"\u016a":7,"\u016e":7,"\u0170":7,"\u0172":7,"W":3,"Z":-7,"\u017d":-7,"\u0179":-7,"\u017b":-7,"*":7,"t":-7,"\u0165":-7,"v":2,"w":4,"g":-4,"\u011f":-4,"\u0123":-4,"n":-4,"s":-4,"\u0161":-4,"\u015f":-4,"\u015b":-4,"j":-7,"x":-5,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"h":-4}},"\u00c7":{"d":"214,-45v-16,33,-76,69,-129,59v-3,8,-2,19,12,17v20,1,30,15,28,39v-2,17,-35,42,-63,38v-13,-2,-36,-7,-36,-21v0,-26,29,-4,38,-1v21,0,31,-5,31,-22v2,-28,-39,0,-42,-21r13,-35v-31,-13,-46,-37,-46,-72v0,-84,104,-210,180,-206v52,-8,64,85,18,91v-28,-6,16,-64,-19,-66v-71,11,-142,98,-146,177v-2,32,21,56,55,56v34,0,78,-29,99,-41v5,0,7,2,7,8","w":251,"k":{")":-18,"]":-18,"}":-18,"\u00ab":-11,"?":-18,"A":4,"\u00c4":4,"\u00c5":4,"\u00c6":4,"\u00c0":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u0100":4,"\u0102":4,"\u0104":4,"a":7,"\u00e6":7,"\u0105":7,"c":4,"\u00e7":4,"\u0107":4,"\u010d":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u0119":4,"w":4,"g":4,"\u011f":4,"\u0123":4,"o":7,"\u00f8":7,"\u0153":7,"p":4,"i":4,"\u0131":4,"\u012f":4}},"\u00c9":{"d":"211,-258v29,-6,35,24,16,31r-128,12v-16,10,-18,70,-22,84v35,2,86,-12,113,-14v30,-3,26,26,7,30v-11,3,-122,13,-122,19v-5,3,-13,60,-12,69v25,29,101,-7,140,-7v11,0,23,15,14,26v-39,13,-101,14,-157,21v-29,3,-30,-3,-33,-26v15,-48,28,-143,32,-198v-8,-10,-15,-32,6,-32v44,3,96,-5,146,-15xm224,-362v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":246,"k":{"J":-4,"\u00ed":9,"\u00ec":9,"\u00ee":9,"\u00ef":9,"\u012b":9,"V":-11,"Y":-7,"\u0178":-7,"\u00dd":-7,"W":-4,"t":-4,"\u0165":-4,"w":4,"z":-11,"\u017e":-11,"\u017a":-11,"\u017c":-11}},"\u00d1":{"d":"217,-295v-32,3,-39,-31,-63,-34v-23,-2,-28,35,-49,37v-6,0,-8,-4,-8,-10v-2,-15,37,-55,52,-52v34,-3,40,33,65,36v13,1,23,-28,33,-31v6,0,10,3,10,10v0,9,-26,48,-40,44xm63,-219v-6,-24,21,-37,34,-20v8,59,77,156,110,194v10,-39,32,-147,32,-188v0,-22,8,-26,24,-29v15,9,12,28,6,51v-12,46,-34,146,-32,196v0,21,-30,28,-41,9v-11,-12,-7,-19,-19,-33v-35,-42,-64,-90,-91,-141v-9,36,-26,104,-26,160v0,20,-7,29,-19,34v-15,2,-16,-16,-16,-26v0,-46,36,-158,38,-207","w":290,"k":{"v":4,"w":4,"o":5,"\u00f8":5,"\u0153":5,"q":5,"m":4,"p":4,"r":5,"\u0155":5,"\u0157":5,"\u0159":5,"u":5,"\u0173":5,"y":4,"\u00ff":4,"\u00fd":4,"l":4,"\u0142":4,"\u013a":4,"\u013c":4,"\u013e":4}},"\u00d6":{"d":"170,-257v66,0,110,25,108,94v-2,74,-66,134,-117,162v-18,9,-41,14,-69,14v-37,0,-74,-50,-72,-86v6,-85,63,-184,150,-184xm170,-232v-53,-3,-118,101,-118,157v0,30,23,58,51,58v68,0,142,-84,142,-153v0,-45,-34,-59,-75,-62xm201,-314v-1,-14,19,-20,32,-15v9,12,2,33,-16,31v-8,-1,-16,-8,-16,-16xm144,-325v21,0,41,33,7,31v-5,1,-20,-4,-19,-9v0,-15,4,-22,12,-22","w":289,"k":{",":21,".":21,"J":4,"A":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u00c0":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u0100":12,"\u0102":12,"\u0104":12,"a":7,"\u00e6":7,"\u0105":7,"c":5,"\u00e7":5,"\u0107":5,"\u010d":5,"d":5,"\u010f":5,"\u0111":5,"T":-1,"\u0164":-1,"t":-4,"\u0165":-4,"v":-4,"g":5,"\u011f":5,"\u0123":5,"o":4,"\u00f8":4,"\u0153":4,"q":4,"m":4,"p":4,"r":4,"\u0155":4,"\u0157":4,"\u0159":4,"u":4,"\u0173":4,"j":6,"x":7,"y":5,"\u00ff":5,"\u00fd":5,"z":4,"\u017e":4,"\u017a":4,"\u017c":4,"i":6,"\u0131":6,"\u012f":6,"k":4,"\u0137":4,"l":2,"\u0142":2,"\u013a":2,"\u013c":2,"\u013e":2}},"\u00dc":{"d":"62,-102v0,96,115,111,146,42v23,-30,1,-191,45,-191v8,0,12,7,12,20v0,112,-3,248,-140,243v-80,-3,-112,-87,-85,-179v7,-28,4,-65,20,-85v11,-14,24,7,24,17v-7,21,-22,100,-22,133xm186,-314v-1,-14,19,-20,32,-15v9,12,2,33,-16,31v-8,-1,-16,-8,-16,-16xm129,-325v21,0,41,33,7,31v-5,1,-20,-4,-19,-9v0,-15,4,-22,12,-22","w":278,"k":{"A":3,"\u00c4":3,"\u00c5":3,"\u00c6":3,"\u00c0":3,"\u00c3":3,"\u00c2":3,"\u00c1":3,"\u0100":3,"\u0102":3,"\u0104":3,"a":4,"\u00e6":4,"\u0105":4,"d":4,"\u010f":4,"\u0111":4,"e":2,"\u0119":2,"v":-2,"w":2,"g":5,"\u011f":5,"\u0123":5,"m":2,"p":2,"x":2}},"\u00e1":{"d":"173,8v-24,-5,-31,-37,-31,-72v-25,33,-51,63,-93,66v-19,1,-33,-20,-33,-41v0,-54,71,-157,123,-153v14,-3,19,18,29,23v9,0,14,4,14,11v-5,56,-25,112,5,139v5,3,8,6,8,10v0,8,-14,18,-22,17xm60,-27v26,1,88,-77,88,-111v0,-17,-6,-25,-17,-25v-28,0,-85,85,-85,116v0,13,5,20,14,20xm187,-290v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":211},"\u00e0":{"d":"173,8v-24,-5,-31,-37,-31,-72v-25,33,-51,63,-93,66v-19,1,-33,-20,-33,-41v0,-54,71,-157,123,-153v14,-3,19,18,29,23v9,0,14,4,14,11v-5,56,-25,112,5,139v5,3,8,6,8,10v0,8,-14,18,-22,17xm60,-27v26,1,88,-77,88,-111v0,-17,-6,-25,-17,-25v-28,0,-85,85,-85,116v0,13,5,20,14,20xm155,-231v11,11,-8,34,-20,18v-17,-23,-69,-53,-78,-75v3,-8,16,-18,26,-6v15,18,56,46,72,63","w":211},"\u00e2":{"d":"199,-200v-18,-7,-42,-51,-55,-68v-11,5,-45,54,-64,61v-10,3,-14,-21,-7,-27v24,-20,49,-52,75,-67v18,9,30,53,47,65v16,12,22,28,4,36xm173,8v-24,-5,-31,-37,-31,-72v-25,33,-51,63,-93,66v-19,1,-33,-20,-33,-41v0,-54,71,-157,123,-153v14,-3,19,18,29,23v9,0,14,4,14,11v-5,56,-25,112,5,139v5,3,8,6,8,10v0,8,-14,18,-22,17xm60,-27v26,1,88,-77,88,-111v0,-17,-6,-25,-17,-25v-28,0,-85,85,-85,116v0,13,5,20,14,20","w":211},"\u00e4":{"d":"173,8v-24,-5,-31,-37,-31,-72v-25,33,-51,63,-93,66v-19,1,-33,-20,-33,-41v0,-54,71,-157,123,-153v14,-3,19,18,29,23v9,0,14,4,14,11v-5,56,-25,112,5,139v5,3,8,6,8,10v0,8,-14,18,-22,17xm60,-27v26,1,88,-77,88,-111v0,-17,-6,-25,-17,-25v-28,0,-85,85,-85,116v0,13,5,20,14,20xm152,-233v-1,-14,19,-20,32,-15v9,12,2,33,-16,31v-8,-1,-16,-8,-16,-16xm95,-244v21,0,41,33,7,31v-5,1,-20,-4,-19,-9v0,-15,4,-22,12,-22","w":211},"\u00e3":{"d":"219,-249v-4,18,-34,60,-63,38v-12,-9,-25,-26,-40,-29v-22,0,-27,35,-48,37v-6,0,-9,-3,-9,-9v-2,-15,37,-56,52,-53v32,-2,41,32,65,36v14,2,23,-27,33,-30v6,0,10,3,10,10xm173,8v-24,-5,-31,-37,-31,-72v-25,33,-51,63,-93,66v-19,1,-33,-20,-33,-41v0,-54,71,-157,123,-153v14,-3,19,18,29,23v9,0,14,4,14,11v-5,56,-25,112,5,139v5,3,8,6,8,10v0,8,-14,18,-22,17xm60,-27v26,1,88,-77,88,-111v0,-17,-6,-25,-17,-25v-28,0,-85,85,-85,116v0,13,5,20,14,20","w":211},"\u00e5":{"d":"94,-246v-1,-46,89,-59,88,-4v2,47,-90,64,-88,4xm160,-248v-1,-11,-6,-22,-21,-20v-15,-2,-21,12,-21,24v0,9,9,22,18,21v10,-1,26,-10,24,-25xm173,8v-24,-5,-31,-37,-31,-72v-25,33,-51,63,-93,66v-19,1,-33,-20,-33,-41v0,-54,71,-157,123,-153v14,-3,19,18,29,23v9,0,14,4,14,11v-5,56,-25,112,5,139v5,3,8,6,8,10v0,8,-14,18,-22,17xm60,-27v26,1,88,-77,88,-111v0,-17,-6,-25,-17,-25v-28,0,-85,85,-85,116v0,13,5,20,14,20","w":211},"\u00e7":{"d":"164,-44v-2,22,-63,60,-97,54v-4,9,-1,16,12,16v22,0,27,13,27,38v0,18,-32,43,-62,38v-12,-2,-35,-7,-35,-21v1,-26,28,-3,38,-1v33,7,38,-33,15,-38v-9,1,-27,12,-27,-5r12,-31v-21,-8,-31,-25,-31,-53v0,-50,60,-148,104,-148v29,0,51,60,22,73v-14,6,-16,-47,-29,-43v-24,-1,-72,88,-68,117v10,60,82,14,113,-3v4,0,6,2,6,7","w":182},"\u00e9":{"d":"82,-21v28,3,59,-24,86,-48v4,0,6,3,6,9v0,27,-62,72,-97,69v-38,-3,-59,-24,-59,-63v0,-60,53,-145,108,-141v44,3,33,56,3,81v-19,16,-42,32,-71,49v-23,13,-1,48,24,44xm52,-87v50,-30,74,-53,74,-71v0,-7,-3,-11,-9,-11v-30,4,-59,48,-65,82xm159,-294v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":187},"\u00e8":{"d":"82,-21v28,3,59,-24,86,-48v4,0,6,3,6,9v0,27,-62,72,-97,69v-38,-3,-59,-24,-59,-63v0,-60,53,-145,108,-141v44,3,33,56,3,81v-19,16,-42,32,-71,49v-23,13,-1,48,24,44xm52,-87v50,-30,74,-53,74,-71v0,-7,-3,-11,-9,-11v-30,4,-59,48,-65,82xm126,-236v11,11,-8,34,-20,18v-17,-23,-69,-53,-78,-75v3,-8,16,-18,26,-6v15,18,56,46,72,63","w":187},"\u00ea":{"d":"119,-265v-12,4,-46,57,-64,61v-31,-28,34,-58,50,-80v21,-28,27,-7,42,19v9,26,30,26,38,56v0,6,-5,12,-11,12v-19,-7,-41,-52,-55,-68xm82,-21v28,3,59,-24,86,-48v4,0,6,3,6,9v0,27,-62,72,-97,69v-38,-3,-59,-24,-59,-63v0,-60,53,-145,108,-141v44,3,33,56,3,81v-19,16,-42,32,-71,49v-23,13,-1,48,24,44xm52,-87v50,-30,74,-53,74,-71v0,-7,-3,-11,-9,-11v-30,4,-59,48,-65,82","w":187},"\u00eb":{"d":"82,-21v28,3,59,-24,86,-48v4,0,6,3,6,9v0,27,-62,72,-97,69v-38,-3,-59,-24,-59,-63v0,-60,53,-145,108,-141v44,3,33,56,3,81v-19,16,-42,32,-71,49v-23,13,-1,48,24,44xm52,-87v50,-30,74,-53,74,-71v0,-7,-3,-11,-9,-11v-30,4,-59,48,-65,82xm132,-234v-1,-14,19,-20,32,-15v9,12,2,33,-16,31v-8,-1,-16,-8,-16,-16xm75,-245v21,0,41,33,7,31v-5,1,-20,-4,-19,-9v0,-15,4,-22,12,-22","w":187},"\u00ed":{"d":"79,-167v-15,62,-29,97,-18,163v-11,21,-35,17,-35,-18v0,-20,14,-95,18,-132v-6,-26,31,-37,35,-13xm145,-291v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":104},"\u00ec":{"d":"79,-167v-15,62,-29,97,-18,163v-11,21,-35,17,-35,-18v0,-20,14,-95,18,-132v-6,-26,31,-37,35,-13xm90,-230v11,11,-8,34,-20,18v-17,-23,-69,-53,-78,-75v3,-8,16,-18,26,-6v15,18,56,46,72,63","w":104},"\u00ee":{"d":"129,-188v-18,-7,-42,-51,-55,-68v-11,5,-45,54,-64,61v-10,3,-14,-21,-7,-27v24,-20,49,-52,75,-67v18,9,30,53,47,65v16,12,22,28,4,36xm79,-167v-15,62,-29,97,-18,163v-11,21,-35,17,-35,-18v0,-20,14,-95,18,-132v-6,-26,31,-37,35,-13","w":104},"\u00ef":{"d":"79,-167v-15,62,-29,97,-18,163v-11,21,-35,17,-35,-18v0,-20,14,-95,18,-132v-6,-26,31,-37,35,-13xm88,-234v-1,-14,19,-20,32,-15v9,12,2,33,-16,31v-8,-1,-16,-8,-16,-16xm31,-245v21,0,41,33,7,31v-5,1,-20,-4,-19,-9v0,-15,4,-22,12,-22","w":104},"\u00f1":{"d":"213,-254v-4,18,-35,62,-63,38v-14,-6,-24,-29,-40,-29v-22,0,-27,36,-49,37v-6,0,-8,-3,-8,-9v-2,-15,36,-55,51,-53v32,-2,42,32,66,36v14,2,23,-28,33,-31v6,0,10,4,10,11xm200,-8v-50,10,-23,-121,-57,-127v-45,8,-66,137,-105,137v-14,0,-20,-7,-20,-20v3,-43,14,-89,12,-136v-1,-7,11,-23,17,-23v15,0,16,9,16,28v4,9,-15,77,-12,99v23,-27,63,-162,125,-105v23,21,-2,138,52,113v5,0,7,3,7,9v0,12,-20,27,-35,25","w":238},"\u00f3":{"d":"186,-115v0,55,-59,124,-111,124v-34,0,-56,-30,-56,-64v0,-55,48,-133,104,-133v37,0,63,35,63,73xm119,-160v-37,0,-70,64,-69,101v0,20,10,40,28,40v35,0,78,-52,78,-93v0,-26,-13,-48,-37,-48xm188,-290v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":203},"\u00f2":{"d":"186,-115v0,55,-59,124,-111,124v-34,0,-56,-30,-56,-64v0,-55,48,-133,104,-133v37,0,63,35,63,73xm119,-160v-37,0,-70,64,-69,101v0,20,10,40,28,40v35,0,78,-52,78,-93v0,-26,-13,-48,-37,-48xm144,-230v11,11,-8,34,-20,18v-17,-23,-69,-53,-78,-75v3,-8,16,-18,26,-6v15,18,56,46,72,63","w":203},"\u00f4":{"d":"132,-266v-12,4,-46,57,-64,61v-10,2,-14,-21,-7,-27v24,-21,49,-52,76,-67v16,10,30,53,47,65v16,11,21,29,3,36v-19,-7,-41,-52,-55,-68xm186,-115v0,55,-59,124,-111,124v-34,0,-56,-30,-56,-64v0,-55,48,-133,104,-133v37,0,63,35,63,73xm119,-160v-37,0,-70,64,-69,101v0,20,10,40,28,40v35,0,78,-52,78,-93v0,-26,-13,-48,-37,-48","w":203},"\u00f6":{"d":"186,-115v0,55,-59,124,-111,124v-34,0,-56,-30,-56,-64v0,-55,48,-133,104,-133v37,0,63,35,63,73xm119,-160v-37,0,-70,64,-69,101v0,20,10,40,28,40v35,0,78,-52,78,-93v0,-26,-13,-48,-37,-48xm142,-233v-1,-14,19,-20,32,-15v9,12,2,33,-16,31v-8,-1,-16,-8,-16,-16xm85,-244v21,0,41,33,7,31v-5,1,-20,-4,-19,-9v0,-15,4,-22,12,-22","w":203},"\u00f5":{"d":"213,-252v-4,18,-35,62,-63,38v-14,-6,-24,-26,-40,-29v-22,1,-28,35,-49,37v-6,0,-8,-3,-8,-9v-2,-15,37,-56,52,-53v32,-2,41,32,65,36v14,2,23,-28,33,-31v6,0,10,4,10,11xm186,-115v0,55,-59,124,-111,124v-34,0,-56,-30,-56,-64v0,-55,48,-133,104,-133v37,0,63,35,63,73xm119,-160v-37,0,-70,64,-69,101v0,20,10,40,28,40v35,0,78,-52,78,-93v0,-26,-13,-48,-37,-48","w":203},"\u00fa":{"d":"175,7v-26,-5,-28,-45,-28,-83v-22,36,-49,73,-89,79v-66,-12,-20,-124,-16,-176v6,-16,34,-11,33,6v-2,28,-27,83,-25,110v5,51,30,25,56,0v22,-21,42,-75,58,-108v8,-10,26,-8,24,10v-14,46,-24,123,7,149v1,6,-14,14,-20,13xm184,-290v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":219},"\u00f9":{"d":"175,7v-26,-5,-28,-45,-28,-83v-22,36,-49,73,-89,79v-66,-12,-20,-124,-16,-176v6,-16,34,-11,33,6v-2,28,-27,83,-25,110v5,51,30,25,56,0v22,-21,42,-75,58,-108v8,-10,26,-8,24,10v-14,46,-24,123,7,149v1,6,-14,14,-20,13xm135,-230v11,11,-8,34,-20,18v-17,-23,-69,-53,-78,-75v3,-8,16,-18,26,-6v15,18,56,46,72,63","w":219},"\u00fb":{"d":"130,-271v-12,3,-45,58,-64,61v-7,0,-9,-6,-9,-17v11,-29,42,-41,59,-63v22,-28,29,-8,42,19v13,26,29,28,39,56v-1,6,-5,11,-11,12v-18,-7,-42,-52,-56,-68xm175,7v-26,-5,-28,-45,-28,-83v-22,36,-49,73,-89,79v-66,-12,-20,-124,-16,-176v6,-16,34,-11,33,6v-2,28,-27,83,-25,110v5,51,30,25,56,0v22,-21,42,-75,58,-108v8,-10,26,-8,24,10v-14,46,-24,123,7,149v1,6,-14,14,-20,13","w":219},"\u00fc":{"d":"175,7v-26,-5,-28,-45,-28,-83v-22,36,-49,73,-89,79v-66,-12,-20,-124,-16,-176v6,-16,34,-11,33,6v-2,28,-27,83,-25,110v5,51,30,25,56,0v22,-21,42,-75,58,-108v8,-10,26,-8,24,10v-14,46,-24,123,7,149v1,6,-14,14,-20,13xm141,-234v-1,-14,19,-20,32,-15v9,12,2,33,-16,31v-8,-1,-16,-8,-16,-16xm84,-245v21,0,41,33,7,31v-5,1,-20,-4,-19,-9v0,-15,4,-22,12,-22","w":219},"\u00b0":{"d":"156,-200v6,63,-122,83,-122,10v0,-17,32,-62,48,-59v44,-14,71,20,74,49xm91,-165v43,9,55,-50,24,-64v-8,5,-17,7,-28,4v-13,0,-27,21,-27,34v0,13,18,27,31,26","w":182},"\u00a2":{"d":"91,2v-27,-2,-8,-44,-6,-60v-13,-3,-48,-2,-53,-21v-29,-45,6,-92,48,-99v37,2,20,-35,28,-57v0,-8,4,-12,14,-12v23,5,5,39,5,56v10,4,42,19,38,28v-2,29,-29,-2,-38,-2v-5,2,-22,71,-13,76v11,2,32,-23,45,-8v3,34,-54,15,-54,49v-4,15,3,51,-14,50xm42,-107v0,15,26,37,44,22v7,-9,11,-64,15,-79v-39,13,-59,32,-59,57","w":183},"\u00a3":{"d":"172,8v-33,-1,-74,-27,-111,-35v-22,15,-34,23,-36,23v-5,0,-17,-5,-16,-11v3,-11,19,-39,37,-36v10,-12,21,-28,30,-48v-20,0,-53,3,-55,-13v-4,-30,44,-2,59,-14v-2,-58,19,-110,73,-115v15,0,36,11,35,26v0,9,-5,18,-16,17v-7,2,-19,-17,-25,-17v-25,1,-47,52,-42,82v37,-8,48,-13,74,-17v13,-2,22,15,10,22r-82,20v-5,17,-19,46,-31,59v25,5,109,56,128,17v-2,-13,4,-20,13,-21v6,1,14,11,13,21v3,24,-38,40,-58,40","w":240},"\u00a7":{"d":"116,-225v-7,-9,-12,-26,-28,-26v-8,0,-28,7,-27,17v-3,41,42,32,59,65v28,26,5,71,-25,77v57,24,34,102,-29,96v-32,4,-61,-30,-44,-54v28,-1,15,36,44,33v40,4,55,-42,15,-54v-26,-16,-62,-25,-63,-64v-1,-22,26,-45,48,-51v-27,-11,-45,-67,0,-79v27,-7,63,-2,68,19v2,8,-10,22,-18,21xm80,-168v-33,-3,-48,46,-18,58r18,11v9,-11,33,-24,29,-36v1,-18,-13,-32,-29,-33","w":150},"\u00b6":{"d":"208,-202v-7,62,-26,160,-1,214v-1,2,-9,6,-13,6v-20,0,-25,-64,-25,-85v-2,-37,13,-105,19,-152v0,-4,-4,-7,-12,-7v-50,3,-126,15,-129,64v-1,8,20,43,31,40v20,-1,-2,-66,23,-68v5,0,8,4,8,11r-3,54v9,6,33,-2,23,21v-41,1,-20,90,-20,126v0,5,-8,14,-14,13v-25,-25,-14,-84,-17,-129v-29,-14,-76,-52,-47,-101v22,-37,96,-55,148,-57v13,0,41,11,41,24v-1,13,-16,8,-12,26","w":240},"\u00df":{"d":"103,1v-29,6,-43,-41,-22,-53v7,20,14,30,21,30v38,2,78,-45,46,-76v-13,-14,-36,-25,-60,-27v-16,-10,-8,-40,14,-38v28,-7,54,-20,54,-55v0,-28,-32,-41,-50,-22v-56,59,-41,206,-75,296v-7,19,-35,42,-51,24v-5,-23,18,-14,27,-36v37,-93,7,-258,93,-307v41,-23,85,7,85,53v0,41,-52,52,-71,66v11,10,47,6,52,27v8,12,18,33,19,49v2,36,-46,71,-82,69","w":200},"\u00ae":{"d":"237,-54v-67,44,-215,63,-222,-42v-2,-24,41,-86,57,-94v14,-7,22,-15,26,-20v9,-34,44,-52,83,-56v71,-8,125,60,139,107v2,65,-42,77,-83,105xm298,-152v-1,-62,-112,-129,-168,-73v41,-22,64,-15,78,14v0,2,-2,5,-4,9v-16,-11,-11,-14,-34,-12v-50,5,-126,59,-131,109v-7,70,80,66,134,53v27,-6,137,-53,125,-100xm159,-130v-1,-14,30,-15,33,-26v-3,-9,-25,-9,-39,-2v-2,21,14,62,-8,69v-29,-1,-2,-57,-19,-73v-13,-19,14,-20,32,-22v30,-9,55,14,60,31v0,6,-10,11,-30,18v16,13,56,16,61,32v-10,28,-65,-20,-83,-16v-4,-1,-7,-6,-7,-11","w":336},"\u00a9":{"d":"177,-263v16,0,54,22,35,42v51,-3,122,22,126,69v-16,92,-141,120,-233,137v-25,-5,-68,-11,-73,-38v-5,-9,-8,-17,-8,-21v6,-88,68,-189,153,-189xm105,-40v81,-4,197,-50,211,-116v-10,-41,-91,-47,-134,-55v-4,-6,0,-12,9,-10r9,0v-7,-13,-6,-19,-22,-18v-63,6,-124,97,-128,163v-1,21,32,37,55,36xm182,-193v22,-3,44,39,11,42v-4,0,-6,-4,-7,-13v-3,-16,-22,-1,-25,4v-17,13,-25,29,-25,46v0,15,1,15,17,15v30,0,72,-23,86,-34v5,0,4,7,3,11v-11,38,-128,81,-133,9v6,-43,31,-74,73,-80","w":344},"\u00b4":{"d":"108,-264v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":133},"\u00a8":{"d":"78,-229v-1,-14,19,-20,32,-15v9,12,2,33,-16,31v-8,-1,-16,-8,-16,-16xm21,-240v21,0,41,33,7,31v-5,1,-20,-4,-19,-9v0,-15,4,-22,12,-22","w":126},"\u00c6":{"d":"381,-227r-129,12v-14,11,-18,69,-22,84v35,2,86,-12,113,-14v30,-3,26,26,7,30v-11,3,-121,13,-122,19v-2,10,-26,79,-1,79v39,2,93,-13,129,-17v11,-1,23,15,14,26v-39,13,-101,16,-157,21v-61,5,-16,-46,-21,-88v-64,22,-86,-31,-119,26v-22,20,-37,60,-71,64v-18,2,-21,-30,-3,-32v68,-58,152,-142,188,-236v16,-13,14,-11,32,-1r1,11v50,7,113,-18,166,-12v9,5,6,27,-5,28xm199,-106v2,-34,16,-82,12,-107v-27,40,-71,81,-82,109v23,11,29,6,70,-2","w":399,"k":{"J":-4,"\u00ed":9,"\u00ec":9,"\u00ee":9,"\u00ef":9,"\u012b":9,"V":-11,"Y":-7,"\u0178":-7,"\u00dd":-7,"W":-4,"t":-4,"\u0165":-4,"w":4,"z":-11,"\u017e":-11,"\u017a":-11,"\u017c":-11}},"\u00d8":{"d":"243,-238v89,73,-15,209,-82,237v-21,9,-56,19,-85,11v-9,20,-23,22,-28,4v0,-1,2,-7,6,-16v-18,-14,-34,-43,-34,-71v0,-98,78,-210,195,-178v11,-15,19,-22,23,-22v12,6,21,18,5,35xm199,-228v-81,-30,-145,89,-147,153v0,17,6,31,17,43xm92,-18v84,9,169,-87,150,-176v-2,-7,-8,-14,-16,-20","w":289,"k":{",":21,".":21,"J":4,"A":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u00c0":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u0100":12,"\u0102":12,"\u0104":12,"a":7,"\u00e6":7,"\u0105":7,"c":5,"\u00e7":5,"\u0107":5,"\u010d":5,"d":5,"\u010f":5,"\u0111":5,"T":-1,"\u0164":-1,"t":-4,"\u0165":-4,"v":-4,"g":5,"\u011f":5,"\u0123":5,"o":4,"\u00f8":4,"\u0153":4,"q":4,"m":4,"p":4,"r":4,"\u0155":4,"\u0157":4,"\u0159":4,"u":4,"\u0173":4,"j":6,"x":7,"y":5,"\u00ff":5,"\u00fd":5,"z":4,"\u017e":4,"\u017a":4,"\u017c":4,"i":6,"\u0131":6,"\u012f":6,"k":4,"\u0137":4,"l":2,"\u0142":2,"\u013a":2,"\u013c":2,"\u013e":2}},"\u00b1":{"d":"177,-145v14,-2,14,21,4,25r-67,-2v-9,25,13,70,-16,76v-20,-10,-1,-48,-6,-76v-24,0,-54,5,-75,0v-5,-3,-8,-28,12,-22r63,-2v5,-13,2,-40,3,-61v1,-8,1,-12,10,-11v30,2,10,39,10,74v21,2,43,2,62,-1xm186,-10v-20,25,-92,2,-138,10v-36,6,-37,-14,-21,-24v40,-7,99,2,146,1v9,0,13,4,13,13","w":205},"\u00a5":{"d":"95,-41v-23,-1,-64,26,-69,-5v12,-31,82,7,71,-38v4,-40,-72,15,-72,-27v0,-24,52,0,69,-11v-15,-32,-51,-61,-70,-88v-13,-10,-21,-36,4,-36v26,27,42,60,82,96v32,-29,57,-64,93,-88v17,-10,29,8,17,18v-28,23,-85,60,-97,95v14,0,58,-10,66,-15v5,-1,13,14,13,18v1,9,-62,17,-77,20v-2,6,-4,26,0,34v23,0,59,-21,72,0v4,23,-51,15,-65,21v-15,1,-7,29,-1,35v-9,18,-36,18,-33,-15v0,-9,-1,-14,-3,-14","w":232},"\u00b5":{"d":"224,-33v10,0,28,-15,29,3v-3,11,-17,27,-39,25v-20,-2,-30,-37,-33,-61v-13,20,-48,54,-73,58v-21,-4,-31,-4,-36,-29v-2,27,-12,55,-15,85v-2,14,-6,21,-13,21v-19,0,-15,-29,-12,-45r29,-156v6,-31,3,-49,26,-49v8,0,12,6,12,20v0,32,-38,103,-2,123v55,-7,89,-54,93,-113v1,-32,24,-23,34,-13v-1,18,-16,61,-16,73v1,15,2,57,16,58","w":266},"\u00aa":{"d":"132,-122v-18,-1,-24,-25,-24,-47v-22,28,-42,43,-62,43v-14,0,-25,-15,-25,-30v-2,-42,70,-144,108,-92v27,2,-4,57,3,70v-2,27,10,30,17,42v1,6,-12,14,-17,14xm54,-150v16,0,64,-52,58,-75v0,-10,-3,-15,-9,-15v-19,-3,-57,58,-57,78v0,8,3,12,8,12","w":171},"\u00ba":{"d":"139,-200v0,43,-48,75,-85,75v-67,0,-15,-111,11,-127v12,-8,43,-19,50,2v11,12,24,23,24,50xm115,-198v0,-17,-11,-20,-14,-31v-2,-7,-3,-11,-6,-10v-28,-3,-51,54,-51,79v0,4,13,13,18,13v22,-8,53,-17,53,-51","w":157},"\u00e6":{"d":"120,-185v26,-2,37,22,28,50v25,-40,54,-60,85,-60v44,0,33,56,3,81v-19,16,-42,32,-71,49v-23,13,-1,48,24,44v28,3,59,-24,86,-48v4,0,6,3,6,9v0,27,-61,69,-97,69v-52,0,-65,-45,-58,-98v-17,43,-36,94,-86,102v-16,-2,-30,-17,-28,-43v4,-71,41,-150,108,-155xm159,-87v50,-30,74,-53,74,-71v0,-7,-3,-11,-9,-11v-30,4,-59,48,-65,82xm49,-18v32,-15,72,-90,76,-134v-49,-18,-80,59,-84,116v0,12,3,18,8,18","w":294},"\u00f8":{"d":"168,-202v14,7,21,19,3,38v49,73,-32,189,-113,170v-5,6,-17,25,-20,25v-19,-8,-16,-17,-2,-40v-51,-67,25,-204,111,-174v10,-13,17,-19,21,-19xm130,-159v-54,-9,-90,71,-76,121xm72,-20v48,5,100,-61,80,-117","w":203},"\u00bf":{"d":"122,-230v22,0,16,43,-2,45v-6,1,-17,-11,-16,-17v0,-19,6,-28,18,-28xm11,42v0,-58,31,-98,83,-102v-3,-23,-7,-82,21,-76v24,5,-2,32,2,53v-1,2,14,36,12,39v-2,13,-20,23,-31,9v-27,2,-63,34,-62,63v4,56,91,19,109,-1v7,-8,25,-9,25,4v-19,31,-57,55,-115,55v-21,0,-45,-23,-44,-44","w":173,"k":{"j":-35}},"\u00a1":{"d":"84,-212v2,20,-17,41,-34,28v-8,-13,-1,-42,20,-39v10,2,13,0,14,11xm37,75v-20,-9,-16,-36,-9,-62v-1,-31,11,-121,27,-142v10,-8,20,-4,18,16v-3,43,-16,89,-16,133v0,13,-4,57,-20,55","w":103},"\u00ac":{"d":"59,-136v46,6,92,-1,138,-5v51,-5,22,53,26,97v0,3,-8,10,-12,9v-28,-5,2,-58,-12,-79r-175,4v-4,0,-7,-4,-7,-13v0,-15,26,-11,42,-13","w":259},"\u00ab":{"d":"120,-193v17,7,13,24,-7,34v-20,11,-41,30,-61,37v-1,1,-1,2,-1,3v16,10,69,47,75,63v0,6,-7,14,-14,10v-32,-23,-58,-47,-96,-65v-9,-5,-9,-25,6,-25v23,0,94,-57,98,-57xm210,-168v17,-8,35,-34,46,-10v-2,21,-25,18,-38,30r-56,31v-1,1,-1,3,-1,4v17,12,66,40,75,58v-1,13,-14,16,-25,4v-6,-5,-56,-38,-84,-56v-5,-3,-6,-12,-1,-15v10,-10,38,-23,84,-46","w":263},"\u00bb":{"d":"160,-35v-8,16,-27,13,-29,-3v-1,-10,27,-33,85,-68v-7,-10,-56,-39,-66,-56v4,-18,15,-24,33,-2v20,25,42,39,61,43v14,3,16,12,9,19v-31,18,-72,45,-93,67xm59,-41v-7,12,-31,22,-33,1v-3,-29,60,-37,74,-66v0,-8,-56,-42,-64,-60v10,-24,24,-11,46,11v14,20,43,26,52,48v-1,19,-62,44,-75,66"},"\u00a0":{"w":140},"\u00c0":{"d":"153,-258v23,-3,15,19,19,34v7,30,17,44,26,72v19,58,41,107,74,141v9,9,-3,26,-15,26v-15,0,-34,-24,-55,-71v-9,-19,-13,-28,-15,-28v-27,1,-80,15,-104,21v-4,1,-8,-3,-11,-5v-19,11,-34,77,-56,75v-14,-2,-25,-19,-11,-32v6,-10,4,-9,25,-38v36,-49,85,-151,107,-182v7,-9,12,-13,16,-13xm85,-94v19,-5,92,-17,96,-18r-35,-100xm186,-308v11,11,-8,34,-20,18v-17,-23,-69,-53,-78,-75v3,-8,16,-18,26,-6v15,18,56,46,72,63","w":279,"k":{"C":4,"\u00c7":4,"\u0106":4,"\u010c":4,",":-8,".":-8,":":-11,";":-11,"V":12,"Y":14,"\u0178":14,"\u00dd":14,"a":-4,"\u00e6":-4,"\u0105":-4,"c":-4,"\u00e7":-4,"\u0107":-4,"\u010d":-4,"d":-4,"\u010f":-4,"\u0111":-4,"e":-4,"\u0119":-4,"O":4,"\u00d6":4,"\u00d8":4,"\u00d5":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d2":4,"\u014c":4,"\u0150":4,"T":21,"\u0164":21,"U":7,"\u00dc":7,"\u00da":7,"\u00db":7,"\u00d9":7,"\u016a":7,"\u016e":7,"\u0170":7,"\u0172":7,"W":3,"Z":-7,"\u017d":-7,"\u0179":-7,"\u017b":-7,"*":7,"t":-7,"\u0165":-7,"v":2,"w":4,"g":-4,"\u011f":-4,"\u0123":-4,"n":-4,"s":-4,"\u0161":-4,"\u015f":-4,"\u015b":-4,"j":-7,"x":-5,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"h":-4}},"\u00c3":{"d":"239,-337v0,19,-34,62,-62,38v-14,-7,-25,-29,-41,-29v-21,0,-26,36,-48,37v-6,0,-9,-3,-9,-9v-2,-14,37,-55,52,-53v32,-2,42,32,66,36v13,1,24,-28,33,-31v6,0,9,4,9,11xm153,-258v23,-3,15,19,19,34v7,30,17,44,26,72v19,58,41,107,74,141v9,9,-3,26,-15,26v-15,0,-34,-24,-55,-71v-9,-19,-13,-28,-15,-28v-27,1,-80,15,-104,21v-4,1,-8,-3,-11,-5v-19,11,-34,77,-56,75v-14,-2,-25,-19,-11,-32v6,-10,4,-9,25,-38v36,-49,85,-151,107,-182v7,-9,12,-13,16,-13xm85,-94v19,-5,92,-17,96,-18r-35,-100","w":279,"k":{"C":4,"\u00c7":4,"\u0106":4,"\u010c":4,",":-8,".":-8,":":-11,";":-11,"V":12,"Y":14,"\u0178":14,"\u00dd":14,"a":-4,"\u00e6":-4,"\u0105":-4,"c":-4,"\u00e7":-4,"\u0107":-4,"\u010d":-4,"d":-4,"\u010f":-4,"\u0111":-4,"e":-4,"\u0119":-4,"O":4,"\u00d6":4,"\u00d8":4,"\u00d5":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d2":4,"\u014c":4,"\u0150":4,"T":21,"\u0164":21,"U":7,"\u00dc":7,"\u00da":7,"\u00db":7,"\u00d9":7,"\u016a":7,"\u016e":7,"\u0170":7,"\u0172":7,"W":3,"Z":-7,"\u017d":-7,"\u0179":-7,"\u017b":-7,"*":7,"t":-7,"\u0165":-7,"v":2,"w":4,"g":-4,"\u011f":-4,"\u0123":-4,"n":-4,"s":-4,"\u0161":-4,"\u015f":-4,"\u015b":-4,"j":-7,"x":-5,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"h":-4}},"\u00d5":{"d":"265,-337v0,19,-33,59,-63,39v-13,-8,-23,-28,-40,-29v-23,-1,-28,35,-48,37v-6,0,-9,-4,-9,-10v-2,-14,37,-54,52,-52v34,-3,41,33,65,36v13,2,23,-29,34,-31v6,0,9,3,9,10xm170,-257v66,0,110,25,108,94v-2,74,-66,134,-117,162v-18,9,-41,14,-69,14v-37,0,-74,-50,-72,-86v6,-85,63,-184,150,-184xm170,-232v-53,-3,-118,101,-118,157v0,30,23,58,51,58v68,0,142,-84,142,-153v0,-45,-34,-59,-75,-62","w":289,"k":{",":21,".":21,"J":4,"A":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u00c0":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u0100":12,"\u0102":12,"\u0104":12,"a":7,"\u00e6":7,"\u0105":7,"c":5,"\u00e7":5,"\u0107":5,"\u010d":5,"d":5,"\u010f":5,"\u0111":5,"T":-1,"\u0164":-1,"t":-4,"\u0165":-4,"v":-4,"g":5,"\u011f":5,"\u0123":5,"o":4,"\u00f8":4,"\u0153":4,"q":4,"m":4,"p":4,"r":4,"\u0155":4,"\u0157":4,"\u0159":4,"u":4,"\u0173":4,"j":6,"x":7,"y":5,"\u00ff":5,"\u00fd":5,"z":4,"\u017e":4,"\u017a":4,"\u017c":4,"i":6,"\u0131":6,"\u012f":6,"k":4,"\u0137":4,"l":2,"\u0142":2,"\u013a":2,"\u013c":2,"\u013e":2}},"\u0152":{"d":"381,-258v29,-6,35,24,16,31r-128,12v-16,10,-18,70,-22,84v35,2,86,-12,113,-14v30,-3,26,26,7,30v-11,3,-122,13,-122,19v-5,3,-13,60,-12,69v25,29,101,-7,140,-7v11,0,23,15,14,26v-39,13,-101,12,-157,21v-37,6,-35,-18,-29,-42v-31,26,-54,42,-109,42v-37,0,-74,-50,-72,-86v5,-105,97,-225,215,-170v44,3,96,-5,146,-15xm52,-75v0,30,23,58,51,58v40,0,75,-21,108,-62r17,-133v-83,-72,-176,60,-176,137","w":416,"k":{"J":-4,"\u00ed":9,"\u00ec":9,"\u00ee":9,"\u00ef":9,"\u012b":9,"V":-11,"Y":-7,"\u0178":-7,"\u00dd":-7,"W":-4,"t":-4,"\u0165":-4,"w":4,"z":-11,"\u017e":-11,"\u017a":-11,"\u017c":-11}},"\u00f7":{"d":"125,-169v0,9,-4,23,-12,23v-27,0,-35,-35,-8,-30v5,1,22,2,20,7xm194,-94v-4,21,-64,8,-85,12v-26,-1,-82,13,-85,-11v-3,-24,36,-11,58,-14v32,4,101,-19,112,13xm120,-28v4,25,-31,27,-37,9v-1,-12,33,-27,37,-9","w":208},"\u00ff":{"d":"90,82v42,0,64,-96,63,-144v-32,27,-58,47,-94,54v-67,-6,-23,-130,-9,-163v9,-12,32,-8,29,12v-11,27,-26,49,-27,87v0,8,4,34,15,31v51,-15,92,-35,92,-111v0,-23,6,-35,17,-35v14,1,15,8,15,24v0,87,-16,180,-46,239v-30,60,-129,25,-142,-16v0,-8,8,-24,15,-14v16,23,39,36,72,36xm142,-234v-1,-14,19,-20,32,-15v9,12,2,33,-16,31v-8,-1,-16,-8,-16,-16xm85,-245v21,0,41,33,7,31v-5,1,-20,-4,-19,-9v0,-15,4,-22,12,-22","w":212},"\u0178":{"d":"115,10v-36,-15,12,-100,-5,-133v-21,-20,-53,-77,-82,-94v-21,-12,-33,-34,-8,-42v41,7,97,106,114,112r22,-24v39,-40,62,-66,70,-78v12,-19,35,-29,39,-4v-9,29,-89,91,-115,132v-12,19,-13,101,-19,126v-1,2,-12,6,-16,5xm167,-303v-1,-14,19,-20,32,-15v9,12,2,33,-16,31v-8,-1,-16,-8,-16,-16xm110,-314v21,0,41,33,7,31v-5,1,-20,-4,-19,-9v0,-15,4,-22,12,-22","w":241,"k":{"C":11,"\u00c7":11,"\u0106":11,"\u010c":11,"J":18,"A":16,"\u00c4":16,"\u00c5":16,"\u00c6":16,"\u00c0":16,"\u00c3":16,"\u00c2":16,"\u00c1":16,"\u0100":16,"\u0102":16,"\u0104":16,"V":-11,"G":12,"\u011e":12,"\u0122":12,"a":18,"\u00e6":18,"\u0105":18,"c":21,"\u00e7":21,"\u0107":21,"\u010d":21,"d":18,"\u010f":18,"\u0111":18,"e":18,"\u0119":18,"O":6,"\u00d6":6,"\u00d8":6,"\u00d5":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d2":6,"\u014c":6,"\u0150":6,"W":-7,"v":11,"w":14,"g":21,"\u011f":21,"\u0123":21,"Q":6,"o":21,"\u00f8":21,"\u0153":21,"q":14,"m":11,"n":11,"p":7,"r":7,"\u0155":7,"\u0157":7,"\u0159":7,"s":11,"\u0161":11,"\u015f":11,"\u015b":11,"u":14,"\u0173":14,"f":7,"B":-5,"x":14,"y":21,"\u00ff":21,"\u00fd":21,"z":7,"\u017e":7,"\u017a":7,"\u017c":7}},"\u00c2":{"d":"162,-344v-12,4,-47,56,-64,61v-10,2,-14,-21,-7,-27v23,-21,47,-53,75,-67v18,9,30,53,47,65v16,12,22,28,4,36v-18,-7,-41,-52,-55,-68xm153,-258v23,-3,15,19,19,34v7,30,17,44,26,72v19,58,41,107,74,141v9,9,-3,26,-15,26v-15,0,-34,-24,-55,-71v-9,-19,-13,-28,-15,-28v-27,1,-80,15,-104,21v-4,1,-8,-3,-11,-5v-19,11,-34,77,-56,75v-14,-2,-25,-19,-11,-32v6,-10,4,-9,25,-38v36,-49,85,-151,107,-182v7,-9,12,-13,16,-13xm85,-94v19,-5,92,-17,96,-18r-35,-100","w":279,"k":{"C":4,"\u00c7":4,"\u0106":4,"\u010c":4,",":-8,".":-8,":":-11,";":-11,"V":12,"Y":14,"\u0178":14,"\u00dd":14,"a":-4,"\u00e6":-4,"\u0105":-4,"c":-4,"\u00e7":-4,"\u0107":-4,"\u010d":-4,"d":-4,"\u010f":-4,"\u0111":-4,"e":-4,"\u0119":-4,"O":4,"\u00d6":4,"\u00d8":4,"\u00d5":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d2":4,"\u014c":4,"\u0150":4,"T":21,"\u0164":21,"U":7,"\u00dc":7,"\u00da":7,"\u00db":7,"\u00d9":7,"\u016a":7,"\u016e":7,"\u0170":7,"\u0172":7,"W":3,"Z":-7,"\u017d":-7,"\u0179":-7,"\u017b":-7,"*":7,"t":-7,"\u0165":-7,"v":2,"w":4,"g":-4,"\u011f":-4,"\u0123":-4,"n":-4,"s":-4,"\u0161":-4,"\u015f":-4,"\u015b":-4,"j":-7,"x":-5,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"h":-4}},"\u00ca":{"d":"163,-347v-12,3,-46,56,-64,60v-7,0,-10,-5,-10,-16v10,-30,43,-41,60,-64v21,-27,30,-8,42,19v12,26,29,28,39,56v0,6,-5,12,-12,12v-18,-7,-40,-53,-55,-67xm211,-258v29,-6,35,24,16,31r-128,12v-16,10,-18,70,-22,84v35,2,86,-12,113,-14v30,-3,26,26,7,30v-11,3,-122,13,-122,19v-5,3,-13,60,-12,69v25,29,101,-7,140,-7v11,0,23,15,14,26v-39,13,-101,14,-157,21v-29,3,-30,-3,-33,-26v15,-48,28,-143,32,-198v-8,-10,-15,-32,6,-32v44,3,96,-5,146,-15","w":246,"k":{"J":-4,"\u00ed":9,"\u00ec":9,"\u00ee":9,"\u00ef":9,"\u012b":9,"V":-11,"Y":-7,"\u0178":-7,"\u00dd":-7,"W":-4,"t":-4,"\u0165":-4,"w":4,"z":-11,"\u017e":-11,"\u017a":-11,"\u017c":-11}},"\u00c1":{"d":"153,-258v23,-3,15,19,19,34v7,30,17,44,26,72v19,58,41,107,74,141v9,9,-3,26,-15,26v-15,0,-34,-24,-55,-71v-9,-19,-13,-28,-15,-28v-27,1,-80,15,-104,21v-4,1,-8,-3,-11,-5v-19,11,-34,77,-56,75v-14,-2,-25,-19,-11,-32v6,-10,4,-9,25,-38v36,-49,85,-151,107,-182v7,-9,12,-13,16,-13xm85,-94v19,-5,92,-17,96,-18r-35,-100xm230,-377v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":279,"k":{"C":4,"\u00c7":4,"\u0106":4,"\u010c":4,",":-8,".":-8,":":-11,";":-11,"V":12,"Y":14,"\u0178":14,"\u00dd":14,"a":-4,"\u00e6":-4,"\u0105":-4,"c":-4,"\u00e7":-4,"\u0107":-4,"\u010d":-4,"d":-4,"\u010f":-4,"\u0111":-4,"e":-4,"\u0119":-4,"O":4,"\u00d6":4,"\u00d8":4,"\u00d5":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d2":4,"\u014c":4,"\u0150":4,"T":21,"\u0164":21,"U":7,"\u00dc":7,"\u00da":7,"\u00db":7,"\u00d9":7,"\u016a":7,"\u016e":7,"\u0170":7,"\u0172":7,"W":3,"Z":-7,"\u017d":-7,"\u0179":-7,"\u017b":-7,"*":7,"t":-7,"\u0165":-7,"v":2,"w":4,"g":-4,"\u011f":-4,"\u0123":-4,"n":-4,"s":-4,"\u0161":-4,"\u015f":-4,"\u015b":-4,"j":-7,"x":-5,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"h":-4}},"\u00cb":{"d":"211,-258v29,-6,35,24,16,31r-128,12v-16,10,-18,70,-22,84v35,2,86,-12,113,-14v30,-3,26,26,7,30v-11,3,-122,13,-122,19v-5,3,-13,60,-12,69v25,29,101,-7,140,-7v11,0,23,15,14,26v-39,13,-101,14,-157,21v-29,3,-30,-3,-33,-26v15,-48,28,-143,32,-198v-8,-10,-15,-32,6,-32v44,3,96,-5,146,-15xm179,-303v-1,-14,19,-20,32,-15v9,12,2,33,-16,31v-8,-1,-16,-8,-16,-16xm122,-314v21,0,41,33,7,31v-5,1,-20,-4,-19,-9v0,-15,4,-22,12,-22","w":246,"k":{"J":-4,"\u00ed":9,"\u00ec":9,"\u00ee":9,"\u00ef":9,"\u012b":9,"V":-11,"Y":-7,"\u0178":-7,"\u00dd":-7,"W":-4,"t":-4,"\u0165":-4,"w":4,"z":-11,"\u017e":-11,"\u017a":-11,"\u017c":-11}},"\u00cd":{"d":"34,-39v0,-63,17,-144,28,-205v4,-7,23,-21,29,-6v2,5,4,11,4,17v-8,28,-29,128,-29,164v0,28,16,73,-15,75v-17,-3,-17,-21,-17,-45xm149,-375v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":114,"k":{"v":4,"w":4}},"\u00ce":{"d":"93,-340v-12,3,-46,56,-64,60v-7,0,-10,-5,-10,-16v10,-30,43,-41,60,-64v20,-27,30,-8,42,19v12,26,29,27,38,56v0,6,-5,12,-11,12v-19,-7,-40,-52,-55,-67xm34,-39v0,-63,17,-144,28,-205v4,-7,23,-21,29,-6v2,5,4,11,4,17v-8,28,-29,128,-29,164v0,28,16,73,-15,75v-17,-3,-17,-21,-17,-45","w":114,"k":{"v":4,"w":4}},"\u00cf":{"d":"34,-39v0,-63,17,-144,28,-205v4,-7,23,-21,29,-6v2,5,4,11,4,17v-8,28,-29,128,-29,164v0,28,16,73,-15,75v-17,-3,-17,-21,-17,-45xm106,-314v-1,-14,19,-20,32,-15v9,12,2,33,-16,31v-8,-1,-16,-8,-16,-16xm49,-325v21,0,41,33,7,31v-5,1,-20,-4,-19,-9v0,-15,4,-22,12,-22","w":114,"k":{"v":4,"w":4}},"\u00cc":{"d":"34,-39v0,-63,17,-144,28,-205v4,-7,23,-21,29,-6v2,5,4,11,4,17v-8,28,-29,128,-29,164v0,28,16,73,-15,75v-17,-3,-17,-21,-17,-45xm126,-316v11,11,-8,34,-20,18v-17,-23,-69,-53,-78,-75v3,-8,16,-18,26,-6v15,18,56,46,72,63","w":114,"k":{"v":4,"w":4}},"\u00d3":{"d":"170,-257v66,0,110,25,108,94v-2,74,-66,134,-117,162v-18,9,-41,14,-69,14v-37,0,-74,-50,-72,-86v6,-85,63,-184,150,-184xm170,-232v-53,-3,-118,101,-118,157v0,30,23,58,51,58v68,0,142,-84,142,-153v0,-45,-34,-59,-75,-62xm253,-368v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":289,"k":{",":21,".":21,"J":4,"A":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u00c0":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u0100":12,"\u0102":12,"\u0104":12,"a":7,"\u00e6":7,"\u0105":7,"c":5,"\u00e7":5,"\u0107":5,"\u010d":5,"d":5,"\u010f":5,"\u0111":5,"T":-1,"\u0164":-1,"t":-4,"\u0165":-4,"v":-4,"g":5,"\u011f":5,"\u0123":5,"o":4,"\u00f8":4,"\u0153":4,"q":4,"m":4,"p":4,"r":4,"\u0155":4,"\u0157":4,"\u0159":4,"u":4,"\u0173":4,"j":6,"x":7,"y":5,"\u00ff":5,"\u00fd":5,"z":4,"\u017e":4,"\u017a":4,"\u017c":4,"i":6,"\u0131":6,"\u012f":6,"k":4,"\u0137":4,"l":2,"\u0142":2,"\u013a":2,"\u013c":2,"\u013e":2}},"\u00d4":{"d":"194,-343v-12,3,-46,56,-64,60v-31,-28,34,-58,50,-80v20,-28,27,-7,42,19v9,27,30,27,39,56v-1,6,-6,11,-12,12v-18,-7,-40,-53,-55,-67xm170,-257v66,0,110,25,108,94v-2,74,-66,134,-117,162v-18,9,-41,14,-69,14v-37,0,-74,-50,-72,-86v6,-85,63,-184,150,-184xm170,-232v-53,-3,-118,101,-118,157v0,30,23,58,51,58v68,0,142,-84,142,-153v0,-45,-34,-59,-75,-62","w":289,"k":{",":21,".":21,"J":4,"A":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u00c0":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u0100":12,"\u0102":12,"\u0104":12,"a":7,"\u00e6":7,"\u0105":7,"c":5,"\u00e7":5,"\u0107":5,"\u010d":5,"d":5,"\u010f":5,"\u0111":5,"T":-1,"\u0164":-1,"t":-4,"\u0165":-4,"v":-4,"g":5,"\u011f":5,"\u0123":5,"o":4,"\u00f8":4,"\u0153":4,"q":4,"m":4,"p":4,"r":4,"\u0155":4,"\u0157":4,"\u0159":4,"u":4,"\u0173":4,"j":6,"x":7,"y":5,"\u00ff":5,"\u00fd":5,"z":4,"\u017e":4,"\u017a":4,"\u017c":4,"i":6,"\u0131":6,"\u012f":6,"k":4,"\u0137":4,"l":2,"\u0142":2,"\u013a":2,"\u013c":2,"\u013e":2}},"\u00d2":{"d":"170,-257v66,0,110,25,108,94v-2,74,-66,134,-117,162v-18,9,-41,14,-69,14v-37,0,-74,-50,-72,-86v6,-85,63,-184,150,-184xm170,-232v-53,-3,-118,101,-118,157v0,30,23,58,51,58v68,0,142,-84,142,-153v0,-45,-34,-59,-75,-62xm213,-312v11,11,-8,34,-20,18v-17,-23,-69,-53,-78,-75v3,-8,16,-18,26,-6v15,18,56,46,72,63","w":289,"k":{",":21,".":21,"J":4,"A":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u00c0":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u0100":12,"\u0102":12,"\u0104":12,"a":7,"\u00e6":7,"\u0105":7,"c":5,"\u00e7":5,"\u0107":5,"\u010d":5,"d":5,"\u010f":5,"\u0111":5,"T":-1,"\u0164":-1,"t":-4,"\u0165":-4,"v":-4,"g":5,"\u011f":5,"\u0123":5,"o":4,"\u00f8":4,"\u0153":4,"q":4,"m":4,"p":4,"r":4,"\u0155":4,"\u0157":4,"\u0159":4,"u":4,"\u0173":4,"j":6,"x":7,"y":5,"\u00ff":5,"\u00fd":5,"z":4,"\u017e":4,"\u017a":4,"\u017c":4,"i":6,"\u0131":6,"\u012f":6,"k":4,"\u0137":4,"l":2,"\u0142":2,"\u013a":2,"\u013c":2,"\u013e":2}},"\u00da":{"d":"62,-102v0,96,115,111,146,42v23,-30,1,-191,45,-191v8,0,12,7,12,20v0,112,-3,248,-140,243v-80,-3,-112,-87,-85,-179v7,-28,4,-65,20,-85v11,-14,24,7,24,17v-7,21,-22,100,-22,133xm238,-367v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":278,"k":{"A":3,"\u00c4":3,"\u00c5":3,"\u00c6":3,"\u00c0":3,"\u00c3":3,"\u00c2":3,"\u00c1":3,"\u0100":3,"\u0102":3,"\u0104":3,"a":4,"\u00e6":4,"\u0105":4,"d":4,"\u010f":4,"\u0111":4,"e":2,"\u0119":2,"v":-2,"w":2,"g":5,"\u011f":5,"\u0123":5,"m":2,"p":2,"x":2}},"\u00db":{"d":"177,-350v-12,4,-46,57,-64,61v-10,2,-14,-21,-7,-27v24,-20,49,-52,75,-67v18,9,30,53,47,65v15,11,22,29,4,36v-18,-7,-42,-51,-55,-68xm62,-102v0,96,115,111,146,42v23,-30,1,-191,45,-191v8,0,12,7,12,20v0,112,-3,248,-140,243v-80,-3,-112,-87,-85,-179v7,-28,4,-65,20,-85v11,-14,24,7,24,17v-7,21,-22,100,-22,133","w":278,"k":{"A":3,"\u00c4":3,"\u00c5":3,"\u00c6":3,"\u00c0":3,"\u00c3":3,"\u00c2":3,"\u00c1":3,"\u0100":3,"\u0102":3,"\u0104":3,"a":4,"\u00e6":4,"\u0105":4,"d":4,"\u010f":4,"\u0111":4,"e":2,"\u0119":2,"v":-2,"w":2,"g":5,"\u011f":5,"\u0123":5,"m":2,"p":2,"x":2}},"\u00d9":{"d":"62,-102v0,96,115,111,146,42v23,-30,1,-191,45,-191v8,0,12,7,12,20v0,112,-3,248,-140,243v-80,-3,-112,-87,-85,-179v7,-28,4,-65,20,-85v11,-14,24,7,24,17v-7,21,-22,100,-22,133xm187,-310v11,11,-8,34,-20,18v-17,-23,-69,-53,-78,-75v3,-8,16,-18,26,-6v15,18,56,46,72,63","w":278,"k":{"A":3,"\u00c4":3,"\u00c5":3,"\u00c6":3,"\u00c0":3,"\u00c3":3,"\u00c2":3,"\u00c1":3,"\u0100":3,"\u0102":3,"\u0104":3,"a":4,"\u00e6":4,"\u0105":4,"d":4,"\u010f":4,"\u0111":4,"e":2,"\u0119":2,"v":-2,"w":2,"g":5,"\u011f":5,"\u0123":5,"m":2,"p":2,"x":2}},"\u0131":{"d":"79,-167v-15,62,-29,97,-18,163v-11,21,-35,17,-35,-18v0,-20,14,-95,18,-132v-6,-26,31,-37,35,-13","w":104},"\u00b8":{"d":"44,102v-12,-2,-35,-7,-35,-21v1,-26,28,-2,38,-1v21,2,29,-5,30,-22v2,-29,-40,1,-42,-21r18,-46v4,-10,21,-4,19,7v-2,10,-15,28,7,28v22,0,28,14,28,38v-4,18,-33,43,-63,38","w":111},"\u0141":{"d":"173,-182v13,0,19,10,20,18v-23,19,-86,31,-121,48v-5,43,-9,69,-9,76v0,8,2,9,9,10v31,-6,92,-16,138,-16v7,0,16,7,15,15v-1,25,-32,22,-56,20v-43,-3,-86,12,-127,21v-31,-11,-7,-49,-6,-82v0,0,1,-12,4,-33v-25,23,-48,-11,-21,-20r25,-11r10,-103v-1,-22,38,-24,35,-2r-13,93v26,-9,74,-34,97,-34","w":226,"k":{"J":-14,"A":-14,"\u00c4":-14,"\u00c5":-14,"\u00c6":-14,"\u00c0":-14,"\u00c3":-14,"\u00c2":-14,"\u00c1":-14,"\u0100":-14,"\u0102":-14,"\u0104":-14,"V":7,"Y":11,"\u0178":11,"\u00dd":11,"a":-7,"\u00e6":-7,"\u0105":-7,"c":-7,"\u00e7":-7,"\u0107":-7,"\u010d":-7,"d":-7,"\u010f":-7,"\u0111":-7,"e":-7,"\u0119":-7,"T":14,"\u0164":14,"U":-7,"\u00dc":-7,"\u00da":-7,"\u00db":-7,"\u00d9":-7,"\u016a":-7,"\u016e":-7,"\u0170":-7,"\u0172":-7,"v":-2,"g":-7,"\u011f":-7,"\u0123":-7,"Q":-4,"o":-7,"\u00f8":-7,"\u0153":-7,"q":-7,"n":-7,"p":-4,"r":-4,"\u0155":-4,"\u0157":-4,"\u0159":-4,"s":-7,"\u0161":-7,"\u015f":-7,"\u015b":-7,"u":-4,"\u0173":-4,"j":-7,"x":-8,"y":-4,"\u00ff":-4,"\u00fd":-4,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"i":-4,"\u0131":-4,"\u012f":-4,"h":-7,"b":-7,"\u00fe":-7,"k":-4,"\u0137":-4}},"\u0142":{"d":"88,-180v32,-10,71,-37,78,0v-12,15,-60,18,-84,33v-8,55,-9,89,-2,139v1,11,-9,23,-19,22v-17,-2,-15,-24,-16,-49v0,-29,2,-63,7,-102v-16,6,-46,29,-54,5v2,-25,44,-26,59,-36v7,-50,14,-84,20,-102v6,-18,13,-28,21,-28v8,0,13,6,13,17v0,12,-18,72,-23,101","w":139},"\u0160":{"d":"204,-366v19,9,11,21,-10,37v-23,17,-40,73,-66,31v-23,-38,-36,-48,-45,-68v5,-20,26,-10,33,6v15,17,18,33,33,49v11,-18,39,-47,55,-55xm156,-258v37,0,73,14,59,50v-3,8,-8,12,-18,12v0,-31,-16,-33,-43,-34v-40,-1,-98,18,-98,50v0,64,150,39,153,108v-9,52,-89,86,-150,87v-21,0,-40,-3,-43,-17v-1,-6,5,-21,10,-21v52,24,139,-9,152,-47v-10,-23,-28,-19,-69,-35v-55,-21,-79,-25,-83,-72v-4,-51,76,-81,130,-81","w":229,"k":{"a":4,"\u00e6":4,"\u0105":4,"t":-7,"\u0165":-7,"w":5,"o":2,"\u00f8":2,"\u0153":2,"m":2,"n":-2}},"\u0161":{"d":"165,-306v19,10,12,21,-10,37v-24,17,-40,74,-66,32v-23,-38,-35,-50,-45,-68v4,-19,26,-12,33,5v11,16,20,36,33,49v12,-17,40,-47,55,-55xm4,-8v10,-27,53,0,80,-16v15,-4,24,-10,28,-16v-10,-32,-89,-41,-89,-80v0,-41,60,-77,92,-81v28,-3,36,30,15,35v-19,-17,-77,16,-77,37v0,41,84,35,87,83v2,38,-71,57,-108,57v-19,0,-28,-6,-28,-19","w":152},"\u017d":{"d":"194,-353v18,-17,23,-22,32,-4v-4,16,-52,51,-59,69v-11,8,-19,4,-28,-12v-22,-39,-35,-50,-45,-68v-3,-12,16,-13,22,-9v15,20,28,42,43,63v12,-12,22,-27,35,-39xm52,-246v61,12,144,-1,205,-8v11,2,12,27,-2,29v-41,40,-91,100,-126,135r-53,53v0,2,2,4,5,4r125,-8v31,0,46,6,46,20v-2,34,-46,5,-70,11v-56,2,-122,4,-164,18v-16,1,-13,-26,-4,-31v38,-26,171,-157,196,-195v-42,-2,-92,8,-133,8v-34,0,-49,-24,-25,-36","w":275,"k":{"a":-4,"\u00e6":-4,"\u0105":-4,"c":-2,"\u00e7":-2,"\u0107":-2,"\u010d":-2,"d":-4,"\u010f":-4,"\u0111":-4,"t":-4,"\u0165":-4,"v":7,"w":11,"g":-4,"\u011f":-4,"\u0123":-4,"o":11,"\u00f8":11,"\u0153":11,"q":7,"m":6,"n":4,"p":7,"r":11,"\u0155":11,"\u0157":11,"\u0159":11,"u":7,"\u0173":7,"f":7,"j":11,"\u00bb":-21,"y":4,"\u00ff":4,"\u00fd":4,"z":-11,"\u017e":-11,"\u017a":-11,"\u017c":-11,"i":9,"\u0131":9,"\u012f":9,"h":7,"b":11,"\u00fe":11,"k":7,"\u0137":7,"l":7,"\u0142":7,"\u013a":7,"\u013c":7,"\u013e":7}},"\u017e":{"d":"163,-287v19,9,11,21,-10,37v-23,17,-40,73,-66,31v-23,-39,-36,-48,-45,-68v5,-20,26,-10,33,6v15,17,18,32,32,49v13,-17,39,-48,56,-55xm55,-30v15,5,78,-17,91,-12v33,-3,40,22,27,40v-34,-23,-123,-8,-151,12v-9,12,-35,11,-38,-4r23,-24v53,-54,93,-98,121,-133v-29,-7,-104,22,-110,-14v2,-26,30,-7,50,-9v30,3,70,-13,98,-5v4,2,6,6,5,11v-3,10,-34,48,-93,111v-14,15,-22,24,-23,27","w":180},"\u00a6":{"d":"70,-146v2,18,-23,21,-23,5r0,-198v0,-13,2,-19,8,-19v8,-1,17,8,16,16xm42,168r2,-204v0,-13,5,-19,14,-19v8,0,12,6,12,18r-2,159v-4,38,8,51,-14,56v-6,1,-11,-7,-12,-10","w":116},"\u00d0":{"d":"28,-2v15,-28,8,-63,16,-108v-25,15,-46,-12,-23,-26v6,-3,18,-6,27,-8r10,-68v1,-12,-25,-9,-22,-21v0,-18,20,-21,42,-19v18,1,70,-4,87,-4v62,0,111,39,108,99v-3,83,-77,133,-162,149v-39,7,-67,45,-83,6xm243,-158v-2,-72,-81,-81,-153,-66v-2,11,-6,36,-12,75v21,-3,39,-4,54,-4v28,0,44,8,31,27v-23,12,-53,-6,-89,6v-4,26,-5,59,-5,73v0,10,-3,20,8,19v63,-9,169,-50,166,-130","w":285,"k":{",":28,".":28,"J":4,"A":14,"\u00c4":14,"\u00c5":14,"\u00c6":14,"\u00c0":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u0100":14,"\u0102":14,"\u0104":14,"d":7,"\u010f":7,"\u0111":7,"t":-7,"\u0165":-7,"v":-4,"m":4,"x":7,"y":4,"\u00ff":4,"\u00fd":4}},"\u00f0":{"d":"118,-227v32,27,81,130,30,176v-24,22,-83,75,-117,30v-52,-69,10,-156,87,-159v-6,-8,-17,-28,-24,-34v-17,0,-33,23,-53,27v-5,0,-8,-8,-8,-13v-1,-7,55,-24,30,-33v-16,-6,-23,-13,-23,-15v0,-7,14,-18,21,-18v5,-3,31,19,40,23v15,1,37,-31,49,-29v5,0,8,4,8,12v0,18,-35,20,-40,33xm71,-33v28,-5,71,-46,71,-70v0,-18,-7,-52,-15,-57v-33,4,-87,34,-87,71v0,33,12,51,31,56","w":181},"\u00dd":{"d":"115,10v-36,-15,12,-100,-5,-133v-21,-20,-53,-77,-82,-94v-21,-12,-33,-34,-8,-42v41,7,97,106,114,112r22,-24v39,-40,62,-66,70,-78v12,-19,35,-29,39,-4v-9,29,-89,91,-115,132v-12,19,-13,101,-19,126v-1,2,-12,6,-16,5xm211,-377v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":241,"k":{"C":11,"\u00c7":11,"\u0106":11,"\u010c":11,"J":18,"A":16,"\u00c4":16,"\u00c5":16,"\u00c6":16,"\u00c0":16,"\u00c3":16,"\u00c2":16,"\u00c1":16,"\u0100":16,"\u0102":16,"\u0104":16,"V":-11,"G":12,"\u011e":12,"\u0122":12,"a":18,"\u00e6":18,"\u0105":18,"c":21,"\u00e7":21,"\u0107":21,"\u010d":21,"d":18,"\u010f":18,"\u0111":18,"e":18,"\u0119":18,"O":6,"\u00d6":6,"\u00d8":6,"\u00d5":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d2":6,"\u014c":6,"\u0150":6,"W":-7,"v":11,"w":14,"g":21,"\u011f":21,"\u0123":21,"Q":6,"o":21,"\u00f8":21,"\u0153":21,"q":14,"m":11,"n":11,"p":7,"r":7,"\u0155":7,"\u0157":7,"\u0159":7,"s":11,"\u0161":11,"\u015f":11,"\u015b":11,"u":14,"\u0173":14,"f":7,"B":-5,"x":14,"y":21,"\u00ff":21,"\u00fd":21,"z":7,"\u017e":7,"\u017a":7,"\u017c":7}},"\u00fd":{"d":"90,82v42,0,64,-96,63,-144v-32,27,-58,47,-94,54v-67,-6,-23,-130,-9,-163v9,-12,32,-8,29,12v-11,27,-26,49,-27,87v0,8,4,34,15,31v51,-15,92,-35,92,-111v0,-23,6,-35,17,-35v14,1,15,8,15,24v0,87,-16,180,-46,239v-30,60,-129,25,-142,-16v0,-8,8,-24,15,-14v16,23,39,36,72,36xm194,-283v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":212},"\u00de":{"d":"61,-229v6,-25,-5,-56,22,-57v26,-2,15,24,12,41v3,16,33,5,48,7v52,10,139,16,143,73v3,41,-98,89,-137,90v-13,7,-98,8,-83,50v0,0,10,45,-12,40v-38,-8,-14,-68,-13,-103v9,-39,8,-94,20,-141xm82,-86v71,-10,146,-24,174,-76v-2,-34,-111,-49,-151,-49v-16,0,-19,15,-20,24v2,15,-16,75,-16,89v0,8,2,13,13,12","w":284,"k":{",":35,".":35,"J":26,"A":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u00c0":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u0100":12,"\u0102":12,"\u0104":12,"Y":-18,"\u0178":-18,"\u00dd":-18,"G":3,"\u011e":3,"\u0122":3,"a":8,"\u00e6":8,"\u0105":8,"\u00e1":10,"\u00e0":10,"\u00e2":10,"\u00e4":10,"\u00e3":10,"\u00e5":10,"\u0101":10,"\u0103":10,"c":6,"\u00e7":6,"\u0107":6,"\u010d":6,"d":6,"\u010f":6,"\u0111":6,"e":5,"\u0119":5,"W":-11,"t":-9,"\u0165":-9,"v":-4,"w":4,"g":11,"\u011f":11,"\u0123":11,"\u00e9":5,"\u00e8":5,"\u00ea":5,"\u00eb":5,"\u0113":5,"\u0117":5,"\u011b":5,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f2":9,"\u00f4":9,"\u00f6":9,"\u00f5":9,"\u014d":9,"\u0151":9,"q":11,"m":7,"n":4,"p":5,"r":11,"\u0155":11,"\u0157":11,"\u0159":11,"s":11,"\u0161":11,"\u015f":11,"\u015b":11,"u":11,"\u0173":11,"j":4,"x":7,"y":14,"\u00ff":14,"\u00fd":14,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"i":4,"\u0131":4,"\u012f":4,"l":4,"\u0142":4,"\u013a":4,"\u013c":4,"\u013e":4}},"\u00fe":{"d":"216,-147v0,67,-71,151,-130,151v-13,0,-23,-8,-31,-24v-14,24,-3,128,-35,143v-17,-4,-22,-18,-15,-42v30,-106,44,-213,44,-333v0,-10,13,-20,22,-20v13,0,11,18,11,34v0,40,-14,118,-22,160v33,-77,71,-115,114,-115v24,-1,42,21,42,46xm185,-135v-1,-14,-7,-25,-19,-27v-30,-4,-97,91,-97,119v0,9,14,18,25,18v34,0,95,-70,91,-110","w":232},"\u00d7":{"d":"178,-25v-6,20,-22,8,-35,-7r-38,-45v-21,20,-37,45,-62,61v-4,0,-12,-8,-12,-12v13,-20,45,-45,59,-64v-4,-13,-49,-41,-55,-61v0,-8,5,-11,12,-12v27,13,34,37,58,59v17,-9,41,-54,61,-57v6,-1,10,4,11,8v1,19,-62,58,-56,62v10,14,48,50,57,68","w":205},"\u00b9":{"d":"68,-191v-8,27,5,72,-20,77v-5,0,-14,-4,-13,-10v6,-44,4,-133,40,-146v15,11,2,19,-1,41","w":107},"\u00b2":{"d":"95,-230v-12,-10,-45,10,-54,19v-13,-2,-14,-28,2,-30v17,-9,93,-33,72,19v-14,34,-45,50,-68,89v16,3,68,-15,96,-17v8,0,15,8,14,17v0,13,-17,15,-29,10v-19,-3,-76,19,-105,23v-8,1,-16,-5,-16,-13v-10,-8,71,-75,88,-117","w":158},"\u00b3":{"d":"54,-197v14,6,56,-27,45,-37v-24,-11,-58,39,-72,5v3,-14,22,-11,40,-19v23,-10,57,-17,59,10v8,14,-35,39,-30,44v14,-12,41,-1,40,17v-3,42,-72,74,-117,76v-18,-8,-11,-33,14,-30v26,4,73,-20,80,-41v-12,-22,-68,21,-72,-10v-1,-4,8,-18,13,-15","w":139},"\u00bd":{"d":"57,-144v-1,3,0,19,-14,16v-27,-5,-3,-51,0,-73v2,-19,20,-90,34,-49v0,31,-21,81,-20,106xm49,-12v-8,12,-25,13,-26,-2v34,-74,117,-152,159,-220v5,-6,21,-15,22,-1v-26,73,-105,132,-139,194v-6,13,-11,23,-16,29xm241,-107v-29,-16,-79,32,-87,-2v-3,-13,73,-25,85,-24v34,5,32,39,6,64v-15,14,-30,25,-48,31v-14,4,-20,9,-20,13v36,-2,72,-10,108,-9v14,-1,25,31,4,28v-44,-6,-108,1,-151,7v-24,-6,-20,-22,7,-36v37,-19,79,-33,96,-72","w":307},"\u00bc":{"d":"57,-275v15,1,15,17,11,33v-4,15,-12,72,-13,89v-1,14,-6,20,-12,20v-8,0,-16,-14,-15,-22r15,-89v-1,-8,6,-32,14,-31xm46,20v-25,-6,-3,-30,4,-50v14,-37,87,-139,109,-194v14,-35,31,-51,44,-51v21,9,15,16,-6,39v-29,32,-30,64,-58,104v-30,44,-48,72,-69,121v-9,20,-17,31,-24,31xm215,-40v-18,-13,-65,22,-70,-7v8,-23,78,-83,92,-102v3,-5,16,-2,16,3v2,13,-12,64,-11,75v10,10,53,-3,53,12v0,23,-50,3,-57,19v-4,24,12,60,-11,64v-19,-4,-10,-42,-12,-64xm218,-64v1,-5,9,-38,4,-40v-19,19,-40,31,-38,45v20,-1,31,-3,34,-5","w":298},"\u00be":{"d":"70,7v-6,0,-12,-8,-12,-14v3,-30,86,-140,111,-188v22,-23,58,-82,80,-93v4,0,6,3,6,10v-26,47,-96,135,-127,188v-22,38,-28,38,-41,73v-6,16,-11,24,-17,24xm38,-151v0,-8,71,-34,69,-45v-15,-7,-58,10,-59,-12v-6,-11,75,-34,52,-43v-26,-2,-52,10,-76,15v-5,0,-11,-6,-10,-12v9,-13,51,-22,80,-21v25,0,37,5,37,15v0,17,-29,33,-41,38v10,5,39,0,38,16v-4,32,-52,47,-78,63v-5,0,-13,-9,-12,-14xm271,-99v7,5,29,-14,29,9v0,8,-15,11,-24,12v-23,-5,-8,79,-27,82v-27,-6,-8,-47,-6,-70v0,-4,-1,-6,-4,-6v-20,0,-39,10,-52,17v-8,0,-12,-6,-12,-13v-4,-4,68,-95,73,-89v14,-1,9,-29,28,-23v20,6,-4,22,-1,41xm216,-88v17,-5,37,-3,37,-27v0,-10,0,-16,1,-20v-20,19,-33,35,-38,47","w":315},"\u00a4":{"d":"249,-238v4,5,-34,38,-39,54v14,31,11,87,-12,116v7,12,11,26,25,32v17,12,20,24,2,39v-23,-5,-37,-41,-59,-49v-24,7,-53,11,-77,-2v-16,-9,-69,76,-77,26v5,-22,49,-27,51,-52v-17,-28,-20,-82,2,-106v-3,-24,-31,-37,-38,-54v24,-35,42,20,58,37v29,-25,60,-24,101,-6v13,-6,49,-75,63,-35xm187,-141v2,-42,-26,-46,-59,-50v-26,-2,-47,44,-47,68v0,36,24,49,49,55v43,0,55,-26,57,-73"},"\u00ad":{"d":"204,-88v-35,-7,-82,-6,-123,-3v-14,1,-23,-5,-17,-17v29,-15,92,-1,126,-10v7,2,31,6,28,18v1,10,-4,12,-14,12","w":230},"\u00af":{"d":"161,-317v0,19,-33,6,-48,6r-113,3v-7,0,-11,-4,-11,-12v17,-26,83,-3,125,-13v17,5,47,-6,47,16","w":150},"\u00b7":{"d":"55,-137v11,2,23,38,4,40v-14,5,-31,-6,-34,-15v5,-11,9,-29,30,-25","w":92},"\u011e":{"d":"290,-350v-9,26,-38,50,-73,50v-26,0,-80,-50,-46,-71v14,14,22,47,49,47v28,0,43,-27,61,-41v3,0,9,13,9,15xm213,40v-40,-3,-13,-50,-11,-92v-43,34,-82,51,-117,51v-40,1,-64,-25,-64,-66v0,-93,106,-203,195,-203v22,0,43,8,44,25v1,10,-11,35,-21,34v-13,-8,-13,-31,-37,-28v-74,11,-150,87,-150,169v0,73,94,30,126,6v29,-23,35,-28,40,-67v1,-8,8,-13,19,-13v12,0,17,4,17,11v-13,45,-37,99,-25,155v0,7,-7,19,-16,18","w":279,"k":{"V":-7,"T":-7,"\u0164":-7}},"\u011f":{"d":"220,-265v-9,26,-38,50,-73,50v-26,0,-80,-50,-46,-71v14,14,22,47,49,47v28,0,44,-26,61,-41v4,-1,9,12,9,15xm-13,45v42,22,107,69,137,7v11,-23,19,-74,24,-116v-21,18,-58,58,-99,58v-22,0,-35,-15,-34,-37v4,-70,75,-138,143,-144v21,-2,37,13,39,32v-39,88,-3,256,-119,267v-34,3,-95,-36,-97,-59v0,-6,2,-8,6,-8xm59,-34v46,0,103,-61,103,-107v0,-13,-5,-19,-15,-19v-47,0,-102,65,-102,111v0,8,6,15,14,15","w":206},"\u015e":{"d":"107,25v33,2,53,47,19,67v-22,21,-95,3,-63,-21v15,11,53,16,55,-11v1,-30,-36,1,-40,-20v2,-9,12,-22,9,-28v-32,12,-76,16,-58,-21v49,3,133,-27,139,-60v-36,-48,-152,-30,-152,-114v0,-41,81,-73,127,-73v38,0,77,13,62,50v-3,8,-9,12,-19,12v5,-26,-17,-33,-38,-34v-43,-2,-98,17,-103,47v15,68,146,39,154,111v-8,37,-43,58,-86,74v-2,6,-5,11,-6,21","w":229,"k":{"a":4,"\u00e6":4,"\u0105":4,"t":-7,"\u0165":-7,"w":5,"o":2,"\u00f8":2,"\u0153":2,"m":2,"n":-2}},"\u015f":{"d":"53,-129v0,41,87,35,87,83v0,24,-23,42,-68,52v-4,7,-7,23,10,20v22,1,28,14,28,38v0,18,-32,38,-62,38v-21,0,-52,-23,-24,-35v7,0,21,15,26,13v22,0,30,-5,31,-22v1,-28,-41,1,-43,-21v5,-13,9,-21,11,-27v-21,3,-47,1,-45,-18v1,-16,24,-13,38,-10v22,1,63,-9,70,-22v-10,-32,-89,-41,-89,-80v0,-41,60,-77,92,-81v28,-3,36,30,15,35v-19,-17,-77,16,-77,37","w":152},"\u0106":{"d":"108,-12v34,0,78,-29,99,-41v5,0,7,2,7,8v-13,30,-67,62,-112,61v-44,0,-82,-32,-82,-80v0,-84,104,-210,180,-206v52,-8,64,85,18,91v-28,-6,16,-64,-19,-66v-71,11,-142,98,-146,177v-2,32,21,56,55,56xm273,-374v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":251,"k":{")":-18,"]":-18,"}":-18,"\u00ab":-11,"?":-18,"A":4,"\u00c4":4,"\u00c5":4,"\u00c6":4,"\u00c0":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u0100":4,"\u0102":4,"\u0104":4,"a":7,"\u00e6":7,"\u0105":7,"c":4,"\u00e7":4,"\u0107":4,"\u010d":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u0119":4,"w":4,"g":4,"\u011f":4,"\u0123":4,"o":7,"\u00f8":7,"\u0153":7,"p":4,"i":4,"\u0131":4,"\u012f":4}},"\u0107":{"d":"165,-44v-1,21,-64,54,-94,54v-36,0,-52,-22,-54,-57v-3,-51,60,-148,104,-148v28,0,51,61,21,73v-14,6,-15,-47,-28,-43v-24,-1,-72,88,-68,117v10,61,82,14,113,-3v4,0,6,2,6,7xm184,-294v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":182},"\u010c":{"d":"259,-377v19,10,12,21,-10,37v-23,17,-40,73,-65,31v-23,-39,-35,-49,-46,-68v5,-20,26,-10,33,6v11,16,20,36,33,49v12,-17,39,-48,55,-55xm108,-12v34,0,78,-29,99,-41v5,0,7,2,7,8v-13,30,-67,62,-112,61v-44,0,-82,-32,-82,-80v0,-84,104,-210,180,-206v52,-8,64,85,18,91v-28,-6,16,-64,-19,-66v-71,11,-142,98,-146,177v-2,32,21,56,55,56","w":251,"k":{")":-18,"]":-18,"}":-18,"\u00ab":-11,"?":-18,"A":4,"\u00c4":4,"\u00c5":4,"\u00c6":4,"\u00c0":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u0100":4,"\u0102":4,"\u0104":4,"a":7,"\u00e6":7,"\u0105":7,"c":4,"\u00e7":4,"\u0107":4,"\u010d":4,"d":4,"\u010f":4,"\u0111":4,"e":4,"\u0119":4,"w":4,"g":4,"\u011f":4,"\u0123":4,"o":7,"\u00f8":7,"\u0153":7,"p":4,"i":4,"\u0131":4,"\u012f":4}},"\u010d":{"d":"176,-296v25,12,-5,33,-20,47v-21,20,-33,59,-56,22v-23,-39,-35,-49,-46,-68v5,-20,26,-10,33,6v15,17,18,32,33,48v12,-17,40,-47,56,-55xm165,-44v-1,21,-64,54,-94,54v-36,0,-52,-22,-54,-57v-3,-51,60,-148,104,-148v28,0,51,61,21,73v-14,6,-15,-47,-28,-43v-24,-1,-72,88,-68,117v10,61,82,14,113,-3v4,0,6,2,6,7","w":182},"\u0100":{"d":"108,-298v12,-24,56,-18,92,-18v8,0,11,4,11,12v-9,25,-64,6,-91,20v-8,0,-11,-6,-12,-14xm153,-258v23,-3,15,19,19,34v7,30,17,44,26,72v19,58,41,107,74,141v9,9,-3,26,-15,26v-15,0,-34,-24,-55,-71v-9,-19,-13,-28,-15,-28v-27,1,-80,15,-104,21v-4,1,-8,-3,-11,-5v-19,11,-34,77,-56,75v-14,-2,-25,-19,-11,-32v6,-10,4,-9,25,-38v36,-49,85,-151,107,-182v7,-9,12,-13,16,-13xm85,-94v19,-5,92,-17,96,-18r-35,-100","w":279,"k":{"C":4,"\u00c7":4,"\u0106":4,"\u010c":4,",":-8,".":-8,":":-11,";":-11,"V":12,"Y":14,"\u0178":14,"\u00dd":14,"a":-4,"\u00e6":-4,"\u0105":-4,"c":-4,"\u00e7":-4,"\u0107":-4,"\u010d":-4,"d":-4,"\u010f":-4,"\u0111":-4,"e":-4,"\u0119":-4,"O":4,"\u00d6":4,"\u00d8":4,"\u00d5":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d2":4,"\u014c":4,"\u0150":4,"T":21,"\u0164":21,"U":7,"\u00dc":7,"\u00da":7,"\u00db":7,"\u00d9":7,"\u016a":7,"\u016e":7,"\u0170":7,"\u0172":7,"W":3,"Z":-7,"\u017d":-7,"\u0179":-7,"\u017b":-7,"*":7,"t":-7,"\u0165":-7,"v":2,"w":4,"g":-4,"\u011f":-4,"\u0123":-4,"n":-4,"s":-4,"\u0161":-4,"\u015f":-4,"\u015b":-4,"j":-7,"x":-5,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"h":-4}},"\u0101":{"d":"88,-228v10,-25,58,-12,92,-19v7,1,11,5,11,13v-3,20,-35,11,-58,13v-16,2,-43,17,-45,-7xm173,8v-24,-5,-31,-37,-31,-72v-25,33,-51,63,-93,66v-19,1,-33,-20,-33,-41v0,-54,71,-157,123,-153v14,-3,19,18,29,23v9,0,14,4,14,11v-5,56,-25,112,5,139v5,3,8,6,8,10v0,8,-14,18,-22,17xm60,-27v26,1,88,-77,88,-111v0,-17,-6,-25,-17,-25v-28,0,-85,85,-85,116v0,13,5,20,14,20","w":211},"\u0102":{"d":"227,-333v-8,28,-38,51,-72,51v-23,0,-56,-33,-58,-55v-1,-5,6,-17,12,-16v13,15,23,46,49,46v27,0,43,-25,60,-40v4,-1,9,11,9,14xm153,-258v23,-3,15,19,19,34v7,30,17,44,26,72v19,58,41,107,74,141v9,9,-3,26,-15,26v-15,0,-34,-24,-55,-71v-9,-19,-13,-28,-15,-28v-27,1,-80,15,-104,21v-4,1,-8,-3,-11,-5v-19,11,-34,77,-56,75v-14,-2,-25,-19,-11,-32v6,-10,4,-9,25,-38v36,-49,85,-151,107,-182v7,-9,12,-13,16,-13xm85,-94v19,-5,92,-17,96,-18r-35,-100","w":279,"k":{"C":4,"\u00c7":4,"\u0106":4,"\u010c":4,",":-8,".":-8,":":-11,";":-11,"V":12,"Y":14,"\u0178":14,"\u00dd":14,"a":-4,"\u00e6":-4,"\u0105":-4,"c":-4,"\u00e7":-4,"\u0107":-4,"\u010d":-4,"d":-4,"\u010f":-4,"\u0111":-4,"e":-4,"\u0119":-4,"O":4,"\u00d6":4,"\u00d8":4,"\u00d5":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d2":4,"\u014c":4,"\u0150":4,"T":21,"\u0164":21,"U":7,"\u00dc":7,"\u00da":7,"\u00db":7,"\u00d9":7,"\u016a":7,"\u016e":7,"\u0170":7,"\u0172":7,"W":3,"Z":-7,"\u017d":-7,"\u0179":-7,"\u017b":-7,"*":7,"t":-7,"\u0165":-7,"v":2,"w":4,"g":-4,"\u011f":-4,"\u0123":-4,"n":-4,"s":-4,"\u0161":-4,"\u015f":-4,"\u015b":-4,"j":-7,"x":-5,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"h":-4}},"\u0103":{"d":"204,-262v-9,26,-37,50,-72,50v-23,0,-57,-32,-59,-54v-1,-8,12,-25,18,-11v7,18,22,40,44,41v27,2,44,-25,60,-41v4,-1,9,12,9,15xm173,8v-24,-5,-31,-37,-31,-72v-25,33,-51,63,-93,66v-19,1,-33,-20,-33,-41v0,-54,71,-157,123,-153v14,-3,19,18,29,23v9,0,14,4,14,11v-5,56,-25,112,5,139v5,3,8,6,8,10v0,8,-14,18,-22,17xm60,-27v26,1,88,-77,88,-111v0,-17,-6,-25,-17,-25v-28,0,-85,85,-85,116v0,13,5,20,14,20","w":211},"\u0104":{"d":"240,94v-58,-3,-47,-67,-1,-89v-13,-6,-41,-73,-52,-89v-27,1,-80,15,-104,21v-4,1,-8,-3,-11,-5v-19,11,-34,77,-56,75v-14,-2,-25,-19,-11,-32v6,-10,4,-9,25,-38v36,-49,85,-151,107,-182v7,-9,12,-13,16,-13v23,-3,15,19,19,34v7,30,17,44,26,72v19,58,40,108,74,141v7,15,-2,23,-16,30v-22,11,-31,24,-31,37v-1,21,35,14,48,9v3,0,5,2,5,6v-2,17,-11,24,-38,23xm85,-94v19,-5,92,-17,96,-18r-35,-100","w":279,"k":{"C":4,"\u00c7":4,"\u0106":4,"\u010c":4,",":-8,".":-8,":":-11,";":-11,"V":12,"Y":14,"\u0178":14,"\u00dd":14,"a":-4,"\u00e6":-4,"\u0105":-4,"c":-4,"\u00e7":-4,"\u0107":-4,"\u010d":-4,"d":-4,"\u010f":-4,"\u0111":-4,"e":-4,"\u0119":-4,"O":4,"\u00d6":4,"\u00d8":4,"\u00d5":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d2":4,"\u014c":4,"\u0150":4,"T":21,"\u0164":21,"U":7,"\u00dc":7,"\u00da":7,"\u00db":7,"\u00d9":7,"\u016a":7,"\u016e":7,"\u0170":7,"\u0172":7,"W":3,"Z":-7,"\u017d":-7,"\u0179":-7,"\u017b":-7,"*":7,"t":-7,"\u0165":-7,"v":2,"w":4,"g":-4,"\u011f":-4,"\u0123":-4,"n":-4,"s":-4,"\u0161":-4,"\u015f":-4,"\u015b":-4,"j":-7,"x":-5,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"h":-4}},"\u0105":{"d":"161,91v-62,-3,-50,-66,-3,-90v-11,-12,-16,-34,-16,-65v-25,33,-51,63,-93,66v-19,1,-33,-20,-33,-41v0,-54,71,-157,123,-153v14,-3,19,18,29,23v9,0,14,4,14,11v-6,61,-27,121,13,146v3,33,-52,31,-52,66v0,22,33,13,48,9v3,0,5,1,5,5v-2,16,-12,23,-35,23xm60,-27v26,1,88,-77,88,-111v0,-17,-6,-25,-17,-25v-28,0,-85,85,-85,116v0,13,5,20,14,20","w":211},"\u010e":{"d":"211,-346v17,-16,25,-23,31,-4v0,5,-6,14,-20,26v-28,16,-40,73,-66,31v-24,-38,-35,-50,-45,-68v4,-19,26,-12,33,5v10,16,20,35,32,49v12,-12,22,-27,35,-39xm111,-8v-37,7,-66,45,-83,6v18,-47,18,-151,30,-210v2,-12,-25,-9,-22,-21v0,-18,20,-21,42,-19v18,1,70,-4,87,-4v62,0,111,39,108,99v-3,83,-77,133,-162,149xm243,-158v-2,-72,-81,-81,-153,-66v-14,84,-21,143,-21,177v0,10,-3,20,8,19v63,-9,169,-50,166,-130","w":285,"k":{",":28,".":28,"J":4,"A":14,"\u00c4":14,"\u00c5":14,"\u00c6":14,"\u00c0":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u0100":14,"\u0102":14,"\u0104":14,"d":7,"\u010f":7,"\u0111":7,"t":-7,"\u0165":-7,"v":-4,"m":4,"x":7,"y":4,"\u00ff":4,"\u00fd":4}},"\u010f":{"d":"226,-30v-1,13,-30,35,-48,32v-24,4,-31,-40,-29,-75v-24,37,-54,75,-98,79v-24,2,-37,-21,-37,-48v0,-63,82,-180,148,-122r25,-115v1,-12,11,-19,21,-20v8,0,12,7,12,22v-15,49,-44,150,-44,214v0,45,23,37,44,25v4,0,6,3,6,8xm151,-131v2,-11,-13,-24,-25,-24v-36,0,-84,73,-84,110v0,15,5,22,15,22v42,0,87,-69,94,-108xm306,-285v26,49,-23,92,-68,94v-3,0,-6,-2,-6,-8v0,-2,1,-4,2,-5v32,-6,48,-22,51,-44v3,-21,-15,-33,0,-44v3,0,19,5,21,7","w":293},"\u0110":{"d":"28,-2v15,-28,8,-63,16,-108v-25,15,-46,-12,-23,-26v6,-3,18,-6,27,-8r10,-68v1,-12,-25,-9,-22,-21v0,-18,20,-21,42,-19v18,1,70,-4,87,-4v62,0,111,39,108,99v-3,83,-77,133,-162,149v-39,7,-67,45,-83,6xm243,-158v-2,-72,-81,-81,-153,-66v-2,11,-6,36,-12,75v21,-3,39,-4,54,-4v28,0,44,8,31,27v-23,12,-53,-6,-89,6v-4,26,-5,59,-5,73v0,10,-3,20,8,19v63,-9,169,-50,166,-130","w":285},"\u0112":{"d":"106,-298v10,-25,56,-19,92,-19v8,0,11,4,11,12v-7,27,-63,6,-90,20v-8,-1,-12,-5,-13,-13xm211,-258v29,-6,35,24,16,31r-128,12v-16,10,-18,70,-22,84v35,2,86,-12,113,-14v30,-3,26,26,7,30v-11,3,-122,13,-122,19v-5,3,-13,60,-12,69v25,29,101,-7,140,-7v11,0,23,15,14,26v-39,13,-101,14,-157,21v-29,3,-30,-3,-33,-26v15,-48,28,-143,32,-198v-8,-10,-15,-32,6,-32v44,3,96,-5,146,-15","w":246,"k":{"J":-4,"\u00ed":9,"\u00ec":9,"\u00ee":9,"\u00ef":9,"\u012b":9,"V":-11,"Y":-7,"\u0178":-7,"\u00dd":-7,"W":-4,"t":-4,"\u0165":-4,"w":4,"z":-11,"\u017e":-11,"\u017a":-11,"\u017c":-11}},"\u0113":{"d":"58,-232v11,-25,57,-12,92,-19v7,1,11,5,11,12v-7,27,-64,6,-91,21v-8,0,-11,-7,-12,-14xm82,-21v28,3,59,-24,86,-48v4,0,6,3,6,9v0,27,-62,72,-97,69v-38,-3,-59,-24,-59,-63v0,-60,53,-145,108,-141v44,3,33,56,3,81v-19,16,-42,32,-71,49v-23,13,-1,48,24,44xm52,-87v50,-30,74,-53,74,-71v0,-7,-3,-11,-9,-11v-30,4,-59,48,-65,82","w":187},"\u0116":{"d":"178,-303v0,22,-38,27,-43,8v-2,-8,12,-29,20,-29v14,0,23,7,23,21xm211,-258v29,-6,35,24,16,31r-128,12v-16,10,-18,70,-22,84v35,2,86,-12,113,-14v30,-3,26,26,7,30v-11,3,-122,13,-122,19v-5,3,-13,60,-12,69v25,29,101,-7,140,-7v11,0,23,15,14,26v-39,13,-101,14,-157,21v-29,3,-30,-3,-33,-26v15,-48,28,-143,32,-198v-8,-10,-15,-32,6,-32v44,3,96,-5,146,-15","w":246,"k":{"J":-4,"\u00ed":9,"\u00ec":9,"\u00ee":9,"\u00ef":9,"\u012b":9,"V":-11,"Y":-7,"\u0178":-7,"\u00dd":-7,"W":-4,"t":-4,"\u0165":-4,"w":4,"z":-11,"\u017e":-11,"\u017a":-11,"\u017c":-11}},"\u0117":{"d":"130,-239v0,23,-38,28,-43,8v-1,-8,13,-30,20,-29v13,0,23,7,23,21xm82,-21v28,3,59,-24,86,-48v4,0,6,3,6,9v0,27,-62,72,-97,69v-38,-3,-59,-24,-59,-63v0,-60,53,-145,108,-141v44,3,33,56,3,81v-19,16,-42,32,-71,49v-23,13,-1,48,24,44xm52,-87v50,-30,74,-53,74,-71v0,-7,-3,-11,-9,-11v-30,4,-59,48,-65,82","w":187},"\u0118":{"d":"211,-258v29,-6,35,24,16,31r-128,12v-16,10,-18,70,-22,84v35,2,86,-12,113,-14v30,-3,26,26,7,30v-11,3,-122,13,-122,19v-5,3,-13,60,-12,69v25,29,101,-7,140,-7v14,0,24,20,10,30v-18,13,-26,29,-26,44v0,29,40,5,52,1v13,20,-8,38,-46,36v-38,-2,-37,-52,-13,-77v-35,-2,-109,20,-146,10v-4,-2,-6,-15,-7,-23v15,-48,28,-143,32,-198v-8,-10,-15,-32,6,-32v44,3,96,-5,146,-15","w":246,"k":{"J":-4,"\u00ed":9,"\u00ec":9,"\u00ee":9,"\u00ef":9,"\u012b":9,"V":-11,"Y":-7,"\u0178":-7,"\u00dd":-7,"W":-4,"t":-4,"\u0165":-4,"w":4,"z":-11,"\u017e":-11,"\u017a":-11,"\u017c":-11}},"\u0119":{"d":"82,-21v28,3,59,-24,86,-48v4,0,6,3,6,9v7,26,-75,61,-70,98v3,28,41,6,51,0v13,20,-7,36,-45,36v-33,0,-39,-42,-20,-66v-45,6,-72,-18,-72,-62v0,-60,53,-145,108,-141v44,3,33,56,3,81v-19,16,-42,32,-71,49v-23,13,-1,48,24,44xm52,-87v50,-30,74,-53,74,-71v0,-7,-3,-11,-9,-11v-30,4,-59,48,-65,82","w":187},"\u011a":{"d":"221,-362v18,10,10,21,-11,37v-23,17,-40,73,-65,31v-23,-39,-35,-49,-46,-68v5,-19,26,-11,33,6v15,18,18,32,33,49v11,-18,39,-47,56,-55xm211,-258v29,-6,35,24,16,31r-128,12v-16,10,-18,70,-22,84v35,2,86,-12,113,-14v30,-3,26,26,7,30v-11,3,-122,13,-122,19v-5,3,-13,60,-12,69v25,29,101,-7,140,-7v11,0,23,15,14,26v-39,13,-101,14,-157,21v-29,3,-30,-3,-33,-26v15,-48,28,-143,32,-198v-8,-10,-15,-32,6,-32v44,3,96,-5,146,-15","w":246,"k":{"J":-4,"\u00ed":9,"\u00ec":9,"\u00ee":9,"\u00ef":9,"\u012b":9,"V":-11,"Y":-7,"\u0178":-7,"\u00dd":-7,"W":-4,"t":-4,"\u0165":-4,"w":4,"z":-11,"\u017e":-11,"\u017a":-11,"\u017c":-11}},"\u0122":{"d":"213,40v-40,-3,-13,-50,-11,-92v-43,34,-82,51,-117,51v-40,1,-64,-25,-64,-66v0,-93,106,-203,195,-203v22,0,43,8,44,25v1,10,-11,35,-21,34v-13,-8,-13,-31,-37,-28v-74,11,-150,87,-150,169v0,73,94,30,126,6v29,-23,35,-28,40,-67v1,-8,8,-13,19,-13v12,0,17,4,17,11v-13,45,-37,99,-25,155v0,7,-7,19,-16,18xm135,22v26,49,-23,92,-68,94v-3,0,-6,-2,-6,-8v0,-2,1,-4,2,-5v32,-6,48,-22,51,-44v3,-21,-15,-33,0,-44v3,0,19,5,21,7","w":279,"k":{"V":-7,"T":-7,"\u0164":-7}},"\u0123":{"d":"197,-296v-11,20,-44,21,-44,51v4,10,21,33,2,39v-11,3,-29,-28,-28,-37v2,-28,33,-63,58,-67xm-13,45v42,22,107,69,137,7v11,-23,19,-74,24,-116v-21,18,-58,58,-99,58v-22,0,-35,-15,-34,-37v4,-70,75,-138,143,-144v21,-2,37,13,39,32v-39,88,-3,256,-119,267v-34,3,-95,-36,-97,-59v0,-6,2,-8,6,-8xm59,-34v46,0,103,-61,103,-107v0,-13,-5,-19,-15,-19v-47,0,-102,65,-102,111v0,8,6,15,14,15","w":206},"\u012a":{"d":"34,-307v10,-26,57,-12,92,-19v7,1,11,5,11,12v-6,27,-65,6,-90,21v-7,-2,-13,-6,-13,-14xm34,-39v0,-63,17,-144,28,-205v4,-7,23,-21,29,-6v2,5,4,11,4,17v-8,28,-29,128,-29,164v0,28,16,73,-15,75v-17,-3,-17,-21,-17,-45","w":114,"k":{"v":4,"w":4}},"\u012b":{"d":"19,-219v10,-26,57,-12,92,-19v7,1,11,5,11,12v-7,27,-64,6,-91,21v-7,-1,-12,-6,-12,-14xm79,-167v-15,62,-29,97,-18,163v-11,21,-35,17,-35,-18v0,-20,14,-95,18,-132v-6,-26,31,-37,35,-13","w":104},"\u012e":{"d":"33,85v-67,-6,-43,-70,3,-94v-7,-75,16,-161,25,-235v5,-7,23,-21,30,-6v2,5,3,11,3,17v-8,27,-28,129,-28,164v0,27,14,65,-12,75v-17,6,-37,25,-39,42v-2,21,35,14,49,9v11,14,-6,30,-31,28","w":114,"k":{"v":4,"w":4}},"\u012f":{"d":"80,-235v-18,-16,-17,-56,14,-55v5,-1,18,7,18,11v0,19,-13,45,-32,44xm79,-167v-16,63,-29,99,-18,166v-13,19,-53,26,-53,55v0,22,34,12,49,9v3,0,4,1,4,5v-2,16,-12,25,-35,23v-66,-4,-47,-69,2,-94v-9,-36,10,-103,16,-151v-6,-27,30,-36,35,-13","w":104},"\u0130":{"d":"123,-309v1,21,-39,28,-44,8v-2,-8,13,-30,20,-29v14,-1,24,8,24,21xm34,-39v0,-63,17,-144,28,-205v4,-7,23,-21,29,-6v2,5,4,11,4,17v-8,28,-29,128,-29,164v0,28,16,73,-15,75v-17,-3,-17,-21,-17,-45","w":114,"k":{"v":4,"w":4}},"\u0136":{"d":"133,55v2,-14,-29,-20,-22,-47v21,-17,44,11,46,36v1,16,-16,79,-35,75v-7,0,-14,-4,-13,-11v3,-20,28,-30,24,-53xm221,-228v-9,32,-69,77,-112,115v39,27,79,63,120,86v5,1,15,2,28,3v7,28,-22,35,-45,22v-30,-17,-92,-73,-131,-90v-34,4,-9,109,-41,107v-14,-1,-17,-16,-12,-31v8,-24,16,-182,29,-229v5,-17,36,-16,31,8v-9,44,-14,78,-18,121v43,-28,87,-69,114,-109v10,-15,14,-23,18,-23v8,0,20,12,19,20","w":267,"k":{"J":-14,"Y":7,"\u0178":7,"\u00dd":7,"d":-7,"\u010f":-7,"\u0111":-7,"t":-4,"\u0165":-4,"v":4,"w":7,"g":-7,"\u011f":-7,"\u0123":-7,"x":-4,"z":-13,"\u017e":-13,"\u017a":-13,"\u017c":-13}},"\u0137":{"d":"56,-275v7,-21,32,-25,31,0v-2,38,-27,145,-30,193v28,-19,100,-104,129,-104v22,0,15,29,0,35v-13,6,-74,44,-76,59v15,21,51,74,91,71v4,0,7,1,7,5v-2,13,-18,24,-36,24v-37,0,-64,-70,-93,-81v-19,11,-28,23,-24,67v2,19,-35,23,-36,4r17,-121v9,-90,16,-140,20,-152xm119,23v26,49,-23,92,-68,94v-3,0,-6,-2,-6,-8v0,-2,1,-4,2,-5v32,-6,48,-22,51,-44v3,-21,-15,-33,0,-44v3,0,19,5,21,7","w":212},"\u0139":{"d":"42,10v-26,-4,-11,-39,-9,-60r22,-193v2,-9,8,-16,19,-14v18,3,18,20,12,41v-3,12,-22,161,-22,176v0,9,1,9,8,10v31,-6,93,-7,138,-16v7,0,16,7,15,15v-1,25,-32,22,-56,20v-43,-3,-86,12,-127,21xm167,-363v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":226,"k":{"J":-14,"A":-14,"\u00c4":-14,"\u00c5":-14,"\u00c6":-14,"\u00c0":-14,"\u00c3":-14,"\u00c2":-14,"\u00c1":-14,"\u0100":-14,"\u0102":-14,"\u0104":-14,"V":7,"Y":11,"\u0178":11,"\u00dd":11,"a":-7,"\u00e6":-7,"\u0105":-7,"c":-7,"\u00e7":-7,"\u0107":-7,"\u010d":-7,"d":-7,"\u010f":-7,"\u0111":-7,"e":-7,"\u0119":-7,"T":14,"\u0164":14,"U":-7,"\u00dc":-7,"\u00da":-7,"\u00db":-7,"\u00d9":-7,"\u016a":-7,"\u016e":-7,"\u0170":-7,"\u0172":-7,"v":-2,"g":-7,"\u011f":-7,"\u0123":-7,"Q":-4,"o":-7,"\u00f8":-7,"\u0153":-7,"q":-7,"n":-7,"p":-4,"r":-4,"\u0155":-4,"\u0157":-4,"\u0159":-4,"s":-7,"\u0161":-7,"\u015f":-7,"\u015b":-7,"u":-4,"\u0173":-4,"j":-7,"x":-8,"y":-4,"\u00ff":-4,"\u00fd":-4,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"i":-4,"\u0131":-4,"\u012f":-4,"h":-7,"b":-7,"\u00fe":-7,"k":-4,"\u0137":-4}},"\u013a":{"d":"48,14v-18,0,-16,-24,-17,-49v-2,-52,23,-219,37,-248v9,-19,28,-21,30,2v-13,65,-48,182,-32,273v2,11,-9,22,-18,22xm170,-393v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":103},"\u013b":{"d":"119,139v-35,-11,18,-41,11,-65v0,-10,-46,-46,-5,-54v11,8,30,22,30,44v0,16,-17,81,-36,75xm42,10v-26,-4,-11,-39,-9,-60r22,-193v2,-9,8,-16,19,-14v18,3,18,20,12,41v-3,12,-22,161,-22,176v0,9,1,9,8,10v31,-6,93,-7,138,-16v7,0,16,7,15,15v-1,25,-32,22,-56,20v-43,-3,-86,12,-127,21","w":226,"k":{"J":-14,"A":-14,"\u00c4":-14,"\u00c5":-14,"\u00c6":-14,"\u00c0":-14,"\u00c3":-14,"\u00c2":-14,"\u00c1":-14,"\u0100":-14,"\u0102":-14,"\u0104":-14,"V":7,"Y":11,"\u0178":11,"\u00dd":11,"a":-7,"\u00e6":-7,"\u0105":-7,"c":-7,"\u00e7":-7,"\u0107":-7,"\u010d":-7,"d":-7,"\u010f":-7,"\u0111":-7,"e":-7,"\u0119":-7,"T":14,"\u0164":14,"U":-7,"\u00dc":-7,"\u00da":-7,"\u00db":-7,"\u00d9":-7,"\u016a":-7,"\u016e":-7,"\u0170":-7,"\u0172":-7,"v":-2,"g":-7,"\u011f":-7,"\u0123":-7,"Q":-4,"o":-7,"\u00f8":-7,"\u0153":-7,"q":-7,"n":-7,"p":-4,"r":-4,"\u0155":-4,"\u0157":-4,"\u0159":-4,"s":-7,"\u0161":-7,"\u015f":-7,"\u015b":-7,"u":-4,"\u0173":-4,"j":-7,"x":-8,"y":-4,"\u00ff":-4,"\u00fd":-4,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"i":-4,"\u0131":-4,"\u012f":-4,"h":-7,"b":-7,"\u00fe":-7,"k":-4,"\u0137":-4}},"\u013c":{"d":"48,14v-18,0,-16,-24,-17,-49v-2,-52,23,-219,37,-248v9,-19,28,-21,30,2v-13,65,-48,182,-32,273v2,11,-9,22,-18,22xm66,38v26,49,-23,92,-68,94v-3,0,-6,-2,-6,-8v0,-2,1,-4,2,-5v32,-6,48,-22,51,-44v3,-21,-15,-33,0,-44v3,0,19,5,21,7","w":103},"\u013d":{"d":"143,-158v8,-25,45,-50,9,-75v-7,-4,-8,-11,-7,-25v22,-17,44,11,46,36v2,20,-25,106,-48,64xm42,10v-26,-4,-11,-39,-9,-60r22,-193v2,-9,8,-16,19,-14v18,3,18,20,12,41v-3,12,-22,161,-22,176v0,9,1,9,8,10v31,-6,93,-7,138,-16v7,0,16,7,15,15v-1,25,-32,22,-56,20v-43,-3,-86,12,-127,21","w":226,"k":{"J":-14,"A":-14,"\u00c4":-14,"\u00c5":-14,"\u00c6":-14,"\u00c0":-14,"\u00c3":-14,"\u00c2":-14,"\u00c1":-14,"\u0100":-14,"\u0102":-14,"\u0104":-14,"V":7,"Y":11,"\u0178":11,"\u00dd":11,"a":-7,"\u00e6":-7,"\u0105":-7,"c":-7,"\u00e7":-7,"\u0107":-7,"\u010d":-7,"d":-7,"\u010f":-7,"\u0111":-7,"e":-7,"\u0119":-7,"T":14,"\u0164":14,"U":-7,"\u00dc":-7,"\u00da":-7,"\u00db":-7,"\u00d9":-7,"\u016a":-7,"\u016e":-7,"\u0170":-7,"\u0172":-7,"v":-2,"g":-7,"\u011f":-7,"\u0123":-7,"Q":-4,"o":-7,"\u00f8":-7,"\u0153":-7,"q":-7,"n":-7,"p":-4,"r":-4,"\u0155":-4,"\u0157":-4,"\u0159":-4,"s":-7,"\u0161":-7,"\u015f":-7,"\u015b":-7,"u":-4,"\u0173":-4,"j":-7,"x":-8,"y":-4,"\u00ff":-4,"\u00fd":-4,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"i":-4,"\u0131":-4,"\u012f":-4,"h":-7,"b":-7,"\u00fe":-7,"k":-4,"\u0137":-4}},"\u013e":{"d":"48,14v-18,0,-16,-24,-17,-49v-2,-52,23,-219,37,-248v9,-19,28,-21,30,2v-13,65,-48,182,-32,273v2,11,-9,22,-18,22xm186,-283v26,49,-23,92,-68,94v-3,0,-6,-2,-6,-8v0,-2,1,-4,2,-5v32,-6,48,-22,51,-44v3,-21,-15,-33,0,-44v3,0,19,5,21,7","w":174},"\u013f":{"d":"176,-162v1,21,-39,28,-43,8v-1,-8,12,-29,19,-29v14,0,23,8,24,21xm42,10v-26,-4,-11,-39,-9,-60r22,-193v2,-9,8,-16,19,-14v18,3,18,20,12,41v-3,12,-22,161,-22,176v0,9,1,9,8,10v31,-6,93,-7,138,-16v7,0,16,7,15,15v-1,25,-32,22,-56,20v-43,-3,-86,12,-127,21","w":226},"\u0140":{"d":"142,-139v0,23,-38,29,-43,9v-2,-8,11,-29,19,-29v14,0,24,6,24,20xm48,14v-18,0,-16,-24,-17,-49v-2,-52,23,-219,37,-248v9,-19,28,-21,30,2v-13,65,-48,182,-32,273v2,11,-9,22,-18,22","w":137},"\u0143":{"d":"63,-219v-6,-24,21,-37,34,-20v8,59,77,156,110,194v10,-39,32,-147,32,-188v0,-22,8,-26,24,-29v15,9,12,28,6,51v-12,46,-34,146,-32,196v0,21,-30,28,-41,9v-11,-12,-7,-19,-19,-33v-35,-42,-64,-90,-91,-141v-9,36,-26,104,-26,160v0,20,-7,29,-19,34v-15,2,-16,-16,-16,-26v0,-46,36,-158,38,-207xm246,-369v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":290,"k":{"v":4,"w":4,"o":5,"\u00f8":5,"\u0153":5,"q":5,"m":4,"p":4,"r":5,"\u0155":5,"\u0157":5,"\u0159":5,"u":5,"\u0173":5,"y":4,"\u00ff":4,"\u00fd":4,"l":4,"\u0142":4,"\u013a":4,"\u013c":4,"\u013e":4}},"\u0144":{"d":"200,-8v-50,10,-23,-121,-57,-127v-45,8,-66,137,-105,137v-14,0,-20,-7,-20,-20v3,-43,14,-89,12,-136v-1,-7,11,-23,17,-23v15,0,16,9,16,28v4,9,-15,77,-12,99v23,-27,63,-162,125,-105v23,21,-2,138,52,113v5,0,7,3,7,9v0,12,-20,27,-35,25xm203,-282v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":238},"\u0145":{"d":"63,-219v-6,-24,21,-37,34,-20v8,59,77,156,110,194v10,-39,32,-147,32,-188v0,-22,8,-26,24,-29v15,9,12,28,6,51v-12,46,-34,146,-32,196v0,21,-30,28,-41,9v-11,-12,-7,-19,-19,-33v-35,-42,-64,-90,-91,-141v-9,36,-26,104,-26,160v0,20,-7,29,-19,34v-15,2,-16,-16,-16,-26v0,-46,36,-158,38,-207xm144,19v26,49,-23,92,-68,94v-3,0,-6,-2,-6,-8v0,-2,1,-4,2,-5v32,-6,48,-22,51,-44v3,-21,-15,-33,0,-44v3,0,19,5,21,7","w":290},"\u0146":{"d":"200,-8v-50,10,-23,-121,-57,-127v-45,8,-66,137,-105,137v-14,0,-20,-7,-20,-20v3,-43,14,-89,12,-136v-1,-7,11,-23,17,-23v15,0,16,9,16,28v4,9,-15,77,-12,99v23,-27,63,-162,125,-105v23,21,-2,138,52,113v5,0,7,3,7,9v0,12,-20,27,-35,25xm139,8v26,49,-23,92,-68,94v-3,0,-6,-2,-6,-8v0,-2,1,-4,2,-5v32,-6,48,-22,51,-44v3,-21,-15,-33,0,-44v3,0,19,5,21,7","w":238},"\u0147":{"d":"235,-356v18,9,10,21,-11,37v-23,17,-39,74,-65,32v-22,-38,-35,-50,-45,-68v4,-19,25,-12,32,5v11,16,20,36,33,49v12,-17,40,-47,56,-55xm63,-219v-6,-24,21,-37,34,-20v8,59,77,156,110,194v10,-39,32,-147,32,-188v0,-22,8,-26,24,-29v15,9,12,28,6,51v-12,46,-34,146,-32,196v0,21,-30,28,-41,9v-11,-12,-7,-19,-19,-33v-35,-42,-64,-90,-91,-141v-9,36,-26,104,-26,160v0,20,-7,29,-19,34v-15,2,-16,-16,-16,-26v0,-46,36,-158,38,-207","w":290,"k":{"v":4,"w":4,"o":5,"\u00f8":5,"\u0153":5,"q":5,"m":4,"p":4,"r":5,"\u0155":5,"\u0157":5,"\u0159":5,"u":5,"\u0173":5,"y":4,"\u00ff":4,"\u00fd":4,"l":4,"\u0142":4,"\u013a":4,"\u013c":4,"\u013e":4}},"\u0148":{"d":"198,-285v19,9,11,21,-10,37v-23,17,-40,73,-66,31v-23,-39,-36,-48,-45,-68v5,-20,26,-10,33,6v15,17,18,32,32,49v13,-17,39,-48,56,-55xm200,-8v-50,10,-23,-121,-57,-127v-45,8,-66,137,-105,137v-14,0,-20,-7,-20,-20v3,-43,14,-89,12,-136v-1,-7,11,-23,17,-23v15,0,16,9,16,28v4,9,-15,77,-12,99v23,-27,63,-162,125,-105v23,21,-2,138,52,113v5,0,7,3,7,9v0,12,-20,27,-35,25","w":238},"\u014a":{"d":"113,39v26,18,50,44,73,16v6,-8,12,-25,16,-51v-7,-4,-19,-28,-29,-40v-33,-40,-67,-88,-101,-144v-8,38,-16,115,-14,172v1,8,-9,22,-17,22v-14,3,-18,-19,-18,-28v0,-59,27,-149,23,-215v-1,-18,26,-24,32,-11v12,58,95,165,129,202r16,-200v2,-20,34,-25,37,-4v-20,89,-19,209,-35,285v-6,30,-26,53,-58,54v-25,2,-76,-36,-54,-58","w":278},"\u014b":{"d":"128,81v60,-2,35,-148,33,-187v-1,-19,-10,-29,-18,-29v-46,0,-66,137,-105,137v-14,0,-20,-7,-20,-20v3,-43,14,-89,12,-136v-1,-7,11,-23,17,-23v15,0,16,9,16,28v4,9,-15,77,-12,99v22,-23,50,-125,99,-119v46,5,45,80,45,142v0,74,-6,125,-61,132v-15,1,-60,-17,-48,-31v9,1,28,8,42,7","w":217},"\u014c":{"d":"134,-307v10,-26,57,-12,92,-19v7,1,11,5,11,12v-7,27,-63,7,-91,20v-8,0,-12,-6,-12,-13xm170,-257v66,0,110,25,108,94v-2,74,-66,134,-117,162v-18,9,-41,14,-69,14v-37,0,-74,-50,-72,-86v6,-85,63,-184,150,-184xm170,-232v-53,-3,-118,101,-118,157v0,30,23,58,51,58v68,0,142,-84,142,-153v0,-45,-34,-59,-75,-62","w":289,"k":{",":21,".":21,"J":4,"A":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u00c0":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u0100":12,"\u0102":12,"\u0104":12,"a":7,"\u00e6":7,"\u0105":7,"c":5,"\u00e7":5,"\u0107":5,"\u010d":5,"d":5,"\u010f":5,"\u0111":5,"T":-1,"\u0164":-1,"t":-4,"\u0165":-4,"v":-4,"g":5,"\u011f":5,"\u0123":5,"o":4,"\u00f8":4,"\u0153":4,"q":4,"m":4,"p":4,"r":4,"\u0155":4,"\u0157":4,"\u0159":4,"u":4,"\u0173":4,"j":6,"x":7,"y":5,"\u00ff":5,"\u00fd":5,"z":4,"\u017e":4,"\u017a":4,"\u017c":4,"i":6,"\u0131":6,"\u012f":6,"k":4,"\u0137":4,"l":2,"\u0142":2,"\u013a":2,"\u013c":2,"\u013e":2}},"\u014d":{"d":"107,-238v27,-1,67,-14,71,8v-7,27,-63,7,-91,20v-7,-1,-13,-5,-12,-13v1,-14,19,-15,32,-15xm186,-115v0,55,-59,124,-111,124v-34,0,-56,-30,-56,-64v0,-55,48,-133,104,-133v37,0,63,35,63,73xm119,-160v-37,0,-70,64,-69,101v0,20,10,40,28,40v35,0,78,-52,78,-93v0,-26,-13,-48,-37,-48","w":203},"\u0150":{"d":"214,-369v11,-19,40,-2,19,11v-31,20,-47,61,-66,68v-24,-14,15,-40,21,-52xm237,-299v-4,14,-18,20,-20,5v7,-31,41,-53,60,-76v11,-8,26,3,12,12v-9,21,-46,42,-52,59xm170,-257v66,0,110,25,108,94v-2,74,-66,134,-117,162v-18,9,-41,14,-69,14v-37,0,-74,-50,-72,-86v6,-85,63,-184,150,-184xm170,-232v-53,-3,-118,101,-118,157v0,30,23,58,51,58v68,0,142,-84,142,-153v0,-45,-34,-59,-75,-62","w":289,"k":{",":21,".":21,"J":4,"A":12,"\u00c4":12,"\u00c5":12,"\u00c6":12,"\u00c0":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u0100":12,"\u0102":12,"\u0104":12,"a":7,"\u00e6":7,"\u0105":7,"c":5,"\u00e7":5,"\u0107":5,"\u010d":5,"d":5,"\u010f":5,"\u0111":5,"T":-1,"\u0164":-1,"t":-4,"\u0165":-4,"v":-4,"g":5,"\u011f":5,"\u0123":5,"o":4,"\u00f8":4,"\u0153":4,"q":4,"m":4,"p":4,"r":4,"\u0155":4,"\u0157":4,"\u0159":4,"u":4,"\u0173":4,"j":6,"x":7,"y":5,"\u00ff":5,"\u00fd":5,"z":4,"\u017e":4,"\u017a":4,"\u017c":4,"i":6,"\u0131":6,"\u012f":6,"k":4,"\u0137":4,"l":2,"\u0142":2,"\u013a":2,"\u013c":2,"\u013e":2}},"\u0151":{"d":"148,-290v11,-19,40,-2,20,11v-30,20,-48,62,-67,68v-24,-14,16,-41,22,-52xm171,-220v-4,14,-18,20,-20,5v8,-29,41,-54,60,-76v11,-9,26,4,12,13v-3,4,-17,25,-22,28v-16,11,-26,20,-30,30xm186,-115v0,55,-59,124,-111,124v-34,0,-56,-30,-56,-64v0,-55,48,-133,104,-133v37,0,63,35,63,73xm119,-160v-37,0,-70,64,-69,101v0,20,10,40,28,40v35,0,78,-52,78,-93v0,-26,-13,-48,-37,-48","w":203},"\u0154":{"d":"52,-215v-18,-21,1,-41,25,-33v78,-18,157,-15,157,53v0,47,-49,74,-87,90v11,13,82,67,103,78v17,9,5,30,-8,31v-37,-7,-120,-96,-139,-100v-14,0,-22,-2,-22,-14v0,-17,23,-19,40,-15v20,-1,90,-39,82,-70v-2,-43,-72,-41,-111,-30v-25,39,-36,155,-30,218v1,7,-10,16,-17,16v-12,0,-19,-10,-19,-30v-1,-47,10,-117,26,-194xm217,-368v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","k":{",":-16,".":-16,":":-14,";":-14,"J":-14,"a":-7,"\u00e6":-7,"\u0105":-7,"c":-4,"\u00e7":-4,"\u0107":-4,"\u010d":-4,"v":2,"w":7,"q":-4,"n":-4,"s":-7,"\u0161":-7,"\u015f":-7,"\u015b":-7,"j":-4,"x":-7,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"h":-4}},"\u0155":{"d":"73,-172v-6,35,-14,55,-14,102v25,-47,44,-107,104,-116v19,-3,36,13,34,31v-2,27,-28,5,-40,1v-35,6,-88,92,-90,142v-1,16,-6,22,-21,22v-30,-16,-13,-106,-11,-146v1,-19,3,-49,25,-49v8,0,14,6,13,13xm184,-284v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":183,"k":{"e":-2,"\u0119":-2,"t":-16,"\u0165":-16,"v":-16,"w":-11,"g":4,"\u011f":4,"\u0123":4,"q":4,"m":-4,"n":-7,"p":-7,"r":-4,"\u0155":-4,"\u0157":-4,"\u0159":-4,"s":-7,"\u0161":-7,"\u015f":-7,"\u015b":-7,"u":-4,"\u0173":-4,"f":-11,"j":-2,"x":-4,"z":-12,"\u017e":-12,"\u017a":-12,"\u017c":-12,"i":-4,"\u0131":-4,"\u012f":-4,"h":-7,"b":-11,"\u00fe":-11,"k":-5,"\u0137":-5,"l":-5,"\u0142":-5,"\u013a":-5,"\u013c":-5,"\u013e":-5}},"\u0156":{"d":"139,54v3,-14,-29,-19,-22,-46v20,-18,46,8,46,35v0,20,-25,106,-48,64v3,-20,28,-30,24,-53xm52,-215v-18,-21,1,-41,25,-33v78,-18,157,-15,157,53v0,47,-49,74,-87,90v11,13,82,67,103,78v17,9,5,30,-8,31v-37,-7,-120,-96,-139,-100v-14,0,-22,-2,-22,-14v0,-17,23,-19,40,-15v20,-1,90,-39,82,-70v-2,-43,-72,-41,-111,-30v-25,39,-36,155,-30,218v1,7,-10,16,-17,16v-12,0,-19,-10,-19,-30v-1,-47,10,-117,26,-194","k":{",":-16,".":-16,":":-14,";":-14,"J":-14,"a":-7,"\u00e6":-7,"\u0105":-7,"c":-4,"\u00e7":-4,"\u0107":-4,"\u010d":-4,"v":2,"w":7,"q":-4,"n":-4,"s":-7,"\u0161":-7,"\u015f":-7,"\u015b":-7,"j":-4,"x":-7,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"h":-4}},"\u0157":{"d":"72,-172v-6,35,-14,55,-14,102v25,-47,44,-107,104,-116v19,-3,36,13,34,31v-2,27,-28,5,-40,1v-35,6,-88,92,-90,142v-1,16,-6,22,-21,22v-30,-16,-13,-106,-11,-146v1,-19,3,-49,25,-49v8,0,14,6,13,13xm71,32v26,49,-23,92,-68,94v-3,0,-6,-2,-6,-8v0,-2,1,-4,2,-5v32,-6,48,-22,51,-44v3,-21,-15,-33,0,-44v3,0,19,5,21,7","w":183,"k":{"e":-2,"\u0119":-2,"t":-16,"\u0165":-16,"v":-16,"w":-11,"g":4,"\u011f":4,"\u0123":4,"q":4,"m":-4,"n":-7,"p":-7,"r":-4,"\u0155":-4,"\u0157":-4,"\u0159":-4,"s":-7,"\u0161":-7,"\u015f":-7,"\u015b":-7,"u":-4,"\u0173":-4,"f":-11,"j":-2,"x":-4,"z":-12,"\u017e":-12,"\u017a":-12,"\u017c":-12,"i":-4,"\u0131":-4,"\u012f":-4,"h":-7,"b":-11,"\u00fe":-11,"k":-5,"\u0137":-5,"l":-5,"\u0142":-5,"\u013a":-5,"\u013c":-5,"\u013e":-5}},"\u0158":{"d":"204,-377v25,12,-6,33,-20,47v-20,20,-33,59,-56,22v-23,-39,-35,-49,-46,-68v5,-20,26,-10,33,6v15,17,18,32,33,48v12,-17,40,-47,56,-55xm52,-215v-18,-21,1,-41,25,-33v78,-18,157,-15,157,53v0,47,-49,74,-87,90v11,13,82,67,103,78v17,9,5,30,-8,31v-37,-7,-120,-96,-139,-100v-14,0,-22,-2,-22,-14v0,-17,23,-19,40,-15v20,-1,90,-39,82,-70v-2,-43,-72,-41,-111,-30v-25,39,-36,155,-30,218v1,7,-10,16,-17,16v-12,0,-19,-10,-19,-30v-1,-47,10,-117,26,-194","k":{",":-16,".":-16,":":-14,";":-14,"J":-14,"a":-7,"\u00e6":-7,"\u0105":-7,"c":-4,"\u00e7":-4,"\u0107":-4,"\u010d":-4,"v":2,"w":7,"q":-4,"n":-4,"s":-7,"\u0161":-7,"\u015f":-7,"\u015b":-7,"j":-4,"x":-7,"z":-14,"\u017e":-14,"\u017a":-14,"\u017c":-14,"h":-4}},"\u0159":{"d":"163,-281v25,12,-5,33,-20,47v-21,20,-33,59,-56,22v-23,-39,-35,-49,-46,-68v5,-19,26,-11,33,6v15,17,18,32,33,48v12,-17,40,-47,56,-55xm73,-172v-6,35,-14,55,-14,102v25,-47,44,-107,104,-116v19,-3,36,13,34,31v-2,27,-28,5,-40,1v-35,6,-88,92,-90,142v-1,16,-6,22,-21,22v-30,-16,-13,-106,-11,-146v1,-19,3,-49,25,-49v8,0,14,6,13,13","w":183,"k":{"e":-2,"\u0119":-2,"t":-16,"\u0165":-16,"v":-16,"w":-11,"g":4,"\u011f":4,"\u0123":4,"q":4,"m":-4,"n":-7,"p":-7,"r":-4,"\u0155":-4,"\u0157":-4,"\u0159":-4,"s":-7,"\u0161":-7,"\u015f":-7,"\u015b":-7,"u":-4,"\u0173":-4,"f":-11,"j":-2,"x":-4,"z":-12,"\u017e":-12,"\u017a":-12,"\u017c":-12,"i":-4,"\u0131":-4,"\u012f":-4,"h":-7,"b":-11,"\u00fe":-11,"k":-5,"\u0137":-5,"l":-5,"\u0142":-5,"\u013a":-5,"\u013c":-5,"\u013e":-5}},"\u015a":{"d":"156,-258v37,0,73,14,59,50v-3,8,-8,12,-18,12v0,-31,-16,-33,-43,-34v-40,-1,-98,18,-98,50v0,64,150,39,153,108v-9,52,-89,86,-150,87v-21,0,-40,-3,-43,-17v-1,-6,5,-21,10,-21v52,24,139,-9,152,-47v-10,-23,-28,-19,-69,-35v-55,-21,-79,-25,-83,-72v-4,-51,76,-81,130,-81xm218,-362v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":229,"k":{"a":4,"\u00e6":4,"\u0105":4,"t":-7,"\u0165":-7,"w":5,"o":2,"\u00f8":2,"\u0153":2,"m":2,"n":-2}},"\u015b":{"d":"4,-8v10,-27,53,0,80,-16v15,-4,24,-10,28,-16v-10,-32,-89,-41,-89,-80v0,-41,60,-77,92,-81v28,-3,36,30,15,35v-19,-17,-77,16,-77,37v0,41,84,35,87,83v2,38,-71,57,-108,57v-19,0,-28,-6,-28,-19xm188,-306v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":152},"\u0164":{"d":"202,-370v19,9,11,22,-10,37v-26,19,-40,73,-66,31v-24,-38,-36,-48,-45,-68v5,-20,26,-10,33,6v15,17,18,32,32,49v13,-17,39,-48,56,-55xm121,-207v-17,-20,-92,13,-114,-7v-6,-23,7,-22,38,-22v68,1,118,-13,191,-16v19,0,40,0,40,18v-1,23,-34,8,-52,10v-16,2,-66,2,-72,11v-6,32,-25,161,-11,199v1,9,-6,21,-14,21v-22,-5,-20,-21,-22,-59v0,-24,6,-86,16,-155","w":241,"k":{",":18,".":18,"J":19,"A":14,"\u00c4":14,"\u00c5":14,"\u00c6":14,"\u00c0":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u0100":14,"\u0102":14,"\u0104":14,"Y":-32,"\u0178":-32,"\u00dd":-32,"a":18,"\u00e6":18,"\u0105":18,"c":14,"\u00e7":14,"\u0107":14,"\u010d":14,"d":21,"\u010f":21,"\u0111":21,"e":21,"\u0119":21,"T":-18,"\u0164":-18,"W":-21,"v":7,"w":7,"g":25,"\u011f":25,"\u0123":25,"Q":5,"o":25,"\u00f8":25,"\u0153":25,"q":14,"m":7,"n":11,"p":7,"r":4,"\u0155":4,"\u0157":4,"\u0159":4,"s":12,"\u0161":12,"\u015f":12,"\u015b":12,"u":11,"\u0173":11,"j":-11,"x":7,"y":14,"\u00ff":14,"\u00fd":14}},"\u0165":{"d":"165,-264v3,-14,-29,-19,-22,-46v20,-18,46,9,46,35v0,20,-25,106,-48,64v3,-20,28,-30,24,-53xm66,-53v1,65,54,13,79,0v5,0,7,3,7,8v-1,19,-47,53,-74,53v-71,0,-30,-111,-25,-151v-10,-7,-45,7,-45,-19v0,-19,30,-7,46,-11v25,-6,13,-77,41,-82v34,6,2,55,0,78v19,-2,41,-6,60,-5v16,0,19,0,21,11v-4,27,-70,12,-90,24v-2,0,-22,89,-20,94","w":168},"\u016a":{"d":"123,-306v11,-25,58,-13,92,-19v7,1,12,4,12,12v-7,27,-64,6,-91,21v-7,-2,-13,-6,-13,-14xm62,-102v0,96,115,111,146,42v23,-30,1,-191,45,-191v8,0,12,7,12,20v0,112,-3,248,-140,243v-80,-3,-112,-87,-85,-179v7,-28,4,-65,20,-85v11,-14,24,7,24,17v-7,21,-22,100,-22,133","w":278,"k":{"A":3,"\u00c4":3,"\u00c5":3,"\u00c6":3,"\u00c0":3,"\u00c3":3,"\u00c2":3,"\u00c1":3,"\u0100":3,"\u0102":3,"\u0104":3,"a":4,"\u00e6":4,"\u0105":4,"d":4,"\u010f":4,"\u0111":4,"e":2,"\u0119":2,"v":-2,"w":2,"g":5,"\u011f":5,"\u0123":5,"m":2,"p":2,"x":2}},"\u016b":{"d":"87,-223v11,-25,57,-12,92,-19v7,1,11,5,11,12v-7,27,-64,6,-91,21v-8,0,-11,-7,-12,-14xm186,7v-26,-5,-28,-45,-28,-83v-22,36,-49,73,-89,79v-66,-12,-20,-124,-16,-176v6,-16,34,-11,33,6v-2,28,-27,83,-25,110v5,51,30,25,56,0v22,-21,42,-75,58,-108v8,-10,26,-8,24,10v-14,46,-24,123,7,149v1,6,-14,14,-20,13","w":219},"\u016e":{"d":"131,-319v-2,-46,90,-60,88,-4v1,46,-88,62,-88,4xm197,-321v-1,-11,-5,-21,-21,-21v-26,0,-27,44,-3,45v11,0,26,-9,24,-24xm62,-102v0,96,115,111,146,42v23,-30,1,-191,45,-191v8,0,12,7,12,20v0,112,-3,248,-140,243v-80,-3,-112,-87,-85,-179v7,-28,4,-65,20,-85v11,-14,24,7,24,17v-7,21,-22,100,-22,133","w":278,"k":{"A":3,"\u00c4":3,"\u00c5":3,"\u00c6":3,"\u00c0":3,"\u00c3":3,"\u00c2":3,"\u00c1":3,"\u0100":3,"\u0102":3,"\u0104":3,"a":4,"\u00e6":4,"\u0105":4,"d":4,"\u010f":4,"\u0111":4,"e":2,"\u0119":2,"v":-2,"w":2,"g":5,"\u011f":5,"\u0123":5,"m":2,"p":2,"x":2}},"\u016f":{"d":"87,-243v0,-45,90,-60,88,-4v2,46,-88,62,-88,4xm153,-245v-1,-11,-5,-23,-21,-20v-14,-2,-21,12,-21,23v-1,9,9,22,18,22v10,-1,26,-10,24,-25xm175,7v-26,-5,-28,-45,-28,-83v-22,36,-49,73,-89,79v-66,-12,-20,-124,-16,-176v6,-16,34,-11,33,6v-2,28,-27,83,-25,110v5,51,30,25,56,0v22,-21,42,-75,58,-108v8,-10,26,-8,24,10v-14,46,-24,123,7,149v1,6,-14,14,-20,13","w":219},"\u0170":{"d":"189,-360v8,-11,25,-14,27,1v-8,15,-38,36,-40,43v-21,28,-32,50,-43,22v12,-21,40,-46,56,-66xm212,-291v-4,14,-18,20,-20,5v6,-27,39,-47,53,-70v7,-11,38,-9,20,7v-3,3,-18,25,-23,28v-16,11,-26,20,-30,30xm62,-102v0,96,115,111,146,42v23,-30,1,-191,45,-191v8,0,12,7,12,20v0,112,-3,248,-140,243v-80,-3,-112,-87,-85,-179v7,-28,4,-65,20,-85v11,-14,24,7,24,17v-7,21,-22,100,-22,133","w":278,"k":{"A":3,"\u00c4":3,"\u00c5":3,"\u00c6":3,"\u00c0":3,"\u00c3":3,"\u00c2":3,"\u00c1":3,"\u0100":3,"\u0102":3,"\u0104":3,"a":4,"\u00e6":4,"\u0105":4,"d":4,"\u010f":4,"\u0111":4,"e":2,"\u0119":2,"v":-2,"w":2,"g":5,"\u011f":5,"\u0123":5,"m":2,"p":2,"x":2}},"\u0171":{"d":"149,-287v11,-19,40,-2,20,11v-30,21,-47,63,-67,69v-24,-15,16,-41,22,-53xm172,-217v-4,14,-18,20,-20,5v8,-29,41,-54,60,-76v11,-9,26,4,12,13v-3,4,-17,25,-22,28v-16,11,-26,20,-30,30xm175,7v-26,-5,-28,-45,-28,-83v-22,36,-49,73,-89,79v-66,-12,-20,-124,-16,-176v6,-16,34,-11,33,6v-2,28,-27,83,-25,110v5,51,30,25,56,0v22,-21,42,-75,58,-108v8,-10,26,-8,24,10v-14,46,-24,123,7,149v1,6,-14,14,-20,13","w":219},"\u0172":{"d":"133,91v-54,1,-53,-56,-17,-80v-112,-13,-85,-157,-63,-251v2,-8,8,-16,18,-16v6,-2,14,16,13,21v-7,21,-22,100,-22,133v0,96,115,111,146,42v23,-30,1,-191,45,-191v8,0,12,7,12,20v0,43,-11,157,-30,185v-17,26,-38,47,-76,54v-17,10,-42,25,-44,46v-2,19,33,15,44,9v12,12,-5,34,-26,28","w":278,"k":{"A":3,"\u00c4":3,"\u00c5":3,"\u00c6":3,"\u00c0":3,"\u00c3":3,"\u00c2":3,"\u00c1":3,"\u0100":3,"\u0102":3,"\u0104":3,"a":4,"\u00e6":4,"\u0105":4,"d":4,"\u010f":4,"\u0111":4,"e":2,"\u0119":2,"v":-2,"w":2,"g":5,"\u011f":5,"\u0123":5,"m":2,"p":2,"x":2}},"\u0173":{"d":"158,91v-66,-6,-47,-69,1,-94v-9,-12,-13,-43,-12,-73v-22,36,-49,73,-89,79v-66,-12,-20,-124,-16,-176v6,-16,34,-11,33,6v-2,28,-27,83,-25,110v5,51,30,25,56,0v22,-21,42,-75,58,-108v8,-10,26,-8,24,10v-14,46,-24,124,7,150v-11,21,-53,29,-55,59v-1,18,33,15,43,9v3,0,5,2,5,6v0,15,-10,24,-30,22","w":219},"\u0179":{"d":"52,-246v61,12,144,-1,205,-8v11,2,12,27,-2,29v-41,40,-91,100,-126,135r-53,53v0,2,2,4,5,4r125,-8v31,0,46,6,46,20v-2,34,-46,5,-70,11v-56,2,-122,4,-164,18v-16,1,-13,-26,-4,-31v38,-26,171,-157,196,-195v-42,-2,-92,8,-133,8v-34,0,-49,-24,-25,-36xm231,-369v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":275,"k":{"a":-4,"\u00e6":-4,"\u0105":-4,"c":-2,"\u00e7":-2,"\u0107":-2,"\u010d":-2,"d":-4,"\u010f":-4,"\u0111":-4,"t":-4,"\u0165":-4,"v":7,"w":11,"g":-4,"\u011f":-4,"\u0123":-4,"o":11,"\u00f8":11,"\u0153":11,"q":7,"m":6,"n":4,"p":7,"r":11,"\u0155":11,"\u0157":11,"\u0159":11,"u":7,"\u0173":7,"f":7,"j":11,"\u00bb":-21,"y":4,"\u00ff":4,"\u00fd":4,"z":-11,"\u017e":-11,"\u017a":-11,"\u017c":-11,"i":9,"\u0131":9,"\u012f":9,"h":7,"b":11,"\u00fe":11,"k":7,"\u0137":7,"l":7,"\u0142":7,"\u013a":7,"\u013c":7,"\u013e":7}},"\u017a":{"d":"55,-30v15,5,78,-17,91,-12v33,-3,40,22,27,40v-34,-23,-123,-8,-151,12v-9,12,-35,11,-38,-4r23,-24v53,-54,93,-98,121,-133v-29,-7,-104,22,-110,-14v2,-26,30,-7,50,-9v30,3,70,-13,98,-5v4,2,6,6,5,11v-3,10,-34,48,-93,111v-14,15,-22,24,-23,27xm181,-287v14,5,11,29,-3,32v-9,3,-59,41,-76,53v-6,0,-11,-9,-12,-14v10,-25,68,-56,91,-71","w":180},"\u017b":{"d":"182,-312v1,21,-39,28,-44,8v-2,-8,13,-30,20,-29v14,-1,24,8,24,21xm52,-246v61,12,144,-1,205,-8v11,2,12,27,-2,29v-41,40,-91,100,-126,135r-53,53v0,2,2,4,5,4r125,-8v31,0,46,6,46,20v-2,34,-46,5,-70,11v-56,2,-122,4,-164,18v-16,1,-13,-26,-4,-31v38,-26,171,-157,196,-195v-42,-2,-92,8,-133,8v-34,0,-49,-24,-25,-36","w":275,"k":{"a":-4,"\u00e6":-4,"\u0105":-4,"c":-2,"\u00e7":-2,"\u0107":-2,"\u010d":-2,"d":-4,"\u010f":-4,"\u0111":-4,"t":-4,"\u0165":-4,"v":7,"w":11,"g":-4,"\u011f":-4,"\u0123":-4,"o":11,"\u00f8":11,"\u0153":11,"q":7,"m":6,"n":4,"p":7,"r":11,"\u0155":11,"\u0157":11,"\u0159":11,"u":7,"\u0173":7,"f":7,"j":11,"\u00bb":-21,"y":4,"\u00ff":4,"\u00fd":4,"z":-11,"\u017e":-11,"\u017a":-11,"\u017c":-11,"i":9,"\u0131":9,"\u012f":9,"h":7,"b":11,"\u00fe":11,"k":7,"\u0137":7,"l":7,"\u0142":7,"\u013a":7,"\u013c":7,"\u013e":7}},"\u017c":{"d":"128,-232v2,22,-38,29,-43,9v-2,-8,11,-29,19,-29v14,0,23,7,24,20xm55,-30v15,5,78,-17,91,-12v33,-3,40,22,27,40v-34,-23,-123,-8,-151,12v-9,12,-35,11,-38,-4r23,-24v53,-54,93,-98,121,-133v-29,-7,-104,22,-110,-14v2,-26,30,-7,50,-9v30,3,70,-13,98,-5v4,2,6,6,5,11v-3,10,-34,48,-93,111v-14,15,-22,24,-23,27","w":180},"\u0109":{"d":"184,-204v-19,-7,-41,-52,-55,-68v-11,5,-45,54,-64,61v-10,3,-14,-21,-7,-27v23,-21,49,-51,75,-67v18,9,30,53,48,65v16,11,21,29,3,36xm165,-44v-1,21,-64,54,-94,54v-36,0,-52,-22,-54,-57v-3,-51,60,-148,104,-148v28,0,51,61,21,73v-14,6,-15,-47,-28,-43v-24,-1,-72,88,-68,117v10,61,82,14,113,-3v4,0,6,2,6,7","w":182},"\u0108":{"d":"213,-353v-12,3,-46,56,-64,60v-31,-28,33,-58,49,-80v21,-28,30,-8,43,19v12,26,28,28,38,56v0,6,-5,12,-11,12v-18,-7,-41,-51,-55,-67xm108,-12v34,0,78,-29,99,-41v5,0,7,2,7,8v-13,30,-67,62,-112,61v-44,0,-82,-32,-82,-80v0,-84,104,-210,180,-206v52,-8,64,85,18,91v-28,-6,16,-64,-19,-66v-71,11,-142,98,-146,177v-2,32,21,56,55,56","w":251},"\u017f":{"d":"125,-308v44,-5,46,68,17,82v-12,-7,4,-62,-23,-56v-12,0,-23,10,-31,32v-25,64,-26,226,-43,308v-6,30,-26,53,-58,54v-26,2,-65,-34,-45,-55v24,25,60,39,73,-8v9,-30,13,-127,21,-183v10,-68,28,-184,89,-174","w":98},"\u0153":{"d":"292,-60v-4,51,-135,111,-154,27v-10,17,-42,43,-70,42v-30,-1,-50,-32,-50,-64v-1,-53,41,-135,94,-133v28,1,46,21,53,45v25,-35,51,-52,79,-52v44,0,34,56,4,81v-19,16,-42,32,-72,49v-23,13,0,48,25,44v28,3,59,-24,86,-48v4,0,5,3,5,9xm170,-87v50,-30,75,-53,75,-71v-9,-24,-30,-5,-46,13v-14,16,-23,35,-29,58xm108,-160v-36,-2,-63,66,-62,101v0,21,8,39,25,40v35,0,71,-53,71,-93v0,-25,-12,-47,-34,-48","w":305},"\u010a":{"d":"230,-321v1,21,-39,28,-43,8v-1,-8,12,-29,19,-29v14,0,23,8,24,21xm108,-12v34,0,78,-29,99,-41v5,0,7,2,7,8v-13,30,-67,62,-112,61v-44,0,-82,-32,-82,-80v0,-84,104,-210,180,-206v52,-8,64,85,18,91v-28,-6,16,-64,-19,-66v-71,11,-142,98,-146,177v-2,32,21,56,55,56","w":251},"\u010b":{"d":"144,-235v0,23,-38,28,-43,8v-1,-8,13,-30,20,-29v13,0,23,7,23,21xm165,-44v-1,21,-64,54,-94,54v-36,0,-52,-22,-54,-57v-3,-51,60,-148,104,-148v28,0,51,61,21,73v-14,6,-15,-47,-28,-43v-24,-1,-72,88,-68,117v10,61,82,14,113,-3v4,0,6,2,6,7","w":182},"\u0111":{"d":"226,-30v-1,13,-30,35,-48,32v-24,4,-31,-40,-29,-75v-24,37,-54,75,-98,79v-24,2,-37,-21,-37,-48v0,-63,82,-180,148,-122r12,-56v-23,-4,-46,0,-70,0v-13,1,-22,-5,-16,-17v23,-13,59,-4,91,-6v9,-33,3,-50,29,-56v18,7,13,26,3,53v11,1,32,6,31,18v0,21,-27,8,-39,7v-18,68,-27,121,-27,158v0,45,23,37,44,25v4,0,6,3,6,8xm151,-131v2,-11,-13,-24,-25,-24v-36,0,-84,73,-84,110v0,15,5,22,15,22v42,0,87,-69,94,-108","w":238},"\u0114":{"d":"226,-330v-8,28,-38,51,-72,51v-27,0,-82,-51,-46,-71v12,16,24,45,49,46v27,2,43,-25,60,-40v3,-1,9,11,9,14xm211,-258v29,-6,35,24,16,31r-128,12v-16,10,-18,70,-22,84v35,2,86,-12,113,-14v30,-3,26,26,7,30v-11,3,-122,13,-122,19v-5,3,-13,60,-12,69v25,29,101,-7,140,-7v11,0,23,15,14,26v-39,13,-101,14,-157,21v-29,3,-30,-3,-33,-26v15,-48,28,-143,32,-198v-8,-10,-15,-32,6,-32v44,3,96,-5,146,-15","w":246},"\u0115":{"d":"176,-278v24,31,-27,65,-64,65v-25,0,-81,-50,-46,-71v14,14,23,46,49,46v28,0,43,-26,61,-40xm82,-21v28,3,59,-24,86,-48v4,0,6,3,6,9v0,27,-62,72,-97,69v-38,-3,-59,-24,-59,-63v0,-60,53,-145,108,-141v44,3,33,56,3,81v-19,16,-42,32,-71,49v-23,13,-1,48,24,44xm52,-87v50,-30,74,-53,74,-71v0,-7,-3,-11,-9,-11v-30,4,-59,48,-65,82","w":187},"\u011b":{"d":"175,-298v18,10,10,21,-11,37v-23,17,-40,73,-65,31v-23,-39,-35,-49,-46,-68v5,-20,26,-10,33,6v15,18,18,32,33,49v11,-18,39,-47,56,-55xm82,-21v28,3,59,-24,86,-48v4,0,6,3,6,9v0,27,-62,72,-97,69v-38,-3,-59,-24,-59,-63v0,-60,53,-145,108,-141v44,3,33,56,3,81v-19,16,-42,32,-71,49v-23,13,-1,48,24,44xm52,-87v50,-30,74,-53,74,-71v0,-7,-3,-11,-9,-11v-30,4,-59,48,-65,82","w":187},"\u00c8":{"d":"211,-258v29,-6,35,24,16,31r-128,12v-16,10,-18,70,-22,84v35,2,86,-12,113,-14v30,-3,26,26,7,30v-11,3,-122,13,-122,19v-5,3,-13,60,-12,69v25,29,101,-7,140,-7v11,0,23,15,14,26v-39,13,-101,14,-157,21v-29,3,-30,-3,-33,-26v15,-48,28,-143,32,-198v-8,-10,-15,-32,6,-32v44,3,96,-5,146,-15xm179,-303v11,11,-8,34,-20,18v-17,-23,-69,-53,-78,-75v3,-8,16,-18,26,-6v15,18,56,46,72,63","w":246,"k":{"J":-4,"\u00ed":9,"\u00ec":9,"\u00ee":9,"\u00ef":9,"\u012b":9,"V":-11,"Y":-7,"\u0178":-7,"\u00dd":-7,"W":-4,"t":-4,"\u0165":-4,"w":4,"z":-11,"\u017e":-11,"\u017a":-11,"\u017c":-11}},"\u014e":{"d":"244,-336v-9,27,-37,51,-72,51v-27,0,-83,-52,-46,-71v12,16,24,45,49,46v27,2,43,-25,60,-40v3,-1,9,11,9,14xm170,-257v66,0,110,25,108,94v-2,74,-66,134,-117,162v-18,9,-41,14,-69,14v-37,0,-74,-50,-72,-86v6,-85,63,-184,150,-184xm170,-232v-53,-3,-118,101,-118,157v0,30,23,58,51,58v68,0,142,-84,142,-153v0,-45,-34,-59,-75,-62","w":289},"\u014f":{"d":"187,-275v24,31,-28,65,-64,65v-26,0,-80,-50,-46,-71v14,14,22,47,49,47v28,0,44,-26,61,-41xm186,-115v0,55,-59,124,-111,124v-34,0,-56,-30,-56,-64v0,-55,48,-133,104,-133v37,0,63,35,63,73xm119,-160v-37,0,-70,64,-69,101v0,20,10,40,28,40v35,0,78,-52,78,-93v0,-26,-13,-48,-37,-48","w":203},"\u0168":{"d":"257,-327v-4,18,-34,60,-63,38v-12,-9,-25,-26,-40,-29v-22,1,-28,35,-49,37v-6,0,-8,-3,-8,-9v-2,-15,37,-56,52,-53v32,-2,41,32,65,36v14,2,23,-28,33,-31v6,0,10,4,10,11xm62,-102v0,96,115,111,146,42v23,-30,1,-191,45,-191v8,0,12,7,12,20v0,112,-3,248,-140,243v-80,-3,-112,-87,-85,-179v7,-28,4,-65,20,-85v11,-14,24,7,24,17v-7,21,-22,100,-22,133","w":278},"\u016c":{"d":"242,-332v-9,26,-38,50,-73,50v-26,0,-80,-50,-46,-71v14,14,22,47,49,47v28,0,43,-27,61,-41v4,-1,9,12,9,15xm62,-102v0,96,115,111,146,42v23,-30,1,-191,45,-191v8,0,12,7,12,20v0,112,-3,248,-140,243v-80,-3,-112,-87,-85,-179v7,-28,4,-65,20,-85v11,-14,24,7,24,17v-7,21,-22,100,-22,133","w":278},"\u0169":{"d":"171,-205v-32,2,-39,-30,-63,-35v-22,1,-28,35,-49,37v-6,0,-8,-4,-8,-10v-2,-14,36,-54,51,-52v34,-3,41,33,66,36v14,2,23,-28,33,-31v6,0,10,4,10,11v0,9,-26,47,-40,44xm175,7v-26,-5,-28,-45,-28,-83v-22,36,-49,73,-89,79v-66,-12,-20,-124,-16,-176v6,-16,34,-11,33,6v-2,28,-27,83,-25,110v5,51,30,25,56,0v22,-21,42,-75,58,-108v8,-10,26,-8,24,10v-14,46,-24,123,7,149v1,6,-14,14,-20,13","w":219},"\u016d":{"d":"195,-250v-8,28,-37,50,-72,50v-26,0,-80,-50,-46,-71v14,14,22,47,49,47v28,0,44,-26,61,-41v3,-1,8,12,8,15xm175,7v-26,-5,-28,-45,-28,-83v-22,36,-49,73,-89,79v-66,-12,-20,-124,-16,-176v6,-16,34,-11,33,6v-2,28,-27,83,-25,110v5,51,30,25,56,0v22,-21,42,-75,58,-108v8,-10,26,-8,24,10v-14,46,-24,123,7,149v1,6,-14,14,-20,13","w":219},"\u011c":{"d":"218,-349v-12,4,-47,56,-64,61v-31,-29,36,-57,49,-81v23,-26,30,-6,43,20v12,25,28,28,38,55v-1,6,-5,12,-11,13v-18,-7,-41,-52,-55,-68xm213,40v-40,-3,-13,-50,-11,-92v-43,34,-82,51,-117,51v-40,1,-64,-25,-64,-66v0,-93,106,-203,195,-203v22,0,43,8,44,25v1,10,-11,35,-21,34v-13,-8,-13,-31,-37,-28v-74,11,-150,87,-150,169v0,73,94,30,126,6v29,-23,35,-28,40,-67v1,-8,8,-13,19,-13v12,0,17,4,17,11v-13,45,-37,99,-25,155v0,7,-7,19,-16,18","w":279},"\u011d":{"d":"153,-268v-12,4,-47,56,-64,61v-31,-29,33,-59,49,-81v21,-27,28,-6,43,19v9,27,28,28,38,56v0,6,-5,12,-11,12v-18,-7,-42,-51,-55,-67xm-13,45v42,22,107,69,137,7v11,-23,19,-74,24,-116v-21,18,-58,58,-99,58v-22,0,-35,-15,-34,-37v4,-70,75,-138,143,-144v21,-2,37,13,39,32v-39,88,-3,256,-119,267v-34,3,-95,-36,-97,-59v0,-6,2,-8,6,-8xm59,-34v46,0,103,-61,103,-107v0,-13,-5,-19,-15,-19v-47,0,-102,65,-102,111v0,8,6,15,14,15","w":206},"\u0120":{"d":"248,-322v0,22,-38,27,-43,8v-2,-8,12,-29,19,-29v14,-1,24,7,24,21xm213,40v-40,-3,-13,-50,-11,-92v-43,34,-82,51,-117,51v-40,1,-64,-25,-64,-66v0,-93,106,-203,195,-203v22,0,43,8,44,25v1,10,-11,35,-21,34v-13,-8,-13,-31,-37,-28v-74,11,-150,87,-150,169v0,73,94,30,126,6v29,-23,35,-28,40,-67v1,-8,8,-13,19,-13v12,0,17,4,17,11v-13,45,-37,99,-25,155v0,7,-7,19,-16,18","w":279},"\u0121":{"d":"178,-236v1,21,-39,28,-43,8v-1,-8,12,-29,19,-29v14,0,23,8,24,21xm-13,45v42,22,107,69,137,7v11,-23,19,-74,24,-116v-21,18,-58,58,-99,58v-22,0,-35,-15,-34,-37v4,-70,75,-138,143,-144v21,-2,37,13,39,32v-39,88,-3,256,-119,267v-34,3,-95,-36,-97,-59v0,-6,2,-8,6,-8xm59,-34v46,0,103,-61,103,-107v0,-13,-5,-19,-15,-19v-47,0,-102,65,-102,111v0,8,6,15,14,15","w":206},"\u0124":{"d":"174,-350v-13,3,-46,57,-64,60v-7,0,-9,-5,-9,-16v10,-30,42,-42,59,-64v21,-27,29,-7,42,19v13,26,29,28,39,56v0,6,-5,12,-11,12v-19,-6,-41,-52,-56,-67xm236,-190v6,-28,-7,-73,21,-79v29,9,16,30,9,72v-7,44,-17,142,-17,183v0,20,-34,36,-36,8v0,-6,10,-79,10,-92v0,-11,-1,-16,-10,-15r-139,11v-15,27,-2,102,-28,115v-6,0,-21,-16,-20,-24v14,-59,33,-156,33,-233v0,-6,9,-13,14,-13v38,7,2,86,5,114v2,10,6,11,20,11v23,0,122,-4,130,-18v3,-6,3,-19,8,-40","w":290},"\u0125":{"d":"142,-298v-18,-7,-42,-51,-55,-68v-11,5,-45,54,-64,61v-10,3,-14,-21,-7,-27v23,-21,48,-52,75,-67v18,9,30,53,47,65v16,12,22,28,4,36xm90,-268v0,55,-43,158,-38,215v44,-81,80,-120,108,-120v42,0,23,112,50,137v14,13,6,27,-9,28v-41,3,-36,-84,-44,-117v-2,-8,-6,-11,-11,-11v-12,0,-37,33,-75,96v-16,27,-18,40,-39,47v-17,-2,-20,-14,-15,-35v16,-73,26,-148,34,-221v3,-23,6,-37,19,-42v11,0,20,10,20,23","w":225},"\u0128":{"d":"166,-332v0,19,-34,62,-62,38v-14,-7,-25,-27,-41,-29v-21,2,-27,35,-48,37v-6,0,-8,-3,-8,-9v-2,-15,36,-55,51,-53v32,-2,42,32,66,36v14,2,23,-28,33,-31v6,0,9,4,9,11xm34,-39v0,-63,17,-144,28,-205v4,-7,23,-21,29,-6v2,5,4,11,4,17v-8,28,-29,128,-29,164v0,28,16,73,-15,75v-17,-3,-17,-21,-17,-45","w":114},"\u0129":{"d":"111,-206v-32,3,-39,-30,-63,-35v-22,0,-27,35,-48,37v-6,0,-9,-3,-9,-9v-2,-14,37,-54,52,-52v33,-3,41,31,65,35v14,2,23,-30,34,-30v6,0,9,3,9,10v0,10,-26,47,-40,44xm79,-167v-15,62,-29,97,-18,163v-11,21,-35,17,-35,-18v0,-20,14,-95,18,-132v-6,-26,31,-37,35,-13","w":104},"\u012c":{"d":"152,-333v-9,26,-38,50,-72,50v-27,0,-83,-52,-46,-71v12,16,23,46,49,47v28,1,43,-26,60,-41v4,-1,9,12,9,15xm34,-39v0,-63,17,-144,28,-205v4,-7,23,-21,29,-6v2,5,4,11,4,17v-8,28,-29,128,-29,164v0,28,16,73,-15,75v-17,-3,-17,-21,-17,-45","w":114},"\u0132":{"d":"34,-39v0,-63,17,-144,28,-205v4,-7,23,-21,29,-6v2,5,4,11,4,17v-8,28,-29,128,-29,164v0,28,16,73,-15,75v-17,-3,-17,-21,-17,-45xm276,-251v0,-16,32,-20,31,-2v-7,91,-7,252,-103,255v-29,1,-91,-35,-92,-57v0,-10,6,-15,18,-15v23,11,54,46,75,42v70,-13,71,-143,71,-223","w":328},"\u0133":{"d":"80,-235v-18,-16,-15,-58,15,-55v5,-1,17,7,17,11v0,19,-13,45,-32,44xm79,-167v-15,62,-29,97,-18,163v-11,21,-35,17,-35,-18v0,-20,14,-95,18,-132v-6,-26,31,-37,35,-13xm208,-267v0,27,-45,38,-46,5v0,-13,4,-21,15,-22v10,2,31,3,31,17xm161,-183v11,-12,37,-4,29,16v-32,76,18,267,-85,279v-24,3,-76,-37,-54,-58v28,18,51,44,74,14v27,-36,19,-164,27,-230v1,-10,5,-17,9,-21","w":220},"\u0134":{"d":"186,-346v-12,3,-46,56,-64,60v-31,-28,36,-56,49,-80v23,-27,30,-8,43,19v12,26,28,28,38,56v-1,6,-5,11,-11,12v-18,-7,-41,-51,-55,-67xm162,-251v0,-16,32,-20,31,-2v-7,91,-7,252,-103,255v-29,1,-91,-35,-92,-57v0,-10,6,-15,18,-15v23,11,54,46,75,42v70,-13,71,-143,71,-223","w":214},"\u0135":{"d":"80,-259v-13,3,-46,57,-64,61v-10,2,-11,-20,-7,-27v18,-18,41,-35,57,-54v23,-26,27,-6,42,19v9,27,29,28,39,56v0,6,-5,12,-11,12v-19,-6,-41,-52,-56,-67xm57,-183v11,-12,37,-4,29,16v-32,76,18,267,-85,279v-24,3,-76,-37,-54,-58v28,18,51,44,74,14v27,-36,19,-164,27,-230v1,-10,5,-17,9,-21","w":116},"\u015c":{"d":"158,-344v-12,3,-46,57,-64,61v-31,-28,33,-58,49,-80v21,-28,29,-8,42,19v12,25,29,28,39,56v-1,6,-5,11,-11,12v-18,-7,-42,-51,-55,-68xm156,-258v37,0,73,14,59,50v-3,8,-8,12,-18,12v0,-31,-16,-33,-43,-34v-40,-1,-98,18,-98,50v0,64,150,39,153,108v-9,52,-89,86,-150,87v-21,0,-40,-3,-43,-17v-1,-6,5,-21,10,-21v52,24,139,-9,152,-47v-10,-23,-28,-19,-69,-35v-55,-21,-79,-25,-83,-72v-4,-51,76,-81,130,-81","w":229},"\u015d":{"d":"118,-277v-12,3,-46,56,-64,60v-7,0,-10,-5,-10,-16v10,-30,43,-41,60,-64v20,-27,27,-6,42,19v9,28,29,27,38,56v0,6,-5,12,-11,12v-19,-7,-40,-52,-55,-67xm4,-8v10,-27,53,0,80,-16v15,-4,24,-10,28,-16v-10,-32,-89,-41,-89,-80v0,-41,60,-77,92,-81v28,-3,36,30,15,35v-19,-17,-77,16,-77,37v0,41,84,35,87,83v2,38,-71,57,-108,57v-19,0,-28,-6,-28,-19","w":152},"\u0162":{"d":"121,-207v-17,-20,-92,13,-114,-7v-6,-23,7,-22,38,-22v68,1,118,-13,191,-16v19,0,40,0,40,18v-1,23,-34,8,-52,10v-16,2,-66,2,-72,11v-6,32,-25,161,-11,199v1,9,-6,21,-14,21v-22,-5,-20,-21,-22,-59v0,-24,6,-86,16,-155xm142,30v26,49,-23,92,-68,94v-3,0,-6,-2,-6,-8v0,-2,1,-4,2,-5v32,-6,48,-22,51,-44v3,-21,-15,-33,0,-44v3,0,19,5,21,7","w":241},"\u0163":{"d":"66,-53v1,65,54,13,79,0v5,0,7,3,7,8v-1,19,-47,53,-74,53v-71,0,-30,-111,-25,-151v-10,-7,-45,7,-45,-19v0,-19,30,-7,46,-11v25,-6,13,-77,41,-82v34,6,2,55,0,78v19,-2,41,-6,60,-5v16,0,19,0,21,11v-4,27,-70,12,-90,24v-2,0,-22,89,-20,94xm91,35v26,49,-23,92,-68,94v-3,0,-6,-2,-6,-8v0,-2,1,-4,2,-5v32,-6,48,-22,51,-44v3,-21,-15,-33,0,-44v3,0,19,5,21,7","w":168},"\u0174":{"d":"205,-345v-12,3,-47,56,-63,61v-31,-29,33,-59,49,-81v21,-28,29,-7,42,20v12,25,29,27,39,55v-1,6,-5,12,-11,13v-19,-7,-41,-53,-56,-68xm336,-249v2,-17,28,-16,27,6v-9,97,-47,153,-84,239v-33,19,-39,-11,-54,-49r-33,-86v-4,5,-11,17,-22,36v-44,80,-69,120,-74,120v-33,-11,-28,-32,-40,-88r-33,-160v1,-17,24,-27,30,-6v15,48,29,176,44,208v52,-85,50,-74,85,-151v5,-10,17,-14,23,-2v14,28,53,145,59,145v41,-68,63,-139,72,-212","w":364},"\u0175":{"d":"179,-268v-13,3,-46,57,-64,60v-7,0,-9,-5,-9,-16v10,-30,42,-42,59,-64v21,-27,29,-8,42,19v12,26,29,28,39,56v0,6,-5,12,-11,12v-18,-7,-41,-52,-56,-67xm238,-4v-52,-5,-49,-53,-75,-112v-18,18,-52,114,-80,127v-32,2,-60,-134,-58,-169v-5,-28,35,-44,38,-13v-10,39,1,117,23,135v19,-14,60,-120,86,-143v17,1,17,15,14,30v-5,28,26,97,41,103v27,-33,32,-142,79,-148v9,-1,12,14,8,21v-23,20,-52,126,-65,155v-4,9,-8,14,-11,14","w":317},"\u0176":{"d":"147,-347v-12,4,-47,56,-64,61v-10,2,-14,-21,-7,-27v23,-21,47,-53,75,-67v18,9,30,53,47,65v16,12,22,28,4,36v-18,-7,-41,-52,-55,-68xm115,10v-36,-15,12,-100,-5,-133v-21,-20,-53,-77,-82,-94v-21,-12,-33,-34,-8,-42v41,7,97,106,114,112r22,-24v39,-40,62,-66,70,-78v12,-19,35,-29,39,-4v-9,29,-89,91,-115,132v-12,19,-13,101,-19,126v-1,2,-12,6,-16,5","w":241},"\u0177":{"d":"131,-274v-13,3,-46,57,-64,61v-31,-29,33,-59,50,-81v21,-28,27,-5,42,20v9,26,30,27,39,56v-1,6,-5,11,-11,12v-20,-6,-41,-53,-56,-68xm90,82v42,0,64,-96,63,-144v-32,27,-58,47,-94,54v-67,-6,-23,-130,-9,-163v9,-12,32,-8,29,12v-11,27,-26,49,-27,87v0,8,4,34,15,31v51,-15,92,-35,92,-111v0,-23,6,-35,17,-35v14,1,15,8,15,24v0,87,-16,180,-46,239v-30,60,-129,25,-142,-16v0,-8,8,-24,15,-14v16,23,39,36,72,36","w":212},"\u012d":{"d":"138,-253v-9,27,-37,51,-72,51v-27,0,-81,-51,-46,-71v12,16,24,45,49,46v27,2,43,-25,60,-40v3,-1,9,11,9,14xm79,-167v-15,62,-29,97,-18,163v-11,21,-35,17,-35,-18v0,-20,14,-95,18,-132v-6,-26,31,-37,35,-13","w":104},"\u0138":{"d":"74,-181v-3,34,-16,61,-17,99v28,-19,100,-104,129,-104v22,0,15,28,0,35v-29,13,-65,38,-76,59v15,21,51,74,91,71v4,0,7,1,7,5v-2,13,-18,24,-36,24v-37,0,-64,-70,-93,-81v-19,11,-28,23,-24,67v2,19,-35,23,-36,4v0,-4,2,-14,5,-30v6,-29,11,-76,17,-142v-3,-20,36,-37,33,-7","w":212},"\u0126":{"d":"269,-211v30,-9,42,14,24,27r-29,2v-7,31,-16,135,-15,168v1,20,-34,36,-36,8v0,-6,10,-79,10,-92v0,-11,-1,-16,-10,-15r-139,11v-15,27,-2,102,-28,115v-6,0,-21,-16,-20,-24v10,-44,15,-73,25,-157v0,-3,-43,13,-43,-5v0,-24,23,-14,46,-21v4,-21,-2,-63,19,-63v22,0,18,34,13,57r152,-8v3,-27,-5,-57,19,-61v25,5,16,28,12,58xm81,-171v-4,24,-8,40,17,39v23,-1,120,-5,129,-17v3,-5,6,-15,8,-32v-47,7,-113,3,-154,10","w":290},"\u0127":{"d":"85,-224v42,1,103,-29,125,5v-4,25,-42,4,-67,14v-21,2,-44,0,-63,4r-22,92v-4,32,-14,49,-6,56v44,-81,79,-120,107,-120v44,0,22,112,50,137v15,13,7,26,-9,28v-42,2,-34,-85,-44,-117v-2,-8,-6,-11,-11,-11v-12,0,-36,33,-74,96v-16,27,-19,39,-39,47v-9,0,-19,-7,-18,-16r30,-188v-17,5,-43,-4,-25,-18v4,-2,13,-5,28,-8v5,-26,4,-63,23,-68v28,3,20,40,15,67","w":225},"\u0149":{"d":"246,-8v-50,10,-23,-121,-57,-127v-45,8,-66,137,-105,137v-14,0,-20,-7,-20,-20v3,-43,14,-89,12,-136v-1,-7,11,-23,17,-23v15,0,16,9,16,28v4,9,-15,77,-12,99v23,-27,63,-162,125,-105v23,21,-2,138,52,113v5,0,7,3,7,9v0,12,-20,27,-35,25xm90,-266v26,49,-23,92,-68,94v-3,0,-6,-2,-6,-8v0,-2,1,-4,2,-5v32,-6,48,-22,51,-44v3,-21,-15,-33,0,-44v3,0,19,5,21,7","w":284},"\u0166":{"d":"142,-139v29,-4,78,-19,90,9v-9,26,-54,5,-92,15v-3,45,-7,65,1,101v2,9,-6,21,-14,21v-35,-8,-20,-74,-17,-121r-61,7v-9,0,-14,-3,-14,-10v5,-18,55,-18,77,-19r9,-71v-7,-17,-74,3,-89,-1v-17,-1,-27,0,-27,-15v3,-16,13,-13,40,-13v68,0,118,-13,191,-16v19,0,40,0,40,18v-1,23,-34,8,-52,10v-17,2,-65,2,-72,11v-2,4,-5,28,-10,74","w":241},"\u0167":{"d":"71,-53v1,65,54,13,79,0v5,0,7,3,7,8v-1,19,-47,57,-74,53v-46,2,-47,-50,-38,-90v-21,5,-48,-6,-33,-27v7,-2,29,-1,40,0v3,-21,12,-32,2,-37v-17,3,-41,4,-41,-16v0,-19,30,-7,46,-11v25,-6,13,-77,41,-82v34,6,2,55,0,78v19,-2,41,-6,60,-5v16,0,19,0,21,11v-5,28,-71,9,-91,26v-1,2,-3,13,-8,34r74,-9v12,-1,17,8,12,17v-22,11,-63,15,-92,19v-3,15,-5,26,-5,31","w":181}}});

Cufon.replace('h5',{hover: true, fontFamily: 'Segoe Print'});


function Load(URL){
	window.location.href=URL
}

function externalLinks() {
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++) {
var anchor = anchors[i];
if (anchor.getAttribute("href") &&
anchor.getAttribute("rel") == "external")
anchor.target = "_blank";
}
}
window.onload = externalLinks;

