/*
 * 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")}})})();;
// $Id: drupal.js,v 1.41.2.4 2009/07/21 08:59:10 goba Exp $

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
Cufon.registerFont({"w":353,"face":{"font-family":"Archer Medium","font-weight":350,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"8","bbox":"-52 -1052 971 278","underline-thickness":"50","underline-position":"-50","stemh":"59","stemv":"69","unicode-range":"U+0020-U+FB04"},"glyphs":{" ":{"w":227},"A":{"d":"18,0r0,-66r63,0r197,-527r-75,0r0,-65r300,0r0,65r-75,0r197,527r63,0r0,66r-220,0r0,-65r77,0r-59,-162r-269,0r-59,162r80,0r0,65r-220,0xm239,-290r225,0r-112,-307","w":706},"B":{"d":"47,0r0,-66r84,0r0,-526r-84,0r0,-66r264,0v156,0,221,79,221,167v0,79,-49,132,-120,154v88,23,139,72,139,157v0,104,-83,180,-228,180r-276,0xm205,-65r120,0v97,0,152,-49,152,-119v0,-79,-65,-121,-173,-121r-99,0r0,240xm205,-366r97,0v104,0,156,-48,156,-118v0,-68,-52,-109,-149,-109r-104,0r0,227","w":605},"C":{"d":"393,12v-203,0,-337,-157,-337,-338v0,-203,156,-344,334,-344v138,0,246,83,246,162v0,37,-25,65,-58,65v-31,0,-55,-23,-55,-53v0,-19,12,-35,25,-40v-18,-29,-75,-66,-159,-66v-150,0,-257,127,-257,275v0,141,106,271,261,271v79,0,145,-30,204,-85r44,53v-66,66,-157,100,-248,100","w":702},"D":{"d":"47,0r0,-66r84,0r0,-526r-84,0r0,-66r247,0v229,0,378,127,378,322v0,199,-139,336,-381,336r-244,0xm206,-66r94,0v197,0,296,-110,296,-271v0,-158,-118,-255,-304,-255r-86,0r0,526","w":728},"E":{"d":"47,0r0,-66r84,0r0,-526r-84,0r0,-66r478,0r0,161r-71,0r0,-96r-248,0r0,226r215,0r0,64r-215,0r0,238r248,0r0,-96r72,0r0,161r-479,0","w":588},"F":{"d":"47,0r0,-66r84,0r0,-526r-84,0r0,-66r471,0r0,161r-72,0r0,-96r-240,0r0,238r211,0r0,64r-211,0r0,225r91,0r0,66r-250,0","w":567},"G":{"d":"376,12v-166,0,-320,-126,-320,-336v0,-208,159,-346,341,-346v148,0,247,82,247,152v0,37,-24,62,-56,62v-31,0,-54,-23,-54,-53v0,-17,7,-30,17,-38v-25,-27,-82,-55,-156,-55v-156,0,-263,122,-263,278v0,162,116,270,252,270v75,0,138,-23,195,-63r0,-140r-182,0r0,-63r255,0r0,320r-71,0r0,-57v-57,43,-122,69,-205,69","w":737},"H":{"d":"47,0r0,-66r84,0r0,-526r-84,0r0,-66r245,0r0,66r-86,0r0,222r364,0r0,-222r-86,0r0,-66r245,0r0,66r-84,0r0,526r84,0r0,66r-245,0r0,-66r86,0r0,-238r-364,0r0,238r86,0r0,66r-245,0","w":776},"I":{"d":"48,0r0,-66r89,0r0,-526r-89,0r0,-66r252,0r0,66r-89,0r0,526r89,0r0,66r-252,0","w":348},"J":{"d":"216,12v-102,0,-186,-71,-186,-161v0,-46,26,-77,62,-77v26,0,51,21,51,51v0,22,-14,41,-36,46v3,30,41,72,109,72v34,0,65,-11,87,-34v27,-26,38,-71,38,-133r0,-368r-101,0r0,-66r254,0r0,66r-79,0r0,369v0,77,-19,142,-58,181v-35,35,-82,54,-141,54","w":529},"K":{"d":"47,0r0,-66r84,0r0,-526r-84,0r0,-66r245,0r0,65r-86,0r0,287r285,-287r-88,0r0,-65r254,0r0,66r-74,0r-214,213r210,313r83,0r0,66r-131,0r-217,-330r-108,108r0,156r86,0r0,66r-245,0","w":675},"L":{"d":"47,0r0,-66r84,0r0,-526r-84,0r0,-66r250,0r0,66r-91,0r0,527r228,0r0,-101r71,0r0,166r-458,0","w":554},"M":{"d":"42,0r0,-66r86,0r24,-526r-88,0r0,-66r160,0r215,447r216,-447r159,0r0,66r-88,0r24,526r85,0r0,66r-242,0r0,-66r84,0r-17,-460r-212,433r-20,0r-212,-433r-16,460r83,0r0,66r-241,0","w":882},"N":{"d":"606,3r-403,-531r0,462r86,0r0,66r-242,0r0,-66r84,0r0,-526r-84,0r0,-66r149,0r380,501r0,-435r-87,0r0,-66r239,0r0,66r-81,0r0,594","w":764},"O":{"d":"387,12v-192,0,-331,-150,-331,-340v0,-193,141,-342,335,-342v191,0,331,150,331,340v0,193,-142,342,-335,342xm389,-56v150,0,256,-118,256,-272v0,-155,-106,-274,-256,-274v-151,0,-257,118,-257,272v0,155,106,274,257,274","w":777},"P":{"d":"47,0r0,-66r84,0r0,-526r-84,0r0,-66r253,0v138,0,243,80,243,207v0,135,-98,214,-244,214v-36,0,-74,-1,-93,-2r0,173r89,0r0,66r-248,0xm303,-302v102,0,165,-57,165,-148v0,-90,-73,-142,-167,-142r-95,0r0,288v20,1,55,2,97,2","w":581},"Q":{"d":"655,139v-91,0,-157,-62,-213,-96v-30,-19,-63,-30,-99,-36v-71,-11,-133,-39,-181,-83v-65,-58,-106,-151,-106,-252v0,-193,141,-342,335,-342v191,0,331,150,331,340v0,163,-99,290,-243,322v19,7,38,18,56,29v46,30,75,47,117,47v30,0,50,-5,81,-26r34,60v-37,29,-74,37,-112,37xm389,-56v150,0,256,-118,256,-272v0,-155,-106,-274,-256,-274v-151,0,-257,118,-257,272v0,83,31,157,83,206v45,43,104,68,174,68","w":777},"R":{"d":"47,0r0,-66r84,0r0,-526r-84,0r0,-66r250,0v145,0,239,73,239,191v0,90,-58,153,-141,180r138,221r79,0r0,66r-130,0r-162,-269v-12,1,-25,2,-38,2v-26,0,-57,-1,-76,-2r0,203r86,0r0,66r-245,0xm286,-332v100,0,175,-46,175,-133v0,-83,-66,-127,-168,-127r-87,0r0,258v20,1,48,2,80,2","w":618},"S":{"d":"274,11v-129,0,-219,-72,-219,-136v0,-38,23,-63,53,-63v31,0,52,23,52,49v0,18,-7,32,-16,44v22,22,71,41,131,41v88,0,141,-45,141,-116v0,-68,-62,-98,-137,-127v-113,-43,-199,-85,-199,-198v0,-101,80,-175,203,-175v108,0,196,62,196,130v0,37,-24,58,-52,58v-32,0,-53,-24,-53,-51v0,-16,7,-29,14,-38v-18,-20,-66,-33,-107,-33v-79,0,-127,43,-127,103v0,70,62,99,145,131v108,42,191,83,191,194v0,116,-92,187,-216,187","w":549},"T":{"d":"189,0r0,-66r89,0r0,-529r-165,0r0,106r-71,0r0,-169r547,0r0,169r-71,0r0,-106r-165,0r0,529r89,0r0,66r-253,0","w":631},"U":{"d":"354,12v-150,0,-238,-85,-238,-239r0,-365r-83,0r0,-66r243,0r0,66r-87,0r0,360v0,117,61,176,166,176v105,0,167,-56,167,-174r0,-362r-87,0r0,-66r242,0r0,66r-83,0r0,362v0,156,-92,242,-240,242","w":710},"V":{"d":"327,10r-244,-602r-65,0r0,-66r222,0r0,66r-75,0r185,475r185,-475r-79,0r0,-66r222,0r0,66r-64,0r-244,602r-43,0","w":696},"W":{"d":"284,10r-187,-602r-76,0r0,-66r238,0r0,66r-83,0r138,461r165,-448r41,0r166,447r134,-460r-86,0r0,-66r237,0r0,66r-76,0r-184,602r-43,0r-170,-453r-171,453r-43,0","w":990},"X":{"d":"40,0r0,-66r69,0r208,-271r-193,-255r-72,0r0,-66r229,0r0,64r-72,0r153,214r156,-214r-77,0r0,-64r229,0r0,66r-71,0r-194,254r207,272r69,0r0,66r-227,0r0,-64r73,0r-167,-231r-170,231r77,0r0,64r-227,0","w":721},"Y":{"d":"191,0r0,-66r92,0r0,-197r-194,-329r-70,0r0,-66r221,0r0,66r-68,0r150,265r151,-265r-71,0r0,-66r222,0r0,66r-71,0r-195,328r0,198r93,0r0,66r-260,0","w":642},"Z":{"d":"45,0r0,-36r403,-560r-314,0r0,104r-68,0r0,-166r488,0r0,36r-403,560r343,0r0,-104r67,0r0,166r-516,0","w":606},"a":{"d":"186,8v-82,0,-141,-49,-141,-122v0,-78,69,-129,164,-129v46,0,101,12,123,20r0,-59v0,-24,-7,-45,-19,-60v-19,-21,-50,-34,-93,-34v-34,0,-52,9,-66,18v3,7,6,16,6,25v0,25,-18,44,-45,44v-26,0,-44,-20,-44,-46v0,-49,56,-99,158,-99v63,0,109,19,137,50v22,24,32,56,32,92r0,232r69,0r0,60r-133,0r0,-54v-35,34,-90,62,-148,62xm204,-48v51,0,95,-26,128,-59r0,-71v-32,-9,-74,-17,-115,-17v-68,0,-102,32,-102,76v0,41,31,71,89,71","w":492},"b":{"d":"285,8v-54,0,-103,-21,-140,-52r-21,45r-43,0r0,-673r-68,0r0,-60r137,0r0,362v36,-35,78,-64,146,-64v111,0,203,89,203,221v0,122,-88,221,-214,221xm281,-52v82,0,147,-64,147,-160v0,-97,-61,-162,-144,-162v-55,0,-99,28,-134,64r0,210v33,26,76,48,131,48","w":545},"c":{"d":"268,8v-129,0,-226,-94,-226,-220v0,-118,94,-222,213,-222v97,0,174,64,174,128v0,32,-23,58,-54,58v-23,0,-46,-17,-46,-47v0,-14,8,-27,21,-35v-11,-26,-53,-45,-96,-45v-63,0,-141,55,-141,164v0,93,66,158,163,158v48,0,92,-15,142,-47r-6,67v-43,29,-98,41,-144,41","w":473},"d":{"d":"246,8v-113,0,-202,-88,-202,-218v0,-121,83,-224,211,-224v53,0,99,20,132,51r0,-289r-80,0r0,-60r149,0r0,672r69,0r0,60r-136,0r0,-60v-36,40,-80,68,-143,68xm256,-52v55,0,97,-28,131,-64r0,-209v-32,-27,-72,-49,-128,-49v-84,0,-143,69,-143,163v-1,95,59,159,140,159","w":550},"e":{"d":"441,-193r-328,0v10,94,72,140,164,140v57,0,100,-18,150,-47r-6,67v-44,27,-99,41,-153,41v-136,0,-227,-90,-227,-220v0,-118,79,-222,209,-222v127,0,195,95,195,201v0,16,-1,29,-4,40xm246,-375v-65,0,-122,46,-132,127r261,0v-5,-75,-48,-127,-129,-127","w":485},"f":{"d":"291,-636v-28,0,-44,-18,-52,-42v-13,3,-25,9,-33,20v-15,18,-23,47,-23,89r0,143r110,0r0,61r-110,0r0,305r83,0r0,60r-221,0r0,-60r69,0r0,-305r-76,0r0,-61r76,0r0,-127v0,-69,12,-115,45,-148v25,-24,55,-39,97,-39v46,0,78,22,78,57v0,28,-19,47,-43,47","w":318},"g":{"d":"457,-365r0,379v0,53,-14,94,-39,124v-36,44,-96,62,-162,62v-67,0,-119,-21,-145,-46v-15,-15,-22,-32,-22,-49v0,-29,21,-52,50,-52v25,0,42,19,42,43v0,10,-3,20,-9,28v13,8,41,17,84,17v42,0,82,-11,107,-42v16,-20,25,-46,25,-82r0,-83v-35,36,-77,63,-142,63v-111,0,-202,-88,-202,-212v0,-115,84,-219,211,-219v57,0,102,23,136,55r0,-47r135,0r0,61r-69,0xm261,-373v-87,0,-145,68,-145,157v0,90,59,153,141,153v54,0,97,-26,131,-62r0,-200v-31,-27,-72,-48,-127,-48","w":556},"h":{"d":"99,-672r-68,0r0,-60r137,0r0,383v41,-47,97,-85,158,-85v50,0,86,17,108,46v19,25,28,59,28,98r0,230r69,0r0,60r-205,0r0,-60r67,0r0,-216v0,-31,-6,-52,-19,-67v-14,-18,-37,-27,-66,-27v-53,0,-102,33,-140,75r0,235r67,0r0,60r-204,0r0,-60r68,0r0,-612","w":556},"i":{"d":"140,-535v-30,0,-55,-25,-55,-55v0,-30,26,-56,56,-56v29,0,54,26,54,56v0,30,-26,55,-55,55xm43,0r0,-60r72,0r0,-305r-72,0r0,-61r141,0r0,366r72,0r0,60r-213,0","w":290},"j":{"d":"-52,135v0,-24,18,-47,45,-47v26,0,43,19,43,45v0,2,-1,7,-1,11r6,0v30,0,52,-21,63,-59v7,-23,11,-53,11,-87r0,-363r-82,0r0,-61r151,0r0,416v0,50,-7,90,-19,121v-24,62,-70,89,-126,89v-58,0,-91,-31,-91,-65xm137,-535v-30,0,-55,-25,-55,-55v0,-30,26,-56,56,-56v29,0,54,26,54,56v0,30,-25,55,-55,55","w":259},"k":{"d":"31,0r0,-60r68,0r0,-612r-68,0r0,-60r137,0r0,518r178,-154r-83,0r0,-58r241,0r0,61r-76,0r-134,115r132,190r78,0r0,60r-118,0r-142,-212r-76,64r0,89r69,0r0,59r-206,0","w":524},"l":{"d":"33,0r0,-60r72,0r0,-612r-72,0r0,-60r141,0r0,672r72,0r0,60r-213,0","w":278},"m":{"d":"41,0r0,-60r68,0r0,-305r-68,0r0,-61r134,0r0,79v37,-46,93,-87,155,-87v53,0,87,19,106,51v6,10,10,21,13,33v46,-47,101,-84,157,-84v61,0,97,23,116,62v10,23,15,51,15,82r0,230r68,0r0,60r-203,0r0,-60r66,0r0,-217v0,-23,-3,-40,-8,-54v-11,-27,-33,-39,-67,-39v-51,0,-94,31,-135,73r0,237r66,0r0,60r-203,0r0,-60r68,0r0,-217v0,-23,-3,-40,-8,-54v-11,-27,-33,-39,-68,-39v-52,0,-96,34,-135,75r0,235r66,0r0,60r-203,0","w":831},"n":{"d":"175,-426r0,79v40,-47,99,-87,160,-87v55,0,92,21,113,55v14,24,21,54,21,89r0,230r68,0r0,60r-204,0r0,-60r67,0r0,-216v0,-23,-3,-42,-11,-57v-12,-25,-36,-37,-71,-37v-53,0,-102,33,-140,75r0,235r67,0r0,60r-204,0r0,-60r68,0r0,-305r-68,0r0,-61r134,0","w":563},"o":{"d":"263,8v-133,0,-219,-99,-219,-221v0,-120,87,-221,219,-221v132,0,219,100,219,221v0,121,-87,221,-219,221xm263,-52v87,0,147,-66,147,-161v0,-94,-60,-161,-147,-161v-87,0,-147,67,-147,161v0,95,60,161,147,161","w":526},"p":{"d":"31,196r0,-60r68,0r0,-501r-68,0r0,-61r135,0r0,61v36,-40,79,-69,143,-69v112,0,201,88,201,219v0,120,-83,223,-210,223v-50,0,-97,-19,-132,-49r0,177r82,0r0,60r-219,0xm296,-53v83,0,141,-68,142,-161v1,-96,-59,-159,-139,-159v-55,0,-96,27,-131,63r0,210v32,27,73,47,128,47","w":555},"q":{"d":"308,196r0,-60r85,0r0,-192v-36,36,-78,64,-146,64v-111,0,-203,-89,-203,-221v0,-122,88,-221,214,-221v54,0,103,21,140,53r21,-45r43,0r0,562r69,0r0,60r-223,0xm259,-53v55,0,99,-26,134,-62r0,-211v-33,-26,-75,-47,-131,-47v-82,0,-146,63,-146,160v0,96,61,160,143,160","w":531},"r":{"d":"305,-434v42,0,64,27,64,56v0,27,-21,51,-48,51v-26,0,-44,-17,-51,-36v-32,9,-71,47,-92,90r0,213r80,0r0,60r-217,0r0,-60r68,0r0,-305r-68,0r0,-61r134,0r0,97v33,-59,84,-105,130,-105","w":380},"s":{"d":"376,-341v0,27,-18,46,-42,46v-26,0,-46,-18,-46,-44v0,-7,1,-16,5,-24v-15,-10,-43,-15,-75,-15v-59,0,-93,31,-93,62v0,37,39,50,109,68v86,21,158,45,158,128v0,81,-79,128,-170,128v-62,0,-125,-20,-154,-49v-15,-15,-23,-32,-23,-53v0,-25,18,-47,43,-47v27,0,46,18,46,44v0,9,-3,17,-7,26v14,11,49,24,95,24v58,0,104,-25,104,-66v0,-39,-40,-54,-101,-69v-103,-26,-167,-50,-167,-129v0,-64,60,-123,162,-123v57,0,108,18,134,44v15,15,22,31,22,49","w":437},"t":{"d":"200,8v-45,0,-77,-17,-94,-50v-8,-16,-11,-36,-11,-59r0,-264r-79,0r0,-61r79,0r0,-103r68,-27r0,130r131,0r0,61r-131,0r0,254v0,14,2,24,7,33v8,15,24,22,50,22v25,0,56,-12,80,-26r-9,66v-22,12,-52,24,-91,24","w":333},"u":{"d":"228,8v-56,0,-93,-21,-114,-57v-13,-23,-20,-53,-20,-87r0,-229r-68,0r0,-61r137,0r0,277v0,24,4,43,12,57v13,25,35,36,70,36v53,0,100,-34,140,-75r0,-234r-70,0r0,-61r139,0r0,366r68,0r0,60r-135,0r0,-79v-40,47,-98,87,-159,87","w":553},"v":{"d":"242,14r-179,-379r-56,0r0,-61r198,0r0,59r-68,0r126,281r125,-281r-70,0r0,-59r197,0r0,61r-56,0r-179,379r-38,0","w":522},"w":{"d":"187,18r-117,-383r-63,0r0,-61r197,0r0,59r-68,0r77,269r119,-280r37,0r118,280r77,-269r-72,0r0,-59r197,0r0,61r-64,0r-116,383r-38,0r-123,-290r-124,290r-37,0","w":696},"x":{"d":"20,0r0,-60r58,0r136,-156r-128,-149r-59,0r0,-61r186,0r0,57r-54,0r93,119r94,-119r-56,0r0,-57r185,0r0,61r-59,0r-127,147r137,158r57,0r0,60r-190,0r0,-56r59,0r-102,-129r-103,129r62,0r0,56r-189,0","w":503},"y":{"d":"212,128v-32,46,-67,72,-110,72v-40,0,-74,-23,-74,-56v0,-28,19,-44,43,-44v24,0,39,18,45,37v16,-6,32,-19,51,-48v10,-15,20,-36,32,-60r26,-53r-160,-341r-59,0r0,-61r199,0r0,59r-67,0v0,0,121,274,120,274r122,-274r-70,0r0,-59r196,0r0,61r-58,0r-201,432v-11,23,-22,43,-35,61","w":513},"z":{"d":"37,0r0,-31r273,-338r-195,0r0,83r-61,0r0,-140r356,0r0,31r-273,338r216,0r0,-83r61,0r0,140r-377,0","w":450},"\u00c1":{"d":"18,0r0,-66r63,0r197,-527r-75,0r0,-65r300,0r0,65r-75,0r197,527r63,0r0,66r-220,0r0,-65r77,0r-59,-162r-269,0r-59,162r80,0r0,65r-220,0xm239,-290r225,0r-112,-307xm323,-717r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44","w":706},"\u00e1":{"d":"186,8v-82,0,-141,-49,-141,-122v0,-78,69,-129,164,-129v46,0,101,12,123,20r0,-59v0,-24,-7,-45,-19,-60v-19,-21,-50,-34,-93,-34v-34,0,-52,9,-66,18v3,7,6,16,6,25v0,25,-18,44,-45,44v-26,0,-44,-20,-44,-46v0,-49,56,-99,158,-99v63,0,109,19,137,50v22,24,32,56,32,92r0,232r69,0r0,60r-133,0r0,-54v-35,34,-90,62,-148,62xm204,-48v51,0,95,-26,128,-59r0,-71v-32,-9,-74,-17,-115,-17v-68,0,-102,32,-102,76v0,41,31,71,89,71xm211,-503r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44","w":492},"\u0102":{"d":"18,0r0,-66r63,0r197,-527r-75,0r0,-65r300,0r0,65r-75,0r197,527r63,0r0,66r-220,0r0,-65r77,0r-59,-162r-269,0r-59,162r80,0r0,65r-220,0xm239,-290r225,0r-112,-307xm351,-722v-73,0,-133,-52,-159,-136r49,-21v22,57,66,88,110,88v48,0,89,-35,110,-88r49,21v-25,84,-86,136,-159,136","w":706},"\u0103":{"d":"186,8v-82,0,-141,-49,-141,-122v0,-78,69,-129,164,-129v46,0,101,12,123,20r0,-59v0,-24,-7,-45,-19,-60v-19,-21,-50,-34,-93,-34v-34,0,-52,9,-66,18v3,7,6,16,6,25v0,25,-18,44,-45,44v-26,0,-44,-20,-44,-46v0,-49,56,-99,158,-99v63,0,109,19,137,50v22,24,32,56,32,92r0,232r69,0r0,60r-133,0r0,-54v-35,34,-90,62,-148,62xm204,-48v51,0,95,-26,128,-59r0,-71v-32,-9,-74,-17,-115,-17v-68,0,-102,32,-102,76v0,41,31,71,89,71xm239,-508v-73,0,-133,-52,-159,-136r49,-21v22,57,66,88,110,88v48,0,89,-35,110,-88r49,21v-25,84,-86,136,-159,136","w":492},"\u00c2":{"d":"18,0r0,-66r63,0r197,-527r-75,0r0,-65r300,0r0,65r-75,0r197,527r63,0r0,66r-220,0r0,-65r77,0r-59,-162r-269,0r-59,162r80,0r0,65r-220,0xm239,-290r225,0r-112,-307xm229,-714r-31,-37r154,-147r154,147r-31,37r-123,-93","w":706},"\u00e2":{"d":"186,8v-82,0,-141,-49,-141,-122v0,-78,69,-129,164,-129v46,0,101,12,123,20r0,-59v0,-24,-7,-45,-19,-60v-19,-21,-50,-34,-93,-34v-34,0,-52,9,-66,18v3,7,6,16,6,25v0,25,-18,44,-45,44v-26,0,-44,-20,-44,-46v0,-49,56,-99,158,-99v63,0,109,19,137,50v22,24,32,56,32,92r0,232r69,0r0,60r-133,0r0,-54v-35,34,-90,62,-148,62xm204,-48v51,0,95,-26,128,-59r0,-71v-32,-9,-74,-17,-115,-17v-68,0,-102,32,-102,76v0,41,31,71,89,71xm117,-500r-31,-37r154,-147r154,147r-31,37r-123,-93","w":492},"\u00c4":{"d":"18,0r0,-66r63,0r197,-527r-75,0r0,-65r300,0r0,65r-75,0r197,527r63,0r0,66r-220,0r0,-65r77,0r-59,-162r-269,0r-59,162r80,0r0,65r-220,0xm239,-290r225,0r-112,-307xm439,-733v-32,0,-57,-26,-57,-57v0,-32,26,-58,57,-58v32,0,56,26,56,58v0,31,-25,57,-56,57xm264,-733v-31,0,-56,-26,-56,-57v0,-32,26,-58,57,-58v31,0,56,26,56,58v0,31,-25,57,-57,57","w":706},"\u00e4":{"d":"186,8v-82,0,-141,-49,-141,-122v0,-78,69,-129,164,-129v46,0,101,12,123,20r0,-59v0,-24,-7,-45,-19,-60v-19,-21,-50,-34,-93,-34v-34,0,-52,9,-66,18v3,7,6,16,6,25v0,25,-18,44,-45,44v-26,0,-44,-20,-44,-46v0,-49,56,-99,158,-99v63,0,109,19,137,50v22,24,32,56,32,92r0,232r69,0r0,60r-133,0r0,-54v-35,34,-90,62,-148,62xm204,-48v51,0,95,-26,128,-59r0,-71v-32,-9,-74,-17,-115,-17v-68,0,-102,32,-102,76v0,41,31,71,89,71xm327,-519v-32,0,-57,-26,-57,-57v0,-32,26,-58,57,-58v32,0,56,26,56,58v0,31,-25,57,-56,57xm152,-519v-31,0,-56,-26,-56,-57v0,-32,26,-58,57,-58v31,0,56,26,56,58v0,31,-25,57,-57,57","w":492},"\u00c6":{"d":"-5,0r0,-66r79,0r261,-526r-73,0r0,-66r562,0r0,161r-71,0r0,-96r-248,0r0,226r215,0r0,64r-215,0r0,238r248,0r0,-96r72,0r0,161r-472,0r0,-66r77,0r0,-161r-203,0r-80,162r71,0r0,65r-223,0xm257,-290r173,0r0,-303r-24,0","w":887},"\u00e6":{"d":"220,-375v-34,0,-52,8,-66,17v3,7,6,16,6,25v0,25,-18,44,-45,44v-26,0,-44,-20,-44,-46v0,-49,56,-99,158,-99v58,0,100,19,126,51v7,10,14,21,18,32v34,-50,88,-83,158,-83v124,0,192,95,192,201v0,16,-1,29,-3,40r-328,0v10,96,70,140,164,140v56,0,99,-18,149,-47r-6,67v-44,27,-99,41,-150,41v-82,0,-143,-31,-180,-84v-56,58,-125,84,-180,84v-85,0,-144,-49,-144,-122v0,-78,69,-129,164,-129v46,0,101,12,123,20r0,-55v0,-25,-8,-47,-20,-61v-19,-23,-51,-36,-92,-36xm205,-48v47,0,93,-18,144,-64v-9,-20,-14,-42,-17,-66v-41,-11,-79,-17,-115,-17v-68,0,-102,32,-102,76v0,41,31,71,90,71xm524,-375v-64,0,-121,46,-131,127r261,0v-5,-75,-49,-127,-130,-127","w":762},"\u01fc":{"d":"462,-717r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm-5,0r0,-66r79,0r261,-526r-73,0r0,-66r562,0r0,161r-71,0r0,-96r-248,0r0,226r215,0r0,64r-215,0r0,238r248,0r0,-96r72,0r0,161r-472,0r0,-66r77,0r0,-161r-203,0r-80,162r71,0r0,65r-223,0xm257,-290r173,0r0,-303r-24,0","w":887},"\u01fd":{"d":"220,-375v-34,0,-52,8,-66,17v3,7,6,16,6,25v0,25,-18,44,-45,44v-26,0,-44,-20,-44,-46v0,-49,56,-99,158,-99v58,0,100,19,126,51v7,10,14,21,18,32v34,-50,88,-83,158,-83v124,0,192,95,192,201v0,16,-1,29,-3,40r-328,0v10,96,70,140,164,140v56,0,99,-18,149,-47r-6,67v-44,27,-99,41,-150,41v-82,0,-143,-31,-180,-84v-56,58,-125,84,-180,84v-85,0,-144,-49,-144,-122v0,-78,69,-129,164,-129v46,0,101,12,123,20r0,-55v0,-25,-8,-47,-20,-61v-19,-23,-51,-36,-92,-36xm205,-48v47,0,93,-18,144,-64v-9,-20,-14,-42,-17,-66v-41,-11,-79,-17,-115,-17v-68,0,-102,32,-102,76v0,41,31,71,90,71xm524,-375v-64,0,-121,46,-131,127r261,0v-5,-75,-49,-127,-130,-127xm354,-503r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44","w":762},"\u00c0":{"d":"18,0r0,-66r63,0r197,-527r-75,0r0,-65r300,0r0,65r-75,0r197,527r63,0r0,66r-220,0r0,-65r77,0r-59,-162r-269,0r-59,162r80,0r0,65r-220,0xm239,-290r225,0r-112,-307xm381,-717r-151,-86v-21,-13,-34,-30,-34,-44v0,-27,19,-43,40,-43v15,0,29,9,43,23r120,126","w":706},"\u00e0":{"d":"186,8v-82,0,-141,-49,-141,-122v0,-78,69,-129,164,-129v46,0,101,12,123,20r0,-59v0,-24,-7,-45,-19,-60v-19,-21,-50,-34,-93,-34v-34,0,-52,9,-66,18v3,7,6,16,6,25v0,25,-18,44,-45,44v-26,0,-44,-20,-44,-46v0,-49,56,-99,158,-99v63,0,109,19,137,50v22,24,32,56,32,92r0,232r69,0r0,60r-133,0r0,-54v-35,34,-90,62,-148,62xm204,-48v51,0,95,-26,128,-59r0,-71v-32,-9,-74,-17,-115,-17v-68,0,-102,32,-102,76v0,41,31,71,89,71xm269,-503r-151,-86v-21,-13,-34,-30,-34,-44v0,-27,19,-43,40,-43v15,0,29,9,43,23r120,126","w":492},"\u0100":{"d":"18,0r0,-66r63,0r197,-527r-75,0r0,-65r300,0r0,65r-75,0r197,527r63,0r0,66r-220,0r0,-65r77,0r-59,-162r-269,0r-59,162r80,0r0,65r-220,0xm239,-290r225,0r-112,-307xm200,-749r0,-63r304,0r0,63r-304,0","w":706},"\u0101":{"d":"186,8v-82,0,-141,-49,-141,-122v0,-78,69,-129,164,-129v46,0,101,12,123,20r0,-59v0,-24,-7,-45,-19,-60v-19,-21,-50,-34,-93,-34v-34,0,-52,9,-66,18v3,7,6,16,6,25v0,25,-18,44,-45,44v-26,0,-44,-20,-44,-46v0,-49,56,-99,158,-99v63,0,109,19,137,50v22,24,32,56,32,92r0,232r69,0r0,60r-133,0r0,-54v-35,34,-90,62,-148,62xm204,-48v51,0,95,-26,128,-59r0,-71v-32,-9,-74,-17,-115,-17v-68,0,-102,32,-102,76v0,41,31,71,89,71xm88,-535r0,-63r304,0r0,63r-304,0","w":492},"\u0104":{"d":"584,201v-70,0,-106,-38,-106,-93v0,-45,26,-81,64,-108r-74,0r0,-65r77,0r-59,-162r-269,0r-59,162r80,0r0,65r-220,0r0,-66r63,0r197,-527r-75,0r0,-65r300,0r0,65r-75,0r197,527r63,0r0,66r-75,0v-43,23,-72,55,-72,92v0,32,18,52,55,52v30,0,56,-8,78,-19r-4,53v-15,11,-49,23,-86,23xm239,-290r225,0r-112,-307","w":706},"\u0105":{"d":"373,201v-70,0,-106,-38,-106,-93v0,-46,28,-83,67,-110r0,-52v-35,34,-90,62,-148,62v-82,0,-141,-49,-141,-122v0,-78,69,-129,164,-129v46,0,101,12,123,20r0,-59v0,-24,-7,-45,-19,-60v-19,-21,-50,-34,-93,-34v-34,0,-52,9,-66,18v3,7,6,16,6,25v0,25,-18,44,-45,44v-26,0,-44,-20,-44,-46v0,-49,56,-99,158,-99v63,0,109,19,137,50v22,24,32,56,32,92r0,232r69,0r0,60r-65,0v-43,23,-72,55,-72,92v0,32,18,52,55,52v30,0,56,-8,78,-19r-4,53v-15,11,-49,23,-86,23xm204,-48v51,0,95,-26,128,-59r0,-71v-32,-9,-74,-17,-115,-17v-68,0,-102,32,-102,76v0,41,31,71,89,71","w":492},"\u00c5":{"d":"462,-733v0,28,-12,55,-34,75r75,0r0,65r-75,0r197,527r63,0r0,66r-220,0r0,-65r77,0r-59,-162r-269,0r-59,162r80,0r0,65r-220,0r0,-66r63,0r197,-527r-75,0r0,-65r73,0v-21,-20,-34,-47,-34,-75v0,-57,49,-105,110,-105v61,0,110,48,110,105xm239,-290r225,0r-112,-307xm352,-667v33,0,56,-27,56,-60v0,-34,-23,-61,-56,-61v-32,0,-55,27,-55,61v0,33,23,60,55,60","w":706},"\u00e5":{"d":"186,8v-82,0,-141,-49,-141,-122v0,-78,69,-129,164,-129v46,0,101,12,123,20r0,-59v0,-24,-7,-45,-19,-60v-19,-21,-50,-34,-93,-34v-34,0,-52,9,-66,18v3,7,6,16,6,25v0,25,-18,44,-45,44v-26,0,-44,-20,-44,-46v0,-49,56,-99,158,-99v63,0,109,19,137,50v22,24,32,56,32,92r0,232r69,0r0,60r-133,0r0,-54v-35,34,-90,62,-148,62xm204,-48v51,0,95,-26,128,-59r0,-71v-32,-9,-74,-17,-115,-17v-68,0,-102,32,-102,76v0,41,31,71,89,71xm239,-494v-61,0,-109,-49,-109,-111v0,-62,48,-111,109,-111v62,0,110,49,110,111v0,62,-48,111,-110,111xm239,-545v33,0,56,-27,56,-60v0,-33,-23,-60,-56,-60v-32,0,-55,27,-55,60v0,33,23,60,55,60","w":492},"\u01fa":{"d":"325,-879r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm462,-733v0,28,-12,55,-34,75r75,0r0,65r-75,0r197,527r63,0r0,66r-220,0r0,-65r77,0r-59,-162r-269,0r-59,162r80,0r0,65r-220,0r0,-66r63,0r197,-527r-75,0r0,-65r73,0v-21,-20,-34,-47,-34,-75v0,-57,49,-105,110,-105v61,0,110,48,110,105xm239,-290r225,0r-112,-307xm352,-667v33,0,56,-27,56,-60v0,-34,-23,-61,-56,-61v-32,0,-55,27,-55,61v0,33,23,60,55,60","w":706},"\u01fb":{"d":"186,8v-82,0,-141,-49,-141,-122v0,-78,69,-129,164,-129v46,0,101,12,123,20r0,-59v0,-24,-7,-45,-19,-60v-19,-21,-50,-34,-93,-34v-34,0,-52,9,-66,18v3,7,6,16,6,25v0,25,-18,44,-45,44v-26,0,-44,-20,-44,-46v0,-49,56,-99,158,-99v63,0,109,19,137,50v22,24,32,56,32,92r0,232r69,0r0,60r-133,0r0,-54v-35,34,-90,62,-148,62xm204,-48v51,0,95,-26,128,-59r0,-71v-32,-9,-74,-17,-115,-17v-68,0,-102,32,-102,76v0,41,31,71,89,71xm219,-764r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm246,-494v-61,0,-109,-49,-109,-111v0,-62,48,-111,109,-111v62,0,110,49,110,111v0,62,-48,111,-110,111xm246,-545v33,0,56,-27,56,-60v0,-33,-23,-60,-56,-60v-32,0,-55,27,-55,60v0,33,23,60,55,60","w":492},"\u00c3":{"d":"18,0r0,-66r63,0r197,-527r-75,0r0,-65r300,0r0,65r-75,0r197,527r63,0r0,66r-220,0r0,-65r77,0r-59,-162r-269,0r-59,162r80,0r0,65r-220,0xm239,-290r225,0r-112,-307xm426,-723v-39,0,-65,-18,-88,-38v-24,-20,-37,-28,-51,-28v-24,0,-40,23,-46,60r-54,-12v5,-69,49,-118,95,-118v39,0,65,19,89,39v23,19,36,27,51,27v23,0,39,-22,46,-60r54,12v-5,69,-49,118,-96,118","w":706},"\u00e3":{"d":"186,8v-82,0,-141,-49,-141,-122v0,-78,69,-129,164,-129v46,0,101,12,123,20r0,-59v0,-24,-7,-45,-19,-60v-19,-21,-50,-34,-93,-34v-34,0,-52,9,-66,18v3,7,6,16,6,25v0,25,-18,44,-45,44v-26,0,-44,-20,-44,-46v0,-49,56,-99,158,-99v63,0,109,19,137,50v22,24,32,56,32,92r0,232r69,0r0,60r-133,0r0,-54v-35,34,-90,62,-148,62xm204,-48v51,0,95,-26,128,-59r0,-71v-32,-9,-74,-17,-115,-17v-68,0,-102,32,-102,76v0,41,31,71,89,71xm314,-509v-39,0,-65,-18,-88,-38v-24,-20,-37,-28,-51,-28v-24,0,-40,23,-46,60r-54,-12v5,-69,49,-118,95,-118v39,0,65,19,89,39v23,19,36,27,51,27v23,0,39,-22,46,-60r54,12v-5,69,-49,118,-96,118","w":492},"\u0106":{"d":"361,-717r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm393,12v-203,0,-337,-157,-337,-338v0,-203,156,-344,334,-344v138,0,246,83,246,162v0,37,-25,65,-58,65v-31,0,-55,-23,-55,-53v0,-19,12,-35,25,-40v-18,-29,-75,-66,-159,-66v-150,0,-257,127,-257,275v0,141,106,271,261,271v79,0,145,-30,204,-85r44,53v-66,66,-157,100,-248,100","w":702},"\u0107":{"d":"222,-503r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm268,8v-129,0,-226,-94,-226,-220v0,-118,94,-222,213,-222v97,0,174,64,174,128v0,32,-23,58,-54,58v-23,0,-46,-17,-46,-47v0,-14,8,-27,21,-35v-11,-26,-53,-45,-96,-45v-63,0,-141,55,-141,164v0,93,66,158,163,158v48,0,92,-15,142,-47r-6,67v-43,29,-98,41,-144,41","w":473},"\u010c":{"d":"513,-899r31,37r-154,147r-154,-147r31,-37r123,93xm393,12v-203,0,-337,-157,-337,-338v0,-203,156,-344,334,-344v138,0,246,83,246,162v0,37,-25,65,-58,65v-31,0,-55,-23,-55,-53v0,-19,12,-35,25,-40v-18,-29,-75,-66,-159,-66v-150,0,-257,127,-257,275v0,141,106,271,261,271v79,0,145,-30,204,-85r44,53v-66,66,-157,100,-248,100","w":702},"\u010d":{"d":"374,-685r31,37r-154,147r-154,-147r31,-37r123,93xm268,8v-129,0,-226,-94,-226,-220v0,-118,94,-222,213,-222v97,0,174,64,174,128v0,32,-23,58,-54,58v-23,0,-46,-17,-46,-47v0,-14,8,-27,21,-35v-11,-26,-53,-45,-96,-45v-63,0,-141,55,-141,164v0,93,66,158,163,158v48,0,92,-15,142,-47r-6,67v-43,29,-98,41,-144,41","w":473},"\u00c7":{"d":"385,199v-38,0,-79,-11,-112,-28r15,-32v26,11,63,19,88,19v25,0,42,-11,42,-29v0,-18,-16,-31,-53,-31v-5,0,-16,2,-18,2r-19,-16r24,-74v-180,-19,-296,-167,-296,-336v0,-203,156,-344,334,-344v138,0,246,83,246,162v0,37,-25,65,-58,65v-31,0,-55,-23,-55,-53v0,-19,12,-35,25,-40v-18,-29,-75,-66,-159,-66v-150,0,-257,127,-257,275v0,141,106,271,261,271v79,0,145,-30,204,-85r44,53v-66,66,-157,100,-248,100r-3,0r-1,36v62,3,94,35,94,76v0,40,-34,75,-98,75","w":702},"\u00e7":{"d":"260,199v-38,0,-79,-11,-112,-28r15,-32v26,11,63,19,88,19v25,0,42,-11,42,-29v0,-18,-16,-31,-53,-31v-5,0,-16,2,-18,2r-19,-16r25,-80v-108,-16,-186,-103,-186,-216v0,-118,94,-222,213,-222v97,0,174,64,174,128v0,32,-23,58,-54,58v-23,0,-46,-17,-46,-47v0,-14,8,-27,21,-35v-11,-26,-53,-45,-96,-45v-63,0,-141,55,-141,164v0,93,66,158,163,158v48,0,92,-15,142,-47r-6,67v-43,29,-98,41,-144,41r-2,0r-2,40v62,3,94,35,94,76v0,40,-34,75,-98,75","w":500},"\u010a":{"d":"393,12v-203,0,-337,-157,-337,-338v0,-203,156,-344,334,-344v138,0,246,83,246,162v0,37,-25,65,-58,65v-31,0,-55,-23,-55,-53v0,-19,12,-35,25,-40v-18,-29,-75,-66,-159,-66v-150,0,-257,127,-257,275v0,141,106,271,261,271v79,0,145,-30,204,-85r44,53v-66,66,-157,100,-248,100xm390,-728v-32,0,-57,-27,-57,-59v0,-33,26,-59,58,-59v32,0,57,26,57,59v0,32,-26,59,-58,59","w":702},"\u010b":{"d":"268,8v-129,0,-226,-94,-226,-220v0,-118,94,-222,213,-222v97,0,174,64,174,128v0,32,-23,58,-54,58v-23,0,-46,-17,-46,-47v0,-14,8,-27,21,-35v-11,-26,-53,-45,-96,-45v-63,0,-141,55,-141,164v0,93,66,158,163,158v48,0,92,-15,142,-47r-6,67v-43,29,-98,41,-144,41xm251,-514v-32,0,-57,-27,-57,-59v0,-33,26,-59,58,-59v32,0,57,26,57,59v0,32,-26,59,-58,59","w":473},"\u010e":{"d":"463,-899r31,37r-154,147r-154,-147r31,-37r123,93xm47,0r0,-66r84,0r0,-526r-84,0r0,-66r247,0v229,0,378,127,378,322v0,199,-139,336,-381,336r-244,0xm206,-66r94,0v197,0,296,-110,296,-271v0,-158,-118,-255,-304,-255r-86,0r0,526","w":728},"\u010f":{"d":"513,-507r-23,-18v25,-37,36,-69,36,-103v0,-29,-9,-42,-9,-68v0,-25,15,-46,45,-46v28,0,43,19,43,50v0,64,-42,133,-92,185xm246,8v-113,0,-202,-88,-202,-218v0,-121,83,-224,211,-224v53,0,99,20,132,51r0,-289r-80,0r0,-60r149,0r0,672r69,0r0,60r-136,0r0,-60v-36,40,-80,68,-143,68xm256,-52v55,0,97,-28,131,-64r0,-209v-32,-27,-72,-49,-128,-49v-84,0,-143,69,-143,163v-1,95,59,159,140,159","w":550},"\u0110":{"d":"138,-306r-73,0r0,-62r73,0r0,-224r-84,0r0,-66r246,0v228,0,378,128,378,322v0,199,-139,336,-377,336r-247,0r0,-66r84,0r0,-240xm212,-66r94,0v197,0,296,-110,296,-271v0,-158,-118,-255,-304,-255r-86,0r0,224r150,0r0,62r-150,0r0,240","w":734},"\u0111":{"d":"233,-521r0,-57r154,0r0,-94r-80,0r0,-60r149,0r0,154r69,0r0,57r-69,0r0,461r69,0r0,60r-136,0r0,-60v-36,40,-80,68,-143,68v-113,0,-202,-88,-202,-218v0,-121,83,-224,211,-224v53,0,99,20,132,51r0,-138r-154,0xm256,-52v55,0,97,-28,131,-64r0,-209v-32,-27,-72,-49,-128,-49v-84,0,-143,69,-143,163v-1,95,59,159,140,159","w":550},"\u00c9":{"d":"260,-717r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm47,0r0,-66r84,0r0,-526r-84,0r0,-66r478,0r0,161r-71,0r0,-96r-248,0r0,226r215,0r0,64r-215,0r0,238r248,0r0,-96r72,0r0,161r-479,0","w":588},"\u00e9":{"d":"441,-193r-328,0v10,94,72,140,164,140v57,0,100,-18,150,-47r-6,67v-44,27,-99,41,-153,41v-136,0,-227,-90,-227,-220v0,-118,79,-222,209,-222v127,0,195,95,195,201v0,16,-1,29,-4,40xm246,-375v-65,0,-122,46,-132,127r261,0v-5,-75,-48,-127,-129,-127xm216,-503r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44","w":485},"\u0114":{"d":"47,0r0,-66r84,0r0,-526r-84,0r0,-66r478,0r0,161r-71,0r0,-96r-248,0r0,226r215,0r0,64r-215,0r0,238r248,0r0,-96r72,0r0,161r-479,0xm288,-722v-73,0,-133,-52,-159,-136r49,-21v22,57,66,88,110,88v48,0,89,-35,110,-88r49,21v-25,84,-86,136,-159,136","w":588},"\u0115":{"d":"441,-193r-328,0v10,94,72,140,164,140v57,0,100,-18,150,-47r-6,67v-44,27,-99,41,-153,41v-136,0,-227,-90,-227,-220v0,-118,79,-222,209,-222v127,0,195,95,195,201v0,16,-1,29,-4,40xm246,-375v-65,0,-122,46,-132,127r261,0v-5,-75,-48,-127,-129,-127xm244,-508v-73,0,-133,-52,-159,-136r49,-21v22,57,66,88,110,88v48,0,89,-35,110,-88r49,21v-25,84,-86,136,-159,136","w":485},"\u011a":{"d":"411,-899r31,37r-154,147r-154,-147r31,-37r123,93xm47,0r0,-66r84,0r0,-526r-84,0r0,-66r478,0r0,161r-71,0r0,-96r-248,0r0,226r215,0r0,64r-215,0r0,238r248,0r0,-96r72,0r0,161r-479,0","w":588},"\u011b":{"d":"441,-193r-328,0v10,94,72,140,164,140v57,0,100,-18,150,-47r-6,67v-44,27,-99,41,-153,41v-136,0,-227,-90,-227,-220v0,-118,79,-222,209,-222v127,0,195,95,195,201v0,16,-1,29,-4,40xm246,-375v-65,0,-122,46,-132,127r261,0v-5,-75,-48,-127,-129,-127xm367,-685r31,37r-154,147r-154,-147r31,-37r123,93","w":485},"\u00ca":{"d":"166,-714r-31,-37r154,-147r154,147r-31,37r-123,-93xm47,0r0,-66r84,0r0,-526r-84,0r0,-66r478,0r0,161r-71,0r0,-96r-248,0r0,226r215,0r0,64r-215,0r0,238r248,0r0,-96r72,0r0,161r-479,0","w":588},"\u00ea":{"d":"441,-193r-328,0v10,94,72,140,164,140v57,0,100,-18,150,-47r-6,67v-44,27,-99,41,-153,41v-136,0,-227,-90,-227,-220v0,-118,79,-222,209,-222v127,0,195,95,195,201v0,16,-1,29,-4,40xm246,-375v-65,0,-122,46,-132,127r261,0v-5,-75,-48,-127,-129,-127xm122,-500r-31,-37r154,-147r154,147r-31,37r-123,-93","w":485},"\u00cb":{"d":"376,-733v-32,0,-57,-26,-57,-57v0,-32,26,-58,57,-58v32,0,56,26,56,58v0,31,-25,57,-56,57xm201,-733v-31,0,-56,-26,-56,-57v0,-32,26,-58,57,-58v31,0,56,26,56,58v0,31,-25,57,-57,57xm47,0r0,-66r84,0r0,-526r-84,0r0,-66r478,0r0,161r-71,0r0,-96r-248,0r0,226r215,0r0,64r-215,0r0,238r248,0r0,-96r72,0r0,161r-479,0","w":588},"\u00eb":{"d":"441,-193r-328,0v10,94,72,140,164,140v57,0,100,-18,150,-47r-6,67v-44,27,-99,41,-153,41v-136,0,-227,-90,-227,-220v0,-118,79,-222,209,-222v127,0,195,95,195,201v0,16,-1,29,-4,40xm246,-375v-65,0,-122,46,-132,127r261,0v-5,-75,-48,-127,-129,-127xm332,-519v-32,0,-57,-26,-57,-57v0,-32,26,-58,57,-58v32,0,56,26,56,58v0,31,-25,57,-56,57xm157,-519v-31,0,-56,-26,-56,-57v0,-32,26,-58,57,-58v31,0,56,26,56,58v0,31,-25,57,-57,57","w":485},"\u0116":{"d":"47,0r0,-66r84,0r0,-526r-84,0r0,-66r478,0r0,161r-71,0r0,-96r-248,0r0,226r215,0r0,64r-215,0r0,238r248,0r0,-96r72,0r0,161r-479,0xm288,-728v-32,0,-57,-27,-57,-59v0,-33,26,-59,58,-59v32,0,57,26,57,59v0,32,-26,59,-58,59","w":588},"\u0117":{"d":"441,-193r-328,0v10,94,72,140,164,140v57,0,100,-18,150,-47r-6,67v-44,27,-99,41,-153,41v-136,0,-227,-90,-227,-220v0,-118,79,-222,209,-222v127,0,195,95,195,201v0,16,-1,29,-4,40xm246,-375v-65,0,-122,46,-132,127r261,0v-5,-75,-48,-127,-129,-127xm244,-514v-32,0,-57,-27,-57,-59v0,-33,26,-59,58,-59v32,0,57,26,57,59v0,32,-26,59,-58,59","w":485},"\u00c8":{"d":"47,0r0,-66r84,0r0,-526r-84,0r0,-66r478,0r0,161r-71,0r0,-96r-248,0r0,226r215,0r0,64r-215,0r0,238r248,0r0,-96r72,0r0,161r-479,0xm318,-717r-151,-86v-21,-13,-34,-30,-34,-44v0,-27,19,-43,40,-43v15,0,29,9,43,23r120,126","w":588},"\u00e8":{"d":"441,-193r-328,0v10,94,72,140,164,140v57,0,100,-18,150,-47r-6,67v-44,27,-99,41,-153,41v-136,0,-227,-90,-227,-220v0,-118,79,-222,209,-222v127,0,195,95,195,201v0,16,-1,29,-4,40xm246,-375v-65,0,-122,46,-132,127r261,0v-5,-75,-48,-127,-129,-127xm274,-503r-151,-86v-21,-13,-34,-30,-34,-44v0,-27,19,-43,40,-43v15,0,29,9,43,23r120,126","w":485},"\u0112":{"d":"47,0r0,-66r84,0r0,-526r-84,0r0,-66r478,0r0,161r-71,0r0,-96r-248,0r0,226r215,0r0,64r-215,0r0,238r248,0r0,-96r72,0r0,161r-479,0xm137,-749r0,-63r304,0r0,63r-304,0","w":588},"\u0113":{"d":"441,-193r-328,0v10,94,72,140,164,140v57,0,100,-18,150,-47r-6,67v-44,27,-99,41,-153,41v-136,0,-227,-90,-227,-220v0,-118,79,-222,209,-222v127,0,195,95,195,201v0,16,-1,29,-4,40xm246,-375v-65,0,-122,46,-132,127r261,0v-5,-75,-48,-127,-129,-127xm93,-535r0,-63r304,0r0,63r-304,0","w":485},"\u0118":{"d":"47,0r0,-66r84,0r0,-526r-84,0r0,-66r478,0r0,161r-71,0r0,-96r-248,0r0,226r215,0r0,64r-215,0r0,238r248,0r0,-96r72,0r0,161r-62,0v-43,23,-72,55,-72,92v0,32,18,52,55,52v30,0,56,-8,78,-19r-4,53v-15,11,-49,23,-86,23v-70,0,-106,-38,-106,-93v0,-45,26,-81,64,-108r-346,0","w":588},"\u0119":{"d":"441,-193r-328,0v10,94,72,140,164,140v57,0,100,-18,150,-47r-6,67v-65,33,-140,68,-140,126v0,31,18,51,56,51v29,0,55,-8,77,-19r-3,53v-16,11,-50,23,-87,23v-70,0,-106,-38,-106,-93v0,-42,20,-75,52,-100r-2,0v-136,0,-227,-90,-227,-220v0,-118,79,-222,209,-222v127,0,195,95,195,201v0,16,-1,29,-4,40xm246,-375v-65,0,-122,46,-132,127r261,0v-5,-75,-48,-127,-129,-127","w":485},"\u00d0":{"d":"138,-306r-73,0r0,-62r73,0r0,-224r-84,0r0,-66r246,0v228,0,378,128,378,322v0,199,-139,336,-377,336r-247,0r0,-66r84,0r0,-240xm212,-66r94,0v197,0,296,-110,296,-271v0,-158,-118,-255,-304,-255r-86,0r0,224r150,0r0,62r-150,0r0,240","w":734},"\u00f0":{"d":"191,-463r-38,-45r113,-101v-39,-36,-81,-59,-113,-66v-3,21,-20,41,-47,41v-25,0,-47,-20,-47,-51v0,-30,28,-54,67,-54v24,0,52,6,81,20v34,15,71,40,106,72r98,-86r38,44r-96,85v74,85,131,208,131,355v0,89,-26,158,-71,202v-38,36,-89,55,-149,55v-131,0,-220,-94,-220,-210v0,-117,89,-211,219,-211v60,0,120,31,153,77v-11,-89,-56,-170,-109,-231xm416,-209v0,-80,-63,-144,-152,-144v-89,0,-151,64,-151,151v0,87,62,150,151,150v44,0,79,-16,105,-42v30,-30,47,-73,47,-115","w":528},"\u011e":{"d":"376,12v-166,0,-320,-126,-320,-336v0,-208,159,-346,341,-346v148,0,247,82,247,152v0,37,-24,62,-56,62v-31,0,-54,-23,-54,-53v0,-17,7,-30,17,-38v-25,-27,-82,-55,-156,-55v-156,0,-263,122,-263,278v0,162,116,270,252,270v75,0,138,-23,195,-63r0,-140r-182,0r0,-63r255,0r0,320r-71,0r0,-57v-57,43,-122,69,-205,69xm381,-722v-73,0,-133,-52,-159,-136r49,-21v22,57,66,88,110,88v48,0,89,-35,110,-88r49,21v-25,84,-86,136,-159,136","w":737},"\u011f":{"d":"457,-365r0,379v0,53,-14,94,-39,124v-36,44,-96,62,-162,62v-67,0,-119,-21,-145,-46v-15,-15,-22,-32,-22,-49v0,-29,21,-52,50,-52v25,0,42,19,42,43v0,10,-3,20,-9,28v13,8,41,17,84,17v42,0,82,-11,107,-42v16,-20,25,-46,25,-82r0,-83v-35,36,-77,63,-142,63v-111,0,-202,-88,-202,-212v0,-115,84,-219,211,-219v57,0,102,23,136,55r0,-47r135,0r0,61r-69,0xm261,-373v-87,0,-145,68,-145,157v0,90,59,153,141,153v54,0,97,-26,131,-62r0,-200v-31,-27,-72,-48,-127,-48xm283,-508v-73,0,-133,-52,-159,-136r49,-21v22,57,66,88,110,88v48,0,89,-35,110,-88r49,21v-25,84,-86,136,-159,136","w":556},"\u0122":{"d":"314,278r-16,-23v56,-42,75,-81,76,-103v-24,-5,-43,-25,-43,-50v0,-28,23,-49,49,-49v31,0,56,22,56,65v0,46,-32,111,-122,160xm376,12v-166,0,-320,-126,-320,-336v0,-208,159,-346,341,-346v148,0,247,82,247,152v0,37,-24,62,-56,62v-31,0,-54,-23,-54,-53v0,-17,7,-30,17,-38v-25,-27,-82,-55,-156,-55v-156,0,-263,122,-263,278v0,162,116,270,252,270v75,0,138,-23,195,-63r0,-140r-182,0r0,-63r255,0r0,320r-71,0r0,-57v-57,43,-122,69,-205,69","w":737},"\u0123":{"d":"359,-744r16,23v-56,42,-75,81,-76,103v24,5,43,25,43,50v0,28,-23,49,-49,49v-31,0,-56,-22,-56,-65v0,-46,32,-111,122,-160xm457,-365r0,379v0,53,-14,94,-39,124v-36,44,-96,62,-162,62v-67,0,-119,-21,-145,-46v-15,-15,-22,-32,-22,-49v0,-29,21,-52,50,-52v25,0,42,19,42,43v0,10,-3,20,-9,28v13,8,41,17,84,17v42,0,82,-11,107,-42v16,-20,25,-46,25,-82r0,-83v-35,36,-77,63,-142,63v-111,0,-202,-88,-202,-212v0,-115,84,-219,211,-219v57,0,102,23,136,55r0,-47r135,0r0,61r-69,0xm261,-373v-87,0,-145,68,-145,157v0,90,59,153,141,153v54,0,97,-26,131,-62r0,-200v-31,-27,-72,-48,-127,-48","w":556},"\u0120":{"d":"376,12v-166,0,-320,-126,-320,-336v0,-208,159,-346,341,-346v148,0,247,82,247,152v0,37,-24,62,-56,62v-31,0,-54,-23,-54,-53v0,-17,7,-30,17,-38v-25,-27,-82,-55,-156,-55v-156,0,-263,122,-263,278v0,162,116,270,252,270v75,0,138,-23,195,-63r0,-140r-182,0r0,-63r255,0r0,320r-71,0r0,-57v-57,43,-122,69,-205,69xm381,-728v-32,0,-57,-27,-57,-59v0,-33,26,-59,58,-59v32,0,57,26,57,59v0,32,-26,59,-58,59","w":737},"\u0121":{"d":"457,-365r0,379v0,53,-14,94,-39,124v-36,44,-96,62,-162,62v-67,0,-119,-21,-145,-46v-15,-15,-22,-32,-22,-49v0,-29,21,-52,50,-52v25,0,42,19,42,43v0,10,-3,20,-9,28v13,8,41,17,84,17v42,0,82,-11,107,-42v16,-20,25,-46,25,-82r0,-83v-35,36,-77,63,-142,63v-111,0,-202,-88,-202,-212v0,-115,84,-219,211,-219v57,0,102,23,136,55r0,-47r135,0r0,61r-69,0xm261,-373v-87,0,-145,68,-145,157v0,90,59,153,141,153v54,0,97,-26,131,-62r0,-200v-31,-27,-72,-48,-127,-48xm281,-514v-32,0,-57,-27,-57,-59v0,-33,26,-59,58,-59v32,0,57,26,57,59v0,32,-26,59,-58,59","w":556},"\u0126":{"d":"67,-453r0,-59r64,0r0,-83r-84,0r0,-63r245,0r0,63r-86,0r0,83r364,0r0,-83r-86,0r0,-63r245,0r0,63r-84,0r0,83r64,0r0,59r-64,0r0,387r84,0r0,66r-245,0r0,-66r86,0r0,-232r-364,0r0,232r86,0r0,66r-245,0r0,-66r84,0r0,-387r-64,0xm206,-363r364,0r0,-90r-364,0r0,90","w":776},"\u0127":{"d":"99,-672r-68,0r0,-60r137,0r0,154r155,0r0,57r-155,0r0,172v41,-47,97,-85,158,-85v50,0,86,17,108,46v19,25,28,59,28,98r0,230r69,0r0,60r-205,0r0,-60r67,0r0,-216v0,-31,-6,-52,-19,-67v-14,-18,-37,-27,-66,-27v-53,0,-102,33,-140,75r0,235r67,0r0,60r-204,0r0,-60r68,0r0,-461r-68,0r0,-57r68,0r0,-94","w":556},"\u00cd":{"d":"48,0r0,-66r89,0r0,-526r-89,0r0,-66r252,0r0,66r-89,0r0,526r89,0r0,66r-252,0xm145,-717r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44","w":348},"\u00ed":{"d":"115,-503r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm43,0r0,-60r72,0r0,-305r-72,0r0,-61r141,0r0,366r72,0r0,60r-213,0","w":290},"\u012c":{"d":"48,0r0,-66r89,0r0,-526r-89,0r0,-66r252,0r0,66r-89,0r0,526r89,0r0,66r-252,0xm173,-722v-73,0,-133,-52,-159,-136r49,-21v22,57,66,88,110,88v48,0,89,-35,110,-88r49,21v-25,84,-86,136,-159,136","w":348},"\u012d":{"d":"43,0r0,-60r72,0r0,-305r-72,0r0,-61r141,0r0,366r72,0r0,60r-213,0xm143,-508v-73,0,-133,-52,-159,-136r49,-21v22,57,66,88,110,88v48,0,89,-35,110,-88r49,21v-25,84,-86,136,-159,136","w":290},"\u00ce":{"d":"48,0r0,-66r89,0r0,-526r-89,0r0,-66r252,0r0,66r-89,0r0,526r89,0r0,66r-252,0xm51,-714r-31,-37r154,-147r154,147r-31,37r-123,-93","w":348},"\u00ee":{"d":"21,-500r-31,-37r154,-147r154,147r-31,37r-123,-93xm43,0r0,-60r72,0r0,-305r-72,0r0,-61r141,0r0,366r72,0r0,60r-213,0","w":290},"\u00cf":{"d":"48,0r0,-66r89,0r0,-526r-89,0r0,-66r252,0r0,66r-89,0r0,526r89,0r0,66r-252,0xm261,-733v-32,0,-57,-26,-57,-57v0,-32,26,-58,57,-58v32,0,56,26,56,58v0,31,-25,57,-56,57xm86,-733v-31,0,-56,-26,-56,-57v0,-32,26,-58,57,-58v31,0,56,26,56,58v0,31,-25,57,-57,57","w":348},"\u00ef":{"d":"231,-519v-32,0,-57,-26,-57,-57v0,-32,26,-58,57,-58v32,0,56,26,56,58v0,31,-25,57,-56,57xm56,-519v-31,0,-56,-26,-56,-57v0,-32,26,-58,57,-58v31,0,56,26,56,58v0,31,-25,57,-57,57xm43,0r0,-60r72,0r0,-305r-72,0r0,-61r141,0r0,366r72,0r0,60r-213,0","w":290},"\u0130":{"d":"48,0r0,-66r89,0r0,-526r-89,0r0,-66r252,0r0,66r-89,0r0,526r89,0r0,66r-252,0xm174,-728v-32,0,-57,-27,-57,-59v0,-33,26,-59,58,-59v32,0,57,26,57,59v0,32,-26,59,-58,59","w":348},"\u0131":{"d":"43,0r0,-60r72,0r0,-305r-72,0r0,-61r141,0r0,366r72,0r0,60r-213,0","w":290},"\u00cc":{"d":"48,0r0,-66r89,0r0,-526r-89,0r0,-66r252,0r0,66r-89,0r0,526r89,0r0,66r-252,0xm204,-717r-151,-86v-21,-13,-34,-30,-34,-44v0,-27,19,-43,40,-43v15,0,29,9,43,23r120,126","w":348},"\u00ec":{"d":"43,0r0,-60r72,0r0,-305r-72,0r0,-61r141,0r0,366r72,0r0,60r-213,0xm173,-503r-151,-86v-21,-13,-34,-30,-34,-44v0,-27,19,-43,40,-43v15,0,29,9,43,23r120,126","w":290},"\u012a":{"d":"48,0r0,-66r89,0r0,-526r-89,0r0,-66r252,0r0,66r-89,0r0,526r89,0r0,66r-252,0xm22,-749r0,-63r304,0r0,63r-304,0","w":348},"\u012b":{"d":"43,0r0,-60r72,0r0,-305r-72,0r0,-61r141,0r0,366r72,0r0,60r-213,0xm-8,-535r0,-63r304,0r0,63r-304,0","w":290},"\u012e":{"d":"48,0r0,-66r89,0r0,-526r-89,0r0,-66r252,0r0,66r-89,0r0,526r89,0r0,66r-82,0v-43,23,-72,55,-72,92v0,32,18,52,55,52v30,0,56,-8,78,-19r-4,53v-15,11,-49,23,-86,23v-70,0,-106,-38,-106,-93v0,-45,26,-81,64,-108r-99,0","w":348},"\u012f":{"d":"43,0r0,-60r72,0r0,-305r-72,0r0,-61r141,0r0,366r72,0r0,60r-76,0v-43,23,-72,55,-72,92v0,32,18,52,55,52v30,0,56,-8,78,-19r-4,53v-15,11,-49,23,-86,23v-70,0,-106,-38,-106,-93v0,-45,26,-81,64,-108r-66,0xm140,-535v-30,0,-55,-25,-55,-55v0,-30,26,-56,56,-56v29,0,54,26,54,56v0,30,-26,55,-55,55","w":290},"\u0136":{"d":"287,278r-16,-23v56,-42,75,-81,76,-103v-24,-5,-43,-25,-43,-50v0,-28,23,-49,49,-49v31,0,56,22,56,65v0,46,-32,111,-122,160xm47,0r0,-66r84,0r0,-526r-84,0r0,-66r245,0r0,65r-86,0r0,287r285,-287r-88,0r0,-65r254,0r0,66r-74,0r-214,213r210,313r83,0r0,66r-131,0r-217,-330r-108,108r0,156r86,0r0,66r-245,0","w":675},"\u0137":{"d":"199,278r-16,-23v56,-42,75,-81,76,-103v-24,-5,-43,-25,-43,-50v0,-28,23,-49,49,-49v31,0,56,22,56,65v0,46,-32,111,-122,160xm31,0r0,-60r68,0r0,-612r-68,0r0,-60r137,0r0,518r178,-154r-83,0r0,-58r241,0r0,61r-76,0r-134,115r132,190r78,0r0,60r-118,0r-142,-212r-76,64r0,89r69,0r0,59r-206,0","w":524},"\u0139":{"d":"165,-728r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm47,0r0,-66r84,0r0,-526r-84,0r0,-66r250,0r0,66r-91,0r0,527r228,0r0,-101r71,0r0,166r-458,0","w":554},"\u013a":{"d":"127,-771r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm33,0r0,-60r72,0r0,-612r-72,0r0,-60r141,0r0,672r72,0r0,60r-213,0","w":278},"\u013d":{"d":"354,-425r-23,-18v25,-37,36,-69,36,-103v0,-29,-9,-42,-9,-68v0,-25,15,-46,45,-46v28,0,43,19,43,50v0,64,-42,133,-92,185xm47,0r0,-66r84,0r0,-526r-84,0r0,-66r250,0r0,66r-91,0r0,527r228,0r0,-101r71,0r0,166r-458,0","w":554},"\u013e":{"d":"230,-507r-23,-18v25,-37,36,-69,36,-103v0,-29,-9,-42,-9,-68v0,-25,15,-46,45,-46v28,0,43,19,43,50v0,64,-42,133,-92,185xm33,0r0,-60r72,0r0,-612r-72,0r0,-60r141,0r0,672r72,0r0,60r-213,0","w":278},"\u013b":{"d":"208,278r-16,-23v56,-42,75,-81,76,-103v-24,-5,-43,-25,-43,-50v0,-28,23,-49,49,-49v31,0,56,22,56,65v0,46,-32,111,-122,160xm47,0r0,-66r84,0r0,-526r-84,0r0,-66r250,0r0,66r-91,0r0,527r228,0r0,-101r71,0r0,166r-458,0","w":554},"\u013c":{"d":"71,278r-16,-23v56,-42,75,-81,76,-103v-24,-5,-43,-25,-43,-50v0,-28,23,-49,49,-49v31,0,56,22,56,65v0,46,-32,111,-122,160xm33,0r0,-60r72,0r0,-612r-72,0r0,-60r141,0r0,672r72,0r0,60r-213,0","w":278},"\u013f":{"d":"47,0r0,-66r84,0r0,-526r-84,0r0,-66r250,0r0,66r-91,0r0,527r228,0r0,-101r71,0r0,166r-458,0xm445,-297v-32,0,-57,-27,-57,-59v0,-33,26,-59,58,-59v32,0,57,26,57,59v0,32,-26,59,-58,59","w":554},"\u0140":{"d":"33,0r0,-60r72,0r0,-612r-72,0r0,-60r141,0r0,672r72,0r0,60r-213,0xm297,-281v-32,0,-57,-27,-57,-59v0,-33,26,-59,58,-59v32,0,57,26,57,59v0,32,-26,59,-58,59","w":316},"\u0141":{"d":"53,0r0,-66r84,0r0,-197r-81,47r-31,-53r112,-65r0,-258r-84,0r0,-66r250,0r0,66r-91,0r0,215r141,-83r31,53r-172,101r0,241r228,0r0,-101r71,0r0,166r-458,0","w":560},"\u0142":{"d":"40,0r0,-60r72,0r0,-297r-85,50r-29,-50r114,-68r0,-247r-72,0r0,-60r141,0r0,269r77,-45r29,50r-106,63r0,335r72,0r0,60r-213,0","w":292},"\u0143":{"d":"351,-717r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm606,3r-403,-531r0,462r86,0r0,66r-242,0r0,-66r84,0r0,-526r-84,0r0,-66r149,0r380,501r0,-435r-87,0r0,-66r239,0r0,66r-81,0r0,594","w":764},"\u0144":{"d":"259,-503r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm175,-426r0,79v40,-47,99,-87,160,-87v55,0,92,21,113,55v14,24,21,54,21,89r0,230r68,0r0,60r-204,0r0,-60r67,0r0,-216v0,-23,-3,-42,-11,-57v-12,-25,-36,-37,-71,-37v-53,0,-102,33,-140,75r0,235r67,0r0,60r-204,0r0,-60r68,0r0,-305r-68,0r0,-61r134,0","w":563},"\u0147":{"d":"503,-899r31,37r-154,147r-154,-147r31,-37r123,93xm606,3r-403,-531r0,462r86,0r0,66r-242,0r0,-66r84,0r0,-526r-84,0r0,-66r149,0r380,501r0,-435r-87,0r0,-66r239,0r0,66r-81,0r0,594","w":764},"\u0148":{"d":"411,-685r31,37r-154,147r-154,-147r31,-37r123,93xm175,-426r0,79v40,-47,99,-87,160,-87v55,0,92,21,113,55v14,24,21,54,21,89r0,230r68,0r0,60r-204,0r0,-60r67,0r0,-216v0,-23,-3,-42,-11,-57v-12,-25,-36,-37,-71,-37v-53,0,-102,33,-140,75r0,235r67,0r0,60r-204,0r0,-60r68,0r0,-305r-68,0r0,-61r134,0","w":563},"\u0145":{"d":"316,276r-16,-23v56,-42,75,-81,76,-103v-24,-5,-43,-25,-43,-50v0,-28,23,-49,49,-49v31,0,56,22,56,65v0,46,-32,111,-122,160xm606,3r-403,-531r0,462r86,0r0,66r-242,0r0,-66r84,0r0,-526r-84,0r0,-66r149,0r380,501r0,-435r-87,0r0,-66r239,0r0,66r-81,0r0,594","w":764},"\u0146":{"d":"221,278r-16,-23v56,-42,75,-81,76,-103v-24,-5,-43,-25,-43,-50v0,-28,23,-49,49,-49v31,0,56,22,56,65v0,46,-32,111,-122,160xm175,-426r0,79v40,-47,99,-87,160,-87v55,0,92,21,113,55v14,24,21,54,21,89r0,230r68,0r0,60r-204,0r0,-60r67,0r0,-216v0,-23,-3,-42,-11,-57v-12,-25,-36,-37,-71,-37v-53,0,-102,33,-140,75r0,235r67,0r0,60r-204,0r0,-60r68,0r0,-305r-68,0r0,-61r134,0","w":563},"\u00d1":{"d":"606,3r-403,-531r0,462r86,0r0,66r-242,0r0,-66r84,0r0,-526r-84,0r0,-66r149,0r380,501r0,-435r-87,0r0,-66r239,0r0,66r-81,0r0,594xm454,-723v-39,0,-65,-18,-88,-38v-24,-20,-37,-28,-51,-28v-24,0,-40,23,-46,60r-54,-12v5,-69,49,-118,95,-118v39,0,65,19,89,39v23,19,36,27,51,27v23,0,39,-22,46,-60r54,12v-5,69,-49,118,-96,118","w":764},"\u00f1":{"d":"175,-426r0,79v40,-47,99,-87,160,-87v55,0,92,21,113,55v14,24,21,54,21,89r0,230r68,0r0,60r-204,0r0,-60r67,0r0,-216v0,-23,-3,-42,-11,-57v-12,-25,-36,-37,-71,-37v-53,0,-102,33,-140,75r0,235r67,0r0,60r-204,0r0,-60r68,0r0,-305r-68,0r0,-61r134,0xm362,-509v-39,0,-65,-18,-88,-38v-24,-20,-37,-28,-51,-28v-24,0,-40,23,-46,60r-54,-12v5,-69,49,-118,95,-118v39,0,65,19,89,39v23,19,36,27,51,27v23,0,39,-22,46,-60r54,12v-5,69,-49,118,-96,118","w":563},"\u00d3":{"d":"359,-717r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm387,12v-192,0,-331,-150,-331,-340v0,-193,141,-342,335,-342v191,0,331,150,331,340v0,193,-142,342,-335,342xm389,-56v150,0,256,-118,256,-272v0,-155,-106,-274,-256,-274v-151,0,-257,118,-257,272v0,155,106,274,257,274","w":777},"\u00f3":{"d":"233,-503r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm263,8v-133,0,-219,-99,-219,-221v0,-120,87,-221,219,-221v132,0,219,100,219,221v0,121,-87,221,-219,221xm263,-52v87,0,147,-66,147,-161v0,-94,-60,-161,-147,-161v-87,0,-147,67,-147,161v0,95,60,161,147,161","w":526},"\u014e":{"d":"387,12v-192,0,-331,-150,-331,-340v0,-193,141,-342,335,-342v191,0,331,150,331,340v0,193,-142,342,-335,342xm389,-56v150,0,256,-118,256,-272v0,-155,-106,-274,-256,-274v-151,0,-257,118,-257,272v0,155,106,274,257,274xm387,-722v-73,0,-133,-52,-159,-136r49,-21v22,57,66,88,110,88v48,0,89,-35,110,-88r49,21v-25,84,-86,136,-159,136","w":777},"\u014f":{"d":"263,8v-133,0,-219,-99,-219,-221v0,-120,87,-221,219,-221v132,0,219,100,219,221v0,121,-87,221,-219,221xm263,-52v87,0,147,-66,147,-161v0,-94,-60,-161,-147,-161v-87,0,-147,67,-147,161v0,95,60,161,147,161xm262,-508v-73,0,-133,-52,-159,-136r49,-21v22,57,66,88,110,88v48,0,89,-35,110,-88r49,21v-25,84,-86,136,-159,136","w":526},"\u00d4":{"d":"265,-714r-31,-37r154,-147r154,147r-31,37r-123,-93xm387,12v-192,0,-331,-150,-331,-340v0,-193,141,-342,335,-342v191,0,331,150,331,340v0,193,-142,342,-335,342xm389,-56v150,0,256,-118,256,-272v0,-155,-106,-274,-256,-274v-151,0,-257,118,-257,272v0,155,106,274,257,274","w":777},"\u00f4":{"d":"139,-500r-31,-37r154,-147r154,147r-31,37r-123,-93xm263,8v-133,0,-219,-99,-219,-221v0,-120,87,-221,219,-221v132,0,219,100,219,221v0,121,-87,221,-219,221xm263,-52v87,0,147,-66,147,-161v0,-94,-60,-161,-147,-161v-87,0,-147,67,-147,161v0,95,60,161,147,161","w":526},"\u00d6":{"d":"475,-733v-32,0,-57,-26,-57,-57v0,-32,26,-58,57,-58v32,0,56,26,56,58v0,31,-25,57,-56,57xm300,-733v-31,0,-56,-26,-56,-57v0,-32,26,-58,57,-58v31,0,56,26,56,58v0,31,-25,57,-57,57xm387,12v-192,0,-331,-150,-331,-340v0,-193,141,-342,335,-342v191,0,331,150,331,340v0,193,-142,342,-335,342xm389,-56v150,0,256,-118,256,-272v0,-155,-106,-274,-256,-274v-151,0,-257,118,-257,272v0,155,106,274,257,274","w":777},"\u00f6":{"d":"350,-519v-32,0,-57,-26,-57,-57v0,-32,26,-58,57,-58v32,0,56,26,56,58v0,31,-25,57,-56,57xm175,-519v-31,0,-56,-26,-56,-57v0,-32,26,-58,57,-58v31,0,56,26,56,58v0,31,-25,57,-57,57xm263,8v-133,0,-219,-99,-219,-221v0,-120,87,-221,219,-221v132,0,219,100,219,221v0,121,-87,221,-219,221xm263,-52v87,0,147,-66,147,-161v0,-94,-60,-161,-147,-161v-87,0,-147,67,-147,161v0,95,60,161,147,161","w":526},"\u0152":{"d":"420,0v-214,0,-364,-128,-364,-322v0,-199,139,-336,363,-336r449,0r0,161r-71,0r0,-96r-248,0r0,226r215,0r0,64r-215,0r0,238r248,0r0,-96r71,0r0,161r-448,0xm422,-66r52,0r0,-526r-60,0v-183,0,-282,110,-282,271v0,158,118,255,290,255","w":931},"\u0153":{"d":"641,-53v57,0,99,-18,149,-47r-6,67v-44,27,-98,41,-151,41v-90,0,-159,-44,-191,-107v-32,63,-96,107,-181,107v-131,0,-217,-99,-217,-221v0,-120,87,-221,217,-221v86,0,150,45,181,108v32,-64,94,-108,173,-108v125,0,193,95,193,201v0,16,-1,29,-3,40r-328,0v10,94,72,140,164,140xm263,-52v87,0,147,-66,147,-161v0,-94,-60,-161,-147,-161v-87,0,-147,67,-147,161v0,95,60,161,147,161xm610,-375v-65,0,-122,46,-132,127r261,0v-5,-75,-49,-127,-129,-127","w":843},"\u00d2":{"d":"387,12v-192,0,-331,-150,-331,-340v0,-193,141,-342,335,-342v191,0,331,150,331,340v0,193,-142,342,-335,342xm389,-56v150,0,256,-118,256,-272v0,-155,-106,-274,-256,-274v-151,0,-257,118,-257,272v0,155,106,274,257,274xm417,-717r-151,-86v-21,-13,-34,-30,-34,-44v0,-27,19,-43,40,-43v15,0,29,9,43,23r120,126","w":777},"\u00f2":{"d":"263,8v-133,0,-219,-99,-219,-221v0,-120,87,-221,219,-221v132,0,219,100,219,221v0,121,-87,221,-219,221xm263,-52v87,0,147,-66,147,-161v0,-94,-60,-161,-147,-161v-87,0,-147,67,-147,161v0,95,60,161,147,161xm292,-503r-151,-86v-21,-13,-34,-30,-34,-44v0,-27,19,-43,40,-43v15,0,29,9,43,23r120,126","w":526},"\u0150":{"d":"261,-719r-16,-24r132,-124v15,-14,29,-23,43,-23v22,0,40,16,40,41v0,15,-14,33,-38,46xm452,-723r-13,-25r142,-118v16,-13,30,-19,42,-19v24,0,39,18,39,40v0,17,-13,35,-40,46xm387,12v-192,0,-331,-150,-331,-340v0,-193,141,-342,335,-342v191,0,331,150,331,340v0,193,-142,342,-335,342xm389,-56v150,0,256,-118,256,-272v0,-155,-106,-274,-256,-274v-151,0,-257,118,-257,272v0,155,106,274,257,274","w":777},"\u0151":{"d":"136,-505r-16,-24r132,-124v15,-14,29,-23,43,-23v22,0,40,16,40,41v0,15,-14,33,-38,46xm327,-509r-13,-25r142,-118v16,-13,30,-19,42,-19v24,0,39,18,39,40v0,17,-13,35,-40,46xm263,8v-133,0,-219,-99,-219,-221v0,-120,87,-221,219,-221v132,0,219,100,219,221v0,121,-87,221,-219,221xm263,-52v87,0,147,-66,147,-161v0,-94,-60,-161,-147,-161v-87,0,-147,67,-147,161v0,95,60,161,147,161","w":526},"\u014c":{"d":"236,-749r0,-63r304,0r0,63r-304,0xm387,12v-192,0,-331,-150,-331,-340v0,-193,141,-342,335,-342v191,0,331,150,331,340v0,193,-142,342,-335,342xm389,-56v150,0,256,-118,256,-272v0,-155,-106,-274,-256,-274v-151,0,-257,118,-257,272v0,155,106,274,257,274","w":777},"\u014d":{"d":"110,-535r0,-63r304,0r0,63r-304,0xm263,8v-133,0,-219,-99,-219,-221v0,-120,87,-221,219,-221v132,0,219,100,219,221v0,121,-87,221,-219,221xm263,-52v87,0,147,-66,147,-161v0,-94,-60,-161,-147,-161v-87,0,-147,67,-147,161v0,95,60,161,147,161","w":526},"\u00d8":{"d":"387,12v-77,0,-145,-24,-200,-65r-80,94r-47,-41r82,-94v-54,-61,-86,-143,-86,-234v0,-193,141,-342,335,-342v74,0,141,23,195,63r79,-92r47,41r-80,92v56,61,90,144,90,236v0,193,-142,342,-335,342xm389,-56v150,0,256,-118,256,-272v0,-75,-23,-140,-63,-188r-350,410v41,32,95,50,157,50xm132,-330v0,74,22,139,61,187r350,-411v-41,-30,-94,-48,-154,-48v-151,0,-257,118,-257,272","w":777},"\u00f8":{"d":"263,8v-45,0,-86,-13,-119,-34r-50,58r-45,-38r50,-59v-35,-40,-55,-92,-55,-148v0,-120,87,-221,219,-221v46,0,88,14,122,37r50,-59r45,38r-51,60v34,40,53,91,53,145v0,121,-87,221,-219,221xm116,-213v0,42,10,77,29,104r202,-239v-23,-17,-52,-26,-84,-26v-87,0,-147,67,-147,161xm263,-52v87,0,147,-66,147,-161v0,-39,-10,-74,-28,-100r-201,239v22,14,50,22,82,22","w":526},"\u01fe":{"d":"387,12v-77,0,-145,-24,-200,-65r-80,94r-47,-41r82,-94v-54,-61,-86,-143,-86,-234v0,-193,141,-342,335,-342v74,0,141,23,195,63r79,-92r47,41r-80,92v56,61,90,144,90,236v0,193,-142,342,-335,342xm389,-56v150,0,256,-118,256,-272v0,-75,-23,-140,-63,-188r-350,410v41,32,95,50,157,50xm132,-330v0,74,22,139,61,187r350,-411v-41,-30,-94,-48,-154,-48v-151,0,-257,118,-257,272xm360,-717r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44","w":777},"\u01ff":{"d":"263,8v-45,0,-86,-13,-119,-34r-50,58r-45,-38r50,-59v-35,-40,-55,-92,-55,-148v0,-120,87,-221,219,-221v46,0,88,14,122,37r50,-59r45,38r-51,60v34,40,53,91,53,145v0,121,-87,221,-219,221xm116,-213v0,42,10,77,29,104r202,-239v-23,-17,-52,-26,-84,-26v-87,0,-147,67,-147,161xm263,-52v87,0,147,-66,147,-161v0,-39,-10,-74,-28,-100r-201,239v22,14,50,22,82,22xm233,-503r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44","w":526},"\u00d5":{"d":"387,12v-192,0,-331,-150,-331,-340v0,-193,141,-342,335,-342v191,0,331,150,331,340v0,193,-142,342,-335,342xm389,-56v150,0,256,-118,256,-272v0,-155,-106,-274,-256,-274v-151,0,-257,118,-257,272v0,155,106,274,257,274xm462,-723v-39,0,-65,-18,-88,-38v-24,-20,-37,-28,-51,-28v-24,0,-40,23,-46,60r-54,-12v5,-69,49,-118,95,-118v39,0,65,19,89,39v23,19,36,27,51,27v23,0,39,-22,46,-60r54,12v-5,69,-49,118,-96,118","w":777},"\u00f5":{"d":"263,8v-133,0,-219,-99,-219,-221v0,-120,87,-221,219,-221v132,0,219,100,219,221v0,121,-87,221,-219,221xm263,-52v87,0,147,-66,147,-161v0,-94,-60,-161,-147,-161v-87,0,-147,67,-147,161v0,95,60,161,147,161xm336,-509v-39,0,-65,-18,-88,-38v-24,-20,-37,-28,-51,-28v-24,0,-40,23,-46,60r-54,-12v5,-69,49,-118,95,-118v39,0,65,19,89,39v23,19,36,27,51,27v23,0,39,-22,46,-60r54,12v-5,69,-49,118,-96,118","w":526},"\u0154":{"d":"278,-717r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm47,0r0,-66r84,0r0,-526r-84,0r0,-66r250,0v145,0,239,73,239,191v0,90,-58,153,-141,180r138,221r79,0r0,66r-130,0r-162,-269v-12,1,-25,2,-38,2v-26,0,-57,-1,-76,-2r0,203r86,0r0,66r-245,0xm286,-332v100,0,175,-46,175,-133v0,-83,-66,-127,-168,-127r-87,0r0,258v20,1,48,2,80,2","w":618},"\u0155":{"d":"305,-434v42,0,64,27,64,56v0,27,-21,51,-48,51v-26,0,-44,-17,-51,-36v-32,9,-71,47,-92,90r0,213r80,0r0,60r-217,0r0,-60r68,0r0,-305r-68,0r0,-61r134,0r0,97v33,-59,84,-105,130,-105xm175,-503r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44","w":380},"\u0158":{"d":"430,-899r31,37r-154,147r-154,-147r31,-37r123,93xm47,0r0,-66r84,0r0,-526r-84,0r0,-66r250,0v145,0,239,73,239,191v0,90,-58,153,-141,180r138,221r79,0r0,66r-130,0r-162,-269v-12,1,-25,2,-38,2v-26,0,-57,-1,-76,-2r0,203r86,0r0,66r-245,0xm286,-332v100,0,175,-46,175,-133v0,-83,-66,-127,-168,-127r-87,0r0,258v20,1,48,2,80,2","w":618},"\u0159":{"d":"305,-434v42,0,64,27,64,56v0,27,-21,51,-48,51v-26,0,-44,-17,-51,-36v-32,9,-71,47,-92,90r0,213r80,0r0,60r-217,0r0,-60r68,0r0,-305r-68,0r0,-61r134,0r0,97v33,-59,84,-105,130,-105xm328,-685r31,37r-154,147r-154,-147r31,-37r123,93","w":380},"\u0156":{"d":"240,278r-16,-23v56,-42,75,-81,76,-103v-24,-5,-43,-25,-43,-50v0,-28,23,-49,49,-49v31,0,56,22,56,65v0,46,-32,111,-122,160xm47,0r0,-66r84,0r0,-526r-84,0r0,-66r250,0v145,0,239,73,239,191v0,90,-58,153,-141,180r138,221r79,0r0,66r-130,0r-162,-269v-12,1,-25,2,-38,2v-26,0,-57,-1,-76,-2r0,203r86,0r0,66r-245,0xm286,-332v100,0,175,-46,175,-133v0,-83,-66,-127,-168,-127r-87,0r0,258v20,1,48,2,80,2","w":618},"\u0157":{"d":"305,-434v42,0,64,27,64,56v0,27,-21,51,-48,51v-26,0,-44,-17,-51,-36v-32,9,-71,47,-92,90r0,213r80,0r0,60r-217,0r0,-60r68,0r0,-305r-68,0r0,-61r134,0r0,97v33,-59,84,-105,130,-105xm75,278r-16,-23v56,-42,75,-81,76,-103v-24,-5,-43,-25,-43,-50v0,-28,23,-49,49,-49v31,0,56,22,56,65v0,46,-32,111,-122,160","w":380},"\u015a":{"d":"252,-717r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm274,11v-129,0,-219,-72,-219,-136v0,-38,23,-63,53,-63v31,0,52,23,52,49v0,18,-7,32,-16,44v22,22,71,41,131,41v88,0,141,-45,141,-116v0,-68,-62,-98,-137,-127v-113,-43,-199,-85,-199,-198v0,-101,80,-175,203,-175v108,0,196,62,196,130v0,37,-24,58,-52,58v-32,0,-53,-24,-53,-51v0,-16,7,-29,14,-38v-18,-20,-66,-33,-107,-33v-79,0,-127,43,-127,103v0,70,62,99,145,131v108,42,191,83,191,194v0,116,-92,187,-216,187","w":549},"\u015b":{"d":"376,-341v0,27,-18,46,-42,46v-26,0,-46,-18,-46,-44v0,-7,1,-16,5,-24v-15,-10,-43,-15,-75,-15v-59,0,-93,31,-93,62v0,37,39,50,109,68v86,21,158,45,158,128v0,81,-79,128,-170,128v-62,0,-125,-20,-154,-49v-15,-15,-23,-32,-23,-53v0,-25,18,-47,43,-47v27,0,46,18,46,44v0,9,-3,17,-7,26v14,11,49,24,95,24v58,0,104,-25,104,-66v0,-39,-40,-54,-101,-69v-103,-26,-167,-50,-167,-129v0,-64,60,-123,162,-123v57,0,108,18,134,44v15,15,22,31,22,49xm189,-503r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44","w":437},"\u0160":{"d":"404,-899r31,37r-154,147r-154,-147r31,-37r123,93xm274,11v-129,0,-219,-72,-219,-136v0,-38,23,-63,53,-63v31,0,52,23,52,49v0,18,-7,32,-16,44v22,22,71,41,131,41v88,0,141,-45,141,-116v0,-68,-62,-98,-137,-127v-113,-43,-199,-85,-199,-198v0,-101,80,-175,203,-175v108,0,196,62,196,130v0,37,-24,58,-52,58v-32,0,-53,-24,-53,-51v0,-16,7,-29,14,-38v-18,-20,-66,-33,-107,-33v-79,0,-127,43,-127,103v0,70,62,99,145,131v108,42,191,83,191,194v0,116,-92,187,-216,187","w":549},"\u0161":{"d":"376,-341v0,27,-18,46,-42,46v-26,0,-46,-18,-46,-44v0,-7,1,-16,5,-24v-15,-10,-43,-15,-75,-15v-59,0,-93,31,-93,62v0,37,39,50,109,68v86,21,158,45,158,128v0,81,-79,128,-170,128v-62,0,-125,-20,-154,-49v-15,-15,-23,-32,-23,-53v0,-25,18,-47,43,-47v27,0,46,18,46,44v0,9,-3,17,-7,26v14,11,49,24,95,24v58,0,104,-25,104,-66v0,-39,-40,-54,-101,-69v-103,-26,-167,-50,-167,-129v0,-64,60,-123,162,-123v57,0,108,18,134,44v15,15,22,31,22,49xm342,-685r31,37r-154,147r-154,-147r31,-37r123,93","w":437},"\u015e":{"d":"279,199v-38,0,-79,-11,-112,-28r15,-32v26,11,63,19,88,19v25,0,42,-11,42,-29v0,-18,-16,-31,-53,-31v-5,0,-16,2,-18,2r-19,-16r23,-74v-113,-10,-190,-76,-190,-135v0,-38,23,-63,53,-63v31,0,52,23,52,49v0,18,-7,32,-16,44v22,22,71,41,131,41v88,0,141,-45,141,-116v0,-68,-62,-98,-137,-127v-113,-43,-199,-85,-199,-198v0,-101,80,-175,203,-175v108,0,196,62,196,130v0,37,-24,58,-52,58v-32,0,-53,-24,-53,-51v0,-16,7,-29,14,-38v-18,-20,-66,-33,-107,-33v-79,0,-127,43,-127,103v0,70,62,99,145,131v108,42,191,83,191,194v0,113,-87,183,-206,187r-1,37v62,3,94,35,94,76v0,40,-34,75,-98,75","w":549},"\u015f":{"d":"226,199v-38,0,-79,-11,-112,-28r15,-32v26,11,63,19,88,19v25,0,42,-11,42,-29v0,-18,-16,-31,-53,-31v-5,0,-16,2,-18,2r-19,-16r25,-78v-53,-5,-102,-22,-126,-47v-15,-15,-23,-32,-23,-53v0,-25,18,-47,43,-47v27,0,46,18,46,44v0,9,-3,17,-7,26v14,11,49,24,95,24v58,0,104,-25,104,-66v0,-39,-40,-54,-101,-69v-103,-26,-167,-50,-167,-129v0,-64,60,-123,162,-123v57,0,108,18,134,44v15,15,22,31,22,49v0,27,-18,46,-42,46v-26,0,-46,-18,-46,-44v0,-7,1,-16,5,-24v-15,-10,-43,-15,-75,-15v-59,0,-93,31,-93,62v0,37,39,50,109,68v86,21,158,45,158,128v0,78,-73,124,-160,128r-2,40v62,3,94,35,94,76v0,40,-34,75,-98,75","w":437},"\u0218":{"d":"214,278r-16,-23v56,-42,75,-81,76,-103v-24,-5,-43,-25,-43,-50v0,-28,23,-49,49,-49v31,0,56,22,56,65v0,46,-32,111,-122,160xm274,11v-129,0,-219,-72,-219,-136v0,-38,23,-63,53,-63v31,0,52,23,52,49v0,18,-7,32,-16,44v22,22,71,41,131,41v88,0,141,-45,141,-116v0,-68,-62,-98,-137,-127v-113,-43,-199,-85,-199,-198v0,-101,80,-175,203,-175v108,0,196,62,196,130v0,37,-24,58,-52,58v-32,0,-53,-24,-53,-51v0,-16,7,-29,14,-38v-18,-20,-66,-33,-107,-33v-79,0,-127,43,-127,103v0,70,62,99,145,131v108,42,191,83,191,194v0,116,-92,187,-216,187","w":549},"\u0219":{"d":"376,-341v0,27,-18,46,-42,46v-26,0,-46,-18,-46,-44v0,-7,1,-16,5,-24v-15,-10,-43,-15,-75,-15v-59,0,-93,31,-93,62v0,37,39,50,109,68v86,21,158,45,158,128v0,81,-79,128,-170,128v-62,0,-125,-20,-154,-49v-15,-15,-23,-32,-23,-53v0,-25,18,-47,43,-47v27,0,46,18,46,44v0,9,-3,17,-7,26v14,11,49,24,95,24v58,0,104,-25,104,-66v0,-39,-40,-54,-101,-69v-103,-26,-167,-50,-167,-129v0,-64,60,-123,162,-123v57,0,108,18,134,44v15,15,22,31,22,49xm151,278r-16,-23v56,-42,75,-81,76,-103v-24,-5,-43,-25,-43,-50v0,-28,23,-49,49,-49v31,0,56,22,56,65v0,46,-32,111,-122,160","w":437},"\u0164":{"d":"437,-899r31,37r-154,147r-154,-147r31,-37r123,93xm189,0r0,-66r89,0r0,-529r-165,0r0,106r-71,0r0,-169r547,0r0,169r-71,0r0,-106r-165,0r0,529r89,0r0,66r-253,0","w":631},"\u0165":{"d":"227,-476r-23,-18v25,-37,36,-69,36,-103v0,-29,-9,-42,-9,-68v0,-25,15,-46,45,-46v28,0,43,19,43,50v0,64,-42,133,-92,185xm200,8v-45,0,-77,-17,-94,-50v-8,-16,-11,-36,-11,-59r0,-264r-79,0r0,-61r79,0r0,-103r68,-27r0,130r131,0r0,61r-131,0r0,254v0,14,2,24,7,33v8,15,24,22,50,22v25,0,56,-12,80,-26r-9,66v-22,12,-52,24,-91,24","w":333},"\u0162":{"d":"247,278r-16,-23v56,-42,75,-81,76,-103v-24,-5,-43,-25,-43,-50v0,-28,23,-49,49,-49v31,0,56,22,56,65v0,46,-32,111,-122,160xm189,0r0,-66r89,0r0,-529r-165,0r0,106r-71,0r0,-169r547,0r0,169r-71,0r0,-106r-165,0r0,529r89,0r0,66r-253,0","w":631},"\u0163":{"d":"116,278r-16,-23v56,-42,75,-81,76,-103v-24,-5,-43,-25,-43,-50v0,-28,23,-49,49,-49v31,0,56,22,56,65v0,46,-32,111,-122,160xm200,8v-45,0,-77,-17,-94,-50v-8,-16,-11,-36,-11,-59r0,-264r-79,0r0,-61r79,0r0,-103r68,-27r0,130r131,0r0,61r-131,0r0,254v0,14,2,24,7,33v8,15,24,22,50,22v25,0,56,-12,80,-26r-9,66v-22,12,-52,24,-91,24","w":333},"\u00de":{"d":"47,0r0,-66r84,0r0,-526r-84,0r0,-66r244,0r0,63r-85,0r0,75v15,-1,62,-1,106,-1v132,0,231,67,231,185v0,123,-93,192,-232,192v-41,0,-86,-1,-105,-2r0,83r89,0r0,63r-248,0xm316,-207v91,0,152,-45,152,-127v0,-83,-67,-124,-152,-124v-47,0,-94,1,-110,2r0,247v20,1,63,2,110,2","w":591},"\u00fe":{"d":"1,196r0,-60r68,0r0,-808r-69,0r0,-60r138,0r0,363v35,-36,77,-64,141,-64v112,0,201,87,201,218v0,120,-83,223,-210,223v-50,0,-96,-19,-132,-47r0,175r82,0r0,60r-219,0xm266,-53v83,0,141,-68,142,-161v1,-96,-59,-158,-139,-158v-55,0,-96,26,-131,62r0,209v32,27,73,48,128,48","w":526},"\u00da":{"d":"325,-717r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm354,12v-150,0,-238,-85,-238,-239r0,-365r-83,0r0,-66r243,0r0,66r-87,0r0,360v0,117,61,176,166,176v105,0,167,-56,167,-174r0,-362r-87,0r0,-66r242,0r0,66r-83,0r0,362v0,156,-92,242,-240,242","w":710},"\u00fa":{"d":"239,-503r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm228,8v-56,0,-93,-21,-114,-57v-13,-23,-20,-53,-20,-87r0,-229r-68,0r0,-61r137,0r0,277v0,24,4,43,12,57v13,25,35,36,70,36v53,0,100,-34,140,-75r0,-234r-70,0r0,-61r139,0r0,366r68,0r0,60r-135,0r0,-79v-40,47,-98,87,-159,87","w":553},"\u016c":{"d":"354,12v-150,0,-238,-85,-238,-239r0,-365r-83,0r0,-66r243,0r0,66r-87,0r0,360v0,117,61,176,166,176v105,0,167,-56,167,-174r0,-362r-87,0r0,-66r242,0r0,66r-83,0r0,362v0,156,-92,242,-240,242xm354,-722v-73,0,-133,-52,-159,-136r49,-21v22,57,66,88,110,88v48,0,89,-35,110,-88r49,21v-25,84,-86,136,-159,136","w":710},"\u016d":{"d":"228,8v-56,0,-93,-21,-114,-57v-13,-23,-20,-53,-20,-87r0,-229r-68,0r0,-61r137,0r0,277v0,24,4,43,12,57v13,25,35,36,70,36v53,0,100,-34,140,-75r0,-234r-70,0r0,-61r139,0r0,366r68,0r0,60r-135,0r0,-79v-40,47,-98,87,-159,87xm267,-508v-73,0,-133,-52,-159,-136r49,-21v22,57,66,88,110,88v48,0,89,-35,110,-88r49,21v-25,84,-86,136,-159,136","w":553},"\u00db":{"d":"231,-714r-31,-37r154,-147r154,147r-31,37r-123,-93xm354,12v-150,0,-238,-85,-238,-239r0,-365r-83,0r0,-66r243,0r0,66r-87,0r0,360v0,117,61,176,166,176v105,0,167,-56,167,-174r0,-362r-87,0r0,-66r242,0r0,66r-83,0r0,362v0,156,-92,242,-240,242","w":710},"\u00fb":{"d":"145,-500r-31,-37r154,-147r154,147r-31,37r-123,-93xm228,8v-56,0,-93,-21,-114,-57v-13,-23,-20,-53,-20,-87r0,-229r-68,0r0,-61r137,0r0,277v0,24,4,43,12,57v13,25,35,36,70,36v53,0,100,-34,140,-75r0,-234r-70,0r0,-61r139,0r0,366r68,0r0,60r-135,0r0,-79v-40,47,-98,87,-159,87","w":553},"\u00dc":{"d":"442,-733v-32,0,-57,-26,-57,-57v0,-32,26,-58,57,-58v32,0,56,26,56,58v0,31,-25,57,-56,57xm267,-733v-31,0,-56,-26,-56,-57v0,-32,26,-58,57,-58v31,0,56,26,56,58v0,31,-25,57,-57,57xm354,12v-150,0,-238,-85,-238,-239r0,-365r-83,0r0,-66r243,0r0,66r-87,0r0,360v0,117,61,176,166,176v105,0,167,-56,167,-174r0,-362r-87,0r0,-66r242,0r0,66r-83,0r0,362v0,156,-92,242,-240,242","w":710},"\u00fc":{"d":"355,-519v-32,0,-57,-26,-57,-57v0,-32,26,-58,57,-58v32,0,56,26,56,58v0,31,-25,57,-56,57xm180,-519v-31,0,-56,-26,-56,-57v0,-32,26,-58,57,-58v31,0,56,26,56,58v0,31,-25,57,-57,57xm228,8v-56,0,-93,-21,-114,-57v-13,-23,-20,-53,-20,-87r0,-229r-68,0r0,-61r137,0r0,277v0,24,4,43,12,57v13,25,35,36,70,36v53,0,100,-34,140,-75r0,-234r-70,0r0,-61r139,0r0,366r68,0r0,60r-135,0r0,-79v-40,47,-98,87,-159,87","w":553},"\u00d9":{"d":"354,12v-150,0,-238,-85,-238,-239r0,-365r-83,0r0,-66r243,0r0,66r-87,0r0,360v0,117,61,176,166,176v105,0,167,-56,167,-174r0,-362r-87,0r0,-66r242,0r0,66r-83,0r0,362v0,156,-92,242,-240,242xm384,-717r-151,-86v-21,-13,-34,-30,-34,-44v0,-27,19,-43,40,-43v15,0,29,9,43,23r120,126","w":710},"\u00f9":{"d":"228,8v-56,0,-93,-21,-114,-57v-13,-23,-20,-53,-20,-87r0,-229r-68,0r0,-61r137,0r0,277v0,24,4,43,12,57v13,25,35,36,70,36v53,0,100,-34,140,-75r0,-234r-70,0r0,-61r139,0r0,366r68,0r0,60r-135,0r0,-79v-40,47,-98,87,-159,87xm298,-503r-151,-86v-21,-13,-34,-30,-34,-44v0,-27,19,-43,40,-43v15,0,29,9,43,23r120,126","w":553},"\u0170":{"d":"354,12v-150,0,-238,-85,-238,-239r0,-365r-83,0r0,-66r243,0r0,66r-87,0r0,360v0,117,61,176,166,176v105,0,167,-56,167,-174r0,-362r-87,0r0,-66r242,0r0,66r-83,0r0,362v0,156,-92,242,-240,242xm228,-719r-16,-24r132,-124v15,-14,29,-23,43,-23v22,0,40,16,40,41v0,15,-14,33,-38,46xm419,-723r-13,-25r142,-118v16,-13,30,-19,42,-19v24,0,39,18,39,40v0,17,-13,35,-40,46","w":710},"\u0171":{"d":"228,8v-56,0,-93,-21,-114,-57v-13,-23,-20,-53,-20,-87r0,-229r-68,0r0,-61r137,0r0,277v0,24,4,43,12,57v13,25,35,36,70,36v53,0,100,-34,140,-75r0,-234r-70,0r0,-61r139,0r0,366r68,0r0,60r-135,0r0,-79v-40,47,-98,87,-159,87xm142,-505r-16,-24r132,-124v15,-14,29,-23,43,-23v22,0,40,16,40,41v0,15,-14,33,-38,46xm333,-509r-13,-25r142,-118v16,-13,30,-19,42,-19v24,0,39,18,39,40v0,17,-13,35,-40,46","w":553},"\u016a":{"d":"354,12v-150,0,-238,-85,-238,-239r0,-365r-83,0r0,-66r243,0r0,66r-87,0r0,360v0,117,61,176,166,176v105,0,167,-56,167,-174r0,-362r-87,0r0,-66r242,0r0,66r-83,0r0,362v0,156,-92,242,-240,242xm203,-749r0,-63r304,0r0,63r-304,0","w":710},"\u016b":{"d":"228,8v-56,0,-93,-21,-114,-57v-13,-23,-20,-53,-20,-87r0,-229r-68,0r0,-61r137,0r0,277v0,24,4,43,12,57v13,25,35,36,70,36v53,0,100,-34,140,-75r0,-234r-70,0r0,-61r139,0r0,366r68,0r0,60r-135,0r0,-79v-40,47,-98,87,-159,87xm116,-535r0,-63r304,0r0,63r-304,0","w":553},"\u0172":{"d":"382,201v-70,0,-105,-38,-105,-93v0,-39,20,-72,49,-97v-133,-10,-210,-93,-210,-238r0,-365r-83,0r0,-66r243,0r0,66r-87,0r0,360v0,117,61,176,166,176v105,0,167,-56,167,-174r0,-362r-87,0r0,-66r242,0r0,66r-83,0r0,362v0,141,-75,225,-198,239v-35,22,-57,51,-57,83v0,32,18,52,56,52v29,0,56,-8,77,-19r-3,53v-16,11,-50,23,-87,23","w":710},"\u0173":{"d":"228,8v-56,0,-93,-21,-114,-57v-13,-23,-20,-53,-20,-87r0,-229r-68,0r0,-61r137,0r0,277v0,24,4,43,12,57v13,25,35,36,70,36v53,0,100,-34,140,-75r0,-234r-70,0r0,-61r139,0r0,366r68,0r0,60r-67,0v-43,23,-72,55,-72,92v0,32,18,52,55,52v30,0,56,-8,78,-19r-4,53v-15,11,-49,23,-86,23v-70,0,-106,-38,-106,-93v0,-46,28,-83,67,-110r0,-77v-40,47,-98,87,-159,87","w":553},"\u016e":{"d":"354,-708v-61,0,-109,-49,-109,-111v0,-62,48,-111,109,-111v62,0,110,49,110,111v0,62,-48,111,-110,111xm354,-759v33,0,56,-27,56,-60v0,-33,-23,-60,-56,-60v-32,0,-55,27,-55,60v0,33,23,60,55,60xm354,12v-150,0,-238,-85,-238,-239r0,-365r-83,0r0,-66r243,0r0,66r-87,0r0,360v0,117,61,176,166,176v105,0,167,-56,167,-174r0,-362r-87,0r0,-66r242,0r0,66r-83,0r0,362v0,156,-92,242,-240,242","w":710},"\u016f":{"d":"268,-494v-61,0,-109,-49,-109,-111v0,-62,48,-111,109,-111v62,0,110,49,110,111v0,62,-48,111,-110,111xm268,-545v33,0,56,-27,56,-60v0,-33,-23,-60,-56,-60v-32,0,-55,27,-55,60v0,33,23,60,55,60xm228,8v-56,0,-93,-21,-114,-57v-13,-23,-20,-53,-20,-87r0,-229r-68,0r0,-61r137,0r0,277v0,24,4,43,12,57v13,25,35,36,70,36v53,0,100,-34,140,-75r0,-234r-70,0r0,-61r139,0r0,366r68,0r0,60r-135,0r0,-79v-40,47,-98,87,-159,87","w":553},"\u1e82":{"d":"466,-717r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm284,10r-187,-602r-76,0r0,-66r238,0r0,66r-83,0r138,461r165,-448r41,0r166,447r134,-460r-86,0r0,-66r237,0r0,66r-76,0r-184,602r-43,0r-170,-453r-171,453r-43,0","w":990},"\u1e83":{"d":"318,-503r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm187,18r-117,-383r-63,0r0,-61r197,0r0,59r-68,0r77,269r119,-280r37,0r118,280r77,-269r-72,0r0,-59r197,0r0,61r-64,0r-116,383r-38,0r-123,-290r-124,290r-37,0","w":696},"\u0174":{"d":"372,-714r-31,-37r154,-147r154,147r-31,37r-123,-93xm284,10r-187,-602r-76,0r0,-66r238,0r0,66r-83,0r138,461r165,-448r41,0r166,447r134,-460r-86,0r0,-66r237,0r0,66r-76,0r-184,602r-43,0r-170,-453r-171,453r-43,0","w":990},"\u0175":{"d":"224,-500r-31,-37r154,-147r154,147r-31,37r-123,-93xm187,18r-117,-383r-63,0r0,-61r197,0r0,59r-68,0r77,269r119,-280r37,0r118,280r77,-269r-72,0r0,-59r197,0r0,61r-64,0r-116,383r-38,0r-123,-290r-124,290r-37,0","w":696},"\u1e84":{"d":"583,-733v-32,0,-57,-26,-57,-57v0,-32,26,-58,57,-58v32,0,56,26,56,58v0,31,-25,57,-56,57xm408,-733v-31,0,-56,-26,-56,-57v0,-32,26,-58,57,-58v31,0,56,26,56,58v0,31,-25,57,-57,57xm284,10r-187,-602r-76,0r0,-66r238,0r0,66r-83,0r138,461r165,-448r41,0r166,447r134,-460r-86,0r0,-66r237,0r0,66r-76,0r-184,602r-43,0r-170,-453r-171,453r-43,0","w":990},"\u1e85":{"d":"435,-519v-32,0,-57,-26,-57,-57v0,-32,26,-58,57,-58v32,0,56,26,56,58v0,31,-25,57,-56,57xm260,-519v-31,0,-56,-26,-56,-57v0,-32,26,-58,57,-58v31,0,56,26,56,58v0,31,-25,57,-57,57xm187,18r-117,-383r-63,0r0,-61r197,0r0,59r-68,0r77,269r119,-280r37,0r118,280r77,-269r-72,0r0,-59r197,0r0,61r-64,0r-116,383r-38,0r-123,-290r-124,290r-37,0","w":696},"\u1e80":{"d":"284,10r-187,-602r-76,0r0,-66r238,0r0,66r-83,0r138,461r165,-448r41,0r166,447r134,-460r-86,0r0,-66r237,0r0,66r-76,0r-184,602r-43,0r-170,-453r-171,453r-43,0xm525,-717r-151,-86v-21,-13,-34,-30,-34,-44v0,-27,19,-43,40,-43v15,0,29,9,43,23r120,126","w":990},"\u1e81":{"d":"187,18r-117,-383r-63,0r0,-61r197,0r0,59r-68,0r77,269r119,-280r37,0r118,280r77,-269r-72,0r0,-59r197,0r0,61r-64,0r-116,383r-38,0r-123,-290r-124,290r-37,0xm377,-503r-151,-86v-21,-13,-34,-30,-34,-44v0,-27,19,-43,40,-43v15,0,29,9,43,23r120,126","w":696},"\u00dd":{"d":"191,0r0,-66r92,0r0,-197r-194,-329r-70,0r0,-66r221,0r0,66r-68,0r150,265r151,-265r-71,0r0,-66r222,0r0,66r-71,0r-195,328r0,198r93,0r0,66r-260,0xm291,-717r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44","w":642},"\u00fd":{"d":"212,128v-32,46,-67,72,-110,72v-40,0,-74,-23,-74,-56v0,-28,19,-44,43,-44v24,0,39,18,45,37v16,-6,32,-19,51,-48v10,-15,20,-36,32,-60r26,-53r-160,-341r-59,0r0,-61r199,0r0,59r-67,0v0,0,121,274,120,274r122,-274r-70,0r0,-59r196,0r0,61r-58,0r-201,432v-11,23,-22,43,-35,61xm227,-503r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44","w":513},"\u0176":{"d":"191,0r0,-66r92,0r0,-197r-194,-329r-70,0r0,-66r221,0r0,66r-68,0r150,265r151,-265r-71,0r0,-66r222,0r0,66r-71,0r-195,328r0,198r93,0r0,66r-260,0xm197,-714r-31,-37r154,-147r154,147r-31,37r-123,-93","w":642},"\u0177":{"d":"212,128v-32,46,-67,72,-110,72v-40,0,-74,-23,-74,-56v0,-28,19,-44,43,-44v24,0,39,18,45,37v16,-6,32,-19,51,-48v10,-15,20,-36,32,-60r26,-53r-160,-341r-59,0r0,-61r199,0r0,59r-67,0v0,0,121,274,120,274r122,-274r-70,0r0,-59r196,0r0,61r-58,0r-201,432v-11,23,-22,43,-35,61xm133,-500r-31,-37r154,-147r154,147r-31,37r-123,-93","w":513},"\u0178":{"d":"191,0r0,-66r92,0r0,-197r-194,-329r-70,0r0,-66r221,0r0,66r-68,0r150,265r151,-265r-71,0r0,-66r222,0r0,66r-71,0r-195,328r0,198r93,0r0,66r-260,0xm407,-733v-32,0,-57,-26,-57,-57v0,-32,26,-58,57,-58v32,0,56,26,56,58v0,31,-25,57,-56,57xm232,-733v-31,0,-56,-26,-56,-57v0,-32,26,-58,57,-58v31,0,56,26,56,58v0,31,-25,57,-57,57","w":642},"\u00ff":{"d":"212,128v-32,46,-67,72,-110,72v-40,0,-74,-23,-74,-56v0,-28,19,-44,43,-44v24,0,39,18,45,37v16,-6,32,-19,51,-48v10,-15,20,-36,32,-60r26,-53r-160,-341r-59,0r0,-61r199,0r0,59r-67,0v0,0,121,274,120,274r122,-274r-70,0r0,-59r196,0r0,61r-58,0r-201,432v-11,23,-22,43,-35,61xm343,-519v-32,0,-57,-26,-57,-57v0,-32,26,-58,57,-58v32,0,56,26,56,58v0,31,-25,57,-56,57xm168,-519v-31,0,-56,-26,-56,-57v0,-32,26,-58,57,-58v31,0,56,26,56,58v0,31,-25,57,-57,57","w":513},"\u1ef2":{"d":"191,0r0,-66r92,0r0,-197r-194,-329r-70,0r0,-66r221,0r0,66r-68,0r150,265r151,-265r-71,0r0,-66r222,0r0,66r-71,0r-195,328r0,198r93,0r0,66r-260,0xm349,-717r-151,-86v-21,-13,-34,-30,-34,-44v0,-27,19,-43,40,-43v15,0,29,9,43,23r120,126","w":642},"\u1ef3":{"d":"212,128v-32,46,-67,72,-110,72v-40,0,-74,-23,-74,-56v0,-28,19,-44,43,-44v24,0,39,18,45,37v16,-6,32,-19,51,-48v10,-15,20,-36,32,-60r26,-53r-160,-341r-59,0r0,-61r199,0r0,59r-67,0v0,0,121,274,120,274r122,-274r-70,0r0,-59r196,0r0,61r-58,0r-201,432v-11,23,-22,43,-35,61xm285,-503r-151,-86v-21,-13,-34,-30,-34,-44v0,-27,19,-43,40,-43v15,0,29,9,43,23r120,126","w":513},"\u0179":{"d":"273,-717r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm45,0r0,-36r403,-560r-314,0r0,104r-68,0r0,-166r488,0r0,36r-403,560r343,0r0,-104r67,0r0,166r-516,0","w":606},"\u017a":{"d":"195,-503r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44xm37,0r0,-31r273,-338r-195,0r0,83r-61,0r0,-140r356,0r0,31r-273,338r216,0r0,-83r61,0r0,140r-377,0","w":450},"\u017d":{"d":"424,-899r31,37r-154,147r-154,-147r31,-37r123,93xm45,0r0,-36r403,-560r-314,0r0,104r-68,0r0,-166r488,0r0,36r-403,560r343,0r0,-104r67,0r0,166r-516,0","w":606},"\u017e":{"d":"348,-685r31,37r-154,147r-154,-147r31,-37r123,93xm37,0r0,-31r273,-338r-195,0r0,83r-61,0r0,-140r356,0r0,31r-273,338r216,0r0,-83r61,0r0,140r-377,0","w":450},"\u017b":{"d":"45,0r0,-36r403,-560r-314,0r0,104r-68,0r0,-166r488,0r0,36r-403,560r343,0r0,-104r67,0r0,166r-516,0xm301,-728v-32,0,-57,-27,-57,-59v0,-33,26,-59,58,-59v32,0,57,26,57,59v0,32,-26,59,-58,59","w":606},"\u017c":{"d":"37,0r0,-31r273,-338r-195,0r0,83r-61,0r0,-140r356,0r0,31r-273,338r216,0r0,-83r61,0r0,140r-377,0xm224,-514v-32,0,-57,-27,-57,-59v0,-33,26,-59,58,-59v32,0,57,26,57,59v0,32,-26,59,-58,59","w":450},"\u0259":{"d":"235,8v-127,0,-195,-95,-195,-201v0,-16,1,-29,4,-40r327,0v-10,-93,-72,-140,-164,-140v-56,0,-99,18,-149,47r6,-66v44,-28,99,-42,153,-42v136,0,227,90,227,220v0,118,-80,222,-209,222xm239,-51v64,0,121,-45,132,-127r-261,0v4,75,48,127,129,127","w":485},"\u00df":{"d":"368,8v-78,0,-118,-44,-118,-82v0,-27,20,-47,44,-47v23,0,44,17,44,42v0,9,-5,19,-7,24v6,4,24,7,34,7v54,0,94,-32,94,-89v0,-48,-32,-76,-83,-105v-64,-35,-106,-65,-106,-130v0,-41,17,-72,56,-111v36,-36,49,-67,49,-106v0,-50,-43,-90,-97,-90v-37,0,-64,17,-81,48v-10,19,-15,44,-15,71r0,560r-138,0r0,-60r69,0r0,-305r-76,0r0,-61r76,0r0,-125v0,-46,10,-86,29,-117v29,-46,78,-72,142,-72v92,0,160,63,160,150v0,59,-24,100,-65,139v-34,33,-44,51,-44,77v0,28,22,47,74,76v65,37,117,81,117,159v0,93,-70,147,-158,147","w":558},"0":{"d":"277,8v-134,0,-230,-113,-230,-262v0,-151,95,-262,230,-262v134,0,231,112,231,262v0,150,-96,262,-231,262xm277,-53v95,0,158,-84,158,-201v0,-117,-63,-201,-158,-201v-94,0,-158,84,-158,201v0,117,64,201,158,201","w":554},"1":{"d":"63,0r0,-60r120,0r0,-374r-107,27r-16,-60r162,-43r31,0r0,450r118,0r0,60r-308,0","w":409},"2":{"d":"235,-455v-46,0,-86,18,-104,40r-3,5v14,7,25,22,25,38v0,27,-21,49,-48,49v-29,0,-52,-24,-52,-61v0,-18,7,-37,19,-55v30,-42,92,-77,167,-77v121,0,184,71,184,146v0,84,-70,131,-151,181v-62,38,-116,76,-147,130r253,0r0,-86r62,0r0,145r-394,0r-9,-35v39,-94,118,-151,200,-203v65,-42,116,-76,116,-131v0,-50,-45,-86,-118,-86","w":495},"3":{"d":"35,-8v0,-33,24,-60,54,-60v27,0,46,22,46,46v0,16,-8,33,-25,41r4,6v24,25,70,39,121,39v84,0,142,-50,142,-116v0,-47,-26,-84,-73,-105v-30,-14,-69,-22,-113,-22r-22,0r0,-59r25,0v42,0,83,-10,115,-28v37,-22,61,-53,61,-91v0,-63,-53,-97,-128,-97v-55,0,-90,16,-108,38r-3,4v15,7,27,25,27,40v0,27,-24,46,-48,46v-28,0,-53,-24,-53,-60v0,-18,6,-36,19,-55v28,-41,87,-75,170,-75v115,0,194,71,194,158v0,51,-35,98,-83,125v-20,11,-42,19,-65,22v21,4,43,11,62,20v54,27,93,76,93,139v0,108,-93,178,-213,178v-80,0,-149,-32,-180,-78v-12,-17,-19,-36,-19,-56","w":492},"4":{"d":"317,120r0,-178r-287,0r-13,-30r322,-431r52,39r-270,363r196,0r0,-142r67,-27r0,169r112,0r0,59r-112,0r0,178r-67,0","w":514},"5":{"d":"42,14v0,-31,22,-58,52,-58v27,0,48,19,48,46v0,13,-7,28,-17,36v0,0,0,1,1,1v21,16,54,24,99,24v87,0,146,-59,146,-139v0,-78,-54,-134,-144,-134v-51,0,-97,12,-134,29r-31,-18r37,-309r310,0r0,66r-256,0r-21,187v28,-9,64,-15,102,-15v120,0,209,76,209,194v0,117,-94,200,-214,200v-71,0,-126,-19,-158,-48v-19,-18,-29,-40,-29,-62","w":485},"6":{"d":"298,-579v-89,0,-173,97,-178,276v27,-48,89,-86,161,-86v120,0,206,86,206,191v0,115,-89,207,-214,207v-62,0,-114,-21,-153,-60v-47,-48,-68,-123,-68,-217v0,-264,129,-372,252,-372v50,0,100,17,129,47v16,16,26,35,26,57v0,37,-27,59,-53,59v-30,0,-49,-22,-49,-49v0,-14,5,-24,13,-31v-16,-14,-40,-22,-72,-22xm273,-52v87,0,143,-62,143,-146v0,-74,-54,-131,-138,-131v-89,0,-150,67,-150,141v0,36,14,70,40,96v25,24,61,40,105,40","w":532},"7":{"d":"156,122r-61,-29r255,-543r-255,0r0,100r-64,0r0,-158r393,0r14,30","w":470},"8":{"d":"251,8v-122,0,-207,-77,-207,-177v0,-72,51,-131,118,-156v-65,-28,-105,-90,-105,-142v0,-101,86,-172,194,-172v110,0,195,71,195,172v0,57,-42,114,-106,142v67,25,120,84,120,156v0,100,-86,177,-209,177xm251,-352v68,0,124,-50,124,-112v0,-65,-53,-114,-124,-114v-70,0,-122,49,-122,114v0,62,55,112,122,112xm251,-53v78,0,135,-52,135,-120v0,-70,-58,-122,-135,-122v-76,0,-134,52,-134,122v0,68,58,120,134,120","w":504},"9":{"d":"221,124v-50,0,-102,-18,-131,-50v-15,-16,-23,-34,-23,-55v0,-37,26,-59,52,-59v31,0,50,23,50,49v0,14,-5,24,-13,31v16,14,40,22,72,22v95,0,177,-93,183,-264v-27,47,-90,82,-161,82v-120,0,-206,-84,-206,-189v0,-116,89,-207,214,-207v61,0,114,20,152,58v47,48,69,124,69,219v0,264,-134,363,-258,363xm363,-416v-25,-24,-61,-39,-105,-39v-86,0,-142,62,-142,146v0,73,53,128,137,128v89,0,150,-64,150,-139v0,-36,-14,-70,-40,-96","w":532},".":{"d":"103,8v-35,0,-61,-28,-61,-63v0,-35,26,-63,61,-63v35,0,61,28,61,63v0,35,-26,63,-61,63","w":206},",":{"d":"20,151r-19,-27v66,-50,89,-96,91,-123v-28,-5,-52,-30,-52,-60v0,-32,28,-58,60,-58v35,0,65,27,65,78v0,55,-37,132,-145,190","w":206},":":{"d":"113,-258v-34,0,-61,-28,-61,-62v0,-34,27,-62,61,-62v34,0,61,28,61,62v0,34,-27,62,-61,62xm113,8v-34,0,-61,-28,-61,-62v0,-34,27,-62,61,-62v34,0,61,28,61,62v0,34,-27,62,-61,62","w":225},";":{"d":"113,-258v-34,0,-61,-28,-61,-62v0,-34,27,-62,61,-62v34,0,61,28,61,62v0,34,-27,62,-61,62xm31,149r-19,-27v66,-49,89,-94,90,-121v-28,-5,-51,-30,-51,-59v0,-31,27,-57,59,-57v35,0,65,26,65,76v0,54,-37,131,-144,188","w":225},"\u2026":{"d":"515,8v-34,0,-59,-27,-59,-61v0,-34,25,-61,59,-61v34,0,60,27,60,61v0,34,-26,61,-60,61xm310,8v-34,0,-60,-27,-60,-61v0,-34,26,-61,60,-61v34,0,60,27,60,61v0,34,-26,61,-60,61xm105,8v-34,0,-60,-27,-60,-61v0,-34,26,-61,60,-61v34,0,60,27,60,61v0,34,-26,61,-60,61","w":620},"\u00b7":{"d":"131,-191v-35,0,-62,-28,-62,-63v0,-35,27,-63,62,-63v34,0,61,28,61,63v0,35,-27,63,-61,63","w":262},"\u2022":{"d":"144,-172v-55,0,-97,-44,-97,-99v0,-56,42,-101,97,-101v55,0,97,45,97,101v0,55,-42,99,-97,99","w":289},"&":{"d":"595,-267r-59,0v-18,54,-37,100,-62,138v40,38,97,88,106,95r-43,47r-103,-93v-55,59,-126,89,-207,89v-132,0,-198,-77,-198,-162v0,-80,51,-135,137,-184v-57,-65,-66,-100,-66,-144v0,-69,55,-149,158,-149v82,0,145,53,145,130v0,63,-38,111,-140,172v16,17,36,36,60,58r106,101v20,-30,36,-64,48,-98r-57,0r0,-59r175,0r0,59xm227,-53v67,0,120,-27,162,-69r-110,-103v-30,-27,-55,-51,-75,-72v-71,43,-102,84,-102,142v0,50,41,102,125,102xm171,-479v0,29,7,58,53,112v86,-53,108,-87,108,-133v0,-41,-31,-72,-74,-72v-52,0,-87,41,-87,93","w":619},"!":{"d":"108,-182r-26,-475r90,0r-26,475r-38,0xm127,8v-32,0,-57,-26,-57,-58v0,-32,25,-59,57,-59v32,0,58,27,58,59v0,32,-26,58,-58,58","w":255},"\u00a1":{"d":"127,-548v-32,0,-57,-27,-57,-59v0,-32,25,-58,57,-58v32,0,58,26,58,58v0,32,-26,59,-58,59xm82,0r26,-475r38,0r26,475r-90,0","w":255},"?":{"d":"21,-528v0,-25,9,-49,25,-70v32,-42,94,-72,165,-72v127,0,206,77,206,177v0,89,-67,167,-184,194r-10,117r-42,0r-16,-161v119,-23,178,-78,178,-148v0,-69,-50,-115,-133,-115v-49,0,-88,15,-109,43v-2,3,-4,6,-5,9v19,5,31,24,31,42v0,27,-19,49,-47,49v-30,0,-59,-26,-59,-65xm203,8v-32,0,-57,-26,-57,-58v0,-32,25,-59,57,-59v32,0,57,27,57,59v0,32,-25,58,-57,58","w":446},"\u00bf":{"d":"425,-130v0,25,-9,49,-25,70v-32,42,-93,72,-165,72v-127,0,-206,-77,-206,-177v0,-89,67,-167,184,-194r10,-117r42,0r16,161v-119,23,-178,78,-178,148v0,69,50,115,133,115v50,0,89,-15,109,-43v2,-3,3,-6,5,-8v-20,-6,-31,-24,-31,-43v0,-27,19,-49,47,-49v30,0,59,26,59,65xm243,-666v32,0,58,26,58,58v0,32,-26,59,-58,59v-32,0,-57,-27,-57,-59v0,-32,25,-58,57,-58","w":446},"\u201c":{"d":"290,-411v-35,0,-66,-27,-66,-79v0,-55,38,-141,145,-197r18,27v-66,48,-88,103,-89,131v28,5,52,30,52,59v0,33,-28,59,-60,59xm98,-411v-36,0,-66,-27,-66,-79v0,-55,38,-141,145,-197r18,27v-66,48,-88,103,-89,131v28,5,52,30,52,59v0,33,-28,59,-60,59","w":400},"\u201d":{"d":"223,-400r-18,-27v66,-48,88,-103,89,-131v-28,-5,-52,-30,-52,-59v0,-33,28,-59,60,-59v35,0,66,27,66,78v0,56,-38,141,-145,198xm31,-400r-18,-27v65,-48,87,-103,89,-131v-28,-5,-53,-30,-53,-59v0,-33,29,-59,61,-59v35,0,65,27,65,78v0,56,-38,141,-144,198","w":400},"\u2018":{"d":"98,-411v-36,0,-66,-27,-66,-79v0,-55,38,-141,145,-197r18,27v-66,48,-88,103,-89,131v28,5,52,30,52,59v0,33,-28,59,-60,59","w":207},"\u2019":{"d":"31,-400r-18,-27v65,-48,87,-103,89,-131v-28,-5,-53,-30,-53,-59v0,-33,29,-59,61,-59v35,0,65,27,65,78v0,56,-38,141,-144,198","w":207},"\u201e":{"d":"215,148r-18,-26v65,-49,87,-94,89,-121v-28,-5,-51,-29,-51,-58v0,-31,27,-57,59,-57v34,0,63,27,63,76v0,55,-35,126,-142,186xm22,148r-18,-26v65,-49,87,-94,89,-121v-28,-5,-51,-29,-51,-58v0,-31,27,-57,59,-57v34,0,63,27,63,76v0,55,-35,126,-142,186","w":402},"\u201a":{"d":"21,151r-19,-27v67,-50,90,-96,91,-123v-28,-5,-51,-30,-51,-60v0,-32,28,-58,60,-58v35,0,65,27,65,78v0,55,-37,132,-146,190","w":209},"\u00ab":{"d":"394,-107r-172,-168r172,-168r43,41r-124,127r124,127xm202,-107r-172,-168r172,-168r43,41r-124,127r124,127","w":485},"\u00bb":{"d":"283,-107r-43,-41r124,-127r-124,-127r43,-41r172,168xm92,-107r-43,-41r124,-127r-124,-127r43,-41r172,168","w":485},"\u2039":{"d":"202,-107r-172,-168r172,-168r43,41r-124,127r124,127","w":294},"\u203a":{"d":"92,-107r-43,-41r124,-127r-124,-127r43,-41r172,168","w":294},"-":{"d":"35,-243r0,-70r235,0r0,70r-235,0","w":305},"\u2013":{"d":"22,-244r0,-68r425,0r0,68r-425,0","w":469},"\u2014":{"d":"22,-244r0,-68r710,0r0,68r-710,0","w":754},"_":{"d":"-6,148r0,-67r545,0r0,67r-545,0","w":533},"\/":{"d":"39,209r-61,-27r410,-924r61,27","w":465},"\\":{"d":"426,209r-410,-924r61,-27r410,924","w":465},"|":{"d":"104,200r0,-932r62,0r0,932r-62,0","w":270},"(":{"d":"350,226v-159,-91,-281,-272,-281,-486v0,-214,122,-395,281,-487r36,52v-144,89,-244,245,-244,435v0,188,100,345,244,434","w":364},")":{"d":"14,226r-36,-52v144,-89,244,-245,244,-434v0,-189,-100,-346,-244,-435r36,-52v159,92,281,273,281,487v0,214,-122,395,-281,486","w":364},"[":{"d":"101,200r0,-932r229,0r0,64r-158,0r0,804r158,0r0,64r-229,0"},"]":{"d":"23,200r0,-64r159,0r0,-804r-159,0r0,-64r229,0r0,932r-229,0"},"{":{"d":"295,217v-152,-4,-229,-68,-229,-156v0,-56,30,-89,78,-136v26,-26,47,-49,47,-78v0,-49,-52,-80,-120,-80r-19,0r0,-62r19,0v68,0,120,-31,120,-80v0,-29,-21,-52,-47,-78v-48,-47,-78,-80,-78,-136v0,-88,77,-152,229,-156r0,55v-119,6,-160,55,-160,101v0,30,26,61,61,98v35,37,67,74,67,117v0,42,-31,92,-117,110v86,18,117,68,117,110v0,43,-32,80,-67,117v-35,37,-61,68,-61,98v0,46,41,95,160,101r0,55","w":347},"}":{"d":"52,217r0,-55v119,-6,160,-55,160,-101v0,-30,-26,-61,-61,-98v-35,-37,-67,-74,-67,-117v0,-42,31,-92,117,-110v-86,-18,-117,-68,-117,-110v0,-43,32,-80,67,-117v35,-37,61,-68,61,-98v0,-46,-41,-95,-160,-101r0,-55v152,4,228,68,228,156v0,56,-30,89,-77,136v-27,26,-48,49,-48,78v0,49,53,80,121,80r18,0r0,62r-18,0v-68,0,-121,31,-121,80v0,29,21,52,48,78v47,47,77,80,77,136v0,88,-76,152,-228,156","w":347},"@":{"d":"337,176v-175,0,-292,-130,-292,-305v0,-267,196,-479,427,-479v178,0,291,117,291,287v0,158,-85,285,-194,285v-64,0,-94,-40,-92,-84v-29,51,-78,84,-132,84v-70,0,-123,-53,-123,-139v0,-116,85,-216,183,-216v60,0,96,37,108,82r22,-78r64,0r-56,224v-14,51,-1,79,36,79v76,0,138,-113,138,-237v0,-139,-93,-245,-245,-245v-209,0,-381,195,-381,438v0,146,98,262,247,262v57,0,111,-14,160,-40r19,36v-54,30,-116,46,-180,46xm370,-95v71,0,127,-75,127,-150v0,-54,-31,-85,-83,-85v-68,0,-120,71,-120,149v0,51,26,86,76,86","w":805},"\u00a9":{"d":"299,8v-147,0,-257,-116,-257,-262v0,-145,110,-262,257,-262v148,0,257,117,257,262v0,145,-110,262,-257,262xm299,-28v123,0,216,-101,216,-226v0,-126,-92,-227,-216,-227v-123,0,-215,101,-215,227v0,125,92,226,215,226xm307,-356v-51,0,-90,43,-90,97v0,53,37,98,94,98v29,0,54,-12,76,-33r23,26v-24,28,-62,43,-100,43v-79,0,-135,-56,-135,-132v0,-80,63,-134,132,-134v61,0,99,34,99,62v0,16,-11,29,-26,29v-13,0,-24,-11,-24,-25v0,-5,2,-11,4,-14v-7,-9,-24,-17,-53,-17","w":605},"\u2117":{"d":"299,8v-147,0,-257,-116,-257,-262v0,-145,110,-262,257,-262v148,0,257,117,257,262v0,145,-110,262,-257,262xm299,-28v123,0,216,-101,216,-226v0,-126,-92,-227,-216,-227v-123,0,-215,101,-215,227v0,125,92,226,215,226xm314,-211r-31,0r0,58r34,0r0,33r-104,0r0,-33r32,0r0,-197r-32,0r0,-33r104,0v56,0,98,32,98,84v0,58,-40,88,-101,88xm317,-244v37,0,60,-21,60,-55v0,-31,-26,-51,-62,-51r-32,0r0,105v6,0,16,1,34,1","w":605},"\u00ae":{"d":"196,-336v-100,0,-179,-79,-179,-178v0,-100,79,-179,179,-179v99,0,179,79,179,179v0,99,-80,178,-179,178xm196,-661v-79,0,-143,64,-143,147v0,82,64,146,143,146v78,0,143,-64,143,-146v0,-83,-63,-147,-143,-147xm128,-432r0,-27r19,0r0,-116r-19,0r0,-27r67,0v39,0,68,17,68,51v0,22,-13,38,-31,46r24,46r20,0r0,27r-41,0r-34,-64r-23,0r0,37r21,0r0,27r-71,0xm178,-523r16,0v23,0,37,-9,37,-26v0,-18,-14,-26,-37,-26r-16,0r0,52","w":392},"\u2120":{"d":"230,-410r0,-38r35,0r8,-172r-36,0r0,-38r87,0r68,151r67,-151r88,0r0,38r-37,0r8,172r35,0r0,38r-106,0r0,-38r31,0r-6,-151r-71,155r-20,0r-72,-155r-5,151r31,0r0,38r-105,0xm104,-405v-53,0,-91,-28,-91,-58v0,-16,10,-28,25,-28v17,0,26,12,26,22v0,7,-2,11,-4,15v9,7,24,13,43,13v30,0,49,-13,49,-35v0,-21,-22,-32,-50,-41v-46,-16,-80,-32,-80,-76v0,-39,34,-70,85,-70v49,0,84,24,84,53v0,17,-11,27,-25,27v-17,0,-26,-10,-26,-22v0,-6,2,-9,5,-12v-8,-5,-22,-9,-38,-9v-27,0,-43,11,-43,31v0,22,24,31,51,40v45,15,79,32,79,77v0,46,-38,73,-90,73","w":568},"\u2122":{"d":"275,-410r0,-38r35,0r8,-172r-36,0r0,-38r87,0r68,151r67,-151r88,0r0,38r-37,0r8,172r35,0r0,38r-106,0r0,-38r31,0r-6,-151r-71,155r-20,0r-72,-155r-5,151r31,0r0,38r-105,0xm72,-410r0,-38r37,0r0,-174r-58,0r0,39r-38,0r0,-75r234,0r0,75r-39,0r0,-39r-57,0r0,174r36,0r0,38r-115,0","w":613},"*":{"d":"324,-533r-104,9r77,68v25,21,27,50,6,65v-23,17,-49,5,-61,-25r-40,-95r-39,95v-13,30,-38,42,-61,25v-21,-15,-20,-44,6,-65r77,-68r-104,-9v-33,-3,-50,-26,-42,-51v8,-24,37,-30,64,-14r89,52r-24,-101v-7,-31,8,-56,34,-56v27,0,42,25,34,56r-23,101r89,-52v27,-16,56,-10,64,14v8,25,-9,48,-42,51","w":405},"\u2020":{"d":"215,2r-15,-389r-83,-10v0,34,-24,57,-50,57v-29,0,-48,-24,-48,-50v0,-32,25,-57,66,-57v9,0,21,2,31,4r99,21r-25,-153v-7,-39,13,-65,43,-65v30,0,50,26,43,65r-26,153r100,-21v9,-2,21,-4,31,-4v41,0,66,25,66,57v0,26,-19,50,-49,50v-26,0,-50,-23,-49,-57r-83,10r-15,389r-36,0","w":466},"\u2021":{"d":"237,124v-30,0,-49,-27,-41,-68r23,-126r-86,18v-10,2,-20,4,-29,4v-38,0,-67,-23,-67,-55v0,-25,19,-47,48,-47v26,0,50,20,49,55r69,-8r18,-155r-18,-155r-69,-8v1,35,-23,55,-49,55v-29,0,-48,-23,-48,-48v0,-32,29,-55,67,-55v9,0,19,2,29,4r86,18r-23,-125v-8,-42,11,-68,41,-68v31,0,50,27,42,68r-23,125r86,-18v10,-2,20,-4,29,-4v38,0,67,23,67,55v0,25,-20,48,-48,48v-26,0,-50,-20,-49,-55r-69,8r-18,155r18,155r69,8v-1,-35,23,-55,49,-55v28,0,48,22,48,47v0,32,-29,55,-67,55v-9,0,-19,-2,-29,-4r-86,-18r23,126v8,41,-11,68,-42,68","w":475},"^":{"d":"101,-357r-32,-38r154,-147r154,147r-32,38r-122,-89","w":446},"~":{"d":"287,-191v-39,0,-65,-19,-87,-39v-24,-20,-37,-28,-51,-28v-24,0,-40,21,-47,59r-54,-13v6,-69,50,-116,97,-116v39,0,65,19,88,39v23,20,36,28,51,28v23,0,39,-22,46,-59r54,13v-5,69,-50,116,-97,116","w":432},"$":{"d":"290,-574r-6,69v71,9,132,43,132,93v0,29,-18,48,-43,48v-27,0,-47,-19,-47,-46v0,-8,2,-18,6,-26v-9,-5,-31,-12,-56,-15r-12,162v79,25,157,58,157,147v0,97,-85,140,-180,142r-8,106r-55,-5r8,-104v-74,-10,-148,-43,-148,-104v0,-27,19,-48,45,-48v29,0,47,19,47,44v0,9,-3,19,-7,29v11,10,38,20,72,24r14,-178v-75,-23,-148,-53,-148,-137v0,-77,71,-130,168,-134r6,-71xm353,-139v0,-43,-39,-65,-96,-83r-14,167v60,-2,110,-28,110,-84xm129,-377v0,38,36,57,87,74r11,-150v-56,3,-98,29,-98,76","w":465},"\u00a3":{"d":"363,-121r-164,0r0,16v0,57,-21,96,-50,126v33,3,71,12,96,20v49,16,73,20,98,20v41,0,60,-15,83,-56r49,27v-28,65,-67,92,-130,92v-35,0,-71,-7,-120,-26v-31,-12,-58,-20,-96,-20r-15,0v-23,32,-56,46,-80,46v-28,0,-47,-17,-47,-37v0,-34,34,-64,100,-67v31,-34,49,-77,49,-124v0,-6,0,-11,-1,-17r-103,0r0,-57r93,0r-10,-29v-13,-38,-25,-76,-25,-124v0,-98,69,-185,184,-185v88,0,159,50,159,108v0,39,-24,58,-48,58v-26,0,-44,-19,-44,-45v0,-15,7,-28,13,-34v-12,-15,-36,-28,-81,-28v-75,0,-117,62,-117,126v0,46,9,79,22,116v4,13,9,25,12,37r173,0r0,57","w":479},"\u20ac":{"d":"42,-288r0,-55r73,0v36,-105,133,-173,242,-173v111,0,191,68,191,130v0,33,-25,56,-53,56v-26,0,-46,-20,-46,-46v0,-17,10,-32,18,-36v-12,-19,-51,-43,-111,-43v-79,0,-141,47,-171,113r183,0r0,54r-198,0v-2,12,-3,23,-3,35v0,12,1,24,3,36r198,0r0,54r-182,0v30,65,92,111,173,111v58,0,107,-23,150,-66r41,47v-50,52,-120,80,-191,80v-121,0,-210,-71,-244,-171r-73,0r0,-55r61,0v-2,-11,-2,-23,-2,-35v0,-12,0,-24,2,-36r-61,0","w":595},"\u00a5":{"d":"78,-235r0,-55r104,0r-103,-161r-61,0r0,-57r183,0r0,56r-56,0r105,171r104,-171r-57,0r0,-56r182,0r0,57r-62,0r-103,161r105,0r0,55r-137,0r-3,5r0,54r140,0r0,55r-140,0r0,66r80,0r0,55r-220,0r0,-55r80,0r0,-66r-141,0r0,-55r141,0r0,-54r-3,-5r-138,0","w":500},"\u00a2":{"d":"455,-348v0,29,-23,56,-53,56v-22,0,-44,-15,-44,-45v0,-8,6,-26,21,-36v-11,-21,-43,-36,-77,-42r-29,323r20,0v54,0,101,-15,151,-47r-6,65v-42,29,-100,40,-150,40r-19,0r-12,140r-55,-5r12,-145v-102,-28,-169,-113,-169,-211v0,-110,91,-209,209,-218r9,-106r55,5r-9,103v82,13,146,69,146,123xm116,-254v0,70,39,127,106,151r27,-313v-68,10,-133,66,-133,162","w":502},"#":{"d":"50,-326r0,-59r102,0r19,-123r63,0r-19,123r127,0r20,-123r63,0r-20,123r94,0r0,59r-103,0r-21,139r93,0r0,59r-102,0r-20,128r-63,0r19,-128r-127,0r-20,128r-62,0r19,-128r-93,0r0,-59r102,0r22,-139r-93,0xm204,-328r-22,142r131,0r22,-142r-131,0","w":519},"\u00b6":{"d":"201,0r0,-59r80,0r0,-134v-17,1,-42,1,-71,1v-102,0,-177,-60,-177,-157v0,-89,78,-152,180,-152r324,0r0,61r-79,0r0,379r79,0r0,61r-336,0xm340,-59r58,0r0,-383r-58,0r0,383","w":576},"\u00a7":{"d":"234,-516v78,0,145,34,145,83v0,24,-16,43,-41,43v-26,0,-43,-17,-43,-41v0,-6,1,-12,3,-16v-11,-8,-41,-16,-66,-16v-50,0,-77,19,-77,43v0,28,38,43,106,62v79,22,135,46,135,103v0,43,-34,70,-78,86v32,17,51,40,51,77v0,54,-55,102,-149,102v-75,0,-145,-31,-145,-83v0,-23,15,-42,41,-42v25,0,43,16,43,40v0,7,-1,12,-4,17v12,9,42,16,66,16v52,0,77,-19,77,-43v0,-29,-34,-41,-107,-62v-76,-21,-134,-46,-134,-101v0,-43,33,-73,79,-88v-35,-18,-53,-42,-53,-78v0,-51,57,-102,151,-102xm227,-200r33,9v37,-11,66,-29,66,-54v0,-29,-33,-43,-100,-61r-33,-9v-36,11,-66,31,-66,55v0,29,32,43,100,60","w":455},"\u00aa":{"d":"122,-407v-48,0,-84,-27,-84,-72v0,-47,41,-77,99,-77v27,0,58,6,71,10r0,-31v0,-19,-7,-33,-19,-42v-11,-8,-27,-12,-46,-12v-18,0,-29,3,-36,8v2,4,3,9,3,15v0,16,-12,28,-28,28v-17,0,-28,-12,-28,-30v0,-29,33,-60,96,-60v29,0,52,6,69,17v23,15,35,40,35,71r0,131r40,0r0,39r-85,0r0,-31v-21,20,-53,36,-87,36xm47,-298r0,-44r247,0r0,44r-247,0xm135,-444v28,0,54,-13,73,-32r0,-41v-17,-5,-41,-9,-65,-9v-37,0,-57,17,-57,43v0,24,18,39,49,39","w":344},"\u00ba":{"d":"57,-298r0,-44r237,0r0,44r-237,0xm176,-406v-81,0,-133,-61,-133,-132v0,-72,53,-133,133,-133v80,0,132,60,132,133v0,71,-52,132,-132,132xm176,-446v49,0,83,-39,83,-92v0,-54,-34,-93,-83,-93v-50,0,-84,39,-84,93v0,53,34,92,84,92","w":351},"\u00b0":{"d":"151,-411v-75,0,-129,-59,-129,-130v0,-71,54,-130,129,-130v74,0,127,59,127,130v0,71,-53,130,-127,130xm151,-456v46,0,79,-37,79,-85v0,-48,-33,-84,-79,-84v-47,0,-80,36,-80,84v0,48,33,85,80,85","w":302},"%":{"d":"171,-274v-68,0,-121,-54,-121,-121v0,-68,53,-122,121,-122v67,0,121,54,121,122v0,67,-54,121,-121,121xm475,-235v68,0,121,54,121,121v0,67,-53,122,-121,122v-67,0,-120,-55,-120,-122v0,-67,53,-121,120,-121xm130,22r-36,-31v21,-21,131,-156,210,-252r206,-256r37,30v-21,23,-133,159,-211,254v-78,95,-187,233,-206,255xm171,-323v38,0,66,-32,66,-72v0,-40,-28,-72,-66,-72v-38,0,-66,32,-66,72v0,40,28,72,66,72xm475,-185v-38,0,-65,32,-65,72v0,40,27,72,65,72v39,0,66,-32,66,-72v0,-40,-27,-72,-66,-72","w":646},"\u2030":{"d":"171,-274v-68,0,-121,-54,-121,-121v0,-68,53,-122,121,-122v67,0,121,54,121,122v0,67,-54,121,-121,121xm753,8v-68,0,-121,-55,-121,-122v0,-67,53,-121,121,-121v67,0,121,54,121,121v0,67,-54,122,-121,122xm475,8v-67,0,-120,-55,-120,-122v0,-67,53,-121,120,-121v68,0,121,54,121,121v0,67,-53,122,-121,122xm130,22r-36,-31v21,-21,131,-156,210,-252r206,-256r37,30v-21,23,-133,159,-211,254v-78,95,-187,233,-206,255xm171,-323v38,0,66,-32,66,-72v0,-40,-28,-72,-66,-72v-38,0,-66,32,-66,72v0,40,28,72,66,72xm753,-41v38,0,65,-32,65,-72v0,-40,-27,-72,-65,-72v-39,0,-66,32,-66,72v0,40,27,72,66,72xm475,-41v39,0,66,-32,66,-72v0,-40,-27,-72,-66,-72v-38,0,-65,32,-65,72v0,40,27,72,65,72","w":924},"\"":{"d":"239,-420r-33,-179v-9,-43,14,-71,47,-71v34,0,57,27,48,71r-34,179r-28,0xm69,-420r-33,-179v-9,-43,14,-71,47,-71v34,0,56,27,48,71r-34,179r-28,0","w":338},"'":{"d":"69,-420r-33,-179v-9,-43,14,-71,47,-71v34,0,56,27,48,71r-34,179r-28,0","w":168},"+":{"d":"176,-104r0,-136r-134,0r0,-61r134,0r0,-136r63,0r0,136r135,0r0,61r-135,0r0,136r-63,0","w":416},"\u2212":{"d":"42,-240r0,-61r332,0r0,61r-332,0","w":416},"\u00f7":{"d":"374,-240r-332,0r0,-61r332,0r0,61xm208,-358v-27,0,-49,-23,-49,-50v0,-27,23,-50,49,-50v26,0,49,23,49,50v0,27,-23,50,-49,50xm208,-84v-27,0,-49,-22,-49,-49v0,-27,23,-50,49,-50v26,0,49,23,49,50v0,27,-23,49,-49,49","w":416},"=":{"d":"42,-314r0,-61r332,0r0,61r-332,0xm42,-153r0,-61r332,0r0,61r-332,0","w":416},"\u00d7":{"d":"312,-118r-105,-108r-104,107r-44,-44r105,-107r-106,-107r45,-45r105,108r104,-108r44,45r-105,106r105,108","w":416},"<":{"d":"292,-79r-251,-170r0,-33r251,-170r33,48r-204,139r204,138","w":389},">":{"d":"98,-79r-34,-48r204,-138r-204,-139r34,-48r251,170r0,33","w":389},"\u00b1":{"d":"176,-158r0,-135r-134,0r0,-62r134,0r0,-135r63,0r0,135r135,0r0,62r-135,0r0,135r-63,0xm42,-18r0,-61r332,0r0,61r-332,0","w":416},"\u00bd":{"d":"500,1v-2,0,-15,-24,-15,-24v28,-79,87,-124,133,-156v38,-27,66,-48,66,-85v0,-34,-31,-59,-70,-59v-36,0,-62,18,-66,28v10,4,17,16,17,29v0,18,-15,33,-33,33v-25,0,-37,-19,-37,-44v0,-46,48,-91,123,-91v65,0,120,42,120,104v0,58,-42,87,-88,118v-40,26,-82,60,-102,104r152,0r0,-59r45,0r0,102r-245,0xm49,-281r0,-47r95,0r0,-260r-89,21r-11,-45r126,-33r26,0r0,317r94,0r0,47r-241,0xm227,13r-38,-23r197,-321r192,-320r38,24r-195,316","w":795},"\u2153":{"d":"615,8v-70,0,-129,-36,-129,-83v0,-21,16,-39,36,-39v20,0,33,15,33,34v0,8,-4,18,-10,22v7,7,32,23,70,23v45,0,80,-27,80,-63v0,-36,-31,-65,-98,-65r-22,0r0,-44r24,0v52,0,88,-25,88,-63v0,-35,-32,-53,-71,-53v-31,0,-51,11,-58,19v5,4,10,13,10,22v0,18,-15,33,-33,33v-19,0,-36,-16,-36,-40v0,-32,40,-76,119,-76v70,0,122,40,122,93v0,42,-37,76,-82,86v45,9,91,43,91,91v0,62,-60,103,-134,103xm50,-281r0,-47r95,0r0,-260r-89,21r-11,-45r126,-33r26,0r0,317r94,0r0,47r-241,0xm224,13r-38,-23r197,-321r192,-320r38,24r-195,316","w":795},"\u2154":{"d":"57,-281v-2,0,-15,-24,-15,-24v28,-79,87,-124,133,-156v38,-27,66,-48,66,-85v0,-34,-31,-59,-70,-59v-36,0,-62,18,-66,28v10,4,17,16,17,29v0,18,-15,33,-33,33v-25,0,-37,-19,-37,-44v0,-46,48,-91,123,-91v65,0,120,42,120,104v0,58,-42,87,-88,118v-40,26,-82,60,-102,104r152,0r0,-59r45,0r0,102r-245,0xm617,8v-70,0,-129,-36,-129,-83v0,-21,16,-39,36,-39v20,0,33,15,33,34v0,8,-4,18,-10,22v7,7,32,23,70,23v45,0,80,-27,80,-63v0,-36,-31,-65,-98,-65r-22,0r0,-44r24,0v52,0,88,-25,88,-63v0,-35,-32,-53,-71,-53v-31,0,-51,11,-58,19v5,4,10,13,10,22v0,18,-15,33,-33,33v-19,0,-36,-16,-36,-40v0,-32,40,-76,119,-76v70,0,122,40,122,93v0,42,-37,76,-82,86v45,9,91,43,91,91v0,62,-60,103,-134,103xm240,13r-38,-23r197,-321r192,-320r38,24r-195,316","w":795},"\u00bc":{"d":"568,1r0,-42r67,0r0,-64r-167,0r-13,-26r192,-242r37,30r-161,198r112,0r0,-69r47,-20r0,87r59,0r0,43r-59,0r0,62r46,0r0,43r-160,0xm52,-281r0,-47r95,0r0,-260r-89,21r-11,-45r126,-33r26,0r0,317r94,0r0,47r-241,0xm239,13r-38,-23r197,-321r192,-320r38,24r-195,316","w":795},"\u00be":{"d":"185,-274v-70,0,-129,-36,-129,-83v0,-21,16,-39,36,-39v20,0,33,15,33,34v0,8,-4,18,-10,22v7,7,32,23,70,23v45,0,80,-27,80,-63v0,-36,-31,-65,-98,-65r-22,0r0,-44r24,0v52,0,88,-25,88,-63v0,-35,-32,-53,-71,-53v-31,0,-51,11,-58,19v5,4,10,13,10,22v0,18,-15,33,-33,33v-19,0,-36,-16,-36,-40v0,-32,40,-76,119,-76v70,0,122,40,122,93v0,42,-37,76,-82,86v45,9,91,43,91,91v0,62,-60,103,-134,103xm566,1r0,-42r67,0r0,-64r-167,0r-13,-26r192,-242r37,30r-161,198r112,0r0,-69r47,-20r0,87r59,0r0,43r-59,0r0,62r46,0r0,43r-160,0xm243,13r-38,-23r197,-321r192,-320r38,24r-195,316","w":795},"\u2155":{"d":"621,8v-78,0,-121,-36,-121,-69v0,-21,14,-37,35,-37v22,0,35,16,35,33v0,6,-2,12,-5,16v8,5,27,12,53,12v56,0,88,-33,88,-79v0,-39,-29,-70,-84,-70v-30,0,-60,8,-81,18r-24,-12r17,-181r201,0r0,49r-157,0r-9,88v13,-4,32,-8,56,-8v77,0,133,44,133,116v0,74,-60,124,-137,124xm50,-281r0,-47r95,0r0,-260r-89,21r-11,-45r126,-33r26,0r0,317r94,0r0,47r-241,0xm229,13r-38,-23r197,-321r192,-320r38,24r-195,316","w":795},"\u2156":{"d":"59,-281v-2,0,-15,-24,-15,-24v28,-79,87,-124,133,-156v38,-27,66,-48,66,-85v0,-34,-31,-59,-70,-59v-36,0,-62,18,-66,28v10,4,17,16,17,29v0,18,-15,33,-33,33v-25,0,-37,-19,-37,-44v0,-46,48,-91,123,-91v65,0,120,42,120,104v0,58,-42,87,-88,118v-40,26,-82,60,-102,104r152,0r0,-59r45,0r0,102r-245,0xm626,8v-78,0,-121,-36,-121,-69v0,-21,14,-37,35,-37v22,0,35,16,35,33v0,6,-2,12,-5,16v8,5,27,12,53,12v56,0,88,-33,88,-79v0,-39,-29,-70,-84,-70v-30,0,-60,8,-81,18r-24,-12r17,-181r201,0r0,49r-157,0r-9,88v13,-4,32,-8,56,-8v77,0,133,44,133,116v0,74,-60,124,-137,124xm247,13r-38,-23r197,-321r192,-320r38,24r-195,316","w":795},"\u2157":{"d":"620,8v-78,0,-121,-36,-121,-69v0,-21,14,-37,35,-37v22,0,35,16,35,33v0,6,-2,12,-5,16v8,5,27,12,53,12v56,0,88,-33,88,-79v0,-39,-29,-70,-84,-70v-30,0,-60,8,-81,18r-24,-12r17,-181r201,0r0,49r-157,0r-9,88v13,-4,32,-8,56,-8v77,0,133,44,133,116v0,74,-60,124,-137,124xm176,-274v-70,0,-129,-36,-129,-83v0,-21,16,-39,36,-39v20,0,33,15,33,34v0,8,-4,18,-10,22v7,7,32,23,70,23v45,0,80,-27,80,-63v0,-36,-31,-65,-98,-65r-22,0r0,-44r24,0v52,0,88,-25,88,-63v0,-35,-32,-53,-71,-53v-31,0,-51,11,-58,19v5,4,10,13,10,22v0,18,-15,33,-33,33v-19,0,-36,-16,-36,-40v0,-32,40,-76,119,-76v70,0,122,40,122,93v0,42,-37,76,-82,86v45,9,91,43,91,91v0,62,-60,103,-134,103xm227,13r-38,-23r197,-321r192,-320r38,24r-195,316","w":795},"\u2158":{"d":"623,8v-78,0,-121,-36,-121,-69v0,-21,14,-37,35,-37v22,0,35,16,35,33v0,6,-2,12,-5,16v8,5,27,12,53,12v56,0,88,-33,88,-79v0,-39,-29,-70,-84,-70v-30,0,-60,8,-81,18r-24,-12r17,-181r201,0r0,49r-157,0r-9,88v13,-4,32,-8,56,-8v77,0,133,44,133,116v0,74,-60,124,-137,124xm146,-281r0,-42r67,0r0,-64r-167,0r-13,-26r192,-242r37,30r-161,198r112,0r0,-69r47,-20r0,87r59,0r0,43r-59,0r0,62r46,0r0,43r-160,0xm248,13r-38,-23r197,-321r192,-320r38,24r-195,316","w":795},"\u2159":{"d":"729,-301v0,22,-14,35,-33,35v-23,0,-34,-16,-34,-32v0,-6,2,-12,4,-16v-7,-5,-20,-9,-33,-9v-57,0,-100,60,-102,143v2,-3,6,-7,9,-10v22,-22,51,-34,85,-34v73,0,123,49,123,114v0,66,-52,118,-130,118v-41,0,-73,-15,-97,-39v-30,-31,-41,-71,-41,-130v0,-136,71,-207,153,-207v37,0,62,12,78,27v13,13,18,25,18,40xm48,-281r0,-47r95,0r0,-260r-89,21r-11,-45r126,-33r26,0r0,317r94,0r0,47r-241,0xm226,13r-38,-23r197,-321r192,-320r38,24r-195,316xm619,-37v45,0,77,-32,77,-72v0,-41,-29,-70,-78,-70v-46,0,-80,30,-80,69v0,20,7,38,21,51v14,13,35,22,60,22","w":795},"\u215a":{"d":"729,-301v0,22,-14,35,-33,35v-23,0,-34,-16,-34,-32v0,-6,2,-12,4,-16v-7,-5,-20,-9,-33,-9v-57,0,-100,60,-102,143v2,-3,6,-7,9,-10v22,-22,51,-34,85,-34v73,0,123,49,123,114v0,66,-52,118,-130,118v-41,0,-73,-15,-97,-39v-30,-31,-41,-71,-41,-130v0,-136,71,-207,153,-207v37,0,62,12,78,27v13,13,18,25,18,40xm170,-274v-78,0,-121,-36,-121,-69v0,-21,14,-37,35,-37v22,0,35,16,35,33v0,6,-2,12,-5,16v8,5,27,12,53,12v56,0,88,-33,88,-79v0,-39,-29,-70,-84,-70v-30,0,-60,8,-81,18r-24,-12r17,-181r201,0r0,49r-157,0r-9,88v13,-4,32,-8,56,-8v77,0,133,44,133,116v0,74,-60,124,-137,124xm227,13r-38,-23r197,-321r192,-320r38,24r-195,316xm619,-37v45,0,77,-32,77,-72v0,-41,-29,-70,-78,-70v-46,0,-80,30,-80,69v0,20,7,38,21,51v14,13,35,22,60,22","w":795},"\u215b":{"d":"618,7v-82,0,-134,-46,-134,-99v0,-41,32,-80,84,-94v-51,-15,-75,-48,-75,-85v0,-54,53,-95,125,-95v70,0,125,41,125,95v0,37,-25,70,-76,85v52,14,84,53,84,94v0,53,-53,99,-133,99xm46,-281r0,-47r95,0r0,-260r-89,21r-11,-45r126,-33r26,0r0,317r94,0r0,47r-241,0xm219,13r-38,-23r197,-321r192,-320r38,24r-195,316xm618,-39v46,0,78,-27,78,-62v0,-33,-34,-63,-78,-63v-46,0,-79,30,-79,63v0,35,32,62,79,62xm618,-205v38,0,70,-25,70,-58v0,-34,-30,-58,-70,-58v-41,0,-71,24,-71,58v0,33,32,58,71,58","w":795},"\u215c":{"d":"617,7v-82,0,-134,-46,-134,-99v0,-41,32,-80,84,-94v-51,-15,-75,-48,-75,-85v0,-54,53,-95,125,-95v70,0,125,41,125,95v0,37,-25,70,-76,85v52,14,84,53,84,94v0,53,-53,99,-133,99xm176,-274v-70,0,-129,-36,-129,-83v0,-21,16,-39,36,-39v20,0,33,15,33,34v0,8,-4,18,-10,22v7,7,32,23,70,23v45,0,80,-27,80,-63v0,-36,-31,-65,-98,-65r-22,0r0,-44r24,0v52,0,88,-25,88,-63v0,-35,-32,-53,-71,-53v-31,0,-51,11,-58,19v5,4,10,13,10,22v0,18,-15,33,-33,33v-19,0,-36,-16,-36,-40v0,-32,40,-76,119,-76v70,0,122,40,122,93v0,42,-37,76,-82,86v45,9,91,43,91,91v0,62,-60,103,-134,103xm221,13r-38,-23r197,-321r192,-320r38,24r-195,316xm617,-39v46,0,78,-27,78,-62v0,-33,-34,-63,-78,-63v-46,0,-79,30,-79,63v0,35,32,62,79,62xm617,-205v38,0,70,-25,70,-58v0,-34,-30,-58,-70,-58v-41,0,-71,24,-71,58v0,33,32,58,71,58","w":795},"\u215d":{"d":"612,7v-82,0,-134,-46,-134,-99v0,-41,32,-80,84,-94v-51,-15,-75,-48,-75,-85v0,-54,53,-95,125,-95v70,0,125,41,125,95v0,37,-25,70,-76,85v52,14,84,53,84,94v0,53,-53,99,-133,99xm163,-274v-78,0,-121,-36,-121,-69v0,-21,14,-37,35,-37v22,0,35,16,35,33v0,6,-2,12,-5,16v8,5,27,12,53,12v56,0,88,-33,88,-79v0,-39,-29,-70,-84,-70v-30,0,-60,8,-81,18r-24,-12r17,-181r201,0r0,49r-157,0r-9,88v13,-4,32,-8,56,-8v77,0,133,44,133,116v0,74,-60,124,-137,124xm213,13r-38,-23r197,-321r192,-320r38,24r-195,316xm612,-39v46,0,78,-27,78,-62v0,-33,-34,-63,-78,-63v-46,0,-79,30,-79,63v0,35,32,62,79,62xm612,-205v38,0,70,-25,70,-58v0,-34,-30,-58,-70,-58v-41,0,-71,24,-71,58v0,33,32,58,71,58","w":795},"\u215e":{"d":"595,7v-82,0,-134,-46,-134,-99v0,-41,32,-80,84,-94v-51,-15,-75,-48,-75,-85v0,-54,53,-95,125,-95v70,0,125,41,125,95v0,37,-25,70,-76,85v52,14,84,53,84,94v0,53,-53,99,-133,99xm117,-281r149,-318r-149,0r0,65r-47,0r0,-109r245,0r12,26r-154,336r-56,0xm183,13r-38,-23r197,-321r192,-320r38,24r-195,316xm595,-39v46,0,78,-27,78,-62v0,-33,-34,-63,-78,-63v-46,0,-79,30,-79,63v0,35,32,62,79,62xm595,-205v38,0,70,-25,70,-58v0,-34,-30,-58,-70,-58v-41,0,-71,24,-71,58v0,33,32,58,71,58","w":795},"\u2070":{"d":"176,-424v-83,0,-140,-75,-140,-185v0,-114,58,-188,141,-188v82,0,140,74,140,186v0,113,-58,187,-141,187xm176,-472v53,0,86,-57,86,-137v0,-83,-33,-140,-86,-140v-52,0,-85,57,-85,138v0,82,33,139,85,139"},"\u00b9":{"d":"63,-431r0,-47r95,0r0,-260r-89,21r-11,-45r126,-33r26,0r0,317r94,0r0,47r-241,0"},"\u00b2":{"d":"59,-431v-2,0,-15,-24,-15,-24v28,-79,87,-124,133,-156v38,-27,66,-48,66,-85v0,-34,-31,-59,-70,-59v-36,0,-62,18,-66,28v10,4,17,16,17,29v0,18,-15,33,-33,33v-25,0,-37,-19,-37,-44v0,-46,48,-91,123,-91v65,0,120,42,120,104v0,58,-42,87,-88,118v-40,26,-82,60,-102,104r152,0r0,-59r45,0r0,102r-245,0"},"\u00b3":{"d":"171,-424v-70,0,-129,-36,-129,-83v0,-21,16,-39,36,-39v20,0,33,15,33,34v0,8,-4,18,-10,22v7,7,32,23,70,23v45,0,80,-27,80,-63v0,-36,-31,-65,-98,-65r-22,0r0,-44r24,0v52,0,88,-25,88,-63v0,-35,-32,-53,-71,-53v-31,0,-51,11,-58,19v5,4,10,13,10,22v0,18,-15,33,-33,33v-19,0,-36,-16,-36,-40v0,-32,40,-76,119,-76v70,0,122,40,122,93v0,42,-37,76,-82,86v45,9,91,43,91,91v0,62,-60,103,-134,103"},"\u2074":{"d":"143,-431r0,-42r67,0r0,-64r-167,0r-13,-26r192,-242r37,30r-161,198r112,0r0,-69r47,-20r0,87r59,0r0,43r-59,0r0,62r46,0r0,43r-160,0"},"\u2075":{"d":"167,-424v-78,0,-121,-36,-121,-69v0,-21,14,-37,35,-37v22,0,35,16,35,33v0,6,-2,12,-5,16v8,5,27,12,53,12v56,0,88,-33,88,-79v0,-39,-29,-70,-84,-70v-30,0,-60,8,-81,18r-24,-12r17,-181r201,0r0,49r-157,0r-9,88v13,-4,32,-8,56,-8v77,0,133,44,133,116v0,74,-60,124,-137,124"},"\u2076":{"d":"292,-733v0,22,-14,35,-33,35v-23,0,-34,-16,-34,-32v0,-6,2,-12,4,-16v-7,-5,-20,-9,-33,-9v-57,0,-100,60,-102,143v2,-3,6,-7,9,-10v22,-22,51,-34,85,-34v73,0,123,49,123,114v0,66,-52,118,-130,118v-41,0,-73,-15,-97,-39v-30,-31,-41,-71,-41,-130v0,-136,71,-207,153,-207v37,0,62,12,78,27v13,13,18,25,18,40xm182,-469v45,0,77,-32,77,-72v0,-41,-29,-70,-78,-70v-46,0,-80,30,-80,69v0,20,7,38,21,51v14,13,35,22,60,22"},"\u2077":{"d":"103,-431r149,-318r-149,0r0,65r-47,0r0,-109r245,0r12,26r-154,336r-56,0"},"\u2078":{"d":"177,-425v-82,0,-134,-46,-134,-99v0,-41,32,-80,84,-94v-51,-15,-75,-48,-75,-85v0,-54,53,-95,125,-95v70,0,125,41,125,95v0,37,-25,70,-76,85v52,14,84,53,84,94v0,53,-53,99,-133,99xm177,-637v38,0,70,-25,70,-58v0,-34,-30,-58,-70,-58v-41,0,-71,24,-71,58v0,33,32,58,71,58xm177,-471v46,0,78,-27,78,-62v0,-33,-34,-63,-78,-63v-46,0,-79,30,-79,63v0,35,32,62,79,62"},"\u2079":{"d":"61,-490v0,-22,14,-35,33,-35v23,0,34,15,34,32v0,6,-2,12,-5,16v8,4,21,8,34,8v56,0,99,-58,102,-142r-9,10v-22,22,-51,33,-85,33v-73,0,-123,-48,-123,-113v0,-66,52,-119,130,-119v41,0,73,16,97,40v30,30,41,71,41,130v0,135,-71,206,-153,206v-37,0,-62,-11,-78,-27v-13,-12,-18,-25,-18,-39xm171,-754v-45,0,-77,32,-77,72v0,40,29,69,78,69v46,0,80,-30,80,-68v0,-21,-7,-38,-21,-52v-14,-13,-35,-21,-60,-21"},"\u2080":{"d":"176,146v-83,0,-140,-75,-140,-185v0,-114,58,-188,141,-188v82,0,140,74,140,186v0,113,-58,187,-141,187xm176,98v53,0,86,-57,86,-137v0,-83,-33,-140,-86,-140v-52,0,-85,57,-85,138v0,82,33,139,85,139"},"\u2081":{"d":"63,139r0,-47r95,0r0,-260r-89,21r-11,-45r126,-33r26,0r0,317r94,0r0,47r-241,0"},"\u2082":{"d":"59,139v-2,0,-15,-24,-15,-24v28,-79,87,-124,133,-156v38,-27,66,-48,66,-85v0,-34,-31,-59,-70,-59v-36,0,-62,18,-66,28v10,4,17,16,17,29v0,18,-15,33,-33,33v-25,0,-37,-19,-37,-44v0,-46,48,-91,123,-91v65,0,120,42,120,104v0,58,-42,87,-88,118v-40,26,-82,60,-102,104r152,0r0,-59r45,0r0,102r-245,0"},"\u2083":{"d":"171,146v-70,0,-129,-36,-129,-83v0,-21,16,-39,36,-39v20,0,33,15,33,34v0,8,-4,18,-10,22v7,7,32,23,70,23v45,0,80,-27,80,-63v0,-36,-31,-65,-98,-65r-22,0r0,-44r24,0v52,0,88,-25,88,-63v0,-35,-32,-53,-71,-53v-31,0,-51,11,-58,19v5,4,10,13,10,22v0,18,-15,33,-33,33v-19,0,-36,-16,-36,-40v0,-32,40,-76,119,-76v70,0,122,40,122,93v0,42,-37,76,-82,86v45,9,91,43,91,91v0,62,-60,103,-134,103"},"\u2084":{"d":"143,139r0,-42r67,0r0,-64r-167,0r-13,-26r192,-242r37,30r-161,198r112,0r0,-69r47,-20r0,87r59,0r0,43r-59,0r0,62r46,0r0,43r-160,0"},"\u2085":{"d":"167,146v-78,0,-121,-36,-121,-69v0,-21,14,-37,35,-37v22,0,35,16,35,33v0,6,-2,12,-5,16v8,5,27,12,53,12v56,0,88,-33,88,-79v0,-39,-29,-70,-84,-70v-30,0,-60,8,-81,18r-24,-12r17,-181r201,0r0,49r-157,0r-9,88v13,-4,32,-8,56,-8v77,0,133,44,133,116v0,74,-60,124,-137,124"},"\u2086":{"d":"292,-163v0,22,-14,35,-33,35v-23,0,-34,-16,-34,-32v0,-6,2,-12,4,-16v-7,-5,-20,-9,-33,-9v-57,0,-100,60,-102,143v2,-3,6,-7,9,-10v22,-22,51,-34,85,-34v73,0,123,49,123,114v0,66,-52,118,-130,118v-41,0,-73,-15,-97,-39v-30,-31,-41,-71,-41,-130v0,-136,71,-207,153,-207v37,0,62,12,78,27v13,13,18,25,18,40xm182,101v45,0,77,-32,77,-72v0,-41,-29,-70,-78,-70v-46,0,-80,30,-80,69v0,20,7,38,21,51v14,13,35,22,60,22"},"\u2087":{"d":"103,139r149,-318r-149,0r0,65r-47,0r0,-109r245,0r12,26r-154,336r-56,0"},"\u2088":{"d":"177,145v-82,0,-134,-46,-134,-99v0,-41,32,-80,84,-94v-51,-15,-75,-48,-75,-85v0,-54,53,-95,125,-95v70,0,125,41,125,95v0,37,-25,70,-76,85v52,14,84,53,84,94v0,53,-53,99,-133,99xm177,-67v38,0,70,-25,70,-58v0,-34,-30,-58,-70,-58v-41,0,-71,24,-71,58v0,33,32,58,71,58xm177,99v46,0,78,-27,78,-62v0,-33,-34,-63,-78,-63v-46,0,-79,30,-79,63v0,35,32,62,79,62"},"\u2089":{"d":"61,80v0,-22,14,-35,33,-35v23,0,34,15,34,32v0,6,-2,11,-5,15v8,5,21,9,34,9v56,0,99,-59,102,-142r-9,10v-22,22,-51,33,-85,33v-73,0,-123,-48,-123,-113v0,-66,52,-119,130,-119v41,0,73,16,97,40v30,30,41,71,41,130v0,135,-71,206,-153,206v-37,0,-62,-11,-78,-27v-13,-12,-18,-25,-18,-39xm171,-184v-45,0,-77,32,-77,72v0,40,29,69,78,69v46,0,80,-30,80,-68v0,-21,-7,-38,-21,-52v-14,-13,-35,-21,-60,-21"},"\u00a0":{"w":227},"\u2003":{"w":1000},"\u2002":{"w":500},"\u2004":{"w":333},"\u2005":{"w":250},"\u2009":{"w":133},"\u200a":{"w":75},"\u2007":{"w":530},"\u2044":{"d":"74,13r-38,-23r197,-321r192,-320r38,24r-195,316","w":500},"\u00b4":{"d":"152,-503r-19,-24r121,-126v13,-14,28,-23,43,-23v21,0,40,16,40,43v0,14,-13,31,-34,44","w":418},"\u02dd":{"d":"49,-505r-16,-24r132,-124v15,-14,29,-23,43,-23v22,0,40,16,40,41v0,15,-14,33,-38,46xm240,-509r-13,-25r142,-118v16,-13,30,-19,42,-19v24,0,39,18,39,40v0,17,-13,35,-40,46","w":502},"`":{"d":"266,-503r-151,-86v-21,-13,-34,-30,-34,-44v0,-27,19,-43,40,-43v15,0,29,9,43,23r120,126","w":418},"\u02c6":{"d":"109,-500r-31,-37r154,-147r154,147r-31,37r-123,-93","w":464},"\u02c7":{"d":"355,-685r31,37r-154,147r-154,-147r31,-37r123,93","w":464},"\u02d8":{"d":"234,-508v-73,0,-133,-52,-159,-136r49,-21v22,57,66,88,110,88v48,0,89,-35,110,-88r49,21v-25,84,-86,136,-159,136","w":468},"\u02dc":{"d":"310,-509v-39,0,-65,-18,-88,-38v-24,-20,-37,-28,-51,-28v-24,0,-40,23,-46,60r-54,-12v5,-69,49,-118,95,-118v39,0,65,19,89,39v23,19,36,27,51,27v23,0,39,-22,46,-60r54,12v-5,69,-49,118,-96,118","w":477},"\u00af":{"d":"77,-535r0,-63r304,0r0,63r-304,0","w":458},"\u00a8":{"d":"319,-519v-32,0,-57,-26,-57,-57v0,-32,26,-58,57,-58v32,0,56,26,56,58v0,31,-25,57,-56,57xm144,-519v-31,0,-56,-26,-56,-57v0,-32,26,-58,57,-58v31,0,56,26,56,58v0,31,-25,57,-57,57","w":464},"\u02d9":{"d":"201,-514v-32,0,-57,-27,-57,-59v0,-33,26,-59,58,-59v32,0,57,26,57,59v0,32,-26,59,-58,59","w":403},"\u02da":{"d":"220,-494v-61,0,-109,-49,-109,-111v0,-62,48,-111,109,-111v62,0,110,49,110,111v0,62,-48,111,-110,111xm220,-545v33,0,56,-27,56,-60v0,-33,-23,-60,-56,-60v-32,0,-55,27,-55,60v0,33,23,60,55,60","w":441},"\u0326":{"d":"54,278r-16,-23v56,-42,75,-81,76,-103v-24,-5,-43,-25,-43,-50v0,-28,23,-49,49,-49v31,0,56,22,56,65v0,46,-32,111,-122,160","w":211},"\u00b8":{"d":"227,199v-38,0,-79,-11,-112,-28r15,-32v26,11,63,19,88,19v25,0,42,-11,42,-29v0,-18,-16,-31,-53,-31v-5,0,-16,2,-18,2r-19,-16r34,-106r30,5r-3,65v62,3,94,35,94,76v0,40,-34,75,-98,75","w":420},"\u02db":{"d":"211,201v-70,0,-106,-38,-106,-93v0,-67,61,-117,128,-141r61,12v-71,20,-126,63,-126,113v0,32,18,52,55,52v30,0,56,-8,78,-19r-4,53v-15,11,-49,23,-86,23","w":415}}});Cufon.registerFont({"w":353,"face":{"font-family":"Archer Bold","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"8","bbox":"-49 -1122 999 313","underline-thickness":"50","underline-position":"-50","stemh":"91","stemv":"109","unicode-range":"U+0020-U+FB04"},"glyphs":{" ":{"w":220},"A":{"d":"13,0r0,-101r57,0r164,-457r-72,0r0,-100r372,0r0,100r-72,0r164,457r57,0r0,101r-253,0r0,-100r76,0r-37,-108r-246,0r-37,108r80,0r0,100r-253,0xm254,-302r184,0r-92,-259","w":696},"B":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r263,0v161,0,240,74,240,173v0,76,-47,125,-112,147v82,24,131,72,131,154v0,109,-88,184,-248,184r-274,0xm224,-99r89,0v78,0,130,-32,130,-95v0,-61,-48,-95,-133,-95r-86,0r0,190xm224,-379r77,0v79,0,123,-36,123,-93v0,-56,-46,-87,-126,-87r-74,0r0,180","w":596},"C":{"d":"394,12v-203,0,-348,-136,-348,-341v0,-198,154,-341,346,-341v153,0,255,80,255,159v0,48,-31,81,-72,81v-45,0,-76,-28,-76,-71v0,-13,3,-26,7,-34v-19,-15,-57,-30,-117,-30v-128,0,-226,98,-226,235v0,132,92,237,231,237v77,0,140,-34,189,-87r75,78v-64,71,-159,114,-264,114","w":702},"D":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r249,0v238,0,379,124,379,323v0,201,-133,335,-391,335r-237,0xm225,-101r65,0v170,0,258,-92,258,-233v0,-144,-102,-223,-266,-223r-57,0r0,456","w":711},"E":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r491,0r0,188r-108,0r0,-88r-195,0r0,176r199,0r0,96r-199,0r0,186r196,0r0,-88r108,0r0,188r-492,0","w":577},"F":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r485,0r0,188r-108,0r0,-88r-189,0r0,188r194,0r0,97r-194,0r0,172r87,0r0,101r-275,0","w":559},"G":{"d":"362,12v-162,0,-316,-128,-316,-339v0,-203,154,-343,346,-343v153,0,255,80,255,159v0,48,-31,81,-72,81v-45,0,-76,-28,-76,-71v0,-13,3,-26,7,-34v-19,-15,-57,-30,-117,-30v-128,0,-226,95,-226,237v0,145,105,238,216,238v69,0,117,-15,159,-42r0,-113r-164,0r0,-96r275,0r0,341r-108,0r0,-49v-46,36,-105,61,-179,61","w":726},"H":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r270,0r0,101r-82,0r0,174r304,0r0,-174r-82,0r0,-101r270,0r0,101r-75,0r0,456r75,0r0,101r-270,0r0,-101r82,0r0,-183r-304,0r0,183r82,0r0,101r-270,0","w":754},"I":{"d":"37,0r0,-101r80,0r0,-456r-80,0r0,-101r273,0r0,101r-80,0r0,456r80,0r0,101r-273,0","w":347},"J":{"d":"233,12v-114,0,-206,-73,-206,-166v0,-52,31,-86,75,-86v37,0,67,30,67,67v0,22,-12,41,-23,50v12,19,39,33,87,33v27,0,51,-7,67,-23v22,-22,31,-56,31,-104r0,-340r-99,0r0,-101r281,0r0,101r-72,0r0,340v0,77,-22,137,-59,174v-38,38,-90,55,-149,55","w":540},"K":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r270,0r0,99r-82,0r0,223r221,-223r-75,0r0,-99r290,0r0,101r-71,0r-184,181r168,275r87,0r0,101r-158,0r-183,-300r-95,93r0,106r82,0r0,101r-270,0","w":681},"L":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r275,0r0,101r-87,0r0,457r181,0r0,-93r109,0r0,193r-478,0","w":548},"M":{"d":"32,0r0,-101r78,0r21,-456r-82,0r0,-101r180,0r202,366r202,-366r179,0r0,101r-82,0r21,456r78,0r0,101r-270,0r0,-101r79,0r-13,-339r-188,330r-15,0r-188,-330r-13,339r79,0r0,101r-268,0","w":862},"N":{"d":"581,3r-359,-457r0,353r82,0r0,101r-267,0r0,-101r75,0r0,-456r-75,0r0,-101r171,0r324,413r0,-312r-82,0r0,-101r264,0r0,101r-72,0r0,558","w":743},"O":{"d":"381,12v-199,0,-335,-149,-335,-341v0,-193,140,-341,340,-341v199,0,335,149,335,341v0,193,-140,341,-340,341xm384,-93v127,0,220,-98,220,-236v0,-137,-93,-236,-220,-236v-128,0,-221,98,-221,236v0,137,93,236,221,236","w":767},"P":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r265,0v141,0,249,81,249,215v0,151,-107,225,-262,225v-31,0,-50,0,-64,-1r0,118r82,0r0,101r-270,0xm299,-317v85,0,135,-48,135,-126v0,-69,-57,-114,-138,-114r-71,0r0,238v12,1,28,2,74,2","w":581},"Q":{"d":"632,138v-89,0,-162,-60,-217,-94v-25,-17,-54,-29,-84,-34v-79,-13,-141,-46,-195,-100v-53,-53,-90,-138,-90,-239v0,-193,140,-341,340,-341v199,0,335,149,335,341v0,172,-104,278,-218,313v10,3,26,10,36,16v32,19,51,29,83,29v23,0,49,-3,92,-35r59,90v-47,49,-102,54,-141,54xm384,-93v127,0,220,-98,220,-236v0,-137,-93,-236,-220,-236v-128,0,-221,98,-221,236v0,70,25,131,66,173v39,40,93,63,155,63","w":767},"R":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r255,0v151,0,259,65,259,199v0,85,-52,150,-124,179r101,179r75,0r0,101r-152,0r-132,-250v-14,1,-27,2,-40,2v-21,0,-40,0,-54,-1r0,148r82,0r0,101r-270,0xm289,-344v85,0,145,-42,145,-111v0,-69,-57,-102,-148,-102r-61,0r0,211v12,1,28,2,64,2","w":620},"S":{"d":"275,12v-130,0,-235,-73,-235,-153v0,-47,28,-78,69,-78v44,0,72,33,72,65v0,16,-3,28,-9,40v24,17,61,28,104,28v72,0,118,-32,118,-89v0,-54,-55,-80,-121,-103v-122,-44,-208,-83,-208,-205v0,-105,85,-187,218,-187v123,0,218,63,218,142v0,47,-29,74,-67,74v-46,0,-72,-34,-72,-67v0,-16,3,-23,7,-31v-18,-11,-46,-20,-87,-20v-65,0,-103,33,-103,81v0,54,55,78,121,102v118,42,207,83,207,205v0,125,-97,196,-232,196","w":555},"T":{"d":"170,0r0,-101r82,0r0,-459r-122,0r0,104r-107,0r0,-202r571,0r0,202r-107,0r0,-104r-122,0r0,459r82,0r0,101r-277,0","w":617},"U":{"d":"347,12v-147,0,-248,-82,-248,-252r0,-317r-72,0r0,-101r264,0r0,101r-79,0r0,311v0,101,51,155,135,155v85,0,136,-49,136,-151r0,-315r-79,0r0,-101r261,0r0,101r-72,0r0,315v0,172,-101,254,-246,254","w":692},"V":{"d":"312,7r-239,-564r-60,0r0,-101r260,0r0,101r-69,0r142,361r142,-361r-73,0r0,-101r260,0r0,101r-60,0r-239,564r-64,0","w":688},"W":{"d":"273,7r-180,-564r-70,0r0,-101r280,0r0,101r-87,0r107,346r163,-383r60,0r163,383r100,-346r-90,0r0,-101r280,0r0,101r-70,0r-177,564r-63,0r-176,-405r-177,405r-63,0","w":1022},"X":{"d":"24,0r0,-101r71,0r195,-238r-178,-218r-75,0r0,-101r275,0r0,99r-69,0r116,158r117,-158r-77,0r0,-99r275,0r0,101r-75,0r-177,216r190,240r71,0r0,101r-270,0r0,-99r68,0r-128,-179r-134,179r75,0r0,99r-270,0","w":707},"Y":{"d":"183,0r0,-101r83,0r0,-150r-187,-306r-66,0r0,-101r249,0r0,101r-58,0r121,211r120,-211r-62,0r0,-101r249,0r0,101r-66,0r-187,306r0,150r83,0r0,101r-279,0","w":645},"Z":{"d":"44,0r0,-64r372,-499r-256,0r0,110r-96,0r0,-205r511,0r0,64r-372,499r283,0r0,-110r95,0r0,205r-537,0","w":625},"a":{"d":"177,8v-75,0,-142,-41,-142,-123v0,-82,72,-132,176,-132v45,0,87,6,111,12r0,-35v0,-26,-6,-46,-17,-60v-18,-23,-47,-32,-86,-32v-19,0,-33,3,-43,7v2,6,4,16,4,22v0,33,-26,57,-59,57v-33,0,-58,-23,-58,-59v0,-54,55,-111,174,-111v75,0,126,21,157,59v23,28,34,66,34,110r0,187r65,0r0,90r-169,0r0,-48v-35,30,-88,56,-147,56xm212,-71v39,0,77,-15,110,-39r0,-69v-25,-6,-56,-10,-90,-10v-53,0,-85,24,-85,64v0,35,26,54,65,54","w":509},"b":{"d":"304,8v-56,0,-96,-20,-133,-50r-24,44r-74,0r0,-642r-66,0r0,-92r175,0r0,342v32,-31,73,-56,129,-56v116,0,203,93,203,225v0,127,-92,229,-210,229xm286,-86v61,0,116,-47,116,-134v0,-84,-52,-132,-116,-132v-41,0,-74,18,-104,44r0,188v29,20,63,34,104,34","w":548},"c":{"d":"276,8v-138,0,-242,-90,-242,-231v0,-114,92,-223,222,-223v120,0,199,78,199,147v0,46,-31,74,-70,74v-36,0,-66,-30,-66,-66v0,-13,6,-28,14,-37v-8,-11,-35,-30,-78,-30v-50,0,-112,41,-112,137v0,84,64,137,142,137v53,0,99,-15,156,-46r-9,98v-47,27,-92,40,-156,40","w":499},"d":{"d":"237,8v-116,0,-203,-93,-203,-225v0,-127,92,-229,210,-229v56,0,97,21,122,42r0,-236r-66,0r0,-92r175,0r0,642r65,0r0,90r-174,0r0,-48v-32,31,-73,56,-129,56xm262,-86v41,0,74,-18,104,-44r0,-188v-29,-20,-63,-34,-104,-34v-61,0,-116,47,-116,134v0,84,52,132,116,132","w":561},"e":{"d":"464,-182r-316,0v15,68,71,98,144,98v53,0,108,-17,159,-46r-9,98v-46,27,-102,40,-166,40v-143,0,-242,-90,-242,-226v0,-124,87,-228,222,-228v140,0,213,94,213,210v0,17,-2,39,-5,54xm255,-358v-48,0,-96,28,-108,100r213,0v-2,-60,-41,-100,-105,-100","w":500},"f":{"d":"319,-604v-34,0,-51,-18,-63,-41v-9,4,-18,10,-23,18v-13,19,-20,46,-20,88r0,101r114,0r0,92r-114,0r0,256r85,0r0,90r-259,0r0,-90r66,0r0,-256r-75,0r0,-92r75,0r0,-85v0,-80,14,-130,56,-171v31,-30,71,-46,120,-46v57,0,97,30,97,74v0,39,-28,62,-59,62","w":342},"g":{"d":"469,-346r0,347v0,54,-14,99,-41,132v-36,44,-93,67,-164,67v-76,0,-141,-24,-172,-55v-17,-17,-24,-36,-24,-57v0,-31,23,-61,59,-61v34,0,61,24,61,57v0,5,-1,13,-2,17v18,6,39,11,65,11v39,0,70,-12,89,-38v13,-18,20,-43,20,-76r0,-63v-33,33,-68,56,-126,56v-111,0,-200,-85,-200,-215v0,-125,91,-222,205,-222v56,0,96,22,125,47r0,-39r170,0r0,92r-65,0xm262,-352v-67,0,-116,44,-116,127v0,80,49,124,116,124v37,0,70,-17,98,-43r0,-174v-26,-20,-59,-34,-98,-34","w":557},"h":{"d":"91,-640r-65,0r0,-92r174,0r0,360v41,-39,87,-74,149,-74v47,0,84,17,107,47v19,25,29,59,29,99r0,210r65,0r0,90r-234,0r0,-90r60,0r0,-183v0,-24,-5,-41,-14,-53v-11,-14,-28,-21,-49,-21v-38,0,-78,22,-113,51r0,206r60,0r0,90r-234,0r0,-90r65,0r0,-550","w":566},"i":{"d":"142,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72xm32,0r0,-90r67,0r0,-256r-67,0r0,-92r176,0r0,348r65,0r0,90r-241,0","w":305},"j":{"d":"-49,121v0,-33,27,-61,60,-61v32,0,54,23,59,53v22,-5,37,-23,45,-45v8,-23,10,-46,10,-69r0,-345r-82,0r0,-92r191,0r0,431v0,48,-9,88,-25,119v-30,60,-87,88,-151,88v-74,0,-107,-41,-107,-79xm160,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":296},"k":{"d":"26,0r0,-90r65,0r0,-550r-65,0r0,-92r174,0r0,491r128,-110r-61,0r0,-87r259,0r0,92r-81,0r-102,86r111,168r72,0r0,92r-137,0r-126,-197r-63,53r0,56r55,0r0,88r-229,0","w":552},"l":{"d":"26,0r0,-90r68,0r0,-550r-68,0r0,-92r177,0r0,642r65,0r0,90r-242,0","w":295},"m":{"d":"31,0r0,-90r65,0r0,-256r-65,0r0,-92r170,0r0,69v34,-37,82,-77,147,-77v47,0,82,18,104,47v6,8,10,16,14,25v41,-40,90,-72,146,-72v61,0,103,22,125,63v12,22,18,50,18,82r0,211r65,0r0,90r-233,0r0,-90r59,0r0,-185v0,-17,-2,-30,-7,-41v-9,-21,-27,-31,-52,-31v-36,0,-74,21,-107,49r0,208r59,0r0,90r-228,0r0,-90r60,0r0,-185v0,-17,-2,-30,-7,-41v-9,-21,-26,-31,-52,-31v-36,0,-74,21,-107,49r0,208r58,0r0,90r-232,0","w":836},"n":{"d":"201,-438r0,70v42,-41,89,-78,153,-78v52,0,90,21,113,56v15,24,23,54,23,90r0,210r65,0r0,90r-234,0r0,-90r60,0r0,-183v0,-18,-3,-34,-9,-45v-10,-19,-28,-29,-54,-29v-38,0,-78,22,-113,51r0,206r60,0r0,90r-234,0r0,-90r65,0r0,-256r-65,0r0,-92r170,0","w":571},"o":{"d":"267,8v-145,0,-233,-105,-233,-227v0,-120,90,-227,233,-227v145,0,233,105,233,227v0,120,-90,227,-233,227xm267,-83v71,0,121,-56,121,-136v0,-80,-50,-136,-121,-136v-71,0,-121,56,-121,136v0,80,50,136,121,136","w":534},"p":{"d":"26,196r0,-90r65,0r0,-452r-65,0r0,-92r170,0r0,50v34,-32,71,-58,130,-58v114,0,200,93,200,225v0,127,-91,229,-207,229v-47,0,-86,-17,-119,-42r0,140r71,0r0,90r-245,0xm302,-86v58,0,112,-47,112,-134v0,-84,-50,-132,-112,-132v-41,0,-73,18,-102,44r0,188v28,20,62,34,102,34","w":560},"q":{"d":"287,196r0,-92r79,0r0,-152v-32,31,-73,56,-129,56v-116,0,-203,-93,-203,-225v0,-127,92,-229,210,-229v56,0,96,20,133,50r24,-45r74,0r0,545r66,0r0,92r-254,0xm262,-86v41,0,74,-18,104,-44r0,-188v-29,-20,-63,-34,-104,-34v-61,0,-116,47,-116,134v0,84,52,132,116,132","w":532},"r":{"d":"340,-446v54,0,81,33,81,72v0,37,-29,68,-65,68v-33,0,-55,-19,-64,-39v-31,11,-67,45,-87,83r0,172r76,0r0,90r-250,0r0,-90r65,0r0,-256r-65,0r0,-92r170,0r0,99v37,-59,83,-107,139,-107","w":435},"s":{"d":"406,-341v0,35,-22,59,-54,59v-35,0,-59,-21,-59,-54v0,-7,0,-13,2,-19v-18,-7,-40,-11,-62,-11v-49,0,-73,22,-73,45v0,25,25,38,92,56v105,28,166,54,166,133v0,92,-86,141,-185,141v-67,0,-139,-24,-168,-53v-18,-18,-25,-36,-25,-59v0,-32,24,-59,58,-59v30,0,59,20,59,58v0,6,-1,12,-2,18v20,8,48,14,79,14v44,0,80,-15,80,-47v0,-22,-19,-35,-86,-53v-121,-32,-172,-61,-172,-136v0,-68,56,-139,179,-139v53,0,117,20,147,50v16,16,24,35,24,56","w":458},"t":{"d":"227,8v-53,0,-96,-18,-118,-60v-10,-18,-15,-41,-15,-69r0,-225r-85,0r0,-92r85,0r0,-92r108,-47r0,139r133,0r0,92r-133,0r0,204v0,14,2,23,7,32v8,14,24,21,46,21v28,0,60,-11,86,-23r-9,94v-30,15,-65,26,-105,26","w":369},"u":{"d":"217,8v-53,0,-92,-22,-114,-58v-14,-23,-22,-53,-22,-88r0,-208r-65,0r0,-92r174,0r0,273v0,19,3,33,9,45v10,19,28,29,54,29v38,0,78,-22,113,-51r0,-204r-68,0r0,-92r177,0r0,348r65,0r0,90r-170,0r0,-70v-42,41,-89,78,-153,78","w":566},"v":{"d":"230,8r-174,-354r-51,0r0,-92r224,0r0,87r-63,0r105,228r105,-228r-66,0r0,-87r223,0r0,92r-51,0r-174,354r-78,0","w":538},"w":{"d":"177,17r-108,-363r-64,0r0,-92r225,0r0,90r-62,0r60,215r103,-260r75,0r102,260r60,-215r-72,0r0,-90r225,0r0,92r-64,0r-108,363r-77,0r-109,-268r-109,268r-77,0","w":726},"x":{"d":"12,0r0,-92r58,0r136,-129r-132,-125r-52,0r0,-92r221,0r0,86r-55,0r81,85r80,-85r-56,0r0,-86r217,0r0,92r-54,0r-128,122r139,132r56,0r0,92r-221,0r0,-86r51,0r-89,-93r-87,93r52,0r0,86r-217,0","w":535},"y":{"d":"235,142v-32,37,-72,57,-116,57v-58,0,-94,-34,-94,-69v0,-37,25,-56,54,-56v26,0,41,16,48,33v11,-3,23,-10,35,-26v7,-9,13,-20,20,-34r33,-69r-156,-324r-54,0r0,-92r226,0r0,87r-64,0r101,231r102,-231r-68,0r0,-87r225,0r0,92r-53,0r-205,435v-10,20,-21,38,-34,53","w":532},"z":{"d":"29,0r0,-64r264,-288r-155,0r0,81r-93,0r0,-167r384,0r0,63r-264,288r177,0r0,-81r92,0r0,168r-405,0","w":463},"\u00c1":{"d":"13,0r0,-101r57,0r164,-457r-72,0r0,-100r372,0r0,100r-72,0r164,457r57,0r0,101r-253,0r0,-100r76,0r-37,-108r-246,0r-37,108r80,0r0,100r-253,0xm254,-302r184,0r-92,-259xm336,-716r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":696},"\u00e1":{"d":"177,8v-75,0,-142,-41,-142,-123v0,-82,72,-132,176,-132v45,0,87,6,111,12r0,-35v0,-26,-6,-46,-17,-60v-18,-23,-47,-32,-86,-32v-19,0,-33,3,-43,7v2,6,4,16,4,22v0,33,-26,57,-59,57v-33,0,-58,-23,-58,-59v0,-54,55,-111,174,-111v75,0,126,21,157,59v23,28,34,66,34,110r0,187r65,0r0,90r-169,0r0,-48v-35,30,-88,56,-147,56xm212,-71v39,0,77,-15,110,-39r0,-69v-25,-6,-56,-10,-90,-10v-53,0,-85,24,-85,64v0,35,26,54,65,54xm241,-491r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":509},"\u0102":{"d":"13,0r0,-101r57,0r164,-457r-72,0r0,-100r372,0r0,100r-72,0r164,457r57,0r0,101r-253,0r0,-100r76,0r-37,-108r-246,0r-37,108r80,0r0,100r-253,0xm254,-302r184,0r-92,-259xm345,-730v-78,0,-152,-51,-184,-174r69,-27v29,71,71,103,115,103v44,0,86,-33,115,-103r69,27v-32,123,-106,174,-184,174","w":696},"\u0103":{"d":"177,8v-75,0,-142,-41,-142,-123v0,-82,72,-132,176,-132v45,0,87,6,111,12r0,-35v0,-26,-6,-46,-17,-60v-18,-23,-47,-32,-86,-32v-19,0,-33,3,-43,7v2,6,4,16,4,22v0,33,-26,57,-59,57v-33,0,-58,-23,-58,-59v0,-54,55,-111,174,-111v75,0,126,21,157,59v23,28,34,66,34,110r0,187r65,0r0,90r-169,0r0,-48v-35,30,-88,56,-147,56xm212,-71v39,0,77,-15,110,-39r0,-69v-25,-6,-56,-10,-90,-10v-53,0,-85,24,-85,64v0,35,26,54,65,54xm250,-505v-78,0,-152,-51,-184,-174r69,-27v29,71,71,103,115,103v44,0,86,-33,115,-103r69,27v-32,123,-106,174,-184,174","w":509},"\u00c2":{"d":"13,0r0,-101r57,0r164,-457r-72,0r0,-100r372,0r0,100r-72,0r164,457r57,0r0,101r-253,0r0,-100r76,0r-37,-108r-246,0r-37,108r80,0r0,100r-253,0xm254,-302r184,0r-92,-259xm216,-719r-46,-53r177,-176r177,176r-46,53r-131,-96","w":696},"\u00e2":{"d":"177,8v-75,0,-142,-41,-142,-123v0,-82,72,-132,176,-132v45,0,87,6,111,12r0,-35v0,-26,-6,-46,-17,-60v-18,-23,-47,-32,-86,-32v-19,0,-33,3,-43,7v2,6,4,16,4,22v0,33,-26,57,-59,57v-33,0,-58,-23,-58,-59v0,-54,55,-111,174,-111v75,0,126,21,157,59v23,28,34,66,34,110r0,187r65,0r0,90r-169,0r0,-48v-35,30,-88,56,-147,56xm212,-71v39,0,77,-15,110,-39r0,-69v-25,-6,-56,-10,-90,-10v-53,0,-85,24,-85,64v0,35,26,54,65,54xm121,-494r-46,-53r177,-176r177,176r-46,53r-131,-96","w":509},"\u00c4":{"d":"13,0r0,-101r57,0r164,-457r-72,0r0,-100r372,0r0,100r-72,0r164,457r57,0r0,101r-253,0r0,-100r76,0r-37,-108r-246,0r-37,108r80,0r0,100r-253,0xm254,-302r184,0r-92,-259xm449,-730v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72xm243,-730v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":696},"\u00e4":{"d":"177,8v-75,0,-142,-41,-142,-123v0,-82,72,-132,176,-132v45,0,87,6,111,12r0,-35v0,-26,-6,-46,-17,-60v-18,-23,-47,-32,-86,-32v-19,0,-33,3,-43,7v2,6,4,16,4,22v0,33,-26,57,-59,57v-33,0,-58,-23,-58,-59v0,-54,55,-111,174,-111v75,0,126,21,157,59v23,28,34,66,34,110r0,187r65,0r0,90r-169,0r0,-48v-35,30,-88,56,-147,56xm212,-71v39,0,77,-15,110,-39r0,-69v-25,-6,-56,-10,-90,-10v-53,0,-85,24,-85,64v0,35,26,54,65,54xm354,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72xm148,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":509},"\u00c6":{"d":"3,0r0,-101r83,0r220,-456r-83,0r0,-101r642,0r0,188r-108,0r0,-88r-195,0r0,176r199,0r0,96r-199,0r0,186r196,0r0,-88r108,0r0,188r-492,0r0,-101r75,0r0,-107r-202,0r-51,108r70,0r0,100r-263,0xm291,-302r158,0r0,-259r-37,0","w":914},"\u00e6":{"d":"219,-362v-19,0,-33,3,-43,7v2,6,4,16,4,22v0,33,-26,57,-59,57v-33,0,-58,-23,-58,-59v0,-54,55,-111,174,-111v60,0,98,19,124,51v7,9,13,19,17,30v34,-49,88,-81,163,-81v130,0,203,94,203,210v0,17,-2,39,-5,54r-316,0v15,68,71,98,144,98v53,0,108,-17,159,-46r-9,98v-46,27,-102,40,-156,40v-85,0,-153,-31,-195,-85v-54,59,-135,85,-179,85v-85,0,-152,-41,-152,-123v0,-82,72,-132,176,-132v45,0,87,6,111,12r0,-35v0,-26,-6,-47,-17,-61v-18,-23,-48,-31,-86,-31xm217,-71v30,0,75,-16,119,-58v-6,-17,-11,-34,-14,-53v-40,-5,-68,-7,-90,-7v-53,0,-85,24,-85,64v0,35,26,54,70,54xm530,-358v-48,0,-96,28,-108,100r213,0v-2,-60,-41,-100,-105,-100","w":775},"\u01fc":{"d":"3,0r0,-101r83,0r220,-456r-83,0r0,-101r642,0r0,188r-108,0r0,-88r-195,0r0,176r199,0r0,96r-199,0r0,186r196,0r0,-88r108,0r0,188r-492,0r0,-101r75,0r0,-107r-202,0r-51,108r70,0r0,100r-263,0xm291,-302r158,0r0,-259r-37,0xm494,-716r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":914},"\u01fd":{"d":"219,-362v-19,0,-33,3,-43,7v2,6,4,16,4,22v0,33,-26,57,-59,57v-33,0,-58,-23,-58,-59v0,-54,55,-111,174,-111v60,0,98,19,124,51v7,9,13,19,17,30v34,-49,88,-81,163,-81v130,0,203,94,203,210v0,17,-2,39,-5,54r-316,0v15,68,71,98,144,98v53,0,108,-17,159,-46r-9,98v-46,27,-102,40,-156,40v-85,0,-153,-31,-195,-85v-54,59,-135,85,-179,85v-85,0,-152,-41,-152,-123v0,-82,72,-132,176,-132v45,0,87,6,111,12r0,-35v0,-26,-6,-47,-17,-61v-18,-23,-48,-31,-86,-31xm378,-491r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55xm217,-71v30,0,75,-16,119,-58v-6,-17,-11,-34,-14,-53v-40,-5,-68,-7,-90,-7v-53,0,-85,24,-85,64v0,35,26,54,70,54xm530,-358v-48,0,-96,28,-108,100r213,0v-2,-60,-41,-100,-105,-100","w":775},"\u00c0":{"d":"13,0r0,-101r57,0r164,-457r-72,0r0,-100r372,0r0,100r-72,0r164,457r57,0r0,101r-253,0r0,-100r76,0r-37,-108r-246,0r-37,108r80,0r0,100r-253,0xm254,-302r184,0r-92,-259xm358,-716r-149,-108v-21,-16,-31,-36,-31,-55v0,-29,22,-51,49,-51v20,0,40,12,55,31r110,150","w":696},"\u00e0":{"d":"177,8v-75,0,-142,-41,-142,-123v0,-82,72,-132,176,-132v45,0,87,6,111,12r0,-35v0,-26,-6,-46,-17,-60v-18,-23,-47,-32,-86,-32v-19,0,-33,3,-43,7v2,6,4,16,4,22v0,33,-26,57,-59,57v-33,0,-58,-23,-58,-59v0,-54,55,-111,174,-111v75,0,126,21,157,59v23,28,34,66,34,110r0,187r65,0r0,90r-169,0r0,-48v-35,30,-88,56,-147,56xm212,-71v39,0,77,-15,110,-39r0,-69v-25,-6,-56,-10,-90,-10v-53,0,-85,24,-85,64v0,35,26,54,65,54xm263,-491r-149,-108v-21,-16,-31,-36,-31,-55v0,-29,22,-51,49,-51v20,0,40,12,55,31r110,150","w":509},"\u0100":{"d":"13,0r0,-101r57,0r164,-457r-72,0r0,-100r372,0r0,100r-72,0r164,457r57,0r0,101r-253,0r0,-100r76,0r-37,-108r-246,0r-37,108r80,0r0,100r-253,0xm254,-302r184,0r-92,-259xm180,-749r0,-89r334,0r0,89r-334,0","w":696},"\u0101":{"d":"177,8v-75,0,-142,-41,-142,-123v0,-82,72,-132,176,-132v45,0,87,6,111,12r0,-35v0,-26,-6,-46,-17,-60v-18,-23,-47,-32,-86,-32v-19,0,-33,3,-43,7v2,6,4,16,4,22v0,33,-26,57,-59,57v-33,0,-58,-23,-58,-59v0,-54,55,-111,174,-111v75,0,126,21,157,59v23,28,34,66,34,110r0,187r65,0r0,90r-169,0r0,-48v-35,30,-88,56,-147,56xm212,-71v39,0,77,-15,110,-39r0,-69v-25,-6,-56,-10,-90,-10v-53,0,-85,24,-85,64v0,35,26,54,65,54xm85,-524r0,-89r334,0r0,89r-334,0","w":509},"\u0104":{"d":"564,201v-74,0,-114,-43,-114,-103v0,-41,20,-73,50,-98r-70,0r0,-100r76,0r-37,-108r-246,0r-37,108r80,0r0,100r-253,0r0,-101r57,0r164,-457r-72,0r0,-100r372,0r0,100r-72,0r164,457r57,0r0,101r-94,0v-29,19,-48,43,-48,71v0,31,18,46,52,46v25,0,49,-6,70,-17r-5,79v-18,11,-54,22,-94,22xm254,-302r184,0r-92,-259","w":696},"\u0105":{"d":"385,201v-74,0,-114,-43,-114,-103v0,-43,21,-75,53,-100r0,-46v-35,30,-88,56,-147,56v-75,0,-142,-41,-142,-123v0,-82,72,-132,176,-132v45,0,87,6,111,12r0,-35v0,-26,-6,-46,-17,-60v-18,-23,-47,-32,-86,-32v-19,0,-33,3,-43,7v2,6,4,16,4,22v0,33,-26,57,-59,57v-33,0,-58,-23,-58,-59v0,-54,55,-111,174,-111v75,0,126,21,157,59v23,28,34,66,34,110r0,187r65,0r0,90r-83,0v-29,19,-48,43,-48,71v0,31,18,46,52,46v25,0,49,-6,70,-17r-5,79v-18,11,-54,22,-94,22xm212,-71v39,0,77,-15,110,-39r0,-69v-25,-6,-56,-10,-90,-10v-53,0,-85,24,-85,64v0,35,26,54,65,54","w":509},"\u00c5":{"d":"482,-740v0,30,-13,60,-35,82r87,0r0,100r-72,0r164,457r57,0r0,101r-253,0r0,-100r76,0r-37,-108r-246,0r-37,108r80,0r0,100r-253,0r0,-101r57,0r164,-457r-72,0r0,-100r89,0v-22,-22,-37,-55,-37,-82v0,-69,59,-123,134,-123v75,0,134,54,134,123xm254,-302r184,0r-92,-259xm348,-674v31,0,52,-28,52,-59v0,-31,-21,-59,-52,-59v-31,0,-52,28,-52,59v0,31,21,59,52,59","w":696},"\u00e5":{"d":"177,8v-75,0,-142,-41,-142,-123v0,-82,72,-132,176,-132v45,0,87,6,111,12r0,-35v0,-26,-6,-46,-17,-60v-18,-23,-47,-32,-86,-32v-19,0,-33,3,-43,7v2,6,4,16,4,22v0,33,-26,57,-59,57v-33,0,-58,-23,-58,-59v0,-54,55,-111,174,-111v75,0,126,21,157,59v23,28,34,66,34,110r0,187r65,0r0,90r-169,0r0,-48v-35,30,-88,56,-147,56xm212,-71v39,0,77,-15,110,-39r0,-69v-25,-6,-56,-10,-90,-10v-53,0,-85,24,-85,64v0,35,26,54,65,54xm252,-486v-75,0,-134,-56,-134,-130v0,-74,59,-130,134,-130v75,0,134,56,134,130v0,74,-59,130,-134,130xm252,-557v31,0,52,-28,52,-59v0,-31,-21,-59,-52,-59v-31,0,-52,28,-52,59v0,31,21,59,52,59","w":509},"\u01fa":{"d":"482,-740v0,30,-13,60,-35,82r87,0r0,100r-72,0r164,457r57,0r0,101r-253,0r0,-100r76,0r-37,-108r-246,0r-37,108r80,0r0,100r-253,0r0,-101r57,0r164,-457r-72,0r0,-100r89,0v-22,-22,-37,-55,-37,-82v0,-69,59,-123,134,-123v75,0,134,54,134,123xm254,-302r184,0r-92,-259xm348,-674v31,0,52,-28,52,-59v0,-31,-21,-59,-52,-59v-31,0,-52,28,-52,59v0,31,21,59,52,59xm345,-908r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":696},"\u01fb":{"d":"177,8v-75,0,-142,-41,-142,-123v0,-82,72,-132,176,-132v45,0,87,6,111,12r0,-35v0,-26,-6,-46,-17,-60v-18,-23,-47,-32,-86,-32v-19,0,-33,3,-43,7v2,6,4,16,4,22v0,33,-26,57,-59,57v-33,0,-58,-23,-58,-59v0,-54,55,-111,174,-111v75,0,126,21,157,59v23,28,34,66,34,110r0,187r65,0r0,90r-169,0r0,-48v-35,30,-88,56,-147,56xm212,-71v39,0,77,-15,110,-39r0,-69v-25,-6,-56,-10,-90,-10v-53,0,-85,24,-85,64v0,35,26,54,65,54xm254,-486v-75,0,-134,-56,-134,-130v0,-74,59,-130,134,-130v75,0,134,56,134,130v0,74,-59,130,-134,130xm254,-557v31,0,52,-28,52,-59v0,-31,-21,-59,-52,-59v-31,0,-52,28,-52,59v0,31,21,59,52,59xm251,-791r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":509},"\u00c3":{"d":"13,0r0,-101r57,0r164,-457r-72,0r0,-100r372,0r0,100r-72,0r164,457r57,0r0,101r-253,0r0,-100r76,0r-37,-108r-246,0r-37,108r80,0r0,100r-253,0xm254,-302r184,0r-92,-259xm427,-731v-39,0,-67,-17,-89,-37v-26,-23,-45,-33,-60,-33v-23,0,-40,16,-52,64r-74,-19v11,-96,64,-151,119,-151v39,0,67,17,89,37v26,23,45,33,60,33v23,0,40,-16,52,-64r74,19v-11,96,-64,151,-119,151","w":696},"\u00e3":{"d":"177,8v-75,0,-142,-41,-142,-123v0,-82,72,-132,176,-132v45,0,87,6,111,12r0,-35v0,-26,-6,-46,-17,-60v-18,-23,-47,-32,-86,-32v-19,0,-33,3,-43,7v2,6,4,16,4,22v0,33,-26,57,-59,57v-33,0,-58,-23,-58,-59v0,-54,55,-111,174,-111v75,0,126,21,157,59v23,28,34,66,34,110r0,187r65,0r0,90r-169,0r0,-48v-35,30,-88,56,-147,56xm212,-71v39,0,77,-15,110,-39r0,-69v-25,-6,-56,-10,-90,-10v-53,0,-85,24,-85,64v0,35,26,54,65,54xm332,-506v-39,0,-67,-17,-89,-37v-26,-23,-45,-33,-60,-33v-23,0,-40,16,-52,64r-74,-19v11,-96,64,-151,119,-151v39,0,67,17,89,37v26,23,45,33,60,33v23,0,40,-16,52,-64r74,19v-11,96,-64,151,-119,151","w":509},"\u0106":{"d":"394,12v-203,0,-348,-136,-348,-341v0,-198,154,-341,346,-341v153,0,255,80,255,159v0,48,-31,81,-72,81v-45,0,-76,-28,-76,-71v0,-13,3,-26,7,-34v-19,-15,-57,-30,-117,-30v-128,0,-226,98,-226,235v0,132,92,237,231,237v77,0,140,-34,189,-87r75,78v-64,71,-159,114,-264,114xm371,-716r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":702},"\u0107":{"d":"276,8v-138,0,-242,-90,-242,-231v0,-114,92,-223,222,-223v120,0,199,78,199,147v0,46,-31,74,-70,74v-36,0,-66,-30,-66,-66v0,-13,6,-28,14,-37v-8,-11,-35,-30,-78,-30v-50,0,-112,41,-112,137v0,84,64,137,142,137v53,0,99,-15,156,-46r-9,98v-47,27,-92,40,-156,40xm248,-491r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":499},"\u010c":{"d":"394,12v-203,0,-348,-136,-348,-341v0,-198,154,-341,346,-341v153,0,255,80,255,159v0,48,-31,81,-72,81v-45,0,-76,-28,-76,-71v0,-13,3,-26,7,-34v-19,-15,-57,-30,-117,-30v-128,0,-226,98,-226,235v0,132,92,237,231,237v77,0,140,-34,189,-87r75,78v-64,71,-159,114,-264,114xm512,-941r46,53r-177,176r-177,-176r46,-53r131,96","w":702},"\u010d":{"d":"276,8v-138,0,-242,-90,-242,-231v0,-114,92,-223,222,-223v120,0,199,78,199,147v0,46,-31,74,-70,74v-36,0,-66,-30,-66,-66v0,-13,6,-28,14,-37v-8,-11,-35,-30,-78,-30v-50,0,-112,41,-112,137v0,84,64,137,142,137v53,0,99,-15,156,-46r-9,98v-47,27,-92,40,-156,40xm389,-716r46,53r-177,176r-177,-176r46,-53r131,96","w":499},"\u00c7":{"d":"394,12v-4,0,-8,-1,-12,-1r4,33v62,8,106,36,106,80v0,38,-43,76,-115,76v-42,0,-90,-13,-125,-34r17,-33v35,15,66,21,88,21v23,0,39,-10,39,-26v0,-9,-7,-26,-59,-26v-4,0,-11,1,-11,1r-21,-25r29,-70v-171,-24,-288,-153,-288,-337v0,-198,154,-341,346,-341v153,0,255,80,255,159v0,48,-31,81,-72,81v-45,0,-76,-28,-76,-71v0,-13,3,-26,7,-34v-19,-15,-57,-30,-117,-30v-128,0,-226,98,-226,235v0,132,92,237,231,237v77,0,140,-34,189,-87r75,78v-64,71,-159,114,-264,114","w":702},"\u00e7":{"d":"262,200v-42,0,-90,-13,-125,-34r17,-33v35,15,66,21,88,21v23,0,39,-10,39,-26v0,-9,-7,-26,-59,-26v-4,0,-11,1,-11,1r-21,-25r31,-75v-110,-21,-187,-104,-187,-226v0,-114,92,-223,222,-223v120,0,199,78,199,147v0,46,-31,74,-70,74v-36,0,-66,-30,-66,-66v0,-13,6,-28,14,-37v-8,-11,-35,-30,-78,-30v-50,0,-112,41,-112,137v0,84,64,137,142,137v53,0,99,-15,156,-46r-9,98v-47,27,-92,40,-156,40r-10,0r5,36v62,8,106,36,106,80v0,38,-43,76,-115,76","w":499},"\u010a":{"d":"394,12v-203,0,-348,-136,-348,-341v0,-198,154,-341,346,-341v153,0,255,80,255,159v0,48,-31,81,-72,81v-45,0,-76,-28,-76,-71v0,-13,3,-26,7,-34v-19,-15,-57,-30,-117,-30v-128,0,-226,98,-226,235v0,132,92,237,231,237v77,0,140,-34,189,-87r75,78v-64,71,-159,114,-264,114xm381,-720v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":702},"\u010b":{"d":"276,8v-138,0,-242,-90,-242,-231v0,-114,92,-223,222,-223v120,0,199,78,199,147v0,46,-31,74,-70,74v-36,0,-66,-30,-66,-66v0,-13,6,-28,14,-37v-8,-11,-35,-30,-78,-30v-50,0,-112,41,-112,137v0,84,64,137,142,137v53,0,99,-15,156,-46r-9,98v-47,27,-92,40,-156,40xm258,-495v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":499},"\u010e":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r249,0v238,0,379,124,379,323v0,201,-133,335,-391,335r-237,0xm225,-101r65,0v170,0,258,-92,258,-233v0,-144,-102,-223,-266,-223r-57,0r0,456xm461,-941r46,53r-177,176r-177,-176r46,-53r131,96","w":711},"\u010f":{"d":"237,8v-116,0,-203,-93,-203,-225v0,-127,92,-229,210,-229v56,0,97,21,122,42r0,-236r-66,0r0,-92r175,0r0,642r65,0r0,90r-174,0r0,-48v-32,31,-73,56,-129,56xm262,-86v41,0,74,-18,104,-44r0,-188v-29,-20,-63,-34,-104,-34v-61,0,-116,47,-116,134v0,84,52,132,116,132xm534,-468r-35,-26v31,-45,42,-85,42,-112v0,-37,-19,-51,-19,-90v0,-34,22,-65,64,-65v39,0,61,28,61,70v0,80,-56,164,-113,223","w":561},"\u0110":{"d":"122,-291r-85,0r0,-91r85,0r0,-175r-75,0r0,-101r249,0v233,0,379,129,379,323v0,201,-133,335,-381,335r-247,0r0,-101r75,0r0,-190xm235,-101r65,0v170,0,258,-92,258,-233v0,-144,-102,-223,-266,-223r-57,0r0,175r137,0r0,91r-137,0r0,190","w":721},"\u0111":{"d":"221,-499r0,-80r145,0r0,-61r-66,0r0,-92r175,0r0,153r65,0r0,80r-65,0r0,409r65,0r0,90r-174,0r0,-48v-32,31,-73,56,-129,56v-116,0,-203,-93,-203,-225v0,-127,92,-229,210,-229v56,0,97,21,122,42r0,-95r-145,0xm262,-86v41,0,74,-18,104,-44r0,-188v-29,-20,-63,-34,-104,-34v-61,0,-116,47,-116,134v0,84,52,132,116,132","w":561},"\u00c9":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r491,0r0,188r-108,0r0,-88r-195,0r0,176r199,0r0,96r-199,0r0,186r196,0r0,-88r108,0r0,188r-492,0xm281,-716r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":577},"\u00e9":{"d":"464,-182r-316,0v15,68,71,98,144,98v53,0,108,-17,159,-46r-9,98v-46,27,-102,40,-166,40v-143,0,-242,-90,-242,-226v0,-124,87,-228,222,-228v140,0,213,94,213,210v0,17,-2,39,-5,54xm248,-491r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55xm255,-358v-48,0,-96,28,-108,100r213,0v-2,-60,-41,-100,-105,-100","w":500},"\u0114":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r491,0r0,188r-108,0r0,-88r-195,0r0,176r199,0r0,96r-199,0r0,186r196,0r0,-88r108,0r0,188r-492,0xm290,-730v-78,0,-152,-51,-184,-174r69,-27v29,71,71,103,115,103v44,0,86,-33,115,-103r69,27v-32,123,-106,174,-184,174","w":577},"\u0115":{"d":"464,-182r-316,0v15,68,71,98,144,98v53,0,108,-17,159,-46r-9,98v-46,27,-102,40,-166,40v-143,0,-242,-90,-242,-226v0,-124,87,-228,222,-228v140,0,213,94,213,210v0,17,-2,39,-5,54xm257,-505v-78,0,-152,-51,-184,-174r69,-27v29,71,71,103,115,103v44,0,86,-33,115,-103r69,27v-32,123,-106,174,-184,174xm255,-358v-48,0,-96,28,-108,100r213,0v-2,-60,-41,-100,-105,-100","w":500},"\u011a":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r491,0r0,188r-108,0r0,-88r-195,0r0,176r199,0r0,96r-199,0r0,186r196,0r0,-88r108,0r0,188r-492,0xm422,-941r46,53r-177,176r-177,-176r46,-53r131,96","w":577},"\u011b":{"d":"464,-182r-316,0v15,68,71,98,144,98v53,0,108,-17,159,-46r-9,98v-46,27,-102,40,-166,40v-143,0,-242,-90,-242,-226v0,-124,87,-228,222,-228v140,0,213,94,213,210v0,17,-2,39,-5,54xm389,-716r46,53r-177,176r-177,-176r46,-53r131,96xm255,-358v-48,0,-96,28,-108,100r213,0v-2,-60,-41,-100,-105,-100","w":500},"\u00ca":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r491,0r0,188r-108,0r0,-88r-195,0r0,176r199,0r0,96r-199,0r0,186r196,0r0,-88r108,0r0,188r-492,0xm161,-719r-46,-53r177,-176r177,176r-46,53r-131,-96","w":577},"\u00ea":{"d":"464,-182r-316,0v15,68,71,98,144,98v53,0,108,-17,159,-46r-9,98v-46,27,-102,40,-166,40v-143,0,-242,-90,-242,-226v0,-124,87,-228,222,-228v140,0,213,94,213,210v0,17,-2,39,-5,54xm128,-494r-46,-53r177,-176r177,176r-46,53r-131,-96xm255,-358v-48,0,-96,28,-108,100r213,0v-2,-60,-41,-100,-105,-100","w":500},"\u00cb":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r491,0r0,188r-108,0r0,-88r-195,0r0,176r199,0r0,96r-199,0r0,186r196,0r0,-88r108,0r0,188r-492,0xm394,-730v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72xm188,-730v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":577},"\u00eb":{"d":"464,-182r-316,0v15,68,71,98,144,98v53,0,108,-17,159,-46r-9,98v-46,27,-102,40,-166,40v-143,0,-242,-90,-242,-226v0,-124,87,-228,222,-228v140,0,213,94,213,210v0,17,-2,39,-5,54xm255,-358v-48,0,-96,28,-108,100r213,0v-2,-60,-41,-100,-105,-100xm361,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72xm155,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":500},"\u0116":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r491,0r0,188r-108,0r0,-88r-195,0r0,176r199,0r0,96r-199,0r0,186r196,0r0,-88r108,0r0,188r-492,0xm291,-720v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":577},"\u0117":{"d":"464,-182r-316,0v15,68,71,98,144,98v53,0,108,-17,159,-46r-9,98v-46,27,-102,40,-166,40v-143,0,-242,-90,-242,-226v0,-124,87,-228,222,-228v140,0,213,94,213,210v0,17,-2,39,-5,54xm255,-358v-48,0,-96,28,-108,100r213,0v-2,-60,-41,-100,-105,-100xm258,-495v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":500},"\u00c8":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r491,0r0,188r-108,0r0,-88r-195,0r0,176r199,0r0,96r-199,0r0,186r196,0r0,-88r108,0r0,188r-492,0xm303,-716r-149,-108v-21,-16,-31,-36,-31,-55v0,-29,22,-51,49,-51v20,0,40,12,55,31r110,150","w":577},"\u00e8":{"d":"464,-182r-316,0v15,68,71,98,144,98v53,0,108,-17,159,-46r-9,98v-46,27,-102,40,-166,40v-143,0,-242,-90,-242,-226v0,-124,87,-228,222,-228v140,0,213,94,213,210v0,17,-2,39,-5,54xm270,-491r-149,-108v-21,-16,-31,-36,-31,-55v0,-29,22,-51,49,-51v20,0,40,12,55,31r110,150xm255,-358v-48,0,-96,28,-108,100r213,0v-2,-60,-41,-100,-105,-100","w":500},"\u0112":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r491,0r0,188r-108,0r0,-88r-195,0r0,176r199,0r0,96r-199,0r0,186r196,0r0,-88r108,0r0,188r-492,0xm125,-749r0,-89r334,0r0,89r-334,0","w":577},"\u0113":{"d":"464,-182r-316,0v15,68,71,98,144,98v53,0,108,-17,159,-46r-9,98v-46,27,-102,40,-166,40v-143,0,-242,-90,-242,-226v0,-124,87,-228,222,-228v140,0,213,94,213,210v0,17,-2,39,-5,54xm92,-524r0,-89r334,0r0,89r-334,0xm255,-358v-48,0,-96,28,-108,100r213,0v-2,-60,-41,-100,-105,-100","w":500},"\u0118":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r491,0r0,188r-108,0r0,-88r-195,0r0,176r199,0r0,96r-199,0r0,186r196,0r0,-88r108,0r0,188r-74,0v-29,19,-48,43,-48,71v0,31,18,46,52,46v25,0,49,-6,70,-17r-5,79v-18,11,-54,22,-94,22v-74,0,-114,-43,-114,-103v0,-41,20,-73,50,-98r-329,0","w":577},"\u0119":{"d":"464,-182r-316,0v15,68,71,98,144,98v53,0,108,-17,159,-46r-9,100v-74,27,-125,59,-125,103v0,29,18,44,52,44v25,0,49,-6,70,-17r-5,79v-18,11,-54,22,-94,22v-74,0,-114,-43,-114,-103v0,-37,16,-66,41,-90v-138,-4,-233,-93,-233,-226v0,-124,87,-228,222,-228v140,0,213,94,213,210v0,17,-2,39,-5,54xm255,-358v-48,0,-96,28,-108,100r213,0v-2,-60,-41,-100,-105,-100","w":500},"\u00d0":{"d":"122,-291r-85,0r0,-91r85,0r0,-175r-75,0r0,-101r249,0v233,0,379,129,379,323v0,201,-133,335,-381,335r-247,0r0,-101r75,0r0,-190xm235,-101r65,0v170,0,258,-92,258,-233v0,-144,-102,-223,-266,-223r-57,0r0,175r137,0r0,91r-137,0r0,190","w":721},"\u00f0":{"d":"223,-465r-56,-66r86,-72v-26,-19,-54,-33,-81,-42v-11,22,-30,41,-63,41v-31,0,-59,-23,-59,-62v0,-44,40,-74,91,-74v28,0,57,6,86,18v35,14,70,36,103,64r97,-81r56,66r-93,78v69,86,119,204,119,341v0,95,-30,163,-77,206v-42,38,-98,56,-160,56v-142,0,-238,-97,-238,-217v0,-120,96,-217,233,-217v46,0,95,21,130,53v-12,-67,-42,-125,-81,-171xm406,-208v0,-70,-56,-127,-134,-127v-78,0,-134,57,-134,127v0,70,56,126,134,126v37,0,69,-12,93,-34v26,-23,41,-55,41,-92","w":543},"\u011e":{"d":"362,12v-162,0,-316,-128,-316,-339v0,-203,154,-343,346,-343v153,0,255,80,255,159v0,48,-31,81,-72,81v-45,0,-76,-28,-76,-71v0,-13,3,-26,7,-34v-19,-15,-57,-30,-117,-30v-128,0,-226,95,-226,237v0,145,105,238,216,238v69,0,117,-15,159,-42r0,-113r-164,0r0,-96r275,0r0,341r-108,0r0,-49v-46,36,-105,61,-179,61xm380,-730v-78,0,-152,-51,-184,-174r69,-27v29,71,71,103,115,103v44,0,86,-33,115,-103r69,27v-32,123,-106,174,-184,174","w":726},"\u011f":{"d":"469,-346r0,347v0,54,-14,99,-41,132v-36,44,-93,67,-164,67v-76,0,-141,-24,-172,-55v-17,-17,-24,-36,-24,-57v0,-31,23,-61,59,-61v34,0,61,24,61,57v0,5,-1,13,-2,17v18,6,39,11,65,11v39,0,70,-12,89,-38v13,-18,20,-43,20,-76r0,-63v-33,33,-68,56,-126,56v-111,0,-200,-85,-200,-215v0,-125,91,-222,205,-222v56,0,96,22,125,47r0,-39r170,0r0,92r-65,0xm262,-352v-67,0,-116,44,-116,127v0,80,49,124,116,124v37,0,70,-17,98,-43r0,-174v-26,-20,-59,-34,-98,-34xm282,-505v-78,0,-152,-51,-184,-174r69,-27v29,71,71,103,115,103v44,0,86,-33,115,-103r69,27v-32,123,-106,174,-184,174","w":557},"\u0122":{"d":"362,12v-162,0,-316,-128,-316,-339v0,-203,154,-343,346,-343v153,0,255,80,255,159v0,48,-31,81,-72,81v-45,0,-76,-28,-76,-71v0,-13,3,-26,7,-34v-19,-15,-57,-30,-117,-30v-128,0,-226,95,-226,237v0,145,105,238,216,238v69,0,117,-15,159,-42r0,-113r-164,0r0,-96r275,0r0,341r-108,0r0,-49v-46,36,-105,61,-179,61xm308,313r-26,-33v55,-43,81,-85,83,-109v-30,-8,-50,-32,-50,-65v0,-32,29,-61,66,-61v38,0,71,27,71,80v0,50,-36,127,-144,188","w":726},"\u0123":{"d":"469,-346r0,347v0,54,-14,99,-41,132v-36,44,-93,67,-164,67v-76,0,-141,-24,-172,-55v-17,-17,-24,-36,-24,-57v0,-31,23,-61,59,-61v34,0,61,24,61,57v0,5,-1,13,-2,17v18,6,39,11,65,11v39,0,70,-12,89,-38v13,-18,20,-43,20,-76r0,-63v-33,33,-68,56,-126,56v-111,0,-200,-85,-200,-215v0,-125,91,-222,205,-222v56,0,96,22,125,47r0,-39r170,0r0,92r-65,0xm262,-352v-67,0,-116,44,-116,127v0,80,49,124,116,124v37,0,70,-17,98,-43r0,-174v-26,-20,-59,-34,-98,-34xm408,-754r26,33v-55,43,-81,85,-83,109v30,8,50,32,50,65v0,32,-29,61,-66,61v-38,0,-71,-27,-71,-80v0,-50,36,-127,144,-188","w":557},"\u0120":{"d":"362,12v-162,0,-316,-128,-316,-339v0,-203,154,-343,346,-343v153,0,255,80,255,159v0,48,-31,81,-72,81v-45,0,-76,-28,-76,-71v0,-13,3,-26,7,-34v-19,-15,-57,-30,-117,-30v-128,0,-226,95,-226,237v0,145,105,238,216,238v69,0,117,-15,159,-42r0,-113r-164,0r0,-96r275,0r0,341r-108,0r0,-49v-46,36,-105,61,-179,61xm381,-720v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":726},"\u0121":{"d":"469,-346r0,347v0,54,-14,99,-41,132v-36,44,-93,67,-164,67v-76,0,-141,-24,-172,-55v-17,-17,-24,-36,-24,-57v0,-31,23,-61,59,-61v34,0,61,24,61,57v0,5,-1,13,-2,17v18,6,39,11,65,11v39,0,70,-12,89,-38v13,-18,20,-43,20,-76r0,-63v-33,33,-68,56,-126,56v-111,0,-200,-85,-200,-215v0,-125,91,-222,205,-222v56,0,96,22,125,47r0,-39r170,0r0,92r-65,0xm262,-352v-67,0,-116,44,-116,127v0,80,49,124,116,124v37,0,70,-17,98,-43r0,-174v-26,-20,-59,-34,-98,-34xm273,-495v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":557},"\u0126":{"d":"56,-420r0,-83r56,0r0,-62r-75,0r0,-93r270,0r0,93r-82,0r0,62r304,0r0,-62r-82,0r0,-93r270,0r0,93r-75,0r0,62r56,0r0,83r-56,0r0,319r75,0r0,101r-270,0r0,-101r82,0r0,-162r-304,0r0,162r82,0r0,101r-270,0r0,-101r75,0r0,-319r-56,0xm225,-362r304,0r0,-58r-304,0r0,58","w":754},"\u0127":{"d":"91,-640r-65,0r0,-92r174,0r0,153r145,0r0,80r-145,0r0,127v41,-39,87,-74,149,-74v47,0,84,17,107,47v19,25,29,59,29,99r0,210r65,0r0,90r-234,0r0,-90r60,0r0,-183v0,-24,-5,-41,-14,-53v-11,-14,-28,-21,-49,-21v-38,0,-78,22,-113,51r0,206r60,0r0,90r-234,0r0,-90r65,0r0,-409r-65,0r0,-80r65,0r0,-61","w":566},"\u00cd":{"d":"37,0r0,-101r80,0r0,-456r-80,0r0,-101r273,0r0,101r-80,0r0,456r80,0r0,101r-273,0xm162,-716r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":347},"\u00ed":{"d":"32,0r0,-90r67,0r0,-256r-67,0r0,-92r176,0r0,348r65,0r0,90r-241,0xm131,-491r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":305},"\u012c":{"d":"37,0r0,-101r80,0r0,-456r-80,0r0,-101r273,0r0,101r-80,0r0,456r80,0r0,101r-273,0xm171,-730v-78,0,-152,-51,-184,-174r69,-27v29,71,71,103,115,103v44,0,86,-33,115,-103r69,27v-32,123,-106,174,-184,174","w":347},"\u012d":{"d":"32,0r0,-90r67,0r0,-256r-67,0r0,-92r176,0r0,348r65,0r0,90r-241,0xm140,-505v-78,0,-152,-51,-184,-174r69,-27v29,71,71,103,115,103v44,0,86,-33,115,-103r69,27v-32,123,-106,174,-184,174","w":305},"\u00ce":{"d":"37,0r0,-101r80,0r0,-456r-80,0r0,-101r273,0r0,101r-80,0r0,456r80,0r0,101r-273,0xm42,-719r-46,-53r177,-176r177,176r-46,53r-131,-96","w":347},"\u00ee":{"d":"32,0r0,-90r67,0r0,-256r-67,0r0,-92r176,0r0,348r65,0r0,90r-241,0xm11,-494r-46,-53r177,-176r177,176r-46,53r-131,-96","w":305},"\u00cf":{"d":"37,0r0,-101r80,0r0,-456r-80,0r0,-101r273,0r0,101r-80,0r0,456r80,0r0,101r-273,0xm275,-730v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72xm69,-730v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":347},"\u00ef":{"d":"32,0r0,-90r67,0r0,-256r-67,0r0,-92r176,0r0,348r65,0r0,90r-241,0xm244,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72xm38,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":305},"\u0130":{"d":"37,0r0,-101r80,0r0,-456r-80,0r0,-101r273,0r0,101r-80,0r0,456r80,0r0,101r-273,0xm172,-720v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":347},"\u0131":{"d":"32,0r0,-90r67,0r0,-256r-67,0r0,-92r176,0r0,348r65,0r0,90r-241,0","w":305},"\u00cc":{"d":"37,0r0,-101r80,0r0,-456r-80,0r0,-101r273,0r0,101r-80,0r0,456r80,0r0,101r-273,0xm184,-716r-149,-108v-21,-16,-31,-36,-31,-55v0,-29,22,-51,49,-51v20,0,40,12,55,31r110,150","w":347},"\u00ec":{"d":"32,0r0,-90r67,0r0,-256r-67,0r0,-92r176,0r0,348r65,0r0,90r-241,0xm153,-491r-149,-108v-21,-16,-31,-36,-31,-55v0,-29,22,-51,49,-51v20,0,40,12,55,31r110,150","w":305},"\u012a":{"d":"37,0r0,-101r80,0r0,-456r-80,0r0,-101r273,0r0,101r-80,0r0,456r80,0r0,101r-273,0xm6,-749r0,-89r334,0r0,89r-334,0","w":347},"\u012b":{"d":"32,0r0,-90r67,0r0,-256r-67,0r0,-92r176,0r0,348r65,0r0,90r-241,0xm-25,-524r0,-89r334,0r0,89r-334,0","w":305},"\u012e":{"d":"37,0r0,-101r80,0r0,-456r-80,0r0,-101r273,0r0,101r-80,0r0,456r80,0r0,101r-94,0v-29,19,-48,43,-48,71v0,31,18,46,52,46v25,0,49,-6,70,-17r-5,79v-18,11,-54,22,-94,22v-74,0,-114,-43,-114,-103v0,-41,20,-73,50,-98r-90,0","w":347},"\u012f":{"d":"32,0r0,-90r67,0r0,-256r-67,0r0,-92r176,0r0,348r65,0r0,90r-94,0v-29,19,-48,43,-48,71v0,31,18,46,52,46v25,0,49,-6,70,-17r-5,79v-18,11,-54,22,-94,22v-74,0,-114,-43,-114,-103v0,-41,20,-73,50,-98r-58,0xm142,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":305},"\u0136":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r270,0r0,99r-82,0r0,223r221,-223r-75,0r0,-99r290,0r0,101r-71,0r-184,181r168,275r87,0r0,101r-158,0r-183,-300r-95,93r0,106r82,0r0,101r-270,0xm275,313r-26,-33v55,-43,81,-85,83,-109v-30,-8,-50,-32,-50,-65v0,-32,29,-61,66,-61v38,0,71,27,71,80v0,50,-36,127,-144,188","w":681},"\u0137":{"d":"26,0r0,-90r65,0r0,-550r-65,0r0,-92r174,0r0,491r128,-110r-61,0r0,-87r259,0r0,92r-81,0r-102,86r111,168r72,0r0,92r-137,0r-126,-197r-63,53r0,56r55,0r0,88r-229,0xm202,313r-26,-33v55,-43,81,-85,83,-109v-30,-8,-50,-32,-50,-65v0,-32,29,-61,66,-61v38,0,71,27,71,80v0,50,-36,127,-144,188","w":552},"\u0139":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r275,0r0,101r-87,0r0,457r181,0r0,-93r109,0r0,193r-478,0xm203,-716r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":548},"\u013a":{"d":"26,0r0,-90r68,0r0,-550r-68,0r0,-92r177,0r0,642r65,0r0,90r-242,0xm144,-791r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":295},"\u013d":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r275,0r0,101r-87,0r0,457r181,0r0,-93r109,0r0,193r-478,0xm389,-368r-35,-26v31,-45,42,-85,42,-112v0,-37,-19,-51,-19,-90v0,-34,22,-65,64,-65v39,0,61,28,61,70v0,80,-56,164,-113,223","w":548},"\u013e":{"d":"26,0r0,-90r68,0r0,-550r-68,0r0,-92r177,0r0,642r65,0r0,90r-242,0xm263,-468r-35,-26v31,-45,42,-85,42,-112v0,-37,-19,-51,-19,-90v0,-34,22,-65,64,-65v39,0,61,28,61,70v0,80,-56,164,-113,223","w":295},"\u013b":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r275,0r0,101r-87,0r0,457r181,0r0,-93r109,0r0,193r-478,0xm202,313r-26,-33v55,-43,81,-85,83,-109v-30,-8,-50,-32,-50,-65v0,-32,29,-61,66,-61v38,0,71,27,71,80v0,50,-36,127,-144,188","w":548},"\u013c":{"d":"26,0r0,-90r68,0r0,-550r-68,0r0,-92r177,0r0,642r65,0r0,90r-242,0xm73,313r-26,-33v55,-43,81,-85,83,-109v-30,-8,-50,-32,-50,-65v0,-32,29,-61,66,-61v38,0,71,27,71,80v0,50,-36,127,-144,188","w":295},"\u013f":{"d":"442,-304v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72xm37,0r0,-101r75,0r0,-456r-75,0r0,-101r275,0r0,101r-87,0r0,457r181,0r0,-93r109,0r0,193r-478,0","w":548},"\u0140":{"d":"26,0r0,-90r68,0r0,-550r-68,0r0,-92r177,0r0,642r65,0r0,90r-242,0xm334,-274v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":373},"\u0141":{"d":"37,0r0,-101r75,0r0,-150r-80,44r-45,-77r125,-69r0,-204r-75,0r0,-101r275,0r0,101r-87,0r0,142r111,-62r44,78r-155,86r0,213r181,0r0,-93r109,0r0,193r-478,0","w":548},"\u0142":{"d":"26,0r0,-90r68,0r0,-246r-69,40r-43,-76r112,-64r0,-204r-68,0r0,-92r177,0r0,241r71,-41r43,76r-114,66r0,300r65,0r0,90r-242,0","w":295},"\u0143":{"d":"581,3r-359,-457r0,353r82,0r0,101r-267,0r0,-101r75,0r0,-456r-75,0r0,-101r171,0r324,413r0,-312r-82,0r0,-101r264,0r0,101r-72,0r0,558xm360,-716r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":743},"\u0144":{"d":"201,-438r0,70v42,-41,89,-78,153,-78v52,0,90,21,113,56v15,24,23,54,23,90r0,210r65,0r0,90r-234,0r0,-90r60,0r0,-183v0,-18,-3,-34,-9,-45v-10,-19,-28,-29,-54,-29v-38,0,-78,22,-113,51r0,206r60,0r0,90r-234,0r0,-90r65,0r0,-256r-65,0r0,-92r170,0xm282,-491r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":571},"\u0147":{"d":"581,3r-359,-457r0,353r82,0r0,101r-267,0r0,-101r75,0r0,-456r-75,0r0,-101r171,0r324,413r0,-312r-82,0r0,-101r264,0r0,101r-72,0r0,558xm501,-941r46,53r-177,176r-177,-176r46,-53r131,96","w":743},"\u0148":{"d":"201,-438r0,70v42,-41,89,-78,153,-78v52,0,90,21,113,56v15,24,23,54,23,90r0,210r65,0r0,90r-234,0r0,-90r60,0r0,-183v0,-18,-3,-34,-9,-45v-10,-19,-28,-29,-54,-29v-38,0,-78,22,-113,51r0,206r60,0r0,90r-234,0r0,-90r65,0r0,-256r-65,0r0,-92r170,0xm423,-716r46,53r-177,176r-177,-176r46,-53r131,96","w":571},"\u0145":{"d":"581,3r-359,-457r0,353r82,0r0,101r-267,0r0,-101r75,0r0,-456r-75,0r0,-101r171,0r324,413r0,-312r-82,0r0,-101r264,0r0,101r-72,0r0,558xm307,306r-26,-33v55,-43,81,-85,83,-109v-30,-8,-50,-32,-50,-65v0,-32,29,-61,66,-61v38,0,71,27,71,80v0,50,-36,127,-144,188","w":743},"\u0146":{"d":"201,-438r0,70v42,-41,89,-78,153,-78v52,0,90,21,113,56v15,24,23,54,23,90r0,210r65,0r0,90r-234,0r0,-90r60,0r0,-183v0,-18,-3,-34,-9,-45v-10,-19,-28,-29,-54,-29v-38,0,-78,22,-113,51r0,206r60,0r0,90r-234,0r0,-90r65,0r0,-256r-65,0r0,-92r170,0xm219,313r-26,-33v55,-43,81,-85,83,-109v-30,-8,-50,-32,-50,-65v0,-32,29,-61,66,-61v38,0,71,27,71,80v0,50,-36,127,-144,188","w":571},"\u00d1":{"d":"581,3r-359,-457r0,353r82,0r0,101r-267,0r0,-101r75,0r0,-456r-75,0r0,-101r171,0r324,413r0,-312r-82,0r0,-101r264,0r0,101r-72,0r0,558xm451,-731v-39,0,-67,-17,-89,-37v-26,-23,-45,-33,-60,-33v-23,0,-40,16,-52,64r-74,-19v11,-96,64,-151,119,-151v39,0,67,17,89,37v26,23,45,33,60,33v23,0,40,-16,52,-64r74,19v-11,96,-64,151,-119,151","w":743},"\u00f1":{"d":"201,-438r0,70v42,-41,89,-78,153,-78v52,0,90,21,113,56v15,24,23,54,23,90r0,210r65,0r0,90r-234,0r0,-90r60,0r0,-183v0,-18,-3,-34,-9,-45v-10,-19,-28,-29,-54,-29v-38,0,-78,22,-113,51r0,206r60,0r0,90r-234,0r0,-90r65,0r0,-256r-65,0r0,-92r170,0xm373,-506v-39,0,-67,-17,-89,-37v-26,-23,-45,-33,-60,-33v-23,0,-40,16,-52,64r-74,-19v11,-96,64,-151,119,-151v39,0,67,17,89,37v26,23,45,33,60,33v23,0,40,-16,52,-64r74,19v-11,96,-64,151,-119,151","w":571},"\u00d3":{"d":"381,12v-199,0,-335,-149,-335,-341v0,-193,140,-341,340,-341v199,0,335,149,335,341v0,193,-140,341,-340,341xm384,-93v127,0,220,-98,220,-236v0,-137,-93,-236,-220,-236v-128,0,-221,98,-221,236v0,137,93,236,221,236xm372,-716r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":767},"\u00f3":{"d":"267,8v-145,0,-233,-105,-233,-227v0,-120,90,-227,233,-227v145,0,233,105,233,227v0,120,-90,227,-233,227xm267,-83v71,0,121,-56,121,-136v0,-80,-50,-136,-121,-136v-71,0,-121,56,-121,136v0,80,50,136,121,136xm256,-491r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":534},"\u014e":{"d":"381,12v-199,0,-335,-149,-335,-341v0,-193,140,-341,340,-341v199,0,335,149,335,341v0,193,-140,341,-340,341xm384,-93v127,0,220,-98,220,-236v0,-137,-93,-236,-220,-236v-128,0,-221,98,-221,236v0,137,93,236,221,236xm381,-730v-78,0,-152,-51,-184,-174r69,-27v29,71,71,103,115,103v44,0,86,-33,115,-103r69,27v-32,123,-106,174,-184,174","w":767},"\u014f":{"d":"267,8v-145,0,-233,-105,-233,-227v0,-120,90,-227,233,-227v145,0,233,105,233,227v0,120,-90,227,-233,227xm267,-83v71,0,121,-56,121,-136v0,-80,-50,-136,-121,-136v-71,0,-121,56,-121,136v0,80,50,136,121,136xm265,-505v-78,0,-152,-51,-184,-174r69,-27v29,71,71,103,115,103v44,0,86,-33,115,-103r69,27v-32,123,-106,174,-184,174","w":534},"\u00d4":{"d":"381,12v-199,0,-335,-149,-335,-341v0,-193,140,-341,340,-341v199,0,335,149,335,341v0,193,-140,341,-340,341xm384,-93v127,0,220,-98,220,-236v0,-137,-93,-236,-220,-236v-128,0,-221,98,-221,236v0,137,93,236,221,236xm252,-719r-46,-53r177,-176r177,176r-46,53r-131,-96","w":767},"\u00f4":{"d":"267,8v-145,0,-233,-105,-233,-227v0,-120,90,-227,233,-227v145,0,233,105,233,227v0,120,-90,227,-233,227xm267,-83v71,0,121,-56,121,-136v0,-80,-50,-136,-121,-136v-71,0,-121,56,-121,136v0,80,50,136,121,136xm136,-494r-46,-53r177,-176r177,176r-46,53r-131,-96","w":534},"\u00d6":{"d":"381,12v-199,0,-335,-149,-335,-341v0,-193,140,-341,340,-341v199,0,335,149,335,341v0,193,-140,341,-340,341xm384,-93v127,0,220,-98,220,-236v0,-137,-93,-236,-220,-236v-128,0,-221,98,-221,236v0,137,93,236,221,236xm485,-730v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72xm279,-730v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":767},"\u00f6":{"d":"267,8v-145,0,-233,-105,-233,-227v0,-120,90,-227,233,-227v145,0,233,105,233,227v0,120,-90,227,-233,227xm267,-83v71,0,121,-56,121,-136v0,-80,-50,-136,-121,-136v-71,0,-121,56,-121,136v0,80,50,136,121,136xm369,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72xm163,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":534},"\u0152":{"d":"425,0v-233,0,-379,-129,-379,-323v0,-201,133,-335,381,-335r455,0r0,188r-108,0r0,-88r-195,0r0,176r199,0r0,96r-199,0r0,186r196,0r0,-88r108,0r0,188r-458,0xm429,-101r37,0r0,-456r-45,0v-170,0,-258,92,-258,233v0,144,102,223,266,223","w":931},"\u0153":{"d":"646,-84v53,0,108,-17,159,-46r-9,98v-46,27,-102,40,-161,40v-82,0,-161,-43,-192,-95v-34,56,-102,95,-181,95v-140,0,-228,-105,-228,-227v0,-120,90,-227,228,-227v82,0,148,40,181,94v38,-60,108,-94,172,-94v135,0,208,94,208,210v0,17,-2,39,-5,54r-316,0v15,68,71,98,144,98xm267,-83v71,0,121,-56,121,-136v0,-80,-50,-136,-121,-136v-71,0,-121,56,-121,136v0,80,50,136,121,136xm609,-358v-48,0,-96,28,-108,100r213,0v-2,-60,-41,-100,-105,-100","w":844},"\u00d2":{"d":"381,12v-199,0,-335,-149,-335,-341v0,-193,140,-341,340,-341v199,0,335,149,335,341v0,193,-140,341,-340,341xm384,-93v127,0,220,-98,220,-236v0,-137,-93,-236,-220,-236v-128,0,-221,98,-221,236v0,137,93,236,221,236xm394,-716r-149,-108v-21,-16,-31,-36,-31,-55v0,-29,22,-51,49,-51v20,0,40,12,55,31r110,150","w":767},"\u00f2":{"d":"267,8v-145,0,-233,-105,-233,-227v0,-120,90,-227,233,-227v145,0,233,105,233,227v0,120,-90,227,-233,227xm267,-83v71,0,121,-56,121,-136v0,-80,-50,-136,-121,-136v-71,0,-121,56,-121,136v0,80,50,136,121,136xm278,-491r-149,-108v-21,-16,-31,-36,-31,-55v0,-29,22,-51,49,-51v20,0,40,12,55,31r110,150","w":534},"\u0150":{"d":"381,12v-199,0,-335,-149,-335,-341v0,-193,140,-341,340,-341v199,0,335,149,335,341v0,193,-140,341,-340,341xm384,-93v127,0,220,-98,220,-236v0,-137,-93,-236,-220,-236v-128,0,-221,98,-221,236v0,137,93,236,221,236xm242,-718r-25,-35r146,-143v19,-19,38,-28,54,-28v30,0,52,24,52,51v0,22,-12,45,-44,62xm460,-718r-22,-36r163,-145v19,-17,37,-24,53,-24v29,0,50,24,50,52v0,22,-13,44,-45,60","w":767},"\u0151":{"d":"267,8v-145,0,-233,-105,-233,-227v0,-120,90,-227,233,-227v145,0,233,105,233,227v0,120,-90,227,-233,227xm267,-83v71,0,121,-56,121,-136v0,-80,-50,-136,-121,-136v-71,0,-121,56,-121,136v0,80,50,136,121,136xm126,-493r-25,-35r146,-143v19,-19,38,-28,54,-28v30,0,52,24,52,51v0,22,-12,45,-44,62xm344,-493r-22,-36r163,-145v19,-17,37,-24,53,-24v29,0,50,24,50,52v0,22,-13,44,-45,60","w":534},"\u014c":{"d":"381,12v-199,0,-335,-149,-335,-341v0,-193,140,-341,340,-341v199,0,335,149,335,341v0,193,-140,341,-340,341xm384,-93v127,0,220,-98,220,-236v0,-137,-93,-236,-220,-236v-128,0,-221,98,-221,236v0,137,93,236,221,236xm216,-749r0,-89r334,0r0,89r-334,0","w":767},"\u014d":{"d":"267,8v-145,0,-233,-105,-233,-227v0,-120,90,-227,233,-227v145,0,233,105,233,227v0,120,-90,227,-233,227xm267,-83v71,0,121,-56,121,-136v0,-80,-50,-136,-121,-136v-71,0,-121,56,-121,136v0,80,50,136,121,136xm100,-524r0,-89r334,0r0,89r-334,0","w":534},"\u00d8":{"d":"381,12v-69,0,-132,-19,-183,-53r-77,89r-72,-64r76,-89v-50,-60,-79,-138,-79,-224v0,-193,140,-341,340,-341v73,0,138,22,191,59r80,-93r72,64r-82,94v46,59,74,135,74,217v0,193,-140,341,-340,341xm163,-329v0,60,15,111,43,150r304,-350v-35,-23,-77,-36,-126,-36v-128,0,-221,98,-221,236xm384,-93v127,0,220,-98,220,-236v0,-55,-13,-102,-37,-140r-302,345v33,20,73,31,119,31","w":767},"\u00f8":{"d":"267,8v-42,0,-78,-9,-110,-24r-49,59r-67,-55r48,-57v-36,-41,-55,-94,-55,-150v0,-120,90,-227,233,-227v43,0,82,11,115,28r52,-62r67,55r-52,62v33,40,51,91,51,144v0,120,-90,227,-233,227xm146,-219v0,33,6,59,17,80r163,-203v-17,-8,-37,-13,-59,-13v-71,0,-121,56,-121,136xm267,-83v71,0,121,-56,121,-136v0,-28,-5,-53,-14,-72r-162,198v16,7,34,10,55,10","w":534},"\u01fe":{"d":"381,12v-69,0,-132,-19,-183,-53r-77,89r-72,-64r76,-89v-50,-60,-79,-138,-79,-224v0,-193,140,-341,340,-341v73,0,138,22,191,59r80,-93r72,64r-82,94v46,59,74,135,74,217v0,193,-140,341,-340,341xm163,-329v0,60,15,111,43,150r304,-350v-35,-23,-77,-36,-126,-36v-128,0,-221,98,-221,236xm384,-93v127,0,220,-98,220,-236v0,-55,-13,-102,-37,-140r-302,345v33,20,73,31,119,31xm376,-716r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":767},"\u01ff":{"d":"267,8v-42,0,-78,-9,-110,-24r-49,59r-67,-55r48,-57v-36,-41,-55,-94,-55,-150v0,-120,90,-227,233,-227v43,0,82,11,115,28r52,-62r67,55r-52,62v33,40,51,91,51,144v0,120,-90,227,-233,227xm256,-491r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55xm146,-219v0,33,6,59,17,80r163,-203v-17,-8,-37,-13,-59,-13v-71,0,-121,56,-121,136xm267,-83v71,0,121,-56,121,-136v0,-28,-5,-53,-14,-72r-162,198v16,7,34,10,55,10","w":534},"\u00d5":{"d":"381,12v-199,0,-335,-149,-335,-341v0,-193,140,-341,340,-341v199,0,335,149,335,341v0,193,-140,341,-340,341xm384,-93v127,0,220,-98,220,-236v0,-137,-93,-236,-220,-236v-128,0,-221,98,-221,236v0,137,93,236,221,236xm463,-731v-39,0,-67,-17,-89,-37v-26,-23,-45,-33,-60,-33v-23,0,-40,16,-52,64r-74,-19v11,-96,64,-151,119,-151v39,0,67,17,89,37v26,23,45,33,60,33v23,0,40,-16,52,-64r74,19v-11,96,-64,151,-119,151","w":767},"\u00f5":{"d":"267,8v-145,0,-233,-105,-233,-227v0,-120,90,-227,233,-227v145,0,233,105,233,227v0,120,-90,227,-233,227xm267,-83v71,0,121,-56,121,-136v0,-80,-50,-136,-121,-136v-71,0,-121,56,-121,136v0,80,50,136,121,136xm347,-506v-39,0,-67,-17,-89,-37v-26,-23,-45,-33,-60,-33v-23,0,-40,16,-52,64r-74,-19v11,-96,64,-151,119,-151v39,0,67,17,89,37v26,23,45,33,60,33v23,0,40,-16,52,-64r74,19v-11,96,-64,151,-119,151","w":534},"\u0154":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r255,0v151,0,259,65,259,199v0,85,-52,150,-124,179r101,179r75,0r0,101r-152,0r-132,-250v-14,1,-27,2,-40,2v-21,0,-40,0,-54,-1r0,148r82,0r0,101r-270,0xm289,-344v85,0,145,-42,145,-111v0,-69,-57,-102,-148,-102r-61,0r0,211v12,1,28,2,64,2xm289,-716r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":620},"\u0155":{"d":"340,-446v54,0,81,33,81,72v0,37,-29,68,-65,68v-33,0,-55,-19,-64,-39v-31,11,-67,45,-87,83r0,172r76,0r0,90r-250,0r0,-90r65,0r0,-256r-65,0r0,-92r170,0r0,99v37,-59,83,-107,139,-107xm215,-491r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":435},"\u0158":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r255,0v151,0,259,65,259,199v0,85,-52,150,-124,179r101,179r75,0r0,101r-152,0r-132,-250v-14,1,-27,2,-40,2v-21,0,-40,0,-54,-1r0,148r82,0r0,101r-270,0xm289,-344v85,0,145,-42,145,-111v0,-69,-57,-102,-148,-102r-61,0r0,211v12,1,28,2,64,2xm430,-941r46,53r-177,176r-177,-176r46,-53r131,96","w":620},"\u0159":{"d":"340,-446v54,0,81,33,81,72v0,37,-29,68,-65,68v-33,0,-55,-19,-64,-39v-31,11,-67,45,-87,83r0,172r76,0r0,90r-250,0r0,-90r65,0r0,-256r-65,0r0,-92r170,0r0,99v37,-59,83,-107,139,-107xm356,-716r46,53r-177,176r-177,-176r46,-53r131,96","w":435},"\u0156":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r255,0v151,0,259,65,259,199v0,85,-52,150,-124,179r101,179r75,0r0,101r-152,0r-132,-250v-14,1,-27,2,-40,2v-21,0,-40,0,-54,-1r0,148r82,0r0,101r-270,0xm289,-344v85,0,145,-42,145,-111v0,-69,-57,-102,-148,-102r-61,0r0,211v12,1,28,2,64,2xm226,313r-26,-33v55,-43,81,-85,83,-109v-30,-8,-50,-32,-50,-65v0,-32,29,-61,66,-61v38,0,71,27,71,80v0,50,-36,127,-144,188","w":620},"\u0157":{"d":"340,-446v54,0,81,33,81,72v0,37,-29,68,-65,68v-33,0,-55,-19,-64,-39v-31,11,-67,45,-87,83r0,172r76,0r0,90r-250,0r0,-90r65,0r0,-256r-65,0r0,-92r170,0r0,99v37,-59,83,-107,139,-107xm82,313r-26,-33v55,-43,81,-85,83,-109v-30,-8,-50,-32,-50,-65v0,-32,29,-61,66,-61v38,0,71,27,71,80v0,50,-36,127,-144,188","w":435},"\u015a":{"d":"275,12v-130,0,-235,-73,-235,-153v0,-47,28,-78,69,-78v44,0,72,33,72,65v0,16,-3,28,-9,40v24,17,61,28,104,28v72,0,118,-32,118,-89v0,-54,-55,-80,-121,-103v-122,-44,-208,-83,-208,-205v0,-105,85,-187,218,-187v123,0,218,63,218,142v0,47,-29,74,-67,74v-46,0,-72,-34,-72,-67v0,-16,3,-23,7,-31v-18,-11,-46,-20,-87,-20v-65,0,-103,33,-103,81v0,54,55,78,121,102v118,42,207,83,207,205v0,125,-97,196,-232,196xm269,-716r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":555},"\u015b":{"d":"406,-341v0,35,-22,59,-54,59v-35,0,-59,-21,-59,-54v0,-7,0,-13,2,-19v-18,-7,-40,-11,-62,-11v-49,0,-73,22,-73,45v0,25,25,38,92,56v105,28,166,54,166,133v0,92,-86,141,-185,141v-67,0,-139,-24,-168,-53v-18,-18,-25,-36,-25,-59v0,-32,24,-59,58,-59v30,0,59,20,59,58v0,6,-1,12,-2,18v20,8,48,14,79,14v44,0,80,-15,80,-47v0,-22,-19,-35,-86,-53v-121,-32,-172,-61,-172,-136v0,-68,56,-139,179,-139v53,0,117,20,147,50v16,16,24,35,24,56xm218,-491r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":458},"\u0160":{"d":"275,12v-130,0,-235,-73,-235,-153v0,-47,28,-78,69,-78v44,0,72,33,72,65v0,16,-3,28,-9,40v24,17,61,28,104,28v72,0,118,-32,118,-89v0,-54,-55,-80,-121,-103v-122,-44,-208,-83,-208,-205v0,-105,85,-187,218,-187v123,0,218,63,218,142v0,47,-29,74,-67,74v-46,0,-72,-34,-72,-67v0,-16,3,-23,7,-31v-18,-11,-46,-20,-87,-20v-65,0,-103,33,-103,81v0,54,55,78,121,102v118,42,207,83,207,205v0,125,-97,196,-232,196xm410,-941r46,53r-177,176r-177,-176r46,-53r131,96","w":555},"\u0161":{"d":"406,-341v0,35,-22,59,-54,59v-35,0,-59,-21,-59,-54v0,-7,0,-13,2,-19v-18,-7,-40,-11,-62,-11v-49,0,-73,22,-73,45v0,25,25,38,92,56v105,28,166,54,166,133v0,92,-86,141,-185,141v-67,0,-139,-24,-168,-53v-18,-18,-25,-36,-25,-59v0,-32,24,-59,58,-59v30,0,59,20,59,58v0,6,-1,12,-2,18v20,8,48,14,79,14v44,0,80,-15,80,-47v0,-22,-19,-35,-86,-53v-121,-32,-172,-61,-172,-136v0,-68,56,-139,179,-139v53,0,117,20,147,50v16,16,24,35,24,56xm359,-716r46,53r-177,176r-177,-176r46,-53r131,96","w":458},"\u015e":{"d":"292,200v-42,0,-90,-13,-125,-34r17,-33v35,15,66,21,88,21v23,0,39,-10,39,-26v0,-9,-7,-26,-59,-26v-4,0,-11,1,-11,1r-21,-25r27,-67v-117,-10,-207,-77,-207,-152v0,-47,28,-78,69,-78v44,0,72,33,72,65v0,16,-3,28,-9,40v24,17,61,28,104,28v72,0,118,-32,118,-89v0,-54,-55,-80,-121,-103v-122,-44,-208,-83,-208,-205v0,-105,85,-187,218,-187v123,0,218,63,218,142v0,47,-29,74,-67,74v-46,0,-72,-34,-72,-67v0,-16,3,-23,7,-31v-18,-11,-46,-20,-87,-20v-65,0,-103,33,-103,81v0,54,55,78,121,102v118,42,207,83,207,205v0,118,-87,188,-210,195r4,33v62,8,106,36,106,80v0,38,-43,76,-115,76","w":555},"\u015f":{"d":"234,200v-42,0,-90,-13,-125,-34r17,-33v35,15,66,21,88,21v23,0,39,-10,39,-26v0,-9,-7,-26,-59,-26v-4,0,-11,1,-11,1r-21,-25r29,-72v-53,-6,-103,-27,-126,-50v-18,-18,-25,-36,-25,-59v0,-32,24,-59,58,-59v30,0,59,20,59,58v0,6,-1,12,-2,18v20,8,48,14,79,14v44,0,80,-15,80,-47v0,-22,-19,-35,-86,-53v-121,-32,-172,-61,-172,-136v0,-68,56,-139,179,-139v53,0,117,20,147,50v16,16,24,35,24,56v0,35,-22,59,-54,59v-35,0,-59,-21,-59,-54v0,-7,0,-13,2,-19v-18,-7,-40,-11,-62,-11v-49,0,-73,22,-73,45v0,25,25,38,92,56v105,28,166,54,166,133v0,91,-83,139,-180,141r5,35v62,8,106,36,106,80v0,38,-43,76,-115,76","w":458},"\u0218":{"d":"275,12v-130,0,-235,-73,-235,-153v0,-47,28,-78,69,-78v44,0,72,33,72,65v0,16,-3,28,-9,40v24,17,61,28,104,28v72,0,118,-32,118,-89v0,-54,-55,-80,-121,-103v-122,-44,-208,-83,-208,-205v0,-105,85,-187,218,-187v123,0,218,63,218,142v0,47,-29,74,-67,74v-46,0,-72,-34,-72,-67v0,-16,3,-23,7,-31v-18,-11,-46,-20,-87,-20v-65,0,-103,33,-103,81v0,54,55,78,121,102v118,42,207,83,207,205v0,125,-97,196,-232,196xm206,313r-26,-33v55,-43,81,-85,83,-109v-30,-8,-50,-32,-50,-65v0,-32,29,-61,66,-61v38,0,71,27,71,80v0,50,-36,127,-144,188","w":555},"\u0219":{"d":"406,-341v0,35,-22,59,-54,59v-35,0,-59,-21,-59,-54v0,-7,0,-13,2,-19v-18,-7,-40,-11,-62,-11v-49,0,-73,22,-73,45v0,25,25,38,92,56v105,28,166,54,166,133v0,92,-86,141,-185,141v-67,0,-139,-24,-168,-53v-18,-18,-25,-36,-25,-59v0,-32,24,-59,58,-59v30,0,59,20,59,58v0,6,-1,12,-2,18v20,8,48,14,79,14v44,0,80,-15,80,-47v0,-22,-19,-35,-86,-53v-121,-32,-172,-61,-172,-136v0,-68,56,-139,179,-139v53,0,117,20,147,50v16,16,24,35,24,56xm155,313r-26,-33v55,-43,81,-85,83,-109v-30,-8,-50,-32,-50,-65v0,-32,29,-61,66,-61v38,0,71,27,71,80v0,50,-36,127,-144,188","w":458},"\u0164":{"d":"170,0r0,-101r82,0r0,-459r-122,0r0,104r-107,0r0,-202r571,0r0,202r-107,0r0,-104r-122,0r0,459r82,0r0,101r-277,0xm438,-941r46,53r-177,176r-177,-176r46,-53r131,96","w":617},"\u0165":{"d":"227,8v-53,0,-96,-18,-118,-60v-10,-18,-15,-41,-15,-69r0,-225r-85,0r0,-92r85,0r0,-92r108,-47r0,139r133,0r0,92r-133,0r0,204v0,14,2,23,7,32v8,14,24,21,46,21v28,0,60,-11,86,-23r-9,94v-30,15,-65,26,-105,26xm265,-481r-35,-26v31,-45,42,-85,42,-112v0,-37,-19,-51,-19,-90v0,-34,22,-65,64,-65v39,0,61,28,61,70v0,80,-56,164,-113,223","w":369},"\u0162":{"d":"170,0r0,-101r82,0r0,-459r-122,0r0,104r-107,0r0,-202r571,0r0,202r-107,0r0,-104r-122,0r0,459r82,0r0,101r-277,0xm234,313r-26,-33v55,-43,81,-85,83,-109v-30,-8,-50,-32,-50,-65v0,-32,29,-61,66,-61v38,0,71,27,71,80v0,50,-36,127,-144,188","w":617},"\u0163":{"d":"227,8v-53,0,-96,-18,-118,-60v-10,-18,-15,-41,-15,-69r0,-225r-85,0r0,-92r85,0r0,-92r108,-47r0,139r133,0r0,92r-133,0r0,204v0,14,2,23,7,32v8,14,24,21,46,21v28,0,60,-11,86,-23r-9,94v-30,15,-65,26,-105,26xm122,313r-26,-33v55,-43,81,-85,83,-109v-30,-8,-50,-32,-50,-65v0,-32,29,-61,66,-61v38,0,71,27,71,80v0,50,-36,127,-144,188","w":369},"\u00de":{"d":"37,0r0,-101r75,0r0,-456r-75,0r0,-101r268,0r0,98r-80,0r0,57v14,-1,46,-1,99,-1v126,0,227,49,227,166v0,127,-104,178,-232,178v-48,0,-80,0,-94,-1r0,63r80,0r0,98r-268,0xm329,-253v52,0,105,-22,105,-80v0,-61,-53,-79,-105,-79v-61,0,-92,1,-104,2r0,155v12,1,43,2,104,2","w":581},"\u00fe":{"d":"-4,196r0,-90r65,0r0,-746r-68,0r0,-92r177,0r0,342v30,-29,67,-55,126,-55v114,0,200,92,200,224v0,127,-91,228,-207,228v-47,0,-86,-17,-119,-42r0,141r71,0r0,90r-245,0xm272,-87v58,0,112,-46,112,-133v0,-84,-50,-131,-112,-131v-41,0,-73,18,-102,44r0,186v28,20,62,34,102,34","w":533},"\u00da":{"d":"347,12v-147,0,-248,-82,-248,-252r0,-317r-72,0r0,-101r264,0r0,101r-79,0r0,311v0,101,51,155,135,155v85,0,136,-49,136,-151r0,-315r-79,0r0,-101r261,0r0,101r-72,0r0,315v0,172,-101,254,-246,254xm335,-716r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":692},"\u00fa":{"d":"217,8v-53,0,-92,-22,-114,-58v-14,-23,-22,-53,-22,-88r0,-208r-65,0r0,-92r174,0r0,273v0,19,3,33,9,45v10,19,28,29,54,29v38,0,78,-22,113,-51r0,-204r-68,0r0,-92r177,0r0,348r65,0r0,90r-170,0r0,-70v-42,41,-89,78,-153,78xm257,-491r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":566},"\u016c":{"d":"347,12v-147,0,-248,-82,-248,-252r0,-317r-72,0r0,-101r264,0r0,101r-79,0r0,311v0,101,51,155,135,155v85,0,136,-49,136,-151r0,-315r-79,0r0,-101r261,0r0,101r-72,0r0,315v0,172,-101,254,-246,254xm344,-730v-78,0,-152,-51,-184,-174r69,-27v29,71,71,103,115,103v44,0,86,-33,115,-103r69,27v-32,123,-106,174,-184,174","w":692},"\u016d":{"d":"217,8v-53,0,-92,-22,-114,-58v-14,-23,-22,-53,-22,-88r0,-208r-65,0r0,-92r174,0r0,273v0,19,3,33,9,45v10,19,28,29,54,29v38,0,78,-22,113,-51r0,-204r-68,0r0,-92r177,0r0,348r65,0r0,90r-170,0r0,-70v-42,41,-89,78,-153,78xm266,-505v-78,0,-152,-51,-184,-174r69,-27v29,71,71,103,115,103v44,0,86,-33,115,-103r69,27v-32,123,-106,174,-184,174","w":566},"\u00db":{"d":"347,12v-147,0,-248,-82,-248,-252r0,-317r-72,0r0,-101r264,0r0,101r-79,0r0,311v0,101,51,155,135,155v85,0,136,-49,136,-151r0,-315r-79,0r0,-101r261,0r0,101r-72,0r0,315v0,172,-101,254,-246,254xm215,-719r-46,-53r177,-176r177,176r-46,53r-131,-96","w":692},"\u00fb":{"d":"217,8v-53,0,-92,-22,-114,-58v-14,-23,-22,-53,-22,-88r0,-208r-65,0r0,-92r174,0r0,273v0,19,3,33,9,45v10,19,28,29,54,29v38,0,78,-22,113,-51r0,-204r-68,0r0,-92r177,0r0,348r65,0r0,90r-170,0r0,-70v-42,41,-89,78,-153,78xm137,-494r-46,-53r177,-176r177,176r-46,53r-131,-96","w":566},"\u00dc":{"d":"347,12v-147,0,-248,-82,-248,-252r0,-317r-72,0r0,-101r264,0r0,101r-79,0r0,311v0,101,51,155,135,155v85,0,136,-49,136,-151r0,-315r-79,0r0,-101r261,0r0,101r-72,0r0,315v0,172,-101,254,-246,254xm448,-730v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72xm242,-730v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":692},"\u00fc":{"d":"217,8v-53,0,-92,-22,-114,-58v-14,-23,-22,-53,-22,-88r0,-208r-65,0r0,-92r174,0r0,273v0,19,3,33,9,45v10,19,28,29,54,29v38,0,78,-22,113,-51r0,-204r-68,0r0,-92r177,0r0,348r65,0r0,90r-170,0r0,-70v-42,41,-89,78,-153,78xm370,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72xm164,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":566},"\u00d9":{"d":"347,12v-147,0,-248,-82,-248,-252r0,-317r-72,0r0,-101r264,0r0,101r-79,0r0,311v0,101,51,155,135,155v85,0,136,-49,136,-151r0,-315r-79,0r0,-101r261,0r0,101r-72,0r0,315v0,172,-101,254,-246,254xm357,-716r-149,-108v-21,-16,-31,-36,-31,-55v0,-29,22,-51,49,-51v20,0,40,12,55,31r110,150","w":692},"\u00f9":{"d":"217,8v-53,0,-92,-22,-114,-58v-14,-23,-22,-53,-22,-88r0,-208r-65,0r0,-92r174,0r0,273v0,19,3,33,9,45v10,19,28,29,54,29v38,0,78,-22,113,-51r0,-204r-68,0r0,-92r177,0r0,348r65,0r0,90r-170,0r0,-70v-42,41,-89,78,-153,78xm279,-491r-149,-108v-21,-16,-31,-36,-31,-55v0,-29,22,-51,49,-51v20,0,40,12,55,31r110,150","w":566},"\u0170":{"d":"347,12v-147,0,-248,-82,-248,-252r0,-317r-72,0r0,-101r264,0r0,101r-79,0r0,311v0,101,51,155,135,155v85,0,136,-49,136,-151r0,-315r-79,0r0,-101r261,0r0,101r-72,0r0,315v0,172,-101,254,-246,254xm205,-718r-25,-35r146,-143v19,-19,38,-28,54,-28v30,0,52,24,52,51v0,22,-12,45,-44,62xm423,-718r-22,-36r163,-145v19,-17,37,-24,53,-24v29,0,50,24,50,52v0,22,-13,44,-45,60","w":692},"\u0171":{"d":"217,8v-53,0,-92,-22,-114,-58v-14,-23,-22,-53,-22,-88r0,-208r-65,0r0,-92r174,0r0,273v0,19,3,33,9,45v10,19,28,29,54,29v38,0,78,-22,113,-51r0,-204r-68,0r0,-92r177,0r0,348r65,0r0,90r-170,0r0,-70v-42,41,-89,78,-153,78xm127,-493r-25,-35r146,-143v19,-19,38,-28,54,-28v30,0,52,24,52,51v0,22,-12,45,-44,62xm345,-493r-22,-36r163,-145v19,-17,37,-24,53,-24v29,0,50,24,50,52v0,22,-13,44,-45,60","w":566},"\u016a":{"d":"347,12v-147,0,-248,-82,-248,-252r0,-317r-72,0r0,-101r264,0r0,101r-79,0r0,311v0,101,51,155,135,155v85,0,136,-49,136,-151r0,-315r-79,0r0,-101r261,0r0,101r-72,0r0,315v0,172,-101,254,-246,254xm179,-749r0,-89r334,0r0,89r-334,0","w":692},"\u016b":{"d":"217,8v-53,0,-92,-22,-114,-58v-14,-23,-22,-53,-22,-88r0,-208r-65,0r0,-92r174,0r0,273v0,19,3,33,9,45v10,19,28,29,54,29v38,0,78,-22,113,-51r0,-204r-68,0r0,-92r177,0r0,348r65,0r0,90r-170,0r0,-70v-42,41,-89,78,-153,78xm101,-524r0,-89r334,0r0,89r-334,0","w":566},"\u0172":{"d":"376,201v-74,0,-114,-43,-114,-103v0,-37,16,-66,40,-89v-122,-15,-203,-97,-203,-249r0,-317r-72,0r0,-101r264,0r0,101r-79,0r0,311v0,101,51,155,135,155v85,0,136,-49,136,-151r0,-315r-79,0r0,-101r261,0r0,101r-72,0r0,315v0,155,-83,237,-205,251v-22,18,-35,39,-35,62v0,31,18,46,52,46v25,0,49,-6,70,-17r-5,79v-18,11,-54,22,-94,22","w":692},"\u0173":{"d":"429,201v-74,0,-114,-43,-114,-103v0,-43,22,-76,55,-101r0,-67v-42,41,-89,78,-153,78v-53,0,-92,-22,-114,-58v-14,-23,-22,-53,-22,-88r0,-208r-65,0r0,-92r174,0r0,273v0,19,3,33,9,45v10,19,28,29,54,29v38,0,78,-22,113,-51r0,-204r-68,0r0,-92r177,0r0,348r65,0r0,90r-86,0v-29,19,-48,43,-48,71v0,31,18,46,52,46v25,0,49,-6,70,-17r-5,79v-18,11,-54,22,-94,22","w":566},"\u016e":{"d":"347,12v-147,0,-248,-82,-248,-252r0,-317r-72,0r0,-101r264,0r0,101r-79,0r0,311v0,101,51,155,135,155v85,0,136,-49,136,-151r0,-315r-79,0r0,-101r261,0r0,101r-72,0r0,315v0,172,-101,254,-246,254xm346,-711v-75,0,-134,-56,-134,-130v0,-74,59,-130,134,-130v75,0,134,56,134,130v0,74,-59,130,-134,130xm346,-782v31,0,52,-28,52,-59v0,-31,-21,-59,-52,-59v-31,0,-52,28,-52,59v0,31,21,59,52,59","w":692},"\u016f":{"d":"217,8v-53,0,-92,-22,-114,-58v-14,-23,-22,-53,-22,-88r0,-208r-65,0r0,-92r174,0r0,273v0,19,3,33,9,45v10,19,28,29,54,29v38,0,78,-22,113,-51r0,-204r-68,0r0,-92r177,0r0,348r65,0r0,90r-170,0r0,-70v-42,41,-89,78,-153,78xm268,-486v-75,0,-134,-56,-134,-130v0,-74,59,-130,134,-130v75,0,134,56,134,130v0,74,-59,130,-134,130xm268,-557v31,0,52,-28,52,-59v0,-31,-21,-59,-52,-59v-31,0,-52,28,-52,59v0,31,21,59,52,59","w":566},"\u1e82":{"d":"273,7r-180,-564r-70,0r0,-101r280,0r0,101r-87,0r107,346r163,-383r60,0r163,383r100,-346r-90,0r0,-101r280,0r0,101r-70,0r-177,564r-63,0r-176,-405r-177,405r-63,0xm500,-716r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":1022},"\u1e83":{"d":"177,17r-108,-363r-64,0r0,-92r225,0r0,90r-62,0r60,215r103,-260r75,0r102,260r60,-215r-72,0r0,-90r225,0r0,92r-64,0r-108,363r-77,0r-109,-268r-109,268r-77,0xm352,-491r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":726},"\u0174":{"d":"273,7r-180,-564r-70,0r0,-101r280,0r0,101r-87,0r107,346r163,-383r60,0r163,383r100,-346r-90,0r0,-101r280,0r0,101r-70,0r-177,564r-63,0r-176,-405r-177,405r-63,0xm380,-719r-46,-53r177,-176r177,176r-46,53r-131,-96","w":1022},"\u0175":{"d":"177,17r-108,-363r-64,0r0,-92r225,0r0,90r-62,0r60,215r103,-260r75,0r102,260r60,-215r-72,0r0,-90r225,0r0,92r-64,0r-108,363r-77,0r-109,-268r-109,268r-77,0xm232,-494r-46,-53r177,-176r177,176r-46,53r-131,-96","w":726},"\u1e84":{"d":"273,7r-180,-564r-70,0r0,-101r280,0r0,101r-87,0r107,346r163,-383r60,0r163,383r100,-346r-90,0r0,-101r280,0r0,101r-70,0r-177,564r-63,0r-176,-405r-177,405r-63,0xm613,-730v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72xm407,-730v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":1022},"\u1e85":{"d":"177,17r-108,-363r-64,0r0,-92r225,0r0,90r-62,0r60,215r103,-260r75,0r102,260r60,-215r-72,0r0,-90r225,0r0,92r-64,0r-108,363r-77,0r-109,-268r-109,268r-77,0xm465,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72xm259,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":726},"\u1e80":{"d":"273,7r-180,-564r-70,0r0,-101r280,0r0,101r-87,0r107,346r163,-383r60,0r163,383r100,-346r-90,0r0,-101r280,0r0,101r-70,0r-177,564r-63,0r-176,-405r-177,405r-63,0xm522,-716r-149,-108v-21,-16,-31,-36,-31,-55v0,-29,22,-51,49,-51v20,0,40,12,55,31r110,150","w":1022},"\u1e81":{"d":"177,17r-108,-363r-64,0r0,-92r225,0r0,90r-62,0r60,215r103,-260r75,0r102,260r60,-215r-72,0r0,-90r225,0r0,92r-64,0r-108,363r-77,0r-109,-268r-109,268r-77,0xm374,-491r-149,-108v-21,-16,-31,-36,-31,-55v0,-29,22,-51,49,-51v20,0,40,12,55,31r110,150","w":726},"\u00dd":{"d":"183,0r0,-101r83,0r0,-150r-187,-306r-66,0r0,-101r249,0r0,101r-58,0r121,211r120,-211r-62,0r0,-101r249,0r0,101r-66,0r-187,306r0,150r83,0r0,101r-279,0xm311,-716r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":645},"\u00fd":{"d":"235,142v-32,37,-72,57,-116,57v-58,0,-94,-34,-94,-69v0,-37,25,-56,54,-56v26,0,41,16,48,33v11,-3,23,-10,35,-26v7,-9,13,-20,20,-34r33,-69r-156,-324r-54,0r0,-92r226,0r0,87r-64,0r101,231r102,-231r-68,0r0,-87r225,0r0,92r-53,0r-205,435v-10,20,-21,38,-34,53xm255,-491r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":532},"\u0176":{"d":"183,0r0,-101r83,0r0,-150r-187,-306r-66,0r0,-101r249,0r0,101r-58,0r121,211r120,-211r-62,0r0,-101r249,0r0,101r-66,0r-187,306r0,150r83,0r0,101r-279,0xm191,-719r-46,-53r177,-176r177,176r-46,53r-131,-96","w":645},"\u0177":{"d":"235,142v-32,37,-72,57,-116,57v-58,0,-94,-34,-94,-69v0,-37,25,-56,54,-56v26,0,41,16,48,33v11,-3,23,-10,35,-26v7,-9,13,-20,20,-34r33,-69r-156,-324r-54,0r0,-92r226,0r0,87r-64,0r101,231r102,-231r-68,0r0,-87r225,0r0,92r-53,0r-205,435v-10,20,-21,38,-34,53xm135,-494r-46,-53r177,-176r177,176r-46,53r-131,-96","w":532},"\u0178":{"d":"183,0r0,-101r83,0r0,-150r-187,-306r-66,0r0,-101r249,0r0,101r-58,0r121,211r120,-211r-62,0r0,-101r249,0r0,101r-66,0r-187,306r0,150r83,0r0,101r-279,0xm424,-730v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72xm218,-730v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":645},"\u00ff":{"d":"235,142v-32,37,-72,57,-116,57v-58,0,-94,-34,-94,-69v0,-37,25,-56,54,-56v26,0,41,16,48,33v11,-3,23,-10,35,-26v7,-9,13,-20,20,-34r33,-69r-156,-324r-54,0r0,-92r226,0r0,87r-64,0r101,231r102,-231r-68,0r0,-87r225,0r0,92r-53,0r-205,435v-10,20,-21,38,-34,53xm162,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72xm368,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":532},"\u1ef2":{"d":"183,0r0,-101r83,0r0,-150r-187,-306r-66,0r0,-101r249,0r0,101r-58,0r121,211r120,-211r-62,0r0,-101r249,0r0,101r-66,0r-187,306r0,150r83,0r0,101r-279,0xm333,-716r-149,-108v-21,-16,-31,-36,-31,-55v0,-29,22,-51,49,-51v20,0,40,12,55,31r110,150","w":645},"\u1ef3":{"d":"235,142v-32,37,-72,57,-116,57v-58,0,-94,-34,-94,-69v0,-37,25,-56,54,-56v26,0,41,16,48,33v11,-3,23,-10,35,-26v7,-9,13,-20,20,-34r33,-69r-156,-324r-54,0r0,-92r226,0r0,87r-64,0r101,231r102,-231r-68,0r0,-87r225,0r0,92r-53,0r-205,435v-10,20,-21,38,-34,53xm277,-491r-149,-108v-21,-16,-31,-36,-31,-55v0,-29,22,-51,49,-51v20,0,40,12,55,31r110,150","w":532},"\u0179":{"d":"44,0r0,-64r372,-499r-256,0r0,110r-96,0r0,-205r511,0r0,64r-372,499r283,0r0,-110r95,0r0,205r-537,0xm301,-716r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":625},"\u017a":{"d":"29,0r0,-64r264,-288r-155,0r0,81r-93,0r0,-167r384,0r0,63r-264,288r177,0r0,-81r92,0r0,168r-405,0xm220,-491r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":463},"\u017d":{"d":"44,0r0,-64r372,-499r-256,0r0,110r-96,0r0,-205r511,0r0,64r-372,499r283,0r0,-110r95,0r0,205r-537,0xm442,-941r46,53r-177,176r-177,-176r46,-53r131,96","w":625},"\u017e":{"d":"29,0r0,-64r264,-288r-155,0r0,81r-93,0r0,-167r384,0r0,63r-264,288r177,0r0,-81r92,0r0,168r-405,0xm361,-716r46,53r-177,176r-177,-176r46,-53r131,96","w":463},"\u017b":{"d":"44,0r0,-64r372,-499r-256,0r0,110r-96,0r0,-205r511,0r0,64r-372,499r283,0r0,-110r95,0r0,205r-537,0xm311,-720v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":625},"\u017c":{"d":"29,0r0,-64r264,-288r-155,0r0,81r-93,0r0,-167r384,0r0,63r-264,288r177,0r0,-81r92,0r0,168r-405,0xm230,-495v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":463},"\u0259":{"d":"244,8v-140,0,-213,-94,-213,-210v0,-17,2,-39,5,-54r316,0v-16,-67,-72,-98,-144,-98v-53,0,-108,17,-159,46r9,-98v46,-27,102,-40,166,-40v143,0,242,90,242,226v0,124,-87,228,-222,228xm245,-80v47,0,96,-27,108,-100r-213,0v2,60,41,100,105,100","w":500},"\u00df":{"d":"429,8v-120,0,-158,-72,-158,-112v0,-32,24,-59,58,-59v27,0,59,20,59,54v0,9,-2,18,-7,29v7,3,23,6,38,6v39,0,67,-18,67,-61v0,-40,-31,-59,-82,-89v-56,-32,-117,-69,-117,-145v0,-53,32,-87,60,-116v24,-24,45,-48,45,-83v0,-42,-34,-81,-90,-81v-36,0,-62,19,-77,52v-10,21,-15,48,-15,78r0,519r-174,0r0,-90r66,0r0,-256r-75,0r0,-92r75,0r0,-65v0,-55,10,-107,34,-148v31,-53,86,-89,172,-89v116,0,192,70,192,167v0,62,-36,96,-67,125v-29,27,-48,49,-48,74v0,24,29,42,66,63v73,41,140,82,140,171v0,104,-74,148,-162,148","w":615},"0":{"d":"291,8v-145,0,-250,-115,-250,-270v0,-155,105,-271,250,-271v145,0,250,116,250,271v0,155,-105,270,-250,270xm291,-83v82,0,138,-76,138,-179v0,-103,-56,-180,-138,-180v-82,0,-138,77,-138,180v0,103,56,179,138,179","w":582},"1":{"d":"57,0r0,-90r120,0r0,-323r-101,24r-25,-90r182,-46r53,0r0,435r118,0r0,90r-347,0","w":437},"2":{"d":"257,-442v-39,0,-73,9,-90,23v7,11,12,24,12,37v0,36,-30,66,-66,66v-36,0,-68,-31,-68,-79v0,-18,8,-38,23,-57v34,-44,104,-81,193,-81v131,0,207,77,207,153v0,87,-69,133,-160,184v-75,42,-115,72,-139,109r226,0r0,-84r90,0r0,171r-437,0r-19,-54v40,-92,122,-158,213,-212v66,-39,114,-69,114,-111v0,-38,-43,-65,-99,-65","w":530},"3":{"d":"18,-23v0,-42,28,-76,68,-76v36,0,66,30,66,66v0,14,-6,29,-14,40v25,20,64,30,106,30v68,0,118,-40,118,-101v0,-38,-18,-72,-65,-92v-25,-11,-59,-17,-104,-17r-30,0r0,-86r33,0v43,0,80,-8,108,-22v34,-18,54,-45,54,-81v0,-54,-50,-81,-109,-81v-40,0,-67,7,-84,20v8,11,14,26,14,40v0,36,-30,66,-66,66v-36,0,-68,-31,-68,-79v0,-17,6,-38,20,-58v28,-41,88,-79,188,-79v126,0,217,71,217,167v0,53,-33,97,-79,123v-19,11,-40,19,-62,23v19,5,39,13,57,23v48,27,88,72,88,140v0,112,-99,184,-231,184v-94,0,-169,-37,-204,-87v-13,-19,-21,-41,-21,-63","w":503},"4":{"d":"338,120r0,-166r-288,0r-25,-54r335,-444r79,63r-261,345r160,0r0,-113r106,-42r0,155r98,0r0,90r-98,0r0,166r-106,0","w":565},"5":{"d":"36,2v0,-44,31,-76,70,-76v36,0,66,30,66,66v0,10,-4,22,-9,32v20,7,45,10,74,10v83,0,128,-55,128,-123v0,-64,-41,-111,-133,-111v-38,0,-85,9,-122,29r-51,-28r40,-326r342,0r0,102r-260,0r-17,140v23,-6,55,-10,85,-10v128,0,226,72,226,204v0,128,-98,217,-231,217v-83,0,-142,-23,-175,-55v-22,-21,-33,-47,-33,-71","w":516},"6":{"d":"308,-557v-65,0,-155,74,-159,228v27,-41,87,-75,154,-75v129,0,225,87,225,201v0,119,-101,211,-240,211v-70,0,-123,-20,-170,-67v-48,-48,-74,-125,-74,-226v0,-236,126,-363,274,-363v64,0,120,20,152,52v18,18,29,41,29,66v0,41,-32,73,-67,73v-43,0,-72,-32,-72,-67v0,-8,1,-16,4,-23v-15,-6,-34,-10,-56,-10xm288,-82v75,0,129,-55,129,-121v0,-61,-49,-111,-124,-111v-75,0,-134,50,-134,116v0,31,14,60,37,81v23,21,55,35,92,35","w":565},"7":{"d":"197,122r-92,-48r264,-510r-239,0r0,112r-96,0r0,-201r435,0r28,62","w":531},"8":{"d":"270,8v-144,0,-232,-83,-232,-183v0,-67,42,-122,112,-151v-58,-30,-98,-81,-98,-141v0,-102,92,-181,218,-181v126,0,218,79,218,181v0,60,-40,111,-98,141v70,29,113,84,113,151v0,100,-89,183,-233,183xm270,-365v59,0,106,-41,106,-95v0,-60,-42,-97,-106,-97v-64,0,-106,37,-106,97v0,54,47,95,106,95xm270,-83v76,0,121,-46,121,-101v0,-55,-45,-102,-121,-102v-76,0,-121,47,-121,102v0,55,45,101,121,101","w":541},"9":{"d":"247,127v-66,0,-122,-20,-154,-54v-17,-18,-27,-40,-27,-64v0,-41,32,-73,67,-73v43,0,72,32,72,67v0,8,-2,16,-4,23v14,6,33,10,56,10v67,0,155,-76,159,-229v-27,40,-87,74,-154,74v-129,0,-225,-88,-225,-202v0,-119,101,-212,240,-212v68,0,123,20,165,62v50,50,79,129,79,233v0,236,-126,365,-274,365xm369,-408v-23,-21,-55,-35,-92,-35v-75,0,-129,56,-129,122v0,61,49,112,124,112v75,0,134,-51,134,-117v0,-31,-14,-61,-37,-82","w":565},".":{"d":"128,8v-45,0,-82,-37,-82,-82v0,-46,37,-83,82,-83v45,0,82,37,82,83v0,45,-37,82,-82,82","w":256},",":{"d":"37,173r-32,-41v67,-53,100,-104,102,-134v-37,-10,-62,-39,-62,-79v0,-40,37,-76,82,-76v46,0,86,33,86,99v0,62,-44,155,-176,231","w":256},":":{"d":"138,-256v-44,0,-80,-36,-80,-80v0,-44,36,-80,80,-80v44,0,80,36,80,80v0,44,-36,80,-80,80xm138,8v-44,0,-80,-36,-80,-80v0,-44,36,-80,80,-80v44,0,80,36,80,80v0,44,-36,80,-80,80","w":276},";":{"d":"138,-256v-44,0,-80,-36,-80,-80v0,-44,36,-80,80,-80v44,0,80,36,80,80v0,44,-36,80,-80,80xm50,168r-31,-40v65,-52,97,-101,99,-130v-36,-10,-60,-38,-60,-76v0,-39,35,-74,79,-74v45,0,84,32,84,96v0,59,-43,150,-171,224","w":276},"\u2026":{"d":"572,8v-43,0,-77,-34,-77,-77v0,-43,34,-77,77,-77v43,0,77,34,77,77v0,43,-34,77,-77,77xm342,8v-43,0,-77,-34,-77,-77v0,-43,34,-77,77,-77v43,0,77,34,77,77v0,43,-34,77,-77,77xm112,8v-43,0,-77,-34,-77,-77v0,-43,34,-77,77,-77v43,0,77,34,77,77v0,43,-34,77,-77,77","w":684},"\u00b7":{"d":"128,-180v-45,0,-82,-37,-82,-82v0,-46,37,-83,82,-83v45,0,82,37,82,83v0,45,-37,82,-82,82","w":256},"\u2022":{"d":"172,-149v-71,0,-128,-58,-128,-130v0,-72,57,-131,128,-131v71,0,128,59,128,131v0,72,-57,130,-128,130","w":344},"&":{"d":"645,-273r-57,0v-15,50,-33,95,-57,133r94,80r-62,72r-94,-81v-54,49,-126,79,-204,79v-153,0,-235,-74,-235,-177v0,-79,54,-141,130,-179v-55,-63,-65,-104,-65,-145v0,-74,64,-157,180,-157v110,0,181,60,181,151v0,84,-58,134,-138,171r29,26r115,104v15,-24,27,-51,36,-79r-52,0r0,-88r199,0r0,90xm265,-82v50,0,93,-16,131,-46r-114,-105v-24,-21,-45,-40,-62,-57v-43,24,-77,64,-77,114v0,45,44,94,122,94xm206,-489v0,24,6,56,52,109v46,-22,87,-56,87,-117v0,-35,-25,-66,-70,-66v-43,0,-69,40,-69,74","w":672},"!":{"d":"109,-199r-39,-458r138,0r-39,458r-60,0xm139,8v-41,0,-74,-33,-74,-74v0,-41,33,-75,74,-75v41,0,74,34,74,75v0,41,-33,74,-74,74","w":278},"\u00a1":{"d":"139,-516v-41,0,-74,-34,-74,-75v0,-41,33,-74,74,-74v41,0,74,33,74,74v0,41,-33,75,-74,75xm70,0r39,-458r60,0r39,458r-138,0","w":278},"?":{"d":"23,-517v0,-27,9,-52,27,-75v35,-46,102,-78,182,-78v135,0,223,82,223,186v0,94,-57,168,-186,193r-9,92r-75,0r-20,-162v126,-17,171,-68,171,-121v0,-50,-40,-92,-109,-92v-40,0,-69,10,-87,30v10,8,17,26,17,42v0,35,-20,63,-59,63v-38,0,-75,-30,-75,-78xm223,8v-41,0,-74,-33,-74,-74v0,-41,33,-75,74,-75v41,0,74,34,74,75v0,41,-33,74,-74,74","w":489},"\u00bf":{"d":"466,-141v0,27,-9,52,-27,75v-35,46,-102,78,-182,78v-135,0,-223,-82,-223,-186v0,-94,57,-168,186,-193r9,-92r75,0r20,162v-126,17,-171,68,-171,121v0,50,40,92,109,92v40,0,68,-9,87,-30v-11,-7,-17,-25,-17,-42v0,-35,20,-63,59,-63v38,0,75,30,75,78xm266,-666v41,0,74,33,74,74v0,41,-33,75,-74,75v-41,0,-74,-34,-74,-75v0,-41,33,-74,74,-74","w":489},"\u201c":{"d":"346,-362v-43,0,-81,-31,-81,-93v0,-58,41,-146,166,-218r30,39v-63,50,-94,98,-96,126v35,10,58,37,58,74v0,38,-34,72,-77,72xm115,-362v-43,0,-81,-31,-81,-93v0,-58,41,-146,166,-218r30,39v-63,50,-94,98,-96,126v35,10,58,37,58,74v0,38,-34,72,-77,72","w":475},"\u201d":{"d":"275,-359r-30,-39v63,-50,94,-98,96,-126v-35,-10,-58,-37,-58,-74v0,-38,34,-72,77,-72v43,0,81,31,81,93v0,58,-41,146,-166,218xm44,-359r-30,-39v63,-50,94,-98,96,-126v-35,-10,-58,-37,-58,-74v0,-38,34,-72,77,-72v43,0,81,31,81,93v0,58,-41,146,-166,218","w":475},"\u2018":{"d":"115,-362v-43,0,-81,-31,-81,-93v0,-58,41,-146,166,-218r30,39v-63,50,-94,98,-96,126v35,10,58,37,58,74v0,38,-34,72,-77,72","w":244},"\u2019":{"d":"44,-359r-30,-39v63,-50,94,-98,96,-126v-35,-10,-58,-37,-58,-74v0,-38,34,-72,77,-72v43,0,81,31,81,93v0,58,-41,146,-166,218","w":244},"\u201e":{"d":"275,165r-30,-39v63,-50,94,-98,96,-126v-35,-10,-58,-37,-58,-74v0,-38,34,-72,77,-72v43,0,81,31,81,93v0,61,-37,135,-166,218xm44,165r-30,-39v63,-50,94,-98,96,-126v-35,-10,-58,-37,-58,-74v0,-38,34,-72,77,-72v43,0,81,31,81,93v0,61,-37,135,-166,218","w":495},"\u201a":{"d":"42,173r-32,-41v67,-53,100,-104,102,-134v-37,-10,-62,-39,-62,-79v0,-40,37,-76,82,-76v46,0,86,33,86,99v0,62,-44,155,-176,231","w":266},"\u00ab":{"d":"465,-91r-199,-191r199,-191r65,65r-122,126r122,126xm223,-91r-199,-191r199,-191r65,65r-122,126r122,126","w":567},"\u00bb":{"d":"344,-91r-65,-65r122,-126r-122,-126r65,-65r199,191xm102,-91r-65,-65r122,-126r-122,-126r65,-65r199,191","w":567},"\u2039":{"d":"223,-91r-199,-191r199,-191r65,65r-122,126r122,126","w":325},"\u203a":{"d":"102,-91r-65,-65r122,-126r-122,-126r65,-65r199,191","w":325},"-":{"d":"42,-227r0,-112r290,0r0,112r-290,0","w":374},"\u2013":{"d":"22,-232r0,-102r525,0r0,102r-525,0","w":569},"\u2014":{"d":"22,-232r0,-102r811,0r0,102r-811,0","w":855},"_":{"d":"-8,167r0,-102r588,0r0,102r-588,0","w":572},"\/":{"d":"95,213r-89,-40r409,-920r89,40","w":510},"\\":{"d":"415,213r-409,-920r89,-40r409,920","w":510},"|":{"d":"95,200r0,-932r94,0r0,932r-94,0","w":284},"(":{"d":"385,227v-114,-57,-314,-216,-314,-488v0,-272,200,-431,314,-488r52,77v-113,73,-253,183,-253,411v0,228,140,338,253,411","w":440},")":{"d":"55,227r-52,-77v113,-73,253,-183,253,-411v0,-228,-140,-338,-253,-411r52,-77v114,57,314,216,314,488v0,272,-200,431,-314,488","w":440},"[":{"d":"91,200r0,-932r260,0r0,94r-155,0r0,743r155,0r0,95r-260,0","w":381},"]":{"d":"30,200r0,-95r155,0r0,-743r-155,0r0,-94r260,0r0,932r-260,0","w":381},"{":{"d":"343,217v-198,-5,-270,-74,-270,-163v0,-66,38,-106,82,-144v27,-24,43,-40,43,-68v0,-33,-33,-60,-110,-60r-29,0r0,-92r29,0v77,0,110,-27,110,-60v0,-28,-16,-44,-43,-68v-44,-38,-82,-78,-82,-144v0,-89,72,-158,270,-163r0,83v-130,8,-167,42,-167,81v0,24,22,50,59,87v43,43,76,81,76,128v0,56,-49,91,-121,102v72,11,121,46,121,102v0,47,-33,85,-76,128v-37,37,-59,63,-59,87v0,39,37,73,167,81r0,83","w":388},"}":{"d":"45,217r0,-83v130,-8,167,-42,167,-81v0,-24,-22,-50,-59,-87v-43,-43,-76,-81,-76,-128v0,-56,49,-91,121,-102v-72,-11,-121,-46,-121,-102v0,-47,33,-85,76,-128v37,-37,59,-63,59,-87v0,-39,-37,-73,-167,-81r0,-83v198,5,270,74,270,163v0,66,-38,106,-82,144v-27,24,-43,40,-43,68v0,33,33,60,110,60r29,0r0,92r-29,0v-77,0,-110,27,-110,60v0,28,16,44,43,68v44,38,82,78,82,144v0,89,-72,158,-270,163","w":388},"@":{"d":"352,179v-178,0,-313,-130,-313,-332v0,-255,186,-467,422,-467v188,0,314,126,314,296v0,161,-85,294,-210,294v-69,0,-113,-33,-120,-85v-32,52,-77,85,-128,85v-62,0,-107,-56,-107,-135v0,-124,79,-236,178,-236v37,0,74,23,98,75r26,-67r102,0r-59,230v-12,44,1,67,38,67v63,0,125,-98,125,-224v0,-137,-97,-249,-256,-249v-209,0,-366,192,-366,418v0,168,109,279,258,279v56,0,107,-14,158,-41r23,44v-57,32,-117,48,-183,48xm376,-123v43,0,95,-44,95,-119v0,-38,-18,-60,-56,-60v-47,0,-90,56,-90,118v0,31,16,61,51,61","w":813},"\u00a9":{"d":"300,8v-151,0,-270,-119,-270,-270v0,-151,119,-271,270,-271v151,0,270,120,270,271v0,149,-121,270,-270,270xm300,-38v120,0,218,-99,218,-224v0,-127,-96,-225,-218,-225v-122,0,-218,98,-218,225v0,127,96,224,218,224xm307,-357v-49,0,-87,37,-87,90v0,51,35,91,89,91v28,0,52,-11,73,-32r27,29v-22,29,-60,47,-101,47v-79,0,-136,-53,-136,-133v0,-78,60,-134,135,-134v60,0,100,31,100,63v0,18,-13,31,-30,31v-15,0,-28,-13,-28,-28v0,-5,1,-9,3,-12v-8,-6,-22,-12,-45,-12","w":620},"\u2117":{"d":"300,8v-151,0,-270,-119,-270,-270v0,-151,119,-271,270,-271v151,0,270,120,270,271v0,149,-121,270,-270,270xm300,-38v120,0,218,-99,218,-224v0,-127,-96,-225,-218,-225v-122,0,-218,98,-218,225v0,127,96,224,218,224xm312,-217r-26,0r0,47r33,0r0,40r-108,0r0,-40r30,0r0,-183r-30,0r0,-40r106,0v56,0,99,32,99,86v0,60,-42,90,-104,90xm316,-257v34,0,54,-19,54,-50v0,-28,-23,-46,-56,-46r-28,0r0,95v5,1,11,1,30,1","w":620},"\u00ae":{"d":"203,-336v-100,0,-180,-78,-180,-178v0,-101,80,-179,180,-179v100,0,180,78,180,179v0,100,-80,178,-180,178xm203,-656v-76,0,-140,60,-140,143v0,80,64,140,140,140v76,0,140,-60,140,-140v0,-83,-64,-143,-140,-143xm136,-434r0,-31r17,0r0,-103r-17,0r0,-31r67,0v38,0,68,16,68,50v0,21,-13,37,-29,45r19,39r18,0r0,31r-43,0r-28,-60r-20,0r0,29r17,0r0,31r-69,0xm188,-524r14,0v20,0,30,-8,30,-22v0,-15,-11,-22,-31,-22r-13,0r0,44","w":406},"\u2120":{"d":"244,-403r0,-48r31,0r8,-159r-36,0r0,-48r105,0r58,132r54,-132r105,0r0,48r-36,0r8,159r31,0r0,48r-118,0r0,-48r32,0r-5,-125r-60,129r-26,0r-61,-129r-5,125r32,0r0,48r-117,0xm117,-397v-56,0,-94,-27,-94,-61v0,-19,15,-32,32,-32v20,0,31,13,31,24v0,6,-1,10,-4,14v9,6,19,10,33,10v25,0,40,-9,40,-28v0,-19,-16,-30,-41,-39v-47,-17,-82,-34,-82,-83v0,-41,36,-72,88,-72v55,0,88,24,88,55v0,20,-15,32,-30,32v-20,0,-29,-13,-29,-24v0,-6,1,-9,2,-11v-7,-4,-15,-6,-29,-6v-21,0,-35,9,-35,25v0,19,20,26,42,34v43,15,82,39,82,87v0,50,-40,75,-94,75","w":603},"\u2122":{"d":"298,-403r0,-48r31,0r8,-159r-36,0r0,-48r105,0r58,132r54,-132r105,0r0,48r-36,0r8,159r31,0r0,48r-118,0r0,-48r32,0r-5,-125r-60,129r-26,0r-61,-129r-5,125r32,0r0,48r-117,0xm80,-403r0,-48r33,0r0,-160r-42,0r0,44r-48,0r0,-91r239,0r0,91r-48,0r0,-44r-42,0r0,160r33,0r0,48r-125,0","w":657},"*":{"d":"362,-498r-111,6r86,68v33,26,43,65,10,88v-33,23,-65,3,-80,-37r-37,-99r-37,99v-15,40,-47,60,-80,37v-33,-23,-23,-62,10,-88r86,-68r-111,-6v-43,-2,-72,-27,-59,-66v11,-34,50,-39,85,-16r92,60r-29,-107v-11,-40,2,-76,43,-76v41,0,54,36,43,76r-29,107r92,-60v35,-23,74,-18,85,16v13,39,-16,64,-59,66","w":460},"\u2020":{"d":"232,2r-25,-372r-68,-7v-5,34,-32,55,-60,55v-33,0,-60,-27,-60,-60v0,-41,34,-71,85,-71v11,0,25,2,34,4r91,19r-30,-144v-9,-42,24,-74,58,-74v34,0,67,32,58,74r-30,144r91,-19v9,-2,23,-4,34,-4v51,0,85,30,85,71v0,33,-27,60,-60,60v-28,0,-55,-21,-60,-55r-68,7r-25,372r-50,0","w":514},"\u2021":{"d":"272,128v-36,0,-65,-33,-53,-82r30,-126r-88,16v-10,2,-19,3,-28,3v-47,0,-85,-22,-85,-66v0,-32,25,-55,56,-55v27,0,54,18,57,55r61,-4r22,-129r-22,-129r-61,-4v-3,37,-30,55,-57,55v-31,0,-56,-23,-56,-55v0,-44,38,-66,85,-66v9,0,18,1,28,3r88,16r-30,-126v-12,-51,17,-82,53,-82v36,0,65,32,53,82r-30,126r88,-16v10,-2,19,-3,28,-3v47,0,85,22,85,66v0,32,-25,55,-56,55v-27,0,-54,-18,-57,-55r-61,4r-22,129r22,129r61,4v3,-37,30,-55,57,-55v31,0,56,23,56,55v0,44,-38,66,-85,66v-9,0,-18,-1,-28,-3r-88,-16r30,126v12,50,-17,82,-53,82","w":544},"^":{"d":"102,-322r-49,-56r177,-176r177,176r-49,56r-128,-84","w":460},"~":{"d":"308,-184v-39,0,-67,-17,-89,-37v-26,-23,-45,-33,-60,-33v-23,0,-40,16,-52,64r-74,-19v11,-96,64,-151,119,-151v39,0,67,17,89,37v26,23,45,33,60,33v23,0,40,-16,52,-64r74,19v-11,96,-64,151,-119,151","w":460},"$":{"d":"336,-584r-6,65v71,10,149,42,149,113v0,39,-24,64,-59,64v-39,0,-63,-26,-63,-60v0,-8,1,-20,4,-27v-10,-4,-27,-8,-46,-11r-11,129v82,17,185,50,185,151v0,107,-99,157,-213,160r-9,107r-80,-7r9,-106v-75,-12,-158,-47,-158,-121v0,-37,25,-65,62,-65v35,0,64,24,64,60v0,9,-2,20,-4,29v11,7,30,11,51,15r12,-134v-82,-20,-165,-54,-165,-147v0,-82,72,-147,192,-154r6,-68xm382,-149v0,-30,-32,-45,-92,-59r-11,124v55,-2,103,-21,103,-65xm165,-380v0,30,21,42,72,54r10,-116v-48,6,-82,29,-82,62","w":532},"\u00a3":{"d":"422,-111r-166,0r0,5v0,37,-10,74,-39,108v38,0,62,5,83,11v49,14,71,19,91,19v39,0,56,-16,83,-64r69,38v-29,92,-73,122,-150,122v-41,0,-68,-7,-118,-25v-33,-12,-57,-22,-106,-22v-23,35,-62,47,-89,47v-39,0,-66,-26,-66,-54v0,-44,43,-84,116,-77v16,-26,28,-70,28,-100r0,-8r-116,0r0,-84r103,0v-2,-6,-5,-12,-7,-19v-20,-49,-34,-89,-34,-128v0,-102,74,-190,204,-190v98,0,175,56,175,129v0,49,-33,72,-64,72v-34,0,-61,-27,-61,-61v0,-12,4,-23,8,-32v-8,-8,-32,-17,-60,-17v-70,0,-98,54,-98,98v0,38,7,68,26,118r10,30r178,0r0,84","w":548},"\u20ac":{"d":"52,-291r0,-82r94,0v41,-97,138,-160,253,-160v132,0,211,77,211,144v0,47,-37,76,-74,76v-37,0,-66,-29,-66,-66v0,-19,9,-36,14,-41v-11,-10,-40,-22,-87,-22v-62,0,-115,28,-146,74r141,0r0,77r-170,0v-1,9,-1,18,-1,27v0,9,0,18,1,26r170,0r0,77r-142,0v31,47,83,78,150,78v56,0,106,-27,145,-67r64,67v-51,56,-125,91,-209,91v-124,0,-219,-62,-258,-164r-90,0r0,-82r73,0v-1,-8,-1,-16,-1,-24v0,-10,0,-19,1,-29r-73,0","w":670},"\u00a5":{"d":"73,-249r0,-82r86,0r-73,-112r-69,0r0,-82r223,0r0,80r-59,0r90,148r90,-148r-63,0r0,-80r223,0r0,82r-69,0r-73,112r86,0r0,82r-139,0r-10,15r0,27r149,0r0,82r-149,0r0,45r88,0r0,80r-270,0r0,-80r88,0r0,-45r-149,0r0,-82r149,0r0,-27r-10,-15r-139,0","w":543},"\u00a2":{"d":"495,-349v0,46,-33,71,-67,71v-34,0,-62,-28,-62,-62v0,-12,3,-25,14,-41v-12,-10,-30,-20,-55,-24r-26,281r8,0v61,0,117,-15,174,-46r-8,93v-47,27,-103,40,-177,40r-2,0r-13,144r-80,-7r14,-147v-110,-29,-171,-117,-171,-221v0,-106,86,-207,214,-221r9,-102r80,7r-9,98v93,18,157,80,157,137xm151,-266v0,52,27,101,78,126r24,-264v-59,13,-102,59,-102,138","w":549},"#":{"d":"65,-323r0,-88r94,0r18,-114r100,0r-18,114r105,0r18,-114r100,0r-18,114r83,0r0,88r-96,0r-17,110r81,0r0,88r-95,0r-19,125r-100,0r19,-125r-105,0r-19,125r-100,0r19,-125r-82,0r0,-88r96,0r17,-110r-81,0xm242,-327r-18,118r112,0r19,-118r-113,0","w":580},"\u00b6":{"d":"178,0r0,-93r80,0r0,-100v-17,1,-21,1,-50,1v-102,0,-177,-60,-177,-157v0,-89,78,-152,180,-152r365,0r0,95r-86,0r0,311r86,0r0,95r-398,0xm345,-91r58,0r0,-319r-58,0r0,319","w":607},"\u00a7":{"d":"234,-533v89,0,158,34,158,92v0,28,-22,50,-55,50v-32,0,-55,-19,-55,-46v0,-8,2,-12,3,-13v-10,-6,-35,-10,-57,-10v-34,0,-54,11,-54,28v0,30,65,43,110,58v73,25,130,43,130,103v0,44,-32,71,-73,88v27,18,45,42,45,79v0,64,-61,112,-161,112v-78,0,-158,-28,-158,-92v0,-27,22,-50,55,-50v31,0,55,19,55,46v0,8,-2,13,-3,14v10,6,36,9,56,9v37,0,54,-11,54,-30v0,-28,-55,-37,-112,-55v-65,-20,-130,-44,-130,-104v0,-43,31,-72,78,-87v-31,-19,-49,-43,-49,-80v0,-59,64,-112,163,-112xm228,-225v12,4,24,7,36,10v31,-7,53,-20,53,-40v0,-22,-48,-34,-86,-45r-35,-10v-30,7,-55,22,-55,41v0,21,46,33,87,44","w":465},"\u00aa":{"d":"116,-399v-45,0,-85,-25,-85,-74v0,-49,43,-79,105,-79v27,0,53,3,67,7r0,-20v0,-21,-6,-34,-17,-43v-12,-9,-27,-12,-45,-12v-11,0,-21,2,-27,4v2,4,3,10,3,14v0,20,-16,34,-35,34v-19,0,-34,-14,-34,-36v0,-32,33,-66,104,-66v33,0,59,7,77,19v26,17,38,46,38,82r0,111r39,0r0,54r-102,0r0,-29v-21,18,-53,34,-88,34xm39,-282r0,-60r267,0r0,60r-267,0xm137,-447v23,0,46,-9,66,-23r0,-41v-15,-4,-34,-6,-54,-6v-32,0,-51,14,-51,38v0,21,16,32,39,32","w":356},"\u00ba":{"d":"45,-282r0,-60r258,0r0,60r-258,0xm174,-399v-87,0,-140,-63,-140,-136v0,-72,54,-136,140,-136v87,0,140,63,140,136v0,72,-54,136,-140,136xm174,-453v43,0,73,-34,73,-82v0,-48,-30,-82,-73,-82v-43,0,-73,34,-73,82v0,48,30,82,73,82","w":348},"\u00b0":{"d":"154,-398v-75,0,-136,-61,-136,-136v0,-75,61,-136,136,-136v75,0,136,61,136,136v0,75,-61,136,-136,136xm154,-466v38,0,68,-30,68,-68v0,-38,-30,-68,-68,-68v-38,0,-68,30,-68,68v0,38,30,68,68,68","w":308},"%":{"d":"182,-273v-73,0,-134,-58,-134,-130v0,-72,61,-130,134,-130v73,0,134,58,134,130v0,72,-61,130,-134,130xm182,-341v32,0,54,-25,54,-60v0,-35,-22,-62,-54,-62v-32,0,-54,27,-54,62v0,35,22,60,54,60xm130,15r-42,-41r246,-252v82,-86,195,-213,237,-262r42,41r-247,251v-83,87,-194,214,-236,263xm519,-252v73,0,134,58,134,130v0,72,-61,130,-134,130v-73,0,-134,-58,-134,-130v0,-72,61,-130,134,-130xm519,-182v-32,0,-54,27,-54,62v0,35,22,60,54,60v32,0,54,-25,54,-60v0,-35,-22,-62,-54,-62","w":701},"\u2030":{"d":"182,-273v-73,0,-134,-58,-134,-130v0,-72,61,-130,134,-130v73,0,134,58,134,130v0,72,-61,130,-134,130xm130,15r-42,-41r246,-252v82,-86,195,-213,237,-262r42,41r-247,251v-83,87,-194,214,-236,263xm182,-341v32,0,54,-25,54,-60v0,-35,-22,-62,-54,-62v-32,0,-54,27,-54,62v0,35,22,60,54,60xm519,8v-73,0,-134,-58,-134,-130v0,-72,61,-130,134,-130v73,0,134,58,134,130v0,72,-61,130,-134,130xm519,-60v32,0,54,-25,54,-60v0,-35,-22,-62,-54,-62v-32,0,-54,27,-54,62v0,35,22,60,54,60xm819,8v-73,0,-134,-58,-134,-130v0,-72,61,-130,134,-130v73,0,134,58,134,130v0,72,-61,130,-134,130xm819,-60v32,0,54,-25,54,-60v0,-35,-22,-62,-54,-62v-32,0,-54,27,-54,62v0,35,22,60,54,60","w":1001},"\"":{"d":"295,-374r-43,-202v-12,-58,22,-94,67,-94v45,0,79,36,67,94r-44,202r-47,0xm80,-374r-43,-202v-12,-58,22,-94,67,-94v45,0,79,36,67,94r-44,202r-47,0","w":424},"'":{"d":"80,-374r-43,-202v-12,-58,22,-94,67,-94v45,0,79,36,67,94r-44,202r-47,0","w":209},"+":{"d":"186,-103r0,-134r-134,0r0,-92r134,0r0,-134r92,0r0,134r134,0r0,92r-134,0r0,134r-92,0","w":464},"\u2212":{"d":"52,-237r0,-92r360,0r0,92r-360,0","w":464},"\u00f7":{"d":"412,-237r-360,0r0,-92r360,0r0,92xm232,-369v-35,0,-65,-29,-65,-65v0,-36,32,-65,67,-65v35,0,65,29,65,65v0,36,-32,65,-67,65xm232,-67v-35,0,-65,-29,-65,-65v0,-36,32,-65,67,-65v35,0,65,29,65,65v0,36,-32,65,-67,65","w":464},"=":{"d":"52,-331r0,-92r360,0r0,92r-360,0xm52,-143r0,-92r360,0r0,92r-360,0","w":464},"\u00d7":{"d":"333,-105r-101,-111r-101,111r-67,-67r101,-111r-101,-111r67,-67r101,111r101,-111r67,67r-101,111r101,111","w":464},"<":{"d":"309,-68r-258,-186r0,-60r258,-186r51,68r-205,148r205,148","w":424},">":{"d":"115,-68r-51,-68r205,-148r-205,-148r51,-68r258,186r0,60","w":424},"\u00b1":{"d":"186,-191r0,-134r-134,0r0,-92r134,0r0,-134r92,0r0,134r134,0r0,92r-134,0r0,134r-92,0xm52,-17r0,-92r360,0r0,92r-360,0","w":464},"\u00bd":{"d":"494,2v-3,0,-21,-33,-21,-33v38,-88,103,-131,144,-159v31,-21,57,-37,57,-68v0,-30,-24,-49,-63,-49v-25,0,-52,10,-59,18v10,5,18,20,18,34v0,23,-19,41,-41,41v-33,0,-44,-27,-44,-53v0,-58,53,-100,132,-100v71,0,128,44,128,110v0,58,-47,88,-82,109v-30,18,-76,47,-104,91r138,0r0,-63r58,0r0,122r-261,0xm40,-281r0,-64r91,0r0,-224r-82,21r-16,-59r133,-37r37,0r0,299r88,0r0,64r-251,0xm224,16r-49,-32r200,-316v63,-101,158,-269,189,-326r49,32r-200,316v-63,102,-158,269,-189,326","w":795},"\u2153":{"d":"41,-281r0,-64r91,0r0,-224r-82,21r-16,-59r133,-37r37,0r0,299r88,0r0,64r-251,0xm223,16r-49,-32r200,-316v63,-101,158,-269,189,-326r49,32r-200,316v-63,102,-158,269,-189,326xm613,9v-80,0,-138,-37,-138,-90v0,-25,18,-46,43,-46v24,0,42,18,42,41v0,8,-2,18,-5,25v8,5,28,14,58,14v32,0,66,-16,66,-52v0,-24,-16,-56,-86,-56r-22,0r0,-55r23,0v51,0,78,-21,78,-57v0,-28,-29,-41,-59,-41v-20,0,-35,6,-41,10v2,6,4,17,4,23v0,23,-19,42,-42,42v-23,0,-43,-20,-43,-49v0,-31,40,-82,125,-82v71,0,130,40,130,95v0,42,-33,75,-75,86v36,10,82,37,82,91v0,65,-67,101,-140,101","w":795},"\u2154":{"d":"51,-280v-3,0,-21,-33,-21,-33v38,-88,103,-131,144,-159v31,-21,57,-37,57,-68v0,-30,-24,-49,-63,-49v-25,0,-52,10,-59,18v10,5,18,20,18,34v0,23,-19,41,-41,41v-33,0,-44,-27,-44,-53v0,-58,53,-100,132,-100v71,0,128,44,128,110v0,58,-47,88,-82,109v-30,18,-76,47,-104,91r138,0r0,-63r58,0r0,122r-261,0xm617,9v-80,0,-138,-37,-138,-90v0,-25,18,-46,43,-46v24,0,42,18,42,41v0,8,-2,18,-5,25v8,5,28,14,58,14v32,0,66,-16,66,-52v0,-24,-16,-56,-86,-56r-22,0r0,-55r23,0v51,0,78,-21,78,-57v0,-28,-29,-41,-59,-41v-20,0,-35,6,-41,10v2,6,4,17,4,23v0,23,-19,42,-42,42v-23,0,-43,-20,-43,-49v0,-31,40,-82,125,-82v71,0,130,40,130,95v0,42,-33,75,-75,86v36,10,82,37,82,91v0,65,-67,101,-140,101xm246,16r-49,-32r200,-316v63,-101,158,-269,189,-326r49,32r-200,316v-63,102,-158,269,-189,326","w":795},"\u00bc":{"d":"48,-281r0,-64r91,0r0,-224r-82,21r-16,-59r133,-37r37,0r0,299r88,0r0,64r-251,0xm238,16r-49,-32r200,-316v63,-101,158,-269,189,-326r49,32r-200,316v-63,102,-158,269,-189,326xm559,0r0,-52r68,0r0,-52r-162,0r-23,-42r195,-231r51,41r-165,183r104,0r0,-58r61,-24r0,76r55,0r0,58r-55,0r0,47r41,0r0,54r-170,0","w":795},"\u00be":{"d":"185,-273v-80,0,-138,-37,-138,-90v0,-25,18,-46,43,-46v24,0,42,18,42,41v0,8,-2,18,-5,25v8,5,28,14,58,14v32,0,66,-16,66,-52v0,-24,-16,-56,-86,-56r-22,0r0,-55r23,0v51,0,78,-21,78,-57v0,-28,-29,-41,-59,-41v-20,0,-35,6,-41,10v2,6,4,17,4,23v0,23,-19,42,-42,42v-23,0,-43,-20,-43,-49v0,-31,40,-82,125,-82v71,0,130,40,130,95v0,42,-33,75,-75,86v36,10,82,37,82,91v0,65,-67,101,-140,101xm248,16r-49,-32r200,-316v63,-101,158,-269,189,-326r49,32r-200,316v-63,102,-158,269,-189,326xm561,0r0,-52r68,0r0,-52r-162,0r-23,-42r195,-231r51,41r-165,183r104,0r0,-58r61,-24r0,76r55,0r0,58r-55,0r0,47r41,0r0,54r-170,0","w":795},"\u2155":{"d":"44,-281r0,-64r91,0r0,-224r-82,21r-16,-59r133,-37r37,0r0,299r88,0r0,64r-251,0xm229,16r-49,-32r200,-316v63,-101,158,-269,189,-326r49,32r-200,316v-63,102,-158,269,-189,326xm619,9v-95,0,-133,-43,-133,-76v0,-26,15,-44,43,-44v29,0,44,21,44,41v0,5,-1,11,-2,14v7,1,22,4,40,4v50,0,79,-25,79,-65v0,-35,-26,-59,-73,-59v-33,0,-58,6,-81,16r-34,-19r17,-181r217,0r0,65r-159,0r-5,62v11,-3,30,-5,49,-5v77,0,138,47,138,121v0,72,-58,126,-140,126","w":795},"\u2156":{"d":"51,-280v-3,0,-21,-33,-21,-33v38,-88,103,-131,144,-159v31,-21,57,-37,57,-68v0,-30,-24,-49,-63,-49v-25,0,-52,10,-59,18v10,5,18,20,18,34v0,23,-19,41,-41,41v-33,0,-44,-27,-44,-53v0,-58,53,-100,132,-100v71,0,128,44,128,110v0,58,-47,88,-82,109v-30,18,-76,47,-104,91r138,0r0,-63r58,0r0,122r-261,0xm626,9v-95,0,-133,-43,-133,-76v0,-26,15,-44,43,-44v29,0,44,21,44,41v0,5,-1,11,-2,14v7,1,22,4,40,4v50,0,79,-25,79,-65v0,-35,-26,-59,-73,-59v-33,0,-58,6,-81,16r-34,-19r17,-181r217,0r0,65r-159,0r-5,62v11,-3,30,-5,49,-5v77,0,138,47,138,121v0,72,-58,126,-140,126xm252,16r-49,-32r200,-316v63,-101,158,-269,189,-326r49,32r-200,316v-63,102,-158,269,-189,326","w":795},"\u2157":{"d":"176,-273v-80,0,-138,-37,-138,-90v0,-25,18,-46,43,-46v24,0,42,18,42,41v0,8,-2,18,-5,25v8,5,28,14,58,14v32,0,66,-16,66,-52v0,-24,-16,-56,-86,-56r-22,0r0,-55r23,0v51,0,78,-21,78,-57v0,-28,-29,-41,-59,-41v-20,0,-35,6,-41,10v2,6,4,17,4,23v0,23,-19,42,-42,42v-23,0,-43,-20,-43,-49v0,-31,40,-82,125,-82v71,0,130,40,130,95v0,42,-33,75,-75,86v36,10,82,37,82,91v0,65,-67,101,-140,101xm234,16r-49,-32r200,-316v63,-101,158,-269,189,-326r49,32r-200,316v-63,102,-158,269,-189,326xm617,9v-95,0,-133,-43,-133,-76v0,-26,15,-44,43,-44v29,0,44,21,44,41v0,5,-1,11,-2,14v7,1,22,4,40,4v50,0,79,-25,79,-65v0,-35,-26,-59,-73,-59v-33,0,-58,6,-81,16r-34,-19r17,-181r217,0r0,65r-159,0r-5,62v11,-3,30,-5,49,-5v77,0,138,47,138,121v0,72,-58,126,-140,126","w":795},"\u2158":{"d":"144,-282r0,-52r68,0r0,-52r-162,0r-23,-42r195,-231r51,41r-165,183r104,0r0,-58r61,-24r0,76r55,0r0,58r-55,0r0,47r41,0r0,54r-170,0xm259,16r-49,-32r200,-316v63,-101,158,-269,189,-326r49,32r-200,316v-63,102,-158,269,-189,326xm627,9v-95,0,-133,-43,-133,-76v0,-26,15,-44,43,-44v29,0,44,21,44,41v0,5,-1,11,-2,14v7,1,22,4,40,4v50,0,79,-25,79,-65v0,-35,-26,-59,-73,-59v-33,0,-58,6,-81,16r-34,-19r17,-181r217,0r0,65r-159,0r-5,62v11,-3,30,-5,49,-5v77,0,138,47,138,121v0,72,-58,126,-140,126","w":795},"\u2159":{"d":"736,-295v0,26,-17,41,-41,41v-30,0,-41,-22,-41,-40v0,-3,0,-6,1,-9v-6,-1,-14,-3,-23,-3v-47,0,-88,50,-90,107v21,-18,50,-29,80,-29v76,0,130,50,130,115v0,68,-57,122,-137,122v-43,0,-77,-19,-98,-40v-34,-34,-45,-77,-45,-141v0,-111,68,-195,160,-195v40,0,68,12,85,29v12,12,19,25,19,43xm48,-281r0,-64r91,0r0,-224r-82,21r-16,-59r133,-37r37,0r0,299r88,0r0,64r-251,0xm233,16r-49,-32r200,-316v63,-101,158,-269,189,-326r49,32r-200,316v-63,102,-158,269,-189,326xm616,-52v37,0,65,-28,65,-59v0,-34,-23,-56,-67,-56v-39,0,-68,23,-68,55v0,18,6,33,21,45v12,9,26,15,49,15","w":795},"\u215a":{"d":"734,-295v0,26,-17,41,-41,41v-30,0,-41,-22,-41,-40v0,-3,0,-6,1,-9v-6,-1,-14,-3,-23,-3v-47,0,-88,50,-90,107v21,-18,50,-29,80,-29v76,0,130,50,130,115v0,68,-57,122,-137,122v-43,0,-77,-19,-98,-40v-34,-34,-45,-77,-45,-141v0,-111,68,-195,160,-195v40,0,68,12,85,29v12,12,19,25,19,43xm173,-273v-95,0,-133,-43,-133,-76v0,-26,15,-44,43,-44v29,0,44,21,44,41v0,5,-1,11,-2,14v7,1,22,4,40,4v50,0,79,-25,79,-65v0,-35,-26,-59,-73,-59v-33,0,-58,6,-81,16r-34,-19r17,-181r217,0r0,65r-159,0r-5,62v11,-3,30,-5,49,-5v77,0,138,47,138,121v0,72,-58,126,-140,126xm231,16r-49,-32r200,-316v63,-101,158,-269,189,-326r49,32r-200,316v-63,102,-158,269,-189,326xm614,-52v37,0,65,-28,65,-59v0,-34,-23,-56,-67,-56v-39,0,-68,23,-68,55v0,18,6,33,21,45v12,9,26,15,49,15","w":795},"\u215b":{"d":"41,-281r0,-64r91,0r0,-224r-82,21r-16,-59r133,-37r37,0r0,299r88,0r0,64r-251,0xm224,16r-49,-32r200,-316v63,-101,158,-269,189,-326r49,32r-200,316v-63,102,-158,269,-189,326xm611,8v-93,0,-144,-50,-144,-99v0,-36,22,-73,83,-93v-55,-15,-74,-44,-74,-82v0,-50,53,-99,135,-99v81,0,136,49,136,99v0,38,-20,67,-76,82v62,20,85,57,85,93v0,49,-53,99,-145,99xm611,-208v31,0,59,-20,59,-49v0,-30,-26,-48,-59,-48v-34,0,-59,18,-59,48v0,29,27,49,59,49xm611,-54v41,0,68,-24,68,-50v0,-27,-26,-51,-68,-51v-43,0,-68,24,-68,51v0,26,26,50,68,50","w":795},"\u215c":{"d":"174,-273v-80,0,-138,-37,-138,-90v0,-25,18,-46,43,-46v24,0,42,18,42,41v0,8,-2,18,-5,25v8,5,28,14,58,14v32,0,66,-16,66,-52v0,-24,-16,-56,-86,-56r-22,0r0,-55r23,0v51,0,78,-21,78,-57v0,-28,-29,-41,-59,-41v-20,0,-35,6,-41,10v2,6,4,17,4,23v0,23,-19,42,-42,42v-23,0,-43,-20,-43,-49v0,-31,40,-82,125,-82v71,0,130,40,130,95v0,42,-33,75,-75,86v36,10,82,37,82,91v0,65,-67,101,-140,101xm229,16r-49,-32r200,-316v63,-101,158,-269,189,-326r49,32r-200,316v-63,102,-158,269,-189,326xm608,8v-93,0,-144,-50,-144,-99v0,-36,22,-73,83,-93v-55,-15,-74,-44,-74,-82v0,-50,53,-99,135,-99v81,0,136,49,136,99v0,38,-20,67,-76,82v62,20,85,57,85,93v0,49,-53,99,-145,99xm608,-208v31,0,59,-20,59,-49v0,-30,-26,-48,-59,-48v-34,0,-59,18,-59,48v0,29,27,49,59,49xm608,-54v41,0,68,-24,68,-50v0,-27,-26,-51,-68,-51v-43,0,-68,24,-68,51v0,26,26,50,68,50","w":795},"\u215d":{"d":"172,-273v-95,0,-133,-43,-133,-76v0,-26,15,-44,43,-44v29,0,44,21,44,41v0,5,-1,11,-2,14v7,1,22,4,40,4v50,0,79,-25,79,-65v0,-35,-26,-59,-73,-59v-33,0,-58,6,-81,16r-34,-19r17,-181r217,0r0,65r-159,0r-5,62v11,-3,30,-5,49,-5v77,0,138,47,138,121v0,72,-58,126,-140,126xm225,16r-49,-32r200,-316v63,-101,158,-269,189,-326r49,32r-200,316v-63,102,-158,269,-189,326xm609,8v-93,0,-144,-50,-144,-99v0,-36,22,-73,83,-93v-55,-15,-74,-44,-74,-82v0,-50,53,-99,135,-99v81,0,136,49,136,99v0,38,-20,67,-76,82v62,20,85,57,85,93v0,49,-53,99,-145,99xm609,-208v31,0,59,-20,59,-49v0,-30,-26,-48,-59,-48v-34,0,-59,18,-59,48v0,29,27,49,59,49xm609,-54v41,0,68,-24,68,-50v0,-27,-26,-51,-68,-51v-43,0,-68,24,-68,51v0,26,26,50,68,50","w":795},"\u215e":{"d":"111,-280r149,-303r-134,0r0,75r-63,0r0,-134r258,0r19,42r-150,320r-79,0xm195,16r-49,-32r200,-316v63,-101,158,-269,189,-326r49,32r-200,316v-63,102,-158,269,-189,326xm590,8v-93,0,-144,-50,-144,-99v0,-36,22,-73,83,-93v-55,-15,-74,-44,-74,-82v0,-50,53,-99,135,-99v81,0,136,49,136,99v0,38,-20,67,-76,82v62,20,85,57,85,93v0,49,-53,99,-145,99xm590,-208v31,0,59,-20,59,-49v0,-30,-26,-48,-59,-48v-34,0,-59,18,-59,48v0,29,27,49,59,49xm590,-54v41,0,68,-24,68,-50v0,-27,-26,-51,-68,-51v-43,0,-68,24,-68,51v0,26,26,50,68,50","w":795},"\u2070":{"d":"176,-423v-89,0,-148,-76,-148,-185v0,-113,60,-188,149,-188v88,0,148,75,148,186v0,113,-60,187,-149,187xm176,-489v47,0,74,-51,74,-119v0,-70,-27,-122,-74,-122v-46,0,-73,52,-73,120v0,69,27,121,73,121"},"\u00b9":{"d":"57,-431r0,-64r91,0r0,-224r-82,21r-16,-59r133,-37r37,0r0,299r88,0r0,64r-251,0"},"\u00b2":{"d":"53,-430v-3,0,-21,-33,-21,-33v38,-88,103,-131,144,-159v31,-21,57,-37,57,-68v0,-30,-24,-49,-63,-49v-25,0,-52,10,-59,18v10,5,18,20,18,34v0,23,-19,41,-41,41v-33,0,-44,-27,-44,-53v0,-58,53,-100,132,-100v71,0,128,44,128,110v0,58,-47,88,-82,109v-30,18,-76,47,-104,91r138,0r0,-63r58,0r0,122r-261,0"},"\u00b3":{"d":"171,-423v-80,0,-138,-37,-138,-90v0,-25,18,-46,43,-46v24,0,42,18,42,41v0,8,-2,18,-5,25v8,5,28,14,58,14v32,0,66,-16,66,-52v0,-24,-16,-56,-86,-56r-22,0r0,-55r23,0v51,0,78,-21,78,-57v0,-28,-29,-41,-59,-41v-20,0,-35,6,-41,10v2,6,4,17,4,23v0,23,-19,42,-42,42v-23,0,-43,-20,-43,-49v0,-31,40,-82,125,-82v71,0,130,40,130,95v0,42,-33,75,-75,86v36,10,82,37,82,91v0,65,-67,101,-140,101"},"\u2074":{"d":"138,-432r0,-52r68,0r0,-52r-162,0r-23,-42r195,-231r51,41r-165,183r104,0r0,-58r61,-24r0,76r55,0r0,58r-55,0r0,47r41,0r0,54r-170,0"},"\u2075":{"d":"172,-423v-95,0,-133,-43,-133,-76v0,-26,15,-44,43,-44v29,0,44,21,44,41v0,5,-1,11,-2,14v7,1,22,4,40,4v50,0,79,-25,79,-65v0,-35,-26,-59,-73,-59v-33,0,-58,6,-81,16r-34,-19r17,-181r217,0r0,65r-159,0r-5,62v11,-3,30,-5,49,-5v77,0,138,47,138,121v0,72,-58,126,-140,126"},"\u2076":{"d":"299,-727v0,26,-17,41,-41,41v-30,0,-41,-22,-41,-40v0,-3,0,-6,1,-9v-6,-1,-14,-3,-23,-3v-47,0,-88,50,-90,107v21,-18,50,-29,80,-29v76,0,130,50,130,115v0,68,-57,122,-137,122v-43,0,-77,-19,-98,-40v-34,-34,-45,-77,-45,-141v0,-111,68,-195,160,-195v40,0,68,12,85,29v12,12,19,25,19,43xm179,-484v37,0,65,-28,65,-59v0,-34,-23,-56,-67,-56v-39,0,-68,23,-68,55v0,18,6,33,21,45v12,9,26,15,49,15"},"\u2077":{"d":"94,-430r149,-303r-134,0r0,75r-63,0r0,-134r258,0r19,42r-150,320r-79,0"},"\u2078":{"d":"176,-424v-93,0,-144,-50,-144,-99v0,-36,22,-73,83,-93v-55,-15,-74,-44,-74,-82v0,-50,53,-99,135,-99v81,0,136,49,136,99v0,38,-20,67,-76,82v62,20,85,57,85,93v0,49,-53,99,-145,99xm176,-640v31,0,59,-20,59,-49v0,-30,-26,-48,-59,-48v-34,0,-59,18,-59,48v0,29,27,49,59,49xm176,-486v41,0,68,-24,68,-50v0,-27,-26,-51,-68,-51v-43,0,-68,24,-68,51v0,26,26,50,68,50"},"\u2079":{"d":"54,-495v0,-26,17,-41,41,-41v30,0,41,22,41,40v0,4,-1,7,-1,9v6,2,13,3,23,3v47,0,88,-49,90,-106v-22,17,-50,28,-80,28v-76,0,-130,-50,-130,-115v0,-68,57,-122,137,-122v43,0,77,19,98,40v34,34,45,77,45,141v0,111,-68,195,-160,195v-40,0,-68,-12,-85,-29v-12,-12,-19,-25,-19,-43xm174,-738v-37,0,-65,28,-65,59v0,34,23,56,67,56v39,0,68,-23,68,-55v0,-18,-6,-33,-21,-45v-12,-9,-26,-15,-49,-15"},"\u2080":{"d":"176,147v-89,0,-148,-76,-148,-185v0,-113,60,-188,149,-188v88,0,148,75,148,186v0,113,-60,187,-149,187xm176,81v47,0,74,-51,74,-119v0,-70,-27,-122,-74,-122v-46,0,-73,52,-73,120v0,69,27,121,73,121"},"\u2081":{"d":"57,139r0,-64r91,0r0,-224r-82,21r-16,-59r133,-37r37,0r0,299r88,0r0,64r-251,0"},"\u2082":{"d":"53,140v-3,0,-21,-33,-21,-33v38,-88,103,-131,144,-159v31,-21,57,-37,57,-68v0,-30,-24,-49,-63,-49v-25,0,-52,10,-59,18v10,5,18,20,18,34v0,23,-19,41,-41,41v-33,0,-44,-27,-44,-53v0,-58,53,-100,132,-100v71,0,128,44,128,110v0,58,-47,88,-82,109v-30,18,-76,47,-104,91r138,0r0,-63r58,0r0,122r-261,0"},"\u2083":{"d":"171,147v-80,0,-138,-37,-138,-90v0,-25,18,-46,43,-46v24,0,42,18,42,41v0,8,-2,18,-5,25v8,5,28,14,58,14v32,0,66,-16,66,-52v0,-24,-16,-56,-86,-56r-22,0r0,-55r23,0v51,0,78,-21,78,-57v0,-28,-29,-41,-59,-41v-20,0,-35,6,-41,10v2,6,4,17,4,23v0,23,-19,42,-42,42v-23,0,-43,-20,-43,-49v0,-31,40,-82,125,-82v71,0,130,40,130,95v0,42,-33,75,-75,86v36,10,82,37,82,91v0,65,-67,101,-140,101"},"\u2084":{"d":"138,138r0,-52r68,0r0,-52r-162,0r-23,-42r195,-231r51,41r-165,183r104,0r0,-58r61,-24r0,76r55,0r0,58r-55,0r0,47r41,0r0,54r-170,0"},"\u2085":{"d":"172,147v-95,0,-133,-43,-133,-76v0,-26,15,-44,43,-44v29,0,44,21,44,41v0,5,-1,11,-2,14v7,1,22,4,40,4v50,0,79,-25,79,-65v0,-35,-26,-59,-73,-59v-33,0,-58,6,-81,16r-34,-19r17,-181r217,0r0,65r-159,0r-5,62v11,-3,30,-5,49,-5v77,0,138,47,138,121v0,72,-58,126,-140,126"},"\u2086":{"d":"299,-157v0,26,-17,41,-41,41v-30,0,-41,-22,-41,-40v0,-3,0,-6,1,-9v-6,-1,-14,-3,-23,-3v-47,0,-88,50,-90,107v21,-18,50,-29,80,-29v76,0,130,50,130,115v0,68,-57,122,-137,122v-43,0,-77,-19,-98,-40v-34,-34,-45,-77,-45,-141v0,-111,68,-195,160,-195v40,0,68,12,85,29v12,12,19,25,19,43xm179,86v37,0,65,-28,65,-59v0,-34,-23,-56,-67,-56v-39,0,-68,23,-68,55v0,18,6,33,21,45v12,9,26,15,49,15"},"\u2087":{"d":"94,140r149,-303r-134,0r0,75r-63,0r0,-134r258,0r19,42r-150,320r-79,0"},"\u2088":{"d":"176,146v-93,0,-144,-50,-144,-99v0,-36,22,-73,83,-93v-55,-15,-74,-44,-74,-82v0,-50,53,-99,135,-99v81,0,136,49,136,99v0,38,-20,67,-76,82v62,20,85,57,85,93v0,49,-53,99,-145,99xm176,-70v31,0,59,-20,59,-49v0,-30,-26,-48,-59,-48v-34,0,-59,18,-59,48v0,29,27,49,59,49xm176,84v41,0,68,-24,68,-50v0,-27,-26,-51,-68,-51v-43,0,-68,24,-68,51v0,26,26,50,68,50"},"\u2089":{"d":"54,75v0,-26,17,-41,41,-41v30,0,41,22,41,40v0,3,-1,6,-1,9v6,1,13,3,23,3v47,0,88,-50,90,-106v-22,17,-50,28,-80,28v-76,0,-130,-50,-130,-115v0,-68,57,-122,137,-122v43,0,77,19,98,40v34,34,45,77,45,141v0,111,-68,195,-160,195v-40,0,-68,-12,-85,-29v-12,-12,-19,-25,-19,-43xm174,-168v-37,0,-65,28,-65,59v0,34,23,56,67,56v39,0,68,-23,68,-55v0,-18,-6,-33,-21,-45v-12,-9,-26,-15,-49,-15"},"\u00a0":{"w":220},"\u2003":{"w":1000},"\u2002":{"w":500},"\u2004":{"w":333},"\u2005":{"w":250},"\u2009":{"w":133},"\u200a":{"w":75},"\u2007":{"w":530},"\u2044":{"d":"79,16r-49,-32r200,-316v63,-101,158,-269,189,-326r49,32r-200,316v-63,102,-158,269,-189,326","w":500},"\u00b4":{"d":"34,-491r-34,-33r110,-150v15,-19,35,-31,55,-31v27,0,49,22,49,51v0,19,-10,39,-31,55","w":234},"\u02dd":{"d":"25,-493r-25,-35r146,-143v19,-19,38,-28,54,-28v30,0,52,24,52,51v0,22,-12,45,-44,62xm243,-493r-22,-36r163,-145v19,-17,37,-24,53,-24v29,0,50,24,50,52v0,22,-13,44,-45,60","w":507},"`":{"d":"200,-491r-149,-108v-21,-16,-31,-36,-31,-55v0,-29,22,-51,49,-51v20,0,40,12,55,31r110,150","w":234},"\u02c6":{"d":"61,-494r-46,-53r177,-176r177,176r-46,53r-131,-96","w":384},"\u02c7":{"d":"323,-716r46,53r-177,176r-177,-176r46,-53r131,96","w":384},"\u02d8":{"d":"199,-505v-78,0,-152,-51,-184,-174r69,-27v29,71,71,103,115,103v44,0,86,-33,115,-103r69,27v-32,123,-106,174,-184,174","w":398},"\u02dc":{"d":"290,-506v-39,0,-67,-17,-89,-37v-26,-23,-45,-33,-60,-33v-23,0,-40,16,-52,64r-74,-19v11,-96,64,-151,119,-151v39,0,67,17,89,37v26,23,45,33,60,33v23,0,40,-16,52,-64r74,19v-11,96,-64,151,-119,151","w":424},"\u00af":{"d":"15,-524r0,-89r334,0r0,89r-334,0","w":364},"\u00a8":{"d":"293,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72xm87,-505v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":382},"\u02d9":{"d":"92,-495v-39,0,-72,-32,-72,-72v0,-40,35,-72,74,-72v39,0,72,32,72,72v0,40,-35,72,-74,72","w":186},"\u02da":{"d":"154,-486v-75,0,-134,-56,-134,-130v0,-74,59,-130,134,-130v75,0,134,56,134,130v0,74,-59,130,-134,130xm154,-557v31,0,52,-28,52,-59v0,-31,-21,-59,-52,-59v-31,0,-52,28,-52,59v0,31,21,59,52,59","w":308},"\u0326":{"d":"26,313r-26,-33v55,-43,81,-85,83,-109v-30,-8,-50,-32,-50,-65v0,-32,29,-61,66,-61v38,0,71,27,71,80v0,50,-36,127,-144,188","w":170},"\u00b8":{"d":"125,200v-42,0,-90,-13,-125,-34r17,-33v35,15,66,21,88,21v23,0,39,-10,39,-26v0,-9,-7,-26,-59,-26v-4,0,-11,1,-11,1r-21,-25r41,-100r32,4r8,62v62,8,106,36,106,80v0,38,-43,76,-115,76","w":240},"\u02db":{"d":"114,201v-74,0,-114,-43,-114,-103v0,-68,56,-109,119,-141r91,10v-65,21,-119,58,-119,104v0,31,18,46,52,46v25,0,49,-6,70,-17r-5,79v-18,11,-54,22,-94,22","w":213}}});Cufon.registerFont({"w":353,"face":{"font-family":"Archer Medium","font-weight":350,"font-style":"italic","font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"8","bbox":"-111 -1069 1018 278","underline-thickness":"50","underline-position":"-50","slope":"-12","stemh":"61","stemv":"52","unicode-range":"U+0020-U+FB04"},"glyphs":{" ":{"w":209},"A":{"d":"-27,0r16,-66r60,0r314,-527r-78,0r15,-65r302,0r-15,65r-75,0r70,527r70,0r-16,66r-215,0r15,-65r73,0r-20,-162r-268,0r-96,162r87,0r-16,65r-223,0xm259,-291r221,0r-39,-307","w":705},"B":{"d":"3,0r16,-66r79,0r122,-526r-89,0r15,-66r232,0v55,0,99,9,134,28v47,26,76,72,76,127v0,89,-72,154,-166,168v67,18,121,71,121,141v0,53,-21,97,-58,130v-30,27,-71,46,-119,56v-27,5,-57,8,-88,8r-275,0xm242,-369r77,0v116,0,193,-46,193,-128v0,-33,-16,-62,-51,-79v-23,-11,-54,-17,-94,-17r-73,0xm172,-65r116,0v25,0,49,-3,69,-8v33,-8,58,-21,77,-41v22,-21,32,-49,32,-82v0,-62,-56,-112,-165,-112r-73,0","w":600},"C":{"d":"354,12v-154,0,-282,-105,-282,-290v0,-210,169,-392,372,-392v154,0,236,96,236,161v0,44,-28,73,-60,73v-32,0,-53,-22,-53,-50v0,-19,12,-37,29,-47v-11,-31,-64,-70,-155,-70v-170,0,-292,162,-292,318v0,144,85,229,212,229v78,0,146,-33,206,-92r44,46v-74,76,-160,114,-257,114","w":686},"D":{"d":"3,0r16,-66r79,0r122,-526r-89,0r15,-66r209,0v128,0,205,32,265,92v43,44,69,110,69,182v0,105,-36,192,-103,259v-83,84,-200,125,-347,125r-236,0xm172,-66r79,0v121,0,212,-35,274,-98v58,-57,86,-132,86,-217v0,-56,-20,-108,-53,-140v-43,-44,-102,-71,-210,-71r-54,0","w":708},"E":{"d":"3,0r16,-66r79,0r122,-526r-89,0r15,-66r479,0r-39,161r-71,0r22,-96r-243,0r-52,226r211,0r-14,64r-212,0r-55,238r244,0r23,-96r71,0r-37,161r-470,0","w":583},"F":{"d":"3,0r16,-66r79,0r122,-526r-89,0r15,-66r470,0r-38,161r-72,0r23,-96r-235,0r-55,238r206,0r-15,64r-206,0r-52,225r97,0r-16,66r-250,0","w":562},"G":{"d":"519,0r11,-64v-56,45,-126,74,-205,74v-142,0,-254,-105,-254,-269v0,-217,170,-410,391,-410v86,0,157,29,197,67v23,23,38,48,38,80v0,42,-29,67,-59,67v-32,0,-53,-21,-53,-50v0,-17,9,-32,26,-44v-3,-5,-8,-10,-13,-15v-26,-20,-75,-38,-139,-38v-184,0,-310,167,-310,340v0,123,75,206,193,206v76,0,144,-26,197,-67r33,-134r-184,0r15,-63r257,0r-76,320r-65,0","w":718},"H":{"d":"3,0r16,-66r79,0r122,-526r-89,0r15,-66r244,0r-15,66r-81,0r-51,222r357,0r50,-222r-91,0r16,-66r244,0r-15,66r-79,0r-122,526r89,0r-16,66r-244,0r15,-66r81,0r57,-238r-358,0r-55,238r91,0r-15,66r-245,0","w":767},"I":{"d":"3,0r16,-66r88,0r121,-526r-91,0r15,-66r253,0r-15,66r-88,0r-121,526r91,0r-16,66r-253,0"},"J":{"d":"204,11v-95,0,-180,-60,-180,-156v0,-50,32,-85,72,-85v28,0,49,21,49,46v0,26,-18,48,-50,48v-2,46,44,81,114,81v50,0,86,-19,112,-52v24,-30,40,-72,51,-121r83,-364r-111,0r16,-66r263,0r-16,66r-78,0r-87,375v-15,65,-37,118,-69,157v-40,46,-94,71,-169,71","w":560},"K":{"d":"641,-592r-263,222r145,304r90,0r-15,66r-128,0r-150,-325r-109,92r-39,167r91,0r-16,66r-244,0r16,-66r79,0r122,-526r-89,0r15,-66r240,0r-15,65r-77,0r-64,277r320,-277r-85,0r14,-65r249,0r-15,66r-72,0","w":657},"L":{"d":"3,0r16,-66r79,0r122,-526r-89,0r15,-66r250,0r-15,66r-87,0r-122,527r224,0r24,-101r71,0r-38,166r-450,0","w":549},"M":{"d":"0,0r16,-66r79,0r146,-526r-91,0r15,-66r156,0r110,450r313,-450r158,0r-15,66r-82,0r-98,526r91,0r-16,66r-242,0r15,-66r79,0r90,-460r-310,440r-13,0r-112,-440r-121,460r89,0r-15,66r-242,0","w":865},"N":{"d":"548,3r-270,-537r-108,468r91,0r-15,66r-243,0r16,-66r79,0r122,-526r-89,0r15,-66r151,0r253,503r101,-437r-92,0r16,-66r239,0r-15,66r-77,0r-137,595r-37,0","w":752},"O":{"d":"349,12v-176,0,-278,-123,-278,-283v0,-195,155,-399,366,-399v176,0,278,123,278,283v0,195,-155,399,-366,399xm355,-56v162,0,283,-166,283,-330v0,-117,-67,-216,-207,-216v-162,0,-283,166,-283,330v0,117,67,216,207,216","w":732},"P":{"d":"3,0r16,-66r79,0r122,-526r-89,0r15,-66r216,0v31,0,59,3,83,10v94,24,140,91,140,173v0,128,-100,238,-274,238v-37,0,-78,-1,-98,-2r-41,173r91,0r-15,66r-245,0xm321,-302v127,0,189,-82,189,-168v0,-56,-30,-98,-92,-115v-19,-5,-41,-7,-64,-7r-60,0r-66,287v23,2,57,3,93,3","w":563},"Q":{"d":"715,-387v0,176,-126,359,-306,393v28,48,80,79,140,79v25,0,45,-5,69,-18r23,59v-32,16,-62,24,-95,24v-97,0,-177,-59,-220,-139v-162,-10,-255,-129,-255,-282v0,-195,155,-399,366,-399v176,0,278,123,278,283xm355,-56v162,0,283,-166,283,-330v0,-117,-67,-216,-207,-216v-162,0,-283,166,-283,330v0,117,67,216,207,216","w":732},"R":{"d":"3,0r16,-66r79,0r122,-526r-89,0r15,-66r202,0v87,0,151,20,192,60v30,30,45,69,45,116v0,99,-70,178,-188,205r100,211r77,0r-15,66r-115,0r-120,-268v-11,1,-21,1,-33,1v-24,0,-50,-1,-71,-2r-48,203r90,0r-16,66r-243,0xm317,-331v120,0,193,-61,193,-147v0,-30,-10,-55,-30,-75v-26,-26,-73,-39,-134,-39r-52,0r-60,258v23,2,47,3,83,3","w":603},"S":{"d":"268,11v-132,0,-228,-80,-228,-150v0,-41,26,-69,60,-69v30,0,51,25,51,49v0,21,-10,38,-28,50v21,28,72,55,150,55v76,0,140,-46,140,-115v0,-57,-48,-91,-113,-129v-82,-48,-155,-98,-155,-193v0,-94,86,-178,213,-178v113,0,201,66,201,133v0,42,-27,68,-58,68v-30,0,-51,-23,-51,-51v0,-15,8,-32,25,-44v-16,-19,-58,-41,-119,-41v-81,0,-134,48,-134,108v0,59,47,91,122,135v75,45,146,95,146,187v0,106,-93,185,-222,185","w":551},"T":{"d":"144,0r15,-66r85,0r121,-527r-163,0r-24,104r-71,0r39,-169r543,0r-39,169r-71,0r24,-104r-163,0r-122,527r95,0r-16,66r-253,0","w":627},"U":{"d":"334,11v-137,0,-212,-78,-212,-193v0,-24,4,-51,10,-79r77,-331r-88,0r15,-66r243,0r-15,66r-81,0r-77,335v-5,25,-9,49,-9,70v0,79,43,132,145,132v102,0,160,-68,182,-165r85,-372r-91,0r15,-66r243,0r-15,66r-79,0r-87,381v-31,134,-109,222,-261,222","w":714},"V":{"d":"270,10r-100,-602r-70,0r16,-66r218,0r-15,66r-70,0r71,479r288,-479r-77,0r15,-66r221,0r-16,66r-60,0r-378,602r-43,0","w":686},"W":{"d":"214,9r-33,-601r-70,0r15,-66r223,0r-15,66r-82,0r16,463r258,-450r34,0r65,452r235,-465r-80,0r16,-66r222,0r-15,66r-65,0r-314,601r-40,0r-69,-442r-261,442r-40,0","w":946},"X":{"d":"-14,0r15,-66r73,0r271,-276r-131,-250r-82,0r15,-66r245,0r-15,66r-79,0r97,209r196,-209r-80,0r16,-66r247,0r-16,66r-76,0r-255,260r141,266r80,0r-16,66r-242,0r15,-66r82,0r-109,-227r-214,227r85,0r-16,66r-247,0","w":710},"Y":{"d":"124,0r16,-66r89,0r49,-199r-114,-327r-69,0r16,-66r220,0r-14,66r-76,0r88,271r220,-271r-74,0r16,-66r226,0r-15,66r-66,0r-288,341r-44,185r93,0r-14,66r-259,0","w":631},"Z":{"d":"14,0r-4,-36r529,-560r-317,0r-24,104r-70,0r38,-166r485,0r4,36r-529,560r333,0r24,-104r70,0r-39,166r-500,0","w":613},"a":{"d":"193,8v-89,0,-151,-67,-151,-173v0,-145,103,-269,226,-269v70,0,120,45,133,106r27,-101r67,0r-77,313v-4,17,-7,33,-7,42v0,20,11,31,28,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-107,105v-48,0,-79,-32,-79,-78r0,-10v-37,50,-89,89,-152,89xm216,-53v98,0,166,-108,166,-203v0,-69,-37,-116,-107,-116v-93,0,-159,99,-159,202v0,70,34,117,100,117","w":560},"b":{"d":"29,0r156,-672r-81,0r15,-60r149,0r-91,388v34,-49,86,-90,148,-90v96,0,160,70,160,176v0,148,-106,267,-226,267v-70,0,-124,-42,-138,-104r-25,95r-67,0xm252,-54v92,0,159,-96,159,-195v0,-74,-38,-123,-105,-123v-93,0,-167,106,-167,203v0,68,41,115,113,115","w":528},"c":{"d":"233,8v-108,0,-192,-69,-192,-184v0,-135,110,-258,244,-258v100,0,154,61,154,114v0,33,-22,60,-53,60v-21,0,-43,-15,-43,-45v0,-11,7,-28,20,-36v-15,-20,-41,-32,-80,-32v-88,0,-171,84,-171,193v0,76,50,127,129,127v49,0,100,-20,142,-56r-2,68v-42,31,-92,49,-148,49","w":464},"d":{"d":"43,-165v0,-149,104,-269,223,-269v68,0,121,44,135,103r80,-341r-81,0r15,-60r150,0r-144,616v-5,18,-8,33,-8,42v0,20,10,31,28,31v20,0,38,-17,58,-67r35,12v-23,72,-62,105,-108,105v-48,0,-78,-32,-78,-80v0,-3,-1,-6,0,-9v-36,50,-88,90,-152,90v-88,0,-153,-67,-153,-173xm220,-53v96,0,164,-104,164,-202v0,-70,-39,-117,-110,-117v-92,0,-157,98,-157,201v0,70,37,118,103,118","w":562},"e":{"d":"423,-192r-313,0v-1,7,-1,14,-1,21v0,75,62,119,136,119v48,0,86,-10,141,-39r-15,68v-45,22,-82,31,-140,31v-100,0,-191,-64,-191,-180v0,-144,109,-262,236,-262v99,0,163,60,163,156v0,26,-5,55,-16,86xm273,-373v-67,0,-127,53,-152,127r245,0v5,-13,7,-28,7,-42v0,-46,-31,-85,-100,-85","w":476},"f":{"d":"51,0r84,-365r-76,0r15,-61r75,0r32,-139v14,-62,35,-98,64,-128v27,-27,67,-44,110,-44v50,0,78,26,78,59v0,29,-23,49,-48,49v-27,0,-47,-19,-49,-47v-15,3,-31,11,-42,22v-20,20,-35,53,-46,98r-30,130r111,0r-15,61r-110,0r-84,365r-69,0","w":313},"g":{"d":"181,200v-58,0,-121,-24,-146,-48v-17,-18,-23,-32,-23,-50v0,-31,20,-53,49,-53v30,0,48,24,48,49v0,9,-3,19,-8,26v17,11,44,19,80,19v43,0,74,-11,101,-38v23,-23,39,-59,51,-108r20,-86v-36,55,-90,86,-149,86v-95,0,-161,-67,-161,-173v0,-142,101,-258,228,-258v76,0,122,49,136,103r26,-98r67,0r-102,439v-14,59,-32,103,-65,135v-37,38,-86,55,-152,55xm227,-64v96,0,161,-98,161,-194v0,-70,-43,-114,-112,-114v-92,0,-159,89,-159,192v0,71,44,116,110,116","w":528},"h":{"d":"29,0r156,-672r-81,0r15,-60r149,0r-92,394v32,-49,82,-95,142,-95v68,0,120,47,121,116v0,21,-4,44,-11,67r-37,138v-4,14,-6,29,-6,37v0,20,12,32,29,32v20,0,37,-17,56,-67r35,12v-21,69,-55,105,-105,105v-52,0,-85,-33,-85,-79v0,-13,3,-31,7,-47r38,-140v5,-19,7,-34,7,-50v-1,-38,-30,-64,-71,-64v-58,0,-123,54,-147,156r-50,217r-70,0","w":527},"i":{"d":"204,-508v-28,0,-51,-23,-51,-51v0,-28,23,-51,51,-51v27,0,50,23,50,51v0,28,-23,51,-50,51xm149,7v-52,0,-84,-32,-84,-80v0,-12,4,-31,8,-46r67,-246r-83,0r16,-61r153,0r-84,310v-4,16,-7,33,-7,42v0,20,12,31,29,31v21,0,39,-17,58,-67r35,12v-23,72,-59,105,-108,105","w":295},"j":{"d":"-37,199v-43,0,-74,-24,-74,-55v0,-29,22,-47,47,-47v24,0,44,20,44,41v15,-3,28,-10,41,-25v18,-21,33,-57,46,-115r84,-363r-86,0r16,-61r153,0r-99,432v-19,80,-39,122,-70,153v-24,23,-61,40,-102,40xm212,-508v-28,0,-50,-23,-50,-51v0,-28,22,-51,50,-51v28,0,50,23,50,51v0,28,-22,51,-50,51","w":265},"k":{"d":"99,0r-70,0r156,-672r-81,0r15,-60r149,0r-120,515v125,-51,191,-96,208,-123v-15,-8,-25,-26,-25,-41v0,-30,22,-53,52,-53v28,0,51,22,51,57v0,61,-76,122,-176,170r45,107v9,24,16,38,23,46v8,9,15,10,23,10v16,0,32,-16,47,-78r37,11v-21,94,-56,118,-96,118v-21,0,-39,-5,-56,-20v-14,-12,-26,-30,-37,-57r-48,-116v-20,9,-41,18,-59,25","w":471},"l":{"d":"135,7v-51,0,-83,-32,-83,-80v0,-12,3,-28,7,-44r129,-555r-80,0r15,-60r149,0r-143,615v-3,16,-7,33,-7,42v0,21,11,32,28,32v21,0,39,-17,59,-67r35,12v-23,72,-60,105,-109,105","w":278},"m":{"d":"44,0r92,-365r-80,0r15,-61r142,0r-25,101v38,-62,90,-108,146,-108v64,0,107,41,110,107v40,-66,94,-107,148,-107v64,0,111,47,111,116v0,21,-4,44,-11,67r-40,138v-3,13,-6,29,-6,37v0,20,12,32,29,32v19,0,37,-17,57,-67r35,12v-22,69,-57,105,-107,105v-52,0,-84,-33,-84,-79v0,-13,3,-33,8,-48r39,-137v5,-20,8,-36,8,-52v0,-39,-25,-64,-62,-64v-55,0,-116,55,-143,159r-55,214r-70,0r66,-256v5,-21,8,-38,8,-54v0,-36,-25,-63,-63,-63v-54,0,-119,55,-144,158r-54,215r-70,0","w":791},"n":{"d":"413,7v-52,0,-84,-33,-84,-79v0,-13,3,-33,8,-48r40,-139v5,-19,7,-34,7,-50v0,-38,-28,-64,-69,-64v-57,0,-121,54,-146,156r-55,217r-70,0r92,-365r-80,0r15,-61r142,0r-24,101v37,-62,90,-108,150,-108v68,0,117,47,117,116v0,21,-4,44,-11,67r-39,138v-4,13,-7,29,-7,37v0,20,12,32,29,32v20,0,37,-17,57,-67r35,12v-22,69,-57,105,-107,105","w":544},"o":{"d":"226,8v-117,0,-185,-85,-185,-186v0,-132,103,-256,241,-256v117,0,185,86,185,186v0,133,-103,256,-241,256xm229,-53v94,0,167,-89,167,-195v0,-78,-51,-125,-117,-125v-93,0,-167,89,-167,196v0,77,51,124,117,124","w":508},"p":{"d":"-65,196r15,-60r64,0r120,-501r-81,0r15,-61r143,0r-20,89v35,-52,87,-97,154,-97v94,0,158,70,158,176v0,148,-106,267,-227,267v-67,0,-119,-43,-139,-99r-52,226r87,0r-15,60r-222,0xm270,-54v92,0,159,-96,159,-195v0,-74,-38,-123,-105,-123v-93,0,-168,106,-168,203v0,68,42,115,114,115","w":546},"q":{"d":"198,8v-94,0,-156,-69,-156,-175v0,-145,105,-267,229,-267v69,0,120,45,135,101r25,-93r67,0r-130,562r89,0r-15,60r-158,0r64,-273v-35,48,-88,85,-150,85xm221,-53v98,0,166,-107,166,-202v0,-69,-37,-117,-108,-117v-93,0,-163,97,-163,200v0,70,38,119,105,119","w":528},"r":{"d":"44,0r92,-365r-80,0r15,-61r142,0r-28,118v55,-81,103,-125,146,-125v34,0,58,22,58,53v0,30,-25,55,-54,55v-27,0,-46,-18,-51,-40v-32,16,-99,80,-122,176r-48,189r-70,0","w":382},"s":{"d":"201,7v-62,0,-119,-23,-151,-55v-16,-16,-25,-34,-25,-53v0,-29,20,-52,47,-52v27,0,43,20,43,42v0,12,-5,22,-13,32v4,4,8,7,17,12v20,11,51,19,85,19v47,0,86,-21,86,-59v0,-39,-42,-59,-88,-81v-62,-29,-118,-57,-118,-121v0,-68,57,-122,154,-122v56,0,104,18,131,46v16,16,24,33,24,52v0,31,-21,51,-45,51v-24,0,-44,-18,-44,-42v0,-10,4,-20,11,-32v-3,-2,-5,-4,-15,-9v-15,-7,-39,-12,-64,-12v-50,0,-83,23,-83,56v0,34,41,53,91,77v60,28,116,60,116,125v0,82,-70,126,-159,126","w":422},"t":{"d":"335,-365r-130,0r-60,244v-4,14,-6,26,-6,37v0,19,13,34,34,34v23,0,47,-12,89,-40r26,37v-52,42,-94,61,-134,61v-50,0,-88,-31,-88,-81v0,-14,3,-30,8,-48r60,-244r-76,0r15,-61r76,0r25,-100r77,-25r-31,125r130,0","w":338},"u":{"d":"68,-426r150,0r-69,267v-4,14,-6,30,-6,46v0,36,25,61,65,61v59,0,123,-56,148,-156r54,-218r70,0r-77,310v-5,17,-8,33,-8,42v0,20,12,31,29,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-108,105v-47,0,-78,-31,-78,-81v0,-6,1,-12,2,-20v-36,58,-88,101,-148,101v-64,0,-113,-42,-113,-108v0,-22,4,-44,9,-64r52,-200r-80,0","w":544},"v":{"d":"168,14r-69,-379r-77,0r16,-61r124,0r52,353v79,-88,142,-187,160,-255v-21,-6,-40,-24,-40,-52v0,-30,22,-54,53,-54v32,0,58,25,58,69v0,82,-105,244,-238,379r-39,0","w":471},"w":{"d":"140,14r-36,-379r-78,0r16,-61r123,0r22,334r161,-282r34,0r62,292v63,-93,115,-185,123,-248v-21,-5,-42,-22,-42,-51v0,-29,22,-53,52,-53v33,0,58,25,58,66v0,79,-69,210,-193,382r-35,0r-60,-277r-168,277r-39,0","w":668},"x":{"d":"68,7v-39,0,-62,-26,-62,-54v0,-27,22,-49,47,-49v24,0,38,15,44,34v21,-5,43,-31,77,-78r56,-78r-58,-147r-85,0r15,-61r115,0r55,156r44,-65v40,-61,84,-99,129,-99v41,0,65,26,65,55v0,26,-23,48,-48,48v-25,0,-39,-15,-45,-33v-16,4,-39,28,-68,70r-51,72r50,120v21,52,31,59,43,59v13,0,29,-16,45,-67r35,10v-20,78,-53,107,-93,107v-40,0,-64,-22,-86,-80r-36,-98r-54,80v-46,70,-86,98,-134,98","w":528},"y":{"d":"-15,200v-37,0,-67,-25,-67,-57v0,-27,21,-50,48,-50v25,0,44,18,47,44r2,0v24,0,72,-36,163,-146r-73,-356r-76,0r15,-61r123,0r62,356v74,-96,144,-195,159,-259v-21,-7,-41,-26,-41,-54v0,-27,22,-51,52,-51v34,0,58,25,58,69v0,66,-49,159,-206,356v-140,174,-203,209,-266,209","w":482},"z":{"d":"32,7r-26,-35r352,-341r-203,0r-20,82r-62,0r34,-139r332,0r20,37r-340,329v21,-8,39,-11,63,-11v45,0,86,19,124,19v43,0,56,-21,78,-84r34,8v-19,81,-40,136,-116,136v-49,0,-112,-27,-164,-27v-46,0,-75,10,-106,26","w":472},"\u00c1":{"d":"-27,0r16,-66r60,0r314,-527r-78,0r15,-65r302,0r-15,65r-75,0r70,527r70,0r-16,66r-215,0r15,-65r73,0r-20,-162r-268,0r-96,162r87,0r-16,65r-223,0xm259,-291r221,0r-39,-307xm441,-717r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48","w":705},"\u00e1":{"d":"193,8v-89,0,-151,-67,-151,-173v0,-145,103,-269,226,-269v70,0,120,45,133,106r27,-101r67,0r-77,313v-4,17,-7,33,-7,42v0,20,11,31,28,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-107,105v-48,0,-79,-32,-79,-78r0,-10v-37,50,-89,89,-152,89xm216,-53v98,0,166,-108,166,-203v0,-69,-37,-116,-107,-116v-93,0,-159,99,-159,202v0,70,34,117,100,117xm302,-503r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48","w":560},"\u0102":{"d":"-27,0r16,-66r60,0r314,-527r-78,0r15,-65r302,0r-15,65r-75,0r70,527r70,0r-16,66r-215,0r15,-65r73,0r-20,-162r-268,0r-96,162r87,0r-16,65r-223,0xm259,-291r221,0r-39,-307xm477,-721v-76,0,-123,-57,-130,-142r46,-15v12,57,43,89,95,89v45,0,88,-25,127,-88r41,22v-40,84,-111,134,-179,134","w":705},"\u0103":{"d":"193,8v-89,0,-151,-67,-151,-173v0,-145,103,-269,226,-269v70,0,120,45,133,106r27,-101r67,0r-77,313v-4,17,-7,33,-7,42v0,20,11,31,28,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-107,105v-48,0,-79,-32,-79,-78r0,-10v-37,50,-89,89,-152,89xm216,-53v98,0,166,-108,166,-203v0,-69,-37,-116,-107,-116v-93,0,-159,99,-159,202v0,70,34,117,100,117xm337,-507v-76,0,-123,-57,-130,-142r46,-15v12,57,43,89,95,89v45,0,88,-25,127,-88r41,22v-40,84,-111,134,-179,134","w":560},"\u00c2":{"d":"-27,0r16,-66r60,0r314,-527r-78,0r15,-65r302,0r-15,65r-75,0r70,527r70,0r-16,66r-215,0r15,-65r73,0r-20,-162r-268,0r-96,162r87,0r-16,65r-223,0xm259,-291r221,0r-39,-307xm349,-715r-28,-38r187,-145r113,152r-34,30r-93,-90","w":705},"\u00e2":{"d":"193,8v-89,0,-151,-67,-151,-173v0,-145,103,-269,226,-269v70,0,120,45,133,106r27,-101r67,0r-77,313v-4,17,-7,33,-7,42v0,20,11,31,28,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-107,105v-48,0,-79,-32,-79,-78r0,-10v-37,50,-89,89,-152,89xm216,-53v98,0,166,-108,166,-203v0,-69,-37,-116,-107,-116v-93,0,-159,99,-159,202v0,70,34,117,100,117xm210,-501r-28,-38r187,-145r113,152r-34,30r-93,-90","w":560},"\u00c4":{"d":"-27,0r16,-66r60,0r314,-527r-78,0r15,-65r302,0r-15,65r-75,0r70,527r70,0r-16,66r-215,0r15,-65r73,0r-20,-162r-268,0r-96,162r87,0r-16,65r-223,0xm259,-291r221,0r-39,-307xm574,-735v-31,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-25,57,-57,57xm400,-735v-32,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-26,57,-57,57","w":705},"\u00e4":{"d":"193,8v-89,0,-151,-67,-151,-173v0,-145,103,-269,226,-269v70,0,120,45,133,106r27,-101r67,0r-77,313v-4,17,-7,33,-7,42v0,20,11,31,28,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-107,105v-48,0,-79,-32,-79,-78r0,-10v-37,50,-89,89,-152,89xm216,-53v98,0,166,-108,166,-203v0,-69,-37,-116,-107,-116v-93,0,-159,99,-159,202v0,70,34,117,100,117xm434,-521v-31,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-25,57,-57,57xm260,-521v-32,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-26,57,-57,57","w":560},"\u00c6":{"d":"-32,0r16,-66r79,0r393,-526r-86,0r16,-66r568,0r-38,161r-71,0r22,-96r-236,0r-52,226r204,0r-15,64r-204,0r-55,238r236,0r23,-96r71,0r-37,161r-463,0r15,-66r80,0r38,-161r-213,0r-120,162r90,0r-15,65r-246,0xm305,-290r181,0r71,-306r-25,0","w":913},"\u00e6":{"d":"739,-192r-312,0v-1,7,-1,14,-1,21v0,75,61,119,136,119v47,0,86,-10,140,-39r-15,68v-44,22,-81,31,-136,31v-93,0,-154,-54,-174,-128v-39,77,-121,128,-209,128v-92,0,-136,-56,-136,-106v0,-97,90,-147,228,-147r105,0v-3,-74,-47,-132,-126,-132v-16,0,-26,1,-36,4v-5,2,-10,5,-13,7v4,7,7,13,7,23v0,24,-20,45,-45,45v-27,0,-46,-22,-46,-50v0,-26,19,-53,52,-70v20,-10,47,-16,78,-16v95,0,150,48,167,127v40,-78,115,-127,191,-127v98,0,162,60,162,156v0,26,-6,55,-17,86xm172,-52v80,0,166,-57,187,-142r-80,0v-131,0,-179,36,-179,90v0,29,26,52,72,52xm590,-373v-69,0,-128,54,-152,127r245,0v4,-13,7,-28,7,-42v0,-46,-31,-85,-100,-85","w":792},"\u01fc":{"d":"617,-717r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm-32,0r16,-66r79,0r393,-526r-86,0r16,-66r568,0r-38,161r-71,0r22,-96r-236,0r-52,226r204,0r-15,64r-204,0r-55,238r236,0r23,-96r71,0r-37,161r-463,0r15,-66r80,0r38,-161r-213,0r-120,162r90,0r-15,65r-246,0xm305,-290r181,0r71,-306r-25,0","w":913},"\u01fd":{"d":"739,-192r-312,0v-1,7,-1,14,-1,21v0,75,61,119,136,119v47,0,86,-10,140,-39r-15,68v-44,22,-81,31,-136,31v-93,0,-154,-54,-174,-128v-39,77,-121,128,-209,128v-92,0,-136,-56,-136,-106v0,-97,90,-147,228,-147r105,0v-3,-74,-47,-132,-126,-132v-16,0,-26,1,-36,4v-5,2,-10,5,-13,7v4,7,7,13,7,23v0,24,-20,45,-45,45v-27,0,-46,-22,-46,-50v0,-26,19,-53,52,-70v20,-10,47,-16,78,-16v95,0,150,48,167,127v40,-78,115,-127,191,-127v98,0,162,60,162,156v0,26,-6,55,-17,86xm172,-52v80,0,166,-57,187,-142r-80,0v-131,0,-179,36,-179,90v0,29,26,52,72,52xm590,-373v-69,0,-128,54,-152,127r245,0v4,-13,7,-28,7,-42v0,-46,-31,-85,-100,-85xm434,-503r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48","w":792},"\u00c0":{"d":"-27,0r16,-66r60,0r314,-527r-78,0r15,-65r302,0r-15,65r-75,0r70,527r70,0r-16,66r-215,0r15,-65r73,0r-20,-162r-268,0r-96,162r87,0r-16,65r-223,0xm259,-291r221,0r-39,-307xm499,-712r-117,-87v-19,-15,-26,-29,-26,-45v0,-23,20,-42,42,-42v19,0,31,9,46,32r78,123","w":705},"\u00e0":{"d":"193,8v-89,0,-151,-67,-151,-173v0,-145,103,-269,226,-269v70,0,120,45,133,106r27,-101r67,0r-77,313v-4,17,-7,33,-7,42v0,20,11,31,28,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-107,105v-48,0,-79,-32,-79,-78r0,-10v-37,50,-89,89,-152,89xm216,-53v98,0,166,-108,166,-203v0,-69,-37,-116,-107,-116v-93,0,-159,99,-159,202v0,70,34,117,100,117xm361,-498r-117,-87v-19,-15,-26,-29,-26,-45v0,-23,20,-42,42,-42v19,0,31,9,46,32r78,123","w":560},"\u0100":{"d":"-27,0r16,-66r60,0r314,-527r-78,0r15,-65r302,0r-15,65r-75,0r70,527r70,0r-16,66r-215,0r15,-65r73,0r-20,-162r-268,0r-96,162r87,0r-16,65r-223,0xm259,-291r221,0r-39,-307xm327,-749r15,-63r300,0r-13,63r-302,0","w":705},"\u0101":{"d":"193,8v-89,0,-151,-67,-151,-173v0,-145,103,-269,226,-269v70,0,120,45,133,106r27,-101r67,0r-77,313v-4,17,-7,33,-7,42v0,20,11,31,28,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-107,105v-48,0,-79,-32,-79,-78r0,-10v-37,50,-89,89,-152,89xm216,-53v98,0,166,-108,166,-203v0,-69,-37,-116,-107,-116v-93,0,-159,99,-159,202v0,70,34,117,100,117xm187,-535r15,-63r300,0r-13,63r-302,0","w":560},"\u0104":{"d":"-27,0r16,-66r60,0r314,-527r-78,0r15,-65r302,0r-15,65r-75,0r70,527r70,0r-16,66r-78,0v-44,33,-77,70,-77,106v0,24,16,37,44,37v20,0,38,-4,51,-9r-12,50v-12,8,-34,17,-64,17v-51,0,-83,-28,-83,-74v0,-47,34,-90,84,-127r-80,0r15,-65r73,0r-20,-162r-268,0r-96,162r87,0r-16,65r-223,0xm259,-291r221,0r-39,-307","w":705},"\u0105":{"d":"345,-74r0,-7v-37,50,-89,89,-152,89v-89,0,-151,-67,-151,-173v0,-145,103,-269,226,-269v70,0,120,45,133,106r27,-101r67,0r-77,313v-4,17,-7,33,-7,42v0,19,10,30,26,30v19,0,39,-16,59,-66r35,12v-10,33,-24,57,-45,78v-39,41,-101,74,-101,126v0,24,16,37,44,37v21,0,38,-4,51,-9r-11,50v-12,8,-34,17,-65,17v-50,0,-83,-28,-83,-74v0,-48,34,-89,82,-123v-23,-5,-40,-19,-49,-37v-6,-12,-9,-25,-9,-41xm216,-53v98,0,166,-108,166,-203v0,-69,-37,-116,-107,-116v-93,0,-159,99,-159,202v0,70,34,117,100,117","w":560},"\u00c5":{"d":"-27,0r16,-66r60,0r314,-527r-78,0r15,-65r92,0v-23,-17,-34,-44,-34,-72v0,-55,50,-115,119,-115v59,0,92,42,92,91v0,41,-23,80,-57,96r90,0r-15,65r-75,0r70,527r70,0r-16,66r-215,0r15,-65r73,0r-20,-162r-268,0r-96,162r87,0r-16,65r-223,0xm453,-672v36,0,63,-35,63,-75v0,-28,-17,-50,-44,-50v-36,0,-63,35,-63,75v0,28,18,50,44,50xm259,-291r221,0r-39,-307","w":705},"\u00e5":{"d":"193,8v-89,0,-151,-67,-151,-173v0,-145,103,-269,226,-269v70,0,120,45,133,106r27,-101r67,0r-77,313v-4,17,-7,33,-7,42v0,20,11,31,28,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-107,105v-48,0,-79,-32,-79,-78r0,-10v-37,50,-89,89,-152,89xm216,-53v98,0,166,-108,166,-203v0,-69,-37,-116,-107,-116v-93,0,-159,99,-159,202v0,70,34,117,100,117xm342,-499v-58,0,-92,-41,-92,-94v0,-67,51,-127,120,-127v59,0,93,41,93,93v0,68,-52,128,-121,128xm347,-547v36,0,63,-35,63,-75v0,-28,-18,-50,-44,-50v-37,0,-64,35,-64,75v0,28,18,50,45,50","w":560},"\u01fa":{"d":"487,-900r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm-27,0r16,-66r60,0r314,-527r-78,0r15,-65r92,0v-23,-17,-34,-44,-34,-72v0,-55,50,-115,119,-115v59,0,92,42,92,91v0,41,-23,80,-57,96r90,0r-15,65r-75,0r70,527r70,0r-16,66r-215,0r15,-65r73,0r-20,-162r-268,0r-96,162r87,0r-16,65r-223,0xm453,-672v36,0,63,-35,63,-75v0,-28,-17,-50,-44,-50v-36,0,-63,35,-63,75v0,28,18,50,44,50xm259,-291r221,0r-39,-307","w":705},"\u01fb":{"d":"193,8v-89,0,-151,-67,-151,-173v0,-145,103,-269,226,-269v70,0,120,45,133,106r27,-101r67,0r-77,313v-4,17,-7,33,-7,42v0,20,11,31,28,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-107,105v-48,0,-79,-32,-79,-78r0,-10v-37,50,-89,89,-152,89xm216,-53v98,0,166,-108,166,-203v0,-69,-37,-116,-107,-116v-93,0,-159,99,-159,202v0,70,34,117,100,117xm342,-499v-58,0,-92,-41,-92,-94v0,-67,51,-127,120,-127v59,0,93,41,93,93v0,68,-52,128,-121,128xm380,-782r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm347,-547v36,0,63,-35,63,-75v0,-28,-18,-50,-44,-50v-37,0,-64,35,-64,75v0,28,18,50,45,50","w":560},"\u00c3":{"d":"-27,0r16,-66r60,0r314,-527r-78,0r15,-65r302,0r-15,65r-75,0r70,527r70,0r-16,66r-215,0r15,-65r73,0r-20,-162r-268,0r-96,162r87,0r-16,65r-223,0xm259,-291r221,0r-39,-307xm545,-717v-38,0,-62,-19,-83,-40v-19,-20,-31,-29,-49,-29v-25,0,-43,19,-61,63r-45,-16v17,-69,65,-117,111,-117v38,0,61,20,82,41v19,19,32,28,49,28v25,0,44,-19,62,-63r44,16v-16,69,-65,117,-110,117","w":705},"\u00e3":{"d":"193,8v-89,0,-151,-67,-151,-173v0,-145,103,-269,226,-269v70,0,120,45,133,106r27,-101r67,0r-77,313v-4,17,-7,33,-7,42v0,20,11,31,28,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-107,105v-48,0,-79,-32,-79,-78r0,-10v-37,50,-89,89,-152,89xm216,-53v98,0,166,-108,166,-203v0,-69,-37,-116,-107,-116v-93,0,-159,99,-159,202v0,70,34,117,100,117xm405,-503v-38,0,-62,-19,-83,-40v-19,-20,-31,-29,-49,-29v-25,0,-43,19,-61,63r-45,-16v17,-69,65,-117,111,-117v38,0,61,20,82,41v19,19,32,28,49,28v25,0,44,-19,62,-63r44,16v-16,69,-65,117,-110,117","w":560},"\u0106":{"d":"436,-717r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm354,12v-154,0,-282,-105,-282,-290v0,-210,169,-392,372,-392v154,0,236,96,236,161v0,44,-28,73,-60,73v-32,0,-53,-22,-53,-50v0,-19,12,-37,29,-47v-11,-31,-64,-70,-155,-70v-170,0,-292,162,-292,318v0,144,85,229,212,229v78,0,146,-33,206,-92r44,46v-74,76,-160,114,-257,114","w":686},"\u0107":{"d":"287,-503r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm233,8v-108,0,-192,-69,-192,-184v0,-135,110,-258,244,-258v100,0,154,61,154,114v0,33,-22,60,-53,60v-21,0,-43,-15,-43,-45v0,-11,7,-28,20,-36v-15,-20,-41,-32,-80,-32v-88,0,-171,84,-171,193v0,76,50,127,129,127v49,0,100,-20,142,-56r-2,68v-42,31,-92,49,-148,49","w":464},"\u010c":{"d":"466,-715r-113,-152r35,-30r92,90r145,-91r28,37xm354,12v-154,0,-282,-105,-282,-290v0,-210,169,-392,372,-392v154,0,236,96,236,161v0,44,-28,73,-60,73v-32,0,-53,-22,-53,-50v0,-19,12,-37,29,-47v-11,-31,-64,-70,-155,-70v-170,0,-292,162,-292,318v0,144,85,229,212,229v78,0,146,-33,206,-92r44,46v-74,76,-160,114,-257,114","w":686},"\u010d":{"d":"317,-501r-113,-152r35,-30r92,90r145,-91r28,37xm233,8v-108,0,-192,-69,-192,-184v0,-135,110,-258,244,-258v100,0,154,61,154,114v0,33,-22,60,-53,60v-21,0,-43,-15,-43,-45v0,-11,7,-28,20,-36v-15,-20,-41,-32,-80,-32v-88,0,-171,84,-171,193v0,76,50,127,129,127v49,0,100,-20,142,-56r-2,68v-42,31,-92,49,-148,49","w":464},"\u00c7":{"d":"288,199v-47,0,-93,-22,-117,-42r20,-29v22,15,61,28,94,28v26,0,42,-14,42,-31v0,-18,-20,-35,-64,-28r-15,-18r42,-74v-124,-25,-218,-124,-218,-283v0,-210,169,-392,372,-392v154,0,236,96,236,161v0,44,-28,73,-60,73v-32,0,-53,-22,-53,-50v0,-19,12,-37,29,-47v-11,-31,-64,-70,-155,-70v-170,0,-292,162,-292,318v0,144,85,229,212,229v78,0,146,-33,206,-92r44,46v-74,76,-160,114,-257,114v-9,0,-18,-1,-27,-2r-13,41v53,6,79,38,79,71v0,49,-48,77,-105,77","w":686},"\u00e7":{"d":"170,199v-47,0,-93,-22,-117,-42r20,-29v22,15,61,28,94,28v26,0,42,-14,42,-31v0,-18,-20,-35,-64,-28r-15,-18r45,-78v-79,-20,-134,-83,-134,-177v0,-135,110,-258,244,-258v100,0,154,61,154,114v0,33,-22,60,-53,60v-21,0,-43,-15,-43,-45v0,-11,7,-28,20,-36v-15,-20,-41,-32,-80,-32v-88,0,-171,84,-171,193v0,76,50,127,129,127v49,0,100,-20,142,-56r-2,68v-42,31,-92,49,-148,49v-8,0,-15,-1,-22,-1r-15,44v53,6,79,38,79,71v0,49,-48,77,-105,77","w":464},"\u010a":{"d":"354,12v-154,0,-282,-105,-282,-290v0,-210,169,-392,372,-392v154,0,236,96,236,161v0,44,-28,73,-60,73v-32,0,-53,-22,-53,-50v0,-19,12,-37,29,-47v-11,-31,-64,-70,-155,-70v-170,0,-292,162,-292,318v0,144,85,229,212,229v78,0,146,-33,206,-92r44,46v-74,76,-160,114,-257,114xm482,-733v-32,0,-58,-27,-58,-59v0,-33,26,-59,58,-59v32,0,58,26,58,59v0,32,-26,59,-58,59","w":686},"\u010b":{"d":"233,8v-108,0,-192,-69,-192,-184v0,-135,110,-258,244,-258v100,0,154,61,154,114v0,33,-22,60,-53,60v-21,0,-43,-15,-43,-45v0,-11,7,-28,20,-36v-15,-20,-41,-32,-80,-32v-88,0,-171,84,-171,193v0,76,50,127,129,127v49,0,100,-20,142,-56r-2,68v-42,31,-92,49,-148,49xm333,-519v-32,0,-58,-27,-58,-59v0,-33,26,-59,58,-59v32,0,58,26,58,59v0,32,-26,59,-58,59","w":464},"\u010e":{"d":"436,-715r-113,-152r35,-30r92,90r145,-91r28,37xm3,0r16,-66r79,0r122,-526r-89,0r15,-66r209,0v128,0,205,32,265,92v43,44,69,110,69,182v0,105,-36,192,-103,259v-83,84,-200,125,-347,125r-236,0xm172,-66r79,0v121,0,212,-35,274,-98v58,-57,86,-132,86,-217v0,-56,-20,-108,-53,-140v-43,-44,-102,-71,-210,-71r-54,0","w":708},"\u010f":{"d":"43,-165v0,-149,104,-269,223,-269v68,0,121,44,135,103r80,-341r-81,0r15,-60r150,0r-144,616v-5,18,-8,33,-8,42v0,20,10,31,28,31v20,0,38,-17,58,-67r35,12v-23,72,-62,105,-108,105v-48,0,-78,-32,-78,-80v0,-3,-1,-6,0,-9v-36,50,-88,90,-152,90v-88,0,-153,-67,-153,-173xm220,-53v96,0,164,-104,164,-202v0,-70,-39,-117,-110,-117v-92,0,-157,98,-157,201v0,70,37,118,103,118xm571,-505r-20,-19v36,-39,51,-66,60,-100v6,-26,2,-51,8,-78v5,-23,19,-40,45,-40v24,0,40,16,40,42v0,34,-15,64,-40,99v-26,37,-61,69,-93,96","w":562},"\u0110":{"d":"3,0r16,-66r79,0r55,-240r-85,0r15,-62r85,0r52,-224r-89,0r15,-66r209,0v128,0,205,32,265,92v43,44,69,110,69,182v0,105,-36,192,-103,259v-83,84,-200,125,-347,125r-236,0xm172,-66r79,0v121,0,212,-35,274,-98v58,-57,86,-132,86,-217v0,-56,-20,-108,-53,-140v-43,-44,-102,-71,-210,-71r-54,0r-52,224r136,0r-15,62r-136,0","w":708},"\u0111":{"d":"291,-519r13,-61r155,0r22,-92r-81,0r15,-60r150,0r-36,152r77,0r-13,61r-78,0r-94,403v-5,18,-8,33,-8,42v0,20,10,31,28,31v20,0,38,-17,58,-67r35,12v-23,72,-62,105,-108,105v-48,0,-78,-32,-78,-80v0,-3,-1,-6,0,-9v-36,50,-88,90,-152,90v-88,0,-153,-67,-153,-173v0,-149,104,-269,223,-269v68,0,121,44,135,103r44,-188r-154,0xm220,-53v96,0,164,-104,164,-202v0,-70,-39,-117,-110,-117v-92,0,-157,98,-157,201v0,70,37,118,103,118","w":562},"\u00c9":{"d":"375,-717r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm3,0r16,-66r79,0r122,-526r-89,0r15,-66r479,0r-39,161r-71,0r22,-96r-243,0r-52,226r211,0r-14,64r-212,0r-55,238r244,0r23,-96r71,0r-37,161r-470,0","w":583},"\u00e9":{"d":"423,-192r-313,0v-1,7,-1,14,-1,21v0,75,62,119,136,119v48,0,86,-10,141,-39r-15,68v-45,22,-82,31,-140,31v-100,0,-191,-64,-191,-180v0,-144,109,-262,236,-262v99,0,163,60,163,156v0,26,-5,55,-16,86xm273,-373v-67,0,-127,53,-152,127r245,0v5,-13,7,-28,7,-42v0,-46,-31,-85,-100,-85xm277,-503r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48","w":476},"\u0114":{"d":"3,0r16,-66r79,0r122,-526r-89,0r15,-66r479,0r-39,161r-71,0r22,-96r-243,0r-52,226r211,0r-14,64r-212,0r-55,238r244,0r23,-96r71,0r-37,161r-470,0xm410,-721v-76,0,-123,-57,-130,-142r46,-15v12,57,43,89,95,89v45,0,88,-25,127,-88r41,22v-40,84,-111,134,-179,134","w":583},"\u0115":{"d":"423,-192r-313,0v-1,7,-1,14,-1,21v0,75,62,119,136,119v48,0,86,-10,141,-39r-15,68v-45,22,-82,31,-140,31v-100,0,-191,-64,-191,-180v0,-144,109,-262,236,-262v99,0,163,60,163,156v0,26,-5,55,-16,86xm273,-373v-67,0,-127,53,-152,127r245,0v5,-13,7,-28,7,-42v0,-46,-31,-85,-100,-85xm314,-507v-76,0,-123,-57,-130,-142r46,-15v12,57,43,89,95,89v45,0,88,-25,127,-88r41,22v-40,84,-111,134,-179,134","w":476},"\u011a":{"d":"405,-715r-113,-152r35,-30r92,90r145,-91r28,37xm3,0r16,-66r79,0r122,-526r-89,0r15,-66r479,0r-39,161r-71,0r22,-96r-243,0r-52,226r211,0r-14,64r-212,0r-55,238r244,0r23,-96r71,0r-37,161r-470,0","w":583},"\u011b":{"d":"423,-192r-313,0v-1,7,-1,14,-1,21v0,75,62,119,136,119v48,0,86,-10,141,-39r-15,68v-45,22,-82,31,-140,31v-100,0,-191,-64,-191,-180v0,-144,109,-262,236,-262v99,0,163,60,163,156v0,26,-5,55,-16,86xm273,-373v-67,0,-127,53,-152,127r245,0v5,-13,7,-28,7,-42v0,-46,-31,-85,-100,-85xm308,-501r-113,-152r35,-30r92,90r145,-91r28,37","w":476},"\u00ca":{"d":"283,-715r-28,-38r187,-145r113,152r-34,30r-93,-90xm3,0r16,-66r79,0r122,-526r-89,0r15,-66r479,0r-39,161r-71,0r22,-96r-243,0r-52,226r211,0r-14,64r-212,0r-55,238r244,0r23,-96r71,0r-37,161r-470,0","w":583},"\u00ea":{"d":"423,-192r-313,0v-1,7,-1,14,-1,21v0,75,62,119,136,119v48,0,86,-10,141,-39r-15,68v-45,22,-82,31,-140,31v-100,0,-191,-64,-191,-180v0,-144,109,-262,236,-262v99,0,163,60,163,156v0,26,-5,55,-16,86xm273,-373v-67,0,-127,53,-152,127r245,0v5,-13,7,-28,7,-42v0,-46,-31,-85,-100,-85xm186,-501r-28,-38r187,-145r113,152r-34,30r-93,-90","w":476},"\u00cb":{"d":"508,-735v-31,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-25,57,-57,57xm334,-735v-32,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-26,57,-57,57xm3,0r16,-66r79,0r122,-526r-89,0r15,-66r479,0r-39,161r-71,0r22,-96r-243,0r-52,226r211,0r-14,64r-212,0r-55,238r244,0r23,-96r71,0r-37,161r-470,0","w":583},"\u00eb":{"d":"423,-192r-313,0v-1,7,-1,14,-1,21v0,75,62,119,136,119v48,0,86,-10,141,-39r-15,68v-45,22,-82,31,-140,31v-100,0,-191,-64,-191,-180v0,-144,109,-262,236,-262v99,0,163,60,163,156v0,26,-5,55,-16,86xm273,-373v-67,0,-127,53,-152,127r245,0v5,-13,7,-28,7,-42v0,-46,-31,-85,-100,-85xm236,-521v-32,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-26,57,-57,57xm410,-521v-31,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-25,57,-57,57","w":476},"\u0116":{"d":"3,0r16,-66r79,0r122,-526r-89,0r15,-66r479,0r-39,161r-71,0r22,-96r-243,0r-52,226r211,0r-14,64r-212,0r-55,238r244,0r23,-96r71,0r-37,161r-470,0xm421,-733v-32,0,-58,-27,-58,-59v0,-33,26,-59,58,-59v32,0,58,26,58,59v0,32,-26,59,-58,59","w":583},"\u0117":{"d":"423,-192r-313,0v-1,7,-1,14,-1,21v0,75,62,119,136,119v48,0,86,-10,141,-39r-15,68v-45,22,-82,31,-140,31v-100,0,-191,-64,-191,-180v0,-144,109,-262,236,-262v99,0,163,60,163,156v0,26,-5,55,-16,86xm273,-373v-67,0,-127,53,-152,127r245,0v5,-13,7,-28,7,-42v0,-46,-31,-85,-100,-85xm324,-519v-32,0,-58,-27,-58,-59v0,-33,26,-59,58,-59v32,0,58,26,58,59v0,32,-26,59,-58,59","w":476},"\u00c8":{"d":"3,0r16,-66r79,0r122,-526r-89,0r15,-66r479,0r-39,161r-71,0r22,-96r-243,0r-52,226r211,0r-14,64r-212,0r-55,238r244,0r23,-96r71,0r-37,161r-470,0xm433,-712r-117,-87v-19,-15,-26,-29,-26,-45v0,-23,20,-42,42,-42v19,0,31,9,46,32r78,123","w":583},"\u00e8":{"d":"423,-192r-313,0v-1,7,-1,14,-1,21v0,75,62,119,136,119v48,0,86,-10,141,-39r-15,68v-45,22,-82,31,-140,31v-100,0,-191,-64,-191,-180v0,-144,109,-262,236,-262v99,0,163,60,163,156v0,26,-5,55,-16,86xm273,-373v-67,0,-127,53,-152,127r245,0v5,-13,7,-28,7,-42v0,-46,-31,-85,-100,-85xm336,-498r-117,-87v-19,-15,-26,-29,-26,-45v0,-23,20,-42,42,-42v19,0,31,9,46,32r78,123","w":476},"\u0112":{"d":"3,0r16,-66r79,0r122,-526r-89,0r15,-66r479,0r-39,161r-71,0r22,-96r-243,0r-52,226r211,0r-14,64r-212,0r-55,238r244,0r23,-96r71,0r-37,161r-470,0xm260,-749r15,-63r300,0r-13,63r-302,0","w":583},"\u0113":{"d":"423,-192r-313,0v-1,7,-1,14,-1,21v0,75,62,119,136,119v48,0,86,-10,141,-39r-15,68v-45,22,-82,31,-140,31v-100,0,-191,-64,-191,-180v0,-144,109,-262,236,-262v99,0,163,60,163,156v0,26,-5,55,-16,86xm273,-373v-67,0,-127,53,-152,127r245,0v5,-13,7,-28,7,-42v0,-46,-31,-85,-100,-85xm164,-535r15,-63r300,0r-13,63r-302,0","w":476},"\u0118":{"d":"3,0r16,-66r79,0r122,-526r-89,0r15,-66r479,0r-39,161r-71,0r22,-96r-243,0r-52,226r211,0r-14,64r-212,0r-55,238r244,0r23,-96r71,0r-37,161r-48,0v-44,33,-77,70,-77,106v0,24,16,37,44,37v20,0,38,-4,51,-9r-12,50v-12,8,-34,17,-64,17v-51,0,-83,-28,-83,-74v0,-47,34,-90,84,-127r-365,0","w":583},"\u0119":{"d":"261,201v-50,0,-83,-28,-83,-74v0,-45,32,-88,79,-120v-8,0,-17,1,-26,1v-100,0,-191,-64,-191,-180v0,-144,109,-262,236,-262v99,0,163,60,163,156v0,26,-5,55,-16,86r-313,0v-1,7,-1,14,-1,21v0,75,62,119,136,119v48,0,86,-10,141,-39r-15,68v-57,27,-129,77,-129,129v0,24,17,37,44,37v21,0,38,-4,51,-9r-11,50v-12,8,-34,17,-65,17xm273,-373v-67,0,-127,53,-152,127r245,0v5,-13,7,-28,7,-42v0,-46,-31,-85,-100,-85","w":476},"\u00d0":{"d":"3,0r16,-66r79,0r55,-240r-85,0r15,-62r85,0r52,-224r-89,0r15,-66r209,0v128,0,205,32,265,92v43,44,69,110,69,182v0,105,-36,192,-103,259v-83,84,-200,125,-347,125r-236,0xm172,-66r79,0v121,0,212,-35,274,-98v58,-57,86,-132,86,-217v0,-56,-20,-108,-53,-140v-43,-44,-102,-71,-210,-71r-54,0r-52,224r136,0r-15,62r-136,0","w":708},"\u00f0":{"d":"217,7v-111,0,-180,-79,-180,-179v0,-124,103,-241,220,-241v79,0,126,39,146,100v3,-21,4,-44,4,-70v0,-76,-21,-143,-50,-190r-116,105r-37,-40r120,-109v-29,-31,-59,-47,-89,-56v-8,25,-24,37,-46,37v-26,0,-48,-19,-48,-49v0,-23,20,-51,65,-51v49,0,111,25,163,79r89,-81r37,40r-92,83v38,58,66,144,66,239v0,147,-31,252,-98,319v-39,39,-91,64,-154,64xm221,-54v42,0,80,-18,108,-47v32,-33,52,-81,52,-131v0,-73,-47,-119,-116,-119v-89,0,-157,86,-157,178v0,73,47,119,113,119","w":511},"\u011e":{"d":"519,0r11,-64v-56,45,-126,74,-205,74v-142,0,-254,-105,-254,-269v0,-217,170,-410,391,-410v86,0,157,29,197,67v23,23,38,48,38,80v0,42,-29,67,-59,67v-32,0,-53,-21,-53,-50v0,-17,9,-32,26,-44v-3,-5,-8,-10,-13,-15v-26,-20,-75,-38,-139,-38v-184,0,-310,167,-310,340v0,123,75,206,193,206v76,0,144,-26,197,-67r33,-134r-184,0r15,-63r257,0r-76,320r-65,0xm480,-721v-76,0,-123,-57,-130,-142r46,-15v12,57,43,89,95,89v45,0,88,-25,127,-88r41,22v-40,84,-111,134,-179,134","w":718},"\u011f":{"d":"181,200v-58,0,-121,-24,-146,-48v-17,-18,-23,-32,-23,-50v0,-31,20,-53,49,-53v30,0,48,24,48,49v0,9,-3,19,-8,26v17,11,44,19,80,19v43,0,74,-11,101,-38v23,-23,39,-59,51,-108r20,-86v-36,55,-90,86,-149,86v-95,0,-161,-67,-161,-173v0,-142,101,-258,228,-258v76,0,122,49,136,103r26,-98r67,0r-102,439v-14,59,-32,103,-65,135v-37,38,-86,55,-152,55xm227,-64v96,0,161,-98,161,-194v0,-70,-43,-114,-112,-114v-92,0,-159,89,-159,192v0,71,44,116,110,116xm338,-507v-76,0,-123,-57,-130,-142r46,-15v12,57,43,89,95,89v45,0,88,-25,127,-88r41,22v-40,84,-111,134,-179,134","w":528},"\u0122":{"d":"519,0r11,-64v-56,45,-126,74,-205,74v-142,0,-254,-105,-254,-269v0,-217,170,-410,391,-410v86,0,157,29,197,67v23,23,38,48,38,80v0,42,-29,67,-59,67v-32,0,-53,-21,-53,-50v0,-17,9,-32,26,-44v-3,-5,-8,-10,-13,-15v-26,-20,-75,-38,-139,-38v-184,0,-310,167,-310,340v0,123,75,206,193,206v76,0,144,-26,197,-67r33,-134r-184,0r15,-63r257,0r-76,320r-65,0xm187,278r-13,-25v72,-35,104,-80,106,-100v-25,-8,-37,-32,-37,-48v0,-29,22,-52,52,-52v29,0,55,23,55,60v0,58,-55,128,-163,165","w":718},"\u0123":{"d":"181,200v-58,0,-121,-24,-146,-48v-17,-18,-23,-32,-23,-50v0,-31,20,-53,49,-53v30,0,48,24,48,49v0,9,-3,19,-8,26v17,11,44,19,80,19v43,0,74,-11,101,-38v23,-23,39,-59,51,-108r20,-86v-36,55,-90,86,-149,86v-95,0,-161,-67,-161,-173v0,-142,101,-258,228,-258v76,0,122,49,136,103r26,-98r67,0r-102,439v-14,59,-32,103,-65,135v-37,38,-86,55,-152,55xm227,-64v96,0,161,-98,161,-194v0,-70,-43,-114,-112,-114v-92,0,-159,89,-159,192v0,71,44,116,110,116xm455,-747r13,25v-72,35,-104,80,-106,100v25,8,37,32,37,48v0,29,-22,52,-52,52v-29,0,-55,-23,-55,-60v0,-58,55,-128,163,-165","w":528},"\u0120":{"d":"519,0r11,-64v-56,45,-126,74,-205,74v-142,0,-254,-105,-254,-269v0,-217,170,-410,391,-410v86,0,157,29,197,67v23,23,38,48,38,80v0,42,-29,67,-59,67v-32,0,-53,-21,-53,-50v0,-17,9,-32,26,-44v-3,-5,-8,-10,-13,-15v-26,-20,-75,-38,-139,-38v-184,0,-310,167,-310,340v0,123,75,206,193,206v76,0,144,-26,197,-67r33,-134r-184,0r15,-63r257,0r-76,320r-65,0xm491,-733v-32,0,-58,-27,-58,-59v0,-33,26,-59,58,-59v32,0,58,26,58,59v0,32,-26,59,-58,59","w":718},"\u0121":{"d":"181,200v-58,0,-121,-24,-146,-48v-17,-18,-23,-32,-23,-50v0,-31,20,-53,49,-53v30,0,48,24,48,49v0,9,-3,19,-8,26v17,11,44,19,80,19v43,0,74,-11,101,-38v23,-23,39,-59,51,-108r20,-86v-36,55,-90,86,-149,86v-95,0,-161,-67,-161,-173v0,-142,101,-258,228,-258v76,0,122,49,136,103r26,-98r67,0r-102,439v-14,59,-32,103,-65,135v-37,38,-86,55,-152,55xm227,-64v96,0,161,-98,161,-194v0,-70,-43,-114,-112,-114v-92,0,-159,89,-159,192v0,71,44,116,110,116xm348,-519v-32,0,-58,-27,-58,-59v0,-33,26,-59,58,-59v32,0,58,26,58,59v0,32,-26,59,-58,59","w":528},"\u0126":{"d":"773,-512r-13,59r-68,0r-89,387r89,0r-16,66r-244,0r15,-66r81,0r55,-232r-357,0r-54,232r91,0r-15,66r-245,0r16,-66r79,0r89,-387r-65,0r13,-59r66,0r19,-82r-89,0r15,-64r244,0r-15,64r-81,0r-19,82r357,0r19,-82r-92,0r16,-64r244,0r-15,64r-79,0r-19,82r67,0xm241,-363r357,0r20,-90r-357,0","w":767},"\u0127":{"d":"29,0r120,-519r-78,0r13,-61r79,0r22,-92r-81,0r15,-60r149,0r-36,152r156,0r-14,61r-156,0r-42,181v32,-49,82,-95,142,-95v68,0,120,47,121,116v0,21,-4,44,-11,67r-37,138v-4,14,-6,29,-6,37v0,20,12,32,29,32v20,0,37,-17,56,-67r35,12v-21,69,-55,105,-105,105v-52,0,-85,-33,-85,-79v0,-13,3,-31,7,-47r38,-140v5,-19,7,-34,7,-50v-1,-38,-30,-64,-71,-64v-58,0,-123,54,-147,156r-50,217r-70,0","w":527},"\u00cd":{"d":"3,0r16,-66r88,0r121,-526r-91,0r15,-66r253,0r-15,66r-88,0r-121,526r91,0r-16,66r-253,0xm264,-717r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48"},"\u00ed":{"d":"175,-503r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm149,7v-52,0,-84,-32,-84,-80v0,-12,4,-31,8,-46r67,-246r-83,0r16,-61r153,0r-84,310v-4,16,-7,33,-7,42v0,20,12,31,29,31v21,0,39,-17,58,-67r35,12v-23,72,-59,105,-108,105","w":295},"\u012c":{"d":"3,0r16,-66r88,0r121,-526r-91,0r15,-66r253,0r-15,66r-88,0r-121,526r91,0r-16,66r-253,0xm301,-721v-76,0,-123,-57,-130,-142r46,-15v12,57,43,89,95,89v45,0,88,-25,127,-88r41,22v-40,84,-111,134,-179,134"},"\u012d":{"d":"149,7v-52,0,-84,-32,-84,-80v0,-12,4,-31,8,-46r67,-246r-83,0r16,-61r153,0r-84,310v-4,16,-7,33,-7,42v0,20,12,31,29,31v21,0,39,-17,58,-67r35,12v-23,72,-59,105,-108,105xm211,-507v-76,0,-123,-57,-130,-142r46,-15v12,57,43,89,95,89v45,0,88,-25,127,-88r41,22v-40,84,-111,134,-179,134","w":295},"\u00ce":{"d":"3,0r16,-66r88,0r121,-526r-91,0r15,-66r253,0r-15,66r-88,0r-121,526r91,0r-16,66r-253,0xm173,-715r-28,-38r187,-145r113,152r-34,30r-93,-90"},"\u00ee":{"d":"83,-501r-28,-38r187,-145r113,152r-34,30r-93,-90xm149,7v-52,0,-84,-32,-84,-80v0,-12,4,-31,8,-46r67,-246r-83,0r16,-61r153,0r-84,310v-4,16,-7,33,-7,42v0,20,12,31,29,31v21,0,39,-17,58,-67r35,12v-23,72,-59,105,-108,105","w":295},"\u00cf":{"d":"3,0r16,-66r88,0r121,-526r-91,0r15,-66r253,0r-15,66r-88,0r-121,526r91,0r-16,66r-253,0xm398,-735v-31,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-25,57,-57,57xm224,-735v-32,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-26,57,-57,57"},"\u00ef":{"d":"307,-521v-31,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-25,57,-57,57xm133,-521v-32,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-26,57,-57,57xm149,7v-52,0,-84,-32,-84,-80v0,-12,4,-31,8,-46r67,-246r-83,0r16,-61r153,0r-84,310v-4,16,-7,33,-7,42v0,20,12,31,29,31v21,0,39,-17,58,-67r35,12v-23,72,-59,105,-108,105","w":295},"\u0130":{"d":"3,0r16,-66r88,0r121,-526r-91,0r15,-66r253,0r-15,66r-88,0r-121,526r91,0r-16,66r-253,0xm312,-733v-32,0,-58,-27,-58,-59v0,-33,26,-59,58,-59v32,0,58,26,58,59v0,32,-26,59,-58,59"},"\u0131":{"d":"149,7v-52,0,-84,-32,-84,-80v0,-12,4,-31,8,-46r67,-246r-83,0r16,-61r153,0r-84,310v-4,16,-7,33,-7,42v0,20,12,31,29,31v21,0,39,-17,58,-67r35,12v-23,72,-59,105,-108,105","w":295},"\u00cc":{"d":"3,0r16,-66r88,0r121,-526r-91,0r15,-66r253,0r-15,66r-88,0r-121,526r91,0r-16,66r-253,0xm323,-712r-117,-87v-19,-15,-26,-29,-26,-45v0,-23,20,-42,42,-42v19,0,31,9,46,32r78,123"},"\u00ec":{"d":"149,7v-52,0,-84,-32,-84,-80v0,-12,4,-31,8,-46r67,-246r-83,0r16,-61r153,0r-84,310v-4,16,-7,33,-7,42v0,20,12,31,29,31v21,0,39,-17,58,-67r35,12v-23,72,-59,105,-108,105xm233,-498r-117,-87v-19,-15,-26,-29,-26,-45v0,-23,20,-42,42,-42v19,0,31,9,46,32r78,123","w":295},"\u012a":{"d":"3,0r16,-66r88,0r121,-526r-91,0r15,-66r253,0r-15,66r-88,0r-121,526r91,0r-16,66r-253,0xm151,-749r15,-63r300,0r-13,63r-302,0"},"\u012b":{"d":"149,7v-52,0,-84,-32,-84,-80v0,-12,4,-31,8,-46r67,-246r-83,0r16,-61r153,0r-84,310v-4,16,-7,33,-7,42v0,20,12,31,29,31v21,0,39,-17,58,-67r35,12v-23,72,-59,105,-108,105xm61,-535r15,-63r300,0r-13,63r-302,0","w":295},"\u012e":{"d":"3,0r16,-66r88,0r121,-526r-91,0r15,-66r253,0r-15,66r-88,0r-121,526r91,0r-16,66r-99,0v-44,33,-77,70,-77,106v0,24,16,37,44,37v20,0,38,-4,51,-9r-12,50v-12,8,-34,17,-64,17v-51,0,-83,-28,-83,-74v0,-47,34,-90,84,-127r-97,0"},"\u012f":{"d":"222,-110r35,12v-10,33,-24,58,-45,78v-39,41,-101,74,-101,126v0,24,16,37,44,37v21,0,38,-4,51,-9r-11,50v-12,8,-34,17,-65,17v-50,0,-83,-28,-83,-74v0,-47,34,-88,80,-122v-39,-7,-62,-37,-62,-78v0,-12,4,-31,8,-46r67,-246r-83,0r16,-61r153,0r-84,310v-4,16,-7,33,-7,42v0,20,11,31,28,31v21,0,40,-17,59,-67xm204,-508v-28,0,-51,-23,-51,-51v0,-28,23,-51,51,-51v27,0,50,23,50,51v0,28,-23,51,-50,51","w":295},"\u0136":{"d":"641,-592r-263,222r145,304r90,0r-15,66r-128,0r-150,-325r-109,92r-39,167r91,0r-16,66r-244,0r16,-66r79,0r122,-526r-89,0r15,-66r240,0r-15,65r-77,0r-64,277r320,-277r-85,0r14,-65r249,0r-15,66r-72,0xm163,278r-13,-25v72,-35,104,-80,106,-100v-25,-8,-37,-32,-37,-48v0,-29,22,-52,52,-52v29,0,55,23,55,60v0,58,-55,128,-163,165","w":657},"\u0137":{"d":"99,0r-70,0r156,-672r-81,0r15,-60r149,0r-120,515v125,-51,191,-96,208,-123v-15,-8,-25,-26,-25,-41v0,-30,22,-53,52,-53v28,0,51,22,51,57v0,61,-76,122,-176,170r45,107v9,24,16,38,23,46v8,9,15,10,23,10v16,0,32,-16,47,-78r37,11v-21,94,-56,118,-96,118v-21,0,-39,-5,-56,-20v-14,-12,-26,-30,-37,-57r-48,-116v-20,9,-41,18,-59,25xm46,278r-13,-25v72,-35,104,-80,106,-100v-25,-8,-37,-32,-37,-48v0,-29,22,-52,52,-52v29,0,55,23,55,60v0,58,-55,128,-163,165","w":471},"\u0139":{"d":"273,-728r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm3,0r16,-66r79,0r122,-526r-89,0r15,-66r250,0r-15,66r-87,0r-122,527r224,0r24,-101r71,0r-38,166r-450,0","w":549},"\u013a":{"d":"231,-774r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm135,7v-51,0,-83,-32,-83,-80v0,-12,3,-28,7,-44r129,-555r-80,0r15,-60r149,0r-143,615v-3,16,-7,33,-7,42v0,21,11,32,28,32v21,0,39,-17,59,-67r35,12v-23,72,-60,105,-109,105","w":278},"\u013d":{"d":"410,-421r-20,-19v36,-39,51,-66,60,-100v6,-26,2,-51,8,-78v5,-23,19,-40,45,-40v24,0,40,16,40,42v0,34,-15,64,-40,99v-26,37,-61,69,-93,96xm3,0r16,-66r79,0r122,-526r-89,0r15,-66r250,0r-15,66r-87,0r-122,527r224,0r24,-101r71,0r-38,166r-450,0","w":549},"\u013e":{"d":"278,-505r-20,-19v36,-39,51,-66,60,-100v6,-26,2,-51,8,-78v5,-23,19,-40,45,-40v24,0,40,16,40,42v0,34,-15,64,-40,99v-26,37,-61,69,-93,96xm135,7v-51,0,-83,-32,-83,-80v0,-12,3,-28,7,-44r129,-555r-80,0r15,-60r149,0r-143,615v-3,16,-7,33,-7,42v0,21,11,32,28,32v21,0,39,-17,59,-67r35,12v-23,72,-60,105,-109,105","w":278},"\u013b":{"d":"96,278r-13,-25v72,-35,104,-80,106,-100v-25,-8,-37,-32,-37,-48v0,-29,22,-52,52,-52v29,0,55,23,55,60v0,58,-55,128,-163,165xm3,0r16,-66r79,0r122,-526r-89,0r15,-66r250,0r-15,66r-87,0r-122,527r224,0r24,-101r71,0r-38,166r-450,0","w":549},"\u013c":{"d":"-10,278r-13,-25v72,-35,104,-80,106,-100v-25,-8,-37,-32,-37,-48v0,-29,22,-52,52,-52v29,0,55,23,55,60v0,58,-55,128,-163,165xm135,7v-51,0,-83,-32,-83,-80v0,-12,3,-28,7,-44r129,-555r-80,0r15,-60r149,0r-143,615v-3,16,-7,33,-7,42v0,21,11,32,28,32v21,0,39,-17,59,-67r35,12v-23,72,-60,105,-109,105","w":278},"\u013f":{"d":"3,0r16,-66r79,0r122,-526r-89,0r15,-66r250,0r-15,66r-87,0r-122,527r224,0r24,-101r71,0r-38,166r-450,0xm483,-296v-32,0,-58,-27,-58,-59v0,-33,26,-59,58,-59v32,0,58,26,58,59v0,32,-26,59,-58,59","w":549},"\u0140":{"d":"135,7v-51,0,-83,-32,-83,-80v0,-12,3,-28,7,-44r129,-555r-80,0r15,-60r149,0r-143,615v-3,16,-7,33,-7,42v0,21,11,32,28,32v21,0,39,-17,59,-67r35,12v-23,72,-60,105,-109,105xm310,-280v-32,0,-58,-27,-58,-59v0,-33,26,-59,58,-59v32,0,58,26,58,59v0,32,-26,59,-58,59","w":326},"\u0141":{"d":"12,0r16,-66r79,0r48,-209r-93,37r-22,-53r131,-52r58,-249r-89,0r15,-66r250,0r-15,66r-87,0r-51,218r125,-49r21,53r-162,65r-55,240r224,0r24,-101r71,0r-38,166r-450,0","w":558},"\u0142":{"d":"152,7v-51,0,-83,-32,-83,-80v0,-12,3,-28,7,-44r56,-244r-89,38r-22,-51r127,-54r57,-244r-80,0r15,-60r149,0r-63,271r107,-47r22,51r-145,64r-64,276v-3,16,-7,33,-7,42v0,21,11,32,28,32v21,0,39,-17,59,-67r35,12v-23,72,-60,105,-109,105","w":313},"\u0143":{"d":"464,-717r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm548,3r-270,-537r-108,468r91,0r-15,66r-243,0r16,-66r79,0r122,-526r-89,0r15,-66r151,0r253,503r101,-437r-92,0r16,-66r239,0r-15,66r-77,0r-137,595r-37,0","w":752},"\u0144":{"d":"309,-503r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm413,7v-52,0,-84,-33,-84,-79v0,-13,3,-33,8,-48r40,-139v5,-19,7,-34,7,-50v0,-38,-28,-64,-69,-64v-57,0,-121,54,-146,156r-55,217r-70,0r92,-365r-80,0r15,-61r142,0r-24,101v37,-62,90,-108,150,-108v68,0,117,47,117,116v0,21,-4,44,-11,67r-39,138v-4,13,-7,29,-7,37v0,20,12,32,29,32v20,0,37,-17,57,-67r35,12v-22,69,-57,105,-107,105","w":544},"\u0147":{"d":"495,-715r-113,-152r35,-30r92,90r145,-91r28,37xm548,3r-270,-537r-108,468r91,0r-15,66r-243,0r16,-66r79,0r122,-526r-89,0r15,-66r151,0r253,503r101,-437r-92,0r16,-66r239,0r-15,66r-77,0r-137,595r-37,0","w":752},"\u0148":{"d":"339,-501r-113,-152r35,-30r92,90r145,-91r28,37xm413,7v-52,0,-84,-33,-84,-79v0,-13,3,-33,8,-48r40,-139v5,-19,7,-34,7,-50v0,-38,-28,-64,-69,-64v-57,0,-121,54,-146,156r-55,217r-70,0r92,-365r-80,0r15,-61r142,0r-24,101v37,-62,90,-108,150,-108v68,0,117,47,117,116v0,21,-4,44,-11,67r-39,138v-4,13,-7,29,-7,37v0,20,12,32,29,32v20,0,37,-17,57,-67r35,12v-22,69,-57,105,-107,105","w":544},"\u0145":{"d":"208,278r-13,-25v72,-35,104,-80,106,-100v-25,-8,-37,-32,-37,-48v0,-29,22,-52,52,-52v29,0,55,23,55,60v0,58,-55,128,-163,165xm548,3r-270,-537r-108,468r91,0r-15,66r-243,0r16,-66r79,0r122,-526r-89,0r15,-66r151,0r253,503r101,-437r-92,0r16,-66r239,0r-15,66r-77,0r-137,595r-37,0","w":752},"\u0146":{"d":"96,278r-13,-25v72,-35,104,-80,106,-100v-25,-8,-37,-32,-37,-48v0,-29,22,-52,52,-52v29,0,55,23,55,60v0,58,-55,128,-163,165xm413,7v-52,0,-84,-33,-84,-79v0,-13,3,-33,8,-48r40,-139v5,-19,7,-34,7,-50v0,-38,-28,-64,-69,-64v-57,0,-121,54,-146,156r-55,217r-70,0r92,-365r-80,0r15,-61r142,0r-24,101v37,-62,90,-108,150,-108v68,0,117,47,117,116v0,21,-4,44,-11,67r-39,138v-4,13,-7,29,-7,37v0,20,12,32,29,32v20,0,37,-17,57,-67r35,12v-22,69,-57,105,-107,105","w":544},"\u00d1":{"d":"548,3r-270,-537r-108,468r91,0r-15,66r-243,0r16,-66r79,0r122,-526r-89,0r15,-66r151,0r253,503r101,-437r-92,0r16,-66r239,0r-15,66r-77,0r-137,595r-37,0xm567,-717v-38,0,-62,-19,-83,-40v-19,-20,-31,-29,-49,-29v-25,0,-43,19,-61,63r-45,-16v17,-69,65,-117,111,-117v38,0,61,20,82,41v19,19,32,28,49,28v25,0,44,-19,62,-63r44,16v-16,69,-65,117,-110,117","w":752},"\u00f1":{"d":"413,7v-52,0,-84,-33,-84,-79v0,-13,3,-33,8,-48r40,-139v5,-19,7,-34,7,-50v0,-38,-28,-64,-69,-64v-57,0,-121,54,-146,156r-55,217r-70,0r92,-365r-80,0r15,-61r142,0r-24,101v37,-62,90,-108,150,-108v68,0,117,47,117,116v0,21,-4,44,-11,67r-39,138v-4,13,-7,29,-7,37v0,20,12,32,29,32v20,0,37,-17,57,-67r35,12v-22,69,-57,105,-107,105xm412,-503v-38,0,-62,-19,-83,-40v-19,-20,-31,-29,-49,-29v-25,0,-43,19,-61,63r-45,-16v17,-69,65,-117,111,-117v38,0,61,20,82,41v19,19,32,28,49,28v25,0,44,-19,62,-63r44,16v-16,69,-65,117,-110,117","w":544},"\u00d3":{"d":"453,-717r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm349,12v-176,0,-278,-123,-278,-283v0,-195,155,-399,366,-399v176,0,278,123,278,283v0,195,-155,399,-366,399xm355,-56v162,0,283,-166,283,-330v0,-117,-67,-216,-207,-216v-162,0,-283,166,-283,330v0,117,67,216,207,216","w":732},"\u00f3":{"d":"292,-503r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm226,8v-117,0,-185,-85,-185,-186v0,-132,103,-256,241,-256v117,0,185,86,185,186v0,133,-103,256,-241,256xm229,-53v94,0,167,-89,167,-195v0,-78,-51,-125,-117,-125v-93,0,-167,89,-167,196v0,77,51,124,117,124","w":508},"\u014e":{"d":"349,12v-176,0,-278,-123,-278,-283v0,-195,155,-399,366,-399v176,0,278,123,278,283v0,195,-155,399,-366,399xm355,-56v162,0,283,-166,283,-330v0,-117,-67,-216,-207,-216v-162,0,-283,166,-283,330v0,117,67,216,207,216xm488,-721v-76,0,-123,-57,-130,-142r46,-15v12,57,43,89,95,89v45,0,88,-25,127,-88r41,22v-40,84,-111,134,-179,134","w":732},"\u014f":{"d":"226,8v-117,0,-185,-85,-185,-186v0,-132,103,-256,241,-256v117,0,185,86,185,186v0,133,-103,256,-241,256xm229,-53v94,0,167,-89,167,-195v0,-78,-51,-125,-117,-125v-93,0,-167,89,-167,196v0,77,51,124,117,124xm327,-507v-76,0,-123,-57,-130,-142r46,-15v12,57,43,89,95,89v45,0,88,-25,127,-88r41,22v-40,84,-111,134,-179,134","w":508},"\u00d4":{"d":"361,-715r-28,-38r187,-145r113,152r-34,30r-93,-90xm349,12v-176,0,-278,-123,-278,-283v0,-195,155,-399,366,-399v176,0,278,123,278,283v0,195,-155,399,-366,399xm355,-56v162,0,283,-166,283,-330v0,-117,-67,-216,-207,-216v-162,0,-283,166,-283,330v0,117,67,216,207,216","w":732},"\u00f4":{"d":"200,-501r-28,-38r187,-145r113,152r-34,30r-93,-90xm226,8v-117,0,-185,-85,-185,-186v0,-132,103,-256,241,-256v117,0,185,86,185,186v0,133,-103,256,-241,256xm229,-53v94,0,167,-89,167,-195v0,-78,-51,-125,-117,-125v-93,0,-167,89,-167,196v0,77,51,124,117,124","w":508},"\u00d6":{"d":"586,-735v-31,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-25,57,-57,57xm412,-735v-32,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-26,57,-57,57xm349,12v-176,0,-278,-123,-278,-283v0,-195,155,-399,366,-399v176,0,278,123,278,283v0,195,-155,399,-366,399xm355,-56v162,0,283,-166,283,-330v0,-117,-67,-216,-207,-216v-162,0,-283,166,-283,330v0,117,67,216,207,216","w":732},"\u00f6":{"d":"424,-521v-31,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-25,57,-57,57xm250,-521v-32,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-26,57,-57,57xm226,8v-117,0,-185,-85,-185,-186v0,-132,103,-256,241,-256v117,0,185,86,185,186v0,133,-103,256,-241,256xm229,-53v94,0,167,-89,167,-195v0,-78,-51,-125,-117,-125v-93,0,-167,89,-167,196v0,77,51,124,117,124","w":508},"\u0152":{"d":"401,0v-128,0,-205,-32,-265,-92v-44,-44,-69,-110,-69,-182v0,-105,36,-192,103,-259v83,-84,200,-125,347,-125r456,0r-38,161r-71,0r22,-96r-243,0r-52,226r211,0r-15,64r-211,0r-55,238r243,0r23,-96r71,0r-37,161r-420,0xm408,-66r39,0r121,-526r-63,0v-122,0,-212,35,-274,98v-58,57,-86,132,-86,217v0,56,20,108,52,140v44,44,103,71,211,71","w":932},"\u0153":{"d":"734,-91r-15,68v-45,22,-81,31,-136,31v-82,0,-146,-45,-169,-111v-41,64,-104,111,-189,111v-117,0,-184,-85,-184,-186v0,-132,103,-256,239,-256v88,0,141,47,163,114v38,-66,99,-114,184,-114v97,0,160,60,160,156v0,26,-5,55,-16,86r-313,0v-1,7,-1,14,-1,21v0,75,62,119,136,119v48,0,86,-10,141,-39xm230,-53v94,0,168,-89,168,-195v0,-78,-52,-125,-119,-125v-93,0,-167,89,-167,196v0,77,51,124,118,124xm622,-373v-68,0,-128,53,-153,127r245,0v5,-13,7,-28,7,-42v0,-46,-31,-85,-99,-85","w":823},"\u00d2":{"d":"349,12v-176,0,-278,-123,-278,-283v0,-195,155,-399,366,-399v176,0,278,123,278,283v0,195,-155,399,-366,399xm355,-56v162,0,283,-166,283,-330v0,-117,-67,-216,-207,-216v-162,0,-283,166,-283,330v0,117,67,216,207,216xm511,-712r-117,-87v-19,-15,-26,-29,-26,-45v0,-23,20,-42,42,-42v19,0,31,9,46,32r78,123","w":732},"\u00f2":{"d":"226,8v-117,0,-185,-85,-185,-186v0,-132,103,-256,241,-256v117,0,185,86,185,186v0,133,-103,256,-241,256xm229,-53v94,0,167,-89,167,-195v0,-78,-51,-125,-117,-125v-93,0,-167,89,-167,196v0,77,51,124,117,124xm351,-498r-117,-87v-19,-15,-26,-29,-26,-45v0,-23,20,-42,42,-42v19,0,31,9,46,32r78,123","w":508},"\u0150":{"d":"368,-718r-18,-24r125,-123v14,-13,28,-22,43,-22v21,0,39,15,39,40v0,15,-14,33,-36,45xm557,-722r-17,-25r131,-116v14,-13,28,-20,42,-20v23,0,38,18,38,40v0,17,-14,34,-38,45xm349,12v-176,0,-278,-123,-278,-283v0,-195,155,-399,366,-399v176,0,278,123,278,283v0,195,-155,399,-366,399xm355,-56v162,0,283,-166,283,-330v0,-117,-67,-216,-207,-216v-162,0,-283,166,-283,330v0,117,67,216,207,216","w":732},"\u0151":{"d":"207,-504r-18,-24r125,-123v14,-13,28,-22,43,-22v21,0,39,15,39,40v0,15,-14,33,-36,45xm396,-508r-17,-25r131,-116v14,-13,28,-20,42,-20v23,0,38,18,38,40v0,17,-14,34,-38,45xm226,8v-117,0,-185,-85,-185,-186v0,-132,103,-256,241,-256v117,0,185,86,185,186v0,133,-103,256,-241,256xm229,-53v94,0,167,-89,167,-195v0,-78,-51,-125,-117,-125v-93,0,-167,89,-167,196v0,77,51,124,117,124","w":508},"\u014c":{"d":"339,-749r15,-63r300,0r-13,63r-302,0xm349,12v-176,0,-278,-123,-278,-283v0,-195,155,-399,366,-399v176,0,278,123,278,283v0,195,-155,399,-366,399xm355,-56v162,0,283,-166,283,-330v0,-117,-67,-216,-207,-216v-162,0,-283,166,-283,330v0,117,67,216,207,216","w":732},"\u014d":{"d":"177,-535r15,-63r300,0r-13,63r-302,0xm226,8v-117,0,-185,-85,-185,-186v0,-132,103,-256,241,-256v117,0,185,86,185,186v0,133,-103,256,-241,256xm229,-53v94,0,167,-89,167,-195v0,-78,-51,-125,-117,-125v-93,0,-167,89,-167,196v0,77,51,124,117,124","w":508},"\u00d8":{"d":"351,12v-89,0,-159,-31,-206,-83r-94,82r-41,-48r98,-85v-23,-43,-35,-94,-35,-150v0,-194,153,-398,365,-398v89,0,160,32,207,85r98,-85r41,47r-103,90v22,42,35,93,35,147v0,195,-154,398,-365,398xm149,-272v0,37,6,72,20,103r421,-367v-34,-41,-87,-67,-158,-67v-162,0,-283,166,-283,331xm357,-55v162,0,283,-166,283,-331v0,-36,-7,-70,-20,-101r-421,367v35,40,87,65,158,65","w":732},"\u00f8":{"d":"235,8v-53,0,-97,-17,-129,-46r-64,57r-36,-42r66,-57v-16,-29,-25,-63,-25,-99v0,-133,101,-255,241,-255v55,0,99,19,131,50r67,-60r37,41r-71,63v15,28,23,60,23,93v0,134,-102,255,-240,255xm118,-178v0,21,3,40,9,56r245,-218v-21,-21,-50,-33,-86,-33v-93,0,-168,87,-168,195xm237,-53v93,0,167,-87,167,-195v0,-18,-3,-34,-7,-48r-243,213v21,19,49,30,83,30","w":516},"\u01fe":{"d":"351,12v-89,0,-159,-31,-206,-83r-94,82r-41,-48r98,-85v-23,-43,-35,-94,-35,-150v0,-194,153,-398,365,-398v89,0,160,32,207,85r98,-85r41,47r-103,90v22,42,35,93,35,147v0,195,-154,398,-365,398xm149,-272v0,37,6,72,20,103r421,-367v-34,-41,-87,-67,-158,-67v-162,0,-283,166,-283,331xm357,-55v162,0,283,-166,283,-331v0,-36,-7,-70,-20,-101r-421,367v35,40,87,65,158,65xm458,-717r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48","w":732},"\u01ff":{"d":"235,8v-53,0,-97,-17,-129,-46r-64,57r-36,-42r66,-57v-16,-29,-25,-63,-25,-99v0,-133,101,-255,241,-255v55,0,99,19,131,50r67,-60r37,41r-71,63v15,28,23,60,23,93v0,134,-102,255,-240,255xm118,-178v0,21,3,40,9,56r245,-218v-21,-21,-50,-33,-86,-33v-93,0,-168,87,-168,195xm237,-53v93,0,167,-87,167,-195v0,-18,-3,-34,-7,-48r-243,213v21,19,49,30,83,30xm302,-503r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48","w":516},"\u00d5":{"d":"349,12v-176,0,-278,-123,-278,-283v0,-195,155,-399,366,-399v176,0,278,123,278,283v0,195,-155,399,-366,399xm355,-56v162,0,283,-166,283,-330v0,-117,-67,-216,-207,-216v-162,0,-283,166,-283,330v0,117,67,216,207,216xm556,-717v-38,0,-62,-19,-83,-40v-19,-20,-31,-29,-49,-29v-25,0,-43,19,-61,63r-45,-16v17,-69,65,-117,111,-117v38,0,61,20,82,41v19,19,32,28,49,28v25,0,44,-19,62,-63r44,16v-16,69,-65,117,-110,117","w":732},"\u00f5":{"d":"226,8v-117,0,-185,-85,-185,-186v0,-132,103,-256,241,-256v117,0,185,86,185,186v0,133,-103,256,-241,256xm229,-53v94,0,167,-89,167,-195v0,-78,-51,-125,-117,-125v-93,0,-167,89,-167,196v0,77,51,124,117,124xm396,-503v-38,0,-62,-19,-83,-40v-19,-20,-31,-29,-49,-29v-25,0,-43,19,-61,63r-45,-16v17,-69,65,-117,111,-117v38,0,61,20,82,41v19,19,32,28,49,28v25,0,44,-19,62,-63r44,16v-16,69,-65,117,-110,117","w":508},"\u0154":{"d":"373,-717r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm3,0r16,-66r79,0r122,-526r-89,0r15,-66r202,0v87,0,151,20,192,60v30,30,45,69,45,116v0,99,-70,178,-188,205r100,211r77,0r-15,66r-115,0r-120,-268v-11,1,-21,1,-33,1v-24,0,-50,-1,-71,-2r-48,203r90,0r-16,66r-243,0xm317,-331v120,0,193,-61,193,-147v0,-30,-10,-55,-30,-75v-26,-26,-73,-39,-134,-39r-52,0r-60,258v23,2,47,3,83,3","w":603},"\u0155":{"d":"44,0r92,-365r-80,0r15,-61r142,0r-28,118v55,-81,103,-125,146,-125v34,0,58,22,58,53v0,30,-25,55,-54,55v-27,0,-46,-18,-51,-40v-32,16,-99,80,-122,176r-48,189r-70,0xm250,-503r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48","w":382},"\u0158":{"d":"404,-715r-113,-152r35,-30r92,90r145,-91r28,37xm3,0r16,-66r79,0r122,-526r-89,0r15,-66r202,0v87,0,151,20,192,60v30,30,45,69,45,116v0,99,-70,178,-188,205r100,211r77,0r-15,66r-115,0r-120,-268v-11,1,-21,1,-33,1v-24,0,-50,-1,-71,-2r-48,203r90,0r-16,66r-243,0xm317,-331v120,0,193,-61,193,-147v0,-30,-10,-55,-30,-75v-26,-26,-73,-39,-134,-39r-52,0r-60,258v23,2,47,3,83,3","w":603},"\u0159":{"d":"44,0r92,-365r-80,0r15,-61r142,0r-28,118v55,-81,103,-125,146,-125v34,0,58,22,58,53v0,30,-25,55,-54,55v-27,0,-46,-18,-51,-40v-32,16,-99,80,-122,176r-48,189r-70,0xm281,-501r-113,-152r35,-30r92,90r145,-91r28,37","w":382},"\u0156":{"d":"143,278r-13,-25v72,-35,104,-80,106,-100v-25,-8,-37,-32,-37,-48v0,-29,22,-52,52,-52v29,0,55,23,55,60v0,58,-55,128,-163,165xm3,0r16,-66r79,0r122,-526r-89,0r15,-66r202,0v87,0,151,20,192,60v30,30,45,69,45,116v0,99,-70,178,-188,205r100,211r77,0r-15,66r-115,0r-120,-268v-11,1,-21,1,-33,1v-24,0,-50,-1,-71,-2r-48,203r90,0r-16,66r-243,0xm317,-331v120,0,193,-61,193,-147v0,-30,-10,-55,-30,-75v-26,-26,-73,-39,-134,-39r-52,0r-60,258v23,2,47,3,83,3","w":603},"\u0157":{"d":"44,0r92,-365r-80,0r15,-61r142,0r-28,118v55,-81,103,-125,146,-125v34,0,58,22,58,53v0,30,-25,55,-54,55v-27,0,-46,-18,-51,-40v-32,16,-99,80,-122,176r-48,189r-70,0xm-47,278r-13,-25v72,-35,104,-80,106,-100v-25,-8,-37,-32,-37,-48v0,-29,22,-52,52,-52v29,0,55,23,55,60v0,58,-55,128,-163,165","w":382},"\u015a":{"d":"372,-717r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm268,11v-132,0,-228,-80,-228,-150v0,-41,26,-69,60,-69v30,0,51,25,51,49v0,21,-10,38,-28,50v21,28,72,55,150,55v76,0,140,-46,140,-115v0,-57,-48,-91,-113,-129v-82,-48,-155,-98,-155,-193v0,-94,86,-178,213,-178v113,0,201,66,201,133v0,42,-27,68,-58,68v-30,0,-51,-23,-51,-51v0,-15,8,-32,25,-44v-16,-19,-58,-41,-119,-41v-81,0,-134,48,-134,108v0,59,47,91,122,135v75,45,146,95,146,187v0,106,-93,185,-222,185","w":551},"\u015b":{"d":"257,-503r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm201,7v-62,0,-119,-23,-151,-55v-16,-16,-25,-34,-25,-53v0,-29,20,-52,47,-52v27,0,43,20,43,42v0,12,-5,22,-13,32v4,4,8,7,17,12v20,11,51,19,85,19v47,0,86,-21,86,-59v0,-39,-42,-59,-88,-81v-62,-29,-118,-57,-118,-121v0,-68,57,-122,154,-122v56,0,104,18,131,46v16,16,24,33,24,52v0,31,-21,51,-45,51v-24,0,-44,-18,-44,-42v0,-10,4,-20,11,-32v-3,-2,-5,-4,-15,-9v-15,-7,-39,-12,-64,-12v-50,0,-83,23,-83,56v0,34,41,53,91,77v60,28,116,60,116,125v0,82,-70,126,-159,126","w":422},"\u0160":{"d":"402,-715r-113,-152r35,-30r92,90r145,-91r28,37xm268,11v-132,0,-228,-80,-228,-150v0,-41,26,-69,60,-69v30,0,51,25,51,49v0,21,-10,38,-28,50v21,28,72,55,150,55v76,0,140,-46,140,-115v0,-57,-48,-91,-113,-129v-82,-48,-155,-98,-155,-193v0,-94,86,-178,213,-178v113,0,201,66,201,133v0,42,-27,68,-58,68v-30,0,-51,-23,-51,-51v0,-15,8,-32,25,-44v-16,-19,-58,-41,-119,-41v-81,0,-134,48,-134,108v0,59,47,91,122,135v75,45,146,95,146,187v0,106,-93,185,-222,185","w":551},"\u0161":{"d":"288,-501r-113,-152r35,-30r92,90r145,-91r28,37xm201,7v-62,0,-119,-23,-151,-55v-16,-16,-25,-34,-25,-53v0,-29,20,-52,47,-52v27,0,43,20,43,42v0,12,-5,22,-13,32v4,4,8,7,17,12v20,11,51,19,85,19v47,0,86,-21,86,-59v0,-39,-42,-59,-88,-81v-62,-29,-118,-57,-118,-121v0,-68,57,-122,154,-122v56,0,104,18,131,46v16,16,24,33,24,52v0,31,-21,51,-45,51v-24,0,-44,-18,-44,-42v0,-10,4,-20,11,-32v-3,-2,-5,-4,-15,-9v-15,-7,-39,-12,-64,-12v-50,0,-83,23,-83,56v0,34,41,53,91,77v60,28,116,60,116,125v0,82,-70,126,-159,126","w":422},"\u015e":{"d":"235,199v-47,0,-93,-22,-117,-42r20,-29v22,15,61,28,94,28v26,0,42,-14,42,-31v0,-18,-20,-35,-64,-28r-15,-18r40,-70v-115,-12,-195,-84,-195,-148v0,-41,26,-69,60,-69v30,0,51,25,51,49v0,21,-10,38,-28,50v21,28,72,55,150,55v76,0,140,-46,140,-115v0,-57,-48,-91,-113,-129v-82,-48,-155,-98,-155,-193v0,-94,86,-178,213,-178v113,0,201,66,201,133v0,42,-27,68,-58,68v-30,0,-51,-23,-51,-51v0,-15,8,-32,25,-44v-16,-19,-58,-41,-119,-41v-81,0,-134,48,-134,108v0,59,47,91,122,135v75,45,146,95,146,187v0,104,-90,182,-216,185r-13,40v53,6,79,38,79,71v0,49,-48,77,-105,77","w":551},"\u015f":{"d":"158,199v-47,0,-93,-22,-117,-42r20,-29v22,15,61,28,94,28v26,0,42,-14,42,-31v0,-18,-20,-35,-64,-28r-15,-18r43,-75v-46,-7,-86,-27,-111,-52v-16,-16,-25,-34,-25,-53v0,-29,20,-52,47,-52v27,0,43,20,43,42v0,12,-5,22,-13,32v4,4,8,7,17,12v20,11,51,19,85,19v47,0,86,-21,86,-59v0,-39,-42,-59,-88,-81v-62,-29,-118,-57,-118,-121v0,-68,57,-122,154,-122v56,0,104,18,131,46v16,16,24,33,24,52v0,31,-21,51,-45,51v-24,0,-44,-18,-44,-42v0,-10,4,-20,11,-32v-3,-2,-5,-4,-15,-9v-15,-7,-39,-12,-64,-12v-50,0,-83,23,-83,56v0,34,41,53,91,77v60,28,116,60,116,125v0,82,-70,126,-159,126r-2,0r-15,44v53,6,79,38,79,71v0,49,-48,77,-105,77","w":422},"\u0218":{"d":"106,278r-13,-25v72,-35,104,-80,106,-100v-25,-8,-37,-32,-37,-48v0,-29,22,-52,52,-52v29,0,55,23,55,60v0,58,-55,128,-163,165xm268,11v-132,0,-228,-80,-228,-150v0,-41,26,-69,60,-69v30,0,51,25,51,49v0,21,-10,38,-28,50v21,28,72,55,150,55v76,0,140,-46,140,-115v0,-57,-48,-91,-113,-129v-82,-48,-155,-98,-155,-193v0,-94,86,-178,213,-178v113,0,201,66,201,133v0,42,-27,68,-58,68v-30,0,-51,-23,-51,-51v0,-15,8,-32,25,-44v-16,-19,-58,-41,-119,-41v-81,0,-134,48,-134,108v0,59,47,91,122,135v75,45,146,95,146,187v0,106,-93,185,-222,185","w":551},"\u0219":{"d":"44,278r-13,-25v72,-35,104,-80,106,-100v-25,-8,-37,-32,-37,-48v0,-29,22,-52,52,-52v29,0,55,23,55,60v0,58,-55,128,-163,165xm201,7v-62,0,-119,-23,-151,-55v-16,-16,-25,-34,-25,-53v0,-29,20,-52,47,-52v27,0,43,20,43,42v0,12,-5,22,-13,32v4,4,8,7,17,12v20,11,51,19,85,19v47,0,86,-21,86,-59v0,-39,-42,-59,-88,-81v-62,-29,-118,-57,-118,-121v0,-68,57,-122,154,-122v56,0,104,18,131,46v16,16,24,33,24,52v0,31,-21,51,-45,51v-24,0,-44,-18,-44,-42v0,-10,4,-20,11,-32v-3,-2,-5,-4,-15,-9v-15,-7,-39,-12,-64,-12v-50,0,-83,23,-83,56v0,34,41,53,91,77v60,28,116,60,116,125v0,82,-70,126,-159,126","w":422},"\u0164":{"d":"432,-715r-113,-152r35,-30r92,90r145,-91r28,37xm144,0r15,-66r85,0r121,-527r-163,0r-24,104r-71,0r39,-169r543,0r-39,169r-71,0r24,-104r-163,0r-122,527r95,0r-16,66r-253,0","w":627},"\u0165":{"d":"335,-365r-130,0r-60,244v-4,14,-6,26,-6,37v0,19,13,34,34,34v23,0,47,-12,89,-40r26,37v-52,42,-94,61,-134,61v-50,0,-88,-31,-88,-81v0,-14,3,-30,8,-48r60,-244r-76,0r15,-61r76,0r25,-100r77,-25r-31,125r130,0xm292,-470r-20,-19v36,-39,51,-66,60,-100v6,-26,2,-51,8,-78v5,-23,19,-40,45,-40v24,0,40,16,40,42v0,34,-15,64,-40,99v-26,37,-61,69,-93,96","w":338},"\u0162":{"d":"139,278r-13,-25v72,-35,104,-80,106,-100v-25,-8,-37,-32,-37,-48v0,-29,22,-52,52,-52v29,0,55,23,55,60v0,58,-55,128,-163,165xm144,0r15,-66r85,0r121,-527r-163,0r-24,104r-71,0r39,-169r543,0r-39,169r-71,0r24,-104r-163,0r-122,527r95,0r-16,66r-253,0","w":627},"\u0163":{"d":"335,-365r-130,0r-60,244v-4,14,-6,26,-6,37v0,19,13,34,34,34v23,0,47,-12,89,-40r26,37v-52,42,-94,61,-134,61v-50,0,-88,-31,-88,-81v0,-14,3,-30,8,-48r60,-244r-76,0r15,-61r76,0r25,-100r77,-25r-31,125r130,0xm16,278r-13,-25v72,-35,104,-80,106,-100v-25,-8,-37,-32,-37,-48v0,-29,22,-52,52,-52v29,0,55,23,55,60v0,58,-55,128,-163,165","w":338},"\u00de":{"d":"3,0r16,-66r79,0r122,-526r-89,0r15,-66r245,0r-16,65r-81,0r-16,72r63,0v80,0,139,20,174,55v29,28,43,67,43,112v0,124,-97,210,-261,210v-41,0,-83,-1,-106,-3r-19,82r91,0r-15,65r-245,0xm304,-207v122,0,179,-61,179,-143v0,-28,-8,-54,-27,-72v-24,-23,-65,-36,-125,-36r-68,0r-57,248v26,1,61,3,98,3","w":572},"\u00fe":{"d":"-83,196r15,-60r64,0r191,-808r-81,0r15,-60r150,0r-91,385v33,-47,81,-87,147,-87v94,0,158,70,158,176v0,148,-106,267,-227,267v-66,0,-122,-41,-139,-100r-52,227r87,0r-15,60r-222,0xm252,-54v92,0,159,-96,159,-195v0,-74,-38,-123,-105,-123v-93,0,-168,106,-168,203v0,68,42,115,114,115","w":528},"\u00da":{"d":"438,-717r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm334,11v-137,0,-212,-78,-212,-193v0,-24,4,-51,10,-79r77,-331r-88,0r15,-66r243,0r-15,66r-81,0r-77,335v-5,25,-9,49,-9,70v0,79,43,132,145,132v102,0,160,-68,182,-165r85,-372r-91,0r15,-66r243,0r-15,66r-79,0r-87,381v-31,134,-109,222,-261,222","w":714},"\u00fa":{"d":"68,-426r150,0r-69,267v-4,14,-6,30,-6,46v0,36,25,61,65,61v59,0,123,-56,148,-156r54,-218r70,0r-77,310v-5,17,-8,33,-8,42v0,20,12,31,29,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-108,105v-47,0,-78,-31,-78,-81v0,-6,1,-12,2,-20v-36,58,-88,101,-148,101v-64,0,-113,-42,-113,-108v0,-22,4,-44,9,-64r52,-200r-80,0xm302,-503r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48","w":544},"\u016c":{"d":"334,11v-137,0,-212,-78,-212,-193v0,-24,4,-51,10,-79r77,-331r-88,0r15,-66r243,0r-15,66r-81,0r-77,335v-5,25,-9,49,-9,70v0,79,43,132,145,132v102,0,160,-68,182,-165r85,-372r-91,0r15,-66r243,0r-15,66r-79,0r-87,381v-31,134,-109,222,-261,222xm474,-721v-76,0,-123,-57,-130,-142r46,-15v12,57,43,89,95,89v45,0,88,-25,127,-88r41,22v-40,84,-111,134,-179,134","w":714},"\u016d":{"d":"68,-426r150,0r-69,267v-4,14,-6,30,-6,46v0,36,25,61,65,61v59,0,123,-56,148,-156r54,-218r70,0r-77,310v-5,17,-8,33,-8,42v0,20,12,31,29,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-108,105v-47,0,-78,-31,-78,-81v0,-6,1,-12,2,-20v-36,58,-88,101,-148,101v-64,0,-113,-42,-113,-108v0,-22,4,-44,9,-64r52,-200r-80,0xm337,-507v-76,0,-123,-57,-130,-142r46,-15v12,57,43,89,95,89v45,0,88,-25,127,-88r41,22v-40,84,-111,134,-179,134","w":544},"\u00db":{"d":"347,-715r-28,-38r187,-145r113,152r-34,30r-93,-90xm334,11v-137,0,-212,-78,-212,-193v0,-24,4,-51,10,-79r77,-331r-88,0r15,-66r243,0r-15,66r-81,0r-77,335v-5,25,-9,49,-9,70v0,79,43,132,145,132v102,0,160,-68,182,-165r85,-372r-91,0r15,-66r243,0r-15,66r-79,0r-87,381v-31,134,-109,222,-261,222","w":714},"\u00fb":{"d":"68,-426r150,0r-69,267v-4,14,-6,30,-6,46v0,36,25,61,65,61v59,0,123,-56,148,-156r54,-218r70,0r-77,310v-5,17,-8,33,-8,42v0,20,12,31,29,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-108,105v-47,0,-78,-31,-78,-81v0,-6,1,-12,2,-20v-36,58,-88,101,-148,101v-64,0,-113,-42,-113,-108v0,-22,4,-44,9,-64r52,-200r-80,0xm209,-501r-28,-38r187,-145r113,152r-34,30r-93,-90","w":544},"\u00dc":{"d":"571,-735v-31,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-25,57,-57,57xm397,-735v-32,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-26,57,-57,57xm334,11v-137,0,-212,-78,-212,-193v0,-24,4,-51,10,-79r77,-331r-88,0r15,-66r243,0r-15,66r-81,0r-77,335v-5,25,-9,49,-9,70v0,79,43,132,145,132v102,0,160,-68,182,-165r85,-372r-91,0r15,-66r243,0r-15,66r-79,0r-87,381v-31,134,-109,222,-261,222","w":714},"\u00fc":{"d":"68,-426r150,0r-69,267v-4,14,-6,30,-6,46v0,36,25,61,65,61v59,0,123,-56,148,-156r54,-218r70,0r-77,310v-5,17,-8,33,-8,42v0,20,12,31,29,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-108,105v-47,0,-78,-31,-78,-81v0,-6,1,-12,2,-20v-36,58,-88,101,-148,101v-64,0,-113,-42,-113,-108v0,-22,4,-44,9,-64r52,-200r-80,0xm260,-521v-32,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-26,57,-57,57xm434,-521v-31,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-25,57,-57,57","w":544},"\u00d9":{"d":"334,11v-137,0,-212,-78,-212,-193v0,-24,4,-51,10,-79r77,-331r-88,0r15,-66r243,0r-15,66r-81,0r-77,335v-5,25,-9,49,-9,70v0,79,43,132,145,132v102,0,160,-68,182,-165r85,-372r-91,0r15,-66r243,0r-15,66r-79,0r-87,381v-31,134,-109,222,-261,222xm496,-712r-117,-87v-19,-15,-26,-29,-26,-45v0,-23,20,-42,42,-42v19,0,31,9,46,32r78,123","w":714},"\u00f9":{"d":"68,-426r150,0r-69,267v-4,14,-6,30,-6,46v0,36,25,61,65,61v59,0,123,-56,148,-156r54,-218r70,0r-77,310v-5,17,-8,33,-8,42v0,20,12,31,29,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-108,105v-47,0,-78,-31,-78,-81v0,-6,1,-12,2,-20v-36,58,-88,101,-148,101v-64,0,-113,-42,-113,-108v0,-22,4,-44,9,-64r52,-200r-80,0xm361,-498r-117,-87v-19,-15,-26,-29,-26,-45v0,-23,20,-42,42,-42v19,0,31,9,46,32r78,123","w":544},"\u0170":{"d":"334,11v-137,0,-212,-78,-212,-193v0,-24,4,-51,10,-79r77,-331r-88,0r15,-66r243,0r-15,66r-81,0r-77,335v-5,25,-9,49,-9,70v0,79,43,132,145,132v102,0,160,-68,182,-165r85,-372r-91,0r15,-66r243,0r-15,66r-79,0r-87,381v-31,134,-109,222,-261,222xm354,-718r-18,-24r125,-123v14,-13,28,-22,43,-22v21,0,39,15,39,40v0,15,-14,33,-36,45xm543,-722r-17,-25r131,-116v14,-13,28,-20,42,-20v23,0,38,18,38,40v0,17,-14,34,-38,45","w":714},"\u0171":{"d":"68,-426r150,0r-69,267v-4,14,-6,30,-6,46v0,36,25,61,65,61v59,0,123,-56,148,-156r54,-218r70,0r-77,310v-5,17,-8,33,-8,42v0,20,12,31,29,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-108,105v-47,0,-78,-31,-78,-81v0,-6,1,-12,2,-20v-36,58,-88,101,-148,101v-64,0,-113,-42,-113,-108v0,-22,4,-44,9,-64r52,-200r-80,0xm217,-504r-18,-24r125,-123v14,-13,28,-22,43,-22v21,0,39,15,39,40v0,15,-14,33,-36,45xm406,-508r-17,-25r131,-116v14,-13,28,-20,42,-20v23,0,38,18,38,40v0,17,-14,34,-38,45","w":544},"\u016a":{"d":"334,11v-137,0,-212,-78,-212,-193v0,-24,4,-51,10,-79r77,-331r-88,0r15,-66r243,0r-15,66r-81,0r-77,335v-5,25,-9,49,-9,70v0,79,43,132,145,132v102,0,160,-68,182,-165r85,-372r-91,0r15,-66r243,0r-15,66r-79,0r-87,381v-31,134,-109,222,-261,222xm324,-749r15,-63r300,0r-13,63r-302,0","w":714},"\u016b":{"d":"68,-426r150,0r-69,267v-4,14,-6,30,-6,46v0,36,25,61,65,61v59,0,123,-56,148,-156r54,-218r70,0r-77,310v-5,17,-8,33,-8,42v0,20,12,31,29,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-108,105v-47,0,-78,-31,-78,-81v0,-6,1,-12,2,-20v-36,58,-88,101,-148,101v-64,0,-113,-42,-113,-108v0,-22,4,-44,9,-64r52,-200r-80,0xm187,-535r15,-63r300,0r-13,63r-302,0","w":544},"\u0172":{"d":"238,127v0,-42,28,-82,70,-117v-121,-9,-186,-84,-186,-192v0,-24,4,-51,10,-79r77,-331r-88,0r15,-66r243,0r-15,66r-81,0r-77,335v-5,25,-9,49,-9,70v0,79,43,132,145,132v102,0,160,-68,182,-165r85,-372r-91,0r15,-66r243,0r-15,66r-79,0r-87,381v-29,124,-98,209,-228,220v-38,31,-65,64,-65,97v0,24,16,37,44,37v20,0,38,-4,51,-9r-12,50v-12,8,-34,17,-64,17v-51,0,-83,-28,-83,-74","w":714},"\u0173":{"d":"481,-110r35,12v-10,33,-25,58,-45,78v-40,41,-101,74,-101,126v0,24,16,37,44,37v20,0,38,-4,51,-9r-12,50v-12,8,-34,17,-65,17v-50,0,-82,-28,-82,-74v0,-47,34,-89,80,-123v-34,-8,-56,-37,-56,-78v0,-6,1,-12,2,-20v-36,58,-88,101,-148,101v-64,0,-113,-42,-113,-108v0,-22,4,-44,9,-64r52,-200r-80,0r16,-61r150,0r-69,267v-4,14,-6,30,-6,46v0,36,25,61,65,61v59,0,123,-56,148,-156r54,-218r70,0r-77,310v-5,17,-8,33,-8,42v0,20,11,31,28,31v19,0,38,-17,58,-67","w":544},"\u016e":{"d":"478,-713v-58,0,-92,-41,-92,-94v0,-67,51,-127,120,-127v59,0,93,41,93,93v0,68,-52,128,-121,128xm483,-761v36,0,63,-35,63,-75v0,-28,-18,-50,-44,-50v-37,0,-64,35,-64,75v0,28,18,50,45,50xm334,11v-137,0,-212,-78,-212,-193v0,-24,4,-51,10,-79r77,-331r-88,0r15,-66r243,0r-15,66r-81,0r-77,335v-5,25,-9,49,-9,70v0,79,43,132,145,132v102,0,160,-68,182,-165r85,-372r-91,0r15,-66r243,0r-15,66r-79,0r-87,381v-31,134,-109,222,-261,222","w":714},"\u016f":{"d":"68,-426r150,0r-69,267v-4,14,-6,30,-6,46v0,36,25,61,65,61v59,0,123,-56,148,-156r54,-218r70,0r-77,310v-5,17,-8,33,-8,42v0,20,12,31,29,31v19,0,37,-17,57,-67r35,12v-23,72,-61,105,-108,105v-47,0,-78,-31,-78,-81v0,-6,1,-12,2,-20v-36,58,-88,101,-148,101v-64,0,-113,-42,-113,-108v0,-22,4,-44,9,-64r52,-200r-80,0xm341,-499v-58,0,-92,-41,-92,-94v0,-67,51,-127,120,-127v59,0,93,41,93,93v0,68,-52,128,-121,128xm346,-547v36,0,63,-35,63,-75v0,-28,-18,-50,-44,-50v-37,0,-64,35,-64,75v0,28,18,50,45,50","w":544},"\u1e82":{"d":"552,-717r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm214,9r-33,-601r-70,0r15,-66r223,0r-15,66r-82,0r16,463r258,-450r34,0r65,452r235,-465r-80,0r16,-66r222,0r-15,66r-65,0r-314,601r-40,0r-69,-442r-261,442r-40,0","w":946},"\u1e83":{"d":"140,14r-36,-379r-78,0r16,-61r123,0r22,334r161,-282r34,0r62,292v63,-93,115,-185,123,-248v-21,-5,-42,-22,-42,-51v0,-29,22,-53,52,-53v33,0,58,25,58,66v0,79,-69,210,-193,382r-35,0r-60,-277r-168,277r-39,0xm372,-503r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48","w":668},"\u0174":{"d":"461,-715r-28,-38r187,-145r113,152r-34,30r-93,-90xm214,9r-33,-601r-70,0r15,-66r223,0r-15,66r-82,0r16,463r258,-450r34,0r65,452r235,-465r-80,0r16,-66r222,0r-15,66r-65,0r-314,601r-40,0r-69,-442r-261,442r-40,0","w":946},"\u0175":{"d":"140,14r-36,-379r-78,0r16,-61r123,0r22,334r161,-282r34,0r62,292v63,-93,115,-185,123,-248v-21,-5,-42,-22,-42,-51v0,-29,22,-53,52,-53v33,0,58,25,58,66v0,79,-69,210,-193,382r-35,0r-60,-277r-168,277r-39,0xm280,-501r-28,-38r187,-145r113,152r-34,30r-93,-90","w":668},"\u1e84":{"d":"685,-735v-31,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-25,57,-57,57xm511,-735v-32,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-26,57,-57,57xm214,9r-33,-601r-70,0r15,-66r223,0r-15,66r-82,0r16,463r258,-450r34,0r65,452r235,-465r-80,0r16,-66r222,0r-15,66r-65,0r-314,601r-40,0r-69,-442r-261,442r-40,0","w":946},"\u1e85":{"d":"140,14r-36,-379r-78,0r16,-61r123,0r22,334r161,-282r34,0r62,292v63,-93,115,-185,123,-248v-21,-5,-42,-22,-42,-51v0,-29,22,-53,52,-53v33,0,58,25,58,66v0,79,-69,210,-193,382r-35,0r-60,-277r-168,277r-39,0xm331,-521v-32,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-26,57,-57,57xm505,-521v-31,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-25,57,-57,57","w":668},"\u1e80":{"d":"214,9r-33,-601r-70,0r15,-66r223,0r-15,66r-82,0r16,463r258,-450r34,0r65,452r235,-465r-80,0r16,-66r222,0r-15,66r-65,0r-314,601r-40,0r-69,-442r-261,442r-40,0xm610,-712r-117,-87v-19,-15,-26,-29,-26,-45v0,-23,20,-42,42,-42v19,0,31,9,46,32r78,123","w":946},"\u1e81":{"d":"140,14r-36,-379r-78,0r16,-61r123,0r22,334r161,-282r34,0r62,292v63,-93,115,-185,123,-248v-21,-5,-42,-22,-42,-51v0,-29,22,-53,52,-53v33,0,58,25,58,66v0,79,-69,210,-193,382r-35,0r-60,-277r-168,277r-39,0xm430,-498r-117,-87v-19,-15,-26,-29,-26,-45v0,-23,20,-42,42,-42v19,0,31,9,46,32r78,123","w":668},"\u00dd":{"d":"124,0r16,-66r89,0r49,-199r-114,-327r-69,0r16,-66r220,0r-14,66r-76,0r88,271r220,-271r-74,0r16,-66r226,0r-15,66r-66,0r-288,341r-44,185r93,0r-14,66r-259,0xm390,-717r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48","w":631},"\u00fd":{"d":"-15,200v-37,0,-67,-25,-67,-57v0,-27,21,-50,48,-50v25,0,44,18,47,44r2,0v24,0,72,-36,163,-146r-73,-356r-76,0r15,-61r123,0r62,356v74,-96,144,-195,159,-259v-21,-7,-41,-26,-41,-54v0,-27,22,-51,52,-51v34,0,58,25,58,69v0,66,-49,159,-206,356v-140,174,-203,209,-266,209xm273,-503r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48","w":482},"\u0176":{"d":"124,0r16,-66r89,0r49,-199r-114,-327r-69,0r16,-66r220,0r-14,66r-76,0r88,271r220,-271r-74,0r16,-66r226,0r-15,66r-66,0r-288,341r-44,185r93,0r-14,66r-259,0xm298,-715r-28,-38r187,-145r113,152r-34,30r-93,-90","w":631},"\u0177":{"d":"-15,200v-37,0,-67,-25,-67,-57v0,-27,21,-50,48,-50v25,0,44,18,47,44r2,0v24,0,72,-36,163,-146r-73,-356r-76,0r15,-61r123,0r62,356v74,-96,144,-195,159,-259v-21,-7,-41,-26,-41,-54v0,-27,22,-51,52,-51v34,0,58,25,58,69v0,66,-49,159,-206,356v-140,174,-203,209,-266,209xm181,-501r-28,-38r187,-145r113,152r-34,30r-93,-90","w":482},"\u0178":{"d":"124,0r16,-66r89,0r49,-199r-114,-327r-69,0r16,-66r220,0r-14,66r-76,0r88,271r220,-271r-74,0r16,-66r226,0r-15,66r-66,0r-288,341r-44,185r93,0r-14,66r-259,0xm523,-735v-31,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-25,57,-57,57xm349,-735v-32,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-26,57,-57,57","w":631},"\u00ff":{"d":"-15,200v-37,0,-67,-25,-67,-57v0,-27,21,-50,48,-50v25,0,44,18,47,44r2,0v24,0,72,-36,163,-146r-73,-356r-76,0r15,-61r123,0r62,356v74,-96,144,-195,159,-259v-21,-7,-41,-26,-41,-54v0,-27,22,-51,52,-51v34,0,58,25,58,69v0,66,-49,159,-206,356v-140,174,-203,209,-266,209xm232,-521v-32,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-26,57,-57,57xm406,-521v-31,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-25,57,-57,57","w":482},"\u1ef2":{"d":"124,0r16,-66r89,0r49,-199r-114,-327r-69,0r16,-66r220,0r-14,66r-76,0r88,271r220,-271r-74,0r16,-66r226,0r-15,66r-66,0r-288,341r-44,185r93,0r-14,66r-259,0xm448,-712r-117,-87v-19,-15,-26,-29,-26,-45v0,-23,20,-42,42,-42v19,0,31,9,46,32r78,123","w":631},"\u1ef3":{"d":"-15,200v-37,0,-67,-25,-67,-57v0,-27,21,-50,48,-50v25,0,44,18,47,44r2,0v24,0,72,-36,163,-146r-73,-356r-76,0r15,-61r123,0r62,356v74,-96,144,-195,159,-259v-21,-7,-41,-26,-41,-54v0,-27,22,-51,52,-51v34,0,58,25,58,69v0,66,-49,159,-206,356v-140,174,-203,209,-266,209xm332,-498r-117,-87v-19,-15,-26,-29,-26,-45v0,-23,20,-42,42,-42v19,0,31,9,46,32r78,123","w":482},"\u0179":{"d":"392,-717r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm14,0r-4,-36r529,-560r-317,0r-24,104r-70,0r38,-166r485,0r4,36r-529,560r333,0r24,-104r70,0r-39,166r-500,0","w":613},"\u017a":{"d":"271,-503r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48xm32,7r-26,-35r352,-341r-203,0r-20,82r-62,0r34,-139r332,0r20,37r-340,329v21,-8,39,-11,63,-11v45,0,86,19,124,19v43,0,56,-21,78,-84r34,8v-19,81,-40,136,-116,136v-49,0,-112,-27,-164,-27v-46,0,-75,10,-106,26","w":472},"\u017d":{"d":"423,-715r-113,-152r35,-30r92,90r145,-91r28,37xm14,0r-4,-36r529,-560r-317,0r-24,104r-70,0r38,-166r485,0r4,36r-529,560r333,0r24,-104r70,0r-39,166r-500,0","w":613},"\u017e":{"d":"302,-501r-113,-152r35,-30r92,90r145,-91r28,37xm32,7r-26,-35r352,-341r-203,0r-20,82r-62,0r34,-139r332,0r20,37r-340,329v21,-8,39,-11,63,-11v45,0,86,19,124,19v43,0,56,-21,78,-84r34,8v-19,81,-40,136,-116,136v-49,0,-112,-27,-164,-27v-46,0,-75,10,-106,26","w":472},"\u017b":{"d":"14,0r-4,-36r529,-560r-317,0r-24,104r-70,0r38,-166r485,0r4,36r-529,560r333,0r24,-104r70,0r-39,166r-500,0xm439,-733v-32,0,-58,-27,-58,-59v0,-33,26,-59,58,-59v32,0,58,26,58,59v0,32,-26,59,-58,59","w":613},"\u017c":{"d":"32,7r-26,-35r352,-341r-203,0r-20,82r-62,0r34,-139r332,0r20,37r-340,329v21,-8,39,-11,63,-11v45,0,86,19,124,19v43,0,56,-21,78,-84r34,8v-19,81,-40,136,-116,136v-49,0,-112,-27,-164,-27v-46,0,-75,10,-106,26xm318,-519v-32,0,-58,-27,-58,-59v0,-33,26,-59,58,-59v32,0,58,26,58,59v0,32,-26,59,-58,59","w":472},"\u0259":{"d":"37,-147v0,-27,6,-55,17,-87r312,0v0,-7,1,-14,1,-21v0,-75,-61,-119,-136,-119v-48,0,-86,10,-140,39r14,-68v45,-22,82,-31,140,-31v100,0,191,65,191,180v0,144,-109,262,-235,262v-100,0,-164,-60,-164,-155xm203,-52v68,0,128,-53,152,-128r-245,0v-4,14,-7,29,-7,42v0,46,31,86,100,86","w":476},"\u00df":{"d":"343,7v-63,0,-127,-40,-127,-93v0,-27,20,-51,47,-51v26,0,45,21,45,42v0,13,-6,24,-12,31v5,7,27,16,49,16v54,0,88,-38,88,-88v0,-38,-28,-68,-63,-100v-39,-38,-71,-72,-71,-123v0,-57,36,-88,76,-116v41,-29,81,-58,81,-119v0,-45,-42,-81,-88,-81v-61,0,-106,47,-123,129r-125,546r-69,0r84,-365r-76,0r15,-61r75,0r29,-128v25,-114,91,-183,193,-183v89,0,153,60,153,144v0,85,-49,125,-99,159v-35,24,-59,44,-59,75v0,24,22,48,60,83v36,34,74,78,74,141v0,76,-51,142,-157,142","w":548},"0":{"d":"269,8v-135,0,-214,-103,-214,-227v0,-152,111,-296,267,-296v134,0,214,104,214,228v0,151,-111,295,-267,295xm270,-54v112,0,192,-110,192,-232v0,-96,-60,-167,-142,-167v-112,0,-192,110,-192,233v0,95,60,166,142,166","w":568},"1":{"d":"6,0r13,-60r120,0r86,-374r-113,28r-2,-63r172,-44r29,13r-102,440r119,0r-14,60r-308,0","w":391},"2":{"d":"9,0r-9,-40v44,-101,147,-161,250,-210v84,-40,148,-75,148,-130v0,-40,-40,-75,-115,-75v-50,0,-86,16,-108,40v14,8,20,21,20,37v0,27,-21,49,-48,49v-28,0,-52,-22,-52,-54v0,-66,81,-133,193,-133v115,0,183,61,183,132v0,91,-97,141,-195,186v-111,52,-157,84,-190,139r264,0r20,-86r62,0r-34,145r-389,0","w":499},"3":{"d":"191,126v-103,0,-200,-60,-200,-137v0,-35,23,-60,53,-60v28,0,46,21,46,44v0,16,-12,35,-28,41v10,22,55,51,132,51v88,0,147,-55,147,-123v0,-70,-63,-121,-157,-121r-22,0r14,-59r23,0v115,0,194,-50,194,-123v0,-57,-47,-94,-122,-94v-54,0,-85,14,-103,30v14,8,23,21,23,36v0,26,-22,46,-48,46v-26,0,-50,-21,-50,-54v0,-64,86,-119,180,-119v120,0,192,65,192,149v0,86,-68,144,-174,162v82,28,122,84,122,147v0,103,-97,184,-222,184","w":489},"4":{"d":"420,-286r-39,169r111,0r-14,59r-110,0r-41,178r-70,0r41,-178r-287,0r-7,-30r415,-431r46,41r-347,361r193,0r33,-142","w":542},"5":{"d":"179,123v-102,0,-179,-55,-179,-112v0,-32,23,-57,52,-57v27,0,49,20,49,47v0,11,-5,24,-15,31v14,16,47,29,96,29v100,0,169,-71,169,-157v0,-74,-54,-114,-134,-114v-44,0,-79,11,-112,28r-36,-24r100,-302r310,0r-15,66r-255,0r-61,187v22,-10,52,-17,91,-17v104,0,184,65,184,170v0,119,-104,225,-244,225","w":489},"6":{"d":"113,-48v-39,-39,-57,-95,-57,-167v0,-123,49,-264,145,-353v48,-43,106,-72,180,-72v85,0,151,46,151,100v0,31,-19,56,-51,56v-26,0,-48,-19,-48,-46v0,-11,4,-22,14,-30v-9,-9,-31,-21,-71,-21v-47,0,-95,20,-136,59v-50,47,-96,135,-112,221v30,-45,92,-98,182,-98v110,0,180,76,180,176v0,123,-103,231,-236,231v-63,0,-107,-22,-141,-56xm127,-179v0,35,11,65,33,87v22,24,55,38,97,38v89,0,160,-78,160,-163v0,-71,-43,-121,-121,-121v-98,0,-169,77,-169,159","w":535},"7":{"d":"93,123r-56,-36r373,-537r-258,0r-25,100r-65,0r37,-158r392,0r16,31","w":488},"8":{"d":"236,8v-115,0,-195,-76,-195,-165v0,-91,65,-153,156,-177v-54,-31,-79,-80,-79,-131v0,-90,88,-174,204,-174v111,0,184,71,184,160v0,82,-54,140,-139,164v56,28,93,76,93,139v0,97,-95,184,-224,184xm300,-352v77,0,136,-53,136,-122v0,-59,-45,-105,-116,-105v-77,0,-132,53,-132,122v0,57,45,105,112,105xm239,-53v89,0,149,-58,149,-129v0,-68,-58,-115,-128,-115v-89,0,-149,64,-149,133v0,66,58,111,128,111","w":510},"9":{"d":"174,126v-85,0,-151,-46,-151,-100v0,-31,19,-56,51,-56v26,0,48,19,48,46v0,11,-4,22,-14,30v11,10,32,21,73,21v46,0,91,-20,132,-57v53,-49,98,-139,112,-219v-29,46,-91,99,-182,99v-110,0,-180,-75,-180,-175v0,-124,104,-231,237,-231v63,0,106,21,140,56v39,39,57,95,57,166v0,131,-51,258,-129,336v-54,54,-113,84,-194,84xm426,-329v0,-35,-11,-65,-32,-88v-23,-23,-56,-37,-97,-37v-90,0,-161,78,-161,163v0,71,43,120,121,120v98,0,169,-76,169,-158","w":535},".":{"d":"82,8v-35,0,-62,-28,-62,-63v0,-35,27,-63,62,-63v34,0,61,28,61,63v0,35,-27,63,-61,63","w":206},",":{"d":"-43,143r-15,-29v83,-41,118,-92,121,-116v-28,-8,-43,-36,-43,-55v0,-33,26,-61,61,-61v35,0,63,28,63,70v0,67,-64,148,-187,191","w":206},":":{"d":"154,-255v-34,0,-61,-28,-61,-62v0,-35,27,-62,61,-62v34,0,61,27,61,62v0,34,-27,62,-61,62xm94,8v-34,0,-61,-28,-61,-62v0,-34,27,-62,61,-62v34,0,61,28,61,62v0,34,-27,62,-61,62","w":231},";":{"d":"154,-255v-34,0,-61,-28,-61,-62v0,-35,27,-62,61,-62v34,0,61,27,61,62v0,34,-27,62,-61,62xm-30,142r-15,-29v83,-41,118,-91,121,-115v-28,-8,-43,-35,-43,-55v0,-32,26,-59,60,-59v34,0,63,28,63,69v0,65,-63,146,-186,189","w":231},"\u2026":{"d":"473,8v-34,0,-60,-27,-60,-61v0,-34,26,-61,60,-61v34,0,59,27,59,61v0,34,-25,61,-59,61xm270,8v-34,0,-60,-27,-60,-61v0,-34,26,-61,60,-61v34,0,59,27,59,61v0,34,-25,61,-59,61xm67,8v-34,0,-60,-27,-60,-61v0,-34,26,-61,60,-61v34,0,59,27,59,61v0,34,-25,61,-59,61","w":609},"\u00b7":{"d":"117,-208v-35,0,-61,-28,-61,-62v0,-35,26,-63,61,-63v35,0,61,28,61,63v0,34,-26,62,-61,62","w":206},"\u2022":{"d":"163,-172v-56,0,-97,-44,-97,-99v0,-56,41,-101,97,-101v55,0,96,45,96,101v0,55,-41,99,-96,99","w":292},"&":{"d":"11,-138v0,-107,87,-166,180,-206v-26,-43,-36,-77,-36,-118v0,-95,72,-168,169,-168v84,0,139,60,139,124v0,91,-81,141,-184,186v9,13,20,25,33,41r75,90v55,-78,95,-121,155,-121v41,0,65,27,65,55v0,28,-23,50,-49,50v-21,0,-38,-12,-45,-33v-24,7,-51,47,-86,94r99,116r-47,41r-92,-111v-50,57,-117,111,-209,111v-104,0,-167,-67,-167,-151xm185,-49v70,0,119,-43,162,-94r-84,-103v-16,-19,-29,-36,-41,-52v-86,41,-137,82,-137,154v0,54,36,95,100,95xm222,-464v0,37,5,63,27,99v92,-40,145,-79,145,-138v0,-36,-28,-70,-75,-70v-59,0,-97,54,-97,109","w":610},"!":{"d":"105,-175r77,-482r89,0r-132,482r-34,0xm98,8v-32,0,-58,-26,-58,-58v0,-32,26,-59,58,-59v32,0,57,27,57,59v0,32,-25,58,-57,58","w":245},"\u00a1":{"d":"201,-548v-32,0,-57,-27,-57,-59v0,-32,25,-58,57,-58v32,0,58,26,58,58v0,32,-26,59,-58,59xm28,0r132,-482r34,0r-77,482r-89,0","w":245},"?":{"d":"132,-176r28,-158v177,-7,250,-89,250,-169v0,-67,-51,-102,-118,-102v-55,0,-94,23,-103,43v12,7,25,22,25,41v0,27,-23,48,-50,48v-29,0,-52,-24,-52,-58v0,-77,93,-139,187,-139v105,0,186,63,186,163v0,108,-93,208,-268,227r-38,104r-47,0xm129,8v-32,0,-58,-26,-58,-58v0,-32,26,-59,58,-59v32,0,57,27,57,59v0,32,-25,58,-57,58","w":452},"\u00bf":{"d":"381,-552v-32,0,-58,-27,-58,-59v0,-32,26,-58,58,-58v32,0,57,26,57,58v0,32,-25,59,-57,59xm210,9v-104,0,-185,-63,-185,-163v0,-108,92,-208,268,-226r38,-106r48,0r-29,160v-177,6,-250,89,-250,168v0,67,51,103,117,103v56,0,95,-23,104,-44v-13,-7,-26,-22,-26,-40v0,-27,23,-49,50,-49v30,0,53,24,53,59v0,77,-93,138,-188,138","w":452},"\u201c":{"d":"358,-406v-36,0,-63,-28,-63,-69v0,-70,77,-155,190,-199r15,29v-84,48,-114,98,-120,122v25,10,40,32,40,55v0,34,-27,62,-62,62xm159,-406v-36,0,-63,-28,-63,-69v0,-70,77,-155,190,-199r15,29v-84,48,-115,98,-120,122v24,10,39,32,39,55v0,34,-26,62,-61,62","w":418},"\u201d":{"d":"277,-405r-15,-29v83,-48,114,-98,120,-122v-25,-10,-40,-32,-40,-55v0,-34,26,-62,62,-62v35,0,62,28,62,70v0,69,-76,154,-189,198xm78,-405r-15,-29v83,-48,114,-98,120,-122v-25,-10,-40,-32,-40,-55v0,-34,26,-62,62,-62v35,0,62,28,62,70v0,69,-76,154,-189,198","w":418},"\u2018":{"d":"159,-404v-36,0,-63,-28,-63,-70v0,-70,78,-156,192,-201r15,29v-85,49,-116,100,-121,124v25,10,40,33,40,55v0,35,-27,63,-63,63","w":221},"\u2019":{"d":"78,-401r-15,-30v84,-48,115,-99,121,-123v-25,-11,-41,-33,-41,-56v0,-34,27,-63,63,-63v36,0,63,28,63,71v0,70,-77,155,-191,201","w":221},"\u201e":{"d":"158,141r-15,-29v82,-40,117,-91,120,-114v-28,-8,-43,-35,-43,-54v0,-32,26,-59,60,-59v34,0,62,27,62,68v0,65,-63,145,-184,188xm-39,141r-14,-29v81,-40,116,-91,119,-114v-28,-8,-42,-35,-42,-54v0,-32,25,-59,59,-59v34,0,62,27,62,68v0,65,-62,145,-184,188","w":409},"\u201a":{"d":"-38,143r-15,-29v83,-41,118,-92,121,-116v-28,-8,-43,-36,-43,-55v0,-33,26,-61,61,-61v35,0,63,28,63,70v0,67,-64,148,-187,191","w":216},"\u00ab":{"d":"374,-107r-140,-169r213,-168r35,41r-158,137r92,125xm182,-107r-141,-169r214,-168r35,41r-158,137r91,125","w":483},"\u00bb":{"d":"262,-106r-35,-41r158,-137r-91,-126r41,-33r140,169xm70,-106r-35,-41r158,-137r-92,-126r41,-33r141,169","w":483},"\u2039":{"d":"182,-107r-141,-169r214,-168r35,41r-158,137r91,125","w":291},"\u203a":{"d":"70,-106r-35,-41r158,-137r-92,-126r41,-33r141,169","w":291},"-":{"d":"41,-243r17,-70r213,0r-15,70r-215,0","w":292},"\u2013":{"d":"31,-244r16,-68r404,0r-15,68r-405,0","w":462},"\u2014":{"d":"31,-244r16,-68r646,0r-15,68r-647,0","w":704},"_":{"d":"-56,148r17,-67r541,0r-15,67r-543,0","w":516},"\/":{"d":"-40,209r-57,-32r517,-918r57,32","w":377},"\\":{"d":"175,201r-65,-930r64,-5r66,929","w":311},"|":{"d":"104,200r0,-932r62,0r0,932r-62,0","w":270},"(":{"d":"278,221v-117,-94,-203,-233,-203,-407v0,-253,156,-462,370,-565r28,52v-202,106,-324,300,-324,514v0,144,65,270,168,361","w":365},")":{"d":"-34,221r-29,-51v203,-106,324,-300,324,-514v0,-145,-65,-270,-167,-361r38,-46v117,94,204,233,204,408v0,253,-156,461,-370,564","w":374},"[":{"d":"6,200r217,-932r229,0r-14,62r-158,0r-189,808r158,0r-14,62r-229,0","w":341},"]":{"d":"-88,200r15,-62r158,0r189,-808r-159,0r15,-62r228,0r-216,932r-230,0","w":341},"{":{"d":"208,214v-119,-15,-176,-81,-176,-159v0,-63,44,-109,85,-143v33,-28,63,-55,63,-83v0,-27,-23,-62,-90,-62r-34,0r16,-68r35,0v77,0,115,-40,115,-83v0,-24,-13,-54,-29,-83v-18,-33,-34,-71,-34,-108v0,-90,81,-168,258,-172r-8,51v-133,8,-183,66,-183,118v0,30,15,62,32,94v17,33,32,68,32,98v0,66,-46,110,-124,121v58,13,84,52,84,94v0,45,-38,83,-77,115v-38,32,-73,68,-73,108v0,52,34,93,121,113","w":337},"}":{"d":"-56,213r8,-51v133,-8,183,-66,183,-118v0,-30,-15,-63,-32,-95v-17,-32,-32,-67,-32,-98v0,-65,46,-109,124,-120v-58,-13,-84,-52,-84,-94v0,-45,38,-83,77,-116v38,-32,73,-67,73,-108v0,-52,-34,-92,-121,-112r13,-49v119,14,176,81,176,159v0,63,-44,108,-85,143v-33,27,-63,55,-63,83v0,27,23,62,90,62r34,0r-16,68r-35,0v-77,0,-115,40,-115,83v0,24,13,54,29,83v18,32,34,71,34,108v0,90,-81,168,-258,172","w":337},"@":{"d":"337,176v-175,0,-292,-130,-292,-305v0,-267,196,-479,427,-479v178,0,291,117,291,287v0,158,-85,285,-194,285v-64,0,-94,-40,-92,-84v-29,51,-78,84,-132,84v-70,0,-123,-53,-123,-139v0,-116,85,-216,183,-216v60,0,96,37,108,82r22,-78r64,0r-56,224v-14,51,-1,79,36,79v76,0,138,-113,138,-237v0,-139,-93,-245,-245,-245v-209,0,-381,195,-381,438v0,146,98,262,247,262v57,0,111,-14,160,-40r19,36v-54,30,-116,46,-180,46xm370,-95v71,0,127,-75,127,-150v0,-54,-31,-85,-83,-85v-68,0,-120,71,-120,149v0,51,26,86,76,86","w":805},"\u00a9":{"d":"302,8v-147,0,-256,-116,-256,-262v0,-145,109,-262,256,-262v148,0,257,117,257,262v0,145,-110,262,-257,262xm302,-28v123,0,216,-101,216,-226v0,-126,-92,-227,-216,-227v-123,0,-215,101,-215,227v0,125,92,226,215,226xm313,-125v-79,0,-134,-56,-134,-132v0,-80,62,-134,131,-134v61,0,99,34,99,62v0,16,-11,29,-25,29v-14,0,-25,-11,-25,-25v0,-5,2,-11,4,-14v-7,-9,-24,-17,-53,-17v-51,0,-90,43,-90,97v0,53,37,98,94,98v30,0,54,-12,76,-33r23,26v-24,28,-62,43,-100,43","w":605},"\u2117":{"d":"302,8v-147,0,-256,-116,-256,-262v0,-145,109,-262,256,-262v148,0,257,117,257,262v0,145,-110,262,-257,262xm302,-28v123,0,216,-101,216,-226v0,-126,-92,-227,-216,-227v-123,0,-215,101,-215,227v0,125,92,226,215,226xm216,-120r0,-33r32,0r0,-197r-32,0r0,-33r104,0v56,0,98,32,98,84v0,58,-40,88,-101,88r-31,0r0,58r34,0r0,33r-104,0xm320,-244v37,0,60,-21,60,-55v0,-31,-26,-51,-62,-51r-32,0r0,105v6,0,16,1,34,1","w":605},"\u00ae":{"d":"267,-336v-100,0,-178,-79,-178,-178v0,-100,78,-179,178,-179v100,0,179,79,179,179v0,99,-80,178,-179,178xm267,-661v-79,0,-142,64,-142,147v0,82,63,146,142,146v78,0,143,-64,143,-146v0,-83,-63,-147,-143,-147xm199,-432r0,-27r19,0r0,-116r-19,0r0,-27r68,0v38,0,68,17,68,51v0,22,-14,38,-32,46r24,46r20,0r0,27r-41,0r-34,-64r-23,0r0,37r21,0r0,27r-71,0xm249,-523r17,0v22,0,36,-9,36,-26v0,-18,-14,-26,-37,-26r-16,0r0,52","w":392},"\u2120":{"d":"199,-405v-49,0,-89,-29,-89,-62v0,-20,13,-34,30,-34v18,0,26,10,26,24v0,8,-4,17,-9,21v7,9,24,15,46,15v27,0,47,-12,47,-33v0,-23,-20,-32,-49,-47v-29,-16,-54,-36,-54,-70v0,-38,35,-72,90,-72v50,0,83,30,83,56v0,20,-11,34,-29,34v-16,0,-26,-9,-26,-24v0,-6,4,-15,8,-19v-4,-5,-21,-11,-39,-11v-25,0,-43,14,-43,31v0,22,23,32,48,46v31,17,55,36,55,71v0,42,-37,74,-95,74xm314,-411r7,-35r36,0r50,-177r-37,0r8,-35r83,0r33,153r104,-153r89,0r-8,35r-37,0r-34,177r36,0r-8,35r-104,0r7,-35r31,0r30,-155r-109,157r-19,0r-36,-157r-42,155r32,0r-8,35r-104,0","w":639},"\u2122":{"d":"320,-411r8,-35r35,0r50,-177r-37,0r8,-35r83,0r33,153r104,-153r89,0r-8,35r-37,0r-34,177r37,0r-8,35r-105,0r7,-35r31,0r31,-155r-109,157r-19,0r-36,-157r-43,155r32,0r-8,35r-104,0xm119,-411r7,-35r37,0r43,-179r-58,0r-10,41r-37,0r17,-74r231,0r-17,74r-39,0r11,-41r-57,0r-43,179r36,0r-8,35r-113,0","w":645},"*":{"d":"323,-370v-19,0,-35,-17,-39,-40r-20,-102r-57,86v-12,16,-26,23,-39,23v-21,0,-35,-16,-35,-35v0,-15,11,-30,27,-39r90,-51r-99,-30v-23,-6,-37,-21,-37,-39v0,-20,16,-36,37,-36v14,0,24,7,34,16r76,69r-2,-103v-1,-30,16,-49,36,-49v27,0,49,24,30,63r-43,93r98,-32v7,-3,14,-4,22,-4v22,0,37,16,37,35v0,26,-22,41,-53,36r-101,-12r62,83v8,11,12,24,12,35v0,18,-19,33,-36,33","w":405},"\u2020":{"d":"147,2r79,-392r-80,-8v2,34,-22,58,-49,58v-30,0,-50,-23,-50,-50v0,-33,25,-59,66,-59v10,0,23,2,35,5r104,20r9,-155v2,-38,17,-61,48,-61v42,0,50,39,35,74r-59,146r104,-23v11,-2,21,-4,30,-4v37,0,59,23,59,56v0,27,-19,51,-49,51v-27,0,-51,-24,-49,-57r-85,12r-112,387r-36,0","w":466},"\u2021":{"d":"220,-65r-8,131v-2,36,-17,58,-46,58v-39,0,-48,-36,-34,-72r49,-118r-80,19v-10,2,-21,4,-30,4v-37,0,-63,-23,-63,-53v0,-26,19,-48,49,-48v26,0,49,21,47,53r71,-9r53,-160r16,-157r-68,-9v2,33,-21,54,-48,54v-28,0,-48,-22,-48,-47v0,-31,25,-55,64,-55v10,0,22,2,34,4r87,19r8,-131v2,-36,17,-58,46,-58v39,0,48,36,34,72r-49,119r80,-19v10,-3,21,-4,30,-4v36,0,63,22,63,52v0,26,-20,48,-49,48v-26,0,-49,-21,-48,-53r-71,9r-52,160r-17,157r69,9v-2,-33,21,-54,47,-54v29,0,49,22,49,47v0,31,-26,55,-65,55v-10,0,-21,-2,-33,-4","w":486},"^":{"d":"132,-359r-29,-38r188,-147r114,153r-35,31r-94,-88","w":443},"~":{"d":"308,-188v-38,0,-61,-19,-82,-40v-20,-20,-32,-29,-47,-29v-23,0,-43,20,-61,64r-47,-17v16,-69,64,-117,110,-117v38,0,63,21,84,42v20,19,31,28,46,28v23,0,41,-18,60,-64r48,17v-20,74,-65,116,-111,116","w":466},"$":{"d":"174,106r-51,-14v5,-21,21,-68,30,-100v-71,-21,-124,-66,-124,-114v0,-31,20,-57,50,-57v28,0,46,22,46,44v0,16,-8,29,-19,39v11,15,37,28,67,36r53,-176v-61,-28,-122,-61,-122,-135v0,-76,75,-140,184,-140v6,0,13,1,20,1r20,-69r52,14r-20,64v63,18,108,59,108,103v0,35,-22,56,-49,56v-26,0,-45,-19,-45,-45v0,-12,5,-26,16,-38v-8,-10,-28,-18,-51,-23r-50,165v64,31,132,67,132,141v0,88,-80,146,-185,146v-11,0,-21,-1,-31,-2xm348,-133v0,-39,-35,-62,-79,-83r-49,163r12,0v63,0,116,-28,116,-80xm177,-379v0,34,30,56,69,76v12,-42,33,-108,46,-151r-6,0v-63,0,-109,28,-109,75","w":483},"\u00a3":{"d":"486,-404v0,35,-23,60,-50,60v-24,0,-44,-19,-44,-45v0,-16,7,-29,17,-37v-7,-15,-44,-30,-77,-30v-87,0,-132,66,-132,165v0,38,6,71,9,113r174,0r-14,57r-161,0v-5,56,-27,109,-80,152v25,0,44,7,77,18v42,14,66,20,92,20v40,0,69,-12,109,-44r32,39v-45,50,-97,65,-145,65v-44,0,-71,-10,-116,-27v-41,-16,-64,-24,-93,-24v-30,34,-65,49,-91,49v-25,0,-44,-17,-44,-39v0,-38,53,-64,120,-60v48,-45,69,-100,75,-149r-106,0r13,-57r94,0v-3,-40,-10,-73,-10,-114v0,-128,75,-224,197,-224v92,0,154,57,154,112","w":497},"\u20ac":{"d":"36,-219r61,0v0,-24,4,-48,10,-71r-64,0r13,-55r70,0v48,-100,148,-170,264,-170v120,0,183,75,183,135v0,37,-24,66,-57,66v-25,0,-46,-18,-46,-48v0,-14,11,-33,25,-41v-13,-26,-48,-49,-108,-49v-79,0,-148,42,-188,108r182,0r-13,54r-192,0v-7,23,-11,47,-11,71r196,0r-13,54r-179,0v20,77,84,111,159,111v55,0,109,-19,159,-58r35,49v-59,46,-122,72,-202,72v-102,0,-198,-56,-220,-173r-77,0","w":588},"\u00a5":{"d":"79,-230r13,-55r104,0r-72,-166r-58,0r13,-57r185,0r-12,56r-67,0r75,180r157,-180r-68,0r14,-56r188,0r-12,57r-55,0r-149,166r99,0r-13,55r-142,0r-12,53r142,0r-13,55r-141,0r-14,66r80,0r-13,56r-220,0r13,-56r79,0r15,-66r-140,0r12,-55r140,0r13,-53r-141,0","w":495},"\u00a2":{"d":"247,-34v-11,0,-21,0,-31,-2r-42,141r-51,-13r43,-140v-69,-26,-115,-87,-115,-170v0,-132,109,-250,243,-257r31,-104r51,14r-29,94v71,14,116,62,116,109v0,31,-22,58,-53,58v-21,0,-43,-14,-43,-45v0,-11,8,-28,21,-35v-11,-14,-33,-27,-61,-31r-96,321v8,1,16,1,24,1v53,0,110,-20,152,-57r-2,67v-42,31,-98,49,-158,49xm122,-222v0,53,25,93,64,113r91,-305v-83,14,-155,94,-155,192","w":474},"#":{"d":"74,-326r14,-59r103,0r34,-123r62,0r-34,123r128,0r34,-123r63,0r-34,123r93,0r-15,59r-95,0r-38,139r101,0r-14,59r-104,0r-35,128r-63,0r35,-128r-127,0r-35,128r-63,0r35,-128r-92,0r15,-59r94,0r38,-139r-100,0xm235,-328r-39,142r131,0r39,-142r-131,0","w":547},"\u00b6":{"d":"130,0r15,-59r80,0v0,0,33,-130,34,-130v-75,0,-115,-11,-147,-35v-44,-14,-66,-52,-66,-97v0,-118,112,-181,250,-181r297,1r-15,61r-78,0r-98,379r79,0r-15,61r-336,0xm286,-59r55,0r99,-383r-56,0","w":576},"\u00a7":{"d":"267,-465v-38,0,-72,14,-72,39v0,28,36,43,89,66v57,25,103,51,103,100v0,51,-45,81,-113,95v26,18,42,40,42,72v0,54,-51,102,-142,102v-91,0,-136,-46,-136,-86v0,-24,18,-43,41,-43v23,0,39,17,39,38v0,7,-3,17,-8,22v11,8,37,16,64,16v38,0,71,-14,71,-39v0,-26,-34,-42,-86,-65v-59,-25,-106,-51,-106,-102v0,-47,46,-80,115,-92v-27,-19,-42,-42,-42,-73v0,-53,50,-101,141,-101v88,0,135,47,135,86v0,24,-18,42,-40,42v-23,0,-39,-18,-39,-39v0,-7,2,-16,8,-22v-9,-7,-36,-16,-64,-16xm207,-199r20,9v59,-13,89,-29,89,-58v0,-24,-32,-41,-81,-61r-22,-9v-57,12,-88,33,-88,59v0,24,34,41,82,60","w":420},"\u00aa":{"d":"155,-404v-54,0,-93,-40,-93,-105v0,-88,65,-162,138,-162v41,0,70,25,80,57r14,-53r45,0r-45,185v-2,10,-3,19,-3,25v0,11,4,16,14,16v11,0,22,-9,35,-40r24,11v-14,45,-40,65,-68,65v-32,0,-50,-19,-51,-49v-22,31,-53,50,-90,50xm170,-447v55,0,94,-60,94,-114v0,-39,-21,-66,-61,-66v-51,0,-91,55,-91,114v0,39,21,66,58,66xm33,-298r11,-44r275,0r-11,44r-275,0","w":351},"\u00ba":{"d":"195,-406v-72,0,-112,-50,-112,-112v0,-80,60,-153,144,-153v72,0,112,51,112,112v0,81,-60,153,-144,153xm44,-298r12,-44r237,0r-11,44r-238,0xm197,-448v54,0,94,-49,94,-109v0,-43,-28,-71,-67,-71v-53,0,-93,48,-93,109v0,43,28,71,66,71","w":337},"\u00b0":{"d":"197,-414v-69,0,-108,-50,-108,-109v0,-74,58,-148,139,-148v69,0,108,50,108,109v0,74,-59,148,-139,148xm199,-460v48,0,86,-50,86,-100v0,-39,-26,-65,-60,-65v-47,0,-85,50,-85,100v0,39,26,65,59,65","w":324},"%":{"d":"448,-37v39,0,79,-45,79,-98v0,-34,-20,-59,-53,-59v-39,0,-79,45,-79,98v0,34,20,59,53,59xm70,6r-31,-36r271,-241r272,-249r31,36v-38,32,-168,148,-274,244xm171,-315v40,0,80,-45,80,-98v0,-34,-21,-59,-53,-59v-39,0,-79,44,-79,98v0,34,20,59,52,59xm169,-270v-63,0,-102,-46,-102,-105v0,-72,57,-142,133,-142v63,0,103,45,103,105v0,72,-57,142,-134,142xm446,8v-64,0,-103,-45,-103,-105v0,-72,57,-142,133,-142v64,0,103,45,103,105v0,72,-57,142,-133,142","w":629},"\u2030":{"d":"70,6r-31,-36r271,-241r272,-249r31,36v-38,32,-168,148,-274,244xm171,-315v40,0,80,-45,80,-98v0,-34,-21,-59,-53,-59v-39,0,-79,44,-79,98v0,34,20,59,52,59xm169,-270v-63,0,-102,-46,-102,-105v0,-72,57,-142,133,-142v63,0,103,45,103,105v0,72,-57,142,-134,142xm448,-37v39,0,79,-45,79,-98v0,-34,-20,-59,-53,-59v-39,0,-79,45,-79,98v0,34,20,59,53,59xm446,8v-64,0,-103,-45,-103,-105v0,-72,57,-142,133,-142v64,0,103,45,103,105v0,72,-57,142,-133,142xm715,-37v40,0,79,-45,79,-98v0,-34,-20,-59,-52,-59v-40,0,-79,45,-79,98v0,34,20,59,52,59xm713,8v-63,0,-103,-45,-103,-105v0,-72,57,-142,134,-142v63,0,102,45,102,105v0,72,-56,142,-133,142","w":874},"\"":{"d":"248,-420r21,-194v4,-38,27,-56,51,-56v28,0,48,21,48,47v0,9,-3,19,-7,28r-85,175r-28,0xm93,-420r21,-194v4,-38,27,-56,51,-56v29,0,48,21,48,47v0,9,-3,19,-7,28r-85,175r-28,0","w":329},"'":{"d":"93,-420r21,-194v4,-38,27,-56,51,-56v29,0,48,21,48,47v0,9,-3,19,-7,28r-85,175r-28,0","w":175},"+":{"d":"294,-433r-31,132r135,0r-14,61r-135,0r-34,146r-63,0r34,-146r-135,0r15,-61r134,0r31,-132r63,0","w":419},"\u2212":{"d":"51,-240r15,-61r332,0r-14,61r-333,0","w":419},"\u00f7":{"d":"51,-240r15,-61r332,0r-14,61r-333,0xm257,-358v-27,0,-50,-23,-50,-50v0,-27,24,-50,50,-50v26,0,49,23,49,50v0,27,-23,50,-49,50xm193,-84v-27,0,-49,-22,-49,-49v0,-27,23,-50,50,-50v26,0,48,23,48,50v0,27,-23,49,-49,49","w":419},"=":{"d":"89,-313r14,-62r299,0r-14,62r-299,0xm51,-153r14,-62r299,0r-14,62r-299,0","w":419},"\u00d7":{"d":"151,-425r81,108r125,-103r39,49r-126,104r82,109r-52,42r-82,-109r-125,103r-39,-49r126,-104r-81,-109","w":419},"<":{"d":"268,-79r-213,-170r8,-33r286,-167r30,48r-241,141r169,135","w":426},">":{"d":"87,-82r-31,-47r241,-141r-169,-136r39,-46r213,170r-8,33","w":409},"\u00b1":{"d":"312,-490r-31,135r135,0r-14,62r-136,0r-31,135r-63,0r31,-135r-134,0r14,-62r135,0r31,-135r63,0xm6,-16r14,-62r331,0r-14,62r-331,0","w":419},"\u00bd":{"d":"451,0v-1,0,-10,-24,-10,-24v33,-80,98,-126,172,-165v55,-29,84,-52,84,-85v0,-29,-26,-48,-64,-48v-38,0,-58,13,-66,23v6,8,10,16,10,25v0,19,-14,34,-33,34v-20,0,-34,-16,-34,-38v0,-44,54,-91,127,-91v66,0,114,36,114,94v0,57,-53,90,-118,125v-62,33,-103,63,-126,106r153,0r13,-57r45,0r-23,101r-244,0xm56,-280r11,-47r99,0r61,-263r-98,21r-2,-47r137,-31r25,12r-71,308r97,0r-10,47r-249,0xm167,13r-31,-26r270,-318r263,-320r31,26r-270,318","w":795},"\u2153":{"d":"67,-280r11,-47r99,0r61,-263r-98,21r-2,-47r137,-31r25,12r-71,308r97,0r-10,47r-249,0xm178,13r-31,-26r270,-318r263,-320r31,26r-270,318xm587,5v-63,0,-124,-32,-124,-82v0,-20,15,-38,34,-38v19,0,32,14,32,32v0,8,-5,18,-11,22v8,11,32,22,70,22v51,0,83,-26,83,-64v0,-29,-33,-60,-87,-60r-20,0r11,-47r20,0v62,0,101,-27,101,-62v0,-33,-32,-50,-71,-50v-22,0,-38,5,-47,13v4,3,7,10,7,16v0,19,-15,32,-32,32v-19,0,-34,-14,-34,-36v0,-33,40,-71,114,-71v72,0,118,43,118,91v0,55,-44,87,-105,93v51,13,78,44,78,84v0,69,-68,105,-137,105","w":795},"\u2154":{"d":"72,-280v-1,0,-10,-24,-10,-24v33,-80,98,-126,172,-165v55,-29,84,-52,84,-85v0,-29,-26,-48,-64,-48v-38,0,-58,13,-66,23v6,8,10,16,10,25v0,19,-14,34,-33,34v-20,0,-34,-16,-34,-38v0,-44,54,-91,127,-91v66,0,114,36,114,94v0,57,-53,90,-118,125v-62,33,-103,63,-126,106r153,0r13,-57r45,0r-23,101r-244,0xm588,5v-63,0,-124,-32,-124,-82v0,-20,15,-38,34,-38v19,0,32,14,32,32v0,8,-5,18,-11,22v8,11,32,22,70,22v51,0,83,-26,83,-64v0,-29,-33,-60,-87,-60r-20,0r11,-47r20,0v62,0,101,-27,101,-62v0,-33,-32,-50,-71,-50v-22,0,-38,5,-47,13v4,3,7,10,7,16v0,19,-15,32,-32,32v-19,0,-34,-14,-34,-36v0,-33,40,-71,114,-71v72,0,118,43,118,91v0,55,-44,87,-105,93v51,13,78,44,78,84v0,69,-68,105,-137,105xm180,13r-31,-26r270,-318r263,-320r31,26r-270,318","w":795},"\u00bc":{"d":"598,-41r16,-65r-164,0r-7,-24r238,-244r32,30r-197,198r108,0r18,-69r52,-19r-20,85r60,0r-11,43r-59,0r-15,65r47,0r-10,41r-160,0r9,-41r63,0xm67,-280r11,-47r99,0r61,-263r-98,21r-2,-47r137,-31r25,12r-71,308r97,0r-10,47r-249,0xm183,13r-31,-26r270,-318r263,-320r31,26r-270,318","w":795},"\u00be":{"d":"206,-275v-63,0,-124,-32,-124,-82v0,-20,15,-38,34,-38v19,0,32,14,32,32v0,8,-5,18,-11,22v8,11,32,22,70,22v51,0,83,-26,83,-64v0,-29,-33,-60,-87,-60r-20,0r11,-47r20,0v62,0,101,-27,101,-62v0,-33,-32,-50,-71,-50v-22,0,-38,5,-47,13v4,3,7,10,7,16v0,19,-15,32,-32,32v-19,0,-34,-14,-34,-36v0,-33,40,-71,114,-71v72,0,118,43,118,91v0,55,-44,87,-105,93v51,13,78,44,78,84v0,69,-68,105,-137,105xm594,-41r16,-65r-164,0r-7,-24r238,-244r32,30r-197,198r108,0r18,-69r52,-19r-20,85r60,0r-11,43r-59,0r-15,65r47,0r-10,41r-160,0r9,-41r63,0xm178,13r-31,-26r270,-318r263,-320r31,26r-270,318","w":795},"\u2155":{"d":"567,7v-63,0,-112,-35,-112,-70v0,-21,14,-37,34,-37v19,0,33,13,33,32v0,5,-2,11,-6,16v9,6,26,14,55,14v57,0,102,-40,102,-86v0,-39,-26,-62,-70,-62v-28,0,-55,7,-76,16r-27,-19r56,-173r199,0r-11,49r-157,0r-32,97v17,-7,37,-13,67,-13v56,0,102,39,102,100v0,74,-71,136,-157,136xm66,-280r11,-47r99,0r61,-263r-98,21r-2,-47r137,-31r25,12r-71,308r97,0r-10,47r-249,0xm174,13r-31,-26r270,-318r263,-320r31,26r-270,318","w":795},"\u2156":{"d":"88,-280v-1,0,-10,-24,-10,-24v33,-80,98,-126,172,-165v55,-29,84,-52,84,-85v0,-29,-26,-48,-64,-48v-38,0,-58,13,-66,23v6,8,10,16,10,25v0,19,-14,34,-33,34v-20,0,-34,-16,-34,-38v0,-44,54,-91,127,-91v66,0,114,36,114,94v0,57,-53,90,-118,125v-62,33,-103,63,-126,106r153,0r13,-57r45,0r-23,101r-244,0xm573,7v-63,0,-112,-35,-112,-70v0,-21,14,-37,34,-37v19,0,33,13,33,32v0,5,-2,11,-6,16v9,6,26,14,55,14v57,0,102,-40,102,-86v0,-39,-26,-62,-70,-62v-28,0,-55,7,-76,16r-27,-19r56,-173r199,0r-11,49r-157,0r-32,97v17,-7,37,-13,67,-13v56,0,102,39,102,100v0,74,-71,136,-157,136xm190,13r-31,-26r270,-318r263,-320r31,26r-270,318","w":795},"\u2157":{"d":"566,7v-63,0,-112,-35,-112,-70v0,-21,14,-37,34,-37v19,0,33,13,33,32v0,5,-2,11,-6,16v9,6,26,14,55,14v57,0,102,-40,102,-86v0,-39,-26,-62,-70,-62v-28,0,-55,7,-76,16r-27,-19r56,-173r199,0r-11,49r-157,0r-32,97v17,-7,37,-13,67,-13v56,0,102,39,102,100v0,74,-71,136,-157,136xm170,13r-31,-26r270,-318r263,-320r31,26r-270,318xm209,-275v-63,0,-124,-32,-124,-82v0,-20,15,-38,34,-38v19,0,32,14,32,32v0,8,-5,18,-11,22v8,11,32,22,70,22v51,0,83,-26,83,-64v0,-29,-33,-60,-87,-60r-20,0r11,-47r20,0v62,0,101,-27,101,-62v0,-33,-32,-50,-71,-50v-22,0,-38,5,-47,13v4,3,7,10,7,16v0,19,-15,32,-32,32v-19,0,-34,-14,-34,-36v0,-33,40,-71,114,-71v72,0,118,43,118,91v0,55,-44,87,-105,93v51,13,78,44,78,84v0,69,-68,105,-137,105","w":795},"\u2158":{"d":"573,7v-63,0,-112,-35,-112,-70v0,-21,14,-37,34,-37v19,0,33,13,33,32v0,5,-2,11,-6,16v9,6,26,14,55,14v57,0,102,-40,102,-86v0,-39,-26,-62,-70,-62v-28,0,-55,7,-76,16r-27,-19r56,-173r199,0r-11,49r-157,0r-32,97v17,-7,37,-13,67,-13v56,0,102,39,102,100v0,74,-71,136,-157,136xm232,-321r16,-65r-164,0r-7,-24r238,-244r32,30r-197,198r108,0r18,-69r52,-19r-20,85r60,0r-11,43r-59,0r-15,65r47,0r-10,41r-160,0r9,-41r63,0xm179,13r-31,-26r270,-318r263,-320r31,26r-270,318","w":795},"\u2159":{"d":"495,-26v-22,-23,-34,-55,-34,-100v0,-73,30,-149,81,-196v31,-29,67,-47,111,-47v53,0,94,31,94,66v0,20,-16,36,-34,36v-17,0,-32,-14,-32,-32v0,-6,3,-13,7,-17v-6,-5,-17,-10,-34,-10v-27,0,-56,12,-81,36v-27,26,-50,69,-59,112v24,-31,59,-51,99,-51v64,0,110,44,110,101v0,74,-65,135,-142,135v-37,0,-67,-14,-86,-33xm60,-280r11,-47r99,0r61,-263r-98,21r-2,-47r137,-31r25,12r-71,308r97,0r-10,47r-249,0xm169,13r-31,-26r270,-318r263,-320r31,26r-270,318xm581,-39v51,0,89,-39,89,-85v0,-35,-26,-62,-67,-62v-50,0,-90,42,-90,83v0,18,6,33,18,45v12,12,29,19,50,19","w":795},"\u215a":{"d":"492,-26v-22,-23,-34,-55,-34,-100v0,-73,30,-149,81,-196v31,-29,67,-47,111,-47v53,0,94,31,94,66v0,20,-16,36,-34,36v-17,0,-32,-14,-32,-32v0,-6,3,-13,7,-17v-6,-5,-17,-10,-34,-10v-27,0,-56,12,-81,36v-27,26,-50,69,-59,112v24,-31,59,-51,99,-51v64,0,110,44,110,101v0,74,-65,135,-142,135v-37,0,-67,-14,-86,-33xm189,-273v-63,0,-112,-35,-112,-70v0,-21,14,-37,34,-37v19,0,33,13,33,32v0,5,-2,11,-6,16v9,6,26,14,55,14v57,0,102,-40,102,-86v0,-39,-26,-62,-70,-62v-28,0,-55,7,-76,16r-27,-19r56,-173r199,0r-11,49r-157,0r-32,97v17,-7,37,-13,67,-13v56,0,102,39,102,100v0,74,-71,136,-157,136xm163,13r-31,-26r270,-318r263,-320r31,26r-270,318xm578,-39v51,0,89,-39,89,-85v0,-35,-26,-62,-67,-62v-50,0,-90,42,-90,83v0,18,6,33,18,45v12,12,29,19,50,19","w":795},"\u215b":{"d":"63,-280r11,-47r99,0r61,-263r-98,21r-2,-47r137,-31r25,12r-71,308r97,0r-10,47r-249,0xm164,13r-31,-26r270,-318r263,-320r31,26r-270,318xm585,6v-77,0,-130,-46,-130,-99v0,-54,41,-91,95,-101v-36,-17,-51,-46,-51,-75v0,-48,48,-98,129,-98v69,0,120,40,120,96v0,46,-34,77,-83,89v33,15,56,43,56,79v0,58,-51,109,-136,109xm620,-207v43,0,75,-26,75,-61v0,-31,-28,-55,-69,-55v-42,0,-74,25,-74,59v0,33,30,57,68,57xm585,-39v47,0,83,-28,83,-66v0,-33,-28,-60,-75,-60v-51,0,-84,28,-84,66v0,33,30,60,76,60","w":795},"\u215c":{"d":"591,6v-77,0,-130,-46,-130,-99v0,-54,41,-91,95,-101v-36,-17,-51,-46,-51,-75v0,-48,48,-98,129,-98v69,0,120,40,120,96v0,46,-34,77,-83,89v33,15,56,43,56,79v0,58,-51,109,-136,109xm626,-207v43,0,75,-26,75,-61v0,-31,-28,-55,-69,-55v-42,0,-74,25,-74,59v0,33,30,57,68,57xm591,-39v47,0,83,-28,83,-66v0,-33,-28,-60,-75,-60v-51,0,-84,28,-84,66v0,33,30,60,76,60xm166,13r-31,-26r270,-318r263,-320r31,26r-270,318xm208,-275v-63,0,-124,-32,-124,-82v0,-20,15,-38,34,-38v19,0,32,14,32,32v0,8,-5,18,-11,22v8,11,32,22,70,22v51,0,83,-26,83,-64v0,-29,-33,-60,-87,-60r-20,0r11,-47r20,0v62,0,101,-27,101,-62v0,-33,-32,-50,-71,-50v-22,0,-38,5,-47,13v4,3,7,10,7,16v0,19,-15,32,-32,32v-19,0,-34,-14,-34,-36v0,-33,40,-71,114,-71v72,0,118,43,118,91v0,55,-44,87,-105,93v51,13,78,44,78,84v0,69,-68,105,-137,105","w":795},"\u215d":{"d":"190,-273v-63,0,-112,-35,-112,-70v0,-21,14,-37,34,-37v19,0,33,13,33,32v0,5,-2,11,-6,16v9,6,26,14,55,14v57,0,102,-40,102,-86v0,-39,-26,-62,-70,-62v-28,0,-55,7,-76,16r-27,-19r56,-173r199,0r-11,49r-157,0r-32,97v17,-7,37,-13,67,-13v56,0,102,39,102,100v0,74,-71,136,-157,136xm156,13r-31,-26r270,-318r263,-320r31,26r-270,318xm579,6v-77,0,-130,-46,-130,-99v0,-54,41,-91,95,-101v-36,-17,-51,-46,-51,-75v0,-48,48,-98,129,-98v69,0,120,40,120,96v0,46,-34,77,-83,89v33,15,56,43,56,79v0,58,-51,109,-136,109xm614,-207v43,0,75,-26,75,-61v0,-31,-28,-55,-69,-55v-42,0,-74,25,-74,59v0,33,30,57,68,57xm579,-39v47,0,83,-28,83,-66v0,-33,-28,-60,-75,-60v-51,0,-84,28,-84,66v0,33,30,60,76,60","w":795},"\u215e":{"d":"136,-280r218,-318r-153,0r-15,64r-48,0r26,-108r243,0r13,26r-225,336r-59,0xm576,6v-77,0,-130,-46,-130,-99v0,-54,41,-91,95,-101v-36,-17,-51,-46,-51,-75v0,-48,48,-98,129,-98v69,0,120,40,120,96v0,46,-34,77,-83,89v33,15,56,43,56,79v0,58,-51,109,-136,109xm611,-207v43,0,75,-26,75,-61v0,-31,-28,-55,-69,-55v-42,0,-74,25,-74,59v0,33,30,57,68,57xm576,-39v47,0,83,-28,83,-66v0,-33,-28,-60,-75,-60v-51,0,-84,28,-84,66v0,33,30,60,76,60xm131,13r-31,-26r270,-318r263,-320r31,26r-270,318","w":795},"\u2070":{"d":"242,-423v-73,0,-115,-55,-115,-142v0,-123,70,-233,166,-233v72,0,115,55,115,142v0,123,-70,233,-166,233xm245,-470v64,0,110,-96,110,-186v0,-57,-21,-95,-65,-95v-65,0,-110,96,-110,186v0,57,20,95,65,95"},"\u00b9":{"d":"112,-430r11,-47r99,0r61,-263r-98,21r-2,-47r137,-31r25,12r-71,308r97,0r-10,47r-249,0"},"\u00b2":{"d":"111,-430v-1,0,-10,-24,-10,-24v33,-80,98,-126,172,-165v55,-29,84,-52,84,-85v0,-29,-26,-48,-64,-48v-38,0,-58,13,-66,23v6,8,10,16,10,25v0,19,-14,34,-33,34v-20,0,-34,-16,-34,-38v0,-44,54,-91,127,-91v66,0,114,36,114,94v0,57,-53,90,-118,125v-62,33,-103,63,-126,106r153,0r13,-57r45,0r-23,101r-244,0"},"\u00b3":{"d":"243,-425v-63,0,-124,-32,-124,-82v0,-20,15,-38,34,-38v19,0,32,14,32,32v0,8,-5,18,-11,22v8,11,32,22,70,22v51,0,83,-26,83,-64v0,-29,-33,-60,-87,-60r-20,0r11,-47r20,0v62,0,101,-27,101,-62v0,-33,-32,-50,-71,-50v-22,0,-38,5,-47,13v4,3,7,10,7,16v0,19,-15,32,-32,32v-19,0,-34,-14,-34,-36v0,-33,40,-71,114,-71v72,0,118,43,118,91v0,55,-44,87,-105,93v51,13,78,44,78,84v0,69,-68,105,-137,105"},"\u2074":{"d":"265,-471r16,-65r-164,0r-7,-24r238,-244r32,30r-197,198r108,0r18,-69r52,-19r-20,85r60,0r-11,43r-59,0r-15,65r47,0r-10,41r-160,0r9,-41r63,0"},"\u2075":{"d":"226,-423v-63,0,-112,-35,-112,-70v0,-21,14,-37,34,-37v19,0,33,13,33,32v0,5,-2,11,-6,16v9,6,26,14,55,14v57,0,102,-40,102,-86v0,-39,-26,-62,-70,-62v-28,0,-55,7,-76,16r-27,-19r56,-173r199,0r-11,49r-157,0r-32,97v17,-7,37,-13,67,-13v56,0,102,39,102,100v0,74,-71,136,-157,136"},"\u2076":{"d":"165,-456v-22,-23,-34,-55,-34,-100v0,-73,30,-149,81,-196v31,-29,67,-47,111,-47v53,0,94,31,94,66v0,20,-16,36,-34,36v-17,0,-32,-14,-32,-32v0,-6,3,-13,7,-17v-6,-5,-17,-10,-34,-10v-27,0,-56,12,-81,36v-27,26,-50,69,-59,112v24,-31,59,-51,99,-51v64,0,110,44,110,101v0,74,-65,135,-142,135v-37,0,-67,-14,-86,-33xm251,-469v51,0,89,-39,89,-85v0,-35,-26,-62,-67,-62v-50,0,-90,42,-90,83v0,18,6,33,18,45v12,12,29,19,50,19"},"\u2077":{"d":"160,-430r218,-318r-153,0r-15,64r-48,0r26,-108r243,0r13,26r-225,336r-59,0"},"\u2078":{"d":"252,-424v-77,0,-130,-46,-130,-99v0,-54,41,-91,95,-101v-36,-17,-51,-46,-51,-75v0,-48,48,-98,129,-98v69,0,120,40,120,96v0,46,-34,77,-83,89v33,15,56,43,56,79v0,58,-51,109,-136,109xm287,-637v43,0,75,-26,75,-61v0,-31,-28,-55,-69,-55v-42,0,-74,25,-74,59v0,33,30,57,68,57xm252,-469v47,0,83,-28,83,-66v0,-33,-28,-60,-75,-60v-51,0,-84,28,-84,66v0,33,30,60,76,60"},"\u2079":{"d":"151,-664v0,-74,64,-135,141,-135v37,0,67,14,86,33v22,23,34,55,34,100v0,73,-30,149,-81,196v-31,29,-67,47,-111,47v-53,0,-94,-31,-94,-66v0,-20,16,-36,34,-36v17,0,32,14,32,32v0,6,-2,13,-7,17v6,5,17,10,35,10v27,0,56,-12,80,-36v27,-25,49,-68,59,-112v-24,31,-59,51,-99,51v-64,0,-109,-44,-109,-101xm293,-753v-52,0,-89,39,-89,85v0,35,25,62,66,62v50,0,90,-42,90,-83v0,-18,-6,-33,-18,-45v-11,-12,-29,-19,-49,-19"},"\u2080":{"d":"111,147v-73,0,-115,-55,-115,-142v0,-123,70,-233,166,-233v72,0,115,55,115,142v0,123,-70,233,-166,233xm114,100v64,0,110,-96,110,-186v0,-57,-21,-95,-65,-95v-65,0,-110,96,-110,186v0,57,20,95,65,95"},"\u2081":{"d":"-19,140r11,-47r99,0r61,-263r-98,21r-2,-47r137,-31r25,12r-71,308r97,0r-10,47r-249,0"},"\u2082":{"d":"-20,140v-1,0,-10,-24,-10,-24v33,-80,98,-126,172,-165v55,-29,84,-52,84,-85v0,-29,-26,-48,-64,-48v-38,0,-58,13,-66,23v6,8,10,16,10,25v0,19,-14,34,-33,34v-20,0,-34,-16,-34,-38v0,-44,54,-91,127,-91v66,0,114,36,114,94v0,57,-53,90,-118,125v-62,33,-103,63,-126,106r153,0r13,-57r45,0r-23,101r-244,0"},"\u2083":{"d":"112,145v-63,0,-124,-32,-124,-82v0,-20,15,-38,34,-38v19,0,32,14,32,32v0,8,-5,18,-11,22v8,11,32,22,70,22v51,0,83,-26,83,-64v0,-29,-33,-60,-87,-60r-20,0r11,-47r20,0v62,0,101,-27,101,-62v0,-33,-32,-50,-71,-50v-22,0,-38,5,-47,13v4,3,7,10,7,16v0,19,-15,32,-32,32v-19,0,-34,-14,-34,-36v0,-33,40,-71,114,-71v72,0,118,43,118,91v0,55,-44,87,-105,93v51,13,78,44,78,84v0,69,-68,105,-137,105"},"\u2084":{"d":"134,99r16,-65r-164,0r-7,-24r238,-244r32,30r-197,198r108,0r18,-69r52,-19r-20,85r60,0r-11,43r-59,0r-15,65r47,0r-10,41r-160,0r9,-41r63,0"},"\u2085":{"d":"95,147v-63,0,-112,-35,-112,-70v0,-21,14,-37,34,-37v19,0,33,13,33,32v0,5,-2,11,-6,16v9,6,26,14,55,14v57,0,102,-40,102,-86v0,-39,-26,-62,-70,-62v-28,0,-55,7,-76,16r-27,-19r56,-173r199,0r-11,49r-157,0r-32,97v17,-7,37,-13,67,-13v56,0,102,39,102,100v0,74,-71,136,-157,136"},"\u2086":{"d":"34,114v-22,-23,-34,-55,-34,-100v0,-73,30,-149,81,-196v31,-29,67,-47,111,-47v53,0,94,31,94,66v0,20,-16,36,-34,36v-17,0,-32,-14,-32,-32v0,-6,3,-13,7,-17v-6,-5,-17,-10,-34,-10v-27,0,-56,12,-81,36v-27,26,-50,69,-59,112v24,-31,59,-51,99,-51v64,0,110,44,110,101v0,74,-65,135,-142,135v-37,0,-67,-14,-86,-33xm120,101v51,0,89,-39,89,-85v0,-35,-26,-62,-67,-62v-50,0,-90,42,-90,83v0,18,6,33,18,45v12,12,29,19,50,19"},"\u2087":{"d":"29,140r218,-318r-153,0r-15,64r-48,0r26,-108r243,0r13,26r-225,336r-59,0"},"\u2088":{"d":"121,146v-77,0,-130,-46,-130,-99v0,-54,41,-91,95,-101v-36,-17,-51,-46,-51,-75v0,-48,48,-98,129,-98v69,0,120,40,120,96v0,46,-34,77,-83,89v33,15,56,43,56,79v0,58,-51,109,-136,109xm156,-67v43,0,75,-26,75,-61v0,-31,-28,-55,-69,-55v-42,0,-74,25,-74,59v0,33,30,57,68,57xm121,101v47,0,83,-28,83,-66v0,-33,-28,-60,-75,-60v-51,0,-84,28,-84,66v0,33,30,60,76,60"},"\u2089":{"d":"20,-94v0,-74,64,-135,141,-135v37,0,67,14,86,33v22,23,34,55,34,100v0,73,-30,149,-81,196v-31,29,-67,47,-111,47v-53,0,-94,-31,-94,-66v0,-20,16,-36,34,-36v17,0,32,14,32,32v0,6,-2,13,-7,17v6,5,17,10,35,10v27,0,56,-12,80,-36v27,-26,49,-68,59,-112v-24,31,-59,51,-99,51v-64,0,-109,-44,-109,-101xm162,-183v-52,0,-89,39,-89,85v0,35,25,62,66,62v50,0,90,-42,90,-83v0,-18,-6,-33,-18,-45v-11,-12,-29,-19,-49,-19"},"\u00a0":{"w":209},"\u2003":{"w":1000},"\u2002":{"w":500},"\u2004":{"w":333},"\u2005":{"w":250},"\u2009":{"w":133},"\u200a":{"w":75},"\u2007":{"w":530},"\u2044":{"d":"-4,13r-31,-26r270,-318r263,-320r31,26r-270,318","w":500},"\u00b4":{"d":"231,-503r-17,-24r152,-126v15,-13,27,-19,43,-19v21,0,39,18,39,39v0,22,-16,38,-37,48","w":500},"\u02dd":{"d":"148,-504r-18,-24r125,-123v14,-13,28,-22,43,-22v21,0,39,15,39,40v0,15,-14,33,-36,45xm337,-508r-17,-25r131,-116v14,-13,28,-20,42,-20v23,0,38,18,38,40v0,17,-14,34,-38,45","w":500},"`":{"d":"397,-498r-117,-87v-19,-15,-26,-29,-26,-45v0,-23,20,-42,42,-42v19,0,31,9,46,32r78,123","w":552},"\u02c6":{"d":"200,-501r-28,-38r187,-145r113,152r-34,30r-93,-90","w":500},"\u02c7":{"d":"316,-501r-113,-152r35,-30r92,90r145,-91r28,37","w":500},"\u02d8":{"d":"319,-507v-76,0,-123,-57,-130,-142r46,-15v12,57,43,89,95,89v45,0,88,-25,127,-88r41,22v-40,84,-111,134,-179,134","w":500},"\u02dc":{"d":"400,-503v-38,0,-62,-19,-83,-40v-19,-20,-31,-29,-49,-29v-25,0,-43,19,-61,63r-45,-16v17,-69,65,-117,111,-117v38,0,61,20,82,41v19,19,32,28,49,28v25,0,44,-19,62,-63r44,16v-16,69,-65,117,-110,117","w":500},"\u00af":{"d":"175,-535r15,-63r300,0r-13,63r-302,0","w":500},"\u00a8":{"d":"423,-521v-31,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-25,57,-57,57xm249,-521v-32,0,-56,-25,-56,-57v0,-32,25,-58,57,-58v31,0,56,26,56,58v0,32,-26,57,-57,57","w":500},"\u02d9":{"d":"333,-519v-32,0,-58,-27,-58,-59v0,-33,26,-59,58,-59v32,0,58,26,58,59v0,32,-26,59,-58,59","w":500},"\u02da":{"d":"327,-499v-58,0,-92,-41,-92,-94v0,-67,51,-127,120,-127v59,0,93,41,93,93v0,68,-52,128,-121,128xm332,-547v36,0,63,-35,63,-75v0,-28,-18,-50,-44,-50v-37,0,-64,35,-64,75v0,28,18,50,45,50","w":500},"\u0326":{"d":"22,278r-13,-25v72,-35,104,-80,106,-100v-25,-8,-37,-32,-37,-48v0,-29,22,-52,52,-52v29,0,55,23,55,60v0,58,-55,128,-163,165","w":209},"\u00b8":{"d":"174,199v-47,0,-93,-22,-117,-42r20,-29v22,15,61,28,94,28v26,0,42,-14,42,-31v0,-18,-20,-35,-64,-28r-15,-18r58,-101r30,8r-22,65v53,6,79,38,79,71v0,49,-48,77,-105,77","w":500},"\u02db":{"d":"272,-48r28,15v-66,41,-126,91,-126,139v0,24,16,37,44,37v20,0,38,-4,51,-9r-12,50v-12,8,-34,17,-64,17v-51,0,-83,-28,-83,-74v0,-68,73,-130,162,-175","w":501}}});;
Cufon.registerFont({"w":556,"face":{"font-family":"Avenir","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"12","bbox":"-167 -920 1000 288","underline-thickness":"50","underline-position":"-100","stemh":"60","stemv":"72","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":278},"!":{"d":"175,-708r0,516r-72,0r0,-516r72,0xm193,-48v0,28,-22,54,-54,54v-32,0,-54,-26,-54,-54v0,-28,22,-54,54,-54v32,0,54,26,54,54","w":278},"\"":{"d":"157,-473r0,-235r60,0r0,235r-60,0xm302,-473r0,-235r60,0r0,235r-60,0","w":519},"#":{"d":"107,0r30,-214r-102,0r0,-60r110,0r22,-162r-108,0r0,-60r117,0r29,-212r61,0r-29,212r133,0r29,-212r61,0r-29,212r90,0r0,60r-99,0r-22,162r95,0r0,60r-103,0r-30,214r-61,0r30,-214r-133,0r-30,214r-61,0xm228,-436r-22,162r133,0r22,-162r-133,0"},"$":{"d":"254,-405r0,-252v-71,5,-121,59,-121,128v0,68,55,100,121,124xm302,-314r0,264v52,0,130,-29,131,-128v1,-68,-55,-112,-131,-136xm254,-49r0,-279v-91,-28,-193,-77,-193,-199v0,-116,95,-188,193,-195r0,-70r48,0r0,68v95,0,147,41,185,85r-56,48v-28,-47,-81,-68,-129,-67r0,267v98,35,203,83,203,213v0,111,-88,187,-203,194r0,68r-48,0r0,-66v-93,-5,-171,-53,-211,-110r60,-43v44,55,109,87,151,86"},"%":{"d":"390,-545v0,98,-77,175,-176,175v-99,0,-176,-77,-176,-175v0,-98,77,-175,176,-175v99,0,176,77,176,175xm330,-545v0,-66,-53,-115,-116,-115v-63,0,-116,49,-116,115v0,66,53,115,116,115v63,0,116,-49,116,-115xm795,-163v0,98,-77,175,-176,175v-99,0,-176,-77,-176,-175v0,-98,77,-175,176,-175v99,0,176,77,176,175xm735,-163v0,-66,-53,-115,-116,-115v-63,0,-116,49,-116,115v0,66,53,115,116,115v63,0,116,-49,116,-115xm667,-712r-450,743r-52,-27r451,-743","w":833},"&":{"d":"659,-383r-130,219r159,164r-102,0r-100,-104v-58,76,-120,122,-216,122v-118,0,-222,-75,-222,-202v0,-104,76,-169,161,-209v-42,-45,-83,-101,-83,-166v0,-106,77,-167,177,-167v94,0,171,56,171,159v0,93,-83,146,-156,184r163,168r97,-168r81,0xm402,-567v0,-56,-44,-93,-98,-93v-59,0,-106,40,-106,104v0,48,51,107,74,127v54,-31,130,-65,130,-138xm441,-152r-187,-196v-93,52,-128,92,-128,165v0,80,68,135,145,135v77,0,124,-46,170,-104","w":704},"\u2019":{"d":"204,-708r-81,235r-67,0r67,-235r81,0","w":260},"(":{"d":"199,-736r53,34v-85,137,-132,249,-132,414v0,165,45,270,128,408r-53,40v-184,-255,-190,-638,4,-896","w":260},")":{"d":"61,160r-53,-34v85,-137,132,-249,132,-414v0,-165,-45,-270,-128,-408r53,-40v184,255,190,638,-4,896","w":260},"*":{"d":"252,-708r0,143r140,-45r21,56r-141,45r90,121r-48,36r-92,-124r-92,124r-48,-36r90,-121r-141,-45r21,-56r140,45r0,-143r60,0","w":444},"+":{"d":"363,-558r0,225r225,0r0,60r-225,0r0,225r-60,0r0,-225r-225,0r0,-60r225,0r0,-225r60,0","w":666},",":{"d":"213,-95r-81,235r-67,0r67,-235r81,0","w":278},"-":{"d":"295,-273r0,66r-257,0r0,-66r257,0","w":333},".":{"d":"193,-48v0,28,-22,54,-54,54v-32,0,-54,-26,-54,-54v0,-28,22,-54,54,-54v32,0,54,26,54,54","w":278},"\/":{"d":"365,-706r-302,724r-58,-19r303,-725","w":370},"0":{"d":"278,-720v203,0,240,209,240,366v0,157,-37,366,-240,366v-203,0,-240,-209,-240,-366v0,-157,37,-366,240,-366xm278,-654v-154,0,-168,188,-168,300v0,112,14,300,168,300v154,0,168,-188,168,-300v0,-112,-14,-300,-168,-300"},"1":{"d":"348,-708r0,708r-72,0r0,-618r-127,112r-45,-54r180,-148r64,0"},"2":{"d":"498,-66r0,66r-450,0r0,-83r282,-287v43,-44,90,-95,90,-160v0,-78,-61,-124,-137,-124v-71,0,-126,43,-141,111r-76,-8v20,-105,103,-169,212,-169v114,0,214,62,214,184v0,108,-72,179,-143,249r-223,221r372,0"},"3":{"d":"348,-374v80,20,139,90,139,182v0,131,-103,204,-226,204v-104,0,-184,-43,-223,-143r76,-23v24,67,68,100,153,100v81,0,148,-57,148,-140v0,-118,-98,-149,-211,-144r0,-66v106,6,192,-23,192,-130v0,-76,-49,-120,-131,-120v-59,0,-106,28,-135,78r-63,-32v42,-76,110,-112,196,-112v111,0,205,66,205,184v0,77,-55,141,-120,162"},"4":{"d":"416,-708r0,474r102,0r0,66r-102,0r0,168r-72,0r0,-168r-306,0r0,-82r286,-458r92,0xm344,-234r0,-402r-2,0r-244,402r246,0"},"5":{"d":"465,-708r0,66r-290,0r-4,213v163,-61,319,47,319,210v0,137,-102,231,-238,231v-89,0,-166,-44,-204,-126r71,-31v27,55,77,91,139,91v90,0,160,-70,160,-158v0,-100,-73,-168,-174,-168v-51,0,-102,15,-147,39r7,-367r361,0"},"6":{"d":"385,-708r-193,304r2,2v146,-74,314,33,314,195v0,130,-97,219,-230,219v-133,0,-230,-89,-230,-219v0,-78,26,-133,61,-190r191,-311r85,0xm120,-207v0,90,65,153,158,153v93,0,158,-63,158,-153v0,-90,-65,-153,-158,-153v-93,0,-158,63,-158,153"},"7":{"d":"474,-708r0,66r-285,642r-81,0r291,-642r-345,0r0,-66r420,0"},"8":{"d":"54,-189v0,-95,57,-162,132,-188v-62,-21,-106,-86,-106,-158v0,-113,92,-185,198,-185v106,0,198,72,198,185v0,74,-48,135,-106,160v79,21,132,93,132,186v0,123,-105,201,-224,201v-119,0,-224,-78,-224,-201xm404,-529v0,-73,-55,-125,-126,-125v-71,0,-126,52,-126,125v0,73,55,125,126,125v71,0,126,-52,126,-125xm430,-199v0,-83,-60,-145,-152,-145v-92,0,-152,62,-152,145v0,83,60,145,152,145v92,0,152,-62,152,-145"},"9":{"d":"171,0r193,-304r-2,-2v-146,74,-314,-33,-314,-195v0,-130,97,-219,230,-219v133,0,230,89,230,219v0,78,-26,133,-61,190r-191,311r-85,0xm436,-501v0,-90,-65,-153,-158,-153v-93,0,-158,63,-158,153v0,90,65,153,158,153v93,0,158,-63,158,-153"},":":{"d":"193,-419v0,28,-22,54,-54,54v-32,0,-54,-26,-54,-54v0,-28,22,-54,54,-54v32,0,54,26,54,54xm193,-48v0,28,-22,54,-54,54v-32,0,-54,-26,-54,-54v0,-28,22,-54,54,-54v32,0,54,26,54,54","w":278},";":{"d":"213,-95r-81,235r-67,0r67,-235r81,0xm202,-419v0,28,-22,54,-54,54v-32,0,-54,-26,-54,-54v0,-28,22,-54,54,-54v32,0,54,26,54,54","w":278},"<":{"d":"588,-564r0,60r-429,201r429,201r0,60r-510,-238r0,-46","w":666},"=":{"d":"78,-408r510,0r0,60r-510,0r0,-60xm78,-258r510,0r0,60r-510,0r0,-60","w":666},">":{"d":"78,-504r0,-60r510,238r0,46r-510,238r0,-60r429,-201","w":666},"?":{"d":"276,-243r0,51r-72,0r0,-83v2,-110,162,-146,162,-264v0,-68,-48,-115,-117,-115v-67,0,-115,44,-127,109r-75,-9v15,-105,98,-166,201,-166v107,0,190,62,190,175v0,170,-162,156,-162,302xm300,-48v0,28,-22,54,-54,54v-32,0,-54,-26,-54,-54v0,-28,22,-54,54,-54v32,0,54,26,54,54","w":482},"@":{"d":"503,-409v0,-57,-39,-100,-81,-100v-97,0,-168,123,-168,216v0,56,40,96,94,96v87,0,155,-130,155,-212xm538,-487r22,-63r56,0r-84,282v-6,28,-23,71,14,71v69,0,151,-107,151,-218v0,-151,-140,-257,-280,-257v-172,0,-314,152,-314,318v0,166,142,318,314,318v99,0,199,-45,253,-121r63,0v-64,110,-186,175,-316,175v-204,0,-374,-163,-374,-372v0,-209,170,-372,374,-372v185,0,340,127,340,307v0,173,-140,282,-230,282v-43,0,-62,-23,-72,-59v-31,32,-66,59,-125,59v-85,0,-142,-61,-142,-150v0,-138,93,-282,234,-282v51,0,91,26,116,82","w":800},"A":{"d":"162,-186r-78,186r-84,0r308,-708r70,0r308,708r-84,0r-78,-186r-362,0xm343,-624r-154,372r307,0","w":686},"B":{"d":"96,0r0,-708v205,1,433,-34,439,178v2,79,-50,134,-125,157v99,8,160,74,160,177v0,46,-30,196,-258,196r-216,0xm168,-642r0,244v139,-1,289,23,289,-124v0,-29,-15,-120,-151,-120r-138,0xm168,-338r0,272r138,0v104,0,186,-41,186,-134v0,-93,-62,-138,-177,-138r-147,0","w":630},"C":{"d":"620,-154r59,42v-47,73,-145,130,-262,130v-211,0,-369,-157,-369,-372v0,-215,158,-372,369,-372v88,0,183,33,245,112r-63,47v-28,-46,-107,-93,-182,-93v-182,0,-291,143,-291,306v0,163,109,306,291,306v74,0,150,-24,203,-106","w":704},"D":{"d":"86,0r0,-708r235,0v177,0,372,118,372,354v0,236,-195,354,-372,354r-235,0xm158,-642r0,576r140,0v216,0,317,-142,317,-288v0,-146,-101,-288,-317,-288r-140,0","w":741},"E":{"d":"168,-335r0,269r379,0r0,66r-451,0r0,-708r439,0r0,66r-367,0r0,241r343,0r0,66r-343,0","w":593},"F":{"d":"168,-335r0,335r-72,0r0,-708r427,0r0,66r-355,0r0,241r330,0r0,66r-330,0"},"G":{"d":"673,-631r-54,53v-48,-51,-115,-82,-202,-82v-182,0,-291,143,-291,306v0,163,109,306,291,306v73,0,143,-20,196,-50r0,-237r-169,0r0,-66r241,0r0,347v-79,47,-182,72,-268,72v-211,0,-369,-157,-369,-372v0,-215,158,-372,369,-372v112,0,193,32,256,95","w":778},"H":{"d":"96,0r0,-708r72,0r0,307r386,0r0,-307r72,0r0,708r-72,0r0,-335r-386,0r0,335r-72,0","w":722},"I":{"d":"168,-708r0,708r-72,0r0,-708r72,0","w":264},"J":{"d":"14,-130r73,-15v13,59,49,97,112,97v105,0,125,-89,125,-176r0,-484r72,0r0,514v0,95,-47,212,-199,212v-97,0,-167,-51,-183,-148","w":482},"K":{"d":"168,-708r0,307r10,0r333,-307r103,0r-357,321r377,387r-106,0r-348,-365r-12,0r0,365r-72,0r0,-708r72,0","w":630},"L":{"d":"168,-708r0,642r330,0r0,66r-402,0r0,-708r72,0","w":500},"M":{"d":"206,-708r239,576r239,-576r110,0r0,708r-72,0r0,-612r-2,0r-256,612r-38,0r-256,-612r-2,0r0,612r-72,0r0,-708r110,0","w":890},"N":{"d":"186,-708r422,600r2,0r0,-600r72,0r0,708r-90,0r-422,-606r-2,0r0,606r-72,0r0,-708r90,0","w":778},"O":{"d":"786,-354v0,215,-158,372,-369,372v-211,0,-369,-157,-369,-372v0,-215,158,-372,369,-372v211,0,369,157,369,372xm708,-354v0,-163,-109,-306,-291,-306v-182,0,-291,143,-291,306v0,163,109,306,291,306v182,0,291,-143,291,-306","w":834},"P":{"d":"96,0r0,-708r206,0v144,0,233,62,233,189v0,127,-89,190,-233,190r-134,0r0,329r-72,0xm168,-642r0,247r116,0v129,0,173,-56,173,-124v0,-68,-44,-123,-173,-123r-116,0","w":574},"Q":{"d":"126,-363v0,157,105,297,280,297v174,0,279,-140,279,-297v0,-157,-105,-297,-279,-297v-175,0,-280,140,-280,297xm811,-66r0,66r-405,0v-205,0,-358,-153,-358,-363v0,-210,153,-363,358,-363v204,0,357,153,357,363v0,129,-55,232,-166,297r214,0","w":834},"R":{"d":"168,-329r0,329r-72,0r0,-708r218,0v144,0,233,62,233,189v0,98,-65,173,-181,183r204,336r-88,0r-194,-329r-120,0xm168,-642r0,247r128,0v129,0,173,-56,173,-124v0,-68,-44,-123,-173,-123r-128,0","w":593},"S":{"d":"494,-640r-63,49v-62,-107,-288,-93,-288,59v0,191,363,90,363,345v0,231,-341,270,-456,100r65,-47v30,52,87,86,161,86v71,0,152,-46,152,-129v0,-200,-363,-89,-363,-348v0,-224,309,-262,429,-115"},"T":{"d":"323,-642r0,642r-72,0r0,-642r-237,0r0,-66r546,0r0,66r-237,0","w":574},"U":{"d":"602,-708r0,444v0,118,-47,282,-259,282v-212,0,-259,-164,-259,-282r0,-444r72,0r0,436v0,204,133,224,187,224v54,0,187,-20,187,-224r0,-436r72,0","w":686},"V":{"d":"77,-708r225,600r2,0r232,-600r78,0r-276,708r-72,0r-269,-708r80,0","w":611},"W":{"d":"80,-708r170,606r2,0r178,-606r86,0r178,606r2,0r168,-606r80,0r-209,708r-84,0r-178,-606r-2,0r-178,606r-84,0r-209,-708r80,0","w":944},"X":{"d":"123,-708r193,283r198,-283r90,0r-240,336r260,372r-95,0r-216,-321r-217,321r-90,0r259,-372r-239,-336r97,0","w":630},"Y":{"d":"323,-305r0,305r-72,0r0,-305r-265,-403r90,0r211,334r211,-334r90,0","w":574},"Z":{"d":"527,-708r0,60r-413,582r419,0r0,66r-510,0r0,-60r414,-582r-408,0r0,-66r498,0"},"[":{"d":"227,-732r0,54r-96,0r0,780r96,0r0,54r-162,0r0,-888r162,0","w":260},"\\":{"d":"307,18r-302,-724r57,-20r303,725","w":370},"]":{"d":"33,156r0,-54r96,0r0,-780r-96,0r0,-54r162,0r0,888r-162,0","w":260},"^":{"d":"80,-275r229,-433r48,0r229,433r-62,0r-191,-361r-191,361r-62,0","w":666},"_":{"d":"0,125r0,-50r500,0r0,50r-500,0","w":500},"\u2018":{"d":"56,-473r81,-235r67,0r-67,235r-81,0","w":260},"a":{"d":"48,-125v0,-163,191,-163,324,-162v3,-88,-35,-133,-120,-133v-55,0,-103,19,-143,55r-40,-47v43,-44,110,-68,198,-68v92,0,171,52,171,166r0,209v0,36,4,80,8,105r-64,0v-6,-22,-2,-56,-8,-76v-38,62,-90,88,-165,88v-83,0,-161,-46,-161,-137xm372,-233r-34,0v-67,0,-218,5,-218,99v0,62,57,86,110,86v108,0,150,-79,142,-185","w":519},"b":{"d":"72,0r0,-756r66,0r0,366r2,0v43,-63,120,-90,182,-90v146,0,249,105,249,246v0,141,-103,246,-249,246v-64,0,-138,-30,-184,-90r0,78r-66,0xm499,-234v0,-105,-68,-186,-177,-186v-108,0,-187,81,-187,186v0,105,79,186,187,186v109,0,177,-81,177,-186","w":611},"c":{"d":"467,-399r-54,41v-22,-34,-65,-62,-117,-62v-109,-2,-176,79,-176,186v0,107,67,188,176,186v52,0,95,-28,117,-62r54,41v-46,54,-108,80,-171,81v-153,2,-248,-105,-248,-246v0,-141,95,-248,248,-246v63,1,125,27,171,81","w":482},"d":{"d":"539,-756r0,756r-66,0v-2,-25,4,-57,-2,-78v-43,63,-120,90,-182,90v-146,0,-249,-105,-249,-246v0,-141,103,-246,249,-246v64,0,138,30,184,90r0,-366r66,0xm112,-234v0,105,68,186,177,186v108,0,187,-81,187,-186v0,-105,-79,-186,-187,-186v-109,0,-177,81,-177,186","w":611},"e":{"d":"508,-216r-390,0v8,94,79,168,172,168v70,0,124,-39,150,-81r51,42v-55,70,-124,99,-201,99v-139,0,-242,-105,-242,-246v0,-141,103,-246,236,-246v152,0,233,113,224,264xm120,-270r316,0v0,-89,-57,-150,-152,-150v-86,0,-164,73,-164,150"},"f":{"d":"290,-468r0,60r-111,0r0,408r-66,0r0,-408r-99,0r0,-60r99,0r0,-128v-1,-147,91,-190,214,-165r-12,60v-16,-4,-34,-7,-51,-7v-115,-1,-79,136,-85,240r111,0","w":296},"g":{"d":"59,146r49,-52v39,52,104,86,179,86v167,-2,195,-119,180,-268v-42,63,-107,88,-175,88v-135,0,-244,-101,-244,-238v0,-136,100,-242,238,-242v56,0,127,17,181,90r2,0r0,-78r66,0r0,464v0,102,-41,244,-251,244v-93,0,-165,-30,-225,-94xm120,-240v0,98,76,180,174,180v96,0,177,-72,177,-180v0,-98,-67,-180,-177,-180v-98,0,-174,82,-174,180","w":611},"h":{"d":"72,0r0,-756r66,0r0,363r2,0v29,-51,95,-87,157,-87v119,0,176,67,176,183r0,297r-66,0r0,-259v0,-104,-29,-161,-127,-161v-14,0,-142,9,-142,180r0,240r-66,0"},"i":{"d":"153,-468r0,468r-66,0r0,-468r66,0xm168,-648v0,65,-96,60,-96,0v0,-62,96,-62,96,0","w":240},"j":{"d":"-22,173v11,4,26,7,38,7v65,0,71,-54,71,-98r0,-550r66,0r0,561v0,27,8,147,-132,147v-18,0,-35,-3,-52,-10xm168,-648v0,65,-96,60,-96,0v0,-62,96,-62,96,0","w":240},"k":{"d":"138,-756r0,499r221,-211r99,0r-233,214r258,254r-102,0r-243,-246r0,246r-66,0r0,-756r66,0","w":482},"l":{"d":"153,-756r0,756r-66,0r0,-756r66,0","w":240},"m":{"d":"72,0r0,-364v0,-35,-3,-69,-5,-104r71,0v2,22,-4,53,2,71v32,-54,95,-83,151,-83v51,0,118,17,149,97v27,-60,91,-97,154,-97v119,0,176,67,176,183r0,297r-66,0r0,-273v0,-95,-27,-147,-118,-147v-184,0,-121,245,-132,420r-66,0r0,-273v0,-95,-27,-147,-118,-147v-16,0,-132,9,-132,180r0,240r-66,0","w":852},"n":{"d":"67,-468r68,0v5,24,-1,55,5,75v29,-51,95,-87,157,-87v119,0,176,67,176,183r0,297r-66,0r0,-259v0,-104,-29,-161,-127,-161v-14,0,-142,9,-142,180r0,240r-66,0r0,-365v0,-25,-3,-69,-5,-103"},"o":{"d":"545,-234v0,141,-103,246,-249,246v-145,0,-248,-105,-248,-246v0,-141,103,-246,248,-246v146,0,249,105,249,246xm473,-234v0,-105,-68,-186,-177,-186v-108,0,-176,81,-176,186v0,105,68,186,176,186v109,0,177,-81,177,-186","w":593},"p":{"d":"72,288r0,-756r66,0v2,25,-4,57,2,78v43,-63,120,-90,182,-90v146,0,249,105,249,246v0,141,-103,246,-249,246v-64,0,-138,-30,-184,-90r0,366r-66,0xm499,-234v0,-105,-68,-186,-177,-186v-108,0,-187,81,-187,186v0,105,79,186,187,186v109,0,177,-81,177,-186","w":611},"q":{"d":"539,-468r0,756r-66,0r0,-366r-2,0v-43,63,-120,90,-182,90v-146,0,-249,-105,-249,-246v0,-141,103,-246,249,-246v64,0,138,30,184,90r0,-78r66,0xm112,-234v0,105,68,186,177,186v108,0,187,-81,187,-186v0,-105,-79,-186,-187,-186v-109,0,-177,81,-177,186","w":611},"r":{"d":"79,0r0,-322v0,-42,-2,-78,-4,-146r65,0v2,28,-4,63,2,87v17,-62,105,-118,199,-93r-13,65v-8,-3,-20,-5,-38,-5v-100,0,-145,87,-145,150r0,264r-66,0","w":332},"s":{"d":"379,-396r-59,39v-20,-38,-53,-63,-101,-63v-46,0,-97,20,-97,70v0,65,98,75,159,90v65,16,114,62,114,128v0,102,-91,144,-182,144v-71,0,-136,-25,-180,-91r57,-39v27,42,68,70,123,70v54,0,110,-24,110,-78v1,-69,-92,-73,-153,-90v-32,-8,-120,-34,-120,-123v1,-167,267,-189,329,-57","w":426},"t":{"d":"314,-468r0,60r-135,0r0,276v-4,106,77,92,136,66r3,61v-90,30,-205,36,-205,-108r0,-295r-99,0r0,-60r99,0r0,-132r66,0r0,132r135,0","w":332},"u":{"d":"478,0r-68,0v-5,-24,1,-55,-5,-75v-29,51,-95,87,-157,87v-119,0,-176,-67,-176,-183r0,-297r66,0r0,259v0,104,29,161,127,161v14,0,142,-9,142,-180r0,-240r66,0r0,365v0,25,3,69,5,103"},"v":{"d":"468,-468r-190,468r-74,0r-190,-468r79,0r149,394r2,0r149,-394r75,0","w":482},"w":{"d":"14,-468r78,0r108,380r2,0r125,-380r68,0r125,380r2,0r108,-380r78,0r-148,468r-74,0r-124,-384r-2,0r-124,384r-74,0","w":722},"x":{"d":"0,0r193,-250r-170,-218r90,0r130,175r124,-175r82,0r-163,218r196,250r-90,0r-157,-205r-151,205r-84,0","w":482},"y":{"d":"99,-468r147,387r143,-387r80,0r-234,590v-30,91,-98,137,-208,111r7,-64v68,29,113,-3,140,-73r34,-90r-192,-474r83,0","w":482},"z":{"d":"393,-468r0,48r-274,360r284,0r0,60r-380,0r0,-48r274,-360r-260,0r0,-60r356,0","w":426},"{":{"d":"12,-258r0,-60v45,0,89,-41,89,-111r0,-178v5,-123,68,-130,172,-125r0,60r-56,0v-49,0,-50,45,-50,83r0,172v1,100,-69,121,-89,130v23,3,89,31,89,128r0,172v0,38,1,83,50,83r56,0r0,60v-104,5,-172,-2,-172,-125r0,-178v0,-70,-44,-111,-89,-111","w":260},"|":{"d":"81,-750r60,0r0,1000r-60,0r0,-1000","w":222},"}":{"d":"248,-318r0,60v-45,0,-89,41,-89,111r0,178v-5,123,-68,130,-172,125r0,-60r56,0v49,0,50,-45,50,-83r0,-172v-1,-100,69,-121,89,-130v-23,-3,-89,-31,-89,-128r0,-172v0,-38,-1,-83,-50,-83r-56,0r0,-60v104,-5,172,2,172,125r0,178v0,70,44,111,89,111","w":260},"~":{"d":"225,-371v76,0,143,76,211,76v46,0,81,-46,99,-73r42,40v-30,42,-71,93,-136,93v-76,0,-143,-76,-211,-76v-46,0,-81,46,-99,73r-42,-40v30,-42,71,-93,136,-93","w":666},"\u00a1":{"d":"103,228r0,-516r72,0r0,516r-72,0xm85,-432v0,-28,22,-54,54,-54v32,0,54,26,54,54v0,28,-22,54,-54,54v-32,0,-54,-26,-54,-54","w":278},"\u00a2":{"d":"288,-51r0,-366v-86,15,-138,89,-138,183v0,94,52,168,138,183xm336,-419r0,370v48,-3,87,-29,107,-61r54,41v-43,51,-101,77,-161,80r0,61r-48,0r0,-63v-131,-14,-210,-114,-210,-243v0,-129,79,-229,210,-243r0,-63r48,0r0,61v60,3,118,29,161,80r-54,41v-20,-32,-59,-58,-107,-61"},"\u00a3":{"d":"426,-395r0,60r-168,0r0,275r253,0r0,60r-427,0r0,-60r102,0r0,-275r-96,0r0,-60r96,0v-7,-181,12,-325,212,-325v58,0,115,18,155,60r-47,51v-27,-30,-65,-51,-111,-51v-123,0,-137,116,-137,184r0,81r168,0"},"\u2044":{"d":"-115,32r-52,-32r451,-740r51,31","w":168},"\u00a5":{"d":"79,-223r163,0v-2,-30,7,-71,-7,-89r-156,0r0,-54r124,0r-205,-342r85,0r195,340r195,-340r85,0r-204,342r123,0r0,54r-156,0v-14,18,-4,60,-7,89r163,0r0,54r-163,0r0,169r-72,0r0,-169r-163,0r0,-54"},"\u0192":{"d":"423,-419r0,54r-119,0r-67,352v-14,72,-47,152,-155,152v-29,0,-59,-7,-82,-24r32,-48v15,8,35,12,52,12v62,0,77,-55,86,-106r63,-338r-108,0r0,-54r119,0v30,-130,21,-298,179,-301v34,0,67,10,95,29r-34,48v-17,-10,-37,-17,-57,-17v-66,0,-83,74,-90,116r-22,125r108,0"},"\u00a7":{"d":"453,-626r-59,30v-13,-26,-46,-64,-108,-64v-92,0,-108,68,-108,90v0,49,37,71,81,95v82,45,207,76,207,195v0,61,-35,103,-87,131v50,35,69,68,69,125v0,210,-330,209,-386,48r66,-32v22,62,77,87,132,87v53,0,116,-24,116,-102v0,-41,-29,-65,-70,-88v-86,-48,-227,-71,-227,-197v0,-66,45,-108,104,-134v-27,-18,-77,-48,-77,-120v0,-103,82,-158,175,-158v89,0,152,42,172,94xm242,-404v-43,16,-94,42,-91,91v5,84,112,95,170,132v35,-14,73,-49,73,-89v0,-83,-91,-104,-152,-134"},"\u00a4":{"d":"525,-559r-53,53v71,86,71,218,0,304r53,53r-44,44r-53,-53v-88,70,-212,70,-300,0r-53,53r-44,-44r53,-53v-71,-86,-71,-218,0,-304r-53,-53r44,-44r53,53v88,-70,212,-70,300,0r53,-53xm97,-354v0,104,81,189,182,189v100,0,180,-85,180,-189v0,-104,-80,-189,-180,-189v-101,0,-182,85,-182,189"},"'":{"d":"100,-473r0,-235r60,0r0,235r-60,0","w":260},"\u201c":{"d":"95,-473r81,-235r67,0r-67,235r-81,0xm276,-473r81,-235r67,0r-67,235r-81,0","w":519},"\u00ab":{"d":"239,-416r-115,176r115,176r-47,33r-140,-209r140,-209xm421,-416r-115,176r115,176r-47,33r-140,-209r140,-209","w":482},"\u2039":{"d":"131,-240r115,176r-47,33r-140,-209r140,-209r47,33","w":315},"\u203a":{"d":"184,-240r-115,-176r47,-33r140,209r-140,209r-47,-33","w":315},"\ufb01":{"d":"290,-468r0,60r-111,0r0,408r-66,0r0,-408r-99,0r0,-60r99,0r0,-128v-1,-147,91,-190,214,-165r-12,60v-16,-4,-34,-7,-51,-7v-115,-1,-79,136,-85,240r111,0xm450,-468r0,468r-66,0r0,-468r66,0xm465,-648v0,62,-96,62,-96,0v0,-62,96,-62,96,0","w":537},"\ufb02":{"d":"290,-468r0,60r-111,0r0,408r-66,0r0,-408r-99,0r0,-60r99,0r0,-128v-1,-147,91,-190,214,-165r-12,60v-16,-4,-34,-7,-51,-7v-115,-1,-79,136,-85,240r111,0xm450,-756r0,756r-66,0r0,-756r66,0","w":537},"\u2013":{"d":"500,-273r0,66r-500,0r0,-66r500,0","w":500},"\u2020":{"d":"311,-708r0,204r204,0r0,60r-204,0r0,570r-66,0r0,-570r-204,0r0,-60r204,0r0,-204r66,0"},"\u2021":{"d":"311,-708r0,192r195,0r0,60r-195,0r0,330r195,0r0,60r-195,0r0,192r-66,0r0,-192r-195,0r0,-60r195,0r0,-330r-195,0r0,-60r195,0r0,-192r66,0"},"\u00b7":{"d":"193,-314v0,28,-22,54,-54,54v-32,0,-54,-26,-54,-54v0,-28,22,-54,54,-54v32,0,54,26,54,54","w":278},"\u00b6":{"d":"513,-708r0,834r-66,0r0,-780r-124,0r0,780r-66,0r0,-442v-122,0,-209,-82,-209,-186v0,-130,88,-206,228,-206r237,0","w":600},"\u2022":{"d":"73,-354v0,-98,79,-177,177,-177v98,0,177,79,177,177v0,98,-79,177,-177,177v-98,0,-177,-79,-177,-177","w":500},"\u201a":{"d":"204,-95r-81,235r-67,0r67,-235r81,0","w":260},"\u201e":{"d":"424,-95r-81,235r-67,0r67,-235r81,0xm243,-95r-81,235r-67,0r67,-235r81,0","w":519},"\u201d":{"d":"424,-708r-81,235r-67,0r67,-235r81,0xm243,-708r-81,235r-67,0r67,-235r81,0","w":519},"\u00bb":{"d":"243,-64r115,-176r-115,-176r47,-33r140,209r-140,209xm61,-64r115,-176r-115,-176r47,-33r140,209r-140,209","w":482},"\u2026":{"d":"221,-48v0,28,-22,54,-54,54v-32,0,-54,-26,-54,-54v0,-28,22,-54,54,-54v32,0,54,26,54,54xm554,-48v0,28,-22,54,-54,54v-32,0,-54,-26,-54,-54v0,-28,22,-54,54,-54v32,0,54,26,54,54xm887,-48v0,28,-22,54,-54,54v-32,0,-54,-26,-54,-54v0,-28,22,-54,54,-54v32,0,54,26,54,54","w":1000},"\u2030":{"d":"331,-566v0,84,-68,154,-153,154v-85,0,-153,-70,-153,-154v0,-84,68,-154,153,-154v85,0,153,70,153,154xm277,-566v0,-55,-44,-100,-99,-100v-55,0,-99,45,-99,100v0,55,44,100,99,100v55,0,99,-45,99,-100xm625,-142v0,84,-68,154,-153,154v-85,0,-153,-70,-153,-154v0,-84,68,-154,153,-154v85,0,153,70,153,154xm571,-142v0,-55,-44,-100,-99,-100v-55,0,-99,45,-99,100v0,55,44,100,99,100v55,0,99,-45,99,-100xm975,-142v0,84,-68,154,-153,154v-85,0,-153,-70,-153,-154v0,-84,68,-154,153,-154v85,0,153,70,153,154xm921,-142v0,-55,-44,-100,-99,-100v-55,0,-99,45,-99,100v0,55,44,100,99,100v55,0,99,-45,99,-100xm575,-712r-450,743r-52,-27r451,-743","w":1000},"\u00bf":{"d":"206,-237r0,-51r72,0r0,83v-2,110,-162,146,-162,264v0,68,48,115,117,115v67,0,115,-44,127,-109r75,9v-15,105,-98,166,-201,166v-107,0,-190,-62,-190,-175v0,-170,162,-156,162,-302xm182,-432v0,-28,22,-54,54,-54v32,0,54,26,54,54v0,28,-22,54,-54,54v-32,0,-54,-26,-54,-54","w":482},"`":{"d":"122,-564r-132,-144r91,0r100,144r-59,0","w":240},"\u00b4":{"d":"250,-708r-132,144r-59,0r100,-144r91,0","w":240},"\u02c6":{"d":"160,-708r109,144r-66,0r-83,-108r-83,108r-66,0r109,-144r80,0","w":240},"\u02dc":{"d":"190,-580v-46,1,-96,-45,-140,-46v-30,0,-43,25,-49,50r-43,0v9,-52,32,-104,92,-104v46,0,98,45,140,46v30,0,43,-25,49,-50r43,0v-9,52,-32,104,-92,104","w":240},"\u00af":{"d":"255,-654r0,54r-270,0r0,-54r270,0","w":240},"\u02d8":{"d":"223,-708r44,0v-5,83,-65,132,-147,132v-82,0,-142,-49,-147,-132r44,0v15,104,191,104,206,0","w":240},"\u02d9":{"d":"69,-657v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51","w":240},"\u00a8":{"d":"-27,-647v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51xm165,-647v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51","w":240},"\u02da":{"d":"216,-650v0,54,-44,95,-96,95v-52,0,-96,-41,-96,-95v0,-54,44,-95,96,-95v52,0,96,41,96,95xm180,-650v0,-33,-27,-59,-60,-59v-33,0,-60,26,-60,59v0,33,27,59,60,59v33,0,60,-26,60,-59","w":240},"\u00b8":{"d":"156,0r-45,60v51,-16,118,4,115,69v-4,99,-138,106,-212,64r16,-36v44,23,136,34,136,-27v0,-12,-8,-40,-49,-40v-19,0,-33,5,-46,11r-18,-17r62,-84r41,0","w":240},"\u02dd":{"d":"116,-708r-133,144r-59,0r101,-144r91,0xm316,-708r-132,144r-59,0r100,-144r91,0","w":240},"\u02db":{"d":"191,141r19,40v-53,58,-179,45,-180,-49v0,-56,48,-105,89,-138r48,0v-49,49,-77,82,-77,121v0,53,72,62,101,26","w":240},"\u02c7":{"d":"269,-708r-109,144r-80,0r-109,-144r66,0r83,108r83,-108r66,0","w":240},"\u2014":{"d":"1000,-273r0,66r-1000,0r0,-66r1000,0","w":1000},"\u00c6":{"d":"583,-642r0,241r276,0r0,66r-276,0r0,269r306,0r0,66r-378,0r0,-198r-298,0r-128,198r-85,0r461,-708r416,0r0,66r-294,0xm255,-264r256,0r0,-378r-11,0","w":944},"\u00aa":{"d":"236,-466v-39,61,-205,60,-205,-41v0,-68,68,-105,197,-100v10,-85,-112,-75,-153,-35r-32,-37v35,-33,76,-41,119,-41v192,0,103,138,131,290r-54,0xm228,-559v-44,0,-137,-4,-137,49v0,26,30,38,59,38v70,0,78,-52,78,-87","w":337},"\u0141":{"d":"168,-708r0,346r216,-186r0,70r-216,186r0,226r330,0r0,66r-402,0r0,-230r-82,70r0,-70r82,-70r0,-408r72,0","w":500},"\u00d8":{"d":"766,-692r-76,82v61,65,96,154,96,256v0,215,-158,372,-369,372v-92,0,-174,-30,-236,-81r-76,81r-37,-34r76,-82v-61,-65,-96,-154,-96,-256v0,-215,158,-372,369,-372v91,0,172,29,236,81r76,-81xm640,-556r-411,441v48,42,111,67,188,67v266,0,371,-321,223,-508xm194,-152r411,-441v-48,-42,-111,-67,-188,-67v-266,0,-371,323,-223,508","w":834},"\u0152":{"d":"592,-642r0,241r282,0r0,66r-282,0r0,269r306,0r0,66r-447,0v-284,0,-388,-202,-388,-355v0,-238,196,-353,386,-353r437,0r0,66r-294,0xm520,-66r0,-576v-221,-13,-379,80,-379,290v0,84,48,286,308,286r71,0","w":944},"\u00ba":{"d":"354,-571v0,84,-67,147,-162,147v-94,0,-161,-63,-161,-147v0,-86,67,-149,161,-149v95,0,162,63,162,149xm294,-571v0,-55,-42,-101,-102,-101v-59,0,-101,46,-101,101v0,54,42,99,101,99v60,0,102,-45,102,-99","w":385},"\u00e6":{"d":"804,-216r-351,0v-3,92,48,168,137,168v80,0,117,-36,146,-76r52,41v-97,124,-297,136,-371,-14v-47,79,-110,109,-208,109v-83,0,-161,-46,-161,-137v0,-164,183,-144,339,-145r0,-29v-2,-99,-85,-121,-120,-121v-55,0,-103,19,-142,56r-41,-48v45,-42,110,-68,186,-68v72,0,133,39,155,90v30,-55,100,-90,167,-90v148,0,220,111,212,264xm387,-216v-111,4,-267,-25,-267,82v0,62,57,86,110,86v98,-1,160,-68,157,-168xm453,-270r285,0v0,-87,-56,-150,-144,-150v-79,0,-141,64,-141,150","w":852},"\u0131":{"d":"153,-468r0,468r-66,0r0,-468r66,0","w":240},"\u0142":{"d":"153,-756r0,298r81,-84r0,73r-81,83r0,386r-66,0r0,-317r-81,83r0,-73r81,-82r0,-367r66,0","w":240},"\u00f8":{"d":"439,-348r-255,262v29,24,67,38,112,38v155,0,223,-182,143,-300xm154,-120r255,-261v-29,-25,-68,-39,-113,-39v-154,0,-222,184,-142,300xm553,-465r-66,68v36,41,58,98,58,163v0,141,-103,246,-249,246v-63,0,-117,-20,-157,-52r-67,68r-32,-31r66,-68v-37,-43,-58,-99,-58,-163v0,-141,103,-246,248,-246v62,0,116,19,159,52r66,-68","w":593},"\u0153":{"d":"874,-216r-351,0v-3,92,48,168,137,168v80,0,117,-36,146,-76r52,41v-96,126,-302,133,-378,-11v-52,76,-136,106,-195,106v-143,0,-237,-105,-237,-246v0,-141,103,-246,237,-246v76,0,154,30,198,105v44,-67,96,-105,179,-105v148,0,220,111,212,264xm451,-234v0,-100,-58,-186,-166,-186v-97,0,-165,81,-165,186v0,105,68,186,165,186v108,0,166,-86,166,-186xm523,-270r285,0v0,-87,-56,-150,-144,-150v-79,0,-141,64,-141,150","w":922},"\u00df":{"d":"150,-550r0,550r-66,0r0,-544v0,-118,50,-224,211,-224v107,0,191,65,191,177v0,81,-42,129,-116,161v118,10,171,104,171,207v0,161,-129,263,-295,227r0,-57v128,25,223,-44,223,-171v0,-122,-77,-175,-201,-175r0,-60v81,0,146,-33,146,-123v0,-80,-55,-126,-123,-126v-107,0,-141,88,-141,158","w":593},"\u00f7":{"d":"588,-333r0,60r-510,0r0,-60r510,0xm387,-465v0,28,-22,54,-54,54v-32,0,-54,-26,-54,-54v0,-28,22,-54,54,-54v32,0,54,26,54,54xm387,-141v0,28,-22,54,-54,54v-32,0,-54,-26,-54,-54v0,-28,22,-54,54,-54v32,0,54,26,54,54","w":666},"\u00be":{"d":"245,32r-52,-32r451,-740r51,31xm139,-483r0,-54v65,4,124,-14,124,-71v0,-32,-31,-58,-72,-58v-38,0,-60,10,-86,46r-47,-33v57,-105,262,-85,265,43v2,49,-40,82,-82,101v61,10,95,52,95,104v0,78,-67,122,-147,122v-68,0,-120,-26,-145,-86r51,-30v16,40,42,62,98,62v39,0,83,-35,83,-69v0,-31,-19,-77,-108,-77r-29,0xm730,-425r0,277r60,0r0,54r-60,0r0,94r-60,0r0,-94r-192,0r0,-62r179,-269r73,0xm670,-148r0,-217r-2,0r-136,217r138,0","w":834},"\u00bc":{"d":"205,32r-52,-32r451,-740r51,31xm235,-714r0,425r-60,0r0,-365r-82,67r-29,-38r117,-89r54,0xm710,-425r0,277r60,0r0,54r-60,0r0,94r-60,0r0,-94r-192,0r0,-62r179,-269r73,0xm650,-148r0,-217r-2,0r-136,217r138,0","w":834},"\u00b9":{"d":"225,-714r0,425r-60,0r0,-365r-82,67r-29,-38r117,-89r54,0","w":361},"\u00d7":{"d":"174,-505r159,159r158,-159r43,42r-159,160r159,159r-43,43r-158,-159r-159,159r-42,-43r159,-159r-159,-160","w":666},"\u00ae":{"d":"261,-136r0,-431r158,0v103,0,152,38,152,124v0,77,-50,110,-114,117r124,190r-65,0r-118,-185r-77,0r0,185r-60,0xm321,-513r0,138v85,-4,190,22,190,-71v0,-93,-107,-61,-190,-67xm25,-352v0,-214,171,-374,375,-374v204,0,375,160,375,370v0,214,-171,374,-375,374v-204,0,-375,-160,-375,-370xm85,-352v0,178,140,316,315,316v175,0,315,-138,315,-320v0,-179,-140,-316,-315,-316v-175,0,-315,137,-315,320","w":800},"\u00de":{"d":"96,0r0,-708r72,0r0,156r160,0v118,0,207,62,207,189v0,128,-89,190,-207,190r-160,0r0,173r-72,0xm168,-486r0,247r116,0v76,0,173,-9,173,-124v0,-158,-154,-117,-289,-123","w":574},"\u00a6":{"d":"81,-675r60,0r0,350r-60,0r0,-350xm81,-175r60,0r0,350r-60,0r0,-350","w":222},"\u00d0":{"d":"86,0r0,-347r-73,0r0,-54r73,0r0,-307r235,0v177,0,372,118,372,354v0,236,-195,354,-372,354r-235,0xm158,-347r0,281r140,0v216,0,317,-142,317,-288v0,-146,-101,-288,-317,-288r-140,0r0,241r258,0r0,54r-258,0","w":741},"\u00bd":{"d":"180,32r-52,-32r451,-740r51,31xm210,-714r0,425r-60,0r0,-365r-82,67r-29,-38r117,-89r54,0xm795,-54r0,54r-293,0r0,-57r171,-164v27,-26,58,-57,58,-96v0,-33,-40,-60,-76,-60v-44,0,-78,25,-88,56r-56,-9v15,-134,280,-137,280,9v0,65,-47,108,-93,150r-130,117r227,0","w":834},"\u2212":{"d":"588,-333r0,60r-510,0r0,-60r510,0","w":666},"\u00e7":{"d":"467,-399r-54,41v-22,-34,-65,-62,-117,-62v-109,-2,-176,79,-176,186v0,107,67,188,176,186v52,0,95,-28,117,-62r54,41v-48,55,-110,84,-178,80r-37,49v51,-16,118,4,115,69v-4,99,-138,106,-212,64r16,-36v44,23,136,34,136,-27v0,-12,-8,-40,-49,-40v-19,0,-33,5,-46,11r-18,-17r56,-76v-126,-17,-202,-116,-202,-242v0,-141,95,-248,248,-246v63,1,125,27,171,81","w":482},"\u00f0":{"d":"120,-234v0,105,68,186,176,186v109,0,177,-81,177,-186v0,-105,-68,-186,-177,-186v-108,0,-176,81,-176,186xm455,-714r-103,54v122,122,195,248,193,406v-1,120,-56,266,-249,266v-145,0,-248,-105,-248,-246v0,-141,103,-246,248,-246v58,0,102,18,150,58r2,-2v-52,-98,-98,-150,-159,-204r-110,57r-36,-36r108,-56v-34,-32,-66,-59,-95,-79r60,-37v34,28,67,55,97,83r102,-53","w":593},"\u00b1":{"d":"78,-347r0,-60r225,0r0,-156r60,0r0,156r225,0r0,60r-225,0r0,151r-60,0r0,-151r-225,0xm78,-48r0,-60r510,0r0,60r-510,0","w":666},"\u00c7":{"d":"620,-154r59,42v-50,76,-156,139,-283,128r-33,44v51,-16,118,4,115,69v-4,99,-138,106,-212,64r16,-36v44,23,136,34,136,-27v0,-12,-8,-40,-49,-40v-19,0,-33,5,-46,11r-18,-17r52,-71v-181,-27,-309,-173,-309,-367v0,-215,158,-372,369,-372v88,0,183,33,245,112r-63,47v-28,-46,-107,-93,-182,-93v-182,0,-291,143,-291,306v0,163,109,306,291,306v74,0,150,-24,203,-106","w":704},"\u00fe":{"d":"72,228r0,-984r66,0r0,375r2,0v59,-81,129,-99,182,-99v146,0,249,105,249,246v0,141,-103,246,-249,246v-64,0,-138,-30,-184,-90r0,306r-66,0xm499,-234v0,-105,-68,-186,-177,-186v-108,0,-187,81,-187,186v0,105,73,186,187,186v109,0,177,-81,177,-186","w":611},"\u00a9":{"d":"545,-282r57,0v-22,96,-95,156,-187,156v-135,0,-223,-98,-223,-228v0,-132,83,-227,220,-227v95,0,175,51,189,152r-56,0v-11,-56,-63,-98,-132,-98v-102,0,-161,76,-161,171v0,92,65,176,163,176v69,0,119,-45,130,-102xm25,-352v0,-214,171,-374,375,-374v204,0,375,160,375,370v0,214,-171,374,-375,374v-204,0,-375,-160,-375,-370xm85,-352v0,178,140,316,315,316v175,0,315,-138,315,-320v0,-179,-140,-316,-315,-316v-175,0,-315,137,-315,320","w":800},"\u00ac":{"d":"588,-408r0,278r-60,0r0,-218r-450,0r0,-60r510,0","w":666},"\u00b2":{"d":"327,-343r0,54r-293,0r0,-57r171,-164v27,-26,58,-57,58,-96v0,-33,-40,-60,-76,-60v-44,0,-78,25,-88,56r-56,-9v15,-134,280,-137,280,9v0,65,-47,108,-93,150r-130,117r227,0","w":361},"\u00b3":{"d":"130,-483r0,-54v64,4,124,-14,124,-67v0,-36,-31,-62,-72,-62v-38,0,-60,10,-86,46r-47,-33v57,-105,262,-85,265,43v2,49,-40,82,-82,101v61,10,95,52,95,104v0,78,-67,122,-147,122v-68,0,-120,-26,-146,-86r52,-30v16,40,42,62,98,62v39,0,83,-35,83,-69v0,-31,-19,-77,-108,-77r-29,0","w":361},"\u2122":{"d":"401,-708r0,54r-133,0r0,358r-60,0r0,-358r-136,0r0,-54r329,0xm928,-708r0,412r-60,0r0,-346r-2,0r-139,346r-39,0r-139,-346r-2,0r0,346r-60,0r0,-412r93,0r129,316r129,-316r90,0","w":1000},"\u00b0":{"d":"349,-571v0,86,-63,149,-149,149v-86,0,-149,-63,-149,-149v0,-86,63,-149,149,-149v86,0,149,63,149,149xm301,-571v0,-56,-45,-101,-101,-101v-56,0,-101,45,-101,101v0,56,45,101,101,101v56,0,101,-45,101,-101","w":400},"\u03bc":{"d":"72,228r0,-696r66,0r0,259v0,115,31,161,127,161v80,0,142,-65,142,-180r0,-240r66,0r0,365v0,34,3,69,5,103r-71,0v-2,-24,4,-56,-2,-76v-42,79,-183,118,-267,59r0,245r-66,0"},"\u00c1":{"d":"162,-186r-78,186r-84,0r308,-708r70,0r308,708r-84,0r-78,-186r-362,0xm343,-624r-154,372r307,0xm473,-883r-132,144r-59,0r100,-144r91,0","w":686},"\u00c2":{"d":"162,-186r-78,186r-84,0r308,-708r70,0r308,708r-84,0r-78,-186r-362,0xm343,-624r-154,372r307,0xm383,-883r109,144r-66,0r-83,-108r-83,108r-66,0r109,-144r80,0","w":686},"\u00c4":{"d":"162,-186r-78,186r-84,0r308,-708r70,0r308,708r-84,0r-78,-186r-362,0xm343,-624r-154,372r307,0xm196,-822v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51xm388,-822v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51","w":686},"\u00c0":{"d":"162,-186r-78,186r-84,0r308,-708r70,0r308,708r-84,0r-78,-186r-362,0xm343,-624r-154,372r307,0xm345,-739r-132,-144r91,0r100,144r-59,0","w":686},"\u00c5":{"d":"162,-186r-78,186r-84,0r308,-708r70,0r308,708r-84,0r-78,-186r-362,0xm343,-624r-154,372r307,0xm439,-825v0,54,-44,95,-96,95v-52,0,-96,-41,-96,-95v0,-54,44,-95,96,-95v52,0,96,41,96,95xm403,-825v0,-33,-27,-59,-60,-59v-33,0,-60,26,-60,59v0,33,27,59,60,59v33,0,60,-26,60,-59","w":686},"\u00c3":{"d":"162,-186r-78,186r-84,0r308,-708r70,0r308,708r-84,0r-78,-186r-362,0xm343,-624r-154,372r307,0xm413,-755v-46,1,-96,-45,-140,-46v-30,0,-43,25,-49,50r-43,0v9,-52,32,-104,92,-104v46,0,98,45,140,46v30,0,43,-25,49,-50r43,0v-9,52,-32,104,-92,104","w":686},"\u00c9":{"d":"168,-335r0,269r379,0r0,66r-451,0r0,-708r439,0r0,66r-367,0r0,241r343,0r0,66r-343,0xm427,-883r-132,144r-59,0r100,-144r91,0","w":593},"\u00ca":{"d":"168,-335r0,269r379,0r0,66r-451,0r0,-708r439,0r0,66r-367,0r0,241r343,0r0,66r-343,0xm337,-883r109,144r-66,0r-83,-108r-83,108r-66,0r109,-144r80,0","w":593},"\u00cb":{"d":"168,-335r0,269r379,0r0,66r-451,0r0,-708r439,0r0,66r-367,0r0,241r343,0r0,66r-343,0xm150,-822v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51xm342,-822v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51","w":593},"\u00c8":{"d":"168,-335r0,269r379,0r0,66r-451,0r0,-708r439,0r0,66r-367,0r0,241r343,0r0,66r-343,0xm299,-739r-132,-144r91,0r100,144r-59,0","w":593},"\u00cd":{"d":"168,-708r0,708r-72,0r0,-708r72,0xm262,-883r-132,144r-59,0r100,-144r91,0","w":264},"\u00ce":{"d":"168,-708r0,708r-72,0r0,-708r72,0xm172,-883r109,144r-66,0r-83,-108r-83,108r-66,0r109,-144r80,0","w":264},"\u00cf":{"d":"168,-708r0,708r-72,0r0,-708r72,0xm-15,-822v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51xm177,-822v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51","w":264},"\u00cc":{"d":"168,-708r0,708r-72,0r0,-708r72,0xm134,-739r-132,-144r91,0r100,144r-59,0","w":264},"\u00d1":{"d":"186,-708r422,600r2,0r0,-600r72,0r0,708r-90,0r-422,-606r-2,0r0,606r-72,0r0,-708r90,0xm459,-755v-46,1,-96,-45,-140,-46v-30,0,-43,25,-49,50r-43,0v9,-52,32,-104,92,-104v46,0,98,45,140,46v30,0,43,-25,49,-50r43,0v-9,52,-32,104,-92,104","w":778},"\u00d3":{"d":"786,-354v0,215,-158,372,-369,372v-211,0,-369,-157,-369,-372v0,-215,158,-372,369,-372v211,0,369,157,369,372xm708,-354v0,-163,-109,-306,-291,-306v-182,0,-291,143,-291,306v0,163,109,306,291,306v182,0,291,-143,291,-306xm547,-883r-132,144r-59,0r100,-144r91,0","w":834},"\u00d4":{"d":"786,-354v0,215,-158,372,-369,372v-211,0,-369,-157,-369,-372v0,-215,158,-372,369,-372v211,0,369,157,369,372xm708,-354v0,-163,-109,-306,-291,-306v-182,0,-291,143,-291,306v0,163,109,306,291,306v182,0,291,-143,291,-306xm457,-883r109,144r-66,0r-83,-108r-83,108r-66,0r109,-144r80,0","w":834},"\u00d6":{"d":"786,-354v0,215,-158,372,-369,372v-211,0,-369,-157,-369,-372v0,-215,158,-372,369,-372v211,0,369,157,369,372xm708,-354v0,-163,-109,-306,-291,-306v-182,0,-291,143,-291,306v0,163,109,306,291,306v182,0,291,-143,291,-306xm270,-822v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51xm462,-822v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51","w":834},"\u00d2":{"d":"786,-354v0,215,-158,372,-369,372v-211,0,-369,-157,-369,-372v0,-215,158,-372,369,-372v211,0,369,157,369,372xm708,-354v0,-163,-109,-306,-291,-306v-182,0,-291,143,-291,306v0,163,109,306,291,306v182,0,291,-143,291,-306xm419,-739r-132,-144r91,0r100,144r-59,0","w":834},"\u00d5":{"d":"786,-354v0,215,-158,372,-369,372v-211,0,-369,-157,-369,-372v0,-215,158,-372,369,-372v211,0,369,157,369,372xm708,-354v0,-163,-109,-306,-291,-306v-182,0,-291,143,-291,306v0,163,109,306,291,306v182,0,291,-143,291,-306xm487,-755v-46,1,-96,-45,-140,-46v-30,0,-43,25,-49,50r-43,0v9,-52,32,-104,92,-104v46,0,98,45,140,46v30,0,43,-25,49,-50r43,0v-9,52,-32,104,-92,104","w":834},"\u0160":{"d":"494,-640r-63,49v-62,-107,-288,-93,-288,59v0,191,363,90,363,345v0,231,-341,270,-456,100r65,-47v30,52,87,86,161,86v71,0,152,-46,152,-129v0,-200,-363,-89,-363,-348v0,-224,309,-262,429,-115xm427,-883r-109,144r-80,0r-109,-144r66,0r83,108r83,-108r66,0"},"\u00da":{"d":"602,-708r0,444v0,118,-47,282,-259,282v-212,0,-259,-164,-259,-282r0,-444r72,0r0,436v0,204,133,224,187,224v54,0,187,-20,187,-224r0,-436r72,0xm473,-883r-132,144r-59,0r100,-144r91,0","w":686},"\u00db":{"d":"602,-708r0,444v0,118,-47,282,-259,282v-212,0,-259,-164,-259,-282r0,-444r72,0r0,436v0,204,133,224,187,224v54,0,187,-20,187,-224r0,-436r72,0xm383,-883r109,144r-66,0r-83,-108r-83,108r-66,0r109,-144r80,0","w":686},"\u00dc":{"d":"602,-708r0,444v0,118,-47,282,-259,282v-212,0,-259,-164,-259,-282r0,-444r72,0r0,436v0,204,133,224,187,224v54,0,187,-20,187,-224r0,-436r72,0xm196,-822v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51xm388,-822v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51","w":686},"\u00d9":{"d":"602,-708r0,444v0,118,-47,282,-259,282v-212,0,-259,-164,-259,-282r0,-444r72,0r0,436v0,204,133,224,187,224v54,0,187,-20,187,-224r0,-436r72,0xm345,-739r-132,-144r91,0r100,144r-59,0","w":686},"\u00dd":{"d":"323,-305r0,305r-72,0r0,-305r-265,-403r90,0r211,334r211,-334r90,0xm417,-883r-132,144r-59,0r100,-144r91,0","w":574},"\u0178":{"d":"323,-305r0,305r-72,0r0,-305r-265,-403r90,0r211,334r211,-334r90,0xm140,-822v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51xm332,-822v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51","w":574},"\u017d":{"d":"527,-708r0,60r-413,582r419,0r0,66r-510,0r0,-60r414,-582r-408,0r0,-66r498,0xm427,-883r-109,144r-80,0r-109,-144r66,0r83,108r83,-108r66,0"},"\u00e1":{"d":"48,-125v0,-163,191,-163,324,-162v3,-88,-35,-133,-120,-133v-55,0,-103,19,-143,55r-40,-47v43,-44,110,-68,198,-68v92,0,171,52,171,166r0,209v0,36,4,80,8,105r-64,0v-6,-22,-2,-56,-8,-76v-38,62,-90,88,-165,88v-83,0,-161,-46,-161,-137xm372,-233r-34,0v-67,0,-218,5,-218,99v0,62,57,86,110,86v108,0,150,-79,142,-185xm390,-708r-132,144r-59,0r100,-144r91,0","w":519},"\u00e2":{"d":"48,-125v0,-163,191,-163,324,-162v3,-88,-35,-133,-120,-133v-55,0,-103,19,-143,55r-40,-47v43,-44,110,-68,198,-68v92,0,171,52,171,166r0,209v0,36,4,80,8,105r-64,0v-6,-22,-2,-56,-8,-76v-38,62,-90,88,-165,88v-83,0,-161,-46,-161,-137xm372,-233r-34,0v-67,0,-218,5,-218,99v0,62,57,86,110,86v108,0,150,-79,142,-185xm300,-708r109,144r-66,0r-83,-108r-83,108r-66,0r109,-144r80,0","w":519},"\u00e4":{"d":"48,-125v0,-163,191,-163,324,-162v3,-88,-35,-133,-120,-133v-55,0,-103,19,-143,55r-40,-47v43,-44,110,-68,198,-68v92,0,171,52,171,166r0,209v0,36,4,80,8,105r-64,0v-6,-22,-2,-56,-8,-76v-38,62,-90,88,-165,88v-83,0,-161,-46,-161,-137xm372,-233r-34,0v-67,0,-218,5,-218,99v0,62,57,86,110,86v108,0,150,-79,142,-185xm113,-647v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51xm305,-647v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51","w":519},"\u00e0":{"d":"48,-125v0,-163,191,-163,324,-162v3,-88,-35,-133,-120,-133v-55,0,-103,19,-143,55r-40,-47v43,-44,110,-68,198,-68v92,0,171,52,171,166r0,209v0,36,4,80,8,105r-64,0v-6,-22,-2,-56,-8,-76v-38,62,-90,88,-165,88v-83,0,-161,-46,-161,-137xm372,-233r-34,0v-67,0,-218,5,-218,99v0,62,57,86,110,86v108,0,150,-79,142,-185xm262,-564r-132,-144r91,0r100,144r-59,0","w":519},"\u00e5":{"d":"48,-125v0,-163,191,-163,324,-162v3,-88,-35,-133,-120,-133v-55,0,-103,19,-143,55r-40,-47v43,-44,110,-68,198,-68v92,0,171,52,171,166r0,209v0,36,4,80,8,105r-64,0v-6,-22,-2,-56,-8,-76v-38,62,-90,88,-165,88v-83,0,-161,-46,-161,-137xm372,-233r-34,0v-67,0,-218,5,-218,99v0,62,57,86,110,86v108,0,150,-79,142,-185xm356,-650v0,54,-44,95,-96,95v-52,0,-96,-41,-96,-95v0,-54,44,-95,96,-95v52,0,96,41,96,95xm320,-650v0,-33,-27,-59,-60,-59v-33,0,-60,26,-60,59v0,33,27,59,60,59v33,0,60,-26,60,-59","w":519},"\u00e3":{"d":"48,-125v0,-163,191,-163,324,-162v3,-88,-35,-133,-120,-133v-55,0,-103,19,-143,55r-40,-47v43,-44,110,-68,198,-68v92,0,171,52,171,166r0,209v0,36,4,80,8,105r-64,0v-6,-22,-2,-56,-8,-76v-38,62,-90,88,-165,88v-83,0,-161,-46,-161,-137xm372,-233r-34,0v-67,0,-218,5,-218,99v0,62,57,86,110,86v108,0,150,-79,142,-185xm330,-580v-46,1,-96,-45,-140,-46v-30,0,-43,25,-49,50r-43,0v9,-52,32,-104,92,-104v46,0,98,45,140,46v30,0,43,-25,49,-50r43,0v-9,52,-32,104,-92,104","w":519},"\u00e9":{"d":"508,-216r-390,0v8,94,79,168,172,168v70,0,124,-39,150,-81r51,42v-55,70,-124,99,-201,99v-139,0,-242,-105,-242,-246v0,-141,103,-246,236,-246v152,0,233,113,224,264xm120,-270r316,0v0,-89,-57,-150,-152,-150v-86,0,-164,73,-164,150xm408,-708r-132,144r-59,0r100,-144r91,0"},"\u00ea":{"d":"508,-216r-390,0v8,94,79,168,172,168v70,0,124,-39,150,-81r51,42v-55,70,-124,99,-201,99v-139,0,-242,-105,-242,-246v0,-141,103,-246,236,-246v152,0,233,113,224,264xm120,-270r316,0v0,-89,-57,-150,-152,-150v-86,0,-164,73,-164,150xm318,-708r109,144r-66,0r-83,-108r-83,108r-66,0r109,-144r80,0"},"\u00eb":{"d":"508,-216r-390,0v8,94,79,168,172,168v70,0,124,-39,150,-81r51,42v-55,70,-124,99,-201,99v-139,0,-242,-105,-242,-246v0,-141,103,-246,236,-246v152,0,233,113,224,264xm120,-270r316,0v0,-89,-57,-150,-152,-150v-86,0,-164,73,-164,150xm131,-647v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51xm323,-647v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51"},"\u00e8":{"d":"508,-216r-390,0v8,94,79,168,172,168v70,0,124,-39,150,-81r51,42v-55,70,-124,99,-201,99v-139,0,-242,-105,-242,-246v0,-141,103,-246,236,-246v152,0,233,113,224,264xm120,-270r316,0v0,-89,-57,-150,-152,-150v-86,0,-164,73,-164,150xm280,-564r-132,-144r91,0r100,144r-59,0"},"\u00ed":{"d":"153,-468r0,468r-66,0r0,-468r66,0xm250,-708r-132,144r-59,0r100,-144r91,0","w":240},"\u00ee":{"d":"153,-468r0,468r-66,0r0,-468r66,0xm160,-708r109,144r-66,0r-83,-108r-83,108r-66,0r109,-144r80,0","w":240},"\u00ef":{"d":"153,-468r0,468r-66,0r0,-468r66,0xm-27,-647v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51xm165,-647v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51","w":240},"\u00ec":{"d":"153,-468r0,468r-66,0r0,-468r66,0xm122,-564r-132,-144r91,0r100,144r-59,0","w":240},"\u00f1":{"d":"67,-468r68,0v5,24,-1,55,5,75v29,-51,95,-87,157,-87v119,0,176,67,176,183r0,297r-66,0r0,-259v0,-104,-29,-161,-127,-161v-14,0,-142,9,-142,180r0,240r-66,0r0,-365v0,-25,-3,-69,-5,-103xm348,-580v-46,1,-96,-45,-140,-46v-30,0,-43,25,-49,50r-43,0v9,-52,32,-104,92,-104v46,0,98,45,140,46v30,0,43,-25,49,-50r43,0v-9,52,-32,104,-92,104"},"\u00f3":{"d":"545,-234v0,141,-103,246,-249,246v-145,0,-248,-105,-248,-246v0,-141,103,-246,248,-246v146,0,249,105,249,246xm473,-234v0,-105,-68,-186,-177,-186v-108,0,-176,81,-176,186v0,105,68,186,176,186v109,0,177,-81,177,-186xm427,-708r-132,144r-59,0r100,-144r91,0","w":593},"\u00f4":{"d":"545,-234v0,141,-103,246,-249,246v-145,0,-248,-105,-248,-246v0,-141,103,-246,248,-246v146,0,249,105,249,246xm473,-234v0,-105,-68,-186,-177,-186v-108,0,-176,81,-176,186v0,105,68,186,176,186v109,0,177,-81,177,-186xm337,-708r109,144r-66,0r-83,-108r-83,108r-66,0r109,-144r80,0","w":593},"\u00f6":{"d":"545,-234v0,141,-103,246,-249,246v-145,0,-248,-105,-248,-246v0,-141,103,-246,248,-246v146,0,249,105,249,246xm473,-234v0,-105,-68,-186,-177,-186v-108,0,-176,81,-176,186v0,105,68,186,176,186v109,0,177,-81,177,-186xm150,-647v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51xm342,-647v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51","w":593},"\u00f2":{"d":"545,-234v0,141,-103,246,-249,246v-145,0,-248,-105,-248,-246v0,-141,103,-246,248,-246v146,0,249,105,249,246xm473,-234v0,-105,-68,-186,-177,-186v-108,0,-176,81,-176,186v0,105,68,186,176,186v109,0,177,-81,177,-186xm299,-564r-132,-144r91,0r100,144r-59,0","w":593},"\u00f5":{"d":"545,-234v0,141,-103,246,-249,246v-145,0,-248,-105,-248,-246v0,-141,103,-246,248,-246v146,0,249,105,249,246xm473,-234v0,-105,-68,-186,-177,-186v-108,0,-176,81,-176,186v0,105,68,186,176,186v109,0,177,-81,177,-186xm367,-580v-46,1,-96,-45,-140,-46v-30,0,-43,25,-49,50r-43,0v9,-52,32,-104,92,-104v46,0,98,45,140,46v30,0,43,-25,49,-50r43,0v-9,52,-32,104,-92,104","w":593},"\u0161":{"d":"379,-396r-59,39v-20,-38,-53,-63,-101,-63v-46,0,-97,20,-97,70v0,65,98,75,159,90v65,16,114,62,114,128v0,102,-91,144,-182,144v-71,0,-136,-25,-180,-91r57,-39v27,42,68,70,123,70v54,0,110,-24,110,-78v1,-69,-92,-73,-153,-90v-32,-8,-120,-34,-120,-123v1,-167,267,-189,329,-57xm362,-708r-109,144r-80,0r-109,-144r66,0r83,108r83,-108r66,0","w":426},"\u00fa":{"d":"478,0r-68,0v-5,-24,1,-55,-5,-75v-29,51,-95,87,-157,87v-119,0,-176,-67,-176,-183r0,-297r66,0r0,259v0,104,29,161,127,161v14,0,142,-9,142,-180r0,-240r66,0r0,365v0,25,3,69,5,103xm408,-708r-132,144r-59,0r100,-144r91,0"},"\u00fb":{"d":"478,0r-68,0v-5,-24,1,-55,-5,-75v-29,51,-95,87,-157,87v-119,0,-176,-67,-176,-183r0,-297r66,0r0,259v0,104,29,161,127,161v14,0,142,-9,142,-180r0,-240r66,0r0,365v0,25,3,69,5,103xm318,-708r109,144r-66,0r-83,-108r-83,108r-66,0r109,-144r80,0"},"\u00fc":{"d":"478,0r-68,0v-5,-24,1,-55,-5,-75v-29,51,-95,87,-157,87v-119,0,-176,-67,-176,-183r0,-297r66,0r0,259v0,104,29,161,127,161v14,0,142,-9,142,-180r0,-240r66,0r0,365v0,25,3,69,5,103xm131,-647v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51xm323,-647v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51"},"\u00f9":{"d":"478,0r-68,0v-5,-24,1,-55,-5,-75v-29,51,-95,87,-157,87v-119,0,-176,-67,-176,-183r0,-297r66,0r0,259v0,104,29,161,127,161v14,0,142,-9,142,-180r0,-240r66,0r0,365v0,25,3,69,5,103xm280,-564r-132,-144r91,0r100,144r-59,0"},"\u00fd":{"d":"99,-468r147,387r143,-387r80,0r-234,590v-30,91,-98,137,-208,111r7,-64v68,29,113,-3,140,-73r34,-90r-192,-474r83,0xm371,-708r-132,144r-59,0r100,-144r91,0","w":482},"\u00ff":{"d":"99,-468r147,387r143,-387r80,0r-234,590v-30,91,-98,137,-208,111r7,-64v68,29,113,-3,140,-73r34,-90r-192,-474r83,0xm94,-647v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51xm286,-647v0,-26,21,-51,51,-51v30,0,51,25,51,51v0,26,-21,51,-51,51v-30,0,-51,-25,-51,-51","w":482},"\u017e":{"d":"393,-468r0,48r-274,360r284,0r0,60r-380,0r0,-48r274,-360r-260,0r0,-60r356,0xm362,-708r-109,144r-80,0r-109,-144r66,0r83,108r83,-108r66,0","w":426},"\u00a0":{"w":278}}});;
/*
 * jQuery Cycle Plugin (core engine only)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.99 (12-MAR-2011)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.3.2 or later
 */
(function($){var ver="2.99";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){$.fn.cycle.debug&&log(s);}function log(){window.console&&console.log&&console.log("[cycle] "+Array.prototype.join.call(arguments," "));}$.expr[":"].paused=function(el){return el.cyclePause;};$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.backwards);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts.backwards);},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,!options.backwards);}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.backwards);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.cssAfter=opts.cssAfter||{};opts.cssFirst=opts.cssFirst||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);$($slides[first]).css(opts.cssFirst);if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="none"?0:opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length){opts.after[0].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,0);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$s.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=0;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){opts.busy=0;$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing("+fx+"); currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.backwards);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while(opts.fx!="none"&&(t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,1);};$.fn.cycle.prev=function(opts){advance(opts,0);};function advance(opts,moveForward){var val=moveForward?1:-1;var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,moveForward);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v&&v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();if(typeof opts.cssBefore.opacity=="undefined"){opts.cssBefore.opacity=1;}opts.cssBefore.display="block";if(opts.slideResize&&w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(opts.slideResize&&h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,function(){cb();});};$l.animate(opts.animOut,speedOut,easeOut,function(){$l.css(opts.cssAfter);if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={activePagerClass:"activeSlide",after:null,allowPagerClickBubble:false,animIn:null,animOut:null,autostop:0,autostopCount:0,backwards:false,before:null,cleartype:!$.support.opacity,cleartypeNoBg:false,containerResize:1,continuous:0,cssAfter:null,cssBefore:null,delay:0,easeIn:null,easeOut:null,easing:null,end:null,fastOnEvent:0,fit:0,fx:"fade",fxFn:null,height:"auto",manualTrump:true,next:null,nowrap:0,onPagerEvent:null,onPrevNextEvent:null,pager:null,pagerAnchorBuilder:null,pagerEvent:"click.cycle",pause:0,pauseOnPagerHover:0,prev:null,prevNextEvent:"click.cycle",random:0,randomizeEffects:1,requeueOnImageNotLoaded:true,requeueTimeout:250,rev:0,shuffle:null,slideExpr:null,slideResize:1,speed:1000,speedIn:null,speedOut:null,startingSlide:0,sync:1,timeout:4000,timeoutFn:null,updateActivePagerLink:null};})(jQuery);;

