/*
 * jQuery 1.2.3 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008-02-06 00:21:25 -0500 (Wed, 06 Feb 2008) $
 * $Rev: 4663 $
 */
(function(){if(window.jQuery)var _jQuery=window.jQuery;var jQuery=window.jQuery=function(selector,context){return new jQuery.prototype.init(selector,context);};if(window.$)var _$=window.$;window.$=jQuery;var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/;var isSimple=/^.[^:#\[\.]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}else if(typeof selector=="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem)if(elem.id!=match[3])return jQuery().find(selector);else{this[0]=elem;this.length=1;return this;}else
selector=[];}}else
return new jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return new jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(selector.constructor==Array&&selector||(selector.jquery||selector.length&&selector!=window&&!selector.nodeType&&selector[0]!=undefined&&selector[0].nodeType)&&jQuery.makeArray(selector)||[selector]);},jquery:"1.2.3",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){var ret=-1;this.each(function(i){if(this==elem)ret=i;});return ret;},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value==undefined)return this.length&&jQuery[type||"attr"](this[0],name)||undefined;else{options={};options[name]=value;}return this.each(function(i){for(name in options)jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!="object"&&text!=null)return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).map(function(){var elem=this;while(elem.firstChild)elem=elem.firstChild;return elem;}).append(this);return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,false,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):elems);},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement("div");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0];}else
return this.cloneNode(true);});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!=undefined)this[expando]=null;});if(events===true)this.find("*").andSelf().each(function(i){if(this.nodeType==3)return;var events=jQuery.data(this,"events");for(var type in events)for(var handler in events[type])jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,this));},not:function(selector){if(selector.constructor==String)if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true));else
selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return!selector?this:this.pushStack(jQuery.merge(this.get(),selector.constructor==String?jQuery(selector).get():selector.length!=undefined&&(!selector.nodeName||jQuery.nodeName(selector,"form"))?selector:[selector]));},is:function(selector){return selector?jQuery.multiFilter(selector,this).length>0:false;},hasClass:function(selector){return this.is("."+selector);},val:function(value){if(value==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery.browser.msie&&!option.attributes.value.specified?option.text:option.value;if(one)return value;values.push(value);}}return values;}else
return(this[0].value||"").replace(/\r/g,"");}return undefined;}return this.each(function(){if(this.nodeType!=1)return;if(value.constructor==Array&&/radio|checkbox/.test(this.type))this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=value.constructor==Array?value:[value];jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length)this.selectedIndex=-1;}else
this.value=value;});},html:function(value){return value==undefined?(this.length?this[0].innerHTML:null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value==null){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data==undefined&&this.length)data=jQuery.data(this[0],key);return data==null&&parts[1]?this.data(parts[0]):data;}else
return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse)elems.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(elems[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(this.ownerDocument.createElement("tbody"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,"script")){scripts=scripts.add(elem);}else{if(elem.nodeType==1)scripts=scripts.add(jQuery("script",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};jQuery.prototype.init.prototype=jQuery.prototype;function evalScript(i,elem){if(elem.src)jQuery.ajax({url:elem.src,async:false,dataType:"script"});else
jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");if(elem.parentNode)elem.parentNode.removeChild(elem);}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2;}if(typeof target!="object"&&typeof target!="function")target={};if(length==1){target=this;i=0;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){if(target===options[name])continue;if(deep&&options[name]&&typeof options[name]=="object"&&target[name]&&!options[name].nodeType)target[name]=jQuery.extend(target[name],options[name]);else if(options[name]!=undefined)target[name]=options[name];}return target;};var expando="jQuery"+(new Date()).getTime(),uuid=0,windowData={};var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/function/i.test(fn+"");},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},globalEval:function(data){data=jQuery.trim(data);if(data){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.browser.msie)script.text=data;else
script.appendChild(document.createTextNode(data));head.appendChild(script);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id)id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])jQuery.cache[id]={};if(data!=undefined)jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])break;if(!name)jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)elem.removeAttribute(expando);}delete jQuery.cache[id];}},each:function(object,callback,args){if(args){if(object.length==undefined){for(var name in object)if(callback.apply(object[name],args)===false)break;}else
for(var i=0,length=object.length;i<length;i++)if(callback.apply(object[i],args)===false)break;}else{if(object.length==undefined){for(var name in object)if(callback.call(object[name],name,object[name])===false)break;}else
for(var i=0,length=object.length,value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))value=value.call(elem,i);return value&&value.constructor==Number&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)elem.className=classNames!=undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}callback.call(elem);for(var name in options)elem.style[name]=old[name];},css:function(elem,name,force){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});val-=Math.round(padding+border);}if(jQuery(elem).is(":visible"))getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,val);}return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret;function color(elem){if(!jQuery.browser.safari)return false;var ret=document.defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(elem.style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=elem.style.outline;elem.style.outline="0 solid black";elem.style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&elem.style&&elem.style[name])ret=elem.style[name];else if(document.defaultView&&document.defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var getComputedStyle=document.defaultView.getComputedStyle(elem,null);if(getComputedStyle&&!color(elem))ret=getComputedStyle.getPropertyValue(name);else{var swap=[],stack=[];for(var a=elem;a&&color(a);a=a.parentNode)stack.unshift(a);for(var i=0;i<stack.length;i++)if(color(stack[i])){swap[i]=stack[i].style.display;stack[i].style.display="block";}ret=name=="display"&&swap[stack.length-1]!=null?"none":(getComputedStyle&&getComputedStyle.getPropertyValue(name))||"";for(var i=0;i<swap.length;i++)if(swap[i]!=null)stack[i].style.display=swap[i];}if(name=="opacity"&&ret=="")ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var style=elem.style.left,runtimeStyle=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;elem.style.left=ret||0;ret=elem.style.pixelLeft+"px";elem.style.left=style;elem.runtimeStyle.left=runtimeStyle;}}return ret;},clean:function(elems,context){var ret=[];context=context||document;if(typeof context.createElement=='undefined')context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;jQuery.each(elems,function(i,elem){if(!elem)return;if(elem.constructor==Number)elem=elem.toString();if(typeof elem=="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||jQuery.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){var tbody=!tags.indexOf("<table")&&tags.indexOf("<tbody")<0?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&tags.indexOf("<tbody")<0?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)tbody[j].parentNode.removeChild(tbody[j]);if(/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);}elem=jQuery.makeArray(div.childNodes);}if(elem.length===0&&(!jQuery.nodeName(elem,"form")&&!jQuery.nodeName(elem,"select")))return;if(elem[0]==undefined||jQuery.nodeName(elem,"form")||elem.options)ret.push(elem);else
ret=jQuery.merge(ret,elem);});return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;var fix=jQuery.isXMLDoc(elem)?{}:jQuery.props;if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(fix[name]){if(value!=undefined)elem[fix[name]]=value;return elem[fix[name]];}else if(jQuery.browser.msie&&name=="style")return jQuery.attr(elem.style,"cssText",value);else if(value==undefined&&jQuery.browser.msie&&jQuery.nodeName(elem,"form")&&(name=="action"||name=="method"))return elem.getAttributeNode(name).nodeValue;else if(elem.tagName){if(value!=undefined){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem.setAttribute(name,""+value);}if(jQuery.browser.msie&&/href|src/.test(name)&&!jQuery.isXMLDoc(elem))return elem.getAttribute(name,2);return elem.getAttribute(name);}else{if(name=="opacity"&&jQuery.browser.msie){if(value!=undefined){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseFloat(value).toString()=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100).toString():"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(value!=undefined)elem[name]=value;return elem[name];}},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(typeof array!="array")for(var i=0,length=array.length;i<length;i++)ret.push(array[i]);else
ret=array.slice(0);return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++)if(array[i]==elem)return i;return-1;},merge:function(first,second){if(jQuery.browser.msie){for(var i=0;second[i];i++)if(second[i].nodeType!=8)first.push(second[i]);}else
for(var i=0;second[i];i++)first.push(second[i]);return first;},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i]);}}}catch(e){ret=array;}return ret;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++)if(!inv&&callback(elems[i],i)||inv&&!callback(elems[i],i))ret.push(elems[i]);return ret;},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!==null&&value!=undefined){if(value.constructor!=Array)value=[value];ret=ret.concat(value);}}return ret;}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode=="CSS1Compat",props:{"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,innerHTML:"innerHTML",className:"className",value:"value",disabled:"disabled",checked:"checked",readonly:"readOnly",selected:"selected",maxlength:"maxLength",selectedIndex:"selectedIndex",defaultValue:"defaultValue",tagName:"tagName",nodeName:"nodeName"}});jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string")ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret));};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(){var args=arguments;return this.each(function(){for(var i=0,length=args.length;i<length;i++)jQuery(args[i])[original](this);});};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1)this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames){jQuery.className[jQuery.className.has(this,classNames)?"remove":"add"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.length){jQuery("*",this).add(this).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)this.parentNode.removeChild(this);}},empty:function(){jQuery(">*",this).remove();while(this.firstChild)this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body["client"+name]||jQuery.browser.safari&&window["inner"+name]||document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(Math.max(document.body["scroll"+name],document.documentElement["scroll"+name]),Math.max(document.body["offset"+name],document.documentElement["offset"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"px");};});var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":function(a,i,m){return m[2]=="*"||jQuery.nodeName(a,m[2]);},"#":function(a,i,m){return a.getAttribute("id")==m[2];},":":{lt:function(a,i,m){return i<m[3]-0;},gt:function(a,i,m){return i>m[3]-0;},nth:function(a,i,m){return m[3]-0==i;},eq:function(a,i,m){return m[3]-0==i;},first:function(a,i){return i==0;},last:function(a,i,m,r){return i==r.length-1;},even:function(a,i){return i%2==0;},odd:function(a,i){return i%2;},"first-child":function(a){return a.parentNode.getElementsByTagName("*")[0]==a;},"last-child":function(a){return jQuery.nth(a.parentNode.lastChild,1,"previousSibling")==a;},"only-child":function(a){return!jQuery.nth(a.parentNode.lastChild,2,"previousSibling");},parent:function(a){return a.firstChild;},empty:function(a){return!a.firstChild;},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||"").indexOf(m[3])>=0;},visible:function(a){return"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden";},hidden:function(a){return"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden";},enabled:function(a){return!a.disabled;},disabled:function(a){return a.disabled;},checked:function(a){return a.checked;},selected:function(a){return a.selected||jQuery.attr(a,"selected");},text:function(a){return"text"==a.type;},radio:function(a){return"radio"==a.type;},checkbox:function(a){return"checkbox"==a.type;},file:function(a){return"file"==a.type;},password:function(a){return"password"==a.type;},submit:function(a){return"submit"==a.type;},image:function(a){return"image"==a.type;},reset:function(a){return"reset"==a.type;},button:function(a){return"button"==a.type||jQuery.nodeName(a,"button");},input:function(a){return/input|select|textarea|button/i.test(a.nodeName);},has:function(a,i,m){return jQuery.find(m[3],a).length;},header:function(a){return/h\d/i.test(a.nodeName);},animated:function(a){return jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length;}}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!="string")return[t];if(context&&context.nodeType!=1&&context.nodeType!=9)return[];context=context||document;var ret=[context],done=[],last,nodeName;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false;var re=quickChild;var m=re.exec(t);if(m){nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName))r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var merge={};nodeName=m[2].toUpperCase();m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling)if(n.nodeType==1){var id=jQuery.data(n);if(m=="~"&&merge[id])break;if(!nodeName||n.nodeName.toUpperCase()==nodeName){if(m=="~")merge[id]=true;r.push(n);}if(m=="+")break;}}ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true;}}if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length);}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=quickClass;m=re2.exec(t);}m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2])oid=jQuery('[@id="'+m[2]+'"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object")tag="param";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));}if(m[1]==".")r=jQuery.classFilter(r,m[2]);if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++)if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break;}r=tmp;}ret=r;}t=t.replace(re2,"");}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}}if(t)ret=[];if(ret&&context==ret[0])ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}}if(!m)break;if(m[1]==":"&&m[2]=="not")r=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3]);else if(m[1]==".")r=jQuery.classFilter(r,m[2],not);else if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2]))z=jQuery.attr(a,m[2])||'';if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"0n+"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling)if(n.nodeType==1)n.nodeIndex=c++;merge[id]=true;}var add=false;if(first==0){if(node.nodeIndex==last)add=true;}else if((node.nodeIndex-last)%first==0&&(node.nodeIndex-last)/first>=0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var fn=jQuery.expr[m[1]];if(typeof fn=="object")fn=fn[m[2]];if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+";}");r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r);},not);}}return{r:r,t:t};},dir:function(elem,dir){var matched=[];var cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)matched.push(cur);cur=cur[dir];}return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])if(cur.nodeType==1&&++num==result)break;return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&(!elem||n!=elem))r.push(n);}return r;}});jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(jQuery.browser.msie&&elem.setInterval!=undefined)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=function(){return fn.apply(this,arguments);};handler.data=data;handler.guid=fn.guid;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){var val;if(typeof jQuery=="undefined"||jQuery.event.triggered)return val;val=jQuery.event.handle.apply(arguments.callee.elem,arguments);return val;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===false){if(elem.addEventListener)elem.addEventListener(type,handle,false);else if(elem.attachEvent)elem.attachEvent("on"+type,handle);}}handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types==undefined||(typeof types=="string"&&types.charAt(0)=="."))for(var type in events)this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];if(events[type]){if(handler)delete events[type][handler.guid];else
for(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===false){if(elem.removeEventListener)elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}ret=null;delete events[type];}}});}for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(type,data,elem,donative,extra){data=jQuery.makeArray(data||[]);if(type.indexOf("!")>=0){type=type.slice(0,-1);var exclusive=true;}if(!elem){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{if(elem.nodeType==3||elem.nodeType==8)return undefined;var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event)data.unshift(this.fix({type:type,target:elem}));data[0].type=type;if(exclusive)data[0].exclusive=true;if(jQuery.isFunction(jQuery.data(elem,"handle")))val=jQuery.data(elem,"handle").apply(elem,data);if(!fn&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)val=false;if(event)data.shift();if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined)val=ret;}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}this.triggered=false;}return val;},handle:function(event){var val;event=jQuery.event.fix(event||window.event||{});var parts=event.type.split(".");event.type=parts[0];var handlers=jQuery.data(this,"events")&&jQuery.data(this,"events")[event.type],args=Array.prototype.slice.call(arguments,1);args.unshift(event);for(var j in handlers){var handler=handlers[j];args[0].handler=handler;args[0].data=handler.data;if(!parts[1]&&!event.exclusive||handler.type==parts[1]){var ret=handler.apply(this,args);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}if(jQuery.browser.msie)event.target=event.preventDefault=event.stopPropagation=event.handler=event.data=null;return val;},fix:function(event){var originalEvent=event;event=jQuery.extend({},originalEvent);event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=originalEvent.target.parentNode;if(!event.relatedTarget&&event.fromElement)event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);}if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode))event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)event.metaKey=event.ctrlKey;if(!event.which&&event.button)event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},special:{ready:{setup:function(){bindReady();return;},teardown:function(){return;}},mouseenter:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseover",jQuery.event.special.mouseenter.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseover",jQuery.event.special.mouseenter.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseenter";return jQuery.event.handle.apply(this,arguments);}},mouseleave:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseout",jQuery.event.special.mouseleave.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseout",jQuery.event.special.mouseleave.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseleave";return jQuery.event.handle.apply(this,arguments);}}}};jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){return this.each(function(){jQuery.event.add(this,type,function(event){jQuery(this).unbind(event);return(fn||data).apply(this,arguments);},fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){if(this[0])return jQuery.event.trigger(type,data,this[0],false,fn);return undefined;},toggle:function(){var args=arguments;return this.click(function(event){this.lastToggle=0==this.lastToggle?1:0;event.preventDefault();return args[this.lastToggle].apply(this,arguments)||false;});},hover:function(fnOver,fnOut){return this.bind('mouseenter',fnOver).bind('mouseleave',fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else
jQuery.readyList.push(function(){return fn.call(this,jQuery);});return this;}});jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.apply(document);});jQuery.readyList=null;}jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener&&!jQuery.browser.opera)document.addEventListener("DOMContentLoaded",jQuery.ready,false);if(jQuery.browser.msie&&window==top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}jQuery.ready();})();if(jQuery.browser.opera)document.addEventListener("DOMContentLoaded",function(){if(jQuery.isReady)return;for(var i=0;i<document.styleSheets.length;i++)if(document.styleSheets[i].disabled){setTimeout(arguments.callee,0);return;}jQuery.ready();},false);if(jQuery.browser.safari){var numStyles;(function(){if(jQuery.isReady)return;if(document.readyState!="loaded"&&document.readyState!="complete"){setTimeout(arguments.callee,0);return;}if(numStyles===undefined)numStyles=jQuery("style, link[rel=stylesheet]").length;if(document.styleSheets.length!=numStyles){setTimeout(arguments.callee,0);return;}jQuery.ready();})();}jQuery.event.add(window,"load",jQuery.ready);}jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,change,select,"+"submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});var withinElement=function(event,elem){var parent=event.relatedTarget;while(parent&&parent!=elem)try{parent=parent.parentNode;}catch(error){parent=elem;}return parent==elem;};jQuery(window).bind("unload",function(){jQuery("*").add(document).unbind();});jQuery.fn.extend({load:function(url,params,callback){if(jQuery.isFunction(url))return this.bind("load",url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}callback=callback||function(){};var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{params=jQuery.param(params);type="POST";}var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified")self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=(new Date).getTime();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;}return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};}return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{global:true,type:"GET",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null,username:null,password:null,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(s){var jsonp,jsre=/=\?(&|$)/g,status,data;s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(s.type.toLowerCase()=="get"){if(!s.url.match(jsre))s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre))s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";}if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}if(head)head.removeChild(script);};}if(s.dataType=="script"&&s.cache==null)s.cache=false;if(s.cache===false&&s.type.toLowerCase()=="get"){var ts=(new Date()).getTime();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}if(s.data&&s.type.toLowerCase()=="get"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");if((!s.url.indexOf("http")||!s.url.indexOf("//"))&&s.dataType=="script"&&s.type.toLowerCase()=="get"){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();head.removeChild(script);}};}head.appendChild(script);return undefined;}var requestDone=false;var xml=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();xml.open(s.type,s.url,s.async,s.username,s.password);try{if(s.data)xml.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xml.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xml.setRequestHeader("X-Requested-With","XMLHttpRequest");xml.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}if(s.beforeSend)s.beforeSend(xml);if(s.global)jQuery.event.trigger("ajaxSend",[xml,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xml&&(xml.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xml)&&"error"||s.ifModified&&jQuery.httpNotModified(xml,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xml,s.dataType);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xml.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
jQuery.handleError(s,xml,status);complete();if(s.async)xml=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xml){xml.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xml.send(s.data);}catch(e){jQuery.handleError(s,xml,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xml,s]);}function complete(){if(s.complete)s.complete(xml,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xml,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}return xml;},handleError:function(s,xml,status,e){if(s.error)s.error(xml,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xml,s,e]);},active:0,httpSuccess:function(r){try{return!r.status&&location.protocol=="file:"||(r.status>=200&&r.status<300)||r.status==304||r.status==1223||jQuery.browser.safari&&r.status==undefined;}catch(e){}return false;},httpNotModified:function(xml,url){try{var xmlRes=xml.getResponseHeader("Last-Modified");return xml.status==304||xmlRes==jQuery.lastModified[url]||jQuery.browser.safari&&xml.status==undefined;}catch(e){}return false;},httpData:function(r,type){var ct=r.getResponseHeader("content-type");var xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0;var data=xml?r.responseXML:r.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(type=="script")jQuery.globalEval(data);if(type=="json")data=eval("("+data+")");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else
for(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else
s.push(encodeURIComponent(j)+"="+encodeURIComponent(a[j]));return s.join("&").replace(/%20/g,"+");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock||"";if(jQuery.css(this,"display")=="none"){var elem=jQuery("<"+this.tagName+" />").appendTo("body");this.style.display=elem.css("display");if(this.style.display=="none")this.style.display="block";elem.remove();}}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle(fn,fn2):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){if(this.nodeType!=1)return false;var opt=jQuery.extend({},optall);var hidden=jQuery(this).is(":hidden"),self=this;for(var p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return jQuery.isFunction(opt.complete)&&opt.complete.apply(this);if(p=="height"||p=="width"){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}if(opt.overflow!=null)this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}if(parts[1])end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else
e.custom(start,val,"");}});return true;});},queue:function(type,fn){if(jQuery.isFunction(type)||(type&&type.constructor==Array)){fn=type;type="fx";}if(!type||(typeof type=="string"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.apply(this);}});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)if(timers[i].elem==this){if(gotoEnd)timers[i](true);timers.splice(i,1);}});if(!gotoEnd)this.dequeue();return this;}});var queue=function(elem,type,array){if(!elem)return undefined;type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",array?jQuery.makeArray(array):[]);return q;};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].apply(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:{slow:600,fast:200}[opt.duration])||400;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.apply(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],timerId:null,fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)this.options.step.apply(this.elem,[this.now,this]);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop=="height"||this.prop=="width")this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&this.elem.style[this.prop]==null)return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=(new Date()).getTime();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;this.update();var self=this;function t(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timerId==null){jQuery.timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)if(!timers[i]())timers.splice(i--,1);if(!timers.length){clearInterval(jQuery.timerId);jQuery.timerId=null;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(0,this.cur());if(this.prop=="width"||this.prop=="height")this.elem.style[this.prop]="1px";jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=(new Date()).getTime();if(gotoEnd||t>this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)if(this.options.curAnim[i]!==true)done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")this.elem.style.display="block";}if(this.options.hide)this.elem.style.display="none";if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);}if(done&&jQuery.isFunction(this.options.complete))this.options.complete.apply(this.elem);return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}return true;}};jQuery.fx.step={scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}};jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),fixed=jQuery.css(elem,"position")=="fixed";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop);}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2)border(offsetParent);if(!fixed&&jQuery.css(offsetParent,"position")=="fixed")fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/i.test(jQuery.css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&jQuery.css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||jQuery.css(offsetChild,"position")=="absolute"))||(mozilla&&jQuery.css(offsetChild,"position")!="absolute"))add(-doc.body.offsetLeft,-doc.body.offsetTop);if(fixed)add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));}results={top:top,left:left};}function border(elem){add(jQuery.curCSS(elem,"borderLeftWidth",true),jQuery.curCSS(elem,"borderTopWidth",true));}function add(l,t){left+=parseInt(l)||0;top+=parseInt(t)||0;}return results;};})();$(document).ready(function() {
	Cufon.replace('h2');
})/*!
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */

var Cufon = (function() {
	
	var api = function() {	
		return api.replace.apply(null, arguments);
	};
	
	var DOM = api.DOM = {
			
		ready: (function() {
		
			var complete = false, readyStatus = { loaded: 1, complete: 1 };
		
			var queue = [], perform = function() {
				if (complete) return;
				complete = true;
				for (var fn; fn = queue.shift(); fn());
			};
			
			// Gecko, Opera, WebKit r26101+
			
			if (document.addEventListener) {
				document.addEventListener('DOMContentLoaded', perform, false);
				window.addEventListener('pageshow', perform, false); // For cached Gecko pages
			}
			
			// Old WebKit, Internet Explorer
			
			if (!window.opera && document.readyState) (function() {
				readyStatus[document.readyState] ? perform() : setTimeout(arguments.callee, 10);
			})();
			
			// Internet Explorer
			
			if (document.readyState && document.createStyleSheet) (function() {
				try {
					document.body.doScroll('left');
					perform();
				}
				catch (e) {
					setTimeout(arguments.callee, 1);
				}
			})();
			
			addEvent(window, 'load', perform); // Fallback
			
			return function(listener) {
				if (!arguments.length) perform();
				else complete ? listener() : queue.push(listener);
			};
			
		})()
		
	};

	var CSS = api.CSS = {
	
		Size: function(value, base) {
		
			this.value = parseFloat(value);
			this.unit = String(value).match(/[a-z%]*$/)[0] || 'px';
		
			this.convert = function(value) {
				return value / base * this.value;
			};
			
			this.convertFrom = function(value) {
				return value / this.value * base;
			};
			
			this.toString = function() {
				return this.value + this.unit;
			};

		},
	
		getStyle: function(el) {
			var view = document.defaultView;
			if (view && view.getComputedStyle) return new Style(view.getComputedStyle(el, null));
			if (el.currentStyle) return new Style(el.currentStyle);
			return new Style(el.style);
		},
		
		ready: (function() {
			
			var complete = false;
			
			var queue = [], perform = function() {
				complete = true;
				for (var fn; fn = queue.shift(); fn());
			};
			
			// Safari 2 does not include <style> elements in document.styleSheets.
			// Safari 2 also does not support Object.prototype.propertyIsEnumerable.
			
			var styleElements = Object.prototype.propertyIsEnumerable ? elementsByTagName('style') : { length: 0 };
			var linkElements = elementsByTagName('link');
			
			DOM.ready(function() {
				// These checks are actually only needed for WebKit-based browsers, but don't really hurt other browsers.
				var linkStyles = 0, link;
				for (var i = 0, l = linkElements.length; link = linkElements[i], i < l; ++i) {
					// WebKit does not load alternate stylesheets.
					if (!link.disabled && link.rel.toLowerCase() == 'stylesheet') ++linkStyles;
				}
				if (document.styleSheets.length >= styleElements.length + linkStyles) perform();
				else setTimeout(arguments.callee, 10);
			});
			
			return function(listener) {
				if (complete) listener();
				else queue.push(listener);
			};
			
		})(),

		supports: function(property, value) {
			var checker = document.createElement('span').style;
			if (checker[property] === undefined) return false;
			checker[property] = value;
			return checker[property] === value;
		},
		
		textAlign: function(word, style, position, wordCount) {
			if (style.get('textAlign') == 'right') {
				if (position > 0) word = ' ' + word;
			}
			else if (position < wordCount - 1) word += ' ';
			return word;
		},
		
		textDecoration: function(el, style) {
			if (!style) style = this.getStyle(el);
			var types = {
				underline: null,
				overline: null,
				'line-through': null
			};
			for (var search = el; search.parentNode && search.parentNode.nodeType == 1; ) {
				var foundAll = true;
				for (var type in types) {
					if (types[type]) continue;
					if (style.get('textDecoration').indexOf(type) != -1) types[type] = style.get('color');
					foundAll = false;
				}
				if (foundAll) break; // this is rather unlikely to happen
				style = this.getStyle(search = search.parentNode);
			}
			return types;
		},
		
		textShadow: cached(function(value) {
			if (value == 'none') return null;
			var shadows = [], currentShadow = {}, result, offCount = 0;
			var re = /(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;
			while (result = re.exec(value)) {
				if (result[0] == ',') {
					shadows.push(currentShadow);
					currentShadow = {}, offCount = 0;
				}
				else if (result[1]) {
					currentShadow.color = result[1];
				}
				else {
					currentShadow[[ 'offX', 'offY', 'blur' ][offCount++]] = result[2];
				}
			}
			shadows.push(currentShadow);
			return shadows;
		}),
		
		color: cached(function(value) {
			var parsed = {};
			parsed.color = value.replace(/^rgba\((.*?),\s*([\d.]+)\)/, function($0, $1, $2) {
				parsed.opacity = parseFloat($2);
				return 'rgb(' + $1 + ')';
			});
			return parsed;
		}),
		
		textTransform: function(text, style) {
			return text[{
				uppercase: 'toUpperCase',
				lowercase: 'toLowerCase'
			}[style.get('textTransform')] || 'toString']();
		}
		
	};
	
	api.VML = {
	
		parsePath: function(path) {
			var cmds = [], re = /([mrvxe])([^a-z]*)/g, match;
			while (match = re.exec(path)) {
				cmds.push({
					type: match[1],
					coords: match[2].split(',')
				});
			}
			return cmds;
		}
			
	};
	
	function Font(data) {
		
		var face = this.face = data.face;
		this.glyphs = data.glyphs;
		this.w = data.w;
		this.baseSize = parseInt(face['units-per-em'], 10);
		
		this.family = face['font-family'].toLowerCase();
		this.weight = face['font-weight'];
		this.style = face['font-style'] || 'normal';
		
		this.viewBox = (function () {
			var parts = face.bbox.split(/\s+/);
			return {
				minX: parseInt(parts[0], 10),
				minY: parseInt(parts[1], 10),
				width: parseInt(parts[2], 10) - parseInt(parts[0], 10),
				height: parseInt(parts[3], 10) - parseInt(parts[1], 10),
				toString: function() {
					return [ this.minX, this.minY, this.width, this.height ].join(' ');
				}
			};
		})();
		
		this.ascent = -parseInt(face.ascent, 10);
		this.descent = -parseInt(face.descent, 10);
		
		this.height = -this.ascent + this.descent;
		
	}
	
	function FontFamily() {

		var styles = {}, mapping = {
			oblique: 'italic',
			italic: 'oblique'
		};
		
		this.add = function(font) {
			(styles[font.style] || (styles[font.style] = {}))[font.weight] = font;
		};
		
		this.get = function(style, weight) {
			var weights = styles[style] || styles[mapping[style]]
				|| styles.normal || styles.italic || styles.oblique;
			if (!weights) return null;
			// we don't have to worry about "bolder" and "lighter"
			// because IE's currentStyle returns a numeric value for it,
			// and other browsers use the computed value anyway
			weight = {
				normal: 400,
				bold: 700
			}[weight] || parseInt(weight, 10);
			if (weights[weight]) return weights[weight];
			// http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight
			// Gecko uses x99/x01 for lighter/bolder
			var up = {
				1: 1,
				99: 0
			}[weight % 100], alts = [], min, max;
			if (up === undefined) up = weight > 400;
			if (weight == 500) weight = 400;
			for (var alt in weights) {
				alt = parseInt(alt, 10);
				if (!min || alt < min) min = alt;
				if (!max || alt > max) max = alt;
				alts.push(alt);
			}
			if (weight < min) weight = min;
			if (weight > max) weight = max;
			alts.sort(function(a, b) {
				return (up
					? (a > weight && b > weight) ? a < b : a > b
					: (a < weight && b < weight) ? a > b : a < b) ? -1 : 1;
			});
			return weights[alts[0]];
		};
	
	}
	
	function Storage() {
		
		var map = {}, at = 0;
		
		function identify(el) {
			return el.cufid || (el.cufid = ++at);
		}
		
		this.get = function(el) {
			var id = identify(el);
			return map[id] || (map[id] = {});
		};
		
	}
	
	function Style(style) {
		
		var custom = {}, sizes = {};
		
		this.get = function(property) {
			return custom[property] != undefined ? custom[property] : style[property];
		};
		
		this.getSize = function(property, base) {
			return sizes[property] || (sizes[property] = new CSS.Size(this.get(property), base));
		};
		
		this.extend = function(styles) {
			for (var property in styles) custom[property] = styles[property];
			return this;
		};
		
	}
	
	function addEvent(el, type, listener) {
		if (el.addEventListener) {
			el.addEventListener(type, listener, false);
		}
		else if (el.attachEvent) {
			el.attachEvent('on' + type, function() {
				return listener.apply(el, arguments);
			});
		}
	}
	
	function cached(fun) {
		var cache = {};
		return function(key) {
			if (!cache.hasOwnProperty(key)) cache[key] = fun.apply(null, arguments);
			return cache[key];
		};	
	}
	
	function getFont(el, style) {
		if (!style) style = CSS.getStyle(el);
		var families = style.get('fontFamily').split(/\s*,\s*/), family;
		for (var i = 0, l = families.length; i < l; ++i) {
			family = families[i].replace(/^(["'])(.*?)\1$/, '$2').toLowerCase();
			if (fonts[family]) return fonts[family].get(style.get('fontStyle'), style.get('fontWeight'));
		}
		return null;
	}
	
	function elementsByTagName(query) {
		return document.getElementsByTagName(query);
	}
	
	function merge() {
		var merged = {}, key;
		for (var i = 0, l = arguments.length; i < l; ++i) {
			for (key in arguments[i]) merged[key] = arguments[i][key];
		}
		return merged;
	}
	
	function process(font, text, style, options, node, el) {
		var separate = options.separate;
		if (separate == 'none') return engines[options.engine].apply(null, arguments);
		var fragment = document.createDocumentFragment(), processed;
		var parts = text.split(separators[separate]), needsAligning = (separate == 'words');
		if (needsAligning && HAS_BROKEN_REGEXP) {
			// @todo figure out a better way to do this
			if (/^\s/.test(text)) parts.unshift('');
			if (/\s$/.test(text)) parts.push('');
		}
		for (var i = 0, l = parts.length; i < l; ++i) {
			processed = engines[options.engine](font,
				needsAligning ? CSS.textAlign(parts[i], style, i, l) : parts[i],
				style, options, node, el, i < l - 1);
			if (processed) fragment.appendChild(processed);
		}
		return fragment;
	}
	
	function replaceElement(el, options) {
		var storage = sharedStorage.get(el);
		if (!options) options = storage.options;
		var font, style, nextNode;
		for (var node = el.firstChild; node; node = nextNode) {
			nextNode = node.nextSibling;
			if (node.nodeType == 1) {
				if (!node.firstChild) continue;
				if (!/cufon/.test(node.className)) {
					arguments.callee(node, options);
					continue;
				}
			}
			var text = node.nodeType == 3 ? node.data : node.alt;
			if (text === '') continue;
			if (!style) style = CSS.getStyle(el).extend(options);
			if (!font) font = getFont(el, style);
			if (!font) continue;
			var processed = process(font, text, style, options, node, el);
			if (processed) node.parentNode.replaceChild(processed, node);
			else node.parentNode.removeChild(node);
		}
		if (!storage.options) {
			storage.options = options;
		}
	}
	
	var HAS_BROKEN_REGEXP = ' '.split(/\s+/).length == 0;
	
	var sharedStorage = new Storage();
	var replaceHistory = [];
	
	var engines = {}, fonts = {}, defaultOptions = {
		enableTextDecoration: false,
		engine: null,
		//fontScale: 1,
		//fontScaling: false,
		//hover: false,
		printable: true,
		//rotation: 0,
		//selectable: false,
		selector: (
				window.Sizzle
			||	window.jQuery // avoid noConflict issues
			||	(window.dojo && dojo.query)
			||	(window.$$ && function(query) { return $$(query); })
			||	(window.$ && function(query) { return $(query); })
			||	(document.querySelectorAll && function(query) { return document.querySelectorAll(query); })
			||	elementsByTagName
		),
		separate: 'words', // 'none' and 'characters' are also accepted
		textShadow: 'none'
	};
	
	var separators = {
		words: /\s+/,
		characters: ''
	};
	
	api.now = function() {
		DOM.ready();
		return api;
	};
	
	api.refresh = function() {
		var currentHistory = replaceHistory.splice(0, replaceHistory.length);
		for (var i = 0, l = currentHistory.length; i < l; ++i) {
			api.replace.apply(null, currentHistory[i]);
		}
		return api;
	};
	
	api.registerEngine = function(id, engine) {
		if (!engine) return api;
		engines[id] = engine;
		return api.set('engine', id);
	};
	
	api.registerFont = function(data) {
		var font = new Font(data), family = font.family;
		if (!fonts[family]) fonts[family] = new FontFamily();
		fonts[family].add(font);
		return api.set('fontFamily', family);
	};
	
	api.replace = function(elements, options, ignoreHistory) {
		options = merge(defaultOptions, options);
		if (!options.engine) return api; // there's no browser support so we'll just stop here
		if (typeof options.textShadow == 'string')
			options.textShadow = CSS.textShadow(options.textShadow);
		if (!ignoreHistory) replaceHistory.push(arguments);
		if (elements.nodeType || typeof elements == 'string') elements = [ elements ];
		CSS.ready(function() {
			for (var i = 0, l = elements.length; i < l; ++i) {
				var el = elements[i];
				if (typeof el == 'string') api.replace(options.selector(el), options, true);
				else replaceElement(el, options);
			}
		});
		return api;
	};
	
	api.set = function(option, value) {
		defaultOptions[option] = value;
		return api;
	};
	
	return api;
	
})();

Cufon.registerEngine('canvas', (function() {

	// Safari 2 doesn't support .apply() on native methods
	
	var check = document.createElement('canvas');
	if (!check || !check.getContext || !check.getContext.apply) return null;
	check = null;
	
	var HAS_INLINE_BLOCK = Cufon.CSS.supports('display', 'inline-block');
	
	// Firefox 2 w/ non-strict doctype (almost standards mode)
	var HAS_BROKEN_LINEHEIGHT = !HAS_INLINE_BLOCK && (document.compatMode == 'BackCompat' || /frameset|transitional/i.test(document.doctype.publicId));
	
	var styleSheet = document.createElement('style');
	styleSheet.type = 'text/css';
	styleSheet.appendChild(document.createTextNode(
		'@media screen,projection{' +
			'.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle' + 
			(HAS_BROKEN_LINEHEIGHT
				? ''
				: ';font-size:1px;line-height:1px') +
			'}.cufon-canvas .cufon-alt{display:none}' +
			(HAS_INLINE_BLOCK
				? '.cufon-canvas canvas{position:relative}'
				: '.cufon-canvas canvas{position:absolute}') +
		'}' +
		'@media print{' +
			'.cufon-canvas{padding:0 !important}' +
			'.cufon-canvas canvas{display:none}' +
			'.cufon-canvas .cufon-alt{display:inline}' +
		'}'
	));
	document.getElementsByTagName('head')[0].appendChild(styleSheet);

	function generateFromVML(path, context) {
		var atX = 0, atY = 0;
		var cmds = Cufon.VML.parsePath(path);
		var code = new Array(cmds.length - 1);
		generate: for (var i = 0, l = cmds.length; i < l; ++i) {
			var c = cmds[i].coords;
			switch (cmds[i].type) {
				case 'v':
					code[i] = { m: 'bezierCurveTo', a: [ atX + Number(c[0]), atY + Number(c[1]), atX + Number(c[2]), atY + Number(c[3]), atX += Number(c[4]), atY += Number(c[5]) ] };
					break;
				case 'r':
					code[i] = { m: 'lineTo', a: [ atX += Number(c[0]), atY += Number(c[1]) ] };
					break;
				case 'm':
					code[i] = { m: 'moveTo', a: [ atX = Number(c[0]), atY = Number(c[1]) ] };
					break;
				case 'x':
					code[i] = { m: 'closePath' };
					break;
				case 'e':
					break generate;
			}
			context[code[i].m].apply(context, code[i].a);
		}
		return code;
	}
	
	function interpret(code, context) {
		for (var i = 0, l = code.length; i < l; ++i) {
			var line = code[i];
			context[line.m].apply(context, line.a);
		}
	}
	
	return function(font, text, style, options, node, el) {
		
		var viewBox = font.viewBox;
		
		var size = style.getSize('fontSize', font.baseSize);
		
		var letterSpacing = style.get('letterSpacing');
		letterSpacing = (letterSpacing == 'normal') ? 0 : size.convertFrom(parseInt(letterSpacing, 10));
		
		var expandTop = 0, expandRight = 0, expandBottom = 0, expandLeft = 0;
		var shadows = options.textShadow, shadowOffsets = [];
		if (shadows) {
			for (var i = 0, l = shadows.length; i < l; ++i) {
				var shadow = shadows[i];
				var x = size.convertFrom(parseFloat(shadow.offX));
				var y = size.convertFrom(parseFloat(shadow.offY));
				shadowOffsets[i] = [ x, y ];
				if (y < expandTop) expandTop = y;
				if (x > expandRight) expandRight = x;
				if (y > expandBottom) expandBottom = y;
				if (x < expandLeft) expandLeft = x;
			}
		}
		
		var chars = Cufon.CSS.textTransform(text, style).split('');
		
		var width = 0, lastWidth = null;
		
		for (var i = 0, l = chars.length; i < l; ++i) {
			var glyph = font.glyphs[chars[i]] || font.missingGlyph;
			if (!glyph) continue;
			width += lastWidth = Number(glyph.w || font.w) + letterSpacing;
		}
		
		if (lastWidth === null) return null; // there's nothing to render
		
		expandRight += (viewBox.width - lastWidth);
		expandLeft += viewBox.minX;
		
		var wrapper = document.createElement('span');
		wrapper.className = 'cufon cufon-canvas';
		wrapper.alt = text;
		
		var canvas = document.createElement('canvas');
		
		var wStyle = wrapper.style;
		var cStyle = canvas.style;
		
		var height = size.convert(viewBox.height - expandTop + expandBottom);
		var roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		
		canvas.width = Math.ceil(size.convert(width + expandRight - expandLeft) * roundingFactor);
		canvas.height = roundedHeight;
		
		// minY has no part in canvas.height
		expandTop += viewBox.minY;
		
		cStyle.top = Math.round(size.convert(expandTop - font.ascent)) + 'px';
		cStyle.left = Math.round(size.convert(expandLeft)) + 'px';
		
		var wrapperWidth = Math.ceil(size.convert(width * roundingFactor)) + 'px';
		
		if (HAS_INLINE_BLOCK) {
			wStyle.width = wrapperWidth;
			wStyle.height = size.convert(font.height) + 'px';
		}
		else {
			wStyle.paddingLeft = wrapperWidth;
			wStyle.paddingBottom = (size.convert(font.height) - 1) + 'px';
		}
		
		var g = canvas.getContext('2d'), scale = roundedHeight / viewBox.height;
		
		g.scale(scale, scale);
		g.translate(-expandLeft, -expandTop);
		
		g.lineWidth = font.face['underline-thickness'];
		
		g.save();
		
		function line(y, color) {
			g.strokeStyle = color;
			
			g.beginPath();
			
			g.moveTo(0, y);
			g.lineTo(width, y);
			
			g.stroke();
		}
		
		var textDecoration = options.enableTextDecoration ? Cufon.CSS.textDecoration(el, style) : {};
		
		if (textDecoration.underline) line(-font.face['underline-position'], textDecoration.underline);
		if (textDecoration.overline) line(font.ascent, textDecoration.overline);
		
		g.fillStyle = style.get('color');
		
		function renderText() {
			for (var i = 0, l = chars.length; i < l; ++i) {
				var glyph = font.glyphs[chars[i]] || font.missingGlyph;
				if (!glyph) continue;
				g.beginPath();
				if (glyph.d) {
					if (glyph.code) interpret(glyph.code, g);
					else glyph.code = generateFromVML('m' + glyph.d, g);
				}
				g.fill();
				g.translate(Number(glyph.w || font.w) + letterSpacing, 0);
			}
		}
		
		if (shadows) {
			for (var i = 0, l = shadows.length; i < l; ++i) {
				var shadow = shadows[i];
				g.save();
				g.fillStyle = shadow.color;
				g.translate.apply(g, shadowOffsets[i]);
				renderText();
				g.restore();
			}
		}
		
		renderText();
		
		g.restore();
		
		if (textDecoration['line-through']) line(-font.descent, textDecoration['line-through']);
		
		wrapper.appendChild(canvas);
		
		if (options.printable) {
			var print = document.createElement('span');
			print.className = 'cufon-alt';
			print.appendChild(document.createTextNode(text));
			wrapper.appendChild(print);
		}
		
		return wrapper;
			
	};
	
})());

Cufon.registerEngine('vml', (function() {

	if (!document.namespaces) return;

	// isn't undocumented stuff great?
	document.write('<!--[if vml]><script type="text/javascript">Cufon.vmlEnabled=true;</script><![endif]-->');
	if (!Cufon.vmlEnabled) return;
	
	if (document.namespaces['cvml'] == null) {
		document.namespaces.add('cvml', 'urn:schemas-microsoft-com:vml');
		document.write('<style type="text/css">' +
			'@media screen{' + 
				'cvml\\:shape,cvml\\:group,cvml\\:shapetype,cvml\\:fill{behavior:url(#default#VML);display:inline-block;antialias:true;position:absolute}' +
				'.cufon-vml{display:inline-block;position:relative;vertical-align:middle}' +
				'.cufon-vml .cufon-alt{display:none}' +
				'a .cufon-vml{cursor:pointer}' +
			'}' +
			'@media print{' + 
				'.cufon-vml *{display:none}' +
				'.cufon-vml .cufon-alt{display:inline}' +
			'}' +
		'</style>');
	}

	var typeIndex = 0; // this is used to reference VML ShapeTypes

	function getFontSizeInPixels(el, value) {
		return getSizeInPixels(el, /(?:em|ex|%)$/i.test(value) ? '1em' : value);
	}
	
	// Original by Dead Edwards.
	// Combined with getFontSizeInPixels it also works with relative units.
	function getSizeInPixels(el, value) {
		if (/px$/i.test(value)) return parseFloat(value);
		var style = el.style.left, runtimeStyle = el.runtimeStyle.left;
		el.runtimeStyle.left = el.currentStyle.left;
		el.style.left = value;
		var result = el.style.pixelLeft;
		el.style.left = style;
		el.runtimeStyle.left = runtimeStyle;
		return result;
	}
	
	function createType(glyph, viewBox) {
		var shapeType = document.createElement('cvml:shapetype');
		shapeType.id = 'cufon-glyph-' + typeIndex++;
		glyph.typeRef = '#' + shapeType.id;
		shapeType.stroked = 'f';
		shapeType.coordsize = viewBox.width + ',' + viewBox.height;
		shapeType.coordorigin = viewBox.minX + ',' + viewBox.minY;
		var ensureSize = 'm' + viewBox.minX + ',' + viewBox.minY + ' r' + viewBox.width + ',' + viewBox.height;
		shapeType.path = (glyph.d ? 'm' + glyph.d + 'x' : '') + ensureSize;
		document.body.insertBefore(shapeType, document.body.firstChild);
	}
	
	return function(font, text, style, options, node, el, hasNext) {
	
		// @todo word-spacing, text-decoration
	
		var viewBox = font.viewBox;
		
		var size = style.computedFontSize || (style.computedFontSize = new Cufon.CSS.Size(getFontSizeInPixels(el, style.get('fontSize')) + 'px', font.baseSize));
		
		var letterSpacing = style.computedLSpacing;
		
		if (letterSpacing == undefined) {
			letterSpacing = style.get('letterSpacing');
			style.computedLSpacing = letterSpacing = (letterSpacing == 'normal') ? 0 : size.convertFrom(getSizeInPixels(el, letterSpacing));
		}
		
		var wrapper = document.createElement('span');
		wrapper.className = 'cufon cufon-vml';
		wrapper.alt = text;
		
		var canvas = document.createElement('cvml:group');
		
		var wStyle = wrapper.runtimeStyle;
		var cStyle = canvas.runtimeStyle;
		
		var height = size.convert(viewBox.height);
		
		cStyle.height = Math.ceil(height);
		cStyle.top = Math.round(size.convert(viewBox.minY - font.ascent));
		cStyle.left = Math.round(size.convert(viewBox.minX));
		
		var roundingFactor = parseInt(cStyle.height, 10) / height;
		
		wStyle.height = size.convert(-font.ascent + font.descent) + 'px';
		
		var textDecoration = options.enableTextDecoration ? Cufon.CSS.textDecoration(el, style) : {};
		
		var color = style.get('color');
		var chars = Cufon.CSS.textTransform(text, style).split('');
		
		var width = 0, offsetX = 0, advance = null;
		
		var shadows = options.textShadow;
		
		for (var i = 0, l = chars.length; i < l; ++i) {
		
			var glyph = font.glyphs[chars[i]] || font.missingGlyph;
			if (!glyph) continue;
			
			if (!glyph.typeRef) createType(glyph, viewBox);
			
			var shape = document.createElement('cvml:shape');
			shape.type = glyph.typeRef;
			var sStyle = shape.runtimeStyle;
			sStyle.width = viewBox.width;
			sStyle.height = viewBox.height;
			sStyle.top = 0;
			sStyle.left = offsetX;
			sStyle.zIndex = 1;
			shape.fillcolor = color;
			canvas.appendChild(shape);
			
			if (shadows) {
				// the VML shadow element is not used because it can only support
				// up to 2 shadows. and it breaks text selection.
				for (var z = 0, p = shadows.length; z < p; ++z) {
					var shadow = shadows[z];
					var shadowColor = Cufon.CSS.color(shadow.color);
					var shadowNode = shape.cloneNode(false), zStyle = shadowNode.runtimeStyle;
					zStyle.top = size.convertFrom(parseFloat(shadow.offY));
					zStyle.left = offsetX + size.convertFrom(parseFloat(shadow.offX));
					zStyle.zIndex = 0;
					shadowNode.fillcolor = shadowColor.color;
					if (shadowColor.opacity) {
						var shadowFill = document.createElement('cvml:fill');
						shadowFill.opacity = shadowColor.opacity;
						shadowNode.appendChild(shadowFill);
					}
					canvas.appendChild(shadowNode);
				}
			}
			
			advance = Number(glyph.w || font.w) + letterSpacing;
			
			width += advance;
			offsetX += advance;
			
		}
		
		if (advance === null) return null;
		
		var fullWidth = -viewBox.minX + width + (viewBox.width - advance);
		
		canvas.coordsize = fullWidth + ',' + viewBox.height;
		
		cStyle.width = size.convert(fullWidth * roundingFactor);
		
		wStyle.width = Math.max(Math.ceil(size.convert(width * roundingFactor)), 0);
		
		wrapper.appendChild(canvas);
	
		if (options.printable) {
			var print = document.createElement('span');
			print.className = 'cufon-alt';
			print.innerText = text;
			wrapper.appendChild(print);
		}
		
		// ie6, for some reason, has trouble rendering the last VML element in the document.
		// we can work around this by injecting a dummy element where needed.
		// @todo find a better solution
		if (!hasNext) wrapper.appendChild(document.createElement('cvml:group'));
		
		return wrapper;
		
	};
	
})());
Cufon.registerFont({"w":503,"face":{"font-family":"Myriad Pro","font-weight":300,"font-style":"italic","font-stretch":"normal","units-per-em":"1000","panose-1":"2 11 4 3 3 4 3 9 2 4","ascent":"750","descent":"-250","x-height":"11","cap-height":"0","bbox":"-121 -863 981 250","underline-thickness":"50","underline-position":"-75","slope":"-11","stemh":"37","stemv":"48","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":180},"\u00a0":{"w":180},"!":{"d":"117,-177r-39,0r88,-497r56,0xm110,-35v0,24,-16,46,-43,46v-22,0,-38,-20,-38,-44v0,-26,18,-46,42,-46v25,0,39,20,39,44","w":215},"\"":{"d":"126,-692r57,0r-55,221r-32,0xm249,-692r57,0r-55,221r-32,0","w":253},"#":{"d":"176,-244r92,0r51,-167r-93,0xm100,0r-40,0r64,-207r-83,0r7,-37r88,0r50,-167r-87,0r7,-37r92,0r63,-202r39,0r-62,202r92,0r63,-202r39,0r-62,202r83,0r-7,37r-87,0r-51,167r88,0r-6,37r-94,0r-64,207r-40,0r64,-207r-92,0","w":462},"$":{"d":"186,85r-39,0r20,-104v-41,-1,-92,-19,-117,-39r17,-36v29,20,67,38,118,38v80,0,148,-54,148,-136v0,-50,-21,-92,-85,-128v-86,-46,-119,-94,-119,-153v0,-82,70,-156,161,-163r20,-103r40,0r-20,103v45,2,82,19,96,31r-17,35v-18,-9,-47,-29,-101,-29v-82,0,-133,53,-133,120v0,53,22,81,96,122v76,44,107,93,107,152v0,103,-70,174,-172,186","w":462},"%":{"d":"74,-403v0,-118,64,-259,172,-258v76,0,103,68,103,127v0,142,-66,271,-168,271v-71,0,-107,-59,-107,-140xm307,-525v0,-43,-12,-103,-70,-102v-72,0,-121,120,-121,226v0,51,14,104,72,104v71,0,119,-124,119,-228xm148,13r-44,0r496,-676r44,0xm403,-134v0,-118,64,-260,172,-259v76,0,103,68,103,128v0,142,-66,270,-168,270v-71,0,-107,-58,-107,-139xm636,-257v0,-42,-12,-103,-70,-102v-72,0,-121,121,-121,227v0,51,14,103,72,103v71,0,119,-123,119,-228","w":714},"&":{"d":"486,0r-54,0v-18,-23,-33,-44,-52,-72v-65,62,-126,83,-194,83v-112,0,-168,-78,-168,-163v0,-107,89,-183,171,-223v-21,-50,-39,-90,-37,-131v0,-95,67,-179,158,-179v82,0,114,61,114,121v0,82,-56,148,-176,203v40,80,101,166,140,226v40,-52,74,-121,107,-221r45,0v-38,111,-78,193,-131,253v23,32,46,65,77,103xm64,-157v0,74,48,130,132,130v64,0,120,-30,163,-77v-30,-49,-95,-143,-152,-241v-53,30,-143,87,-143,188xm379,-560v0,-44,-18,-89,-75,-88v-60,0,-108,58,-108,136v0,41,10,79,33,122v100,-49,150,-98,150,-170","w":542},"\u2019":{"d":"156,-682r59,-10v-32,75,-94,189,-116,217r-34,5v24,-42,71,-150,91,-212","w":156},"(":{"d":"291,-692r47,0v-106,114,-221,294,-221,535v0,87,18,179,64,277r-39,0v-45,-85,-69,-171,-69,-283v0,-243,127,-429,218,-529","w":265},")":{"d":"-3,120r-47,0v106,-115,221,-296,221,-536v0,-87,-18,-180,-64,-276r39,0v45,83,69,169,69,282v0,243,-127,428,-218,530","w":265},"*":{"d":"332,-685r40,25r-101,124r145,-11r-10,45v-45,-1,-98,-12,-139,-9r75,118r-46,26v-19,-43,-32,-91,-54,-131r-83,132r-36,-26r101,-122r-142,12r9,-45v44,1,96,11,136,8r-72,-120r45,-25v19,42,33,91,55,130","w":391},"+":{"d":"289,-532r40,0r0,246r227,0r0,38r-227,0r0,248r-40,0r0,-248r-227,0r0,-38r227,0r0,-246","w":596},",":{"d":"5,121r-39,5v23,-42,70,-150,88,-212r64,-10v-30,75,-93,189,-113,217","w":181},"-":{"d":"50,-296r227,0r-8,42r-227,0","w":298},"\u00ad":{"d":"50,-296r227,0r-8,42r-227,0","w":298},".":{"d":"104,-35v0,24,-16,46,-43,46v-22,0,-38,-20,-38,-44v0,-26,18,-46,42,-46v25,0,39,20,39,44","w":181},"\/":{"d":"-17,40r-45,0r434,-725r48,0","w":327},"0":{"d":"462,-468v0,217,-102,480,-270,479v-109,0,-147,-96,-147,-216v0,-223,118,-456,272,-456v114,0,145,102,145,193xm92,-201v0,79,17,174,108,173v136,0,215,-275,215,-433v0,-56,-8,-161,-102,-161v-124,0,-221,223,-221,421","w":462},"1":{"d":"181,0r114,-598v-37,16,-68,37,-103,55r-12,-36r128,-71r41,0r-124,650r-44,0","w":462},"2":{"d":"362,0r-361,0r7,-32r70,-63v201,-173,314,-290,314,-415v0,-48,-22,-111,-108,-111v-58,0,-104,31,-131,53r-17,-34v41,-35,103,-59,155,-59v117,0,149,84,149,147v11,152,-201,329,-367,475r296,0","w":462},"3":{"d":"21,-29r18,-35v24,15,60,35,115,35v129,0,182,-98,182,-174v-4,-109,-82,-138,-180,-132r7,-37r39,0v58,0,172,-48,172,-152v0,-61,-33,-97,-100,-97v-44,0,-87,16,-116,39r-17,-35v37,-24,86,-44,139,-44v108,0,142,73,142,132v2,91,-76,150,-143,176v73,18,106,84,106,149v0,114,-94,215,-235,215v-62,0,-111,-21,-129,-40","w":462},"4":{"d":"301,0r-43,0r36,-192r-282,0r7,-31r369,-427r37,0r-80,419r96,0r-8,39r-96,0xm77,-231r225,0r50,-263v6,-31,13,-61,20,-90r-3,-1v-83,137,-196,232,-292,354","w":462},"5":{"d":"459,-650r-8,41r-218,0r-64,204v49,-8,84,-1,135,23v58,29,81,90,81,142v8,204,-219,307,-368,217r18,-36v21,14,64,30,114,30v107,0,189,-94,189,-198v0,-77,-35,-141,-155,-141v-23,0,-43,2,-68,4r88,-286r256,0","w":462},"6":{"d":"444,-661r-5,43v-17,0,-39,1,-64,7v-116,26,-226,131,-276,288r2,0v40,-60,113,-101,176,-101v107,0,152,80,152,173v0,121,-94,262,-226,262v-111,0,-166,-84,-166,-204v8,-238,162,-420,350,-461v22,-5,43,-7,57,-7xm100,-277v-49,96,-7,262,109,249v96,0,173,-112,173,-223v0,-88,-42,-133,-117,-133v-58,0,-129,37,-165,107","w":462},"7":{"d":"143,-650r357,0r-6,34r-390,616r-50,0r388,-608r-1,-3r-306,0","w":462},"8":{"d":"188,-354v-150,-97,-55,-310,115,-307v88,0,147,58,147,140v0,81,-56,141,-134,178r0,3v73,39,101,99,101,161v0,119,-104,190,-209,190v-111,0,-180,-68,-180,-158v0,-105,78,-171,160,-203r0,-4xm75,-151v0,63,42,125,134,125v93,0,161,-62,161,-150v0,-73,-38,-120,-133,-153v-79,20,-162,77,-162,178xm403,-515v0,-47,-22,-110,-110,-109v-77,0,-135,63,-135,135v0,57,30,100,107,127v78,-25,138,-81,138,-153","w":462},"9":{"d":"61,11r5,-42v93,-2,141,-27,207,-85v48,-43,95,-110,129,-205r-4,0v-46,57,-108,86,-165,86v-109,0,-148,-91,-148,-165v0,-127,100,-261,226,-261v112,0,154,91,154,191v0,167,-99,324,-170,387v-71,58,-129,90,-234,94xm412,-397v26,-97,4,-234,-107,-225v-95,0,-173,105,-173,219v0,72,34,128,111,128v70,1,149,-50,169,-122","w":462},":":{"d":"175,-407v0,24,-16,46,-43,46v-22,0,-38,-20,-38,-44v0,-26,18,-46,42,-46v25,0,39,20,39,44xm104,-35v0,24,-16,46,-43,46v-22,0,-38,-20,-38,-44v0,-26,18,-46,42,-46v25,0,39,20,39,44","w":181},";":{"d":"5,121r-39,5v24,-42,70,-150,89,-212r63,-10v-30,75,-92,189,-113,217xm180,-407v0,24,-16,46,-43,46v-22,0,-38,-20,-38,-44v0,-26,18,-46,42,-46v25,0,39,20,39,44","w":181},"<":{"d":"95,-248r0,-34r431,-249r0,45r-385,220r0,2r385,219r0,45","w":596},"=":{"d":"558,-347r-494,0r0,-38r494,0r0,38xm558,-155r-494,0r0,-38r494,0r0,38","w":596},">":{"d":"534,-282r0,34r-431,248r0,-45r385,-219r0,-2r-385,-220r0,-45","w":596},"?":{"d":"169,-175r-44,0v3,-85,27,-132,103,-218v49,-51,92,-101,92,-168v0,-40,-20,-83,-87,-83v-34,0,-65,9,-94,27r-14,-36v39,-22,78,-33,117,-33v97,0,126,71,126,119v0,77,-46,137,-109,202v-65,68,-84,110,-90,190xm160,-35v0,24,-16,46,-43,46v-22,0,-38,-20,-38,-44v0,-26,18,-46,42,-46v25,0,39,20,39,44","w":351},"@":{"d":"445,-258r25,-124v-128,-44,-251,64,-248,195v0,48,27,84,78,84v70,0,133,-91,145,-155xm488,27r15,35v-51,32,-111,43,-170,43v-175,0,-301,-121,-301,-312v0,-207,138,-386,359,-386v173,0,283,123,283,289v0,153,-85,238,-170,238v-35,0,-74,-27,-67,-94r-3,0v-39,64,-86,94,-150,94v-54,0,-106,-46,-106,-122v-6,-159,173,-292,339,-222r-36,179v-18,87,-4,127,33,127v56,2,116,-75,116,-191v0,-155,-90,-261,-246,-261v-169,0,-308,135,-308,346v0,166,104,276,263,276v53,0,109,-14,149,-39","w":702},"A":{"d":"401,-237r-256,0r-125,237r-46,0r360,-674r45,0r102,674r-44,0xm167,-276r228,0r-34,-225v-7,-33,-7,-86,-16,-119v-53,117,-118,232,-178,344","w":537},"B":{"d":"431,-205v-3,187,-201,233,-391,202r126,-663v37,-8,77,-13,124,-13v109,-3,180,47,179,146v0,86,-73,155,-151,174r0,3v58,16,114,65,113,151xm205,-635r-49,258v144,12,264,-36,265,-158v0,-75,-55,-107,-139,-107v-34,0,-63,2,-77,7xm149,-340r-57,301v147,21,289,-15,292,-170v-3,-116,-110,-141,-235,-131","w":480},"C":{"d":"470,-62r10,38v-39,18,-101,34,-173,34v-164,0,-259,-107,-259,-276v0,-111,42,-234,128,-316v70,-66,158,-102,258,-102v76,0,130,20,145,35r-19,35v-28,-18,-77,-31,-138,-31v-78,0,-159,33,-217,90v-68,67,-110,174,-110,281v0,128,52,245,221,245v53,0,114,-11,154,-33","w":538},"D":{"d":"39,-2r126,-664v48,-8,100,-13,156,-13v116,0,204,37,249,100v91,137,42,384,-86,488v-108,96,-261,108,-445,89xm193,-34v243,7,373,-158,377,-374v0,-127,-58,-233,-256,-233v-33,0,-81,2,-111,8r-112,594v38,5,77,5,102,5","w":626},"E":{"d":"404,-375r-8,39r-248,0r-56,297r280,0r-8,39r-325,0r129,-674r309,0r-8,39r-264,0r-49,260r248,0","w":441},"F":{"d":"39,0r129,-674r309,0r-8,39r-264,0r-51,270r240,0r-7,39r-241,0r-62,326r-45,0","w":437},"G":{"d":"554,-333r-57,306v-31,14,-97,34,-172,34v-97,0,-170,-29,-218,-90v-50,-62,-58,-135,-58,-190v0,-103,42,-226,128,-307v70,-64,162,-101,265,-101v80,0,130,20,147,31r-17,38v-121,-60,-288,-27,-373,69v-148,154,-168,517,138,511v44,0,91,-10,120,-23r45,-239r-156,0r7,-39r201,0","w":592},"H":{"d":"167,-674r46,0r-58,297r351,0r57,-297r45,0r-129,674r-45,0r64,-338r-350,0r-64,338r-45,0","w":603},"I":{"d":"168,-674r45,0r-129,674r-45,0","w":208},"J":{"d":"220,-203r89,-471r45,0r-90,475v-27,189,-142,241,-292,192r12,-39v122,39,209,14,236,-157","w":342},"K":{"d":"39,0r129,-674r45,0r-66,344r5,-1v25,-28,49,-52,71,-74r268,-269r57,0r-290,289r183,385r-49,0r-169,-354r-86,79r-53,275r-45,0","w":469},"L":{"d":"39,0r129,-674r45,0r-122,635r280,0r-8,39r-324,0","w":414},"M":{"d":"649,0r-44,0r52,-417v8,-59,23,-161,32,-206r-4,0v-99,207,-228,421,-338,623r-33,0r-66,-418v-15,-79,-16,-153,-28,-205v-11,45,-33,147,-48,207r-107,416r-45,0r178,-674r52,0r73,467v9,54,17,106,19,141r3,0v16,-35,41,-84,71,-137r260,-471r55,0","w":754},"N":{"d":"83,0r-44,0r128,-674r43,0r195,458v31,71,44,114,57,162v23,-188,75,-429,110,-620r44,0r-128,674r-41,0r-190,-450v-35,-79,-48,-118,-61,-170r-3,1v-25,199,-75,422,-110,619","w":611},"O":{"d":"638,-412v2,196,-126,429,-345,423v-174,0,-245,-135,-245,-270v0,-117,48,-255,131,-338v55,-54,137,-88,214,-88v184,0,245,139,245,273xm386,-646v-186,-1,-291,209,-291,379v0,119,52,240,205,239v67,0,130,-29,180,-79v70,-70,111,-198,111,-302v0,-102,-32,-237,-205,-237","w":645},"P":{"d":"485,-514v-6,176,-165,257,-346,227r-55,287r-45,0r127,-666v35,-8,80,-13,128,-13v115,0,192,51,191,165xm204,-632r-58,305v159,34,296,-50,293,-185v9,-121,-131,-146,-235,-120","w":476},"Q":{"d":"563,36r-20,42v-86,-18,-203,-48,-223,-56v-31,-9,-41,-11,-46,-11v-125,-6,-226,-103,-226,-270v0,-116,47,-253,129,-336v55,-55,138,-90,216,-90v185,0,245,139,245,273v0,107,-41,245,-122,326v-41,41,-100,75,-148,85r0,3v70,14,139,27,195,34xm386,-646v-187,-2,-290,213,-291,380v0,115,48,239,200,238v194,5,296,-214,296,-382v0,-95,-30,-236,-205,-236","w":645},"R":{"d":"292,-679v114,-2,183,55,186,154v2,99,-85,175,-165,200v51,14,76,69,80,143v7,105,12,155,19,182r-48,0v-3,-12,-10,-90,-13,-165v-5,-100,-43,-146,-116,-146r-92,0r-59,311r-45,0r127,-666v38,-9,86,-13,126,-13xm205,-633r-54,285r83,0v122,0,196,-82,196,-173v0,-83,-60,-121,-147,-121v-37,0,-61,3,-78,9","w":486},"S":{"d":"19,-35r19,-37v100,81,308,44,303,-113v0,-57,-27,-102,-103,-145v-95,-51,-131,-106,-131,-169v0,-111,94,-185,204,-185v56,0,105,20,125,36r-20,36v-20,-13,-59,-33,-111,-33v-93,0,-153,68,-153,135v0,64,30,99,109,142v83,46,125,98,125,182v0,96,-71,196,-224,196v-51,0,-117,-20,-143,-45","w":438},"T":{"d":"152,0r121,-635r-209,0r8,-39r462,0r-8,39r-208,0r-121,635r-45,0","w":441},"U":{"d":"168,-674r45,0r-77,407v-6,30,-9,61,-9,87v0,106,60,151,142,151v102,0,180,-70,212,-237r78,-408r46,0r-80,415v-39,200,-145,270,-264,270v-94,0,-180,-53,-180,-189v0,-29,3,-61,9,-92","w":600},"V":{"d":"213,0r-45,0r-83,-674r45,0r61,500v8,68,12,90,11,119r3,0v86,-192,220,-426,318,-619r49,0","w":495},"W":{"d":"183,0r-45,0r-38,-674r45,0r23,468v5,91,3,118,3,149r2,0v11,-30,23,-59,63,-143r228,-474r46,0r24,441v5,92,6,145,6,176r2,0v81,-213,191,-413,283,-617r47,0r-323,674r-45,0r-25,-450v-5,-77,-5,-97,-1,-175r-3,0v-84,227,-195,413,-292,625","w":807},"X":{"d":"435,0r-48,0r-123,-306r-2,0r-231,306r-54,0r269,-342r-131,-332r48,0r114,297r2,0r71,-96r160,-201r55,0r-269,330","w":492},"Y":{"d":"212,0r-45,0r54,-283r-129,-391r48,0r79,247v20,62,26,86,30,107r2,0r74,-111r173,-243r51,0r-284,392","w":484},"Z":{"d":"-16,0r6,-31r498,-601r-1,-3r-349,0r8,-39r410,0r-7,32r-497,600r2,3r386,0r-8,39r-448,0","w":504},"[":{"d":"191,112r-159,0r152,-798r159,0r-7,36r-117,0r-138,726r117,0","w":265},"\\":{"d":"307,40r-44,0r-197,-725r43,0","w":324},"]":{"d":"99,-686r159,0r-152,798r-159,0r7,-36r117,0r138,-726r-117,0","w":265},"^":{"d":"528,-196r-43,0r-175,-408r-2,0r-175,408r-43,0r199,-454r41,1","w":596},"_":{"d":"-45,75r500,0r-10,50r-500,0","w":500},"\u2018":{"d":"137,-480r-59,10v32,-75,94,-189,116,-217r34,-5v-24,42,-71,150,-91,212","w":156},"a":{"d":"403,0r-44,0v-1,-30,5,-83,14,-143r-2,0v-57,113,-127,154,-202,154v-85,0,-134,-68,-134,-153v-2,-206,191,-408,437,-335v-24,133,-76,347,-69,477xm389,-277r32,-167v-187,-45,-336,110,-339,294v-1,57,18,122,97,122v86,0,185,-115,210,-249"},"b":{"d":"166,-710r45,0r-68,335r2,1v48,-79,115,-117,183,-117v108,0,146,90,146,174v0,143,-110,328,-289,328v-66,0,-133,-27,-133,-118v0,-19,4,-46,7,-66xm116,-234v-8,43,-19,68,-19,124v0,53,30,82,93,82v151,0,237,-169,237,-290v0,-67,-30,-134,-110,-134v-84,0,-172,88,-201,218"},"c":{"d":"341,-60r13,38v-21,11,-72,32,-142,32v-127,0,-174,-90,-174,-178v-8,-193,188,-394,384,-297r-16,38v-21,-11,-51,-22,-92,-22v-140,0,-229,146,-229,274v0,85,40,146,135,146v54,0,97,-18,121,-31","w":416},"d":{"d":"471,-710r45,0r-110,579v-8,43,-16,91,-19,131r-42,0v3,-34,16,-75,15,-106v-45,71,-106,117,-183,117v-100,0,-141,-84,-141,-171v0,-204,183,-391,391,-312xm382,-237r36,-192v-165,-84,-342,83,-335,265v0,58,16,136,106,136v77,0,171,-91,193,-209"},"e":{"d":"336,-64r14,36v-25,16,-75,38,-146,38v-122,0,-168,-93,-168,-187v0,-143,109,-314,252,-314v87,0,124,54,124,110v0,128,-156,154,-325,152v-7,25,-5,85,6,118v20,55,62,82,117,82v60,0,102,-20,126,-35xm94,-267v142,2,273,-16,272,-112v0,-48,-36,-73,-86,-73v-87,0,-160,90,-186,185","w":423},"f":{"d":"91,0r-45,0r84,-443r-65,0r7,-37r66,0v20,-120,55,-233,181,-241v33,0,52,7,61,13r-14,37v-118,-45,-167,66,-183,191r115,0r-8,37r-115,0","w":255},"g":{"d":"8,173r17,-38v30,21,72,35,128,35v88,0,158,-47,192,-198r20,-92r-3,0v-45,82,-113,122,-185,122v-97,0,-142,-84,-142,-164v0,-166,124,-329,295,-329v48,0,109,17,139,33r-74,398v-21,110,-49,175,-95,216v-78,73,-215,64,-292,17xm384,-251r35,-180v-18,-9,-54,-21,-98,-21v-142,0,-238,145,-239,281v-1,56,17,134,109,134v86,0,174,-113,193,-214"},"h":{"d":"83,0r-45,0r135,-710r46,0r-65,329r2,0v43,-68,105,-110,184,-110v42,0,118,24,118,128v-8,134,-42,241,-61,363r-45,0v19,-122,51,-224,61,-357v0,-52,-26,-94,-91,-94v-73,0,-171,83,-192,197","w":516},"i":{"d":"83,0r-45,0r92,-480r45,0xm215,-617v-2,21,-15,40,-40,40v-21,0,-33,-19,-33,-40v1,-22,16,-41,38,-41v22,0,35,18,35,41","w":206},"j":{"d":"129,-480r45,0r-93,487v-23,124,-49,190,-155,202v-20,0,-34,-1,-46,-5r6,-38v87,14,117,-7,145,-135xm210,-617v-2,21,-15,40,-40,40v-21,0,-33,-19,-33,-40v1,-22,16,-41,38,-41v22,0,35,18,35,41","w":197},"k":{"d":"83,0r-45,0r135,-710r45,0r-87,458r246,-228r56,0r-213,197r150,283r-49,0r-135,-256r-66,56","w":411},"l":{"d":"83,0r-45,0r136,-710r45,0","w":206},"m":{"d":"83,0r-45,0r67,-351v9,-48,15,-91,20,-129r42,0r-15,97r3,0v45,-70,107,-108,172,-108v71,0,108,45,111,117v43,-74,104,-115,183,-117v44,0,116,28,116,124v-8,129,-43,246,-62,367r-45,0r54,-286v15,-76,11,-171,-81,-165v-68,0,-154,73,-175,187r-49,264r-45,0r57,-293v11,-78,20,-152,-83,-158v-67,0,-158,87,-177,194","w":794},"n":{"d":"83,0r-45,0r66,-351v10,-48,16,-91,21,-129r42,0v-3,33,-15,73,-13,103v42,-70,110,-114,185,-114v43,0,120,23,120,134v-11,124,-43,239,-62,357r-45,0r54,-285v15,-79,12,-168,-85,-166v-68,0,-170,78,-193,205","w":516},"o":{"d":"470,-290v0,131,-96,302,-254,301v-119,0,-178,-96,-178,-196v0,-154,107,-306,254,-306v129,0,178,104,178,201xm85,-189v0,92,53,161,137,161v109,0,201,-133,201,-263v0,-63,-30,-161,-135,-161v-117,0,-203,131,-203,263","w":500},"p":{"d":"36,198r-45,0r99,-518v11,-58,19,-112,26,-160r43,0v-3,33,-16,73,-14,103v46,-71,113,-114,184,-114v104,0,144,86,144,168v0,170,-128,334,-283,334v-61,1,-92,-13,-115,-23xm113,-209r-28,152v166,101,346,-78,341,-263v0,-58,-26,-132,-111,-132v-72,0,-172,83,-202,243"},"q":{"d":"343,198r-45,0r58,-297r-2,0v-42,69,-114,110,-178,110v-100,0,-140,-86,-140,-170v0,-165,128,-332,293,-332v60,0,112,16,138,33xm382,-242r36,-189v-165,-75,-337,69,-335,267v-1,85,38,136,97,136v96,0,183,-108,202,-214"},"r":{"d":"83,0r-45,0r62,-324v10,-56,18,-109,24,-156r41,0v-5,34,-9,68,-16,108r3,0v36,-73,83,-129,165,-117r-9,46v-5,-1,-12,-2,-22,-2v-60,0,-137,90,-159,212","w":287},"s":{"d":"17,-20r16,-37v20,14,55,28,90,28v65,0,110,-46,110,-100v0,-46,-18,-74,-71,-106v-136,-71,-77,-255,73,-256v36,0,71,12,86,23r-17,38v-14,-9,-42,-22,-74,-22v-58,0,-100,41,-100,91v0,45,25,69,70,97v54,33,79,77,79,123v0,95,-75,151,-160,151v-46,0,-85,-16,-102,-30","w":346},"t":{"d":"164,-568r49,-18r-20,106r122,0r-7,37r-123,0r-52,277v-10,55,-29,137,38,137v16,0,29,-1,39,-5r4,36v-13,5,-32,8,-52,8v-104,-6,-92,-94,-75,-178r53,-275r-73,0r7,-37r74,0","w":292},"u":{"d":"428,-480r45,0r-67,351v-9,48,-15,91,-19,129r-42,0v3,-32,15,-71,13,-99v-39,63,-105,110,-172,110v-53,0,-129,-21,-129,-142v10,-119,43,-236,61,-349r45,0r-52,274v-19,88,-15,177,85,176v68,0,161,-78,182,-189","w":506},"v":{"d":"55,-480r45,0r70,423r3,0v59,-127,158,-294,227,-423r48,0r-267,480r-42,0","w":420},"w":{"d":"67,-480r43,0r27,312v6,62,6,84,6,114r3,0v58,-131,154,-295,222,-426r45,0r42,319v8,50,6,91,13,107v55,-145,136,-288,201,-426r47,0r-240,480r-41,0r-43,-319v-8,-40,-6,-84,-11,-112v-17,33,-32,70,-55,112r-173,319r-42,0","w":691},"x":{"d":"72,-480r48,0r91,200r3,0v47,-69,110,-135,164,-200r53,0r-203,234r115,246r-49,0r-96,-213r-3,0v-47,76,-116,143,-172,213r-53,0r213,-246","w":405},"y":{"d":"50,-480r47,0r84,423r3,0r202,-423r48,0r-186,378v-44,89,-87,172,-153,239v-52,54,-106,77,-131,83r-13,-39v75,-26,150,-92,195,-179v4,-9,3,-14,2,-21","w":406},"z":{"d":"-19,0r5,-29r282,-318v41,-46,65,-68,89,-92r0,-4r-272,0r8,-37r326,0r-7,32r-279,315v-43,48,-65,70,-88,93r0,3r292,0r-8,37r-348,0","w":393},"{":{"d":"44,12v-1,-74,57,-158,58,-227v0,-13,1,-58,-68,-56r6,-34v140,-3,85,-148,110,-252v20,-96,78,-132,167,-129r-7,36v-136,-19,-120,148,-131,257v-9,64,-45,91,-82,107v36,11,46,41,46,68v3,70,-55,159,-57,222v-1,44,26,77,85,72r-6,36v-73,4,-120,-34,-121,-100","w":265},"|":{"d":"100,-750r40,0r0,1000r-40,0r0,-1000","w":203},"}":{"d":"234,-586v2,79,-55,156,-57,227v0,13,-1,58,68,56r-6,34v-140,3,-85,148,-110,252v-20,96,-78,132,-167,129r7,-36v136,18,120,-148,131,-257v9,-62,45,-91,82,-107v-36,-12,-46,-43,-46,-70v0,-64,54,-161,56,-219v2,-46,-25,-79,-85,-73r7,-36v72,-3,119,34,120,100","w":265},"~":{"d":"179,-348v60,-8,200,89,271,83v44,0,64,-32,63,-82r37,0v5,90,-49,124,-104,124v-29,0,-73,-10,-136,-40v-46,-23,-91,-43,-136,-43v-35,0,-63,28,-63,82r-38,0v-5,-76,46,-124,106,-124","w":596},"\u00a1":{"d":"55,198r-57,0r104,-494r39,0xm109,-439v0,-24,16,-46,43,-46v22,0,38,20,38,44v0,26,-18,46,-42,46v-25,0,-39,-20,-39,-44","w":215},"\u00a2":{"d":"225,-89v-94,-12,-144,-87,-145,-182v0,-150,109,-285,242,-299r19,-104r39,0r-19,103v34,0,78,14,93,28r-19,35v-148,-82,-305,44,-308,237v0,79,41,145,133,145v49,0,86,-14,111,-25r9,35v-18,12,-69,27,-116,27r-20,105r-39,0","w":462},"\u00a3":{"d":"224,-313v-3,123,-36,206,-118,270r0,3r308,0r-7,40r-376,0r6,-33v98,-55,144,-139,143,-280r-88,0r7,-37r83,0v1,-33,2,-82,11,-132v17,-142,148,-217,272,-158r-17,36v-18,-10,-46,-18,-76,-18v-77,0,-122,56,-136,141v-8,50,-9,93,-10,131r155,0r-7,37r-150,0","w":462},"\u00a5":{"d":"203,0r-43,0r35,-186r-144,0r7,-35r144,0r15,-79r-144,0r7,-35r127,0r-101,-315r44,0r97,315r3,0v64,-107,149,-212,221,-315r49,0r-233,315r125,0r-7,35r-145,0r-15,79r145,0r-7,35r-145,0","w":462},"\u00a7":{"d":"205,-460v-47,26,-72,63,-71,102v0,39,13,67,88,106v42,21,67,38,88,56v38,-25,65,-64,65,-105v0,-31,-9,-66,-86,-108v-27,-14,-59,-32,-84,-51xm439,-653r-18,34v-21,-15,-53,-30,-100,-30v-59,0,-116,39,-116,96v0,52,38,74,104,107v68,35,108,71,108,134v0,66,-37,107,-84,140v13,19,20,45,20,70v0,103,-85,153,-175,152v-54,0,-104,-18,-124,-35r17,-36v23,14,57,35,113,35v72,0,128,-43,128,-109v0,-39,-17,-73,-101,-116v-151,-62,-159,-190,-28,-273v-63,-94,29,-206,146,-201v49,0,93,18,110,32","w":468},"\u00a4":{"d":"140,-481v54,-58,177,-55,229,0r66,-68r30,32r-70,64v22,28,36,74,36,121v0,52,-15,97,-35,123r69,66r-31,32r-65,-69v-31,30,-77,44,-117,44v-42,0,-88,-15,-113,-40r-62,65r-32,-32r65,-63v-21,-27,-37,-70,-37,-120v0,-52,17,-97,41,-127r-69,-64r32,-32xm388,-331v0,-76,-42,-157,-137,-156v-87,0,-135,76,-135,158v0,113,77,156,136,156v67,1,136,-42,136,-158","w":462},"'":{"d":"134,-692r57,0r-55,221r-32,0","w":147},"\u201c":{"d":"137,-480r-59,10v32,-75,95,-189,116,-217r35,-5v-24,42,-71,150,-92,212xm257,-480r-59,10v32,-75,95,-189,116,-217r35,-5v-24,42,-71,150,-92,212","w":277},"\u00ab":{"d":"244,-432r-157,181r106,179r-46,0r-108,-180r156,-180r49,0xm390,-432r-157,181r106,179r-46,0r-108,-180r155,-180r50,0","w":377},"\u2013":{"d":"41,-274r440,0r-8,39r-440,0","w":500},"\u00b7":{"d":"138,-264v0,24,-16,46,-43,46v-22,0,-38,-20,-38,-44v0,-26,18,-46,42,-46v25,0,39,20,39,44","w":181},"\u2219":{"d":"138,-264v0,24,-16,46,-43,46v-22,0,-38,-20,-38,-44v0,-26,18,-46,42,-46v25,0,39,20,39,44","w":181},"\u00b6":{"d":"209,51r-39,0r60,-315v-66,1,-148,-49,-153,-175v0,-123,100,-235,295,-235v40,0,70,3,88,7r-138,718r-40,0r131,-686r-72,0","w":468},"\u201d":{"d":"157,-682r59,-10v-32,75,-95,189,-116,217r-35,5v24,-42,72,-150,92,-212xm277,-682r59,-10v-32,75,-95,189,-116,217r-35,5v24,-42,72,-150,92,-212","w":277},"\u00bb":{"d":"166,-254r-106,-178r46,0r108,180r-156,180r-49,0xm312,-254r-106,-178r46,0r108,180r-156,180r-49,0","w":377},"\u2026":{"d":"170,-35v0,24,-16,46,-43,46v-22,0,-38,-20,-38,-44v0,-26,18,-46,42,-46v25,0,39,20,39,44xm503,-35v0,24,-16,46,-43,46v-22,0,-38,-20,-38,-44v0,-26,18,-46,42,-46v25,0,39,20,39,44xm836,-35v0,24,-16,46,-43,46v-22,0,-38,-20,-38,-44v0,-26,18,-46,42,-46v25,0,39,20,39,44","w":1000},"\u00bf":{"d":"203,-299r44,0v-2,86,-29,132,-106,218v-48,50,-88,104,-88,167v0,43,21,85,87,85v32,0,64,-9,94,-27r14,38v-38,20,-79,31,-114,31v-103,0,-129,-76,-129,-127v0,-66,45,-131,107,-195v66,-69,85,-109,91,-190xm210,-439v0,-24,16,-46,43,-46v22,0,38,20,38,44v0,26,-18,46,-42,46v-25,0,-39,-20,-39,-44","w":351},"`":{"d":"160,-678r66,0r61,138r-33,0","w":375},"\u00b4":{"d":"317,-678r74,0r-135,138r-40,0","w":375},"\u00af":{"d":"168,-635r202,0r-7,38r-202,0","w":375},"\u02c9":{"d":"168,-635r202,0r-7,38r-202,0","w":375},"\u00a8":{"d":"216,-620v0,20,-14,40,-39,40v-22,0,-35,-18,-35,-38v0,-21,17,-40,38,-40v22,0,36,18,36,38xm385,-620v0,20,-13,40,-39,40v-21,0,-34,-18,-34,-38v0,-21,16,-40,38,-40v22,0,35,18,35,38","w":375},"\u00b8":{"d":"139,-2r37,0r-42,56v92,32,45,149,-49,144v-24,0,-47,-7,-58,-15r15,-35v32,21,99,19,99,-28v0,-23,-26,-36,-63,-40","w":375},"\u2014":{"d":"41,-274r940,0r-8,39r-940,0","w":1000},"\u00c6":{"d":"-5,0r-48,0r469,-674r317,0r-8,39r-248,0r-31,261r236,0r-8,39r-233,0r-34,296r259,0r-8,39r-298,0r30,-271r-207,0xm210,-309r186,0r40,-329r-4,0v-19,31,-44,71,-71,110","w":728},"\u00aa":{"d":"268,-338v-30,45,-72,79,-120,77v-59,0,-91,-49,-91,-113v0,-109,77,-217,205,-217v24,0,63,6,82,13v-15,99,-44,203,-45,312r-37,0v0,-19,1,-46,6,-72xm280,-431r23,-119v-111,-31,-202,44,-205,171v-1,40,12,83,61,83v52,0,109,-61,121,-135","w":319},"\u0141":{"d":"365,0r-323,0r55,-291r-102,68r9,-44r101,-67r65,-340r45,0r-58,305r144,-97r-9,45r-144,97r-54,285r279,0","w":417},"\u00d8":{"d":"40,28r-25,-24r81,-89v-96,-151,-38,-382,72,-499v96,-110,296,-142,398,-35r78,-83r27,23r-82,89v100,162,34,377,-72,503v-93,110,-296,137,-399,30xm130,-123r408,-462v-32,-38,-76,-61,-152,-61v-198,-8,-364,293,-256,523xm556,-549r-407,460v35,39,80,61,156,61v185,5,356,-284,253,-521r-2,0","w":645},"\u0152":{"d":"455,-680v43,-1,95,7,137,6r283,0r-7,39r-276,0r-49,261r259,0r-7,39r-260,0r-56,296r291,0r-7,39r-304,0v-45,-1,-83,7,-133,6v-197,0,-277,-136,-277,-284v0,-194,129,-402,406,-402xm435,-41r111,-593v-22,-5,-41,-7,-95,-7v-237,0,-355,177,-355,359v0,130,58,249,248,249v34,0,60,-2,91,-8","w":841},"\u00ba":{"d":"51,-392v0,-112,81,-199,170,-199v93,0,128,67,128,133v0,107,-75,197,-171,197v-89,0,-127,-69,-127,-131xm306,-460v0,-41,-17,-98,-91,-97v-65,0,-122,71,-122,162v0,65,38,100,87,100v62,0,126,-62,126,-165","w":322},"\u00e6":{"d":"602,-62r14,34v-23,15,-70,39,-145,39v-83,2,-136,-47,-158,-120v-37,77,-108,120,-184,120v-82,0,-121,-55,-122,-117v0,-118,116,-192,316,-183v17,-71,5,-159,-96,-162v-45,0,-80,11,-120,37r-14,-34v56,-36,107,-43,139,-43v84,-2,126,48,137,117v43,-81,120,-117,189,-117v81,0,121,50,121,105v0,130,-153,140,-321,135v-10,49,-14,99,2,144v19,53,63,79,117,79v67,0,101,-20,125,-34xm304,-191r11,-60v-102,-6,-261,17,-261,142v0,50,32,81,82,81v72,0,148,-54,168,-163xm367,-289v140,3,267,-1,266,-96v0,-35,-29,-67,-80,-67v-99,0,-166,95,-186,163","w":691},"\u0131":{"d":"83,0r-45,0r92,-480r45,0","w":206},"\u0142":{"d":"87,0r-45,0r60,-318r-77,55r8,-42r77,-56r67,-349r45,0r-59,312r78,-57r-8,43r-78,57","w":212},"\u00f8":{"d":"49,27r-25,-23r54,-62v-113,-170,26,-435,212,-433v54,0,93,17,118,40r50,-55r26,21r-52,61v115,176,-40,437,-209,435v-57,0,-95,-17,-123,-44xm110,-94r269,-323v-19,-21,-51,-35,-93,-35v-120,0,-201,137,-201,257v0,43,6,71,25,101xm400,-386r-271,320v128,112,297,-47,295,-222v-1,-36,-6,-73,-24,-98","w":501},"\u0153":{"d":"697,-65r14,36v-23,16,-77,40,-143,40v-86,2,-141,-50,-161,-131v-44,86,-120,131,-198,131v-110,0,-171,-93,-171,-196v0,-151,102,-306,254,-306v93,-2,142,62,159,136v47,-90,132,-136,203,-136v95,0,120,62,120,105v0,134,-163,146,-323,149v-21,108,19,212,124,208v56,0,98,-21,122,-36xm85,-190v0,95,52,162,134,162v116,0,195,-154,195,-268v0,-75,-28,-156,-127,-156v-121,0,-202,135,-202,262xm458,-274v131,-2,271,-10,270,-110v0,-41,-34,-68,-83,-68v-93,0,-161,91,-187,178","w":784},"\u00df":{"d":"83,0r-45,0r89,-468v25,-132,82,-253,223,-253v91,0,137,61,137,131v0,45,-23,92,-40,110v-52,16,-97,49,-97,100v0,36,16,58,42,91v33,41,55,81,55,130v6,132,-163,213,-280,146r15,-36v95,53,220,1,218,-107v0,-31,-9,-65,-43,-103v-39,-46,-54,-79,-54,-110v0,-68,51,-115,113,-139v11,-11,25,-41,25,-81v0,-45,-25,-93,-99,-93v-84,0,-142,71,-167,198","w":513},"\u00b9":{"d":"172,-406r-39,0r67,-350v-25,9,-46,23,-70,33r-5,-32r86,-41r35,0","w":200},"\u00ac":{"d":"59,-384r494,0r0,255r-42,0r0,-217r-452,0r0,-38","w":596},"\u00b5":{"d":"165,-480r-55,293v-16,87,8,157,98,157v83,-4,157,-102,174,-191r49,-259r45,0r-67,353v-13,73,-6,96,27,98r-12,39v-45,6,-71,-12,-62,-105r-3,0v-30,54,-90,105,-160,105v-50,0,-96,-25,-114,-75v-13,75,-38,191,-34,263r-41,0v-5,-31,1,-99,16,-180r95,-498r44,0","w":505},"\u2122":{"d":"104,-674r220,0r0,31r-92,0r0,241r-36,0r0,-241r-92,0r0,-31xm657,-402r-38,0r-16,-243r-2,0r-85,239r-41,0r-84,-239r-2,0r-15,243r-36,0r22,-272r53,0r83,231r2,0r82,-231r53,0","w":651},"\u00d0":{"d":"331,-679v181,9,283,74,290,264v0,113,-49,243,-140,321v-105,93,-257,110,-439,90r63,-332r-89,0r9,-39r88,0r55,-291v53,-8,109,-13,163,-13xm201,-36v223,7,373,-169,372,-376v0,-123,-57,-229,-256,-229v-33,0,-74,0,-110,6r-49,260r188,0r-8,39r-188,0r-56,295v38,5,77,5,107,5","w":629},"\u00bd":{"d":"166,-266r-40,0r67,-350v-25,9,-46,23,-70,33r-5,-32r86,-41r36,0xm110,11r-45,0r486,-672r45,0xm612,0r-238,0r5,-28v84,-72,248,-186,237,-270v0,-29,-14,-62,-66,-62v-34,0,-66,19,-83,32r-14,-28v28,-22,67,-39,106,-39v71,0,100,49,100,97v6,91,-136,186,-221,263r181,0","w":705},"\u00b1":{"d":"296,-567r40,0r0,208r227,0r0,38r-227,0r0,216r-40,0r0,-216r-227,0r0,-38r227,0r0,-208xm69,-38r494,0r0,38r-494,0r0,-38","w":596},"\u00de":{"d":"186,-536v135,-31,280,13,273,148v-3,164,-166,247,-343,216r-33,172r-44,0r129,-674r44,0xm178,-497r-54,285v148,32,285,-38,289,-171v8,-119,-133,-140,-235,-114","w":475},"\u00bc":{"d":"570,0r-40,0r21,-111r-192,0r5,-24r245,-260r36,0r-48,251r61,0r-6,33r-61,0xm557,-144r27,-145v3,-22,14,-45,12,-56v-55,76,-118,133,-180,201r141,0xm168,-266r-40,0r67,-350v-25,9,-46,23,-70,33r-5,-32r86,-41r36,0xm127,11r-45,0r486,-672r45,0","w":705},"\u00f7":{"d":"351,-443v0,24,-16,44,-42,44v-24,0,-41,-20,-40,-44v0,-26,17,-45,41,-45v25,0,41,19,41,45xm556,-249r-493,0r0,-38r493,0r0,38xm351,-92v0,24,-16,44,-42,44v-24,0,-41,-20,-40,-44v0,-26,17,-45,41,-45v25,0,41,19,41,45","w":596},"\u00a6":{"d":"100,-174r40,0r0,350r-40,0r0,-350xm100,-674r40,0r0,350r-40,0r0,-350","w":203},"\u00b0":{"d":"100,-563v0,-69,55,-123,120,-123v73,0,114,57,114,116v0,77,-62,125,-120,125v-68,0,-114,-55,-114,-118xm296,-569v0,-32,-20,-85,-80,-84v-52,0,-78,51,-78,89v0,48,35,86,77,86v45,0,81,-39,81,-91","w":294},"\u00fe":{"d":"-9,198r164,-863r45,0r-56,288r2,0v48,-73,114,-114,183,-114v102,0,144,82,144,169v-3,213,-187,399,-398,310r-39,210r-45,0xm114,-213r-30,157v170,99,345,-79,342,-262v0,-61,-26,-134,-108,-134v-71,0,-173,77,-204,239"},"\u00be":{"d":"163,11r-45,0r486,-672r45,0xm311,-578v2,48,-41,81,-88,101v43,12,67,51,67,91v-2,71,-57,125,-150,125v-41,0,-78,-13,-93,-26r15,-31v15,10,44,24,82,24v70,0,105,-45,105,-90v-3,-62,-57,-79,-116,-76r6,-31v64,6,126,-27,130,-82v0,-31,-16,-54,-63,-54v-27,0,-57,14,-75,28r-11,-29v21,-17,60,-33,95,-33v71,0,96,42,96,83xm581,0r-40,0r21,-111r-191,0r4,-24r245,-260r36,0r-48,251r61,0r-6,33r-61,0xm568,-144r41,-201r-2,0v-15,20,-25,36,-39,52r-140,148r0,1r140,0","w":705},"\u00b2":{"d":"286,-406r-238,0r5,-28v84,-72,248,-186,237,-270v0,-29,-14,-62,-66,-62v-34,0,-66,19,-83,32r-14,-28v28,-22,67,-39,106,-39v71,0,100,49,100,97v7,91,-136,186,-221,263r181,0","w":273},"\u00ae":{"d":"291,-435v-13,-14,-8,-79,-52,-70r-20,0r0,70r-31,0r0,-167v49,-8,131,-13,127,44v1,22,-19,31,-32,41v25,2,30,70,40,82r-32,0xm219,-581r0,52v29,1,64,0,64,-26v7,-24,-39,-33,-64,-26xm85,-523v0,-89,72,-159,164,-159v90,0,160,70,160,159v0,91,-70,161,-161,161v-91,0,-163,-70,-163,-161xm374,-522v0,-73,-54,-132,-127,-132v-72,0,-127,59,-127,131v0,74,55,132,129,132v71,1,125,-58,125,-131","w":386},"\u00f0":{"d":"415,-316v1,-73,-44,-138,-127,-136v-122,0,-204,140,-204,270v0,83,42,154,129,154v112,0,201,-139,202,-288xm173,-525r-14,-32r131,-62v-25,-28,-58,-51,-92,-70r23,-32v44,24,72,50,107,82r125,-60r16,33r-114,54v67,76,106,161,106,272v0,222,-133,351,-250,351v-129,0,-174,-101,-174,-189v0,-164,112,-313,253,-313v36,0,89,11,121,63r4,0v-21,-65,-52,-116,-101,-165","w":491},"\u00d7":{"d":"81,-496r30,-30r211,236r214,-236r29,29r-216,234r216,233r-30,30r-214,-236r-214,236r-26,-31r212,-232","w":596},"\u00b3":{"d":"320,-718v1,48,-41,81,-87,101v43,12,68,51,67,91v-1,71,-57,125,-150,125v-41,0,-78,-13,-93,-26r15,-30v15,9,44,23,82,23v70,0,105,-44,105,-90v-3,-63,-57,-80,-117,-76r6,-31v64,6,126,-27,130,-82v0,-31,-16,-54,-63,-54v-27,0,-57,14,-74,28r-12,-29v21,-17,60,-33,95,-33v71,0,96,42,96,83","w":263},"\u00a9":{"d":"72,-340v0,-170,131,-308,301,-308v167,0,296,138,296,308v0,172,-129,310,-297,310v-169,0,-300,-138,-300,-310xm629,-340v0,-156,-112,-276,-258,-276v-147,0,-259,120,-259,280v0,155,112,274,260,274v145,2,257,-119,257,-278xm506,-493r-10,31v-14,-9,-49,-25,-99,-25v-103,0,-149,68,-149,150v0,82,49,151,151,151v41,0,79,-11,103,-28r10,29v-35,25,-82,32,-123,32v-115,0,-182,-79,-182,-181v0,-113,89,-186,189,-186v54,0,96,15,110,27","w":677},"\u00c1":{"d":"401,-237r-256,0r-125,237r-46,0r360,-674r45,0r102,674r-44,0xm167,-276r228,0r-34,-225v-7,-33,-7,-86,-16,-119v-53,117,-118,232,-178,344xm427,-823r77,0r-140,113r-44,0","w":537},"\u00c2":{"d":"401,-237r-256,0r-125,237r-46,0r360,-674r45,0r102,674r-44,0xm167,-276r228,0r-34,-225v-7,-33,-7,-86,-16,-119v-53,117,-118,232,-178,344xm354,-823r37,0r80,113r-47,0v-20,-25,-35,-56,-57,-79r-81,79r-51,0","w":537},"\u00c4":{"d":"401,-237r-256,0r-125,237r-46,0r360,-674r45,0r102,674r-44,0xm167,-276r228,0r-34,-225v-7,-33,-7,-86,-16,-119v-53,117,-118,232,-178,344xm283,-805v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40xm453,-805v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40","w":537},"\u00c0":{"d":"401,-237r-256,0r-125,237r-46,0r360,-674r45,0r102,674r-44,0xm167,-276r228,0r-34,-225v-7,-33,-7,-86,-16,-119v-53,117,-118,232,-178,344xm239,-823r70,0r73,113r-37,0","w":537},"\u00c5":{"d":"401,-237r-256,0r-125,237r-46,0r360,-674r45,0r102,674r-44,0xm167,-276r228,0r-34,-225v-7,-33,-7,-86,-16,-119v-53,117,-118,232,-178,344xm277,-775v0,-49,38,-88,91,-88v52,0,86,36,86,84v0,50,-42,85,-90,85v-51,0,-87,-36,-87,-81xm414,-780v0,-31,-18,-55,-49,-55v-28,0,-48,25,-48,59v0,29,19,53,47,53v29,0,50,-24,50,-57","w":537},"\u00c3":{"d":"401,-237r-256,0r-125,237r-46,0r360,-674r45,0r102,674r-44,0xm167,-276r228,0r-34,-225v-7,-33,-7,-86,-16,-119v-53,117,-118,232,-178,344xm313,-801v44,-3,65,38,105,38v16,0,27,-13,34,-38r32,0v-8,74,-74,102,-130,60v-34,-27,-70,-24,-80,25r-32,0v8,-44,34,-85,71,-85","w":537},"\u00c7":{"d":"470,-62r10,38v-35,16,-91,31,-151,33r-35,45v96,32,40,151,-47,144v-25,0,-48,-7,-60,-16r15,-34v31,21,97,18,97,-26v0,-25,-24,-38,-61,-42r53,-71v-154,-7,-243,-112,-243,-275v0,-110,42,-235,128,-317v71,-65,159,-101,259,-101v76,0,129,20,145,35r-19,35v-29,-18,-78,-31,-139,-31v-78,0,-159,33,-217,90v-69,66,-110,176,-110,280v0,129,52,246,220,246v54,0,115,-11,155,-33","w":541},"\u00c9":{"d":"404,-375r-8,39r-248,0r-56,297r280,0r-8,39r-325,0r129,-674r309,0r-8,39r-264,0r-49,260r248,0xm398,-823r77,0r-140,113r-44,0","w":441},"\u00ca":{"d":"404,-375r-8,39r-248,0r-56,297r280,0r-8,39r-325,0r129,-674r309,0r-8,39r-264,0r-49,260r248,0xm326,-823r37,0r80,113r-47,0v-20,-25,-35,-56,-57,-79r-81,79r-51,0","w":441},"\u00cb":{"d":"404,-375r-8,39r-248,0r-56,297r280,0r-8,39r-325,0r129,-674r309,0r-8,39r-264,0r-49,260r248,0xm255,-805v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40xm425,-805v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40","w":441},"\u00c8":{"d":"404,-375r-8,39r-248,0r-56,297r280,0r-8,39r-325,0r129,-674r309,0r-8,39r-264,0r-49,260r248,0xm226,-823r70,0r73,113r-37,0","w":441},"\u00cd":{"d":"168,-674r45,0r-129,674r-45,0xm257,-823r77,0r-140,113r-44,0","w":208},"\u00ce":{"d":"168,-674r45,0r-129,674r-45,0xm188,-823r37,0r80,113r-47,0v-20,-25,-35,-56,-57,-79r-81,79r-51,0","w":208},"\u00cf":{"d":"168,-674r45,0r-129,674r-45,0xm124,-805v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40xm294,-805v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40","w":208},"\u00cc":{"d":"168,-674r45,0r-129,674r-45,0xm91,-823r70,0r73,113r-37,0","w":208},"\u00d1":{"d":"83,0r-44,0r128,-674r43,0r195,458v31,71,44,114,57,162v23,-188,75,-429,110,-620r44,0r-128,674r-41,0r-190,-450v-35,-79,-48,-118,-61,-170r-3,1v-25,199,-75,422,-110,619xm357,-801v44,-3,65,38,105,38v16,0,27,-13,34,-38r32,0v-8,74,-74,102,-130,60v-34,-27,-70,-24,-80,25r-32,0v8,-44,34,-85,71,-85","w":611},"\u00d3":{"d":"638,-412v2,196,-126,429,-345,423v-174,0,-245,-135,-245,-270v0,-117,48,-255,131,-338v55,-54,137,-88,214,-88v184,0,245,139,245,273xm386,-646v-186,-1,-291,209,-291,379v0,119,52,240,205,239v67,0,130,-29,180,-79v70,-70,111,-198,111,-302v0,-102,-32,-237,-205,-237xm480,-823r77,0r-140,113r-44,0","w":645},"\u00d4":{"d":"638,-412v2,196,-126,429,-345,423v-174,0,-245,-135,-245,-270v0,-117,48,-255,131,-338v55,-54,137,-88,214,-88v184,0,245,139,245,273xm386,-646v-186,-1,-291,209,-291,379v0,119,52,240,205,239v67,0,130,-29,180,-79v70,-70,111,-198,111,-302v0,-102,-32,-237,-205,-237xm407,-823r37,0r80,113r-47,0v-20,-25,-35,-56,-57,-79r-81,79r-51,0","w":645},"\u00d6":{"d":"638,-412v2,196,-126,429,-345,423v-174,0,-245,-135,-245,-270v0,-117,48,-255,131,-338v55,-54,137,-88,214,-88v184,0,245,139,245,273xm386,-646v-186,-1,-291,209,-291,379v0,119,52,240,205,239v67,0,130,-29,180,-79v70,-70,111,-198,111,-302v0,-102,-32,-237,-205,-237xm339,-805v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40xm509,-805v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40","w":645},"\u00d2":{"d":"638,-412v2,196,-126,429,-345,423v-174,0,-245,-135,-245,-270v0,-117,48,-255,131,-338v55,-54,137,-88,214,-88v184,0,245,139,245,273xm386,-646v-186,-1,-291,209,-291,379v0,119,52,240,205,239v67,0,130,-29,180,-79v70,-70,111,-198,111,-302v0,-102,-32,-237,-205,-237xm302,-823r70,0r73,113r-37,0","w":645},"\u00d5":{"d":"638,-412v2,196,-126,429,-345,423v-174,0,-245,-135,-245,-270v0,-117,48,-255,131,-338v55,-54,137,-88,214,-88v184,0,245,139,245,273xm386,-646v-186,-1,-291,209,-291,379v0,119,52,240,205,239v67,0,130,-29,180,-79v70,-70,111,-198,111,-302v0,-102,-32,-237,-205,-237xm373,-801v44,-3,65,38,105,38v16,0,27,-13,34,-38r32,0v-8,74,-74,102,-130,60v-34,-27,-70,-24,-80,25r-32,0v8,-44,34,-85,71,-85","w":645},"\u0160":{"d":"19,-35r19,-37v100,81,308,44,303,-113v0,-57,-27,-102,-103,-145v-95,-51,-131,-106,-131,-169v0,-111,94,-185,204,-185v56,0,105,20,125,36r-20,36v-20,-13,-59,-33,-111,-33v-93,0,-153,68,-153,135v0,64,30,99,109,142v83,46,125,98,125,182v0,96,-71,196,-224,196v-51,0,-117,-20,-143,-45xm322,-710r-37,0r-80,-112r50,0r51,77r4,0r80,-77r51,0","w":438},"\u00da":{"d":"168,-674r45,0r-77,407v-6,30,-9,61,-9,87v0,106,60,151,142,151v102,0,180,-70,212,-237r78,-408r46,0r-80,415v-39,200,-145,270,-264,270v-94,0,-180,-53,-180,-189v0,-29,3,-61,9,-92xm442,-823r77,0r-140,113r-44,0","w":600},"\u00db":{"d":"168,-674r45,0r-77,407v-6,30,-9,61,-9,87v0,106,60,151,142,151v102,0,180,-70,212,-237r78,-408r46,0r-80,415v-39,200,-145,270,-264,270v-94,0,-180,-53,-180,-189v0,-29,3,-61,9,-92xm397,-823r37,0r80,113r-47,0v-20,-25,-35,-56,-57,-79r-81,79r-51,0","w":600},"\u00dc":{"d":"168,-674r45,0r-77,407v-6,30,-9,61,-9,87v0,106,60,151,142,151v102,0,180,-70,212,-237r78,-408r46,0r-80,415v-39,200,-145,270,-264,270v-94,0,-180,-53,-180,-189v0,-29,3,-61,9,-92xm314,-805v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40xm484,-805v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40","w":600},"\u00d9":{"d":"168,-674r45,0r-77,407v-6,30,-9,61,-9,87v0,106,60,151,142,151v102,0,180,-70,212,-237r78,-408r46,0r-80,415v-39,200,-145,270,-264,270v-94,0,-180,-53,-180,-189v0,-29,3,-61,9,-92xm287,-823r70,0r73,113r-37,0","w":600},"\u00dd":{"d":"212,0r-45,0r54,-283r-129,-391r48,0r79,247v20,62,26,86,30,107r2,0r74,-111r173,-243r51,0r-284,392xm392,-823r77,0r-140,113r-44,0","w":484},"\u0178":{"d":"212,0r-45,0r54,-283r-129,-391r48,0r79,247v20,62,26,86,30,107r2,0r74,-111r173,-243r51,0r-284,392xm252,-805v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40xm422,-805v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40","w":484},"\u017d":{"d":"-16,0r6,-31r498,-601r-1,-3r-349,0r8,-39r410,0r-7,32r-497,600r2,3r386,0r-8,39r-448,0xm375,-710r-37,0r-80,-112r50,0r51,77r4,0r80,-77r51,0","w":504},"\u00e1":{"d":"403,0r-44,0v-1,-30,5,-83,14,-143r-2,0v-57,113,-127,154,-202,154v-85,0,-134,-68,-134,-153v-2,-206,191,-408,437,-335v-24,133,-76,347,-69,477xm389,-277r32,-167v-187,-45,-336,110,-339,294v-1,57,18,122,97,122v86,0,185,-115,210,-249xm399,-678r74,0r-135,138r-40,0"},"\u00e2":{"d":"403,0r-44,0v-1,-30,5,-83,14,-143r-2,0v-57,113,-127,154,-202,154v-85,0,-134,-68,-134,-153v-2,-206,191,-408,437,-335v-24,133,-76,347,-69,477xm389,-277r32,-167v-187,-45,-336,110,-339,294v-1,57,18,122,97,122v86,0,185,-115,210,-249xm330,-678r35,0r65,138r-43,0v-16,-32,-27,-70,-46,-99r-78,99r-46,0"},"\u00e4":{"d":"403,0r-44,0v-1,-30,5,-83,14,-143r-2,0v-57,113,-127,154,-202,154v-85,0,-134,-68,-134,-153v-2,-206,191,-408,437,-335v-24,133,-76,347,-69,477xm389,-277r32,-167v-187,-45,-336,110,-339,294v-1,57,18,122,97,122v86,0,185,-115,210,-249xm285,-620v0,20,-14,40,-39,40v-22,0,-35,-18,-35,-38v0,-21,17,-40,38,-40v22,0,36,18,36,38xm454,-620v0,20,-13,40,-39,40v-21,0,-34,-18,-34,-38v0,-21,16,-40,38,-40v22,0,35,18,35,38"},"\u00e0":{"d":"403,0r-44,0v-1,-30,5,-83,14,-143r-2,0v-57,113,-127,154,-202,154v-85,0,-134,-68,-134,-153v-2,-206,191,-408,437,-335v-24,133,-76,347,-69,477xm389,-277r32,-167v-187,-45,-336,110,-339,294v-1,57,18,122,97,122v86,0,185,-115,210,-249xm243,-678r66,0r61,138r-33,0"},"\u00e5":{"d":"403,0r-44,0v-1,-30,5,-83,14,-143r-2,0v-57,113,-127,154,-202,154v-85,0,-134,-68,-134,-153v-2,-206,191,-408,437,-335v-24,133,-76,347,-69,477xm389,-277r32,-167v-187,-45,-336,110,-339,294v-1,57,18,122,97,122v86,0,185,-115,210,-249xm241,-618v0,-52,40,-92,93,-92v51,0,88,37,88,89v0,53,-46,89,-91,89v-52,0,-90,-38,-90,-86xm384,-625v0,-30,-21,-55,-53,-55v-30,0,-52,26,-52,61v0,30,21,57,51,57v31,0,54,-26,54,-63"},"\u00e3":{"d":"403,0r-44,0v-1,-30,5,-83,14,-143r-2,0v-57,113,-127,154,-202,154v-85,0,-134,-68,-134,-153v-2,-206,191,-408,437,-335v-24,133,-76,347,-69,477xm389,-277r32,-167v-187,-45,-336,110,-339,294v-1,57,18,122,97,122v86,0,185,-115,210,-249xm380,-580v-41,1,-63,-36,-101,-39v-20,0,-26,18,-30,45r-34,0v4,-44,26,-84,65,-84v37,-3,66,37,102,39v16,0,24,-9,28,-41r33,0v-5,46,-21,80,-63,80"},"\u00e7":{"d":"341,-60r12,36v-18,9,-58,29,-113,32r-35,46v92,32,45,149,-49,144v-23,0,-46,-7,-57,-15r15,-35v31,22,99,19,98,-28v0,-23,-25,-36,-62,-40r51,-70v-118,-4,-163,-94,-163,-178v-8,-192,187,-394,384,-297r-17,38v-21,-11,-51,-22,-92,-22v-139,0,-228,145,-228,275v0,82,39,145,134,145v57,0,97,-19,122,-31","w":416},"\u00e9":{"d":"336,-64r14,36v-25,16,-75,38,-146,38v-122,0,-168,-93,-168,-187v0,-143,109,-314,252,-314v87,0,124,54,124,110v0,128,-156,154,-325,152v-7,25,-5,85,6,118v20,55,62,82,117,82v60,0,102,-20,126,-35xm94,-267v142,2,273,-16,272,-112v0,-48,-36,-73,-86,-73v-87,0,-160,90,-186,185xm350,-678r74,0r-135,138r-40,0","w":423},"\u00ea":{"d":"336,-64r14,36v-25,16,-75,38,-146,38v-122,0,-168,-93,-168,-187v0,-143,109,-314,252,-314v87,0,124,54,124,110v0,128,-156,154,-325,152v-7,25,-5,85,6,118v20,55,62,82,117,82v60,0,102,-20,126,-35xm94,-267v142,2,273,-16,272,-112v0,-48,-36,-73,-86,-73v-87,0,-160,90,-186,185xm300,-678r35,0r65,138r-43,0v-16,-32,-27,-70,-46,-99r-78,99r-46,0","w":423},"\u00eb":{"d":"336,-64r14,36v-25,16,-75,38,-146,38v-122,0,-168,-93,-168,-187v0,-143,109,-314,252,-314v87,0,124,54,124,110v0,128,-156,154,-325,152v-7,25,-5,85,6,118v20,55,62,82,117,82v60,0,102,-20,126,-35xm94,-267v142,2,273,-16,272,-112v0,-48,-36,-73,-86,-73v-87,0,-160,90,-186,185xm259,-620v0,20,-14,40,-39,40v-22,0,-35,-18,-35,-38v0,-21,17,-40,38,-40v22,0,36,18,36,38xm428,-620v0,20,-13,40,-39,40v-21,0,-34,-18,-34,-38v0,-21,16,-40,38,-40v22,0,35,18,35,38","w":423},"\u00e8":{"d":"336,-64r14,36v-25,16,-75,38,-146,38v-122,0,-168,-93,-168,-187v0,-143,109,-314,252,-314v87,0,124,54,124,110v0,128,-156,154,-325,152v-7,25,-5,85,6,118v20,55,62,82,117,82v60,0,102,-20,126,-35xm94,-267v142,2,273,-16,272,-112v0,-48,-36,-73,-86,-73v-87,0,-160,90,-186,185xm204,-678r66,0r61,138r-33,0","w":423},"\u00ed":{"d":"83,0r-45,0r92,-480r45,0xm224,-678r74,0r-135,138r-40,0","w":206},"\u00ee":{"d":"83,0r-45,0r92,-480r45,0xm161,-678r35,0r65,138r-43,0v-16,-32,-27,-70,-46,-99r-78,99r-46,0","w":206},"\u00ef":{"d":"83,0r-45,0r92,-480r45,0xm123,-620v0,20,-14,40,-39,40v-22,0,-35,-18,-35,-38v0,-21,17,-40,38,-40v22,0,36,18,36,38xm292,-620v0,20,-13,40,-39,40v-21,0,-34,-18,-34,-38v0,-21,16,-40,38,-40v22,0,35,18,35,38","w":206},"\u00ec":{"d":"83,0r-45,0r92,-480r45,0xm61,-678r66,0r61,138r-33,0","w":206},"\u00f1":{"d":"83,0r-45,0r66,-351v10,-48,16,-91,21,-129r42,0v-3,33,-15,73,-13,103v42,-70,110,-114,185,-114v43,0,120,23,120,134v-11,124,-43,239,-62,357r-45,0r54,-285v15,-79,12,-168,-85,-166v-68,0,-170,78,-193,205xm373,-580v-41,1,-63,-36,-101,-39v-20,0,-26,18,-30,45r-34,0v4,-44,26,-84,65,-84v37,-3,66,37,102,39v16,0,24,-9,28,-41r33,0v-5,46,-21,80,-63,80","w":516},"\u00f3":{"d":"470,-290v0,131,-96,302,-254,301v-119,0,-178,-96,-178,-196v0,-154,107,-306,254,-306v129,0,178,104,178,201xm85,-189v0,92,53,161,137,161v109,0,201,-133,201,-263v0,-63,-30,-161,-135,-161v-117,0,-203,131,-203,263xm370,-678r74,0r-135,138r-40,0","w":500},"\u00f4":{"d":"470,-290v0,131,-96,302,-254,301v-119,0,-178,-96,-178,-196v0,-154,107,-306,254,-306v129,0,178,104,178,201xm85,-189v0,92,53,161,137,161v109,0,201,-133,201,-263v0,-63,-30,-161,-135,-161v-117,0,-203,131,-203,263xm318,-678r35,0r65,138r-43,0v-16,-32,-27,-70,-46,-99r-78,99r-46,0","w":500},"\u00f6":{"d":"470,-290v0,131,-96,302,-254,301v-119,0,-178,-96,-178,-196v0,-154,107,-306,254,-306v129,0,178,104,178,201xm85,-189v0,92,53,161,137,161v109,0,201,-133,201,-263v0,-63,-30,-161,-135,-161v-117,0,-203,131,-203,263xm279,-620v0,20,-14,40,-39,40v-22,0,-35,-18,-35,-38v0,-21,17,-40,38,-40v22,0,36,18,36,38xm448,-620v0,20,-13,40,-39,40v-21,0,-34,-18,-34,-38v0,-21,16,-40,38,-40v22,0,35,18,35,38","w":500},"\u00f2":{"d":"470,-290v0,131,-96,302,-254,301v-119,0,-178,-96,-178,-196v0,-154,107,-306,254,-306v129,0,178,104,178,201xm85,-189v0,92,53,161,137,161v109,0,201,-133,201,-263v0,-63,-30,-161,-135,-161v-117,0,-203,131,-203,263xm208,-678r66,0r61,138r-33,0","w":500},"\u00f5":{"d":"470,-290v0,131,-96,302,-254,301v-119,0,-178,-96,-178,-196v0,-154,107,-306,254,-306v129,0,178,104,178,201xm85,-189v0,92,53,161,137,161v109,0,201,-133,201,-263v0,-63,-30,-161,-135,-161v-117,0,-203,131,-203,263xm357,-580v-41,1,-63,-36,-101,-39v-20,0,-26,18,-30,45r-34,0v4,-44,26,-84,65,-84v37,-3,66,37,102,39v16,0,24,-9,28,-41r33,0v-5,46,-21,80,-63,80","w":500},"\u0161":{"d":"17,-20r16,-37v20,14,55,28,90,28v65,0,110,-46,110,-100v0,-46,-18,-74,-71,-106v-136,-71,-77,-255,73,-256v36,0,71,12,86,23r-17,38v-14,-9,-42,-22,-74,-22v-58,0,-100,41,-100,91v0,45,25,69,70,97v54,33,79,77,79,123v0,95,-75,151,-160,151v-46,0,-85,-16,-102,-30xm250,-540r-36,0r-66,-138r43,0r45,100r3,0r79,-100r46,0","w":346},"\u00fa":{"d":"428,-480r45,0r-67,351v-9,48,-15,91,-19,129r-42,0v3,-32,15,-71,13,-99v-39,63,-105,110,-172,110v-53,0,-129,-21,-129,-142v10,-119,43,-236,61,-349r45,0r-52,274v-19,88,-15,177,85,176v68,0,161,-78,182,-189xm361,-678r74,0r-135,138r-40,0","w":506},"\u00fb":{"d":"428,-480r45,0r-67,351v-9,48,-15,91,-19,129r-42,0v3,-32,15,-71,13,-99v-39,63,-105,110,-172,110v-53,0,-129,-21,-129,-142v10,-119,43,-236,61,-349r45,0r-52,274v-19,88,-15,177,85,176v68,0,161,-78,182,-189xm318,-678r35,0r65,138r-43,0v-16,-32,-27,-70,-46,-99r-78,99r-46,0","w":506},"\u00fc":{"d":"428,-480r45,0r-67,351v-9,48,-15,91,-19,129r-42,0v3,-32,15,-71,13,-99v-39,63,-105,110,-172,110v-53,0,-129,-21,-129,-142v10,-119,43,-236,61,-349r45,0r-52,274v-19,88,-15,177,85,176v68,0,161,-78,182,-189xm275,-620v0,20,-14,40,-39,40v-22,0,-35,-18,-35,-38v0,-21,17,-40,38,-40v22,0,36,18,36,38xm444,-620v0,20,-13,40,-39,40v-21,0,-34,-18,-34,-38v0,-21,16,-40,38,-40v22,0,35,18,35,38","w":506},"\u00f9":{"d":"428,-480r45,0r-67,351v-9,48,-15,91,-19,129r-42,0v3,-32,15,-71,13,-99v-39,63,-105,110,-172,110v-53,0,-129,-21,-129,-142v10,-119,43,-236,61,-349r45,0r-52,274v-19,88,-15,177,85,176v68,0,161,-78,182,-189xm206,-678r66,0r61,138r-33,0","w":506},"\u00fd":{"d":"50,-480r47,0r84,423r3,0r202,-423r48,0r-186,378v-44,89,-87,172,-153,239v-52,54,-106,77,-131,83r-13,-39v75,-26,150,-92,195,-179v4,-9,3,-14,2,-21xm314,-678r74,0r-135,138r-40,0","w":406},"\u00ff":{"d":"50,-480r47,0r84,423r3,0r202,-423r48,0r-186,378v-44,89,-87,172,-153,239v-52,54,-106,77,-131,83r-13,-39v75,-26,150,-92,195,-179v4,-9,3,-14,2,-21xm222,-620v0,20,-14,40,-39,40v-22,0,-35,-18,-35,-38v0,-21,17,-40,38,-40v22,0,36,18,36,38xm391,-620v0,20,-13,40,-39,40v-21,0,-34,-18,-34,-38v0,-21,16,-40,38,-40v22,0,35,18,35,38","w":406},"\u017e":{"d":"-19,0r5,-29r282,-318v41,-46,65,-68,89,-92r0,-4r-272,0r8,-37r326,0r-7,32r-279,315v-43,48,-65,70,-88,93r0,3r292,0r-8,37r-348,0xm284,-540r-36,0r-66,-138r43,0r45,100r3,0r79,-100r46,0","w":393},"\u0102":{"d":"401,-237r-256,0r-125,237r-46,0r360,-674r45,0r102,674r-44,0xm167,-276r228,0r-34,-225v-7,-33,-7,-86,-16,-119v-53,117,-118,232,-178,344xm265,-815r35,0v-1,29,15,56,66,56v48,0,72,-24,81,-56r38,0v-9,49,-49,95,-120,95v-79,0,-107,-46,-100,-95","w":537},"\u0100":{"d":"401,-237r-256,0r-125,237r-46,0r360,-674r45,0r102,674r-44,0xm167,-276r228,0r-34,-225v-7,-33,-7,-86,-16,-119v-53,117,-118,232,-178,344xm261,-772r217,0r-7,39r-217,0","w":537},"\u0104":{"d":"379,-674r103,674r-10,0v-36,39,-64,84,-64,121v0,44,47,49,79,29r10,28v-49,40,-141,20,-135,-50v0,-54,57,-114,74,-134r-34,-231r-257,0r-124,237r-46,0r360,-674r44,0xm168,-276r228,0r-35,-225v-4,-34,-10,-81,-13,-119r-3,0v-52,117,-118,232,-177,344","w":537},"\u0106":{"d":"470,-62r10,38v-39,18,-101,34,-173,34v-164,0,-259,-107,-259,-276v0,-111,42,-234,128,-316v70,-66,158,-102,258,-102v76,0,130,20,145,35r-19,35v-28,-18,-77,-31,-138,-31v-78,0,-159,33,-217,90v-68,67,-110,174,-110,281v0,128,52,245,221,245v53,0,114,-11,154,-33xm472,-828r77,0r-140,113r-44,0","w":538},"\u010c":{"d":"470,-62r10,38v-39,18,-101,34,-173,34v-164,0,-259,-107,-259,-276v0,-111,42,-234,128,-316v70,-66,158,-102,258,-102v76,0,130,20,145,35r-19,35v-28,-18,-77,-31,-138,-31v-78,0,-159,33,-217,90v-68,67,-110,174,-110,281v0,128,52,245,221,245v53,0,114,-11,154,-33xm429,-715r-37,0r-80,-112r50,0r51,77r4,0r80,-77r51,0","w":538},"\u0108":{"d":"470,-62r10,38v-39,18,-101,34,-173,34v-164,0,-259,-107,-259,-276v0,-111,42,-234,128,-316v70,-66,158,-102,258,-102v76,0,130,20,145,35r-19,35v-28,-18,-77,-31,-138,-31v-78,0,-159,33,-217,90v-68,67,-110,174,-110,281v0,128,52,245,221,245v53,0,114,-11,154,-33xm408,-823r37,0r80,113r-47,0v-20,-25,-35,-56,-57,-79r-81,79r-51,0","w":538},"\u010a":{"d":"470,-62r10,38v-39,18,-101,34,-173,34v-164,0,-259,-107,-259,-276v0,-111,42,-234,128,-316v70,-66,158,-102,258,-102v76,0,130,20,145,35r-19,35v-28,-18,-77,-31,-138,-31v-78,0,-159,33,-217,90v-68,67,-110,174,-110,281v0,128,52,245,221,245v53,0,114,-11,154,-33xm429,-805v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40","w":538},"\u010e":{"d":"39,-2r126,-664v48,-8,100,-13,156,-13v116,0,204,37,249,100v91,137,42,384,-86,488v-108,96,-261,108,-445,89xm193,-34v243,7,373,-158,377,-374v0,-127,-58,-233,-256,-233v-33,0,-81,2,-111,8r-112,594v38,5,77,5,102,5xm386,-710r-37,0r-80,-112r50,0r51,77r4,0r80,-77r51,0","w":626},"\u0110":{"d":"331,-679v181,9,283,74,290,264v0,113,-49,243,-140,321v-105,93,-257,110,-439,90r63,-332r-89,0r9,-39r88,0r55,-291v53,-8,109,-13,163,-13xm201,-36v223,7,373,-169,372,-376v0,-123,-57,-229,-256,-229v-33,0,-74,0,-110,6r-49,260r188,0r-8,39r-188,0r-56,295v38,5,77,5,107,5","w":629},"\u0114":{"d":"404,-375r-8,39r-248,0r-56,297r280,0r-8,39r-325,0r129,-674r309,0r-8,39r-264,0r-49,260r248,0xm227,-824r35,0v-1,29,15,56,66,56v48,0,72,-24,81,-56r38,0v-9,49,-49,95,-120,95v-79,0,-107,-46,-100,-95","w":441},"\u011a":{"d":"404,-375r-8,39r-248,0r-56,297r280,0r-8,39r-325,0r129,-674r309,0r-8,39r-264,0r-49,260r248,0xm336,-710r-37,0r-80,-112r50,0r51,77r4,0r80,-77r51,0","w":441},"\u0116":{"d":"404,-375r-8,39r-248,0r-56,297r280,0r-8,39r-325,0r129,-674r309,0r-8,39r-264,0r-49,260r248,0xm333,-805v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40","w":441},"\u0112":{"d":"404,-375r-8,39r-248,0r-56,297r280,0r-8,39r-325,0r129,-674r309,0r-8,39r-264,0r-49,260r248,0xm225,-772r217,0r-7,39r-217,0","w":441},"\u014a":{"d":"293,186r0,-37v81,-6,128,-42,153,-152r-189,-447v-35,-79,-48,-118,-61,-170r-3,1v-25,199,-75,422,-110,619r-44,0r128,-674r43,0r195,458v31,71,44,114,57,162v22,-187,75,-429,110,-620r44,0r-125,659v-31,164,-106,198,-198,201","w":611},"\u0118":{"d":"39,0r128,-674r310,0r-8,39r-264,0r-50,260r249,0r-8,39r-249,0r-56,297r281,0r-8,39r-15,0v-47,30,-95,84,-95,128v-1,42,49,41,78,25r10,29v-48,33,-137,21,-134,-45v0,-63,65,-117,94,-137r-263,0","w":441},"\u011e":{"d":"554,-333r-57,306v-31,14,-97,34,-172,34v-97,0,-170,-29,-218,-90v-50,-62,-58,-135,-58,-190v0,-103,42,-226,128,-307v70,-64,162,-101,265,-101v80,0,130,20,147,31r-17,38v-121,-60,-288,-27,-373,69v-148,154,-168,517,138,511v44,0,91,-10,120,-23r45,-239r-156,0r7,-39r201,0xm312,-823r35,0v-1,29,15,56,66,56v48,0,72,-24,81,-56r38,0v-9,49,-49,95,-120,95v-79,0,-107,-46,-100,-95","w":592},"\u011c":{"d":"554,-333r-57,306v-31,14,-97,34,-172,34v-97,0,-170,-29,-218,-90v-50,-62,-58,-135,-58,-190v0,-103,42,-226,128,-307v70,-64,162,-101,265,-101v80,0,130,20,147,31r-17,38v-121,-60,-288,-27,-373,69v-148,154,-168,517,138,511v44,0,91,-10,120,-23r45,-239r-156,0r7,-39r201,0xm420,-823r37,0r80,113r-47,0v-20,-25,-35,-56,-57,-79r-81,79r-51,0","w":592},"\u0122":{"d":"554,-333r-57,306v-31,14,-97,34,-172,34v-97,0,-170,-29,-218,-90v-50,-62,-58,-135,-58,-190v0,-103,42,-226,128,-307v70,-64,162,-101,265,-101v80,0,130,20,147,31r-17,38v-121,-60,-288,-27,-373,69v-148,154,-168,517,138,511v44,0,91,-10,120,-23r45,-239r-156,0r7,-39r201,0xm170,209r-8,-27v45,-7,94,-30,94,-79v0,-22,-12,-40,-26,-50r41,-11v14,9,29,32,29,56v0,69,-67,103,-130,111","w":592},"\u0120":{"d":"554,-333r-57,306v-31,14,-97,34,-172,34v-97,0,-170,-29,-218,-90v-50,-62,-58,-135,-58,-190v0,-103,42,-226,128,-307v70,-64,162,-101,265,-101v80,0,130,20,147,31r-17,38v-121,-60,-288,-27,-373,69v-148,154,-168,517,138,511v44,0,91,-10,120,-23r45,-239r-156,0r7,-39r201,0xm433,-805v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40","w":592},"\u0126":{"d":"526,-485r-350,0r-22,114r350,0xm69,-521r70,0r29,-153r45,0r-29,153r350,0r29,-153r45,0r-29,153r61,0r-7,36r-61,0r-93,485r-45,0r63,-332r-351,0r-62,332r-45,0r93,-485r-70,0","w":603},"\u0124":{"d":"167,-674r46,0r-58,297r351,0r57,-297r45,0r-129,674r-45,0r64,-338r-350,0r-64,338r-45,0xm395,-823r37,0r80,113r-47,0v-20,-25,-35,-56,-57,-79r-81,79r-51,0","w":603},"\u012c":{"d":"168,-674r45,0r-129,674r-45,0xm109,-825r35,0v-1,29,15,56,66,56v48,0,72,-24,81,-56r38,0v-9,49,-49,95,-120,95v-79,0,-107,-46,-100,-95","w":208},"\u0132":{"d":"168,-674r45,0r-129,674r-45,0xm428,-203r89,-471r45,0r-90,475v-27,189,-142,241,-292,192r12,-39v122,39,209,14,236,-157","w":550},"\u012a":{"d":"168,-674r45,0r-129,674r-45,0xm101,-772r217,0r-7,39r-217,0","w":208},"\u012e":{"d":"213,-674r-129,674r-8,0v-36,39,-64,84,-64,121v0,44,47,49,79,29r10,28v-49,40,-141,20,-135,-50v0,-54,57,-114,74,-134r127,-668r46,0","w":208},"\u0128":{"d":"168,-674r45,0r-129,674r-45,0xm158,-801v44,-3,65,38,105,38v16,0,27,-13,34,-38r32,0v-8,74,-74,102,-130,60v-34,-27,-70,-24,-80,25r-32,0v8,-44,34,-85,71,-85","w":208},"\u0134":{"d":"220,-203r89,-471r45,0r-90,475v-27,189,-142,241,-292,192r12,-39v122,39,209,14,236,-157xm340,-823r37,0r80,113r-47,0v-20,-25,-35,-56,-57,-79r-81,79r-51,0","w":342},"\u0136":{"d":"39,0r129,-674r45,0r-66,344r5,-1v25,-28,49,-52,71,-74r268,-269r57,0r-290,289r183,385r-49,0r-169,-354r-86,79r-53,275r-45,0xm93,209r-8,-27v45,-7,94,-30,94,-79v0,-22,-12,-40,-26,-50r41,-11v14,9,29,32,29,56v0,69,-67,103,-130,111","w":469},"\u0139":{"d":"39,0r129,-674r45,0r-122,635r280,0r-8,39r-324,0xm287,-823r77,0r-140,113r-44,0","w":414},"\u013d":{"d":"39,0r129,-674r45,0r-122,635r280,0r-8,39r-324,0xm261,-511r-8,-27v45,-7,94,-30,94,-79v0,-22,-12,-40,-26,-50r41,-11v14,9,29,32,29,56v0,69,-67,103,-130,111","w":414},"\u013b":{"d":"39,0r129,-674r45,0r-122,635r280,0r-8,39r-324,0xm85,209r-8,-27v45,-7,94,-30,94,-79v0,-22,-12,-40,-26,-50r41,-11v14,9,29,32,29,56v0,69,-67,103,-130,111","w":414},"\u013f":{"d":"39,0r129,-674r45,0r-122,635r280,0r-8,39r-324,0xm309,-399v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40","w":414},"\u0143":{"d":"83,0r-44,0r128,-674r43,0r195,458v31,71,44,114,57,162v23,-188,75,-429,110,-620r44,0r-128,674r-41,0r-190,-450v-35,-79,-48,-118,-61,-170r-3,1v-25,199,-75,422,-110,619xm459,-823r77,0r-140,113r-44,0","w":611},"\u0147":{"d":"83,0r-44,0r128,-674r43,0r195,458v31,71,44,114,57,162v23,-188,75,-429,110,-620r44,0r-128,674r-41,0r-190,-450v-35,-79,-48,-118,-61,-170r-3,1v-25,199,-75,422,-110,619xm415,-710r-37,0r-80,-112r50,0r51,77r4,0r80,-77r51,0","w":611},"\u0145":{"d":"83,0r-44,0r128,-674r43,0r195,458v31,71,44,114,57,162v23,-188,75,-429,110,-620r44,0r-128,674r-41,0r-190,-450v-35,-79,-48,-118,-61,-170r-3,1v-25,199,-75,422,-110,619xm175,209r-8,-27v45,-7,94,-30,94,-79v0,-22,-12,-40,-26,-50r41,-11v14,9,29,32,29,56v0,69,-67,103,-130,111","w":611},"\u014e":{"d":"638,-412v2,196,-126,429,-345,423v-174,0,-245,-135,-245,-270v0,-117,48,-255,131,-338v55,-54,137,-88,214,-88v184,0,245,139,245,273xm386,-646v-186,-1,-291,209,-291,379v0,119,52,240,205,239v67,0,130,-29,180,-79v70,-70,111,-198,111,-302v0,-102,-32,-237,-205,-237xm327,-828r35,0v-1,29,15,56,66,56v48,0,72,-24,81,-56r38,0v-9,49,-49,95,-120,95v-79,0,-107,-46,-100,-95","w":645},"\u0150":{"d":"638,-412v2,196,-126,429,-345,423v-174,0,-245,-135,-245,-270v0,-117,48,-255,131,-338v55,-54,137,-88,214,-88v184,0,245,139,245,273xm386,-646v-186,-1,-291,209,-291,379v0,119,52,240,205,239v67,0,130,-29,180,-79v70,-70,111,-198,111,-302v0,-102,-32,-237,-205,-237xm416,-822r68,0r-131,109r-39,0xm542,-822r68,0r-131,109r-39,0","w":645},"\u014c":{"d":"638,-412v2,196,-126,429,-345,423v-174,0,-245,-135,-245,-270v0,-117,48,-255,131,-338v55,-54,137,-88,214,-88v184,0,245,139,245,273xm386,-646v-186,-1,-291,209,-291,379v0,119,52,240,205,239v67,0,130,-29,180,-79v70,-70,111,-198,111,-302v0,-102,-32,-237,-205,-237xm319,-772r217,0r-7,39r-217,0","w":645},"\u0154":{"d":"292,-679v114,-2,183,55,186,154v2,99,-85,175,-165,200v51,14,76,69,80,143v7,105,12,155,19,182r-48,0v-3,-12,-10,-90,-13,-165v-5,-100,-43,-146,-116,-146r-92,0r-59,311r-45,0r127,-666v38,-9,86,-13,126,-13xm205,-633r-54,285r83,0v122,0,196,-82,196,-173v0,-83,-60,-121,-147,-121v-37,0,-61,3,-78,9xm381,-823r77,0r-140,113r-44,0","w":486},"\u0158":{"d":"292,-679v114,-2,183,55,186,154v2,99,-85,175,-165,200v51,14,76,69,80,143v7,105,12,155,19,182r-48,0v-3,-12,-10,-90,-13,-165v-5,-100,-43,-146,-116,-146r-92,0r-59,311r-45,0r127,-666v38,-9,86,-13,126,-13xm205,-633r-54,285r83,0v122,0,196,-82,196,-173v0,-83,-60,-121,-147,-121v-37,0,-61,3,-78,9xm323,-710r-37,0r-80,-112r50,0r51,77r4,0r80,-77r51,0","w":486},"\u0156":{"d":"292,-679v114,-2,183,55,186,154v2,99,-85,175,-165,200v51,14,76,69,80,143v7,105,12,155,19,182r-48,0v-3,-12,-10,-90,-13,-165v-5,-100,-43,-146,-116,-146r-92,0r-59,311r-45,0r127,-666v38,-9,86,-13,126,-13xm205,-633r-54,285r83,0v122,0,196,-82,196,-173v0,-83,-60,-121,-147,-121v-37,0,-61,3,-78,9xm102,209r-8,-27v45,-7,94,-30,94,-79v0,-22,-12,-40,-26,-50r41,-11v14,9,29,32,29,56v0,69,-67,103,-130,111","w":486},"\u015a":{"d":"19,-35r19,-37v100,81,308,44,303,-113v0,-57,-27,-102,-103,-145v-95,-51,-131,-106,-131,-169v0,-111,94,-185,204,-185v56,0,105,20,125,36r-20,36v-20,-13,-59,-33,-111,-33v-93,0,-153,68,-153,135v0,64,30,99,109,142v83,46,125,98,125,182v0,96,-71,196,-224,196v-51,0,-117,-20,-143,-45xm373,-824r77,0r-140,113r-44,0","w":438},"\u015e":{"d":"436,-648r-20,36v-20,-13,-59,-33,-111,-33v-93,0,-153,68,-153,135v0,64,30,99,108,142v84,46,126,98,126,182v0,82,-53,168,-164,190r-38,50v92,32,45,149,-49,144v-24,0,-47,-7,-58,-15r15,-35v32,21,99,19,99,-28v0,-23,-26,-36,-62,-40r52,-71v-61,6,-131,-16,-162,-44r19,-37v101,81,307,44,303,-113v0,-57,-27,-102,-103,-145v-95,-51,-131,-106,-131,-169v0,-111,94,-185,204,-185v56,0,105,20,125,36","w":438},"\uf6c1":{"d":"436,-648r-20,36v-20,-13,-59,-33,-111,-33v-93,0,-153,68,-153,135v0,64,30,99,108,142v84,46,126,98,126,182v0,82,-53,168,-164,190r-38,50v92,32,45,149,-49,144v-24,0,-47,-7,-58,-15r15,-35v32,21,99,19,99,-28v0,-23,-26,-36,-62,-40r52,-71v-61,6,-131,-16,-162,-44r19,-37v101,81,307,44,303,-113v0,-57,-27,-102,-103,-145v-95,-51,-131,-106,-131,-169v0,-111,94,-185,204,-185v56,0,105,20,125,36","w":438},"\u015c":{"d":"19,-35r19,-37v100,81,308,44,303,-113v0,-57,-27,-102,-103,-145v-95,-51,-131,-106,-131,-169v0,-111,94,-185,204,-185v56,0,105,20,125,36r-20,36v-20,-13,-59,-33,-111,-33v-93,0,-153,68,-153,135v0,64,30,99,109,142v83,46,125,98,125,182v0,96,-71,196,-224,196v-51,0,-117,-20,-143,-45xm313,-823r37,0r80,113r-47,0v-20,-25,-35,-56,-57,-79r-81,79r-51,0","w":438},"\u0166":{"d":"399,-340r-137,0r-65,340r-45,0r65,-340r-131,0r8,-38r129,0r50,-257r-209,0r8,-39r462,0r-8,39r-208,0r-50,257r138,0","w":441},"\u0164":{"d":"152,0r121,-635r-209,0r8,-39r462,0r-8,39r-208,0r-121,635r-45,0xm328,-710r-37,0r-80,-112r50,0r51,77r4,0r80,-77r51,0","w":441},"\u0162":{"d":"152,0r121,-635r-209,0r8,-39r462,0r-8,39r-208,0r-121,635r-45,0xm77,209r-8,-27v45,-7,94,-30,94,-79v0,-22,-12,-40,-26,-50r41,-11v14,9,29,32,29,56v0,69,-67,103,-130,111","w":441},"\u021a":{"d":"152,0r121,-635r-209,0r8,-39r462,0r-8,39r-208,0r-121,635r-45,0xm77,209r-8,-27v45,-7,94,-30,94,-79v0,-22,-12,-40,-26,-50r41,-11v14,9,29,32,29,56v0,69,-67,103,-130,111","w":441},"\u016c":{"d":"168,-674r45,0r-77,407v-6,30,-9,61,-9,87v0,106,60,151,142,151v102,0,180,-70,212,-237r78,-408r46,0r-80,415v-39,200,-145,270,-264,270v-94,0,-180,-53,-180,-189v0,-29,3,-61,9,-92xm302,-825r35,0v-1,29,15,56,66,56v48,0,72,-24,81,-56r38,0v-9,49,-49,95,-120,95v-79,0,-107,-46,-100,-95","w":600},"\u0170":{"d":"168,-674r45,0r-77,407v-6,30,-9,61,-9,87v0,106,60,151,142,151v102,0,180,-70,212,-237r78,-408r46,0r-80,415v-39,200,-145,270,-264,270v-94,0,-180,-53,-180,-189v0,-29,3,-61,9,-92xm397,-822r68,0r-131,109r-39,0xm523,-822r68,0r-131,109r-39,0","w":600},"\u016a":{"d":"168,-674r45,0r-77,407v-6,30,-9,61,-9,87v0,106,60,151,142,151v102,0,180,-70,212,-237r78,-408r46,0r-80,415v-39,200,-145,270,-264,270v-94,0,-180,-53,-180,-189v0,-29,3,-61,9,-92xm295,-772r217,0r-7,39r-217,0","w":600},"\u0172":{"d":"355,132r5,31v-48,29,-136,13,-130,-50v0,-38,29,-74,61,-104v-117,12,-206,-40,-210,-187v0,-29,3,-61,9,-92r78,-404r45,0r-77,407v-6,30,-9,61,-9,87v0,106,60,151,142,151v102,0,180,-70,212,-237r78,-408r46,0r-80,415v-24,128,-76,202,-142,240v-48,27,-103,64,-107,122v0,43,47,43,79,29","w":600},"\u016e":{"d":"168,-674r45,0r-77,407v-6,30,-9,61,-9,87v0,106,60,151,142,151v102,0,180,-70,212,-237r78,-408r46,0r-80,415v-39,200,-145,270,-264,270v-94,0,-180,-53,-180,-189v0,-29,3,-61,9,-92xm308,-775v0,-49,38,-88,91,-88v52,0,86,36,86,84v0,50,-42,85,-90,85v-51,0,-87,-36,-87,-81xm445,-780v0,-31,-18,-55,-49,-55v-28,0,-48,25,-48,59v0,29,19,53,47,53v29,0,50,-24,50,-57","w":600},"\u0168":{"d":"168,-674r45,0r-77,407v-6,30,-9,61,-9,87v0,106,60,151,142,151v102,0,180,-70,212,-237r78,-408r46,0r-80,415v-39,200,-145,270,-264,270v-94,0,-180,-53,-180,-189v0,-29,3,-61,9,-92xm354,-801v44,-3,65,38,105,38v16,0,27,-13,34,-38r32,0v-8,74,-74,102,-130,60v-34,-27,-70,-24,-80,25r-32,0v8,-44,34,-85,71,-85","w":600},"\u0174":{"d":"183,0r-45,0r-38,-674r45,0r23,468v5,91,3,118,3,149r2,0v11,-30,23,-59,63,-143r228,-474r46,0r24,441v5,92,6,145,6,176r2,0v81,-213,191,-413,283,-617r47,0r-323,674r-45,0r-25,-450v-5,-77,-5,-97,-1,-175r-3,0v-84,227,-195,413,-292,625xm495,-823r37,0r80,113r-47,0v-20,-25,-35,-56,-57,-79r-81,79r-51,0","w":807},"\u0176":{"d":"212,0r-45,0r54,-283r-129,-391r48,0r79,247v20,62,26,86,30,107r2,0r74,-111r173,-243r51,0r-284,392xm321,-823r37,0r80,113r-47,0v-20,-25,-35,-56,-57,-79r-81,79r-51,0","w":484},"\u0179":{"d":"-16,0r6,-31r498,-601r-1,-3r-349,0r8,-39r410,0r-7,32r-497,600r2,3r386,0r-8,39r-448,0xm425,-823r77,0r-140,113r-44,0","w":504},"\u017b":{"d":"-16,0r6,-31r498,-601r-1,-3r-349,0r8,-39r410,0r-7,32r-497,600r2,3r386,0r-8,39r-448,0xm357,-805v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40","w":504},"\u0130":{"d":"168,-674r45,0r-129,674r-45,0xm209,-805v49,3,46,80,-4,79v-20,0,-35,-19,-35,-39v0,-19,17,-40,39,-40","w":208},"\u0103":{"d":"403,0r-44,0v-1,-30,5,-83,14,-143r-2,0v-57,113,-127,154,-202,154v-85,0,-134,-68,-134,-153v-2,-206,191,-408,437,-335v-24,133,-76,347,-69,477xm389,-277r32,-167v-187,-45,-336,110,-339,294v-1,57,18,122,97,122v86,0,185,-115,210,-249xm228,-678r36,0v-4,41,19,75,60,75v53,0,79,-40,89,-75r38,0v-12,70,-66,114,-125,114v-87,0,-106,-62,-98,-114"},"\u0101":{"d":"403,0r-44,0v-1,-30,5,-83,14,-143r-2,0v-57,113,-127,154,-202,154v-85,0,-134,-68,-134,-153v-2,-206,191,-408,437,-335v-24,133,-76,347,-69,477xm389,-277r32,-167v-187,-45,-336,110,-339,294v-1,57,18,122,97,122v86,0,185,-115,210,-249xm232,-635r202,0r-7,38r-202,0"},"\u0105":{"d":"472,-477v-24,133,-76,347,-69,477r-7,0v-36,39,-65,84,-65,121v0,24,16,40,38,40v13,0,27,-3,42,-11r9,28v-18,16,-44,20,-66,20v-44,0,-69,-29,-69,-70v0,-54,57,-114,74,-134v0,-30,6,-81,14,-137r-2,0v-57,113,-127,154,-202,154v-85,0,-134,-68,-134,-154v0,-170,133,-348,325,-348v40,0,83,6,112,14xm389,-277r32,-167v-187,-45,-336,110,-339,294v-1,57,18,122,97,122v86,0,185,-115,210,-249"},"\u0107":{"d":"341,-60r13,38v-21,11,-72,32,-142,32v-127,0,-174,-90,-174,-178v-8,-193,188,-394,384,-297r-16,38v-21,-11,-51,-22,-92,-22v-140,0,-229,146,-229,274v0,85,40,146,135,146v54,0,97,-18,121,-31xm351,-678r74,0r-135,138r-40,0","w":416},"\u010d":{"d":"341,-60r13,38v-21,11,-72,32,-142,32v-127,0,-174,-90,-174,-178v-8,-193,188,-394,384,-297r-16,38v-21,-11,-51,-22,-92,-22v-140,0,-229,146,-229,274v0,85,40,146,135,146v54,0,97,-18,121,-31xm317,-540r-36,0r-66,-138r43,0r45,100r3,0r79,-100r46,0","w":416},"\u0109":{"d":"341,-60r13,38v-21,11,-72,32,-142,32v-127,0,-174,-90,-174,-178v-8,-193,188,-394,384,-297r-16,38v-21,-11,-51,-22,-92,-22v-140,0,-229,146,-229,274v0,85,40,146,135,146v54,0,97,-18,121,-31xm296,-678r35,0r65,138r-43,0v-16,-32,-27,-70,-46,-99r-78,99r-46,0","w":416},"\u010b":{"d":"341,-60r13,38v-21,11,-72,32,-142,32v-127,0,-174,-90,-174,-178v-8,-193,188,-394,384,-297r-16,38v-21,-11,-51,-22,-92,-22v-140,0,-229,146,-229,274v0,85,40,146,135,146v54,0,97,-18,121,-31xm358,-620v0,21,-13,40,-39,40v-21,0,-34,-18,-34,-38v0,-21,17,-40,38,-40v22,0,35,18,35,38","w":416},"\u010f":{"d":"471,-710r45,0r-111,579v-7,43,-15,91,-18,131r-42,0v3,-34,16,-75,15,-106v-45,71,-107,117,-183,117v-100,0,-141,-84,-141,-171v0,-204,183,-391,391,-312xm382,-237r36,-192v-165,-84,-341,82,-335,265v0,58,16,136,106,136v77,0,171,-91,193,-209xm530,-546r-8,-26v28,-10,59,-32,59,-76v0,-22,-12,-43,-26,-54r41,-11v14,9,29,34,29,60v0,66,-52,100,-95,107","w":513},"\u0111":{"d":"382,-237r36,-192v-165,-84,-342,83,-335,265v0,58,16,136,106,136v77,0,170,-91,193,-209xm250,-595r200,0r21,-115r45,0r-22,115r82,0r-7,37r-82,0r-81,427v-8,43,-16,91,-19,131r-42,0v3,-34,16,-75,15,-106v-45,71,-106,117,-183,117v-100,0,-141,-84,-141,-171v0,-204,183,-391,391,-312r16,-86r-200,0"},"\u0115":{"d":"336,-64r14,36v-25,16,-75,38,-146,38v-122,0,-168,-93,-168,-187v0,-143,109,-314,252,-314v87,0,124,54,124,110v0,128,-156,154,-325,152v-7,25,-5,85,6,118v20,55,62,82,117,82v60,0,102,-20,126,-35xm94,-267v142,2,273,-16,272,-112v0,-48,-36,-73,-86,-73v-87,0,-160,90,-186,185xm188,-678r36,0v-4,41,19,75,60,75v53,0,79,-40,89,-75r38,0v-12,70,-66,114,-125,114v-87,0,-106,-62,-98,-114","w":423},"\u011b":{"d":"336,-64r14,36v-25,16,-75,38,-146,38v-122,0,-168,-93,-168,-187v0,-143,109,-314,252,-314v87,0,124,54,124,110v0,128,-156,154,-325,152v-7,25,-5,85,6,118v20,55,62,82,117,82v60,0,102,-20,126,-35xm94,-267v142,2,273,-16,272,-112v0,-48,-36,-73,-86,-73v-87,0,-160,90,-186,185xm292,-540r-36,0r-66,-138r43,0r45,100r3,0r79,-100r46,0","w":423},"\u0117":{"d":"336,-64r14,36v-25,16,-75,38,-146,38v-122,0,-168,-93,-168,-187v0,-143,109,-314,252,-314v87,0,124,54,124,110v0,128,-156,154,-325,152v-7,25,-5,85,6,118v20,55,62,82,117,82v60,0,102,-20,126,-35xm94,-267v142,2,273,-16,272,-112v0,-48,-36,-73,-86,-73v-87,0,-160,90,-186,185xm338,-620v0,21,-13,40,-39,40v-21,0,-34,-18,-34,-38v0,-21,17,-40,38,-40v22,0,35,18,35,38","w":423},"\u0113":{"d":"336,-64r14,36v-25,16,-75,38,-146,38v-122,0,-168,-93,-168,-187v0,-143,109,-314,252,-314v87,0,124,54,124,110v0,128,-156,154,-325,152v-7,25,-5,85,6,118v20,55,62,82,117,82v60,0,102,-20,126,-35xm94,-267v142,2,273,-16,272,-112v0,-48,-36,-73,-86,-73v-87,0,-160,90,-186,185xm192,-635r202,0r-7,38r-202,0","w":423},"\u014b":{"d":"199,168r-5,-39v78,-14,142,-44,170,-192r42,-222v15,-79,12,-168,-85,-166v-68,0,-170,78,-193,205r-45,246r-45,0r66,-351v9,-48,16,-91,21,-129r42,0v-3,33,-15,73,-13,103v42,-70,110,-114,185,-114v43,0,120,23,120,134v-8,106,-37,206,-53,306v-28,149,-103,204,-207,219","w":516},"\u0119":{"d":"94,-267v142,2,273,-16,272,-112v0,-48,-36,-73,-86,-73v-87,0,-160,90,-186,185xm350,-28v-52,26,-133,70,-137,136v-1,45,44,47,79,31r5,31v-55,29,-134,14,-130,-52v-1,-46,38,-84,70,-110v-137,19,-205,-81,-201,-185v0,-143,109,-314,252,-314v87,0,124,54,124,110v0,128,-156,154,-325,152v-7,25,-5,85,6,118v20,55,62,82,117,82v60,0,102,-20,126,-35","w":423},"\u011f":{"d":"8,173r17,-38v30,21,72,35,128,35v88,0,158,-47,192,-198r20,-92r-3,0v-45,82,-113,122,-185,122v-97,0,-142,-84,-142,-164v0,-166,124,-329,295,-329v48,0,109,17,139,33r-74,398v-21,110,-49,175,-95,216v-78,73,-215,64,-292,17xm384,-251r35,-180v-18,-9,-54,-21,-98,-21v-142,0,-238,145,-239,281v-1,56,17,134,109,134v86,0,174,-113,193,-214xm228,-678r36,0v-4,41,19,75,60,75v53,0,79,-40,89,-75r38,0v-12,70,-66,114,-125,114v-87,0,-106,-62,-98,-114"},"\u011d":{"d":"8,173r17,-38v30,21,72,35,128,35v88,0,158,-47,192,-198r20,-92r-3,0v-45,82,-113,122,-185,122v-97,0,-142,-84,-142,-164v0,-166,124,-329,295,-329v48,0,109,17,139,33r-74,398v-21,110,-49,175,-95,216v-78,73,-215,64,-292,17xm384,-251r35,-180v-18,-9,-54,-21,-98,-21v-142,0,-238,145,-239,281v-1,56,17,134,109,134v86,0,174,-113,193,-214xm319,-678r35,0r65,138r-43,0v-16,-32,-27,-70,-46,-99r-78,99r-46,0"},"\u0123":{"d":"8,173r17,-38v30,21,72,35,128,35v88,0,158,-47,192,-198r20,-92r-3,0v-45,82,-112,122,-185,122v-97,0,-142,-84,-142,-164v0,-166,124,-329,295,-329v48,0,109,17,139,33r-74,398v-21,110,-49,175,-94,216v-79,73,-215,64,-293,17xm384,-251r35,-180v-18,-9,-54,-21,-98,-21v-142,0,-238,145,-239,281v-1,56,17,134,109,134v87,0,174,-113,193,-214xm405,-698r8,27v-45,7,-94,30,-94,79v0,22,12,39,26,50r-40,11v-14,-9,-29,-32,-29,-56v0,-69,67,-103,129,-111"},"\u0121":{"d":"8,173r17,-38v30,21,72,35,128,35v88,0,158,-47,192,-198r20,-92r-3,0v-45,82,-113,122,-185,122v-97,0,-142,-84,-142,-164v0,-166,124,-329,295,-329v48,0,109,17,139,33r-74,398v-21,110,-49,175,-95,216v-78,73,-215,64,-292,17xm384,-251r35,-180v-18,-9,-54,-21,-98,-21v-142,0,-238,145,-239,281v-1,56,17,134,109,134v86,0,174,-113,193,-214xm363,-620v0,21,-13,40,-39,40v-21,0,-34,-18,-34,-38v0,-21,17,-40,38,-40v22,0,35,18,35,38"},"\u0127":{"d":"67,-596r85,0r21,-114r46,0r-23,114r198,0r-7,36r-197,0r-36,179r2,0v43,-68,105,-110,184,-110v42,0,118,24,118,128v-8,134,-42,241,-61,363r-45,0v19,-122,51,-224,61,-357v0,-52,-26,-94,-91,-94v-73,0,-171,83,-192,197r-47,254r-45,0r107,-560r-85,0","w":516},"\u0125":{"d":"83,0r-45,0r135,-710r46,0r-65,329r2,0v43,-68,105,-110,184,-110v42,0,118,24,118,128v-8,134,-42,241,-61,363r-45,0v19,-122,51,-224,61,-357v0,-52,-26,-94,-91,-94v-73,0,-171,83,-192,197xm193,-846r37,0r80,113r-47,0v-20,-25,-35,-56,-57,-79r-81,79r-51,0","w":516},"\u012d":{"d":"83,0r-45,0r92,-480r45,0xm80,-678r36,0v-4,41,19,75,60,75v53,0,79,-40,89,-75r38,0v-12,70,-66,114,-125,114v-87,0,-106,-62,-98,-114","w":206},"\u0133":{"d":"83,0r-45,0r92,-480r45,0xm215,-617v-2,21,-15,40,-40,40v-21,0,-33,-19,-33,-40v1,-22,16,-41,38,-41v22,0,35,18,35,41xm335,-480r45,0r-93,487v-23,124,-49,190,-155,202v-20,0,-34,-1,-46,-5r6,-38v87,14,117,-7,145,-135xm416,-617v-2,21,-15,40,-40,40v-21,0,-33,-19,-33,-40v1,-22,16,-41,38,-41v22,0,35,18,35,41","w":403},"\u012b":{"d":"83,0r-45,0r92,-480r45,0xm84,-635r202,0r-7,38r-202,0","w":206},"\u012f":{"d":"215,-624v-2,22,-16,41,-40,41v-21,0,-35,-19,-34,-41v1,-22,17,-41,38,-41v22,0,36,19,36,41xm175,-480r-92,480r-8,0v-36,39,-64,84,-64,121v0,44,47,49,79,29r10,28v-49,40,-141,20,-135,-50v0,-54,57,-114,74,-134r91,-474r45,0","w":206},"\u0129":{"d":"83,0r-45,0r92,-480r45,0xm228,-580v-41,1,-63,-36,-101,-39v-20,0,-26,18,-30,45r-34,0v4,-44,26,-84,65,-84v37,-3,66,37,102,39v16,0,24,-9,28,-41r33,0v-5,46,-21,80,-63,80","w":206},"\u0135":{"d":"128,-480r45,0r-93,487v-23,125,-48,190,-155,202v-20,0,-34,-1,-46,-5r6,-38v87,14,117,-7,146,-135xm165,-678r35,0r65,138r-43,0v-16,-32,-27,-70,-46,-99r-77,99r-46,0","w":197},"\u0137":{"d":"83,0r-45,0r135,-710r45,0r-87,458r246,-228r56,0r-213,197r150,283r-49,0r-135,-256r-66,56xm64,209r-8,-27v45,-7,94,-30,94,-79v0,-22,-12,-40,-26,-50r41,-11v14,9,29,32,29,56v0,69,-67,103,-130,111","w":411},"\u013a":{"d":"83,0r-45,0r136,-710r45,0xm270,-853r77,0r-140,113r-44,0","w":206},"\u013e":{"d":"83,0r-45,0r135,-710r46,0xm231,-546r-8,-26v28,-10,59,-32,59,-76v0,-22,-12,-43,-26,-54r41,-11v14,9,29,34,29,60v0,66,-52,100,-95,107","w":214},"\u013c":{"d":"83,0r-45,0r136,-710r45,0xm-38,209r-8,-27v45,-7,94,-30,94,-79v0,-22,-12,-40,-26,-50r41,-11v14,9,29,32,29,56v0,69,-67,103,-130,111","w":206},"\u0140":{"d":"83,0r-45,0r136,-710r45,0xm271,-370v0,21,-13,40,-39,40v-21,0,-34,-18,-34,-38v0,-21,17,-40,38,-40v22,0,35,18,35,38","w":209},"\u0144":{"d":"83,0r-45,0r66,-351v10,-48,16,-91,21,-129r42,0v-3,33,-15,73,-13,103v42,-70,110,-114,185,-114v43,0,120,23,120,134v-11,124,-43,239,-62,357r-45,0r54,-285v15,-79,12,-168,-85,-166v-68,0,-170,78,-193,205xm388,-678r74,0r-135,138r-40,0","w":516},"\u0148":{"d":"83,0r-45,0r66,-351v10,-48,16,-91,21,-129r42,0v-3,33,-15,73,-13,103v42,-70,110,-114,185,-114v43,0,120,23,120,134v-11,124,-43,239,-62,357r-45,0r54,-285v15,-79,12,-168,-85,-166v-68,0,-170,78,-193,205xm321,-540r-36,0r-66,-138r43,0r45,100r3,0r79,-100r46,0","w":516},"\u0146":{"d":"83,0r-45,0r66,-351v10,-48,16,-91,21,-129r42,0v-3,33,-15,73,-13,103v42,-70,110,-114,185,-114v43,0,120,23,120,134v-11,124,-43,239,-62,357r-45,0r54,-285v15,-79,12,-168,-85,-166v-68,0,-170,78,-193,205xm117,209r-8,-27v45,-7,94,-30,94,-79v0,-22,-12,-40,-26,-50r41,-11v14,9,29,32,29,56v0,69,-67,103,-130,111","w":516},"\u014f":{"d":"470,-290v0,131,-96,302,-254,301v-119,0,-178,-96,-178,-196v0,-154,107,-306,254,-306v129,0,178,104,178,201xm85,-189v0,92,53,161,137,161v109,0,201,-133,201,-263v0,-63,-30,-161,-135,-161v-117,0,-203,131,-203,263xm221,-678r36,0v-4,41,19,75,60,75v53,0,79,-40,89,-75r38,0v-12,70,-66,114,-125,114v-87,0,-106,-62,-98,-114","w":500},"\u0151":{"d":"470,-290v0,131,-96,302,-254,301v-119,0,-178,-96,-178,-196v0,-154,107,-306,254,-306v129,0,178,104,178,201xm85,-189v0,92,53,161,137,161v109,0,201,-133,201,-263v0,-63,-30,-161,-135,-161v-117,0,-203,131,-203,263xm303,-678r67,0r-129,138r-37,0xm430,-678r66,0r-129,138r-37,0","w":500},"\u014d":{"d":"470,-290v0,131,-96,302,-254,301v-119,0,-178,-96,-178,-196v0,-154,107,-306,254,-306v129,0,178,104,178,201xm85,-189v0,92,53,161,137,161v109,0,201,-133,201,-263v0,-63,-30,-161,-135,-161v-117,0,-203,131,-203,263xm231,-635r202,0r-7,38r-202,0","w":500},"\u0155":{"d":"83,0r-45,0r62,-324v10,-56,18,-109,24,-156r41,0v-5,34,-9,68,-16,108r3,0v36,-73,83,-129,165,-117r-9,46v-5,-1,-12,-2,-22,-2v-60,0,-137,90,-159,212xm288,-678r74,0r-135,138r-40,0","w":287},"\u0159":{"d":"83,0r-45,0r62,-324v10,-56,18,-109,24,-156r41,0v-5,34,-9,68,-16,108r3,0v36,-73,83,-129,165,-117r-9,46v-5,-1,-12,-2,-22,-2v-60,0,-137,90,-159,212xm236,-540r-36,0r-66,-138r43,0r45,100r3,0r79,-100r46,0","w":287},"\u0157":{"d":"83,0r-45,0r62,-324v10,-56,18,-109,24,-156r41,0v-5,34,-9,68,-16,108r3,0v36,-73,83,-129,165,-117r-9,46v-5,-1,-12,-2,-22,-2v-60,0,-137,90,-159,212xm2,209r-8,-27v45,-7,94,-30,94,-79v0,-22,-12,-40,-26,-50r41,-11v14,9,29,32,29,56v0,69,-67,103,-130,111","w":287},"\u015b":{"d":"17,-20r16,-37v20,14,55,28,90,28v65,0,110,-46,110,-100v0,-46,-18,-74,-71,-106v-136,-71,-77,-255,73,-256v36,0,71,12,86,23r-17,38v-14,-9,-42,-22,-74,-22v-58,0,-100,41,-100,91v0,45,25,69,70,97v54,33,79,77,79,123v0,95,-75,151,-160,151v-46,0,-85,-16,-102,-30xm294,-678r74,0r-135,138r-40,0","w":346},"\u015f":{"d":"321,-468r-17,38v-14,-9,-42,-22,-74,-22v-58,0,-100,41,-100,91v0,45,25,69,70,97v54,33,79,77,79,123v0,77,-50,128,-114,145r-38,50v92,32,45,149,-49,144v-24,0,-47,-7,-58,-15r15,-35v32,21,99,19,99,-28v0,-23,-26,-36,-63,-40r53,-70v-48,1,-90,-15,-107,-30r16,-37v20,14,55,28,90,28v65,0,110,-46,110,-100v0,-46,-18,-74,-71,-106v-136,-71,-77,-255,73,-256v36,0,71,12,86,23","w":346},"\uf6c2":{"d":"321,-468r-17,38v-14,-9,-42,-22,-74,-22v-58,0,-100,41,-100,91v0,45,25,69,70,97v54,33,79,77,79,123v0,77,-50,128,-114,145r-38,50v92,32,45,149,-49,144v-24,0,-47,-7,-58,-15r15,-35v32,21,99,19,99,-28v0,-23,-26,-36,-63,-40r53,-70v-48,1,-90,-15,-107,-30r16,-37v20,14,55,28,90,28v65,0,110,-46,110,-100v0,-46,-18,-74,-71,-106v-136,-71,-77,-255,73,-256v36,0,71,12,86,23","w":346},"\u015d":{"d":"17,-20r16,-37v20,14,55,28,90,28v65,0,110,-46,110,-100v0,-46,-18,-74,-71,-106v-136,-71,-77,-255,73,-256v36,0,71,12,86,23r-17,38v-14,-9,-42,-22,-74,-22v-58,0,-100,41,-100,91v0,45,25,69,70,97v54,33,79,77,79,123v0,95,-75,151,-160,151v-46,0,-85,-16,-102,-30xm237,-678r35,0r65,138r-43,0v-16,-32,-27,-70,-46,-99r-78,99r-46,0","w":346},"\u0167":{"d":"47,-299r65,0r28,-144r-73,0r7,-37r74,0r16,-88r49,-18r-20,106r122,0r-7,37r-123,0r-27,144r93,0r-7,37r-93,0v-9,59,-27,119,-28,183v-5,48,48,58,87,45r4,36v-13,5,-32,8,-52,8v-144,-11,-68,-172,-57,-272r-65,0","w":292},"\u0165":{"d":"164,-568r49,-18r-20,106r122,0r-8,37r-122,0r-52,277v-10,55,-29,137,38,137v16,0,29,-1,39,-5r3,36v-12,5,-31,8,-51,8v-104,-6,-92,-94,-75,-178r53,-275r-73,0r7,-37r74,0xm282,-546r-8,-26v28,-10,59,-32,59,-76v0,-22,-12,-43,-26,-54r41,-11v14,9,29,34,29,60v0,66,-52,100,-95,107","w":292},"\u0163":{"d":"164,-568r49,-18r-20,106r122,0r-7,37r-123,0r-52,277v-10,55,-29,137,38,137v16,0,29,-1,39,-5r4,36v-13,5,-32,8,-52,8v-104,-6,-92,-94,-75,-178r53,-275r-73,0r7,-37r74,0xm14,209r-8,-27v45,-7,94,-30,94,-79v0,-22,-12,-40,-26,-50r41,-11v14,9,29,32,29,56v0,69,-67,103,-130,111","w":292},"\u021b":{"d":"164,-568r49,-18r-20,106r122,0r-7,37r-123,0r-52,277v-10,55,-29,137,38,137v16,0,29,-1,39,-5r4,36v-13,5,-32,8,-52,8v-104,-6,-92,-94,-75,-178r53,-275r-73,0r7,-37r74,0xm14,209r-8,-27v45,-7,94,-30,94,-79v0,-22,-12,-40,-26,-50r41,-11v14,9,29,32,29,56v0,69,-67,103,-130,111","w":292},"\u016d":{"d":"428,-480r45,0r-67,351v-9,48,-15,91,-19,129r-42,0v3,-32,15,-71,13,-99v-39,63,-105,110,-172,110v-53,0,-129,-21,-129,-142v10,-119,43,-236,61,-349r45,0r-52,274v-19,88,-15,177,85,176v68,0,161,-78,182,-189xm209,-678r36,0v-4,41,19,75,60,75v53,0,79,-40,89,-75r38,0v-12,70,-66,114,-125,114v-87,0,-106,-62,-98,-114","w":506},"\u0171":{"d":"428,-480r45,0r-67,351v-9,48,-15,91,-19,129r-42,0v3,-32,15,-71,13,-99v-39,63,-105,110,-172,110v-53,0,-129,-21,-129,-142v10,-119,43,-236,61,-349r45,0r-52,274v-19,88,-15,177,85,176v68,0,161,-78,182,-189xm308,-678r67,0r-129,138r-37,0xm435,-678r66,0r-129,138r-37,0","w":506},"\u016b":{"d":"428,-480r45,0r-67,351v-9,48,-15,91,-19,129r-42,0v3,-32,15,-71,13,-99v-39,63,-105,110,-172,110v-53,0,-129,-21,-129,-142v10,-119,43,-236,61,-349r45,0r-52,274v-19,88,-15,177,85,176v68,0,161,-78,182,-189xm223,-635r202,0r-7,38r-202,0","w":506},"\u0173":{"d":"474,-480r-67,351v-9,48,-15,91,-19,129r-4,-5v-36,39,-64,83,-64,120v0,44,47,49,79,29r10,28v-49,40,-140,20,-135,-49v0,-54,57,-114,74,-134v2,-28,13,-63,10,-88v-38,63,-105,110,-172,110v-52,0,-129,-21,-129,-142v10,-119,43,-236,61,-349r45,0r-52,274v-19,88,-15,177,86,176v68,0,161,-78,182,-189r50,-261r45,0","w":506},"\u016f":{"d":"428,-480r45,0r-67,351v-9,48,-15,91,-19,129r-42,0v3,-32,15,-71,13,-99v-39,63,-105,110,-172,110v-53,0,-129,-21,-129,-142v10,-119,43,-236,61,-349r45,0r-52,274v-19,88,-15,177,85,176v68,0,161,-78,182,-189xm239,-618v0,-52,40,-92,93,-92v51,0,88,37,88,89v0,53,-46,89,-91,89v-52,0,-90,-38,-90,-86xm382,-625v0,-30,-21,-55,-53,-55v-30,0,-52,26,-52,61v0,30,21,57,51,57v31,0,54,-26,54,-63","w":506},"\u0169":{"d":"428,-480r45,0r-67,351v-9,48,-15,91,-19,129r-42,0v3,-32,15,-71,13,-99v-39,63,-105,110,-172,110v-53,0,-129,-21,-129,-142v10,-119,43,-236,61,-349r45,0r-52,274v-19,88,-15,177,85,176v68,0,161,-78,182,-189xm378,-580v-41,1,-63,-36,-101,-39v-20,0,-26,18,-30,45r-34,0v4,-44,26,-84,65,-84v37,-3,66,37,102,39v16,0,24,-9,28,-41r33,0v-5,46,-21,80,-63,80","w":506},"\u0175":{"d":"67,-480r43,0r27,312v6,62,6,84,6,114r3,0v58,-131,154,-295,222,-426r45,0r42,319v8,50,6,91,13,107v55,-145,136,-288,201,-426r47,0r-240,480r-41,0r-43,-319v-8,-40,-6,-84,-11,-112v-17,33,-32,70,-55,112r-173,319r-42,0xm408,-678r35,0r65,138r-43,0v-16,-32,-27,-70,-46,-99r-78,99r-46,0","w":691},"\u0177":{"d":"50,-480r47,0r84,423r3,0r202,-423r48,0r-186,378v-44,89,-87,172,-153,239v-52,54,-106,77,-131,83r-13,-39v75,-26,150,-92,195,-179v4,-9,3,-14,2,-21xm260,-678r35,0r65,138r-43,0v-16,-32,-27,-70,-46,-99r-78,99r-46,0","w":406},"\u017a":{"d":"-19,0r5,-29r282,-318v41,-46,65,-68,89,-92r0,-4r-272,0r8,-37r326,0r-7,32r-279,315v-43,48,-65,70,-88,93r0,3r292,0r-8,37r-348,0xm326,-678r74,0r-135,138r-40,0","w":393},"\u017c":{"d":"-19,0r5,-29r282,-318v41,-46,65,-68,89,-92r0,-4r-272,0r8,-37r326,0r-7,32r-279,315v-43,48,-65,70,-88,93r0,3r292,0r-8,37r-348,0xm308,-620v0,21,-13,40,-39,40v-21,0,-34,-18,-34,-38v0,-21,17,-40,38,-40v22,0,35,18,35,38","w":393},"\u0138":{"d":"83,0r-45,0r91,-480r45,0r-43,228r246,-228r56,0r-213,197r150,283r-49,0r-135,-256r-66,56","w":411},"\u0149":{"d":"84,0r-45,0r66,-351v10,-48,16,-91,20,-129r42,0v-2,33,-14,74,-12,103v42,-70,110,-114,184,-114v43,0,120,23,120,134v-11,124,-43,239,-62,357r-45,0r54,-285v15,-79,12,-168,-85,-166v-67,0,-169,78,-192,205xm79,-546r-8,-26v28,-10,59,-32,59,-76v0,-22,-12,-43,-26,-54r41,-11v14,9,29,34,29,60v0,66,-52,100,-95,107","w":516}}});Cufon.registerFont({"w":522,"face":{"font-family":"Myriad Pro","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"1000","panose-1":"2 11 5 3 3 4 3 9 2 4","ascent":"750","descent":"-250","x-height":"11","cap-height":"0","bbox":"-111 -873 981 250","underline-thickness":"50","underline-position":"-75","slope":"-11","stemh":"65","stemv":"88","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":182},"!":{"d":"142,-194r-66,0r79,-480r94,0xm77,11v-32,0,-54,-26,-54,-58v0,-37,26,-67,62,-67v34,0,56,26,56,59v0,37,-26,66,-64,66","w":236},"\"":{"d":"121,-692r87,0r-62,242r-55,0xm271,-692r86,0r-62,242r-55,0","w":304},"#":{"d":"193,-254r91,0r45,-147r-90,0xm114,0r-58,0r60,-197r-82,0r10,-57r91,0r46,-147r-87,0r10,-57r94,0r60,-192r58,0r-60,192r91,0r60,-192r58,0r-60,192r82,0r-10,57r-90,0r-45,147r86,0r-10,57r-95,0r-60,197r-59,0r61,-197r-90,0","w":492},"$":{"d":"210,85r-60,0r19,-100v-49,-2,-105,-23,-132,-44r28,-65v32,23,75,43,133,43v73,0,131,-44,131,-111v0,-44,-21,-79,-84,-111v-83,-44,-129,-93,-129,-160v0,-89,74,-164,177,-174r19,-97r61,0r-19,97v49,2,90,19,109,34r-29,62v-20,-12,-55,-32,-114,-32v-72,0,-116,44,-116,98v0,44,24,70,97,109v76,42,116,92,116,158v0,111,-82,180,-188,193","w":492},"%":{"d":"257,-661v82,0,119,66,119,135v0,142,-75,263,-184,263v-77,0,-123,-58,-123,-144v0,-123,72,-254,188,-254xm246,-608v-67,0,-109,114,-109,203v0,46,14,89,63,89v67,0,108,-119,108,-205v0,-39,-12,-87,-62,-87xm186,13r-60,0r491,-675r59,0xm618,-392v82,0,119,66,119,136v0,142,-75,263,-184,263v-76,0,-122,-58,-122,-145v0,-122,72,-254,187,-254xm607,-339v-66,0,-108,115,-108,203v0,47,14,90,63,90v67,0,107,-119,107,-206v0,-39,-12,-87,-62,-87","w":773},"&":{"d":"533,0r-98,0v-17,-20,-30,-38,-46,-62v-56,51,-116,73,-190,73v-116,0,-182,-75,-182,-169v0,-105,84,-177,167,-217v-20,-46,-39,-83,-37,-126v0,-100,75,-184,179,-184v90,0,136,61,136,133v0,80,-57,142,-173,196v33,67,87,138,121,190v41,-51,73,-117,102,-202r78,0v-37,107,-80,192,-142,256v25,35,52,72,85,112xm222,-54v53,0,98,-24,132,-60v-32,-47,-90,-129,-140,-213v-44,27,-113,75,-113,157v0,65,43,116,121,116xm317,-626v-93,-1,-121,149,-61,223v81,-39,129,-83,129,-147v0,-39,-18,-76,-68,-76","w":589},"\u2019":{"d":"161,-682r91,-10v-37,84,-97,192,-131,238r-58,6v31,-59,75,-162,98,-234","w":194},"(":{"d":"279,-692r71,0v-105,119,-210,303,-210,534v0,91,14,178,55,276r-63,0v-41,-82,-64,-171,-64,-278v0,-239,112,-424,211,-532","w":284},")":{"d":"25,118r-71,0v156,-163,289,-516,155,-810r64,0v41,81,63,170,63,276v0,239,-112,425,-211,534","w":284},"*":{"d":"338,-685r57,35r-110,124v46,1,104,-14,153,-18r-14,68r-143,-18r-1,3r82,120r-64,36v-18,-45,-29,-98,-50,-140r-79,140r-53,-36r109,-121r0,-3r-150,19r13,-68v45,4,98,18,140,17r-79,-123r64,-34v18,45,29,97,50,139","w":414},"+":{"d":"274,-532r62,0r0,235r219,0r0,59r-219,0r0,238r-62,0r0,-238r-219,0r0,-59r219,0r0,-235","w":596},",":{"d":"21,117r-64,7v31,-60,77,-167,98,-240r99,-10v-36,85,-98,196,-133,243","w":211},"-":{"d":"48,-302r239,0r-12,64r-239,0","w":307},".":{"d":"76,11v-33,0,-55,-26,-55,-59v0,-37,26,-67,63,-67v34,0,56,26,56,60v0,37,-26,66,-64,66","w":211},"\/":{"d":"13,40r-67,0r402,-725r68,0","w":326},"0":{"d":"327,-661v124,0,161,103,161,204v0,213,-100,468,-282,468v-120,0,-163,-98,-163,-223v0,-216,113,-449,284,-449xm318,-594v-113,0,-192,227,-192,386v0,69,13,152,91,152v122,0,188,-265,188,-396v0,-51,-7,-142,-87,-142","w":492},"1":{"d":"182,0r107,-566v-40,17,-75,38,-113,56r-9,-66r148,-74r70,0r-123,650r-80,0","w":492},"2":{"d":"393,0r-393,0r10,-55r97,-81v174,-147,276,-248,276,-355v0,-47,-26,-99,-101,-99v-58,0,-104,26,-134,47r-21,-60v45,-34,112,-58,173,-58v122,0,169,81,169,159v10,152,-189,310,-336,431r273,0","w":492},"3":{"d":"16,-30r28,-66v25,15,66,36,125,36v111,0,162,-76,162,-143v-1,-92,-77,-121,-172,-115r13,-65v90,6,185,-29,194,-126v0,-50,-30,-81,-92,-81v-49,0,-94,16,-123,36r-18,-63v41,-25,98,-44,155,-44v109,0,166,65,166,140v2,87,-73,144,-144,170v71,17,108,78,108,147v0,123,-111,215,-252,215v-70,0,-128,-21,-150,-41","w":492},"4":{"d":"335,0r-78,0r34,-179r-280,0r11,-56r346,-415r91,0r-77,405r88,0r-12,66r-89,0xm113,-245r191,0r42,-216v7,-35,16,-71,24,-105r-3,0v-72,123,-170,212,-254,321","w":492},"5":{"d":"487,-650r-14,72r-223,0r-51,165v54,-6,93,1,146,29v53,29,77,87,77,143v0,158,-126,252,-267,252v-63,0,-118,-19,-140,-36r26,-66v23,15,69,31,122,31v92,0,173,-73,173,-164v0,-70,-36,-125,-157,-125v-27,0,-47,2,-73,4r90,-305r291,0","w":492},"6":{"d":"470,-660r-12,71v-166,3,-262,98,-318,241r2,1v38,-49,101,-82,160,-82v102,0,157,78,157,177v0,127,-99,263,-239,263v-124,0,-185,-91,-185,-214v8,-244,167,-424,379,-453v23,-4,42,-4,56,-4xm270,-363v-71,2,-160,66,-153,172v0,78,37,135,109,135v86,0,147,-99,147,-191v0,-76,-38,-116,-103,-116","w":492},"7":{"d":"134,-650r389,0r-11,58r-377,592r-92,0r375,-576r-1,-3r-297,0","w":492},"8":{"d":"315,-661v95,0,164,57,164,147v0,77,-52,134,-127,169r-1,3v67,36,96,95,96,154v0,128,-115,199,-228,199v-122,0,-195,-69,-195,-161v0,-100,72,-165,152,-196r1,-3v-153,-104,-38,-320,138,-312xm225,-52v76,0,136,-52,136,-129v0,-64,-37,-105,-115,-132v-67,18,-136,68,-136,153v0,56,38,108,115,108xm302,-598v-66,0,-116,54,-116,115v0,51,31,87,95,110v64,-21,116,-69,116,-131v0,-44,-22,-94,-95,-94","w":492},"9":{"d":"56,10r10,-71v170,-2,264,-101,319,-240r-3,0v-40,46,-97,70,-148,70v-107,0,-158,-83,-158,-168v0,-133,106,-262,241,-262v123,0,175,94,175,205v0,162,-92,309,-168,374v-77,62,-155,92,-268,92xm259,-296v82,-4,155,-64,149,-170v0,-74,-28,-128,-101,-128v-80,0,-146,91,-146,185v0,65,33,113,98,113","w":492},":":{"d":"142,-342v-32,0,-54,-26,-54,-58v0,-37,26,-67,62,-67v34,0,56,25,56,59v0,37,-26,66,-64,66xm75,11v-32,0,-54,-26,-54,-58v0,-37,26,-67,62,-67v34,0,56,25,56,59v0,37,-26,66,-64,66","w":211},";":{"d":"20,116r-63,7v31,-60,76,-166,98,-240r98,-10v-36,86,-97,196,-133,243xm147,-342v-32,0,-54,-26,-54,-58v0,-37,26,-67,62,-67v34,0,56,25,56,59v0,37,-26,66,-64,66","w":211},"<":{"d":"78,-239r0,-54r448,-239r0,68r-375,197r0,2r375,197r0,68","w":596},"=":{"d":"556,-338r-500,0r0,-59r500,0r0,59xm556,-141r-500,0r0,-59r500,0r0,59","w":596},">":{"d":"541,-294r0,56r-448,238r0,-68r378,-197r0,-2r-378,-197r0,-68","w":596},"?":{"d":"207,-192r-80,0v4,-83,28,-127,100,-208v45,-47,87,-92,87,-146v0,-35,-18,-70,-76,-70v-38,0,-72,10,-100,28r-15,-61v37,-23,83,-37,136,-37v97,0,141,64,141,125v10,130,-182,220,-188,341v-1,9,-3,19,-5,28xm136,11v-32,0,-54,-26,-54,-58v0,-37,26,-67,62,-67v34,0,56,26,56,59v0,37,-26,66,-64,66","w":384},"@":{"d":"439,-255r21,-112v-111,-36,-211,58,-210,172v0,44,23,76,67,76v58,0,111,-74,122,-136xm498,21r16,44v-219,110,-487,-12,-479,-273v0,-206,142,-384,364,-384v174,0,291,122,291,289v0,150,-84,238,-178,238v-40,0,-77,-26,-75,-88r-3,0v-35,59,-81,88,-142,88v-57,0,-107,-47,-107,-126v0,-124,98,-237,237,-237v43,0,81,9,107,21r-34,181v-15,76,-3,111,30,112v52,2,109,-67,109,-182v0,-146,-88,-250,-244,-250v-163,0,-299,129,-299,332v0,167,105,271,260,271v51,0,107,-13,147,-36","w":720},"A":{"d":"400,-213r-232,0r-107,213r-88,0r349,-674r97,0r94,674r-85,0xm198,-279r196,0r-26,-195v-6,-34,-5,-90,-14,-124v-46,110,-103,215,-156,319","w":568},"B":{"d":"471,-207v-8,153,-133,214,-299,212v-58,0,-108,-4,-139,-10r124,-660v42,-8,90,-14,145,-14v117,-2,199,48,204,151v2,88,-73,146,-145,171v60,18,110,69,110,150xm229,-607r-42,219v125,10,233,-29,233,-132v9,-89,-111,-104,-191,-87xm174,-325r-48,259v128,17,256,-13,258,-145v-2,-103,-100,-121,-210,-114","w":519},"C":{"d":"433,-612v-174,0,-299,153,-296,331v0,121,55,220,205,220v51,0,107,-10,144,-29r11,68v-38,17,-99,32,-175,32v-170,0,-273,-107,-273,-279v-3,-222,164,-419,398,-415v74,0,128,19,146,32r-27,67v-25,-15,-73,-27,-133,-27","w":555},"D":{"d":"33,-3r125,-663v52,-9,109,-13,168,-13v112,0,198,32,248,90v36,37,63,98,63,183v0,122,-49,243,-135,317v-99,96,-292,105,-469,86xm215,-64v212,6,331,-144,333,-338v0,-120,-58,-209,-226,-209v-30,0,-68,2,-92,7r-102,536v30,4,62,4,87,4","w":647},"E":{"d":"433,-387r-14,70r-245,0r-46,246r276,0r-14,71r-359,0r128,-674r344,0r-14,71r-260,0r-41,216r245,0","w":470},"F":{"d":"31,0r128,-674r342,0r-14,71r-258,0r-44,227r238,0r-14,70r-238,0r-57,306r-83,0","w":465},"G":{"d":"448,-609v-179,-4,-312,156,-310,329v0,130,65,216,215,216v40,0,78,-8,102,-19r39,-201r-137,0r13,-68r218,0r-61,323v-39,16,-111,36,-190,36v-95,0,-169,-27,-220,-84v-126,-157,-67,-378,63,-504v73,-63,170,-100,278,-100v82,0,138,19,159,31r-28,70v-34,-18,-80,-29,-141,-29","w":623},"H":{"d":"159,-674r83,0r-54,284r310,0r54,-284r83,0r-128,674r-83,0r59,-317r-309,0r-60,317r-83,0","w":627},"I":{"d":"158,-674r83,0r-128,674r-83,0","w":233},"J":{"d":"210,-220r86,-454r83,0r-88,464v-30,157,-96,221,-222,221v-41,0,-83,-9,-100,-18r18,-71v114,35,199,17,223,-142","w":364},"K":{"d":"31,0r128,-674r82,0r-62,328r4,-1r67,-75r237,-252r104,0r-284,290r173,384r-90,0r-147,-331r-81,75r-49,256r-82,0","w":515},"L":{"d":"31,0r128,-674r83,0r-115,602r272,0r-14,72r-354,0","w":442},"M":{"d":"676,0r-80,0r48,-364v9,-64,24,-163,36,-228r-3,0v-90,202,-204,396,-306,588r-63,0r-50,-363v-10,-78,-17,-156,-21,-225r-3,0v-14,62,-35,164,-51,228r-92,364r-78,0r175,-674r106,0r53,386v7,58,14,119,16,169r3,0v82,-188,193,-374,287,-555r109,0","w":780},"N":{"d":"109,0r-78,0r128,-674r91,0v69,181,165,377,213,570v18,-170,67,-397,99,-570r78,0r-128,674r-82,0v-69,-182,-167,-382,-216,-575r-3,1v-21,174,-70,397,-102,574","w":632},"O":{"d":"657,-409v1,206,-130,425,-354,420v-331,-7,-301,-439,-127,-605v58,-56,141,-91,226,-91v182,0,255,132,255,276xm316,-59v166,1,255,-192,254,-346v0,-96,-31,-210,-179,-210v-168,0,-256,192,-256,345v0,110,49,211,181,211","w":668},"P":{"d":"518,-505v-5,179,-166,263,-354,235r-51,270r-82,0r127,-664v37,-9,91,-15,146,-15v118,-1,216,53,214,174xm227,-605r-50,265v135,32,262,-43,257,-159v7,-108,-115,-126,-207,-106","w":507},"Q":{"d":"657,-409v3,164,-95,361,-247,396r0,4v59,12,122,25,179,34r-32,69v-117,-27,-208,-64,-280,-84v-127,-8,-229,-106,-229,-274v0,-115,45,-245,124,-325v60,-60,145,-96,231,-96v183,0,254,136,254,276xm312,-59v174,4,257,-197,258,-348v0,-88,-30,-208,-178,-208v-170,-1,-256,197,-257,347v0,107,46,209,177,209","w":668},"R":{"d":"516,-519v1,101,-79,170,-161,198v48,16,70,66,75,135v7,94,12,159,21,186r-86,0v-4,-14,-11,-85,-16,-163v-5,-127,-65,-138,-180,-131r-55,294r-83,0r127,-664v151,-36,361,-17,358,145xm229,-606r-47,248r74,0v105,0,173,-69,173,-150v8,-97,-113,-119,-200,-98","w":523},"S":{"d":"12,-36r30,-68v87,68,290,60,289,-83v0,-50,-28,-88,-99,-126v-86,-47,-134,-101,-134,-173v0,-121,104,-198,228,-198v66,0,115,19,138,35r-30,68v-21,-13,-63,-32,-117,-32v-83,0,-133,55,-133,110v0,55,34,86,105,125v83,45,128,98,128,181v0,116,-91,208,-243,208v-67,-1,-134,-22,-162,-47","w":466},"T":{"d":"148,0r114,-602r-197,0r14,-72r478,0r-14,72r-198,0r-114,602r-83,0","w":474},"U":{"d":"158,-674r83,0r-76,399v-5,28,-8,57,-8,85v0,86,50,130,125,130v92,0,159,-62,188,-214r77,-400r83,0r-77,403v-39,201,-139,282,-282,282v-111,0,-197,-60,-197,-199v12,-174,59,-324,84,-486","w":621},"V":{"d":"258,0r-91,0r-83,-674r84,0r49,432v8,69,12,108,13,152r3,0v77,-185,198,-400,288,-584r92,0","w":539},"W":{"d":"219,0r-89,0r-33,-674r84,0r14,404v3,87,1,133,0,176r2,0v65,-174,178,-403,257,-580r88,0r14,388v3,88,3,146,2,190r2,0v69,-200,165,-388,247,-578r87,0r-312,674r-88,0r-17,-383v-4,-79,-3,-117,2,-194r-3,0v-69,207,-171,385,-257,577","w":829},"X":{"d":"466,0r-88,0r-107,-285r-2,0v-21,32,-45,69,-79,116r-121,169r-99,0r263,-343r-126,-331r87,0r64,173v16,39,22,75,36,102r69,-102r129,-173r99,0r-260,330","w":521},"Y":{"d":"243,0r-82,0r53,-280r-130,-394r89,0r65,218v17,60,23,87,28,113r2,0r72,-116r146,-215r97,0r-287,393","w":517},"Z":{"d":"-20,0r9,-51r458,-549r-1,-3r-320,0r14,-71r432,0r-11,54r-454,546r1,3r354,0r-13,71r-469,0","w":523},"[":{"d":"194,111r-175,0r152,-797r175,0r-10,54r-108,0r-131,689r107,0","w":284},"\\":{"d":"310,40r-65,0r-184,-725r65,0","w":329},"]":{"d":"109,-686r175,0r-152,797r-175,0r10,-54r108,0r131,-689r-107,0","w":284},"^":{"d":"534,-189r-68,0r-164,-388r-2,0r-164,388r-67,0r202,-461r61,1","w":596},"_":{"d":"-49,75r500,0r-10,50r-500,0","w":500},"\u2018":{"d":"164,-458r-91,10v37,-84,97,-192,131,-238r58,-6v-31,59,-76,162,-98,234","w":194},"a":{"d":"427,0r-78,0v-2,-27,10,-81,9,-125v-52,101,-119,136,-188,136v-86,0,-139,-68,-139,-160v0,-169,124,-346,335,-346v47,0,97,8,131,18v-26,139,-75,331,-70,477xm375,-276r28,-146v-160,-41,-284,106,-286,258v0,54,19,107,83,107v69,0,151,-90,175,-219"},"b":{"d":"159,-710r83,0r-64,314r2,0v43,-65,105,-99,170,-99v106,0,146,88,146,174v0,149,-107,332,-301,332v-85,0,-149,-35,-149,-124v0,-24,4,-53,9,-76xm318,-426v-103,-4,-187,154,-187,301v0,46,27,71,78,71v125,0,201,-149,201,-257v0,-60,-26,-115,-92,-115","w":525},"c":{"d":"353,-85r8,65v-25,13,-75,30,-140,30v-125,0,-186,-84,-186,-187v-7,-197,190,-378,397,-296r-24,66v-19,-9,-46,-18,-82,-18v-126,0,-205,124,-205,238v0,78,41,129,120,129v50,0,87,-15,112,-27","w":423},"d":{"d":"460,-710r82,0r-106,556v-9,51,-17,107,-20,154r-76,0v2,-31,13,-69,11,-96v-44,69,-105,107,-174,107v-94,0,-145,-77,-145,-176v-2,-198,177,-386,385,-313xm371,-239r32,-169v-142,-77,-291,75,-285,232v0,58,20,119,91,119v64,0,141,-73,162,-182","w":525},"e":{"d":"365,-89r12,62v-36,20,-95,38,-160,38v-128,0,-184,-88,-184,-195v0,-146,108,-311,264,-311v92,0,142,55,142,125v0,127,-143,160,-322,157v-4,21,-1,66,10,92v19,44,58,65,108,65v57,0,100,-17,130,-33xm359,-369v0,-39,-30,-61,-74,-61v-79,0,-138,77,-159,153v131,2,233,-16,233,-92","w":453},"f":{"d":"122,0r-83,0r80,-419r-65,0r13,-65r64,0v17,-120,69,-234,199,-237v33,0,55,6,67,13r-18,66v-102,-39,-154,51,-165,158r107,0r-12,65r-108,0","w":283},"g":{"d":"10,175r23,-65v29,19,78,32,128,32v82,0,146,-41,174,-172v3,-23,16,-53,14,-73v-43,69,-102,103,-168,103v-98,0,-148,-82,-148,-168v0,-164,120,-327,307,-327v56,0,118,16,156,34r-75,400v-19,103,-47,173,-97,217v-82,71,-231,64,-314,19xm374,-250r31,-162v-16,-7,-46,-16,-80,-16v-121,0,-205,127,-205,246v-1,54,19,116,93,116v71,0,143,-90,161,-184","w":524},"h":{"d":"111,0r-83,0r135,-710r83,0r-60,311r2,0v41,-59,100,-96,173,-96v55,0,120,33,120,130v-8,132,-43,243,-62,365r-83,0v19,-118,51,-218,60,-347v0,-44,-21,-79,-75,-79v-64,0,-145,75,-165,183","w":534},"i":{"d":"111,0r-83,0r93,-484r82,0xm183,-566v-29,0,-47,-22,-47,-52v1,-32,25,-56,54,-56v30,0,50,22,50,52v-1,33,-24,56,-57,56","w":229},"j":{"d":"126,-484r82,0r-92,483v-22,147,-78,229,-227,204r10,-65v79,13,105,-4,132,-122xm183,-566v-29,0,-47,-22,-47,-52v1,-32,25,-56,55,-56v29,0,49,22,49,52v-1,33,-24,56,-57,56","w":227},"k":{"d":"110,0r-82,0r135,-710r83,0r-85,445r217,-219r103,0r-211,199r144,285r-91,0r-117,-239r-61,55","w":456},"l":{"d":"112,0r-83,0r135,-710r83,0","w":229},"m":{"d":"110,0r-81,0r64,-343v10,-54,17,-101,22,-141r73,0v-2,29,-13,65,-10,91v45,-68,106,-102,170,-102v74,0,109,47,113,108v43,-70,105,-107,177,-108v56,0,118,36,118,127v-8,130,-43,247,-62,368r-81,0r52,-279v14,-66,13,-151,-66,-147v-60,0,-132,70,-152,178r-46,248r-80,0r54,-284v10,-68,19,-138,-66,-142v-60,0,-136,80,-155,183","w":808},"n":{"d":"111,0r-82,0r64,-343v11,-54,18,-101,23,-141r74,0v-2,30,-13,68,-10,95v43,-68,109,-106,179,-106v58,0,123,33,123,134v-11,126,-44,242,-63,361r-82,0r53,-280v12,-68,13,-148,-70,-146v-59,0,-143,71,-165,191","w":534},"o":{"d":"303,-495v131,0,190,99,190,201v0,150,-106,305,-269,305v-121,0,-189,-90,-189,-199v0,-160,111,-307,268,-307xm294,-429v-104,0,-173,127,-173,238v0,79,44,136,114,136v98,0,172,-126,172,-239v0,-56,-26,-135,-113,-135"},"p":{"d":"68,198r-83,0r97,-510v11,-59,21,-124,27,-173r76,0v-2,29,-13,66,-11,92v43,-64,107,-102,174,-102v104,0,148,86,148,175v3,207,-183,396,-389,309xm146,-216r-25,135v143,93,293,-70,289,-233v0,-51,-22,-112,-93,-112v-65,0,-146,74,-171,210","w":525},"q":{"d":"370,198r-83,0r59,-286r-2,0v-41,64,-107,99,-168,99v-96,0,-144,-81,-144,-176v0,-162,120,-330,308,-330v64,0,120,16,155,32xm372,-244r31,-167v-147,-65,-287,72,-285,236v0,75,33,118,84,118v78,0,151,-88,170,-187","w":525},"r":{"d":"111,0r-82,0r59,-312v11,-63,19,-127,24,-172r73,0v-4,34,-8,68,-13,105r3,0v37,-72,87,-126,172,-114r-16,82v-6,-1,-14,-2,-23,-2v-72,0,-136,87,-157,200","w":318},"s":{"d":"9,-23r24,-61v23,14,64,30,104,30v56,0,92,-36,92,-79v0,-38,-17,-61,-68,-89v-56,-31,-87,-74,-87,-124v0,-84,73,-149,175,-149v44,0,83,12,101,24r-23,63v-17,-10,-48,-22,-84,-22v-50,0,-86,31,-86,73v0,35,23,57,67,81v54,30,90,73,90,127v0,102,-82,159,-184,159v-52,-1,-99,-16,-121,-33","w":373},"t":{"d":"155,-574r87,-26r-22,116r116,0r-13,65r-116,0r-44,235v-10,50,-28,124,36,124v15,0,28,-1,39,-4r-4,65v-15,6,-40,9,-64,9v-113,-4,-112,-90,-91,-184r47,-245r-69,0r12,-65r69,0","w":313},"u":{"d":"417,-484r83,0r-65,343v-11,54,-17,101,-22,141r-74,0v2,-29,13,-65,10,-91v-43,63,-106,102,-170,102v-62,0,-128,-30,-128,-140v9,-123,43,-240,62,-355r82,0r-51,270v-15,75,-17,155,69,155v60,0,137,-71,157,-177","w":526},"v":{"d":"52,-484r84,0r42,276v7,55,14,92,15,119r3,0v49,-118,139,-276,199,-395r91,0r-269,484r-81,0","w":455},"w":{"d":"61,-484r82,0r17,272v4,60,3,91,2,130r3,0v50,-129,135,-276,196,-402r73,0r30,276v7,52,4,98,10,126v45,-138,119,-273,177,-402r84,0r-239,484r-77,0r-32,-263v-7,-44,-3,-91,-9,-129v-56,142,-129,261,-195,392r-77,0","w":707},"x":{"d":"63,-484r90,0r80,183r2,0v42,-63,95,-124,143,-183r95,0r-204,236r115,248r-91,0r-48,-109v-17,-36,-24,-55,-35,-86r-3,0v-39,66,-100,134,-148,195r-96,0r212,-249","w":441},"y":{"d":"48,-484r86,0r70,388r2,0v13,-31,27,-65,52,-119r124,-269r88,0r-182,368v-52,104,-101,189,-167,254v-54,55,-113,78,-140,84r-21,-72v70,-22,145,-82,183,-158v4,-8,4,-13,2,-22","w":441},"z":{"d":"-21,0r9,-51r235,-262v41,-45,68,-70,101,-100r0,-3r-248,0r14,-68r347,0r-11,55r-231,258r-101,103r269,0r-14,68r-370,0","w":415},"{":{"d":"46,9v-1,-70,51,-155,53,-218v0,-19,-7,-55,-66,-54r9,-51v137,-6,82,-140,109,-241v20,-100,82,-136,182,-131r-10,54v-125,-15,-109,129,-121,234v-10,70,-48,95,-91,111v120,42,3,198,3,282v-2,41,26,67,78,62r-11,54v-80,4,-135,-28,-135,-102","w":284},"|":{"d":"95,-750r62,0r0,1000r-62,0r0,-1000","w":217},"}":{"d":"251,-584v2,74,-50,155,-53,220v0,19,7,54,66,53r-9,51v-137,6,-82,139,-109,241v-20,99,-82,135,-182,130r10,-54v125,14,109,-127,121,-233v10,-68,48,-94,91,-111v-120,-41,-2,-196,-3,-282v2,-42,-26,-68,-78,-63r11,-54v80,-4,135,28,135,102","w":284},"~":{"d":"436,-209v-66,9,-182,-83,-256,-85v-34,0,-56,30,-57,82r-60,0v-3,-98,51,-148,118,-148v65,0,190,89,257,85v36,0,53,-28,54,-82r59,0v5,110,-52,148,-115,148","w":596},"\u00a1":{"d":"83,195r-94,0r106,-477r66,0xm160,-488v32,0,54,26,54,58v0,37,-26,67,-62,67v-34,0,-56,-26,-56,-59v0,-36,26,-66,64,-66","w":236},"\u00a2":{"d":"231,-87v-96,-14,-149,-88,-150,-189v0,-153,111,-279,246,-297r18,-100r61,0r-19,98v32,0,73,12,91,24r-29,64v-132,-72,-281,35,-280,204v0,75,43,131,124,131v43,0,78,-12,103,-23r8,63v-23,13,-70,25,-113,26r-19,100r-61,0","w":492},"\u00a3":{"d":"251,-295v-4,101,-38,168,-103,224r291,0r-13,71r-402,0r9,-51v65,-31,115,-95,131,-162v6,-24,8,-52,9,-82r-90,0r12,-63r79,0v1,-34,3,-78,12,-123v23,-111,96,-180,207,-180v42,0,76,12,92,23r-25,64v-19,-10,-45,-17,-75,-17v-70,0,-110,49,-123,121v-7,41,-8,78,-8,112r148,0r-12,63r-139,0","w":492},"\u00a5":{"d":"234,0r-78,0r33,-176r-146,0r9,-49r146,0r14,-73r-146,0r10,-49r122,0r-103,-303r85,0r59,206v9,34,17,61,23,92r4,0v55,-103,133,-201,197,-298r91,0r-228,303r121,0r-9,49r-148,0r-14,73r148,0r-10,49r-147,0","w":492},"\u00a7":{"d":"152,-349v0,35,15,62,82,94v40,19,72,36,92,51v71,-52,89,-132,-18,-183v-30,-14,-68,-33,-93,-50v-38,20,-63,53,-63,88xm473,-652r-24,55v-25,-15,-62,-30,-112,-30v-57,0,-106,33,-106,81v0,43,34,62,100,92v74,34,125,72,125,142v0,66,-40,111,-88,142v16,19,23,45,23,71v3,168,-233,194,-344,119r25,-57v28,18,69,39,126,39v66,0,115,-35,115,-89v0,-35,-20,-63,-98,-100v-78,-35,-137,-76,-137,-142v0,-56,38,-106,100,-141v-73,-107,43,-223,168,-215v53,0,102,16,127,33","w":501},"\u00a4":{"d":"151,-494v52,-53,175,-52,227,0r71,-74r44,46r-77,70v45,48,44,195,0,240r75,72r-44,46r-69,-76v-59,55,-170,55,-228,3r-67,73r-45,-46r73,-69v-20,-26,-37,-67,-37,-120v0,-54,18,-95,39,-123r-76,-70r45,-46xm261,-474v-73,0,-119,65,-119,143v0,101,67,143,120,143v59,0,121,-41,121,-144v0,-73,-42,-142,-122,-142","w":492},"'":{"d":"128,-692r86,0r-62,242r-54,0","w":166},"\u201c":{"d":"163,-458r-91,10v37,-84,97,-192,132,-238r57,-6v-31,59,-75,162,-98,234xm312,-458r-91,10v37,-84,97,-192,132,-238r57,-6v-31,59,-76,162,-98,234","w":342},"\u00ab":{"d":"253,-436r-151,186r101,182r-66,0r-104,-184r148,-184r72,0xm417,-436r-152,186r102,182r-67,0r-103,-184r147,-184r73,0","w":409},"\u2013":{"d":"41,-284r440,0r-12,60r-440,0","w":500},"\u00b7":{"d":"105,-198v-33,0,-55,-26,-55,-59v0,-37,26,-67,63,-67v34,0,56,26,56,60v0,37,-26,66,-64,66","w":211},"\u00b6":{"d":"222,-262v-69,-9,-143,-56,-147,-172v0,-137,111,-240,307,-240v49,0,88,3,110,8r-138,717r-60,0r127,-667r-72,0r-127,667r-61,0","w":494},"\u201d":{"d":"161,-682r91,-10v-37,84,-97,192,-131,238r-58,6v31,-59,76,-162,98,-234xm310,-682r91,-10v-37,84,-97,192,-131,238r-58,6v31,-59,76,-162,98,-234","w":342},"\u00bb":{"d":"159,-255r-102,-181r67,0r103,184r-147,184r-73,0xm322,-255r-101,-181r66,0r104,184r-148,184r-72,0","w":408},"\u2026":{"d":"127,11v-33,0,-55,-26,-55,-59v0,-37,26,-67,63,-67v34,0,56,26,56,60v0,37,-26,66,-64,66xm460,11v-33,0,-55,-26,-55,-59v0,-37,26,-67,63,-67v34,0,56,26,56,60v0,37,-26,66,-64,66xm793,11v-33,0,-55,-26,-55,-59v0,-37,26,-67,63,-67v34,0,56,26,56,60v0,37,-26,66,-64,66","w":1000},"\u00bf":{"d":"191,-286r80,0v-3,84,-30,127,-100,209v-46,46,-86,93,-86,145v0,36,18,71,76,71v37,0,71,-9,100,-27r16,61v-37,21,-85,36,-135,36v-101,0,-143,-68,-143,-130v0,-70,46,-131,108,-193v57,-61,77,-97,84,-172xm262,-488v32,0,54,26,54,58v0,37,-26,67,-63,67v-33,0,-55,-26,-55,-59v0,-37,26,-66,64,-66","w":384},"`":{"d":"144,-686r94,0r66,143r-60,0","w":383},"\u00b4":{"d":"300,-686r100,0r-133,143r-65,0","w":383},"\u00af":{"d":"162,-646r219,0r-10,53r-219,0","w":383},"\u00a8":{"d":"172,-570v-27,0,-47,-21,-47,-49v0,-30,23,-53,52,-53v29,0,47,22,47,49v0,29,-21,53,-52,53xm354,-570v-27,0,-46,-21,-46,-49v0,-30,23,-53,52,-53v29,0,47,22,47,49v0,29,-21,53,-53,53","w":383},"\u00b8":{"d":"132,-2r53,0r-39,52v32,8,54,32,54,64v5,80,-115,107,-174,70r18,-43v30,20,94,23,96,-22v0,-21,-23,-34,-66,-39","w":383},"\u2014":{"d":"41,-284r940,0r-12,60r-940,0","w":1000},"\u00c6":{"d":"37,0r-88,0r448,-674r380,0r-14,71r-251,0r-23,218r238,0r-13,70r-230,0r-26,244r257,0r-13,71r-329,0r24,-238r-202,0xm238,-307r165,0r33,-304r-4,0v-57,102,-131,205,-194,304","w":773},"\u00aa":{"d":"325,-267r-59,0v-2,-17,5,-46,2,-63v-28,45,-70,69,-116,69v-57,0,-94,-46,-94,-115v0,-108,74,-215,214,-215v33,0,76,9,97,17v-14,97,-43,201,-44,307xm280,-422r20,-112v-96,-31,-175,45,-176,148v0,37,14,73,55,73v44,0,90,-50,101,-109","w":350},"\u0141":{"d":"391,0r-354,0r51,-270r-95,62r13,-68r95,-61r64,-337r83,0r-53,278r142,-93r-13,69r-142,92r-48,256r271,0","w":448},"\u00d8":{"d":"64,42r-41,-39r77,-88v-99,-145,-45,-387,69,-500v94,-105,290,-139,398,-43r76,-85r44,36r-80,91v138,234,-30,604,-300,597v-69,0,-123,-19,-165,-57xm159,-155r358,-413v-27,-29,-64,-47,-125,-47v-174,-5,-318,251,-233,460xm547,-512r-354,407v29,30,66,46,126,46v163,3,307,-239,230,-453r-2,0","w":667},"\u0152":{"d":"454,-681v53,-1,98,6,144,7r300,0r-13,71r-269,0r-41,217r253,0r-13,70r-253,0r-46,245r283,0r-13,71r-324,0v-45,0,-84,8,-134,7v-192,0,-282,-130,-282,-284v0,-205,138,-404,408,-404xm433,-71r100,-532v-20,-5,-40,-8,-85,-8v-204,0,-314,159,-314,328v0,120,59,220,218,220v30,0,54,-3,81,-8","w":867},"\u00ba":{"d":"231,-591v91,0,136,63,136,136v0,110,-78,194,-181,194v-87,0,-134,-65,-134,-133v0,-113,81,-197,179,-197xm223,-541v-58,0,-104,70,-104,146v0,54,31,85,73,85v56,0,107,-62,107,-149v0,-37,-15,-82,-76,-82","w":345},"\u00e6":{"d":"630,-89r11,60v-36,22,-91,40,-159,40v-79,2,-135,-43,-160,-107v-39,67,-106,107,-183,107v-86,0,-132,-56,-133,-124v0,-129,136,-196,315,-189v13,-59,2,-126,-89,-130v-49,0,-89,15,-126,40r-17,-56v99,-70,271,-69,291,55r3,0v41,-68,113,-102,183,-102v94,0,139,58,139,116v0,135,-150,152,-321,146v-24,97,24,183,115,177v65,0,100,-17,131,-33xm301,-189r10,-54v-85,-4,-221,15,-221,119v0,43,28,69,71,69v60,0,123,-45,140,-134xm623,-373v0,-30,-25,-58,-71,-58v-85,0,-141,81,-157,137v120,4,228,-1,228,-79","w":718},"\u0131":{"d":"111,0r-83,0r92,-484r83,0","w":229},"\u0142":{"d":"116,0r-82,0r54,-284r-76,54r13,-68r76,-54r68,-358r83,0r-56,293r79,-57r-13,68r-79,56","w":237},"\u00f8":{"d":"52,38r-30,-30r56,-65v-31,-38,-43,-85,-43,-137v0,-155,112,-301,266,-301v51,0,89,14,116,35r55,-61r33,29r-55,63v123,177,-38,449,-218,440v-56,0,-94,-14,-123,-39xm139,-125r230,-277v-17,-18,-42,-29,-77,-29v-128,3,-212,189,-153,306xm390,-359r-232,275v134,111,301,-104,235,-275r-3,0","w":523},"\u0153":{"d":"712,-90r13,61v-36,22,-95,40,-156,40v-80,2,-136,-41,-163,-114v-44,77,-115,114,-190,114v-112,0,-182,-88,-182,-200v0,-161,109,-306,260,-306v86,-1,140,49,160,118v44,-77,122,-118,195,-118v102,0,137,65,137,119v0,138,-162,156,-319,157v-16,90,29,166,119,162v56,0,97,-17,126,-33xm232,-55v103,0,168,-140,168,-240v0,-67,-24,-135,-108,-135v-106,0,-172,126,-172,237v0,81,43,138,112,138xm707,-371v0,-35,-27,-60,-74,-60v-79,0,-135,78,-155,149v112,-1,229,-9,229,-89","w":800},"\u00df":{"d":"394,-157v0,-60,-100,-149,-88,-205v0,-66,49,-114,109,-140v37,-44,32,-158,-64,-151v-73,0,-127,61,-149,180r-90,473r-83,0r88,-461v27,-144,94,-260,246,-260v97,0,156,62,156,142v0,43,-20,87,-42,107v-46,17,-86,47,-86,93v0,33,14,54,37,84v29,39,51,82,51,130v7,148,-174,214,-297,153r23,-63v77,45,189,11,189,-82","w":538},"\u00b9":{"d":"203,-406r-69,0r63,-329v-27,9,-49,22,-74,32r-6,-49r100,-44r60,0","w":228},"\u00ac":{"d":"49,-399r501,0r0,279r-63,0r0,-220r-438,0r0,-59","w":596},"\u00b5":{"d":"196,-484r-54,287v-16,84,7,138,81,138v69,-4,129,-87,145,-161r50,-264r83,0r-65,344v-12,63,-3,82,28,84r-18,64v-59,11,-93,-8,-90,-97r-3,0v-29,52,-81,98,-146,98v-43,0,-81,-19,-98,-58v-11,71,-35,181,-32,247r-74,0v-6,-28,1,-100,16,-179r95,-503r82,0","w":525},"\u2122":{"d":"104,-674r227,0r0,45r-87,0r0,227r-54,0r0,-227r-86,0r0,-45xm679,-402r-54,0r-12,-236r-3,0v-20,80,-47,156,-72,232r-55,0r-49,-155r-19,-77r-3,0r-13,236r-52,0r20,-272r82,0v23,68,49,124,64,202r2,0v18,-75,42,-134,65,-202r79,0","w":669},"\u00d0":{"d":"14,-317r14,-70r84,0r52,-278v154,-28,343,-19,415,74v37,38,64,100,64,184v0,120,-51,242,-140,316v-97,92,-291,108,-464,85r59,-311r-84,0xm225,-66v196,5,331,-150,329,-338v0,-118,-58,-207,-225,-207v-31,0,-64,1,-93,5r-41,219r166,0r-14,70r-166,0r-47,246v30,5,62,5,91,5","w":654},"\u00bd":{"d":"195,-266r-69,0r61,-329r-72,33r-7,-50r100,-44r61,0xm140,11r-61,0r488,-672r61,0xm661,0r-263,0r7,-39v76,-65,239,-174,229,-246v0,-27,-14,-54,-60,-54v-33,0,-66,17,-84,31r-16,-45v31,-24,75,-42,121,-42v71,0,112,44,112,101v5,91,-123,170,-201,239r165,0","w":751},"\u00b1":{"d":"275,-572r62,0r0,195r219,0r0,59r-219,0r0,201r-62,0r0,-201r-219,0r0,-59r219,0r0,-195xm56,-59r500,0r0,59r-500,0r0,-59","w":596},"\u00de":{"d":"216,-542v138,-29,283,23,278,158v-3,177,-170,255,-352,228r-29,156r-81,0r128,-674r81,0xm203,-474r-47,248v128,27,253,-32,254,-148v8,-102,-117,-122,-207,-100","w":507},"\u00bc":{"d":"616,0r-66,0r19,-103r-192,0r8,-40r232,-252r73,0r-46,243r58,0r-9,49r-58,0xm578,-152r23,-118v2,-23,15,-49,13,-63v-46,70,-107,120,-155,181r119,0xm198,-266r-69,0r63,-329v-26,9,-48,23,-73,33r-7,-50r100,-44r60,0xm159,11r-62,0r486,-672r62,0","w":751},"\u00f7":{"d":"305,-386v-31,0,-52,-24,-52,-55v0,-33,22,-56,53,-56v32,0,53,23,53,56v0,31,-21,55,-54,55xm556,-237r-500,0r0,-59r500,0r0,59xm305,-36v-31,0,-52,-24,-52,-55v0,-33,22,-56,53,-56v32,0,53,23,53,56v0,31,-21,55,-54,55","w":596},"\u00a6":{"d":"95,-174r62,0r0,350r-62,0r0,-350xm95,-674r62,0r0,350r-62,0r0,-350","w":217},"\u00b0":{"d":"226,-685v79,0,127,60,127,125v0,80,-67,135,-133,135v-76,0,-127,-58,-127,-127v0,-73,60,-133,133,-133xm223,-638v-48,0,-76,47,-76,86v0,45,33,80,75,80v43,0,77,-38,77,-86v0,-35,-20,-80,-76,-80","w":318},"\u00fe":{"d":"-15,198r164,-868r83,0r-53,273r2,0v40,-60,100,-98,167,-98v103,0,149,82,149,176v-1,213,-181,393,-390,308r-39,209r-83,0xm146,-216r-26,136v146,90,293,-70,290,-232v0,-53,-23,-114,-91,-114v-64,0,-146,70,-173,210","w":526},"\u00be":{"d":"193,11r-62,0r486,-672r62,0xm124,-582r-11,-45v25,-18,68,-34,111,-34v72,0,110,40,110,86v2,49,-43,78,-91,99v41,10,71,45,71,89v-1,76,-68,126,-164,126v-46,0,-89,-13,-109,-29r22,-48v17,12,50,26,87,26v59,0,93,-35,93,-75v-1,-52,-53,-68,-110,-65r8,-45v58,4,118,-20,121,-68v5,-61,-109,-49,-138,-17xm627,0r-66,0r19,-103r-192,0r8,-40r232,-252r74,0r-46,243r57,0r-9,49r-58,0xm590,-152r22,-118v3,-23,15,-49,13,-63v-45,70,-107,120,-155,181r120,0","w":751},"\u00b2":{"d":"310,-406r-263,0r7,-40v77,-64,239,-172,229,-245v0,-27,-14,-54,-60,-54v-33,0,-66,17,-85,30r-16,-44v32,-24,76,-42,122,-42v71,0,112,44,112,101v5,91,-123,170,-201,239r166,0","w":298},"\u00ae":{"d":"292,-434v-12,-13,-7,-73,-47,-65r-19,0r0,65r-38,0r0,-164v15,-2,36,-5,63,-5v51,1,68,9,74,48v2,22,-19,31,-34,41v27,0,32,67,41,80r-40,0xm227,-573r0,47v27,1,58,-1,57,-24v5,-22,-34,-29,-57,-23xm254,-683v93,0,166,72,166,164v0,92,-73,165,-167,165v-94,0,-169,-73,-169,-165v0,-92,75,-164,170,-164xm251,-650v-71,0,-125,59,-125,131v0,73,54,131,127,131v72,1,125,-58,125,-130v0,-73,-53,-132,-127,-132","w":395},"\u00f0":{"d":"228,-55v99,0,169,-119,171,-244v3,-71,-31,-121,-107,-122v-104,0,-173,124,-173,235v0,71,36,131,109,131xm165,-507r-17,-42r128,-59v-25,-25,-57,-46,-89,-62r39,-49v48,22,83,47,121,79r130,-58r18,42r-112,51v64,70,103,158,103,269v0,212,-126,347,-264,347v-132,0,-189,-96,-189,-195v0,-160,113,-298,255,-300v33,0,77,8,105,48r3,-2v-18,-53,-45,-97,-85,-137","w":516},"\u00d7":{"d":"63,-482r43,-44r204,222r205,-222r43,43r-207,220r207,219r-44,44r-205,-222r-205,222r-41,-45r205,-218","w":596},"\u00b3":{"d":"137,-722r-11,-45v25,-18,68,-34,111,-34v72,0,110,40,110,86v2,49,-43,78,-90,99v41,10,71,45,71,89v-1,76,-68,126,-164,126v-46,0,-89,-13,-109,-29r22,-48v17,12,50,26,87,26v59,0,93,-35,93,-75v-1,-52,-54,-68,-111,-65r8,-45v58,4,118,-20,121,-68v5,-61,-109,-49,-138,-17","w":291},"\u00a9":{"d":"368,-648v167,0,298,138,298,308v0,172,-131,310,-299,310v-170,0,-303,-138,-303,-310v0,-170,133,-308,304,-308xm365,-607v-141,0,-252,117,-252,270v0,150,111,266,253,266v141,2,251,-116,251,-269v0,-150,-110,-267,-252,-267xm501,-493r-12,40v-14,-8,-50,-24,-98,-24v-93,0,-139,60,-139,140v0,78,49,141,140,141v41,0,79,-11,103,-27r11,38v-35,24,-82,32,-123,32v-116,0,-183,-79,-183,-181v0,-114,90,-186,190,-186v53,0,97,15,111,27","w":675},"\u00c1":{"d":"400,-213r-232,0r-107,213r-88,0r349,-674r97,0r94,674r-85,0xm198,-279r196,0r-26,-195v-6,-34,-5,-90,-14,-124v-46,110,-103,215,-156,319xm424,-828r108,0r-136,118r-74,0","w":568},"\u00c2":{"d":"400,-213r-232,0r-108,213r-87,0r348,-674r98,0r94,674r-85,0xm198,-279r196,0r-26,-195v-6,-34,-5,-90,-14,-124v-46,109,-104,215,-156,319xm357,-828r65,0r80,118r-68,0v-18,-23,-31,-51,-51,-72r-72,72r-74,0","w":568},"\u00c4":{"d":"400,-213r-232,0r-107,213r-88,0r349,-674r97,0r93,674r-85,0xm198,-279r196,0r-26,-195v-6,-34,-5,-90,-14,-124v-46,110,-103,215,-156,319xm284,-720v-25,0,-46,-21,-46,-48v0,-29,23,-53,52,-53v29,0,47,24,47,48v0,29,-23,53,-53,53xm468,-720v-25,0,-46,-21,-46,-48v0,-29,23,-53,52,-53v29,0,47,24,47,48v0,29,-23,53,-53,53","w":568},"\u00c0":{"d":"400,-213r-232,0r-107,213r-88,0r349,-674r97,0r94,674r-85,0xm198,-279r196,0r-26,-195v-6,-34,-5,-90,-14,-124v-46,110,-103,215,-156,319xm233,-828r103,0r75,117r-68,0","w":568},"\u00c5":{"d":"401,-213r-233,0r-107,213r-88,0r349,-674r98,0r93,674r-85,0xm198,-279r196,0r-26,-195v-6,-34,-5,-90,-14,-124v-46,110,-103,215,-156,319xm386,-873v56,0,95,34,95,87v-1,56,-47,91,-103,91v-55,0,-94,-34,-95,-83v-1,-55,42,-95,103,-95xm382,-837v-29,0,-48,24,-48,56v0,27,18,50,46,50v29,0,49,-23,49,-54v0,-30,-17,-52,-47,-52","w":568},"\u00c3":{"d":"401,-213r-233,0r-107,213r-88,0r349,-674r98,0r93,674r-85,0xm198,-279r197,0r-27,-195v-6,-34,-4,-90,-14,-124v-46,110,-103,215,-156,319xm429,-721v-58,3,-115,-85,-137,6r-47,0v10,-59,41,-100,82,-100v45,-3,67,36,104,38v17,0,27,-13,35,-40r46,0v-11,62,-38,96,-83,96","w":568},"\u00c7":{"d":"434,-612v-175,-1,-300,154,-297,331v0,120,56,220,205,220v51,0,107,-11,144,-30r11,68v-35,16,-92,31,-152,33r-31,40v33,8,54,33,54,65v2,81,-117,105,-175,67r18,-41v30,20,92,23,95,-21v0,-22,-21,-35,-65,-40r52,-71v-156,-12,-244,-119,-244,-279v-4,-219,166,-419,398,-414v75,0,129,19,146,32r-27,67v-25,-15,-73,-27,-132,-27","w":558},"\u00c9":{"d":"432,-387r-13,70r-245,0r-47,246r276,0r-14,71r-358,0r128,-674r343,0r-14,71r-259,0r-42,216r245,0xm387,-828r109,0r-137,118r-73,0","w":470},"\u00ca":{"d":"433,-387r-14,70r-245,0r-46,246r276,0r-14,71r-359,0r128,-674r344,0r-14,71r-260,0r-41,216r245,0xm323,-828r65,0r80,118r-68,0v-18,-23,-31,-51,-51,-72r-72,72r-74,0","w":470},"\u00cb":{"d":"433,-387r-14,70r-245,0r-47,246r277,0r-14,71r-359,0r128,-674r344,0r-14,71r-261,0r-41,216r246,0xm252,-720v-25,0,-46,-21,-46,-48v0,-29,23,-53,52,-53v29,0,47,24,47,48v0,29,-23,53,-53,53xm437,-720v-25,0,-46,-21,-46,-48v0,-29,23,-53,52,-53v29,0,47,24,47,48v0,29,-23,53,-53,53","w":470},"\u00c8":{"d":"433,-387r-14,70r-245,0r-46,246r276,0r-14,71r-359,0r128,-674r344,0r-14,71r-260,0r-41,216r245,0xm214,-828r103,0r75,117r-68,0","w":470},"\u00cd":{"d":"158,-674r83,0r-128,674r-83,0xm252,-828r109,0r-137,118r-73,0","w":233},"\u00ce":{"d":"158,-674r83,0r-128,674r-83,0xm187,-828r64,0r80,118r-68,0v-18,-23,-31,-51,-51,-72r-72,72r-74,0","w":233},"\u00cf":{"d":"158,-674r84,0r-129,674r-83,0xm120,-720v-25,0,-46,-21,-46,-48v0,-29,23,-53,52,-53v29,0,47,24,47,48v0,29,-23,53,-53,53xm305,-720v-25,0,-46,-21,-46,-48v0,-29,23,-53,52,-53v29,0,47,24,47,48v0,29,-23,53,-53,53","w":233},"\u00cc":{"d":"158,-674r83,0r-128,674r-83,0xm79,-828r103,0r75,117r-68,0","w":233},"\u00d1":{"d":"110,0r-79,0r129,-674r90,0v69,181,165,378,214,570v17,-171,66,-397,98,-570r78,0r-128,674r-82,0v-69,-183,-167,-384,-216,-575r-3,1v-21,173,-70,397,-101,574xm468,-721v-57,2,-114,-87,-136,5r-47,0v10,-59,41,-100,82,-100v45,-3,67,37,104,39v16,0,26,-13,34,-40r46,0v-11,62,-38,96,-83,96","w":632},"\u00d3":{"d":"657,-409v1,206,-130,425,-354,420v-331,-7,-301,-439,-127,-605v58,-56,141,-91,226,-91v182,0,255,132,255,276xm391,-615v-168,0,-256,192,-256,345v0,110,49,211,181,211v166,1,255,-192,254,-346v0,-96,-31,-210,-179,-210xm470,-829r109,0r-137,118r-74,0","w":668},"\u00d4":{"d":"657,-409v1,206,-130,425,-354,420v-331,-7,-301,-439,-127,-605v58,-56,141,-91,226,-91v182,0,255,132,255,276xm391,-615v-168,0,-256,192,-256,345v0,110,49,211,181,211v166,1,255,-192,254,-346v0,-96,-31,-210,-179,-210xm402,-828r65,0r80,118r-68,0v-18,-23,-31,-51,-51,-72r-72,72r-74,0","w":668},"\u00d6":{"d":"657,-409v1,206,-129,425,-353,420v-332,-7,-302,-439,-128,-605v58,-56,142,-91,227,-91v181,0,254,132,254,276xm392,-615v-168,-1,-257,192,-257,345v0,110,49,211,181,211v166,1,255,-192,254,-346v0,-96,-31,-210,-178,-210xm335,-720v-25,0,-46,-21,-46,-48v0,-29,23,-53,52,-53v29,0,47,24,47,48v0,29,-23,53,-53,53xm520,-720v-25,0,-46,-21,-46,-48v0,-29,23,-53,52,-53v29,0,47,24,47,48v0,29,-23,53,-53,53","w":668},"\u00d2":{"d":"657,-409v1,206,-130,425,-354,420v-331,-7,-301,-439,-127,-605v58,-56,141,-91,226,-91v182,0,255,132,255,276xm391,-615v-168,0,-256,192,-256,345v0,110,49,211,181,211v166,1,255,-192,254,-346v0,-96,-31,-210,-179,-210xm287,-828r104,0r75,117r-69,0","w":668},"\u00d5":{"d":"657,-409v1,206,-129,425,-353,420v-332,-7,-302,-439,-128,-605v59,-56,142,-91,227,-91v181,0,254,132,254,276xm392,-615v-168,0,-256,192,-257,345v0,110,49,211,181,211v166,1,254,-192,254,-346v0,-96,-31,-210,-178,-210xm481,-721v-57,2,-114,-87,-136,5r-47,0v10,-59,41,-100,82,-100v45,-3,67,37,104,39v16,0,26,-13,34,-40r46,0v-11,62,-38,96,-83,96","w":668},"\u0160":{"d":"12,-36r30,-68v87,68,290,60,289,-83v0,-50,-28,-88,-99,-126v-86,-47,-134,-101,-134,-173v0,-121,104,-198,228,-198v66,0,115,19,138,35r-30,68v-21,-13,-63,-32,-117,-32v-83,0,-133,55,-133,110v0,55,34,86,105,125v83,45,128,98,128,181v0,116,-91,208,-243,208v-67,-1,-134,-22,-162,-47xm350,-710r-65,0r-80,-118r69,0r47,72r3,0r72,-72r74,0","w":466},"\u00da":{"d":"158,-674r83,0r-76,399v-5,28,-8,57,-8,85v0,86,50,130,125,130v92,0,159,-62,188,-214r77,-400r83,0r-77,403v-39,201,-139,282,-282,282v-111,0,-197,-60,-197,-199v12,-174,59,-324,84,-486xm438,-828r109,0r-137,118r-73,0","w":621},"\u00db":{"d":"158,-674r83,0r-76,399v-5,28,-8,57,-8,85v0,86,50,130,125,130v92,0,159,-62,188,-214r77,-400r83,0r-77,403v-39,201,-139,282,-282,282v-111,0,-197,-60,-197,-199v12,-174,59,-324,84,-486xm391,-828r64,0r80,118r-67,0v-18,-23,-31,-51,-52,-72r-72,72r-74,0","w":621},"\u00dc":{"d":"158,-674r83,0r-76,399v-5,28,-8,57,-8,85v0,86,50,130,125,130v92,0,159,-62,188,-214r77,-400r83,0r-78,403v-38,201,-138,282,-281,282v-111,0,-197,-60,-197,-199v12,-174,59,-324,84,-486xm312,-720v-25,0,-46,-21,-46,-48v0,-29,23,-53,52,-53v28,0,46,24,46,48v0,29,-22,53,-52,53xm496,-720v-25,0,-46,-21,-46,-48v0,-29,23,-53,52,-53v29,0,47,24,47,48v0,29,-23,53,-53,53","w":621},"\u00d9":{"d":"158,-674r83,0r-76,399v-5,28,-8,57,-8,85v0,86,50,130,125,130v92,0,159,-62,188,-214r77,-400r83,0r-77,403v-39,201,-139,282,-282,282v-111,0,-197,-60,-197,-199v12,-174,59,-324,84,-486xm274,-828r103,0r75,117r-69,0","w":621},"\u00dd":{"d":"243,0r-82,0r53,-280r-130,-394r89,0r65,218v17,60,23,87,28,113r2,0r72,-116r146,-215r97,0r-287,393xm386,-828r109,0r-137,118r-73,0","w":517},"\u0178":{"d":"243,0r-82,0r53,-280r-130,-394r89,0r65,218v17,60,23,87,28,113r2,0r73,-116r146,-215r97,0r-287,393xm251,-720v-25,0,-46,-21,-46,-48v0,-29,23,-53,52,-53v29,0,47,24,47,48v0,29,-23,53,-53,53xm436,-720v-25,0,-46,-21,-46,-48v0,-29,23,-53,52,-53v29,0,47,24,47,48v0,29,-23,53,-53,53","w":517},"\u017d":{"d":"-20,0r9,-51r458,-549r-1,-3r-320,0r14,-71r432,0r-11,54r-454,546r1,3r354,0r-13,71r-469,0xm391,-710r-65,0r-80,-118r70,0r47,73r3,0r71,-73r74,0","w":523},"\u00e1":{"d":"427,0r-78,0v-2,-27,10,-81,9,-125v-52,101,-119,136,-188,136v-86,0,-139,-68,-139,-160v0,-169,124,-346,335,-346v47,0,97,8,131,18v-26,139,-75,331,-70,477xm375,-276r28,-146v-160,-41,-284,106,-286,258v0,54,19,107,83,107v69,0,151,-90,175,-219xm396,-686r100,0r-133,143r-66,0"},"\u00e2":{"d":"427,0r-78,0v-2,-27,10,-81,9,-125v-52,101,-119,136,-188,136v-86,0,-139,-68,-139,-160v0,-169,124,-346,335,-346v47,0,97,8,131,18v-26,139,-75,331,-70,477xm375,-276r28,-146v-160,-41,-284,106,-286,258v0,54,19,107,83,107v69,0,151,-90,175,-219xm330,-686r59,0r69,143r-62,0v-16,-29,-26,-64,-45,-91r-70,91r-67,0"},"\u00e4":{"d":"427,0r-78,0v-2,-27,10,-81,9,-125v-52,101,-119,136,-188,136v-86,0,-139,-68,-139,-160v0,-169,124,-346,335,-346v47,0,97,8,131,18v-26,139,-75,331,-70,477xm375,-276r28,-146v-160,-41,-284,106,-286,258v0,54,19,107,83,107v69,0,151,-90,175,-219xm245,-570v-27,0,-47,-21,-47,-49v0,-30,23,-53,52,-53v29,0,47,22,47,49v0,29,-21,53,-52,53xm427,-570v-27,0,-46,-21,-46,-49v0,-30,23,-53,52,-53v29,0,47,22,47,49v0,29,-21,53,-53,53"},"\u00e0":{"d":"427,0r-78,0v-2,-27,10,-81,9,-125v-52,101,-119,136,-188,136v-86,0,-139,-68,-139,-160v0,-169,124,-346,335,-346v47,0,97,8,131,18v-26,139,-75,331,-70,477xm375,-276r28,-146v-160,-41,-284,106,-286,258v0,54,19,107,83,107v69,0,151,-90,175,-219xm227,-686r94,0r66,143r-60,0"},"\u00e5":{"d":"427,0r-78,0v-2,-27,10,-81,9,-125v-52,101,-119,136,-188,136v-86,0,-139,-68,-139,-160v0,-169,124,-346,335,-346v47,0,97,8,131,18v-26,139,-75,331,-70,477xm375,-276r28,-146v-160,-41,-284,105,-286,258v0,54,19,107,83,107v69,0,151,-90,175,-219xm345,-721v53,0,95,35,95,92v-1,58,-50,95,-104,95v-54,0,-95,-36,-96,-88v-1,-58,44,-99,105,-99xm340,-683v-29,0,-50,25,-50,58v0,28,19,53,48,53v30,0,52,-25,52,-59v0,-29,-19,-52,-50,-52"},"\u00e3":{"d":"427,0r-78,0v-2,-27,10,-81,9,-125v-52,101,-119,136,-188,136v-86,0,-139,-68,-139,-160v0,-169,124,-346,335,-346v47,0,97,8,131,18v-26,139,-75,331,-70,477xm375,-276r28,-146v-160,-41,-284,106,-286,258v0,54,19,107,83,107v69,0,151,-90,175,-219xm389,-575v-42,2,-65,-35,-101,-38v-17,0,-24,19,-29,45r-48,0v7,-58,34,-100,77,-100v52,-6,114,93,131,-3r47,0v-8,62,-30,96,-77,96"},"\u00e7":{"d":"352,-84r8,64v-21,10,-61,26,-106,29r-31,41v32,8,54,32,54,65v4,80,-116,106,-175,69r19,-43v30,20,93,23,95,-22v0,-21,-22,-35,-66,-39r51,-71v-117,-7,-167,-93,-167,-185v-7,-197,192,-381,397,-296r-24,65v-19,-9,-46,-18,-82,-18v-126,0,-205,124,-205,239v0,77,41,129,120,129v52,0,87,-16,112,-27","w":423},"\u00e9":{"d":"365,-89r12,62v-36,20,-95,38,-160,38v-128,0,-184,-88,-184,-195v0,-146,108,-311,264,-311v92,0,142,55,142,125v0,127,-143,160,-322,157v-4,21,-1,66,10,92v19,44,58,65,108,65v57,0,100,-17,130,-33xm359,-369v0,-39,-30,-61,-74,-61v-79,0,-138,77,-159,153v131,2,233,-16,233,-92xm351,-686r99,0r-133,143r-65,0","w":453},"\u00ea":{"d":"365,-89r12,62v-36,20,-95,38,-160,38v-128,0,-184,-88,-184,-195v0,-146,108,-311,264,-311v92,0,142,55,142,125v0,127,-143,160,-322,157v-4,21,-1,66,10,92v19,44,58,65,108,65v57,0,100,-17,130,-33xm359,-369v0,-39,-30,-61,-74,-61v-79,0,-138,77,-159,153v131,2,233,-16,233,-92xm296,-686r59,0r69,143r-62,0v-16,-29,-26,-64,-45,-91r-70,91r-67,0","w":453},"\u00eb":{"d":"365,-89r12,62v-36,20,-95,38,-160,38v-128,0,-184,-88,-184,-195v0,-146,108,-311,264,-311v92,0,142,55,142,125v0,127,-143,160,-322,157v-4,21,-1,66,10,92v19,44,58,65,108,65v57,0,100,-17,130,-33xm359,-369v0,-39,-30,-61,-74,-61v-79,0,-138,77,-159,153v131,2,233,-16,233,-92xm221,-570v-27,0,-47,-21,-47,-49v0,-30,23,-53,52,-53v29,0,47,22,47,49v0,29,-21,53,-52,53xm403,-570v-27,0,-46,-21,-46,-49v0,-30,23,-53,52,-53v29,0,47,22,47,49v0,29,-21,53,-53,53","w":453},"\u00e8":{"d":"365,-89r12,62v-36,20,-95,38,-160,38v-128,0,-184,-88,-184,-195v0,-146,108,-311,264,-311v92,0,142,55,142,125v0,127,-143,160,-322,157v-4,21,-1,66,10,92v19,44,58,65,108,65v57,0,100,-17,130,-33xm359,-369v0,-39,-30,-61,-74,-61v-79,0,-138,77,-159,153v131,2,233,-16,233,-92xm190,-686r94,0r66,143r-60,0","w":453},"\u00ed":{"d":"111,0r-83,0r93,-484r82,0xm223,-686r100,0r-133,143r-66,0","w":229},"\u00ee":{"d":"111,0r-83,0r92,-484r83,0xm161,-686r59,0r69,143r-62,0v-16,-29,-26,-64,-45,-91r-69,91r-68,0","w":229},"\u00ef":{"d":"111,0r-83,0r92,-484r83,0xm89,-570v-27,0,-47,-21,-47,-49v0,-30,23,-53,52,-53v29,0,47,22,47,49v0,29,-21,53,-52,53xm271,-570v-27,0,-46,-21,-46,-49v0,-30,23,-53,52,-53v29,0,47,22,47,49v0,29,-21,53,-53,53","w":229},"\u00ec":{"d":"111,0r-83,0r92,-484r83,0xm50,-686r94,0r66,143r-60,0","w":229},"\u00f1":{"d":"111,0r-82,0r64,-343v11,-54,18,-101,23,-141r74,0v-2,30,-13,68,-10,95v43,-68,109,-106,179,-106v58,0,123,33,123,134v-11,126,-44,242,-63,361r-82,0r53,-280v12,-68,13,-148,-70,-146v-59,0,-143,71,-165,191xm383,-575v-42,2,-66,-35,-102,-38v-17,0,-24,19,-29,45r-48,0v7,-58,34,-100,77,-100v52,-7,115,93,132,-3r47,0v-8,62,-30,96,-77,96","w":534},"\u00f3":{"d":"224,11v-121,0,-189,-90,-189,-199v0,-160,111,-307,268,-307v131,0,190,99,190,201v0,150,-106,305,-269,305xm235,-55v98,0,172,-126,172,-239v0,-56,-26,-135,-113,-135v-104,0,-173,127,-173,238v0,79,44,136,114,136xm367,-686r99,0r-133,143r-65,0"},"\u00f4":{"d":"224,11v-121,0,-189,-90,-189,-199v0,-160,111,-307,268,-307v131,0,190,99,190,201v0,150,-106,305,-269,305xm235,-55v98,0,172,-126,172,-239v0,-56,-26,-135,-113,-135v-104,0,-173,127,-173,238v0,79,44,136,114,136xm313,-686r60,0r68,143r-62,0v-16,-29,-26,-64,-44,-91r-70,91r-68,0"},"\u00f6":{"d":"224,11v-121,0,-189,-90,-189,-199v0,-160,111,-307,268,-307v131,0,190,99,190,201v0,150,-106,305,-269,305xm235,-55v98,0,172,-126,172,-239v0,-56,-26,-135,-113,-135v-104,0,-173,127,-173,238v0,79,44,136,114,136xm239,-570v-27,0,-47,-21,-47,-49v0,-30,23,-53,52,-53v29,0,47,22,47,49v0,29,-21,53,-52,53xm421,-570v-27,0,-46,-21,-46,-49v0,-30,23,-53,52,-53v29,0,47,22,47,49v0,29,-21,53,-53,53"},"\u00f2":{"d":"224,11v-121,0,-189,-90,-189,-199v0,-160,111,-307,268,-307v131,0,190,99,190,201v0,150,-106,305,-269,305xm235,-55v98,0,172,-126,172,-239v0,-56,-26,-135,-113,-135v-104,0,-173,127,-173,238v0,79,44,136,114,136xm196,-686r94,0r66,143r-59,0"},"\u00f5":{"d":"224,11v-121,0,-189,-90,-189,-199v0,-160,111,-307,268,-307v131,0,190,99,190,201v0,150,-106,305,-269,305xm235,-55v98,0,172,-126,172,-239v0,-56,-26,-135,-113,-135v-104,0,-173,127,-173,238v0,79,44,136,114,136xm368,-575v-42,2,-65,-35,-101,-38v-17,0,-24,19,-29,45r-48,0v7,-58,34,-100,77,-100v52,-6,114,93,131,-3r47,0v-8,62,-30,96,-77,96"},"\u0161":{"d":"9,-23r24,-61v23,14,64,30,104,30v56,0,92,-36,92,-79v0,-38,-17,-61,-68,-89v-56,-31,-87,-74,-87,-124v0,-84,73,-149,175,-149v44,0,83,12,101,24r-23,63v-17,-10,-48,-22,-84,-22v-50,0,-86,31,-86,73v0,35,23,57,67,81v54,30,90,73,90,127v0,102,-82,159,-184,159v-52,-1,-99,-16,-121,-33xm275,-543r-60,0r-70,-143r63,0v16,30,26,65,45,92r71,-92r67,0","w":373},"\u00fa":{"d":"417,-484r83,0r-65,343v-11,54,-17,101,-22,141r-74,0v2,-29,13,-65,10,-91v-43,63,-106,102,-170,102v-62,0,-128,-30,-128,-140v9,-123,43,-240,62,-355r82,0r-51,270v-15,75,-17,155,69,155v60,0,137,-71,157,-177xm361,-686r99,0r-132,143r-65,0","w":526},"\u00fb":{"d":"417,-484r83,0r-65,343v-11,54,-17,101,-22,141r-75,0v2,-29,13,-65,11,-91v-43,63,-107,102,-170,102v-62,0,-128,-30,-128,-140v9,-123,43,-240,62,-355r82,0r-51,270v-15,75,-17,155,69,155v60,0,137,-71,157,-177xm315,-686r60,0r68,143r-62,0v-16,-29,-26,-64,-44,-91r-70,91r-67,0","w":526},"\u00fc":{"d":"417,-484r83,0r-65,343v-11,54,-17,101,-22,141r-74,0v2,-29,13,-65,10,-91v-43,63,-106,102,-170,102v-62,0,-128,-30,-128,-140v9,-123,43,-240,62,-355r82,0r-51,270v-15,75,-17,155,69,155v60,0,137,-71,157,-177xm237,-570v-27,0,-47,-21,-47,-49v0,-30,23,-53,52,-53v29,0,47,22,47,49v0,29,-21,53,-52,53xm419,-570v-27,0,-46,-21,-46,-49v0,-30,23,-53,52,-53v29,0,47,22,47,49v0,29,-21,53,-53,53","w":526},"\u00f9":{"d":"417,-484r83,0r-65,343v-11,54,-17,101,-22,141r-74,0v2,-29,13,-65,10,-91v-43,63,-106,102,-170,102v-62,0,-128,-30,-128,-140v9,-123,43,-240,62,-355r82,0r-51,270v-15,75,-17,155,69,155v60,0,137,-71,157,-177xm196,-686r93,0r66,143r-59,0","w":526},"\u00fd":{"d":"48,-484r86,0r70,388r2,0v13,-31,27,-65,52,-119r124,-269r88,0r-182,368v-52,104,-101,189,-167,254v-54,55,-113,78,-140,84r-21,-72v70,-22,145,-82,183,-158v4,-8,4,-13,2,-22xm321,-686r99,0r-133,143r-65,0","w":441},"\u00ff":{"d":"48,-484r86,0r70,388r2,0v13,-31,27,-65,52,-119r124,-269r88,0r-182,368v-52,104,-101,189,-167,254v-54,55,-113,78,-140,84r-21,-72v70,-22,145,-82,183,-158v4,-8,4,-13,2,-22xm189,-570v-27,0,-47,-21,-47,-49v0,-30,23,-53,52,-53v29,0,47,22,47,49v0,29,-21,53,-52,53xm371,-570v-27,0,-46,-21,-46,-49v0,-30,23,-53,52,-53v29,0,47,22,47,49v0,29,-21,53,-53,53","w":441},"\u017e":{"d":"-21,0r9,-51r235,-262v41,-45,68,-70,101,-100r0,-3r-248,0r14,-68r347,0r-11,55r-231,258r-101,103r269,0r-14,68r-370,0xm302,-543r-60,0r-70,-143r62,0v16,30,27,65,46,92r72,-92r66,0","w":415},"\u0110":{"d":"14,-317r14,-70r84,0r52,-278v154,-28,343,-19,415,74v37,38,64,100,64,184v0,120,-51,242,-140,316v-97,92,-291,108,-464,85r59,-311r-84,0xm225,-66v196,5,331,-150,329,-338v0,-118,-58,-207,-225,-207v-31,0,-64,1,-93,5r-41,219r166,0r-14,70r-166,0r-47,246v30,5,62,5,91,5","w":654},"\u014a":{"d":"291,196r-6,-67v75,-6,124,-40,144,-128v-69,-183,-167,-384,-215,-576r-3,1v-21,174,-70,397,-102,574r-78,0r128,-674r91,0v69,181,165,377,213,570v18,-170,67,-397,99,-570r78,0r-123,647v-33,176,-120,219,-226,223","w":632},"\u0126":{"d":"515,-480r-310,0r-20,103r310,0xm60,-536r73,0r26,-138r83,0r-26,138r310,0r26,-138r83,0r-26,138r65,0r-11,56r-65,0r-91,480r-83,0r57,-304r-310,0r-57,304r-83,0r91,-480r-73,0","w":627},"\u0166":{"d":"424,-321r-132,0r-61,321r-82,0r60,-321r-125,0r11,-58r125,0r43,-223r-197,0r14,-72r477,0r-14,72r-198,0r-42,223r132,0","w":474},"\u0111":{"d":"371,-239r32,-169v-142,-77,-291,75,-285,232v0,58,20,119,91,119v64,0,141,-73,162,-182xm246,-606r195,0r19,-104r82,0r-19,104r80,0r-11,53r-79,0r-77,399v-9,51,-17,107,-20,154r-76,0v2,-31,13,-69,11,-96v-44,69,-105,107,-174,107v-94,0,-145,-77,-145,-176v-2,-198,177,-386,385,-313r14,-75r-195,0","w":525},"\u014b":{"d":"208,176r-8,-69v71,-11,124,-40,147,-162v16,-96,42,-183,49,-287v0,-48,-19,-84,-76,-84v-59,0,-143,71,-165,191r-44,235r-82,0r64,-343v10,-54,18,-101,23,-141r74,0v-2,30,-13,68,-10,95v43,-68,109,-106,179,-106v58,0,123,33,123,135v-8,107,-37,208,-53,308v-31,164,-111,218,-221,228","w":534},"\u0127":{"d":"57,-606r87,0r19,-104r83,0r-20,104r185,0r-10,53r-185,0r-30,154r2,0v41,-59,100,-96,173,-96v55,0,120,33,120,130v-8,132,-43,243,-62,365r-83,0v19,-118,51,-218,60,-347v0,-44,-21,-79,-75,-79v-64,0,-145,75,-165,183r-45,243r-83,0r106,-553r-87,0","w":534},"\u0138":{"d":"110,0r-82,0r92,-484r83,0r-42,219r217,-219r103,0r-211,199r144,285r-91,0r-117,-239r-61,55","w":456},"\u0149":{"d":"111,0r-82,0r64,-343v11,-54,18,-101,23,-141r74,0v-2,30,-13,68,-10,95v43,-68,109,-106,179,-106v58,0,123,33,123,134v-11,126,-44,242,-63,361r-82,0r53,-280v12,-68,13,-148,-70,-146v-59,0,-143,71,-165,191xm77,-545r-12,-41v26,-9,55,-33,55,-72v0,-21,-11,-41,-23,-52r63,-14v14,10,28,35,28,61v0,76,-65,112,-111,118","w":534},"\u0167":{"d":"44,-303r59,0r23,-116r-69,0r12,-65r69,0r17,-90r87,-26r-22,116r116,0r-13,65r-116,0r-22,116r93,0r-11,52r-92,0v-7,45,-21,95,-22,144v-6,45,45,54,85,43r-4,65v-15,6,-40,9,-64,9v-151,-3,-93,-158,-77,-261r-59,0","w":313},"\u0132":{"d":"158,-674r83,0r-128,674r-83,0xm443,-219r86,-455r83,0r-88,464v-30,157,-95,221,-222,221v-40,0,-83,-9,-100,-18r18,-71v114,35,199,16,223,-141","w":597},"\u0133":{"d":"111,0r-83,0r93,-484r82,0xm183,-566v-29,0,-47,-22,-47,-52v1,-32,25,-56,55,-56v29,0,49,22,49,52v-1,33,-24,56,-57,56xm354,-484r83,0r-92,482v-22,148,-77,230,-228,205r10,-65v80,13,105,-3,132,-122xm412,-566v-29,0,-47,-22,-47,-52v1,-32,25,-56,55,-56v29,0,49,22,49,52v-1,33,-24,56,-57,56","w":456},"\u0102":{"d":"400,-213r-232,0r-107,213r-88,0r349,-674r97,0r94,674r-85,0xm198,-279r196,0r-26,-195v-6,-34,-5,-90,-14,-124v-46,110,-103,215,-156,319xm272,-835r52,0v0,28,15,54,61,54v46,0,68,-24,76,-54r54,0v-10,57,-52,106,-133,106v-87,0,-117,-49,-110,-106","w":568},"\u0100":{"d":"400,-213r-232,0r-107,213r-88,0r349,-674r97,0r94,674r-85,0xm198,-279r196,0r-26,-195v-6,-34,-5,-90,-14,-124v-46,110,-103,215,-156,319xm272,-787r231,0r-10,54r-231,0","w":568},"\u0104":{"d":"419,-674r94,674r-33,0v-30,34,-54,75,-54,107v-2,43,51,48,83,30r9,44v-54,46,-166,30,-160,-52v0,-53,50,-110,69,-133r-27,-209r-232,0r-107,213r-88,0r349,-674r97,0xm198,-279r196,0r-26,-195v-5,-34,-4,-90,-14,-124v-46,110,-103,215,-156,319","w":568},"\u0106":{"d":"433,-612v-174,0,-299,153,-296,331v0,121,55,220,205,220v51,0,107,-10,144,-29r11,68v-38,17,-99,32,-175,32v-170,0,-273,-107,-273,-279v-3,-222,164,-419,398,-415v74,0,128,19,146,32r-27,67v-25,-15,-73,-27,-133,-27xm461,-832r109,0r-137,118r-73,0","w":555},"\u010c":{"d":"433,-612v-174,0,-299,153,-296,331v0,121,55,220,205,220v51,0,107,-10,144,-29r11,68v-38,17,-99,32,-175,32v-170,0,-273,-107,-273,-279v-3,-222,164,-419,398,-415v74,0,128,19,146,32r-27,67v-25,-15,-73,-27,-133,-27xm446,-714r-64,0r-80,-118r69,0r47,72r3,0r72,-72r74,0","w":555},"\u0108":{"d":"433,-612v-174,0,-299,153,-296,331v0,121,55,220,205,220v51,0,107,-10,144,-29r11,68v-38,17,-99,32,-175,32v-170,0,-273,-107,-273,-279v-3,-222,164,-419,398,-415v74,0,128,19,146,32r-27,67v-25,-15,-73,-27,-133,-27xm400,-829r65,0r80,118r-68,0v-18,-23,-31,-51,-51,-72r-72,72r-74,0","w":555},"\u010a":{"d":"433,-612v-174,0,-299,153,-296,331v0,121,55,220,205,220v51,0,106,-10,144,-29r11,68v-38,17,-99,32,-175,32v-170,0,-273,-107,-273,-279v-4,-221,164,-419,397,-415v75,0,129,19,146,32r-26,67v-25,-15,-73,-27,-133,-27xm430,-722v-26,0,-47,-22,-47,-49v0,-28,23,-53,52,-53v29,0,48,24,48,49v0,29,-23,53,-53,53","w":555},"\u010e":{"d":"33,-3r125,-663v52,-9,109,-13,168,-13v112,0,198,32,248,90v36,37,63,98,63,183v0,122,-49,243,-135,317v-99,96,-292,105,-469,86xm215,-64v212,6,331,-144,333,-338v0,-120,-58,-209,-226,-209v-30,0,-68,2,-92,7r-102,536v30,4,62,4,87,4xm404,-710r-65,0r-80,-118r70,0r47,72r3,0r71,-72r74,0","w":647},"\u0114":{"d":"433,-387r-14,70r-245,0r-46,246r275,0r-13,71r-359,0r128,-674r344,0r-14,71r-260,0r-41,216r245,0xm227,-830r52,0v0,28,15,54,61,54v46,0,68,-24,76,-54r54,0v-10,57,-52,106,-134,106v-86,0,-116,-49,-109,-106","w":470},"\u011a":{"d":"433,-387r-14,70r-245,0r-46,246r275,0r-13,71r-359,0r128,-674r344,0r-14,71r-260,0r-42,216r246,0xm363,-710r-65,0r-80,-118r69,0r47,73r3,0r72,-73r74,0","w":470},"\u0116":{"d":"433,-387r-14,70r-245,0r-46,246r276,0r-14,71r-359,0r129,-674r343,0r-14,71r-260,0r-41,216r245,0xm340,-720v-26,0,-47,-22,-47,-49v0,-28,23,-53,52,-53v29,0,48,24,48,49v0,29,-23,53,-53,53","w":470},"\u0112":{"d":"433,-387r-14,70r-245,0r-46,246r276,0r-14,71r-359,0r128,-674r344,0r-14,71r-260,0r-41,216r245,0xm231,-787r231,0r-10,54r-231,0","w":470},"\u0118":{"d":"32,0r128,-674r343,0r-14,71r-260,0r-41,216r245,0r-14,70r-244,0r-47,246r276,0r-14,71r-17,0v-46,30,-87,77,-87,116v-2,40,51,36,77,22r12,45v-53,42,-163,30,-158,-47v0,-58,56,-111,91,-136r-276,0","w":470},"\u011e":{"d":"448,-609v-179,-4,-312,156,-310,329v0,130,65,216,215,216v40,0,78,-8,102,-19r39,-201r-137,0r13,-68r218,0r-61,323v-39,16,-111,36,-190,36v-95,0,-169,-27,-220,-84v-126,-157,-67,-378,63,-504v73,-63,170,-100,278,-100v82,0,138,19,159,31r-28,70v-34,-18,-80,-29,-141,-29xm315,-831r52,0v0,28,15,54,61,54v46,0,68,-24,76,-54r54,0v-10,57,-52,106,-133,106v-86,0,-117,-49,-110,-106","w":623},"\u011c":{"d":"448,-609v-179,-4,-312,156,-310,329v0,130,65,216,215,216v40,0,78,-8,102,-19r39,-201r-137,0r13,-68r218,0r-61,323v-39,16,-111,36,-190,36v-95,0,-169,-27,-220,-84v-126,-157,-67,-378,63,-504v73,-63,170,-100,278,-100v82,0,138,19,159,31r-28,70v-34,-18,-80,-29,-141,-29xm420,-828r65,0r80,118r-68,0v-18,-23,-31,-51,-51,-72r-72,72r-74,0","w":623},"\u0122":{"d":"448,-609v-179,-4,-312,156,-310,329v0,130,65,216,215,216v40,0,78,-8,102,-19r39,-201r-137,0r13,-68r218,0r-61,323v-39,16,-111,36,-190,36v-95,0,-169,-27,-220,-84v-126,-157,-67,-378,63,-504v73,-63,170,-100,278,-100v82,0,138,19,159,31r-28,70v-34,-18,-80,-29,-141,-29xm193,221r-10,-41v41,-7,87,-29,87,-75v0,-21,-11,-39,-24,-50r66,-13v14,10,28,33,28,59v0,78,-77,114,-147,120","w":623},"\u0120":{"d":"448,-609v-179,-4,-312,156,-310,329v0,130,65,216,215,216v40,0,78,-8,102,-19r39,-201r-137,0r13,-68r218,0r-61,323v-39,16,-111,36,-190,36v-95,0,-169,-27,-220,-84v-126,-157,-67,-378,63,-504v73,-63,169,-100,277,-100v83,0,139,19,160,31r-28,70v-34,-18,-80,-29,-141,-29xm442,-720v-26,0,-47,-22,-47,-49v0,-28,23,-53,52,-53v29,0,48,24,48,49v0,29,-23,53,-53,53","w":623},"\u0124":{"d":"159,-674r83,0r-54,284r310,0r54,-284r83,0r-128,674r-83,0r59,-317r-309,0r-60,317r-83,0xm392,-828r64,0r80,118r-67,0v-18,-23,-31,-51,-52,-72r-72,72r-74,0","w":627},"\u012c":{"d":"158,-674r83,0r-128,674r-83,0xm107,-833r53,0v-1,28,14,54,60,54v46,0,68,-24,76,-54r54,0v-10,57,-52,106,-133,106v-86,0,-117,-49,-110,-106","w":233},"\u0130":{"d":"158,-674r83,0r-128,674r-83,0xm217,-720v-26,0,-47,-22,-47,-49v0,-28,23,-53,52,-53v29,0,48,24,48,49v0,29,-23,53,-53,53","w":233},"\u012a":{"d":"158,-674r83,0r-128,674r-83,0xm107,-787r231,0r-10,54r-231,0","w":233},"\u012e":{"d":"241,-674r-129,674r-28,0v-30,34,-54,75,-54,107v-2,43,51,48,83,30r9,44v-54,46,-166,30,-160,-52v0,-53,50,-110,68,-133r128,-670r83,0","w":233},"\u0128":{"d":"158,-674r83,0r-128,674r-83,0xm268,-721v-58,2,-114,-85,-136,6r-47,0v10,-59,41,-100,82,-100v45,-3,67,36,104,38v16,0,26,-13,34,-40r46,0v-11,62,-38,96,-83,96","w":233},"\u0134":{"d":"210,-220r86,-454r83,0r-88,464v-30,157,-96,221,-222,221v-41,0,-83,-9,-100,-18r18,-71v114,35,199,17,223,-142xm331,-828r65,0r80,118r-68,0v-18,-23,-31,-51,-51,-72r-72,72r-74,0","w":364},"\u0136":{"d":"32,0r128,-674r82,0r-62,328r4,-1v23,-28,46,-52,66,-75r237,-252r104,0r-284,290r173,384r-90,0r-147,-331r-80,75r-49,256r-82,0xm115,221r-10,-42v41,-6,87,-29,87,-75v0,-21,-11,-38,-24,-49r66,-14v14,10,28,33,28,59v0,79,-77,115,-147,121","w":515},"\u0139":{"d":"31,0r128,-674r83,0r-115,602r272,0r-14,72r-354,0xm280,-828r109,0r-137,118r-73,0","w":442},"\u013d":{"d":"31,0r128,-674r83,0r-115,602r272,0r-14,72r-354,0xm287,-499r-10,-41v41,-7,87,-29,87,-75v0,-21,-11,-38,-24,-49r66,-14v14,10,28,33,28,59v0,78,-77,114,-147,120","w":442},"\u013b":{"d":"31,0r128,-674r83,0r-115,602r272,0r-14,72r-354,0xm92,221r-10,-42v41,-6,87,-29,87,-75v0,-21,-11,-38,-24,-49r66,-14v14,10,28,33,28,59v0,79,-77,115,-147,121","w":442},"\u013f":{"d":"31,0r128,-674r83,0r-115,602r272,0r-14,72r-354,0xm336,-316v-26,0,-47,-21,-47,-49v0,-28,23,-52,52,-52v29,0,48,23,48,48v0,29,-23,53,-53,53","w":443},"\u0143":{"d":"109,0r-78,0r128,-674r91,0v69,181,165,377,213,570v18,-170,67,-397,99,-570r78,0r-128,674r-82,0v-69,-182,-167,-382,-216,-575r-3,1v-21,174,-70,397,-102,574xm450,-828r108,0r-136,118r-74,0","w":632},"\u0147":{"d":"109,0r-78,0r128,-674r91,0v69,181,165,377,213,570v18,-170,67,-397,99,-570r78,0r-128,674r-82,0v-69,-182,-167,-382,-216,-575r-3,1v-21,174,-70,397,-102,574xm439,-710r-65,0r-79,-118r69,0r47,72r3,0r71,-72r74,0","w":632},"\u0145":{"d":"109,0r-78,0r128,-674r91,0v69,181,165,377,213,570v18,-172,66,-397,99,-570r78,0r-128,674r-82,0v-69,-182,-167,-382,-216,-575r-3,1v-21,174,-70,397,-102,574xm181,221r-10,-42v41,-6,87,-29,87,-75v0,-21,-11,-38,-24,-49r66,-14v14,10,28,33,28,59v0,79,-77,115,-147,121","w":632},"\u014e":{"d":"657,-409v1,206,-130,425,-354,420v-331,-7,-301,-439,-127,-605v58,-56,141,-91,226,-91v182,0,255,132,255,276xm391,-615v-168,0,-256,192,-256,345v0,110,49,211,181,211v166,1,255,-192,254,-346v0,-96,-31,-210,-179,-210xm321,-834r53,0v-1,28,14,54,61,54v45,0,67,-24,75,-54r55,0v-10,57,-52,106,-134,106v-86,0,-117,-49,-110,-106","w":668},"\u0150":{"d":"657,-409v1,206,-130,425,-354,420v-331,-7,-301,-439,-127,-605v58,-56,141,-91,226,-91v182,0,255,132,255,276xm391,-615v-168,0,-256,192,-256,345v0,110,49,211,181,211v166,1,255,-192,254,-346v0,-96,-31,-210,-179,-210xm397,-828r95,0r-127,113r-64,0xm544,-828r96,0r-127,113r-65,0","w":668},"\u014c":{"d":"657,-409v1,206,-130,425,-354,420v-331,-7,-301,-439,-127,-605v58,-56,141,-91,226,-91v182,0,255,132,255,276xm391,-615v-168,0,-256,192,-256,345v0,110,49,211,181,211v166,1,255,-192,254,-346v0,-96,-31,-210,-179,-210xm321,-787r231,0r-10,54r-231,0","w":668},"\u0154":{"d":"516,-519v1,101,-79,170,-161,198v48,16,70,66,75,135v7,94,12,159,21,186r-86,0v-4,-14,-11,-85,-16,-163v-5,-127,-65,-138,-180,-131r-55,294r-83,0r127,-664v151,-36,361,-17,358,145xm229,-606r-47,248r74,0v105,0,173,-69,173,-150v8,-97,-113,-119,-200,-98xm377,-828r109,0r-137,118r-74,0","w":523},"\u0158":{"d":"516,-519v1,101,-79,170,-161,198v48,16,70,66,75,135v7,94,12,159,21,186r-86,0v-4,-14,-11,-85,-16,-163v-5,-127,-65,-138,-180,-131r-55,294r-83,0r127,-664v151,-36,361,-17,358,145xm229,-606r-47,248r74,0v105,0,173,-69,173,-150v8,-97,-113,-119,-200,-98xm354,-710r-65,0r-80,-118r70,0r46,72r4,0r71,-72r74,0","w":523},"\u0156":{"d":"305,-679v117,-1,208,51,211,160v2,101,-79,169,-161,198v47,16,70,66,75,135v7,94,12,159,21,186r-86,0v-4,-14,-11,-85,-16,-163v-5,-127,-65,-138,-180,-131r-55,294r-83,0r127,-664v41,-10,96,-15,147,-15xm229,-606r-47,248r74,0v105,0,173,-69,173,-150v9,-97,-114,-119,-200,-98xm119,221r-10,-42v41,-6,87,-29,87,-75v0,-21,-11,-38,-24,-49r66,-14v14,10,28,33,28,59v0,79,-77,115,-147,121","w":523},"\u015a":{"d":"12,-36r30,-68v87,68,290,60,289,-83v0,-50,-28,-88,-99,-126v-86,-47,-134,-101,-134,-173v0,-121,104,-198,228,-198v66,0,115,19,138,35r-30,68v-21,-13,-63,-32,-117,-32v-83,0,-133,55,-133,110v0,55,34,86,105,125v83,45,128,98,128,181v0,116,-91,208,-243,208v-67,-1,-134,-22,-162,-47xm366,-828r109,0r-137,118r-73,0","w":466},"\u015e":{"d":"464,-649r-30,68v-21,-13,-63,-32,-117,-32v-83,0,-133,55,-133,110v0,55,34,86,105,125v83,45,128,98,128,180v0,99,-65,181,-178,203r-34,45v32,8,54,32,54,65v5,79,-115,106,-174,69r18,-44v30,22,94,24,96,-21v0,-21,-23,-35,-66,-39r49,-70v-61,2,-131,-16,-170,-46r30,-68v87,68,290,60,289,-83v0,-51,-28,-88,-99,-126v-86,-47,-134,-101,-134,-173v0,-121,104,-198,228,-198v66,0,115,19,138,35","w":466},"\u015c":{"d":"12,-36r30,-68v87,68,290,60,289,-83v0,-50,-28,-88,-99,-126v-86,-47,-134,-101,-134,-173v0,-121,104,-198,228,-198v66,0,115,19,138,35r-30,68v-21,-13,-63,-32,-117,-32v-83,0,-133,55,-133,110v0,55,34,86,105,125v83,45,128,98,128,181v0,116,-91,208,-243,208v-67,-1,-134,-22,-162,-47xm312,-828r64,0r80,118r-67,0v-18,-23,-31,-51,-51,-72r-73,72r-73,0","w":466},"\u0164":{"d":"148,0r114,-602r-197,0r14,-72r478,0r-14,72r-198,0r-114,602r-83,0xm357,-710r-65,0r-80,-118r69,0r47,73r3,0r72,-73r74,0","w":474},"\u0162":{"d":"148,0r114,-602r-196,0r14,-72r477,0r-14,72r-198,0r-114,602r-83,0xm90,221r-10,-42v41,-6,87,-29,87,-75v0,-21,-11,-38,-24,-49r66,-14v14,10,28,33,28,59v0,79,-77,115,-147,121","w":474},"\u016c":{"d":"158,-674r83,0r-76,399v-5,28,-8,57,-8,85v0,86,50,130,125,130v92,0,159,-62,188,-214r77,-400r83,0r-77,403v-39,201,-139,282,-282,282v-111,0,-197,-60,-197,-199v12,-174,59,-324,84,-486xm299,-830r53,0v-1,28,14,54,61,54v45,0,67,-24,75,-54r54,0v-9,57,-51,106,-133,106v-86,0,-117,-49,-110,-106","w":621},"\u0170":{"d":"158,-674r83,0r-76,399v-5,28,-8,57,-8,85v0,86,50,130,125,130v92,0,159,-62,188,-214r77,-400r83,0r-77,403v-39,201,-139,282,-282,282v-111,0,-197,-60,-197,-199v12,-174,59,-324,84,-486xm376,-828r95,0r-127,113r-64,0xm523,-828r96,0r-127,113r-65,0","w":621},"\u016a":{"d":"158,-674r83,0r-76,399v-5,28,-8,57,-8,85v0,86,50,130,125,130v92,0,159,-62,188,-214r77,-400r83,0r-77,403v-39,201,-139,282,-282,282v-111,0,-197,-60,-197,-199v12,-174,59,-324,84,-486xm300,-787r231,0r-10,54r-231,0","w":621},"\u0172":{"d":"366,125r10,48v-54,35,-162,24,-156,-53v0,-39,29,-80,63,-111v-123,7,-206,-55,-209,-197v12,-174,59,-324,84,-486r83,0r-76,399v-5,28,-8,57,-8,85v0,86,50,130,126,130v91,0,159,-62,188,-214r76,-400r83,0r-77,403v-26,136,-79,217,-158,255v-46,20,-105,67,-106,116v-1,41,50,37,77,25","w":621},"\u016e":{"d":"158,-674r83,0r-76,399v-5,28,-8,57,-8,85v0,86,50,130,126,130v91,0,158,-62,187,-214r77,-400r83,0r-77,403v-39,201,-139,282,-282,282v-111,0,-197,-60,-197,-199v12,-174,59,-324,84,-486xm410,-872v55,0,94,34,94,87v-1,55,-47,90,-103,90v-54,0,-93,-34,-94,-83v-1,-54,42,-94,103,-94xm405,-836v-28,0,-47,24,-47,56v0,27,18,49,45,49v29,0,49,-23,49,-54v0,-29,-17,-51,-47,-51","w":621},"\u0168":{"d":"158,-674r83,0r-76,399v-5,28,-8,57,-8,85v0,86,50,130,125,130v92,0,160,-62,189,-214r76,-400r83,0r-77,403v-38,201,-139,282,-282,282v-111,0,-197,-60,-197,-199v12,-174,59,-324,84,-486xm466,-721v-57,3,-115,-87,-137,5r-47,0v10,-59,41,-100,82,-100v45,-3,67,37,104,39v17,0,27,-13,35,-40r46,0v-11,62,-38,96,-83,96","w":621},"\u0174":{"d":"219,0r-89,0r-33,-674r84,0r14,404v3,87,1,133,0,176r2,0v65,-174,178,-403,257,-580r88,0r14,388v3,88,3,146,2,190r2,0v69,-200,165,-388,247,-578r87,0r-312,674r-88,0r-17,-383v-4,-79,-3,-117,2,-194r-3,0v-69,207,-171,385,-257,577xm493,-828r64,0r80,118r-68,0v-18,-23,-31,-51,-51,-72r-72,72r-74,0","w":829},"\u0176":{"d":"243,0r-82,0r53,-280r-130,-394r89,0r65,218v17,60,23,87,28,113r2,0r72,-116r146,-215r97,0r-287,393xm322,-828r64,0r80,118r-68,0v-18,-23,-31,-51,-51,-72r-72,72r-74,0","w":517},"\u0179":{"d":"-20,0r9,-51r458,-549r-1,-3r-320,0r14,-71r432,0r-11,54r-454,546r1,3r354,0r-13,71r-469,0xm408,-828r109,0r-137,118r-74,0","w":523},"\u017b":{"d":"-20,0r9,-51r458,-549r-1,-3r-320,0r14,-71r432,0r-11,54r-454,546r1,3r354,0r-13,71r-469,0xm358,-720v-26,0,-47,-22,-47,-49v0,-28,23,-53,52,-53v29,0,48,24,48,49v0,29,-23,53,-53,53","w":523},"\u0103":{"d":"427,0r-78,0v-2,-27,10,-81,9,-125v-52,101,-119,136,-188,136v-86,0,-139,-68,-139,-160v0,-169,124,-346,335,-346v47,0,97,8,131,18v-26,139,-75,331,-70,477xm375,-276r28,-146v-160,-41,-284,106,-286,258v0,54,19,107,83,107v69,0,151,-90,175,-219xm229,-683r50,0v-2,37,17,68,56,68v48,0,71,-35,80,-68r52,0v-13,73,-65,121,-134,121v-89,0,-112,-60,-104,-121"},"\u0101":{"d":"427,0r-78,0v-2,-27,10,-81,9,-125v-52,101,-119,136,-188,136v-86,0,-139,-68,-139,-160v0,-169,124,-346,335,-346v47,0,97,8,131,18v-26,139,-75,331,-70,477xm375,-276r28,-146v-160,-41,-284,106,-286,258v0,54,19,107,83,107v69,0,151,-90,175,-219xm236,-646r219,0r-10,53r-219,0"},"\u0105":{"d":"497,-477v-25,139,-74,331,-69,477r-20,0v-32,34,-58,76,-58,109v0,23,15,38,38,38v16,0,32,-4,45,-10r9,44v-22,19,-53,25,-80,25v-51,0,-80,-30,-80,-77v0,-53,50,-110,68,-133v1,-30,5,-74,11,-121r-2,0v-53,101,-120,136,-188,136v-86,0,-139,-68,-139,-160v0,-169,124,-346,335,-346v46,0,97,8,130,18xm376,-276r27,-146v-160,-41,-283,105,-285,258v0,54,19,107,83,107v70,0,151,-90,175,-219"},"\u0107":{"d":"353,-85r8,65v-25,13,-75,30,-140,30v-125,0,-186,-84,-186,-187v-7,-197,192,-380,397,-295r-24,65v-19,-9,-46,-18,-82,-18v-126,0,-205,124,-205,238v0,78,41,129,120,129v50,0,87,-15,112,-27xm345,-686r100,0r-134,143r-65,0","w":423},"\u010d":{"d":"353,-85r8,65v-25,13,-75,30,-140,30v-125,0,-186,-84,-186,-187v-7,-197,192,-380,397,-295r-24,65v-19,-9,-46,-18,-82,-18v-126,0,-205,124,-205,238v0,78,41,129,120,129v50,0,87,-15,112,-27xm331,-543r-60,0r-70,-143r63,0v16,30,26,65,45,92r72,-92r67,0","w":423},"\u0109":{"d":"353,-85r8,65v-25,13,-75,30,-140,30v-125,0,-186,-84,-186,-187v-7,-197,192,-380,397,-295r-24,65v-19,-9,-46,-18,-82,-18v-126,0,-205,124,-205,238v0,78,41,129,120,129v50,0,87,-15,112,-27xm286,-686r59,0r69,143r-62,0v-16,-29,-26,-64,-45,-91r-70,91r-67,0","w":423},"\u010b":{"d":"353,-85r8,65v-25,13,-75,30,-140,30v-125,0,-186,-84,-186,-187v-8,-197,192,-380,396,-295r-23,65v-20,-9,-46,-18,-82,-18v-126,0,-205,124,-205,238v0,78,41,129,120,129v50,0,87,-15,112,-27xm318,-569v-26,0,-46,-21,-46,-49v0,-31,23,-54,52,-54v29,0,47,22,47,49v0,31,-21,54,-53,54","w":423},"\u010f":{"d":"460,-710r83,0r-107,556v-9,51,-17,107,-20,154r-76,0v2,-31,13,-69,11,-96v-44,69,-105,107,-174,107v-94,0,-145,-77,-145,-176v-2,-198,177,-386,385,-313xm371,-239r32,-169v-142,-77,-291,75,-285,232v0,58,20,119,91,119v64,0,141,-73,162,-182xm570,-529r-25,-37v44,-17,80,-95,37,-137r63,-14v13,10,26,36,26,61v0,67,-54,111,-101,127","w":534},"\u0115":{"d":"365,-89r12,62v-36,20,-95,38,-160,38v-128,0,-184,-88,-184,-195v0,-146,108,-311,264,-311v92,0,142,55,142,125v0,127,-143,160,-322,157v-4,21,-1,66,10,92v19,44,58,65,108,65v57,0,100,-17,130,-33xm359,-369v0,-39,-30,-61,-74,-61v-79,0,-138,77,-159,153v131,2,233,-16,233,-92xm194,-683r50,0v-2,37,16,68,55,68v48,0,71,-35,80,-68r52,0v-13,73,-64,121,-133,121v-89,0,-113,-60,-104,-121","w":453},"\u011b":{"d":"365,-89r12,62v-36,20,-95,38,-160,38v-128,0,-184,-88,-184,-195v0,-146,108,-311,264,-311v92,0,142,55,142,125v0,127,-143,160,-322,157v-4,21,-1,66,10,92v19,44,58,65,108,65v57,0,100,-17,130,-33xm359,-369v0,-39,-30,-61,-74,-61v-79,0,-138,77,-159,153v131,2,233,-16,233,-92xm319,-543r-60,0r-69,-143r62,0v16,30,26,65,45,92r72,-92r66,0","w":453},"\u0117":{"d":"365,-89r12,62v-36,20,-95,38,-160,38v-128,0,-184,-88,-184,-195v0,-146,108,-311,264,-311v92,0,142,55,142,125v0,127,-143,160,-322,157v-4,21,-1,66,10,92v19,44,58,65,108,65v57,0,100,-17,130,-33xm359,-369v0,-39,-30,-61,-74,-61v-79,0,-138,77,-159,153v131,2,233,-16,233,-92xm307,-569v-26,0,-46,-21,-46,-49v0,-31,23,-54,52,-54v29,0,47,22,47,49v0,31,-21,54,-53,54","w":453},"\u0113":{"d":"365,-89r12,62v-36,20,-95,38,-160,38v-128,0,-184,-88,-184,-195v0,-146,108,-311,264,-311v92,0,142,55,142,125v0,127,-143,160,-322,157v-4,21,-1,66,10,92v19,44,58,65,108,65v57,0,100,-17,130,-33xm359,-369v0,-39,-30,-61,-74,-61v-79,0,-138,77,-159,153v131,2,233,-16,233,-92xm197,-646r219,0r-10,53r-219,0","w":453},"\u0119":{"d":"359,-369v0,-39,-30,-61,-74,-61v-79,0,-138,77,-158,153v130,2,232,-16,232,-92xm377,-28v-53,24,-143,75,-141,131v-2,43,47,41,77,27r10,46v-58,37,-161,27,-156,-51v-1,-46,36,-87,72,-116v-140,12,-208,-80,-206,-193v0,-146,108,-311,264,-311v92,0,142,55,142,125v0,127,-143,160,-322,157v-4,21,-1,66,10,92v20,44,58,65,107,65v58,0,101,-17,131,-33","w":453},"\u011f":{"d":"10,175r23,-65v29,19,78,32,128,32v82,0,146,-41,174,-172v3,-23,16,-53,14,-73v-43,69,-102,103,-168,103v-98,0,-148,-82,-148,-168v0,-164,120,-327,307,-327v56,0,118,16,156,34r-75,400v-19,103,-47,173,-97,217v-82,71,-231,64,-314,19xm374,-250r31,-162v-16,-7,-46,-16,-80,-16v-121,0,-205,127,-205,246v-1,54,19,116,93,116v71,0,143,-90,161,-184xm230,-683r51,0v-2,37,16,68,55,68v48,0,71,-35,79,-68r52,0v-12,73,-64,121,-133,121v-89,0,-112,-60,-104,-121","w":524},"\u011d":{"d":"10,175r23,-65v29,19,78,32,128,32v82,0,146,-41,174,-172v3,-23,16,-53,14,-73v-43,69,-102,103,-168,103v-98,0,-148,-82,-148,-168v0,-164,120,-327,307,-327v56,0,118,16,156,34r-75,400v-19,103,-47,173,-97,217v-82,71,-231,64,-314,19xm374,-250r31,-162v-16,-7,-46,-16,-80,-16v-121,0,-205,127,-205,246v-1,54,19,116,93,116v71,0,143,-90,161,-184xm316,-686r60,0r69,143r-63,0v-16,-29,-26,-64,-44,-91r-70,91r-67,0","w":524},"\u0123":{"d":"10,175r23,-65v29,19,78,32,128,32v82,0,146,-41,174,-172r16,-73r-3,0v-42,69,-100,103,-167,103v-98,0,-148,-82,-148,-168v0,-164,120,-327,307,-327v56,0,117,16,155,34r-74,400v-19,103,-47,173,-97,217v-81,71,-232,64,-314,19xm373,-250r31,-162v-15,-7,-45,-16,-79,-16v-121,0,-205,127,-205,246v-1,54,19,116,93,116v71,0,142,-90,160,-184xm426,-710r10,42v-42,6,-88,28,-88,75v0,21,11,38,24,49r-63,14v-14,-11,-28,-33,-28,-60v0,-78,77,-114,145,-120","w":524},"\u0121":{"d":"10,175r23,-65v29,19,78,32,128,32v82,0,146,-41,174,-172v3,-23,16,-53,14,-73v-42,69,-101,103,-168,103v-98,0,-148,-82,-148,-168v0,-164,120,-327,307,-327v56,0,117,16,155,34r-74,400v-19,103,-47,173,-97,217v-81,71,-232,64,-314,19xm374,-250r30,-162v-15,-7,-45,-16,-79,-16v-121,0,-205,127,-205,246v-1,54,19,116,93,116v71,0,143,-90,161,-184xm336,-569v-26,0,-46,-21,-46,-49v0,-31,23,-54,52,-54v29,0,47,22,47,49v0,31,-21,54,-53,54","w":524},"\u0125":{"d":"111,0r-83,0r135,-710r83,0r-60,311r2,0v41,-59,100,-96,173,-96v55,0,120,33,120,130v-8,132,-43,243,-62,365r-83,0v19,-118,51,-218,60,-347v0,-44,-21,-79,-75,-79v-64,0,-145,75,-165,183xm194,-853r64,0r80,118r-68,0v-18,-23,-31,-51,-51,-72r-72,72r-74,0","w":534},"\u012d":{"d":"111,0r-83,0r92,-484r83,0xm82,-683r50,0v-2,37,16,68,55,68v48,0,71,-35,80,-68r52,0v-12,73,-64,121,-133,121v-89,0,-113,-60,-104,-121","w":229},"\u012b":{"d":"112,0r-83,0r92,-484r83,0xm86,-646r219,0r-10,53r-219,0","w":229},"\u012f":{"d":"183,-571v-29,0,-49,-23,-49,-54v1,-33,26,-59,57,-59v31,0,52,23,52,54v-1,35,-26,59,-60,59xm204,-484r-93,484r-28,0v-30,34,-54,75,-54,107v-2,43,51,48,83,30r9,44v-54,46,-166,30,-160,-52v0,-53,50,-110,68,-133r92,-480r83,0","w":229},"\u0129":{"d":"112,0r-83,0r92,-484r83,0xm240,-575v-42,2,-66,-35,-101,-38v-17,0,-24,19,-29,45r-48,0v7,-58,34,-100,77,-100v52,-6,114,93,131,-3r47,0v-8,62,-30,96,-77,96","w":229},"\u0135":{"d":"126,-484r82,0r-91,483v-22,147,-78,229,-228,204r10,-65v79,13,105,-4,132,-122xm166,-686r58,0r69,143r-62,0v-16,-30,-25,-67,-44,-94r-70,94r-67,0","w":227},"\u0137":{"d":"111,0r-82,0r134,-710r83,0r-85,445r217,-219r103,0r-211,199r144,285r-91,0r-116,-239r-61,55xm85,221r-10,-42v41,-6,87,-29,87,-75v0,-21,-11,-38,-24,-49r66,-14v14,10,28,33,28,59v0,79,-77,115,-147,121","w":456},"\u013a":{"d":"112,0r-83,0r135,-710r83,0xm261,-860r109,0r-137,118r-73,0","w":229},"\u013e":{"d":"111,0r-83,0r136,-710r83,0xm276,-529r-26,-36v41,-15,80,-97,36,-138r63,-14v13,10,26,36,26,61v0,72,-56,114,-99,127","w":236},"\u013c":{"d":"112,0r-83,0r135,-710r83,0xm-30,221r-10,-42v41,-6,87,-29,87,-75v0,-21,-11,-38,-24,-49r66,-14v14,10,28,33,28,59v0,79,-77,115,-147,121","w":229},"\u0140":{"d":"111,0r-82,0r135,-710r83,0xm268,-314v-26,0,-45,-20,-45,-48v0,-30,23,-53,50,-53v28,0,46,22,46,48v0,30,-20,53,-51,53","w":265},"\u0144":{"d":"111,0r-82,0r64,-343v11,-54,18,-101,23,-141r74,0v-2,30,-13,68,-10,95v43,-68,109,-106,179,-106v58,0,123,33,123,134v-11,126,-44,242,-63,361r-82,0r53,-280v12,-68,13,-148,-70,-146v-59,0,-143,71,-165,191xm381,-686r100,0r-134,143r-65,0","w":534},"\u0148":{"d":"111,0r-82,0r64,-343v11,-54,18,-101,23,-141r74,0v-2,30,-13,68,-10,95v43,-68,109,-106,179,-106v58,0,123,33,123,134v-11,126,-44,242,-63,361r-82,0r53,-280v12,-68,13,-148,-70,-146v-59,0,-143,71,-165,191xm342,-543r-60,0r-70,-143r63,0v16,30,26,65,45,92r72,-92r67,0","w":534},"\u0146":{"d":"111,0r-82,0r64,-343v11,-54,18,-101,23,-141r74,0v-2,30,-13,68,-10,95v43,-68,109,-106,179,-106v58,0,123,33,123,134v-11,126,-44,242,-63,361r-82,0r53,-280v12,-68,13,-148,-70,-146v-59,0,-143,71,-165,191xm125,221r-10,-42v41,-6,87,-29,87,-75v0,-21,-11,-38,-24,-49r66,-14v14,10,28,33,28,59v0,79,-77,115,-147,121","w":534},"\u014f":{"d":"224,11v-121,0,-189,-90,-189,-199v0,-160,111,-307,268,-307v131,0,190,99,190,201v0,150,-106,305,-269,305xm235,-55v98,0,172,-126,172,-239v0,-56,-26,-135,-113,-135v-104,0,-173,127,-173,238v0,79,44,136,114,136xm225,-683r50,0v-2,37,17,68,56,68v47,0,71,-35,79,-68r52,0v-12,73,-64,121,-133,121v-89,0,-112,-60,-104,-121"},"\u0151":{"d":"224,11v-121,0,-189,-90,-189,-199v0,-160,111,-307,268,-307v131,0,190,99,190,201v0,150,-106,305,-269,305xm235,-55v98,0,172,-126,172,-239v0,-56,-26,-135,-113,-135v-104,0,-173,127,-173,238v0,79,44,136,114,136xm290,-686r87,0r-125,143r-56,0xm435,-686r87,0r-125,143r-56,0"},"\u014d":{"d":"224,11v-121,0,-189,-90,-189,-199v0,-160,111,-307,268,-307v131,0,190,99,190,201v0,150,-106,305,-269,305xm235,-55v98,0,172,-126,172,-239v0,-56,-26,-135,-113,-135v-104,0,-173,127,-173,238v0,79,44,136,114,136xm233,-646r219,0r-10,53r-219,0"},"\u0155":{"d":"111,0r-82,0r59,-312v11,-63,19,-127,24,-172r73,0v-4,34,-8,68,-13,105r3,0v37,-72,87,-126,172,-114r-16,82v-6,-1,-14,-2,-23,-2v-72,0,-136,87,-157,200xm279,-686r100,0r-133,143r-66,0","w":318},"\u0159":{"d":"111,0r-82,0r59,-312v11,-63,19,-127,24,-172r73,0v-4,34,-8,68,-13,105r3,0v37,-72,87,-126,172,-114r-16,82v-6,-1,-14,-2,-23,-2v-72,0,-136,87,-157,200xm258,-543r-59,0r-70,-143r62,0r43,92r3,0r71,-92r67,0","w":318},"\u0157":{"d":"111,0r-82,0r59,-312v11,-63,19,-127,24,-172r73,0v-4,34,-8,68,-13,105r3,0v37,-72,87,-126,172,-114r-16,82v-6,-1,-14,-2,-23,-2v-72,0,-136,87,-157,200xm1,221r-10,-42v41,-6,87,-29,87,-75v0,-21,-11,-38,-24,-49r66,-14v14,10,28,33,28,59v0,79,-77,115,-147,121","w":318},"\u015b":{"d":"9,-23r24,-61v23,14,64,30,104,30v56,0,92,-36,92,-79v0,-38,-17,-61,-68,-89v-56,-31,-87,-74,-87,-124v0,-84,73,-149,175,-149v44,0,83,12,101,24r-23,63v-17,-10,-48,-22,-84,-22v-50,0,-86,31,-86,73v0,35,23,57,67,81v54,30,90,73,90,127v0,102,-82,159,-184,159v-52,-1,-99,-16,-121,-33xm290,-686r99,0r-132,143r-66,0","w":373},"\u015f":{"d":"350,-471r-23,63v-17,-10,-48,-22,-84,-22v-50,0,-86,31,-86,73v0,35,23,57,67,81v54,30,90,73,90,127v0,82,-54,136,-129,153r-34,46v32,7,54,32,54,64v5,79,-115,106,-174,69r18,-42v30,20,94,23,96,-22v0,-22,-23,-35,-65,-39r49,-70v-47,1,-97,-15,-120,-33r24,-61v23,14,64,30,104,30v56,0,92,-36,92,-79v0,-38,-17,-61,-68,-89v-56,-31,-87,-74,-87,-124v0,-84,73,-149,175,-149v44,0,83,12,101,24","w":373},"\u015d":{"d":"9,-23r24,-61v23,14,64,30,104,30v56,0,92,-36,92,-79v0,-38,-17,-61,-68,-89v-56,-31,-87,-74,-87,-124v0,-84,73,-149,175,-149v44,0,83,12,101,24r-23,63v-17,-10,-48,-22,-84,-22v-50,0,-86,31,-86,73v0,35,23,57,67,81v54,30,90,73,90,127v0,102,-82,159,-184,159v-52,-1,-99,-16,-121,-33xm238,-686r59,0r69,143r-62,0v-16,-29,-26,-64,-45,-91r-69,91r-68,0","w":373},"\u0165":{"d":"155,-573r87,-27r-22,116r116,0r-13,65r-116,0r-44,235v-10,50,-28,124,36,124v15,0,28,-1,39,-4r-4,65v-15,6,-40,9,-64,9v-113,-4,-112,-90,-91,-184r47,-245r-69,0r12,-65r69,0xm317,-542r-18,-40v46,-9,70,-88,29,-123r62,-13v15,10,29,36,29,62v0,70,-60,106,-102,114","w":313},"\u0163":{"d":"155,-574r87,-26r-22,116r116,0r-13,65r-116,0r-44,235v-10,50,-28,124,36,124v15,0,28,-1,39,-4r-4,65v-15,6,-40,9,-64,9v-113,-4,-112,-90,-91,-184r47,-245r-69,0r12,-65r69,0xm21,220r-10,-41v41,-7,87,-29,87,-75v0,-21,-11,-39,-24,-49r66,-14v14,10,28,33,28,59v0,78,-77,114,-147,120","w":313},"\u016d":{"d":"417,-484r83,0r-65,343v-11,54,-17,101,-22,141r-74,0v2,-29,13,-65,10,-91v-43,63,-106,102,-170,102v-62,0,-128,-30,-128,-140v9,-123,43,-240,62,-355r82,0r-51,270v-15,75,-17,155,69,155v60,0,137,-71,157,-177xm215,-683r50,0v-2,37,16,68,55,68v48,0,71,-35,79,-68r52,0v-12,73,-64,121,-132,121v-89,0,-112,-60,-104,-121","w":526},"\u0171":{"d":"417,-484r83,0r-65,343v-11,54,-17,101,-22,141r-74,0v2,-29,13,-65,10,-91v-43,63,-106,102,-170,102v-62,0,-128,-30,-128,-140v9,-123,43,-240,62,-355r82,0r-51,270v-15,75,-17,155,69,155v60,0,137,-71,157,-177xm295,-686r87,0r-125,143r-55,0xm439,-686r88,0r-125,143r-56,0","w":526},"\u016b":{"d":"417,-484r83,0r-65,343v-11,54,-17,101,-22,141r-74,0v2,-29,13,-65,10,-91v-43,63,-106,102,-170,102v-62,0,-128,-30,-128,-140v9,-123,43,-240,62,-355r82,0r-51,270v-15,75,-17,155,69,155v60,0,137,-71,157,-177xm227,-646r218,0r-10,53r-218,0","w":526},"\u0173":{"d":"500,-484r-65,343v-10,54,-17,101,-22,141r-19,-4v-30,34,-54,75,-54,107v-2,43,51,48,83,30r9,44v-54,46,-166,30,-160,-52v0,-53,50,-110,68,-133v1,-26,12,-60,9,-83v-43,63,-106,102,-170,102v-62,0,-128,-30,-128,-140v9,-123,43,-240,62,-355r82,0r-51,270v-15,75,-17,155,69,155v60,0,137,-71,157,-177r47,-248r83,0","w":526},"\u016f":{"d":"417,-484r83,0r-65,343v-11,54,-17,101,-22,141r-74,0v2,-29,13,-65,10,-91v-43,63,-106,102,-170,102v-62,0,-128,-30,-128,-140v9,-123,43,-240,62,-355r82,0r-51,270v-15,75,-17,155,69,155v60,0,137,-71,157,-177xm343,-721v53,0,95,35,95,92v-1,58,-50,95,-103,95v-54,0,-95,-36,-96,-88v-1,-58,44,-99,104,-99xm339,-683v-29,0,-50,25,-50,58v0,28,19,53,47,53v31,0,52,-25,52,-59v0,-29,-18,-52,-49,-52","w":526},"\u0169":{"d":"417,-484r83,0r-65,343v-11,54,-17,101,-22,141r-74,0v2,-29,13,-65,10,-91v-43,63,-106,102,-170,102v-62,0,-128,-30,-128,-140v9,-123,43,-240,62,-355r82,0r-51,270v-15,75,-17,155,69,155v60,0,137,-71,157,-177xm389,-575v-42,2,-66,-35,-101,-38v-17,0,-24,19,-29,45r-48,0v7,-58,34,-100,77,-100v52,-6,114,93,131,-3r47,0v-8,62,-30,96,-77,96","w":526},"\u0175":{"d":"61,-484r82,0r17,272v4,60,3,91,2,130r2,0v51,-129,136,-276,198,-402r72,0r31,276v4,53,8,94,7,126r3,0v43,-139,118,-273,176,-402r84,0r-239,484r-77,0r-32,-263v-7,-44,-3,-91,-9,-129v-56,142,-129,261,-195,392r-77,0xm404,-686r60,0r68,143r-62,0v-16,-29,-26,-64,-44,-91r-70,91r-68,0","w":707},"\u0177":{"d":"48,-484r86,0r70,388r2,0v13,-31,27,-65,52,-119r124,-269r88,0r-182,368v-52,104,-101,189,-167,254v-54,55,-113,78,-140,84r-21,-72v70,-22,145,-82,183,-158v4,-8,4,-13,2,-22xm264,-686r60,0r68,143r-62,0v-16,-29,-26,-64,-44,-91r-70,91r-68,0","w":441},"\u017a":{"d":"-21,0r9,-51r235,-262v41,-45,68,-70,101,-100r0,-3r-248,0r14,-68r347,0r-11,55r-231,258r-101,103r269,0r-14,68r-370,0xm319,-686r100,0r-133,143r-66,0","w":415},"\u017c":{"d":"-21,0r9,-51r235,-262v41,-45,68,-70,101,-100r0,-3r-248,0r14,-68r347,0r-11,55r-231,258v-43,47,-69,72,-100,100r0,3r267,0r-13,68r-370,0xm277,-569v-26,0,-46,-21,-46,-49v0,-31,23,-54,52,-54v29,0,47,22,47,49v0,31,-21,54,-53,54","w":415},"\u00ad":{"d":"48,-302r239,0r-12,64r-239,0","w":307},"\u00a0":{"w":182}}});