var indicator_img_path="/images/indicator.gif";var indicator_img_html="<img name=\"ibox_indicator\" src=\""+indicator_img_path+"\" alt=\"Loading...\" style=\"width:128px;height:128px;\"/>";var opacity_level=8;var ibAttr="rel";var imgPreloader=new Image();function init_ibox(){var elem_wrapper="ibox";createIbox(document.getElementsByTagName("body")[0]);var docRoot=document.getElementsByTagName("a");var e;for(var i=0;i<docRoot.length-1;i++){e=docRoot[i];if(e.getAttribute(ibAttr)){var t=e.getAttribute(ibAttr);if((t.indexOf("ibox")!=-1)||t.toLowerCase()=="ibox"){e.onclick=function(){var t=this.getAttribute(ibAttr);var params=parseQuery(t.substr(5,999));var url=this.href;if(this.target!=""){url=this.target}
var title=this.title;if(showIbox(url,title,params)){showBG();window.onscroll=maintPos;window.onresize=maintPos;}
return false;};}}}}
showBG=function(){var box_w=getElem('ibox_w');box_w.style.opacity=0;box_w.style.filter='alpha(opacity=0)';setBGOpacity=setOpacity;for(var i=0;i<=opacity_level;i++){setTimeout("setIboxOpacity('ibox_w',"+i+")",70*i);}
box_w.style.display="";var pagesize=new getPageSize();var scrollPos=new getScrollPos();var ua=navigator.userAgent;if(ua.indexOf("MSIE ")!=-1){box_w.style.width=pagesize.width+'px';}
box_w.style.height=pagesize.height+scrollPos.scrollY+'px';}
hideBG=function(){var box_w=getElem('ibox_w');box_w.style.display="none";}
var loadCancelled=false;showIndicator=function(){var ibox_p=getElem('ibox_progress');ibox_p.style.display="";posToCenter(ibox_p);ibox_p.onclick=function(){hideIbox();hideIndicator();loadCancelled=true;}}
hideIndicator=function(){var ibox_p=getElem('ibox_progress');ibox_p.style.display="none";ibox_p.onclick=null;}
createIbox=function(elem){var strHTML="<div id=\"ibox_w\" style=\"display:none;\"></div>";strHTML+="<div id=\"ibox_progress\" style=\"display:none;\">";strHTML+=indicator_img_html;strHTML+="</div>";strHTML+="<div id=\"ibox_wrapper\" style=\"display:none\">";strHTML+="<div id=\"ibox_content\"></div>";strHTML+="<div id=\"ibox_footer_wrapper\"><div id=\"ibox_close\" style=\"float:right;\">";strHTML+="<a id=\"ibox_close_a\" href=\"javascript:void(null);\" ><img src=\"images/close.gif\" alt=\"Inchide\" border=\"0\" width=\"69\" height=\"11\"></a></div>";strHTML+="<div id=\"ibox_footer\">&nbsp;</div></div></div></div>";var docBody=document.getElementsByTagName("body")[0];var ibox=document.createElement("div");ibox.setAttribute("id","ibox");ibox.style.display='';ibox.innerHTML=strHTML;elem.appendChild(ibox);}
var ibox_w_height=0;showIbox=function(url,title,params){var ibox=getElem('ibox_wrapper');var ibox_type=0;var ibox_footer=getElem('ibox_footer');if(title!=""){ibox_footer.innerHTML=title;}else{ibox_footer.innerHTML="&nbsp;";}
var urlString=/\.jpg|\.jpeg|\.png|\.gif|\.html|\.htm|\.php|\.cfm|\.asp|\.aspx|\.jsp|\.jst|\.rb|\.rhtml|\.txt/g;var urlType=url.match(urlString);if(urlType=='.jpg'||urlType=='.jpeg'||urlType=='.png'||urlType=='.gif'){ibox_type=1;}else if(url.indexOf("#")!=-1){ibox_type=2;}else if(urlType=='.htm'||urlType=='.html'||urlType=='.php'||urlType=='.asp'||urlType=='.aspx'||urlType=='.jsp'||urlType=='.jst'||urlType=='.rb'||urlType=='.txt'||urlType=='.rhtml'||urlType=='.cfm'){ibox_type=3;}else{if(params['type']){ibox_type=parseInt(params['type']);}
else{hideIbox();return false;}}
ibox_type=parseInt(ibox_type);switch(ibox_type){case 1:showIndicator();imgPreloader=new Image();imgPreloader.onload=function(){imgPreloader=resizeImageToScreen(imgPreloader);hideIndicator();var strHTML="<img name=\"ibox_img\" src=\""+url+"\" style=\"width:"+imgPreloader.width+"px;height:"+imgPreloader.height+"px;border:0;cursor:hand;margin:0;padding:0;position:absolute;\"/>";if(loadCancelled==false){ibox.style.height=imgPreloader.height+'px';ibox.style.width=imgPreloader.width+'px';ibox.style.display="";ibox.style.visibility="hidden";posToCenter(ibox);ibox.style.visibility="visible";setIBoxContent(strHTML);}}
loadCancelled=false;imgPreloader.src=url;break;case 2:var strHTML="";if(params['height']){ibox.style.height=params['height']+'px';}
else{ibox.style.height='280px';}
if(params['width']){ibox.style.width=params['width']+'px';}
else{ibox.style.width='450px';}
ibox.style.display="";ibox.style.visibility="hidden";posToCenter(ibox);ibox.style.visibility="visible";getElem('ibox_content').style.overflow="auto";var elemSrcId=url.substr(url.indexOf("#")+1,1000);var elemSrc=getElem(elemSrcId);if(elemSrc){strHTML=elemSrc.innerHTML;}
setIBoxContent(strHTML);break;case 3:showIndicator();http.open('get',url,true);http.onreadystatechange=function(){if(http.readyState==4){hideIndicator();if(params['height']){ibox.style.height=params['height']+'px';}
else{ibox.style.height='280px';}
if(params['width']){ibox.style.width=params['width']+'px';}
else{ibox.style.width='450px';}
ibox.style.display="";ibox.style.visibility="hidden";posToCenter(ibox);ibox.style.visibility="visible";getElem('ibox_content').style.overflow="auto";var response=http.responseText;setIBoxContent(response);}}
http.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");http.send(null);break;default:}
ibox.style.opacity=0;ibox.style.filter='alpha(opacity=0)';var ibox_op_level=10;setIboxOpacity=setOpacity;for(var i=0;i<=ibox_op_level;i++){setTimeout("setIboxOpacity('ibox_wrapper',"+i+")",30*i);}
if(ibox_type==2||ibox_type==3){ibox.onclick=null;getElem("ibox_close_a").onclick=function(){hideIbox();}}else{ibox.onclick=hideIbox;getElem("ibox_close_a").onclick=null;}
return true;}
setOpacity=function(elemid,value){var e=getElem(elemid);e.style.opacity=value/10;e.style.filter='alpha(opacity='+value*10+')';}
resizeImageToScreen=function(objImg){var pagesize=new getPageSize();var x=pagesize.width-100;var y=pagesize.height-100;if(objImg.width>x){objImg.height=objImg.height*(x/objImg.width);objImg.width=x;if(objImg.height>y){objImg.width=objImg.width*(y/objImg.height);objImg.height=y;}}
else if(objImg.height>y){objImg.width=objImg.width*(y/objImg.height);objImg.height=y;if(objImg.width>x){objImg.height=objImg.height*(x/objImg.width);objImg.width=x;}}
return objImg;}
maintPos=function(){var ibox=getElem('ibox_wrapper');var box_w=getElem('ibox_w');var pagesize=new getPageSize();var scrollPos=new getScrollPos();var ua=navigator.userAgent;if(ua.indexOf("MSIE ")!=-1){box_w.style.width=pagesize.width+'px';}
if(ua.indexOf("Opera/9")!=-1){box_w.style.height=document.body.scrollHeight+'px';}
else{box_w.style.height=pagesize.height+scrollPos.scrollY+'px';}
posToCenter(ibox);}
hideIbox=function(){hideBG();var ibox=getElem('ibox_wrapper');ibox.style.display="none";clearIboxContent();window.onscroll=null;}
posToCenter=function(elem){var scrollPos=new getScrollPos();var pageSize=new getPageSize();var emSize=new getElementSize(elem);var x=Math.round(pageSize.width/2)-(emSize.width/2)+scrollPos.scrollX;var y=Math.round(pageSize.height/2)-(emSize.height/2)+scrollPos.scrollY;elem.style.left=x+'px';elem.style.top=y+'px';}
getScrollPos=function(){var docElem=document.documentElement;this.scrollX=self.pageXOffset||(docElem&&docElem.scrollLeft)||document.body.scrollLeft;this.scrollY=self.pageYOffset||(docElem&&docElem.scrollTop)||document.body.scrollTop;}
getPageSize=function(){var docElem=document.documentElement
this.width=self.innerWidth||(docElem&&docElem.clientWidth)||document.body.clientWidth;this.height=self.innerHeight||(docElem&&docElem.clientHeight)||document.body.clientHeight;}
getElementSize=function(elem){this.width=elem.offsetWidth||elem.style.pixelWidth;this.height=elem.offsetHeight||elem.style.pixelHeight;}
setIBoxContent=function(str){clearIboxContent();var e=getElem('ibox_content');e.style.overflow="auto";e.innerHTML=str;}
clearIboxContent=function(){var e=getElem('ibox_content');e.innerHTML="";}
getElem=function(elemId){return document.getElementById(elemId);}
parseQuery=function(query){var Params=new Object();if(!query)return Params;var Pairs=query.split(/[;&]/);for(var i=0;i<Pairs.length;i++){var KeyVal=Pairs[i].split('=');if(!KeyVal||KeyVal.length!=2)continue;var key=unescape(KeyVal[0]);var val=unescape(KeyVal[1]);val=val.replace(/\+/g,' ');Params[key]=val;}
return Params;}
createRequestObject=function(){var xmlhttp;/*@cc_on
	@if (@_jscript_version>= 5)
			try {xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
			} catch (e) {
					try {xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");}
					catch (E) {xmlhttp = false;}
			}
	@else
		xmlhttp = false;
	@end @*/
if(!xmlhttp&&typeof XMLHttpRequest!="undefined"){try{xmlhttp=new XMLHttpRequest();}catch(e){xmlhttp=false;}}
return xmlhttp;}
var http=createRequestObject();function addEvent(obj,evType,fn){if(obj.addEventListener){obj.addEventListener(evType,fn,false);return true;}else if(obj.attachEvent){var r=obj.attachEvent("on"+evType,fn);return r;}else{return false;}}
addEvent(window,'load',init_ibox);var swfobject=function(){var UNDEF="undefined",OBJECT="object",SHOCKWAVE_FLASH="Shockwave Flash",SHOCKWAVE_FLASH_AX="ShockwaveFlash.ShockwaveFlash",FLASH_MIME_TYPE="application/x-shockwave-flash",EXPRESS_INSTALL_ID="SWFObjectExprInst",win=window,doc=document,nav=navigator,domLoadFnArr=[],regObjArr=[],timer=null,storedAltContent=null,storedAltContentId=null,isDomLoaded=false,isExpressInstallActive=false;var ua=function(){var w3cdom=typeof doc.getElementById!=UNDEF&&typeof doc.getElementsByTagName!=UNDEF&&typeof doc.createElement!=UNDEF&&typeof doc.appendChild!=UNDEF&&typeof doc.replaceChild!=UNDEF&&typeof doc.removeChild!=UNDEF&&typeof doc.cloneNode!=UNDEF,playerVersion=[0,0,0],d=null;if(typeof nav.plugins!=UNDEF&&typeof nav.plugins[SHOCKWAVE_FLASH]==OBJECT){d=nav.plugins[SHOCKWAVE_FLASH].description;if(d){d=d.replace(/^.*\s+(\S+\s+\S+$)/,"$1");playerVersion[0]=parseInt(d.replace(/^(.*)\..*$/,"$1"),10);playerVersion[1]=parseInt(d.replace(/^.*\.(.*)\s.*$/,"$1"),10);playerVersion[2]=/r/.test(d)?parseInt(d.replace(/^.*r(.*)$/,"$1"),10):0;}}
else if(typeof win.ActiveXObject!=UNDEF){var a=null,fp6Crash=false;try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX+".7");}
catch(e){try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX+".6");playerVersion=[6,0,21];a.AllowScriptAccess="always";}
catch(e){if(playerVersion[0]==6){fp6Crash=true;}}
if(!fp6Crash){try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX);}
catch(e){}}}
if(!fp6Crash&&a){try{d=a.GetVariable("$version");if(d){d=d.split(" ")[1].split(",");playerVersion=[parseInt(d[0],10),parseInt(d[1],10),parseInt(d[2],10)];}}
catch(e){}}}
var u=nav.userAgent.toLowerCase(),p=nav.platform.toLowerCase(),webkit=/webkit/.test(u)?parseFloat(u.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,ie=false,windows=p?/win/.test(p):/win/.test(u),mac=p?/mac/.test(p):/mac/.test(u);/*@cc_on
			ie = true;
			@if (@_win32)
				windows = true;
			@elif (@_mac)
				mac = true;
			@end
		@*/
return{w3cdom:w3cdom,pv:playerVersion,webkit:webkit,ie:ie,win:windows,mac:mac};}();var onDomLoad=function(){if(!ua.w3cdom){return;}
addDomLoadEvent(main);if(ua.ie&&ua.win){try{doc.write("<scr"+"ipt id=__ie_ondomload defer=true src=//:></scr"+"ipt>");var s=getElementById("__ie_ondomload");if(s){s.onreadystatechange=function(){if(this.readyState=="complete"){this.parentNode.removeChild(this);callDomLoadFunctions();}};}}
catch(e){}}
if(ua.webkit&&typeof doc.readyState!=UNDEF){timer=setInterval(function(){if(/loaded|complete/.test(doc.readyState)){callDomLoadFunctions();}},10);}
if(typeof doc.addEventListener!=UNDEF){doc.addEventListener("DOMContentLoaded",callDomLoadFunctions,null);}
addLoadEvent(callDomLoadFunctions);}();function callDomLoadFunctions(){if(isDomLoaded){return;}
if(ua.ie&&ua.win){var s=createElement("span");try{var t=doc.getElementsByTagName("body")[0].appendChild(s);t.parentNode.removeChild(t);}
catch(e){return;}}
isDomLoaded=true;if(timer){clearInterval(timer);timer=null;}
var dl=domLoadFnArr.length;for(var i=0;i<dl;i++){domLoadFnArr[i]();}}
function addDomLoadEvent(fn){if(isDomLoaded){fn();}
else{domLoadFnArr[domLoadFnArr.length]=fn;}}
function addLoadEvent(fn){if(typeof win.addEventListener!=UNDEF){win.addEventListener("load",fn,false);}
else if(typeof doc.addEventListener!=UNDEF){doc.addEventListener("load",fn,false);}
else if(typeof win.attachEvent!=UNDEF){win.attachEvent("onload",fn);}
else if(typeof win.onload=="function"){var fnOld=win.onload;win.onload=function(){fnOld();fn();};}
else{win.onload=fn;}}
function main(){var rl=regObjArr.length;for(var i=0;i<rl;i++){var id=regObjArr[i].id;if(ua.pv[0]>0){var obj=getElementById(id);if(obj){regObjArr[i].width=obj.getAttribute("width")?obj.getAttribute("width"):"0";regObjArr[i].height=obj.getAttribute("height")?obj.getAttribute("height"):"0";if(hasPlayerVersion(regObjArr[i].swfVersion)){if(ua.webkit&&ua.webkit<312){fixParams(obj);}
setVisibility(id,true);}
else if(regObjArr[i].expressInstall&&!isExpressInstallActive&&hasPlayerVersion("6.0.65")&&(ua.win||ua.mac)){showExpressInstall(regObjArr[i]);}
else{displayAltContent(obj);}}}
else{setVisibility(id,true);}}}
function fixParams(obj){var nestedObj=obj.getElementsByTagName(OBJECT)[0];if(nestedObj){var e=createElement("embed"),a=nestedObj.attributes;if(a){var al=a.length;for(var i=0;i<al;i++){if(a[i].nodeName.toLowerCase()=="data"){e.setAttribute("src",a[i].nodeValue);}
else{e.setAttribute(a[i].nodeName,a[i].nodeValue);}}}
var c=nestedObj.childNodes;if(c){var cl=c.length;for(var j=0;j<cl;j++){if(c[j].nodeType==1&&c[j].nodeName.toLowerCase()=="param"){e.setAttribute(c[j].getAttribute("name"),c[j].getAttribute("value"));}}}
obj.parentNode.replaceChild(e,obj);}}
function fixObjectLeaks(id){if(ua.ie&&ua.win&&hasPlayerVersion("8.0.0")){win.attachEvent("onunload",function(){var obj=getElementById(id);if(obj){for(var i in obj){if(typeof obj[i]=="function"){obj[i]=function(){};}}
obj.parentNode.removeChild(obj);}});}}
function showExpressInstall(regObj){isExpressInstallActive=true;var obj=getElementById(regObj.id);if(obj){if(regObj.altContentId){var ac=getElementById(regObj.altContentId);if(ac){storedAltContent=ac;storedAltContentId=regObj.altContentId;}}
else{storedAltContent=abstractAltContent(obj);}
if(!(/%$/.test(regObj.width))&&parseInt(regObj.width,10)<310){regObj.width="310";}
if(!(/%$/.test(regObj.height))&&parseInt(regObj.height,10)<137){regObj.height="137";}
doc.title=doc.title.slice(0,47)+" - Flash Player Installation";var pt=ua.ie&&ua.win?"ActiveX":"PlugIn",dt=doc.title,fv="MMredirectURL="+win.location+"&MMplayerType="+pt+"&MMdoctitle="+dt,replaceId=regObj.id;if(ua.ie&&ua.win&&obj.readyState!=4){var newObj=createElement("div");replaceId+="SWFObjectNew";newObj.setAttribute("id",replaceId);obj.parentNode.insertBefore(newObj,obj);obj.style.display="none";win.attachEvent("onload",function(){obj.parentNode.removeChild(obj);});}
createSWF({data:regObj.expressInstall,id:EXPRESS_INSTALL_ID,width:regObj.width,height:regObj.height},{flashvars:fv},replaceId);}}
function displayAltContent(obj){if(ua.ie&&ua.win&&obj.readyState!=4){var el=createElement("div");obj.parentNode.insertBefore(el,obj);el.parentNode.replaceChild(abstractAltContent(obj),el);obj.style.display="none";win.attachEvent("onload",function(){obj.parentNode.removeChild(obj);});}
else{obj.parentNode.replaceChild(abstractAltContent(obj),obj);}}
function abstractAltContent(obj){var ac=createElement("div");if(ua.win&&ua.ie){ac.innerHTML=obj.innerHTML;}
else{var nestedObj=obj.getElementsByTagName(OBJECT)[0];if(nestedObj){var c=nestedObj.childNodes;if(c){var cl=c.length;for(var i=0;i<cl;i++){if(!(c[i].nodeType==1&&c[i].nodeName.toLowerCase()=="param")&&!(c[i].nodeType==8)){ac.appendChild(c[i].cloneNode(true));}}}}}
return ac;}
function createSWF(attObj,parObj,id){var r,el=getElementById(id);if(typeof attObj.id==UNDEF){attObj.id=id;}
if(ua.ie&&ua.win){var att="";for(var i in attObj){if(attObj[i]!=Object.prototype[i]){if(i=="data"){parObj.movie=attObj[i];}
else if(i.toLowerCase()=="styleclass"){att+=' class="'+attObj[i]+'"';}
else if(i!="classid"){att+=' '+i+'="'+attObj[i]+'"';}}}
var par="";for(var j in parObj){if(parObj[j]!=Object.prototype[j]){par+='<param name="'+j+'" value="'+parObj[j]+'" />';}}
el.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+att+'>'+par+'</object>';fixObjectLeaks(attObj.id);r=getElementById(attObj.id);}
else if(ua.webkit&&ua.webkit<312){var e=createElement("embed");e.setAttribute("type",FLASH_MIME_TYPE);for(var k in attObj){if(attObj[k]!=Object.prototype[k]){if(k=="data"){e.setAttribute("src",attObj[k]);}
else if(k.toLowerCase()=="styleclass"){e.setAttribute("class",attObj[k]);}
else if(k!="classid"){e.setAttribute(k,attObj[k]);}}}
for(var l in parObj){if(parObj[l]!=Object.prototype[l]){if(l!="movie"){e.setAttribute(l,parObj[l]);}}}
el.parentNode.replaceChild(e,el);r=e;}
else{var o=createElement(OBJECT);o.setAttribute("type",FLASH_MIME_TYPE);for(var m in attObj){if(attObj[m]!=Object.prototype[m]){if(m.toLowerCase()=="styleclass"){o.setAttribute("class",attObj[m]);}
else if(m!="classid"){o.setAttribute(m,attObj[m]);}}}
for(var n in parObj){if(parObj[n]!=Object.prototype[n]&&n!="movie"){createObjParam(o,n,parObj[n]);}}
el.parentNode.replaceChild(o,el);r=o;}
return r;}
function createObjParam(el,pName,pValue){var p=createElement("param");p.setAttribute("name",pName);p.setAttribute("value",pValue);el.appendChild(p);}
function getElementById(id){return doc.getElementById(id);}
function createElement(el){return doc.createElement(el);}
function hasPlayerVersion(rv){var pv=ua.pv,v=rv.split(".");v[0]=parseInt(v[0],10);v[1]=parseInt(v[1],10);v[2]=parseInt(v[2],10);return(pv[0]>v[0]||(pv[0]==v[0]&&pv[1]>v[1])||(pv[0]==v[0]&&pv[1]==v[1]&&pv[2]>=v[2]))?true:false;}
function createCSS(sel,decl){if(ua.ie&&ua.mac){return;}
var h=doc.getElementsByTagName("head")[0],s=createElement("style");s.setAttribute("type","text/css");s.setAttribute("media","screen");if(!(ua.ie&&ua.win)&&typeof doc.createTextNode!=UNDEF){s.appendChild(doc.createTextNode(sel+" {"+decl+"}"));}
h.appendChild(s);if(ua.ie&&ua.win&&typeof doc.styleSheets!=UNDEF&&doc.styleSheets.length>0){var ls=doc.styleSheets[doc.styleSheets.length-1];if(typeof ls.addRule==OBJECT){ls.addRule(sel,decl);}}}
function setVisibility(id,isVisible){var v=isVisible?"visible":"hidden";if(isDomLoaded){getElementById(id).style.visibility=v;}
else{createCSS("#"+id,"visibility:"+v);}}
function getTargetVersion(obj){if(!obj)
return 0;var c=obj.childNodes;var cl=c.length;for(var i=0;i<cl;i++){if(c[i].nodeType==1&&c[i].nodeName.toLowerCase()=="object"){c=c[i].childNodes;cl=c.length;i=0;}
if(c[i].nodeType==1&&c[i].nodeName.toLowerCase()=="param"&&c[i].getAttribute("name")=="swfversion"){return c[i].getAttribute("value");}}
return 0;}
function getExpressInstall(obj){if(!obj)
return"";var c=obj.childNodes;var cl=c.length;for(var i=0;i<cl;i++){if(c[i].nodeType==1&&c[i].nodeName.toLowerCase()=="object"){c=c[i].childNodes;cl=c.length;i=0;}
if(c[i].nodeType==1&&c[i].nodeName.toLowerCase()=="param"&&c[i].getAttribute("name")=="expressinstall"){return c[i].getAttribute("value");}}
return"";}
return{registerObject:function(objectIdStr,swfVersionStr,xiSwfUrlStr){if(!ua.w3cdom||!objectIdStr){return;}
var obj=document.getElementById(objectIdStr);var xi=getExpressInstall(obj);var regObj={};regObj.id=objectIdStr;regObj.swfVersion=swfVersionStr?swfVersionStr:getTargetVersion(obj);regObj.expressInstall=xiSwfUrlStr?xiSwfUrlStr:((xi!="")?xi:false);regObjArr[regObjArr.length]=regObj;setVisibility(objectIdStr,false);},getObjectById:function(objectIdStr){var r=null;if(ua.w3cdom&&isDomLoaded){var o=getElementById(objectIdStr);if(o){var n=o.getElementsByTagName(OBJECT)[0];if(!n||(n&&typeof o.SetVariable!=UNDEF)){r=o;}
else if(typeof n.SetVariable!=UNDEF){r=n;}}}
return r;},embedSWF:function(swfUrlStr,replaceElemIdStr,widthStr,heightStr,swfVersionStr,xiSwfUrlStr,flashvarsObj,parObj,attObj){if(!ua.w3cdom||!swfUrlStr||!replaceElemIdStr||!widthStr||!heightStr||!swfVersionStr){return;}
widthStr+="";heightStr+="";if(hasPlayerVersion(swfVersionStr)){setVisibility(replaceElemIdStr,false);var att=(typeof attObj==OBJECT)?attObj:{};att.data=swfUrlStr;att.width=widthStr;att.height=heightStr;var par=(typeof parObj==OBJECT)?parObj:{};if(typeof flashvarsObj==OBJECT){for(var i in flashvarsObj){if(flashvarsObj[i]!=Object.prototype[i]){if(typeof par.flashvars!=UNDEF){par.flashvars+="&"+i+"="+flashvarsObj[i];}
else{par.flashvars=i+"="+flashvarsObj[i];}}}}
addDomLoadEvent(function(){createSWF(att,par,replaceElemIdStr);if(att.id==replaceElemIdStr){setVisibility(replaceElemIdStr,true);}});}
else if(xiSwfUrlStr&&!isExpressInstallActive&&hasPlayerVersion("6.0.65")&&(ua.win||ua.mac)){setVisibility(replaceElemIdStr,false);addDomLoadEvent(function(){var regObj={};regObj.id=regObj.altContentId=replaceElemIdStr;regObj.width=widthStr;regObj.height=heightStr;regObj.expressInstall=xiSwfUrlStr;showExpressInstall(regObj);});}},getFlashPlayerVersion:function(){return{major:ua.pv[0],minor:ua.pv[1],release:ua.pv[2]};},hasFlashPlayerVersion:hasPlayerVersion,createSWF:function(attObj,parObj,replaceElemIdStr){if(ua.w3cdom&&isDomLoaded){return createSWF(attObj,parObj,replaceElemIdStr);}
else{return undefined;}},createCSS:function(sel,decl){if(ua.w3cdom){createCSS(sel,decl);}},addDomLoadEvent:addDomLoadEvent,addLoadEvent:addLoadEvent,getQueryParamValue:function(param){var q=doc.location.search||doc.location.hash;if(param==null){return q;}
if(q){var pairs=q.substring(1).split("&");for(var i=0;i<pairs.length;i++){if(pairs[i].substring(0,pairs[i].indexOf("="))==param){return pairs[i].substring((pairs[i].indexOf("=")+1));}}}
return"";},expressInstallCallback:function(){if(isExpressInstallActive&&storedAltContent){var obj=getElementById(EXPRESS_INSTALL_ID);if(obj){obj.parentNode.replaceChild(storedAltContent,obj);if(storedAltContentId){setVisibility(storedAltContentId,true);if(ua.ie&&ua.win){storedAltContent.style.display="block";}}
storedAltContent=null;storedAltContentId=null;isExpressInstallActive=false;}}}};}();(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o<i;o++)e(a[o],b,f?d.call(a[o],o,e(a[o],b)):d,j);return a}return i?e(a[0],b):w}function J(){return(new Date).getTime()}function Y(){return false}function Z(){return true}function na(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function oa(a){var b,d=[],f=[],e=arguments,j,i,o,k,n,r;i=c.data(this,"events");if(!(a.liveFired===this||!i||!i.live||a.button&&a.type==="click")){a.liveFired=this;var u=i.live.slice(0);for(k=0;k<u.length;k++){i=u[k];i.origType.replace(O,"")===a.type?f.push(i.selector):u.splice(k--,1)}j=c(a.target).closest(f,a.currentTarget);n=0;for(r=j.length;n<r;n++)for(k=0;k<u.length;k++){i=u[k];if(j[n].selector===i.selector){o=j[n].elem;f=null;if(i.preType==="mouseenter"||i.preType==="mouseleave")f=c(a.relatedTarget).closest(i.selector)[0];if(!f||f!==o)d.push({elem:o,handleObj:i})}}n=0;for(r=d.length;n<r;n++){j=d[n];a.currentTarget=j.elem;a.data=j.handleObj.data;a.handleObj=j.handleObj;if(j.handleObj.origHandler.apply(j.elem,e)===false){b=false;break}}return b}}function pa(a,b){return"live."+(a&&a!=="*"?a+".":"")+b.replace(/\./g,"`").replace(/ /g,"&")}function qa(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function ra(a,b){var d=0;b.each(function(){if(this.nodeName===(a[d]&&a[d].nodeName)){var f=c.data(a[d++]),e=c.data(this,f);if(f=f&&f.events){delete e.handle;e.events={};for(var j in f)for(var i in f[j])c.event.add(this,j,f[j][i],f[j][i].data)}}})}function sa(a,b,d){var f,e,j;b=b&&b[0]?b[0].ownerDocument||b[0]:s;if(a.length===1&&typeof a[0]==="string"&&a[0].length<512&&b===s&&!ta.test(a[0])&&(c.support.checkClone||!ua.test(a[0]))){e=true;if(j=c.fragments[a[0]])if(j!==1)f=j}if(!f){f=b.createDocumentFragment();c.clean(a,b,f,d)}if(e)c.fragments[a[0]]=j?f:1;return{fragment:f,cacheable:e}}function K(a,b){var d={};c.each(va.concat.apply([],va.slice(0,b)),function(){d[this]=a});return d}function wa(a){return"scrollTo"in a&&a.document?a:a.nodeType===9?a.defaultView||a.parentWindow:false}var c=function(a,b){return new c.fn.init(a,b)},Ra=A.jQuery,Sa=A.$,s=A.document,T,Ta=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/,Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&&(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this,a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b==="find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this,function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b<d;b++)if((e=arguments[b])!=null)for(j in e){i=a[j];o=e[j];if(a!==o)if(f&&o&&(c.isPlainObject(o)||c.isArray(o))){i=i&&(c.isPlainObject(i)||c.isArray(i))?i:c.isArray(o)?[]:{};a[j]=c.extend(f,i,o)}else if(o!==w)a[j]=o}return a};c.extend({noConflict:function(a){A.$=Sa;if(a)A.jQuery=Ra;return c},isReady:false,ready:function(){if(!c.isReady){if(!s.body)return setTimeout(c.ready,13);c.isReady=true;if(Q){for(var a,b=0;a=Q[b++];)a.call(s,c);Q=null}c.fn.triggerHandler&&c(s).triggerHandler("ready")}},bindReady:function(){if(!xa){xa=true;if(s.readyState==="complete")return c.ready();if(s.addEventListener){s.addEventListener("DOMContentLoaded",L,false);A.addEventListener("load",c.ready,false)}else if(s.attachEvent){s.attachEvent("onreadystatechange",L);A.attachEvent("onload",c.ready);var a=false;try{a=A.frameElement==null}catch(b){}s.documentElement.doScroll&&a&&ma()}}},isFunction:function(a){return $.call(a)==="[object Function]"},isArray:function(a){return $.call(a)==="[object Array]"},isPlainObject:function(a){if(!a||$.call(a)!=="[object Object]"||a.nodeType||a.setInterval)return false;if(a.constructor&&!aa.call(a,"constructor")&&!aa.call(a.constructor.prototype,"isPrototypeOf"))return false;var b;for(b in a);return b===w||aa.call(a,b)},isEmptyObject:function(a){for(var b in a)return false;return true},error:function(a){throw a;},parseJSON:function(a){if(typeof a!=="string"||!a)return null;a=c.trim(a);if(/^[\],:{}\s]*$/.test(a.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return A.JSON&&A.JSON.parse?A.JSON.parse(a):(new Function("return "+
a))();else c.error("Invalid JSON: "+a)},noop:function(){},globalEval:function(a){if(a&&Va.test(a)){var b=s.getElementsByTagName("head")[0]||s.documentElement,d=s.createElement("script");d.type="text/javascript";if(c.support.scriptEval)d.appendChild(s.createTextNode(a));else d.text=a;b.insertBefore(d,b.firstChild);b.removeChild(d)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,b,d){var f,e=0,j=a.length,i=j===w||c.isFunction(a);if(d)if(i)for(f in a){if(b.apply(a[f],d)===false)break}else for(;e<j;){if(b.apply(a[e++],d)===false)break}else if(i)for(f in a){if(b.call(a[f],f,a[f])===false)break}else for(d=a[0];e<j&&b.call(d,e,d)!==false;d=a[++e]);return a},trim:function(a){return(a||"").replace(Wa,"")},makeArray:function(a,b){b=b||[];if(a!=null)a.length==null||typeof a==="string"||c.isFunction(a)||typeof a!=="function"&&a.setInterval?ba.call(b,a):c.merge(b,a);return b},inArray:function(a,b){if(b.indexOf)return b.indexOf(a);for(var d=0,f=b.length;d<f;d++)if(b[d]===a)return d;return-1},merge:function(a,b){var d=a.length,f=0;if(typeof b.length==="number")for(var e=b.length;f<e;f++)a[d++]=b[f];else for(;b[f]!==w;)a[d++]=b[f++];a.length=d;return a},grep:function(a,b,d){for(var f=[],e=0,j=a.length;e<j;e++)!d!==!b(a[e],e)&&f.push(a[e]);return f},map:function(a,b,d){for(var f=[],e,j=0,i=a.length;j<i;j++){e=b(a[j],j,d);if(e!=null)f[f.length]=e}return f.concat.apply([],f)},guid:1,proxy:function(a,b,d){if(arguments.length===2)if(typeof b==="string"){d=a;a=d[b];b=w}else if(b&&!c.isFunction(b)){d=b;b=w}if(!b&&a)b=function(){return a.apply(d||this,arguments)};if(a)b.guid=a.guid=a.guid||b.guid||c.guid++;return b},uaMatch:function(a){a=a.toLowerCase();a=/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version)?[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||!/compatible/.test(a)&&/(mozilla)(?:.*? rv:([\w.]+))?/.exec(a)||[];return{browser:a[1]||"",version:a[2]||"0"}},browser:{}});P=c.uaMatch(P);if(P.browser){c.browser[P.browser]=true;c.browser.version=P.version}if(c.browser.webkit)c.browser.safari=true;if(ya)c.inArray=function(a,b){return ya.call(b,a)};T=c(s);if(s.addEventListener)L=function(){s.removeEventListener("DOMContentLoaded",L,false);c.ready()};else if(s.attachEvent)L=function(){if(s.readyState==="complete"){s.detachEvent("onreadystatechange",L);c.ready()}};(function(){c.support={};var a=s.documentElement,b=s.createElement("script"),d=s.createElement("div"),f="script"+J();d.style.display="none";d.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected,parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent=false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n=s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true,applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando];else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this,a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b===w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i,cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1)if(e.className){for(var j=" "+e.className+" ",i=e.className,o=0,k=b.length;o<k;o++)if(j.indexOf(" "+b[o]+" ")<0)i+=" "+b[o];e.className=c.trim(i)}else e.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(k){var n=c(this);n.removeClass(a.call(this,k,n.attr("class")))});if(a&&typeof a==="string"||a===w)for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1&&e.className)if(a){for(var j=(" "+e.className+" ").replace(Aa," "),i=0,o=b.length;i<o;i++)j=j.replace(" "+b[i]+" "," ");e.className=c.trim(j)}else e.className=""}return this},toggleClass:function(a,b){var d=typeof a,f=typeof b==="boolean";if(c.isFunction(a))return this.each(function(e){var j=c(this);j.toggleClass(a.call(this,e,j.attr("class"),b),b)});return this.each(function(){if(d==="string")for(var e,j=0,i=c(this),o=b,k=a.split(ca);e=k[j++];){o=f?o:!i.hasClass(e);i[o?"addClass":"removeClass"](e)}else if(d==="undefined"||d==="boolean"){this.className&&c.data(this,"__className__",this.className);this.className=this.className||a===false?"":c.data(this,"__className__")||""}})},hasClass:function(a){a=" "+a+" ";for(var b=0,d=this.length;b<d;b++)if((" "+this[b].className+" ").replace(Aa," ").indexOf(a)>-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j<d;j++){var i=e[j];if(i.selected){a=c(i).val();if(b)return a;f.push(a)}}return f}if(Ba.test(b.type)&&!c.support.checkOn)return b.getAttribute("value")===null?"on":b.value;return(b.value||"").replace(Za,"")}return w}var o=c.isFunction(a);return this.each(function(k){var n=c(this),r=a;if(this.nodeType===1){if(o)r=a.call(this,k,n.val());if(typeof r==="number")r+="";if(c.isArray(r)&&Ba.test(this.type))this.checked=c.inArray(n.val(),r)>=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected=c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed");a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g,function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split(".");k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a),C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B<r.length;B++){u=r[B];if(d.guid===u.guid){if(i||k.test(u.namespace)){f==null&&r.splice(B--,1);n.remove&&n.remove.call(a,u)}if(f!=null)break}}if(r.length===0||f!=null&&r.length===1){if(!n.teardown||n.teardown.call(a,o)===false)Ca(a,e,z.handle);delete C[e]}}else for(var B=0;B<r.length;B++){u=r[B];if(i||k.test(u.namespace)){c.event.remove(a,n,u.handler,B);r.splice(B--,1)}}}if(c.isEmptyObject(C)){if(b=z.handle)b.elem=null;delete z.events;delete z.handle;c.isEmptyObject(z)&&c.removeData(a)}}}}},trigger:function(a,b,d,f){var e=a.type||a;if(!f){a=typeof a==="object"?a[G]?a:c.extend(c.Event(e),a):c.Event(e);if(e.indexOf("!")>=0){a.type=e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&&f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive;if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e<j;e++){var i=d[e];if(b||f.test(i.namespace)){a.handler=i.handler;a.data=i.data;a.handleObj=i;i=i.handler.apply(this,arguments);if(i!==w){a.result=i;if(i===false){a.preventDefault();a.stopPropagation()}}if(a.isImmediatePropagationStopped())break}}}return a.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(a){if(a[G])return a;var b=a;a=c.Event(b);for(var d=this.props.length,f;d;){f=this.props[--d];a[f]=b[f]}if(!a.target)a.target=a.srcElement||s;if(a.target.nodeType===3)a.target=a.target.parentNode;if(!a.relatedTarget&&a.fromElement)a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement;if(a.pageX==null&&a.clientX!=null){b=s.documentElement;d=s.body;a.pageX=a.clientX+(b&&b.scrollLeft||d&&d.scrollLeft||0)-(b&&b.clientLeft||d&&d.clientLeft||0);a.pageY=a.clientY+(b&&b.scrollTop||d&&d.scrollTop||0)-(b&&b.clientTop||d&&d.clientTop||0)}if(!a.which&&(a.charCode||a.charCode===0?a.charCode:a.keyCode))a.which=a.charCode||a.keyCode;if(!a.metaKey&&a.ctrlKey)a.metaKey=a.ctrlKey;if(!a.which&&a.button!==w)a.which=a.button&1?1:a.button&2?3:a.button&4?2:0;return a},guid:1E8,proxy:c.proxy,special:{ready:{setup:c.bindReady,teardown:c.noop},live:{add:function(a){c.event.add(this,a.origType,c.extend({},a,{handler:oa}))},remove:function(a){var b=true,d=a.origType.replace(O,"");c.each(c.data(this,"events").live||[],function(){if(d===this.origType.replace(O,""))return b=false});b&&c.event.remove(this,a.origType,oa)}},beforeunload:{setup:function(a,b,d){if(this.setInterval)this.onbeforeunload=d;return false},teardown:function(a,b){if(this.onbeforeunload===b)this.onbeforeunload=null}}}};var Ca=s.removeEventListener?function(a,b,d){a.removeEventListener(b,d,false)}:function(a,b,d){a.detachEvent("on"+b,d)};c.Event=function(a){if(!this.preventDefault)return new c.Event(a);if(a&&a.type){this.originalEvent=a;this.type=a.type}else this.type=a;this.timeStamp=J();this[G]=true};c.Event.prototype={preventDefault:function(){this.isDefaultPrevented=Z;var a=this.originalEvent;if(a){a.preventDefault&&a.preventDefault();a.returnValue=false}},stopPropagation:function(){this.isPropagationStopped=Z;var a=this.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.cancelBubble=true}},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=Z;this.stopPropagation()},isDefaultPrevented:Y,isPropagationStopped:Y,isImmediatePropagationStopped:Y};var Da=function(a){var b=a.relatedTarget;try{for(;b&&b!==this;)b=b.parentNode;if(b!==this){a.type=a.data;c.event.handle.apply(this,arguments)}}catch(d){}},Ea=function(a){a.type=a.data;c.event.handle.apply(this,arguments)};c.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){c.event.special[a]={setup:function(d){c.event.add(this,b,d&&d.selector?Ea:Da,a)},teardown:function(d){c.event.remove(this,b,d&&d.selector?Ea:Da)}}});if(!c.support.submitBubbles)c.event.special.submit={setup:function(){if(this.nodeName.toLowerCase()!=="form"){c.event.add(this,"click.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="submit"||d==="image")&&c(b).closest("form").length)return na("submit",this,arguments)});c.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="text"||d==="password")&&c(b).closest("form").length&&a.keyCode===13)return na("submit",this,arguments)})}else return false},teardown:function(){c.event.remove(this,".specialSubmit")}};if(!c.support.changeBubbles){var da=/textarea|input|select/i,ea,Fa=function(a){var b=a.type,d=a.value;if(b==="radio"||b==="checkbox")d=a.checked;else if(b==="select-multiple")d=a.selectedIndex>-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data",e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a,"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a,d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j<o;j++)c.event.add(this[j],d,i,f)}return this}});c.fn.extend({unbind:function(a,b){if(typeof a==="object"&&!a.preventDefault)for(var d in a)this.unbind(d,a[d]);else{d=0;for(var f=this.length;d<f;d++)c.event.remove(this[d],a,b)}return this},delegate:function(a,b,d,f){return this.live(b,d,f,a)},undelegate:function(a,b,d){return arguments.length===0?this.unbind("live"):this.die(b,null,d,a)},trigger:function(a,b){return this.each(function(){c.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){a=c.Event(a);a.preventDefault();a.stopPropagation();c.event.trigger(a,b,this[0]);return a.result}},toggle:function(a){for(var b=arguments,d=1;d<b.length;)c.proxy(a,b[d++]);return this.click(c.proxy(a,function(f){var e=(c.data(this,"lastToggle"+a.guid)||0)%d;c.data(this,"lastToggle"+a.guid,e+1);f.preventDefault();return b[e].apply(this,arguments)||false}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var Ga={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};c.each(["live","die"],function(a,b){c.fn[b]=function(d,f,e,j){var i,o=0,k,n,r=j||this.selector,u=j?this:c(this.context);if(c.isFunction(f)){e=f;f=w}for(d=(d||"").split(" ");(i=d[o++])!=null;){j=O.exec(i);k="";if(j){k=j[0];i=i.replace(O,"")}if(i==="hover")d.push("mouseenter"+k,"mouseleave"+k);else{n=i;if(i==="focus"||i==="blur"){d.push(Ga[i]+k);i+=k}else i=(Ga[i]||i)+k;b==="live"?u.each(function(){c.event.add(this,pa(i,r),{data:f,selector:r,handler:e,origType:i,origHandler:e,preType:n})}):u.unbind(pa(i,r),e)}}return this}});c.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){c.fn[b]=function(d){return d?this.bind(b,d):this.trigger(b)};if(c.attrFn)c.attrFn[b]=true});A.attachEvent&&!A.addEventListener&&A.attachEvent("onunload",function(){for(var a in c.cache)if(c.cache[a].handle)try{c.event.remove(c.cache[a].handle.elem)}catch(b){}});(function(){function a(g){for(var h="",l,m=0;g[m];m++){l=g[m];if(l.nodeType===3||l.nodeType===4)h+=l.nodeValue;else if(l.nodeType!==8)h+=a(l.childNodes)}return h}function b(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q];if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1&&!p){t.sizcache=l;t.sizset=q}if(t.nodeName.toLowerCase()===h){y=t;break}t=t[g]}m[q]=y}}}function d(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q];if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1){if(!p){t.sizcache=l;t.sizset=q}if(typeof h!=="string"){if(t===h){y=true;break}}else if(k.filter(h,[t]).length>0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift();t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D||g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h<g.length;h++)g[h]===g[h-1]&&g.splice(h--,1)}return g};k.matches=function(g,h){return k(g,null,null,h)};k.find=function(g,h,l){var m,q;if(!g)return[];for(var p=0,v=n.order.length;p<v;p++){var t=n.order[p];if(q=n.leftMatch[t].exec(g)){var y=q[1];q.splice(1,1);if(y.substr(y.length-1)!=="\\"){q[1]=(q[1]||"").replace(/\\/g,"");m=n.find[t](q,h,l);if(m!=null){g=g.replace(n.match[t],"");break}}}}m||(m=h.getElementsByTagName("*"));return{set:m,expr:g}};k.filter=function(g,h,l,m){for(var q=g,p=[],v=h,t,y,S=h&&h[0]&&x(h[0]);g&&h.length;){for(var H in n.filter)if((t=n.leftMatch[H].exec(g))!=null&&t[2]){var M=n.filter[H],I,D;D=t[1];y=false;t.splice(1,1);if(D.substr(D.length-
1)!=="\\"){if(v===p)p=[];if(n.preFilter[H])if(t=n.preFilter[H](t,v,l,p,m,S)){if(t===true)continue}else y=I=true;if(t)for(var U=0;(D=v[U])!=null;U++)if(D){I=M(D,t,U,v);var Ha=m^!!I;if(l&&I!=null)if(Ha)y=true;else v[U]=false;else if(Ha){p.push(D);y=true}}if(I!==w){l||(v=p);g=g.replace(n.match[H],"");if(!y)return[];break}}}if(g===q)if(y==null)k.error(g);else break;q=g}return v};k.error=function(g){throw"Syntax error, unrecognized expression: "+g;};var n=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(g){return g.getAttribute("href")}},relative:{"+":function(g,h){var l=typeof h==="string",m=l&&!/\W/.test(h);l=l&&!m;if(m)h=h.toLowerCase();m=0;for(var q=g.length,p;m<q;m++)if(p=g[m]){for(;(p=p.previousSibling)&&p.nodeType!==1;);g[m]=l||p&&p.nodeName.toLowerCase()===h?p||false:p===h}l&&k.filter(h,g,true)},">":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m<q;m++){var p=g[m];if(p){l=p.parentNode;g[m]=l.nodeName.toLowerCase()===h?l:false}}}else{m=0;for(q=g.length;m<q;m++)if(p=g[m])g[m]=l?p.parentNode:p.parentNode===h;l&&k.filter(h,g,true)}},"":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("parentNode",h,m,g,p,l)},"~":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("previousSibling",h,m,g,p,l)}},find:{ID:function(g,h,l){if(typeof h.getElementById!=="undefined"&&!l)return(g=h.getElementById(g[1]))?[g]:[]},NAME:function(g,h){if(typeof h.getElementsByName!=="undefined"){var l=[];h=h.getElementsByName(g[1]);for(var m=0,q=h.length;m<q;m++)h[m].getAttribute("name")===g[1]&&l.push(h[m]);return l.length===0?null:l}},TAG:function(g,h){return h.getElementsByTagName(g[1])}},preFilter:{CLASS:function(g,h,l,m,q,p){g=" "+g[1].replace(/\\/g,"")+" ";if(p)return g;p=0;for(var v;(v=h[p])!=null;p++)if(v)if(q^(v.className&&(" "+v.className+" ").replace(/[\t\n]/g," ").indexOf(g)>=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()},CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m,g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)},text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}},setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return h<l[3]-0},gt:function(g,h,l){return h>l[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h=h[3];l=0;for(m=h.length;l<m;l++)if(h[l]===g)return false;return true}else k.error("Syntax error, unrecognized expression: "+q)},CHILD:function(g,h){var l=h[1],m=g;switch(l){case"only":case"first":for(;m=m.previousSibling;)if(m.nodeType===1)return false;if(l==="first")return true;m=g;case"last":for(;m=m.nextSibling;)if(m.nodeType===1)return false;return true;case"nth":l=h[2];var q=h[3];if(l===1&&q===0)return true;h=h[0];var p=g.parentNode;if(p&&(p.sizcache!==h||!g.nodeIndex)){var v=0;for(m=p.firstChild;m;m=m.nextSibling)if(m.nodeType===1)m.nodeIndex=++v;p.sizcache=h}g=g.nodeIndex-q;return l===0?g===0:g%l===0&&g/l>=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m==="="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g,h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l<m;l++)h.push(g[l]);else for(l=0;g[l];l++)h.push(g[l]);return h}}var B;if(s.documentElement.compareDocumentPosition)B=function(g,h){if(!g.compareDocumentPosition||!h.compareDocumentPosition){if(g==h)i=true;return g.compareDocumentPosition?-1:1}g=g.compareDocumentPosition(h)&4?-1:g===h?0:1;if(g===0)i=true;return g};else if("sourceIndex"in s.documentElement)B=function(g,h){if(!g.sourceIndex||!h.sourceIndex){if(g==h)i=true;return g.sourceIndex?-1:1}g=g.sourceIndex-h.sourceIndex;if(g===0)i=true;return g};else if(s.createRange)B=function(g,h){if(!g.ownerDocument||!h.ownerDocument){if(g==h)i=true;return g.ownerDocument?-1:1}var l=g.ownerDocument.createRange(),m=h.ownerDocument.createRange();l.setStart(g,0);l.setEnd(g,0);m.setStart(h,0);m.setEnd(h,0);g=l.compareBoundaryPoints(Range.START_TO_END,m);if(g===0)i=true;return g};(function(){var g=s.createElement("div"),h="script"+(new Date).getTime();g.innerHTML="<a name='"+h+"'/>";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&&q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML="<a href='#'></a>";if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="<p class='TEST'></p>";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}();(function(){var g=s.createElement("div");g.innerHTML="<div class='test e'></div><div class='test'></div>";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}:function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q<p;q++)k(g,h[q],l);return k.filter(m,l)};c.find=k;c.expr=k.selectors;c.expr[":"]=c.expr.filters;c.unique=k.uniqueSort;c.text=a;c.isXMLDoc=x;c.contains=E})();var eb=/Until$/,fb=/^(?:parents|prevUntil|prevAll)/,gb=/,/;R=Array.prototype.slice;var Ia=function(a,b,d){if(c.isFunction(b))return c.grep(a,function(e,j){return!!b.call(e,j,e)===d});else if(b.nodeType)return c.grep(a,function(e){return e===b===d});else if(typeof b==="string"){var f=c.grep(a,function(e){return e.nodeType===1});if(Ua.test(b))return c.filter(b,f,!d);else b=c.filter(b,f)}return c.grep(a,function(e){return c.inArray(e,b)>=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f<e;f++){d=b.length;c.find(a,this[f],b);if(f>0)for(var j=d;j<b.length;j++)for(var i=0;i<d;i++)if(b[i]===b[j]){b.splice(j--,1);break}}return b},has:function(a){var b=c(a);return this.filter(function(){for(var d=0,f=b.length;d<f;d++)if(c.contains(this,b[d]))return true})},not:function(a){return this.pushStack(Ia(this,a,false),"not",a)},filter:function(a){return this.pushStack(Ia(this,a,true),"filter",a)},is:function(a){return!!a&&c.filter(a,this).length>0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j={},i;if(f&&a.length){e=0;for(var o=a.length;e<o;e++){i=a[e];j[i]||(j[i]=c.expr.match.POS.test(i)?c(i,b||this.context):i)}for(;f&&f.ownerDocument&&f!==b;){for(i in j){e=j[i];if(e.jquery?e.index(f)>-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a==="string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode",d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType===1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/<tbody/i,jb=/<|&#?\w+;/,ta=/<script|<object|<embed|<option|<style/i,ua=/checked\s*(?:[^=]|=\s*.checked.)/i,Ma=function(a,b,d){return hb.test(d)?a:b+"></"+d+">"},F={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div<div>","</div>"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d=c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this},wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild);return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja,""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b<d;b++)if(this[b].nodeType===1){c.cleanData(this[b].getElementsByTagName("*"));this[b].innerHTML=a}}catch(f){this.empty().append(a)}}else c.isFunction(a)?this.each(function(e){var j=c(this),i=j.html();j.empty().append(function(){return a.call(this,e,i)})}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(c.isFunction(a))return this.each(function(b){var d=c(this),f=d.html();d.replaceWith(a.call(this,b,f))});if(typeof a!=="string")a=c(a).detach();return this.each(function(){var b=this.nextSibling,d=this.parentNode;c(this).remove();b?c(b).before(a):c(d).append(a)})}else return this.pushStack(c(c.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,true)},domManip:function(a,b,d){function f(u){return c.nodeName(u,"table")?u.getElementsByTagName("tbody")[0]||u.appendChild(u.ownerDocument.createElement("tbody")):u}var e,j,i=a[0],o=[],k;if(!c.support.checkClone&&arguments.length===3&&typeof i==="string"&&ua.test(i))return this.each(function(){c(this).domManip(a,b,d,true)});if(c.isFunction(i))return this.each(function(u){var z=c(this);a[0]=i.call(this,u,b?z.html():w);z.domManip(a,b,d)});if(this[0]){e=i&&i.parentNode;e=c.support.parentNode&&e&&e.nodeType===11&&e.childNodes.length===this.length?{fragment:e}:sa(a,this,o);k=e.fragment;if(j=k.childNodes.length===1?(k=k.firstChild):k.firstChild){b=b&&c.nodeName(j,"tr");for(var n=0,r=this.length;n<r;n++)d.call(b?f(this[n],j):this[n],n>0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]);return this}else{e=0;for(var j=d.length;e<j;e++){var i=(e>0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["",""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]==="<table>"&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e=c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]?c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja=function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter=Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a,"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f=a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b=a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=/<script(.|\s)*?\/script>/gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!=="string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("<div />").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});return this},serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&&e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)?"&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache===false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B=false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since",c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E||d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x);g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status===1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b==="json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional;if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");this[a].style.display=d||"";if(c.css(this[a],"display")==="none"){d=this[a].nodeName;var f;if(la[d])f=la[d];else{var e=c("<"+d+" />").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a<b;a++)this[a].style.display=c.data(this[a],"olddisplay")||"";return this}},hide:function(a,b){if(a||a===0)return this.animate(K("hide",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");!d&&d!=="none"&&c.data(this[a],"olddisplay",c.css(this[a],"display"))}a=0;for(b=this.length;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b){var d=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||d?this.each(function(){var f=d?a:c(this).is(":hidden");c(this)[f?"show":"hide"]()}):this.animate(K("toggle",3),a,b);return this},fadeTo:function(a,b,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,d)},animate:function(a,b,d,f){var e=c.speed(b,d,f);if(c.isEmptyObject(a))return this.each(e.complete);return this[e.queue===false?"each":"queue"](function(){var j=c.extend({},e),i,o=this.nodeType===1&&c(this).is(":hidden"),k=this;for(i in a){var n=i.replace(ia,ja);if(i!==n){a[n]=a[i];delete a[i];i=n}if(a[i]==="hide"&&o||a[i]==="show"&&!o)return j.complete.call(this);if((i==="height"||i==="width")&&this.style){j.display=c.css(this,"display");j.overflow=this.style.overflow}if(c.isArray(a[i])){(j.specialEasing=j.specialEasing||{})[i]=a[i][1];a[i]=a[i][0]}}if(j.overflow!=null)this.style.overflow="hidden";j.curAnim=c.extend({},a);c.each(a,function(r,u){var z=new c.fx(k,j,r);if(Ab.test(u))z[u==="toggle"?o?"show":"hide":u](a);else{var C=Bb.exec(u),B=z.cur(true)||0;if(C){u=parseFloat(C[2]);var E=C[3]||"px";if(E!=="px"){k.style[r]=(u||1)+E;B=(u||1)/z.cur(true)*B;k.style[r]=B+E}if(C[1])u=(C[1]==="-="?-1:1)*u+B;z.custom(B,u,E)}else z.custom(B,u,"")}});return true})},stop:function(a,b){var d=c.timers;a&&this.queue([]);this.each(function(){for(var f=d.length-1;f>=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration==="number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]||c.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start;this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J(),d=true;if(a||b>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem,e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||c.fx.stop()},stop:function(){clearInterval(W);W=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){c.style(a.elem,"opacity",a.now)},_default:function(a){if(a.elem.style&&a.elem.style[a.prop]!=null)a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit;else a.elem[a.prop]=a.now}}});if(c.expr&&c.expr.filters)c.expr.filters.animated=function(a){return c.grep(c.timers,function(b){return a===b.elem}).length};c.fn.offset="getBoundingClientRect"in s.documentElement?function(a){var b=this[0];if(a)return this.each(function(e){c.offset.setOffset(this,a,e)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);var d=b.getBoundingClientRect(),f=b.ownerDocument;b=f.body;f=f.documentElement;return{top:d.top+(self.pageYOffset||c.support.boxModel&&f.scrollTop||b.scrollTop)-(f.clientTop||b.clientTop||0),left:d.left+(self.pageXOffset||c.support.boxModel&&f.scrollLeft||b.scrollLeft)-(f.clientLeft||b.clientLeft||0)}}:function(a){var b=this[0];if(a)return this.each(function(r){c.offset.setOffset(this,a,r)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);c.offset.initialize();var d=b.offsetParent,f=b,e=b.ownerDocument,j,i=e.documentElement,o=e.body;f=(e=e.defaultView)?e.getComputedStyle(b,null):b.currentStyle;for(var k=b.offsetTop,n=b.offsetLeft;(b=b.parentNode)&&b!==o&&b!==i;){if(c.offset.supportsFixedPosition&&f.position==="fixed")break;j=e?e.getComputedStyle(b,null):b.currentStyle;k-=b.scrollTop;n-=b.scrollLeft;if(b===d){k+=b.offsetTop;n+=b.offsetLeft;if(c.offset.doesNotAddBorder&&!(c.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(b.nodeName))){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=d;d=b.offsetParent}if(c.offset.subtractsBorderForOverflowNotVisible&&j.overflow!=="visible"){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=j}if(f.position==="relative"||f.position==="static"){k+=o.offsetTop;n+=o.offsetLeft}if(c.offset.supportsFixedPosition&&f.position==="fixed"){k+=Math.max(i.scrollTop,o.scrollTop);n+=Math.max(i.scrollLeft,o.scrollLeft)}return{top:k,left:n}};c.offset={initialize:function(){var a=s.body,b=s.createElement("div"),d,f,e,j=parseFloat(c.curCSS(a,"marginTop",true))||0;c.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});b.innerHTML="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";a.insertBefore(b,a.firstChild);d=b.firstChild;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;a.removeChild(b);c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a,d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top-
f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset":"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in
e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window);jQuery.cookie=function(name,value,options){if(typeof value!='undefined'){options=options||{};if(value===null){value='';options.expires=-1;}
var expires='';if(options.expires&&(typeof options.expires=='number'||options.expires.toUTCString)){var date;if(typeof options.expires=='number'){date=new Date();date.setTime(date.getTime()+(options.expires*24*60*60*1000));}else{date=options.expires;}
expires='; expires='+date.toUTCString();}
var path=options.path?'; path='+(options.path):'';var domain=options.domain?'; domain='+(options.domain):'';var secure=options.secure?'; secure':'';document.cookie=[name,'=',encodeURIComponent(value),expires,path,domain,secure].join('');}else{var cookieValue=null;if(document.cookie&&document.cookie!=''){var cookies=document.cookie.split(';');for(var i=0;i<cookies.length;i++){var cookie=jQuery.trim(cookies[i]);if(cookie.substring(0,name.length+1)==(name+'=')){cookieValue=decodeURIComponent(cookie.substring(name.length+1));break;}}}
return cookieValue;}};var tb_pathToImage="thickbox/loadingAnimation.gif";$(document).ready(function(){tb_init('a.thickbox, area.thickbox, input.thickbox');imgLoader=new Image();imgLoader.src=tb_pathToImage;});function tb_init(domChunk){$(domChunk).click(function(){var t=this.title||this.name||null;var a=this.href||this.alt;var g=this.rel||false;tb_show(t,a,g);this.blur();return false;});}
function tb_show(caption,url,imageGroup){try{if(typeof document.body.style.maxHeight==="undefined"){$("body","html").css({height:"100%",width:"100%"});$("html").css("overflow","hidden");if(document.getElementById("TB_HideSelect")===null){$("body").append("<iframe id='TB_HideSelect'></iframe><div id='TB_overlay'></div><div id='TB_window'></div>");$("#TB_overlay").click(tb_remove);}}else{if(document.getElementById("TB_overlay")===null){$("body").append("<div id='TB_overlay'></div><div id='TB_window'></div>");$("#TB_overlay").click(tb_remove);}}
if(tb_detectMacXFF()){$("#TB_overlay").addClass("TB_overlayMacFFBGHack");}else{$("#TB_overlay").addClass("TB_overlayBG");}
if(caption===null){caption="";}
$("body").append("<div id='TB_load'><img src='"+imgLoader.src+"' /></div>");$('#TB_load').show();var baseURL;if(url.indexOf("?")!==-1){baseURL=url.substr(0,url.indexOf("?"));}else{baseURL=url;}
var urlString=/\.jpg$|\.jpeg$|\.png$|\.gif$|\.bmp$/;var urlType=baseURL.toLowerCase().match(urlString);if(urlType=='.jpg'||urlType=='.jpeg'||urlType=='.png'||urlType=='.gif'||urlType=='.bmp'){TB_PrevCaption="";TB_PrevURL="";TB_PrevHTML="";TB_NextCaption="";TB_NextURL="";TB_NextHTML="";TB_imageCount="";TB_FoundURL=false;if(imageGroup){TB_TempArray=$("a[@rel="+imageGroup+"]").get();for(TB_Counter=0;((TB_Counter<TB_TempArray.length)&&(TB_NextHTML===""));TB_Counter++){var urlTypeTemp=TB_TempArray[TB_Counter].href.toLowerCase().match(urlString);if(!(TB_TempArray[TB_Counter].href==url)){if(TB_FoundURL){TB_NextCaption=TB_TempArray[TB_Counter].title;TB_NextURL=TB_TempArray[TB_Counter].href;TB_NextHTML="<span id='TB_next'>&nbsp;&nbsp;<a href='#'>Next &gt;</a></span>";}else{TB_PrevCaption=TB_TempArray[TB_Counter].title;TB_PrevURL=TB_TempArray[TB_Counter].href;TB_PrevHTML="<span id='TB_prev'>&nbsp;&nbsp;<a href='#'>&lt; Prev</a></span>";}}else{TB_FoundURL=true;TB_imageCount="Image "+(TB_Counter+1)+" of "+(TB_TempArray.length);}}}
imgPreloader=new Image();imgPreloader.onload=function(){imgPreloader.onload=null;var pagesize=tb_getPageSize();var x=pagesize[0]-150;var y=pagesize[1]-150;var imageWidth=imgPreloader.width;var imageHeight=imgPreloader.height;if(imageWidth>x){imageHeight=imageHeight*(x/imageWidth);imageWidth=x;if(imageHeight>y){imageWidth=imageWidth*(y/imageHeight);imageHeight=y;}}else if(imageHeight>y){imageWidth=imageWidth*(y/imageHeight);imageHeight=y;if(imageWidth>x){imageHeight=imageHeight*(x/imageWidth);imageWidth=x;}}
TB_WIDTH=imageWidth+30;TB_HEIGHT=imageHeight+60;$("#TB_window").append("<a href='' id='TB_ImageOff' title='Close'><img id='TB_Image' src='"+url+"' width='"+imageWidth+"' height='"+imageHeight+"' alt='"+caption+"'/></a>"+"<div id='TB_caption'>"+caption+"<div id='TB_secondLine'>"+TB_imageCount+TB_PrevHTML+TB_NextHTML+"</div></div><div id='TB_closeWindow'><a href='#' id='TB_closeWindowButton' title='Close'>close</a> or Esc Key</div>");$("#TB_closeWindowButton").click(tb_remove);if(!(TB_PrevHTML==="")){function goPrev(){if($(document).unbind("click",goPrev)){$(document).unbind("click",goPrev);}
$("#TB_window").remove();$("body").append("<div id='TB_window'></div>");tb_show(TB_PrevCaption,TB_PrevURL,imageGroup);return false;}
$("#TB_prev").click(goPrev);}
if(!(TB_NextHTML==="")){function goNext(){$("#TB_window").remove();$("body").append("<div id='TB_window'></div>");tb_show(TB_NextCaption,TB_NextURL,imageGroup);return false;}
$("#TB_next").click(goNext);}
document.onkeydown=function(e){if(e==null){keycode=event.keyCode;}else{keycode=e.which;}
if(keycode==27){tb_remove();}else if(keycode==190){if(!(TB_NextHTML=="")){document.onkeydown="";goNext();}}else if(keycode==188){if(!(TB_PrevHTML=="")){document.onkeydown="";goPrev();}}};tb_position();$("#TB_load").remove();$("#TB_ImageOff").click(tb_remove);$("#TB_window").css({display:"block"});};imgPreloader.src=url;}else{var queryString=url.replace(/^[^\?]+\??/,'');var params=tb_parseQuery(queryString);TB_WIDTH=(params['width']*1)+30||630;TB_HEIGHT=(params['height']*1)+40||440;ajaxContentW=TB_WIDTH-30;ajaxContentH=TB_HEIGHT-45;if(url.indexOf('TB_iframe')!=-1){urlNoQuery=url.split('TB_');$("#TB_iframeContent").remove();if(params['modal']!="true"){$("#TB_window").append("<div id='TB_title'><div id='TB_ajaxWindowTitle'>"+caption+"</div><div id='TB_closeAjaxWindow'><a href='#' id='TB_closeWindowButton' title='Close'>inchide</a> sau apasa ESC</div></div><iframe frameborder='0' hspace='0' src='"+urlNoQuery[0]+"' id='TB_iframeContent' name='TB_iframeContent"+Math.round(Math.random()*1000)+"' onload='tb_showIframe()' style='width:"+(ajaxContentW+29)+"px;height:"+(ajaxContentH+17)+"px;' > </iframe>");}else{$("#TB_overlay").unbind();$("#TB_window").append("<iframe frameborder='0' hspace='0' src='"+urlNoQuery[0]+"' id='TB_iframeContent' name='TB_iframeContent"+Math.round(Math.random()*1000)+"' onload='tb_showIframe()' style='width:"+(ajaxContentW+29)+"px;height:"+(ajaxContentH+17)+"px;'> </iframe>");}}else{if($("#TB_window").css("display")!="block"){if(params['modal']!="true"){$("#TB_window").append("<div id='TB_title'><div id='TB_ajaxWindowTitle'>"+caption+"</div><div id='TB_closeAjaxWindow'><a href='#' id='TB_closeWindowButton'>close</a> or Esc Key</div></div><div id='TB_ajaxContent' style='width:"+ajaxContentW+"px;height:"+ajaxContentH+"px'></div>");}else{$("#TB_overlay").unbind();$("#TB_window").append("<div id='TB_ajaxContent' class='TB_modal' style='width:"+ajaxContentW+"px;height:"+ajaxContentH+"px;'></div>");}}else{$("#TB_ajaxContent")[0].style.width=ajaxContentW+"px";$("#TB_ajaxContent")[0].style.height=ajaxContentH+"px";$("#TB_ajaxContent")[0].scrollTop=0;$("#TB_ajaxWindowTitle").html(caption);}}
$("#TB_closeWindowButton").click(tb_remove);if(url.indexOf('TB_inline')!=-1){$("#TB_ajaxContent").append($('#'+params['inlineId']).children());$("#TB_window").unload(function(){$('#'+params['inlineId']).append($("#TB_ajaxContent").children());});tb_position();$("#TB_load").remove();$("#TB_window").css({display:"block"});}else if(url.indexOf('TB_iframe')!=-1){tb_position();if($.browser.safari){$("#TB_load").remove();$("#TB_window").css({display:"block"});}}else{$("#TB_ajaxContent").load(url+="&random="+(new Date().getTime()),function(){tb_position();$("#TB_load").remove();tb_init("#TB_ajaxContent a.thickbox");$("#TB_window").css({display:"block"});});}}
if(!params['modal']){document.onkeyup=function(e){if(e==null){keycode=event.keyCode;}else{keycode=e.which;}
if(keycode==27){tb_remove();}};}}catch(e){}}
function tb_showIframe(){$("#TB_load").remove();$("#TB_window").css({display:"block"});}
function tb_remove(){$("#TB_imageOff").unbind("click");$("#TB_closeWindowButton").unbind("click");$("#TB_window").fadeOut("fast",function(){$('#TB_window,#TB_overlay,#TB_HideSelect').trigger("unload").unbind().remove();});$("#TB_load").remove();if(typeof document.body.style.maxHeight=="undefined"){$("body","html").css({height:"auto",width:"auto"});$("html").css("overflow","");}
document.onkeydown="";document.onkeyup="";return false;}
function tb_position(){$("#TB_window").css({marginLeft:'-'+parseInt((TB_WIDTH/2),10)+'px',width:TB_WIDTH+'px'});if(!(jQuery.browser.msie&&jQuery.browser.version<7)){$("#TB_window").css({marginTop:'-'+parseInt((TB_HEIGHT/2),10)+'px'});}}
function tb_parseQuery(query){var Params={};if(!query){return Params;}
var Pairs=query.split(/[;&]/);for(var i=0;i<Pairs.length;i++){var KeyVal=Pairs[i].split('=');if(!KeyVal||KeyVal.length!=2){continue;}
var key=unescape(KeyVal[0]);var val=unescape(KeyVal[1]);val=val.replace(/\+/g,' ');Params[key]=val;}
return Params;}
function tb_getPageSize(){var de=document.documentElement;var w=window.innerWidth||self.innerWidth||(de&&de.clientWidth)||document.body.clientWidth;var h=window.innerHeight||self.innerHeight||(de&&de.clientHeight)||document.body.clientHeight;arrayPageSize=[w,h];return arrayPageSize;}
function tb_detectMacXFF(){var userAgent=navigator.userAgent.toLowerCase();if(userAgent.indexOf('mac')!=-1&&userAgent.indexOf('firefox')!=-1){return true;}}
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * (c) 2002 Ray Larabie. See attached license agreement for more information. If
 * EULA is missing, visit www.larabiefonts.com for an updated version of this font.
 * 
 * Trademark:
 * Junegull is a trademark of Ray Larabie.
 * 
 * Description:
 * To see more fonts by Ray Larabie, visit Typodermic.com and LarabieFonts.com
 * 
 * Manufacturer:
 * Ray Larabie
 * 
 * Designer:
 * Ray Larabie
 * 
 * Vendor URL:
 * http://www.larabiefonts.com
 */
Cufon.registerFont({"w":246,"face":{"font-family":"Junegull","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","cap-height":"1","bbox":"-63.12 -341.44 407 84.4639","underline-thickness":"7.2","underline-position":"-44.28","unicode-range":"U+0017-U+FB02"},"glyphs":{" ":{"w":84},"\u00a9":{"d":"6,-127v0,-76,52,-129,130,-129v77,0,129,52,129,129v0,79,-53,130,-129,130v-77,0,-130,-53,-130,-130xm251,-126v0,-70,-46,-116,-115,-116v-68,0,-114,46,-114,116v0,69,45,114,114,114v69,0,115,-45,115,-114xm144,-163v-25,0,-39,16,-39,37v0,24,15,37,39,39v13,0,23,2,23,15v0,12,-8,13,-19,14v-43,-1,-71,-22,-71,-68v0,-46,29,-64,71,-66v11,0,19,3,19,15v0,14,-11,13,-23,14","w":271},"\u00ae":{"d":"12,-171v0,-51,34,-85,85,-85v50,0,85,33,85,85v0,52,-35,85,-85,85v-51,0,-85,-34,-85,-85xm173,-171v0,-45,-31,-76,-76,-76v-45,0,-74,30,-74,76v0,47,30,75,74,75v45,0,76,-29,76,-75xm99,-163v-11,-24,25,-8,21,-29v1,-18,-20,-14,-37,-14r0,75v0,7,-4,11,-11,11v-7,0,-10,-4,-10,-11r0,-83v0,-18,29,-8,45,-10v39,-5,42,53,12,61v6,12,31,33,10,43v-17,-7,-19,-30,-30,-43","w":201},"\u2117":{"d":"6,-127v0,-76,52,-129,130,-129v77,0,129,52,129,129v0,79,-53,130,-129,130v-77,0,-130,-53,-130,-130xm251,-126v0,-70,-46,-116,-115,-116v-68,0,-114,46,-114,116v0,69,45,114,114,114v69,0,115,-45,115,-114xm132,-123v1,-21,33,-6,33,-29v0,-22,-27,-18,-49,-18r0,98v0,9,-5,13,-14,13v-9,0,-13,-4,-13,-13r0,-109v-1,-24,33,-14,53,-14v29,0,46,14,47,41v0,29,-17,44,-45,44v-8,0,-12,-6,-12,-13","w":271},"!":{"d":"48,-253v54,0,35,77,35,126v0,21,-14,33,-35,34v-52,0,-31,-77,-35,-126v-1,-21,15,-34,35,-34xm49,-69v21,0,35,14,35,35v0,21,-13,35,-35,35v-23,0,-35,-14,-35,-35v0,-21,14,-35,35,-35","w":97},"\"":{"d":"40,-270v36,-1,30,44,30,80v1,19,-14,29,-30,30v-36,2,-31,-42,-31,-79v0,-19,14,-31,31,-31xm122,-270v36,-1,30,44,30,80v1,19,-14,29,-30,30v-36,2,-31,-42,-31,-79v0,-19,14,-31,31,-31","w":161,"k":{"A":34,"a":34,"\u00c0":34,"\u00c1":34,"\u00c2":34,"\u00c3":34,"\u00c4":34,"\u00c5":34,"\u00e0":34,"\u00e1":34,"\u00e2":34,"\u00e3":34,"\u00e4":34,"\u00e5":34,"\u0100":34,"\u0101":34,"\u0102":34,"\u0103":34,"\u0104":34,"\u0105":34,"\u01fa":34,"\u01fb":34,"\u0410":34,"\u0430":34,"\u1ea0":34,"\u1ea1":34,"\u1ea2":34,"\u1ea3":34,"\u1ea4":34,"\u1ea5":34,"\u1ea6":34,"\u1ea7":34,"\u1ea8":34,"\u1ea9":34,"\u1eaa":34,"\u1eab":34,"\u1eac":34,"\u1ead":34,"\u1eae":34,"\u1eaf":34,"\u1eb0":34,"\u1eb1":34,"\u1eb2":34,"\u1eb3":34,"\u1eb4":34,"\u1eb5":34,"\u1eb6":34,"\u1eb7":34,"J":12,"j":12,"\u0134":12,"\u0135":12,"\u0408":12,"\u0458":12}},"#":{"d":"19,-171v0,-26,29,-26,57,-24v8,-20,6,-57,32,-58v15,0,30,12,25,31r-7,27r39,0v8,-20,6,-57,32,-58v15,0,30,12,25,31r-7,27v20,-3,33,8,33,24v0,21,-22,26,-47,23r-9,33v25,-2,45,2,45,24v0,26,-30,25,-58,24v-10,24,-6,65,-35,68v-16,2,-31,-13,-26,-31r11,-37r-39,0v-10,24,-6,65,-35,68v-16,2,-31,-13,-26,-31r11,-37v-19,3,-30,-9,-31,-24v-1,-21,19,-27,44,-24r9,-33v-24,2,-43,-2,-43,-23xm103,-115r39,0r8,-33r-38,0","w":254},"$":{"d":"113,-276v11,0,20,9,17,23v36,0,70,-5,70,35v0,39,-34,36,-70,35r0,21v58,-3,86,22,86,81v0,57,-28,83,-86,81v2,15,-6,23,-17,23v-12,0,-19,-9,-17,-23v-39,-1,-83,9,-83,-35v0,-43,43,-35,83,-35r0,-21v-59,4,-86,-25,-86,-81v0,-56,29,-83,86,-81v-1,-14,5,-23,17,-23xm130,-70v22,7,37,-20,11,-21r-11,0r0,21xm96,-183v-22,-7,-37,20,-11,21r11,0r0,-21","w":225},"%":{"d":"79,-9v-13,19,-45,8,-45,-14v0,-5,2,-10,6,-15r154,-206v12,-21,44,-8,44,14v0,5,-1,10,-5,15xm68,-256v31,0,52,21,52,52v0,31,-21,51,-52,51v-31,0,-51,-19,-51,-51v0,-31,20,-52,51,-52xm68,-224v-11,0,-19,9,-19,20v0,11,8,20,19,20v11,0,21,-9,21,-20v0,-11,-10,-20,-21,-20xm203,-101v31,0,51,22,51,52v0,31,-22,52,-51,52v-32,0,-53,-20,-53,-52v0,-30,21,-52,53,-52xm203,-68v-11,0,-20,8,-20,19v0,11,9,20,20,20v11,0,19,-9,19,-20v0,-11,-8,-19,-19,-19","w":279},"&":{"d":"179,-202v21,0,37,15,34,40v26,-2,39,9,39,35v0,26,-13,38,-39,36v0,43,8,91,-38,91r-99,0v-42,-1,-62,-24,-63,-66v0,-34,20,-57,50,-61v-30,-4,-50,-24,-50,-59v-1,-55,36,-67,96,-67v21,0,31,11,31,35v0,26,-13,36,-38,35v-9,0,-15,4,-15,11v0,18,38,7,57,10v-2,-26,13,-40,35,-40xm144,-91v-19,2,-54,-7,-57,10v2,19,38,8,57,11r0,-21","w":258},"'":{"d":"40,-270v36,-1,30,44,30,80v1,19,-14,29,-30,30v-36,2,-31,-42,-31,-79v0,-19,14,-31,31,-31","w":78,"k":{"A":34,"a":34,"\u00c0":34,"\u00c1":34,"\u00c2":34,"\u00c3":34,"\u00c4":34,"\u00c5":34,"\u00e0":34,"\u00e1":34,"\u00e2":34,"\u00e3":34,"\u00e4":34,"\u00e5":34,"\u0100":34,"\u0101":34,"\u0102":34,"\u0103":34,"\u0104":34,"\u0105":34,"\u01fa":34,"\u01fb":34,"\u0410":34,"\u0430":34,"\u1ea0":34,"\u1ea1":34,"\u1ea2":34,"\u1ea3":34,"\u1ea4":34,"\u1ea5":34,"\u1ea6":34,"\u1ea7":34,"\u1ea8":34,"\u1ea9":34,"\u1eaa":34,"\u1eab":34,"\u1eac":34,"\u1ead":34,"\u1eae":34,"\u1eaf":34,"\u1eb0":34,"\u1eb1":34,"\u1eb2":34,"\u1eb3":34,"\u1eb4":34,"\u1eb5":34,"\u1eb6":34,"\u1eb7":34,"J":12,"j":12,"\u0134":12,"\u0135":12,"\u0408":12,"\u0458":12}},"(":{"d":"121,-290v0,31,-55,11,-49,38r0,234v0,18,10,27,32,27v11,0,17,5,17,17v0,14,-8,18,-22,18v-48,0,-71,-20,-71,-61r0,-235v-1,-39,27,-57,76,-55v11,0,17,5,17,17","w":125},")":{"d":"76,-252v6,-27,-49,-7,-49,-38v0,-15,9,-17,24,-17v46,0,69,18,69,55r0,235v1,43,-26,62,-76,61v-11,0,-17,-6,-17,-18v0,-12,6,-17,17,-17v22,0,32,-9,32,-27r0,-234","w":125},"*":{"d":"55,-204v-8,-15,-34,-45,-6,-51v18,3,20,26,29,38v10,-12,11,-34,30,-38v29,6,1,37,-6,51v20,1,50,-6,50,13v0,19,-30,12,-50,13v7,14,35,44,6,51v-19,-4,-19,-26,-30,-38v-10,12,-10,34,-29,38v-28,-5,-2,-36,6,-51v-19,-2,-50,7,-50,-13v0,-20,31,-11,50,-13","w":156},"+":{"d":"104,-34v-30,0,-32,-31,-29,-63v-32,2,-63,1,-63,-29v0,-30,30,-33,63,-30v-2,-32,-1,-63,29,-63v30,0,33,30,30,63v32,-2,63,0,63,30v0,30,-31,31,-63,29v2,32,0,63,-30,63","w":208},",":{"d":"25,-24v10,-39,70,-25,60,15v-7,27,-7,69,-41,71v-21,1,-37,-16,-32,-38","w":95,"k":{"4":36,"C":17,"G":17,"c":17,"g":17,"\u00c7":17,"\u00e7":17,"\u0106":17,"\u0107":17,"\u0108":17,"\u0109":17,"\u010a":17,"\u010b":17,"\u010c":17,"\u010d":17,"\u011c":17,"\u011d":17,"\u011e":17,"\u011f":17,"\u0120":17,"\u0121":17,"\u0122":17,"\u0123":17,"\u0152":17,"\u0153":17,"\u0421":17,"\u0441":17,"0":19,"O":19,"Q":19,"o":19,"q":19,"\u00d2":19,"\u00d3":19,"\u00d4":19,"\u00d5":19,"\u00d6":19,"\u00d8":19,"\u00f2":19,"\u00f3":19,"\u00f4":19,"\u00f5":19,"\u00f6":19,"\u00f8":19,"\u014c":19,"\u014d":19,"\u014e":19,"\u014f":19,"\u0150":19,"\u0151":19,"\u01fe":19,"\u01ff":19,"\u041e":19,"\u0424":19,"\u043e":19,"\u0444":19,"\u1ecc":19,"\u1ecd":19,"\u1ece":19,"\u1ecf":19,"\u1ed0":19,"\u1ed1":19,"\u1ed2":19,"\u1ed3":19,"\u1ed4":19,"\u1ed5":19,"\u1ed6":19,"\u1ed7":19,"\u1ed8":19,"\u1ed9":19,"\u1eda":19,"\u1edb":19,"\u1edc":19,"\u1edd":19,"\u1ede":19,"\u1edf":19,"\u1ee0":19,"\u1ee1":19,"\u1ee2":19,"\u1ee3":19,"T":36,"t":36,"\u0162":36,"\u0163":36,"\u0164":36,"\u0165":36,"\u0166":36,"\u0167":36,"\u0422":36,"\u0442":36,"U":5,"u":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u00f9":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u0168":5,"\u0169":5,"\u016a":5,"\u016b":5,"\u016c":5,"\u016d":5,"\u016e":5,"\u016f":5,"\u0170":5,"\u0171":5,"\u0172":5,"\u0173":5,"\u1ee4":5,"\u1ee5":5,"\u1ee6":5,"\u1ee7":5,"\u1ee8":5,"\u1ee9":5,"\u1eea":5,"\u1eeb":5,"\u1eec":5,"\u1eed":5,"\u1eee":5,"\u1eef":5,"\u1ef0":5,"\u1ef1":5,"V":36,"W":36,"v":36,"w":36,"\u0174":36,"\u0175":36,"\u1e80":36,"\u1e81":36,"\u1e82":36,"\u1e83":36,"\u1e84":36,"\u1e85":36,"Y":36,"y":36,"\u00dd":36,"\u00fd":36,"\u00ff":36,"\u0176":36,"\u0177":36,"\u0178":36,"\u1ef2":36,"\u1ef3":36,"S":9,"s":9,"\u00df":9,"\u015a":9,"\u015b":9,"\u015c":9,"\u015d":9,"\u015e":9,"\u015f":9,"\u0160":9,"\u0161":9,"\u0218":9,"\u0219":9,"\u0405":9,"\u0455":9}},"-":{"d":"118,-126v0,37,-46,28,-82,29v-18,1,-29,-13,-29,-29v-1,-37,45,-30,82,-30v17,-1,29,13,29,30","w":125,"k":{"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":17,"W":17,"v":17,"w":17,"\u0174":17,"\u0175":17,"\u1e80":17,"\u1e81":17,"\u1e82":17,"\u1e83":17,"\u1e84":17,"\u1e85":17,"Y":26,"y":26,"\u00dd":26,"\u00fd":26,"\u00ff":26,"\u0176":26,"\u0177":26,"\u0178":26,"\u1ef2":26,"\u1ef3":26,"A":17,"a":17,"\u00c0":17,"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c4":17,"\u00c5":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u0100":17,"\u0101":17,"\u0102":17,"\u0103":17,"\u0104":17,"\u0105":17,"\u01fa":17,"\u01fb":17,"\u0410":17,"\u0430":17,"\u1ea0":17,"\u1ea1":17,"\u1ea2":17,"\u1ea3":17,"\u1ea4":17,"\u1ea5":17,"\u1ea6":17,"\u1ea7":17,"\u1ea8":17,"\u1ea9":17,"\u1eaa":17,"\u1eab":17,"\u1eac":17,"\u1ead":17,"\u1eae":17,"\u1eaf":17,"\u1eb0":17,"\u1eb1":17,"\u1eb2":17,"\u1eb3":17,"\u1eb4":17,"\u1eb5":17,"\u1eb6":17,"\u1eb7":17,"J":29,"j":29,"\u0134":29,"\u0135":29,"\u0408":29,"\u0458":29,"X":17,"x":17,"\u0423":17,"\u0425":17,"\u0443":17,"\u0445":17,"Z":27,"z":27,"\u0179":27,"\u017a":27,"\u017b":27,"\u017c":27,"\u017d":27,"\u017e":27}},".":{"d":"45,-68v22,0,35,14,35,35v0,20,-13,34,-35,34v-22,0,-33,-14,-35,-34v2,-20,13,-35,35,-35","w":90,"k":{"4":36,"C":17,"G":17,"c":17,"g":17,"\u00c7":17,"\u00e7":17,"\u0106":17,"\u0107":17,"\u0108":17,"\u0109":17,"\u010a":17,"\u010b":17,"\u010c":17,"\u010d":17,"\u011c":17,"\u011d":17,"\u011e":17,"\u011f":17,"\u0120":17,"\u0121":17,"\u0122":17,"\u0123":17,"\u0152":17,"\u0153":17,"\u0421":17,"\u0441":17,"0":19,"O":19,"Q":19,"o":19,"q":19,"\u00d2":19,"\u00d3":19,"\u00d4":19,"\u00d5":19,"\u00d6":19,"\u00d8":19,"\u00f2":19,"\u00f3":19,"\u00f4":19,"\u00f5":19,"\u00f6":19,"\u00f8":19,"\u014c":19,"\u014d":19,"\u014e":19,"\u014f":19,"\u0150":19,"\u0151":19,"\u01fe":19,"\u01ff":19,"\u041e":19,"\u0424":19,"\u043e":19,"\u0444":19,"\u1ecc":19,"\u1ecd":19,"\u1ece":19,"\u1ecf":19,"\u1ed0":19,"\u1ed1":19,"\u1ed2":19,"\u1ed3":19,"\u1ed4":19,"\u1ed5":19,"\u1ed6":19,"\u1ed7":19,"\u1ed8":19,"\u1ed9":19,"\u1eda":19,"\u1edb":19,"\u1edc":19,"\u1edd":19,"\u1ede":19,"\u1edf":19,"\u1ee0":19,"\u1ee1":19,"\u1ee2":19,"\u1ee3":19,"T":36,"t":36,"\u0162":36,"\u0163":36,"\u0164":36,"\u0165":36,"\u0166":36,"\u0167":36,"\u0422":36,"\u0442":36,"U":5,"u":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u00f9":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u0168":5,"\u0169":5,"\u016a":5,"\u016b":5,"\u016c":5,"\u016d":5,"\u016e":5,"\u016f":5,"\u0170":5,"\u0171":5,"\u0172":5,"\u0173":5,"\u1ee4":5,"\u1ee5":5,"\u1ee6":5,"\u1ee7":5,"\u1ee8":5,"\u1ee9":5,"\u1eea":5,"\u1eeb":5,"\u1eec":5,"\u1eed":5,"\u1eee":5,"\u1eef":5,"\u1ef0":5,"\u1ef1":5,"V":36,"W":36,"v":36,"w":36,"\u0174":36,"\u0175":36,"\u1e80":36,"\u1e81":36,"\u1e82":36,"\u1e83":36,"\u1e84":36,"\u1e85":36,"Y":36,"y":36,"\u00dd":36,"\u00fd":36,"\u00ff":36,"\u0176":36,"\u0177":36,"\u0178":36,"\u1ef2":36,"\u1ef3":36,"S":9,"s":9,"\u00df":9,"\u015a":9,"\u015b":9,"\u015c":9,"\u015d":9,"\u015e":9,"\u015f":9,"\u0160":9,"\u0161":9,"\u0218":9,"\u0219":9,"\u0405":9,"\u0455":9}},"\/":{"d":"52,15v-5,28,-48,21,-48,-4r81,-291v7,-29,56,-18,48,9","w":132,"k":{"\u1ee3":17,"\u1ee2":17,"\u1ee1":17,"\u1ee0":17,"\u1edf":17,"\u1ede":17,"\u1edd":17,"\u1edc":17,"\u1edb":17,"\u1eda":17,"\u1ed9":17,"\u1ed8":17,"\u1ed7":17,"\u1ed6":17,"\u1ed5":17,"\u1ed4":17,"\u1ed3":17,"\u1ed2":17,"\u1ed1":17,"\u1ed0":17,"\u1ecf":17,"\u1ece":17,"\u1ecd":17,"\u1ecc":17,"\u1eb7":26,"\u1eb6":26,"\u1eb5":26,"\u1eb4":26,"\u1eb3":26,"\u1eb2":26,"\u1eb1":26,"\u1eb0":26,"\u1eaf":26,"\u1eae":26,"\u1ead":26,"\u1eac":26,"\u1eab":26,"\u1eaa":26,"\u1ea9":26,"\u1ea8":26,"\u1ea7":26,"\u1ea6":26,"\u1ea5":26,"\u1ea4":26,"\u1ea3":26,"\u1ea2":26,"\u1ea1":26,"\u1ea0":26,"\u0458":36,"\u0444":17,"\u0441":17,"\u043e":17,"\u0430":26,"\u0424":17,"\u0421":17,"\u041e":17,"\u0410":26,"\u0408":36,"\u01ff":17,"\u01fe":17,"\u01fb":26,"\u01fa":26,"\u0153":17,"\u0152":17,"\u0151":17,"\u0150":17,"\u014f":17,"\u014e":17,"\u014d":17,"\u014c":17,"\u0135":36,"\u0134":36,"\u0123":17,"\u0122":17,"\u0121":17,"\u0120":17,"\u011f":17,"\u011e":17,"\u011d":17,"\u011c":17,"\u010d":17,"\u010c":17,"\u010b":17,"\u010a":17,"\u0109":17,"\u0108":17,"\u0107":17,"\u0106":17,"\u0105":26,"\u0104":26,"\u0103":26,"\u0102":26,"\u0101":26,"\u0100":26,"\u00f8":17,"\u00f6":17,"\u00f5":17,"\u00f4":17,"\u00f3":17,"\u00f2":17,"\u00e7":17,"\u00e5":26,"\u00e4":26,"\u00e3":26,"\u00e2":26,"\u00e1":26,"\u00e0":26,"\u00d8":17,"\u00d6":17,"\u00d5":17,"\u00d4":17,"\u00d3":17,"\u00d2":17,"\u00c7":17,"\u00c5":26,"\u00c4":26,"\u00c3":26,"\u00c2":26,"\u00c1":26,"\u00c0":26,"q":17,"o":17,"j":36,"g":17,"c":17,"a":26,"Q":17,"O":17,"J":36,"G":17,"C":17,"A":26,"0":17}},"0":{"d":"100,-253v81,0,125,15,125,94v0,85,1,159,-84,159v-80,0,-125,-16,-125,-94v0,-85,-2,-159,84,-159xm85,-158v5,29,-14,87,17,87v26,0,60,9,55,-25v-5,-29,14,-87,-17,-87v-26,0,-60,-9,-55,25","w":240,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"1":{"d":"63,-241v23,-27,59,-14,59,24r0,184v1,22,-14,34,-35,34v-54,-1,-29,-86,-34,-137v-35,22,-68,-29,-38,-58","w":137},"2":{"d":"184,-70v26,-1,37,11,37,35v0,24,-12,35,-37,35r-161,0v-6,0,-9,-3,-9,-10v-1,-74,-9,-153,71,-145v25,-3,74,11,74,-14v0,-9,-6,-14,-18,-14v-48,0,-120,21,-120,-37v0,-54,74,-33,120,-33v53,0,80,27,80,81v0,51,-19,76,-70,76v-29,0,-85,-17,-75,26r108,0","w":233},"3":{"d":"215,-66v0,42,-21,66,-63,66v-51,0,-138,24,-138,-35v0,-54,73,-35,120,-35v9,0,14,-7,14,-15v0,-8,-5,-13,-14,-14v-38,-4,-102,17,-102,-26v0,-43,65,-25,102,-25v10,0,14,-9,14,-18v0,-9,-5,-15,-14,-15v-47,0,-122,21,-120,-35v0,-24,11,-35,32,-35r111,0v65,-4,72,113,16,124v30,4,41,31,42,63","w":226},"4":{"d":"171,-253v20,1,35,14,35,35r0,183v0,22,-15,34,-35,35v-42,2,-36,-49,-35,-91v-49,-6,-130,21,-127,-36v3,-49,-17,-125,35,-126v44,-1,35,54,35,98r57,0v0,-43,-9,-100,35,-98","w":220},"5":{"d":"85,-157v74,-3,134,-1,134,76v0,54,-26,81,-79,81v-48,0,-125,19,-125,-35v0,-53,74,-35,123,-35v13,0,19,-5,19,-15v0,-10,-6,-14,-19,-14r-106,0v-8,0,-14,-7,-14,-17r0,-127v2,-7,6,-10,13,-10r150,0v22,0,34,11,34,35v2,57,-81,28,-130,35r0,26","w":231},"6":{"d":"96,-183v-13,0,-15,13,-14,28v60,-12,133,-4,133,74v0,74,-52,81,-128,81v-88,0,-74,-90,-74,-173v0,-54,27,-80,80,-80v46,0,112,-18,112,35v0,51,-64,35,-109,35xm96,-70v23,0,56,10,56,-18v0,-29,-33,-17,-56,-19v-9,0,-14,7,-14,19v0,12,5,18,14,18","w":227},"7":{"d":"180,-253v29,-3,40,31,26,54r-112,182v-15,32,-77,18,-65,-24r91,-142v-46,-3,-115,15,-113,-35v0,-20,13,-36,35,-35r138,0","w":216,"k":{"\u2026":36,"\u201e":36,"\u201a":36,".":36,",":36,"2":7}},"8":{"d":"219,-66v0,41,-20,66,-63,66v-71,1,-148,10,-143,-66v2,-32,12,-59,42,-63v-25,-5,-38,-30,-38,-59v1,-37,17,-65,54,-65r90,0v64,-4,72,113,16,124v30,4,42,31,42,63xm138,-150v17,0,20,-35,0,-33v-22,2,-58,-9,-58,15v0,27,35,18,58,18xm152,-85v-1,-23,-37,-14,-58,-14v-9,0,-14,6,-14,14v0,23,36,13,58,15v9,0,14,-7,14,-15","w":232},"9":{"d":"132,-70v13,0,15,-13,14,-28v-63,12,-133,3,-133,-74v0,-74,52,-81,127,-81v89,0,75,90,75,173v0,53,-27,80,-80,80v-46,0,-112,18,-112,-35v0,-51,64,-35,109,-35xm132,-183v-23,0,-56,-10,-56,18v0,28,33,18,56,18v9,0,14,-6,14,-18v0,-12,-5,-18,-14,-18","w":228},":":{"d":"53,-68v22,0,35,14,35,35v0,20,-13,34,-35,34v-22,0,-33,-14,-35,-34v2,-21,13,-35,35,-35xm53,-205v20,0,34,13,34,35v1,19,-15,36,-34,35v-21,-1,-35,-14,-35,-35v0,-21,14,-35,35,-35","w":103},";":{"d":"50,-204v23,0,33,14,35,35v1,19,-16,36,-35,35v-21,-1,-35,-14,-35,-35v0,-21,13,-34,35,-35xm21,-24v7,-37,67,-26,61,11v-11,28,-7,72,-42,75v-21,1,-36,-17,-31,-38","w":97},"<":{"d":"100,-212v16,-17,47,-4,44,18v-5,33,-40,44,-57,67v18,23,52,35,57,68v4,22,-29,35,-44,18v-24,-26,-52,-48,-73,-76v-4,-11,-1,-22,6,-28","w":179},"=":{"d":"197,-75v0,16,-13,30,-30,29r-126,0v-17,0,-29,-13,-29,-29v0,-16,12,-31,29,-30r126,0v18,-1,30,14,30,30xm197,-176v0,16,-12,28,-30,28r-126,0v-17,1,-29,-13,-29,-28v0,-16,11,-32,29,-31r126,0v18,-1,30,14,30,31","w":208},">":{"d":"81,-41v-15,17,-44,4,-44,-18v8,-32,39,-45,57,-68v-18,-23,-48,-36,-57,-67v0,-22,28,-34,44,-18r68,67v11,12,11,25,0,37","w":179},"?":{"d":"66,-35v-2,-38,56,-47,68,-14v10,25,-8,49,-32,49v-21,0,-34,-14,-36,-35xm138,-91v-37,0,-70,2,-70,-36v0,-38,36,-36,73,-35v9,0,14,-3,14,-10v0,-7,-5,-11,-14,-11v-50,0,-128,22,-128,-37v0,-53,78,-33,124,-33v53,0,79,27,79,81v0,54,-26,81,-78,81","w":228},"@":{"d":"149,-132v-11,-11,-43,-9,-40,13v-2,21,29,23,40,10r0,-23xm79,-119v0,-41,38,-59,71,-43v6,-9,31,-9,28,9v3,23,-10,62,17,60v16,-1,21,-16,21,-39v-1,-57,-28,-87,-85,-91v-97,-6,-111,150,-37,184v17,8,48,2,49,27v0,11,-6,16,-18,16v-74,-4,-114,-57,-114,-132v0,-78,45,-128,120,-128v79,0,120,44,120,124v0,36,-17,69,-57,69v-16,0,-30,-7,-37,-17v-32,19,-78,3,-78,-39","w":261},"A":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"B":{"d":"148,-168v-1,-26,-43,-12,-66,-15r0,33v25,-3,67,11,66,-18xm148,-85v0,-25,-43,-10,-66,-14r0,29v24,-3,66,10,66,-15xm215,-66v0,42,-21,66,-63,66v-52,0,-138,24,-137,-36r0,-182v0,-24,10,-35,31,-35r111,0v65,-4,72,113,16,124v30,4,41,31,42,63","w":228,"k":{"V":10,"W":10,"v":10,"w":10,"\u0174":10,"\u0175":10,"\u1e80":10,"\u1e81":10,"\u1e82":10,"\u1e83":10,"\u1e84":10,"\u1e85":10,",":12,".":12,"\u201a":12,"\u201e":12,"\u2026":12}},"C":{"d":"196,-218v0,32,-26,36,-61,36v-36,0,-58,20,-58,55v0,45,33,57,84,57v22,0,33,14,34,35v1,30,-26,37,-60,35v-79,-5,-126,-48,-126,-125v0,-86,56,-132,152,-128v22,1,34,13,35,35","w":205,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"D":{"d":"90,0v-38,1,-76,3,-76,-35r0,-183v3,-32,33,-37,71,-35v82,4,131,49,131,128v0,76,-48,122,-126,125xm147,-129v0,-35,-24,-54,-63,-53r0,112v41,2,63,-22,63,-59","w":225,"k":{"\/":15,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,"Y":16,"y":16,"\u00dd":16,"\u00fd":16,"\u00ff":16,"\u0176":16,"\u0177":16,"\u0178":16,"\u1ef2":16,"\u1ef3":16,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":13,"a":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u0100":13,"\u0101":13,"\u0102":13,"\u0103":13,"\u0104":13,"\u0105":13,"\u01fa":13,"\u01fb":13,"\u0410":13,"\u0430":13,"\u1ea0":13,"\u1ea1":13,"\u1ea2":13,"\u1ea3":13,"\u1ea4":13,"\u1ea5":13,"\u1ea6":13,"\u1ea7":13,"\u1ea8":13,"\u1ea9":13,"\u1eaa":13,"\u1eab":13,"\u1eac":13,"\u1ead":13,"\u1eae":13,"\u1eaf":13,"\u1eb0":13,"\u1eb1":13,"\u1eb2":13,"\u1eb3":13,"\u1eb4":13,"\u1eb5":13,"\u1eb6":13,"\u1eb7":13}},"E":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35","w":216},"F":{"d":"186,-125v0,45,-58,33,-102,34v1,42,7,93,-35,91v-19,-1,-36,-14,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,25v43,1,102,-11,102,33","w":207,"k":{"\/":27,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":30,"a":30,"\u00c0":30,"\u00c1":30,"\u00c2":30,"\u00c3":30,"\u00c4":30,"\u00c5":30,"\u00e0":30,"\u00e1":30,"\u00e2":30,"\u00e3":30,"\u00e4":30,"\u00e5":30,"\u0100":30,"\u0101":30,"\u0102":30,"\u0103":30,"\u0104":30,"\u0105":30,"\u01fa":30,"\u01fb":30,"\u0410":30,"\u0430":30,"\u1ea0":30,"\u1ea1":30,"\u1ea2":30,"\u1ea3":30,"\u1ea4":30,"\u1ea5":30,"\u1ea6":30,"\u1ea7":30,"\u1ea8":30,"\u1ea9":30,"\u1eaa":30,"\u1eab":30,"\u1eac":30,"\u1ead":30,"\u1eae":30,"\u1eaf":30,"\u1eb0":30,"\u1eb1":30,"\u1eb2":30,"\u1eb3":30,"\u1eb4":30,"\u1eb5":30,"\u1eb6":30,"\u1eb7":30,"J":50,"j":50,"\u0134":50,"\u0135":50,"\u0408":50,"\u0458":50,"\u00c6":53,"\u00e6":53,"\u01fc":53,"\u01fd":53}},"G":{"d":"162,-147v47,0,32,66,34,112v1,32,-27,37,-61,35v-79,-4,-126,-48,-126,-125v0,-87,55,-133,152,-128v22,1,34,13,35,35v0,32,-26,40,-61,36v-61,-6,-78,83,-30,106v6,3,13,5,22,5v-3,-38,-1,-76,35,-76","w":210,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"H":{"d":"176,-255v20,0,36,14,35,35r0,187v1,22,-14,34,-35,34v-44,0,-35,-52,-35,-95r-57,0v-1,42,10,95,-35,95v-20,0,-36,-13,-35,-34r0,-187v-1,-21,16,-35,35,-35v44,-2,35,53,35,96r57,0v0,-43,-9,-96,35,-96","w":225},"I":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35","w":98},"J":{"d":"135,-255v53,-1,35,79,35,129v0,84,-43,126,-132,126v-21,0,-35,-15,-35,-35v0,-24,17,-38,46,-35v72,6,52,-87,52,-150v0,-21,15,-35,34,-35","w":182,"k":{"\/":10,",":28,".":28,"\u201a":28,"\u201e":28,"\u2026":28,"A":13,"a":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u0100":13,"\u0101":13,"\u0102":13,"\u0103":13,"\u0104":13,"\u0105":13,"\u01fa":13,"\u01fb":13,"\u0410":13,"\u0430":13,"\u1ea0":13,"\u1ea1":13,"\u1ea2":13,"\u1ea3":13,"\u1ea4":13,"\u1ea5":13,"\u1ea6":13,"\u1ea7":13,"\u1ea8":13,"\u1ea9":13,"\u1eaa":13,"\u1eab":13,"\u1eac":13,"\u1ead":13,"\u1eae":13,"\u1eaf":13,"\u1eb0":13,"\u1eb1":13,"\u1eb2":13,"\u1eb3":13,"\u1eb4":13,"\u1eb5":13,"\u1eb6":13,"\u1eb7":13}},"K":{"d":"197,-56v25,27,-6,70,-43,54v-5,-2,-9,-5,-12,-10r-58,-81v0,42,9,94,-35,94v-21,0,-35,-13,-35,-34r0,-187v0,-21,15,-35,35,-35v43,-2,35,52,35,95v23,-30,42,-64,68,-92v34,-15,71,24,45,54r-59,67","w":214,"k":{"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":5,"G":5,"c":5,"g":5,"\u00c7":5,"\u00e7":5,"\u0106":5,"\u0107":5,"\u0108":5,"\u0109":5,"\u010a":5,"\u010b":5,"\u010c":5,"\u010d":5,"\u011c":5,"\u011d":5,"\u011e":5,"\u011f":5,"\u0120":5,"\u0121":5,"\u0122":5,"\u0123":5,"\u0152":5,"\u0153":5,"\u0421":5,"\u0441":5,"0":12,"O":12,"Q":12,"o":12,"q":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"\u00d6":12,"\u00d8":12,"\u00f2":12,"\u00f3":12,"\u00f4":12,"\u00f5":12,"\u00f6":12,"\u00f8":12,"\u014c":12,"\u014d":12,"\u014e":12,"\u014f":12,"\u0150":12,"\u0151":12,"\u01fe":12,"\u01ff":12,"\u041e":12,"\u0424":12,"\u043e":12,"\u0444":12,"\u1ecc":12,"\u1ecd":12,"\u1ece":12,"\u1ecf":12,"\u1ed0":12,"\u1ed1":12,"\u1ed2":12,"\u1ed3":12,"\u1ed4":12,"\u1ed5":12,"\u1ed6":12,"\u1ed7":12,"\u1ed8":12,"\u1ed9":12,"\u1eda":12,"\u1edb":12,"\u1edc":12,"\u1edd":12,"\u1ede":12,"\u1edf":12,"\u1ee0":12,"\u1ee1":12,"\u1ee2":12,"\u1ee3":12}},"L":{"d":"154,-35v0,48,-60,35,-105,35v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150v37,-2,70,-1,70,35","w":158,"k":{"\"":36,"'":36,"\u2018":36,"\u2019":36,"\u201c":36,"\u201d":36,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":36,"W":36,"v":36,"w":36,"\u0174":36,"\u0175":36,"\u1e80":36,"\u1e81":36,"\u1e82":36,"\u1e83":36,"\u1e84":36,"\u1e85":36,"Y":36,"y":36,"\u00dd":36,"\u00fd":36,"\u00ff":36,"\u0176":36,"\u0177":36,"\u0178":36,"\u1ef2":36,"\u1ef3":36}},"M":{"d":"222,1v-56,0,-27,-91,-34,-143v-17,23,-45,73,-77,34r-26,-34v-6,53,21,141,-35,143v-21,0,-35,-12,-35,-34r0,-184v-2,-41,50,-47,71,-20r50,64v28,-27,39,-73,85,-82v22,2,36,15,37,38r0,184v0,22,-15,34,-36,34","w":272},"N":{"d":"14,-220v-1,-37,47,-44,65,-17r65,98v3,-47,-15,-117,34,-116v18,0,33,14,33,34r0,188v3,36,-46,43,-64,16r-66,-97v-3,46,16,115,-34,115v-20,0,-33,-13,-33,-33r0,-188","w":225,"k":{"\u2026":4,"\u201e":4,"\u201a":4,".":4,",":4}},"O":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"P":{"d":"146,-166v1,-28,-35,-18,-61,-20r0,151v0,24,-12,36,-35,36v-24,0,-35,-11,-35,-35r0,-184v-3,-51,61,-33,105,-35v57,-2,88,26,88,81v0,52,-27,84,-82,82v-22,0,-29,-10,-31,-30v-4,-38,50,-13,51,-46","w":212,"k":{"\/":29,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":29,"a":29,"\u00c0":29,"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c4":29,"\u00c5":29,"\u00e0":29,"\u00e1":29,"\u00e2":29,"\u00e3":29,"\u00e4":29,"\u00e5":29,"\u0100":29,"\u0101":29,"\u0102":29,"\u0103":29,"\u0104":29,"\u0105":29,"\u01fa":29,"\u01fb":29,"\u0410":29,"\u0430":29,"\u1ea0":29,"\u1ea1":29,"\u1ea2":29,"\u1ea3":29,"\u1ea4":29,"\u1ea5":29,"\u1ea6":29,"\u1ea7":29,"\u1ea8":29,"\u1ea9":29,"\u1eaa":29,"\u1eab":29,"\u1eac":29,"\u1ead":29,"\u1eae":29,"\u1eaf":29,"\u1eb0":29,"\u1eb1":29,"\u1eb2":29,"\u1eb3":29,"\u1eb4":29,"\u1eb5":29,"\u1eb6":29,"\u1eb7":29,"J":46,"j":46,"\u0134":46,"\u0135":46,"\u0408":46,"\u0458":46,"\u00c6":55,"\u00e6":55,"\u01fc":55,"\u01fd":55}},"Q":{"d":"250,-59v24,15,18,60,-16,60v-11,0,-22,-9,-29,-16v-86,47,-200,-11,-195,-112v4,-77,52,-126,129,-129v102,-4,161,110,111,197xm140,-187v-37,0,-61,25,-61,61v0,40,30,67,75,60v-13,-17,-38,-25,-40,-52v-2,-27,35,-43,54,-23r31,31v8,-43,-19,-77,-59,-77","w":280,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"R":{"d":"201,-55v22,31,-12,68,-47,52v-28,-25,-39,-68,-60,-101v-4,-25,2,-44,31,-44v12,0,20,-8,20,-21v1,-26,-36,-15,-60,-17r0,150v0,24,-12,36,-35,36v-24,0,-35,-11,-35,-35r0,-183v-3,-52,65,-35,109,-35v53,0,86,27,86,77v0,33,-19,59,-43,69","w":219,"k":{"V":5,"W":5,"v":5,"w":5,"\u0174":5,"\u0175":5,"\u1e80":5,"\u1e81":5,"\u1e82":5,"\u1e83":5,"\u1e84":5,"\u1e85":5,"Y":7,"y":7,"\u00dd":7,"\u00fd":7,"\u00ff":7,"\u0176":7,"\u0177":7,"\u0178":7,"\u1ef2":7,"\u1ef3":7}},"S":{"d":"87,-157v68,-4,111,10,111,76v0,54,-26,81,-79,81v-44,0,-104,13,-104,-35v0,-48,63,-35,108,-35v9,0,14,-7,14,-13v1,-20,-30,-13,-50,-14v-51,0,-73,-24,-75,-75v-3,-77,58,-85,136,-81v22,1,36,14,37,34v2,44,-54,36,-98,36v-9,-1,-13,7,-14,13v1,6,5,14,14,13","w":209,"k":{"\/":8,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,",":13,".":13,"\u201a":13,"\u201e":13,"\u2026":13}},"T":{"d":"194,-218v1,30,-25,39,-59,35r0,150v1,22,-14,34,-35,34v-20,0,-35,-12,-35,-34r0,-150v-34,3,-60,-5,-59,-35v2,-59,98,-29,153,-35v21,-2,35,15,35,35","w":200,"k":{"\/":36,"-":31,"\u00ab":31,"\u00bb":31,"\u2013":31,"\u2014":31,"\u2039":31,"\u203a":31,"0":16,"O":16,"Q":16,"o":16,"q":16,"\u00d2":16,"\u00d3":16,"\u00d4":16,"\u00d5":16,"\u00d6":16,"\u00d8":16,"\u00f2":16,"\u00f3":16,"\u00f4":16,"\u00f5":16,"\u00f6":16,"\u00f8":16,"\u014c":16,"\u014d":16,"\u014e":16,"\u014f":16,"\u0150":16,"\u0151":16,"\u01fe":16,"\u01ff":16,"\u041e":16,"\u0424":16,"\u043e":16,"\u0444":16,"\u1ecc":16,"\u1ecd":16,"\u1ece":16,"\u1ecf":16,"\u1ed0":16,"\u1ed1":16,"\u1ed2":16,"\u1ed3":16,"\u1ed4":16,"\u1ed5":16,"\u1ed6":16,"\u1ed7":16,"\u1ed8":16,"\u1ed9":16,"\u1eda":16,"\u1edb":16,"\u1edc":16,"\u1edd":16,"\u1ede":16,"\u1edf":16,"\u1ee0":16,"\u1ee1":16,"\u1ee2":16,"\u1ee3":16,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":43,"j":43,"\u0134":43,"\u0135":43,"\u0408":43,"\u0458":43,"\u00c6":55,"\u00e6":55,"\u01fc":55,"\u01fd":55}},"U":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"V":{"d":"8,-207v-14,-32,24,-60,53,-42v6,4,10,9,13,17r44,127r50,-127v9,-34,70,-27,69,11v-23,73,-62,133,-87,202v-6,18,-35,26,-54,15v-36,-60,-58,-137,-88,-203","w":241,"k":{"\/":36,"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":14,"G":14,"c":14,"g":14,"\u00c7":14,"\u00e7":14,"\u0106":14,"\u0107":14,"\u0108":14,"\u0109":14,"\u010a":14,"\u010b":14,"\u010c":14,"\u010d":14,"\u011c":14,"\u011d":14,"\u011e":14,"\u011f":14,"\u0120":14,"\u0121":14,"\u0122":14,"\u0123":14,"\u0152":14,"\u0153":14,"\u0421":14,"\u0441":14,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":34,"j":34,"\u0134":34,"\u0135":34,"\u0408":34,"\u0458":34,"\u00c6":68,"\u00e6":68,"\u01fc":68,"\u01fd":68}},"W":{"d":"16,-209v-13,-30,23,-58,51,-40v6,4,11,10,13,18r34,124r33,-122v5,-36,57,-31,65,0r32,122r31,-123v7,-39,70,-27,64,10v-12,70,-43,130,-60,197v-8,31,-57,30,-68,0r-33,-93v-16,37,-21,85,-46,112v-23,12,-48,0,-54,-19","w":353,"k":{"\/":36,"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":14,"G":14,"c":14,"g":14,"\u00c7":14,"\u00e7":14,"\u0106":14,"\u0107":14,"\u0108":14,"\u0109":14,"\u010a":14,"\u010b":14,"\u010c":14,"\u010d":14,"\u011c":14,"\u011d":14,"\u011e":14,"\u011f":14,"\u0120":14,"\u0121":14,"\u0122":14,"\u0123":14,"\u0152":14,"\u0153":14,"\u0421":14,"\u0441":14,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":34,"j":34,"\u0134":34,"\u0135":34,"\u0408":34,"\u0458":34,"\u00c6":68,"\u00e6":68,"\u01fc":68,"\u01fd":68}},"X":{"d":"19,-201v-19,-27,17,-69,47,-49v20,13,27,42,40,62v17,-22,24,-67,57,-67v27,0,47,29,31,54r-51,75v18,32,44,56,57,93v-1,32,-48,47,-66,16r-28,-48v-17,22,-20,64,-55,66v-27,2,-47,-28,-32,-52r50,-75","w":213,"k":{"-":17,"\u00ab":17,"\u00bb":17,"\u2013":17,"\u2014":17,"\u2039":17,"\u203a":17,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14}},"Y":{"d":"12,-202v-19,-28,17,-68,47,-48v22,14,29,46,45,68v19,-25,23,-73,61,-73v27,0,46,29,30,54r-56,91v-3,46,14,111,-35,111v-50,0,-32,-65,-35,-111","w":207,"k":{"\/":22,"-":26,"\u00ab":26,"\u00bb":26,"\u2013":26,"\u2014":26,"\u2039":26,"\u203a":26,"C":15,"G":15,"c":15,"g":15,"\u00c7":15,"\u00e7":15,"\u0106":15,"\u0107":15,"\u0108":15,"\u0109":15,"\u010a":15,"\u010b":15,"\u010c":15,"\u010d":15,"\u011c":15,"\u011d":15,"\u011e":15,"\u011f":15,"\u0120":15,"\u0121":15,"\u0122":15,"\u0123":15,"\u0152":15,"\u0153":15,"\u0421":15,"\u0441":15,"0":17,"O":17,"Q":17,"o":17,"q":17,"\u00d2":17,"\u00d3":17,"\u00d4":17,"\u00d5":17,"\u00d6":17,"\u00d8":17,"\u00f2":17,"\u00f3":17,"\u00f4":17,"\u00f5":17,"\u00f6":17,"\u00f8":17,"\u014c":17,"\u014d":17,"\u014e":17,"\u014f":17,"\u0150":17,"\u0151":17,"\u01fe":17,"\u01ff":17,"\u041e":17,"\u0424":17,"\u043e":17,"\u0444":17,"\u1ecc":17,"\u1ecd":17,"\u1ece":17,"\u1ecf":17,"\u1ed0":17,"\u1ed1":17,"\u1ed2":17,"\u1ed3":17,"\u1ed4":17,"\u1ed5":17,"\u1ed6":17,"\u1ed7":17,"\u1ed8":17,"\u1ed9":17,"\u1eda":17,"\u1edb":17,"\u1edc":17,"\u1edd":17,"\u1ede":17,"\u1edf":17,"\u1ee0":17,"\u1ee1":17,"\u1ee2":17,"\u1ee3":17,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":39,"j":39,"\u0134":39,"\u0135":39,"\u0408":39,"\u0458":39,"\u00c6":51,"\u00e6":51,"\u01fc":51,"\u01fd":51}},"Z":{"d":"181,-253v30,-4,41,33,25,55r-92,128v44,1,104,-11,102,35v0,20,-14,36,-35,35r-129,0v-38,3,-49,-34,-29,-59r95,-124v-45,-1,-105,11,-104,-35v1,-19,14,-36,35,-35r132,0","w":233,"k":{"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24}},"[":{"d":"33,-292v-1,-29,45,-10,68,-15v11,0,17,5,17,16v1,23,-19,20,-40,20r0,280v19,0,40,-4,40,17v0,30,-45,18,-71,18v-10,0,-14,-4,-14,-15r0,-321","w":124},"\\":{"d":"5,-267v-7,-23,21,-39,38,-26v4,3,6,7,8,13r82,291v0,25,-40,31,-48,4","w":132},"]":{"d":"117,29v1,28,-43,10,-66,15v-12,0,-18,-6,-18,-18v-2,-21,21,-17,40,-17r0,-280v-21,0,-41,3,-40,-20v1,-28,45,-13,70,-16v13,-2,13,3,14,15r0,321","w":124},"^":{"d":"185,-179v16,15,5,48,-18,44v-33,-5,-45,-39,-68,-56v-22,18,-35,50,-67,56v-22,4,-34,-28,-18,-44r67,-67v12,-12,25,-12,37,0","w":199},"_":{"d":"266,42v0,19,-13,35,-35,35r-183,0v-21,1,-35,-17,-35,-35v0,-18,14,-34,35,-34r183,0v22,-1,35,15,35,34","w":279},"`":{"d":"25,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":138},"a":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"b":{"d":"148,-168v-1,-26,-43,-12,-66,-15r0,33v25,-3,67,11,66,-18xm148,-85v0,-25,-43,-10,-66,-14r0,29v24,-3,66,10,66,-15xm215,-66v0,42,-21,66,-63,66v-52,0,-138,24,-137,-36r0,-182v0,-24,10,-35,31,-35r111,0v65,-4,72,113,16,124v30,4,41,31,42,63","w":228,"k":{"V":10,"W":10,"v":10,"w":10,"\u0174":10,"\u0175":10,"\u1e80":10,"\u1e81":10,"\u1e82":10,"\u1e83":10,"\u1e84":10,"\u1e85":10,",":12,".":12,"\u201a":12,"\u201e":12,"\u2026":12}},"c":{"d":"196,-218v0,32,-26,36,-61,36v-36,0,-58,20,-58,55v0,45,33,57,84,57v22,0,33,14,34,35v1,30,-26,37,-60,35v-79,-5,-126,-48,-126,-125v0,-86,56,-132,152,-128v22,1,34,13,35,35","w":205,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"d":{"d":"90,0v-38,1,-76,3,-76,-35r0,-183v3,-32,33,-37,71,-35v82,4,131,49,131,128v0,76,-48,122,-126,125xm147,-129v0,-35,-24,-54,-63,-53r0,112v41,2,63,-22,63,-59","w":225,"k":{"\/":15,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,"Y":16,"y":16,"\u00dd":16,"\u00fd":16,"\u00ff":16,"\u0176":16,"\u0177":16,"\u0178":16,"\u1ef2":16,"\u1ef3":16,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":13,"a":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u0100":13,"\u0101":13,"\u0102":13,"\u0103":13,"\u0104":13,"\u0105":13,"\u01fa":13,"\u01fb":13,"\u0410":13,"\u0430":13,"\u1ea0":13,"\u1ea1":13,"\u1ea2":13,"\u1ea3":13,"\u1ea4":13,"\u1ea5":13,"\u1ea6":13,"\u1ea7":13,"\u1ea8":13,"\u1ea9":13,"\u1eaa":13,"\u1eab":13,"\u1eac":13,"\u1ead":13,"\u1eae":13,"\u1eaf":13,"\u1eb0":13,"\u1eb1":13,"\u1eb2":13,"\u1eb3":13,"\u1eb4":13,"\u1eb5":13,"\u1eb6":13,"\u1eb7":13}},"e":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35","w":216},"f":{"d":"186,-125v0,45,-58,33,-102,34v1,42,7,93,-35,91v-19,-1,-36,-14,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,25v43,1,102,-11,102,33","w":207,"k":{"\/":27,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":30,"a":30,"\u00c0":30,"\u00c1":30,"\u00c2":30,"\u00c3":30,"\u00c4":30,"\u00c5":30,"\u00e0":30,"\u00e1":30,"\u00e2":30,"\u00e3":30,"\u00e4":30,"\u00e5":30,"\u0100":30,"\u0101":30,"\u0102":30,"\u0103":30,"\u0104":30,"\u0105":30,"\u01fa":30,"\u01fb":30,"\u0410":30,"\u0430":30,"\u1ea0":30,"\u1ea1":30,"\u1ea2":30,"\u1ea3":30,"\u1ea4":30,"\u1ea5":30,"\u1ea6":30,"\u1ea7":30,"\u1ea8":30,"\u1ea9":30,"\u1eaa":30,"\u1eab":30,"\u1eac":30,"\u1ead":30,"\u1eae":30,"\u1eaf":30,"\u1eb0":30,"\u1eb1":30,"\u1eb2":30,"\u1eb3":30,"\u1eb4":30,"\u1eb5":30,"\u1eb6":30,"\u1eb7":30,"J":50,"j":50,"\u0134":50,"\u0135":50,"\u0408":50,"\u0458":50,"\u00c6":53,"\u00e6":53,"\u01fc":53,"\u01fd":53}},"g":{"d":"162,-147v47,0,32,66,34,112v1,32,-27,37,-61,35v-79,-4,-126,-48,-126,-125v0,-87,55,-133,152,-128v22,1,34,13,35,35v0,32,-26,40,-61,36v-61,-6,-78,83,-30,106v6,3,13,5,22,5v-3,-38,-1,-76,35,-76","w":210,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"h":{"d":"176,-255v20,0,36,14,35,35r0,187v1,22,-14,34,-35,34v-44,0,-35,-52,-35,-95r-57,0v-1,42,10,95,-35,95v-20,0,-36,-13,-35,-34r0,-187v-1,-21,16,-35,35,-35v44,-2,35,53,35,96r57,0v0,-43,-9,-96,35,-96","w":225},"i":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35","w":98},"j":{"d":"135,-255v53,-1,35,79,35,129v0,84,-43,126,-132,126v-21,0,-35,-15,-35,-35v0,-24,17,-38,46,-35v72,6,52,-87,52,-150v0,-21,15,-35,34,-35","w":182,"k":{"\/":10,",":28,".":28,"\u201a":28,"\u201e":28,"\u2026":28,"A":13,"a":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u0100":13,"\u0101":13,"\u0102":13,"\u0103":13,"\u0104":13,"\u0105":13,"\u01fa":13,"\u01fb":13,"\u0410":13,"\u0430":13,"\u1ea0":13,"\u1ea1":13,"\u1ea2":13,"\u1ea3":13,"\u1ea4":13,"\u1ea5":13,"\u1ea6":13,"\u1ea7":13,"\u1ea8":13,"\u1ea9":13,"\u1eaa":13,"\u1eab":13,"\u1eac":13,"\u1ead":13,"\u1eae":13,"\u1eaf":13,"\u1eb0":13,"\u1eb1":13,"\u1eb2":13,"\u1eb3":13,"\u1eb4":13,"\u1eb5":13,"\u1eb6":13,"\u1eb7":13}},"k":{"d":"197,-56v25,27,-6,70,-43,54v-5,-2,-9,-5,-12,-10r-58,-81v0,42,9,94,-35,94v-21,0,-35,-13,-35,-34r0,-187v0,-21,15,-35,35,-35v43,-2,35,52,35,95v23,-30,42,-64,68,-92v34,-15,71,24,45,54r-59,67","w":214,"k":{"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":5,"G":5,"c":5,"g":5,"\u00c7":5,"\u00e7":5,"\u0106":5,"\u0107":5,"\u0108":5,"\u0109":5,"\u010a":5,"\u010b":5,"\u010c":5,"\u010d":5,"\u011c":5,"\u011d":5,"\u011e":5,"\u011f":5,"\u0120":5,"\u0121":5,"\u0122":5,"\u0123":5,"\u0152":5,"\u0153":5,"\u0421":5,"\u0441":5,"0":12,"O":12,"Q":12,"o":12,"q":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"\u00d6":12,"\u00d8":12,"\u00f2":12,"\u00f3":12,"\u00f4":12,"\u00f5":12,"\u00f6":12,"\u00f8":12,"\u014c":12,"\u014d":12,"\u014e":12,"\u014f":12,"\u0150":12,"\u0151":12,"\u01fe":12,"\u01ff":12,"\u041e":12,"\u0424":12,"\u043e":12,"\u0444":12,"\u1ecc":12,"\u1ecd":12,"\u1ece":12,"\u1ecf":12,"\u1ed0":12,"\u1ed1":12,"\u1ed2":12,"\u1ed3":12,"\u1ed4":12,"\u1ed5":12,"\u1ed6":12,"\u1ed7":12,"\u1ed8":12,"\u1ed9":12,"\u1eda":12,"\u1edb":12,"\u1edc":12,"\u1edd":12,"\u1ede":12,"\u1edf":12,"\u1ee0":12,"\u1ee1":12,"\u1ee2":12,"\u1ee3":12}},"l":{"d":"154,-35v0,48,-60,35,-105,35v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150v37,-2,70,-1,70,35","w":158,"k":{"\"":36,"'":36,"\u2018":36,"\u2019":36,"\u201c":36,"\u201d":36,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":36,"W":36,"v":36,"w":36,"\u0174":36,"\u0175":36,"\u1e80":36,"\u1e81":36,"\u1e82":36,"\u1e83":36,"\u1e84":36,"\u1e85":36,"Y":36,"y":36,"\u00dd":36,"\u00fd":36,"\u00ff":36,"\u0176":36,"\u0177":36,"\u0178":36,"\u1ef2":36,"\u1ef3":36}},"m":{"d":"222,1v-56,0,-27,-91,-34,-143v-17,23,-45,73,-77,34r-26,-34v-6,53,21,141,-35,143v-21,0,-35,-12,-35,-34r0,-184v-2,-41,50,-47,71,-20r50,64v28,-27,39,-73,85,-82v22,2,36,15,37,38r0,184v0,22,-15,34,-36,34","w":272},"n":{"d":"14,-220v-1,-37,47,-44,65,-17r65,98v3,-47,-15,-117,34,-116v18,0,33,14,33,34r0,188v3,36,-46,43,-64,16r-66,-97v-3,46,16,115,-34,115v-20,0,-33,-13,-33,-33r0,-188","w":225},"o":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"p":{"d":"146,-166v1,-28,-35,-18,-61,-20r0,151v0,24,-12,36,-35,36v-24,0,-35,-11,-35,-35r0,-184v-3,-51,61,-33,105,-35v57,-2,88,26,88,81v0,52,-27,84,-82,82v-22,0,-29,-10,-31,-30v-4,-38,50,-13,51,-46","w":212,"k":{"\/":29,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":29,"a":29,"\u00c0":29,"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c4":29,"\u00c5":29,"\u00e0":29,"\u00e1":29,"\u00e2":29,"\u00e3":29,"\u00e4":29,"\u00e5":29,"\u0100":29,"\u0101":29,"\u0102":29,"\u0103":29,"\u0104":29,"\u0105":29,"\u01fa":29,"\u01fb":29,"\u0410":29,"\u0430":29,"\u1ea0":29,"\u1ea1":29,"\u1ea2":29,"\u1ea3":29,"\u1ea4":29,"\u1ea5":29,"\u1ea6":29,"\u1ea7":29,"\u1ea8":29,"\u1ea9":29,"\u1eaa":29,"\u1eab":29,"\u1eac":29,"\u1ead":29,"\u1eae":29,"\u1eaf":29,"\u1eb0":29,"\u1eb1":29,"\u1eb2":29,"\u1eb3":29,"\u1eb4":29,"\u1eb5":29,"\u1eb6":29,"\u1eb7":29,"J":46,"j":46,"\u0134":46,"\u0135":46,"\u0408":46,"\u0458":46,"\u00c6":55,"\u00e6":55,"\u01fc":55,"\u01fd":55}},"q":{"d":"250,-59v24,15,18,60,-16,60v-11,0,-22,-9,-29,-16v-86,47,-200,-11,-195,-112v4,-77,52,-126,129,-129v102,-4,161,110,111,197xm140,-187v-37,0,-61,25,-61,61v0,40,30,67,75,60v-13,-17,-38,-25,-40,-52v-2,-27,35,-43,54,-23r31,31v8,-43,-19,-77,-59,-77","w":280,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"r":{"d":"201,-55v22,31,-12,68,-47,52v-28,-25,-39,-68,-60,-101v-4,-25,2,-44,31,-44v12,0,20,-8,20,-21v1,-26,-36,-15,-60,-17r0,150v0,24,-12,36,-35,36v-24,0,-35,-11,-35,-35r0,-183v-3,-52,65,-35,109,-35v53,0,86,27,86,77v0,33,-19,59,-43,69","w":219,"k":{"V":5,"W":5,"v":5,"w":5,"\u0174":5,"\u0175":5,"\u1e80":5,"\u1e81":5,"\u1e82":5,"\u1e83":5,"\u1e84":5,"\u1e85":5,"Y":7,"y":7,"\u00dd":7,"\u00fd":7,"\u00ff":7,"\u0176":7,"\u0177":7,"\u0178":7,"\u1ef2":7,"\u1ef3":7}},"s":{"d":"87,-157v68,-4,111,10,111,76v0,54,-26,81,-79,81v-44,0,-104,13,-104,-35v0,-48,63,-35,108,-35v9,0,14,-7,14,-13v1,-20,-30,-13,-50,-14v-51,0,-73,-24,-75,-75v-3,-77,58,-85,136,-81v22,1,36,14,37,34v2,44,-54,36,-98,36v-9,-1,-13,7,-14,13v1,6,5,14,14,13","w":209,"k":{"\/":8,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,",":13,".":13,"\u201a":13,"\u201e":13,"\u2026":13}},"t":{"d":"194,-218v1,30,-25,39,-59,35r0,150v1,22,-14,34,-35,34v-20,0,-35,-12,-35,-34r0,-150v-34,3,-60,-5,-59,-35v2,-59,98,-29,153,-35v21,-2,35,15,35,35","w":200,"k":{"\/":36,"-":31,"\u00ab":31,"\u00bb":31,"\u2013":31,"\u2014":31,"\u2039":31,"\u203a":31,"0":16,"O":16,"Q":16,"o":16,"q":16,"\u00d2":16,"\u00d3":16,"\u00d4":16,"\u00d5":16,"\u00d6":16,"\u00d8":16,"\u00f2":16,"\u00f3":16,"\u00f4":16,"\u00f5":16,"\u00f6":16,"\u00f8":16,"\u014c":16,"\u014d":16,"\u014e":16,"\u014f":16,"\u0150":16,"\u0151":16,"\u01fe":16,"\u01ff":16,"\u041e":16,"\u0424":16,"\u043e":16,"\u0444":16,"\u1ecc":16,"\u1ecd":16,"\u1ece":16,"\u1ecf":16,"\u1ed0":16,"\u1ed1":16,"\u1ed2":16,"\u1ed3":16,"\u1ed4":16,"\u1ed5":16,"\u1ed6":16,"\u1ed7":16,"\u1ed8":16,"\u1ed9":16,"\u1eda":16,"\u1edb":16,"\u1edc":16,"\u1edd":16,"\u1ede":16,"\u1edf":16,"\u1ee0":16,"\u1ee1":16,"\u1ee2":16,"\u1ee3":16,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":43,"j":43,"\u0134":43,"\u0135":43,"\u0408":43,"\u0458":43,"\u00c6":55,"\u00e6":55,"\u01fc":55,"\u01fd":55}},"u":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"v":{"d":"8,-207v-14,-32,24,-60,53,-42v6,4,10,9,13,17r44,127r50,-127v9,-34,70,-27,69,11v-23,73,-62,133,-87,202v-6,18,-35,26,-54,15v-36,-60,-58,-137,-88,-203","w":241,"k":{"\/":36,"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":14,"G":14,"c":14,"g":14,"\u00c7":14,"\u00e7":14,"\u0106":14,"\u0107":14,"\u0108":14,"\u0109":14,"\u010a":14,"\u010b":14,"\u010c":14,"\u010d":14,"\u011c":14,"\u011d":14,"\u011e":14,"\u011f":14,"\u0120":14,"\u0121":14,"\u0122":14,"\u0123":14,"\u0152":14,"\u0153":14,"\u0421":14,"\u0441":14,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":34,"j":34,"\u0134":34,"\u0135":34,"\u0408":34,"\u0458":34,"\u00c6":68,"\u00e6":68,"\u01fc":68,"\u01fd":68}},"w":{"d":"16,-209v-13,-30,23,-58,51,-40v6,4,11,10,13,18r34,124r33,-122v5,-36,57,-31,65,0r32,122r31,-123v7,-39,70,-27,64,10v-12,70,-43,130,-60,197v-8,31,-57,30,-68,0r-33,-93v-16,37,-21,85,-46,112v-23,12,-48,0,-54,-19","w":353,"k":{"\/":36,"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":14,"G":14,"c":14,"g":14,"\u00c7":14,"\u00e7":14,"\u0106":14,"\u0107":14,"\u0108":14,"\u0109":14,"\u010a":14,"\u010b":14,"\u010c":14,"\u010d":14,"\u011c":14,"\u011d":14,"\u011e":14,"\u011f":14,"\u0120":14,"\u0121":14,"\u0122":14,"\u0123":14,"\u0152":14,"\u0153":14,"\u0421":14,"\u0441":14,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":34,"j":34,"\u0134":34,"\u0135":34,"\u0408":34,"\u0458":34,"\u00c6":68,"\u00e6":68,"\u01fc":68,"\u01fd":68}},"x":{"d":"19,-201v-19,-27,17,-69,47,-49v20,13,27,42,40,62v17,-22,24,-67,57,-67v27,0,47,29,31,54r-51,75v18,32,44,56,57,93v-1,32,-48,47,-66,16r-28,-48v-17,22,-20,64,-55,66v-27,2,-47,-28,-32,-52r50,-75","w":213,"k":{"-":17,"\u00ab":17,"\u00bb":17,"\u2013":17,"\u2014":17,"\u2039":17,"\u203a":17,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14}},"y":{"d":"12,-202v-19,-28,17,-68,47,-48v22,14,29,46,45,68v19,-25,23,-73,61,-73v27,0,46,29,30,54r-56,91v-3,46,14,111,-35,111v-50,0,-32,-65,-35,-111","w":207,"k":{"\/":22,"-":26,"\u00ab":26,"\u00bb":26,"\u2013":26,"\u2014":26,"\u2039":26,"\u203a":26,"C":15,"G":15,"c":15,"g":15,"\u00c7":15,"\u00e7":15,"\u0106":15,"\u0107":15,"\u0108":15,"\u0109":15,"\u010a":15,"\u010b":15,"\u010c":15,"\u010d":15,"\u011c":15,"\u011d":15,"\u011e":15,"\u011f":15,"\u0120":15,"\u0121":15,"\u0122":15,"\u0123":15,"\u0152":15,"\u0153":15,"\u0421":15,"\u0441":15,"0":17,"O":17,"Q":17,"o":17,"q":17,"\u00d2":17,"\u00d3":17,"\u00d4":17,"\u00d5":17,"\u00d6":17,"\u00d8":17,"\u00f2":17,"\u00f3":17,"\u00f4":17,"\u00f5":17,"\u00f6":17,"\u00f8":17,"\u014c":17,"\u014d":17,"\u014e":17,"\u014f":17,"\u0150":17,"\u0151":17,"\u01fe":17,"\u01ff":17,"\u041e":17,"\u0424":17,"\u043e":17,"\u0444":17,"\u1ecc":17,"\u1ecd":17,"\u1ece":17,"\u1ecf":17,"\u1ed0":17,"\u1ed1":17,"\u1ed2":17,"\u1ed3":17,"\u1ed4":17,"\u1ed5":17,"\u1ed6":17,"\u1ed7":17,"\u1ed8":17,"\u1ed9":17,"\u1eda":17,"\u1edb":17,"\u1edc":17,"\u1edd":17,"\u1ede":17,"\u1edf":17,"\u1ee0":17,"\u1ee1":17,"\u1ee2":17,"\u1ee3":17,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":39,"j":39,"\u0134":39,"\u0135":39,"\u0408":39,"\u0458":39,"\u00c6":51,"\u00e6":51,"\u01fc":51,"\u01fd":51}},"z":{"d":"181,-253v30,-4,41,33,25,55r-92,128v44,1,104,-11,102,35v0,20,-14,36,-35,35r-129,0v-38,3,-49,-34,-29,-59r95,-124v-45,-1,-105,11,-104,-35v1,-19,14,-36,35,-35r132,0","w":233,"k":{"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24}},"{":{"d":"87,44v-35,1,-57,-9,-57,-31r0,-118v-1,-18,-23,-6,-23,-28v0,-12,6,-19,19,-19v3,0,4,-2,4,-7r0,-117v-1,-22,24,-32,60,-31v12,0,18,6,18,18v1,18,-14,19,-32,18v-6,0,-9,2,-9,6v-6,50,19,115,-23,133v43,20,16,87,23,139v11,5,37,-4,37,19v0,12,-6,18,-17,18","w":128},"|":{"d":"42,-274v-1,-15,10,-24,24,-24v14,0,26,8,25,24r0,282v1,16,-11,24,-25,24v-14,0,-25,-9,-24,-24r0,-282","w":132},"}":{"d":"27,-307v35,-1,57,9,57,31r0,118v2,17,24,5,24,27v0,12,-6,19,-19,19v-3,0,-5,3,-5,8r0,117v1,22,-23,32,-59,31v-12,0,-18,-6,-18,-18v-1,-18,14,-19,32,-18v5,0,8,-2,8,-6v7,-50,-19,-116,23,-134v-43,-20,-15,-86,-23,-138v-12,-5,-37,3,-37,-20v0,-12,6,-17,17,-17","w":128},"~":{"d":"70,-163v35,0,73,40,98,6v12,-16,37,-5,37,13v0,30,-27,45,-56,45v-30,0,-51,-25,-81,-20v-12,2,-20,21,-32,22v-11,0,-23,-10,-22,-21v2,-30,26,-45,56,-45","w":224},"\u00a0":{"w":0},"\u00a1":{"d":"49,1v-54,-0,-35,-77,-35,-126v0,-21,14,-33,35,-34v52,-0,31,77,35,126v1,21,-15,34,-35,34xm48,-183v-21,-0,-35,-14,-35,-35v0,-21,13,-35,35,-35v23,0,35,14,35,35v0,21,-14,35,-35,35","w":97},"\u00a2":{"d":"130,-276v11,0,19,9,17,23v30,-2,49,8,49,35v0,27,-19,38,-49,36r0,112v30,-3,48,9,48,35v0,25,-18,39,-48,35v2,14,-6,23,-17,23v-13,0,-19,-10,-17,-25v-63,-10,-104,-53,-104,-123v0,-72,41,-113,104,-126v-2,-15,4,-25,17,-25xm113,-179v-46,10,-47,94,0,105r0,-105","w":207},"\u00a3":{"d":"184,-35v-1,55,-84,30,-135,35v-53,5,-27,-70,-37,-109v-11,0,-17,-7,-17,-17v0,-10,8,-19,20,-17v5,-75,48,-111,132,-111v21,0,35,16,35,35v0,23,-17,35,-46,35v-31,0,-50,11,-52,41v25,2,65,-9,65,17v0,26,-41,15,-65,17r0,39v44,1,101,-11,100,35","w":189},"\u00a4":{"d":"61,-35v-20,23,-61,-3,-48,-32v5,-12,16,-19,24,-28v-8,-18,-9,-43,0,-62v-9,-11,-27,-20,-27,-39v0,-24,32,-39,51,-21r19,18v20,-9,44,-7,61,1v12,-10,18,-27,39,-28v27,-2,39,33,21,51r-18,18v7,19,8,42,0,62v10,11,26,18,27,38v1,26,-32,41,-50,22r-18,-18v-19,10,-44,9,-63,0xm110,-167v-26,0,-42,17,-42,41v0,25,16,42,42,42v26,0,40,-18,42,-42v-3,-24,-17,-41,-42,-41","w":223},"\u00a5":{"d":"104,1v-31,0,-39,-25,-35,-60v-19,1,-40,-1,-40,-17v0,-17,20,-19,40,-18r0,-9v-19,1,-39,-1,-40,-17v0,-10,7,-17,22,-18v-14,-27,-36,-49,-44,-82v1,-35,50,-47,66,-17r31,53v18,-23,25,-71,59,-71v28,0,48,29,32,54r-39,64v10,1,17,7,17,17v-1,14,-17,18,-34,17r0,9v37,-8,46,36,9,35r-9,0v4,34,-4,60,-35,60","w":207},"\u00a6":{"d":"42,-195v4,-38,-16,-102,24,-103v41,-1,21,65,25,103v2,15,-12,24,-25,24v-13,0,-26,-9,-24,-24xm42,8v4,-38,-16,-103,24,-103v41,0,21,65,25,103v2,15,-11,24,-25,24v-14,0,-26,-9,-24,-24","w":132},"\u00a7":{"d":"77,-180v50,-3,84,5,82,54v0,14,-5,26,-13,35v29,31,8,98,-44,91v-31,-4,-76,10,-76,-22v0,-33,48,-20,79,-22v10,0,17,-7,17,-16v1,-20,-25,-16,-45,-16v-51,0,-69,-58,-38,-89v-33,-31,-10,-97,42,-91v29,3,68,-7,67,22v0,30,-41,21,-71,22v-10,0,-16,7,-16,16v0,9,6,16,16,16xm61,-128v-1,20,25,16,44,16v10,0,17,-7,17,-16v1,-20,-25,-16,-45,-16v-11,0,-16,6,-16,16","w":180},"\u00a8":{"d":"36,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm125,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26","w":161},"\u00aa":{"d":"65,-165r20,0r-9,-26xm142,-129v9,19,-14,35,-32,25v-8,-4,-10,-17,-13,-27r-46,0v-5,13,-7,30,-25,30v-14,0,-28,-14,-20,-28v20,-40,34,-86,58,-122v10,-8,29,-2,31,9","w":148},"\u00ab":{"d":"154,-188v11,-14,33,-2,33,13v-6,24,-29,33,-42,50v14,17,34,27,42,49v1,15,-21,27,-33,14v-18,-20,-42,-36,-55,-61v9,-30,38,-43,55,-65xm66,-188v11,-13,32,-2,32,13v0,25,-29,33,-41,50v14,16,33,27,41,49v1,15,-20,27,-32,14v-18,-20,-43,-36,-56,-61v9,-30,39,-42,56,-65","w":197,"k":{"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":17,"W":17,"v":17,"w":17,"\u0174":17,"\u0175":17,"\u1e80":17,"\u1e81":17,"\u1e82":17,"\u1e83":17,"\u1e84":17,"\u1e85":17,"Y":26,"y":26,"\u00dd":26,"\u00fd":26,"\u00ff":26,"\u0176":26,"\u0177":26,"\u0178":26,"\u1ef2":26,"\u1ef3":26,"A":17,"a":17,"\u00c0":17,"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c4":17,"\u00c5":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u0100":17,"\u0101":17,"\u0102":17,"\u0103":17,"\u0104":17,"\u0105":17,"\u01fa":17,"\u01fb":17,"\u0410":17,"\u0430":17,"\u1ea0":17,"\u1ea1":17,"\u1ea2":17,"\u1ea3":17,"\u1ea4":17,"\u1ea5":17,"\u1ea6":17,"\u1ea7":17,"\u1ea8":17,"\u1ea9":17,"\u1eaa":17,"\u1eab":17,"\u1eac":17,"\u1ead":17,"\u1eae":17,"\u1eaf":17,"\u1eb0":17,"\u1eb1":17,"\u1eb2":17,"\u1eb3":17,"\u1eb4":17,"\u1eb5":17,"\u1eb6":17,"\u1eb7":17,"J":29,"j":29,"\u0134":29,"\u0135":29,"\u0408":29,"\u0458":29,"X":17,"x":17,"\u0423":17,"\u0425":17,"\u0443":17,"\u0445":17,"Z":27,"z":27,"\u0179":27,"\u017a":27,"\u017b":27,"\u017c":27,"\u017d":27,"\u017e":27}},"\u00ac":{"d":"147,-115r-107,0v-13,0,-20,-6,-20,-17v0,-12,7,-17,20,-17r127,0v36,0,20,54,20,85v0,12,-6,19,-19,19v-33,1,-18,-42,-21,-70","w":207},"\u00af":{"d":"156,-297v-3,43,-80,18,-122,24v-14,2,-24,-11,-24,-24v3,-43,80,-18,122,-24v14,-2,24,11,24,24","w":165},"\u00b0":{"d":"68,-256v31,0,52,21,52,52v0,31,-21,51,-52,51v-31,0,-51,-19,-51,-51v0,-31,20,-52,51,-52xm68,-224v-11,0,-19,9,-19,20v0,11,8,20,19,20v11,0,21,-9,21,-20v0,-11,-10,-20,-21,-20","w":136},"\u00b1":{"d":"104,-76v-30,0,-32,-31,-29,-63v-32,2,-63,1,-63,-29v0,-30,30,-33,63,-30v-2,-32,-1,-63,29,-63v30,0,33,30,30,63v32,-2,63,0,63,30v0,30,-31,31,-63,29v2,32,0,63,-30,63xm197,-30v0,16,-12,29,-30,29r-126,0v-18,1,-29,-13,-29,-29v0,-16,12,-31,29,-30r126,0v18,-1,30,14,30,30","w":208},"\u00b2":{"d":"116,-169v16,-1,23,7,23,21v-0,14,-8,21,-23,21r-96,0v-4,0,-6,-2,-6,-6v-0,-44,-5,-92,43,-87v15,-2,44,7,44,-8v0,-6,-3,-9,-10,-9v-29,0,-72,13,-72,-22v-0,-32,44,-20,72,-20v31,0,48,16,48,49v-0,30,-12,45,-42,45v-18,0,-51,-10,-45,16r64,0","w":153},"\u00b3":{"d":"135,-167v-0,26,-13,40,-38,40v-30,-0,-83,14,-83,-21v0,-32,44,-21,72,-21v6,0,9,-4,9,-9v-0,-5,-3,-8,-9,-8v-22,-3,-61,10,-61,-16v0,-26,39,-15,61,-15v6,0,9,-5,9,-11v-0,-5,-3,-9,-9,-9v-28,0,-73,13,-72,-21v0,-14,7,-21,20,-21r66,0v39,-2,43,68,10,75v18,2,24,18,25,37","w":150},"\u00b4":{"d":"104,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":138},"\u00b5":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35","w":231},"\u03bc":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35","w":231},"\u00b6":{"d":"156,-253v6,0,11,5,11,11r0,229v0,10,-5,14,-15,14v-10,0,-16,-4,-16,-14r0,-209r-34,0r0,209v0,10,-5,14,-15,14v-10,0,-15,-4,-15,-14r0,-96v-49,6,-61,-26,-61,-81v0,-85,75,-60,145,-63","w":185},"\u00b7":{"d":"53,-162v20,0,34,13,34,35v1,19,-15,35,-34,35v-19,0,-36,-16,-35,-35v2,-21,14,-35,35,-35","w":103},"\u00b8":{"d":"26,42v29,-11,-34,-64,13,-71v8,-1,16,7,16,17v0,22,16,28,16,49v0,26,-17,40,-44,40v-11,0,-17,-8,-17,-17v0,-8,6,-19,16,-18","w":79},"\u00b9":{"d":"51,-272v14,-16,35,-8,35,15r0,110v1,13,-8,21,-21,21v-32,-1,-17,-52,-20,-83v-21,14,-41,-17,-23,-34","w":100},"\u00ba":{"d":"83,-99v-46,0,-77,-31,-77,-77v0,-48,31,-79,77,-79v46,0,78,31,78,79v0,47,-31,77,-78,77xm84,-212v-19,0,-35,17,-35,36v0,19,16,35,35,35v19,0,35,-16,35,-35v0,-19,-16,-36,-35,-36","w":167},"\u00bb":{"d":"132,-62v-16,18,-45,-9,-27,-27r36,-36v-13,-17,-36,-27,-42,-50v0,-15,22,-26,33,-13v18,21,42,36,55,63v-11,28,-37,43,-55,63xm43,-62v-17,17,-45,-9,-27,-27r36,-36v-13,-17,-36,-27,-42,-50v0,-15,23,-27,33,-13v17,23,53,34,54,70v-16,21,-36,38,-54,56","w":197,"k":{"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":17,"W":17,"v":17,"w":17,"\u0174":17,"\u0175":17,"\u1e80":17,"\u1e81":17,"\u1e82":17,"\u1e83":17,"\u1e84":17,"\u1e85":17,"Y":26,"y":26,"\u00dd":26,"\u00fd":26,"\u00ff":26,"\u0176":26,"\u0177":26,"\u0178":26,"\u1ef2":26,"\u1ef3":26,"A":17,"a":17,"\u00c0":17,"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c4":17,"\u00c5":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u0100":17,"\u0101":17,"\u0102":17,"\u0103":17,"\u0104":17,"\u0105":17,"\u01fa":17,"\u01fb":17,"\u0410":17,"\u0430":17,"\u1ea0":17,"\u1ea1":17,"\u1ea2":17,"\u1ea3":17,"\u1ea4":17,"\u1ea5":17,"\u1ea6":17,"\u1ea7":17,"\u1ea8":17,"\u1ea9":17,"\u1eaa":17,"\u1eab":17,"\u1eac":17,"\u1ead":17,"\u1eae":17,"\u1eaf":17,"\u1eb0":17,"\u1eb1":17,"\u1eb2":17,"\u1eb3":17,"\u1eb4":17,"\u1eb5":17,"\u1eb6":17,"\u1eb7":17,"J":29,"j":29,"\u0134":29,"\u0135":29,"\u0408":29,"\u0458":29,"X":17,"x":17,"\u0423":17,"\u0425":17,"\u0443":17,"\u0445":17,"Z":27,"z":27,"\u0179":27,"\u017a":27,"\u017b":27,"\u017c":27,"\u017d":27,"\u017e":27}},"\u00bc":{"d":"51,-272v14,-16,35,-8,35,15r0,110v1,13,-8,21,-21,21v-32,-1,-17,-52,-20,-83v-21,14,-41,-17,-23,-34xm284,-127v12,1,21,9,21,21r-0,110v-0,13,-9,20,-21,21v-26,1,-22,-29,-21,-55v-30,-3,-78,13,-77,-21v2,-30,-10,-75,21,-76v27,-0,21,33,21,59r35,0v-0,-26,-6,-60,21,-59xm80,-9v-14,21,-51,5,-43,-21v50,-75,109,-141,159,-214v15,-22,50,-5,43,21","w":294},"\u00bd":{"d":"51,-272v14,-16,35,-8,35,15r0,110v1,13,-8,21,-21,21v-32,-1,-17,-52,-20,-83v-21,14,-41,-17,-23,-34xm286,-17v16,-1,23,7,23,21v-0,14,-8,21,-23,21r-96,-0v-4,-0,-6,-2,-6,-6v-0,-44,-5,-92,43,-87v15,-2,44,7,44,-8v0,-6,-3,-9,-10,-9v-29,0,-72,13,-72,-22v-0,-32,44,-20,72,-20v31,0,48,16,48,49v-0,30,-12,45,-42,45v-18,0,-51,-10,-45,16r64,0xm84,-9v-14,21,-51,5,-43,-21v50,-75,109,-141,159,-214v15,-22,50,-5,43,21","w":324},"\u00be":{"d":"323,-127v12,1,21,9,21,21r-0,110v-0,13,-9,20,-21,21v-26,1,-22,-29,-21,-55v-30,-3,-78,13,-77,-21v2,-30,-10,-75,21,-76v27,-0,21,33,21,59r35,0v-0,-26,-6,-60,21,-59xm135,-167v-0,26,-13,40,-38,40v-30,-0,-83,14,-83,-21v0,-32,44,-21,72,-21v6,0,9,-4,9,-9v-0,-5,-3,-8,-9,-8v-22,-3,-61,10,-61,-16v0,-26,39,-15,61,-15v6,0,9,-5,9,-11v-0,-5,-3,-9,-9,-9v-28,0,-73,13,-72,-21v0,-14,7,-21,20,-21r66,0v39,-2,43,68,10,75v18,2,24,18,25,37xm119,-9v-14,21,-51,5,-43,-21v50,-75,109,-141,159,-214v15,-22,50,-5,43,21","w":334},"\u00bf":{"d":"163,-218v2,38,-56,47,-68,14v-10,-25,8,-49,32,-49v21,-0,34,14,36,35xm91,-162v37,-0,70,-2,70,36v0,38,-36,36,-73,35v-9,-0,-14,3,-14,10v0,7,5,11,14,11v50,-0,128,-22,128,37v0,53,-78,33,-124,33v-53,-0,-79,-27,-79,-81v0,-54,26,-81,78,-81","w":228},"\u00c0":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm69,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31"},"\u00c1":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm168,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39"},"\u00c2":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm174,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23"},"\u00c3":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm152,-307v16,2,17,-18,32,-18v9,0,19,7,18,17v-2,24,-22,35,-46,36v-25,1,-39,-15,-61,-17v-15,-1,-16,18,-32,19v-8,0,-19,-8,-18,-17v1,-24,23,-37,47,-37v23,0,38,15,60,17"},"\u00c4":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm79,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm168,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26"},"\u00c5":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm126,-256v-24,0,-40,-15,-40,-38v0,-24,16,-39,40,-39v24,0,40,15,40,39v0,23,-16,38,-40,38xm126,-310v-9,0,-15,6,-15,16v0,8,7,16,15,16v8,0,16,-8,16,-16v0,-9,-7,-16,-16,-16"},"\u00c6":{"d":"344,-35v-1,56,-89,31,-141,35v-28,2,-36,-20,-34,-49r-76,0v-15,19,-22,48,-53,50v-28,1,-43,-29,-27,-51r131,-181v24,-39,108,-17,165,-22v21,-2,35,15,35,35v2,47,-61,33,-106,35r0,24v39,1,89,-9,89,32v0,41,-49,31,-89,32r0,25v45,2,107,-13,106,35xm169,-104r0,-53r-40,53r40,0","w":358},"\u00c7":{"d":"196,-218v0,32,-26,36,-61,36v-36,0,-58,20,-58,55v0,45,33,57,84,57v22,0,33,14,34,35v0,25,-19,39,-49,35v3,14,12,21,14,37v5,35,-53,57,-61,23v1,-8,5,-19,16,-18v22,-5,-3,-31,-4,-44v-62,-12,-102,-52,-102,-123v0,-86,56,-132,152,-128v22,1,34,13,35,35","w":205,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u00c8":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm53,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":216},"\u00c9":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm153,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":216},"\u00ca":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm159,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":216},"\u00cb":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm63,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm152,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26","w":216},"\u00cc":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm-5,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":98},"\u00cd":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm95,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":98},"\u00ce":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm101,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":98},"\u00cf":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm5,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm94,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26","w":98},"\u00d0":{"d":"90,0v-38,1,-76,3,-76,-35r0,-69v-19,-2,-18,-38,0,-40v1,-47,-11,-107,37,-109v103,-5,165,38,165,128v0,76,-48,122,-126,125xm106,-123v0,12,-9,21,-22,20r0,33v41,2,63,-22,63,-59v0,-35,-24,-54,-63,-53v2,12,-3,30,2,38v12,0,20,9,20,21","w":225,"k":{"\/":15,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,"Y":16,"y":16,"\u00dd":16,"\u00fd":16,"\u00ff":16,"\u0176":16,"\u0177":16,"\u0178":16,"\u1ef2":16,"\u1ef3":16,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":13,"a":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u0100":13,"\u0101":13,"\u0102":13,"\u0103":13,"\u0104":13,"\u0105":13,"\u01fa":13,"\u01fb":13,"\u0410":13,"\u0430":13,"\u1ea0":13,"\u1ea1":13,"\u1ea2":13,"\u1ea3":13,"\u1ea4":13,"\u1ea5":13,"\u1ea6":13,"\u1ea7":13,"\u1ea8":13,"\u1ea9":13,"\u1eaa":13,"\u1eab":13,"\u1eac":13,"\u1ead":13,"\u1eae":13,"\u1eaf":13,"\u1eb0":13,"\u1eb1":13,"\u1eb2":13,"\u1eb3":13,"\u1eb4":13,"\u1eb5":13,"\u1eb6":13,"\u1eb7":13}},"\u00d1":{"d":"14,-220v-1,-37,47,-44,65,-17r65,98v3,-47,-15,-117,34,-116v18,0,33,14,33,34r0,188v3,36,-46,43,-64,16r-66,-97v-3,46,16,115,-34,115v-20,0,-33,-13,-33,-33r0,-188xm141,-307v16,2,17,-18,32,-18v9,0,19,7,18,17v-2,24,-22,35,-46,36v-25,1,-39,-15,-61,-17v-15,-1,-16,18,-32,19v-8,0,-19,-8,-18,-17v1,-24,23,-37,47,-37v23,0,38,15,60,17","w":225},"\u00d2":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm85,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u00d3":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm185,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u00d4":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm190,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u00d5":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm168,-307v16,2,17,-18,32,-18v9,0,19,7,18,17v-2,24,-22,35,-46,36v-25,1,-39,-15,-61,-17v-15,-1,-16,18,-32,19v-8,0,-19,-8,-18,-17v1,-24,23,-37,47,-37v23,0,38,15,60,17","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u00d6":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm95,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm184,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u00d7":{"d":"80,-61v-16,20,-52,6,-50,-21v1,-20,22,-31,32,-44v-10,-13,-30,-23,-32,-43v-2,-27,31,-42,50,-23r24,24v13,-11,23,-33,44,-33v25,0,40,32,22,51r-24,24v11,14,30,21,32,44v1,26,-31,39,-50,21r-24,-23","w":208},"\u00d8":{"d":"10,-127v-1,-97,98,-155,189,-115v10,-10,14,-29,32,-29v20,0,34,21,21,39r-15,20v17,22,32,48,32,85v1,98,-99,158,-189,115v-10,10,-17,30,-34,30v-21,1,-33,-23,-20,-39r16,-21v-18,-20,-33,-47,-32,-85xm122,-70v51,16,96,-38,68,-87xm155,-183v-52,-12,-90,39,-66,86","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u00d9":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm61,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u00da":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm161,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u00db":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm166,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u00dc":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm71,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm160,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u00dd":{"d":"12,-202v-19,-28,17,-68,47,-48v22,14,29,46,45,68v19,-25,23,-73,61,-73v27,0,46,29,30,54r-56,91v-3,46,14,111,-35,111v-50,0,-32,-65,-35,-111xm149,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":207,"k":{"\/":22,"-":26,"\u00ab":26,"\u00bb":26,"\u2013":26,"\u2014":26,"\u2039":26,"\u203a":26,"C":15,"G":15,"c":15,"g":15,"\u00c7":15,"\u00e7":15,"\u0106":15,"\u0107":15,"\u0108":15,"\u0109":15,"\u010a":15,"\u010b":15,"\u010c":15,"\u010d":15,"\u011c":15,"\u011d":15,"\u011e":15,"\u011f":15,"\u0120":15,"\u0121":15,"\u0122":15,"\u0123":15,"\u0152":15,"\u0153":15,"\u0421":15,"\u0441":15,"0":17,"O":17,"Q":17,"o":17,"q":17,"\u00d2":17,"\u00d3":17,"\u00d4":17,"\u00d5":17,"\u00d6":17,"\u00d8":17,"\u00f2":17,"\u00f3":17,"\u00f4":17,"\u00f5":17,"\u00f6":17,"\u00f8":17,"\u014c":17,"\u014d":17,"\u014e":17,"\u014f":17,"\u0150":17,"\u0151":17,"\u01fe":17,"\u01ff":17,"\u041e":17,"\u0424":17,"\u043e":17,"\u0444":17,"\u1ecc":17,"\u1ecd":17,"\u1ece":17,"\u1ecf":17,"\u1ed0":17,"\u1ed1":17,"\u1ed2":17,"\u1ed3":17,"\u1ed4":17,"\u1ed5":17,"\u1ed6":17,"\u1ed7":17,"\u1ed8":17,"\u1ed9":17,"\u1eda":17,"\u1edb":17,"\u1edc":17,"\u1edd":17,"\u1ede":17,"\u1edf":17,"\u1ee0":17,"\u1ee1":17,"\u1ee2":17,"\u1ee3":17,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":39,"j":39,"\u0134":39,"\u0135":39,"\u0408":39,"\u0458":39,"\u00c6":51,"\u00e6":51,"\u01fc":51,"\u01fd":51}},"\u00de":{"d":"91,-79v0,-37,51,-17,54,-48v2,-26,-36,-17,-60,-19v-7,53,24,145,-35,147v-25,1,-36,-13,-36,-35r0,-186v-1,-21,15,-35,35,-35v22,1,38,17,35,43v72,-5,124,16,124,81v0,50,-29,81,-85,81v-21,0,-32,-10,-32,-29","w":212},"\u00df":{"d":"87,-157v68,-4,111,10,111,76v0,54,-26,81,-79,81v-44,0,-104,13,-104,-35v0,-48,63,-35,108,-35v9,0,14,-7,14,-13v1,-20,-30,-13,-50,-14v-51,0,-73,-24,-75,-75v-3,-77,58,-85,136,-81v22,1,36,14,37,34v2,44,-54,36,-98,36v-9,-1,-13,7,-14,13v1,6,5,14,14,13xm296,-157v68,-4,111,10,111,76v0,54,-26,81,-79,81v-44,0,-104,13,-104,-35v0,-48,63,-35,108,-35v9,0,14,-7,14,-13v1,-20,-30,-13,-50,-14v-51,0,-73,-24,-75,-75v-3,-77,58,-85,136,-81v22,1,36,14,37,34v2,44,-54,36,-98,36v-9,-1,-13,7,-14,13v1,6,5,14,14,13","w":418,"k":{"\/":8,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,",":13,".":13,"\u201a":13,"\u201e":13,"\u2026":13}},"\u00e0":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm69,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31"},"\u00e1":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm168,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39"},"\u00e2":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm174,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23"},"\u00e3":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm152,-307v16,2,17,-18,32,-18v9,0,19,7,18,17v-2,24,-22,35,-46,36v-25,1,-39,-15,-61,-17v-15,-1,-16,18,-32,19v-8,0,-19,-8,-18,-17v1,-24,23,-37,47,-37v23,0,38,15,60,17"},"\u00e4":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm79,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm168,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26"},"\u00e5":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm127,-256v-24,0,-40,-15,-40,-38v0,-24,16,-39,40,-39v24,0,40,15,40,39v0,23,-16,38,-40,38xm127,-310v-9,0,-15,6,-15,16v0,8,7,16,15,16v8,0,16,-8,16,-16v0,-9,-7,-16,-16,-16"},"\u00e6":{"d":"344,-35v-1,56,-89,31,-141,35v-28,2,-36,-20,-34,-49r-76,0v-15,19,-22,48,-53,50v-28,1,-43,-29,-27,-51r131,-181v24,-39,108,-17,165,-22v21,-2,35,15,35,35v2,47,-61,33,-106,35r0,24v39,1,89,-9,89,32v0,41,-49,31,-89,32r0,25v45,2,107,-13,106,35xm169,-104r0,-53r-40,53r40,0","w":358},"\u00e7":{"d":"196,-218v0,32,-26,36,-61,36v-36,0,-58,20,-58,55v0,45,33,57,84,57v22,0,33,14,34,35v0,25,-19,39,-49,35v3,14,12,21,14,37v5,35,-53,57,-61,23v1,-8,5,-19,16,-18v22,-5,-3,-31,-4,-44v-62,-12,-102,-52,-102,-123v0,-86,56,-132,152,-128v22,1,34,13,35,35","w":205,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u00e8":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm53,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":216},"\u00e9":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm153,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":216},"\u00ea":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm159,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":216},"\u00eb":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm63,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm152,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26","w":216},"\u00ec":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm-5,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":98},"\u00ed":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm95,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":98},"\u00ee":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm101,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":98},"\u00ef":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm5,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm94,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26","w":98},"\u00f0":{"d":"90,0v-38,1,-76,3,-76,-35r0,-69v-19,-2,-18,-38,0,-40v1,-47,-11,-107,37,-109v103,-5,165,38,165,128v0,76,-48,122,-126,125xm106,-123v0,12,-9,21,-22,20r0,33v41,2,63,-22,63,-59v0,-35,-24,-54,-63,-53v2,12,-3,30,2,38v12,0,20,9,20,21","w":225,"k":{"\/":15,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,"Y":16,"y":16,"\u00dd":16,"\u00fd":16,"\u00ff":16,"\u0176":16,"\u0177":16,"\u0178":16,"\u1ef2":16,"\u1ef3":16,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":13,"a":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u0100":13,"\u0101":13,"\u0102":13,"\u0103":13,"\u0104":13,"\u0105":13,"\u01fa":13,"\u01fb":13,"\u0410":13,"\u0430":13,"\u1ea0":13,"\u1ea1":13,"\u1ea2":13,"\u1ea3":13,"\u1ea4":13,"\u1ea5":13,"\u1ea6":13,"\u1ea7":13,"\u1ea8":13,"\u1ea9":13,"\u1eaa":13,"\u1eab":13,"\u1eac":13,"\u1ead":13,"\u1eae":13,"\u1eaf":13,"\u1eb0":13,"\u1eb1":13,"\u1eb2":13,"\u1eb3":13,"\u1eb4":13,"\u1eb5":13,"\u1eb6":13,"\u1eb7":13}},"\u00f1":{"d":"14,-220v-1,-37,47,-44,65,-17r65,98v3,-47,-15,-117,34,-116v18,0,33,14,33,34r0,188v3,36,-46,43,-64,16r-66,-97v-3,46,16,115,-34,115v-20,0,-33,-13,-33,-33r0,-188xm141,-307v16,2,17,-18,32,-18v9,0,19,7,18,17v-2,24,-22,35,-46,36v-25,1,-39,-15,-61,-17v-15,-1,-16,18,-32,19v-8,0,-19,-8,-18,-17v1,-24,23,-37,47,-37v23,0,38,15,60,17","w":225},"\u00f2":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm85,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u00f3":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm185,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u00f4":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm190,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u00f5":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm168,-307v16,2,17,-18,32,-18v9,0,19,7,18,17v-2,24,-22,35,-46,36v-25,1,-39,-15,-61,-17v-15,-1,-16,18,-32,19v-8,0,-19,-8,-18,-17v1,-24,23,-37,47,-37v23,0,38,15,60,17","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u00f6":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm95,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm184,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u00f7":{"d":"197,-126v0,16,-12,29,-30,29r-126,0v-18,1,-29,-13,-29,-29v0,-16,12,-31,29,-30r126,0v18,-1,30,14,30,30xm104,-80v21,0,35,15,35,36v0,20,-13,34,-35,34v-22,0,-35,-14,-35,-34v0,-21,14,-36,35,-36xm104,-242v21,0,34,15,35,35v1,19,-15,36,-35,36v-20,0,-36,-16,-35,-36v2,-21,14,-35,35,-35","w":208},"\u00f8":{"d":"10,-127v-1,-97,98,-155,189,-115v10,-10,14,-29,32,-29v20,0,34,21,21,39r-15,20v17,22,32,48,32,85v1,98,-99,158,-189,115v-10,10,-17,30,-34,30v-21,1,-33,-23,-20,-39r16,-21v-18,-20,-33,-47,-32,-85xm122,-70v51,16,96,-38,68,-87xm155,-183v-52,-12,-90,39,-66,86","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u00f9":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm61,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u00fa":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm161,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u00fb":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm166,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u00fc":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm71,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm160,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u00fd":{"d":"12,-202v-19,-28,17,-68,47,-48v22,14,29,46,45,68v19,-25,23,-73,61,-73v27,0,46,29,30,54r-56,91v-3,46,14,111,-35,111v-50,0,-32,-65,-35,-111xm149,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":207,"k":{"\/":22,"-":26,"\u00ab":26,"\u00bb":26,"\u2013":26,"\u2014":26,"\u2039":26,"\u203a":26,"C":15,"G":15,"c":15,"g":15,"\u00c7":15,"\u00e7":15,"\u0106":15,"\u0107":15,"\u0108":15,"\u0109":15,"\u010a":15,"\u010b":15,"\u010c":15,"\u010d":15,"\u011c":15,"\u011d":15,"\u011e":15,"\u011f":15,"\u0120":15,"\u0121":15,"\u0122":15,"\u0123":15,"\u0152":15,"\u0153":15,"\u0421":15,"\u0441":15,"0":17,"O":17,"Q":17,"o":17,"q":17,"\u00d2":17,"\u00d3":17,"\u00d4":17,"\u00d5":17,"\u00d6":17,"\u00d8":17,"\u00f2":17,"\u00f3":17,"\u00f4":17,"\u00f5":17,"\u00f6":17,"\u00f8":17,"\u014c":17,"\u014d":17,"\u014e":17,"\u014f":17,"\u0150":17,"\u0151":17,"\u01fe":17,"\u01ff":17,"\u041e":17,"\u0424":17,"\u043e":17,"\u0444":17,"\u1ecc":17,"\u1ecd":17,"\u1ece":17,"\u1ecf":17,"\u1ed0":17,"\u1ed1":17,"\u1ed2":17,"\u1ed3":17,"\u1ed4":17,"\u1ed5":17,"\u1ed6":17,"\u1ed7":17,"\u1ed8":17,"\u1ed9":17,"\u1eda":17,"\u1edb":17,"\u1edc":17,"\u1edd":17,"\u1ede":17,"\u1edf":17,"\u1ee0":17,"\u1ee1":17,"\u1ee2":17,"\u1ee3":17,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":39,"j":39,"\u0134":39,"\u0135":39,"\u0408":39,"\u0458":39,"\u00c6":51,"\u00e6":51,"\u01fc":51,"\u01fd":51}},"\u00fe":{"d":"91,-79v0,-37,51,-17,54,-48v2,-26,-36,-17,-60,-19v-7,53,24,145,-35,147v-25,1,-36,-13,-36,-35r0,-186v-1,-21,15,-35,35,-35v22,1,38,17,35,43v72,-5,124,16,124,81v0,50,-29,81,-85,81v-21,0,-32,-10,-32,-29","w":212},"\u00ff":{"d":"12,-202v-19,-28,17,-68,47,-48v22,14,29,46,45,68v19,-25,23,-73,61,-73v27,0,46,29,30,54r-56,91v-3,46,14,111,-35,111v-50,0,-32,-65,-35,-111xm59,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm148,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26","w":207,"k":{"\/":22,"-":26,"\u00ab":26,"\u00bb":26,"\u2013":26,"\u2014":26,"\u2039":26,"\u203a":26,"C":15,"G":15,"c":15,"g":15,"\u00c7":15,"\u00e7":15,"\u0106":15,"\u0107":15,"\u0108":15,"\u0109":15,"\u010a":15,"\u010b":15,"\u010c":15,"\u010d":15,"\u011c":15,"\u011d":15,"\u011e":15,"\u011f":15,"\u0120":15,"\u0121":15,"\u0122":15,"\u0123":15,"\u0152":15,"\u0153":15,"\u0421":15,"\u0441":15,"0":17,"O":17,"Q":17,"o":17,"q":17,"\u00d2":17,"\u00d3":17,"\u00d4":17,"\u00d5":17,"\u00d6":17,"\u00d8":17,"\u00f2":17,"\u00f3":17,"\u00f4":17,"\u00f5":17,"\u00f6":17,"\u00f8":17,"\u014c":17,"\u014d":17,"\u014e":17,"\u014f":17,"\u0150":17,"\u0151":17,"\u01fe":17,"\u01ff":17,"\u041e":17,"\u0424":17,"\u043e":17,"\u0444":17,"\u1ecc":17,"\u1ecd":17,"\u1ece":17,"\u1ecf":17,"\u1ed0":17,"\u1ed1":17,"\u1ed2":17,"\u1ed3":17,"\u1ed4":17,"\u1ed5":17,"\u1ed6":17,"\u1ed7":17,"\u1ed8":17,"\u1ed9":17,"\u1eda":17,"\u1edb":17,"\u1edc":17,"\u1edd":17,"\u1ede":17,"\u1edf":17,"\u1ee0":17,"\u1ee1":17,"\u1ee2":17,"\u1ee3":17,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":39,"j":39,"\u0134":39,"\u0135":39,"\u0408":39,"\u0458":39,"\u00c6":51,"\u00e6":51,"\u01fc":51,"\u01fd":51}},"\u0100":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm196,-297v-3,43,-80,18,-122,24v-14,2,-24,-11,-24,-24v3,-43,80,-18,122,-24v14,-2,24,11,24,24"},"\u0101":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm196,-297v-3,43,-80,18,-122,24v-14,2,-24,-11,-24,-24v3,-43,80,-18,122,-24v14,-2,24,11,24,24"},"\u0102":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm123,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24"},"\u0103":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm123,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24"},"\u0104":{"d":"249,84v-54,0,-79,-40,-57,-84v-22,-4,-23,-31,-31,-49r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,59,136,89,203v12,26,-12,40,-16,59v2,13,8,11,26,11v20,0,32,13,32,30v0,16,-11,30,-30,30xm108,-104r34,0r-16,-46"},"\u0105":{"d":"249,84v-54,0,-79,-40,-57,-84v-22,-4,-23,-31,-31,-49r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,59,136,89,203v12,26,-12,40,-16,59v2,13,8,11,26,11v20,0,32,13,32,30v0,16,-11,30,-30,30xm108,-104r34,0r-16,-46"},"\u0106":{"d":"196,-218v0,32,-26,36,-61,36v-36,0,-58,20,-58,55v0,45,33,57,84,57v22,0,33,14,34,35v1,30,-26,37,-60,35v-79,-5,-126,-48,-126,-125v0,-86,56,-132,152,-128v22,1,34,13,35,35xm169,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":205,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u0107":{"d":"196,-218v0,32,-26,36,-61,36v-36,0,-58,20,-58,55v0,45,33,57,84,57v22,0,33,14,34,35v1,30,-26,37,-60,35v-79,-5,-126,-48,-126,-125v0,-86,56,-132,152,-128v22,1,34,13,35,35xm169,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":205,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u0108":{"d":"196,-218v0,32,-26,36,-61,36v-36,0,-58,20,-58,55v0,45,33,57,84,57v22,0,33,14,34,35v1,30,-26,37,-60,35v-79,-5,-126,-48,-126,-125v0,-86,56,-132,152,-128v22,1,34,13,35,35xm175,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":205,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u0109":{"d":"196,-218v0,32,-26,36,-61,36v-36,0,-58,20,-58,55v0,45,33,57,84,57v22,0,33,14,34,35v1,30,-26,37,-60,35v-79,-5,-126,-48,-126,-125v0,-86,56,-132,152,-128v22,1,34,13,35,35xm175,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":205,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u010a":{"d":"196,-218v0,32,-26,36,-61,36v-36,0,-58,20,-58,55v0,45,33,57,84,57v22,0,33,14,34,35v1,30,-26,37,-60,35v-79,-5,-126,-48,-126,-125v0,-86,56,-132,152,-128v22,1,34,13,35,35xm123,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26","w":205,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u010b":{"d":"196,-218v0,32,-26,36,-61,36v-36,0,-58,20,-58,55v0,45,33,57,84,57v22,0,33,14,34,35v1,30,-26,37,-60,35v-79,-5,-126,-48,-126,-125v0,-86,56,-132,152,-128v22,1,34,13,35,35xm123,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26","w":205,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u010c":{"d":"196,-218v0,32,-26,36,-61,36v-36,0,-58,20,-58,55v0,45,33,57,84,57v22,0,33,14,34,35v1,30,-26,37,-60,35v-79,-5,-126,-48,-126,-125v0,-86,56,-132,152,-128v22,1,34,13,35,35xm73,-292v-20,-8,-7,-42,13,-34v14,5,25,14,38,20v15,-7,25,-19,43,-21v17,-2,26,29,8,35v-19,7,-39,33,-60,22","w":205,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u010d":{"d":"196,-218v0,32,-26,36,-61,36v-36,0,-58,20,-58,55v0,45,33,57,84,57v22,0,33,14,34,35v1,30,-26,37,-60,35v-79,-5,-126,-48,-126,-125v0,-86,56,-132,152,-128v22,1,34,13,35,35xm73,-292v-20,-8,-7,-42,13,-34v14,5,25,14,38,20v15,-7,25,-19,43,-21v17,-2,26,29,8,35v-19,7,-39,33,-60,22","w":205,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u010e":{"d":"90,0v-38,1,-76,3,-76,-35r0,-183v3,-32,33,-37,71,-35v82,4,131,49,131,128v0,76,-48,122,-126,125xm147,-129v0,-35,-24,-54,-63,-53r0,112v41,2,63,-22,63,-59xm40,-292v-20,-8,-7,-42,13,-34v14,5,25,14,38,20v15,-7,25,-19,43,-21v17,-2,26,29,8,35v-19,7,-39,33,-60,22","w":225,"k":{"\/":15,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,"Y":16,"y":16,"\u00dd":16,"\u00fd":16,"\u00ff":16,"\u0176":16,"\u0177":16,"\u0178":16,"\u1ef2":16,"\u1ef3":16,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":13,"a":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u0100":13,"\u0101":13,"\u0102":13,"\u0103":13,"\u0104":13,"\u0105":13,"\u01fa":13,"\u01fb":13,"\u0410":13,"\u0430":13,"\u1ea0":13,"\u1ea1":13,"\u1ea2":13,"\u1ea3":13,"\u1ea4":13,"\u1ea5":13,"\u1ea6":13,"\u1ea7":13,"\u1ea8":13,"\u1ea9":13,"\u1eaa":13,"\u1eab":13,"\u1eac":13,"\u1ead":13,"\u1eae":13,"\u1eaf":13,"\u1eb0":13,"\u1eb1":13,"\u1eb2":13,"\u1eb3":13,"\u1eb4":13,"\u1eb5":13,"\u1eb6":13,"\u1eb7":13}},"\u010f":{"d":"90,0v-38,1,-76,3,-76,-35r0,-183v3,-32,33,-37,71,-35v82,4,131,49,131,128v0,76,-48,122,-126,125xm147,-129v0,-35,-24,-54,-63,-53r0,112v41,2,63,-22,63,-59xm40,-292v-20,-8,-7,-42,13,-34v14,5,25,14,38,20v15,-7,25,-19,43,-21v17,-2,26,29,8,35v-19,7,-39,33,-60,22","w":225,"k":{"\/":15,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,"Y":16,"y":16,"\u00dd":16,"\u00fd":16,"\u00ff":16,"\u0176":16,"\u0177":16,"\u0178":16,"\u1ef2":16,"\u1ef3":16,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":13,"a":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u0100":13,"\u0101":13,"\u0102":13,"\u0103":13,"\u0104":13,"\u0105":13,"\u01fa":13,"\u01fb":13,"\u0410":13,"\u0430":13,"\u1ea0":13,"\u1ea1":13,"\u1ea2":13,"\u1ea3":13,"\u1ea4":13,"\u1ea5":13,"\u1ea6":13,"\u1ea7":13,"\u1ea8":13,"\u1ea9":13,"\u1eaa":13,"\u1eab":13,"\u1eac":13,"\u1ead":13,"\u1eae":13,"\u1eaf":13,"\u1eb0":13,"\u1eb1":13,"\u1eb2":13,"\u1eb3":13,"\u1eb4":13,"\u1eb5":13,"\u1eb6":13,"\u1eb7":13}},"\u0110":{"d":"90,0v-38,1,-76,3,-76,-35r0,-69v-19,-2,-18,-38,0,-40v1,-47,-11,-107,37,-109v103,-5,165,38,165,128v0,76,-48,122,-126,125xm106,-123v0,12,-9,21,-22,20r0,33v41,2,63,-22,63,-59v0,-35,-24,-54,-63,-53v2,12,-3,30,2,38v12,0,20,9,20,21","w":225,"k":{"\/":15,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,"Y":16,"y":16,"\u00dd":16,"\u00fd":16,"\u00ff":16,"\u0176":16,"\u0177":16,"\u0178":16,"\u1ef2":16,"\u1ef3":16,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":13,"a":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u0100":13,"\u0101":13,"\u0102":13,"\u0103":13,"\u0104":13,"\u0105":13,"\u01fa":13,"\u01fb":13,"\u0410":13,"\u0430":13,"\u1ea0":13,"\u1ea1":13,"\u1ea2":13,"\u1ea3":13,"\u1ea4":13,"\u1ea5":13,"\u1ea6":13,"\u1ea7":13,"\u1ea8":13,"\u1ea9":13,"\u1eaa":13,"\u1eab":13,"\u1eac":13,"\u1ead":13,"\u1eae":13,"\u1eaf":13,"\u1eb0":13,"\u1eb1":13,"\u1eb2":13,"\u1eb3":13,"\u1eb4":13,"\u1eb5":13,"\u1eb6":13,"\u1eb7":13}},"\u0111":{"d":"90,0v-38,1,-76,3,-76,-35r0,-69v-19,-2,-18,-38,0,-40v1,-47,-11,-107,37,-109v103,-5,165,38,165,128v0,76,-48,122,-126,125xm106,-123v0,12,-9,21,-22,20r0,33v41,2,63,-22,63,-59v0,-35,-24,-54,-63,-53v2,12,-3,30,2,38v12,0,20,9,20,21","w":225,"k":{"\/":15,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,"Y":16,"y":16,"\u00dd":16,"\u00fd":16,"\u00ff":16,"\u0176":16,"\u0177":16,"\u0178":16,"\u1ef2":16,"\u1ef3":16,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":13,"a":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u0100":13,"\u0101":13,"\u0102":13,"\u0103":13,"\u0104":13,"\u0105":13,"\u01fa":13,"\u01fb":13,"\u0410":13,"\u0430":13,"\u1ea0":13,"\u1ea1":13,"\u1ea2":13,"\u1ea3":13,"\u1ea4":13,"\u1ea5":13,"\u1ea6":13,"\u1ea7":13,"\u1ea8":13,"\u1ea9":13,"\u1eaa":13,"\u1eab":13,"\u1eac":13,"\u1ead":13,"\u1eae":13,"\u1eaf":13,"\u1eb0":13,"\u1eb1":13,"\u1eb2":13,"\u1eb3":13,"\u1eb4":13,"\u1eb5":13,"\u1eb6":13,"\u1eb7":13}},"\u0112":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm181,-297v-3,43,-80,18,-122,24v-14,2,-24,-11,-24,-24v3,-43,80,-18,122,-24v14,-2,24,11,24,24","w":216},"\u0113":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm181,-297v-3,43,-80,18,-122,24v-14,2,-24,-11,-24,-24v3,-43,80,-18,122,-24v14,-2,24,11,24,24","w":216},"\u0114":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm108,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24","w":216},"\u0115":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm108,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24","w":216},"\u0116":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm108,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26","w":216},"\u0117":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm108,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26","w":216},"\u0118":{"d":"84,-70v48,3,119,-16,119,35v0,31,-35,30,-45,48v0,11,4,11,15,11v20,0,32,13,32,30v0,16,-11,31,-30,30v-32,-1,-56,-8,-54,-41v0,-25,15,-37,36,-43v-52,-8,-142,24,-143,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25","w":216},"\u0119":{"d":"84,-70v48,3,119,-16,119,35v0,31,-35,30,-45,48v0,11,4,11,15,11v20,0,32,13,32,30v0,16,-11,31,-30,30v-32,-1,-56,-8,-54,-41v0,-25,15,-37,36,-43v-52,-8,-142,24,-143,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25","w":216},"\u011a":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm57,-292v-20,-8,-7,-42,13,-34v14,5,25,14,38,20v15,-7,25,-19,43,-21v17,-2,26,29,8,35v-19,7,-39,33,-60,22","w":216},"\u011b":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm57,-292v-20,-8,-7,-42,13,-34v14,5,25,14,38,20v15,-7,25,-19,43,-21v17,-2,26,29,8,35v-19,7,-39,33,-60,22","w":216},"\u011c":{"d":"162,-147v47,0,32,66,34,112v1,32,-27,37,-61,35v-79,-4,-126,-48,-126,-125v0,-87,55,-133,152,-128v22,1,34,13,35,35v0,32,-26,40,-61,36v-61,-6,-78,83,-30,106v6,3,13,5,22,5v-3,-38,-1,-76,35,-76xm177,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":210,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u011d":{"d":"162,-147v47,0,32,66,34,112v1,32,-27,37,-61,35v-79,-4,-126,-48,-126,-125v0,-87,55,-133,152,-128v22,1,34,13,35,35v0,32,-26,40,-61,36v-61,-6,-78,83,-30,106v6,3,13,5,22,5v-3,-38,-1,-76,35,-76xm177,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":210,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u011e":{"d":"162,-147v47,0,32,66,34,112v1,32,-27,37,-61,35v-79,-4,-126,-48,-126,-125v0,-87,55,-133,152,-128v22,1,34,13,35,35v0,32,-26,40,-61,36v-61,-6,-78,83,-30,106v6,3,13,5,22,5v-3,-38,-1,-76,35,-76xm126,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24","w":210,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u011f":{"d":"162,-147v47,0,32,66,34,112v1,32,-27,37,-61,35v-79,-4,-126,-48,-126,-125v0,-87,55,-133,152,-128v22,1,34,13,35,35v0,32,-26,40,-61,36v-61,-6,-78,83,-30,106v6,3,13,5,22,5v-3,-38,-1,-76,35,-76xm126,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24","w":210,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u0120":{"d":"162,-147v47,0,32,66,34,112v1,32,-27,37,-61,35v-79,-4,-126,-48,-126,-125v0,-87,55,-133,152,-128v22,1,34,13,35,35v0,32,-26,40,-61,36v-61,-6,-78,83,-30,106v6,3,13,5,22,5v-3,-38,-1,-76,35,-76xm126,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26","w":210,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u0121":{"d":"162,-147v47,0,32,66,34,112v1,32,-27,37,-61,35v-79,-4,-126,-48,-126,-125v0,-87,55,-133,152,-128v22,1,34,13,35,35v0,32,-26,40,-61,36v-61,-6,-78,83,-30,106v6,3,13,5,22,5v-3,-38,-1,-76,35,-76xm126,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26","w":210,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u0122":{"d":"162,-147v47,0,32,66,34,112v1,32,-27,37,-61,35v-79,-4,-126,-48,-126,-125v0,-87,55,-133,152,-128v22,1,34,13,35,35v0,32,-26,40,-61,36v-61,-6,-78,83,-30,106v6,3,13,5,22,5v-3,-38,-1,-76,35,-76xm115,11v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":210,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u0123":{"d":"162,-147v47,0,32,66,34,112v1,32,-27,37,-61,35v-79,-4,-126,-48,-126,-125v0,-87,55,-133,152,-128v22,1,34,13,35,35v0,32,-26,40,-61,36v-61,-6,-78,83,-30,106v6,3,13,5,22,5v-3,-38,-1,-76,35,-76xm115,11v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":210,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u0124":{"d":"176,-255v20,0,36,14,35,35r0,187v1,22,-14,34,-35,34v-44,0,-35,-52,-35,-95r-57,0v-1,42,10,95,-35,95v-20,0,-36,-13,-35,-34r0,-187v-1,-21,16,-35,35,-35v44,-2,35,53,35,96r57,0v0,-43,-9,-96,35,-96xm164,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":225},"\u0125":{"d":"176,-255v20,0,36,14,35,35r0,187v1,22,-14,34,-35,34v-44,0,-35,-52,-35,-95r-57,0v-1,42,10,95,-35,95v-20,0,-36,-13,-35,-34r0,-187v-1,-21,16,-35,35,-35v44,-2,35,53,35,96r57,0v0,-43,-9,-96,35,-96xm164,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":225},"\u0126":{"d":"176,-255v20,0,36,14,35,35r0,187v1,22,-14,34,-35,34v-38,0,-37,-39,-35,-78r-57,0v1,39,4,78,-35,78v-20,0,-36,-13,-35,-34r0,-187v-1,-21,16,-35,35,-35v23,0,38,17,35,44r57,0v-4,-27,12,-44,35,-44xm141,-140r0,-23r-57,0r0,23r57,0","w":225},"\u0127":{"d":"176,-255v20,0,36,14,35,35r0,187v1,22,-14,34,-35,34v-38,0,-37,-39,-35,-78r-57,0v1,39,4,78,-35,78v-20,0,-36,-13,-35,-34r0,-187v-1,-21,16,-35,35,-35v23,0,38,17,35,44r57,0v-4,-27,12,-44,35,-44xm141,-140r0,-23r-57,0r0,23r57,0","w":225},"\u0128":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm78,-307v16,2,17,-18,32,-18v9,0,19,7,18,17v-2,24,-22,35,-46,36v-25,1,-39,-15,-61,-17v-15,-1,-16,18,-32,19v-8,0,-19,-8,-18,-17v1,-24,23,-37,47,-37v23,0,38,15,60,17","w":98},"\u0129":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm78,-307v16,2,17,-18,32,-18v9,0,19,7,18,17v-2,24,-22,35,-46,36v-25,1,-39,-15,-61,-17v-15,-1,-16,18,-32,19v-8,0,-19,-8,-18,-17v1,-24,23,-37,47,-37v23,0,38,15,60,17","w":98},"\u012a":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm123,-297v-3,43,-80,18,-122,24v-14,2,-24,-11,-24,-24v3,-43,80,-18,122,-24v14,-2,24,11,24,24","w":98},"\u012b":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm123,-297v-3,43,-80,18,-122,24v-14,2,-24,-11,-24,-24v3,-43,80,-18,122,-24v14,-2,24,11,24,24","w":98},"\u012c":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm50,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24","w":98},"\u012d":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm50,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24","w":98},"\u012e":{"d":"49,-255v19,0,36,14,35,35r0,187v-1,19,-9,30,-26,33v-7,2,-13,3,-13,13v2,13,8,11,26,11v20,0,32,13,32,30v0,16,-11,30,-30,30v-61,0,-81,-57,-51,-94v-5,-6,-8,-13,-8,-23r0,-187v-1,-21,15,-35,35,-35","w":98},"\u012f":{"d":"49,-255v19,0,36,14,35,35r0,187v-1,19,-9,30,-26,33v-7,2,-13,3,-13,13v2,13,8,11,26,11v20,0,32,13,32,30v0,16,-11,30,-30,30v-61,0,-81,-57,-51,-94v-5,-6,-8,-13,-8,-23r0,-187v-1,-21,15,-35,35,-35","w":98},"\u0130":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm49,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26","w":98},"\u0131":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35","w":98},"\u0132":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm234,-255v53,-1,35,79,35,129v0,84,-43,126,-132,126v-21,0,-35,-15,-35,-35v0,-24,17,-38,46,-35v72,6,52,-87,52,-150v0,-21,15,-35,34,-35","w":281},"\u0133":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm234,-255v53,-1,35,79,35,129v0,84,-43,126,-132,126v-21,0,-35,-15,-35,-35v0,-24,17,-38,46,-35v72,6,52,-87,52,-150v0,-21,15,-35,34,-35","w":281},"\u0134":{"d":"135,-255v53,-1,35,79,35,129v0,84,-43,126,-132,126v-21,0,-35,-15,-35,-35v0,-24,17,-38,46,-35v72,6,52,-87,52,-150v0,-21,15,-35,34,-35xm188,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":182,"k":{"\/":10,",":28,".":28,"\u201a":28,"\u201e":28,"\u2026":28,"A":13,"a":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u0100":13,"\u0101":13,"\u0102":13,"\u0103":13,"\u0104":13,"\u0105":13,"\u01fa":13,"\u01fb":13,"\u0410":13,"\u0430":13,"\u1ea0":13,"\u1ea1":13,"\u1ea2":13,"\u1ea3":13,"\u1ea4":13,"\u1ea5":13,"\u1ea6":13,"\u1ea7":13,"\u1ea8":13,"\u1ea9":13,"\u1eaa":13,"\u1eab":13,"\u1eac":13,"\u1ead":13,"\u1eae":13,"\u1eaf":13,"\u1eb0":13,"\u1eb1":13,"\u1eb2":13,"\u1eb3":13,"\u1eb4":13,"\u1eb5":13,"\u1eb6":13,"\u1eb7":13}},"\u0135":{"d":"135,-255v53,-1,35,79,35,129v0,84,-43,126,-132,126v-21,0,-35,-15,-35,-35v0,-24,17,-38,46,-35v72,6,52,-87,52,-150v0,-21,15,-35,34,-35xm188,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":182,"k":{"\/":10,",":28,".":28,"\u201a":28,"\u201e":28,"\u2026":28,"A":13,"a":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u0100":13,"\u0101":13,"\u0102":13,"\u0103":13,"\u0104":13,"\u0105":13,"\u01fa":13,"\u01fb":13,"\u0410":13,"\u0430":13,"\u1ea0":13,"\u1ea1":13,"\u1ea2":13,"\u1ea3":13,"\u1ea4":13,"\u1ea5":13,"\u1ea6":13,"\u1ea7":13,"\u1ea8":13,"\u1ea9":13,"\u1eaa":13,"\u1eab":13,"\u1eac":13,"\u1ead":13,"\u1eae":13,"\u1eaf":13,"\u1eb0":13,"\u1eb1":13,"\u1eb2":13,"\u1eb3":13,"\u1eb4":13,"\u1eb5":13,"\u1eb6":13,"\u1eb7":13}},"\u0136":{"d":"197,-56v25,27,-6,70,-43,54v-5,-2,-9,-5,-12,-10r-58,-81v0,42,9,94,-35,94v-21,0,-35,-13,-35,-34r0,-187v0,-21,15,-35,35,-35v43,-2,35,52,35,95v23,-30,42,-64,68,-92v34,-15,71,24,45,54r-59,67xm96,11v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":214,"k":{"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":5,"G":5,"c":5,"g":5,"\u00c7":5,"\u00e7":5,"\u0106":5,"\u0107":5,"\u0108":5,"\u0109":5,"\u010a":5,"\u010b":5,"\u010c":5,"\u010d":5,"\u011c":5,"\u011d":5,"\u011e":5,"\u011f":5,"\u0120":5,"\u0121":5,"\u0122":5,"\u0123":5,"\u0152":5,"\u0153":5,"\u0421":5,"\u0441":5,"0":12,"O":12,"Q":12,"o":12,"q":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"\u00d6":12,"\u00d8":12,"\u00f2":12,"\u00f3":12,"\u00f4":12,"\u00f5":12,"\u00f6":12,"\u00f8":12,"\u014c":12,"\u014d":12,"\u014e":12,"\u014f":12,"\u0150":12,"\u0151":12,"\u01fe":12,"\u01ff":12,"\u041e":12,"\u0424":12,"\u043e":12,"\u0444":12,"\u1ecc":12,"\u1ecd":12,"\u1ece":12,"\u1ecf":12,"\u1ed0":12,"\u1ed1":12,"\u1ed2":12,"\u1ed3":12,"\u1ed4":12,"\u1ed5":12,"\u1ed6":12,"\u1ed7":12,"\u1ed8":12,"\u1ed9":12,"\u1eda":12,"\u1edb":12,"\u1edc":12,"\u1edd":12,"\u1ede":12,"\u1edf":12,"\u1ee0":12,"\u1ee1":12,"\u1ee2":12,"\u1ee3":12}},"\u0137":{"d":"197,-56v25,27,-6,70,-43,54v-5,-2,-9,-5,-12,-10r-58,-81v0,42,9,94,-35,94v-21,0,-35,-13,-35,-34r0,-187v0,-21,15,-35,35,-35v43,-2,35,52,35,95v23,-30,42,-64,68,-92v34,-15,71,24,45,54r-59,67xm96,11v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":214,"k":{"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":5,"G":5,"c":5,"g":5,"\u00c7":5,"\u00e7":5,"\u0106":5,"\u0107":5,"\u0108":5,"\u0109":5,"\u010a":5,"\u010b":5,"\u010c":5,"\u010d":5,"\u011c":5,"\u011d":5,"\u011e":5,"\u011f":5,"\u0120":5,"\u0121":5,"\u0122":5,"\u0123":5,"\u0152":5,"\u0153":5,"\u0421":5,"\u0441":5,"0":12,"O":12,"Q":12,"o":12,"q":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"\u00d6":12,"\u00d8":12,"\u00f2":12,"\u00f3":12,"\u00f4":12,"\u00f5":12,"\u00f6":12,"\u00f8":12,"\u014c":12,"\u014d":12,"\u014e":12,"\u014f":12,"\u0150":12,"\u0151":12,"\u01fe":12,"\u01ff":12,"\u041e":12,"\u0424":12,"\u043e":12,"\u0444":12,"\u1ecc":12,"\u1ecd":12,"\u1ece":12,"\u1ecf":12,"\u1ed0":12,"\u1ed1":12,"\u1ed2":12,"\u1ed3":12,"\u1ed4":12,"\u1ed5":12,"\u1ed6":12,"\u1ed7":12,"\u1ed8":12,"\u1ed9":12,"\u1eda":12,"\u1edb":12,"\u1edc":12,"\u1edd":12,"\u1ede":12,"\u1edf":12,"\u1ee0":12,"\u1ee1":12,"\u1ee2":12,"\u1ee3":12}},"\u0139":{"d":"154,-35v0,48,-60,35,-105,35v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150v37,-2,70,-1,70,35xm96,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":158,"k":{"\"":36,"'":36,"\u2018":36,"\u2019":36,"\u201c":36,"\u201d":36,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":36,"W":36,"v":36,"w":36,"\u0174":36,"\u0175":36,"\u1e80":36,"\u1e81":36,"\u1e82":36,"\u1e83":36,"\u1e84":36,"\u1e85":36,"Y":36,"y":36,"\u00dd":36,"\u00fd":36,"\u00ff":36,"\u0176":36,"\u0177":36,"\u0178":36,"\u1ef2":36,"\u1ef3":36}},"\u013a":{"d":"154,-35v0,48,-60,35,-105,35v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150v37,-2,70,-1,70,35xm96,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":158,"k":{"\"":36,"'":36,"\u2018":36,"\u2019":36,"\u201c":36,"\u201d":36,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":36,"W":36,"v":36,"w":36,"\u0174":36,"\u0175":36,"\u1e80":36,"\u1e81":36,"\u1e82":36,"\u1e83":36,"\u1e84":36,"\u1e85":36,"Y":36,"y":36,"\u00dd":36,"\u00fd":36,"\u00ff":36,"\u0176":36,"\u0177":36,"\u0178":36,"\u1ef2":36,"\u1ef3":36}},"\u013b":{"d":"154,-35v0,48,-60,35,-105,35v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150v37,-2,70,-1,70,35xm68,11v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":158,"k":{"\"":36,"'":36,"\u2018":36,"\u2019":36,"\u201c":36,"\u201d":36,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":36,"W":36,"v":36,"w":36,"\u0174":36,"\u0175":36,"\u1e80":36,"\u1e81":36,"\u1e82":36,"\u1e83":36,"\u1e84":36,"\u1e85":36,"Y":36,"y":36,"\u00dd":36,"\u00fd":36,"\u00ff":36,"\u0176":36,"\u0177":36,"\u0178":36,"\u1ef2":36,"\u1ef3":36}},"\u013c":{"d":"154,-35v0,48,-60,35,-105,35v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150v37,-2,70,-1,70,35xm68,11v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":158,"k":{"\"":36,"'":36,"\u2018":36,"\u2019":36,"\u201c":36,"\u201d":36,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":36,"W":36,"v":36,"w":36,"\u0174":36,"\u0175":36,"\u1e80":36,"\u1e81":36,"\u1e82":36,"\u1e83":36,"\u1e84":36,"\u1e85":36,"Y":36,"y":36,"\u00dd":36,"\u00fd":36,"\u00ff":36,"\u0176":36,"\u0177":36,"\u0178":36,"\u1ef2":36,"\u1ef3":36}},"\u013d":{"d":"154,-35v0,48,-60,35,-105,35v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150v37,-2,70,-1,70,35xm107,-251v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":158,"k":{"\"":36,"'":36,"\u2018":36,"\u2019":36,"\u201c":36,"\u201d":36,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":36,"W":36,"v":36,"w":36,"\u0174":36,"\u0175":36,"\u1e80":36,"\u1e81":36,"\u1e82":36,"\u1e83":36,"\u1e84":36,"\u1e85":36,"Y":36,"y":36,"\u00dd":36,"\u00fd":36,"\u00ff":36,"\u0176":36,"\u0177":36,"\u0178":36,"\u1ef2":36,"\u1ef3":36}},"\u013e":{"d":"154,-35v0,48,-60,35,-105,35v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150v37,-2,70,-1,70,35xm107,-251v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":158,"k":{"\"":36,"'":36,"\u2018":36,"\u2019":36,"\u201c":36,"\u201d":36,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":36,"W":36,"v":36,"w":36,"\u0174":36,"\u0175":36,"\u1e80":36,"\u1e81":36,"\u1e82":36,"\u1e83":36,"\u1e84":36,"\u1e85":36,"Y":36,"y":36,"\u00dd":36,"\u00fd":36,"\u00ff":36,"\u0176":36,"\u0177":36,"\u0178":36,"\u1ef2":36,"\u1ef3":36}},"\u013f":{"d":"154,-35v0,48,-60,35,-105,35v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150v37,-2,70,-1,70,35xm120,-160v14,0,23,9,23,24v1,13,-10,25,-23,25v-13,-0,-25,-12,-25,-25v2,-14,10,-24,25,-24","w":158,"k":{"\"":36,"'":36,"\u2018":36,"\u2019":36,"\u201c":36,"\u201d":36,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":36,"W":36,"v":36,"w":36,"\u0174":36,"\u0175":36,"\u1e80":36,"\u1e81":36,"\u1e82":36,"\u1e83":36,"\u1e84":36,"\u1e85":36,"Y":36,"y":36,"\u00dd":36,"\u00fd":36,"\u00ff":36,"\u0176":36,"\u0177":36,"\u0178":36,"\u1ef2":36,"\u1ef3":36}},"\u0140":{"d":"154,-35v0,48,-60,35,-105,35v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150v37,-2,70,-1,70,35xm120,-160v14,0,23,9,23,24v1,13,-10,25,-23,25v-13,-0,-25,-12,-25,-25v2,-14,10,-24,25,-24","w":158,"k":{"\"":36,"'":36,"\u2018":36,"\u2019":36,"\u201c":36,"\u201d":36,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":36,"W":36,"v":36,"w":36,"\u0174":36,"\u0175":36,"\u1e80":36,"\u1e81":36,"\u1e82":36,"\u1e83":36,"\u1e84":36,"\u1e85":36,"Y":36,"y":36,"\u00dd":36,"\u00fd":36,"\u00ff":36,"\u0176":36,"\u0177":36,"\u0178":36,"\u1ef2":36,"\u1ef3":36}},"\u0141":{"d":"49,-255v47,-1,33,64,35,110v14,-10,46,-14,44,12v-1,21,-30,21,-44,31r0,32v37,-2,70,-1,70,35v0,48,-60,35,-105,35v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35","w":158,"k":{"\"":36,"'":36,"\u2018":36,"\u2019":36,"\u201c":36,"\u201d":36,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":36,"W":36,"v":36,"w":36,"\u0174":36,"\u0175":36,"\u1e80":36,"\u1e81":36,"\u1e82":36,"\u1e83":36,"\u1e84":36,"\u1e85":36,"Y":36,"y":36,"\u00dd":36,"\u00fd":36,"\u00ff":36,"\u0176":36,"\u0177":36,"\u0178":36,"\u1ef2":36,"\u1ef3":36}},"\u0142":{"d":"49,-255v47,-1,33,64,35,110v14,-10,46,-14,44,12v-1,21,-30,21,-44,31r0,32v37,-2,70,-1,70,35v0,48,-60,35,-105,35v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35","w":158,"k":{"\"":36,"'":36,"\u2018":36,"\u2019":36,"\u201c":36,"\u201d":36,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":36,"W":36,"v":36,"w":36,"\u0174":36,"\u0175":36,"\u1e80":36,"\u1e81":36,"\u1e82":36,"\u1e83":36,"\u1e84":36,"\u1e85":36,"Y":36,"y":36,"\u00dd":36,"\u00fd":36,"\u00ff":36,"\u0176":36,"\u0177":36,"\u0178":36,"\u1ef2":36,"\u1ef3":36}},"\u0143":{"d":"14,-220v-1,-37,47,-44,65,-17r65,98v3,-47,-15,-117,34,-116v18,0,33,14,33,34r0,188v3,36,-46,43,-64,16r-66,-97v-3,46,16,115,-34,115v-20,0,-33,-13,-33,-33r0,-188xm158,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":225},"\u0144":{"d":"14,-220v-1,-37,47,-44,65,-17r65,98v3,-47,-15,-117,34,-116v18,0,33,14,33,34r0,188v3,36,-46,43,-64,16r-66,-97v-3,46,16,115,-34,115v-20,0,-33,-13,-33,-33r0,-188xm158,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":225},"\u0145":{"d":"14,-220v-1,-37,47,-44,65,-17r65,98v3,-47,-15,-117,34,-116v18,0,33,14,33,34r0,188v3,36,-46,43,-64,16r-66,-97v-3,46,16,115,-34,115v-20,0,-33,-13,-33,-33r0,-188xm102,11v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":225},"\u0146":{"d":"14,-220v-1,-37,47,-44,65,-17r65,98v3,-47,-15,-117,34,-116v18,0,33,14,33,34r0,188v3,36,-46,43,-64,16r-66,-97v-3,46,16,115,-34,115v-20,0,-33,-13,-33,-33r0,-188xm102,11v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":225},"\u0147":{"d":"14,-220v-1,-37,47,-44,65,-17r65,98v3,-47,-15,-117,34,-116v18,0,33,14,33,34r0,188v3,36,-46,43,-64,16r-66,-97v-3,46,16,115,-34,115v-20,0,-33,-13,-33,-33r0,-188xm62,-292v-20,-8,-7,-42,13,-34v14,5,25,14,38,20v15,-7,25,-19,43,-21v17,-2,26,29,8,35v-19,7,-39,33,-60,22","w":225},"\u0148":{"d":"14,-220v-1,-37,47,-44,65,-17r65,98v3,-47,-15,-117,34,-116v18,0,33,14,33,34r0,188v3,36,-46,43,-64,16r-66,-97v-3,46,16,115,-34,115v-20,0,-33,-13,-33,-33r0,-188xm62,-292v-20,-8,-7,-42,13,-34v14,5,25,14,38,20v15,-7,25,-19,43,-21v17,-2,26,29,8,35v-19,7,-39,33,-60,22","w":225},"\u014a":{"d":"178,-255v18,0,34,14,33,34v-10,113,43,271,-96,271v-17,0,-29,-12,-29,-28v1,-19,15,-28,38,-28v14,0,23,-13,13,-27r-56,-84v-4,47,16,118,-34,118v-20,0,-33,-13,-33,-33r0,-188v-1,-37,47,-44,65,-17r65,98v3,-47,-15,-117,34,-116","w":225},"\u014b":{"d":"178,-255v18,0,34,14,33,34v-10,113,43,271,-96,271v-17,0,-29,-12,-29,-28v1,-19,15,-28,38,-28v14,0,23,-13,13,-27r-56,-84v-4,47,16,118,-34,118v-20,0,-33,-13,-33,-33r0,-188v-1,-37,47,-44,65,-17r65,98v3,-47,-15,-117,34,-116","w":225},"\u014c":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm213,-297v-3,43,-80,18,-122,24v-14,2,-24,-11,-24,-24v3,-43,80,-18,122,-24v14,-2,24,11,24,24","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u014d":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm213,-297v-3,43,-80,18,-122,24v-14,2,-24,-11,-24,-24v3,-43,80,-18,122,-24v14,-2,24,11,24,24","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u014e":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm139,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u014f":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm139,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u0150":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm192,-336v12,-13,36,2,29,19v-16,17,-29,41,-53,50v-14,0,-25,-19,-13,-31xm120,-336v12,-13,36,2,29,19v-16,17,-29,41,-53,50v-14,0,-25,-19,-13,-31","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u0151":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm192,-336v12,-13,36,2,29,19v-16,17,-29,41,-53,50v-14,0,-25,-19,-13,-31xm120,-336v12,-13,36,2,29,19v-16,17,-29,41,-53,50v-14,0,-25,-19,-13,-31","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u0152":{"d":"10,-127v0,-99,107,-159,193,-112v21,-27,88,-10,131,-14v21,-2,34,16,35,35v1,45,-58,34,-102,35r0,24v38,0,85,-6,85,32v0,39,-46,32,-85,32r0,25v44,1,103,-10,102,35v-1,55,-85,35,-137,35v-15,0,-25,-4,-30,-13v-87,43,-192,-14,-192,-114xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59","w":382,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u0153":{"d":"10,-127v0,-99,107,-159,193,-112v21,-27,88,-10,131,-14v21,-2,34,16,35,35v1,45,-58,34,-102,35r0,24v38,0,85,-6,85,32v0,39,-46,32,-85,32r0,25v44,1,103,-10,102,35v-1,55,-85,35,-137,35v-15,0,-25,-4,-30,-13v-87,43,-192,-14,-192,-114xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59","w":382,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u0154":{"d":"201,-55v22,31,-12,68,-47,52v-28,-25,-39,-68,-60,-101v-4,-25,2,-44,31,-44v12,0,20,-8,20,-21v1,-26,-36,-15,-60,-17r0,150v0,24,-12,36,-35,36v-24,0,-35,-11,-35,-35r0,-183v-3,-52,65,-35,109,-35v53,0,86,27,86,77v0,33,-19,59,-43,69xm155,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":219,"k":{"V":5,"W":5,"v":5,"w":5,"\u0174":5,"\u0175":5,"\u1e80":5,"\u1e81":5,"\u1e82":5,"\u1e83":5,"\u1e84":5,"\u1e85":5,"Y":7,"y":7,"\u00dd":7,"\u00fd":7,"\u00ff":7,"\u0176":7,"\u0177":7,"\u0178":7,"\u1ef2":7,"\u1ef3":7}},"\u0155":{"d":"201,-55v22,31,-12,68,-47,52v-28,-25,-39,-68,-60,-101v-4,-25,2,-44,31,-44v12,0,20,-8,20,-21v1,-26,-36,-15,-60,-17r0,150v0,24,-12,36,-35,36v-24,0,-35,-11,-35,-35r0,-183v-3,-52,65,-35,109,-35v53,0,86,27,86,77v0,33,-19,59,-43,69xm155,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":219,"k":{"V":5,"W":5,"v":5,"w":5,"\u0174":5,"\u0175":5,"\u1e80":5,"\u1e81":5,"\u1e82":5,"\u1e83":5,"\u1e84":5,"\u1e85":5,"Y":7,"y":7,"\u00dd":7,"\u00fd":7,"\u00ff":7,"\u0176":7,"\u0177":7,"\u0178":7,"\u1ef2":7,"\u1ef3":7}},"\u0156":{"d":"201,-55v22,31,-12,68,-47,52v-28,-25,-39,-68,-60,-101v-4,-25,2,-44,31,-44v12,0,20,-8,20,-21v1,-26,-36,-15,-60,-17r0,150v0,24,-12,36,-35,36v-24,0,-35,-11,-35,-35r0,-183v-3,-52,65,-35,109,-35v53,0,86,27,86,77v0,33,-19,59,-43,69xm99,11v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":219,"k":{"V":5,"W":5,"v":5,"w":5,"\u0174":5,"\u0175":5,"\u1e80":5,"\u1e81":5,"\u1e82":5,"\u1e83":5,"\u1e84":5,"\u1e85":5,"Y":7,"y":7,"\u00dd":7,"\u00fd":7,"\u00ff":7,"\u0176":7,"\u0177":7,"\u0178":7,"\u1ef2":7,"\u1ef3":7}},"\u0157":{"d":"201,-55v22,31,-12,68,-47,52v-28,-25,-39,-68,-60,-101v-4,-25,2,-44,31,-44v12,0,20,-8,20,-21v1,-26,-36,-15,-60,-17r0,150v0,24,-12,36,-35,36v-24,0,-35,-11,-35,-35r0,-183v-3,-52,65,-35,109,-35v53,0,86,27,86,77v0,33,-19,59,-43,69xm99,11v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":219,"k":{"V":5,"W":5,"v":5,"w":5,"\u0174":5,"\u0175":5,"\u1e80":5,"\u1e81":5,"\u1e82":5,"\u1e83":5,"\u1e84":5,"\u1e85":5,"Y":7,"y":7,"\u00dd":7,"\u00fd":7,"\u00ff":7,"\u0176":7,"\u0177":7,"\u0178":7,"\u1ef2":7,"\u1ef3":7}},"\u0158":{"d":"201,-55v22,31,-12,68,-47,52v-28,-25,-39,-68,-60,-101v-4,-25,2,-44,31,-44v12,0,20,-8,20,-21v1,-26,-36,-15,-60,-17r0,150v0,24,-12,36,-35,36v-24,0,-35,-11,-35,-35r0,-183v-3,-52,65,-35,109,-35v53,0,86,27,86,77v0,33,-19,59,-43,69xm51,-292v-20,-8,-7,-42,13,-34v14,5,25,14,38,20v15,-7,25,-19,43,-21v17,-2,26,29,8,35v-19,7,-39,33,-60,22","w":219,"k":{"V":5,"W":5,"v":5,"w":5,"\u0174":5,"\u0175":5,"\u1e80":5,"\u1e81":5,"\u1e82":5,"\u1e83":5,"\u1e84":5,"\u1e85":5,"Y":7,"y":7,"\u00dd":7,"\u00fd":7,"\u00ff":7,"\u0176":7,"\u0177":7,"\u0178":7,"\u1ef2":7,"\u1ef3":7}},"\u0159":{"d":"201,-55v22,31,-12,68,-47,52v-28,-25,-39,-68,-60,-101v-4,-25,2,-44,31,-44v12,0,20,-8,20,-21v1,-26,-36,-15,-60,-17r0,150v0,24,-12,36,-35,36v-24,0,-35,-11,-35,-35r0,-183v-3,-52,65,-35,109,-35v53,0,86,27,86,77v0,33,-19,59,-43,69xm51,-292v-20,-8,-7,-42,13,-34v14,5,25,14,38,20v15,-7,25,-19,43,-21v17,-2,26,29,8,35v-19,7,-39,33,-60,22","w":219,"k":{"V":5,"W":5,"v":5,"w":5,"\u0174":5,"\u0175":5,"\u1e80":5,"\u1e81":5,"\u1e82":5,"\u1e83":5,"\u1e84":5,"\u1e85":5,"Y":7,"y":7,"\u00dd":7,"\u00fd":7,"\u00ff":7,"\u0176":7,"\u0177":7,"\u0178":7,"\u1ef2":7,"\u1ef3":7}},"\u015a":{"d":"87,-157v68,-4,111,10,111,76v0,54,-26,81,-79,81v-44,0,-104,13,-104,-35v0,-48,63,-35,108,-35v9,0,14,-7,14,-13v1,-20,-30,-13,-50,-14v-51,0,-73,-24,-75,-75v-3,-77,58,-85,136,-81v22,1,36,14,37,34v2,44,-54,36,-98,36v-9,-1,-13,7,-14,13v1,6,5,14,14,13xm150,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":209,"k":{"\/":8,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,",":13,".":13,"\u201a":13,"\u201e":13,"\u2026":13}},"\u015b":{"d":"87,-157v68,-4,111,10,111,76v0,54,-26,81,-79,81v-44,0,-104,13,-104,-35v0,-48,63,-35,108,-35v9,0,14,-7,14,-13v1,-20,-30,-13,-50,-14v-51,0,-73,-24,-75,-75v-3,-77,58,-85,136,-81v22,1,36,14,37,34v2,44,-54,36,-98,36v-9,-1,-13,7,-14,13v1,6,5,14,14,13xm150,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":209,"k":{"\/":8,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,",":13,".":13,"\u201a":13,"\u201e":13,"\u2026":13}},"\u015c":{"d":"87,-157v68,-4,111,10,111,76v0,54,-26,81,-79,81v-44,0,-104,13,-104,-35v0,-48,63,-35,108,-35v9,0,14,-7,14,-13v1,-20,-30,-13,-50,-14v-51,0,-73,-24,-75,-75v-3,-77,58,-85,136,-81v22,1,36,14,37,34v2,44,-54,36,-98,36v-9,-1,-13,7,-14,13v1,6,5,14,14,13xm155,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":209,"k":{"\/":8,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,",":13,".":13,"\u201a":13,"\u201e":13,"\u2026":13}},"\u015d":{"d":"87,-157v68,-4,111,10,111,76v0,54,-26,81,-79,81v-44,0,-104,13,-104,-35v0,-48,63,-35,108,-35v9,0,14,-7,14,-13v1,-20,-30,-13,-50,-14v-51,0,-73,-24,-75,-75v-3,-77,58,-85,136,-81v22,1,36,14,37,34v2,44,-54,36,-98,36v-9,-1,-13,7,-14,13v1,6,5,14,14,13xm155,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":209,"k":{"\/":8,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,",":13,".":13,"\u201a":13,"\u201e":13,"\u2026":13}},"\u015e":{"d":"87,-157v68,-4,111,10,111,76v0,53,-25,80,-76,81v2,15,13,19,13,37v0,26,-15,40,-42,40v-11,0,-18,-8,-18,-17v1,-8,5,-19,16,-18v21,-6,-2,-31,-5,-42v-37,2,-71,2,-71,-35v0,-48,63,-35,108,-35v9,0,14,-7,14,-13v1,-20,-30,-13,-50,-14v-51,0,-73,-24,-75,-75v-3,-77,58,-85,136,-81v22,1,36,14,37,34v2,44,-54,36,-98,36v-9,-1,-13,7,-14,13v1,6,5,14,14,13","w":209,"k":{"\/":8,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,",":13,".":13,"\u201a":13,"\u201e":13,"\u2026":13}},"\u015f":{"d":"87,-157v68,-4,111,10,111,76v0,53,-25,80,-76,81v2,15,13,19,13,37v0,26,-15,40,-42,40v-11,0,-18,-8,-18,-17v1,-8,5,-19,16,-18v21,-6,-2,-31,-5,-42v-37,2,-71,2,-71,-35v0,-48,63,-35,108,-35v9,0,14,-7,14,-13v1,-20,-30,-13,-50,-14v-51,0,-73,-24,-75,-75v-3,-77,58,-85,136,-81v22,1,36,14,37,34v2,44,-54,36,-98,36v-9,-1,-13,7,-14,13v1,6,5,14,14,13","w":209,"k":{"\/":8,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,",":13,".":13,"\u201a":13,"\u201e":13,"\u2026":13}},"\u0160":{"d":"87,-157v68,-4,111,10,111,76v0,54,-26,81,-79,81v-44,0,-104,13,-104,-35v0,-48,63,-35,108,-35v9,0,14,-7,14,-13v1,-20,-30,-13,-50,-14v-51,0,-73,-24,-75,-75v-3,-77,58,-85,136,-81v22,1,36,14,37,34v2,44,-54,36,-98,36v-9,-1,-13,7,-14,13v1,6,5,14,14,13xm53,-292v-20,-8,-7,-42,13,-34v14,5,25,14,38,20v15,-7,25,-19,43,-21v17,-2,26,29,8,35v-19,7,-39,33,-60,22","w":209,"k":{"\/":8,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,",":13,".":13,"\u201a":13,"\u201e":13,"\u2026":13}},"\u0161":{"d":"87,-157v68,-4,111,10,111,76v0,54,-26,81,-79,81v-44,0,-104,13,-104,-35v0,-48,63,-35,108,-35v9,0,14,-7,14,-13v1,-20,-30,-13,-50,-14v-51,0,-73,-24,-75,-75v-3,-77,58,-85,136,-81v22,1,36,14,37,34v2,44,-54,36,-98,36v-9,-1,-13,7,-14,13v1,6,5,14,14,13xm53,-292v-20,-8,-7,-42,13,-34v14,5,25,14,38,20v15,-7,25,-19,43,-21v17,-2,26,29,8,35v-19,7,-39,33,-60,22","w":209,"k":{"\/":8,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,",":13,".":13,"\u201a":13,"\u201e":13,"\u2026":13}},"\u0162":{"d":"194,-218v1,30,-25,39,-59,35r0,150v1,22,-14,34,-35,34v-20,0,-35,-12,-35,-34r0,-150v-34,3,-60,-5,-59,-35v2,-59,98,-29,153,-35v21,-2,35,15,35,35xm89,11v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":200,"k":{"\/":36,"-":31,"\u00ab":31,"\u00bb":31,"\u2013":31,"\u2014":31,"\u2039":31,"\u203a":31,"0":16,"O":16,"Q":16,"o":16,"q":16,"\u00d2":16,"\u00d3":16,"\u00d4":16,"\u00d5":16,"\u00d6":16,"\u00d8":16,"\u00f2":16,"\u00f3":16,"\u00f4":16,"\u00f5":16,"\u00f6":16,"\u00f8":16,"\u014c":16,"\u014d":16,"\u014e":16,"\u014f":16,"\u0150":16,"\u0151":16,"\u01fe":16,"\u01ff":16,"\u041e":16,"\u0424":16,"\u043e":16,"\u0444":16,"\u1ecc":16,"\u1ecd":16,"\u1ece":16,"\u1ecf":16,"\u1ed0":16,"\u1ed1":16,"\u1ed2":16,"\u1ed3":16,"\u1ed4":16,"\u1ed5":16,"\u1ed6":16,"\u1ed7":16,"\u1ed8":16,"\u1ed9":16,"\u1eda":16,"\u1edb":16,"\u1edc":16,"\u1edd":16,"\u1ede":16,"\u1edf":16,"\u1ee0":16,"\u1ee1":16,"\u1ee2":16,"\u1ee3":16,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":43,"j":43,"\u0134":43,"\u0135":43,"\u0408":43,"\u0458":43,"\u00c6":55,"\u00e6":55,"\u01fc":55,"\u01fd":55}},"\u0163":{"d":"194,-218v1,30,-25,39,-59,35r0,150v1,22,-14,34,-35,34v-20,0,-35,-12,-35,-34r0,-150v-34,3,-60,-5,-59,-35v2,-59,98,-29,153,-35v21,-2,35,15,35,35xm89,11v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":200,"k":{"\/":36,"-":31,"\u00ab":31,"\u00bb":31,"\u2013":31,"\u2014":31,"\u2039":31,"\u203a":31,"0":16,"O":16,"Q":16,"o":16,"q":16,"\u00d2":16,"\u00d3":16,"\u00d4":16,"\u00d5":16,"\u00d6":16,"\u00d8":16,"\u00f2":16,"\u00f3":16,"\u00f4":16,"\u00f5":16,"\u00f6":16,"\u00f8":16,"\u014c":16,"\u014d":16,"\u014e":16,"\u014f":16,"\u0150":16,"\u0151":16,"\u01fe":16,"\u01ff":16,"\u041e":16,"\u0424":16,"\u043e":16,"\u0444":16,"\u1ecc":16,"\u1ecd":16,"\u1ece":16,"\u1ecf":16,"\u1ed0":16,"\u1ed1":16,"\u1ed2":16,"\u1ed3":16,"\u1ed4":16,"\u1ed5":16,"\u1ed6":16,"\u1ed7":16,"\u1ed8":16,"\u1ed9":16,"\u1eda":16,"\u1edb":16,"\u1edc":16,"\u1edd":16,"\u1ede":16,"\u1edf":16,"\u1ee0":16,"\u1ee1":16,"\u1ee2":16,"\u1ee3":16,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":43,"j":43,"\u0134":43,"\u0135":43,"\u0408":43,"\u0458":43,"\u00c6":55,"\u00e6":55,"\u01fc":55,"\u01fd":55}},"\u0164":{"d":"194,-218v1,30,-25,39,-59,35r0,150v1,22,-14,34,-35,34v-20,0,-35,-12,-35,-34r0,-150v-34,3,-60,-5,-59,-35v2,-59,98,-29,153,-35v21,-2,35,15,35,35xm49,-292v-20,-8,-7,-42,13,-34v14,5,25,14,38,20v15,-7,25,-19,43,-21v17,-2,26,29,8,35v-19,7,-39,33,-60,22","w":200,"k":{"\/":36,"-":31,"\u00ab":31,"\u00bb":31,"\u2013":31,"\u2014":31,"\u2039":31,"\u203a":31,"0":16,"O":16,"Q":16,"o":16,"q":16,"\u00d2":16,"\u00d3":16,"\u00d4":16,"\u00d5":16,"\u00d6":16,"\u00d8":16,"\u00f2":16,"\u00f3":16,"\u00f4":16,"\u00f5":16,"\u00f6":16,"\u00f8":16,"\u014c":16,"\u014d":16,"\u014e":16,"\u014f":16,"\u0150":16,"\u0151":16,"\u01fe":16,"\u01ff":16,"\u041e":16,"\u0424":16,"\u043e":16,"\u0444":16,"\u1ecc":16,"\u1ecd":16,"\u1ece":16,"\u1ecf":16,"\u1ed0":16,"\u1ed1":16,"\u1ed2":16,"\u1ed3":16,"\u1ed4":16,"\u1ed5":16,"\u1ed6":16,"\u1ed7":16,"\u1ed8":16,"\u1ed9":16,"\u1eda":16,"\u1edb":16,"\u1edc":16,"\u1edd":16,"\u1ede":16,"\u1edf":16,"\u1ee0":16,"\u1ee1":16,"\u1ee2":16,"\u1ee3":16,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":43,"j":43,"\u0134":43,"\u0135":43,"\u0408":43,"\u0458":43,"\u00c6":55,"\u00e6":55,"\u01fc":55,"\u01fd":55}},"\u0165":{"d":"194,-218v1,30,-25,39,-59,35r0,150v1,22,-14,34,-35,34v-20,0,-35,-12,-35,-34r0,-150v-34,3,-60,-5,-59,-35v2,-59,98,-29,153,-35v21,-2,35,15,35,35xm49,-292v-20,-8,-7,-42,13,-34v14,5,25,14,38,20v15,-7,25,-19,43,-21v17,-2,26,29,8,35v-19,7,-39,33,-60,22","w":200,"k":{"\/":36,"-":31,"\u00ab":31,"\u00bb":31,"\u2013":31,"\u2014":31,"\u2039":31,"\u203a":31,"0":16,"O":16,"Q":16,"o":16,"q":16,"\u00d2":16,"\u00d3":16,"\u00d4":16,"\u00d5":16,"\u00d6":16,"\u00d8":16,"\u00f2":16,"\u00f3":16,"\u00f4":16,"\u00f5":16,"\u00f6":16,"\u00f8":16,"\u014c":16,"\u014d":16,"\u014e":16,"\u014f":16,"\u0150":16,"\u0151":16,"\u01fe":16,"\u01ff":16,"\u041e":16,"\u0424":16,"\u043e":16,"\u0444":16,"\u1ecc":16,"\u1ecd":16,"\u1ece":16,"\u1ecf":16,"\u1ed0":16,"\u1ed1":16,"\u1ed2":16,"\u1ed3":16,"\u1ed4":16,"\u1ed5":16,"\u1ed6":16,"\u1ed7":16,"\u1ed8":16,"\u1ed9":16,"\u1eda":16,"\u1edb":16,"\u1edc":16,"\u1edd":16,"\u1ede":16,"\u1edf":16,"\u1ee0":16,"\u1ee1":16,"\u1ee2":16,"\u1ee3":16,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":43,"j":43,"\u0134":43,"\u0135":43,"\u0408":43,"\u0458":43,"\u00c6":55,"\u00e6":55,"\u01fc":55,"\u01fd":55}},"\u0166":{"d":"173,-131v0,18,-16,27,-38,24v-3,45,14,108,-35,108v-48,0,-33,-63,-35,-108v-22,3,-38,-6,-38,-24v0,-17,15,-28,38,-24r0,-28v-34,3,-60,-5,-59,-35v2,-59,98,-29,153,-35v21,-2,35,15,35,35v1,30,-25,39,-59,35r0,28v22,-3,38,5,38,24","w":200,"k":{"\/":36,"-":31,"\u00ab":31,"\u00bb":31,"\u2013":31,"\u2014":31,"\u2039":31,"\u203a":31,"0":16,"O":16,"Q":16,"o":16,"q":16,"\u00d2":16,"\u00d3":16,"\u00d4":16,"\u00d5":16,"\u00d6":16,"\u00d8":16,"\u00f2":16,"\u00f3":16,"\u00f4":16,"\u00f5":16,"\u00f6":16,"\u00f8":16,"\u014c":16,"\u014d":16,"\u014e":16,"\u014f":16,"\u0150":16,"\u0151":16,"\u01fe":16,"\u01ff":16,"\u041e":16,"\u0424":16,"\u043e":16,"\u0444":16,"\u1ecc":16,"\u1ecd":16,"\u1ece":16,"\u1ecf":16,"\u1ed0":16,"\u1ed1":16,"\u1ed2":16,"\u1ed3":16,"\u1ed4":16,"\u1ed5":16,"\u1ed6":16,"\u1ed7":16,"\u1ed8":16,"\u1ed9":16,"\u1eda":16,"\u1edb":16,"\u1edc":16,"\u1edd":16,"\u1ede":16,"\u1edf":16,"\u1ee0":16,"\u1ee1":16,"\u1ee2":16,"\u1ee3":16,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":43,"j":43,"\u0134":43,"\u0135":43,"\u0408":43,"\u0458":43,"\u00c6":55,"\u00e6":55,"\u01fc":55,"\u01fd":55}},"\u0167":{"d":"173,-131v0,18,-16,27,-38,24v-3,45,14,108,-35,108v-48,0,-33,-63,-35,-108v-22,3,-38,-6,-38,-24v0,-17,15,-28,38,-24r0,-28v-34,3,-60,-5,-59,-35v2,-59,98,-29,153,-35v21,-2,35,15,35,35v1,30,-25,39,-59,35r0,28v22,-3,38,5,38,24","w":200,"k":{"\/":36,"-":31,"\u00ab":31,"\u00bb":31,"\u2013":31,"\u2014":31,"\u2039":31,"\u203a":31,"0":16,"O":16,"Q":16,"o":16,"q":16,"\u00d2":16,"\u00d3":16,"\u00d4":16,"\u00d5":16,"\u00d6":16,"\u00d8":16,"\u00f2":16,"\u00f3":16,"\u00f4":16,"\u00f5":16,"\u00f6":16,"\u00f8":16,"\u014c":16,"\u014d":16,"\u014e":16,"\u014f":16,"\u0150":16,"\u0151":16,"\u01fe":16,"\u01ff":16,"\u041e":16,"\u0424":16,"\u043e":16,"\u0444":16,"\u1ecc":16,"\u1ecd":16,"\u1ece":16,"\u1ecf":16,"\u1ed0":16,"\u1ed1":16,"\u1ed2":16,"\u1ed3":16,"\u1ed4":16,"\u1ed5":16,"\u1ed6":16,"\u1ed7":16,"\u1ed8":16,"\u1ed9":16,"\u1eda":16,"\u1edb":16,"\u1edc":16,"\u1edd":16,"\u1ede":16,"\u1edf":16,"\u1ee0":16,"\u1ee1":16,"\u1ee2":16,"\u1ee3":16,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":43,"j":43,"\u0134":43,"\u0135":43,"\u0408":43,"\u0458":43,"\u00c6":55,"\u00e6":55,"\u01fc":55,"\u01fd":55}},"\u0168":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm144,-307v16,2,17,-18,32,-18v9,0,19,7,18,17v-2,24,-22,35,-46,36v-25,1,-39,-15,-61,-17v-15,-1,-16,18,-32,19v-8,0,-19,-8,-18,-17v1,-24,23,-37,47,-37v23,0,38,15,60,17","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u0169":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm144,-307v16,2,17,-18,32,-18v9,0,19,7,18,17v-2,24,-22,35,-46,36v-25,1,-39,-15,-61,-17v-15,-1,-16,18,-32,19v-8,0,-19,-8,-18,-17v1,-24,23,-37,47,-37v23,0,38,15,60,17","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u016a":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm188,-297v-3,43,-80,18,-122,24v-14,2,-24,-11,-24,-24v3,-43,80,-18,122,-24v14,-2,24,11,24,24","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u016b":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm188,-297v-3,43,-80,18,-122,24v-14,2,-24,-11,-24,-24v3,-43,80,-18,122,-24v14,-2,24,11,24,24","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u016c":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm115,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u016d":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm115,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u016e":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm116,-256v-24,0,-40,-15,-40,-38v0,-24,16,-39,40,-39v24,0,40,15,40,39v0,23,-16,38,-40,38xm116,-310v-9,0,-15,6,-15,16v0,8,7,16,15,16v8,0,16,-8,16,-16v0,-9,-7,-16,-16,-16","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u016f":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm116,-256v-24,0,-40,-15,-40,-38v0,-24,16,-39,40,-39v24,0,40,15,40,39v0,23,-16,38,-40,38xm116,-310v-9,0,-15,6,-15,16v0,8,7,16,15,16v8,0,16,-8,16,-16v0,-9,-7,-16,-16,-16","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u0170":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm168,-336v12,-13,36,2,29,19v-16,17,-29,41,-53,50v-14,0,-25,-19,-13,-31xm96,-336v12,-13,36,2,29,19v-16,17,-29,41,-53,50v-14,0,-25,-19,-13,-31","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u0171":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm168,-336v12,-13,36,2,29,19v-16,17,-29,41,-53,50v-14,0,-25,-19,-13,-31xm96,-336v12,-13,36,2,29,19v-16,17,-29,41,-53,50v-14,0,-25,-19,-13,-31","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u0172":{"d":"183,-255v58,0,30,92,35,146v5,58,-25,82,-50,111v-5,18,2,24,24,22v20,-1,32,13,32,30v0,16,-11,30,-30,30v-52,0,-79,-38,-58,-83v-78,11,-128,-29,-123,-110v3,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u0173":{"d":"183,-255v58,0,30,92,35,146v5,58,-25,82,-50,111v-5,18,2,24,24,22v20,-1,32,13,32,30v0,16,-11,30,-30,30v-52,0,-79,-38,-58,-83v-78,11,-128,-29,-123,-110v3,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u0174":{"d":"16,-209v-13,-30,23,-58,51,-40v6,4,11,10,13,18r34,124r33,-122v5,-36,57,-31,65,0r32,122r31,-123v7,-39,70,-27,64,10v-12,70,-43,130,-60,197v-8,31,-57,30,-68,0r-33,-93v-16,37,-21,85,-46,112v-23,12,-48,0,-54,-19xm227,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":353,"k":{"\/":36,"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":14,"G":14,"c":14,"g":14,"\u00c7":14,"\u00e7":14,"\u0106":14,"\u0107":14,"\u0108":14,"\u0109":14,"\u010a":14,"\u010b":14,"\u010c":14,"\u010d":14,"\u011c":14,"\u011d":14,"\u011e":14,"\u011f":14,"\u0120":14,"\u0121":14,"\u0122":14,"\u0123":14,"\u0152":14,"\u0153":14,"\u0421":14,"\u0441":14,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":34,"j":34,"\u0134":34,"\u0135":34,"\u0408":34,"\u0458":34,"\u00c6":68,"\u00e6":68,"\u01fc":68,"\u01fd":68}},"\u0175":{"d":"16,-209v-13,-30,23,-58,51,-40v6,4,11,10,13,18r34,124r33,-122v5,-36,57,-31,65,0r32,122r31,-123v7,-39,70,-27,64,10v-12,70,-43,130,-60,197v-8,31,-57,30,-68,0r-33,-93v-16,37,-21,85,-46,112v-23,12,-48,0,-54,-19xm227,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":353,"k":{"\/":36,"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":14,"G":14,"c":14,"g":14,"\u00c7":14,"\u00e7":14,"\u0106":14,"\u0107":14,"\u0108":14,"\u0109":14,"\u010a":14,"\u010b":14,"\u010c":14,"\u010d":14,"\u011c":14,"\u011d":14,"\u011e":14,"\u011f":14,"\u0120":14,"\u0121":14,"\u0122":14,"\u0123":14,"\u0152":14,"\u0153":14,"\u0421":14,"\u0441":14,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":34,"j":34,"\u0134":34,"\u0135":34,"\u0408":34,"\u0458":34,"\u00c6":68,"\u00e6":68,"\u01fc":68,"\u01fd":68}},"\u0176":{"d":"12,-202v-19,-28,17,-68,47,-48v22,14,29,46,45,68v19,-25,23,-73,61,-73v27,0,46,29,30,54r-56,91v-3,46,14,111,-35,111v-50,0,-32,-65,-35,-111xm154,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":207,"k":{"\/":22,"-":26,"\u00ab":26,"\u00bb":26,"\u2013":26,"\u2014":26,"\u2039":26,"\u203a":26,"C":15,"G":15,"c":15,"g":15,"\u00c7":15,"\u00e7":15,"\u0106":15,"\u0107":15,"\u0108":15,"\u0109":15,"\u010a":15,"\u010b":15,"\u010c":15,"\u010d":15,"\u011c":15,"\u011d":15,"\u011e":15,"\u011f":15,"\u0120":15,"\u0121":15,"\u0122":15,"\u0123":15,"\u0152":15,"\u0153":15,"\u0421":15,"\u0441":15,"0":17,"O":17,"Q":17,"o":17,"q":17,"\u00d2":17,"\u00d3":17,"\u00d4":17,"\u00d5":17,"\u00d6":17,"\u00d8":17,"\u00f2":17,"\u00f3":17,"\u00f4":17,"\u00f5":17,"\u00f6":17,"\u00f8":17,"\u014c":17,"\u014d":17,"\u014e":17,"\u014f":17,"\u0150":17,"\u0151":17,"\u01fe":17,"\u01ff":17,"\u041e":17,"\u0424":17,"\u043e":17,"\u0444":17,"\u1ecc":17,"\u1ecd":17,"\u1ece":17,"\u1ecf":17,"\u1ed0":17,"\u1ed1":17,"\u1ed2":17,"\u1ed3":17,"\u1ed4":17,"\u1ed5":17,"\u1ed6":17,"\u1ed7":17,"\u1ed8":17,"\u1ed9":17,"\u1eda":17,"\u1edb":17,"\u1edc":17,"\u1edd":17,"\u1ede":17,"\u1edf":17,"\u1ee0":17,"\u1ee1":17,"\u1ee2":17,"\u1ee3":17,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":39,"j":39,"\u0134":39,"\u0135":39,"\u0408":39,"\u0458":39,"\u00c6":51,"\u00e6":51,"\u01fc":51,"\u01fd":51}},"\u0177":{"d":"12,-202v-19,-28,17,-68,47,-48v22,14,29,46,45,68v19,-25,23,-73,61,-73v27,0,46,29,30,54r-56,91v-3,46,14,111,-35,111v-50,0,-32,-65,-35,-111xm154,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":207,"k":{"\/":22,"-":26,"\u00ab":26,"\u00bb":26,"\u2013":26,"\u2014":26,"\u2039":26,"\u203a":26,"C":15,"G":15,"c":15,"g":15,"\u00c7":15,"\u00e7":15,"\u0106":15,"\u0107":15,"\u0108":15,"\u0109":15,"\u010a":15,"\u010b":15,"\u010c":15,"\u010d":15,"\u011c":15,"\u011d":15,"\u011e":15,"\u011f":15,"\u0120":15,"\u0121":15,"\u0122":15,"\u0123":15,"\u0152":15,"\u0153":15,"\u0421":15,"\u0441":15,"0":17,"O":17,"Q":17,"o":17,"q":17,"\u00d2":17,"\u00d3":17,"\u00d4":17,"\u00d5":17,"\u00d6":17,"\u00d8":17,"\u00f2":17,"\u00f3":17,"\u00f4":17,"\u00f5":17,"\u00f6":17,"\u00f8":17,"\u014c":17,"\u014d":17,"\u014e":17,"\u014f":17,"\u0150":17,"\u0151":17,"\u01fe":17,"\u01ff":17,"\u041e":17,"\u0424":17,"\u043e":17,"\u0444":17,"\u1ecc":17,"\u1ecd":17,"\u1ece":17,"\u1ecf":17,"\u1ed0":17,"\u1ed1":17,"\u1ed2":17,"\u1ed3":17,"\u1ed4":17,"\u1ed5":17,"\u1ed6":17,"\u1ed7":17,"\u1ed8":17,"\u1ed9":17,"\u1eda":17,"\u1edb":17,"\u1edc":17,"\u1edd":17,"\u1ede":17,"\u1edf":17,"\u1ee0":17,"\u1ee1":17,"\u1ee2":17,"\u1ee3":17,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":39,"j":39,"\u0134":39,"\u0135":39,"\u0408":39,"\u0458":39,"\u00c6":51,"\u00e6":51,"\u01fc":51,"\u01fd":51}},"\u0178":{"d":"12,-202v-19,-28,17,-68,47,-48v22,14,29,46,45,68v19,-25,23,-73,61,-73v27,0,46,29,30,54r-56,91v-3,46,14,111,-35,111v-50,0,-32,-65,-35,-111xm59,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm148,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26","w":207,"k":{"\/":22,"-":26,"\u00ab":26,"\u00bb":26,"\u2013":26,"\u2014":26,"\u2039":26,"\u203a":26,"C":15,"G":15,"c":15,"g":15,"\u00c7":15,"\u00e7":15,"\u0106":15,"\u0107":15,"\u0108":15,"\u0109":15,"\u010a":15,"\u010b":15,"\u010c":15,"\u010d":15,"\u011c":15,"\u011d":15,"\u011e":15,"\u011f":15,"\u0120":15,"\u0121":15,"\u0122":15,"\u0123":15,"\u0152":15,"\u0153":15,"\u0421":15,"\u0441":15,"0":17,"O":17,"Q":17,"o":17,"q":17,"\u00d2":17,"\u00d3":17,"\u00d4":17,"\u00d5":17,"\u00d6":17,"\u00d8":17,"\u00f2":17,"\u00f3":17,"\u00f4":17,"\u00f5":17,"\u00f6":17,"\u00f8":17,"\u014c":17,"\u014d":17,"\u014e":17,"\u014f":17,"\u0150":17,"\u0151":17,"\u01fe":17,"\u01ff":17,"\u041e":17,"\u0424":17,"\u043e":17,"\u0444":17,"\u1ecc":17,"\u1ecd":17,"\u1ece":17,"\u1ecf":17,"\u1ed0":17,"\u1ed1":17,"\u1ed2":17,"\u1ed3":17,"\u1ed4":17,"\u1ed5":17,"\u1ed6":17,"\u1ed7":17,"\u1ed8":17,"\u1ed9":17,"\u1eda":17,"\u1edb":17,"\u1edc":17,"\u1edd":17,"\u1ede":17,"\u1edf":17,"\u1ee0":17,"\u1ee1":17,"\u1ee2":17,"\u1ee3":17,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":39,"j":39,"\u0134":39,"\u0135":39,"\u0408":39,"\u0458":39,"\u00c6":51,"\u00e6":51,"\u01fc":51,"\u01fd":51}},"\u0179":{"d":"181,-253v30,-4,41,33,25,55r-92,128v44,1,104,-11,102,35v0,20,-14,36,-35,35r-129,0v-38,3,-49,-34,-29,-59r95,-124v-45,-1,-105,11,-104,-35v1,-19,14,-36,35,-35r132,0xm162,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":233,"k":{"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24}},"\u017a":{"d":"181,-253v30,-4,41,33,25,55r-92,128v44,1,104,-11,102,35v0,20,-14,36,-35,35r-129,0v-38,3,-49,-34,-29,-59r95,-124v-45,-1,-105,11,-104,-35v1,-19,14,-36,35,-35r132,0xm162,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":233,"k":{"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24}},"\u017b":{"d":"181,-253v30,-4,41,33,25,55r-92,128v44,1,104,-11,102,35v0,20,-14,36,-35,35r-129,0v-38,3,-49,-34,-29,-59r95,-124v-45,-1,-105,11,-104,-35v1,-19,14,-36,35,-35r132,0xm116,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26","w":233,"k":{"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24}},"\u017c":{"d":"181,-253v30,-4,41,33,25,55r-92,128v44,1,104,-11,102,35v0,20,-14,36,-35,35r-129,0v-38,3,-49,-34,-29,-59r95,-124v-45,-1,-105,11,-104,-35v1,-19,14,-36,35,-35r132,0xm116,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26","w":233,"k":{"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24}},"\u017d":{"d":"181,-253v30,-4,41,33,25,55r-92,128v44,1,104,-11,102,35v0,20,-14,36,-35,35r-129,0v-38,3,-49,-34,-29,-59r95,-124v-45,-1,-105,11,-104,-35v1,-19,14,-36,35,-35r132,0xm65,-292v-20,-8,-7,-42,13,-34v14,5,25,14,38,20v15,-7,25,-19,43,-21v17,-2,26,29,8,35v-19,7,-39,33,-60,22","w":233,"k":{"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24}},"\u017e":{"d":"181,-253v30,-4,41,33,25,55r-92,128v44,1,104,-11,102,35v0,20,-14,36,-35,35r-129,0v-38,3,-49,-34,-29,-59r95,-124v-45,-1,-105,11,-104,-35v1,-19,14,-36,35,-35r132,0xm65,-292v-20,-8,-7,-42,13,-34v14,5,25,14,38,20v15,-7,25,-19,43,-21v17,-2,26,29,8,35v-19,7,-39,33,-60,22","w":233,"k":{"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24}},"\u0192":{"d":"204,-146v0,29,-34,21,-61,22v-11,82,-9,181,-114,167v-14,-1,-26,-4,-26,-19v0,-47,65,7,74,-41v6,-32,10,-73,16,-107v-25,1,-52,3,-52,-22v0,-26,31,-24,58,-23v6,-58,38,-92,103,-86v32,-5,35,41,8,42v-23,-5,-54,-10,-57,18v-2,6,-4,15,-5,26v27,-1,56,-4,56,23","w":234},"\u01a0":{"d":"139,3v-76,-3,-126,-52,-129,-130v-4,-116,144,-168,222,-92v18,5,24,-2,22,-24v-1,-21,13,-32,31,-32v16,0,30,11,30,30v0,42,-20,70,-58,65v38,90,-24,187,-118,183xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59","w":306},"\u01a1":{"d":"139,3v-76,-3,-126,-52,-129,-130v-4,-116,144,-168,222,-92v18,5,24,-2,22,-24v-1,-21,13,-32,31,-32v16,0,30,11,30,30v0,42,-20,70,-58,65v38,90,-24,187,-118,183xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59","w":306},"\u01af":{"d":"148,-220v1,-22,14,-34,35,-35v31,-2,30,34,56,38v13,-2,11,-8,11,-26v0,-20,13,-32,30,-32v16,0,30,11,30,30v0,60,-51,81,-92,53r0,83v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122","w":300},"\u01b0":{"d":"148,-220v1,-22,14,-34,35,-35v31,-2,30,34,56,38v13,-2,11,-8,11,-26v0,-20,13,-32,30,-32v16,0,30,11,30,30v0,60,-51,81,-92,53r0,83v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122","w":300},"\u01fa":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm127,-256v-24,0,-40,-15,-40,-38v0,-24,16,-39,40,-39v24,0,40,15,40,39v0,23,-16,38,-40,38xm127,-310v-9,0,-15,6,-15,16v0,8,7,16,15,16v8,0,16,-8,16,-16v0,-9,-7,-16,-16,-16xm248,-322v12,-4,21,11,14,21v-17,12,-45,13,-66,20v-15,1,-18,-23,-3,-27"},"\u01fb":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm127,-256v-24,0,-40,-15,-40,-38v0,-24,16,-39,40,-39v24,0,40,15,40,39v0,23,-16,38,-40,38xm127,-310v-9,0,-15,6,-15,16v0,8,7,16,15,16v8,0,16,-8,16,-16v0,-9,-7,-16,-16,-16xm248,-322v12,-4,21,11,14,21v-17,12,-45,13,-66,20v-15,1,-18,-23,-3,-27"},"\u01fc":{"d":"344,-35v-1,56,-89,31,-141,35v-28,2,-36,-20,-34,-49r-76,0v-15,19,-22,48,-53,50v-28,1,-43,-29,-27,-51r131,-181v24,-39,108,-17,165,-22v21,-2,35,15,35,35v2,47,-61,33,-106,35r0,24v39,1,89,-9,89,32v0,41,-49,31,-89,32r0,25v45,2,107,-13,106,35xm169,-104r0,-53r-40,53r40,0xm260,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":358},"\u01fd":{"d":"344,-35v-1,56,-89,31,-141,35v-28,2,-36,-20,-34,-49r-76,0v-15,19,-22,48,-53,50v-28,1,-43,-29,-27,-51r131,-181v24,-39,108,-17,165,-22v21,-2,35,15,35,35v2,47,-61,33,-106,35r0,24v39,1,89,-9,89,32v0,41,-49,31,-89,32r0,25v45,2,107,-13,106,35xm169,-104r0,-53r-40,53r40,0xm260,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":358},"\u01fe":{"d":"10,-127v-1,-97,98,-155,189,-115v10,-10,14,-29,32,-29v20,0,34,21,21,39r-15,20v17,22,32,48,32,85v1,98,-99,158,-189,115v-10,10,-17,30,-34,30v-21,1,-33,-23,-20,-39r16,-21v-18,-20,-33,-47,-32,-85xm122,-70v51,16,96,-38,68,-87xm155,-183v-52,-12,-90,39,-66,86xm185,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u01ff":{"d":"10,-127v-1,-97,98,-155,189,-115v10,-10,14,-29,32,-29v20,0,34,21,21,39r-15,20v17,22,32,48,32,85v1,98,-99,158,-189,115v-10,10,-17,30,-34,30v-21,1,-33,-23,-20,-39r16,-21v-18,-20,-33,-47,-32,-85xm122,-70v51,16,96,-38,68,-87xm155,-183v-52,-12,-90,39,-66,86xm185,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u0218":{"d":"87,-157v68,-4,111,10,111,76v0,54,-26,81,-79,81v-44,0,-104,13,-104,-35v0,-48,63,-35,108,-35v9,0,14,-7,14,-13v1,-20,-30,-13,-50,-14v-51,0,-73,-24,-75,-75v-3,-77,58,-85,136,-81v22,1,36,14,37,34v2,44,-54,36,-98,36v-9,-1,-13,7,-14,13v1,6,5,14,14,13xm94,11v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":209,"k":{"\/":8,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,",":13,".":13,"\u201a":13,"\u201e":13,"\u2026":13}},"\u0219":{"d":"87,-157v68,-4,111,10,111,76v0,54,-26,81,-79,81v-44,0,-104,13,-104,-35v0,-48,63,-35,108,-35v9,0,14,-7,14,-13v1,-20,-30,-13,-50,-14v-51,0,-73,-24,-75,-75v-3,-77,58,-85,136,-81v22,1,36,14,37,34v2,44,-54,36,-98,36v-9,-1,-13,7,-14,13v1,6,5,14,14,13xm94,11v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":209,"k":{"\/":8,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,",":13,".":13,"\u201a":13,"\u201e":13,"\u2026":13}},"\u021a":{"d":"194,-218v1,30,-25,39,-59,35r0,150v1,22,-14,34,-35,34v-20,0,-35,-12,-35,-34r0,-150v-34,3,-60,-5,-59,-35v2,-59,98,-29,153,-35v21,-2,35,15,35,35xm89,11v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":200},"\u021b":{"d":"194,-218v1,30,-25,39,-59,35r0,150v1,22,-14,34,-35,34v-20,0,-35,-12,-35,-34r0,-150v-34,3,-60,-5,-59,-35v2,-59,98,-29,153,-35v21,-2,35,15,35,35xm89,11v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":200},"\u02c6":{"d":"122,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23","w":142},"\u02c7":{"d":"20,-292v-20,-8,-7,-42,13,-34v14,5,25,14,38,20v15,-7,25,-19,43,-21v17,-2,26,29,8,35v-19,7,-39,33,-60,22","w":142},"\u02c9":{"d":"156,-297v-3,43,-80,18,-122,24v-14,2,-24,-11,-24,-24v3,-43,80,-18,122,-24v14,-2,24,11,24,24","w":165},"\u02d8":{"d":"71,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24","w":142},"\u02d9":{"d":"36,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26","w":73},"\u02da":{"d":"50,-256v-24,0,-40,-15,-40,-38v0,-24,16,-39,40,-39v24,0,40,15,40,39v0,23,-16,38,-40,38xm50,-310v-9,0,-15,6,-15,16v0,8,7,16,15,16v8,0,16,-8,16,-16v0,-9,-7,-16,-16,-16","w":99},"\u02db":{"d":"10,34v0,-26,11,-52,35,-56v21,3,3,23,3,35v0,13,8,11,26,11v20,0,31,12,31,30v0,17,-11,31,-29,30v-39,0,-66,-13,-66,-50","w":115},"\u02dc":{"d":"117,-307v16,2,17,-18,32,-18v9,0,19,7,18,17v-2,24,-22,35,-46,36v-25,1,-39,-15,-61,-17v-15,-1,-16,18,-32,19v-8,0,-19,-8,-18,-17v1,-24,23,-37,47,-37v23,0,38,15,60,17","w":177},"\u02dd":{"d":"124,-336v12,-13,36,2,29,19v-16,17,-29,41,-53,50v-14,0,-25,-19,-13,-31xm52,-336v12,-13,36,2,29,19v-16,17,-29,41,-53,50v-14,0,-25,-19,-13,-31","w":164},"\u0303":{"d":"93,-288v13,6,7,29,-6,27v-14,-2,-22,-11,-33,-16v-13,8,-41,28,-46,1v7,-18,31,-28,53,-29xm36,-341v18,2,43,21,54,0v9,-1,16,3,15,11v-4,31,-46,20,-67,12v-10,3,-26,21,-31,0v2,-14,15,-22,29,-23","w":111},"\u0309":{"d":"30,-260v-26,-2,-9,-33,-3,-45v-1,-13,-23,-7,-20,-23v1,-6,5,-13,14,-13v22,0,35,11,35,31v0,17,-12,19,-12,37v1,9,-7,13,-14,13","w":63},"\u0323":{"d":"33,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26","w":67},"\u0326":{"d":"23,11v25,-16,46,17,29,42v-3,24,-43,19,-42,-4v4,-12,6,-30,13,-38","w":68},"\u037e":{"d":"50,-204v23,0,33,14,35,35v1,19,-16,36,-35,35v-21,-1,-35,-14,-35,-35v0,-21,13,-34,35,-35xm21,-24v7,-37,67,-26,61,11v-11,28,-7,72,-42,75v-21,1,-36,-17,-31,-38","w":97},"\u0394":{"d":"43,0v-26,1,-47,-20,-35,-46r84,-188v7,-26,54,-27,65,1r80,201v-1,21,-17,31,-38,32r-156,0xm94,-70r57,0r-27,-78","w":241},"\u03a9":{"d":"116,-206v-65,0,-36,143,-8,174v4,13,2,35,-15,32v-29,-3,-77,13,-77,-21v0,-18,14,-20,33,-19v-18,-23,-34,-50,-32,-93v1,-76,23,-123,99,-123v75,0,100,46,100,123v0,41,-14,70,-32,93v18,-1,33,2,33,19v0,33,-47,17,-76,21v-39,-7,-3,-50,4,-66v9,-23,7,-63,7,-96v0,-27,-9,-44,-36,-44","w":232},"\u03c0":{"d":"166,-22v0,14,-6,22,-19,22v-15,0,-23,-8,-23,-22r0,-142r-42,0r0,142v0,14,-6,22,-20,22v-14,0,-22,-8,-22,-22r0,-142v-18,1,-35,1,-34,-17v0,-11,6,-16,17,-16r161,0v11,0,17,5,17,16v1,18,-17,18,-35,17r0,142","w":207},"\u0400":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm53,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":216},"\u0401":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm63,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm152,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26","w":216},"\u0402":{"d":"140,-30v0,-35,45,-15,45,-46v0,-21,-12,-31,-34,-31v-64,0,0,108,-67,108v-21,0,-35,-12,-35,-34r0,-150v-28,3,-45,-11,-45,-35v-1,-53,78,-31,128,-35v22,-2,36,15,36,35v0,24,-19,39,-49,35r0,28v64,-26,139,-1,135,74v-3,51,-26,81,-83,81v-21,0,-31,-10,-31,-30","w":261},"\u0403":{"d":"49,1v-19,0,-36,-13,-35,-34r0,-185v-3,-51,63,-31,107,-35v21,-1,33,15,33,35v0,35,-33,38,-70,35r0,150v1,21,-16,34,-35,34xm125,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":158},"\u0404":{"d":"193,-126v0,45,-67,25,-109,29v13,22,40,27,77,27v22,0,33,14,34,35v1,30,-26,37,-60,35v-79,-5,-126,-48,-126,-125v0,-86,56,-132,152,-128v22,1,34,13,35,35v3,60,-91,14,-112,62v43,4,109,-16,109,30","w":205},"\u0405":{"d":"87,-157v68,-4,111,10,111,76v0,54,-26,81,-79,81v-44,0,-104,13,-104,-35v0,-48,63,-35,108,-35v9,0,14,-7,14,-13v1,-20,-30,-13,-50,-14v-51,0,-73,-24,-75,-75v-3,-77,58,-85,136,-81v22,1,36,14,37,34v2,44,-54,36,-98,36v-9,-1,-13,7,-14,13v1,6,5,14,14,13","w":209,"k":{"\/":8,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,",":13,".":13,"\u201a":13,"\u201e":13,"\u2026":13}},"\u0406":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35","w":98},"\u0407":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm5,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm94,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26","w":98},"\u0408":{"d":"135,-255v53,-1,35,79,35,129v0,84,-43,126,-132,126v-21,0,-35,-15,-35,-35v0,-24,17,-38,46,-35v72,6,52,-87,52,-150v0,-21,15,-35,34,-35","w":182,"k":{"\/":10,",":28,".":28,"\u201a":28,"\u201e":28,"\u2026":28,"A":13,"a":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u0100":13,"\u0101":13,"\u0102":13,"\u0103":13,"\u0104":13,"\u0105":13,"\u01fa":13,"\u01fb":13,"\u0410":13,"\u0430":13,"\u1ea0":13,"\u1ea1":13,"\u1ea2":13,"\u1ea3":13,"\u1ea4":13,"\u1ea5":13,"\u1ea6":13,"\u1ea7":13,"\u1ea8":13,"\u1ea9":13,"\u1eaa":13,"\u1eab":13,"\u1eac":13,"\u1ead":13,"\u1eae":13,"\u1eaf":13,"\u1eb0":13,"\u1eb1":13,"\u1eb2":13,"\u1eb3":13,"\u1eb4":13,"\u1eb5":13,"\u1eb6":13,"\u1eb7":13}},"\u0409":{"d":"65,-8v-25,25,-76,-1,-59,-40v37,-35,61,-97,61,-170v0,-57,81,-35,131,-35v23,0,35,12,35,36r0,150v25,-1,61,8,61,-20v0,-34,-52,-7,-52,-46v0,-24,16,-32,44,-30v47,3,70,34,70,82v0,53,-31,83,-88,81v-45,-1,-105,12,-105,-35r0,-148r-27,0v-4,79,-30,134,-71,175","w":363},"\u040a":{"d":"141,-159v0,-43,-9,-97,35,-96v24,1,35,12,35,36r0,152v26,-1,62,7,62,-20v1,-33,-52,-7,-52,-46v0,-24,15,-32,43,-30v47,3,69,33,70,82v2,82,-75,81,-158,81v-43,0,-35,-51,-35,-94r-57,0v-1,42,10,95,-35,95v-20,0,-36,-13,-35,-34r0,-187v-1,-21,16,-35,35,-35v44,-2,35,53,35,96r57,0","w":343},"\u040b":{"d":"84,1v-21,0,-35,-12,-35,-34r0,-150v-28,3,-45,-11,-45,-35v-1,-53,78,-31,128,-35v22,-2,36,15,36,35v0,24,-19,39,-49,35r0,28v71,-29,135,6,135,89v0,37,-1,69,-35,67v-65,9,-2,-108,-68,-108v-64,0,0,108,-67,108","w":263},"\u040c":{"d":"197,-56v25,27,-6,70,-43,54v-5,-2,-9,-5,-12,-10r-58,-81v0,42,9,94,-35,94v-21,0,-35,-13,-35,-34r0,-187v0,-21,15,-35,35,-35v43,-2,35,52,35,95v23,-30,42,-64,68,-92v34,-15,71,24,45,54r-59,67xm152,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":214},"\u040d":{"d":"48,-255v48,0,30,70,33,116r66,-98v15,-28,64,-20,64,17r0,188v0,20,-13,33,-33,33v-49,0,-31,-69,-34,-115v-27,36,-47,80,-79,111v-25,12,-51,-4,-51,-30r0,-188v-1,-21,16,-34,34,-34xm58,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":225},"\u040e":{"d":"19,-201v-19,-27,17,-69,47,-49v20,13,27,42,40,62v17,-22,24,-67,57,-67v27,0,47,29,31,54r-115,184v-12,31,-66,17,-66,-16v11,-38,38,-61,56,-93xm106,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24","w":213},"\u040f":{"d":"112,50v-25,0,-40,-19,-35,-50v-34,1,-63,1,-63,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150r55,0r0,-150v-1,-21,16,-35,35,-35v19,0,34,14,34,35r0,185v2,36,-28,37,-62,35v4,30,-9,50,-34,50","w":222},"\u0410":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"\u0411":{"d":"208,-81v3,82,-75,81,-159,81v-23,0,-34,-11,-34,-35r0,-183v-3,-52,63,-31,107,-35v21,-1,33,15,33,35v0,35,-33,38,-70,35r0,116v26,-2,61,8,61,-20v0,-34,-51,-7,-51,-46v0,-24,15,-32,43,-30v47,3,68,34,70,82","w":212},"\u0412":{"d":"148,-168v-1,-26,-43,-12,-66,-15r0,33v25,-3,67,11,66,-18xm148,-85v0,-25,-43,-10,-66,-14r0,29v24,-3,66,10,66,-15xm215,-66v0,42,-21,66,-63,66v-52,0,-138,24,-137,-36r0,-182v0,-24,10,-35,31,-35r111,0v65,-4,72,113,16,124v30,4,41,31,42,63","w":228,"k":{"V":10,"W":10,"v":10,"w":10,"\u0174":10,"\u0175":10,"\u1e80":10,"\u1e81":10,"\u1e82":10,"\u1e83":10,"\u1e84":10,"\u1e85":10,",":12,".":12,"\u201a":12,"\u201e":12,"\u2026":12}},"\u0413":{"d":"49,1v-19,0,-36,-13,-35,-34r0,-185v-3,-51,63,-31,107,-35v21,-1,33,15,33,35v0,35,-33,38,-70,35r0,150v1,21,-16,34,-35,34","w":158},"\u0414":{"d":"235,50v-25,0,-39,-20,-35,-50r-128,0v4,31,-10,49,-35,50v-39,1,-36,-45,-34,-85v0,-20,7,-31,24,-34v25,-35,42,-89,42,-149v0,-57,82,-35,132,-35v23,0,34,11,34,35r0,148v43,-4,35,45,35,85v1,22,-16,35,-35,35xm139,-183v-2,46,-12,80,-28,113r55,0r0,-113r-27,0","w":269},"\u0415":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35","w":216},"\u0416":{"d":"16,-198v-23,-26,7,-71,44,-54v28,25,45,63,69,92v0,-43,-9,-95,35,-95v42,0,35,52,35,95v23,-30,42,-64,67,-92v35,-16,71,24,45,54r-58,67r65,86v15,37,-40,65,-62,33r-57,-81v0,42,9,94,-35,94v-45,0,-35,-52,-35,-94r-58,81v-19,28,-79,6,-61,-32v16,-34,44,-57,65,-87","w":328},"\u0417":{"d":"215,-66v0,42,-21,66,-63,66v-51,0,-138,24,-138,-35v0,-54,73,-35,120,-35v9,0,14,-7,14,-15v0,-8,-5,-13,-14,-14v-38,-4,-102,17,-102,-26v0,-43,65,-25,102,-25v10,0,14,-9,14,-18v0,-9,-5,-15,-14,-15v-47,0,-122,21,-120,-35v0,-24,11,-35,32,-35r111,0v65,-4,72,113,16,124v30,4,41,31,42,63","w":226},"\u0418":{"d":"48,-255v48,0,30,70,33,116r66,-98v15,-28,64,-20,64,17r0,188v0,20,-13,33,-33,33v-49,0,-31,-69,-34,-115v-27,36,-47,80,-79,111v-25,12,-51,-4,-51,-30r0,-188v-1,-21,16,-34,34,-34","w":225},"\u0419":{"d":"48,-255v48,0,30,70,33,116r66,-98v15,-28,64,-20,64,17r0,188v0,20,-13,33,-33,33v-49,0,-31,-69,-34,-115v-27,36,-47,80,-79,111v-25,12,-51,-4,-51,-30r0,-188v-1,-21,16,-34,34,-34xm113,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24","w":225},"\u041a":{"d":"197,-56v25,27,-6,70,-43,54v-5,-2,-9,-5,-12,-10r-58,-81v0,42,9,94,-35,94v-21,0,-35,-13,-35,-34r0,-187v0,-21,15,-35,35,-35v43,-2,35,52,35,95v23,-30,42,-64,68,-92v34,-15,71,24,45,54r-59,67","w":214,"k":{"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":5,"G":5,"c":5,"g":5,"\u00c7":5,"\u00e7":5,"\u0106":5,"\u0107":5,"\u0108":5,"\u0109":5,"\u010a":5,"\u010b":5,"\u010c":5,"\u010d":5,"\u011c":5,"\u011d":5,"\u011e":5,"\u011f":5,"\u0120":5,"\u0121":5,"\u0122":5,"\u0123":5,"\u0152":5,"\u0153":5,"\u0421":5,"\u0441":5,"0":12,"O":12,"Q":12,"o":12,"q":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"\u00d6":12,"\u00d8":12,"\u00f2":12,"\u00f3":12,"\u00f4":12,"\u00f5":12,"\u00f6":12,"\u00f8":12,"\u014c":12,"\u014d":12,"\u014e":12,"\u014f":12,"\u0150":12,"\u0151":12,"\u01fe":12,"\u01ff":12,"\u041e":12,"\u0424":12,"\u043e":12,"\u0444":12,"\u1ecc":12,"\u1ecd":12,"\u1ece":12,"\u1ecf":12,"\u1ed0":12,"\u1ed1":12,"\u1ed2":12,"\u1ed3":12,"\u1ed4":12,"\u1ed5":12,"\u1ed6":12,"\u1ed7":12,"\u1ed8":12,"\u1ed9":12,"\u1eda":12,"\u1edb":12,"\u1edc":12,"\u1edd":12,"\u1ede":12,"\u1edf":12,"\u1ee0":12,"\u1ee1":12,"\u1ee2":12,"\u1ee3":12}},"\u041b":{"d":"65,-8v-25,25,-76,-1,-59,-40v37,-35,61,-97,61,-170v0,-57,81,-35,131,-35v23,0,35,11,35,35r0,185v1,21,-16,34,-35,34v-19,0,-36,-13,-35,-34r0,-150r-27,0v-4,79,-30,134,-71,175","w":247},"\u041c":{"d":"222,1v-56,0,-27,-91,-34,-143v-17,23,-45,73,-77,34r-26,-34v-6,53,21,141,-35,143v-21,0,-35,-12,-35,-34r0,-184v-2,-41,50,-47,71,-20r50,64v28,-27,39,-73,85,-82v22,2,36,15,37,38r0,184v0,22,-15,34,-36,34","w":272},"\u041d":{"d":"176,-255v20,0,36,14,35,35r0,187v1,22,-14,34,-35,34v-44,0,-35,-52,-35,-95r-57,0v-1,42,10,95,-35,95v-20,0,-36,-13,-35,-34r0,-187v-1,-21,16,-35,35,-35v44,-2,35,53,35,96r57,0v0,-43,-9,-96,35,-96","w":225},"\u041e":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u041f":{"d":"49,1v-19,0,-36,-13,-35,-34r0,-185v0,-24,12,-35,35,-35r125,0v23,0,34,11,34,35r0,185v1,22,-16,34,-34,34v-19,0,-35,-12,-35,-34r0,-150r-55,0r0,150v1,21,-16,34,-35,34","w":223},"\u0420":{"d":"146,-166v1,-28,-35,-18,-61,-20r0,151v0,24,-12,36,-35,36v-24,0,-35,-11,-35,-35r0,-184v-3,-51,61,-33,105,-35v57,-2,88,26,88,81v0,52,-27,84,-82,82v-22,0,-29,-10,-31,-30v-4,-38,50,-13,51,-46","w":212,"k":{"\/":29,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":29,"a":29,"\u00c0":29,"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c4":29,"\u00c5":29,"\u00e0":29,"\u00e1":29,"\u00e2":29,"\u00e3":29,"\u00e4":29,"\u00e5":29,"\u0100":29,"\u0101":29,"\u0102":29,"\u0103":29,"\u0104":29,"\u0105":29,"\u01fa":29,"\u01fb":29,"\u0410":29,"\u0430":29,"\u1ea0":29,"\u1ea1":29,"\u1ea2":29,"\u1ea3":29,"\u1ea4":29,"\u1ea5":29,"\u1ea6":29,"\u1ea7":29,"\u1ea8":29,"\u1ea9":29,"\u1eaa":29,"\u1eab":29,"\u1eac":29,"\u1ead":29,"\u1eae":29,"\u1eaf":29,"\u1eb0":29,"\u1eb1":29,"\u1eb2":29,"\u1eb3":29,"\u1eb4":29,"\u1eb5":29,"\u1eb6":29,"\u1eb7":29,"J":46,"j":46,"\u0134":46,"\u0135":46,"\u0408":46,"\u0458":46,"\u00c6":55,"\u00e6":55,"\u01fc":55,"\u01fd":55}},"\u0421":{"d":"196,-218v0,32,-26,36,-61,36v-36,0,-58,20,-58,55v0,45,33,57,84,57v22,0,33,14,34,35v1,30,-26,37,-60,35v-79,-5,-126,-48,-126,-125v0,-86,56,-132,152,-128v22,1,34,13,35,35","w":205,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u0422":{"d":"194,-218v1,30,-25,39,-59,35r0,150v1,22,-14,34,-35,34v-20,0,-35,-12,-35,-34r0,-150v-34,3,-60,-5,-59,-35v2,-59,98,-29,153,-35v21,-2,35,15,35,35","w":200,"k":{"\/":36,"-":31,"\u00ab":31,"\u00bb":31,"\u2013":31,"\u2014":31,"\u2039":31,"\u203a":31,"0":16,"O":16,"Q":16,"o":16,"q":16,"\u00d2":16,"\u00d3":16,"\u00d4":16,"\u00d5":16,"\u00d6":16,"\u00d8":16,"\u00f2":16,"\u00f3":16,"\u00f4":16,"\u00f5":16,"\u00f6":16,"\u00f8":16,"\u014c":16,"\u014d":16,"\u014e":16,"\u014f":16,"\u0150":16,"\u0151":16,"\u01fe":16,"\u01ff":16,"\u041e":16,"\u0424":16,"\u043e":16,"\u0444":16,"\u1ecc":16,"\u1ecd":16,"\u1ece":16,"\u1ecf":16,"\u1ed0":16,"\u1ed1":16,"\u1ed2":16,"\u1ed3":16,"\u1ed4":16,"\u1ed5":16,"\u1ed6":16,"\u1ed7":16,"\u1ed8":16,"\u1ed9":16,"\u1eda":16,"\u1edb":16,"\u1edc":16,"\u1edd":16,"\u1ede":16,"\u1edf":16,"\u1ee0":16,"\u1ee1":16,"\u1ee2":16,"\u1ee3":16,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":43,"j":43,"\u0134":43,"\u0135":43,"\u0408":43,"\u0458":43,"\u00c6":55,"\u00e6":55,"\u01fc":55,"\u01fd":55}},"\u0423":{"d":"19,-201v-19,-27,17,-69,47,-49v20,13,27,42,40,62v17,-22,24,-67,57,-67v27,0,47,29,31,54r-115,184v-12,31,-66,17,-66,-16v11,-38,38,-61,56,-93","w":213,"k":{"-":17,"\u00ab":17,"\u00bb":17,"\u2013":17,"\u2014":17,"\u2039":17,"\u203a":17,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14}},"\u0424":{"d":"110,-1v-58,-14,-100,-57,-100,-126v0,-68,43,-111,100,-126v-3,-24,10,-38,30,-38v20,0,32,14,29,38v57,15,100,58,100,126v0,69,-43,111,-100,126v3,24,-10,39,-29,39v-20,0,-33,-15,-30,-39xm166,-73v42,-14,43,-91,0,-106r0,106xm114,-178v-42,14,-43,91,0,105r0,-105","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u0425":{"d":"19,-201v-19,-27,17,-69,47,-49v20,13,27,42,40,62v17,-22,24,-67,57,-67v27,0,47,29,31,54r-51,75v18,32,44,56,57,93v-1,32,-48,47,-66,16r-28,-48v-17,22,-20,64,-55,66v-27,2,-47,-28,-32,-52r50,-75","w":213,"k":{"-":17,"\u00ab":17,"\u00bb":17,"\u2013":17,"\u2014":17,"\u2039":17,"\u203a":17,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14}},"\u0426":{"d":"208,50v-25,0,-38,-20,-34,-50r-125,0v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150r55,0r0,-150v-1,-21,16,-35,35,-35v19,0,34,14,34,35r0,150v43,-4,34,46,35,85v1,22,-16,35,-35,35","w":243},"\u0427":{"d":"180,-255v20,0,36,12,36,35r0,187v1,21,-15,34,-35,34v-41,0,-36,-44,-35,-84v-71,28,-136,-6,-136,-89v0,-40,-4,-83,35,-83v43,0,35,51,35,93v0,21,11,31,33,31v69,0,-4,-124,67,-124","w":228},"\u0428":{"d":"125,-220v-1,-21,15,-36,34,-35v21,1,35,14,35,35r0,150r41,0r0,-150v-1,-21,16,-35,35,-35v19,0,34,14,34,35r0,185v0,24,-11,35,-34,35r-221,0v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150r41,0r0,-150","w":317},"\u0429":{"d":"305,50v-25,0,-40,-19,-35,-50r-221,0v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150r41,0r0,-150v-1,-21,15,-36,34,-35v21,1,35,14,35,35r0,150r41,0r0,-150v-1,-21,16,-35,35,-35v19,0,34,14,34,35r1,150v43,-4,33,46,34,85v1,22,-15,35,-34,35","w":339},"\u042a":{"d":"37,-253v39,0,81,-8,81,34r0,152v26,-2,61,8,61,-20v0,-34,-51,-7,-51,-46v0,-24,15,-32,43,-30v48,3,68,34,70,82v3,82,-75,81,-159,81v-23,0,-34,-11,-34,-35r0,-148v-28,3,-45,-11,-45,-35v0,-20,13,-36,34,-35","w":245},"\u042b":{"d":"15,-220v-1,-24,12,-35,35,-35v23,0,35,12,35,36r0,152v26,-2,61,8,61,-20v0,-34,-51,-7,-51,-46v0,-24,15,-32,43,-30v47,3,68,34,70,82v3,82,-75,81,-159,81v-23,0,-34,-11,-34,-35r0,-185xm261,-255v19,0,35,14,35,35r0,187v1,22,-15,34,-35,34v-21,0,-35,-13,-35,-34r0,-187v0,-21,15,-35,35,-35","w":311},"\u042c":{"d":"15,-220v-1,-24,12,-35,35,-35v23,0,35,12,35,36r0,152v26,-2,61,8,61,-20v0,-34,-51,-7,-51,-46v0,-24,15,-32,43,-30v47,3,68,34,70,82v3,82,-75,81,-159,81v-23,0,-34,-11,-34,-35r0,-185","w":212},"\u042d":{"d":"9,-35v-1,-58,91,-15,112,-62v-42,-4,-109,16,-109,-29v0,-46,67,-26,109,-30v-11,-23,-40,-26,-77,-26v-22,0,-34,-13,-35,-36v0,-29,23,-36,55,-35v82,4,132,49,132,128v0,85,-56,125,-152,125v-22,0,-34,-16,-35,-35","w":205},"\u042e":{"d":"49,-255v44,-1,35,56,35,99r28,0v15,-57,56,-100,126,-100v79,0,130,53,130,129v0,77,-53,130,-130,130v-68,0,-111,-42,-125,-100r-29,0v-1,43,10,98,-35,98v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm238,-185v-34,0,-58,23,-58,59v0,36,23,59,58,59v35,0,59,-22,59,-59v0,-36,-24,-59,-59,-59","w":378,"k":{"\/":15,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,"Y":16,"y":16,"\u00dd":16,"\u00fd":16,"\u00ff":16,"\u0176":16,"\u0177":16,"\u0178":16,"\u1ef2":16,"\u1ef3":16,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":13,"a":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u0100":13,"\u0101":13,"\u0102":13,"\u0103":13,"\u0104":13,"\u0105":13,"\u01fa":13,"\u01fb":13,"\u0410":13,"\u0430":13,"\u1ea0":13,"\u1ea1":13,"\u1ea2":13,"\u1ea3":13,"\u1ea4":13,"\u1ea5":13,"\u1ea6":13,"\u1ea7":13,"\u1ea8":13,"\u1ea9":13,"\u1eaa":13,"\u1eab":13,"\u1eac":13,"\u1ead":13,"\u1eae":13,"\u1eaf":13,"\u1eb0":13,"\u1eb1":13,"\u1eb2":13,"\u1eb3":13,"\u1eb4":13,"\u1eb5":13,"\u1eb6":13,"\u1eb7":13}},"\u042f":{"d":"95,-148v29,0,40,31,26,52v-19,30,-30,69,-55,93v-33,17,-68,-18,-47,-52r33,-52v-24,-10,-43,-36,-43,-69v0,-78,79,-77,162,-77v23,0,33,11,33,35r0,183v1,24,-12,35,-35,35v-23,0,-35,-12,-35,-36r0,-150v-23,2,-59,-9,-59,17v0,14,7,21,20,21","w":219},"\u0430":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"\u0431":{"d":"208,-81v3,82,-75,81,-159,81v-23,0,-34,-11,-34,-35r0,-183v-3,-52,63,-31,107,-35v21,-1,33,15,33,35v0,35,-33,38,-70,35r0,116v26,-2,61,8,61,-20v0,-34,-51,-7,-51,-46v0,-24,15,-32,43,-30v47,3,68,34,70,82","w":212},"\u0432":{"d":"148,-168v-1,-26,-43,-12,-66,-15r0,33v25,-3,67,11,66,-18xm148,-85v0,-25,-43,-10,-66,-14r0,29v24,-3,66,10,66,-15xm215,-66v0,42,-21,66,-63,66v-52,0,-138,24,-137,-36r0,-182v0,-24,10,-35,31,-35r111,0v65,-4,72,113,16,124v30,4,41,31,42,63","w":228,"k":{"V":10,"W":10,"v":10,"w":10,"\u0174":10,"\u0175":10,"\u1e80":10,"\u1e81":10,"\u1e82":10,"\u1e83":10,"\u1e84":10,"\u1e85":10,",":12,".":12,"\u201a":12,"\u201e":12,"\u2026":12}},"\u0433":{"d":"49,1v-19,0,-36,-13,-35,-34r0,-185v-3,-51,63,-31,107,-35v21,-1,33,15,33,35v0,35,-33,38,-70,35r0,150v1,21,-16,34,-35,34","w":158},"\u0434":{"d":"235,50v-25,0,-39,-20,-35,-50r-128,0v4,31,-10,49,-35,50v-39,1,-36,-45,-34,-85v0,-20,7,-31,24,-34v25,-35,42,-89,42,-149v0,-57,82,-35,132,-35v23,0,34,11,34,35r0,148v43,-4,35,45,35,85v1,22,-16,35,-35,35xm139,-183v-2,46,-12,80,-28,113r55,0r0,-113r-27,0","w":269},"\u0435":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35","w":216},"\u0436":{"d":"16,-198v-23,-26,7,-71,44,-54v28,25,45,63,69,92v0,-43,-9,-95,35,-95v42,0,35,52,35,95v23,-30,42,-64,67,-92v35,-16,71,24,45,54r-58,67r65,86v15,37,-40,65,-62,33r-57,-81v0,42,9,94,-35,94v-45,0,-35,-52,-35,-94r-58,81v-19,28,-79,6,-61,-32v16,-34,44,-57,65,-87","w":328},"\u0437":{"d":"215,-66v0,42,-21,66,-63,66v-51,0,-138,24,-138,-35v0,-54,73,-35,120,-35v9,0,14,-7,14,-15v0,-8,-5,-13,-14,-14v-38,-4,-102,17,-102,-26v0,-43,65,-25,102,-25v10,0,14,-9,14,-18v0,-9,-5,-15,-14,-15v-47,0,-122,21,-120,-35v0,-24,11,-35,32,-35r111,0v65,-4,72,113,16,124v30,4,41,31,42,63","w":226},"\u0438":{"d":"48,-255v48,0,30,70,33,116r66,-98v15,-28,64,-20,64,17r0,188v0,20,-13,33,-33,33v-49,0,-31,-69,-34,-115v-27,36,-47,80,-79,111v-25,12,-51,-4,-51,-30r0,-188v-1,-21,16,-34,34,-34","w":225},"\u0439":{"d":"48,-255v48,0,30,70,33,116r66,-98v15,-28,64,-20,64,17r0,188v0,20,-13,33,-33,33v-49,0,-31,-69,-34,-115v-27,36,-47,80,-79,111v-25,12,-51,-4,-51,-30r0,-188v-1,-21,16,-34,34,-34xm113,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24","w":225},"\u043a":{"d":"197,-56v25,27,-6,70,-43,54v-5,-2,-9,-5,-12,-10r-58,-81v0,42,9,94,-35,94v-21,0,-35,-13,-35,-34r0,-187v0,-21,15,-35,35,-35v43,-2,35,52,35,95v23,-30,42,-64,68,-92v34,-15,71,24,45,54r-59,67","w":214,"k":{"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":5,"G":5,"c":5,"g":5,"\u00c7":5,"\u00e7":5,"\u0106":5,"\u0107":5,"\u0108":5,"\u0109":5,"\u010a":5,"\u010b":5,"\u010c":5,"\u010d":5,"\u011c":5,"\u011d":5,"\u011e":5,"\u011f":5,"\u0120":5,"\u0121":5,"\u0122":5,"\u0123":5,"\u0152":5,"\u0153":5,"\u0421":5,"\u0441":5,"0":12,"O":12,"Q":12,"o":12,"q":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"\u00d6":12,"\u00d8":12,"\u00f2":12,"\u00f3":12,"\u00f4":12,"\u00f5":12,"\u00f6":12,"\u00f8":12,"\u014c":12,"\u014d":12,"\u014e":12,"\u014f":12,"\u0150":12,"\u0151":12,"\u01fe":12,"\u01ff":12,"\u041e":12,"\u0424":12,"\u043e":12,"\u0444":12,"\u1ecc":12,"\u1ecd":12,"\u1ece":12,"\u1ecf":12,"\u1ed0":12,"\u1ed1":12,"\u1ed2":12,"\u1ed3":12,"\u1ed4":12,"\u1ed5":12,"\u1ed6":12,"\u1ed7":12,"\u1ed8":12,"\u1ed9":12,"\u1eda":12,"\u1edb":12,"\u1edc":12,"\u1edd":12,"\u1ede":12,"\u1edf":12,"\u1ee0":12,"\u1ee1":12,"\u1ee2":12,"\u1ee3":12}},"\u043b":{"d":"65,-8v-25,25,-76,-1,-59,-40v37,-35,61,-97,61,-170v0,-57,81,-35,131,-35v23,0,35,11,35,35r0,185v1,21,-16,34,-35,34v-19,0,-36,-13,-35,-34r0,-150r-27,0v-4,79,-30,134,-71,175","w":247},"\u043c":{"d":"222,1v-56,0,-27,-91,-34,-143v-17,23,-45,73,-77,34r-26,-34v-6,53,21,141,-35,143v-21,0,-35,-12,-35,-34r0,-184v-2,-41,50,-47,71,-20r50,64v28,-27,39,-73,85,-82v22,2,36,15,37,38r0,184v0,22,-15,34,-36,34","w":272},"\u043d":{"d":"176,-255v20,0,36,14,35,35r0,187v1,22,-14,34,-35,34v-44,0,-35,-52,-35,-95r-57,0v-1,42,10,95,-35,95v-20,0,-36,-13,-35,-34r0,-187v-1,-21,16,-35,35,-35v44,-2,35,53,35,96r57,0v0,-43,-9,-96,35,-96","w":225},"\u043e":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u043f":{"d":"49,1v-19,0,-36,-13,-35,-34r0,-185v0,-24,12,-35,35,-35r125,0v23,0,34,11,34,35r0,185v1,22,-16,34,-34,34v-19,0,-35,-12,-35,-34r0,-150r-55,0r0,150v1,21,-16,34,-35,34","w":223},"\u0440":{"d":"146,-166v1,-28,-35,-18,-61,-20r0,151v0,24,-12,36,-35,36v-24,0,-35,-11,-35,-35r0,-184v-3,-51,61,-33,105,-35v57,-2,88,26,88,81v0,52,-27,84,-82,82v-22,0,-29,-10,-31,-30v-4,-38,50,-13,51,-46","w":212,"k":{"\/":29,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":29,"a":29,"\u00c0":29,"\u00c1":29,"\u00c2":29,"\u00c3":29,"\u00c4":29,"\u00c5":29,"\u00e0":29,"\u00e1":29,"\u00e2":29,"\u00e3":29,"\u00e4":29,"\u00e5":29,"\u0100":29,"\u0101":29,"\u0102":29,"\u0103":29,"\u0104":29,"\u0105":29,"\u01fa":29,"\u01fb":29,"\u0410":29,"\u0430":29,"\u1ea0":29,"\u1ea1":29,"\u1ea2":29,"\u1ea3":29,"\u1ea4":29,"\u1ea5":29,"\u1ea6":29,"\u1ea7":29,"\u1ea8":29,"\u1ea9":29,"\u1eaa":29,"\u1eab":29,"\u1eac":29,"\u1ead":29,"\u1eae":29,"\u1eaf":29,"\u1eb0":29,"\u1eb1":29,"\u1eb2":29,"\u1eb3":29,"\u1eb4":29,"\u1eb5":29,"\u1eb6":29,"\u1eb7":29,"J":46,"j":46,"\u0134":46,"\u0135":46,"\u0408":46,"\u0458":46,"\u00c6":55,"\u00e6":55,"\u01fc":55,"\u01fd":55}},"\u0441":{"d":"196,-218v0,32,-26,36,-61,36v-36,0,-58,20,-58,55v0,45,33,57,84,57v22,0,33,14,34,35v1,30,-26,37,-60,35v-79,-5,-126,-48,-126,-125v0,-86,56,-132,152,-128v22,1,34,13,35,35","w":205,"k":{",":4,".":4,"\u201a":4,"\u201e":4,"\u2026":4}},"\u0442":{"d":"194,-218v1,30,-25,39,-59,35r0,150v1,22,-14,34,-35,34v-20,0,-35,-12,-35,-34r0,-150v-34,3,-60,-5,-59,-35v2,-59,98,-29,153,-35v21,-2,35,15,35,35","w":200,"k":{"\/":36,"-":31,"\u00ab":31,"\u00bb":31,"\u2013":31,"\u2014":31,"\u2039":31,"\u203a":31,"0":16,"O":16,"Q":16,"o":16,"q":16,"\u00d2":16,"\u00d3":16,"\u00d4":16,"\u00d5":16,"\u00d6":16,"\u00d8":16,"\u00f2":16,"\u00f3":16,"\u00f4":16,"\u00f5":16,"\u00f6":16,"\u00f8":16,"\u014c":16,"\u014d":16,"\u014e":16,"\u014f":16,"\u0150":16,"\u0151":16,"\u01fe":16,"\u01ff":16,"\u041e":16,"\u0424":16,"\u043e":16,"\u0444":16,"\u1ecc":16,"\u1ecd":16,"\u1ece":16,"\u1ecf":16,"\u1ed0":16,"\u1ed1":16,"\u1ed2":16,"\u1ed3":16,"\u1ed4":16,"\u1ed5":16,"\u1ed6":16,"\u1ed7":16,"\u1ed8":16,"\u1ed9":16,"\u1eda":16,"\u1edb":16,"\u1edc":16,"\u1edd":16,"\u1ede":16,"\u1edf":16,"\u1ee0":16,"\u1ee1":16,"\u1ee2":16,"\u1ee3":16,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":43,"j":43,"\u0134":43,"\u0135":43,"\u0408":43,"\u0458":43,"\u00c6":55,"\u00e6":55,"\u01fc":55,"\u01fd":55}},"\u0443":{"d":"19,-201v-19,-27,17,-69,47,-49v20,13,27,42,40,62v17,-22,24,-67,57,-67v27,0,47,29,31,54r-115,184v-12,31,-66,17,-66,-16v11,-38,38,-61,56,-93","w":213,"k":{"-":17,"\u00ab":17,"\u00bb":17,"\u2013":17,"\u2014":17,"\u2039":17,"\u203a":17,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14}},"\u0444":{"d":"110,-1v-58,-14,-100,-57,-100,-126v0,-68,43,-111,100,-126v-3,-24,10,-38,30,-38v20,0,32,14,29,38v57,15,100,58,100,126v0,69,-43,111,-100,126v3,24,-10,39,-29,39v-20,0,-33,-15,-30,-39xm166,-73v42,-14,43,-91,0,-106r0,106xm114,-178v-42,14,-43,91,0,105r0,-105","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u0445":{"d":"19,-201v-19,-27,17,-69,47,-49v20,13,27,42,40,62v17,-22,24,-67,57,-67v27,0,47,29,31,54r-51,75v18,32,44,56,57,93v-1,32,-48,47,-66,16r-28,-48v-17,22,-20,64,-55,66v-27,2,-47,-28,-32,-52r50,-75","w":213,"k":{"-":17,"\u00ab":17,"\u00bb":17,"\u2013":17,"\u2014":17,"\u2039":17,"\u203a":17,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14}},"\u0446":{"d":"208,50v-25,0,-38,-20,-34,-50r-125,0v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150r55,0r0,-150v-1,-21,16,-35,35,-35v19,0,34,14,34,35r0,150v43,-4,34,46,35,85v1,22,-16,35,-35,35","w":243},"\u0447":{"d":"180,-255v20,0,36,12,36,35r0,187v1,21,-15,34,-35,34v-41,0,-36,-44,-35,-84v-71,28,-136,-6,-136,-89v0,-40,-4,-83,35,-83v43,0,35,51,35,93v0,21,11,31,33,31v69,0,-4,-124,67,-124","w":228},"\u0448":{"d":"125,-220v-1,-21,15,-36,34,-35v21,1,35,14,35,35r0,150r41,0r0,-150v-1,-21,16,-35,35,-35v19,0,34,14,34,35r0,185v0,24,-11,35,-34,35r-221,0v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150r41,0r0,-150","w":317},"\u0449":{"d":"305,50v-25,0,-40,-19,-35,-50r-221,0v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150r41,0r0,-150v-1,-21,15,-36,34,-35v21,1,35,14,35,35r0,150r41,0r0,-150v-1,-21,16,-35,35,-35v19,0,34,14,34,35r1,150v43,-4,33,46,34,85v1,22,-15,35,-34,35","w":339},"\u044a":{"d":"37,-253v39,0,81,-8,81,34r0,152v26,-2,61,8,61,-20v0,-34,-51,-7,-51,-46v0,-24,15,-32,43,-30v48,3,68,34,70,82v3,82,-75,81,-159,81v-23,0,-34,-11,-34,-35r0,-148v-28,3,-45,-11,-45,-35v0,-20,13,-36,34,-35","w":245},"\u044b":{"d":"15,-220v-1,-24,12,-35,35,-35v23,0,35,12,35,36r0,152v26,-2,61,8,61,-20v0,-34,-51,-7,-51,-46v0,-24,15,-32,43,-30v47,3,68,34,70,82v3,82,-75,81,-159,81v-23,0,-34,-11,-34,-35r0,-185xm261,-255v19,0,35,14,35,35r0,187v1,22,-15,34,-35,34v-21,0,-35,-13,-35,-34r0,-187v0,-21,15,-35,35,-35","w":311},"\u044c":{"d":"15,-220v-1,-24,12,-35,35,-35v23,0,35,12,35,36r0,152v26,-2,61,8,61,-20v0,-34,-51,-7,-51,-46v0,-24,15,-32,43,-30v47,3,68,34,70,82v3,82,-75,81,-159,81v-23,0,-34,-11,-34,-35r0,-185","w":212},"\u044d":{"d":"9,-35v-1,-58,91,-15,112,-62v-42,-4,-109,16,-109,-29v0,-46,67,-26,109,-30v-11,-23,-40,-26,-77,-26v-22,0,-34,-13,-35,-36v0,-29,23,-36,55,-35v82,4,132,49,132,128v0,85,-56,125,-152,125v-22,0,-34,-16,-35,-35","w":205},"\u044e":{"d":"49,-255v44,-1,35,56,35,99r28,0v15,-57,56,-100,126,-100v79,0,130,53,130,129v0,77,-53,130,-130,130v-68,0,-111,-42,-125,-100r-29,0v-1,43,10,98,-35,98v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm238,-185v-34,0,-58,23,-58,59v0,36,23,59,58,59v35,0,59,-22,59,-59v0,-36,-24,-59,-59,-59","w":378,"k":{"\/":15,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,"Y":16,"y":16,"\u00dd":16,"\u00fd":16,"\u00ff":16,"\u0176":16,"\u0177":16,"\u0178":16,"\u1ef2":16,"\u1ef3":16,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":13,"a":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u0100":13,"\u0101":13,"\u0102":13,"\u0103":13,"\u0104":13,"\u0105":13,"\u01fa":13,"\u01fb":13,"\u0410":13,"\u0430":13,"\u1ea0":13,"\u1ea1":13,"\u1ea2":13,"\u1ea3":13,"\u1ea4":13,"\u1ea5":13,"\u1ea6":13,"\u1ea7":13,"\u1ea8":13,"\u1ea9":13,"\u1eaa":13,"\u1eab":13,"\u1eac":13,"\u1ead":13,"\u1eae":13,"\u1eaf":13,"\u1eb0":13,"\u1eb1":13,"\u1eb2":13,"\u1eb3":13,"\u1eb4":13,"\u1eb5":13,"\u1eb6":13,"\u1eb7":13}},"\u044f":{"d":"95,-148v29,0,40,31,26,52v-19,30,-30,69,-55,93v-33,17,-68,-18,-47,-52r33,-52v-24,-10,-43,-36,-43,-69v0,-78,79,-77,162,-77v23,0,33,11,33,35r0,183v1,24,-12,35,-35,35v-23,0,-35,-12,-35,-36r0,-150v-23,2,-59,-9,-59,17v0,14,7,21,20,21","w":219},"\u0450":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm53,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":216},"\u0451":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm63,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm152,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26","w":216},"\u0452":{"d":"140,-30v0,-35,45,-15,45,-46v0,-21,-12,-31,-34,-31v-64,0,0,108,-67,108v-21,0,-35,-12,-35,-34r0,-150v-28,3,-45,-11,-45,-35v-1,-53,78,-31,128,-35v22,-2,36,15,36,35v0,24,-19,39,-49,35r0,28v64,-26,139,-1,135,74v-3,51,-26,81,-83,81v-21,0,-31,-10,-31,-30","w":261},"\u0453":{"d":"49,1v-19,0,-36,-13,-35,-34r0,-185v-3,-51,63,-31,107,-35v21,-1,33,15,33,35v0,35,-33,38,-70,35r0,150v1,21,-16,34,-35,34xm125,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":158},"\u0454":{"d":"193,-126v0,45,-67,25,-109,29v13,22,40,27,77,27v22,0,33,14,34,35v1,30,-26,37,-60,35v-79,-5,-126,-48,-126,-125v0,-86,56,-132,152,-128v22,1,34,13,35,35v3,60,-91,14,-112,62v43,4,109,-16,109,30","w":205},"\u0455":{"d":"87,-157v68,-4,111,10,111,76v0,54,-26,81,-79,81v-44,0,-104,13,-104,-35v0,-48,63,-35,108,-35v9,0,14,-7,14,-13v1,-20,-30,-13,-50,-14v-51,0,-73,-24,-75,-75v-3,-77,58,-85,136,-81v22,1,36,14,37,34v2,44,-54,36,-98,36v-9,-1,-13,7,-14,13v1,6,5,14,14,13","w":209,"k":{"\/":8,"V":12,"W":12,"v":12,"w":12,"\u0174":12,"\u0175":12,"\u1e80":12,"\u1e81":12,"\u1e82":12,"\u1e83":12,"\u1e84":12,"\u1e85":12,",":13,".":13,"\u201a":13,"\u201e":13,"\u2026":13}},"\u0456":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35","w":98},"\u0457":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm5,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm94,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26","w":98},"\u0458":{"d":"135,-255v53,-1,35,79,35,129v0,84,-43,126,-132,126v-21,0,-35,-15,-35,-35v0,-24,17,-38,46,-35v72,6,52,-87,52,-150v0,-21,15,-35,34,-35","w":182,"k":{"\/":10,",":28,".":28,"\u201a":28,"\u201e":28,"\u2026":28,"A":13,"a":13,"\u00c0":13,"\u00c1":13,"\u00c2":13,"\u00c3":13,"\u00c4":13,"\u00c5":13,"\u00e0":13,"\u00e1":13,"\u00e2":13,"\u00e3":13,"\u00e4":13,"\u00e5":13,"\u0100":13,"\u0101":13,"\u0102":13,"\u0103":13,"\u0104":13,"\u0105":13,"\u01fa":13,"\u01fb":13,"\u0410":13,"\u0430":13,"\u1ea0":13,"\u1ea1":13,"\u1ea2":13,"\u1ea3":13,"\u1ea4":13,"\u1ea5":13,"\u1ea6":13,"\u1ea7":13,"\u1ea8":13,"\u1ea9":13,"\u1eaa":13,"\u1eab":13,"\u1eac":13,"\u1ead":13,"\u1eae":13,"\u1eaf":13,"\u1eb0":13,"\u1eb1":13,"\u1eb2":13,"\u1eb3":13,"\u1eb4":13,"\u1eb5":13,"\u1eb6":13,"\u1eb7":13}},"\u0459":{"d":"65,-8v-25,25,-76,-1,-59,-40v37,-35,61,-97,61,-170v0,-57,81,-35,131,-35v23,0,35,12,35,36r0,150v25,-1,61,8,61,-20v0,-34,-52,-7,-52,-46v0,-24,16,-32,44,-30v47,3,70,34,70,82v0,53,-31,83,-88,81v-45,-1,-105,12,-105,-35r0,-148r-27,0v-4,79,-30,134,-71,175","w":363},"\u045a":{"d":"141,-159v0,-43,-9,-97,35,-96v24,1,35,12,35,36r0,152v26,-1,62,7,62,-20v1,-33,-52,-7,-52,-46v0,-24,15,-32,43,-30v47,3,69,33,70,82v2,82,-75,81,-158,81v-43,0,-35,-51,-35,-94r-57,0v-1,42,10,95,-35,95v-20,0,-36,-13,-35,-34r0,-187v-1,-21,16,-35,35,-35v44,-2,35,53,35,96r57,0","w":343},"\u045b":{"d":"84,1v-21,0,-35,-12,-35,-34r0,-150v-28,3,-45,-11,-45,-35v-1,-53,78,-31,128,-35v22,-2,36,15,36,35v0,24,-19,39,-49,35r0,28v71,-29,135,6,135,89v0,37,-1,69,-35,67v-65,9,-2,-108,-68,-108v-64,0,0,108,-67,108","w":263},"\u045c":{"d":"197,-56v25,27,-6,70,-43,54v-5,-2,-9,-5,-12,-10r-58,-81v0,42,9,94,-35,94v-21,0,-35,-13,-35,-34r0,-187v0,-21,15,-35,35,-35v43,-2,35,52,35,95v23,-30,42,-64,68,-92v34,-15,71,24,45,54r-59,67xm152,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":214},"\u045d":{"d":"48,-255v48,0,30,70,33,116r66,-98v15,-28,64,-20,64,17r0,188v0,20,-13,33,-33,33v-49,0,-31,-69,-34,-115v-27,36,-47,80,-79,111v-25,12,-51,-4,-51,-30r0,-188v-1,-21,16,-34,34,-34xm58,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":225},"\u045e":{"d":"19,-201v-19,-27,17,-69,47,-49v20,13,27,42,40,62v17,-22,24,-67,57,-67v27,0,47,29,31,54r-115,184v-12,31,-66,17,-66,-16v11,-38,38,-61,56,-93xm106,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24","w":213},"\u045f":{"d":"112,50v-25,0,-40,-19,-35,-50v-34,1,-63,1,-63,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150r55,0r0,-150v-1,-21,16,-35,35,-35v19,0,34,14,34,35r0,185v2,36,-28,37,-62,35v4,30,-9,50,-34,50","w":222},"\u1e80":{"d":"16,-209v-13,-30,23,-58,51,-40v6,4,11,10,13,18r34,124r33,-122v5,-36,57,-31,65,0r32,122r31,-123v7,-39,70,-27,64,10v-12,70,-43,130,-60,197v-8,31,-57,30,-68,0r-33,-93v-16,37,-21,85,-46,112v-23,12,-48,0,-54,-19xm122,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":353,"k":{"\/":36,"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":14,"G":14,"c":14,"g":14,"\u00c7":14,"\u00e7":14,"\u0106":14,"\u0107":14,"\u0108":14,"\u0109":14,"\u010a":14,"\u010b":14,"\u010c":14,"\u010d":14,"\u011c":14,"\u011d":14,"\u011e":14,"\u011f":14,"\u0120":14,"\u0121":14,"\u0122":14,"\u0123":14,"\u0152":14,"\u0153":14,"\u0421":14,"\u0441":14,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":34,"j":34,"\u0134":34,"\u0135":34,"\u0408":34,"\u0458":34,"\u00c6":68,"\u00e6":68,"\u01fc":68,"\u01fd":68}},"\u1e81":{"d":"16,-209v-13,-30,23,-58,51,-40v6,4,11,10,13,18r34,124r33,-122v5,-36,57,-31,65,0r32,122r31,-123v7,-39,70,-27,64,10v-12,70,-43,130,-60,197v-8,31,-57,30,-68,0r-33,-93v-16,37,-21,85,-46,112v-23,12,-48,0,-54,-19xm122,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":353,"k":{"\/":36,"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":14,"G":14,"c":14,"g":14,"\u00c7":14,"\u00e7":14,"\u0106":14,"\u0107":14,"\u0108":14,"\u0109":14,"\u010a":14,"\u010b":14,"\u010c":14,"\u010d":14,"\u011c":14,"\u011d":14,"\u011e":14,"\u011f":14,"\u0120":14,"\u0121":14,"\u0122":14,"\u0123":14,"\u0152":14,"\u0153":14,"\u0421":14,"\u0441":14,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":34,"j":34,"\u0134":34,"\u0135":34,"\u0408":34,"\u0458":34,"\u00c6":68,"\u00e6":68,"\u01fc":68,"\u01fd":68}},"\u1e82":{"d":"16,-209v-13,-30,23,-58,51,-40v6,4,11,10,13,18r34,124r33,-122v5,-36,57,-31,65,0r32,122r31,-123v7,-39,70,-27,64,10v-12,70,-43,130,-60,197v-8,31,-57,30,-68,0r-33,-93v-16,37,-21,85,-46,112v-23,12,-48,0,-54,-19xm222,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":353,"k":{"\/":36,"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":14,"G":14,"c":14,"g":14,"\u00c7":14,"\u00e7":14,"\u0106":14,"\u0107":14,"\u0108":14,"\u0109":14,"\u010a":14,"\u010b":14,"\u010c":14,"\u010d":14,"\u011c":14,"\u011d":14,"\u011e":14,"\u011f":14,"\u0120":14,"\u0121":14,"\u0122":14,"\u0123":14,"\u0152":14,"\u0153":14,"\u0421":14,"\u0441":14,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":34,"j":34,"\u0134":34,"\u0135":34,"\u0408":34,"\u0458":34,"\u00c6":68,"\u00e6":68,"\u01fc":68,"\u01fd":68}},"\u1e83":{"d":"16,-209v-13,-30,23,-58,51,-40v6,4,11,10,13,18r34,124r33,-122v5,-36,57,-31,65,0r32,122r31,-123v7,-39,70,-27,64,10v-12,70,-43,130,-60,197v-8,31,-57,30,-68,0r-33,-93v-16,37,-21,85,-46,112v-23,12,-48,0,-54,-19xm222,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":353,"k":{"\/":36,"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":14,"G":14,"c":14,"g":14,"\u00c7":14,"\u00e7":14,"\u0106":14,"\u0107":14,"\u0108":14,"\u0109":14,"\u010a":14,"\u010b":14,"\u010c":14,"\u010d":14,"\u011c":14,"\u011d":14,"\u011e":14,"\u011f":14,"\u0120":14,"\u0121":14,"\u0122":14,"\u0123":14,"\u0152":14,"\u0153":14,"\u0421":14,"\u0441":14,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":34,"j":34,"\u0134":34,"\u0135":34,"\u0408":34,"\u0458":34,"\u00c6":68,"\u00e6":68,"\u01fc":68,"\u01fd":68}},"\u1e84":{"d":"16,-209v-13,-30,23,-58,51,-40v6,4,11,10,13,18r34,124r33,-122v5,-36,57,-31,65,0r32,122r31,-123v7,-39,70,-27,64,10v-12,70,-43,130,-60,197v-8,31,-57,30,-68,0r-33,-93v-16,37,-21,85,-46,112v-23,12,-48,0,-54,-19xm132,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm221,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26","w":353,"k":{"\/":36,"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":14,"G":14,"c":14,"g":14,"\u00c7":14,"\u00e7":14,"\u0106":14,"\u0107":14,"\u0108":14,"\u0109":14,"\u010a":14,"\u010b":14,"\u010c":14,"\u010d":14,"\u011c":14,"\u011d":14,"\u011e":14,"\u011f":14,"\u0120":14,"\u0121":14,"\u0122":14,"\u0123":14,"\u0152":14,"\u0153":14,"\u0421":14,"\u0441":14,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":34,"j":34,"\u0134":34,"\u0135":34,"\u0408":34,"\u0458":34,"\u00c6":68,"\u00e6":68,"\u01fc":68,"\u01fd":68}},"\u1e85":{"d":"16,-209v-13,-30,23,-58,51,-40v6,4,11,10,13,18r34,124r33,-122v5,-36,57,-31,65,0r32,122r31,-123v7,-39,70,-27,64,10v-12,70,-43,130,-60,197v-8,31,-57,30,-68,0r-33,-93v-16,37,-21,85,-46,112v-23,12,-48,0,-54,-19xm132,-271v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,12,27,27v0,14,-11,26,-27,26xm221,-271v-15,0,-27,-12,-27,-26v0,-15,13,-27,27,-27v14,0,26,12,26,27v0,14,-12,26,-26,26","w":353,"k":{"\/":36,"-":24,"\u00ab":24,"\u00bb":24,"\u2013":24,"\u2014":24,"\u2039":24,"\u203a":24,"C":14,"G":14,"c":14,"g":14,"\u00c7":14,"\u00e7":14,"\u0106":14,"\u0107":14,"\u0108":14,"\u0109":14,"\u010a":14,"\u010b":14,"\u010c":14,"\u010d":14,"\u011c":14,"\u011d":14,"\u011e":14,"\u011f":14,"\u0120":14,"\u0121":14,"\u0122":14,"\u0123":14,"\u0152":14,"\u0153":14,"\u0421":14,"\u0441":14,"0":14,"O":14,"Q":14,"o":14,"q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"\u00d6":14,"\u00d8":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u00f6":14,"\u00f8":14,"\u014c":14,"\u014d":14,"\u014e":14,"\u014f":14,"\u0150":14,"\u0151":14,"\u01fe":14,"\u01ff":14,"\u041e":14,"\u0424":14,"\u043e":14,"\u0444":14,"\u1ecc":14,"\u1ecd":14,"\u1ece":14,"\u1ecf":14,"\u1ed0":14,"\u1ed1":14,"\u1ed2":14,"\u1ed3":14,"\u1ed4":14,"\u1ed5":14,"\u1ed6":14,"\u1ed7":14,"\u1ed8":14,"\u1ed9":14,"\u1eda":14,"\u1edb":14,"\u1edc":14,"\u1edd":14,"\u1ede":14,"\u1edf":14,"\u1ee0":14,"\u1ee1":14,"\u1ee2":14,"\u1ee3":14,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":34,"j":34,"\u0134":34,"\u0135":34,"\u0408":34,"\u0458":34,"\u00c6":68,"\u00e6":68,"\u01fc":68,"\u01fd":68}},"\u1ea0":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm123,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26"},"\u1ea1":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm123,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26"},"\u1ea2":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm129,-260v-26,-2,-9,-33,-3,-45v-1,-13,-23,-7,-20,-23v1,-6,5,-13,14,-13v22,0,35,11,35,31v0,17,-12,19,-12,37v1,9,-7,13,-14,13"},"\u1ea3":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm129,-260v-26,-2,-9,-33,-3,-45v-1,-13,-23,-7,-20,-23v1,-6,5,-13,14,-13v22,0,35,11,35,31v0,17,-12,19,-12,37v1,9,-7,13,-14,13"},"\u1ea4":{"d":"254,-316v11,-5,24,11,15,22v-18,13,-46,17,-71,21v-15,3,-18,-24,-3,-28xm168,-301v16,9,3,36,-14,26r-26,-15v-12,5,-19,14,-34,16v-14,1,-19,-21,-7,-27v15,-7,27,-21,48,-18xm108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"\u1ea5":{"d":"254,-316v11,-5,24,11,15,22v-18,13,-46,17,-71,21v-15,3,-18,-24,-3,-28xm168,-301v16,9,3,36,-14,26r-26,-15v-12,5,-19,14,-34,16v-14,1,-19,-21,-7,-27v15,-7,27,-21,48,-18xm108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"\u1ea6":{"d":"67,-296v6,12,-1,28,-16,23v-23,-8,-60,-5,-69,-29v7,-31,52,0,76,1v4,1,7,3,9,5xm166,-301v17,9,3,35,-13,26r-27,-15v-12,5,-19,14,-34,16v-14,1,-20,-21,-7,-27v15,-7,26,-22,48,-18xm108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"\u1ea7":{"d":"67,-296v6,12,-1,28,-16,23v-23,-8,-60,-5,-69,-29v7,-31,52,0,76,1v4,1,7,3,9,5xm166,-301v17,9,3,35,-13,26r-27,-15v-12,5,-19,14,-34,16v-14,1,-20,-21,-7,-27v15,-7,26,-22,48,-18xm108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"\u1ea8":{"d":"195,-260v-35,-3,11,-45,-10,-53v-17,-1,-17,-28,1,-28v22,0,36,10,35,31v0,17,-12,19,-12,37v1,9,-7,13,-14,13xm167,-301v16,9,3,35,-14,26r-27,-15v-13,9,-43,28,-48,1v9,-18,32,-30,56,-30xm108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"\u1ea9":{"d":"195,-260v-35,-3,11,-45,-10,-53v-17,-1,-17,-28,1,-28v22,0,36,10,35,31v0,17,-12,19,-12,37v1,9,-7,13,-14,13xm167,-301v16,9,3,35,-14,26r-27,-15v-13,9,-43,28,-48,1v9,-18,32,-30,56,-30xm108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"\u1eaa":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm164,-288v13,6,7,29,-6,27v-14,-2,-22,-11,-33,-16v-13,8,-41,28,-46,1v7,-18,31,-28,53,-29xm107,-341v18,2,43,21,54,0v9,-1,16,3,15,11v-4,31,-46,20,-67,12v-10,3,-26,21,-31,0v2,-14,15,-22,29,-23"},"\u1eab":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm164,-288v13,6,7,29,-6,27v-14,-2,-22,-11,-33,-16v-13,8,-41,28,-46,1v7,-18,31,-28,53,-29xm107,-341v18,2,43,21,54,0v9,-1,16,3,15,11v-4,31,-46,20,-67,12v-10,3,-26,21,-31,0v2,-14,15,-22,29,-23"},"\u1eac":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm175,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23xm123,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26"},"\u1ead":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm175,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23xm123,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26"},"\u1eae":{"d":"129,-290v19,0,17,-19,34,-19v7,0,15,8,14,16v-6,41,-91,42,-97,0v-1,-8,7,-16,14,-16v18,0,14,19,35,19xm109,-323v17,-8,63,-31,71,-6v0,6,-3,10,-9,11v-18,4,-33,11,-53,13v-9,1,-14,-10,-9,-18xm108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"\u1eaf":{"d":"129,-290v19,0,17,-19,34,-19v7,0,15,8,14,16v-6,41,-91,42,-97,0v-1,-8,7,-16,14,-16v18,0,14,19,35,19xm109,-323v17,-8,63,-31,71,-6v0,6,-3,10,-9,11v-18,4,-33,11,-53,13v-9,1,-14,-10,-9,-18xm108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"\u1eb0":{"d":"78,-293v0,-8,7,-16,15,-16v18,0,14,19,34,19v20,0,17,-18,35,-19v7,0,15,8,14,16v-7,42,-98,42,-98,0xm139,-328v14,3,10,27,-5,23v-18,-5,-41,-8,-56,-17v-5,-9,0,-22,13,-19xm108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"\u1eb1":{"d":"78,-293v0,-8,7,-16,15,-16v18,0,14,19,34,19v20,0,17,-18,35,-19v7,0,15,8,14,16v-7,42,-98,42,-98,0xm139,-328v14,3,10,27,-5,23v-18,-5,-41,-8,-56,-17v-5,-9,0,-22,13,-19xm108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"\u1eb2":{"d":"78,-293v-1,-8,7,-16,15,-16v12,1,14,12,22,17v-1,-11,16,-22,3,-28v-6,2,-10,-7,-9,-11v0,-6,3,-10,10,-10v26,-3,35,27,19,42v-1,2,-2,5,-2,8v11,-4,10,-18,25,-18v8,0,16,8,15,16v-6,42,-92,42,-98,0xm108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"\u1eb3":{"d":"78,-293v-1,-8,7,-16,15,-16v12,1,14,12,22,17v-1,-11,16,-22,3,-28v-6,2,-10,-7,-9,-11v0,-6,3,-10,10,-10v26,-3,35,27,19,42v-1,2,-2,5,-2,8v11,-4,10,-18,25,-18v8,0,16,8,15,16v-6,42,-92,42,-98,0xm108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"\u1eb4":{"d":"77,-293v-1,-8,7,-16,14,-16v18,1,15,19,35,19v20,0,16,-18,34,-19v8,0,15,8,15,16v0,42,-92,42,-98,0xm108,-341v19,3,41,17,54,0v8,-1,15,2,14,9v-4,30,-44,17,-66,11v-11,1,-25,20,-31,1v2,-14,15,-20,29,-21xm108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"\u1eb5":{"d":"77,-293v-1,-8,7,-16,14,-16v18,1,15,19,35,19v20,0,16,-18,34,-19v8,0,15,8,15,16v0,42,-92,42,-98,0xm108,-341v19,3,41,17,54,0v8,-1,15,2,14,9v-4,30,-44,17,-66,11v-11,1,-25,20,-31,1v2,-14,15,-20,29,-21xm108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203"},"\u1eb6":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm126,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24xm123,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26"},"\u1eb7":{"d":"108,-104r34,0r-16,-46xm237,-46v10,24,-9,47,-35,47v-28,0,-33,-29,-41,-50r-75,0v-9,21,-13,50,-42,50v-26,0,-46,-23,-35,-47r86,-188v4,-19,35,-28,53,-15v37,60,60,136,89,203xm126,-303v25,0,21,-23,43,-24v9,0,19,9,18,19v-6,54,-116,53,-122,0v-1,-10,9,-19,18,-19v22,1,18,24,43,24xm123,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26"},"\u1eb8":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm100,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26","w":216},"\u1eb9":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm100,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26","w":216},"\u1eba":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm105,-260v-26,-2,-9,-33,-3,-45v-1,-13,-23,-7,-20,-23v1,-6,5,-13,14,-13v22,0,35,11,35,31v0,17,-12,19,-12,37v1,9,-7,13,-14,13","w":216},"\u1ebb":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm105,-260v-26,-2,-9,-33,-3,-45v-1,-13,-23,-7,-20,-23v1,-6,5,-13,14,-13v22,0,35,11,35,31v0,17,-12,19,-12,37v1,9,-7,13,-14,13","w":216},"\u1ebc":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm136,-307v16,2,17,-18,32,-18v9,0,19,7,18,17v-2,24,-22,35,-46,36v-25,1,-39,-15,-61,-17v-15,-1,-16,18,-32,19v-8,0,-19,-8,-18,-17v1,-24,23,-37,47,-37v23,0,38,15,60,17","w":216},"\u1ebd":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm136,-307v16,2,17,-18,32,-18v9,0,19,7,18,17v-2,24,-22,35,-46,36v-25,1,-39,-15,-61,-17v-15,-1,-16,18,-32,19v-8,0,-19,-8,-18,-17v1,-24,23,-37,47,-37v23,0,38,15,60,17","w":216},"\u1ebe":{"d":"235,-316v12,-5,23,9,16,22v-18,12,-46,17,-71,21v-16,2,-19,-24,-3,-28xm150,-301v16,9,4,36,-14,26r-27,-15v-11,5,-18,14,-33,16v-14,2,-20,-22,-7,-27v15,-6,27,-22,48,-18xm203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35","w":216},"\u1ebf":{"d":"235,-316v12,-5,23,9,16,22v-18,12,-46,17,-71,21v-16,2,-19,-24,-3,-28xm150,-301v16,9,4,36,-14,26r-27,-15v-11,5,-18,14,-33,16v-14,2,-20,-22,-7,-27v15,-6,27,-22,48,-18xm203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35","w":216},"\u1ec0":{"d":"56,-296v8,11,-1,27,-16,23v-22,-6,-49,-9,-66,-21v-7,-12,4,-27,16,-22v21,7,49,9,66,20xm156,-301v16,9,2,35,-14,26r-26,-15v-12,5,-19,15,-35,16v-15,1,-19,-21,-6,-27v15,-7,26,-22,48,-18xm203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35","w":216},"\u1ec1":{"d":"56,-296v8,11,-1,27,-16,23v-22,-6,-49,-9,-66,-21v-7,-12,4,-27,16,-22v21,7,49,9,66,20xm156,-301v16,9,2,35,-14,26r-26,-15v-12,5,-19,15,-35,16v-15,1,-19,-21,-6,-27v15,-7,26,-22,48,-18xm203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35","w":216},"\u1ec2":{"d":"177,-260v-26,0,-9,-33,-3,-45v-1,-13,-23,-7,-20,-23v1,-6,5,-13,14,-13v22,0,35,11,35,31v0,17,-12,19,-12,37v0,9,-7,13,-14,13xm149,-301v15,8,3,35,-14,26r-27,-15v-12,5,-19,14,-34,16v-14,1,-19,-22,-6,-27v16,-6,26,-22,48,-18xm203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35","w":216},"\u1ec3":{"d":"177,-260v-26,0,-9,-33,-3,-45v-1,-13,-23,-7,-20,-23v1,-6,5,-13,14,-13v22,0,35,11,35,31v0,17,-12,19,-12,37v0,9,-7,13,-14,13xm149,-301v15,8,3,35,-14,26r-27,-15v-12,5,-19,14,-34,16v-14,1,-19,-22,-6,-27v16,-6,26,-22,48,-18xm203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35","w":216},"\u1ec4":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm148,-288v13,6,7,29,-6,27v-14,-2,-22,-11,-33,-16v-13,8,-41,28,-46,1v7,-18,31,-28,53,-29xm91,-341v18,2,43,21,54,0v9,-1,16,3,15,11v-4,31,-46,20,-67,12v-10,3,-26,21,-31,0v2,-14,15,-22,29,-23","w":216},"\u1ec5":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm148,-288v13,6,7,29,-6,27v-14,-2,-22,-11,-33,-16v-13,8,-41,28,-46,1v7,-18,31,-28,53,-29xm91,-341v18,2,43,21,54,0v9,-1,16,3,15,11v-4,31,-46,20,-67,12v-10,3,-26,21,-31,0v2,-14,15,-22,29,-23","w":216},"\u1ec6":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm159,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23xm108,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26","w":216},"\u1ec7":{"d":"203,-35v-2,59,-98,35,-154,35v-23,0,-35,-11,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,24v42,2,102,-12,102,32v1,44,-60,30,-102,32r0,25v48,3,120,-16,119,35xm159,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23xm108,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26","w":216},"\u1ec8":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm50,-260v-26,-2,-9,-33,-3,-45v-1,-13,-23,-7,-20,-23v1,-6,5,-13,14,-13v22,0,35,11,35,31v0,17,-12,19,-12,37v1,9,-7,13,-14,13","w":98},"\u1ec9":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm50,-260v-26,-2,-9,-33,-3,-45v-1,-13,-23,-7,-20,-23v1,-6,5,-13,14,-13v22,0,35,11,35,31v0,17,-12,19,-12,37v1,9,-7,13,-14,13","w":98},"\u1eca":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm48,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26","w":98},"\u1ecb":{"d":"49,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35xm48,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26","w":98},"\u1ecc":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm139,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ecd":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm139,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ece":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm141,-260v-26,-2,-9,-33,-3,-45v-1,-13,-23,-7,-20,-23v1,-6,5,-13,14,-13v22,0,35,11,35,31v0,17,-12,19,-12,37v1,9,-7,13,-14,13","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ecf":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm141,-260v-26,-2,-9,-33,-3,-45v-1,-13,-23,-7,-20,-23v1,-6,5,-13,14,-13v22,0,35,11,35,31v0,17,-12,19,-12,37v1,9,-7,13,-14,13","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ed0":{"d":"269,-316v11,-5,24,11,15,22v-18,13,-46,16,-71,21v-11,2,-16,-14,-11,-23v18,-11,45,-13,67,-20xm184,-301v15,8,3,35,-14,26r-27,-15v-12,5,-19,14,-34,16v-14,1,-19,-22,-6,-27v15,-6,26,-22,47,-18xm139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ed1":{"d":"269,-316v11,-5,24,11,15,22v-18,13,-46,16,-71,21v-11,2,-16,-14,-11,-23v18,-11,45,-13,67,-20xm184,-301v15,8,3,35,-14,26r-27,-15v-12,5,-19,14,-34,16v-14,1,-19,-22,-6,-27v15,-6,26,-22,47,-18xm139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ed2":{"d":"80,-296v8,11,-1,27,-16,23v-22,-6,-49,-9,-66,-21v-7,-12,4,-27,16,-22v21,7,49,9,66,20xm180,-301v13,5,8,27,-6,27v-16,-1,-22,-11,-34,-16v-13,8,-44,29,-49,1v10,-17,32,-31,56,-30xm139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ed3":{"d":"80,-296v8,11,-1,27,-16,23v-22,-6,-49,-9,-66,-21v-7,-12,4,-27,16,-22v21,7,49,9,66,20xm180,-301v13,5,8,27,-6,27v-16,-1,-22,-11,-34,-16v-13,8,-44,29,-49,1v10,-17,32,-31,56,-30xm139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ed4":{"d":"210,-260v-26,-1,-9,-32,-4,-45v-1,-12,-22,-8,-20,-23v1,-7,6,-13,15,-13v22,0,34,10,34,31v0,17,-12,19,-12,37v1,9,-6,13,-13,13xm181,-301v16,9,3,35,-14,26r-27,-15v-11,5,-18,14,-33,16v-14,2,-20,-22,-7,-27v15,-6,27,-22,48,-18xm139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ed5":{"d":"210,-260v-26,-1,-9,-32,-4,-45v-1,-12,-22,-8,-20,-23v1,-7,6,-13,15,-13v22,0,34,10,34,31v0,17,-12,19,-12,37v1,9,-6,13,-13,13xm181,-301v16,9,3,35,-14,26r-27,-15v-11,5,-18,14,-33,16v-14,2,-20,-22,-7,-27v15,-6,27,-22,48,-18xm139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ed6":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm180,-288v13,6,7,29,-6,27v-14,-2,-22,-11,-33,-16v-13,8,-41,28,-46,1v7,-18,31,-28,53,-29xm123,-341v18,2,43,21,54,0v9,-1,16,3,15,11v-4,31,-46,20,-67,12v-10,3,-26,21,-31,0v2,-14,15,-22,29,-23","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ed7":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm180,-288v13,6,7,29,-6,27v-14,-2,-22,-11,-33,-16v-13,8,-41,28,-46,1v7,-18,31,-28,53,-29xm123,-341v18,2,43,21,54,0v9,-1,16,3,15,11v-4,31,-46,20,-67,12v-10,3,-26,21,-31,0v2,-14,15,-22,29,-23","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ed8":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm190,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23xm139,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ed9":{"d":"139,3v-76,0,-129,-52,-129,-130v0,-77,52,-129,129,-129v78,0,130,51,130,129v0,79,-53,130,-130,130xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm190,-302v17,8,10,36,-8,35v-17,-5,-28,-14,-43,-21v-15,7,-26,16,-43,21v-18,1,-25,-28,-8,-35v19,-8,35,-28,60,-23xm139,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26","w":279,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1eda":{"d":"139,3v-76,-3,-126,-52,-129,-130v-4,-116,144,-168,222,-92v18,5,24,-2,22,-24v-1,-21,13,-32,31,-32v16,0,30,11,30,30v0,42,-20,70,-58,65v38,90,-24,187,-118,183xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm186,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":306,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1edb":{"d":"139,3v-76,-3,-126,-52,-129,-130v-4,-116,144,-168,222,-92v18,5,24,-2,22,-24v-1,-21,13,-32,31,-32v16,0,30,11,30,30v0,42,-20,70,-58,65v38,90,-24,187,-118,183xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm186,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":306,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1edc":{"d":"139,3v-76,-3,-126,-52,-129,-130v-4,-116,144,-168,222,-92v18,5,24,-2,22,-24v-1,-21,13,-32,31,-32v16,0,30,11,30,30v0,42,-20,70,-58,65v38,90,-24,187,-118,183xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm91,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":306,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1edd":{"d":"139,3v-76,-3,-126,-52,-129,-130v-4,-116,144,-168,222,-92v18,5,24,-2,22,-24v-1,-21,13,-32,31,-32v16,0,30,11,30,30v0,42,-20,70,-58,65v38,90,-24,187,-118,183xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm91,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":306,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ede":{"d":"139,3v-76,-3,-126,-52,-129,-130v-4,-116,144,-168,222,-92v18,5,24,-2,22,-24v-1,-21,13,-32,31,-32v16,0,30,11,30,30v0,42,-20,70,-58,65v38,90,-24,187,-118,183xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm141,-260v-26,-2,-9,-33,-3,-45v-1,-13,-23,-7,-20,-23v1,-6,5,-13,14,-13v22,0,35,11,35,31v0,17,-12,19,-12,37v1,9,-7,13,-14,13","w":306,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1edf":{"d":"139,3v-76,-3,-126,-52,-129,-130v-4,-116,144,-168,222,-92v18,5,24,-2,22,-24v-1,-21,13,-32,31,-32v16,0,30,11,30,30v0,42,-20,70,-58,65v38,90,-24,187,-118,183xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm141,-260v-26,-2,-9,-33,-3,-45v-1,-13,-23,-7,-20,-23v1,-6,5,-13,14,-13v22,0,35,11,35,31v0,17,-12,19,-12,37v1,9,-7,13,-14,13","w":306,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ee0":{"d":"139,3v-76,-3,-126,-52,-129,-130v-4,-116,144,-168,222,-92v18,5,24,-2,22,-24v-1,-21,13,-32,31,-32v16,0,30,11,30,30v0,42,-20,70,-58,65v38,90,-24,187,-118,183xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm168,-307v16,2,17,-18,32,-18v9,0,19,7,18,17v-2,24,-22,35,-46,36v-25,1,-39,-15,-61,-17v-15,-1,-16,18,-32,19v-8,0,-19,-8,-18,-17v1,-24,23,-37,47,-37v23,0,38,15,60,17","w":306,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ee1":{"d":"139,3v-76,-3,-126,-52,-129,-130v-4,-116,144,-168,222,-92v18,5,24,-2,22,-24v-1,-21,13,-32,31,-32v16,0,30,11,30,30v0,42,-20,70,-58,65v38,90,-24,187,-118,183xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm168,-307v16,2,17,-18,32,-18v9,0,19,7,18,17v-2,24,-22,35,-46,36v-25,1,-39,-15,-61,-17v-15,-1,-16,18,-32,19v-8,0,-19,-8,-18,-17v1,-24,23,-37,47,-37v23,0,38,15,60,17","w":306,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ee2":{"d":"139,3v-76,-3,-126,-52,-129,-130v-4,-116,144,-168,222,-92v18,5,24,-2,22,-24v-1,-21,13,-32,31,-32v16,0,30,11,30,30v0,42,-20,70,-58,65v38,90,-24,187,-118,183xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm136,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26","w":306,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ee3":{"d":"139,3v-76,-3,-126,-52,-129,-130v-4,-116,144,-168,222,-92v18,5,24,-2,22,-24v-1,-21,13,-32,31,-32v16,0,30,11,30,30v0,42,-20,70,-58,65v38,90,-24,187,-118,183xm140,-185v-35,0,-59,24,-59,59v0,35,24,59,59,59v35,0,59,-24,59,-59v0,-35,-24,-59,-59,-59xm136,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26","w":306,"k":{"\/":9,"T":15,"t":15,"\u0162":15,"\u0163":15,"\u0164":15,"\u0165":15,"\u0166":15,"\u0167":15,"\u0422":15,"\u0442":15,"V":13,"W":13,"v":13,"w":13,"\u0174":13,"\u0175":13,"\u1e80":13,"\u1e81":13,"\u1e82":13,"\u1e83":13,"\u1e84":13,"\u1e85":13,"Y":17,"y":17,"\u00dd":17,"\u00fd":17,"\u00ff":17,"\u0176":17,"\u0177":17,"\u0178":17,"\u1ef2":17,"\u1ef3":17,",":19,".":19,"\u201a":19,"\u201e":19,"\u2026":19,"A":15,"a":15,"\u00c0":15,"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c4":15,"\u00c5":15,"\u00e0":15,"\u00e1":15,"\u00e2":15,"\u00e3":15,"\u00e4":15,"\u00e5":15,"\u0100":15,"\u0101":15,"\u0102":15,"\u0103":15,"\u0104":15,"\u0105":15,"\u01fa":15,"\u01fb":15,"\u0410":15,"\u0430":15,"\u1ea0":15,"\u1ea1":15,"\u1ea2":15,"\u1ea3":15,"\u1ea4":15,"\u1ea5":15,"\u1ea6":15,"\u1ea7":15,"\u1ea8":15,"\u1ea9":15,"\u1eaa":15,"\u1eab":15,"\u1eac":15,"\u1ead":15,"\u1eae":15,"\u1eaf":15,"\u1eb0":15,"\u1eb1":15,"\u1eb2":15,"\u1eb3":15,"\u1eb4":15,"\u1eb5":15,"\u1eb6":15,"\u1eb7":15,"X":15,"x":15,"\u0423":15,"\u0425":15,"\u0443":15,"\u0445":15}},"\u1ee4":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm111,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u1ee5":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm111,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u1ee6":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm114,-260v-26,-2,-9,-33,-3,-45v-1,-13,-23,-7,-20,-23v1,-6,5,-13,14,-13v22,0,35,11,35,31v0,17,-12,19,-12,37v1,9,-7,13,-14,13","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u1ee7":{"d":"183,-255v58,0,35,92,35,146v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122v1,-22,14,-35,35,-35xm114,-260v-26,-2,-9,-33,-3,-45v-1,-13,-23,-7,-20,-23v1,-6,5,-13,14,-13v22,0,35,11,35,31v0,17,-12,19,-12,37v1,9,-7,13,-14,13","w":231,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u1ee8":{"d":"148,-220v1,-22,14,-34,35,-35v31,-2,30,34,56,38v13,-2,11,-8,11,-26v0,-20,13,-32,30,-32v16,0,30,11,30,30v0,60,-51,81,-92,53r0,83v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122xm167,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":300,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u1ee9":{"d":"148,-220v1,-22,14,-34,35,-35v31,-2,30,34,56,38v13,-2,11,-8,11,-26v0,-20,13,-32,30,-32v16,0,30,11,30,30v0,60,-51,81,-92,53r0,83v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122xm167,-331v18,-5,31,16,21,31v-25,17,-65,19,-96,29v-22,1,-26,-33,-4,-39","w":300,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u1eea":{"d":"148,-220v1,-22,14,-34,35,-35v31,-2,30,34,56,38v13,-2,11,-8,11,-26v0,-20,13,-32,30,-32v16,0,30,11,30,30v0,60,-51,81,-92,53r0,83v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122xm62,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":300,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u1eeb":{"d":"148,-220v1,-22,14,-34,35,-35v31,-2,30,34,56,38v13,-2,11,-8,11,-26v0,-20,13,-32,30,-32v16,0,30,11,30,30v0,60,-51,81,-92,53r0,83v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122xm62,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":300,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u1eec":{"d":"148,-220v1,-22,14,-34,35,-35v31,-2,30,34,56,38v13,-2,11,-8,11,-26v0,-20,13,-32,30,-32v16,0,30,11,30,30v0,60,-51,81,-92,53r0,83v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122xm118,-260v-26,-2,-9,-33,-3,-45v-1,-13,-23,-7,-20,-23v1,-6,5,-13,14,-13v22,0,35,11,35,31v0,17,-12,19,-12,37v1,9,-7,13,-14,13","w":300,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u1eed":{"d":"148,-220v1,-22,14,-34,35,-35v31,-2,30,34,56,38v13,-2,11,-8,11,-26v0,-20,13,-32,30,-32v16,0,30,11,30,30v0,60,-51,81,-92,53r0,83v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122xm118,-260v-26,-2,-9,-33,-3,-45v-1,-13,-23,-7,-20,-23v1,-6,5,-13,14,-13v22,0,35,11,35,31v0,17,-12,19,-12,37v1,9,-7,13,-14,13","w":300,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u1eee":{"d":"148,-220v1,-22,14,-34,35,-35v31,-2,30,34,56,38v13,-2,11,-8,11,-26v0,-20,13,-32,30,-32v16,0,30,11,30,30v0,60,-51,81,-92,53r0,83v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122xm144,-307v16,2,17,-18,32,-18v9,0,19,7,18,17v-2,24,-22,35,-46,36v-25,1,-39,-15,-61,-17v-15,-1,-16,18,-32,19v-8,0,-19,-8,-18,-17v1,-24,23,-37,47,-37v23,0,38,15,60,17","w":300,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u1eef":{"d":"148,-220v1,-22,14,-34,35,-35v31,-2,30,34,56,38v13,-2,11,-8,11,-26v0,-20,13,-32,30,-32v16,0,30,11,30,30v0,60,-51,81,-92,53r0,83v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122xm144,-307v16,2,17,-18,32,-18v9,0,19,7,18,17v-2,24,-22,35,-46,36v-25,1,-39,-15,-61,-17v-15,-1,-16,18,-32,19v-8,0,-19,-8,-18,-17v1,-24,23,-37,47,-37v23,0,38,15,60,17","w":300,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u1ef0":{"d":"148,-220v1,-22,14,-34,35,-35v31,-2,30,34,56,38v13,-2,11,-8,11,-26v0,-20,13,-32,30,-32v16,0,30,11,30,30v0,60,-51,81,-92,53r0,83v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122xm115,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26","w":300,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u1ef1":{"d":"148,-220v1,-22,14,-34,35,-35v31,-2,30,34,56,38v13,-2,11,-8,11,-26v0,-20,13,-32,30,-32v16,0,30,11,30,30v0,60,-51,81,-92,53r0,83v0,74,-34,112,-102,112v-69,0,-103,-38,-103,-112v0,-54,-22,-145,35,-146v20,0,36,14,35,35r0,122v0,21,11,31,33,31v22,0,32,-10,32,-31r0,-122xm115,77v-14,0,-26,-12,-26,-26v0,-15,12,-27,26,-27v15,0,27,11,27,27v0,15,-11,26,-27,26","w":300,"k":{"\/":12,",":14,".":14,"\u201a":14,"\u201e":14,"\u2026":14,"A":10,"a":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u00c4":10,"\u00c5":10,"\u00e0":10,"\u00e1":10,"\u00e2":10,"\u00e3":10,"\u00e4":10,"\u00e5":10,"\u0100":10,"\u0101":10,"\u0102":10,"\u0103":10,"\u0104":10,"\u0105":10,"\u01fa":10,"\u01fb":10,"\u0410":10,"\u0430":10,"\u1ea0":10,"\u1ea1":10,"\u1ea2":10,"\u1ea3":10,"\u1ea4":10,"\u1ea5":10,"\u1ea6":10,"\u1ea7":10,"\u1ea8":10,"\u1ea9":10,"\u1eaa":10,"\u1eab":10,"\u1eac":10,"\u1ead":10,"\u1eae":10,"\u1eaf":10,"\u1eb0":10,"\u1eb1":10,"\u1eb2":10,"\u1eb3":10,"\u1eb4":10,"\u1eb5":10,"\u1eb6":10,"\u1eb7":10}},"\u1ef2":{"d":"12,-202v-19,-28,17,-68,47,-48v22,14,29,46,45,68v19,-25,23,-73,61,-73v27,0,46,29,30,54r-56,91v-3,46,14,111,-35,111v-50,0,-32,-65,-35,-111xm49,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":207,"k":{"\/":22,"-":26,"\u00ab":26,"\u00bb":26,"\u2013":26,"\u2014":26,"\u2039":26,"\u203a":26,"C":15,"G":15,"c":15,"g":15,"\u00c7":15,"\u00e7":15,"\u0106":15,"\u0107":15,"\u0108":15,"\u0109":15,"\u010a":15,"\u010b":15,"\u010c":15,"\u010d":15,"\u011c":15,"\u011d":15,"\u011e":15,"\u011f":15,"\u0120":15,"\u0121":15,"\u0122":15,"\u0123":15,"\u0152":15,"\u0153":15,"\u0421":15,"\u0441":15,"0":17,"O":17,"Q":17,"o":17,"q":17,"\u00d2":17,"\u00d3":17,"\u00d4":17,"\u00d5":17,"\u00d6":17,"\u00d8":17,"\u00f2":17,"\u00f3":17,"\u00f4":17,"\u00f5":17,"\u00f6":17,"\u00f8":17,"\u014c":17,"\u014d":17,"\u014e":17,"\u014f":17,"\u0150":17,"\u0151":17,"\u01fe":17,"\u01ff":17,"\u041e":17,"\u0424":17,"\u043e":17,"\u0444":17,"\u1ecc":17,"\u1ecd":17,"\u1ece":17,"\u1ecf":17,"\u1ed0":17,"\u1ed1":17,"\u1ed2":17,"\u1ed3":17,"\u1ed4":17,"\u1ed5":17,"\u1ed6":17,"\u1ed7":17,"\u1ed8":17,"\u1ed9":17,"\u1eda":17,"\u1edb":17,"\u1edc":17,"\u1edd":17,"\u1ede":17,"\u1edf":17,"\u1ee0":17,"\u1ee1":17,"\u1ee2":17,"\u1ee3":17,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":39,"j":39,"\u0134":39,"\u0135":39,"\u0408":39,"\u0458":39,"\u00c6":51,"\u00e6":51,"\u01fc":51,"\u01fd":51}},"\u1ef3":{"d":"12,-202v-19,-28,17,-68,47,-48v22,14,29,46,45,68v19,-25,23,-73,61,-73v27,0,46,29,30,54r-56,91v-3,46,14,111,-35,111v-50,0,-32,-65,-35,-111xm49,-293v-22,-3,-17,-40,4,-39v31,10,71,13,96,29v10,14,-2,36,-21,31","w":207,"k":{"\/":22,"-":26,"\u00ab":26,"\u00bb":26,"\u2013":26,"\u2014":26,"\u2039":26,"\u203a":26,"C":15,"G":15,"c":15,"g":15,"\u00c7":15,"\u00e7":15,"\u0106":15,"\u0107":15,"\u0108":15,"\u0109":15,"\u010a":15,"\u010b":15,"\u010c":15,"\u010d":15,"\u011c":15,"\u011d":15,"\u011e":15,"\u011f":15,"\u0120":15,"\u0121":15,"\u0122":15,"\u0123":15,"\u0152":15,"\u0153":15,"\u0421":15,"\u0441":15,"0":17,"O":17,"Q":17,"o":17,"q":17,"\u00d2":17,"\u00d3":17,"\u00d4":17,"\u00d5":17,"\u00d6":17,"\u00d8":17,"\u00f2":17,"\u00f3":17,"\u00f4":17,"\u00f5":17,"\u00f6":17,"\u00f8":17,"\u014c":17,"\u014d":17,"\u014e":17,"\u014f":17,"\u0150":17,"\u0151":17,"\u01fe":17,"\u01ff":17,"\u041e":17,"\u0424":17,"\u043e":17,"\u0444":17,"\u1ecc":17,"\u1ecd":17,"\u1ece":17,"\u1ecf":17,"\u1ed0":17,"\u1ed1":17,"\u1ed2":17,"\u1ed3":17,"\u1ed4":17,"\u1ed5":17,"\u1ed6":17,"\u1ed7":17,"\u1ed8":17,"\u1ed9":17,"\u1eda":17,"\u1edb":17,"\u1edc":17,"\u1edd":17,"\u1ede":17,"\u1edf":17,"\u1ee0":17,"\u1ee1":17,"\u1ee2":17,"\u1ee3":17,",":36,".":36,"\u201a":36,"\u201e":36,"\u2026":36,"A":36,"a":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u00c4":36,"\u00c5":36,"\u00e0":36,"\u00e1":36,"\u00e2":36,"\u00e3":36,"\u00e4":36,"\u00e5":36,"\u0100":36,"\u0101":36,"\u0102":36,"\u0103":36,"\u0104":36,"\u0105":36,"\u01fa":36,"\u01fb":36,"\u0410":36,"\u0430":36,"\u1ea0":36,"\u1ea1":36,"\u1ea2":36,"\u1ea3":36,"\u1ea4":36,"\u1ea5":36,"\u1ea6":36,"\u1ea7":36,"\u1ea8":36,"\u1ea9":36,"\u1eaa":36,"\u1eab":36,"\u1eac":36,"\u1ead":36,"\u1eae":36,"\u1eaf":36,"\u1eb0":36,"\u1eb1":36,"\u1eb2":36,"\u1eb3":36,"\u1eb4":36,"\u1eb5":36,"\u1eb6":36,"\u1eb7":36,"J":39,"j":39,"\u0134":39,"\u0135":39,"\u0408":39,"\u0458":39,"\u00c6":51,"\u00e6":51,"\u01fc":51,"\u01fd":51}},"\u2013":{"d":"216,-126v0,16,-11,29,-29,29r-151,0v-18,1,-29,-13,-29,-29v0,-16,12,-31,29,-30r151,0v17,-1,29,14,29,30","w":222,"k":{"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":17,"W":17,"v":17,"w":17,"\u0174":17,"\u0175":17,"\u1e80":17,"\u1e81":17,"\u1e82":17,"\u1e83":17,"\u1e84":17,"\u1e85":17,"Y":26,"y":26,"\u00dd":26,"\u00fd":26,"\u00ff":26,"\u0176":26,"\u0177":26,"\u0178":26,"\u1ef2":26,"\u1ef3":26,"A":17,"a":17,"\u00c0":17,"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c4":17,"\u00c5":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u0100":17,"\u0101":17,"\u0102":17,"\u0103":17,"\u0104":17,"\u0105":17,"\u01fa":17,"\u01fb":17,"\u0410":17,"\u0430":17,"\u1ea0":17,"\u1ea1":17,"\u1ea2":17,"\u1ea3":17,"\u1ea4":17,"\u1ea5":17,"\u1ea6":17,"\u1ea7":17,"\u1ea8":17,"\u1ea9":17,"\u1eaa":17,"\u1eab":17,"\u1eac":17,"\u1ead":17,"\u1eae":17,"\u1eaf":17,"\u1eb0":17,"\u1eb1":17,"\u1eb2":17,"\u1eb3":17,"\u1eb4":17,"\u1eb5":17,"\u1eb6":17,"\u1eb7":17,"J":29,"j":29,"\u0134":29,"\u0135":29,"\u0408":29,"\u0458":29,"X":17,"x":17,"\u0423":17,"\u0425":17,"\u0443":17,"\u0445":17,"Z":27,"z":27,"\u0179":27,"\u017a":27,"\u017b":27,"\u017c":27,"\u017d":27,"\u017e":27}},"\u2014":{"d":"305,-126v0,16,-11,29,-29,29r-240,0v-18,1,-29,-13,-29,-29v0,-16,12,-31,29,-30r240,0v17,-1,29,14,29,30","w":311,"k":{"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":17,"W":17,"v":17,"w":17,"\u0174":17,"\u0175":17,"\u1e80":17,"\u1e81":17,"\u1e82":17,"\u1e83":17,"\u1e84":17,"\u1e85":17,"Y":26,"y":26,"\u00dd":26,"\u00fd":26,"\u00ff":26,"\u0176":26,"\u0177":26,"\u0178":26,"\u1ef2":26,"\u1ef3":26,"A":17,"a":17,"\u00c0":17,"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c4":17,"\u00c5":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u0100":17,"\u0101":17,"\u0102":17,"\u0103":17,"\u0104":17,"\u0105":17,"\u01fa":17,"\u01fb":17,"\u0410":17,"\u0430":17,"\u1ea0":17,"\u1ea1":17,"\u1ea2":17,"\u1ea3":17,"\u1ea4":17,"\u1ea5":17,"\u1ea6":17,"\u1ea7":17,"\u1ea8":17,"\u1ea9":17,"\u1eaa":17,"\u1eab":17,"\u1eac":17,"\u1ead":17,"\u1eae":17,"\u1eaf":17,"\u1eb0":17,"\u1eb1":17,"\u1eb2":17,"\u1eb3":17,"\u1eb4":17,"\u1eb5":17,"\u1eb6":17,"\u1eb7":17,"J":29,"j":29,"\u0134":29,"\u0135":29,"\u0408":29,"\u0458":29,"X":17,"x":17,"\u0423":17,"\u0425":17,"\u0443":17,"\u0445":17,"Z":27,"z":27,"\u0179":27,"\u017a":27,"\u017b":27,"\u017c":27,"\u017d":27,"\u017e":27}},"\u2018":{"d":"82,-199v9,28,-25,47,-49,33v-19,-23,-45,-104,7,-104v34,0,33,44,42,71","w":91,"k":{"A":34,"a":34,"\u00c0":34,"\u00c1":34,"\u00c2":34,"\u00c3":34,"\u00c4":34,"\u00c5":34,"\u00e0":34,"\u00e1":34,"\u00e2":34,"\u00e3":34,"\u00e4":34,"\u00e5":34,"\u0100":34,"\u0101":34,"\u0102":34,"\u0103":34,"\u0104":34,"\u0105":34,"\u01fa":34,"\u01fb":34,"\u0410":34,"\u0430":34,"\u1ea0":34,"\u1ea1":34,"\u1ea2":34,"\u1ea3":34,"\u1ea4":34,"\u1ea5":34,"\u1ea6":34,"\u1ea7":34,"\u1ea8":34,"\u1ea9":34,"\u1eaa":34,"\u1eab":34,"\u1eac":34,"\u1ead":34,"\u1eae":34,"\u1eaf":34,"\u1eb0":34,"\u1eb1":34,"\u1eb2":34,"\u1eb3":34,"\u1eb4":34,"\u1eb5":34,"\u1eb6":34,"\u1eb7":34,"J":12,"j":12,"\u0134":12,"\u0135":12,"\u0408":12,"\u0458":12}},"\u2019":{"d":"51,-270v52,0,26,80,7,104v-22,14,-58,-3,-48,-33v9,-26,8,-71,41,-71","w":91,"k":{"A":34,"a":34,"\u00c0":34,"\u00c1":34,"\u00c2":34,"\u00c3":34,"\u00c4":34,"\u00c5":34,"\u00e0":34,"\u00e1":34,"\u00e2":34,"\u00e3":34,"\u00e4":34,"\u00e5":34,"\u0100":34,"\u0101":34,"\u0102":34,"\u0103":34,"\u0104":34,"\u0105":34,"\u01fa":34,"\u01fb":34,"\u0410":34,"\u0430":34,"\u1ea0":34,"\u1ea1":34,"\u1ea2":34,"\u1ea3":34,"\u1ea4":34,"\u1ea5":34,"\u1ea6":34,"\u1ea7":34,"\u1ea8":34,"\u1ea9":34,"\u1eaa":34,"\u1eab":34,"\u1eac":34,"\u1ead":34,"\u1eae":34,"\u1eaf":34,"\u1eb0":34,"\u1eb1":34,"\u1eb2":34,"\u1eb3":34,"\u1eb4":34,"\u1eb5":34,"\u1eb6":34,"\u1eb7":34,"J":12,"j":12,"\u0134":12,"\u0135":12,"\u0408":12,"\u0458":12}},"\u201a":{"d":"23,-24v9,-37,64,-25,60,10v-11,28,-7,76,-42,76v-46,0,-26,-54,-18,-86","w":91,"k":{"4":36,"C":17,"G":17,"c":17,"g":17,"\u00c7":17,"\u00e7":17,"\u0106":17,"\u0107":17,"\u0108":17,"\u0109":17,"\u010a":17,"\u010b":17,"\u010c":17,"\u010d":17,"\u011c":17,"\u011d":17,"\u011e":17,"\u011f":17,"\u0120":17,"\u0121":17,"\u0122":17,"\u0123":17,"\u0152":17,"\u0153":17,"\u0421":17,"\u0441":17,"0":19,"O":19,"Q":19,"o":19,"q":19,"\u00d2":19,"\u00d3":19,"\u00d4":19,"\u00d5":19,"\u00d6":19,"\u00d8":19,"\u00f2":19,"\u00f3":19,"\u00f4":19,"\u00f5":19,"\u00f6":19,"\u00f8":19,"\u014c":19,"\u014d":19,"\u014e":19,"\u014f":19,"\u0150":19,"\u0151":19,"\u01fe":19,"\u01ff":19,"\u041e":19,"\u0424":19,"\u043e":19,"\u0444":19,"\u1ecc":19,"\u1ecd":19,"\u1ece":19,"\u1ecf":19,"\u1ed0":19,"\u1ed1":19,"\u1ed2":19,"\u1ed3":19,"\u1ed4":19,"\u1ed5":19,"\u1ed6":19,"\u1ed7":19,"\u1ed8":19,"\u1ed9":19,"\u1eda":19,"\u1edb":19,"\u1edc":19,"\u1edd":19,"\u1ede":19,"\u1edf":19,"\u1ee0":19,"\u1ee1":19,"\u1ee2":19,"\u1ee3":19,"T":36,"t":36,"\u0162":36,"\u0163":36,"\u0164":36,"\u0165":36,"\u0166":36,"\u0167":36,"\u0422":36,"\u0442":36,"U":5,"u":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u00f9":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u0168":5,"\u0169":5,"\u016a":5,"\u016b":5,"\u016c":5,"\u016d":5,"\u016e":5,"\u016f":5,"\u0170":5,"\u0171":5,"\u0172":5,"\u0173":5,"\u1ee4":5,"\u1ee5":5,"\u1ee6":5,"\u1ee7":5,"\u1ee8":5,"\u1ee9":5,"\u1eea":5,"\u1eeb":5,"\u1eec":5,"\u1eed":5,"\u1eee":5,"\u1eef":5,"\u1ef0":5,"\u1ef1":5,"V":36,"W":36,"v":36,"w":36,"\u0174":36,"\u0175":36,"\u1e80":36,"\u1e81":36,"\u1e82":36,"\u1e83":36,"\u1e84":36,"\u1e85":36,"Y":36,"y":36,"\u00dd":36,"\u00fd":36,"\u00ff":36,"\u0176":36,"\u0177":36,"\u0178":36,"\u1ef2":36,"\u1ef3":36,"S":9,"s":9,"\u00df":9,"\u015a":9,"\u015b":9,"\u015c":9,"\u015d":9,"\u015e":9,"\u015f":9,"\u0160":9,"\u0161":9,"\u0218":9,"\u0219":9,"\u0405":9,"\u0455":9}},"\u201c":{"d":"167,-199v10,28,-25,47,-49,33v-19,-25,-45,-104,7,-104v35,0,33,44,42,71xm82,-199v9,28,-25,47,-49,33v-19,-23,-45,-104,7,-104v34,0,33,44,42,71","w":176,"k":{"A":34,"a":34,"\u00c0":34,"\u00c1":34,"\u00c2":34,"\u00c3":34,"\u00c4":34,"\u00c5":34,"\u00e0":34,"\u00e1":34,"\u00e2":34,"\u00e3":34,"\u00e4":34,"\u00e5":34,"\u0100":34,"\u0101":34,"\u0102":34,"\u0103":34,"\u0104":34,"\u0105":34,"\u01fa":34,"\u01fb":34,"\u0410":34,"\u0430":34,"\u1ea0":34,"\u1ea1":34,"\u1ea2":34,"\u1ea3":34,"\u1ea4":34,"\u1ea5":34,"\u1ea6":34,"\u1ea7":34,"\u1ea8":34,"\u1ea9":34,"\u1eaa":34,"\u1eab":34,"\u1eac":34,"\u1ead":34,"\u1eae":34,"\u1eaf":34,"\u1eb0":34,"\u1eb1":34,"\u1eb2":34,"\u1eb3":34,"\u1eb4":34,"\u1eb5":34,"\u1eb6":34,"\u1eb7":34,"J":12,"j":12,"\u0134":12,"\u0135":12,"\u0408":12,"\u0458":12}},"\u201d":{"d":"51,-270v52,0,26,80,7,104v-22,14,-58,-3,-48,-33v9,-26,8,-71,41,-71xm107,-246v8,-38,66,-26,61,12v-11,26,-7,71,-42,73v-21,1,-36,-17,-31,-38","w":176,"k":{"A":34,"a":34,"\u00c0":34,"\u00c1":34,"\u00c2":34,"\u00c3":34,"\u00c4":34,"\u00c5":34,"\u00e0":34,"\u00e1":34,"\u00e2":34,"\u00e3":34,"\u00e4":34,"\u00e5":34,"\u0100":34,"\u0101":34,"\u0102":34,"\u0103":34,"\u0104":34,"\u0105":34,"\u01fa":34,"\u01fb":34,"\u0410":34,"\u0430":34,"\u1ea0":34,"\u1ea1":34,"\u1ea2":34,"\u1ea3":34,"\u1ea4":34,"\u1ea5":34,"\u1ea6":34,"\u1ea7":34,"\u1ea8":34,"\u1ea9":34,"\u1eaa":34,"\u1eab":34,"\u1eac":34,"\u1ead":34,"\u1eae":34,"\u1eaf":34,"\u1eb0":34,"\u1eb1":34,"\u1eb2":34,"\u1eb3":34,"\u1eb4":34,"\u1eb5":34,"\u1eb6":34,"\u1eb7":34,"J":12,"j":12,"\u0134":12,"\u0135":12,"\u0408":12,"\u0458":12}},"\u201e":{"d":"23,-24v9,-37,64,-25,60,10v-11,28,-7,76,-42,76v-46,0,-26,-54,-18,-86xm107,-24v7,-37,66,-26,61,12v-11,27,-7,71,-42,74v-21,1,-36,-17,-31,-38","w":176,"k":{"4":36,"C":17,"G":17,"c":17,"g":17,"\u00c7":17,"\u00e7":17,"\u0106":17,"\u0107":17,"\u0108":17,"\u0109":17,"\u010a":17,"\u010b":17,"\u010c":17,"\u010d":17,"\u011c":17,"\u011d":17,"\u011e":17,"\u011f":17,"\u0120":17,"\u0121":17,"\u0122":17,"\u0123":17,"\u0152":17,"\u0153":17,"\u0421":17,"\u0441":17,"0":19,"O":19,"Q":19,"o":19,"q":19,"\u00d2":19,"\u00d3":19,"\u00d4":19,"\u00d5":19,"\u00d6":19,"\u00d8":19,"\u00f2":19,"\u00f3":19,"\u00f4":19,"\u00f5":19,"\u00f6":19,"\u00f8":19,"\u014c":19,"\u014d":19,"\u014e":19,"\u014f":19,"\u0150":19,"\u0151":19,"\u01fe":19,"\u01ff":19,"\u041e":19,"\u0424":19,"\u043e":19,"\u0444":19,"\u1ecc":19,"\u1ecd":19,"\u1ece":19,"\u1ecf":19,"\u1ed0":19,"\u1ed1":19,"\u1ed2":19,"\u1ed3":19,"\u1ed4":19,"\u1ed5":19,"\u1ed6":19,"\u1ed7":19,"\u1ed8":19,"\u1ed9":19,"\u1eda":19,"\u1edb":19,"\u1edc":19,"\u1edd":19,"\u1ede":19,"\u1edf":19,"\u1ee0":19,"\u1ee1":19,"\u1ee2":19,"\u1ee3":19,"T":36,"t":36,"\u0162":36,"\u0163":36,"\u0164":36,"\u0165":36,"\u0166":36,"\u0167":36,"\u0422":36,"\u0442":36,"U":5,"u":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u00f9":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u0168":5,"\u0169":5,"\u016a":5,"\u016b":5,"\u016c":5,"\u016d":5,"\u016e":5,"\u016f":5,"\u0170":5,"\u0171":5,"\u0172":5,"\u0173":5,"\u1ee4":5,"\u1ee5":5,"\u1ee6":5,"\u1ee7":5,"\u1ee8":5,"\u1ee9":5,"\u1eea":5,"\u1eeb":5,"\u1eec":5,"\u1eed":5,"\u1eee":5,"\u1eef":5,"\u1ef0":5,"\u1ef1":5,"V":36,"W":36,"v":36,"w":36,"\u0174":36,"\u0175":36,"\u1e80":36,"\u1e81":36,"\u1e82":36,"\u1e83":36,"\u1e84":36,"\u1e85":36,"Y":36,"y":36,"\u00dd":36,"\u00fd":36,"\u00ff":36,"\u0176":36,"\u0177":36,"\u0178":36,"\u1ef2":36,"\u1ef3":36,"S":9,"s":9,"\u00df":9,"\u015a":9,"\u015b":9,"\u015c":9,"\u015d":9,"\u015e":9,"\u015f":9,"\u0160":9,"\u0161":9,"\u0218":9,"\u0219":9,"\u0405":9,"\u0455":9}},"\u2020":{"d":"91,-173r-4,135v0,9,-5,14,-15,14v-10,0,-15,-5,-15,-14r-6,-135v-17,-2,-43,6,-43,-13v0,-18,24,-12,41,-13v1,-26,-7,-56,23,-56v30,0,22,30,23,56v16,2,40,-7,40,13v0,21,-27,11,-44,13","w":151},"\u2021":{"d":"57,-90v5,-27,5,-53,0,-80v-18,-2,-45,7,-45,-14v0,-19,25,-12,42,-13v1,-27,-8,-58,24,-58v31,0,22,31,23,58v17,2,43,-7,43,13v0,21,-28,12,-46,14v-4,27,-4,53,0,80v17,2,46,-7,46,13v0,20,-25,13,-42,14v-1,27,8,57,-24,57v-32,0,-23,-30,-24,-57v-17,-1,-42,6,-42,-14v0,-20,28,-11,45,-13","w":159},"\u2022":{"d":"87,-72v-47,0,-77,-30,-77,-77v0,-47,30,-77,77,-77v47,0,78,30,78,77v0,47,-31,77,-78,77","w":175},"\u2026":{"d":"54,-68v22,0,35,14,35,35v0,20,-13,34,-35,34v-22,0,-33,-14,-35,-34v2,-20,13,-35,35,-35xm153,-68v22,0,35,14,35,35v0,20,-13,34,-35,34v-22,0,-33,-14,-35,-34v2,-20,13,-35,35,-35xm252,-68v22,0,35,14,35,35v0,20,-13,34,-35,34v-22,0,-33,-14,-35,-34v2,-20,13,-35,35,-35","w":304,"k":{"4":36,"C":17,"G":17,"c":17,"g":17,"\u00c7":17,"\u00e7":17,"\u0106":17,"\u0107":17,"\u0108":17,"\u0109":17,"\u010a":17,"\u010b":17,"\u010c":17,"\u010d":17,"\u011c":17,"\u011d":17,"\u011e":17,"\u011f":17,"\u0120":17,"\u0121":17,"\u0122":17,"\u0123":17,"\u0152":17,"\u0153":17,"\u0421":17,"\u0441":17,"0":19,"O":19,"Q":19,"o":19,"q":19,"\u00d2":19,"\u00d3":19,"\u00d4":19,"\u00d5":19,"\u00d6":19,"\u00d8":19,"\u00f2":19,"\u00f3":19,"\u00f4":19,"\u00f5":19,"\u00f6":19,"\u00f8":19,"\u014c":19,"\u014d":19,"\u014e":19,"\u014f":19,"\u0150":19,"\u0151":19,"\u01fe":19,"\u01ff":19,"\u041e":19,"\u0424":19,"\u043e":19,"\u0444":19,"\u1ecc":19,"\u1ecd":19,"\u1ece":19,"\u1ecf":19,"\u1ed0":19,"\u1ed1":19,"\u1ed2":19,"\u1ed3":19,"\u1ed4":19,"\u1ed5":19,"\u1ed6":19,"\u1ed7":19,"\u1ed8":19,"\u1ed9":19,"\u1eda":19,"\u1edb":19,"\u1edc":19,"\u1edd":19,"\u1ede":19,"\u1edf":19,"\u1ee0":19,"\u1ee1":19,"\u1ee2":19,"\u1ee3":19,"T":36,"t":36,"\u0162":36,"\u0163":36,"\u0164":36,"\u0165":36,"\u0166":36,"\u0167":36,"\u0422":36,"\u0442":36,"U":5,"u":5,"\u00d9":5,"\u00da":5,"\u00db":5,"\u00dc":5,"\u00f9":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u0168":5,"\u0169":5,"\u016a":5,"\u016b":5,"\u016c":5,"\u016d":5,"\u016e":5,"\u016f":5,"\u0170":5,"\u0171":5,"\u0172":5,"\u0173":5,"\u1ee4":5,"\u1ee5":5,"\u1ee6":5,"\u1ee7":5,"\u1ee8":5,"\u1ee9":5,"\u1eea":5,"\u1eeb":5,"\u1eec":5,"\u1eed":5,"\u1eee":5,"\u1eef":5,"\u1ef0":5,"\u1ef1":5,"V":36,"W":36,"v":36,"w":36,"\u0174":36,"\u0175":36,"\u1e80":36,"\u1e81":36,"\u1e82":36,"\u1e83":36,"\u1e84":36,"\u1e85":36,"Y":36,"y":36,"\u00dd":36,"\u00fd":36,"\u00ff":36,"\u0176":36,"\u0177":36,"\u0178":36,"\u1ef2":36,"\u1ef3":36,"S":9,"s":9,"\u00df":9,"\u015a":9,"\u015b":9,"\u015c":9,"\u015d":9,"\u015e":9,"\u015f":9,"\u0160":9,"\u0161":9,"\u0218":9,"\u0219":9,"\u0405":9,"\u0455":9}},"\u2030":{"d":"317,-101v31,0,51,22,51,52v0,31,-22,52,-51,52v-32,0,-52,-21,-52,-52v0,-31,21,-52,52,-52xm317,-68v-11,0,-20,8,-20,19v0,11,9,20,20,20v11,0,20,-9,20,-20v0,-11,-9,-19,-20,-19xm79,-9v-13,19,-45,8,-45,-14v0,-5,2,-10,6,-15r154,-206v12,-21,44,-8,44,14v0,5,-1,10,-5,15xm68,-256v31,0,52,21,52,52v0,31,-21,51,-52,51v-31,0,-51,-19,-51,-51v0,-31,20,-52,51,-52xm68,-224v-11,0,-19,9,-19,20v0,11,8,20,19,20v11,0,21,-9,21,-20v0,-11,-10,-20,-21,-20xm203,-101v31,0,51,22,51,52v0,31,-22,52,-51,52v-32,0,-53,-20,-53,-52v0,-30,21,-52,53,-52xm203,-68v-11,0,-20,8,-20,19v0,11,9,20,20,20v11,0,19,-9,19,-20v0,-11,-8,-19,-19,-19","w":378},"\u2039":{"d":"66,-188v11,-13,32,-2,32,13v0,25,-29,33,-41,50v14,16,33,27,41,49v1,15,-20,27,-32,14v-18,-20,-43,-36,-56,-61v9,-30,39,-42,56,-65","w":108,"k":{"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":17,"W":17,"v":17,"w":17,"\u0174":17,"\u0175":17,"\u1e80":17,"\u1e81":17,"\u1e82":17,"\u1e83":17,"\u1e84":17,"\u1e85":17,"Y":26,"y":26,"\u00dd":26,"\u00fd":26,"\u00ff":26,"\u0176":26,"\u0177":26,"\u0178":26,"\u1ef2":26,"\u1ef3":26,"A":17,"a":17,"\u00c0":17,"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c4":17,"\u00c5":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u0100":17,"\u0101":17,"\u0102":17,"\u0103":17,"\u0104":17,"\u0105":17,"\u01fa":17,"\u01fb":17,"\u0410":17,"\u0430":17,"\u1ea0":17,"\u1ea1":17,"\u1ea2":17,"\u1ea3":17,"\u1ea4":17,"\u1ea5":17,"\u1ea6":17,"\u1ea7":17,"\u1ea8":17,"\u1ea9":17,"\u1eaa":17,"\u1eab":17,"\u1eac":17,"\u1ead":17,"\u1eae":17,"\u1eaf":17,"\u1eb0":17,"\u1eb1":17,"\u1eb2":17,"\u1eb3":17,"\u1eb4":17,"\u1eb5":17,"\u1eb6":17,"\u1eb7":17,"J":29,"j":29,"\u0134":29,"\u0135":29,"\u0408":29,"\u0458":29,"X":17,"x":17,"\u0423":17,"\u0425":17,"\u0443":17,"\u0445":17,"Z":27,"z":27,"\u0179":27,"\u017a":27,"\u017b":27,"\u017c":27,"\u017d":27,"\u017e":27}},"\u203a":{"d":"43,-62v-17,17,-45,-9,-27,-27r36,-36v-13,-17,-36,-27,-42,-50v0,-15,23,-27,33,-13v17,23,53,34,54,70v-16,21,-36,38,-54,56","w":108,"k":{"T":31,"t":31,"\u0162":31,"\u0163":31,"\u0164":31,"\u0165":31,"\u0166":31,"\u0167":31,"\u0422":31,"\u0442":31,"V":17,"W":17,"v":17,"w":17,"\u0174":17,"\u0175":17,"\u1e80":17,"\u1e81":17,"\u1e82":17,"\u1e83":17,"\u1e84":17,"\u1e85":17,"Y":26,"y":26,"\u00dd":26,"\u00fd":26,"\u00ff":26,"\u0176":26,"\u0177":26,"\u0178":26,"\u1ef2":26,"\u1ef3":26,"A":17,"a":17,"\u00c0":17,"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c4":17,"\u00c5":17,"\u00e0":17,"\u00e1":17,"\u00e2":17,"\u00e3":17,"\u00e4":17,"\u00e5":17,"\u0100":17,"\u0101":17,"\u0102":17,"\u0103":17,"\u0104":17,"\u0105":17,"\u01fa":17,"\u01fb":17,"\u0410":17,"\u0430":17,"\u1ea0":17,"\u1ea1":17,"\u1ea2":17,"\u1ea3":17,"\u1ea4":17,"\u1ea5":17,"\u1ea6":17,"\u1ea7":17,"\u1ea8":17,"\u1ea9":17,"\u1eaa":17,"\u1eab":17,"\u1eac":17,"\u1ead":17,"\u1eae":17,"\u1eaf":17,"\u1eb0":17,"\u1eb1":17,"\u1eb2":17,"\u1eb3":17,"\u1eb4":17,"\u1eb5":17,"\u1eb6":17,"\u1eb7":17,"J":29,"j":29,"\u0134":29,"\u0135":29,"\u0408":29,"\u0458":29,"X":17,"x":17,"\u0423":17,"\u0425":17,"\u0443":17,"\u0445":17,"Z":27,"z":27,"\u0179":27,"\u017a":27,"\u017b":27,"\u017c":27,"\u017d":27,"\u017e":27}},"\u2044":{"d":"-19,-9v-14,21,-51,5,-43,-21v50,-75,109,-141,159,-214v15,-22,50,-5,43,21","w":84},"\u2070":{"d":"69,-279v49,0,75,9,75,57v-0,51,1,95,-50,95v-48,0,-75,-10,-75,-56v-0,-51,-2,-96,50,-96xm60,-222v3,18,-8,52,10,52v16,0,36,6,33,-15v-3,-17,9,-52,-10,-52v-16,0,-36,-5,-33,15","w":163},"\u2074":{"d":"112,-279v12,1,21,9,21,21r-0,110v-0,13,-9,20,-21,21v-26,1,-22,-29,-21,-55v-30,-3,-78,13,-77,-21v2,-30,-10,-75,21,-76v27,-0,21,33,21,59r35,0v-0,-26,-6,-60,21,-59","w":147},"\u2075":{"d":"56,-221v44,-2,80,-1,80,45v0,33,-15,49,-47,49v-29,0,-75,11,-75,-21v-0,-32,44,-21,74,-21v8,0,11,-3,11,-9v0,-6,-3,-8,-11,-8r-64,-0v-5,-0,-8,-5,-8,-11r-0,-76v1,-4,3,-6,8,-6r90,0v13,0,20,7,20,21v1,34,-49,17,-78,21r-0,16","w":150},"\u2076":{"d":"64,-237v-8,0,-9,8,-9,17v36,-7,80,-2,80,44v-0,45,-31,49,-77,49v-53,-0,-44,-54,-44,-104v-0,-32,16,-48,48,-48v27,0,67,-11,67,21v-0,31,-38,21,-65,21xm64,-169v13,0,33,6,33,-11v0,-17,-20,-10,-33,-11v-6,-0,-9,4,-9,11v0,7,3,11,9,11","w":150},"\u2077":{"d":"118,-279v17,-2,24,19,16,33r-68,109v-9,19,-46,11,-39,-15r55,-85v-28,-2,-69,9,-68,-21v0,-12,8,-21,21,-21r83,0","w":152},"\u2078":{"d":"138,-167v0,25,-12,40,-37,40v-43,1,-89,6,-86,-40v1,-19,7,-35,25,-37v-15,-3,-23,-18,-23,-36v1,-22,10,-39,33,-39r54,0v38,-2,43,68,9,75v18,2,25,18,25,37xm90,-217v10,0,12,-21,-0,-20v-13,1,-35,-5,-35,9v-0,16,21,11,35,11xm98,-178v-0,-14,-22,-8,-35,-8v-5,-0,-8,3,-8,8v-0,14,22,8,35,9v5,0,8,-4,8,-9","w":152},"\u2079":{"d":"86,-169v8,0,9,-8,9,-17v-38,7,-80,2,-80,-44v-0,-45,31,-49,76,-49v53,0,45,54,45,104v-0,32,-16,48,-48,48v-28,0,-67,11,-67,-21v-0,-31,38,-21,65,-21xm86,-237v-14,0,-33,-6,-33,11v-0,17,19,11,33,11v6,-0,9,-4,9,-11v-0,-7,-3,-11,-9,-11","w":150},"\u2080":{"d":"69,-127v49,0,75,9,75,57v-0,51,1,95,-50,95v-48,0,-75,-10,-75,-56v-0,-51,-2,-96,50,-96xm60,-70v3,18,-8,52,10,52v16,0,36,6,33,-15v-3,-17,9,-52,-10,-52v-16,0,-36,-5,-33,15","w":159},"\u2081":{"d":"51,-120v14,-16,35,-8,35,15r0,110v1,13,-8,21,-21,21v-32,-1,-17,-52,-20,-83v-21,14,-41,-17,-23,-34","w":100},"\u2082":{"d":"116,-17v16,-1,23,7,23,21v-0,14,-8,21,-23,21r-96,-0v-4,-0,-6,-2,-6,-6v-0,-44,-5,-92,43,-87v15,-2,44,7,44,-8v0,-6,-3,-9,-10,-9v-29,0,-72,13,-72,-22v-0,-32,44,-20,72,-20v31,0,48,16,48,49v-0,30,-12,45,-42,45v-18,0,-51,-10,-45,16r64,0","w":153},"\u2083":{"d":"135,-15v-0,26,-13,40,-38,40v-30,0,-83,14,-83,-21v0,-32,44,-21,72,-21v6,0,9,-4,9,-9v-0,-5,-3,-8,-9,-8v-22,-3,-61,10,-61,-16v0,-26,39,-15,61,-15v6,0,9,-5,9,-11v-0,-5,-3,-9,-9,-9v-28,0,-73,13,-72,-21v0,-14,7,-21,20,-21r66,0v39,-2,43,68,10,75v18,2,24,18,25,37","w":150},"\u2084":{"d":"112,-127v12,1,21,9,21,21r-0,110v-0,13,-9,20,-21,21v-26,1,-22,-29,-21,-55v-30,-3,-78,13,-77,-21v2,-30,-10,-75,21,-76v27,-0,21,33,21,59r35,0v-0,-26,-6,-60,21,-59","w":147},"\u2085":{"d":"56,-69v44,-2,80,-1,80,45v0,33,-15,49,-47,49v-29,0,-75,11,-75,-21v-0,-32,44,-21,74,-21v8,0,11,-3,11,-9v0,-6,-3,-8,-11,-8r-64,-0v-5,-0,-8,-5,-8,-11r-0,-76v1,-4,3,-6,8,-6r90,0v13,0,20,7,20,21v1,34,-49,17,-78,21r-0,16","w":150},"\u2086":{"d":"64,-85v-8,0,-9,8,-9,17v36,-7,80,-2,80,44v-0,45,-31,49,-77,49v-53,0,-44,-54,-44,-104v-0,-32,16,-48,48,-48v27,0,67,-11,67,21v-0,31,-38,21,-65,21xm64,-17v13,0,33,6,33,-11v0,-17,-20,-10,-33,-11v-6,-0,-9,4,-9,11v0,7,3,11,9,11","w":150},"\u2087":{"d":"118,-127v17,-2,24,19,16,33r-68,109v-9,19,-46,11,-39,-15r55,-85v-28,-2,-69,9,-68,-21v0,-12,8,-21,21,-21r83,0","w":152},"\u2088":{"d":"138,-15v0,25,-12,40,-37,40v-43,1,-89,6,-86,-40v1,-19,7,-35,25,-37v-15,-3,-23,-18,-23,-36v1,-22,10,-39,33,-39r54,0v38,-2,43,68,9,75v18,2,25,18,25,37xm90,-65v10,0,12,-21,-0,-20v-13,1,-35,-5,-35,9v-0,16,21,11,35,11xm98,-26v-0,-14,-22,-8,-35,-8v-5,-0,-8,3,-8,8v-0,14,22,8,35,9v5,0,8,-4,8,-9","w":152},"\u2089":{"d":"86,-17v8,0,9,-8,9,-17v-38,7,-80,2,-80,-44v-0,-45,31,-49,76,-49v53,0,45,54,45,104v-0,32,-16,48,-48,48v-28,0,-67,11,-67,-21v-0,-31,38,-21,65,-21xm86,-85v-14,0,-33,-6,-33,11v-0,17,19,11,33,11v6,-0,9,-4,9,-11v-0,-7,-3,-11,-9,-11","w":150},"\u20ab":{"d":"174,-218v0,10,-9,16,-21,14r0,134v2,19,-26,25,-36,12v-47,23,-101,-10,-101,-63v0,-51,49,-82,98,-64r0,-19v-20,-2,-52,7,-52,-14v0,-21,31,-14,52,-15v-2,-15,7,-23,20,-23v11,0,21,8,19,23v12,-2,21,5,21,15xm160,-19v0,11,-8,20,-20,19r-107,0v-11,0,-19,-9,-19,-19v0,-10,8,-19,19,-19r107,0v12,-1,20,8,20,19xm86,-152v-19,0,-32,13,-32,32v0,17,14,32,32,32v18,1,33,-14,32,-32v0,-20,-13,-32,-32,-32","w":181},"\u20ac":{"d":"168,-102v1,28,-35,20,-62,21v21,35,101,-3,101,51v0,29,-24,31,-54,30v-65,-2,-101,-36,-123,-81v-24,3,-28,-35,-7,-40r0,-14v-21,-5,-17,-44,9,-40v21,-52,68,-78,146,-78v19,0,29,15,30,31v2,50,-79,17,-101,47v30,3,79,-12,78,21v-2,36,-64,15,-98,20r0,12v31,3,80,-12,81,20","w":220},"\u2122":{"d":"135,-129v-11,0,-17,-6,-17,-17r0,-91v0,-12,5,-18,17,-18v30,2,67,-4,92,3v20,27,23,73,35,108v0,20,-30,22,-35,3r-22,-79r-6,0r0,74v0,11,-7,18,-18,17v-32,-3,-12,-61,-17,-91r-11,0r0,74v0,11,-7,17,-18,17xm104,-238v1,15,-12,20,-28,18v-5,32,14,88,-18,91v-33,-3,-13,-60,-18,-91v-32,9,-40,-33,-12,-36v28,3,75,-12,76,18","w":270},"\u2126":{"d":"116,-206v-65,0,-36,143,-8,174v4,13,2,35,-15,32v-29,-3,-77,13,-77,-21v0,-18,14,-20,33,-19v-18,-23,-34,-50,-32,-93v1,-76,23,-123,99,-123v75,0,100,46,100,123v0,41,-14,70,-32,93v18,-1,33,2,33,19v0,33,-47,17,-76,21v-39,-7,-3,-50,4,-66v9,-23,7,-63,7,-96v0,-27,-9,-44,-36,-44","w":232},"\u2153":{"d":"51,-272v14,-16,35,-8,35,15r0,110v1,13,-8,21,-21,21v-32,-1,-17,-52,-20,-83v-21,14,-41,-17,-23,-34xm312,-15v-0,26,-13,40,-38,40v-30,0,-83,14,-83,-21v0,-32,44,-21,72,-21v6,0,9,-4,9,-9v-0,-5,-3,-8,-9,-8v-22,-3,-61,10,-61,-16v0,-26,39,-15,61,-15v6,0,9,-5,9,-11v-0,-5,-3,-9,-9,-9v-28,0,-73,13,-72,-21v0,-14,7,-21,20,-21r66,0v39,-2,43,68,10,75v18,2,24,18,25,37xm87,-9v-14,21,-51,5,-43,-21v50,-75,109,-141,159,-214v15,-22,50,-5,43,21","w":326},"\u2154":{"d":"116,-169v16,-1,23,7,23,21v-0,14,-8,21,-23,21r-96,0v-4,0,-6,-2,-6,-6v-0,-44,-5,-92,43,-87v15,-2,44,7,44,-8v0,-6,-3,-9,-10,-9v-29,0,-72,13,-72,-22v-0,-32,44,-20,72,-20v31,0,48,16,48,49v-0,30,-12,45,-42,45v-18,0,-51,-10,-45,16r64,0xm344,-15v-0,26,-13,40,-38,40v-30,0,-83,14,-83,-21v0,-32,44,-21,72,-21v6,0,9,-4,9,-9v-0,-5,-3,-8,-9,-8v-22,-3,-61,10,-61,-16v0,-26,39,-15,61,-15v6,0,9,-5,9,-11v-0,-5,-3,-9,-9,-9v-28,0,-73,13,-72,-21v0,-14,7,-21,20,-21r66,0v39,-2,43,68,10,75v18,2,24,18,25,37xm131,-9v-14,21,-51,5,-43,-21v50,-75,109,-141,159,-214v15,-22,50,-5,43,21","w":359},"\u215b":{"d":"51,-272v14,-16,35,-8,35,15r0,110v1,13,-8,21,-21,21v-32,-1,-17,-52,-20,-83v-21,14,-41,-17,-23,-34xm295,-15v0,25,-12,40,-37,40v-43,1,-89,6,-86,-40v1,-19,7,-35,25,-37v-15,-3,-23,-18,-23,-36v1,-22,10,-39,33,-39r54,0v38,-2,43,68,9,75v18,2,25,18,25,37xm247,-65v10,0,12,-21,-0,-20v-13,1,-35,-5,-35,9v-0,16,21,11,35,11xm255,-26v-0,-14,-22,-8,-35,-8v-5,-0,-8,3,-8,8v-0,14,22,8,35,9v5,0,8,-4,8,-9xm79,-9v-14,21,-51,5,-43,-21v50,-75,109,-141,159,-214v15,-22,50,-5,43,21","w":309},"\u215c":{"d":"342,-15v0,25,-12,40,-37,40v-43,1,-89,6,-86,-40v1,-19,7,-35,25,-37v-15,-3,-23,-18,-23,-36v1,-22,10,-39,33,-39r54,0v38,-2,43,68,9,75v18,2,25,18,25,37xm294,-65v10,0,12,-21,-0,-20v-13,1,-35,-5,-35,9v-0,16,21,11,35,11xm302,-26v-0,-14,-22,-8,-35,-8v-5,-0,-8,3,-8,8v-0,14,22,8,35,9v5,0,8,-4,8,-9xm135,-167v-0,26,-13,40,-38,40v-30,-0,-83,14,-83,-21v0,-32,44,-21,72,-21v6,0,9,-4,9,-9v-0,-5,-3,-8,-9,-8v-22,-3,-61,10,-61,-16v0,-26,39,-15,61,-15v6,0,9,-5,9,-11v-0,-5,-3,-9,-9,-9v-28,0,-73,13,-72,-21v0,-14,7,-21,20,-21r66,0v39,-2,43,68,10,75v18,2,24,18,25,37xm119,-9v-14,21,-51,5,-43,-21v50,-75,109,-141,159,-214v15,-22,50,-5,43,21","w":357},"\u215d":{"d":"56,-221v44,-2,80,-1,80,45v0,33,-15,49,-47,49v-29,0,-75,11,-75,-21v-0,-32,44,-21,74,-21v8,0,11,-3,11,-9v0,-6,-3,-8,-11,-8r-64,-0v-5,-0,-8,-5,-8,-11r-0,-76v1,-4,3,-6,8,-6r90,0v13,0,20,7,20,21v1,34,-49,17,-78,21r-0,16xm338,-15v0,25,-12,40,-37,40v-43,1,-89,6,-86,-40v1,-19,7,-35,25,-37v-15,-3,-23,-18,-23,-36v1,-22,10,-39,33,-39r54,0v38,-2,43,68,9,75v18,2,25,18,25,37xm290,-65v10,0,12,-21,-0,-20v-13,1,-35,-5,-35,9v-0,16,21,11,35,11xm298,-26v-0,-14,-22,-8,-35,-8v-5,-0,-8,3,-8,8v-0,14,22,8,35,9v5,0,8,-4,8,-9xm119,-9v-14,21,-51,5,-43,-21v50,-75,109,-141,159,-214v15,-22,50,-5,43,21","w":353},"\u215e":{"d":"312,-15v0,25,-12,40,-37,40v-43,1,-89,6,-86,-40v1,-19,7,-35,25,-37v-15,-3,-23,-18,-23,-36v1,-22,10,-39,33,-39r54,0v38,-2,43,68,9,75v18,2,25,18,25,37xm264,-65v10,0,12,-21,-0,-20v-13,1,-35,-5,-35,9v-0,16,21,11,35,11xm272,-26v-0,-14,-22,-8,-35,-8v-5,-0,-8,3,-8,8v-0,14,22,8,35,9v5,0,8,-4,8,-9xm118,-279v17,-2,24,19,16,33r-68,109v-9,19,-46,11,-39,-15r55,-85v-28,-2,-69,9,-68,-21v0,-12,8,-21,21,-21r83,0xm80,-9v-14,21,-51,5,-43,-21v50,-75,109,-141,159,-214v15,-22,50,-5,43,21","w":327},"\u2202":{"d":"58,-233v0,-25,33,-22,59,-23v53,-3,79,21,75,71v-7,90,-34,188,-124,188v-39,0,-58,-27,-58,-67v0,-57,32,-98,91,-100v23,0,38,9,48,21v11,-45,9,-94,-52,-82v-14,3,-39,12,-39,-8xm50,-64v-5,51,48,37,64,11v10,-16,21,-34,27,-54v-24,-47,-102,-20,-91,43","w":207},"\u2206":{"d":"43,0v-26,1,-47,-20,-35,-46r84,-188v7,-26,54,-27,65,1r80,201v-1,21,-17,31,-38,32r-156,0xm94,-70r57,0r-27,-78","w":241},"\u220f":{"d":"169,-256v5,0,10,2,9,7r0,227v0,14,-6,22,-20,22v-14,0,-22,-8,-22,-22r0,-202r-64,0r0,202v0,14,-7,22,-21,22v-14,0,-21,-8,-21,-22r0,-227v0,-5,3,-7,9,-7r130,0","w":207},"\u2211":{"d":"27,-219v-11,-14,-8,-34,12,-34r127,0v9,0,13,4,13,15v0,10,-4,16,-13,16r-96,0v11,33,57,65,38,102r-44,89r104,0v8,0,12,5,12,15v0,11,-4,16,-12,16r-134,0v-20,1,-25,-13,-17,-29r58,-110","w":192},"\u2212":{"d":"197,-126v0,16,-12,29,-30,29r-126,0v-18,1,-29,-13,-29,-29v0,-16,12,-31,29,-30r126,0v18,-1,30,14,30,30","w":208},"\u221a":{"d":"148,-248v16,-11,53,-5,42,23r-29,211v-2,22,-50,14,-71,11v-18,-28,-17,-75,-27,-111v-24,0,-46,3,-46,-23v0,-33,40,-19,68,-22v9,0,13,4,15,14r21,113r21,-199v1,-8,2,-13,6,-17","w":214},"\u221e":{"d":"314,-129v0,58,-22,86,-80,86v-38,0,-53,-19,-69,-42v-17,21,-34,42,-71,42v-56,1,-79,-28,-79,-85v0,-57,22,-85,79,-85v39,0,53,20,69,42v17,-24,33,-40,71,-42v58,-2,79,28,80,84xm146,-129v-8,-21,-20,-46,-46,-46v-29,0,-38,15,-36,46v-12,57,58,59,73,18xm183,-128v8,22,19,44,46,46v31,2,39,-16,38,-46v8,-44,-39,-61,-63,-32v-7,8,-16,21,-21,32","w":328},"\u222b":{"d":"27,49v30,11,46,0,46,-35r0,-218v-1,-48,25,-65,75,-65v23,0,34,31,10,35r-24,-4v-21,-1,-21,18,-21,39r0,218v1,49,-26,68,-76,65v-23,5,-32,-32,-10,-35","w":185},"\u2248":{"d":"70,-121v35,0,73,40,98,6v12,-16,37,-5,37,13v0,30,-27,45,-56,45v-30,0,-51,-25,-81,-20v-12,2,-20,21,-32,22v-11,0,-23,-10,-22,-21v2,-30,26,-45,56,-45xm73,-205v35,0,73,40,98,6v12,-16,37,-5,37,13v0,30,-27,45,-56,45v-30,0,-51,-25,-81,-20v-12,2,-20,21,-32,22v-11,0,-23,-10,-22,-21v2,-30,26,-45,56,-45","w":224},"\u2260":{"d":"197,-75v0,40,-55,27,-94,29v-8,18,-4,51,-27,53v-30,2,-21,-33,-13,-53v-28,3,-51,-5,-51,-29v-1,-32,34,-32,68,-30r12,-43v-35,0,-80,7,-80,-28v0,-42,56,-30,96,-31v7,-18,6,-50,29,-51v28,-1,21,31,12,51v28,-3,48,7,48,31v1,30,-33,30,-65,28r-12,43v36,-1,78,-5,77,30","w":208},"\u2264":{"d":"100,-242v16,-17,47,-4,44,18v-5,33,-40,44,-57,67v18,23,52,35,57,68v4,22,-29,35,-44,18v-24,-26,-52,-48,-73,-76v-4,-11,-1,-22,6,-28xm162,-24v0,13,-9,23,-23,23r-100,0v-15,1,-23,-10,-23,-23v-0,-13,9,-24,23,-24r100,0v14,-0,23,11,23,24","w":179},"\u2265":{"d":"81,-71v-15,17,-44,4,-44,-18v8,-32,39,-45,57,-68v-18,-23,-48,-36,-57,-67v0,-22,28,-34,44,-18r68,67v11,12,11,25,0,37xm162,-24v0,13,-9,23,-23,23r-100,0v-15,1,-23,-10,-23,-23v-0,-13,9,-24,23,-24r100,0v14,-0,23,11,23,24","w":179},"\u22c5":{"d":"53,-162v20,0,34,13,34,35v1,19,-15,35,-34,35v-19,0,-36,-16,-35,-35v2,-21,14,-35,35,-35","w":103},"\u25ca":{"d":"185,-150v10,10,11,28,0,38r-67,68v-12,11,-25,11,-37,0r-67,-68v-10,-9,-10,-28,0,-38r67,-67v12,-12,25,-12,37,0xm68,-131r31,32r32,-32r-32,-31","w":200},"\uf8ff":{"w":84},"\ufb01":{"d":"186,-125v0,45,-58,33,-102,34v1,42,7,93,-35,91v-19,-1,-36,-14,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,25v43,1,102,-11,102,33xm256,-255v19,0,36,14,35,35r0,187v1,21,-15,34,-35,34v-21,0,-35,-12,-35,-34r0,-187v-1,-21,15,-35,35,-35","w":305},"\ufb02":{"d":"186,-125v0,45,-58,33,-102,34v1,42,7,93,-35,91v-19,-1,-36,-14,-35,-35r0,-183v0,-24,12,-35,35,-35r119,0v21,-1,35,15,35,35v1,51,-71,32,-119,35r0,25v43,1,102,-11,102,33xm361,-35v0,48,-60,35,-105,35v-23,0,-35,-11,-35,-35r0,-185v-1,-21,16,-35,35,-35v19,0,36,14,35,35r0,150v37,-2,70,-1,70,35","w":365}}});

