//MooTools, <http://mootools.net>, My Object Oriented (JavaScript) Tools. Copyright (c) 2006-2009 Valerio Proietti, <http://mad4milk.net>, MIT Style License.

var MooTools={version:"1.2.5",build:"008d8f0f2fcc2044e54fdd3635341aaab274e757"};var Native=function(l){l=l||{};var a=l.name;var j=l.legacy;var b=l.protect;var c=l.implement;var i=l.generics;var g=l.initialize;var h=l.afterImplement||function(){};var d=g||j;i=i!==false;d.constructor=Native;d.$family={name:"native"};if(j&&g){d.prototype=j.prototype;}d.prototype.constructor=d;if(a){var f=a.toLowerCase();d.prototype.$family={name:f};Native.typize(d,f);}var k=function(o,m,p,n){if(!b||n||!o.prototype[m]){o.prototype[m]=p;}if(i){Native.genericize(o,m,b);}h.call(o,m,p);return o;};d.alias=function(o,m,q){if(typeof o=="string"){var p=this.prototype[o];if((o=p)){return k(this,m,o,q);}}for(var n in o){this.alias(n,o[n],m);}return this;};d.implement=function(n,m,q){if(typeof n=="string"){return k(this,n,m,q);}for(var o in n){k(this,o,n[o],m);}return this;};if(c){d.implement(c);}return d;};Native.genericize=function(b,c,a){if((!a||!b[c])&&typeof b.prototype[c]=="function"){b[c]=function(){var d=Array.prototype.slice.call(arguments);return b.prototype[c].apply(d.shift(),d);};}};Native.implement=function(d,c){for(var b=0,a=d.length;b<a;b++){d[b].implement(c);}};Native.typize=function(a,b){if(!a.type){a.type=function(c){return($type(c)===b);};}};(function(){var a={Array:Array,Date:Date,Function:Function,Number:Number,RegExp:RegExp,String:String};for(var j in a){new Native({name:j,initialize:a[j],protect:true});}var d={"boolean":Boolean,"native":Native,object:Object};for(var c in d){Native.typize(d[c],c);}var h={Array:["concat","indexOf","join","lastIndexOf","pop","push","reverse","shift","slice","sort","splice","toString","unshift","valueOf"],String:["charAt","charCodeAt","concat","indexOf","lastIndexOf","match","replace","search","slice","split","substr","substring","toLowerCase","toUpperCase","valueOf"]};for(var f in h){for(var b=h[f].length;b--;){Native.genericize(a[f],h[f][b],true);}}})();var Hash=new Native({name:"Hash",initialize:function(a){if($type(a)=="hash"){a=$unlink(a.getClean());}for(var b in a){this[b]=a[b];}return this;}});Hash.implement({forEach:function(b,c){for(var a in this){if(this.hasOwnProperty(a)){b.call(c,this[a],a,this);}}},getClean:function(){var b={};for(var a in this){if(this.hasOwnProperty(a)){b[a]=this[a];}}return b;},getLength:function(){var b=0;for(var a in this){if(this.hasOwnProperty(a)){b++;}}return b;}});Hash.alias("forEach","each");Array.implement({forEach:function(c,d){for(var b=0,a=this.length;b<a;b++){c.call(d,this[b],b,this);}}});Array.alias("forEach","each");function $A(b){if(b.item){var a=b.length,c=new Array(a);while(a--){c[a]=b[a];}return c;}return Array.prototype.slice.call(b);}function $arguments(a){return function(){return arguments[a];};}function $chk(a){return !!(a||a===0);}function $clear(a){clearTimeout(a);clearInterval(a);return null;}function $defined(a){return(a!=undefined);}function $each(c,b,d){var a=$type(c);((a=="arguments"||a=="collection"||a=="array")?Array:Hash).each(c,b,d);}function $empty(){}function $extend(c,a){for(var b in (a||{})){c[b]=a[b];}return c;}function $H(a){return new Hash(a);}function $lambda(a){return($type(a)=="function")?a:function(){return a;};}function $merge(){var a=Array.slice(arguments);a.unshift({});return $mixin.apply(null,a);}function $mixin(f){for(var d=1,a=arguments.length;d<a;d++){var b=arguments[d];if($type(b)!="object"){continue;}for(var c in b){var h=b[c],g=f[c];f[c]=(g&&$type(h)=="object"&&$type(g)=="object")?$mixin(g,h):$unlink(h);}}return f;}function $pick(){for(var b=0,a=arguments.length;b<a;b++){if(arguments[b]!=undefined){return arguments[b];}}return null;}function $random(b,a){return Math.floor(Math.random()*(a-b+1)+b);}function $splat(b){var a=$type(b);return(a)?((a!="array"&&a!="arguments")?[b]:b):[];}var $time=Date.now||function(){return +new Date;};function $try(){for(var b=0,a=arguments.length;b<a;b++){try{return arguments[b]();}catch(c){}}return null;}function $type(a){if(a==undefined){return false;}if(a.$family){return(a.$family.name=="number"&&!isFinite(a))?false:a.$family.name;}if(a.nodeName){switch(a.nodeType){case 1:return"element";case 3:return(/\S/).test(a.nodeValue)?"textnode":"whitespace";}}else{if(typeof a.length=="number"){if(a.callee){return"arguments";}else{if(a.item){return"collection";}}}}return typeof a;}function $unlink(c){var b;switch($type(c)){case"object":b={};for(var f in c){b[f]=$unlink(c[f]);}break;case"hash":b=new Hash(c);break;case"array":b=[];for(var d=0,a=c.length;d<a;d++){b[d]=$unlink(c[d]);}break;default:return c;}return b;}Array.implement({every:function(c,d){for(var b=0,a=this.length;b<a;b++){if(!c.call(d,this[b],b,this)){return false;}}return true;},filter:function(d,f){var c=[];for(var b=0,a=this.length;b<a;b++){if(d.call(f,this[b],b,this)){c.push(this[b]);}}return c;},clean:function(){return this.filter($defined);},indexOf:function(c,d){var a=this.length;for(var b=(d<0)?Math.max(0,a+d):d||0;b<a;b++){if(this[b]===c){return b;}}return -1;},map:function(d,f){var c=[];for(var b=0,a=this.length;b<a;b++){c[b]=d.call(f,this[b],b,this);}return c;},some:function(c,d){for(var b=0,a=this.length;b<a;b++){if(c.call(d,this[b],b,this)){return true;}}return false;},associate:function(c){var d={},b=Math.min(this.length,c.length);for(var a=0;a<b;a++){d[c[a]]=this[a];}return d;},link:function(c){var a={};for(var f=0,b=this.length;f<b;f++){for(var d in c){if(c[d](this[f])){a[d]=this[f];delete c[d];break;}}}return a;},contains:function(a,b){return this.indexOf(a,b)!=-1;},extend:function(c){for(var b=0,a=c.length;b<a;b++){this.push(c[b]);}return this;},getLast:function(){return(this.length)?this[this.length-1]:null;},getRandom:function(){return(this.length)?this[$random(0,this.length-1)]:null;},include:function(a){if(!this.contains(a)){this.push(a);}return this;},combine:function(c){for(var b=0,a=c.length;b<a;b++){this.include(c[b]);}return this;},erase:function(b){for(var a=this.length;a--;a){if(this[a]===b){this.splice(a,1);}}return this;},empty:function(){this.length=0;return this;},flatten:function(){var d=[];for(var b=0,a=this.length;b<a;b++){var c=$type(this[b]);if(!c){continue;}d=d.concat((c=="array"||c=="collection"||c=="arguments")?Array.flatten(this[b]):this[b]);}return d;},hexToRgb:function(b){if(this.length!=3){return null;}var a=this.map(function(c){if(c.length==1){c+=c;}return c.toInt(16);});return(b)?a:"rgb("+a+")";},rgbToHex:function(d){if(this.length<3){return null;}if(this.length==4&&this[3]==0&&!d){return"transparent";}var b=[];for(var a=0;a<3;a++){var c=(this[a]-0).toString(16);b.push((c.length==1)?"0"+c:c);}return(d)?b:"#"+b.join("");}});String.implement({test:function(a,b){return((typeof a=="string")?new RegExp(a,b):a).test(this);},contains:function(a,b){return(b)?(b+this+b).indexOf(b+a+b)>-1:this.indexOf(a)>-1;},trim:function(){return this.replace(/^\s+|\s+$/g,"");},clean:function(){return this.replace(/\s+/g," ").trim();},camelCase:function(){return this.replace(/-\D/g,function(a){return a.charAt(1).toUpperCase();});},hyphenate:function(){return this.replace(/[A-Z]/g,function(a){return("-"+a.charAt(0).toLowerCase());});},capitalize:function(){return this.replace(/\b[a-z]/g,function(a){return a.toUpperCase();});},escapeRegExp:function(){return this.replace(/([-.*+?^${}()|[\]\/\\])/g,"\\$1");},toInt:function(a){return parseInt(this,a||10);},toFloat:function(){return parseFloat(this);},hexToRgb:function(b){var a=this.match(/^#?(\w{1,2})(\w{1,2})(\w{1,2})$/);return(a)?a.slice(1).hexToRgb(b):null;},rgbToHex:function(b){var a=this.match(/\d{1,3}/g);return(a)?a.rgbToHex(b):null;},stripScripts:function(b){var a="";var c=this.replace(/<script[^>]*>([\s\S]*?)<\/script>/gi,function(){a+=arguments[1]+"\n";return"";});if(b===true){$exec(a);}else{if($type(b)=="function"){b(a,c);}}return c;},substitute:function(a,b){return this.replace(b||(/\\?\{([^{}]+)\}/g),function(d,c){if(d.charAt(0)=="\\"){return d.slice(1);}return(a[c]!=undefined)?a[c]:"";});}});try{delete Function.prototype.bind;}catch(e){}Function.implement({extend:function(a){for(var b in a){this[b]=a[b];}return this;},create:function(b){var a=this;b=b||{};return function(d){var c=b.arguments;c=(c!=undefined)?$splat(c):Array.slice(arguments,(b.event)?1:0);if(b.event){c=[d||window.event].extend(c);}var f=function(){return a.apply(b.bind||null,c);};if(b.delay){return setTimeout(f,b.delay);}if(b.periodical){return setInterval(f,b.periodical);}if(b.attempt){return $try(f);}return f();};},run:function(a,b){return this.apply(b,$splat(a));},pass:function(a,b){return this.create({bind:b,arguments:a});},bind:function(b,a){return this.create({bind:b,arguments:a});},bindWithEvent:function(b,a){return this.create({bind:b,arguments:a,event:true});},attempt:function(a,b){return this.create({bind:b,arguments:a,attempt:true})();},delay:function(b,c,a){return this.create({bind:c,arguments:a,delay:b})();},periodical:function(c,b,a){return this.create({bind:b,arguments:a,periodical:c})();}});Number.implement({limit:function(b,a){return Math.min(a,Math.max(b,this));},round:function(a){a=Math.pow(10,a||0);return Math.round(this*a)/a;},times:function(b,c){for(var a=0;a<this;a++){b.call(c,a,this);}},toFloat:function(){return parseFloat(this);},toInt:function(a){return parseInt(this,a||10);}});Number.alias("times","each");(function(b){var a={};b.each(function(c){if(!Number[c]){a[c]=function(){return Math[c].apply(null,[this].concat($A(arguments)));};}});Number.implement(a);})(["abs","acos","asin","atan","atan2","ceil","cos","exp","floor","log","max","min","pow","sin","sqrt","tan"]);Hash.implement({has:Object.prototype.hasOwnProperty,keyOf:function(b){for(var a in this){if(this.hasOwnProperty(a)&&this[a]===b){return a;}}return null;},hasValue:function(a){return(Hash.keyOf(this,a)!==null);},extend:function(a){Hash.each(a||{},function(c,b){Hash.set(this,b,c);},this);return this;},combine:function(a){Hash.each(a||{},function(c,b){Hash.include(this,b,c);},this);return this;},erase:function(a){if(this.hasOwnProperty(a)){delete this[a];}return this;},get:function(a){return(this.hasOwnProperty(a))?this[a]:null;},set:function(a,b){if(!this[a]||this.hasOwnProperty(a)){this[a]=b;}return this;},empty:function(){Hash.each(this,function(b,a){delete this[a];},this);return this;},include:function(a,b){if(this[a]==undefined){this[a]=b;}return this;},map:function(b,c){var a=new Hash;Hash.each(this,function(f,d){a.set(d,b.call(c,f,d,this));},this);return a;},filter:function(b,c){var a=new Hash;Hash.each(this,function(f,d){if(b.call(c,f,d,this)){a.set(d,f);}},this);return a;},every:function(b,c){for(var a in this){if(this.hasOwnProperty(a)&&!b.call(c,this[a],a)){return false;}}return true;},some:function(b,c){for(var a in this){if(this.hasOwnProperty(a)&&b.call(c,this[a],a)){return true;}}return false;},getKeys:function(){var a=[];Hash.each(this,function(c,b){a.push(b);});return a;},getValues:function(){var a=[];Hash.each(this,function(b){a.push(b);});return a;},toQueryString:function(a){var b=[];Hash.each(this,function(g,f){if(a){f=a+"["+f+"]";}var d;switch($type(g)){case"object":d=Hash.toQueryString(g,f);break;case"array":var c={};g.each(function(j,h){c[h]=j;});d=Hash.toQueryString(c,f);break;default:d=f+"="+encodeURIComponent(g);}if(g!=undefined){b.push(d);}});return b.join("&");}});Hash.alias({keyOf:"indexOf",hasValue:"contains"});function Class(b){if(b instanceof Function){b={initialize:b};}var a=function(){Object.reset(this);if(a._prototyping){return this;}this._current=$empty;var c=(this.initialize)?this.initialize.apply(this,arguments):this;delete this._current;delete this.caller;return c;}.extend(this);a.implement(b);a.constructor=Class;a.prototype.constructor=a;return a;}Function.prototype.protect=function(){this._protected=true;return this;};Object.reset=function(a,c){if(c==null){for(var f in a){Object.reset(a,f);}return a;}delete a[c];switch($type(a[c])){case"object":var d=function(){};d.prototype=a[c];var b=new d;a[c]=Object.reset(b);break;case"array":a[c]=$unlink(a[c]);break;}return a;};new Native({name:"Class",initialize:Class}).extend({instantiate:function(b){b._prototyping=true;var a=new b;delete b._prototyping;return a;},wrap:function(a,b,c){if(c._origin){c=c._origin;}return function(){if(c._protected&&this._current==null){throw new Error('The method "'+b+'" cannot be called.');}var f=this.caller,g=this._current;this.caller=g;this._current=arguments.callee;var d=c.apply(this,arguments);this._current=g;this.caller=f;return d;}.extend({_owner:a,_origin:c,_name:b});}});Class.implement({implement:function(a,d){if($type(a)=="object"){for(var f in a){this.implement(f,a[f]);}return this;}var g=Class.Mutators[a];if(g){d=g.call(this,d);if(d==null){return this;}}var c=this.prototype;switch($type(d)){case"function":if(d._hidden){return this;}c[a]=Class.wrap(this,a,d);break;case"object":var b=c[a];if($type(b)=="object"){$mixin(b,d);}else{c[a]=$unlink(d);}break;case"array":c[a]=$unlink(d);break;default:c[a]=d;}return this;}});Class.Mutators={Extends:function(a){this.parent=a;this.prototype=Class.instantiate(a);this.implement("parent",function(){var b=this.caller._name,c=this.caller._owner.parent.prototype[b];if(!c){throw new Error('The method "'+b+'" has no parent.');}return c.apply(this,arguments);}.protect());},Implements:function(a){$splat(a).each(function(b){if(b instanceof Function){b=Class.instantiate(b);}this.implement(b);},this);}};var Chain=new Class({$chain:[],chain:function(){this.$chain.extend(Array.flatten(arguments));return this;},callChain:function(){return(this.$chain.length)?this.$chain.shift().apply(this,arguments):false;},clearChain:function(){this.$chain.empty();return this;}});var Events=new Class({$events:{},addEvent:function(c,b,a){c=Events.removeOn(c);if(b!=$empty){this.$events[c]=this.$events[c]||[];this.$events[c].include(b);if(a){b.internal=true;}}return this;},addEvents:function(a){for(var b in a){this.addEvent(b,a[b]);}return this;},fireEvent:function(c,b,a){c=Events.removeOn(c);if(!this.$events||!this.$events[c]){return this;}this.$events[c].each(function(d){d.create({bind:this,delay:a,"arguments":b})();},this);return this;},removeEvent:function(b,a){b=Events.removeOn(b);if(!this.$events[b]){return this;}if(!a.internal){this.$events[b].erase(a);}return this;},removeEvents:function(c){var d;if($type(c)=="object"){for(d in c){this.removeEvent(d,c[d]);}return this;}if(c){c=Events.removeOn(c);}for(d in this.$events){if(c&&c!=d){continue;}var b=this.$events[d];for(var a=b.length;a--;a){this.removeEvent(d,b[a]);}}return this;}});Events.removeOn=function(a){return a.replace(/^on([A-Z])/,function(b,c){return c.toLowerCase();});};var Options=new Class({setOptions:function(){this.options=$merge.run([this.options].extend(arguments));if(!this.addEvent){return this;}for(var a in this.options){if($type(this.options[a])!="function"||!(/^on[A-Z]/).test(a)){continue;}this.addEvent(a,this.options[a]);delete this.options[a];}return this;}});var Browser=$merge({Engine:{name:"unknown",version:0},Platform:{name:(window.orientation!=undefined)?"ipod":(navigator.platform.match(/mac|win|linux/i)||["other"])[0].toLowerCase()},Features:{xpath:!!(document.evaluate),air:!!(window.runtime),query:!!(document.querySelector)},Plugins:{},Engines:{presto:function(){return(!window.opera)?false:((arguments.callee.caller)?960:((document.getElementsByClassName)?950:925));},trident:function(){return(!window.ActiveXObject)?false:((window.XMLHttpRequest)?((document.querySelectorAll)?6:5):4);},webkit:function(){return(navigator.taintEnabled)?false:((Browser.Features.xpath)?((Browser.Features.query)?525:420):419);},gecko:function(){return(!document.getBoxObjectFor&&window.mozInnerScreenX==null)?false:((document.getElementsByClassName)?19:18);}}},Browser||{});Browser.Platform[Browser.Platform.name]=true;Browser.detect=function(){for(var b in this.Engines){var a=this.Engines[b]();if(a){this.Engine={name:b,version:a};this.Engine[b]=this.Engine[b+a]=true;break;}}return{name:b,version:a};};Browser.detect();Browser.Request=function(){return $try(function(){return new XMLHttpRequest();},function(){return new ActiveXObject("MSXML2.XMLHTTP");},function(){return new ActiveXObject("Microsoft.XMLHTTP");});};Browser.Features.xhr=!!(Browser.Request());Browser.Plugins.Flash=(function(){var a=($try(function(){return navigator.plugins["Shockwave Flash"].description;},function(){return new ActiveXObject("ShockwaveFlash.ShockwaveFlash").GetVariable("$version");})||"0 r0").match(/\d+/g);return{version:parseInt(a[0]||0+"."+a[1],10)||0,build:parseInt(a[2],10)||0};})();function $exec(b){if(!b){return b;}if(window.execScript){window.execScript(b);}else{var a=document.createElement("script");a.setAttribute("type","text/javascript");a[(Browser.Engine.webkit&&Browser.Engine.version<420)?"innerText":"text"]=b;document.head.appendChild(a);document.head.removeChild(a);}return b;}Native.UID=1;var $uid=(Browser.Engine.trident)?function(a){return(a.uid||(a.uid=[Native.UID++]))[0];}:function(a){return a.uid||(a.uid=Native.UID++);};var Window=new Native({name:"Window",legacy:(Browser.Engine.trident)?null:window.Window,initialize:function(a){$uid(a);if(!a.Element){a.Element=$empty;if(Browser.Engine.webkit){a.document.createElement("iframe");}a.Element.prototype=(Browser.Engine.webkit)?window["[[DOMElement.prototype]]"]:{};}a.document.window=a;return $extend(a,Window.Prototype);},afterImplement:function(b,a){window[b]=Window.Prototype[b]=a;}});Window.Prototype={$family:{name:"window"}};new Window(window);var Document=new Native({name:"Document",legacy:(Browser.Engine.trident)?null:window.Document,initialize:function(a){$uid(a);a.head=a.getElementsByTagName("head")[0];a.html=a.getElementsByTagName("html")[0];if(Browser.Engine.trident&&Browser.Engine.version<=4){$try(function(){a.execCommand("BackgroundImageCache",false,true);});}if(Browser.Engine.trident){a.window.attachEvent("onunload",function(){a.window.detachEvent("onunload",arguments.callee);a.head=a.html=a.window=null;});}return $extend(a,Document.Prototype);},afterImplement:function(b,a){document[b]=Document.Prototype[b]=a;}});Document.Prototype={$family:{name:"document"}};new Document(document);var Element=new Native({name:"Element",legacy:window.Element,initialize:function(a,b){var c=Element.Constructors.get(a);if(c){return c(b);}if(typeof a=="string"){return document.newElement(a,b);}return document.id(a).set(b);},afterImplement:function(a,b){Element.Prototype[a]=b;if(Array[a]){return;}Elements.implement(a,function(){var c=[],h=true;for(var f=0,d=this.length;f<d;f++){var g=this[f][a].apply(this[f],arguments);c.push(g);if(h){h=($type(g)=="element");}}return(h)?new Elements(c):c;});}});Element.Prototype={$family:{name:"element"}};Element.Constructors=new Hash;var IFrame=new Native({name:"IFrame",generics:false,initialize:function(){var g=Array.link(arguments,{properties:Object.type,iframe:$defined});var d=g.properties||{};var c=document.id(g.iframe);var f=d.onload||$empty;delete d.onload;d.id=d.name=$pick(d.id,d.name,c?(c.id||c.name):"IFrame_"+$time());c=new Element(c||"iframe",d);var b=function(){var h=$try(function(){return c.contentWindow.location.host;});if(!h||h==window.location.host){var i=new Window(c.contentWindow);new Document(c.contentWindow.document);$extend(i.Element.prototype,Element.Prototype);}f.call(c.contentWindow,c.contentWindow.document);};var a=$try(function(){return c.contentWindow;});((a&&a.document.body)||window.frames[d.id])?b():c.addListener("load",b);return c;}});var Elements=new Native({initialize:function(g,b){b=$extend({ddup:true,cash:true},b);g=g||[];if(b.ddup||b.cash){var h={},f=[];for(var c=0,a=g.length;c<a;c++){var d=document.id(g[c],!b.cash);if(b.ddup){if(h[d.uid]){continue;}h[d.uid]=true;}if(d){f.push(d);}}g=f;}return(b.cash)?$extend(g,this):g;}});Elements.implement({filter:function(a,b){if(!a){return this;}return new Elements(Array.filter(this,(typeof a=="string")?function(c){return c.match(a);}:a,b));}});(function(){var d;try{var a=document.createElement("<input name=x>");d=(a.name=="x");}catch(b){}var c=function(f){return(""+f).replace(/&/g,"&amp;").replace(/"/g,"&quot;");};Document.implement({newElement:function(f,g){if(g&&g.checked!=null){g.defaultChecked=g.checked;}if(d&&g){f="<"+f;if(g.name){f+=' name="'+c(g.name)+'"';}if(g.type){f+=' type="'+c(g.type)+'"';}f+=">";delete g.name;delete g.type;}return this.id(this.createElement(f)).set(g);},newTextNode:function(f){return this.createTextNode(f);},getDocument:function(){return this;},getWindow:function(){return this.window;},id:(function(){var f={string:function(i,h,g){i=g.getElementById(i);return(i)?f.element(i,h):null;},element:function(g,j){$uid(g);if(!j&&!g.$family&&!(/^object|embed$/i).test(g.tagName)){var h=Element.Prototype;for(var i in h){g[i]=h[i];}}return g;},object:function(h,i,g){if(h.toElement){return f.element(h.toElement(g),i);}return null;}};f.textnode=f.whitespace=f.window=f.document=$arguments(0);return function(h,j,i){if(h&&h.$family&&h.uid){return h;}var g=$type(h);return(f[g])?f[g](h,j,i||document):null;};})()});})();if(window.$==null){Window.implement({$:function(a,b){return document.id(a,b,this.document);}});}Window.implement({$$:function(a){if(arguments.length==1&&typeof a=="string"){return this.document.getElements(a);}var g=[];var c=Array.flatten(arguments);for(var d=0,b=c.length;d<b;d++){var f=c[d];switch($type(f)){case"element":g.push(f);break;case"string":g.extend(this.document.getElements(f,true));}}return new Elements(g);},getDocument:function(){return this.document;},getWindow:function(){return this;}});Native.implement([Element,Document],{getElement:function(a,b){return document.id(this.getElements(a,true)[0]||null,b);},getElements:function(a,d){a=a.split(",");var c=[];var b=(a.length>1);a.each(function(f){var g=this.getElementsByTagName(f.trim());(b)?c.extend(g):c=g;},this);return new Elements(c,{ddup:b,cash:!d});}});(function(){var i={},g={};var j={input:"checked",option:"selected",textarea:(Browser.Engine.webkit&&Browser.Engine.version<420)?"innerHTML":"value"};var c=function(m){return(g[m]||(g[m]={}));};var h=function(o,m){if(!o){return;}var n=o.uid;if(m!==true){m=false;}if(Browser.Engine.trident){if(o.clearAttributes){var r=m&&o.cloneNode(false);o.clearAttributes();if(r){o.mergeAttributes(r);}}else{if(o.removeEvents){o.removeEvents();}}if((/object/i).test(o.tagName)){for(var q in o){if(typeof o[q]=="function"){o[q]=$empty;}}Element.dispose(o);}}if(!n){return;}i[n]=g[n]=null;};var d=function(){Hash.each(i,h);if(Browser.Engine.trident){$A(document.getElementsByTagName("object")).each(h);}if(window.CollectGarbage){CollectGarbage();}i=g=null;};var k=function(o,m,t,n,q,s){var p=o[t||m];var r=[];while(p){if(p.nodeType==1&&(!n||Element.match(p,n))){if(!q){return document.id(p,s);}r.push(p);}p=p[m];}return(q)?new Elements(r,{ddup:false,cash:!s}):null;};var f={html:"innerHTML","class":"className","for":"htmlFor",defaultValue:"defaultValue",text:(Browser.Engine.trident||(Browser.Engine.webkit&&Browser.Engine.version<420))?"innerText":"textContent"};var b=["compact","nowrap","ismap","declare","noshade","checked","disabled","readonly","multiple","selected","noresize","defer"];var l=["value","type","defaultValue","accessKey","cellPadding","cellSpacing","colSpan","frameBorder","maxLength","readOnly","rowSpan","tabIndex","useMap"];b=b.associate(b);Hash.extend(f,b);Hash.extend(f,l.associate(l.map(String.toLowerCase)));var a={before:function(n,m){if(m.parentNode){m.parentNode.insertBefore(n,m);}},after:function(n,m){if(!m.parentNode){return;}var o=m.nextSibling;(o)?m.parentNode.insertBefore(n,o):m.parentNode.appendChild(n);},bottom:function(n,m){m.appendChild(n);},top:function(n,m){var o=m.firstChild;(o)?m.insertBefore(n,o):m.appendChild(n);}};a.inside=a.bottom;Hash.each(a,function(m,n){n=n.capitalize();Element.implement("inject"+n,function(o){m(this,document.id(o,true));return this;});Element.implement("grab"+n,function(o){m(document.id(o,true),this);return this;});});Element.implement({set:function(q,n){switch($type(q)){case"object":for(var o in q){this.set(o,q[o]);}break;case"string":var m=Element.Properties.get(q);(m&&m.set)?m.set.apply(this,Array.slice(arguments,1)):this.setProperty(q,n);}return this;},get:function(n){var m=Element.Properties.get(n);return(m&&m.get)?m.get.apply(this,Array.slice(arguments,1)):this.getProperty(n);},erase:function(n){var m=Element.Properties.get(n);(m&&m.erase)?m.erase.apply(this):this.removeProperty(n);return this;},setProperty:function(n,o){var m=f[n];if(o==undefined){return this.removeProperty(n);}if(m&&b[n]){o=!!o;}(m)?this[m]=o:this.setAttribute(n,""+o);return this;},setProperties:function(m){for(var n in m){this.setProperty(n,m[n]);}return this;},getProperty:function(n){var m=f[n];var o=(m)?this[m]:this.getAttribute(n,2);return(b[n])?!!o:(m)?o:o||null;},getProperties:function(){var m=$A(arguments);return m.map(this.getProperty,this).associate(m);},removeProperty:function(n){var m=f[n];(m)?this[m]=(m&&b[n])?false:"":this.removeAttribute(n);return this;},removeProperties:function(){Array.each(arguments,this.removeProperty,this);return this;},hasClass:function(m){return this.className.contains(m," ");},addClass:function(m){if(!this.hasClass(m)){this.className=(this.className+" "+m).clean();}return this;},removeClass:function(m){this.className=this.className.replace(new RegExp("(^|\\s)"+m+"(?:\\s|$)"),"$1");return this;},toggleClass:function(m){return this.hasClass(m)?this.removeClass(m):this.addClass(m);},adopt:function(){Array.flatten(arguments).each(function(m){m=document.id(m,true);if(m){this.appendChild(m);}},this);return this;},appendText:function(n,m){return this.grab(this.getDocument().newTextNode(n),m);},grab:function(n,m){a[m||"bottom"](document.id(n,true),this);return this;},inject:function(n,m){a[m||"bottom"](this,document.id(n,true));return this;},replaces:function(m){m=document.id(m,true);m.parentNode.replaceChild(this,m);return this;},wraps:function(n,m){n=document.id(n,true);return this.replaces(n).grab(n,m);},getPrevious:function(m,n){return k(this,"previousSibling",null,m,false,n);},getAllPrevious:function(m,n){return k(this,"previousSibling",null,m,true,n);},getNext:function(m,n){return k(this,"nextSibling",null,m,false,n);},getAllNext:function(m,n){return k(this,"nextSibling",null,m,true,n);},getFirst:function(m,n){return k(this,"nextSibling","firstChild",m,false,n);},getLast:function(m,n){return k(this,"previousSibling","lastChild",m,false,n);},getParent:function(m,n){return k(this,"parentNode",null,m,false,n);},getParents:function(m,n){return k(this,"parentNode",null,m,true,n);},getSiblings:function(m,n){return this.getParent().getChildren(m,n).erase(this);},getChildren:function(m,n){return k(this,"nextSibling","firstChild",m,true,n);},getWindow:function(){return this.ownerDocument.window;},getDocument:function(){return this.ownerDocument;},getElementById:function(p,o){var n=this.ownerDocument.getElementById(p);if(!n){return null;}for(var m=n.parentNode;m!=this;m=m.parentNode){if(!m){return null;}}return document.id(n,o);},getSelected:function(){return new Elements($A(this.options).filter(function(m){return m.selected;}));},getComputedStyle:function(n){if(this.currentStyle){return this.currentStyle[n.camelCase()];}var m=this.getDocument().defaultView.getComputedStyle(this,null);return(m)?m.getPropertyValue([n.hyphenate()]):null;},toQueryString:function(){var m=[];this.getElements("input, select, textarea",true).each(function(n){if(!n.name||n.disabled||n.type=="submit"||n.type=="reset"||n.type=="file"){return;}var o=(n.tagName.toLowerCase()=="select")?Element.getSelected(n).map(function(p){return p.value;}):((n.type=="radio"||n.type=="checkbox")&&!n.checked)?null:n.value;$splat(o).each(function(p){if(typeof p!="undefined"){m.push(n.name+"="+encodeURIComponent(p));}});});return m.join("&");},clone:function(p,m){p=p!==false;var s=this.cloneNode(p);var o=function(w,v){if(!m){w.removeAttribute("id");}if(Browser.Engine.trident){w.clearAttributes();w.mergeAttributes(v);w.removeAttribute("uid");if(w.options){var x=w.options,t=v.options;for(var u=x.length;u--;){x[u].selected=t[u].selected;}}}var y=j[v.tagName.toLowerCase()];if(y&&v[y]){w[y]=v[y];}};if(p){var q=s.getElementsByTagName("*"),r=this.getElementsByTagName("*");for(var n=q.length;n--;){o(q[n],r[n]);}}o(s,this);return document.id(s);},destroy:function(){Element.empty(this);Element.dispose(this);h(this,true);return null;},empty:function(){$A(this.childNodes).each(function(m){Element.destroy(m);});return this;},dispose:function(){return(this.parentNode)?this.parentNode.removeChild(this):this;},hasChild:function(m){m=document.id(m,true);if(!m){return false;}if(Browser.Engine.webkit&&Browser.Engine.version<420){return $A(this.getElementsByTagName(m.tagName)).contains(m);}return(this.contains)?(this!=m&&this.contains(m)):!!(this.compareDocumentPosition(m)&16);},match:function(m){return(!m||(m==this)||(Element.get(this,"tag")==m));}});Native.implement([Element,Window,Document],{addListener:function(p,o){if(p=="unload"){var m=o,n=this;o=function(){n.removeListener("unload",o);m();};}else{i[this.uid]=this;}if(this.addEventListener){this.addEventListener(p,o,false);}else{this.attachEvent("on"+p,o);}return this;},removeListener:function(n,m){if(this.removeEventListener){this.removeEventListener(n,m,false);}else{this.detachEvent("on"+n,m);}return this;},retrieve:function(n,m){var p=c(this.uid),o=p[n];if(m!=undefined&&o==undefined){o=p[n]=m;}return $pick(o);},store:function(n,m){var o=c(this.uid);o[n]=m;return this;},eliminate:function(m){var n=c(this.uid);delete n[m];return this;}});window.addListener("unload",d);})();Element.Properties=new Hash;Element.Properties.style={set:function(a){this.style.cssText=a;},get:function(){return this.style.cssText;},erase:function(){this.style.cssText="";}};Element.Properties.tag={get:function(){return this.tagName.toLowerCase();}};Element.Properties.html=(function(){var c=document.createElement("div");var a={table:[1,"<table>","</table>"],select:[1,"<select>","</select>"],tbody:[2,"<table><tbody>","</tbody></table>"],tr:[3,"<table><tbody><tr>","</tr></tbody></table>"]};a.thead=a.tfoot=a.tbody;var b={set:function(){var f=Array.flatten(arguments).join("");var g=Browser.Engine.trident&&a[this.get("tag")];if(g){var h=c;h.innerHTML=g[1]+f+g[2];for(var d=g[0];d--;){h=h.firstChild;}this.empty().adopt(h.childNodes);}else{this.innerHTML=f;}}};b.erase=b.set;return b;})();if(Browser.Engine.webkit&&Browser.Engine.version<420){Element.Properties.text={get:function(){if(this.innerText){return this.innerText;}var a=this.ownerDocument.newElement("div",{html:this.innerHTML}).inject(this.ownerDocument.body);var b=a.innerText;a.destroy();return b;}};}(function(){Element.implement({scrollTo:function(i,j){if(b(this)){this.getWindow().scrollTo(i,j);}else{this.scrollLeft=i;this.scrollTop=j;}return this;},getSize:function(){if(b(this)){return this.getWindow().getSize();}return{x:this.offsetWidth,y:this.offsetHeight};},getScrollSize:function(){if(b(this)){return this.getWindow().getScrollSize();}return{x:this.scrollWidth,y:this.scrollHeight};},getScroll:function(){if(b(this)){return this.getWindow().getScroll();}return{x:this.scrollLeft,y:this.scrollTop};},getScrolls:function(){var j=this,i={x:0,y:0};while(j&&!b(j)){i.x+=j.scrollLeft;i.y+=j.scrollTop;j=j.parentNode;}return i;},getOffsetParent:function(){var i=this;if(b(i)){return null;}if(!Browser.Engine.trident){return i.offsetParent;}while((i=i.parentNode)&&!b(i)){if(d(i,"position")!="static"){return i;}}return null;},getOffsets:function(){if(this.getBoundingClientRect){var k=this.getBoundingClientRect(),n=document.id(this.getDocument().documentElement),q=n.getScroll(),l=this.getScrolls(),j=this.getScroll(),i=(d(this,"position")=="fixed");return{x:k.left.toInt()+l.x-j.x+((i)?0:q.x)-n.clientLeft,y:k.top.toInt()+l.y-j.y+((i)?0:q.y)-n.clientTop};}var m=this,o={x:0,y:0};if(b(this)){return o;}while(m&&!b(m)){o.x+=m.offsetLeft;o.y+=m.offsetTop;if(Browser.Engine.gecko){if(!g(m)){o.x+=c(m);o.y+=h(m);}var p=m.parentNode;if(p&&d(p,"overflow")!="visible"){o.x+=c(p);o.y+=h(p);}}else{if(m!=this&&Browser.Engine.webkit){o.x+=c(m);o.y+=h(m);}}m=m.offsetParent;}if(Browser.Engine.gecko&&!g(this)){o.x-=c(this);o.y-=h(this);}return o;},getPosition:function(l){if(b(this)){return{x:0,y:0};}var m=this.getOffsets(),j=this.getScrolls();var i={x:m.x-j.x,y:m.y-j.y};var k=(l&&(l=document.id(l)))?l.getPosition():{x:0,y:0};return{x:i.x-k.x,y:i.y-k.y};},getCoordinates:function(k){if(b(this)){return this.getWindow().getCoordinates();}var i=this.getPosition(k),j=this.getSize();var l={left:i.x,top:i.y,width:j.x,height:j.y};l.right=l.left+l.width;l.bottom=l.top+l.height;return l;},computePosition:function(i){return{left:i.x-f(this,"margin-left"),top:i.y-f(this,"margin-top")};},setPosition:function(i){return this.setStyles(this.computePosition(i));}});Native.implement([Document,Window],{getSize:function(){if(Browser.Engine.presto||Browser.Engine.webkit){var j=this.getWindow();return{x:j.innerWidth,y:j.innerHeight};}var i=a(this);return{x:i.clientWidth,y:i.clientHeight};},getScroll:function(){var j=this.getWindow(),i=a(this);return{x:j.pageXOffset||i.scrollLeft,y:j.pageYOffset||i.scrollTop};},getScrollSize:function(){var j=a(this),i=this.getSize();return{x:Math.max(j.scrollWidth,i.x),y:Math.max(j.scrollHeight,i.y)};},getPosition:function(){return{x:0,y:0};},getCoordinates:function(){var i=this.getSize();return{top:0,left:0,bottom:i.y,right:i.x,height:i.y,width:i.x};}});var d=Element.getComputedStyle;function f(i,j){return d(i,j).toInt()||0;}function g(i){return d(i,"-moz-box-sizing")=="border-box";}function h(i){return f(i,"border-top-width");}function c(i){return f(i,"border-left-width");}function b(i){return(/^(?:body|html)$/i).test(i.tagName);}function a(i){var j=i.getDocument();return(!j.compatMode||j.compatMode=="CSS1Compat")?j.html:j.body;}})();Element.alias("setPosition","position");Native.implement([Window,Document,Element],{getHeight:function(){return this.getSize().y;},getWidth:function(){return this.getSize().x;},getScrollTop:function(){return this.getScroll().y;},getScrollLeft:function(){return this.getScroll().x;},getScrollHeight:function(){return this.getScrollSize().y;},getScrollWidth:function(){return this.getScrollSize().x;},getTop:function(){return this.getPosition().y;},getLeft:function(){return this.getPosition().x;}});var Event=new Native({name:"Event",initialize:function(a,g){g=g||window;var l=g.document;a=a||g.event;if(a.$extended){return a;}this.$extended=true;var k=a.type;var h=a.target||a.srcElement;while(h&&h.nodeType==3){h=h.parentNode;}if(k.test(/key/)){var b=a.which||a.keyCode;var n=Event.Keys.keyOf(b);if(k=="keydown"){var d=b-111;if(d>0&&d<13){n="f"+d;}}n=n||String.fromCharCode(b).toLowerCase();}else{if(k.match(/(click|mouse|menu)/i)){l=(!l.compatMode||l.compatMode=="CSS1Compat")?l.html:l.body;var j={x:a.pageX||a.clientX+l.scrollLeft,y:a.pageY||a.clientY+l.scrollTop};var c={x:(a.pageX)?a.pageX-g.pageXOffset:a.clientX,y:(a.pageY)?a.pageY-g.pageYOffset:a.clientY};if(k.match(/DOMMouseScroll|mousewheel/)){var i=(a.wheelDelta)?a.wheelDelta/120:-(a.detail||0)/3;}var f=(a.which==3)||(a.button==2);var m=null;if(k.match(/over|out/)){switch(k){case"mouseover":m=a.relatedTarget||a.fromElement;break;case"mouseout":m=a.relatedTarget||a.toElement;}if(!(function(){while(m&&m.nodeType==3){m=m.parentNode;}return true;}).create({attempt:Browser.Engine.gecko})()){m=false;}}}}return $extend(this,{event:a,type:k,page:j,client:c,rightClick:f,wheel:i,relatedTarget:m,target:h,code:b,key:n,shift:a.shiftKey,control:a.ctrlKey,alt:a.altKey,meta:a.metaKey});}});Event.Keys=new Hash({enter:13,up:38,down:40,left:37,right:39,esc:27,space:32,backspace:8,tab:9,"delete":46});Event.implement({stop:function(){return this.stopPropagation().preventDefault();},stopPropagation:function(){if(this.event.stopPropagation){this.event.stopPropagation();}else{this.event.cancelBubble=true;}return this;},preventDefault:function(){if(this.event.preventDefault){this.event.preventDefault();}else{this.event.returnValue=false;}return this;}});Element.Properties.events={set:function(a){this.addEvents(a);}};Native.implement([Element,Window,Document],{addEvent:function(f,h){var i=this.retrieve("events",{});i[f]=i[f]||{keys:[],values:[]};if(i[f].keys.contains(h)){return this;}i[f].keys.push(h);var g=f,a=Element.Events.get(f),c=h,j=this;if(a){if(a.onAdd){a.onAdd.call(this,h);}if(a.condition){c=function(k){if(a.condition.call(this,k)){return h.call(this,k);}return true;};}g=a.base||g;}var d=function(){return h.call(j);};var b=Element.NativeEvents[g];if(b){if(b==2){d=function(k){k=new Event(k,j.getWindow());if(c.call(j,k)===false){k.stop();}};}this.addListener(g,d);}i[f].values.push(d);return this;},removeEvent:function(c,b){var a=this.retrieve("events");if(!a||!a[c]){return this;}var g=a[c].keys.indexOf(b);if(g==-1){return this;}a[c].keys.splice(g,1);var f=a[c].values.splice(g,1)[0];var d=Element.Events.get(c);if(d){if(d.onRemove){d.onRemove.call(this,b);}c=d.base||c;}return(Element.NativeEvents[c])?this.removeListener(c,f):this;},addEvents:function(a){for(var b in a){this.addEvent(b,a[b]);}return this;},removeEvents:function(a){var c;if($type(a)=="object"){for(c in a){this.removeEvent(c,a[c]);}return this;}var b=this.retrieve("events");if(!b){return this;}if(!a){for(c in b){this.removeEvents(c);}this.eliminate("events");}else{if(b[a]){while(b[a].keys[0]){this.removeEvent(a,b[a].keys[0]);}b[a]=null;}}return this;},fireEvent:function(d,b,a){var c=this.retrieve("events");if(!c||!c[d]){return this;}c[d].keys.each(function(f){f.create({bind:this,delay:a,"arguments":b})();},this);return this;},cloneEvents:function(d,a){d=document.id(d);var c=d.retrieve("events");if(!c){return this;}if(!a){for(var b in c){this.cloneEvents(d,b);}}else{if(c[a]){c[a].keys.each(function(f){this.addEvent(a,f);},this);}}return this;}});try{if(typeof HTMLElement!="undefined"){HTMLElement.prototype.fireEvent=Element.prototype.fireEvent;}}catch(e){}Element.NativeEvents={click:2,dblclick:2,mouseup:2,mousedown:2,contextmenu:2,mousewheel:2,DOMMouseScroll:2,mouseover:2,mouseout:2,mousemove:2,selectstart:2,selectend:2,keydown:2,keypress:2,keyup:2,focus:2,blur:2,change:2,reset:2,select:2,submit:2,load:1,unload:1,beforeunload:2,resize:1,move:1,DOMContentLoaded:1,readystatechange:1,error:1,abort:1,scroll:1};(function(){var a=function(b){var c=b.relatedTarget;if(c==undefined){return true;}if(c===false){return false;}return($type(this)!="document"&&c!=this&&c.prefix!="xul"&&!this.hasChild(c));};Element.Events=new Hash({mouseenter:{base:"mouseover",condition:a},mouseleave:{base:"mouseout",condition:a},mousewheel:{base:(Browser.Engine.gecko)?"DOMMouseScroll":"mousewheel"}});})();Element.Properties.styles={set:function(a){this.setStyles(a);}};Element.Properties.opacity={set:function(a,b){if(!b){if(a==0){if(this.style.visibility!="hidden"){this.style.visibility="hidden";}}else{if(this.style.visibility!="visible"){this.style.visibility="visible";}}}if(!this.currentStyle||!this.currentStyle.hasLayout){this.style.zoom=1;}if(Browser.Engine.trident){this.style.filter=(a==1)?"":"alpha(opacity="+a*100+")";}this.style.opacity=a;this.store("opacity",a);},get:function(){return this.retrieve("opacity",1);}};Element.implement({setOpacity:function(a){return this.set("opacity",a,true);},getOpacity:function(){return this.get("opacity");},setStyle:function(b,a){switch(b){case"opacity":return this.set("opacity",parseFloat(a));case"float":b=(Browser.Engine.trident)?"styleFloat":"cssFloat";}b=b.camelCase();if($type(a)!="string"){var c=(Element.Styles.get(b)||"@").split(" ");a=$splat(a).map(function(f,d){if(!c[d]){return"";}return($type(f)=="number")?c[d].replace("@",Math.round(f)):f;}).join(" ");}else{if(a==String(Number(a))){a=Math.round(a);}}this.style[b]=a;return this;},getStyle:function(h){switch(h){case"opacity":return this.get("opacity");case"float":h=(Browser.Engine.trident)?"styleFloat":"cssFloat";}h=h.camelCase();var a=this.style[h];if(!$chk(a)){a=[];for(var g in Element.ShortStyles){if(h!=g){continue;}for(var f in Element.ShortStyles[g]){a.push(this.getStyle(f));}return a.join(" ");}a=this.getComputedStyle(h);}if(a){a=String(a);var c=a.match(/rgba?\([\d\s,]+\)/);if(c){a=a.replace(c[0],c[0].rgbToHex());}}if(Browser.Engine.presto||(Browser.Engine.trident&&!$chk(parseInt(a,10)))){if(h.test(/^(height|width)$/)){var b=(h=="width")?["left","right"]:["top","bottom"],d=0;b.each(function(i){d+=this.getStyle("border-"+i+"-width").toInt()+this.getStyle("padding-"+i).toInt();},this);return this["offset"+h.capitalize()]-d+"px";}if((Browser.Engine.presto)&&String(a).test("px")){return a;}if(h.test(/(border(.+)Width|margin|padding)/)){return"0px";}}return a;},setStyles:function(b){for(var a in b){this.setStyle(a,b[a]);}return this;},getStyles:function(){var a={};Array.flatten(arguments).each(function(b){a[b]=this.getStyle(b);},this);return a;}});Element.Styles=new Hash({left:"@px",top:"@px",bottom:"@px",right:"@px",width:"@px",height:"@px",maxWidth:"@px",maxHeight:"@px",minWidth:"@px",minHeight:"@px",backgroundColor:"rgb(@, @, @)",backgroundPosition:"@px @px",color:"rgb(@, @, @)",fontSize:"@px",letterSpacing:"@px",lineHeight:"@px",clip:"rect(@px @px @px @px)",margin:"@px @px @px @px",padding:"@px @px @px @px",border:"@px @ rgb(@, @, @) @px @ rgb(@, @, @) @px @ rgb(@, @, @)",borderWidth:"@px @px @px @px",borderStyle:"@ @ @ @",borderColor:"rgb(@, @, @) rgb(@, @, @) rgb(@, @, @) rgb(@, @, @)",zIndex:"@",zoom:"@",fontWeight:"@",textIndent:"@px",opacity:"@"});Element.ShortStyles={margin:{},padding:{},border:{},borderWidth:{},borderStyle:{},borderColor:{}};["Top","Right","Bottom","Left"].each(function(h){var g=Element.ShortStyles;var b=Element.Styles;["margin","padding"].each(function(i){var j=i+h;g[i][j]=b[j]="@px";});var f="border"+h;g.border[f]=b[f]="@px @ rgb(@, @, @)";var d=f+"Width",a=f+"Style",c=f+"Color";g[f]={};g.borderWidth[d]=g[f][d]=b[d]="@px";g.borderStyle[a]=g[f][a]=b[a]="@";g.borderColor[c]=g[f][c]=b[c]="rgb(@, @, @)";});var Fx=new Class({Implements:[Chain,Events,Options],options:{fps:50,unit:false,duration:500,link:"ignore"},initialize:function(a){this.subject=this.subject||this;this.setOptions(a);this.options.duration=Fx.Durations[this.options.duration]||this.options.duration.toInt();var b=this.options.wait;if(b===false){this.options.link="cancel";}},getTransition:function(){return function(a){return -(Math.cos(Math.PI*a)-1)/2;};},step:function(){var a=$time();if(a<this.time+this.options.duration){var b=this.transition((a-this.time)/this.options.duration);this.set(this.compute(this.from,this.to,b));}else{this.set(this.compute(this.from,this.to,1));this.complete();}},set:function(a){return a;},compute:function(c,b,a){return Fx.compute(c,b,a);},check:function(){if(!this.timer){return true;}switch(this.options.link){case"cancel":this.cancel();return true;case"chain":this.chain(this.caller.bind(this,arguments));return false;}return false;},start:function(b,a){if(!this.check(b,a)){return this;}this.from=b;this.to=a;this.time=0;this.transition=this.getTransition();this.startTimer();this.onStart();return this;},complete:function(){if(this.stopTimer()){this.onComplete();}return this;},cancel:function(){if(this.stopTimer()){this.onCancel();}return this;},onStart:function(){this.fireEvent("start",this.subject);},onComplete:function(){this.fireEvent("complete",this.subject);if(!this.callChain()){this.fireEvent("chainComplete",this.subject);}},onCancel:function(){this.fireEvent("cancel",this.subject).clearChain();},pause:function(){this.stopTimer();return this;},resume:function(){this.startTimer();return this;},stopTimer:function(){if(!this.timer){return false;}this.time=$time()-this.time;this.timer=$clear(this.timer);return true;},startTimer:function(){if(this.timer){return false;}this.time=$time()-this.time;this.timer=this.step.periodical(Math.round(1000/this.options.fps),this);return true;}});Fx.compute=function(c,b,a){return(b-c)*a+c;};Fx.Durations={"short":250,normal:500,"long":1000};Fx.CSS=new Class({Extends:Fx,prepare:function(d,f,b){b=$splat(b);var c=b[1];if(!$chk(c)){b[1]=b[0];b[0]=d.getStyle(f);}var a=b.map(this.parse);return{from:a[0],to:a[1]};},parse:function(a){a=$lambda(a)();a=(typeof a=="string")?a.split(" "):$splat(a);return a.map(function(c){c=String(c);var b=false;Fx.CSS.Parsers.each(function(g,f){if(b){return;}var d=g.parse(c);if($chk(d)){b={value:d,parser:g};}});b=b||{value:c,parser:Fx.CSS.Parsers.String};return b;});},compute:function(d,c,b){var a=[];(Math.min(d.length,c.length)).times(function(f){a.push({value:d[f].parser.compute(d[f].value,c[f].value,b),parser:d[f].parser});});a.$family={name:"fx:css:value"};return a;},serve:function(c,b){if($type(c)!="fx:css:value"){c=this.parse(c);}var a=[];c.each(function(d){a=a.concat(d.parser.serve(d.value,b));});return a;},render:function(a,d,c,b){a.setStyle(d,this.serve(c,b));},search:function(a){if(Fx.CSS.Cache[a]){return Fx.CSS.Cache[a];}var b={};Array.each(document.styleSheets,function(f,d){var c=f.href;if(c&&c.contains("://")&&!c.contains(document.domain)){return;}var g=f.rules||f.cssRules;Array.each(g,function(k,h){if(!k.style){return;}var j=(k.selectorText)?k.selectorText.replace(/^\w+/,function(i){return i.toLowerCase();}):null;if(!j||!j.test("^"+a+"$")){return;}Element.Styles.each(function(l,i){if(!k.style[i]||Element.ShortStyles[i]){return;}l=String(k.style[i]);b[i]=(l.test(/^rgb/))?l.rgbToHex():l;});});});return Fx.CSS.Cache[a]=b;}});Fx.CSS.Cache={};Fx.CSS.Parsers=new Hash({Color:{parse:function(a){if(a.match(/^#[0-9a-f]{3,6}$/i)){return a.hexToRgb(true);}return((a=a.match(/(\d+),\s*(\d+),\s*(\d+)/)))?[a[1],a[2],a[3]]:false;},compute:function(c,b,a){return c.map(function(f,d){return Math.round(Fx.compute(c[d],b[d],a));});},serve:function(a){return a.map(Number);}},Number:{parse:parseFloat,compute:Fx.compute,serve:function(b,a){return(a)?b+a:b;}},String:{parse:$lambda(false),compute:$arguments(1),serve:$arguments(0)}});Fx.Morph=new Class({Extends:Fx.CSS,initialize:function(b,a){this.element=this.subject=document.id(b);this.parent(a);},set:function(a){if(typeof a=="string"){a=this.search(a);}for(var b in a){this.render(this.element,b,a[b],this.options.unit);}return this;},compute:function(f,d,c){var a={};for(var b in f){a[b]=this.parent(f[b],d[b],c);}return a;},start:function(b){if(!this.check(b)){return this;}if(typeof b=="string"){b=this.search(b);}var f={},d={};for(var c in b){var a=this.prepare(this.element,c,b[c]);f[c]=a.from;d[c]=a.to;}return this.parent(f,d);}});Element.Properties.morph={set:function(a){var b=this.retrieve("morph");if(b){b.cancel();}return this.eliminate("morph").store("morph:options",$extend({link:"cancel"},a));},get:function(a){if(a||!this.retrieve("morph")){if(a||!this.retrieve("morph:options")){this.set("morph",a);}this.store("morph",new Fx.Morph(this,this.retrieve("morph:options")));}return this.retrieve("morph");}};Element.implement({morph:function(a){this.get("morph").start(a);return this;}});Fx.implement({getTransition:function(){var a=this.options.transition||Fx.Transitions.Sine.easeInOut;if(typeof a=="string"){var b=a.split(":");a=Fx.Transitions;a=a[b[0]]||a[b[0].capitalize()];if(b[1]){a=a["ease"+b[1].capitalize()+(b[2]?b[2].capitalize():"")];}}return a;}});Fx.Transition=function(b,a){a=$splat(a);return $extend(b,{easeIn:function(c){return b(c,a);},easeOut:function(c){return 1-b(1-c,a);},easeInOut:function(c){return(c<=0.5)?b(2*c,a)/2:(2-b(2*(1-c),a))/2;}});};Fx.Transitions=new Hash({linear:$arguments(0)});Fx.Transitions.extend=function(a){for(var b in a){Fx.Transitions[b]=new Fx.Transition(a[b]);}};Fx.Transitions.extend({Pow:function(b,a){return Math.pow(b,a[0]||6);},Expo:function(a){return Math.pow(2,8*(a-1));},Circ:function(a){return 1-Math.sin(Math.acos(a));},Sine:function(a){return 1-Math.sin((1-a)*Math.PI/2);},Back:function(b,a){a=a[0]||1.618;return Math.pow(b,2)*((a+1)*b-a);},Bounce:function(g){var f;for(var d=0,c=1;1;d+=c,c/=2){if(g>=(7-4*d)/11){f=c*c-Math.pow((11-6*d-11*g)/4,2);break;}}return f;},Elastic:function(b,a){return Math.pow(2,10*--b)*Math.cos(20*b*Math.PI*(a[0]||1)/3);}});["Quad","Cubic","Quart","Quint"].each(function(b,a){Fx.Transitions[b]=new Fx.Transition(function(c){return Math.pow(c,[a+2]);});});Fx.Tween=new Class({Extends:Fx.CSS,initialize:function(b,a){this.element=this.subject=document.id(b);this.parent(a);},set:function(b,a){if(arguments.length==1){a=b;b=this.property||this.options.property;}this.render(this.element,b,a,this.options.unit);return this;},start:function(c,f,d){if(!this.check(c,f,d)){return this;}var b=Array.flatten(arguments);this.property=this.options.property||b.shift();var a=this.prepare(this.element,this.property,b);return this.parent(a.from,a.to);}});Element.Properties.tween={set:function(a){var b=this.retrieve("tween");if(b){b.cancel();}return this.eliminate("tween").store("tween:options",$extend({link:"cancel"},a));},get:function(a){if(a||!this.retrieve("tween")){if(a||!this.retrieve("tween:options")){this.set("tween",a);}this.store("tween",new Fx.Tween(this,this.retrieve("tween:options")));}return this.retrieve("tween");}};Element.implement({tween:function(a,c,b){this.get("tween").start(arguments);return this;},fade:function(c){var f=this.get("tween"),d="opacity",a;c=$pick(c,"toggle");switch(c){case"in":f.start(d,1);break;case"out":f.start(d,0);break;case"show":f.set(d,1);break;case"hide":f.set(d,0);break;case"toggle":var b=this.retrieve("fade:flag",this.get("opacity")==1);f.start(d,(b)?0:1);this.store("fade:flag",!b);a=true;break;default:f.start(d,arguments);}if(!a){this.eliminate("fade:flag");}return this;},highlight:function(c,a){if(!a){a=this.retrieve("highlight:original",this.getStyle("background-color"));a=(a=="transparent")?"#fff":a;}var b=this.get("tween");b.start("background-color",c||"#ffff88",a).chain(function(){this.setStyle("background-color",this.retrieve("highlight:original"));b.callChain();}.bind(this));return this;}});var Request=new Class({Implements:[Chain,Events,Options],options:{url:"",data:"",headers:{"X-Requested-With":"XMLHttpRequest",Accept:"text/javascript, text/html, application/xml, text/xml, */*"},async:true,format:false,method:"post",link:"ignore",isSuccess:null,emulation:true,urlEncoded:true,encoding:"utf-8",evalScripts:false,evalResponse:false,noCache:false},initialize:function(a){this.xhr=new Browser.Request();this.setOptions(a);this.options.isSuccess=this.options.isSuccess||this.isSuccess;this.headers=new Hash(this.options.headers);},onStateChange:function(){if(this.xhr.readyState!=4||!this.running){return;}this.running=false;this.status=0;$try(function(){this.status=this.xhr.status;}.bind(this));this.xhr.onreadystatechange=$empty;if(this.options.isSuccess.call(this,this.status)){this.response={text:this.xhr.responseText,xml:this.xhr.responseXML};this.success(this.response.text,this.response.xml);}else{this.response={text:null,xml:null};this.failure();}},isSuccess:function(){return((this.status>=200)&&(this.status<300));},processScripts:function(a){if(this.options.evalResponse||(/(ecma|java)script/).test(this.getHeader("Content-type"))){return $exec(a);}return a.stripScripts(this.options.evalScripts);},success:function(b,a){this.onSuccess(this.processScripts(b),a);},onSuccess:function(){this.fireEvent("complete",arguments).fireEvent("success",arguments).callChain();},failure:function(){this.onFailure();},onFailure:function(){this.fireEvent("complete").fireEvent("failure",this.xhr);},setHeader:function(a,b){this.headers.set(a,b);return this;},getHeader:function(a){return $try(function(){return this.xhr.getResponseHeader(a);}.bind(this));},check:function(){if(!this.running){return true;}switch(this.options.link){case"cancel":this.cancel();return true;case"chain":this.chain(this.caller.bind(this,arguments));return false;}return false;},send:function(l){if(!this.check(l)){return this;}this.running=true;var j=$type(l);if(j=="string"||j=="element"){l={data:l};}var d=this.options;l=$extend({data:d.data,url:d.url,method:d.method},l);var h=l.data,b=String(l.url),a=l.method.toLowerCase();switch($type(h)){case"element":h=document.id(h).toQueryString();break;case"object":case"hash":h=Hash.toQueryString(h);}if(this.options.format){var k="format="+this.options.format;h=(h)?k+"&"+h:k;}if(this.options.emulation&&!["get","post"].contains(a)){var i="_method="+a;h=(h)?i+"&"+h:i;a="post";}if(this.options.urlEncoded&&a=="post"){var c=(this.options.encoding)?"; charset="+this.options.encoding:"";this.headers.set("Content-type","application/x-www-form-urlencoded"+c);}if(this.options.noCache){var g="noCache="+new Date().getTime();h=(h)?g+"&"+h:g;}var f=b.lastIndexOf("/");if(f>-1&&(f=b.indexOf("#"))>-1){b=b.substr(0,f);}if(h&&a=="get"){b=b+(b.contains("?")?"&":"?")+h;h=null;}this.xhr.open(a.toUpperCase(),b,this.options.async);this.xhr.onreadystatechange=this.onStateChange.bind(this);this.headers.each(function(n,m){try{this.xhr.setRequestHeader(m,n);}catch(o){this.fireEvent("exception",[m,n]);}},this);this.fireEvent("request");this.xhr.send(h);if(!this.options.async){this.onStateChange();}return this;},cancel:function(){if(!this.running){return this;}this.running=false;this.xhr.abort();this.xhr.onreadystatechange=$empty;this.xhr=new Browser.Request();this.fireEvent("cancel");return this;}});(function(){var a={};["get","post","put","delete","GET","POST","PUT","DELETE"].each(function(b){a[b]=function(){var c=Array.link(arguments,{url:String.type,data:$defined});return this.send($extend(c,{method:b}));};});Request.implement(a);})();Element.Properties.send={set:function(a){var b=this.retrieve("send");if(b){b.cancel();}return this.eliminate("send").store("send:options",$extend({data:this,link:"cancel",method:this.get("method")||"post",url:this.get("action")},a));},get:function(a){if(a||!this.retrieve("send")){if(a||!this.retrieve("send:options")){this.set("send",a);}this.store("send",new Request(this.retrieve("send:options")));}return this.retrieve("send");}};Element.implement({send:function(a){var b=this.get("send");b.send({data:this,url:a||b.options.url});return this;}});Request.HTML=new Class({Extends:Request,options:{update:false,append:false,evalScripts:true,filter:false},processHTML:function(c){var b=c.match(/<body[^>]*>([\s\S]*?)<\/body>/i);c=(b)?b[1]:c;var a=new Element("div");return $try(function(){var d="<root>"+c+"</root>",h;if(Browser.Engine.trident){h=new ActiveXObject("Microsoft.XMLDOM");h.async=false;h.loadXML(d);}else{h=new DOMParser().parseFromString(d,"text/xml");}d=h.getElementsByTagName("root")[0];if(!d){return null;}for(var g=0,f=d.childNodes.length;g<f;g++){var j=Element.clone(d.childNodes[g],true,true);if(j){a.grab(j);}}return a;})||a.set("html",c);},success:function(d){var c=this.options,b=this.response;b.html=d.stripScripts(function(f){b.javascript=f;});var a=this.processHTML(b.html);b.tree=a.childNodes;b.elements=a.getElements("*");if(c.filter){b.tree=b.elements.filter(c.filter);}if(c.update){document.id(c.update).empty().set("html",b.html);}else{if(c.append){document.id(c.append).adopt(a.getChildren());}}if(c.evalScripts){$exec(b.javascript);}this.onSuccess(b.tree,b.elements,b.html,b.javascript);}});Element.Properties.load={set:function(a){var b=this.retrieve("load");if(b){b.cancel();}return this.eliminate("load").store("load:options",$extend({data:this,link:"cancel",update:this,method:"get"},a));},get:function(a){if(a||!this.retrieve("load")){if(a||!this.retrieve("load:options")){this.set("load",a);}this.store("load",new Request.HTML(this.retrieve("load:options")));}return this.retrieve("load");}};Element.implement({load:function(){this.get("load").send(Array.link(arguments,{data:Object.type,url:String.type}));return this;}});var JSON=new Hash(this.JSON&&{stringify:JSON.stringify,parse:JSON.parse}).extend({$specialChars:{"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},$replaceChars:function(a){return JSON.$specialChars[a]||"\\u00"+Math.floor(a.charCodeAt()/16).toString(16)+(a.charCodeAt()%16).toString(16);},encode:function(b){switch($type(b)){case"string":return'"'+b.replace(/[\x00-\x1f\\"]/g,JSON.$replaceChars)+'"';case"array":return"["+String(b.map(JSON.encode).clean())+"]";case"object":case"hash":var a=[];Hash.each(b,function(f,d){var c=JSON.encode(f);if(c){a.push(JSON.encode(d)+":"+c);}});return"{"+a+"}";case"number":case"boolean":return String(b);case false:return"null";}return null;},decode:function(string,secure){if($type(string)!="string"||!string.length){return null;}if(secure&&!(/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(string.replace(/\\./g,"@").replace(/"[^"\\\n\r]*"/g,""))){return null;}return eval("("+string+")");}});Request.JSON=new Class({Extends:Request,options:{secure:true},initialize:function(a){this.parent(a);this.headers.extend({Accept:"application/json","X-Request":"JSON"});},success:function(a){this.response.json=JSON.decode(a,this.options.secure);this.onSuccess(this.response.json,a);}});var Cookie=new Class({Implements:Options,options:{path:false,domain:false,duration:false,secure:false,document:document},initialize:function(b,a){this.key=b;this.setOptions(a);},write:function(b){b=encodeURIComponent(b);if(this.options.domain){b+="; domain="+this.options.domain;}if(this.options.path){b+="; path="+this.options.path;}if(this.options.duration){var a=new Date();a.setTime(a.getTime()+this.options.duration*24*60*60*1000);b+="; expires="+a.toGMTString();}if(this.options.secure){b+="; secure";}this.options.document.cookie=this.key+"="+b;return this;},read:function(){var a=this.options.document.cookie.match("(?:^|;)\\s*"+this.key.escapeRegExp()+"=([^;]*)");return(a)?decodeURIComponent(a[1]):null;},dispose:function(){new Cookie(this.key,$merge(this.options,{duration:-1})).write("");return this;}});Cookie.write=function(b,c,a){return new Cookie(b,a).write(c);};Cookie.read=function(a){return new Cookie(a).read();};Cookie.dispose=function(b,a){return new Cookie(b,a).dispose();};Element.Events.domready={onAdd:function(a){if(Browser.loaded){a.call(this);}}};(function(){var b=function(){if(Browser.loaded){return;}Browser.loaded=true;window.fireEvent("domready");document.fireEvent("domready");};window.addEvent("load",b);if(Browser.Engine.trident){var a=document.createElement("div");(function(){($try(function(){a.doScroll();return document.id(a).inject(document.body).set("html","temp").dispose();}))?b():arguments.callee.delay(50);})();}else{if(Browser.Engine.webkit&&Browser.Engine.version<525){(function(){(["loaded","complete"].contains(document.readyState))?b():arguments.callee.delay(50);})();}else{document.addEvent("DOMContentLoaded",b);}}})();Native.implement([Document,Element],{getElements:function(j,h){j=j.split(",");var c,f={};for(var d=0,b=j.length;d<b;d++){var a=j[d],g=Selectors.Utils.search(this,a,f);if(d!=0&&g.item){g=$A(g);}c=(d==0)?g:(c.item)?$A(c).concat(g):c.concat(g);}return new Elements(c,{ddup:(j.length>1),cash:!h});}});Element.implement({match:function(b){if(!b||(b==this)){return true;}var d=Selectors.Utils.parseTagAndID(b);var a=d[0],f=d[1];if(!Selectors.Filters.byID(this,f)||!Selectors.Filters.byTag(this,a)){return false;}var c=Selectors.Utils.parseSelector(b);return(c)?Selectors.Utils.filter(this,c,{}):true;}});var Selectors={Cache:{nth:{},parsed:{}}};Selectors.RegExps={id:(/#([\w-]+)/),tag:(/^(\w+|\*)/),quick:(/^(\w+|\*)$/),splitter:(/\s*([+>~\s])\s*([a-zA-Z#.*:\[])/g),combined:(/\.([\w-]+)|\[(\w+)(?:([!*^$~|]?=)(["']?)([^\4]*?)\4)?\]|:([\w-]+)(?:\(["']?(.*?)?["']?\)|$)/g)};Selectors.Utils={chk:function(b,c){if(!c){return true;}var a=$uid(b);if(!c[a]){return c[a]=true;}return false;},parseNthArgument:function(i){if(Selectors.Cache.nth[i]){return Selectors.Cache.nth[i];}var f=i.match(/^([+-]?\d*)?([a-z]+)?([+-]?\d*)?$/);if(!f){return false;}var h=parseInt(f[1],10);var d=(h||h===0)?h:1;var g=f[2]||false;var c=parseInt(f[3],10)||0;if(d!=0){c--;while(c<1){c+=d;}while(c>=d){c-=d;}}else{d=c;g="index";}switch(g){case"n":f={a:d,b:c,special:"n"};break;case"odd":f={a:2,b:0,special:"n"};break;case"even":f={a:2,b:1,special:"n"};break;case"first":f={a:0,special:"index"};break;case"last":f={special:"last-child"};break;case"only":f={special:"only-child"};break;default:f={a:(d-1),special:"index"};}return Selectors.Cache.nth[i]=f;},parseSelector:function(f){if(Selectors.Cache.parsed[f]){return Selectors.Cache.parsed[f];}var d,i={classes:[],pseudos:[],attributes:[]};while((d=Selectors.RegExps.combined.exec(f))){var j=d[1],h=d[2],g=d[3],b=d[5],c=d[6],k=d[7];if(j){i.classes.push(j);}else{if(c){var a=Selectors.Pseudo.get(c);if(a){i.pseudos.push({parser:a,argument:k});}else{i.attributes.push({name:c,operator:"=",value:k});}}else{if(h){i.attributes.push({name:h,operator:g,value:b});}}}}if(!i.classes.length){delete i.classes;}if(!i.attributes.length){delete i.attributes;}if(!i.pseudos.length){delete i.pseudos;}if(!i.classes&&!i.attributes&&!i.pseudos){i=null;}return Selectors.Cache.parsed[f]=i;},parseTagAndID:function(b){var a=b.match(Selectors.RegExps.tag);var c=b.match(Selectors.RegExps.id);return[(a)?a[1]:"*",(c)?c[1]:false];},filter:function(g,c,f){var d;if(c.classes){for(d=c.classes.length;d--;d){var h=c.classes[d];if(!Selectors.Filters.byClass(g,h)){return false;}}}if(c.attributes){for(d=c.attributes.length;d--;d){var b=c.attributes[d];if(!Selectors.Filters.byAttribute(g,b.name,b.operator,b.value)){return false;}}}if(c.pseudos){for(d=c.pseudos.length;d--;d){var a=c.pseudos[d];if(!Selectors.Filters.byPseudo(g,a.parser,a.argument,f)){return false;}}}return true;},getByTagAndID:function(b,a,d){if(d){var c=(b.getElementById)?b.getElementById(d,true):Element.getElementById(b,d,true);return(c&&Selectors.Filters.byTag(c,a))?[c]:[];}else{return b.getElementsByTagName(a);}},search:function(p,o,u){var b=[];var c=o.trim().replace(Selectors.RegExps.splitter,function(k,j,i){b.push(j);return":)"+i;}).split(":)");var q,f,B;for(var A=0,w=c.length;A<w;A++){var z=c[A];if(A==0&&Selectors.RegExps.quick.test(z)){q=p.getElementsByTagName(z);continue;}var a=b[A-1];var r=Selectors.Utils.parseTagAndID(z);var C=r[0],s=r[1];if(A==0){q=Selectors.Utils.getByTagAndID(p,C,s);}else{var d={},h=[];for(var y=0,x=q.length;y<x;y++){h=Selectors.Getters[a](h,q[y],C,s,d);}q=h;}var g=Selectors.Utils.parseSelector(z);if(g){f=[];for(var v=0,t=q.length;v<t;v++){B=q[v];if(Selectors.Utils.filter(B,g,u)){f.push(B);}}q=f;}}return q;}};Selectors.Getters={" ":function(j,h,k,a,f){var d=Selectors.Utils.getByTagAndID(h,k,a);for(var c=0,b=d.length;c<b;c++){var g=d[c];if(Selectors.Utils.chk(g,f)){j.push(g);}}return j;},">":function(j,h,k,a,g){var c=Selectors.Utils.getByTagAndID(h,k,a);for(var f=0,d=c.length;f<d;f++){var b=c[f];if(b.parentNode==h&&Selectors.Utils.chk(b,g)){j.push(b);}}return j;},"+":function(c,b,a,f,d){while((b=b.nextSibling)){if(b.nodeType==1){if(Selectors.Utils.chk(b,d)&&Selectors.Filters.byTag(b,a)&&Selectors.Filters.byID(b,f)){c.push(b);}break;}}return c;},"~":function(c,b,a,f,d){while((b=b.nextSibling)){if(b.nodeType==1){if(!Selectors.Utils.chk(b,d)){break;}if(Selectors.Filters.byTag(b,a)&&Selectors.Filters.byID(b,f)){c.push(b);}}}return c;}};Selectors.Filters={byTag:function(b,a){return(a=="*"||(b.tagName&&b.tagName.toLowerCase()==a));},byID:function(a,b){return(!b||(a.id&&a.id==b));},byClass:function(b,a){return(b.className&&b.className.contains&&b.className.contains(a," "));},byPseudo:function(a,d,c,b){return d.call(a,c,b);},byAttribute:function(c,d,b,f){var a=Element.prototype.getProperty.call(c,d);if(!a){return(b=="!=");}if(!b||f==undefined){return true;}switch(b){case"=":return(a==f);case"*=":return(a.contains(f));case"^=":return(a.substr(0,f.length)==f);case"$=":return(a.substr(a.length-f.length)==f);case"!=":return(a!=f);case"~=":return a.contains(f," ");case"|=":return a.contains(f,"-");}return false;}};Selectors.Pseudo=new Hash({checked:function(){return this.checked;},empty:function(){return !(this.innerText||this.textContent||"").length;},not:function(a){return !Element.match(this,a);},contains:function(a){return(this.innerText||this.textContent||"").contains(a);},"first-child":function(){return Selectors.Pseudo.index.call(this,0);},"last-child":function(){var a=this;while((a=a.nextSibling)){if(a.nodeType==1){return false;}}return true;},"only-child":function(){var b=this;while((b=b.previousSibling)){if(b.nodeType==1){return false;}}var a=this;while((a=a.nextSibling)){if(a.nodeType==1){return false;}}return true;},"nth-child":function(h,f){h=(h==undefined)?"n":h;var c=Selectors.Utils.parseNthArgument(h);if(c.special!="n"){return Selectors.Pseudo[c.special].call(this,c.a,f);}var g=0;f.positions=f.positions||{};var d=$uid(this);if(!f.positions[d]){var b=this;while((b=b.previousSibling)){if(b.nodeType!=1){continue;}g++;var a=f.positions[$uid(b)];if(a!=undefined){g=a+g;break;}}f.positions[d]=g;}return(f.positions[d]%c.a==c.b);},index:function(a){var b=this,c=0;while((b=b.previousSibling)){if(b.nodeType==1&&++c>a){return false;}}return(c==a);},even:function(b,a){return Selectors.Pseudo["nth-child"].call(this,"2n+1",a);},odd:function(b,a){return Selectors.Pseudo["nth-child"].call(this,"2n",a);},selected:function(){return this.selected;},enabled:function(){return(this.disabled===false);}});var Swiff=new Class({Implements:[Options],options:{id:null,height:1,width:1,container:null,properties:{},params:{quality:"high",allowScriptAccess:"always",wMode:"transparent",swLiveConnect:true},callBacks:{},vars:{}},toElement:function(){return this.object;},initialize:function(m,n){this.instance="Swiff_"+$time();this.setOptions(n);n=this.options;var b=this.id=n.id||this.instance;var a=document.id(n.container);Swiff.CallBacks[this.instance]={};var f=n.params,h=n.vars,g=n.callBacks;var i=$extend({height:n.height,width:n.width},n.properties);var l=this;for(var d in g){Swiff.CallBacks[this.instance][d]=(function(o){return function(){return o.apply(l.object,arguments);};})(g[d]);h[d]="Swiff.CallBacks."+this.instance+"."+d;}f.flashVars=Hash.toQueryString(h);if(Browser.Engine.trident){i.classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000";f.movie=m;}else{i.type="application/x-shockwave-flash";i.data=m;}var k='<object id="'+b+'"';for(var j in i){k+=" "+j+'="'+i[j]+'"';}k+=">";for(var c in f){if(f[c]){k+='<param name="'+c+'" value="'+f[c]+'" />';}}k+="</object>";this.object=((a)?a.empty():new Element("div")).set("html",k).firstChild;},replaces:function(a){a=document.id(a,true);a.parentNode.replaceChild(this.toElement(),a);return this;},inject:function(a){document.id(a,true).appendChild(this.toElement());return this;},remote:function(){return Swiff.remote.apply(Swiff,[this.toElement()].extend(arguments));}});Swiff.CallBacks={};Swiff.remote=function(obj,fn){var rs=obj.CallFunction('<invoke name="'+fn+'" returntype="javascript">'+__flash__argumentsToXML(arguments,2)+"</invoke>");return eval(rs);};//MooTools More, <http://mootools.net/more>. Copyright (c) 2006-2009 Aaron Newton <http://clientcide.com/>, Valerio Proietti <http://mad4milk.net> & the MooTools team <http://mootools.net/developers>, MIT Style License.

MooTools.More={version:"1.2.5.1",build:"254884f2b83651bf95260eed5c6cceb838e22d8e"};(function(){var a={language:"en-US",languages:{"en-US":{}},cascades:["en-US"]};
var b;MooTools.lang=new Events();$extend(MooTools.lang,{setLanguage:function(c){if(!a.languages[c]){return this;}a.language=c;this.load();this.fireEvent("langChange",c);
return this;},load:function(){var c=this.cascade(this.getCurrentLanguage());b={};$each(c,function(f,d){b[d]=this.lambda(f);},this);},getCurrentLanguage:function(){return a.language;
},addLanguage:function(c){a.languages[c]=a.languages[c]||{};return this;},cascade:function(f){var c=(a.languages[f]||{}).cascades||[];c.combine(a.cascades);
c.erase(f).push(f);var d=c.map(function(g){return a.languages[g];},this);return $merge.apply(this,d);},lambda:function(c){(c||{}).get=function(f,d){return $lambda(c[f]).apply(this,$splat(d));
};return c;},get:function(f,d,c){if(b&&b[f]){return(d?b[f].get(d,c):b[f]);}},set:function(d,f,c){this.addLanguage(d);langData=a.languages[d];if(!langData[f]){langData[f]={};
}$extend(langData[f],c);if(d==this.getCurrentLanguage()){this.load();this.fireEvent("langChange",d);}return this;},list:function(){return Hash.getKeys(a.languages);
}});})();Class.refactor=function(b,a){$each(a,function(f,d){var c=b.prototype[d];if(c&&(c=c._origin?c._origin:c)&&typeof f=="function"){b.implement(d,function(){var g=this.previous;
this.previous=c;var h=f.apply(this,arguments);this.previous=g;return h;});}else{b.implement(d,f);}});return b;};Class.Mutators.Binds=function(a){return a;
};Class.Mutators.initialize=function(a){return function(){$splat(this.Binds).each(function(b){var c=this[b];if(c){this[b]=c.bind(this);}},this);return a.apply(this,arguments);
};};Class.Occlude=new Class({occlude:function(c,b){b=document.id(b||this.element);var a=b.retrieve(c||this.property);if(a&&!$defined(this.occluded)){return this.occluded=a;
}this.occluded=false;b.store(c||this.property,this);return this.occluded;}});(function(){var a={wait:function(b){return this.chain(function(){this.callChain.delay($pick(b,500),this);
}.bind(this));}};Chain.implement(a);if(window.Fx){Fx.implement(a);["Css","Tween","Elements"].each(function(b){if(Fx[b]){Fx[b].implement(a);}});}Element.implement({chains:function(b){$splat($pick(b,["tween","morph","reveal"])).each(function(c){c=this.get(c);
if(!c){return;}c.setOptions({link:"chain"});},this);return this;},pauseFx:function(c,b){this.chains(b).get($pick(b,"tween")).wait(c);return this;}});})();
Array.implement({min:function(){return Math.min.apply(null,this);},max:function(){return Math.max.apply(null,this);},average:function(){return this.length?this.sum()/this.length:0;
},sum:function(){var a=0,b=this.length;if(b){do{a+=this[--b];}while(b);}return a;},unique:function(){return[].combine(this);},shuffle:function(){for(var b=this.length;
b&&--b;){var a=this[b],c=Math.floor(Math.random()*(b+1));this[b]=this[c];this[c]=a;}return this;}});(function(){var j=this.Date;if(!j.now){j.now=$time;
}j.Methods={ms:"Milliseconds",year:"FullYear",min:"Minutes",mo:"Month",sec:"Seconds",hr:"Hours"};["Date","Day","FullYear","Hours","Milliseconds","Minutes","Month","Seconds","Time","TimezoneOffset","Week","Timezone","GMTOffset","DayOfYear","LastMonth","LastDayOfMonth","UTCDate","UTCDay","UTCFullYear","AMPM","Ordinal","UTCHours","UTCMilliseconds","UTCMinutes","UTCMonth","UTCSeconds","UTCMilliseconds"].each(function(q){j.Methods[q.toLowerCase()]=q;
});var d=function(r,q){return new Array(q-String(r).length+1).join("0")+r;};j.implement({set:function(t,r){switch($type(t)){case"object":for(var s in t){this.set(s,t[s]);
}break;case"string":t=t.toLowerCase();var q=j.Methods;if(q[t]){this["set"+q[t]](r);}}return this;},get:function(r){r=r.toLowerCase();var q=j.Methods;if(q[r]){return this["get"+q[r]]();
}return null;},clone:function(){return new j(this.get("time"));},increment:function(q,s){q=q||"day";s=$pick(s,1);switch(q){case"year":return this.increment("month",s*12);
case"month":var r=this.get("date");this.set("date",1).set("mo",this.get("mo")+s);return this.set("date",r.min(this.get("lastdayofmonth")));case"week":return this.increment("day",s*7);
case"day":return this.set("date",this.get("date")+s);}if(!j.units[q]){throw new Error(q+" is not a supported interval");}return this.set("time",this.get("time")+s*j.units[q]());
},decrement:function(q,r){return this.increment(q,-1*$pick(r,1));},isLeapYear:function(){return j.isLeapYear(this.get("year"));},clearTime:function(){return this.set({hr:0,min:0,sec:0,ms:0});
},diff:function(r,q){if($type(r)=="string"){r=j.parse(r);}return((r-this)/j.units[q||"day"](3,3)).round();},getLastDayOfMonth:function(){return j.daysInMonth(this.get("mo"),this.get("year"));
},getDayOfYear:function(){return(j.UTC(this.get("year"),this.get("mo"),this.get("date")+1)-j.UTC(this.get("year"),0,1))/j.units.day();},getWeek:function(){return(this.get("dayofyear")/7).ceil();
},getOrdinal:function(q){return j.getMsg("ordinal",q||this.get("date"));},getTimezone:function(){return this.toString().replace(/^.*? ([A-Z]{3}).[0-9]{4}.*$/,"$1").replace(/^.*?\(([A-Z])[a-z]+ ([A-Z])[a-z]+ ([A-Z])[a-z]+\)$/,"$1$2$3");
},getGMTOffset:function(){var q=this.get("timezoneOffset");return((q>0)?"-":"+")+d((q.abs()/60).floor(),2)+d(q%60,2);},setAMPM:function(q){q=q.toUpperCase();
var r=this.get("hr");if(r>11&&q=="AM"){return this.decrement("hour",12);}else{if(r<12&&q=="PM"){return this.increment("hour",12);}}return this;},getAMPM:function(){return(this.get("hr")<12)?"AM":"PM";
},parse:function(q){this.set("time",j.parse(q));return this;},isValid:function(q){return !isNaN((q||this).valueOf());},format:function(q){if(!this.isValid()){return"invalid date";
}q=q||"%x %X";q=l[q.toLowerCase()]||q;var r=this;return q.replace(/%([a-z%])/gi,function(t,s){switch(s){case"a":return j.getMsg("days")[r.get("day")].substr(0,3);
case"A":return j.getMsg("days")[r.get("day")];case"b":return j.getMsg("months")[r.get("month")].substr(0,3);case"B":return j.getMsg("months")[r.get("month")];
case"c":return r.toString();case"d":return d(r.get("date"),2);case"D":return r.get("date");case"e":return r.get("date");case"H":return d(r.get("hr"),2);
case"I":return((r.get("hr")%12)||12);case"j":return d(r.get("dayofyear"),3);case"m":return d((r.get("mo")+1),2);case"M":return d(r.get("min"),2);case"o":return r.get("ordinal");
case"p":return j.getMsg(r.get("ampm"));case"s":return Math.round(r/1000);case"S":return d(r.get("seconds"),2);case"U":return d(r.get("week"),2);case"w":return r.get("day");
case"x":return r.format(j.getMsg("shortDate"));case"X":return r.format(j.getMsg("shortTime"));case"y":return r.get("year").toString().substr(2);case"Y":return r.get("year");
case"T":return r.get("GMTOffset");case"Z":return r.get("Timezone");case"z":return d(r.get("ms"),3);}return s;});},toISOString:function(){return this.format("iso8601");
}});j.alias("toISOString","toJSON");j.alias("diff","compare");j.alias("format","strftime");var l={db:"%Y-%m-%d %H:%M:%S",compact:"%Y%m%dT%H%M%S",iso8601:"%Y-%m-%dT%H:%M:%S%T",rfc822:"%a, %d %b %Y %H:%M:%S %Z","short":"%d %b %H:%M","long":"%B %d, %Y %H:%M"};
var h=[];var f=j.parse;var o=function(t,v,s){var r=-1;var u=j.getMsg(t+"s");switch($type(v)){case"object":r=u[v.get(t)];break;case"number":r=u[v];if(!r){throw new Error("Invalid "+t+" index: "+v);
}break;case"string":var q=u.filter(function(w){return this.test(w);},new RegExp("^"+v,"i"));if(!q.length){throw new Error("Invalid "+t+" string");}if(q.length>1){throw new Error("Ambiguous "+t);
}r=q[0];}return(s)?u.indexOf(r):r;};j.extend({getMsg:function(r,q){return MooTools.lang.get("Date",r,q);},units:{ms:$lambda(1),second:$lambda(1000),minute:$lambda(60000),hour:$lambda(3600000),day:$lambda(86400000),week:$lambda(608400000),month:function(r,q){var s=new j;
return j.daysInMonth($pick(r,s.get("mo")),$pick(q,s.get("year")))*86400000;},year:function(q){q=q||new j().get("year");return j.isLeapYear(q)?31622400000:31536000000;
}},daysInMonth:function(r,q){return[31,j.isLeapYear(q)?29:28,31,30,31,30,31,31,30,31,30,31][r];},isLeapYear:function(q){return((q%4===0)&&(q%100!==0))||(q%400===0);
},parse:function(s){var r=$type(s);if(r=="number"){return new j(s);}if(r!="string"){return s;}s=s.clean();if(!s.length){return null;}var q;h.some(function(u){var t=u.re.exec(s);
return(t)?(q=u.handler(t)):false;});return q||new j(f(s));},parseDay:function(q,r){return o("day",q,r);},parseMonth:function(r,q){return o("month",r,q);
},parseUTC:function(r){var q=new j(r);var s=j.UTC(q.get("year"),q.get("mo"),q.get("date"),q.get("hr"),q.get("min"),q.get("sec"),q.get("ms"));return new j(s);
},orderIndex:function(q){return j.getMsg("dateOrder").indexOf(q)+1;},defineFormat:function(q,r){l[q]=r;},defineFormats:function(q){for(var r in q){j.defineFormat(r,q[r]);
}},parsePatterns:h,defineParser:function(q){h.push((q.re&&q.handler)?q:m(q));},defineParsers:function(){Array.flatten(arguments).each(j.defineParser);},define2DigitYearStart:function(q){i=q%100;
n=q-i;}});var n=1900;var i=70;var k=function(q){return new RegExp("(?:"+j.getMsg(q).map(function(r){return r.substr(0,3);}).join("|")+")[a-z]*");};var a=function(q){switch(q){case"x":return((j.orderIndex("month")==1)?"%m[-./]%d":"%d[-./]%m")+"([-./]%y)?";
case"X":return"%H([.:]%M)?([.:]%S([.:]%s)?)? ?%p? ?%T?";}return null;};var p={d:/[0-2]?[0-9]|3[01]/,H:/[01]?[0-9]|2[0-3]/,I:/0?[1-9]|1[0-2]/,M:/[0-5]?\d/,s:/\d+/,o:/[a-z]*/,p:/[ap]\.?m\.?/,y:/\d{2}|\d{4}/,Y:/\d{4}/,T:/Z|[+-]\d{2}(?::?\d{2})?/};
p.m=p.I;p.S=p.M;var c;var b=function(q){c=q;p.a=p.A=k("days");p.b=p.B=k("months");h.each(function(s,r){if(s.format){h[r]=m(s.format);}});};var m=function(s){if(!c){return{format:s};
}var q=[];var r=(s.source||s).replace(/%([a-z])/gi,function(u,t){return a(t)||u;}).replace(/\((?!\?)/g,"(?:").replace(/ (?!\?|\*)/g,",? ").replace(/%([a-z%])/gi,function(u,t){var v=p[t];
if(!v){return t;}q.push(t);return"("+v.source+")";}).replace(/\[a-z\]/gi,"[a-z\\u00c0-\\uffff]");return{format:s,re:new RegExp("^"+r+"$","i"),handler:function(w){w=w.slice(1).associate(q);
var t=new j().clearTime(),v=w.y||w.Y;if(v!=null){g.call(t,"y",v);}if("d" in w){g.call(t,"d",1);}if("m" in w||"b" in w||"B" in w){g.call(t,"m",1);}for(var u in w){g.call(t,u,w[u]);
}return t;}};};var g=function(q,r){if(!r){return this;}switch(q){case"a":case"A":return this.set("day",j.parseDay(r,true));case"b":case"B":return this.set("mo",j.parseMonth(r,true));
case"d":return this.set("date",r);case"H":case"I":return this.set("hr",r);case"m":return this.set("mo",r-1);case"M":return this.set("min",r);case"p":return this.set("ampm",r.replace(/\./g,""));
case"S":return this.set("sec",r);case"s":return this.set("ms",("0."+r)*1000);case"w":return this.set("day",r);case"Y":return this.set("year",r);case"y":r=+r;
if(r<100){r+=n+(r<i?100:0);}return this.set("year",r);case"T":if(r=="Z"){r="+00";}var s=r.match(/([+-])(\d{2}):?(\d{2})?/);s=(s[1]+"1")*(s[2]*60+(+s[3]||0))+this.getTimezoneOffset();
return this.set("time",this-s*60000);}return this;};j.defineParsers("%Y([-./]%m([-./]%d((T| )%X)?)?)?","%Y%m%d(T%H(%M%S?)?)?","%x( %X)?","%d%o( %b( %Y)?)?( %X)?","%b( %d%o)?( %Y)?( %X)?","%Y %b( %d%o( %X)?)?","%o %b %d %X %T %Y");
MooTools.lang.addEvent("langChange",function(q){if(MooTools.lang.get("Date")){b(q);}}).fireEvent("langChange",MooTools.lang.getCurrentLanguage());})();
Date.implement({timeDiffInWords:function(a){return Date.distanceOfTimeInWords(this,a||new Date);},timeDiff:function(h,b){if(h==null){h=new Date;}var g=((h-this)/1000).toInt();
if(!g){return"0s";}var a={s:60,m:60,h:24,d:365,y:0};var f,d=[];for(var c in a){if(!g){break;}if((f=a[c])){d.unshift((g%f)+c);g=(g/f).toInt();}else{d.unshift(g+c);
}}return d.join(b||":");}});Date.alias("timeDiffInWords","timeAgoInWords");Date.extend({distanceOfTimeInWords:function(b,a){return Date.getTimePhrase(((a-b)/1000).toInt());
},getTimePhrase:function(g){var d=(g<0)?"Until":"Ago";if(g<0){g*=-1;}var b={minute:60,hour:60,day:24,week:7,month:52/12,year:12,eon:Infinity};var f="lessThanMinute";
for(var c in b){var a=b[c];if(g<1.5*a){if(g>0.75*a){f=c;}break;}g/=a;f=c+"s";}return Date.getMsg(f+d,g).substitute({delta:g.round()});}});Date.defineParsers({re:/^(?:tod|tom|yes)/i,handler:function(a){var b=new Date().clearTime();
switch(a[0]){case"tom":return b.increment();case"yes":return b.decrement();default:return b;}}},{re:/^(next|last) ([a-z]+)$/i,handler:function(f){var g=new Date().clearTime();
var b=g.getDay();var c=Date.parseDay(f[2],true);var a=c-b;if(c<=b){a+=7;}if(f[1]=="last"){a-=7;}return g.set("date",g.getDate()+a);}});Hash.implement({getFromPath:function(a){var b=this.getClean();
a.replace(/\[([^\]]+)\]|\.([^.[]+)|[^[.]+/g,function(c){if(!b){return null;}var d=arguments[2]||arguments[1]||arguments[0];b=(d in b)?b[d]:null;return c;
});return b;},cleanValues:function(a){a=a||$defined;this.each(function(c,b){if(!a(c)){this.erase(b);}},this);return this;},run:function(){var a=arguments;
this.each(function(c,b){if($type(c)=="function"){c.run(a);}});}});(function(){var c={a:"[Ã Ã¡Ã¢Ã£Ã¤Ã¥ÄƒÄ…]",A:"[Ã€ÃÃ‚ÃƒÃ„Ã…Ä‚Ä„]",c:"[Ä‡ÄÃ§]",C:"[Ä†ÄŒÃ‡]",d:"[ÄÄ‘]",D:"[ÄŽÃ]",e:"[Ã¨Ã©ÃªÃ«Ä›Ä™]",E:"[ÃˆÃ‰ÃŠÃ‹ÄšÄ˜]",g:"[ÄŸ]",G:"[Äž]",i:"[Ã¬Ã­Ã®Ã¯]",I:"[ÃŒÃÃŽÃ]",l:"[ÄºÄ¾Å‚]",L:"[Ä¹Ä½Å]",n:"[Ã±ÅˆÅ„]",N:"[Ã‘Å‡Åƒ]",o:"[Ã²Ã³Ã´ÃµÃ¶Ã¸Å‘]",O:"[Ã’Ã“Ã”Ã•Ã–Ã˜]",r:"[Å™Å•]",R:"[Å˜Å”]",s:"[Å¡Å¡ÅŸ]",S:"[Å ÅžÅš]",t:"[Å¥Å£]",T:"[Å¤Å¢]",ue:"[Ã¼]",UE:"[Ãœ]",u:"[Ã¹ÃºÃ»Å¯Âµ]",U:"[Ã™ÃšÃ›Å®]",y:"[Ã¿Ã½]",Y:"[Å¸Ã]",z:"[Å¾ÅºÅ¼]",Z:"[Å½Å¹Å»]",th:"[Ã¾]",TH:"[Ãž]",dh:"[Ã°]",DH:"[Ã]",ss:"[ÃŸ]",oe:"[Å“]",OE:"[Å’]",ae:"[Ã¦]",AE:"[Ã†]"},b={" ":"[\xa0\u2002\u2003\u2009]","*":"[\xb7]","'":"[\u2018\u2019]",'"':"[\u201c\u201d]","...":"[\u2026]","-":"[\u2013]","--":"[\u2014]","&raquo;":"[\uFFFD]"};
function a(g,h){var f=g;for(key in h){f=f.replace(new RegExp(h[key],"g"),key);}return f;}function d(f,g){f=f||"";var h=g?"<"+f+"(?!\\w)[^>]*>([\\s\\S]*?)</"+f+"(?!\\w)>":"</?"+f+"([^>]+)?>";
reg=new RegExp(h,"gi");return reg;}String.implement({standardize:function(){return a(this,c);},repeat:function(f){return new Array(f+1).join(this);},pad:function(g,i,f){if(this.length>=g){return this;
}var h=(i==null?" ":""+i).repeat(g-this.length).substr(0,g-this.length);if(!f||f=="right"){return this+h;}if(f=="left"){return h+this;}return h.substr(0,(h.length/2).floor())+this+h.substr(0,(h.length/2).ceil());
},getTags:function(f,g){return this.match(d(f,g))||[];},stripTags:function(f,g){return this.replace(d(f,g),"");},tidy:function(){return a(this,b);}});})();
String.implement({parseQueryString:function(d,a){if(d==null){d=true;}if(a==null){a=true;}var c=this.split(/[&;]/),b={};if(c.length){c.each(function(j){var f=j.indexOf("="),g=f<0?[""]:j.substr(0,f).match(/([^\]\[]+|(\B)(?=\]))/g),h=a?decodeURIComponent(j.substr(f+1)):j.substr(f+1),i=b;
g.each(function(l,k){if(d){l=decodeURIComponent(l);}var m=i[l];if(k<g.length-1){i=i[l]=m||{};}else{if($type(m)=="array"){m.push(h);}else{i[l]=$defined(m)?[m,h]:h;
}}});});}return b;},cleanQueryString:function(a){return this.split("&").filter(function(f){var b=f.indexOf("="),c=b<0?"":f.substr(0,b),d=f.substr(b+1);
return a?a.run([c,d]):$chk(d);}).join("&");}});var URI=new Class({Implements:Options,options:{},regex:/^(?:(\w+):)?(?:\/\/(?:(?:([^:@\/]*):?([^:@\/]*))?@)?([^:\/?#]*)(?::(\d*))?)?(\.\.?$|(?:[^?#\/]*\/)*)([^?#]*)(?:\?([^#]*))?(?:#(.*))?/,parts:["scheme","user","password","host","port","directory","file","query","fragment"],schemes:{http:80,https:443,ftp:21,rtsp:554,mms:1755,file:0},initialize:function(b,a){this.setOptions(a);
var c=this.options.base||URI.base;if(!b){b=c;}if(b&&b.parsed){this.parsed=$unlink(b.parsed);}else{this.set("value",b.href||b.toString(),c?new URI(c):false);
}},parse:function(c,b){var a=c.match(this.regex);if(!a){return false;}a.shift();return this.merge(a.associate(this.parts),b);},merge:function(b,a){if((!b||!b.scheme)&&(!a||!a.scheme)){return false;
}if(a){this.parts.every(function(c){if(b[c]){return false;}b[c]=a[c]||"";return true;});}b.port=b.port||this.schemes[b.scheme.toLowerCase()];b.directory=b.directory?this.parseDirectory(b.directory,a?a.directory:""):"/";
return b;},parseDirectory:function(b,c){b=(b.substr(0,1)=="/"?"":(c||"/"))+b;if(!b.test(URI.regs.directoryDot)){return b;}var a=[];b.replace(URI.regs.endSlash,"").split("/").each(function(d){if(d==".."&&a.length>0){a.pop();
}else{if(d!="."){a.push(d);}}});return a.join("/")+"/";},combine:function(a){return a.value||a.scheme+"://"+(a.user?a.user+(a.password?":"+a.password:"")+"@":"")+(a.host||"")+(a.port&&a.port!=this.schemes[a.scheme]?":"+a.port:"")+(a.directory||"/")+(a.file||"")+(a.query?"?"+a.query:"")+(a.fragment?"#"+a.fragment:"");
},set:function(b,d,c){if(b=="value"){var a=d.match(URI.regs.scheme);if(a){a=a[1];}if(a&&!$defined(this.schemes[a.toLowerCase()])){this.parsed={scheme:a,value:d};
}else{this.parsed=this.parse(d,(c||this).parsed)||(a?{scheme:a,value:d}:{value:d});}}else{if(b=="data"){this.setData(d);}else{this.parsed[b]=d;}}return this;
},get:function(a,b){switch(a){case"value":return this.combine(this.parsed,b?b.parsed:false);case"data":return this.getData();}return this.parsed[a]||"";
},go:function(){document.location.href=this.toString();},toURI:function(){return this;},getData:function(c,b){var a=this.get(b||"query");if(!$chk(a)){return c?null:{};
}var d=a.parseQueryString();return c?d[c]:d;},setData:function(a,c,b){if(typeof a=="string"){data=this.getData();data[arguments[0]]=arguments[1];a=data;
}else{if(c){a=$merge(this.getData(),a);}}return this.set(b||"query",Hash.toQueryString(a));},clearData:function(a){return this.set(a||"query","");}});URI.prototype.toString=URI.prototype.valueOf=function(){return this.get("value");
};URI.regs={endSlash:/\/$/,scheme:/^(\w+):/,directoryDot:/\.\/|\.$/};URI.base=new URI(document.getElements("base[href]",true).getLast(),{base:document.location});
String.implement({toURI:function(a){return new URI(this,a);}});URI=Class.refactor(URI,{combine:function(g,f){if(!f||g.scheme!=f.scheme||g.host!=f.host||g.port!=f.port){return this.previous.apply(this,arguments);
}var a=g.file+(g.query?"?"+g.query:"")+(g.fragment?"#"+g.fragment:"");if(!f.directory){return(g.directory||(g.file?"":"./"))+a;}var d=f.directory.split("/"),c=g.directory.split("/"),h="",j;
var b=0;for(j=0;j<d.length&&j<c.length&&d[j]==c[j];j++){}for(b=0;b<d.length-j-1;b++){h+="../";}for(b=j;b<c.length-1;b++){h+=c[b]+"/";}return(h||(g.file?"":"./"))+a;
},toAbsolute:function(a){a=new URI(a);if(a){a.set("directory","").set("file","");}return this.toRelative(a);},toRelative:function(a){return this.get("value",new URI(a));
}});Element.implement({tidy:function(){this.set("value",this.get("value").tidy());},getTextInRange:function(b,a){return this.get("value").substring(b,a);
},getSelectedText:function(){if(this.setSelectionRange){return this.getTextInRange(this.getSelectionStart(),this.getSelectionEnd());}return document.selection.createRange().text;
},getSelectedRange:function(){if($defined(this.selectionStart)){return{start:this.selectionStart,end:this.selectionEnd};}var f={start:0,end:0};var a=this.getDocument().selection.createRange();
if(!a||a.parentElement()!=this){return f;}var c=a.duplicate();if(this.type=="text"){f.start=0-c.moveStart("character",-100000);f.end=f.start+a.text.length;
}else{var b=this.get("value");var d=b.length;c.moveToElementText(this);c.setEndPoint("StartToEnd",a);if(c.text.length){d-=b.match(/[\n\r]*$/)[0].length;
}f.end=d-c.text.length;c.setEndPoint("StartToStart",a);f.start=d-c.text.length;}return f;},getSelectionStart:function(){return this.getSelectedRange().start;
},getSelectionEnd:function(){return this.getSelectedRange().end;},setCaretPosition:function(a){if(a=="end"){a=this.get("value").length;}this.selectRange(a,a);
return this;},getCaretPosition:function(){return this.getSelectedRange().start;},selectRange:function(f,a){if(this.setSelectionRange){this.focus();this.setSelectionRange(f,a);
}else{var c=this.get("value");var d=c.substr(f,a-f).replace(/\r/g,"").length;f=c.substr(0,f).replace(/\r/g,"").length;var b=this.createTextRange();b.collapse(true);
b.moveEnd("character",f+d);b.moveStart("character",f);b.select();}return this;},insertAtCursor:function(b,a){var d=this.getSelectedRange();var c=this.get("value");
this.set("value",c.substring(0,d.start)+b+c.substring(d.end,c.length));if($pick(a,true)){this.selectRange(d.start,d.start+b.length);}else{this.setCaretPosition(d.start+b.length);
}return this;},insertAroundCursor:function(b,a){b=$extend({before:"",defaultMiddle:"",after:""},b);var c=this.getSelectedText()||b.defaultMiddle;var h=this.getSelectedRange();
var g=this.get("value");if(h.start==h.end){this.set("value",g.substring(0,h.start)+b.before+c+b.after+g.substring(h.end,g.length));this.selectRange(h.start+b.before.length,h.end+b.before.length+c.length);
}else{var d=g.substring(h.start,h.end);this.set("value",g.substring(0,h.start)+b.before+d+b.after+g.substring(h.end,g.length));var f=h.start+b.before.length;
if($pick(a,true)){this.selectRange(f,f+d.length);}else{this.setCaretPosition(f+g.length);}}return this;}});Elements.from=function(f,d){if($pick(d,true)){f=f.stripScripts();
}var b,c=f.match(/^\s*<(t[dhr]|tbody|tfoot|thead)/i);if(c){b=new Element("table");var a=c[1].toLowerCase();if(["td","th","tr"].contains(a)){b=new Element("tbody").inject(b);
if(a!="tr"){b=new Element("tr").inject(b);}}}return(b||new Element("div")).set("html",f).getChildren();};(function(d,f){var c=/(.*?):relay\(((?:\(.*?\)|.)+)\)$/,b=/[+>~\s]/,g=function(h){var i=h.match(c);
return !i?{event:h}:{event:i[1],selector:i[2]};},a=function(n,h){var l=n.target;if(b.test(h=h.trim())){var k=this.getElements(h);for(var j=k.length;j--;
){var m=k[j];if(l==m||m.hasChild(l)){return m;}}}else{for(;l&&l!=this;l=l.parentNode){if(Element.match(l,h)){return document.id(l);}}}return null;};Element.implement({addEvent:function(l,k){var j=g(l);
if(j.selector){var i=this.retrieve("delegation:_delegateMonitors",{});if(!i[l]){var h=function(n){var m=a.call(this,n,j.selector);if(m){this.fireEvent(l,[n,m],0,m);
}}.bind(this);i[l]=h;d.call(this,j.event,h);}}return d.apply(this,arguments);},removeEvent:function(l,k){var j=g(l);if(j.selector){var i=this.retrieve("events");
if(!i||!i[l]||(k&&!i[l].keys.contains(k))){return this;}if(k){f.apply(this,[l,k]);}else{f.apply(this,l);}i=this.retrieve("events");if(i&&i[l]&&i[l].keys.length==0){var h=this.retrieve("delegation:_delegateMonitors",{});
f.apply(this,[j.event,h[l]]);delete h[l];}return this;}return f.apply(this,arguments);},fireEvent:function(l,i,h,n){var j=this.retrieve("events");var m,k;
if(i){m=i[0];k=i[1];}if(!j||!j[l]){return this;}j[l].keys.each(function(o){o.create({bind:n||this,delay:h,arguments:i})();},this);return this;}});})(Element.prototype.addEvent,Element.prototype.removeEvent);
try{if(typeof HTMLElement!="undefined"){HTMLElement.prototype.fireEvent=Element.prototype.fireEvent;}}catch(e){}Element.implement({measure:function(f){var h=function(i){return !!(!i||i.offsetHeight||i.offsetWidth);
};if(h(this)){return f.apply(this);}var d=this.getParent(),g=[],b=[];while(!h(d)&&d!=document.body){b.push(d.expose());d=d.getParent();}var c=this.expose();
var a=f.apply(this);c();b.each(function(i){i();});return a;},expose:function(){if(this.getStyle("display")!="none"){return $empty;}var a=this.style.cssText;
this.setStyles({display:"block",position:"absolute",visibility:"hidden"});return function(){this.style.cssText=a;}.bind(this);},getDimensions:function(a){a=$merge({computeSize:false},a);
var f={};var d=function(h,g){return(g.computeSize)?h.getComputedSize(g):h.getSize();};var b=this.getParent("body");if(b&&this.getStyle("display")=="none"){f=this.measure(function(){return d(this,a);
});}else{if(b){try{f=d(this,a);}catch(c){}}else{f={x:0,y:0};}}return $chk(f.x)?$extend(f,{width:f.x,height:f.y}):$extend(f,{x:f.width,y:f.height});},getComputedSize:function(a){if(a&&a.plains){a.planes=a.plains;
}a=$merge({styles:["padding","border"],planes:{height:["top","bottom"],width:["left","right"]},mode:"both"},a);var c={width:0,height:0};switch(a.mode){case"vertical":delete c.width;
delete a.planes.width;break;case"horizontal":delete c.height;delete a.planes.height;break;}var b=[];$each(a.planes,function(g,h){g.each(function(i){a.styles.each(function(j){b.push((j=="border")?j+"-"+i+"-width":j+"-"+i);
});});});var f={};b.each(function(g){f[g]=this.getComputedStyle(g);},this);var d=[];$each(a.planes,function(g,h){var i=h.capitalize();c["total"+i]=c["computed"+i]=0;
g.each(function(j){c["computed"+j.capitalize()]=0;b.each(function(l,k){if(l.test(j)){f[l]=f[l].toInt()||0;c["total"+i]=c["total"+i]+f[l];c["computed"+j.capitalize()]=c["computed"+j.capitalize()]+f[l];
}if(l.test(j)&&h!=l&&(l.test("border")||l.test("padding"))&&!d.contains(l)){d.push(l);c["computed"+i]=c["computed"+i]-f[l];}});});});["Width","Height"].each(function(h){var g=h.toLowerCase();
if(!$chk(c[g])){return;}c[g]=c[g]+this["offset"+h]+c["computed"+h];c["total"+h]=c[g]+c["total"+h];delete c["computed"+h];},this);return $extend(f,c);}});
(function(){var a=false,b=false;var c=function(){var d=new Element("div").setStyles({position:"fixed",top:0,right:0}).inject(document.body);a=(d.offsetTop===0);
d.dispose();b=true;};Element.implement({pin:function(i,g){if(!b){c();}if(this.getStyle("display")=="none"){return this;}var k,l=window.getScroll();if(i!==false){k=this.getPosition(a?document.body:this.getOffsetParent());
if(!this.retrieve("pin:_pinned")){var h={top:k.y-l.y,left:k.x-l.x};if(a&&!g){this.setStyle("position","fixed").setStyles(h);}else{var m=this.getOffsetParent(),j=this.getPosition(m),n=this.getStyles("left","top");
if(m&&n.left=="auto"||n.top=="auto"){this.setPosition(j);}if(this.getStyle("position")=="static"){this.setStyle("position","absolute");}j={x:n.left.toInt()-l.x,y:n.top.toInt()-l.y};
var f=function(){if(!this.retrieve("pin:_pinned")){return;}var o=window.getScroll();this.setStyles({left:j.x+o.x,top:j.y+o.y});}.bind(this);this.store("pin:_scrollFixer",f);
window.addEvent("scroll",f);}this.store("pin:_pinned",true);}}else{if(!this.retrieve("pin:_pinned")){return this;}var m=this.getParent(),d=(m.getComputedStyle("position")!="static"?m:m.getOffsetParent());
k=this.getPosition(d);this.store("pin:_pinned",false);var f=this.retrieve("pin:_scrollFixer");if(!f){this.setStyles({position:"absolute",top:k.y+l.y,left:k.x+l.x});
}else{this.store("pin:_scrollFixer",null);window.removeEvent("scroll",f);}this.removeClass("isPinned");}return this;},unpin:function(){return this.pin(false);
},togglepin:function(){return this.pin(!this.retrieve("pin:_pinned"));}});})();(function(){var a=Element.prototype.position;Element.implement({position:function(h){if(h&&($defined(h.x)||$defined(h.y))){return a?a.apply(this,arguments):this;
}$each(h||{},function(w,u){if(!$defined(w)){delete h[u];}});h=$merge({relativeTo:document.body,position:{x:"center",y:"center"},edge:false,offset:{x:0,y:0},returnPos:false,relFixedPosition:false,ignoreMargins:false,ignoreScroll:false,allowNegative:false},h);
var s={x:0,y:0},f=false;var c=this.measure(function(){return document.id(this.getOffsetParent());});if(c&&c!=this.getDocument().body){s=c.measure(function(){return this.getPosition();
});f=c!=document.id(h.relativeTo);h.offset.x=h.offset.x-s.x;h.offset.y=h.offset.y-s.y;}var t=function(u){if($type(u)!="string"){return u;}u=u.toLowerCase();
var v={};if(u.test("left")){v.x="left";}else{if(u.test("right")){v.x="right";}else{v.x="center";}}if(u.test("upper")||u.test("top")){v.y="top";}else{if(u.test("bottom")){v.y="bottom";
}else{v.y="center";}}return v;};h.edge=t(h.edge);h.position=t(h.position);if(!h.edge){if(h.position.x=="center"&&h.position.y=="center"){h.edge={x:"center",y:"center"};
}else{h.edge={x:"left",y:"top"};}}this.setStyle("position","absolute");var g=document.id(h.relativeTo)||document.body,d=g==document.body?window.getScroll():g.getPosition(),m=d.y,i=d.x;
var o=this.getDimensions({computeSize:true,styles:["padding","border","margin"]});var k={},p=h.offset.y,r=h.offset.x,l=window.getSize();switch(h.position.x){case"left":k.x=i+r;
break;case"right":k.x=i+r+g.offsetWidth;break;default:k.x=i+((g==document.body?l.x:g.offsetWidth)/2)+r;break;}switch(h.position.y){case"top":k.y=m+p;break;
case"bottom":k.y=m+p+g.offsetHeight;break;default:k.y=m+((g==document.body?l.y:g.offsetHeight)/2)+p;break;}if(h.edge){var b={};switch(h.edge.x){case"left":b.x=0;
break;case"right":b.x=-o.x-o.computedRight-o.computedLeft;break;default:b.x=-(o.totalWidth/2);break;}switch(h.edge.y){case"top":b.y=0;break;case"bottom":b.y=-o.y-o.computedTop-o.computedBottom;
break;default:b.y=-(o.totalHeight/2);break;}k.x+=b.x;k.y+=b.y;}k={left:((k.x>=0||f||h.allowNegative)?k.x:0).toInt(),top:((k.y>=0||f||h.allowNegative)?k.y:0).toInt()};
var j={left:"x",top:"y"};["minimum","maximum"].each(function(u){["left","top"].each(function(v){var w=h[u]?h[u][j[v]]:null;if(w!=null&&((u=="minimum")?k[v]<w:k[v]>w)){k[v]=w;
}});});if(g.getStyle("position")=="fixed"||h.relFixedPosition){var n=window.getScroll();k.top+=n.y;k.left+=n.x;}var q=g.getScroll();if(h.ignoreScroll){k.top-=q.y;
k.left-=q.x;}else{k.top+=q.y;k.left+=q.x;}if(h.ignoreMargins){k.left+=(h.edge.x=="right"?o["margin-right"]:h.edge.x=="center"?-o["margin-left"]+((o["margin-right"]+o["margin-left"])/2):-o["margin-left"]);
k.top+=(h.edge.y=="bottom"?o["margin-bottom"]:h.edge.y=="center"?-o["margin-top"]+((o["margin-bottom"]+o["margin-top"])/2):-o["margin-top"]);}k.left=Math.ceil(k.left);
k.top=Math.ceil(k.top);if(h.returnPos){return k;}else{this.setStyles(k);}return this;}});})();Element.implement({isDisplayed:function(){return this.getStyle("display")!="none";
},isVisible:function(){var a=this.offsetWidth,b=this.offsetHeight;return(a==0&&b==0)?false:(a>0&&b>0)?true:this.style.display!="none";},toggle:function(){return this[this.isDisplayed()?"hide":"show"]();
},hide:function(){var b;try{b=this.getStyle("display");}catch(a){}if(b=="none"){return this;}return this.store("element:_originalDisplay",b||"").setStyle("display","none");
},show:function(a){if(!a&&this.isDisplayed()){return this;}a=a||this.retrieve("element:_originalDisplay")||"block";return this.setStyle("display",(a=="none")?"block":a);
},swapClass:function(a,b){return this.removeClass(a).addClass(b);}});Document.implement({clearSelection:function(){if(document.selection&&document.selection.empty){document.selection.empty();
}else{if(window.getSelection){var a=window.getSelection();if(a&&a.removeAllRanges){a.removeAllRanges();}}}}});if(!window.Form){window.Form={};}(function(){Form.Request=new Class({Binds:["onSubmit","onFormValidate"],Implements:[Options,Events,Class.Occlude],options:{requestOptions:{evalScripts:true,useSpinner:true,emulation:false,link:"ignore"},sendButtonClicked:true,extraData:{},resetForm:true},property:"form.request",initialize:function(b,c,a){this.element=document.id(b);
if(this.occlude()){return this.occluded;}this.update=document.id(c);this.setOptions(a);this.makeRequest();if(this.options.resetForm){this.request.addEvent("success",function(){$try(function(){this.element.reset();
}.bind(this));if(window.OverText){OverText.update();}}.bind(this));}this.attach();},toElement:function(){return this.element;},makeRequest:function(){this.request=new Request.HTML($merge({update:this.update,emulation:false,spinnerTarget:this.element,method:this.element.get("method")||"post"},this.options.requestOptions)).addEvents({success:function(b,d,c,a){["complete","success"].each(function(f){this.fireEvent(f,[this.update,b,d,c,a]);
},this);}.bind(this),failure:function(){this.fireEvent("complete",arguments).fireEvent("failure",arguments);}.bind(this),exception:function(){this.fireEvent("failure",arguments);
}.bind(this)});},attach:function(a){a=$pick(a,true);method=a?"addEvent":"removeEvent";this.element[method]("click:relay(button, input[type=submit])",this.saveClickedButton.bind(this));
var b=this.element.retrieve("validator");if(b){b[method]("onFormValidate",this.onFormValidate);}else{this.element[method]("submit",this.onSubmit);}},detach:function(){this.attach(false);
return this;},enable:function(){this.attach();return this;},disable:function(){this.detach();return this;},onFormValidate:function(b,a,d){if(!d){return;
}var c=this.element.retrieve("validator");if(b||(c&&!c.options.stopOnFailure)){if(d&&d.stop){d.stop();}this.send();}},onSubmit:function(b){var a=this.element.retrieve("validator");
if(a){this.element.removeEvent("submit",this.onSubmit);a.addEvent("onFormValidate",this.onFormValidate);this.element.validate();return;}if(b){b.stop();
}this.send();},saveClickedButton:function(a,b){if(!this.options.sendButtonClicked){return;}if(!b.get("name")){return;}this.options.extraData[b.get("name")]=b.get("value")||true;
this.clickedCleaner=function(){delete this.options.extraData[b.get("name")];this.clickedCleaner=$empty;}.bind(this);},clickedCleaner:$empty,send:function(){var b=this.element.toQueryString().trim();
var a=$H(this.options.extraData).toQueryString();if(b){b+="&"+a;}else{b=a;}this.fireEvent("send",[this.element,b.parseQueryString()]);this.request.send({data:b,url:this.element.get("action")});
this.clickedCleaner();return this;}});Element.Properties.formRequest={set:function(){var a=Array.link(arguments,{options:Object.type,update:Element.type,updateId:String.type});
var c=a.update||a.updateId;var b=this.retrieve("form.request");if(c){if(b){b.update=document.id(c);}this.store("form.request:update",c);}if(a.options){if(b){b.setOptions(a.options);
}this.store("form.request:options",a.options);}return this;},get:function(){var a=Array.link(arguments,{options:Object.type,update:Element.type,updateId:String.type});
var b=a.update||a.updateId;if(a.options||b||!this.retrieve("form.request")){if(a.options||!this.retrieve("form.request:options")){this.set("form.request",a.options);
}if(b){this.set("form.request",b);}this.store("form.request",new Form.Request(this,this.retrieve("form.request:update"),this.retrieve("form.request:options")));
}return this.retrieve("form.request");}};Element.implement({formUpdate:function(b,a){this.get("formRequest",b,a).send();return this;}});})();Form.Request.Append=new Class({Extends:Form.Request,options:{useReveal:true,revealOptions:{},inject:"bottom"},makeRequest:function(){this.request=new Request.HTML($merge({url:this.element.get("action"),method:this.element.get("method")||"post",spinnerTarget:this.element},this.options.requestOptions,{evalScripts:false})).addEvents({success:function(b,h,g,a){var c;
var d=Elements.from(g);if(d.length==1){c=d[0];}else{c=new Element("div",{styles:{display:"none"}}).adopt(d);}c.inject(this.update,this.options.inject);
if(this.options.requestOptions.evalScripts){$exec(a);}this.fireEvent("beforeEffect",c);var f=function(){this.fireEvent("success",[c,this.update,b,h,g,a]);
}.bind(this);if(this.options.useReveal){c.get("reveal",this.options.revealOptions).chain(f);c.reveal();}else{f();}}.bind(this),failure:function(a){this.fireEvent("failure",a);
}.bind(this)});}});var OverText=new Class({Implements:[Options,Events,Class.Occlude],Binds:["reposition","assert","focus","hide"],options:{element:"label",positionOptions:{position:"upperLeft",edge:"upperLeft",offset:{x:4,y:2}},poll:false,pollInterval:250,wrap:false},property:"OverText",initialize:function(b,a){this.element=document.id(b);
if(this.occlude()){return this.occluded;}this.setOptions(a);this.attach(this.element);OverText.instances.push(this);if(this.options.poll){this.poll();}return this;
},toElement:function(){return this.element;},attach:function(){var a=this.options.textOverride||this.element.get("alt")||this.element.get("title");if(!a){return;
}this.text=new Element(this.options.element,{"class":"overTxtLabel",styles:{lineHeight:"normal",position:"absolute",cursor:"text"},html:a,events:{click:this.hide.pass(this.options.element=="label",this)}}).inject(this.element,"after");
if(this.options.element=="label"){if(!this.element.get("id")){this.element.set("id","input_"+new Date().getTime());}this.text.set("for",this.element.get("id"));
}if(this.options.wrap){this.textHolder=new Element("div",{styles:{lineHeight:"normal",position:"relative"},"class":"overTxtWrapper"}).adopt(this.text).inject(this.element,"before");
}return this.enable();},destroy:function(){this.element.eliminate("OverTextDiv").eliminate("OverText");this.disable();if(this.text){this.text.destroy();
}if(this.textHolder){this.textHolder.destroy();}return this;},disable:function(){this.element.removeEvents({focus:this.focus,blur:this.assert,change:this.assert});
window.removeEvent("resize",this.reposition);this.hide(true,true);return this;},enable:function(){this.element.addEvents({focus:this.focus,blur:this.assert,change:this.assert});
window.addEvent("resize",this.reposition);this.assert(true);this.reposition();return this;},wrap:function(){if(this.options.element=="label"){if(!this.element.get("id")){this.element.set("id","input_"+new Date().getTime());
}this.text.set("for",this.element.get("id"));}},startPolling:function(){this.pollingPaused=false;return this.poll();},poll:function(a){if(this.poller&&!a){return this;
}var b=function(){if(!this.pollingPaused){this.assert(true);}}.bind(this);if(a){$clear(this.poller);}else{this.poller=b.periodical(this.options.pollInterval,this);
}return this;},stopPolling:function(){this.pollingPaused=true;return this.poll(true);},focus:function(){if(this.text&&(!this.text.isDisplayed()||this.element.get("disabled"))){return;
}this.hide();},hide:function(c,a){if(this.text&&(this.text.isDisplayed()&&(!this.element.get("disabled")||a))){this.text.hide();this.fireEvent("textHide",[this.text,this.element]);
this.pollingPaused=true;if(!c){try{this.element.fireEvent("focus");this.element.focus();}catch(b){}}}return this;},show:function(){if(this.text&&!this.text.isDisplayed()){this.text.show();
this.reposition();this.fireEvent("textShow",[this.text,this.element]);this.pollingPaused=false;}return this;},assert:function(a){this[this.test()?"show":"hide"](a);
},test:function(){var a=this.element.get("value");return !a;},reposition:function(){this.assert(true);if(!this.element.isVisible()){return this.stopPolling().hide();
}if(this.text&&this.test()){this.text.position($merge(this.options.positionOptions,{relativeTo:this.element}));}return this;}});OverText.instances=[];$extend(OverText,{each:function(a){return OverText.instances.map(function(c,b){if(c.element&&c.text){return a.apply(OverText,[c,b]);
}return null;});},update:function(){return OverText.each(function(a){return a.reposition();});},hideAll:function(){return OverText.each(function(a){return a.hide(true,true);
});},showAll:function(){return OverText.each(function(a){return a.show();});}});if(window.Fx&&Fx.Reveal){Fx.Reveal.implement({hideInputs:Browser.Engine.trident?"select, input, textarea, object, embed, .overTxtLabel":false});
}Fx.Elements=new Class({Extends:Fx.CSS,initialize:function(b,a){this.elements=this.subject=$$(b);this.parent(a);},compute:function(h,j,k){var c={};for(var d in h){var a=h[d],f=j[d],g=c[d]={};
for(var b in a){g[b]=this.parent(a[b],f[b],k);}}return c;},set:function(b){for(var c in b){if(!this.elements[c]){continue;}var a=b[c];for(var d in a){this.render(this.elements[c],d,a[d],this.options.unit);
}}return this;},start:function(c){if(!this.check(c)){return this;}var j={},k={};for(var d in c){if(!this.elements[d]){continue;}var g=c[d],a=j[d]={},h=k[d]={};
for(var b in g){var f=this.prepare(this.elements[d],b,g[b]);a[b]=f.from;h[b]=f.to;}}return this.parent(j,k);}});Fx.Accordion=new Class({Extends:Fx.Elements,options:{fixedHeight:false,fixedWidth:false,display:0,show:false,height:true,width:false,opacity:true,alwaysHide:false,trigger:"click",initialDisplayFx:true,returnHeightToAuto:true},initialize:function(){var c=Array.link(arguments,{container:Element.type,options:Object.type,togglers:$defined,elements:$defined});
this.parent(c.elements,c.options);this.togglers=$$(c.togglers);this.previous=-1;this.internalChain=new Chain();if(this.options.alwaysHide){this.options.wait=true;
}if($chk(this.options.show)){this.options.display=false;this.previous=this.options.show;}if(this.options.start){this.options.display=false;this.options.show=false;
}this.effects={};if(this.options.opacity){this.effects.opacity="fullOpacity";}if(this.options.width){this.effects.width=this.options.fixedWidth?"fullWidth":"offsetWidth";
}if(this.options.height){this.effects.height=this.options.fixedHeight?"fullHeight":"scrollHeight";}for(var b=0,a=this.togglers.length;b<a;b++){this.addSection(this.togglers[b],this.elements[b]);
}this.elements.each(function(f,d){if(this.options.show===d){this.fireEvent("active",[this.togglers[d],f]);}else{for(var g in this.effects){f.setStyle(g,0);
}}},this);if($chk(this.options.display)||this.options.initialDisplayFx===false){this.display(this.options.display,this.options.initialDisplayFx);}if(this.options.fixedHeight!==false){this.options.returnHeightToAuto=false;
}this.addEvent("complete",this.internalChain.callChain.bind(this.internalChain));},addSection:function(f,c){f=document.id(f);c=document.id(c);var g=this.togglers.contains(f);
this.togglers.include(f);this.elements.include(c);var a=this.togglers.indexOf(f);var b=this.display.bind(this,a);f.store("accordion:display",b);f.addEvent(this.options.trigger,b);
if(this.options.height){c.setStyles({"padding-top":0,"border-top":"none","padding-bottom":0,"border-bottom":"none"});}if(this.options.width){c.setStyles({"padding-left":0,"border-left":"none","padding-right":0,"border-right":"none"});
}c.fullOpacity=1;if(this.options.fixedWidth){c.fullWidth=this.options.fixedWidth;}if(this.options.fixedHeight){c.fullHeight=this.options.fixedHeight;}c.setStyle("overflow","hidden");
if(!g){for(var d in this.effects){c.setStyle(d,0);}}return this;},removeSection:function(f,b){var a=this.togglers.indexOf(f);var c=this.elements[a];var d=function(){this.togglers.erase(f);
this.elements.erase(c);this.detach(f);}.bind(this);if(this.now==a||b!=undefined){this.display($pick(b,a-1>=0?a-1:0)).chain(d);}else{d();}return this;},detach:function(b){var a=function(c){c.removeEvent(this.options.trigger,c.retrieve("accordion:display"));
}.bind(this);if(!b){this.togglers.each(a);}else{a(b);}return this;},display:function(a,b){if(!this.check(a,b)){return this;}b=$pick(b,true);a=($type(a)=="element")?this.elements.indexOf(a):a;
if(a==this.previous&&!this.options.alwaysHide){return this;}if(this.options.returnHeightToAuto){var d=this.elements[this.previous];if(d&&!this.selfHidden){for(var c in this.effects){d.setStyle(c,d[this.effects[c]]);
}}}if((this.timer&&this.options.wait)||(a===this.previous&&!this.options.alwaysHide)){return this;}this.previous=a;var f={};this.elements.each(function(j,h){f[h]={};
var g;if(h!=a){g=true;}else{if(this.options.alwaysHide&&((j.offsetHeight>0&&this.options.height)||j.offsetWidth>0&&this.options.width)){g=true;this.selfHidden=true;
}}this.fireEvent(g?"background":"active",[this.togglers[h],j]);for(var k in this.effects){f[h][k]=g?0:j[this.effects[k]];}},this);this.internalChain.clearChain();
this.internalChain.chain(function(){if(this.options.returnHeightToAuto&&!this.selfHidden){var g=this.elements[a];if(g){g.setStyle("height","auto");}}}.bind(this));
return b?this.start(f):this.set(f);}});var Accordion=new Class({Extends:Fx.Accordion,initialize:function(){this.parent.apply(this,arguments);var a=Array.link(arguments,{container:Element.type});
this.container=a.container;},addSection:function(c,b,f){c=document.id(c);b=document.id(b);var d=this.togglers.contains(c);var a=this.togglers.length;if(a&&(!d||f)){f=$pick(f,a-1);
c.inject(this.togglers[f],"before");b.inject(c,"after");}else{if(this.container&&!d){c.inject(this.container);b.inject(this.container);}}return this.parent.apply(this,arguments);
}});Fx.Move=new Class({Extends:Fx.Morph,options:{relativeTo:document.body,position:"center",edge:false,offset:{x:0,y:0}},start:function(a){var b=this.element,c=b.getStyles("top","left");
if(c.top=="auto"||c.left=="auto"){b.setPosition(b.getPosition(b.getOffsetParent()));}return this.parent(b.position($merge(this.options,a,{returnPos:true})));
}});Element.Properties.move={set:function(a){var b=this.retrieve("move");if(b){b.cancel();}return this.eliminate("move").store("move:options",$extend({link:"cancel"},a));
},get:function(a){if(a||!this.retrieve("move")){if(a||!this.retrieve("move:options")){this.set("move",a);}this.store("move",new Fx.Move(this,this.retrieve("move:options")));
}return this.retrieve("move");}};Element.implement({move:function(a){this.get("move").start(a);return this;}});Fx.Reveal=new Class({Extends:Fx.Morph,options:{link:"cancel",styles:["padding","border","margin"],transitionOpacity:!Browser.Engine.trident4,mode:"vertical",display:function(){return this.element.get("tag")!="tr"?"block":"table-row";
},hideInputs:Browser.Engine.trident?"select, input, textarea, object, embed":false,opacity:1},dissolve:function(){try{if(!this.hiding&&!this.showing){if(this.element.getStyle("display")!="none"){this.hiding=true;
this.showing=false;this.hidden=true;this.cssText=this.element.style.cssText;var d=this.element.getComputedSize({styles:this.options.styles,mode:this.options.mode});
this.element.setStyle("display",$lambda(this.options.display).apply(this));if(this.options.transitionOpacity){d.opacity=this.options.opacity;}var b={};
$each(d,function(g,f){b[f]=[g,0];},this);this.element.setStyle("overflow","hidden");var a=this.options.hideInputs?this.element.getElements(this.options.hideInputs):null;
this.$chain.unshift(function(){if(this.hidden){this.hiding=false;$each(d,function(g,f){d[f]=g;},this);this.element.style.cssText=this.cssText;this.element.setStyle("display","none");
if(a){a.setStyle("visibility","visible");}}this.fireEvent("hide",this.element);this.callChain();}.bind(this));if(a){a.setStyle("visibility","hidden");}this.start(b);
}else{this.callChain.delay(10,this);this.fireEvent("complete",this.element);this.fireEvent("hide",this.element);}}else{if(this.options.link=="chain"){this.chain(this.dissolve.bind(this));
}else{if(this.options.link=="cancel"&&!this.hiding){this.cancel();this.dissolve();}}}}catch(c){this.hiding=false;this.element.setStyle("display","none");
this.callChain.delay(10,this);this.fireEvent("complete",this.element);this.fireEvent("hide",this.element);}return this;},reveal:function(){try{if(!this.showing&&!this.hiding){if(this.element.getStyle("display")=="none"){this.showing=true;
this.hiding=this.hidden=false;var d;this.cssText=this.element.style.cssText;this.element.measure(function(){d=this.element.getComputedSize({styles:this.options.styles,mode:this.options.mode});
}.bind(this));$each(d,function(g,f){d[f]=g;});if($chk(this.options.heightOverride)){d.height=this.options.heightOverride.toInt();}if($chk(this.options.widthOverride)){d.width=this.options.widthOverride.toInt();
}if(this.options.transitionOpacity){this.element.setStyle("opacity",0);d.opacity=this.options.opacity;}var b={height:0,display:$lambda(this.options.display).apply(this)};
$each(d,function(g,f){b[f]=0;});this.element.setStyles($merge(b,{overflow:"hidden"}));var a=this.options.hideInputs?this.element.getElements(this.options.hideInputs):null;
if(a){a.setStyle("visibility","hidden");}this.start(d);this.$chain.unshift(function(){this.element.style.cssText=this.cssText;this.element.setStyle("display",$lambda(this.options.display).apply(this));
if(!this.hidden){this.showing=false;}if(a){a.setStyle("visibility","visible");}this.callChain();this.fireEvent("show",this.element);}.bind(this));}else{this.callChain();
this.fireEvent("complete",this.element);this.fireEvent("show",this.element);}}else{if(this.options.link=="chain"){this.chain(this.reveal.bind(this));}else{if(this.options.link=="cancel"&&!this.showing){this.cancel();
this.reveal();}}}}catch(c){this.element.setStyles({display:$lambda(this.options.display).apply(this),visiblity:"visible",opacity:this.options.opacity});
this.showing=false;this.callChain.delay(10,this);this.fireEvent("complete",this.element);this.fireEvent("show",this.element);}return this;},toggle:function(){if(this.element.getStyle("display")=="none"){this.reveal();
}else{this.dissolve();}return this;},cancel:function(){this.parent.apply(this,arguments);this.element.style.cssText=this.cssText;this.hiding=false;this.showing=false;
return this;}});Element.Properties.reveal={set:function(a){var b=this.retrieve("reveal");if(b){b.cancel();}return this.eliminate("reveal").store("reveal:options",a);
},get:function(a){if(a||!this.retrieve("reveal")){if(a||!this.retrieve("reveal:options")){this.set("reveal",a);}this.store("reveal",new Fx.Reveal(this,this.retrieve("reveal:options")));
}return this.retrieve("reveal");}};Element.Properties.dissolve=Element.Properties.reveal;Element.implement({reveal:function(a){this.get("reveal",a).reveal();
return this;},dissolve:function(a){this.get("reveal",a).dissolve();return this;},nix:function(){var a=Array.link(arguments,{destroy:Boolean.type,options:Object.type});
this.get("reveal",a.options).dissolve().chain(function(){this[a.destroy?"destroy":"dispose"]();}.bind(this));return this;},wink:function(){var b=Array.link(arguments,{duration:Number.type,options:Object.type});
var a=this.get("reveal",b.options);a.reveal().chain(function(){(function(){a.dissolve();}).delay(b.duration||2000);});}});Fx.Scroll=new Class({Extends:Fx,options:{offset:{x:0,y:0},wheelStops:true},initialize:function(b,a){this.element=this.subject=document.id(b);
this.parent(a);var d=this.cancel.bind(this,false);if($type(this.element)!="element"){this.element=document.id(this.element.getDocument().body);}var c=this.element;
if(this.options.wheelStops){this.addEvent("start",function(){c.addEvent("mousewheel",d);},true);this.addEvent("complete",function(){c.removeEvent("mousewheel",d);
},true);}},set:function(){var a=Array.flatten(arguments);if(Browser.Engine.gecko){a=[Math.round(a[0]),Math.round(a[1])];}this.element.scrollTo(a[0]+this.options.offset.x,a[1]+this.options.offset.y);
},compute:function(c,b,a){return[0,1].map(function(d){return Fx.compute(c[d],b[d],a);});},start:function(c,h){if(!this.check(c,h)){return this;}var f=this.element.getScrollSize(),b=this.element.getScroll(),d={x:c,y:h};
for(var g in d){var a=f[g];if($chk(d[g])){d[g]=($type(d[g])=="number")?d[g]:a;}else{d[g]=b[g];}d[g]+=this.options.offset[g];}return this.parent([b.x,b.y],[d.x,d.y]);
},toTop:function(){return this.start(false,0);},toLeft:function(){return this.start(0,false);},toRight:function(){return this.start("right",false);},toBottom:function(){return this.start(false,"bottom");
},toElement:function(b){var a=document.id(b).getPosition(this.element);return this.start(a.x,a.y);},scrollIntoView:function(c,f,d){f=f?$splat(f):["x","y"];
var i={};c=document.id(c);var g=c.getPosition(this.element);var j=c.getSize();var h=this.element.getScroll();var a=this.element.getSize();var b={x:g.x+j.x,y:g.y+j.y};
["x","y"].each(function(k){if(f.contains(k)){if(b[k]>h[k]+a[k]){i[k]=b[k]-a[k];}if(g[k]<h[k]){i[k]=g[k];}}if(i[k]==null){i[k]=h[k];}if(d&&d[k]){i[k]=i[k]+d[k];
}},this);if(i.x!=h.x||i.y!=h.y){this.start(i.x,i.y);}return this;},scrollToCenter:function(c,f,d){f=f?$splat(f):["x","y"];c=$(c);var i={},g=c.getPosition(this.element),j=c.getSize(),h=this.element.getScroll(),a=this.element.getSize(),b={x:g.x+j.x,y:g.y+j.y};
["x","y"].each(function(k){if(f.contains(k)){i[k]=g[k]-(a[k]-j[k])/2;}if(i[k]==null){i[k]=h[k];}if(d&&d[k]){i[k]=i[k]+d[k];}},this);if(i.x!=h.x||i.y!=h.y){this.start(i.x,i.y);
}return this;}});Fx.Slide=new Class({Extends:Fx,options:{mode:"vertical",wrapper:false,hideOverflow:true,resetHeight:false},initialize:function(b,a){this.addEvent("complete",function(){this.open=(this.wrapper["offset"+this.layout.capitalize()]!=0);
if(this.open&&this.options.resetHeight){this.wrapper.setStyle("height","");}if(this.open&&Browser.Engine.webkit419){this.element.dispose().inject(this.wrapper);
}},true);this.element=this.subject=document.id(b);this.parent(a);var d=this.element.retrieve("wrapper");var c=this.element.getStyles("margin","position","overflow");
if(this.options.hideOverflow){c=$extend(c,{overflow:"hidden"});}if(this.options.wrapper){d=document.id(this.options.wrapper).setStyles(c);}this.wrapper=d||new Element("div",{styles:c}).wraps(this.element);
this.element.store("wrapper",this.wrapper).setStyle("margin",0);this.now=[];this.open=true;},vertical:function(){this.margin="margin-top";this.layout="height";
this.offset=this.element.offsetHeight;},horizontal:function(){this.margin="margin-left";this.layout="width";this.offset=this.element.offsetWidth;},set:function(a){this.element.setStyle(this.margin,a[0]);
this.wrapper.setStyle(this.layout,a[1]);return this;},compute:function(c,b,a){return[0,1].map(function(d){return Fx.compute(c[d],b[d],a);});},start:function(b,f){if(!this.check(b,f)){return this;
}this[f||this.options.mode]();var d=this.element.getStyle(this.margin).toInt();var c=this.wrapper.getStyle(this.layout).toInt();var a=[[d,c],[0,this.offset]];
var h=[[d,c],[-this.offset,0]];var g;switch(b){case"in":g=a;break;case"out":g=h;break;case"toggle":g=(c==0)?a:h;}return this.parent(g[0],g[1]);},slideIn:function(a){return this.start("in",a);
},slideOut:function(a){return this.start("out",a);},hide:function(a){this[a||this.options.mode]();this.open=false;return this.set([-this.offset,0]);},show:function(a){this[a||this.options.mode]();
this.open=true;return this.set([0,this.offset]);},toggle:function(a){return this.start("toggle",a);}});Element.Properties.slide={set:function(b){var a=this.retrieve("slide");
if(a){a.cancel();}return this.eliminate("slide").store("slide:options",$extend({link:"cancel"},b));},get:function(a){if(a||!this.retrieve("slide")){if(a||!this.retrieve("slide:options")){this.set("slide",a);
}this.store("slide",new Fx.Slide(this,this.retrieve("slide:options")));}return this.retrieve("slide");}};Element.implement({slide:function(d,f){d=d||"toggle";
var b=this.get("slide"),a;switch(d){case"hide":b.hide(f);break;case"show":b.show(f);break;case"toggle":var c=this.retrieve("slide:flag",b.open);b[c?"slideOut":"slideIn"](f);
this.store("slide:flag",!c);a=true;break;default:b.start(d,f);}if(!a){this.eliminate("slide:flag");}return this;}});var SmoothScroll=Fx.SmoothScroll=new Class({Extends:Fx.Scroll,initialize:function(b,c){c=c||document;
this.doc=c.getDocument();var d=c.getWindow();this.parent(this.doc,b);this.links=$$(this.options.links||this.doc.links);var a=d.location.href.match(/^[^#]*/)[0]+"#";
this.links.each(function(g){if(g.href.indexOf(a)!=0){return;}var f=g.href.substr(a.length);if(f){this.useLink(g,f);}},this);if(!Browser.Engine.webkit419){this.addEvent("complete",function(){d.location.hash=this.anchor;
},true);}},useLink:function(c,a){var b;c.addEvent("click",function(d){if(b!==false&&!b){b=document.id(a)||this.doc.getElement("a[name="+a+"]");}if(b){d.preventDefault();
this.anchor=a;this.toElement(b).chain(function(){this.fireEvent("scrolledTo",[c,b]);}.bind(this));c.blur();}}.bind(this));}});Request.Queue=new Class({Implements:[Options,Events],Binds:["attach","request","complete","cancel","success","failure","exception"],options:{stopOnFailure:true,autoAdvance:true,concurrent:1,requests:{}},initialize:function(a){if(a){var b=a.requests;
delete a.requests;}this.setOptions(a);this.requests=new Hash;this.queue=[];this.reqBinders={};if(b){this.addRequests(b);}},addRequest:function(a,b){this.requests.set(a,b);
this.attach(a,b);return this;},addRequests:function(a){$each(a,function(c,b){this.addRequest(b,c);},this);return this;},getName:function(a){return this.requests.keyOf(a);
},attach:function(a,b){if(b._groupSend){return this;}["request","complete","cancel","success","failure","exception"].each(function(c){if(!this.reqBinders[a]){this.reqBinders[a]={};
}this.reqBinders[a][c]=function(){this["on"+c.capitalize()].apply(this,[a,b].extend(arguments));}.bind(this);b.addEvent(c,this.reqBinders[a][c]);},this);
b._groupSend=b.send;b.send=function(c){this.send(a,c);return b;}.bind(this);return this;},removeRequest:function(b){var a=$type(b)=="object"?this.getName(b):b;
if(!a&&$type(a)!="string"){return this;}b=this.requests.get(a);if(!b){return this;}["request","complete","cancel","success","failure","exception"].each(function(c){b.removeEvent(c,this.reqBinders[a][c]);
},this);b.send=b._groupSend;delete b._groupSend;return this;},getRunning:function(){return this.requests.filter(function(a){return a.running;});},isRunning:function(){return !!(this.getRunning().getKeys().length);
},send:function(b,a){var c=function(){this.requests.get(b)._groupSend(a);this.queue.erase(c);}.bind(this);c.name=b;if(this.getRunning().getKeys().length>=this.options.concurrent||(this.error&&this.options.stopOnFailure)){this.queue.push(c);
}else{c();}return this;},hasNext:function(a){return(!a)?!!this.queue.length:!!this.queue.filter(function(b){return b.name==a;}).length;},resume:function(){this.error=false;
(this.options.concurrent-this.getRunning().getKeys().length).times(this.runNext,this);return this;},runNext:function(a){if(!this.queue.length){return this;
}if(!a){this.queue[0]();}else{var b;this.queue.each(function(c){if(!b&&c.name==a){b=true;c();}});}return this;},runAll:function(){this.queue.each(function(a){a();
});return this;},clear:function(a){if(!a){this.queue.empty();}else{this.queue=this.queue.map(function(b){if(b.name!=a){return b;}else{return false;}}).filter(function(b){return b;
});}return this;},cancel:function(a){this.requests.get(a).cancel();return this;},onRequest:function(){this.fireEvent("request",arguments);},onComplete:function(){this.fireEvent("complete",arguments);
if(!this.queue.length){this.fireEvent("end");}},onCancel:function(){if(this.options.autoAdvance&&!this.error){this.runNext();}this.fireEvent("cancel",arguments);
},onSuccess:function(){if(this.options.autoAdvance&&!this.error){this.runNext();}this.fireEvent("success",arguments);},onFailure:function(){this.error=true;
if(!this.options.stopOnFailure&&this.options.autoAdvance){this.runNext();}this.fireEvent("failure",arguments);},onException:function(){this.error=true;
if(!this.options.stopOnFailure&&this.options.autoAdvance){this.runNext();}this.fireEvent("exception",arguments);}});Request.implement({options:{initialDelay:5000,delay:5000,limit:60000},startTimer:function(b){var a=function(){if(!this.running){this.send({data:b});
}};this.timer=a.delay(this.options.initialDelay,this);this.lastDelay=this.options.initialDelay;this.completeCheck=function(c){$clear(this.timer);this.lastDelay=(c)?this.options.delay:(this.lastDelay+this.options.delay).min(this.options.limit);
this.timer=a.delay(this.lastDelay,this);};return this.addEvent("complete",this.completeCheck);},stopTimer:function(){$clear(this.timer);return this.removeEvent("complete",this.completeCheck);
}});var Asset={javascript:function(g,d){d=$extend({onload:$empty,document:document,check:$lambda(true)},d);if(d.onLoad){d.onload=d.onLoad;delete d.onLoad;
}var b=new Element("script",{src:g,type:"text/javascript"});var f=d.onload.bind(b),a=d.check,h=d.document;delete d.onload;delete d.check;delete d.document;
b.addEvents({load:f,readystatechange:function(){if(["loaded","complete"].contains(this.readyState)){f();}}}).set(d);if(Browser.Engine.webkit419){var c=(function(){if(!$try(a)){return;
}$clear(c);f();}).periodical(50);}return b.inject(h.head);},css:function(b,a){a=a||{};var c=a.onload||a.onLoad;if(c){a.events=a.events||{};a.events.load=c;
delete a.onload;delete a.onLoad;}return new Element("link",$merge({rel:"stylesheet",media:"screen",type:"text/css",href:b},a)).inject(document.head);},image:function(c,b){b=$merge({onload:$empty,onabort:$empty,onerror:$empty},b);
var d=new Image();var a=document.id(d)||new Element("img");["load","abort","error"].each(function(f){var h="on"+f;var g=f.capitalize();if(b["on"+g]){b[h]=b["on"+g];
delete b["on"+g];}var i=b[h];delete b[h];d[h]=function(){if(!d){return;}if(!a.parentNode){a.width=d.width;a.height=d.height;}d=d.onload=d.onabort=d.onerror=null;
i.delay(1,a,a);a.fireEvent(f,a,1);};});d.src=a.src=c;if(d&&d.complete){d.onload.delay(1);}return a.set(b);},images:function(d,c){c=$merge({onComplete:$empty,onProgress:$empty,onError:$empty,properties:{}},c);
d=$splat(d);var a=[];var b=0;return new Elements(d.map(function(g,f){return Asset.image(g,$extend(c.properties,{onload:function(){c.onProgress.call(this,b,f);
b++;if(b==d.length){c.onComplete();}},onerror:function(){c.onError.call(this,b,f);b++;if(b==d.length){c.onComplete();}}}));}));}};var Color=new Native({initialize:function(b,c){if(arguments.length>=3){c="rgb";
b=Array.slice(arguments,0,3);}else{if(typeof b=="string"){if(b.match(/rgb/)){b=b.rgbToHex().hexToRgb(true);}else{if(b.match(/hsb/)){b=b.hsbToRgb();}else{b=b.hexToRgb(true);
}}}}c=c||"rgb";switch(c){case"hsb":var a=b;b=b.hsbToRgb();b.hsb=a;break;case"hex":b=b.hexToRgb(true);break;}b.rgb=b.slice(0,3);b.hsb=b.hsb||b.rgbToHsb();
b.hex=b.rgbToHex();return $extend(b,this);}});Color.implement({mix:function(){var a=Array.slice(arguments);var c=($type(a.getLast())=="number")?a.pop():50;
var b=this.slice();a.each(function(d){d=new Color(d);for(var f=0;f<3;f++){b[f]=Math.round((b[f]/100*(100-c))+(d[f]/100*c));}});return new Color(b,"rgb");
},invert:function(){return new Color(this.map(function(a){return 255-a;}));},setHue:function(a){return new Color([a,this.hsb[1],this.hsb[2]],"hsb");},setSaturation:function(a){return new Color([this.hsb[0],a,this.hsb[2]],"hsb");
},setBrightness:function(a){return new Color([this.hsb[0],this.hsb[1],a],"hsb");}});var $RGB=function(d,c,a){return new Color([d,c,a],"rgb");};var $HSB=function(d,c,a){return new Color([d,c,a],"hsb");
};var $HEX=function(a){return new Color(a,"hex");};Array.implement({rgbToHsb:function(){var b=this[0],c=this[1],k=this[2],h=0;var j=Math.max(b,c,k),f=Math.min(b,c,k);
var l=j-f;var i=j/255,g=(j!=0)?l/j:0;if(g!=0){var d=(j-b)/l;var a=(j-c)/l;var m=(j-k)/l;if(b==j){h=m-a;}else{if(c==j){h=2+d-m;}else{h=4+a-d;}}h/=6;if(h<0){h++;
}}return[Math.round(h*360),Math.round(g*100),Math.round(i*100)];},hsbToRgb:function(){var c=Math.round(this[2]/100*255);if(this[1]==0){return[c,c,c];}else{var a=this[0]%360;
var g=a%60;var h=Math.round((this[2]*(100-this[1]))/10000*255);var d=Math.round((this[2]*(6000-this[1]*g))/600000*255);var b=Math.round((this[2]*(6000-this[1]*(60-g)))/600000*255);
switch(Math.floor(a/60)){case 0:return[c,b,h];case 1:return[d,c,h];case 2:return[h,c,b];case 3:return[h,d,c];case 4:return[b,h,c];case 5:return[c,h,d];
}}return false;}});String.implement({rgbToHsb:function(){var a=this.match(/\d{1,3}/g);return(a)?a.rgbToHsb():null;},hsbToRgb:function(){var a=this.match(/\d{1,3}/g);
return(a)?a.hsbToRgb():null;}});var Group=new Class({initialize:function(){this.instances=Array.flatten(arguments);this.events={};this.checker={};},addEvent:function(b,a){this.checker[b]=this.checker[b]||{};
this.events[b]=this.events[b]||[];if(this.events[b].contains(a)){return false;}else{this.events[b].push(a);}this.instances.each(function(c,d){c.addEvent(b,this.check.bind(this,[b,c,d]));
},this);return this;},check:function(c,a,b){this.checker[c][b]=true;var d=this.instances.every(function(g,f){return this.checker[c][f]||false;},this);if(!d){return;
}this.checker[c]={};this.events[c].each(function(f){f.call(this,this.instances,a);},this);}});Hash.Cookie=new Class({Extends:Cookie,options:{autoSave:true},initialize:function(b,a){this.parent(b,a);
this.load();},save:function(){var a=JSON.encode(this.hash);if(!a||a.length>4096){return false;}if(a=="{}"){this.dispose();}else{this.write(a);}return true;
},load:function(){this.hash=new Hash(JSON.decode(this.read(),true));return this;}});Hash.each(Hash.prototype,function(b,a){if(typeof b=="function"){Hash.Cookie.implement(a,function(){var c=b.apply(this.hash,arguments);
if(this.options.autoSave){this.save();}return c;});}});var IframeShim=new Class({Implements:[Options,Events,Class.Occlude],options:{className:"iframeShim",src:'javascript:false;document.write("");',display:false,zIndex:null,margin:0,offset:{x:0,y:0},browsers:(Browser.Engine.trident4||(Browser.Engine.gecko&&!Browser.Engine.gecko19&&Browser.Platform.mac))},property:"IframeShim",initialize:function(b,a){this.element=document.id(b);
if(this.occlude()){return this.occluded;}this.setOptions(a);this.makeShim();return this;},makeShim:function(){if(this.options.browsers){var c=this.element.getStyle("zIndex").toInt();
if(!c){c=1;var b=this.element.getStyle("position");if(b=="static"||!b){this.element.setStyle("position","relative");}this.element.setStyle("zIndex",c);
}c=($chk(this.options.zIndex)&&c>this.options.zIndex)?this.options.zIndex:c-1;if(c<0){c=1;}this.shim=new Element("iframe",{src:this.options.src,scrolling:"no",frameborder:0,styles:{zIndex:c,position:"absolute",border:"none",filter:"progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)"},"class":this.options.className}).store("IframeShim",this);
var a=(function(){this.shim.inject(this.element,"after");this[this.options.display?"show":"hide"]();this.fireEvent("inject");}).bind(this);if(!IframeShim.ready){window.addEvent("load",a);
}else{a();}}else{this.position=this.hide=this.show=this.dispose=$lambda(this);}},position:function(){if(!IframeShim.ready||!this.shim){return this;}var a=this.element.measure(function(){return this.getSize();
});if(this.options.margin!=undefined){a.x=a.x-(this.options.margin*2);a.y=a.y-(this.options.margin*2);this.options.offset.x+=this.options.margin;this.options.offset.y+=this.options.margin;
}this.shim.set({width:a.x,height:a.y}).position({relativeTo:this.element,offset:this.options.offset});return this;},hide:function(){if(this.shim){this.shim.setStyle("display","none");
}return this;},show:function(){if(this.shim){this.shim.setStyle("display","block");}return this.position();},dispose:function(){if(this.shim){this.shim.dispose();
}return this;},destroy:function(){if(this.shim){this.shim.destroy();}return this;}});window.addEvent("load",function(){IframeShim.ready=true;});var Mask=new Class({Implements:[Options,Events],Binds:["position"],options:{style:{},"class":"mask",maskMargins:false,useIframeShim:true,iframeShimOptions:{}},initialize:function(b,a){this.target=document.id(b)||document.id(document.body);
this.target.store("Mask",this);this.setOptions(a);this.render();this.inject();},render:function(){this.element=new Element("div",{"class":this.options["class"],id:this.options.id||"mask-"+$time(),styles:$merge(this.options.style,{display:"none"}),events:{click:function(){this.fireEvent("click");
if(this.options.hideOnClick){this.hide();}}.bind(this)}});this.hidden=true;},toElement:function(){return this.element;},inject:function(b,a){a=a||this.options.inject?this.options.inject.where:""||this.target==document.body?"inside":"after";
b=b||this.options.inject?this.options.inject.target:""||this.target;this.element.inject(b,a);if(this.options.useIframeShim){this.shim=new IframeShim(this.element,this.options.iframeShimOptions);
this.addEvents({show:this.shim.show.bind(this.shim),hide:this.shim.hide.bind(this.shim),destroy:this.shim.destroy.bind(this.shim)});}},position:function(){this.resize(this.options.width,this.options.height);
this.element.position({relativeTo:this.target,position:"topLeft",ignoreMargins:!this.options.maskMargins,ignoreScroll:this.target==document.body});return this;
},resize:function(a,f){var b={styles:["padding","border"]};if(this.options.maskMargins){b.styles.push("margin");}var d=this.target.getComputedSize(b);if(this.target==document.body){var c=window.getScrollSize();
if(d.totalHeight<c.y){d.totalHeight=c.y;}if(d.totalWidth<c.x){d.totalWidth=c.x;}}this.element.setStyles({width:$pick(a,d.totalWidth,d.x),height:$pick(f,d.totalHeight,d.y)});
return this;},show:function(){if(!this.hidden){return this;}window.addEvent("resize",this.position);this.position();this.showMask.apply(this,arguments);
return this;},showMask:function(){this.element.setStyle("display","block");this.hidden=false;this.fireEvent("show");},hide:function(){if(this.hidden){return this;
}window.removeEvent("resize",this.position);this.hideMask.apply(this,arguments);if(this.options.destroyOnHide){return this.destroy();}return this;},hideMask:function(){this.element.setStyle("display","none");
this.hidden=true;this.fireEvent("hide");},toggle:function(){this[this.hidden?"show":"hide"]();},destroy:function(){this.hide();this.element.destroy();this.fireEvent("destroy");
this.target.eliminate("mask");}});Element.Properties.mask={set:function(b){var a=this.retrieve("mask");return this.eliminate("mask").store("mask:options",b);
},get:function(a){if(a||!this.retrieve("mask")){if(this.retrieve("mask")){this.retrieve("mask").destroy();}if(a||!this.retrieve("mask:options")){this.set("mask",a);
}this.store("mask",new Mask(this,this.retrieve("mask:options")));}return this.retrieve("mask");}};Element.implement({mask:function(a){this.get("mask",a).show();
return this;},unmask:function(){this.get("mask").hide();return this;}});(function(){var a=function(c,b){return(c)?($type(c)=="function"?c(b):b.get(c)):"";
};this.Tips=new Class({Implements:[Events,Options],options:{onShow:function(){this.tip.setStyle("display","block");},onHide:function(){this.tip.setStyle("display","none");
},title:"title",text:function(b){return b.get("rel")||b.get("href");},showDelay:100,hideDelay:100,className:"tip-wrap",offset:{x:16,y:16},windowPadding:{x:0,y:0},fixed:false},initialize:function(){var b=Array.link(arguments,{options:Object.type,elements:$defined});
this.setOptions(b.options);if(b.elements){this.attach(b.elements);}this.container=new Element("div",{"class":"tip"});},toElement:function(){if(this.tip){return this.tip;
}return this.tip=new Element("div",{"class":this.options.className,styles:{position:"absolute",top:0,left:0}}).adopt(new Element("div",{"class":"tip-top"}),this.container,new Element("div",{"class":"tip-bottom"}));
},attach:function(b){$$(b).each(function(d){var g=a(this.options.title,d),f=a(this.options.text,d);d.erase("title").store("tip:native",g).retrieve("tip:title",g);
d.retrieve("tip:text",f);this.fireEvent("attach",[d]);var c=["enter","leave"];if(!this.options.fixed){c.push("move");}c.each(function(i){var h=d.retrieve("tip:"+i);
if(!h){h=this["element"+i.capitalize()].bindWithEvent(this,d);}d.store("tip:"+i,h).addEvent("mouse"+i,h);},this);},this);return this;},detach:function(b){$$(b).each(function(d){["enter","leave","move"].each(function(f){d.removeEvent("mouse"+f,d.retrieve("tip:"+f)).eliminate("tip:"+f);
});this.fireEvent("detach",[d]);if(this.options.title=="title"){var c=d.retrieve("tip:native");if(c){d.set("title",c);}}},this);return this;},elementEnter:function(c,b){this.container.empty();
["title","text"].each(function(f){var d=b.retrieve("tip:"+f);if(d){this.fill(new Element("div",{"class":"tip-"+f}).inject(this.container),d);}},this);$clear(this.timer);
this.timer=(function(){this.show(b);this.position((this.options.fixed)?{page:b.getPosition()}:c);}).delay(this.options.showDelay,this);},elementLeave:function(c,b){$clear(this.timer);
this.timer=this.hide.delay(this.options.hideDelay,this,b);this.fireForParent(c,b);},fireForParent:function(c,b){b=b.getParent();if(!b||b==document.body){return;
}if(b.retrieve("tip:enter")){b.fireEvent("mouseenter",c);}else{this.fireForParent(c,b);}},elementMove:function(c,b){this.position(c);},position:function(f){if(!this.tip){document.id(this);
}var c=window.getSize(),b=window.getScroll(),g={x:this.tip.offsetWidth,y:this.tip.offsetHeight},d={x:"left",y:"top"},h={};for(var i in d){h[d[i]]=f.page[i]+this.options.offset[i];
if((h[d[i]]+g[i]-b[i])>c[i]-this.options.windowPadding[i]){h[d[i]]=f.page[i]-this.options.offset[i]-g[i];}}this.tip.setStyles(h);},fill:function(b,c){if(typeof c=="string"){b.set("html",c);
}else{b.adopt(c);}},show:function(b){if(!this.tip){document.id(this);}if(!this.tip.getParent()){this.tip.inject(document.body);}this.fireEvent("show",[this.tip,b]);
},hide:function(b){if(!this.tip){document.id(this);}this.fireEvent("hide",[this.tip,b]);}});})();var Spinner=new Class({Extends:Mask,options:{"class":"spinner",containerPosition:{},content:{"class":"spinner-content"},messageContainer:{"class":"spinner-msg"},img:{"class":"spinner-img"},fxOptions:{link:"chain"}},initialize:function(){this.parent.apply(this,arguments);
this.target.store("spinner",this);var a=function(){this.active=false;}.bind(this);this.addEvents({hide:a,show:a});},render:function(){this.parent();this.element.set("id",this.options.id||"spinner-"+$time());
this.content=document.id(this.options.content)||new Element("div",this.options.content);this.content.inject(this.element);if(this.options.message){this.msg=document.id(this.options.message)||new Element("p",this.options.messageContainer).appendText(this.options.message);
this.msg.inject(this.content);}if(this.options.img){this.img=document.id(this.options.img)||new Element("div",this.options.img);this.img.inject(this.content);
}this.element.set("tween",this.options.fxOptions);},show:function(a){if(this.active){return this.chain(this.show.bind(this));}if(!this.hidden){this.callChain.delay(20,this);
return this;}this.active=true;return this.parent(a);},showMask:function(a){var b=function(){this.content.position($merge({relativeTo:this.element},this.options.containerPosition));
}.bind(this);if(a){this.parent();b();}else{this.element.setStyles({display:"block",opacity:0}).tween("opacity",this.options.style.opacity||0.9);b();this.hidden=false;
this.fireEvent("show");this.callChain();}},hide:function(a){if(this.active){return this.chain(this.hide.bind(this));}if(this.hidden){this.callChain.delay(20,this);
return this;}this.active=true;return this.parent(a);},hideMask:function(a){if(a){return this.parent();}this.element.tween("opacity",0).get("tween").chain(function(){this.element.setStyle("display","none");
this.hidden=true;this.fireEvent("hide");this.callChain();}.bind(this));},destroy:function(){this.content.destroy();this.parent();this.target.eliminate("spinner");
}});Spinner.implement(new Chain);Request=Class.refactor(Request,{options:{useSpinner:false,spinnerOptions:{},spinnerTarget:false},initialize:function(a){this._send=this.send;
this.send=function(b){var c=this.getSpinner();if(c){c.chain(this._send.bind(this,b)).show();}else{this._send(b);}return this;};this.previous(a);},getSpinner:function(){if(!this.spinner){var a=document.id(this.options.spinnerTarget)||document.id(this.options.update);
if(this.options.useSpinner&&a){this.spinner=a.get("spinner",this.options.spinnerOptions);["onComplete","onException","onCancel"].each(function(b){this.addEvent(b,this.spinner.hide.bind(this.spinner));
},this);}}return this.spinner;}});Element.Properties.spinner={set:function(a){var b=this.retrieve("spinner");return this.eliminate("spinner").store("spinner:options",a);
},get:function(a){if(a||!this.retrieve("spinner")){if(this.retrieve("spinner")){this.retrieve("spinner").destroy();}if(a||!this.retrieve("spinner:options")){this.set("spinner",a);
}new Spinner(this,this.retrieve("spinner:options"));}return this.retrieve("spinner");}};Element.implement({spin:function(a){this.get("spinner",a).show();
return this;},unspin:function(){var a=Array.link(arguments,{options:Object.type,callback:Function.type});this.get("spinner",a.options).hide(a.callback);
return this;}});MooTools.lang.set("en-US","Date",{months:["January","February","March","April","May","June","July","August","September","October","November","December"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dateOrder:["month","date","year"],shortDate:"%m/%d/%Y",shortTime:"%I:%M%p",AM:"AM",PM:"PM",ordinal:function(a){return(a>3&&a<21)?"th":["th","st","nd","rd","th"][Math.min(a%10,4)];
},lessThanMinuteAgo:"less than a minute ago",minuteAgo:"about a minute ago",minutesAgo:"{delta} minutes ago",hourAgo:"about an hour ago",hoursAgo:"about {delta} hours ago",dayAgo:"1 day ago",daysAgo:"{delta} days ago",weekAgo:"1 week ago",weeksAgo:"{delta} weeks ago",monthAgo:"1 month ago",monthsAgo:"{delta} months ago",yearAgo:"1 year ago",yearsAgo:"{delta} years ago",lessThanMinuteUntil:"less than a minute from now",minuteUntil:"about a minute from now",minutesUntil:"{delta} minutes from now",hourUntil:"about an hour from now",hoursUntil:"about {delta} hours from now",dayUntil:"1 day from now",daysUntil:"{delta} days from now",weekUntil:"1 week from now",weeksUntil:"{delta} weeks from now",monthUntil:"1 month from now",monthsUntil:"{delta} months from now",yearUntil:"1 year from now",yearsUntil:"{delta} years from now"});
MooTools.lang.set("en-US","Form.Validator",{required:"This field is required.",minLength:"Please enter at least {minLength} characters (you entered {length} characters).",maxLength:"Please enter no more than {maxLength} characters (you entered {length} characters).",integer:"Please enter an integer in this field. Numbers with decimals (e.g. 1.25) are not permitted.",numeric:'Please enter only numeric values in this field (i.e. "1" or "1.1" or "-1" or "-1.1").',digits:"Please use numbers and punctuation only in this field (for example, a phone number with dashes or dots is permitted).",alpha:"Please use only letters (a-z) within this field. No spaces or other characters are allowed.",alphanum:"Please use only letters (a-z) or numbers (0-9) in this field. No spaces or other characters are allowed.",dateSuchAs:"Please enter a valid date such as {date}",dateInFormatMDY:'Please enter a valid date such as MM/DD/YYYY (i.e. "12/31/1999")',email:'Please enter a valid email address. For example "fred@domain.com".',url:"Please enter a valid URL such as http://www.google.com.",currencyDollar:"Please enter a valid $ amount. For example $100.00 .",oneRequired:"Please enter something for at least one of these inputs.",errorPrefix:"Error: ",warningPrefix:"Warning: ",noSpace:"There can be no spaces in this input.",reqChkByNode:"No items are selected.",requiredChk:"This field is required.",reqChkByName:"Please select a {label}.",match:"This field needs to match the {matchName} field",startDate:"the start date",endDate:"the end date",currendDate:"the current date",afterDate:"The date should be the same or after {label}.",beforeDate:"The date should be the same or before {label}.",startMonth:"Please select a start month",sameMonth:"These two dates must be in the same month - you must change one or the other.",creditcard:"The credit card number entered is invalid. Please check the number and try again. {length} digits entered."});
MooTools.lang.set("nl-NL","Date",{months:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],days:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],dateOrder:["date","month","year"],shortDate:"%d-%m-%Y",shortTime:"%H:%M",AM:"AM",PM:"PM",ordinal:"e",lessThanMinuteAgo:"minder dan een minuut geleden",minuteAgo:"ongeveer een minuut geleden",minutesAgo:"{delta} minuten geleden",hourAgo:"ongeveer een uur geleden",hoursAgo:"ongeveer {delta} uur geleden",dayAgo:"een dag geleden",daysAgo:"{delta} dagen geleden",weekAgo:"een week geleden",weeksAgo:"{delta} weken geleden",monthAgo:"een maand geleden",monthsAgo:"{delta} maanden geleden",yearAgo:"een jaar geleden",yearsAgo:"{delta} jaar geleden",lessThanMinuteUntil:"over minder dan een minuut",minuteUntil:"over ongeveer een minuut",minutesUntil:"over {delta} minuten",hourUntil:"over ongeveer een uur",hoursUntil:"over {delta} uur",dayUntil:"over ongeveer een dag",daysUntil:"over {delta} dagen",weekUntil:"over een week",weeksUntil:"over {delta} weken",monthUntil:"over een maand",monthsUntil:"over {delta} maanden",yearUntil:"over een jaar",yearsUntil:"over {delta} jaar"});
function setHeightAs(source, target)
{
	var height = $(source).getStyle('height');
	$(target).setStyle('height', height);
}var UvumiDropdown=new Class({Implements:Options,options:{clickToOpen:false,openDelay:150,closeDelay:500,duration:250,link:'cancel',transition:Fx.Transitions.linear,mode:'horizontal'},initialize:function(a,b){this.menu=a;this.setOptions(b);if(this.options.mode!='horizontal'&&this.options.mode!='vertical'){this.options.mode='horizontal'}if(Browser.Engine.webkit){window.addEvent('domready',this.domReady.delay(200,this))}else{window.addEvent('domready',this.domReady.bind(this))}},domReady:function(){this.menu=$(this.menu);if(!$defined(this.menu)){return false}if(this.menu.get('tag')!='ul'){this.menu=this.menu.getElement('ul');if(!$defined(this.menu)){return false}}if(this.menu.getStyle('direction')=='rtl'||$(document.body).getStyle('direction')=='rtl'){this.rtl=true;if(Browser.Engine.trident&&$(document.body).getStyle('direction')=='rtl'){this.menu.getParent().setStyle('direction','ltr');this.menu.setStyle('direction','rtl')}}this.menu.setStyles({visibility:'hidden',display:'block',overflow:'hidden',height:0,marginLeft:(Browser.Engine.trident?1:-1)});this.createSubmenu(this.menu);if(this.options.mode=='horizontal'){this.menu.getChildren('li').setStyles({'float':(this.rtl?'right':'left'),display:'block',top:0});var a=new Element('li',{html:"&nbsp;",styles:{clear:(this.rtl?'right':'left'),display:(Browser.Engine.trident?'inline':'block'),position:'relative',top:0,height:0,width:0,fontSize:0,lineHeight:0,margin:0,padding:0}}).inject(this.menu)}else{this.menu.getChildren('li').setStyles({display:'block',top:0})}this.menu.setStyles({height:'auto',overflow:'visible',visibility:'visible'});this.menu.getElements('a').setStyle('display',(Browser.Engine.trident?'inline-block':'block'))},createSubmenu:function(c){var d=c.getChildren('li');var f=0;d.each(function(a){a.setStyles({position:'relative',display:'block',top:-f,zIndex:1});f+=a.getSize().y;var b=a.getFirst('ul');if($defined(b)){c.getElements('ul').setStyle('display','none');if(c==this.menu&&this.options.mode=='horizontal'){a.addClass('submenu-down');var x=0;var y=a.getSize().y;this.options.link='cancel';a.store('animation',new Fx.Elements($$(b,b.getChildren('li')).setStyle('opacity',0),this.options))}else{a.addClass('submenu-left');var x=a.getSize().x-(this.rtl&&!Browser.Engine.trident?2:1)*a.getStyle('border-left-width').toInt();var y=-a.getStyle('border-bottom-width').toInt();this.options.link='chain';a.store('animation',new Fx.Elements($$(b,b.getChildren('li')).setStyle('opacity',0),this.options));f=a.getSize().y+a.getPosition(this.menu).y}b.setStyles({position:'absolute',top:y,opacity:0});c.getElements('ul').setStyle('display','block');if(this.rtl){b.setStyles({right:x,marginRight:-x})}else{b.setStyles({left:x,marginLeft:-x})}this.createSubmenu(b);if(this.options.clickToOpen){a.addEvent('mouseenter',function(){$clear(a.retrieve('closeDelay'))}.bind(this));a.getFirst('a').addEvent('click',function(e){e.stop();$clear(a.retrieve('closeDelay'));this.showChildList(a)}.bind(this))}else{a.addEvent('mouseenter',function(){$clear(a.retrieve('closeDelay'));a.store('openDelay',this.showChildList.delay(this.options.openDelay,this,a))}.bind(this))}a.addEvent('mouseleave',function(){$clear(a.retrieve('openDelay'));a.store('closeDelay',this.hideChildList.delay(this.options.closeDelay,this,a))}.bind(this))}},this)},showChildList:function(b){var c=b.getFirst('ul');var d=$$(c.getChildren('li'));var e=b.retrieve('animation');if(b.getParent('ul')!=this.menu||this.options.mode=='vertical'){e.cancel();var f={0:{opacity:1},1:{opacity:1}};if(this.rtl){f[0]['marginRight']=0}else{f[0]['marginLeft']=0}e.start(f);var g={}}else{var g={0:{opacity:1}}}d.each(function(a,i){g[i+1]={top:0,opacity:1}});b.setStyle('z-index',2000);e.start(g)},hideChildList:function(b){var c=b.retrieve('animation');var d=b.getFirst('ul');var e=$$(d.getChildren('li'));var f=0;var g={};e.each(function(a,i){g[i+1]={top:-f,opacity:0};f+=a.getSize().y});b.setStyle('z-index',1000);if(b.getParent('ul')!=this.menu||this.options.mode=='vertical'){g[1]=null;c.cancel();c.start(g);var h={0:{opacity:0},1:{opacity:0}};if(this.rtl){h[0]['marginRight']=-d.getSize().x}else{h[0]['marginLeft']=-d.getSize().x}c.start(h)}else{g[0]={opacity:0};c.start(g)}}});/*
---
description: This provides a simple Drop Down menu with infinit levels

license: MIT-style

authors:
- Arian Stolwijk

requires:
  core/1.2.4: [Class.Extras,Element.Style,Element.Event]

provides: [MooDropMenu,Element.MooDropMenu]

...
*/

var MooDropMenu = new Class({
		
	Implements: [Options,Events],
	
	options: {
		onOpen: function(el){
			el.show();
		},
		onClose: function(el){
			el.hide();
		},
		onInitialize: function(el){
			el.hide();
		},
		mouseoutDelay: 400,
		mouseoverDelay: 0
	},
	
	initialize: function(menu, options, level){
		this.setOptions(options);
		
		if ($type(level) == 'number') {
			this.menu = $(menu); //attach menu to object
			this.fireEvent('initialize',menu);
			
			// hook up menu's parent with event to trigger menu
			this.menu.pel.addEvents({
				
				'mouseover': function(){
					// Set the DropDownOpen status to true			
					this.menu.pel.mel.store('DropDownOpen',true);
					
					// Clear the timer of the delay
					$clear(this.timer);
					// Fire the event to open the menu
					this.timer = (function(){
						this.fireEvent('open',this.menu.pel.mel);
					}).delay(this.options.mouseoverDelay,this);		
					
				}.bind(this),
				
				'mouseout': function(){
					// Set the DropDownOpen status to false
					this.menu.pel.mel.store('DropDownOpen',false);
					
					// Clear the timer of the delay
					$clear(this.timer);
					// Build a delay before the onClose event get fired
					this.timer = (function(){
						if(!this.menu.pel.mel.retrieve('DropDownOpen')){
							this.fireEvent('close',this.menu.pel.mel);
						}
					}).delay(this.options.mouseoutDelay,this);		
					
				}.bind(this)				
			});
		}
		else {
			level = 0;
			this.menu = $(menu);
		}
		
		// grab all of the menus children - LI's in this case		
		// loop through children
		this.menu.getChildren('li').each(function(item, index){
			var list = item.getFirst('ul'); // Should be an A tag
			// if there is a sub menu UL
			if ($type(list) == 'element') {
				item.mel = list; // pel = parent element
				list.pel = item; // mel = menu element
				new MooDropMenu(list, options, level + 1); // hook up the subMenu
			}
		});			
	},
	
	toElement: function(){
		return this.menu
	}
	
});

/* So you can do like this $('nav').MooDropMenu(); or even $('nav').MooDropMenu().setStyle('border',1); */
Element.implement({
	MooDropMenu: function (options){
		this.store('MooDropMenu',new MooDropMenu(this,options));
		return this;
	}
});
/*
 * 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:
 * © 2008 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Corbel is either a registered trademark or a trademark of Microsoft Corporation
 * in the United States and/or other countries.
 * 
 * Description:
 * Corbel is designed to give an uncluttered and clean appearance on screen. The
 * letter forms are open with soft, flowing curves. It is legible, clear and
 * functional at small sizes. At larger sizes the detailing and style of the shapes
 * is more apparent resulting in a modern sans serif type with a wide range of
 * possible uses.
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Designer:
 * Jeremy Tankard
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography/ctfonts
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/default.aspx
 */
Cufon.registerFont({"w":1050,"face":{"font-family":"corbel","font-weight":400,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 5 3 2 2 4 2 2 4","ascent":"1523","descent":"-525","x-height":"25","bbox":"-120 -1883 1931.81 490.031","underline-thickness":"120","underline-position":"-130","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":410,"k":{"\u0474":105,"\u0462":85,"\u040e":50,"\u040b":140,"\u0409":80,"\u0408":40,"\u0404":80,"\u0402":140,"\u042f":50,"\u042a":105,"\u0427":220,"\u0425":70,"\u0424":80,"\u0423":50,"\u0422":140,"\u0421":80,"\u041e":80,"\u041b":80,"\u0416":50,"\u0414":70,"\u0410":90,"\u00dd":225,"\u00dc":60,"\u00db":60,"\u00da":60,"\u00d9":60,"\u00d8":80,"\u00d6":80,"\u00d5":80,"\u00d4":80,"\u00d3":80,"\u00d2":80,"\u00c7":80,"\u00c6":90,"\u00c5":90,"\u00c4":90,"\u00c3":90,"\u00c2":90,"\u00c1":90,"\u00c0":90,"Z":70,"Y":225,"X":70,"W":110,"V":140,"U":60,"T":140,"S":50,"Q":80,"O":80,"J":40,"G":80,"C":80,"A":90}},"\u00a0":{"w":410},"A":{"d":"35,0r545,-1338r141,0r545,1338r-177,0r-160,-403r-559,0r-160,403r-175,0xm649,-1130v-59,167,-116,318,-171,454r-50,126r443,0r-50,-126v-55,-139,-111,-290,-168,-454r-4,0","w":1301,"k":{"\"":145,"'":145,"\u00ab":50,"\u201d":130,"\u201c":155,"\u2019":130,"\u2018":155,"\u00ff":50,"\u00fd":50,"y":50,"w":40,"v":40,"\u00dd":120,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"Y":120,"W":85,"V":110,"T":110,"Q":20,"O":20,"G":20,"C":20}},"B":{"d":"1043,-991v-2,165,-86,251,-213,295r0,4v192,22,317,181,256,400v-60,217,-272,292,-570,292r-346,0r0,-1338r418,2v217,6,373,74,436,232v13,35,19,72,19,113xm871,-980v3,-244,-290,-209,-538,-211r0,432r248,0v174,3,288,-60,290,-221xm928,-390v5,-273,-327,-216,-595,-222r0,465v279,1,590,26,595,-243","w":1215,"k":{"\u201c":50,"\u2018":50}},"C":{"d":"1094,-1171v-135,-47,-338,-68,-482,-11v-198,78,-320,249,-320,524v0,353,185,538,534,538v103,0,202,-21,281,-47r0,144v-159,62,-430,62,-593,1v-249,-93,-394,-296,-394,-630v0,-337,158,-554,402,-658v159,-68,416,-68,572,-5r0,144","w":1207,"k":{"}":-50,"]":-50,"\u00ab":50,"\u00ff":75,"\u00fd":75,"y":75,"w":75,"v":75,"\u00c7":20,"C":20}},"D":{"d":"1140,-1072v101,133,149,399,85,617v-90,307,-345,461,-752,455r-303,0r0,-1338r306,0v315,-6,530,90,664,266xm456,-147v398,13,626,-152,626,-528v0,-374,-234,-527,-626,-516r-123,0r0,1044r123,0","w":1374,"k":{"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50,",":50,"\u00dd":40,"\u00c6":50,"Y":40,"X":40,"V":20,"T":50,"J":60}},"E":{"d":"333,-147r686,0r0,147r-849,0r0,-1338r812,0r0,147r-649,0r0,432r577,0r0,147r-577,0r0,465","w":1129},"F":{"d":"333,0r-163,0r0,-1338r798,0r0,147r-635,0r0,432r563,0r0,147r-563,0r0,612","w":1033,"k":{"\u00ab":50,"\u2026":140,".":140,",":140,"\u00ef":-50,"\u00ee":-30,"\u00c6":130,"\u00c5":100,"\u00c4":100,"\u00c3":100,"\u00c2":100,"\u00c1":100,"\u00c0":100,"J":90,"A":100}},"G":{"d":"834,-120v74,0,153,-8,211,-23r0,-398r-305,0r0,-147r468,0r0,647v-174,74,-494,90,-686,19v-248,-91,-402,-288,-402,-616v0,-353,178,-571,438,-674v170,-67,435,-66,601,-3r0,144v-141,-47,-357,-69,-511,-13v-211,76,-356,243,-356,528v0,356,190,533,542,536","w":1368},"H":{"d":"333,-759r701,0r0,-579r163,0r0,1338r-163,0r0,-612r-701,0r0,612r-163,0r0,-1338r163,0r0,579","w":1367},"I":{"d":"170,0r0,-1338r163,0r0,1338r-163,0","w":503},"J":{"d":"234,-120v137,1,205,-67,205,-207r0,-1011r163,0r0,1031v-3,223,-132,329,-354,332v-75,1,-142,-14,-188,-33r0,-144v49,20,106,32,174,32","w":767},"K":{"d":"170,0r0,-1338r163,0r0,661r2,0r615,-661r201,0r-624,666r672,672r-212,0r-652,-655r-2,0r0,655r-163,0","w":1239,"k":{"\u2014":90,"\u2013":90,"\u00ab":90,"\u201d":50,"\u2019":50,"-":90,"\u00f0":40,"\u00ff":110,"\u00fd":110,"\u00f8":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u00eb":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"y":110,"w":110,"v":110,"q":40,"o":40,"g":40,"e":40,"d":40,"c":40,"\u00d8":100,"\u00d6":100,"\u00d5":100,"\u00d4":100,"\u00d3":100,"\u00d2":100,"\u00c7":100,"Q":100,"O":100,"G":100,"C":100}},"L":{"d":"333,-1338r0,1191r653,0r0,147r-816,0r0,-1338r163,0","w":1066,"k":{"\"":225,"'":225,"\u2014":60,"\u2013":60,"\u00ab":70,"\u201d":140,"\u201c":225,"\u2019":140,"\u2018":225,"?":70,"-":60,"\u00ff":110,"\u00fd":110,"y":110,"w":110,"v":110,"\u00dd":270,"\u00d8":80,"\u00d6":80,"\u00d5":80,"\u00d4":80,"\u00d3":80,"\u00d2":80,"\u00c7":80,"Y":270,"W":130,"V":200,"T":250,"Q":80,"O":80,"G":80,"C":80}},"M":{"d":"879,0r-75,0r-337,-799v-47,-110,-93,-230,-140,-359r-8,0v9,186,14,356,14,511r0,647r-163,0r0,-1338r235,0r315,757v36,87,76,191,119,313r5,0v48,-135,88,-239,119,-313r315,-757r235,0r0,1338r-163,0r0,-647v0,-151,5,-322,14,-511r-8,0v-49,137,-96,256,-140,359","w":1683},"N":{"d":"857,-592r243,364r6,0v-23,-354,-10,-738,-13,-1110r163,0r0,1338r-162,0r-525,-746v-91,-130,-172,-251,-243,-364r-6,0v22,326,10,753,13,1110r-163,0r0,-1338r162,0","w":1426},"O":{"d":"1169,-430v45,-132,46,-344,0,-476v-63,-181,-192,-312,-421,-312v-311,0,-456,226,-456,550v0,259,99,435,278,513v108,47,250,47,358,0v116,-50,197,-146,241,-275xm1333,-948v57,166,58,394,-1,559v-86,240,-268,414,-582,414v-318,0,-502,-172,-587,-414v-58,-166,-58,-395,1,-559v87,-241,268,-415,584,-415v317,0,500,173,585,415","w":1496,"k":{"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50,",":50,"\u00dd":40,"\u00c6":50,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"Y":40,"X":40,"V":20,"T":50,"J":55,"A":20}},"P":{"d":"541,-1338v298,1,527,95,527,380v0,362,-355,434,-735,408r0,550r-163,0r0,-1338r371,0xm895,-958v-1,-259,-296,-234,-562,-233r0,492v267,22,563,6,562,-259","w":1168,"k":{"\u2014":50,"\u2013":50,"\u00ab":70,"-":50,"\u2026":245,".":245,",":245,"\u00f0":90,"\u00f8":90,"\u00f6":90,"\u00f5":90,"\u00f4":90,"\u00f3":90,"\u00f2":90,"\u00eb":90,"\u00ea":90,"\u00e9":90,"\u00e8":90,"\u00e7":90,"q":90,"o":90,"g":90,"e":90,"d":90,"c":90,"\u00c6":210,"\u00c5":160,"\u00c4":160,"\u00c3":160,"\u00c2":160,"\u00c1":160,"\u00c0":160,"Z":55,"X":30,"J":160,"A":160}},"Q":{"d":"1169,-430v45,-132,46,-344,0,-476v-63,-181,-192,-312,-421,-312v-311,0,-456,226,-456,550v0,259,99,435,278,513v108,47,250,47,358,0v116,-50,197,-146,241,-275xm1404,10v-214,-23,-439,10,-652,10v-319,0,-505,-165,-589,-408v-57,-166,-58,-396,1,-560v87,-241,268,-415,584,-415v315,0,500,171,585,410v29,83,43,174,43,271v0,272,-112,457,-279,566r0,4v103,-16,194,-28,307,-25r0,147","w":1514,"k":{"]":50,")":50,"\u201c":50,"\u2018":50}},"R":{"d":"1067,-953v0,235,-153,338,-357,377r0,4r437,572r-205,0r-412,-554r-197,0r0,554r-163,0r0,-1338r347,0v318,-6,550,93,550,385xm894,-956v-3,-197,-162,-239,-376,-235r-185,0r0,490v279,5,565,13,561,-255","w":1212,"k":{")":30,"\u2014":80,"\u2013":80,"\u00ab":90,"\u201c":30,"\u2018":30,"-":80,"\u00f0":55,"\u00fc":30,"\u00fb":30,"\u00fa":30,"\u00f9":30,"\u00f8":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u00eb":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"u":30,"q":40,"o":40,"g":40,"e":40,"d":40,"c":40}},"S":{"d":"953,-1138v-198,-96,-663,-161,-659,154v3,171,155,197,294,232v213,54,424,110,420,378v-4,294,-220,399,-517,399v-138,0,-273,-29,-363,-77r0,-149v208,103,720,163,712,-169v-6,-231,-274,-213,-450,-276v-146,-52,-264,-130,-262,-326v3,-271,186,-386,456,-391v144,-2,268,31,369,74r0,151","w":1130,"k":{")":30,"\u201d":50,"\u201c":30,"\u2019":50,"\u2018":30}},"T":{"d":"650,0r-163,0r0,-1191r-447,0r0,-147r1057,0r0,147r-447,0r0,1191","w":1137,"k":{"\u2014":140,"\u2013":140,"\u00bb":130,"\u00ab":180,"-":140,"\u2026":160,".":160,":":140,";":140,",":120,"\u00f0":65,"\u00ff":130,"\u00fd":130,"\u00fc":130,"\u00fb":130,"\u00fa":130,"\u00f9":130,"\u00f8":130,"\u00f6":130,"\u00f5":130,"\u00f4":130,"\u00f3":130,"\u00f2":130,"\u00f1":130,"\u00ef":-100,"\u00ee":-75,"\u00eb":130,"\u00ea":130,"\u00e9":130,"\u00e8":130,"\u00e7":130,"\u00e6":150,"\u00e5":150,"\u00e4":150,"\u00e3":150,"\u00e2":150,"\u00e1":150,"\u00e0":150,"z":130,"y":130,"x":130,"w":130,"v":130,"u":130,"s":130,"r":130,"q":130,"p":130,"o":130,"n":130,"m":130,"g":130,"e":130,"d":130,"c":130,"a":150,"\u00d8":50,"\u00d6":50,"\u00d5":50,"\u00d4":50,"\u00d3":50,"\u00d2":50,"\u00c7":50,"\u00c6":170,"\u00c5":110,"\u00c4":110,"\u00c3":110,"\u00c2":110,"\u00c1":110,"\u00c0":110,"Q":50,"O":50,"J":90,"G":50,"C":50,"A":110}},"U":{"d":"328,-508v2,244,114,388,359,388v245,0,358,-142,359,-388r0,-830r163,0r0,826v-1,350,-172,537,-524,537v-352,0,-520,-189,-520,-537r0,-826r163,0r0,830","w":1374,"k":{".":50,",":50}},"V":{"d":"624,-208v48,-146,100,-293,155,-442r255,-688r169,0r-510,1338r-143,0r-510,-1338r169,0r255,688v56,149,108,296,156,442r4,0","w":1243,"k":{"\u2014":70,"\u2013":70,"\u00bb":70,"\u00ab":110,"-":70,"\u2026":140,".":140,":":70,";":70,",":130,"\u00f0":75,"\u00f8":80,"\u00f6":80,"\u00f5":80,"\u00f4":80,"\u00f3":80,"\u00f2":80,"\u00f1":65,"\u00ef":-70,"\u00ee":-45,"\u00eb":80,"\u00ea":80,"\u00e9":80,"\u00e8":80,"\u00e7":80,"s":75,"r":65,"q":80,"o":80,"n":65,"m":65,"g":80,"e":80,"d":80,"c":80,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"\u00c6":150,"\u00c5":110,"\u00c4":110,"\u00c3":110,"\u00c2":110,"\u00c1":110,"\u00c0":110,"Q":20,"O":20,"J":120,"G":20,"C":20,"A":110}},"W":{"d":"901,-1117v-11,61,-35,169,-75,322r-208,795r-166,0r-412,-1338r171,0r226,785v36,126,67,239,92,340r4,0v13,-62,27,-122,43,-181r246,-944r162,0r204,787v50,189,78,302,85,338r4,0v23,-93,53,-207,92,-340r226,-785r171,0r-412,1338r-166,0r-208,-795v-38,-148,-63,-255,-75,-322r-4,0","w":1806,"k":{"\u2014":30,"\u2013":30,"\u00bb":40,"\u00ab":60,"-":30,"\u2026":70,".":70,",":90,"\u00f0":65,"\u00f8":75,"\u00f6":75,"\u00f5":75,"\u00f4":75,"\u00f3":75,"\u00f2":75,"\u00ef":-70,"\u00ee":-45,"\u00eb":75,"\u00ea":75,"\u00e9":75,"\u00e8":75,"\u00e7":75,"s":60,"q":75,"o":75,"g":75,"e":75,"d":75,"c":75,"\u00c6":85,"\u00c5":85,"\u00c4":85,"\u00c3":85,"\u00c2":85,"\u00c1":85,"\u00c0":85,"J":100,"A":85}},"X":{"d":"604,-796r370,-542r181,0r-454,659r475,679r-183,0r-392,-567r-4,0r-392,567r-185,0r479,-683r-450,-655r179,0r372,542r4,0","w":1196,"k":{"\u2014":50,"\u2013":50,"\u00ab":50,"-":50,"\u00d8":40,"\u00d6":40,"\u00d5":40,"\u00d4":40,"\u00d3":40,"\u00d2":40,"\u00c7":40,"Q":40,"O":40,"G":40,"C":40}},"Y":{"d":"690,-538r0,538r-163,0r0,-538r-487,-800r178,0r388,650r5,0r388,-650r178,0","w":1217,"k":{"\u2014":150,"\u2013":150,"\u00bb":110,"\u00ab":195,"-":150,"\u2026":195,".":195,":":110,";":110,",":130,"\u00f0":75,"\u00ff":80,"\u00fd":80,"\u00fc":110,"\u00fb":110,"\u00fa":110,"\u00f9":110,"\u00f8":160,"\u00f6":160,"\u00f5":160,"\u00f4":160,"\u00f3":160,"\u00f2":160,"\u00f1":110,"\u00ef":-65,"\u00ee":-30,"\u00eb":160,"\u00ea":160,"\u00e9":160,"\u00e8":160,"\u00e7":160,"\u00e6":140,"\u00e5":140,"\u00e4":140,"\u00e3":140,"\u00e2":140,"\u00e1":140,"\u00e0":140,"z":80,"y":80,"x":80,"w":80,"v":80,"u":110,"s":135,"r":110,"q":160,"p":110,"o":160,"n":110,"m":110,"g":160,"e":160,"d":160,"c":160,"a":140,"\u00d8":40,"\u00d6":40,"\u00d5":40,"\u00d4":40,"\u00d3":40,"\u00d2":40,"\u00c7":40,"\u00c6":160,"\u00c5":120,"\u00c4":120,"\u00c3":120,"\u00c2":120,"\u00c1":120,"\u00c0":120,"Q":40,"O":40,"J":120,"G":40,"C":40,"A":120}},"Z":{"d":"1090,-1338r0,102r-776,1089r785,0r0,147r-999,0r0,-102r778,-1089r-760,0r0,-147r972,0","w":1199,"k":{"\u2014":50,"\u2013":50,"\u00ab":80,"-":50}},"\u00c0":{"d":"569,-1656r146,247r-139,0r-181,-247r174,0xm35,0r545,-1338r141,0r545,1338r-177,0r-160,-403r-559,0r-160,403r-175,0xm649,-1130v-59,167,-116,318,-171,454r-50,126r443,0r-50,-126v-55,-139,-111,-290,-168,-454r-4,0","w":1301,"k":{"\"":145,"'":145,"\u00ab":50,"\u201d":130,"\u201c":155,"\u2019":130,"\u2018":155,"\u00ff":50,"\u00fd":50,"y":50,"w":40,"v":40,"\u00dd":120,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"Y":120,"W":85,"V":110,"T":110,"Q":20,"O":20,"G":20,"C":20}},"\u00c1":{"d":"911,-1656r-181,247r-139,0r146,-247r174,0xm35,0r545,-1338r141,0r545,1338r-177,0r-160,-403r-559,0r-160,403r-175,0xm649,-1130v-59,167,-116,318,-171,454r-50,126r443,0r-50,-126v-55,-139,-111,-290,-168,-454r-4,0","w":1301,"k":{"\"":145,"'":145,"\u00ab":50,"\u201d":130,"\u201c":155,"\u2019":130,"\u2018":155,"\u00ff":50,"\u00fd":50,"y":50,"w":40,"v":40,"\u00dd":120,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"Y":120,"W":85,"V":110,"T":110,"Q":20,"O":20,"G":20,"C":20}},"\u00c2":{"d":"731,-1656r216,247r-158,0r-137,-151r-4,0r-136,151r-158,0r216,-247r161,0xm35,0r545,-1338r141,0r545,1338r-177,0r-160,-403r-559,0r-160,403r-175,0xm649,-1130v-59,167,-116,318,-171,454r-50,126r443,0r-50,-126v-55,-139,-111,-290,-168,-454r-4,0","w":1301,"k":{"\"":145,"'":145,"\u00ab":50,"\u201d":130,"\u201c":155,"\u2019":130,"\u2018":155,"\u00ff":50,"\u00fd":50,"y":50,"w":40,"v":40,"\u00dd":120,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"Y":120,"W":85,"V":110,"T":110,"Q":20,"O":20,"G":20,"C":20}},"\u00c3":{"d":"335,-1429v-5,-127,44,-212,170,-212v113,0,170,83,270,93v48,5,60,-36,61,-85r125,0v5,128,-46,212,-170,212v-113,0,-170,-83,-270,-93v-48,-5,-60,36,-61,85r-125,0xm35,0r545,-1338r141,0r545,1338r-177,0r-160,-403r-559,0r-160,403r-175,0xm649,-1130v-59,167,-116,318,-171,454r-50,126r443,0r-50,-126v-55,-139,-111,-290,-168,-454r-4,0","w":1301,"k":{"\"":145,"'":145,"\u00ab":50,"\u201d":130,"\u201c":155,"\u2019":130,"\u2018":155,"\u00ff":50,"\u00fd":50,"y":50,"w":40,"v":40,"\u00dd":120,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"Y":120,"W":85,"V":110,"T":110,"Q":20,"O":20,"G":20,"C":20}},"\u00c4":{"d":"379,-1448r0,-169r161,0r0,169r-161,0xm762,-1448r0,-169r161,0r0,169r-161,0xm35,0r545,-1338r141,0r545,1338r-177,0r-160,-403r-559,0r-160,403r-175,0xm649,-1130v-59,167,-116,318,-171,454r-50,126r443,0r-50,-126v-55,-139,-111,-290,-168,-454r-4,0","w":1301,"k":{"\"":145,"'":145,"\u00ab":50,"\u201d":130,"\u201c":155,"\u2019":130,"\u2018":155,"\u00ff":50,"\u00fd":50,"y":50,"w":40,"v":40,"\u00dd":120,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"Y":120,"W":85,"V":110,"T":110,"Q":20,"O":20,"G":20,"C":20}},"\u00c5":{"d":"878,-1563v0,128,-98,187,-229,187v-131,0,-229,-59,-229,-187v0,-128,98,-187,229,-187v131,0,229,59,229,187xm755,-1563v0,-59,-48,-89,-106,-89v-58,0,-106,30,-106,89v0,59,48,89,106,89v58,0,106,-30,106,-89xm35,0r545,-1338r141,0r545,1338r-177,0r-160,-403r-559,0r-160,403r-175,0xm649,-1130v-59,167,-116,318,-171,454r-50,126r443,0r-50,-126v-55,-139,-111,-290,-168,-454r-4,0","w":1301,"k":{"\"":145,"'":145,"\u00ab":50,"\u201d":130,"\u201c":155,"\u2019":130,"\u2018":155,"\u00ff":50,"\u00fd":50,"y":50,"w":40,"v":40,"\u00dd":120,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"Y":120,"W":85,"V":110,"T":110,"Q":20,"O":20,"G":20,"C":20}},"\u00c6":{"d":"1120,-147r614,0r0,147r-752,0r-52,-401r-514,0r-211,401r-175,0r708,-1338r886,0r0,147r-638,0r56,432r520,0r0,147r-501,0xm493,-550r418,0r-80,-641r-4,0","w":1814},"\u00c7":{"d":"499,358v88,23,264,41,274,-64v-11,-78,-112,-70,-197,-79r62,-204v-330,-61,-518,-278,-518,-663v0,-337,158,-554,402,-658v159,-68,416,-68,572,-5r0,144v-135,-47,-338,-68,-482,-11v-198,78,-320,249,-320,524v0,353,185,538,534,538v103,0,202,-21,281,-47r0,144v-91,35,-224,54,-351,46r-28,103v98,16,180,54,181,165v2,190,-239,227,-410,180r0,-113","w":1207,"k":{"}":-50,"]":-50,"\u00ab":50,"\u00ff":75,"\u00fd":75,"y":75,"w":75,"v":75,"\u00c7":20,"C":20}},"\u00c8":{"d":"527,-1656r146,247r-139,0r-181,-247r174,0xm333,-147r686,0r0,147r-849,0r0,-1338r812,0r0,147r-649,0r0,432r577,0r0,147r-577,0r0,465","w":1129},"\u00c9":{"d":"823,-1656r-181,247r-139,0r146,-247r174,0xm333,-147r686,0r0,147r-849,0r0,-1338r812,0r0,147r-649,0r0,432r577,0r0,147r-577,0r0,465","w":1129},"\u00ca":{"d":"657,-1656r216,247r-158,0r-137,-151r-4,0r-136,151r-158,0r216,-247r161,0xm333,-147r686,0r0,147r-849,0r0,-1338r812,0r0,147r-649,0r0,432r577,0r0,147r-577,0r0,465","w":1129},"\u00cb":{"d":"302,-1448r0,-169r161,0r0,169r-161,0xm685,-1448r0,-169r161,0r0,169r-161,0xm333,-147r686,0r0,147r-849,0r0,-1338r812,0r0,147r-649,0r0,432r577,0r0,147r-577,0r0,465","w":1129},"\u00cc":{"d":"199,-1656r146,247r-139,0r-181,-247r174,0xm170,0r0,-1338r163,0r0,1338r-163,0","w":503},"\u00cd":{"d":"491,-1656r-181,247r-139,0r146,-247r174,0xm170,0r0,-1338r163,0r0,1338r-163,0","w":503},"\u00ce":{"d":"338,-1656r216,247r-158,0r-137,-151r-4,0r-136,151r-158,0r216,-247r161,0xm170,0r0,-1338r163,0r0,1338r-163,0","w":503},"\u00cf":{"d":"-15,-1448r0,-169r161,0r0,169r-161,0xm368,-1448r0,-169r161,0r0,169r-161,0xm170,0r0,-1338r163,0r0,1338r-163,0","w":503},"\u00d1":{"d":"410,-1429v-5,-127,44,-212,170,-212v113,0,170,83,270,93v48,5,60,-36,61,-85r125,0v5,128,-46,212,-170,212v-113,0,-170,-83,-270,-93v-48,-5,-60,36,-61,85r-125,0xm857,-592r243,364r6,0v-23,-354,-10,-738,-13,-1110r163,0r0,1338r-162,0r-525,-746v-91,-130,-172,-251,-243,-364r-6,0v22,326,10,753,13,1110r-163,0r0,-1338r162,0","w":1426},"\u00d2":{"d":"683,-1656r146,247r-139,0r-181,-247r174,0xm1169,-430v45,-132,46,-344,0,-476v-63,-181,-192,-312,-421,-312v-311,0,-456,226,-456,550v0,259,99,435,278,513v108,47,250,47,358,0v116,-50,197,-146,241,-275xm1333,-948v57,166,58,394,-1,559v-86,240,-268,414,-582,414v-318,0,-502,-172,-587,-414v-58,-166,-58,-395,1,-559v87,-241,268,-415,584,-415v317,0,500,173,585,415","w":1496,"k":{"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50,",":50,"\u00dd":40,"\u00c6":50,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"Y":40,"X":40,"V":20,"T":50,"J":55,"A":20}},"\u00d3":{"d":"990,-1656r-181,247r-139,0r146,-247r174,0xm1169,-430v45,-132,46,-344,0,-476v-63,-181,-192,-312,-421,-312v-311,0,-456,226,-456,550v0,259,99,435,278,513v108,47,250,47,358,0v116,-50,197,-146,241,-275xm1333,-948v57,166,58,394,-1,559v-86,240,-268,414,-582,414v-318,0,-502,-172,-587,-414v-58,-166,-58,-395,1,-559v87,-241,268,-415,584,-415v317,0,500,173,585,415","w":1496,"k":{"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50,",":50,"\u00dd":40,"\u00c6":50,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"Y":40,"X":40,"V":20,"T":50,"J":55,"A":20}},"\u00d4":{"d":"831,-1656r216,247r-158,0r-137,-151r-4,0r-136,151r-158,0r216,-247r161,0xm1169,-430v45,-132,46,-344,0,-476v-63,-181,-192,-312,-421,-312v-311,0,-456,226,-456,550v0,259,99,435,278,513v108,47,250,47,358,0v116,-50,197,-146,241,-275xm1333,-948v57,166,58,394,-1,559v-86,240,-268,414,-582,414v-318,0,-502,-172,-587,-414v-58,-166,-58,-395,1,-559v87,-241,268,-415,584,-415v317,0,500,173,585,415","w":1496,"k":{"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50,",":50,"\u00dd":40,"\u00c6":50,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"Y":40,"X":40,"V":20,"T":50,"J":55,"A":20}},"\u00d5":{"d":"436,-1429v-5,-127,44,-212,170,-212v113,0,170,83,270,93v48,5,60,-36,61,-85r125,0v5,128,-46,212,-170,212v-113,0,-170,-83,-270,-93v-48,-5,-60,36,-61,85r-125,0xm1169,-430v45,-132,46,-344,0,-476v-63,-181,-192,-312,-421,-312v-311,0,-456,226,-456,550v0,259,99,435,278,513v108,47,250,47,358,0v116,-50,197,-146,241,-275xm1333,-948v57,166,58,394,-1,559v-86,240,-268,414,-582,414v-318,0,-502,-172,-587,-414v-58,-166,-58,-395,1,-559v87,-241,268,-415,584,-415v317,0,500,173,585,415","w":1496,"k":{"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50,",":50,"\u00dd":40,"\u00c6":50,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"Y":40,"X":40,"V":20,"T":50,"J":55,"A":20}},"\u00d6":{"d":"476,-1448r0,-169r161,0r0,169r-161,0xm859,-1448r0,-169r161,0r0,169r-161,0xm1169,-430v45,-132,46,-344,0,-476v-63,-181,-192,-312,-421,-312v-311,0,-456,226,-456,550v0,259,99,435,278,513v108,47,250,47,358,0v116,-50,197,-146,241,-275xm1333,-948v57,166,58,394,-1,559v-86,240,-268,414,-582,414v-318,0,-502,-172,-587,-414v-58,-166,-58,-395,1,-559v87,-241,268,-415,584,-415v317,0,500,173,585,415","w":1496,"k":{"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50,",":50,"\u00dd":40,"\u00c6":50,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"Y":40,"X":40,"V":20,"T":50,"J":55,"A":20}},"\u00d8":{"d":"750,25v-173,0,-304,-53,-402,-135r-120,135r-108,-96r130,-146v-128,-160,-172,-492,-86,-731v86,-241,268,-415,584,-415v171,0,302,54,399,135r120,-135r109,95r-130,147v126,161,172,493,86,732v-86,240,-268,414,-582,414xm454,-229v99,101,313,145,474,74v177,-78,275,-255,276,-513v0,-132,-27,-238,-73,-324xm1041,-1109v-98,-101,-312,-144,-473,-73v-178,79,-275,255,-276,514v0,132,26,237,72,323","w":1496,"k":{"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50,",":50,"\u00dd":40,"\u00c6":50,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"Y":40,"X":40,"V":20,"T":50,"J":55,"A":20}},"\u00d9":{"d":"618,-1656r146,247r-139,0r-181,-247r174,0xm328,-508v2,244,114,388,359,388v245,0,358,-142,359,-388r0,-830r163,0r0,826v-1,350,-172,537,-524,537v-352,0,-520,-189,-520,-537r0,-826r163,0r0,830","w":1374,"k":{".":50,",":50}},"\u00da":{"d":"925,-1656r-181,247r-139,0r146,-247r174,0xm328,-508v2,244,114,388,359,388v245,0,358,-142,359,-388r0,-830r163,0r0,826v-1,350,-172,537,-524,537v-352,0,-520,-189,-520,-537r0,-826r163,0r0,830","w":1374,"k":{".":50,",":50}},"\u00db":{"d":"765,-1656r216,247r-158,0r-137,-151r-4,0r-136,151r-158,0r216,-247r161,0xm328,-508v2,244,114,388,359,388v245,0,358,-142,359,-388r0,-830r163,0r0,826v-1,350,-172,537,-524,537v-352,0,-520,-189,-520,-537r0,-826r163,0r0,830","w":1374,"k":{".":50,",":50}},"\u00dc":{"d":"415,-1448r0,-169r161,0r0,169r-161,0xm798,-1448r0,-169r161,0r0,169r-161,0xm328,-508v2,244,114,388,359,388v245,0,358,-142,359,-388r0,-830r163,0r0,826v-1,350,-172,537,-524,537v-352,0,-520,-189,-520,-537r0,-826r163,0r0,830","w":1374,"k":{".":50,",":50}},"\u00dd":{"d":"852,-1656r-181,247r-139,0r146,-247r174,0xm690,-538r0,538r-163,0r0,-538r-487,-800r178,0r388,650r5,0r388,-650r178,0","w":1217,"k":{"\u2014":150,"\u2013":150,"\u00bb":110,"\u00ab":195,"-":150,"\u2026":195,".":195,":":110,";":110,",":130,"\u00f0":75,"\u00ff":80,"\u00fd":80,"\u00fc":110,"\u00fb":110,"\u00fa":110,"\u00f9":110,"\u00f8":160,"\u00f6":160,"\u00f5":160,"\u00f4":160,"\u00f3":160,"\u00f2":160,"\u00f1":110,"\u00ef":-65,"\u00ee":-30,"\u00eb":160,"\u00ea":160,"\u00e9":160,"\u00e8":160,"\u00e7":160,"\u00e6":140,"\u00e5":140,"\u00e4":140,"\u00e3":140,"\u00e2":140,"\u00e1":140,"\u00e0":140,"z":80,"y":80,"x":80,"w":80,"v":80,"u":110,"s":135,"r":110,"q":160,"p":110,"o":160,"n":110,"m":110,"g":160,"e":160,"d":160,"c":160,"a":140,"\u00d8":40,"\u00d6":40,"\u00d5":40,"\u00d4":40,"\u00d3":40,"\u00d2":40,"\u00c7":40,"\u00c6":160,"\u00c5":120,"\u00c4":120,"\u00c3":120,"\u00c2":120,"\u00c1":120,"\u00c0":120,"Q":40,"O":40,"J":120,"G":40,"C":40,"A":120}},"\u00d0":{"d":"60,-759r140,0r0,-579r306,0v403,-5,659,141,750,446v65,217,12,489,-88,622v-133,177,-348,276,-665,270r-303,0r0,-612r-140,0r0,-147xm486,-147v398,13,626,-152,626,-528v0,-374,-234,-527,-626,-516r-123,0r0,432r344,0r0,147r-344,0r0,465r123,0","w":1404,"k":{"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50,",":50,"\u00dd":40,"\u00c6":50,"Y":40,"X":40,"V":20,"T":50,"J":60}},"\u00de":{"d":"889,-689v-3,-256,-293,-232,-556,-231r0,470v255,19,559,21,556,-239xm1062,-689v0,358,-357,412,-729,388r0,301r-163,0r0,-1338r163,0r0,271r193,0v304,0,536,89,536,378","w":1162,"k":{"]":80,")":80,"\u201c":40,"\u2018":40,"\u2026":90,".":90,",":80,"\u00dd":110,"\u00c6":120,"\u00c5":90,"\u00c4":90,"\u00c3":90,"\u00c2":90,"\u00c1":90,"\u00c0":90,"Z":100,"Y":110,"X":120,"W":40,"V":65,"J":90,"A":90}},"a":{"d":"177,-919v128,-65,390,-80,517,-5v101,60,159,136,159,290r0,634r-130,0r-17,-105r-4,0v-62,74,-159,130,-294,130v-196,0,-313,-110,-313,-306v0,-205,143,-299,350,-303v97,-2,181,21,253,43v0,-70,3,-143,-22,-188v-40,-70,-118,-112,-237,-111v-104,1,-183,21,-262,51r0,-130xm437,-107v119,0,201,-63,261,-120r0,-190v-64,-17,-146,-35,-232,-35v-125,0,-212,50,-211,171v1,115,69,174,182,174","w":1003,"k":{"\u201c":100,"\u2018":100}},"b":{"d":"559,-107v205,0,281,-163,281,-372v0,-218,-78,-363,-277,-363v-107,0,-190,51,-248,108r0,497v52,66,127,130,244,130xm318,-861v75,-83,206,-139,360,-105v212,47,324,210,324,475v0,247,-97,411,-266,485v-50,22,-103,31,-157,31v-129,0,-216,-58,-266,-131r-3,0r-33,106r-117,0r0,-1448r155,0r0,587r3,0","w":1097,"k":{"]":40,")":40,"\u201c":50,"\u2018":50}},"c":{"d":"813,-29v-105,57,-299,73,-431,25v-179,-65,-287,-214,-287,-459v0,-282,130,-447,356,-501v122,-29,264,-4,347,44r0,129v-74,-27,-135,-48,-224,-48v-215,0,-317,144,-317,374v0,216,107,355,324,355v87,0,165,-21,232,-48r0,129","w":898,"k":{"\u2014":60,"\u2013":60,"\u00ab":40,"-":60,"\u00e7":30,"c":30}},"d":{"d":"782,-734v-71,-76,-206,-143,-340,-92v-125,47,-187,175,-185,361v3,204,76,358,275,358v121,0,198,-61,250,-130r0,-497xm784,-106v-58,74,-137,135,-272,131v-279,-9,-417,-192,-417,-488v0,-275,112,-447,329,-501v152,-38,282,16,355,103r3,0r0,-587r155,0r0,1448r-117,0r-32,-106r-4,0","w":1097},"e":{"d":"743,-576v-4,-153,-69,-266,-221,-266v-159,0,-240,117,-259,266r480,0xm255,-443v1,226,130,331,352,333v108,1,185,-19,267,-48r0,129v-70,34,-179,55,-287,54v-316,-4,-492,-164,-492,-487v0,-246,101,-407,270,-481v52,-22,106,-32,163,-32v289,0,392,220,379,532r-652,0","w":1019,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"\u00ff":10,"\u00fd":10,"y":10,"v":10}},"f":{"d":"553,-1473v51,-1,114,6,148,16r0,131v-34,-7,-89,-12,-128,-12v-155,-1,-222,84,-221,242r0,146r283,0r0,133r-283,0r0,817r-155,0r0,-817r-167,0r0,-133r167,0r0,-145v1,-244,121,-372,356,-378","w":651,"k":{"\"":-70,"'":-70,"}":-90,"]":-70,")":-40,"\u2014":40,"\u2013":40,"\u00ab":80,"\u201d":-80,"\u201c":-80,"\u2019":-80,"\u2018":-80,"-":40,"\u2026":80,".":80,",":50,"\u00ef":-140,"\u00ee":-60,"\u00ec":-75}},"g":{"d":"538,-842v-205,0,-281,163,-281,373v0,218,80,362,279,362v107,0,189,-49,246,-108r0,-497v-52,-66,-127,-130,-244,-130xm506,25v-276,0,-411,-188,-411,-481v0,-247,97,-413,266,-488v50,-22,103,-31,157,-31v129,1,216,58,266,133r4,0r32,-108r117,0r0,1006v-5,300,-195,430,-496,434v-110,1,-218,-22,-284,-56r0,-131v81,33,166,52,280,52v218,0,346,-99,345,-316r0,-127r-3,0v-64,70,-147,113,-273,113","w":1087,"k":{"j":-15}},"h":{"d":"599,-842v-130,0,-224,79,-284,167r0,675r-155,0r0,-1448r155,0r0,628r3,0v68,-85,160,-155,310,-155v205,0,313,119,312,339r0,636r-155,0r0,-611v-1,-145,-46,-231,-186,-231","w":1090,"k":{"]":40,")":40,"\u201c":50,"\u2018":50}},"i":{"d":"160,0r0,-950r155,0r0,950r-155,0xm156,-1171r0,-173r163,0r0,173r-163,0","w":475},"j":{"d":"2,355v122,0,177,-44,177,-161r0,-1144r155,0r0,1162v-3,188,-110,278,-313,278v-48,0,-110,-9,-141,-20r0,-132v38,10,76,17,122,17xm175,-1171r0,-173r163,0r0,173r-163,0","w":494,"k":{"j":-15}},"k":{"d":"765,-950r202,0r-464,437r463,513r-193,0r-456,-506r-2,0r0,506r-155,0r0,-1448r155,0r0,922","w":997,"k":{"\u2014":110,"\u2013":110,"\u00ab":100,"-":110,"\u00f0":40,"\u00f8":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u00eb":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"q":40,"o":40,"g":40,"e":40,"d":40,"c":40}},"l":{"d":"160,0r0,-1448r155,0r0,1448r-155,0","w":475},"m":{"d":"1200,-842v-131,0,-212,79,-274,167r0,675r-155,0r0,-611v0,-143,-55,-231,-193,-231v-131,0,-211,79,-273,167r0,675r-155,0r0,-950r120,0r30,132r3,0v68,-85,154,-156,305,-157v150,-1,236,81,284,190r4,0v76,-105,169,-190,333,-190v205,0,318,120,318,339r0,636r-154,0r0,-611v0,-143,-55,-231,-193,-231","w":1697,"k":{"]":40,")":40,"\u201c":50,"\u2018":50}},"n":{"d":"589,-842v-128,0,-225,80,-284,167r0,675r-155,0r0,-950r120,0r30,132r3,0v70,-86,161,-157,315,-157v210,0,312,122,312,339r0,636r-155,0r0,-611v1,-150,-51,-231,-186,-231","w":1080,"k":{"]":40,")":40,"\u201c":50,"\u2018":50}},"o":{"d":"754,-203v73,-82,106,-283,60,-427v-38,-121,-118,-213,-268,-213v-203,0,-289,158,-289,369v0,212,87,367,290,367v94,0,159,-42,207,-96xm966,-679v41,119,42,290,-1,409v-62,173,-192,295,-418,295v-228,0,-360,-121,-421,-295v-41,-120,-42,-291,1,-409v62,-173,192,-296,419,-296v228,0,360,122,420,296","w":1092,"k":{"]":40,")":40,"\u201c":50,"\u2018":50}},"p":{"d":"551,-107v199,0,279,-157,279,-377v0,-206,-74,-358,-274,-358v-121,0,-197,64,-251,130r0,497v58,59,138,108,246,108xm303,-842v69,-109,267,-171,431,-106v167,66,258,223,258,462v0,274,-111,447,-328,500v-152,37,-283,-15,-356,-102r-3,0r0,553r-155,0r0,-1415r117,0r33,108r3,0","w":1087,"k":{"]":30,")":30,"\u201c":50,"\u2018":50}},"q":{"d":"533,-842v-205,0,-281,163,-281,373v0,218,80,362,279,362v107,0,189,-49,246,-108r0,-497v-52,-66,-127,-130,-244,-130xm501,25v-276,0,-411,-188,-411,-481v0,-247,97,-413,266,-488v50,-22,103,-31,157,-31v130,2,216,56,266,133r4,0r32,-108r117,0r0,1415r-155,0r0,-553r-3,0v-64,70,-147,113,-273,113","w":1072,"k":{";":-50,",":-50}},"r":{"d":"303,-799v70,-106,188,-187,368,-174r0,149v-173,0,-298,56,-366,162r0,662r-155,0r0,-950r120,0r30,151r3,0","w":686,"k":{"\u2014":110,"\u2013":110,"\u00ab":80,"\u201d":-50,"\u2019":-50,"-":110,"\u2026":110,".":110,",":100}},"s":{"d":"704,-790v-135,-58,-454,-112,-454,93v0,153,194,134,310,175v106,38,187,103,183,250v-6,214,-167,294,-385,297v-107,2,-195,-20,-263,-54r0,-130v147,67,495,104,495,-105v0,-154,-180,-143,-300,-183v-107,-35,-193,-92,-191,-235v3,-200,138,-289,336,-293v105,-2,195,23,269,53r0,132","w":828},"t":{"d":"522,-110v43,0,94,-8,129,-18r0,130v-38,14,-98,23,-159,23v-185,-1,-294,-84,-294,-264r0,-578r-183,0r0,-133r183,0r0,-260r155,0r0,260r284,0r0,133r-284,0r0,554v2,104,62,153,169,153","w":711,"k":{"\u2014":40,"\u2013":40,"-":40}},"u":{"d":"530,-107v162,0,235,-95,235,-261r0,-582r155,0r0,584v0,260,-137,391,-393,391v-254,0,-387,-134,-387,-392r0,-583r155,0r0,582v-1,167,74,261,235,261","w":1060},"v":{"d":"474,-157r280,-793r162,0r-362,950r-162,0r-362,-950r160,0r280,793r4,0","w":946,"k":{"]":30,")":30,"?":50,"\u2026":100,".":100,",":70}},"w":{"d":"726,-793v-21,87,-40,163,-58,226r-156,567r-159,0r-313,-950r157,0r176,592v23,78,41,140,53,187r4,0v11,-48,28,-117,53,-208r159,-571r174,0r159,571v21,77,39,147,53,208r4,0v16,-61,34,-124,53,-187r176,-592r157,0r-313,950r-161,0r-156,-567v-19,-67,-38,-143,-58,-226r-4,0","w":1458,"k":{"]":20,")":20,"?":40,"\u2026":60,".":60,",":60}},"x":{"d":"470,-584r258,-366r171,0r-347,470r360,480r-168,0r-278,-380r-4,0r-274,380r-168,0r360,-484r-347,-466r171,0r262,366r4,0","w":932,"k":{"\u2014":50,"\u2013":50,"\u00ab":50,"?":50,"-":50}},"y":{"d":"30,-950r159,0r295,745r6,0r299,-745r163,0r-593,1415r-154,0r203,-484","w":982,"k":{"\u00ab":40,"?":40,"\u2026":100,".":100,",":70}},"z":{"d":"608,-813r0,-4r-522,0r0,-133r719,0r0,98r-528,715r0,4r563,0r0,133r-770,0r0,-84","w":910,"k":{"\u2014":60,"\u2013":60,"\u00ab":40,"?":40,"-":60}},"\u00e0":{"d":"177,-919v128,-65,390,-80,517,-5v101,60,159,136,159,290r0,634r-130,0r-17,-105r-4,0v-62,74,-159,130,-294,130v-196,0,-313,-110,-313,-306v0,-205,143,-299,350,-303v97,-2,181,21,253,43v0,-70,3,-143,-22,-188v-40,-70,-118,-112,-237,-111v-104,1,-183,21,-262,51r0,-130xm437,-107v119,0,201,-63,261,-120r0,-190v-64,-17,-146,-35,-232,-35v-125,0,-212,50,-211,171v1,115,69,174,182,174xm446,-1473r123,349r-130,0r-161,-349r168,0","w":1003,"k":{"\u201c":100,"\u2018":100}},"\u00e1":{"d":"177,-919v128,-65,390,-80,517,-5v101,60,159,136,159,290r0,634r-130,0r-17,-105r-4,0v-62,74,-159,130,-294,130v-196,0,-313,-110,-313,-306v0,-205,143,-299,350,-303v97,-2,181,21,253,43v0,-70,3,-143,-22,-188v-40,-70,-118,-112,-237,-111v-104,1,-183,21,-262,51r0,-130xm437,-107v119,0,201,-63,261,-120r0,-190v-64,-17,-146,-35,-232,-35v-125,0,-212,50,-211,171v1,115,69,174,182,174xm705,-1473r-161,349r-130,0r123,-349r168,0","w":1003,"k":{"\u201c":100,"\u2018":100}},"\u00e2":{"d":"584,-1473r210,349r-140,0r-147,-246r-4,0r-146,246r-140,0r210,-349r157,0xm177,-919v128,-65,390,-80,517,-5v101,60,159,136,159,290r0,634r-130,0r-17,-105r-4,0v-62,74,-159,130,-294,130v-196,0,-313,-110,-313,-306v0,-205,143,-299,350,-303v97,-2,181,21,253,43v0,-70,3,-143,-22,-188v-40,-70,-118,-112,-237,-111v-104,1,-183,21,-262,51r0,-130xm437,-107v119,0,201,-63,261,-120r0,-190v-64,-17,-146,-35,-232,-35v-125,0,-212,50,-211,171v1,115,69,174,182,174","w":1003,"k":{"\u201c":100,"\u2018":100}},"\u00e3":{"d":"356,-1265v-46,0,-60,36,-60,87r-122,0v-4,-128,44,-211,168,-212v114,0,173,95,272,95v46,0,60,-36,60,-87r122,0v4,128,-44,211,-168,212v-114,0,-173,-95,-272,-95xm177,-919v128,-65,390,-80,517,-5v101,60,159,136,159,290r0,634r-130,0r-17,-105r-4,0v-62,74,-159,130,-294,130v-196,0,-313,-110,-313,-306v0,-205,143,-299,350,-303v97,-2,181,21,253,43v0,-70,3,-143,-22,-188v-40,-70,-118,-112,-237,-111v-104,1,-183,21,-262,51r0,-130xm437,-107v119,0,201,-63,261,-120r0,-190v-64,-17,-146,-35,-232,-35v-125,0,-212,50,-211,171v1,115,69,174,182,174","w":1003,"k":{"\u201c":100,"\u2018":100}},"\u00e4":{"d":"177,-919v128,-65,390,-80,517,-5v101,60,159,136,159,290r0,634r-130,0r-17,-105r-4,0v-62,74,-159,130,-294,130v-196,0,-313,-110,-313,-306v0,-205,143,-299,350,-303v97,-2,181,21,253,43v0,-70,3,-143,-22,-188v-40,-70,-118,-112,-237,-111v-104,1,-183,21,-262,51r0,-130xm437,-107v119,0,201,-63,261,-120r0,-190v-64,-17,-146,-35,-232,-35v-125,0,-212,50,-211,171v1,115,69,174,182,174xm229,-1171r0,-167r159,0r0,167r-159,0xm610,-1171r0,-167r159,0r0,167r-159,0","w":1003,"k":{"\u201c":100,"\u2018":100}},"\u00e5":{"d":"708,-1295v0,131,-97,195,-229,195v-132,0,-229,-64,-229,-195v0,-131,97,-195,229,-195v132,0,229,64,229,195xm585,-1295v0,-62,-46,-97,-106,-97v-60,0,-106,35,-106,97v0,62,46,97,106,97v60,0,106,-35,106,-97xm177,-919v128,-65,390,-80,517,-5v101,60,159,136,159,290r0,634r-130,0r-17,-105r-4,0v-62,74,-159,130,-294,130v-196,0,-313,-110,-313,-306v0,-205,143,-299,350,-303v97,-2,181,21,253,43v0,-70,3,-143,-22,-188v-40,-70,-118,-112,-237,-111v-104,1,-183,21,-262,51r0,-130xm437,-107v119,0,201,-63,261,-120r0,-190v-64,-17,-146,-35,-232,-35v-125,0,-212,50,-211,171v1,115,69,174,182,174","w":1003,"k":{"\u201c":100,"\u2018":100}},"\u00e6":{"d":"177,-919v74,-35,173,-55,281,-56v172,-2,272,62,331,171r4,0v66,-100,161,-171,312,-171v286,0,390,228,375,532r-632,0v0,222,113,332,332,333v106,0,187,-18,267,-48r0,129v-120,62,-353,72,-495,17v-61,-24,-113,-58,-154,-108r-4,0v-85,79,-193,145,-359,145v-209,0,-340,-100,-340,-306v0,-205,143,-298,350,-303v100,-2,181,21,254,43v11,-199,-62,-302,-260,-299v-104,1,-183,21,-262,51r0,-130xm255,-281v0,190,233,204,370,135v43,-22,81,-50,109,-82v-21,-52,-33,-115,-37,-188v-56,-15,-155,-37,-231,-36v-125,1,-211,50,-211,171xm1316,-576v-4,-153,-69,-266,-221,-266v-157,0,-224,120,-242,266r463,0","w":1592,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"\u00ff":10,"\u00fd":10,"y":10,"v":10}},"\u00e7":{"d":"325,358v88,23,264,41,274,-64v-11,-78,-112,-70,-197,-79r60,-199v-232,-44,-367,-203,-367,-479v0,-282,130,-447,356,-501v122,-29,264,-3,347,44r0,129v-75,-27,-135,-48,-224,-48v-216,0,-317,146,-317,374v0,216,107,355,324,355v86,0,166,-21,232,-48r0,129v-57,33,-143,50,-231,54r-28,101v98,16,180,54,181,165v2,190,-239,227,-410,180r0,-113","w":898,"k":{"\u2014":60,"\u2013":60,"\u00ab":40,"-":60,"\u00e7":30,"c":30}},"\u00e8":{"d":"477,-1473r123,349r-130,0r-161,-349r168,0xm743,-576v-4,-153,-69,-266,-221,-266v-159,0,-240,117,-259,266r480,0xm255,-443v1,226,130,331,352,333v108,1,185,-19,267,-48r0,129v-70,34,-179,55,-287,54v-316,-4,-492,-164,-492,-487v0,-246,101,-407,270,-481v52,-22,106,-32,163,-32v289,0,392,220,379,532r-652,0","w":1019,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"\u00ff":10,"\u00fd":10,"y":10,"v":10}},"\u00e9":{"d":"743,-1473r-161,349r-130,0r123,-349r168,0xm743,-576v-4,-153,-69,-266,-221,-266v-159,0,-240,117,-259,266r480,0xm255,-443v1,226,130,331,352,333v108,1,185,-19,267,-48r0,129v-70,34,-179,55,-287,54v-316,-4,-492,-164,-492,-487v0,-246,101,-407,270,-481v52,-22,106,-32,163,-32v289,0,392,220,379,532r-652,0","w":1019,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"\u00ff":10,"\u00fd":10,"y":10,"v":10}},"\u00ea":{"d":"598,-1473r210,349r-140,0r-147,-246r-4,0r-146,246r-140,0r210,-349r157,0xm743,-576v-4,-153,-69,-266,-221,-266v-159,0,-240,117,-259,266r480,0xm255,-443v1,226,130,331,352,333v108,1,185,-19,267,-48r0,129v-70,34,-179,55,-287,54v-316,-4,-492,-164,-492,-487v0,-246,101,-407,270,-481v52,-22,106,-32,163,-32v289,0,392,220,379,532r-652,0","w":1019,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"\u00ff":10,"\u00fd":10,"y":10,"v":10}},"\u00eb":{"d":"253,-1171r0,-167r159,0r0,167r-159,0xm634,-1171r0,-167r159,0r0,167r-159,0xm743,-576v-4,-153,-69,-266,-221,-266v-159,0,-240,117,-259,266r480,0xm255,-443v1,226,130,331,352,333v108,1,185,-19,267,-48r0,129v-70,34,-179,55,-287,54v-316,-4,-492,-164,-492,-487v0,-246,101,-407,270,-481v52,-22,106,-32,163,-32v289,0,392,220,379,532r-652,0","w":1019,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"\u00ff":10,"\u00fd":10,"y":10,"v":10}},"\u00ec":{"d":"160,0r0,-950r155,0r0,950r-155,0xm195,-1473r123,349r-130,0r-161,-349r168,0","w":475},"\u00ed":{"d":"160,0r0,-950r155,0r0,950r-155,0xm468,-1473r-161,349r-130,0r123,-349r168,0","w":475},"\u00ee":{"d":"324,-1473r210,349r-140,0r-147,-246r-4,0r-146,246r-140,0r210,-349r157,0xm160,0r0,-950r155,0r0,950r-155,0","w":475},"\u00ef":{"d":"160,0r0,-950r155,0r0,950r-155,0xm-25,-1171r0,-167r159,0r0,167r-159,0xm356,-1171r0,-167r159,0r0,167r-159,0","w":475},"\u00f1":{"d":"403,-1265v-46,0,-60,36,-60,87r-122,0v-4,-128,44,-211,168,-212v114,0,173,95,272,95v46,0,60,-36,60,-87r122,0v4,128,-44,211,-168,212v-114,0,-173,-95,-272,-95xm589,-842v-128,0,-225,80,-284,167r0,675r-155,0r0,-950r120,0r30,132r3,0v70,-86,161,-157,315,-157v210,0,312,122,312,339r0,636r-155,0r0,-611v1,-150,-51,-231,-186,-231","w":1080,"k":{"]":40,")":40,"\u201c":50,"\u2018":50}},"\u00f2":{"d":"754,-203v73,-82,106,-283,60,-427v-38,-121,-118,-213,-268,-213v-203,0,-289,158,-289,369v0,212,87,367,290,367v94,0,159,-42,207,-96xm966,-679v41,119,42,290,-1,409v-62,173,-192,295,-418,295v-228,0,-360,-121,-421,-295v-41,-120,-42,-291,1,-409v62,-173,192,-296,419,-296v228,0,360,122,420,296xm492,-1473r123,349r-130,0r-161,-349r168,0","w":1092,"k":{"]":40,")":40,"\u201c":50,"\u2018":50}},"\u00f3":{"d":"754,-203v73,-82,106,-283,60,-427v-38,-121,-118,-213,-268,-213v-203,0,-289,158,-289,369v0,212,87,367,290,367v94,0,159,-42,207,-96xm966,-679v41,119,42,290,-1,409v-62,173,-192,295,-418,295v-228,0,-360,-121,-421,-295v-41,-120,-42,-291,1,-409v62,-173,192,-296,419,-296v228,0,360,122,420,296xm781,-1473r-161,349r-130,0r123,-349r168,0","w":1092,"k":{"]":40,")":40,"\u201c":50,"\u2018":50}},"\u00f4":{"d":"620,-1473r210,349r-140,0r-147,-246r-4,0r-146,246r-140,0r210,-349r157,0xm754,-203v73,-82,106,-283,60,-427v-38,-121,-118,-213,-268,-213v-203,0,-289,158,-289,369v0,212,87,367,290,367v94,0,159,-42,207,-96xm966,-679v41,119,42,290,-1,409v-62,173,-192,295,-418,295v-228,0,-360,-121,-421,-295v-41,-120,-42,-291,1,-409v62,-173,192,-296,419,-296v228,0,360,122,420,296","w":1092,"k":{"]":40,")":40,"\u201c":50,"\u2018":50}},"\u00f5":{"d":"410,-1265v-46,0,-60,36,-60,87r-122,0v-4,-128,44,-211,168,-212v114,0,173,95,272,95v46,0,60,-36,60,-87r122,0v4,128,-44,211,-168,212v-114,0,-173,-95,-272,-95xm754,-203v73,-82,106,-283,60,-427v-38,-121,-118,-213,-268,-213v-203,0,-289,158,-289,369v0,212,87,367,290,367v94,0,159,-42,207,-96xm966,-679v41,119,42,290,-1,409v-62,173,-192,295,-418,295v-228,0,-360,-121,-421,-295v-41,-120,-42,-291,1,-409v62,-173,192,-296,419,-296v228,0,360,122,420,296","w":1092,"k":{"]":40,")":40,"\u201c":50,"\u2018":50}},"\u00f6":{"d":"754,-203v73,-82,106,-283,60,-427v-38,-121,-118,-213,-268,-213v-203,0,-289,158,-289,369v0,212,87,367,290,367v94,0,159,-42,207,-96xm966,-679v41,119,42,290,-1,409v-62,173,-192,295,-418,295v-228,0,-360,-121,-421,-295v-41,-120,-42,-291,1,-409v62,-173,192,-296,419,-296v228,0,360,122,420,296xm275,-1171r0,-167r159,0r0,167r-159,0xm656,-1171r0,-167r159,0r0,167r-159,0","w":1092,"k":{"]":40,")":40,"\u201c":50,"\u2018":50}},"\u00f8":{"d":"733,-11v-145,64,-365,37,-463,-50r-76,86r-99,-85r85,-97v-86,-117,-112,-355,-53,-522v62,-173,192,-296,419,-296v117,0,207,34,276,87r76,-87r99,85r-86,98v86,117,113,355,54,522v-42,120,-120,209,-232,259xm338,-746v-82,91,-108,322,-47,463r433,-493v-72,-70,-193,-87,-294,-42v-35,16,-65,42,-92,72xm547,-107v239,0,314,-228,279,-471v-5,-32,-15,-61,-26,-88r-432,493v49,44,109,66,179,66","w":1092,"k":{"]":40,")":40,"\u201c":50,"\u2018":50}},"\u00df":{"d":"622,-1338v-214,0,-307,139,-307,353r0,985r-155,0r0,-994v6,-301,161,-479,462,-479v173,0,292,60,347,175v46,98,9,223,-41,282v-53,62,-123,109,-164,180v-21,35,-27,94,-4,129v69,105,233,121,324,207v70,66,105,226,51,336v-58,119,-182,189,-357,189v-97,0,-177,-21,-238,-54r0,-130v68,27,130,53,224,52v137,-2,246,-52,246,-182v0,-197,-239,-184,-344,-289v-41,-41,-74,-92,-73,-173v0,-194,154,-243,226,-365v12,-21,18,-44,18,-71v0,-114,-93,-151,-215,-151","w":1248,"k":{"\"":70,"'":70,"]":40,")":40,"\u201d":90,"\u201c":70,"\u2019":90,"\u2018":70}},"\u00f9":{"d":"530,-107v162,0,235,-95,235,-261r0,-582r155,0r0,584v0,260,-137,391,-393,391v-254,0,-387,-134,-387,-392r0,-583r155,0r0,582v-1,167,74,261,235,261xm478,-1473r123,349r-130,0r-161,-349r168,0","w":1060},"\u00fa":{"d":"530,-107v162,0,235,-95,235,-261r0,-582r155,0r0,584v0,260,-137,391,-393,391v-254,0,-387,-134,-387,-392r0,-583r155,0r0,582v-1,167,74,261,235,261xm754,-1473r-161,349r-130,0r123,-349r168,0","w":1060},"\u00fb":{"d":"610,-1473r210,349r-140,0r-147,-246r-4,0r-146,246r-140,0r210,-349r157,0xm530,-107v162,0,235,-95,235,-261r0,-582r155,0r0,584v0,260,-137,391,-393,391v-254,0,-387,-134,-387,-392r0,-583r155,0r0,582v-1,167,74,261,235,261","w":1060},"\u00fc":{"d":"530,-107v162,0,235,-95,235,-261r0,-582r155,0r0,584v0,260,-137,391,-393,391v-254,0,-387,-134,-387,-392r0,-583r155,0r0,582v-1,167,74,261,235,261xm260,-1171r0,-167r159,0r0,167r-159,0xm641,-1171r0,-167r159,0r0,167r-159,0","w":1060},"\u00fd":{"d":"30,-950r159,0r295,745r6,0r299,-745r163,0r-593,1415r-154,0r203,-484xm703,-1473r-161,349r-130,0r123,-349r168,0","w":982,"k":{"\u00ab":40,"?":40,"\u2026":100,".":100,",":70}},"\u00ff":{"d":"30,-950r159,0r295,745r6,0r299,-745r163,0r-593,1415r-154,0r203,-484xm217,-1171r0,-167r159,0r0,167r-159,0xm598,-1171r0,-167r159,0r0,167r-159,0","w":982,"k":{"\u00ab":40,"?":40,"\u2026":100,".":100,",":70}},"\u00f0":{"d":"428,-1448v60,52,121,110,177,172r251,-69r35,125r-194,53v136,180,270,383,270,688v0,229,-94,390,-251,466v-103,50,-261,49,-367,3v-160,-68,-254,-215,-254,-439v0,-220,97,-371,247,-444v50,-23,103,-35,161,-35v111,0,180,37,240,93r3,-3v-53,-104,-121,-202,-194,-290r-264,72r-35,-124r204,-56v-72,-77,-146,-143,-223,-212r194,0xm257,-449v0,199,86,342,278,342v194,0,273,-159,273,-361v0,-198,-90,-328,-276,-328v-192,0,-275,147,-275,347","w":1077,"k":{"]":40,")":40}},"\u00fe":{"d":"308,-861v74,-86,206,-139,360,-105v211,47,324,213,324,477v0,275,-110,450,-328,503v-152,37,-283,-16,-356,-102r-3,0r0,553r-155,0r0,-1913r155,0r0,587r3,0xm551,-107v197,0,277,-157,277,-374v0,-214,-79,-361,-277,-361v-107,0,-188,50,-246,108r0,519v58,59,138,108,246,108","w":1087,"k":{"]":40,")":40,"\u201c":50,"\u2018":50}},"&":{"d":"955,-326v68,-91,112,-211,114,-370r160,0v-2,204,-77,357,-176,472r218,224r-197,0r-125,-127v-141,117,-402,200,-625,122v-133,-47,-224,-149,-224,-318v0,-218,137,-307,276,-388v-89,-91,-191,-170,-194,-341v-5,-261,259,-358,512,-292v125,33,218,120,218,276v0,220,-163,297,-307,381xm262,-335v0,173,143,251,330,221v102,-17,190,-56,261,-109r-381,-390v-100,63,-210,123,-210,278xm546,-1231v-147,-4,-236,105,-191,249v27,85,99,142,156,202v109,-63,239,-113,239,-274v0,-124,-80,-173,-204,-177","w":1371},"`":{"d":"376,-1473r123,349r-130,0r-161,-349r168,0","w":700},"\u00b4":{"d":"506,-1473r-161,349r-130,0r123,-349r168,0","w":700},"\u00a8":{"d":"80,-1171r0,-167r159,0r0,167r-159,0xm461,-1171r0,-167r159,0r0,167r-159,0","w":700},"\u00af":{"d":"80,-1300r540,0r0,129r-540,0r0,-129","w":700},"\u02c9":{"d":"80,-1300r540,0r0,129r-540,0r0,-129","w":700},"\u00b8":{"d":"152,358v86,22,265,41,274,-64v-11,-78,-112,-70,-197,-79r65,-215r122,0r-35,126v98,16,180,54,181,165v2,190,-239,227,-410,180r0,-113","w":700},",":{"d":"187,-218r173,0r-189,608r-151,0","w":540,"k":{"\u045e":70,"\u044a":90,"\u0447":115,"\u0443":70,"\u0442":105,"\u0474":60,"\u040b":185,"\u0402":185,"\u042a":95,"\u0427":105,"\u0424":80,"\u0422":185,"\u00ab":50,"\u201c":70,"\u2018":70,"\u00ff":70,"\u00fd":70,"y":70,"v":60,"\u00dd":150,"Y":150,"W":130,"V":160,"T":185}},";":{"d":"187,-218r173,0r-189,608r-151,0xm366,-807r0,195r-191,0r0,-195r191,0","w":546,"k":{"\u0474":90,"\u040b":140,"\u0402":140,"\u042a":40,"\u0422":140,"\u00dd":110,"Y":110,"V":70,"T":140}},":":{"d":"175,0r0,-195r191,0r0,195r-191,0xm366,-807r0,195r-191,0r0,-195r191,0","w":541,"k":{"\u040b":140,"\u0402":140,"\u042a":40,"\u0422":140,"\u00dd":110,"Y":110,"V":70,"T":140}},".":{"d":"175,0r0,-195r191,0r0,195r-191,0","w":541,"k":{"\u0475":105,"\u045e":50,"\u044a":70,"\u0447":145,"\u0443":50,"\u0442":125,"\u0474":90,"\u040b":160,"\u0402":160,"\u042a":70,"\u0427":50,"\u0424":40,"\u0422":160,"\u041e":50,"\u00ab":50,"\u201c":70,"\u2018":70,"\u00ff":50,"\u00fd":50,"y":50,"w":60,"v":70,"\u00dd":195,"\u00d8":50,"\u00d6":50,"\u00d5":50,"\u00d4":50,"\u00d3":50,"\u00d2":50,"Y":195,"W":70,"V":140,"T":160,"O":50}},"\u2026":{"d":"175,0r0,-195r191,0r0,195r-191,0xm716,0r0,-195r191,0r0,195r-191,0xm1257,0r0,-195r191,0r0,195r-191,0","w":1623,"k":{"\u0475":105,"\u045e":50,"\u044a":70,"\u0447":145,"\u0443":50,"\u0442":125,"\u0474":90,"\u040b":160,"\u0402":160,"\u042a":70,"\u0427":50,"\u0424":40,"\u0422":160,"\u041e":50,"\u00ff":50,"\u00fd":50,"y":50,"v":70,"\u00dd":195,"\u00d8":50,"\u00d6":50,"\u00d5":50,"\u00d4":50,"\u00d3":50,"\u00d2":50,"Y":195,"W":70,"V":140,"T":160,"O":50}},"-":{"d":"120,-571r441,0r0,145r-441,0r0,-145","w":681,"k":{"\u0459":60,"\u044a":60,"\u0445":50,"\u0442":85,"\u043b":60,"\u0437":40,"\u0436":50,"\u0434":40,"\u0474":70,"\u0462":40,"\u040e":100,"\u040b":140,"\u0409":50,"\u0408":130,"\u0402":140,"\u042f":50,"\u042a":115,"\u0427":60,"\u0425":50,"\u0423":100,"\u0422":140,"\u041b":50,"\u0417":60,"\u0416":60,"z":70,"x":50,"\u00dd":150,"\u00c6":40,"Z":60,"Y":150,"X":50,"W":30,"V":70,"T":140,"S":40,"J":130}},"\u2010":{"d":"120,-571r441,0r0,145r-441,0r0,-145","w":681},"\u00ad":{"d":"120,-571r441,0r0,145r-441,0r0,-145","w":681},"!":{"d":"175,0r0,-195r191,0r0,195r-191,0xm360,-1338r-24,907r-131,0r-24,-907r179,0","w":541},"\u00a1":{"d":"366,-950r0,195r-191,0r0,-195r191,0xm336,-519r24,907r-179,0r24,-907r131,0","w":541,"k":{"\u0458":-80,"\u0474":60,"\u040e":40,"\u040b":50,"\u0402":50,"\u0423":40,"\u0422":50,"\u0417":30,"j":-80,"\u00dd":90,"Z":50,"Y":90,"W":40,"V":50,"T":50}},"?":{"d":"223,0r0,-195r191,0r0,195r-191,0xm611,-1042v0,-243,-374,-207,-531,-124r0,-132v106,-60,312,-87,454,-42v134,42,238,126,238,291v0,327,-383,285,-384,618r-137,0v-24,-249,149,-328,278,-443v45,-40,82,-86,82,-168","w":873,"k":{"\u00ab":105}},"\u00bf":{"d":"650,-950r0,195r-191,0r0,-195r191,0xm262,92v0,243,375,207,531,124r0,132v-107,60,-311,87,-454,42v-134,-42,-238,-126,-238,-291v0,-327,384,-284,384,-618r137,0v25,253,-153,329,-283,447v-43,39,-77,85,-77,164","w":873,"k":{"\u0475":60,"\u0473":50,"\u045b":50,"\u0459":60,"\u0458":-110,"\u0451":50,"\u0450":50,"\u0454":50,"\u0452":50,"\u044f":50,"\u044a":60,"\u0447":40,"\u0445":50,"\u0442":60,"\u0441":50,"\u043e":50,"\u043b":60,"\u0436":60,"\u0435":50,"\u0430":40,"\u040e":90,"\u040b":140,"\u0409":80,"\u0404":50,"\u0402":140,"\u0425":80,"\u0423":90,"\u0422":140,"\u0421":50,"\u041e":50,"\u041b":80,"\u0417":50,"\u0416":60,"\u0410":50,"\u00f0":50,"\u00fc":20,"\u00fb":20,"\u00fa":20,"\u00f9":20,"\u00f8":50,"\u00f6":50,"\u00f5":50,"\u00f4":50,"\u00f3":50,"\u00f2":50,"\u00eb":50,"\u00ea":50,"\u00e9":50,"\u00e8":50,"\u00e7":50,"\u00e6":40,"\u00e5":40,"\u00e4":40,"\u00e3":40,"\u00e2":40,"\u00e1":40,"\u00e0":40,"z":30,"x":50,"w":30,"v":40,"u":20,"q":50,"o":50,"j":-110,"f":60,"e":50,"c":50,"a":40,"\u00dd":150,"\u00dc":40,"\u00db":40,"\u00da":40,"\u00d9":40,"\u00d8":50,"\u00d6":50,"\u00d5":50,"\u00d4":50,"\u00d3":50,"\u00d2":50,"\u00c7":50,"\u00c6":140,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"Z":70,"Y":150,"X":80,"W":80,"V":110,"U":40,"T":140,"S":60,"Q":50,"O":50,"J":60,"G":50,"C":50,"A":50}},"\u2018":{"d":"60,-1338r143,0r176,494r-173,0","w":449,"k":{"\u0463":-60,"\u0459":96,"\u044a":-80,"\u043b":105,"\u0434":80,"\u0409":125,"\u0408":195,"\u041b":125,"\u0416":50,"\u0414":210,"\u0410":130,"\u2018":50,"\u00bf":145,"t":-50,"\u00c6":120,"\u00c5":130,"\u00c4":130,"\u00c3":130,"\u00c2":130,"\u00c1":130,"\u00c0":130,"J":195,"A":130}},"\u2019":{"d":"216,-1338r173,0r-176,494r-143,0","w":449,"k":{"\u0473":110,"\u0459":165,"\u0451":110,"\u0450":110,"\u0455":60,"\u0454":110,"\u044f":60,"\u0444":90,"\u0441":110,"\u043e":110,"\u043b":165,"\u0435":110,"\u0434":130,"\u0431":40,"\u0430":70,"\u040e":-50,"\u0409":150,"\u0408":195,"\u0423":-50,"\u041b":150,"\u0414":180,"\u0410":155,"\u2019":50,"\u00bf":230,".":100,"\u00f8":110,"\u00f6":110,"\u00f5":110,"\u00f4":110,"\u00f3":110,"\u00f2":110,"\u00eb":110,"\u00ea":110,"\u00e9":110,"\u00e8":110,"\u00e7":110,"\u00e6":70,"\u00e5":70,"\u00e4":70,"\u00e3":70,"\u00e2":70,"\u00e1":70,"\u00e0":70,"s":60,"q":110,"o":110,"g":110,"e":110,"d":120,"c":110,"a":70,"\u00d8":50,"\u00d6":50,"\u00d5":50,"\u00d4":50,"\u00d3":50,"\u00d2":50,"\u00c6":225,"\u00c5":180,"\u00c4":180,"\u00c3":180,"\u00c2":180,"\u00c1":180,"\u00c0":180,"Q":50,"O":50,"J":195,"A":180}},"\u201c":{"d":"80,-1338r143,0r156,494r-173,0xm419,-1338r145,0r175,494r-175,0","w":809,"k":{"\u0463":-60,"\u0459":105,"\u044a":-80,"\u043b":105,"\u0434":80,"\u0409":125,"\u0408":195,"\u041b":125,"\u0416":50,"\u0414":210,"\u0410":130,"\u00bf":145,"t":-50,"\u00c6":120,"\u00c5":130,"\u00c4":130,"\u00c3":130,"\u00c2":130,"\u00c1":130,"\u00c0":130,"J":195,"A":130}},"\u201d":{"d":"216,-1338r173,0r-176,494r-143,0xm574,-1338r175,0r-205,494r-145,0","w":809,"k":{"\u0473":110,"\u0459":165,"\u0451":110,"\u0450":110,"\u0455":60,"\u0454":110,"\u044f":60,"\u0444":90,"\u0441":110,"\u043e":110,"\u043b":165,"\u0435":110,"\u0434":130,"\u0431":40,"\u0430":70,"\u040e":-50,"\u0409":150,"\u0408":195,"\u0423":-50,"\u041b":150,"\u0414":180,"\u0410":155,"\u00bf":230,".":100,"\u00f8":110,"\u00f6":110,"\u00f5":110,"\u00f4":110,"\u00f3":110,"\u00f2":110,"\u00eb":110,"\u00ea":110,"\u00e9":110,"\u00e8":110,"\u00e7":110,"\u00e6":70,"\u00e5":70,"\u00e4":70,"\u00e3":70,"\u00e2":70,"\u00e1":70,"\u00e0":70,"s":60,"q":110,"o":110,"g":110,"e":110,"d":110,"c":110,"a":70,"\u00d8":50,"\u00d6":50,"\u00d5":50,"\u00d4":50,"\u00d3":50,"\u00d2":50,"\u00c6":225,"\u00c5":180,"\u00c4":180,"\u00c3":180,"\u00c2":180,"\u00c1":180,"\u00c0":180,"Q":50,"O":50,"J":195,"A":180}},"\u00ab":{"d":"110,-474r293,-376r151,0r-259,376r259,376r-151,0xm507,-474r265,-376r145,0r-225,376r225,376r-145,0","w":997,"k":{"\u040b":130,"\u0409":-60,"\u0402":130,"\u042a":90,"\u0422":130,"\u041b":-60,"\u00dd":110,"Y":110,"W":40,"V":70,"T":130}},"\u00bb":{"d":"594,-98r-151,0r259,-376r-259,-376r151,0r293,376xm225,-98r-145,0r225,-376r-225,-376r145,0r265,376","w":997,"k":{"\u0475":50,"\u045e":40,"\u045b":40,"\u0459":40,"\u0452":40,"\u044f":30,"\u044a":40,"\u0445":50,"\u0443":40,"\u0442":70,"\u043b":40,"\u0436":70,"\u0434":40,"\u0474":50,"\u040e":50,"\u040b":180,"\u0409":60,"\u0408":80,"\u0402":180,"\u042f":50,"\u042a":90,"\u0427":95,"\u0425":50,"\u0423":50,"\u0422":180,"\u041b":60,"\u0416":50,"\u0414":50,"\u0410":50,"\u00ff":40,"\u00fd":40,"z":50,"y":40,"x":50,"\u00dd":195,"\u00c6":50,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"Z":100,"Y":195,"X":50,"W":60,"V":110,"T":180,"S":60,"J":80,"A":50}},"\/":{"d":"18,249r380,-1587r148,0r-380,1587r-148,0","w":563},"|":{"d":"305,465r-145,0r0,-1913r145,0r0,1913","w":465},"\u2013":{"d":"0,-558r1000,0r0,125r-1000,0r0,-125","w":1000,"k":{"\u0459":60,"\u044a":60,"\u0445":50,"\u0442":85,"\u043b":60,"\u0437":40,"\u0436":50,"\u0434":40,"\u0474":70,"\u0462":40,"\u040e":100,"\u040b":140,"\u0409":50,"\u0408":130,"\u0402":140,"\u042f":50,"\u042a":115,"\u0427":60,"\u0425":50,"\u0423":100,"\u0422":140,"\u041b":50,"\u0417":60,"\u0416":60,"z":70,"x":50,"\u00dd":150,"\u00c6":40,"Z":60,"Y":150,"X":50,"W":30,"V":70,"T":140,"S":40,"J":130}},"\u2014":{"d":"0,-558r1700,0r0,125r-1700,0r0,-125","w":1700,"k":{"\u0459":60,"\u044a":60,"\u0445":50,"\u0442":85,"\u043b":60,"\u0437":40,"\u0436":50,"\u0434":40,"\u0474":70,"\u0462":40,"\u040e":100,"\u040b":140,"\u0409":50,"\u0408":130,"\u0402":140,"\u042f":50,"\u042a":115,"\u0427":60,"\u0425":50,"\u0423":100,"\u0422":140,"\u041b":50,"\u0417":60,"\u0416":60,"z":70,"x":50,"\u00dd":150,"\u00c6":40,"Z":60,"Y":150,"X":50,"W":30,"V":70,"T":140,"S":40,"J":130}},"\u00b7":{"d":"175,-394r0,-195r191,0r0,195r-191,0","w":541},"\u2219":{"d":"175,-394r0,-195r191,0r0,195r-191,0","w":541},"(":{"d":"542,-1283v-161,179,-277,422,-277,764v0,342,115,585,277,764r-85,80v-234,-212,-405,-599,-329,-1057v45,-271,166,-481,329,-631","w":614,"k":{"\u0473":40,"\u0458":-90,"\u0451":40,"\u0450":40,"\u0454":40,"\u044f":30,"\u0444":40,"\u0441":40,"\u043e":40,"\u0435":40,"\u0404":80,"\u0424":80,"\u0421":80,"\u041e":80,"\u00f0":40,"\u00f8":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u00f1":20,"\u00eb":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"w":20,"v":30,"q":30,"o":40,"n":20,"m":20,"j":-90,"e":40,"d":40,"c":40,"\u00d8":80,"\u00d6":80,"\u00d5":80,"\u00d4":80,"\u00d3":80,"\u00d2":80,"\u00c7":80,"\u00c6":30,"S":30,"Q":80,"O":80,"G":80,"C":80}},")":{"d":"72,245v161,-179,277,-422,277,-764v0,-342,-115,-585,-277,-764r85,-80v234,212,405,597,329,1056v-45,271,-166,482,-329,632","w":614},"[":{"d":"160,-1338r426,0r0,123r-281,0r0,1392r281,0r0,123r-426,0r0,-1638","w":646,"k":{"\u0473":40,"\u0458":-110,"\u0451":40,"\u0450":40,"\u0454":40,"\u044f":30,"\u0444":40,"\u0441":40,"\u043e":40,"\u0435":40,"\u0404":80,"\u0424":80,"\u0421":80,"\u041e":80,"\u00f0":40,"\u00f8":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u00f1":20,"\u00eb":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"w":20,"v":30,"q":30,"o":40,"n":20,"m":20,"j":-110,"e":40,"d":40,"c":40,"\u00d8":80,"\u00d6":80,"\u00d5":80,"\u00d4":80,"\u00d3":80,"\u00d2":80,"\u00c7":80,"\u00c6":40,"Q":80,"O":80,"G":80,"C":80}},"]":{"d":"486,300r-426,0r0,-123r281,0r0,-1392r-281,0r0,-123r426,0r0,1638","w":646},"{":{"d":"293,-323v1,-106,-70,-137,-173,-135r0,-122v103,2,174,-29,173,-135v-1,-155,-119,-213,-119,-366v0,-195,164,-263,386,-257r0,123v-129,-2,-230,29,-230,137v0,137,104,190,101,339v-3,114,-57,188,-137,218r0,4v80,29,135,105,137,218v3,150,-101,202,-101,339v0,107,102,140,230,137r0,123v-222,6,-386,-61,-386,-255v0,-159,118,-209,119,-368","w":615,"k":{"\u0458":-110,"j":-110}},"}":{"d":"322,-715v-1,106,70,137,173,135r0,122v-103,-2,-174,29,-173,135v2,159,119,209,119,368v0,193,-164,261,-386,255r0,-123v128,2,230,-30,230,-137v0,-137,-104,-189,-101,-339v2,-114,57,-188,137,-218r0,-4v-80,-29,-135,-105,-137,-218v-3,-149,101,-202,101,-339v0,-107,-102,-140,-230,-137r0,-123v222,-6,386,62,386,257v0,153,-118,211,-119,366","w":615},"*":{"d":"553,-849r-5,0r-82,199r-112,154r-117,-85r112,-154r154,-147r-2,-5r-206,-21r-175,-57r45,-138r175,57r178,104r4,-4r-44,-202r0,-190r145,0r0,190r-44,202r4,4r178,-104r175,-57r45,138r-175,57r-206,21r-2,5r154,147r112,154r-117,85r-112,-154","w":1101},"\u00a7":{"d":"624,151v63,-195,1,-429,-75,-564r-62,-114r-83,-143v-68,-125,-147,-247,-143,-431r-12,0v-63,200,-1,431,77,569r64,116r82,140v68,123,144,245,140,427r12,0xm525,-1231v-147,-7,-197,120,-142,241v132,290,387,491,387,908v0,305,-125,489,-411,495v-106,2,-185,-22,-259,-53r0,-132v125,55,422,114,412,-92v-7,-141,-101,-239,-162,-340v-112,-187,-247,-370,-247,-664v0,-300,121,-486,401,-495v105,-3,195,23,269,53r0,132v-74,-27,-153,-49,-248,-53","w":873},"\u00b6":{"d":"498,387r0,-708v-241,-55,-403,-216,-403,-503v0,-248,129,-403,312,-476v158,-63,397,-30,607,-38r0,1725r-155,0r0,-1588r-206,0r0,1588r-155,0","w":1184},"\u0410":{"d":"35,0r545,-1338r141,0r545,1338r-177,0r-160,-403r-559,0r-160,403r-175,0xm649,-1130v-59,167,-116,318,-171,454r-50,126r443,0r-50,-126v-55,-139,-111,-290,-168,-454r-4,0","w":1301,"k":{"\"":145,"'":145,"\u0475":40,"\u045e":50,"\u044a":75,"\u0447":65,"\u0443":50,"\u0442":75,"\u0431":30,"\u0474":110,"\u040b":110,"\u0402":110,"\u042a":60,"\u0427":120,"\u0424":20,"\u0422":110,"\u0421":20,"\u041e":20,"\u00ab":50,"\u201d":130,"\u201c":155,"\u2019":130,"\u2018":155}},"\u0411":{"d":"333,-803v385,-25,787,5,787,382v0,334,-284,415,-634,421r-316,0r0,-1338r865,0r0,147r-702,0r0,388xm948,-418v0,-269,-346,-258,-615,-238r0,509v299,2,615,12,615,-271","w":1230,"k":{"\u044f":40,"\u0442":60,"\u0434":40,"\u040b":100,"\u0402":100,"\u042a":60,"\u0422":100,"\u0414":40}},"\u0412":{"d":"1043,-991v-2,165,-86,251,-213,295r0,4v192,22,317,181,256,400v-60,217,-272,292,-570,292r-346,0r0,-1338r418,2v217,6,373,74,436,232v13,35,19,72,19,113xm871,-980v3,-244,-290,-209,-538,-211r0,432r248,0v174,3,288,-60,290,-221xm928,-390v5,-273,-327,-216,-595,-222r0,465v279,1,590,26,595,-243","w":1215,"k":{"\u044f":40,"\u0434":40,"\u0414":40,"]":30,")":30,"\u201c":50,"\u2018":50}},"\u0413":{"d":"160,0r0,-1338r852,0r0,147r-689,0r0,1191r-163,0","w":1042,"k":{"\u0475":220,"\u0473":220,"\u0463":100,"\u045f":230,"\u045e":220,"\u045a":230,"\u0459":290,"\u045c":230,"\u045d":230,"\u0457":-90,"\u0451":220,"\u0450":220,"\u0455":180,"\u0454":220,"\u0491":230,"\u0453":230,"\u044f":250,"\u044e":230,"\u044d":210,"\u044c":230,"\u044b":230,"\u044a":280,"\u0449":230,"\u0448":230,"\u0447":230,"\u0446":230,"\u0445":210,"\u0444":220,"\u0443":220,"\u0442":220,"\u0441":220,"\u0440":230,"\u043f":230,"\u043e":220,"\u043d":230,"\u043c":230,"\u043b":290,"\u043a":230,"\u0439":230,"\u0438":230,"\u0437":190,"\u0436":220,"\u0435":220,"\u0434":290,"\u0433":230,"\u0432":230,"\u0430":240,"\u0409":200,"\u0408":180,"\u0404":40,"\u042f":40,"\u0424":40,"\u0421":40,"\u041e":40,"\u041b":200,"\u0414":200,"\u0410":150,"\u2014":140,"\u2013":140,"\u00bb":120,"\u00ab":220,"-":140,"\u2026":175,".":175,":":130,";":120,",":190}},"\u0414":{"d":"743,-1191v-50,435,-197,756,-395,1040r0,4r712,0r0,-1044r-317,0xm155,-147v240,-306,399,-688,449,-1191r619,0r0,1191r163,0r0,590r-163,0r0,-443r-970,0r0,443r-163,0r0,-590r65,0","w":1516,"k":{"\"":50,"'":50,"\u0475":70,"\u0473":30,"\u0463":50,"\u045e":60,"\u045b":40,"\u0451":30,"\u0450":30,"\u0454":30,"\u0452":40,"\u044a":60,"\u0447":70,"\u0444":30,"\u0443":60,"\u0442":75,"\u0441":30,"\u043e":30,"\u0435":30,"\u0431":40,"\u040b":60,"\u0404":60,"\u0402":60,"\u042a":60,"\u0427":60,"\u0424":60,"\u0422":60,"\u0421":60,"\u041e":60,"\u2014":30,"\u2013":30,"\u00ab":50,"\u201d":50,"\u201c":50,"\u2019":50,"\u2018":50,"-":30,";":-70,",":-70}},"\u0415":{"d":"333,-147r686,0r0,147r-849,0r0,-1338r812,0r0,147r-649,0r0,432r577,0r0,147r-577,0r0,465","w":1129},"\u0416":{"d":"981,0r-163,0r0,-655r-572,655r-206,0r590,-671r-542,-667r197,0r533,661r0,-661r163,0r0,661r533,-661r197,0r-542,667r590,671r-206,0r-572,-655r0,655","w":1799,"k":{"\u0475":100,"\u0463":40,"\u045e":70,"\u044a":80,"\u0443":70,"\u0442":105,"\u0431":30,"\u0404":100,"\u0424":100,"\u0421":100,"\u041e":100,"\u2014":60,"\u2013":60,"\u00ab":50,"-":60}},"\u0417":{"d":"463,-1218v-140,0,-239,34,-346,75r0,-138v98,-49,224,-82,372,-82v270,0,457,105,457,368v0,169,-95,255,-219,300r0,6v150,35,261,120,261,304v0,296,-226,407,-539,410v-144,1,-267,-28,-359,-79r0,-143v90,45,208,77,340,77v224,0,386,-71,386,-268v0,-168,-138,-225,-334,-224r-151,0r0,-147r136,0v183,0,307,-53,307,-227v0,-172,-130,-232,-311,-232","w":1093,"k":{"\u0414":40}},"\u0418":{"d":"1092,-1338r164,0r0,1338r-163,0r0,-605v0,-221,4,-390,13,-505r-6,0v-59,97,-139,219,-241,364r-525,746r-164,0r0,-1338r163,0r0,676v0,171,-4,316,-13,434r6,0v57,-93,136,-215,241,-364","w":1426},"\u0419":{"d":"507,-1883v19,138,90,229,230,229v139,0,214,-92,232,-229r150,0v-25,217,-144,357,-384,357v-239,0,-354,-140,-378,-357r150,0xm1092,-1338r164,0r0,1338r-163,0r0,-605v0,-221,4,-390,13,-505r-6,0v-59,97,-139,219,-241,364r-525,746r-164,0r0,-1338r163,0r0,676v0,171,-4,316,-13,434r6,0v57,-93,136,-215,241,-364","w":1426},"\u041a":{"d":"170,0r0,-1338r163,0r0,661r2,0r615,-661r201,0r-624,666r672,672r-212,0r-652,-655r-2,0r0,655r-163,0","w":1239,"k":{"\u0475":100,"\u0473":40,"\u0463":40,"\u045e":70,"\u0451":40,"\u0450":40,"\u0454":40,"\u044a":80,"\u0444":40,"\u0443":70,"\u0442":105,"\u0441":40,"\u043e":40,"\u0435":40,"\u0431":30,"\u0404":100,"\u0424":100,"\u0421":100,"\u041e":100,"\u2014":90,"\u2013":90,"\u00ab":90,"\u201d":50,"\u2019":50,"-":90}},"\u041b":{"d":"514,-408v-80,246,-176,452,-484,417r0,-159v216,23,269,-139,328,-304v91,-255,135,-557,178,-884r638,0r0,1338r-163,0r0,-1191r-337,0v-42,300,-86,555,-160,783","w":1344},"\u041c":{"d":"879,0r-75,0r-337,-799v-47,-110,-93,-230,-140,-359r-8,0v9,186,14,356,14,511r0,647r-163,0r0,-1338r235,0r315,757v36,87,76,191,119,313r5,0v48,-135,88,-239,119,-313r315,-757r235,0r0,1338r-163,0r0,-647v0,-151,5,-322,14,-511r-8,0v-49,137,-96,256,-140,359","w":1683},"\u041d":{"d":"333,-759r701,0r0,-579r163,0r0,1338r-163,0r0,-612r-701,0r0,612r-163,0r0,-1338r163,0r0,579","w":1367},"\u041e":{"d":"1169,-430v45,-132,46,-344,0,-476v-63,-181,-192,-312,-421,-312v-311,0,-456,226,-456,550v0,259,99,435,278,513v108,47,250,47,358,0v116,-50,197,-146,241,-275xm1333,-948v57,166,58,394,-1,559v-86,240,-268,414,-582,414v-318,0,-502,-172,-587,-414v-58,-166,-58,-395,1,-559v87,-241,268,-415,584,-415v317,0,500,173,585,415","w":1496,"k":{"\u0459":40,"\u043b":40,"\u0434":50,"\u040b":50,"\u0409":40,"\u0408":55,"\u0402":50,"\u0425":40,"\u0422":50,"\u041b":40,"\u0416":100,"\u0414":70,"\u0410":20,"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50}},"\u041f":{"d":"1185,-1338r0,1338r-166,0r0,-1182r-683,0r0,1182r-166,0r0,-1338r1015,0","w":1355},"\u0420":{"d":"541,-1338v298,1,527,95,527,380v0,362,-355,434,-735,408r0,550r-163,0r0,-1338r371,0xm895,-958v-1,-259,-296,-234,-562,-233r0,492v267,22,563,6,562,-259","w":1168,"k":{"\u0473":90,"\u0459":160,"\u0451":90,"\u0454":90,"\u044f":40,"\u0444":90,"\u0441":60,"\u043e":90,"\u043b":160,"\u0435":90,"\u0434":170,"\u0409":190,"\u0408":160,"\u041b":190,"\u0414":225,"\u0410":160,"\u2014":50,"\u2013":50,"\u00ab":70,"-":50,"\u2026":245,".":245,",":245}},"\u0421":{"d":"1094,-1171v-135,-47,-338,-68,-482,-11v-198,78,-320,249,-320,524v0,353,185,538,534,538v103,0,202,-21,281,-47r0,144v-159,62,-430,62,-593,1v-249,-93,-394,-296,-394,-630v0,-337,158,-554,402,-658v159,-68,416,-68,572,-5r0,144","w":1207,"k":{"\u0475":75,"\u045e":75,"\u044a":65,"\u0443":75,"\u0442":100,"\u0421":20,"}":-50,"]":-50,"\u00ab":50}},"\u0422":{"d":"650,0r-163,0r0,-1191r-447,0r0,-147r1057,0r0,147r-447,0r0,1191","w":1137,"k":{"\u0475":130,"\u0473":130,"\u0463":90,"\u045f":130,"\u045e":130,"\u045a":130,"\u0459":170,"\u045c":130,"\u045d":130,"\u0457":-90,"\u0451":130,"\u0450":130,"\u0455":130,"\u0454":130,"\u0491":130,"\u0453":130,"\u044f":160,"\u044e":130,"\u044d":130,"\u044c":130,"\u044b":130,"\u044a":170,"\u0449":130,"\u0448":130,"\u0447":130,"\u0446":130,"\u0445":130,"\u0444":130,"\u0443":130,"\u0442":145,"\u0441":130,"\u0440":130,"\u043f":130,"\u043e":130,"\u043d":130,"\u043c":130,"\u043b":170,"\u043a":130,"\u0439":130,"\u0438":130,"\u0437":105,"\u0436":130,"\u0435":130,"\u0434":140,"\u0433":130,"\u0432":130,"\u0431":50,"\u0430":150,"\u0409":120,"\u0408":90,"\u0404":50,"\u0424":50,"\u0421":50,"\u041e":50,"\u041b":120,"\u0414":140,"\u0410":110,"\u2014":140,"\u2013":140,"\u00bb":130,"\u00ab":180,"-":140,"\u2026":160,".":160,":":140,";":140,",":120}},"\u0423":{"d":"140,-141v98,20,219,10,276,-41v59,-53,97,-121,136,-210r-512,-946r182,0r411,780r6,0r349,-780r180,0r-462,997v-97,197,-180,364,-459,366v-37,0,-72,-4,-107,-11r0,-155","w":1208,"k":{"\u0475":65,"\u0473":110,"\u0463":50,"\u045f":85,"\u045e":75,"\u045a":85,"\u0459":250,"\u045c":85,"\u045d":85,"\u0451":110,"\u0450":110,"\u0455":95,"\u0454":110,"\u0491":85,"\u0453":85,"\u044f":135,"\u044e":85,"\u044d":65,"\u044c":85,"\u044b":85,"\u044a":65,"\u0449":85,"\u0448":85,"\u0446":85,"\u0445":75,"\u0444":110,"\u0443":75,"\u0442":75,"\u0441":110,"\u0440":85,"\u043f":85,"\u043e":110,"\u043d":85,"\u043c":85,"\u043b":250,"\u043a":85,"\u0439":85,"\u0438":85,"\u0437":55,"\u0436":95,"\u0435":110,"\u0434":250,"\u0433":85,"\u0432":85,"\u0431":40,"\u0430":120,"\u0409":160,"\u0408":120,"\u0404":40,"\u0424":40,"\u0421":40,"\u041e":40,"\u041b":160,"\u0414":180,"\u0410":150,"\u2014":100,"\u2013":100,"\u00bb":50,"\u00ab":145,"-":100,"\u2026":250,".":250,":":90,";":90,",":190}},"\u0424":{"d":"687,107r0,-181v-278,-21,-462,-149,-541,-367v-49,-138,-49,-321,2,-457v80,-215,262,-347,539,-367r0,-180r159,0r0,180v279,19,460,150,538,367v49,137,50,321,-1,457v-80,215,-261,347,-537,367r0,181r-159,0xm687,-1124v-260,24,-411,171,-411,454v0,283,151,430,411,455r0,-909xm846,-214v259,-24,410,-173,410,-456v0,-282,-151,-429,-410,-454r0,910","w":1531,"k":{"\u0459":60,"\u043b":60,"\u0434":60,"\u040b":50,"\u0409":40,"\u0408":55,"\u0402":50,"\u0425":40,"\u0422":50,"\u041b":40,"\u0416":100,"\u0414":70,"\u0410":20,"]":80,")":80,"\u201c":40,"\u2018":40,"\u2026":40,".":40,",":40}},"\u0425":{"d":"624,-796r370,-542r181,0r-454,659r475,679r-183,0r-392,-567r-4,0r-392,567r-185,0r479,-683r-450,-655r179,0r372,542r4,0","w":1236,"k":{"\u0475":40,"\u0463":40,"\u044a":40,"\u0447":60,"\u0442":50,"\u0404":40,"\u0424":40,"\u0421":40,"\u041e":40,"\u2014":50,"\u2013":50,"\u00ab":50,"-":50}},"\u0426":{"d":"1151,0r-981,0r0,-1338r163,0r0,1191r655,0r0,-1191r163,0r0,1191r163,0r0,590r-163,0r0,-443","w":1454,"k":{"\"":50,"'":50,"\u0475":70,"\u0473":30,"\u0463":50,"\u045e":60,"\u045b":40,"\u0451":30,"\u0450":30,"\u0454":30,"\u0452":40,"\u044a":60,"\u0447":70,"\u0444":30,"\u0443":60,"\u0442":75,"\u0441":30,"\u043e":30,"\u0435":30,"\u0431":40,"\u040b":60,"\u0404":60,"\u0402":60,"\u042a":60,"\u0427":60,"\u0424":60,"\u0422":60,"\u0421":60,"\u041e":60,"\u2014":30,"\u2013":30,"\u00ab":50,"\u201d":50,"\u201c":50,"\u2019":50,"\u2018":50,"-":30,";":-70,",":-70}},"\u0427":{"d":"584,-655v131,-3,237,-27,346,-65r0,-618r163,0r0,1338r-163,0r0,-571v-130,37,-221,59,-367,61v-298,5,-413,-164,-413,-456r0,-372r163,0r0,376v-4,201,70,311,271,307","w":1263},"\u0428":{"d":"1705,0r-1535,0r0,-1338r163,0r0,1191r523,0r0,-1191r163,0r0,1191r523,0r0,-1191r163,0r0,1338","w":1875},"\u0429":{"d":"1009,-1338r0,1191r513,0r0,-1191r163,0r0,1191r163,0r0,590r-163,0r0,-443r-1515,0r0,-1338r163,0r0,1191r513,0r0,-1191r163,0","w":1988,"k":{"\"":50,"'":50,"\u0475":70,"\u0473":30,"\u0463":50,"\u045e":60,"\u045b":40,"\u0451":30,"\u0450":30,"\u0454":30,"\u0452":40,"\u044a":60,"\u0447":70,"\u0444":30,"\u0443":60,"\u0442":75,"\u0441":30,"\u043e":30,"\u0435":30,"\u0431":40,"\u040b":60,"\u0404":60,"\u0402":60,"\u042a":60,"\u0427":60,"\u0424":60,"\u0422":60,"\u0421":60,"\u041e":60,"\u2014":30,"\u2013":30,"\u00ab":50,"\u201d":50,"\u201c":50,"\u2019":50,"\u2018":50,"-":30,";":-70,",":-70}},"\u042a":{"d":"1141,-418v0,-271,-330,-256,-595,-238r0,509v293,3,595,9,595,-271xm546,-803v381,-32,777,20,767,382v-9,329,-272,425,-630,421r-300,0r0,-1191r-383,0r0,-147r546,0r0,535","w":1418,"k":{"\"":95,"'":95,"\u0463":30,"\u044a":30,"\u0442":30,"\u0474":100,"\u040b":180,"\u0402":180,"\u042a":100,"\u0427":60,"\u0422":180,"\u0414":40,"]":40,")":40,"\u201d":50,"\u201c":180,"\u2019":50,"\u2018":180,"?":40}},"\u042b":{"d":"1266,0r0,-1338r163,0r0,1338r-163,0xm333,-803v380,-27,767,9,767,382v0,328,-272,424,-628,421r-302,0r0,-1338r163,0r0,535xm928,-418v0,-271,-330,-257,-595,-238r0,509v292,3,595,8,595,-271","w":1599},"\u042c":{"d":"333,-803v386,-26,787,6,787,382v0,330,-281,421,-635,421r-315,0r0,-1338r163,0r0,535xm943,-362v56,-315,-309,-321,-610,-294r0,509v276,2,570,11,610,-215","w":1225,"k":{"\"":95,"'":95,"\u0463":30,"\u044a":30,"\u0442":30,"\u0474":100,"\u040b":180,"\u0402":180,"\u042a":100,"\u0427":60,"\u0422":180,"\u0414":40,"]":40,")":40,"\u201d":50,"\u201c":180,"\u2019":50,"\u2018":180,"?":40}},"\u042d":{"d":"887,-759v-20,-297,-176,-460,-490,-459v-103,0,-197,22,-277,47r0,-144v81,-32,187,-48,299,-48v442,0,644,264,644,705v0,445,-210,685,-658,683v-112,0,-222,-17,-305,-48r0,-144v83,27,186,47,295,47v329,0,489,-163,494,-492r-683,0r0,-147r681,0","w":1183,"k":{"\u0459":40,"\u043b":40,"\u0434":50,"\u040b":50,"\u0409":40,"\u0408":55,"\u0402":50,"\u0425":40,"\u0422":50,"\u041b":40,"\u0416":100,"\u0414":70,"\u0410":20,"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50}},"\u042e":{"d":"1638,-1162v133,155,194,499,110,766v-76,240,-241,421,-547,421v-296,0,-459,-163,-540,-385v-28,-77,-43,-161,-48,-252r-280,0r0,612r-163,0r0,-1338r163,0r0,579r283,0v27,-269,144,-467,350,-559v141,-63,354,-59,488,8v73,36,132,88,184,148xm1584,-433v41,-131,41,-340,0,-471v-55,-178,-167,-314,-385,-314v-218,0,-330,137,-385,314v-41,131,-41,340,0,471v55,178,168,313,387,313v216,0,328,-137,383,-313","w":1907,"k":{"\u0459":40,"\u043b":40,"\u0434":50,"\u040b":50,"\u0409":40,"\u0408":55,"\u0402":50,"\u0425":40,"\u0422":50,"\u041b":40,"\u0416":100,"\u0414":70,"\u0410":20,"]":60,")":60,"\u201c":50,"\u2018":50,"\u2026":50,".":50}},"\u042f":{"d":"422,-553v-165,-51,-277,-162,-277,-368v0,-278,184,-417,467,-417r469,0r0,1338r-163,0r0,-531r-327,0r-312,531r-189,0r332,-549r0,-4xm317,-927v0,168,111,249,291,249r310,0r0,-513r-294,0v-188,-2,-307,88,-307,264","w":1251},"\u0403":{"d":"843,-1656r-181,247r-139,0r146,-247r174,0xm170,0r0,-1338r852,0r0,147r-689,0r0,1191r-163,0","w":1062,"k":{"\u0475":220,"\u0473":220,"\u0463":100,"\u045f":230,"\u045e":220,"\u045a":230,"\u0459":290,"\u045c":230,"\u045d":230,"\u0457":-90,"\u0451":220,"\u0450":220,"\u0455":180,"\u0454":220,"\u0491":230,"\u0453":230,"\u044f":250,"\u044e":230,"\u044d":210,"\u044c":230,"\u044b":230,"\u044a":280,"\u0449":230,"\u0448":230,"\u0447":230,"\u0446":230,"\u0445":210,"\u0444":220,"\u0443":220,"\u0442":220,"\u0441":220,"\u0440":230,"\u043f":230,"\u043e":220,"\u043d":230,"\u043c":230,"\u043b":290,"\u043a":230,"\u0439":230,"\u0438":230,"\u0437":190,"\u0436":220,"\u0435":220,"\u0434":290,"\u0433":230,"\u0432":230,"\u0430":240,"\u0409":200,"\u0408":180,"\u0404":40,"\u042f":40,"\u0424":40,"\u0421":40,"\u041e":40,"\u041b":200,"\u0414":200,"\u0410":150,"\u2014":140,"\u2013":140,"\u00bb":120,"\u00ab":220,"-":140,"\u2026":175,".":175,":":130,";":120,",":190}},"\u0490":{"d":"333,-1191r0,1191r-163,0r0,-1338r718,0r0,-378r163,0r0,525r-718,0","w":1101,"k":{"\u0475":220,"\u0473":220,"\u0463":100,"\u045f":230,"\u045e":220,"\u045a":230,"\u0459":290,"\u045c":230,"\u045d":230,"\u0457":-90,"\u0451":220,"\u0450":220,"\u0455":180,"\u0454":220,"\u0491":230,"\u0453":230,"\u044f":250,"\u044e":230,"\u044d":210,"\u044c":230,"\u044b":230,"\u044a":280,"\u0449":230,"\u0448":230,"\u0447":230,"\u0446":230,"\u0445":210,"\u0444":220,"\u0443":220,"\u0442":220,"\u0441":220,"\u0440":230,"\u043f":230,"\u043e":220,"\u043d":230,"\u043c":230,"\u043b":290,"\u043a":230,"\u0439":230,"\u0438":230,"\u0437":190,"\u0436":220,"\u0435":220,"\u0434":290,"\u0433":230,"\u0432":230,"\u0430":240,"\u0409":200,"\u0408":180,"\u0404":40,"\u042f":40,"\u0424":40,"\u0421":40,"\u041e":40,"\u041b":200,"\u0414":200,"\u0410":150,"\u2014":140,"\u2013":140,"\u00bb":120,"\u00ab":220,"-":140,"\u2026":175,".":175,":":130,";":120,",":190}},"\u0402":{"d":"629,-793v392,-28,787,11,787,397v0,301,-229,426,-545,414r0,-150v215,13,369,-60,373,-261v5,-276,-341,-278,-615,-253r0,646r-163,0r0,-1191r-426,0r0,-147r1109,0r0,147r-520,0r0,398","w":1521,"k":{"\"":110,"'":110,"\u0463":30,"\u044a":30,"\u0442":30,"\u0474":50,"\u040b":100,"\u0402":100,"\u042a":60,"\u0427":40,"\u0422":100,"\u0414":40,"\u201d":40,"\u201c":100,"\u2019":40,"\u2018":100}},"\u0404":{"d":"1062,-1171v-128,-43,-328,-69,-468,-17v-173,65,-281,207,-298,429r688,0r0,147r-690,0v6,318,173,492,492,492v107,0,211,-20,293,-47r0,144v-78,31,-199,48,-309,48v-437,-3,-650,-247,-650,-681v0,-329,137,-549,370,-654v155,-70,416,-66,572,-5r0,144","w":1179},"\u0405":{"d":"953,-1138v-198,-96,-663,-161,-659,154v3,171,155,197,294,232v213,54,424,110,420,378v-4,294,-220,399,-517,399v-138,0,-273,-29,-363,-77r0,-149v208,103,720,163,712,-169v-6,-231,-274,-213,-450,-276v-146,-52,-264,-130,-262,-326v3,-271,186,-386,456,-391v144,-2,268,31,369,74r0,151","w":1130,"k":{"\u0463":20,"\u044a":30}},"\u0400":{"d":"513,-1656r146,247r-139,0r-181,-247r174,0xm333,-147r686,0r0,147r-849,0r0,-1338r812,0r0,147r-649,0r0,432r577,0r0,147r-577,0r0,465","w":1129},"\u0401":{"d":"301,-1448r0,-169r161,0r0,169r-161,0xm684,-1448r0,-169r161,0r0,169r-161,0xm333,-147r686,0r0,147r-849,0r0,-1338r812,0r0,147r-649,0r0,432r577,0r0,147r-577,0r0,465","w":1129},"\u0406":{"d":"170,0r0,-1338r163,0r0,1338r-163,0","w":503},"\u0407":{"d":"-13,-1448r0,-169r161,0r0,169r-161,0xm370,-1448r0,-169r161,0r0,169r-161,0xm170,0r0,-1338r163,0r0,1338r-163,0","w":503},"\u0408":{"d":"234,-120v137,1,205,-67,205,-207r0,-1011r163,0r0,1031v-3,223,-132,329,-354,332v-75,1,-142,-14,-188,-33r0,-144v49,20,106,32,174,32","w":767},"\u040d":{"d":"655,-1656r146,247r-139,0r-181,-247r174,0xm1092,-1338r164,0r0,1338r-163,0r0,-605v0,-221,4,-390,13,-505r-6,0v-59,97,-139,219,-241,364r-525,746r-164,0r0,-1338r163,0r0,676v0,171,-4,316,-13,434r6,0v57,-93,136,-215,241,-364","w":1426},"\u040c":{"d":"855,-1656r-181,247r-139,0r146,-247r174,0xm170,0r0,-1338r163,0r0,661r2,0r615,-661r201,0r-624,666r672,672r-212,0r-652,-655r-2,0r0,655r-163,0","w":1239,"k":{"\u0475":100,"\u0473":40,"\u0463":40,"\u045e":70,"\u0451":40,"\u0450":40,"\u0454":40,"\u044a":80,"\u0444":40,"\u0443":70,"\u0442":105,"\u0441":40,"\u043e":40,"\u0435":40,"\u0431":30,"\u0404":100,"\u0424":100,"\u0421":100,"\u041e":100,"\u2014":90,"\u2013":90,"\u00ab":90,"\u201d":50,"\u2019":50,"-":90}},"\u0409":{"d":"1174,-803v212,-15,445,-6,582,73v126,73,213,226,160,418v-63,230,-286,318,-597,312r-308,0r0,-1191r-337,0v-57,389,-111,729,-251,1000v-73,141,-186,227,-393,200r0,-159v217,23,269,-139,328,-304v92,-255,135,-557,178,-884r638,0r0,535xm1759,-418v0,-266,-320,-257,-585,-238r0,509v289,4,585,4,585,-271","w":2036,"k":{"\"":95,"'":95,"\u0463":30,"\u044a":30,"\u0442":30,"\u0474":100,"\u040b":180,"\u0402":180,"\u042a":100,"\u0427":60,"\u0422":180,"\u0414":40,"]":40,")":40,"\u201d":50,"\u201c":180,"\u2019":50,"\u2018":180,"?":40}},"\u040a":{"d":"1690,-418v0,-260,-304,-250,-585,-246r0,517v290,4,585,5,585,-271xm1273,-811v286,-2,501,60,571,269v37,111,13,249,-38,328v-101,155,-288,214,-560,214r-304,0r0,-664r-609,0r0,664r-163,0r0,-1338r163,0r0,527r609,0r0,-527r163,0r0,527r168,0","w":1967,"k":{"\"":95,"'":95,"\u0463":30,"\u044a":30,"\u0442":30,"\u0474":100,"\u040b":180,"\u0402":180,"\u042a":100,"\u0427":60,"\u0422":180,"\u0414":40,"]":40,")":40,"\u201d":50,"\u201c":180,"\u2019":50,"\u2018":180,"?":40}},"\u040b":{"d":"1214,-349v7,-208,-55,-322,-265,-317v-117,3,-229,31,-320,65r0,601r-163,0r0,-1191r-426,0r0,-147r1109,0r0,147r-520,0r0,441v176,-67,471,-93,619,14v169,122,121,453,129,736r-163,0r0,-349","w":1527,"k":{"\"":110,"'":110,"\u0463":30,"\u044a":30,"\u0442":30,"\u0474":50,"\u040b":100,"\u0402":100,"\u042a":60,"\u0427":40,"\u0422":100,"\u201d":40,"\u201c":100,"\u2019":40,"\u2018":100}},"\u040e":{"d":"375,-1883v19,138,90,229,230,229v139,0,214,-92,232,-229r150,0v-25,217,-144,357,-384,357v-239,0,-354,-140,-378,-357r150,0xm140,-141v98,20,219,10,276,-41v59,-53,97,-121,136,-210r-512,-946r182,0r411,780r6,0r349,-780r180,0r-462,997v-97,197,-180,364,-459,366v-37,0,-72,-4,-107,-11r0,-155","w":1208,"k":{"\u0475":65,"\u0473":110,"\u0463":50,"\u045f":85,"\u045e":75,"\u045a":85,"\u0459":250,"\u045c":85,"\u045d":85,"\u0451":110,"\u0450":110,"\u0455":95,"\u0454":110,"\u0491":85,"\u0453":85,"\u044f":135,"\u044e":85,"\u044d":65,"\u044c":85,"\u044b":85,"\u044a":65,"\u0449":85,"\u0448":85,"\u0446":85,"\u0445":75,"\u0444":110,"\u0443":75,"\u0442":75,"\u0441":110,"\u0440":85,"\u043f":85,"\u043e":110,"\u043d":85,"\u043c":85,"\u043b":250,"\u043a":85,"\u0439":85,"\u0438":85,"\u0437":55,"\u0436":95,"\u0435":110,"\u0434":250,"\u0433":85,"\u0432":85,"\u0431":40,"\u0430":120,"\u0409":160,"\u0408":120,"\u0404":40,"\u0424":40,"\u0421":40,"\u041e":40,"\u041b":160,"\u0414":180,"\u0410":150,"\u2014":100,"\u2013":100,"\u00bb":50,"\u00ab":145,"-":100,"\u2026":250,".":250,":":90,";":90,",":190}},"\u040f":{"d":"752,0r0,443r-163,0r0,-443r-419,0r0,-1338r163,0r0,1191r674,0r0,-1191r163,0r0,1338r-418,0","w":1340},"\u0462":{"d":"425,-803v386,-26,787,6,787,382v0,331,-284,420,-635,421r-315,0r0,-1029r-242,0r0,-147r242,0r0,-162r163,0r0,162r480,0r0,147r-480,0r0,226xm1035,-361v57,-321,-321,-320,-610,-295r0,509v276,2,570,12,610,-214","w":1317,"k":{"\"":95,"'":95,"\u0463":30,"\u044a":30,"\u0442":30,"\u0474":80,"\u040b":140,"\u0402":140,"\u042a":100,"\u0427":50,"\u0422":140,"\u0414":40,")":60,"\u201d":50,"\u201c":180,"\u2019":50,"\u2018":180}},"\u0472":{"d":"1292,-946v55,166,57,390,0,555v-84,239,-258,416,-568,416v-313,0,-491,-175,-572,-416v-56,-166,-56,-390,0,-555v83,-240,259,-417,570,-417v313,0,488,176,570,417xm554,-152v103,43,235,43,338,0v166,-69,262,-227,267,-460r-874,0v5,234,102,391,269,460xm1020,-1101v-89,-96,-293,-154,-462,-87v-163,64,-257,213,-271,429r869,0v-7,-148,-62,-262,-136,-342","w":1444},"\u0474":{"d":"693,0r-143,0r-510,-1338r176,0r254,678v54,145,105,291,152,438r4,0r313,-905v51,-158,148,-254,363,-234r0,151v-95,-7,-153,12,-186,74v-11,22,-24,50,-37,85","w":1342,"k":{"\u0475":105,"\u0473":140,"\u0463":75,"\u045f":115,"\u045e":85,"\u045a":115,"\u0459":250,"\u045c":115,"\u045d":115,"\u0451":140,"\u0450":140,"\u0455":110,"\u0454":140,"\u0491":115,"\u0453":115,"\u044f":140,"\u044e":115,"\u044d":95,"\u044c":115,"\u044b":115,"\u044a":85,"\u0449":115,"\u0448":115,"\u0447":115,"\u0446":115,"\u0445":100,"\u0444":140,"\u0443":85,"\u0442":85,"\u0441":140,"\u043f":115,"\u043e":140,"\u043d":115,"\u043c":115,"\u043b":250,"\u043a":115,"\u0439":115,"\u0438":115,"\u0437":75,"\u0436":85,"\u0435":140,"\u0434":250,"\u0433":115,"\u0432":115,"\u0430":125,"\u0409":160,"\u0408":145,"\u0404":50,"\u0424":50,"\u0421":50,"\u041e":50,"\u041b":160,"\u0414":190,"\u0410":195,"\u2014":130,"\u2013":130,"\u00bb":70,"\u00ab":145,"-":130,"\u2026":160,".":160,":":70,";":90,",":145}},"\u0430":{"d":"177,-919v128,-65,390,-80,517,-5v101,60,159,136,159,290r0,634r-130,0r-17,-105r-4,0v-62,74,-159,130,-294,130v-196,0,-313,-110,-313,-306v0,-205,143,-299,350,-303v97,-2,181,21,253,43v0,-70,3,-143,-22,-188v-40,-70,-118,-112,-237,-111v-104,1,-183,21,-262,51r0,-130xm437,-107v119,0,201,-63,261,-120r0,-190v-64,-17,-146,-35,-232,-35v-125,0,-212,50,-211,171v1,115,69,174,182,174","w":1003,"k":{"\u0463":20,"\u045b":35,"\u0452":35,"\u044f":20,"\u0442":35,"\u201c":100,"\u2018":100}},"\u0431":{"d":"979,-489v0,309,-138,514,-443,514v-355,0,-427,-312,-431,-686v-5,-446,151,-712,548,-755r236,-29r0,164v-185,29,-406,22,-513,126v-72,70,-98,180,-104,329r4,0v82,-55,185,-102,304,-102v267,0,399,168,399,439xm817,-484v0,-190,-89,-311,-269,-311v-107,0,-213,46,-280,96v-12,242,18,472,164,561v35,20,73,31,116,31v201,0,269,-167,269,-377","w":1074,"k":{"\u0459":30,"\u044f":20,"\u044a":30,"\u043b":30,"\u0434":45}},"\u0432":{"d":"882,-703v0,118,-70,176,-159,205r0,4v113,15,187,86,187,214v0,204,-171,280,-399,280r-361,0r0,-950r381,0v202,-3,351,65,351,247xm748,-278v-2,-110,-79,-148,-203,-148r-244,0r0,295v189,-8,451,46,447,-147xm720,-687v0,-100,-72,-132,-191,-132r-228,0r0,262r241,0v113,2,178,-31,178,-130","w":1005,"k":{"\u044f":20,"\u201c":50,"\u2018":50}},"\u0433":{"d":"796,-809r-491,0r0,809r-155,0r0,-950r646,0r0,141","w":846,"k":{"\u0459":110,"\u044f":30,"\u043b":110,"\u0434":150,"\u2014":105,"\u2013":105,"\u00ab":80,"?":60,"-":105,"\u2026":145,".":145,",":95}},"\u0434":{"d":"539,-817v-19,302,-115,508,-256,684r474,0r0,-684r-218,0xm100,-133v186,-195,300,-446,312,-817r500,0r0,817r149,0r0,473r-149,0r0,-340r-713,0r0,340r-149,0r0,-473r50,0","w":1191,"k":{"\"":40,"'":40,"\u0475":50,"\u0473":40,"\u0463":50,"\u045f":30,"\u045e":40,"\u045b":50,"\u045a":30,"\u045c":30,"\u045d":30,"\u0456":30,"\u0451":40,"\u0450":40,"\u0455":20,"\u0454":40,"\u0452":50,"\u0491":30,"\u0453":30,"\u044f":40,"\u044e":30,"\u044c":30,"\u044b":30,"\u044a":45,"\u0449":30,"\u0448":30,"\u0447":80,"\u0446":30,"\u0444":40,"\u0443":40,"\u0442":80,"\u0441":20,"\u043f":30,"\u043e":40,"\u043d":30,"\u043c":30,"\u043a":30,"\u0439":30,"\u0438":30,"\u0435":40,"\u0433":30,"\u0432":30,"\u0431":40,"\u0430":30,"\u2014":40,"\u2013":40,"\u00ab":50,"\u201d":30,"\u201c":50,"\u2019":30,"\u2018":50,"?":50,"-":40,";":-50,",":-50}},"\u0435":{"d":"743,-576v-4,-153,-69,-266,-221,-266v-159,0,-240,117,-259,266r480,0xm255,-443v1,226,130,331,352,333v108,1,185,-19,267,-48r0,129v-70,34,-179,55,-287,54v-316,-4,-492,-164,-492,-487v0,-246,101,-407,270,-481v52,-22,106,-32,163,-32v289,0,392,220,379,532r-652,0","w":1019,"k":{"\u0459":40,"\u044f":20,"\u044a":30,"\u0442":60,"\u043b":40,"]":40,")":40,"\u201c":50,"\u2018":50}},"\u0436":{"d":"762,0r-151,0r0,-465r-2,0r-390,465r-189,0r408,-477r-382,-473r187,0r366,465r2,0r0,-465r151,0r0,465r2,0r366,-465r187,0r-382,473r408,477r-189,0r-390,-465r-2,0r0,465","w":1373,"k":{"\u0473":30,"\u0454":30,"\u0444":30,"\u0441":20,"\u043e":30,"\u2014":50,"\u2013":50,"\u00ab":70,"-":50}},"\u0437":{"d":"599,-691v-9,-215,-341,-155,-496,-102r0,-127v81,-31,190,-55,301,-55v206,0,357,70,357,264v0,121,-68,183,-159,213r0,4v114,18,187,90,187,222v0,219,-173,297,-409,297v-115,0,-211,-17,-295,-54r0,-127v81,29,164,49,272,49v151,0,270,-27,270,-168v0,-112,-86,-150,-212,-150r-207,0r0,-133v167,-7,398,41,391,-133","w":879,"k":{"\u044f":30,"]":30,")":30,"\u201c":50,"\u2018":50}},"\u0438":{"d":"286,0r-136,0r0,-950r155,0r0,521v0,93,-2,162,-5,206r4,0v162,-252,356,-487,531,-727r136,0r0,950r-155,0r0,-521v0,-73,2,-142,5,-206r-4,0v-163,251,-356,486,-531,727","w":1121},"\u0439":{"d":"395,-1448v13,109,64,189,176,189v111,0,167,-80,179,-189r140,0v-18,186,-121,312,-320,312v-197,0,-297,-127,-314,-312r139,0xm286,0r-136,0r0,-950r155,0r0,521v0,93,-2,162,-5,206r4,0v162,-252,356,-487,531,-727r136,0r0,950r-155,0r0,-521v0,-73,2,-142,5,-206r-4,0v-163,251,-356,486,-531,727","w":1121},"\u043a":{"d":"307,-485r414,-465r198,0r-429,473r455,477r-200,0r-438,-465r-2,0r0,465r-155,0r0,-950r155,0r0,465r2,0","w":975,"k":{"\u0473":45,"\u0451":45,"\u0450":45,"\u0454":45,"\u0444":50,"\u0441":45,"\u043e":45,"\u0435":45,"\u2014":95,"\u2013":95,"\u00ab":95,"?":40,"-":95}},"\u043b":{"d":"926,-950r0,950r-155,0r0,-817r-252,0v-36,291,-78,536,-201,713v-61,87,-148,133,-288,120r0,-161v178,14,217,-118,262,-263v49,-156,77,-335,103,-542r531,0","w":1076},"\u043c":{"d":"605,0r-182,-455r-119,-306r-9,0v5,79,7,180,7,303r0,458r-152,0r0,-950r219,0r170,432v41,102,76,197,107,286r7,0r107,-286r171,-432r219,0r0,950r-152,0r0,-458v0,-109,2,-210,7,-303r-9,0v-28,76,-68,178,-119,306r-182,455r-90,0","w":1300},"\u043d":{"d":"784,0r0,-425r-479,0r0,425r-155,0r0,-950r155,0r0,392r479,0r0,-392r155,0r0,950r-155,0","w":1089},"\u043e":{"d":"754,-203v73,-82,106,-283,60,-427v-38,-121,-118,-213,-268,-213v-203,0,-289,158,-289,369v0,212,87,367,290,367v94,0,159,-42,207,-96xm966,-679v41,119,42,290,-1,409v-62,173,-192,295,-418,295v-228,0,-360,-121,-421,-295v-41,-120,-42,-291,1,-409v62,-173,192,-296,419,-296v228,0,360,122,420,296","w":1092,"k":{"\u0463":35,"\u045b":35,"\u0459":40,"\u0452":35,"\u044f":30,"\u044a":30,"\u043b":40,"\u0437":20,"\u0436":30,"\u0434":50,"]":40,")":40,"\u201c":50,"\u2018":50}},"\u043f":{"d":"305,-809r0,809r-155,0r0,-950r769,0r0,950r-155,0r0,-809r-459,0","w":1069},"\u0440":{"d":"551,-107v199,0,279,-157,279,-377v0,-206,-74,-358,-274,-358v-121,0,-197,64,-251,130r0,497v58,59,138,108,246,108xm303,-842v69,-109,267,-171,431,-106v167,66,258,223,258,462v0,274,-111,447,-328,500v-152,37,-283,-15,-356,-102r-3,0r0,553r-155,0r0,-1415r117,0r33,108r3,0","w":1087,"k":{"\u0463":35,"\u045b":35,"\u0459":40,"\u0452":35,"\u044f":30,"\u044a":30,"\u043b":40,"\u0436":40,"\u0434":50,"]":30,")":30,"\u201c":50,"\u2018":50}},"\u0441":{"d":"813,-29v-105,57,-299,73,-431,25v-179,-65,-287,-214,-287,-459v0,-282,130,-447,356,-501v122,-29,264,-4,347,44r0,129v-74,-27,-135,-48,-224,-48v-215,0,-317,144,-317,374v0,216,107,355,324,355v87,0,165,-21,232,-48r0,129","w":898,"k":{"\u045b":40,"\u0452":40,"\u044f":30,"\u0441":30,"\u2014":60,"\u2013":60,"-":60}},"\u0442":{"d":"373,-812r-323,0r0,-138r801,0r0,138r-323,0r0,812r-155,0r0,-812","w":901,"k":{"\u045b":20,"\u0459":95,"\u0452":20,"\u044f":20,"\u043b":95,"\u0434":110,"\u2014":85,"\u2013":85,"\u00ab":70,"?":50,"-":85,"\u2026":125,".":125,",":100}},"\u0443":{"d":"30,-950r159,0r295,745r6,0r299,-745r163,0r-593,1415r-154,0r203,-484","w":982,"k":{"\u0459":80,"\u044f":20,"\u043b":80,"\u0434":80,"\u00ab":40,"?":40,"\u2026":100,".":100,",":70}},"\u0444":{"d":"95,-474v0,-322,203,-477,513,-499r0,-475r151,0r0,475v240,15,406,119,479,301v46,115,45,278,0,393v-72,184,-237,287,-479,302r0,442r-151,0r0,-442v-240,-15,-405,-119,-478,-301v-23,-59,-35,-124,-35,-196xm759,-106v217,-21,355,-135,355,-370v0,-235,-139,-346,-355,-368r0,738xm608,-844v-217,22,-355,134,-355,370v0,234,137,348,355,368r0,-738","w":1367,"k":{"\u045b":30,"\u0459":40,"\u0452":30,"\u043b":40,"\u0436":30,"]":40,")":40,"\u201c":50,"\u2018":50}},"\u0445":{"d":"480,-584r258,-366r171,0r-347,470r360,480r-168,0r-278,-380r-4,0r-274,380r-168,0r360,-484r-347,-466r171,0r262,366r4,0","w":952,"k":{"\u2014":50,"\u2013":50,"\u00ab":50,"?":50,"-":50}},"\u0446":{"d":"150,0r0,-950r155,0r0,811r434,0r0,-811r155,0r0,811r149,0r0,479r-149,0r0,-340r-744,0","w":1173,"k":{"\"":40,"'":40,"\u0475":50,"\u0473":40,"\u0463":50,"\u045f":30,"\u045e":40,"\u045b":50,"\u045a":30,"\u045c":30,"\u045d":30,"\u0456":30,"\u0451":40,"\u0450":40,"\u0455":20,"\u0454":40,"\u0452":50,"\u0491":30,"\u0453":30,"\u044f":40,"\u044e":30,"\u044c":30,"\u044b":30,"\u044a":45,"\u0449":30,"\u0448":30,"\u0447":80,"\u0446":30,"\u0444":40,"\u0443":40,"\u0442":80,"\u0441":20,"\u043f":30,"\u043e":40,"\u043d":30,"\u043c":30,"\u043a":30,"\u0439":30,"\u0438":30,"\u0435":40,"\u0433":30,"\u0432":30,"\u0431":40,"\u0430":30,"\u2014":40,"\u2013":40,"\u00ab":40,"\u201d":30,"\u201c":50,"\u2019":30,"\u2018":50,"?":50,"-":40,";":-50,",":-50}},"\u0447":{"d":"449,-463v97,-1,185,-29,241,-74r0,-413r155,0r0,950r-155,0r0,-398v-63,35,-152,70,-257,68v-206,-3,-323,-102,-323,-319r0,-301r155,0r0,281v-2,132,50,208,184,206","w":995},"\u0448":{"d":"1315,0r-1165,0r0,-950r155,0r0,817r350,0r0,-817r155,0r0,817r350,0r0,-817r155,0r0,950","w":1465},"\u0449":{"d":"150,0r0,-950r155,0r0,817r340,0r0,-817r155,0r0,817r340,0r0,-817r155,0r0,817r149,0r0,473r-149,0r0,-340r-1145,0","w":1574,"k":{"\"":40,"'":40,"\u0475":50,"\u0473":40,"\u0463":50,"\u045f":30,"\u045e":40,"\u045b":50,"\u045a":30,"\u045c":30,"\u045d":30,"\u0456":30,"\u0451":40,"\u0450":40,"\u0455":20,"\u0454":40,"\u0452":50,"\u0491":30,"\u0453":30,"\u044f":40,"\u044e":30,"\u044c":30,"\u044b":30,"\u044a":45,"\u0449":30,"\u0448":30,"\u0447":80,"\u0444":40,"\u0443":40,"\u0442":80,"\u0441":20,"\u043f":30,"\u043e":40,"\u043d":30,"\u043c":30,"\u043a":30,"\u0439":30,"\u0438":30,"\u0435":40,"\u0433":30,"\u0432":30,"\u0431":40,"\u0430":30,"\u2014":40,"\u2013":40,"\u00ab":40,"\u201d":30,"\u201c":50,"\u2019":30,"\u2018":50,"?":50,"-":40,";":-50,",":-50}},"\u044a":{"d":"568,9v-110,2,-204,-12,-286,-37r0,-789r-282,0r0,-133r437,0r0,366v54,-7,118,-13,176,-13v233,4,405,74,405,295v0,238,-204,308,-450,311xm437,-136v174,33,419,15,419,-163v0,-185,-249,-178,-419,-152r0,315","w":1108,"k":{"\"":155,"'":155,"\u0475":65,"\u0463":65,"\u045e":65,"\u045b":25,"\u0452":25,"\u044f":35,"\u044a":95,"\u0443":65,"\u0442":130,"\u0436":30,"\u0431":30,"\u201d":175,"\u201c":210,"\u2019":175,"\u2018":210,"?":50}},"\u044b":{"d":"1025,0r0,-950r155,0r0,950r-155,0xm305,-136v174,33,422,15,419,-163v-3,-185,-241,-179,-419,-152r0,315xm436,9v-110,2,-204,-12,-286,-37r0,-922r155,0r0,366v52,-7,120,-13,176,-13v234,2,405,75,405,295v0,238,-204,308,-450,311","w":1330},"\u044c":{"d":"305,-136v180,27,439,27,439,-163v0,-188,-257,-177,-439,-152r0,315xm441,9v-109,1,-210,-12,-291,-37r0,-922r155,0r0,366v56,-8,129,-13,192,-13v234,3,409,75,409,295v0,243,-214,308,-465,311","w":996,"k":{"\"":155,"'":155,"\u0475":65,"\u0463":65,"\u045e":65,"\u045b":25,"\u0452":25,"\u044f":35,"\u044a":95,"\u0443":65,"\u0442":130,"\u0436":30,"\u0431":30,"\u201d":175,"\u201c":210,"\u2019":175,"\u2018":210,"?":50}},"\u044d":{"d":"107,-920v107,-55,299,-76,437,-28v189,65,307,222,305,483v-3,323,-177,487,-499,489v-89,0,-203,-21,-260,-53r0,-126v105,44,265,69,388,27v124,-42,202,-138,208,-297r-506,0r0,-133r501,0v-20,-179,-139,-285,-326,-285v-100,0,-167,21,-248,49r0,-126","w":944,"k":{"\u0463":35,"\u045b":35,"\u0459":40,"\u0452":35,"\u044f":30,"\u044a":30,"\u043b":40,"\u0437":20,"\u0436":30,"\u0434":50,"]":40,")":40,"\u201c":50,"\u2018":50}},"\u044e":{"d":"954,25v-286,0,-426,-179,-450,-450r-199,0r0,425r-155,0r0,-950r155,0r0,392r201,0v35,-248,174,-417,447,-417v228,0,360,122,420,296v41,119,42,290,-1,409v-62,173,-192,295,-418,295xm1160,-203v73,-82,106,-283,60,-427v-38,-121,-117,-213,-267,-213v-203,0,-289,158,-289,369v0,212,87,367,290,367v94,0,158,-42,206,-96","w":1499,"k":{"\u0463":35,"\u045b":35,"\u0459":40,"\u0452":35,"\u044f":30,"\u044a":30,"\u043b":40,"\u0437":20,"\u0436":30,"\u0434":50,"]":40,")":40,"\u201c":50,"\u2018":50}},"\u044f":{"d":"323,-392v-113,-31,-190,-112,-190,-250v0,-211,152,-308,388,-308r352,0r0,950r-155,0r0,-371r-234,0r-204,371r-180,0xm295,-649v-4,192,240,142,423,149r0,-317r-193,0v-138,-3,-227,40,-230,168","w":1023},"\u0453":{"d":"796,-809r-491,0r0,809r-155,0r0,-950r646,0r0,141xm697,-1473r-161,349r-130,0r123,-349r168,0","w":846,"k":{"\u0459":110,"\u044f":30,"\u043b":110,"\u0434":150,"\u2014":105,"\u2013":105,"\u00ab":80,"?":60,"-":105,"\u2026":145,".":145,",":95}},"\u0491":{"d":"691,-950r0,-295r149,0r0,436r-535,0r0,809r-155,0r0,-950r541,0","w":900,"k":{"\u0459":110,"\u044f":30,"\u043b":110,"\u0434":150,"\u2014":105,"\u2013":105,"\u00ab":80,"?":60,"-":105,"\u2026":145,".":145,",":95}},"\u0452":{"d":"720,-744v-134,-83,-290,21,-368,107r0,637r-155,0r0,-1152r-167,0r0,-133r167,0r0,-163r155,0r0,163r402,0r0,133r-402,0r0,366r3,0v91,-102,288,-164,440,-86v160,82,229,272,229,521v0,278,-78,503,-255,607v-66,39,-146,58,-242,53r0,-143v286,2,333,-249,333,-529v0,-172,-36,-316,-140,-381","w":1134,"k":{"\"":50,"'":50,"\u0475":30,"\u0463":20,"\u045e":35,"\u045b":20,"\u0452":20,"\u044f":20,"\u044a":20,"\u0443":35,"\u0442":55,"\u201c":80,"\u2018":80}},"\u0454":{"d":"585,25v-314,-4,-490,-167,-490,-487v0,-324,163,-503,478,-513v99,-3,199,23,263,55r0,126v-137,-57,-349,-73,-462,18v-60,48,-108,117,-116,218r517,0r0,133r-522,0v10,208,136,318,350,318v101,0,172,-18,250,-48r0,126v-59,31,-170,55,-268,54","w":943,"k":{"\u045b":20,"\u0452":20,"\u044f":20}},"\u0455":{"d":"704,-790v-135,-58,-454,-112,-454,93v0,153,194,134,310,175v106,38,187,103,183,250v-6,214,-167,294,-385,297v-107,2,-195,-20,-263,-54r0,-130v147,67,495,104,495,-105v0,-154,-180,-143,-300,-183v-107,-35,-193,-92,-191,-235v3,-200,138,-289,336,-293v105,-2,195,23,269,53r0,132","w":828},"\u0450":{"d":"743,-576v-4,-153,-69,-266,-221,-266v-159,0,-240,117,-259,266r480,0xm255,-443v1,226,130,331,352,333v108,1,185,-19,267,-48r0,129v-70,34,-179,55,-287,54v-316,-4,-492,-164,-492,-487v0,-246,101,-407,270,-481v52,-22,106,-32,163,-32v289,0,392,220,379,532r-652,0xm469,-1473r123,349r-130,0r-161,-349r168,0","w":1019,"k":{"\u0459":40,"\u044f":20,"\u044a":30,"\u0442":60,"\u043b":40,"]":40,")":40,"\u201c":50,"\u2018":50}},"\u0451":{"d":"743,-576v-4,-153,-69,-266,-221,-266v-159,0,-240,117,-259,266r480,0xm255,-443v1,226,130,331,352,333v108,1,185,-19,267,-48r0,129v-70,34,-179,55,-287,54v-316,-4,-492,-164,-492,-487v0,-246,101,-407,270,-481v52,-22,106,-32,163,-32v289,0,392,220,379,532r-652,0xm255,-1171r0,-167r159,0r0,167r-159,0xm636,-1171r0,-167r159,0r0,167r-159,0","w":1019,"k":{"\u0459":40,"\u044f":20,"\u044a":30,"\u0442":60,"\u043b":40,"]":40,")":40,"\u201c":50,"\u2018":50}},"\u0456":{"d":"160,0r0,-950r155,0r0,950r-155,0xm156,-1171r0,-173r163,0r0,173r-163,0","w":475},"\u0457":{"d":"160,0r0,-950r155,0r0,950r-155,0xm-34,-1171r0,-167r159,0r0,167r-159,0xm347,-1171r0,-167r159,0r0,167r-159,0","w":475},"\u0458":{"d":"2,355v122,0,177,-44,177,-161r0,-1144r155,0r0,1162v-3,188,-110,278,-313,278v-48,0,-110,-9,-141,-20r0,-132v38,10,76,17,122,17xm175,-1171r0,-173r163,0r0,173r-163,0","w":494},"\u045d":{"d":"286,0r-136,0r0,-950r155,0r0,521v0,93,-2,162,-5,206r4,0v162,-252,356,-487,531,-727r136,0r0,950r-155,0r0,-521v0,-73,2,-142,5,-206r-4,0v-163,251,-356,486,-531,727xm516,-1473r123,349r-130,0r-161,-349r168,0","w":1121},"\u045c":{"d":"307,-485r414,-465r198,0r-429,473r455,477r-200,0r-438,-465r-2,0r0,465r-155,0r0,-950r155,0r0,465r2,0xm730,-1473r-161,349r-130,0r123,-349r168,0","w":975,"k":{"\u0473":45,"\u0451":45,"\u0450":45,"\u0454":45,"\u0444":50,"\u0441":45,"\u043e":45,"\u0435":45,"\u2014":95,"\u2013":95,"\u00ab":95,"?":40,"-":95}},"\u0459":{"d":"1057,9v-110,2,-204,-12,-286,-37r0,-789r-252,0v-36,291,-77,537,-201,713v-61,87,-148,133,-288,120r0,-161v178,14,217,-118,262,-263v49,-156,77,-335,103,-542r531,0r0,366v52,-7,120,-13,176,-13v234,2,405,75,405,295v0,238,-204,308,-450,311xm926,-136v174,33,422,15,419,-163v-3,-185,-243,-178,-419,-152r0,315","w":1597,"k":{"\"":155,"'":155,"\u0475":65,"\u0463":25,"\u045e":65,"\u045b":25,"\u0452":25,"\u044f":35,"\u044a":95,"\u0443":65,"\u0442":130,"\u0436":30,"\u0431":30,"\u201d":175,"\u201c":210,"\u2019":175,"\u2018":210,"?":50}},"\u045a":{"d":"1009,9v-110,2,-204,-12,-286,-37r0,-417r-418,0r0,445r-155,0r0,-950r155,0r0,372r418,0r0,-372r155,0r0,366v58,-8,116,-13,180,-13v228,2,391,80,391,295v0,235,-198,308,-440,311xm878,-136v172,33,412,15,409,-163v-3,-185,-232,-179,-409,-152r0,315","w":1539,"k":{"\"":155,"'":155,"\u0475":65,"\u0463":65,"\u045e":65,"\u045b":25,"\u0452":25,"\u044f":35,"\u044a":95,"\u0443":65,"\u0442":130,"\u0436":30,"\u0431":30,"\u201d":175,"\u201c":210,"\u2019":175,"\u2018":210,"?":50}},"\u045b":{"d":"637,-774v-131,0,-224,80,-285,169r0,605r-155,0r0,-1152r-167,0r0,-133r167,0r0,-163r155,0r0,163r392,0r0,133r-392,0r0,398r3,0v66,-83,163,-153,307,-153v218,0,333,119,333,353r0,554r-155,0r0,-528v5,-162,-61,-246,-203,-246","w":1145,"k":{"\u201c":50,"\u2018":50}},"\u045e":{"d":"314,-1448v13,109,64,189,176,189v111,0,167,-80,179,-189r140,0v-18,186,-121,312,-320,312v-197,0,-297,-127,-314,-312r139,0xm30,-950r159,0r295,745r6,0r299,-745r163,0r-593,1415r-154,0r203,-484","w":982,"k":{"\u0459":80,"\u044f":20,"\u043b":80,"\u0434":80,"\u00ab":40,"?":40,"\u2026":100,".":100,",":70}},"\u045f":{"d":"610,340r-149,0r0,-340r-311,0r0,-950r155,0r0,811r459,0r0,-811r155,0r0,950r-309,0r0,340","w":1069},"\u0463":{"d":"385,-136v179,28,439,26,439,-163v0,-188,-261,-177,-439,-152r0,315xm521,9v-109,1,-210,-12,-291,-37r0,-789r-200,0r0,-133r200,0r0,-498r155,0r0,498r319,0r0,133r-319,0r0,233v54,-7,127,-13,186,-13v236,3,415,73,415,295v0,243,-214,308,-465,311","w":1046,"k":{"\"":105,"'":105,"\u0475":40,"\u0463":30,"\u045e":65,"\u044a":50,"\u0443":65,"\u0442":130,"\u0431":3,"\u201d":90,"\u201c":125,"\u2019":90,"\u2018":125,"?":40}},"\u0473":{"d":"862,-837v103,109,150,371,85,567v-58,174,-186,295,-410,295v-299,0,-442,-198,-442,-499v0,-233,93,-392,256,-465v106,-48,267,-48,373,0v55,24,98,60,138,102xm254,-423v15,182,97,316,283,316v186,0,265,-136,281,-316r-564,0xm815,-556v-23,-164,-103,-287,-279,-287v-177,0,-257,123,-279,287r558,0","w":1072,"k":{"\u0463":35,"\u045b":35,"\u0459":40,"\u0452":35,"\u044f":30,"\u044a":30,"\u043b":40,"\u0437":20,"\u0436":30,"\u0434":50,"]":40,")":40,"\u201c":50,"\u2018":50}},"\u0475":{"d":"674,-745v49,-143,121,-243,314,-229r0,136v-118,-5,-149,58,-181,146r-249,692r-158,0r-370,-950r167,0r223,608v25,67,44,121,57,164r4,0","w":1038,"k":{"\u0473":25,"\u045b":20,"\u0459":80,"\u0451":25,"\u0450":25,"\u0455":20,"\u0454":25,"\u0452":20,"\u044f":30,"\u0444":40,"\u043e":25,"\u043b":80,"\u0435":25,"\u0434":110,"\u0430":45,"]":30,")":30,"\u2014":60,"\u2013":60,"\u00ab":60,"?":105,"-":60,"\u2026":135,".":135,",":115}},"^":{"d":"199,-543r-150,0r408,-820r136,0r408,820r-150,0r-324,-662r-4,0"},"~":{"d":"695,-473v74,0,111,-42,142,-91r102,73v-46,106,-173,179,-327,139v-91,-24,-165,-85,-269,-85v-75,0,-110,42,-142,91r-102,-73v43,-85,116,-152,240,-152v139,0,225,98,356,98"},"\u00a6":{"d":"305,-720r-145,0r0,-728r145,0r0,728xm305,465r-145,0r0,-696r145,0r0,696","w":465},"\\":{"d":"373,249r-380,-1587r148,0r380,1587r-148,0","w":563},"_":{"d":"0,142r1000,0r0,133r-1000,0r0,-133","w":1000},"'":{"d":"123,-1338r155,0r0,494r-155,0r0,-494","w":401,"k":{"\u0459":155,"\u043b":155,"\u0434":115,"\u0409":145,"\u0408":160,"\u042a":-40,"\u041b":145,"\u0414":190,"\u0410":145,"\u00bf":185,".":100,"\u00c6":185,"\u00c5":145,"\u00c4":145,"\u00c3":145,"\u00c2":145,"\u00c1":145,"\u00c0":145,"J":160,"A":145}},"\"":{"d":"123,-1338r155,0r0,494r-155,0r0,-494xm464,-1338r155,0r0,494r-155,0r0,-494","w":742,"k":{"\u0459":155,"\u043b":155,"\u0434":115,"\u0409":145,"\u0408":160,"\u042a":-40,"\u041b":145,"\u0414":190,"\u0410":145,"\u00bf":185,".":100,"\u00c6":185,"\u00c5":145,"\u00c4":145,"\u00c3":145,"\u00c2":145,"\u00c1":145,"\u00c0":145,"J":160,"A":145}},"@":{"d":"1004,-127v118,0,194,-60,256,-120r0,-170v-66,-17,-127,-36,-212,-35v-125,0,-212,50,-211,171v1,103,65,154,167,154xm1464,5v-107,0,-168,-48,-192,-130r-4,0v-64,72,-152,130,-289,130v-185,0,-302,-102,-302,-286v0,-205,143,-298,350,-303v99,-2,161,22,233,43v12,-189,-56,-292,-239,-289v-104,2,-183,21,-262,51r0,-130v74,-35,172,-56,281,-56v237,0,375,113,375,346r0,391v1,66,13,101,77,101v144,0,200,-139,232,-270v37,-151,18,-333,-36,-455v-103,-230,-314,-376,-635,-376v-415,0,-630,224,-699,572v-57,289,20,579,168,728v125,126,306,210,556,209v211,-1,395,-38,542,-99r0,135v-203,79,-525,132,-788,71v-396,-91,-652,-356,-652,-838v0,-436,199,-718,514,-848v201,-83,488,-87,696,-8v290,111,500,341,500,728v0,260,-89,452,-257,542v-52,28,-108,41,-169,41","w":2070},"\u00a9":{"d":"202,-392v-70,-165,-70,-389,0,-554v103,-240,312,-417,641,-417v329,0,539,177,641,417v70,165,70,389,0,554v-103,240,-312,417,-641,417v-329,0,-539,-177,-641,-417xm1039,-911v-43,-15,-99,-28,-156,-27v-169,4,-258,102,-259,275v-1,176,90,262,263,262v50,0,121,-12,159,-27r0,126v-44,16,-113,27,-174,26v-247,-5,-391,-135,-391,-384v0,-193,96,-315,235,-375v91,-39,237,-37,323,-1r0,125xm323,-890v-55,136,-55,306,0,442v81,200,248,348,520,348v271,0,439,-149,520,-348v55,-136,55,-306,0,-442v-81,-200,-248,-348,-520,-348v-271,0,-439,149,-520,348","w":1686},"\u00ae":{"d":"188,-686v-50,-115,-50,-271,0,-386v73,-167,218,-291,447,-291v229,0,375,125,447,291v50,115,50,271,0,386v-73,167,-218,291,-447,291v-229,0,-375,-125,-447,-291xm359,-1156v-86,81,-138,275,-77,430v54,137,167,237,353,237v185,0,299,-100,353,-237v61,-154,4,-345,-77,-430v-88,-92,-281,-149,-432,-82v-47,20,-85,49,-120,82xm830,-980v0,84,-52,127,-124,141r0,4r136,201r-114,0r-121,-190r-51,0r0,190r-99,0r0,-496v174,0,371,-22,373,150xm726,-980v0,-76,-92,-65,-170,-65r0,136v82,0,170,6,170,-71","w":1270},"\u2122":{"d":"331,-1229r-228,0r0,-109r577,0r0,109r-227,0r0,575r-122,0r0,-575xm909,-1202r5,219r0,329r-119,0r0,-684r182,0r169,430v12,31,20,56,25,74r6,0r77,-206r117,-298r184,0r0,684r-120,0r0,-329r5,-219r-7,0v-24,67,-52,140,-85,220r-131,328r-85,0r-131,-328v-32,-79,-60,-152,-85,-220r-7,0","w":1752},"\u00a4":{"d":"170,-669v0,-84,27,-152,64,-205r-138,-139r85,-85r138,139v54,-38,121,-66,206,-66v85,0,153,27,206,65r138,-138r85,85r-138,138v38,54,65,121,65,206v0,85,-29,153,-66,206r140,139r-85,85r-140,-139v-53,38,-121,63,-205,64v-85,0,-152,-27,-205,-65r-140,140r-85,-85r140,-140v-38,-54,-65,-120,-65,-205xm525,-894v-135,0,-218,90,-218,225v0,135,84,224,218,224v135,0,219,-89,219,-224v0,-135,-84,-225,-219,-225"},"$":{"d":"914,-307v0,186,-155,247,-327,274r0,108r-132,0r0,-100v-116,-1,-233,-15,-313,-50r0,-138v81,31,196,54,313,53r0,-286v-162,-28,-315,-71,-315,-261v0,-182,144,-254,315,-276r0,-104r132,0r0,101v105,5,198,21,278,47r0,139v-86,-25,-171,-46,-278,-51r0,283v162,31,327,69,327,261xm587,-169v100,-11,203,-71,158,-185v-30,-46,-92,-61,-158,-74r0,259xm297,-713v0,88,69,106,158,125r0,-259v-105,13,-158,58,-158,134","k":{"9":50,"7":40,"6":30,"5":50,"3":40,"2":50}},"\u00a2":{"d":"901,-160v-55,20,-133,35,-207,37r0,148r-132,0r0,-153v-259,-30,-411,-179,-408,-469v3,-291,152,-454,408,-494r0,-163r132,0r0,157v69,2,150,17,197,37r0,135v-57,-18,-126,-35,-197,-37r0,701v69,-1,155,-15,207,-35r0,136xm562,-951v-159,39,-250,151,-251,350v-1,197,84,303,251,331r0,-681"},"\u00a3":{"d":"923,-888v-97,-45,-300,-82,-369,15v-43,61,-57,161,-69,261r318,0r0,137r-335,0r-41,332r529,0r0,143r-837,0r0,-143r149,0r41,-332r-111,0r0,-137r128,0v22,-256,96,-457,370,-458v89,0,168,18,227,48r0,134","k":{"5":40}},"\u00a5":{"d":"527,-546r272,-499r168,0r-303,533r201,0r0,133r-262,0r0,142r262,0r0,133r-262,0r0,130r-157,0r0,-130r-262,0r0,-133r262,0r0,-142r-262,0r0,-133r200,0r-302,-533r168,0r272,499r5,0","k":{"5":40}},"\u00aa":{"d":"358,-1244v183,0,309,85,309,259r0,472r-125,0r-11,-83r-4,0v-47,56,-115,102,-216,102v-144,0,-236,-81,-236,-225v0,-154,107,-231,263,-236v70,-1,133,15,187,29v12,-135,-48,-199,-183,-197v-76,1,-147,17,-205,39r0,-118v53,-24,142,-42,221,-42xm332,-615v83,0,146,-41,193,-82r0,-113v-107,-31,-308,-56,-308,92v0,65,50,104,115,103","w":777},"\u00ba":{"d":"420,-615v134,0,203,-103,201,-254v-2,-150,-59,-254,-202,-254v-136,0,-204,103,-202,254v2,151,59,254,203,254xm668,-1140v80,81,126,275,70,423v-49,128,-149,223,-318,223v-170,0,-272,-94,-320,-223v-33,-90,-34,-215,0,-304v49,-128,150,-223,319,-223v110,0,191,46,249,104","w":838},"#":{"d":"428,-949r80,-389r148,0r-80,389r304,0r80,-389r148,0r-80,389r193,0r0,132r-220,0r-61,296r199,0r0,132r-226,0r-80,389r-148,0r80,-389r-304,0r-80,389r-148,0r80,-389r-193,0r0,-132r220,0r61,-296r-199,0r0,-132r226,0xm488,-521r304,0r61,-296r-304,0","w":1341},"0":{"d":"527,-107v198,0,273,-161,273,-367v0,-207,-75,-369,-274,-369v-199,0,-274,161,-274,369v0,207,76,367,275,367xm850,-832v98,112,146,362,82,556v-58,173,-181,301,-405,301v-226,0,-352,-126,-409,-301v-63,-195,-12,-446,87,-556v73,-81,174,-143,321,-143v148,0,252,61,324,143","w":1052,"k":{"3":40,"2":40}},"1":{"d":"451,-143r0,-642r-361,113r0,-144r382,-134r134,0r0,807r262,0r0,143r-736,0r0,-143r319,0","w":918,"k":{"7":40,"3":50}},"2":{"d":"489,-975v211,4,357,94,357,304v0,124,-60,205,-127,279v-84,92,-207,173,-311,251r0,4v77,-4,146,-6,207,-6r312,0r0,143r-772,0r0,-103r212,-159v110,-84,210,-167,278,-272v27,-43,40,-86,40,-129v-1,-123,-86,-181,-217,-179v-120,2,-210,40,-303,81r0,-132v78,-44,196,-84,324,-82","w":1046,"k":{"7":40,"5":60,"3":60,"2":90,"0":40}},"3":{"d":"787,-624v0,174,-90,269,-229,312r0,4v168,21,270,127,270,316v0,279,-188,403,-475,405v-110,1,-212,-21,-285,-59r0,-132v81,36,172,58,274,58v199,0,320,-81,324,-269v5,-223,-192,-255,-429,-245r0,-133v223,9,388,-51,388,-255v0,-154,-109,-220,-263,-220v-103,0,-193,27,-273,59r0,-132v176,-83,465,-81,589,39v62,60,109,139,109,252","w":928},"4":{"d":"653,-950r-384,821r148,-4r219,0r0,-304r155,0r0,304r197,0r0,133r-197,0r0,387r-155,0r0,-387r-544,0r0,-114r394,-836r167,0","w":1058},"5":{"d":"337,-410v318,-15,541,97,541,397v0,212,-121,335,-285,394v-141,51,-362,40,-476,-27r0,-132v81,37,162,56,262,56v201,0,331,-93,337,-283v9,-277,-280,-287,-555,-260r95,-685r621,0r0,143r-484,0","w":983,"k":[40]},"6":{"d":"279,-727v79,-38,176,-81,285,-79v255,5,410,137,410,394v0,207,-93,342,-243,404v-107,45,-265,44,-365,-9v-174,-92,-256,-291,-256,-558v0,-303,90,-536,256,-677v77,-65,177,-110,311,-111v91,0,165,20,223,47r0,130v-93,-37,-247,-63,-352,-12v-161,79,-243,248,-269,471xm812,-398v0,-177,-89,-270,-261,-270v-105,0,-209,44,-279,86v-1,208,45,372,172,446v35,20,74,29,116,29v168,0,252,-117,252,-291","w":1074,"k":{"7":70,"5":30,"2":40}},"7":{"d":"39,-807r0,-143r784,0r0,104r-551,1233r-162,0r534,-1194r-605,0","w":876,"k":{"5":50,"4":50,"2":40}},"8":{"d":"688,-689v155,43,271,144,271,340v0,186,-112,292,-255,345v-103,38,-251,38,-354,0v-144,-53,-255,-158,-255,-345v0,-194,107,-298,261,-340r0,-4v-133,-49,-233,-144,-233,-321v0,-182,112,-283,253,-326v222,-68,447,20,521,176v21,44,34,93,34,150v0,178,-109,271,-243,321r0,4xm769,-1009v0,-147,-95,-222,-242,-222v-147,0,-242,75,-242,222v0,151,105,226,242,253v138,-27,242,-102,242,-253xm527,-107v163,0,270,-85,270,-247v0,-172,-115,-245,-270,-265v-155,20,-270,93,-270,265v0,161,108,247,270,247","w":1054,"k":{"7":30,"2":50}},"9":{"d":"799,-223v-113,61,-305,110,-459,53v-145,-54,-240,-172,-240,-369v0,-266,146,-436,414,-436v407,0,492,416,436,831v-43,321,-202,551,-566,557v-101,2,-191,-23,-257,-58r0,-133v100,56,287,78,411,28v172,-68,244,-241,261,-473xm262,-554v-2,177,81,271,254,272v109,0,214,-40,286,-83v-3,-211,-44,-378,-174,-451v-35,-20,-75,-27,-118,-27v-167,0,-246,117,-248,289","w":1074},"\u00b9":{"d":"278,-630r0,-583r-223,75r0,-127r236,-86r129,0r0,721r171,0r0,117r-518,0r0,-117r205,0","w":631},"\u00b2":{"d":"280,-1363v163,2,270,70,270,227v0,163,-84,245,-174,344r-148,164r0,4v125,-10,226,-5,353,-6r0,117r-531,0r0,-89r158,-179v73,-85,135,-157,178,-247v15,-33,22,-64,22,-95v-2,-169,-245,-123,-345,-68r0,-121v51,-26,135,-51,217,-51","w":641},"\u00b3":{"d":"551,-748v0,179,-141,250,-322,254v-64,1,-146,-14,-189,-37r0,-119v120,53,374,67,369,-106v-4,-118,-129,-133,-263,-127r0,-117v133,5,242,-15,242,-132v0,-152,-236,-116,-335,-73r0,-121v47,-20,126,-38,195,-37v161,3,282,65,282,219v0,107,-55,167,-139,195r0,4v100,15,160,81,160,197","w":606},"\u00bc":{"d":"1370,-1363r101,78r-977,1310r-101,-78xm1409,-833r-224,527v62,-5,128,-7,197,-6r0,-192r142,0r0,192r96,0r0,117r-96,0r0,187r-142,0r0,-187r-346,0r0,-98r230,-540r143,0xm278,-630r0,-583r-223,75r0,-127r236,-86r129,0r0,721r171,0r0,117r-518,0r0,-117r205,0","w":1670},"\u00bd":{"d":"1370,-1363r101,78r-977,1310r-101,-78xm278,-630r0,-583r-223,75r0,-127r236,-86r129,0r0,721r171,0r0,117r-518,0r0,-117r205,0xm1425,-858v163,2,270,70,270,227v0,163,-84,245,-174,344r-148,164r0,4v125,-10,226,-5,353,-6r0,117r-531,0r0,-89r158,-179v73,-85,135,-157,178,-247v15,-33,22,-64,22,-95v-2,-169,-245,-123,-345,-68r0,-121v51,-26,135,-51,217,-51","w":1776},"\u00be":{"d":"1275,-1363r101,78r-977,1310r-101,-78xm1331,-833r-224,527v62,-5,128,-7,197,-6r0,-192r142,0r0,192r96,0r0,117r-96,0r0,187r-142,0r0,-187r-346,0r0,-98r230,-540r143,0xm551,-748v0,179,-141,250,-322,254v-64,1,-146,-14,-189,-37r0,-119v120,53,374,67,369,-106v-4,-118,-129,-133,-263,-127r0,-117v133,5,242,-15,242,-132v0,-152,-236,-116,-335,-73r0,-121v47,-20,126,-38,195,-37v161,3,282,65,282,219v0,107,-55,167,-139,195r0,4v100,15,160,81,160,197","w":1592},"%":{"d":"1263,-1363r101,78r-977,1310r-101,-78xm60,-929v0,-237,62,-434,283,-434v221,0,283,198,283,434v0,237,-62,435,-283,435v-221,0,-283,-199,-283,-435xm238,-692v47,101,163,101,210,0v43,-91,43,-382,0,-473v-47,-100,-163,-100,-210,0v-43,91,-43,382,0,473xm1022,-418v0,-237,62,-434,283,-434v221,0,283,198,283,434v0,237,-62,435,-283,435v-221,0,-283,-199,-283,-435xm1200,-182v47,101,163,101,210,0v43,-91,43,-381,0,-472v-47,-100,-163,-100,-210,0v-43,91,-43,381,0,472","w":1648},"+":{"d":"115,-587r340,0r0,-363r140,0r0,363r340,0r0,132r-340,0r0,363r-140,0r0,-363r-340,0r0,-132"},"\u00b1":{"d":"115,-665r340,0r0,-285r140,0r0,285r340,0r0,132r-340,0r0,285r-140,0r0,-285r-340,0r0,-132xm115,0r0,-132r820,0r0,132r-820,0"},"\u00d7":{"d":"105,-848r94,-93r326,327r327,-327r93,93r-327,327r327,326r-94,93r-326,-326r-326,326r-93,-93r326,-326"},"\u00f7":{"d":"445,-257r160,0r0,165r-160,0r0,-165xm935,-587r0,132r-820,0r0,-132r820,0xm445,-950r160,0r0,165r-160,0r0,-165"},"=":{"d":"115,-639r0,-132r820,0r0,132r-820,0xm115,-273r0,-132r820,0r0,132r-820,0"},"<":{"d":"935,-207r0,152r-820,-413r0,-126r820,-413r0,152r-652,322r0,4"},">":{"d":"777,-529r0,-4r-662,-324r0,-150r820,408r0,136r-820,408r0,-150"},"\u00ac":{"d":"115,-455r0,-132r820,0r0,495r-140,0r0,-363r-680,0"},"\u00b0":{"d":"178,-787v-77,-69,-131,-238,-72,-373v51,-116,152,-203,312,-203v160,0,261,87,312,203v35,80,35,186,0,266v-51,116,-152,203,-312,203v-104,0,-182,-44,-240,-96xm418,-1224v-119,0,-190,78,-190,197v0,119,72,196,190,196v119,0,191,-77,191,-196v0,-119,-72,-197,-191,-197","w":836},"\u00b5":{"d":"1047,15v-120,0,-176,-61,-197,-159r-4,0v-60,113,-157,167,-312,169v-97,1,-180,-39,-220,-97r-4,0r5,537r-155,0r0,-1415r155,0r0,589v0,159,69,250,224,250v202,0,287,-135,287,-343r0,-496r155,0r0,638v3,104,1,198,98,201v11,0,36,-3,46,-6r0,123v-20,5,-54,9,-78,9","w":1180}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2008 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Corbel is either a registered trademark or a trademark of Microsoft Corporation
 * in the United States and/or other countries.
 * 
 * Description:
 * Corbel is designed to give an uncluttered and clean appearance on screen. The
 * letter forms are open with soft, flowing curves. It is legible, clear and
 * functional at small sizes. At larger sizes the detailing and style of the shapes
 * is more apparent resulting in a modern sans serif type with a wide range of
 * possible uses.
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Designer:
 * Jeremy Tankard
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography/ctfonts
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/default.aspx
 */
Cufon.registerFont({"w":1080,"face":{"font-family":"corbel","font-weight":700,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 7 3 2 2 4 2 2 4","ascent":"1523","descent":"-525","x-height":"25","bbox":"-155 -1883 1961 490.076","underline-thickness":"120","underline-position":"-130","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":422,"k":{"\u0474":105,"\u0462":85,"\u040e":50,"\u040b":140,"\u0409":80,"\u0408":40,"\u0404":80,"\u0402":140,"\u042f":50,"\u042a":105,"\u0427":220,"\u0425":70,"\u0424":80,"\u0423":50,"\u0422":140,"\u0421":80,"\u041e":80,"\u041b":80,"\u0416":50,"\u0414":70,"\u0410":90,"\u00dd":225,"\u00dc":60,"\u00db":60,"\u00da":60,"\u00d9":60,"\u00d8":80,"\u00d6":80,"\u00d5":80,"\u00d4":80,"\u00d3":80,"\u00d2":80,"\u00c7":80,"\u00c6":90,"\u00c5":90,"\u00c4":90,"\u00c3":90,"\u00c2":90,"\u00c1":90,"\u00c0":90,"Z":70,"Y":225,"X":70,"W":110,"V":140,"U":60,"T":140,"S":50,"Q":80,"O":80,"J":40,"G":80,"C":80,"A":90}},"\u00a0":{"w":422},"A":{"d":"926,-341r-504,0r-131,341r-261,0r531,-1338r224,0r531,1338r-259,0xm672,-1016v-47,140,-88,257,-125,351r-46,119r346,0r-46,-119v-37,-95,-78,-212,-125,-351r-4,0","w":1346,"k":{"\"":145,"'":145,"\u00ab":50,"\u201d":130,"\u201c":155,"\u2019":130,"\u2018":155,"\u00ff":80,"\u00fd":80,"y":80,"w":40,"v":40,"\u00dd":120,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"Y":120,"W":85,"V":110,"T":110,"Q":20,"O":20,"G":20,"C":20}},"B":{"d":"961,-698v155,45,270,194,209,397v-68,226,-307,301,-621,301r-389,0r0,-1338v290,11,647,-43,823,88v81,60,146,138,146,268v0,138,-63,227,-168,280r0,4xm933,-404v0,-222,-298,-173,-528,-178r0,377v240,-3,528,30,528,-199xm877,-962v0,-138,-117,-171,-271,-171r-201,0r0,346r221,0v159,2,251,-40,251,-175","w":1276,"k":{"\u201c":50,"\u2018":50}},"C":{"d":"1095,-1111v-142,-46,-326,-69,-469,-12v-172,68,-273,224,-273,463v0,304,150,478,451,478v108,0,219,-18,303,-47r0,211v-176,53,-449,60,-618,-6v-242,-94,-389,-295,-389,-621v0,-337,155,-556,400,-662v163,-71,426,-71,595,-12r0,208","w":1197,"k":{"}":-50,"]":-50,"\u00ab":50,"\u00ff":75,"\u00fd":75,"y":75,"w":75,"v":75,"\u00c7":20,"C":20}},"D":{"d":"1311,-674v0,490,-326,676,-833,674r-318,0r0,-1338r354,0v406,-1,674,142,768,452v19,65,29,136,29,212xm1059,-676v0,-329,-209,-459,-546,-457r-108,0r0,928r101,0v362,2,553,-126,553,-471","w":1411,"k":{"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50,",":50,"\u00dd":40,"\u00c6":50,"Y":40,"X":50,"V":20,"T":50,"J":60}},"E":{"d":"405,-205r658,0r0,205r-903,0r0,-1338r867,0r0,205r-622,0r0,346r534,0r0,205r-534,0r0,377","w":1163},"F":{"d":"405,0r-245,0r0,-1338r852,0r0,205r-607,0r0,346r519,0r0,205r-519,0r0,582","w":1067,"k":{"\u00ab":50,"\u2026":140,".":140,",":140,"\u00ef":-100,"\u00ee":-80,"\u00c6":130,"\u00c5":100,"\u00c4":100,"\u00c3":100,"\u00c2":100,"\u00c1":100,"\u00c0":100,"J":90,"A":100}},"G":{"d":"826,-182v54,0,121,-7,166,-16r0,-313r-300,0r0,-205r545,0r0,675v-194,69,-529,94,-735,17v-248,-92,-402,-287,-402,-614v0,-315,146,-513,352,-630v105,-60,237,-95,396,-95v122,-1,256,20,341,50r0,208v-150,-49,-362,-76,-522,-19v-188,67,-312,217,-314,468v-2,311,168,473,473,474","w":1377},"H":{"d":"405,-787r620,0r0,-551r245,0r0,1338r-245,0r0,-582r-620,0r0,582r-245,0r0,-1338r245,0r0,551","w":1430},"I":{"d":"160,0r0,-1338r245,0r0,1338r-245,0","w":565},"J":{"d":"243,-182v123,0,181,-55,181,-174r0,-982r245,0r0,989v4,265,-151,370,-404,374v-77,1,-162,-14,-215,-36r0,-209v53,22,122,38,193,38","w":824},"K":{"d":"160,0r0,-1338r245,0r0,609r4,0r505,-609r304,0r-558,663r604,675r-314,0r-541,-604r-4,0r0,604r-245,0","w":1294,"k":{"\u2014":90,"\u2013":90,"\u00ab":90,"\u201d":50,"\u2019":50,"-":90,"\u00f0":40,"\u00ff":110,"\u00fd":110,"\u00f8":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u00eb":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"y":110,"w":110,"v":110,"q":40,"o":40,"g":40,"e":40,"d":40,"c":40,"\u00d8":100,"\u00d6":100,"\u00d5":100,"\u00d4":100,"\u00d3":100,"\u00d2":100,"\u00c7":100,"Q":100,"O":100,"G":100,"C":100}},"L":{"d":"405,-1338r0,1133r626,0r0,205r-871,0r0,-1338r245,0","w":1101,"k":{"\"":225,"'":225,"\u2014":60,"\u2013":60,"\u00ab":70,"\u201d":140,"\u201c":225,"\u2019":140,"\u2018":225,"?":70,"-":60,"\u00ff":110,"\u00fd":110,"y":110,"w":110,"v":110,"\u00dd":270,"\u00d8":80,"\u00d6":80,"\u00d5":80,"\u00d4":80,"\u00d3":80,"\u00d2":80,"\u00c7":80,"Y":270,"W":130,"V":200,"T":250,"Q":80,"O":80,"G":80,"C":80}},"M":{"d":"848,-359v93,-325,230,-662,340,-979r344,0r0,1338r-245,0r0,-678v0,-99,4,-215,12,-346r-9,0r-40,128v-15,47,-31,94,-48,140r-277,756r-158,0r-277,-756v-17,-46,-33,-93,-48,-140r-40,-128r-9,0v22,342,8,672,12,1024r-245,0r0,-1338r342,0r231,637v39,106,75,220,109,342r6,0","w":1692},"N":{"d":"857,-716v96,137,174,258,234,364r6,0v-8,-174,-12,-301,-12,-380r0,-606r245,0r0,1338r-257,0r-436,-616v-77,-107,-156,-230,-238,-371r-6,0v8,164,12,291,12,381r0,606r-245,0r0,-1338r257,0","w":1490},"O":{"d":"752,-182v278,0,399,-198,399,-487v0,-289,-119,-487,-399,-487v-279,0,-399,199,-399,487v0,289,121,487,399,487xm1360,-950v58,166,58,397,0,562v-87,248,-280,413,-608,413v-327,0,-521,-166,-608,-413v-58,-166,-58,-397,0,-562v87,-248,280,-413,608,-413v327,0,521,166,608,413","w":1504,"k":{"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50,",":50,"\u00dd":40,"\u00c6":50,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"Y":40,"X":50,"V":20,"T":50,"J":55,"A":20}},"P":{"d":"546,-1338v333,-3,584,91,584,402v0,230,-153,336,-345,389v-105,29,-249,33,-380,24r0,523r-245,0r0,-1338r386,0xm877,-941v0,-215,-250,-192,-472,-192r0,404v220,17,472,6,472,-212","w":1230,"k":{"\u2014":50,"\u2013":50,"\u00ab":70,"-":50,"\u2026":245,".":245,",":245,"\u00f0":90,"\u00f8":90,"\u00f6":90,"\u00f5":90,"\u00f4":90,"\u00f3":90,"\u00f2":90,"\u00eb":90,"\u00ea":90,"\u00e9":90,"\u00e8":90,"\u00e7":90,"q":90,"o":90,"g":90,"e":90,"d":90,"c":90,"\u00c6":210,"\u00c5":160,"\u00c4":160,"\u00c3":160,"\u00c2":160,"\u00c1":160,"\u00c0":160,"Z":55,"X":30,"J":160,"A":160}},"Q":{"d":"752,-182v278,0,399,-198,399,-487v0,-289,-119,-487,-399,-487v-279,0,-399,199,-399,487v0,289,121,487,399,487xm1404,-679v0,236,-90,401,-228,505r2,3v79,-21,177,-32,279,-31r0,213v-227,-24,-485,8,-712,8v-327,0,-518,-162,-603,-409v-56,-165,-56,-396,2,-560v87,-248,280,-413,608,-413v326,0,520,164,608,409v29,84,44,176,44,275","w":1557,"k":{"]":50,")":50,"\u201c":50,"\u2018":50}},"R":{"d":"567,-1338v329,-2,583,87,583,402v0,216,-127,328,-317,382r0,4r398,550r-294,0r-364,-518r-168,0r0,518r-245,0r0,-1338r407,0xm898,-941v0,-224,-266,-190,-493,-192r0,410v240,2,493,11,493,-218","w":1286,"k":{")":30,"\u2014":80,"\u2013":80,"\u00ab":90,"\u201c":30,"\u2018":30,"-":80,"\u00f0":55,"\u00fc":30,"\u00fb":30,"\u00fa":30,"\u00f9":30,"\u00f8":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u00eb":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"u":30,"q":40,"o":40,"g":40,"e":40,"d":40,"c":40}},"S":{"d":"505,-182v163,0,313,-40,313,-202v0,-155,-170,-161,-302,-191v-209,-48,-396,-116,-392,-371v5,-286,190,-413,479,-417v142,-2,301,32,401,75r0,210v-117,-47,-238,-77,-379,-78v-144,-1,-252,45,-252,176v0,150,141,169,267,197v226,49,434,112,430,389v-5,315,-243,416,-562,419v-143,2,-300,-30,-390,-82r0,-207v119,51,232,82,387,82","w":1182,"k":{")":30,"\u201d":50,"\u201c":30,"\u2019":50,"\u2018":30}},"T":{"d":"707,0r-245,0r0,-1133r-432,0r0,-205r1108,0r0,205r-431,0r0,1133","w":1168,"k":{"\u2014":140,"\u2013":140,"\u00bb":130,"\u00ab":180,"-":140,"\u2026":160,".":160,":":140,";":140,",":120,"\u00f0":65,"\u00ff":130,"\u00fd":130,"\u00fc":130,"\u00fb":130,"\u00fa":130,"\u00f9":130,"\u00f8":130,"\u00f6":130,"\u00f5":130,"\u00f4":130,"\u00f3":130,"\u00f2":130,"\u00f1":130,"\u00ef":-110,"\u00ee":-90,"\u00eb":130,"\u00ea":130,"\u00e9":130,"\u00e8":130,"\u00e7":130,"\u00e6":150,"\u00e5":150,"\u00e4":150,"\u00e3":150,"\u00e2":150,"\u00e1":150,"\u00e0":150,"z":130,"y":130,"x":130,"w":130,"v":130,"u":130,"s":130,"r":130,"q":130,"p":130,"o":130,"n":130,"m":130,"g":130,"e":130,"d":130,"c":130,"a":150,"\u00d8":50,"\u00d6":50,"\u00d5":50,"\u00d4":50,"\u00d3":50,"\u00d2":50,"\u00c7":50,"\u00c6":170,"\u00c5":110,"\u00c4":110,"\u00c3":110,"\u00c2":110,"\u00c1":110,"\u00c0":110,"Q":50,"O":50,"J":90,"G":50,"C":50,"A":110}},"U":{"d":"1279,-550v5,386,-188,575,-565,575v-376,0,-559,-192,-559,-575r0,-788r245,0r0,766v-3,251,87,390,317,390v229,0,317,-139,317,-390r0,-766r245,0r0,788","w":1434,"k":{".":50,",":50}},"V":{"d":"656,-327r123,-346r248,-665r259,0r-523,1338r-220,0r-523,-1338r261,0r317,856r54,155r4,0","w":1306,"k":{"\u2014":70,"\u2013":70,"\u00bb":70,"\u00ab":110,"-":70,"\u2026":140,".":140,":":70,";":70,",":130,"\u00f0":120,"\u00f8":120,"\u00f6":120,"\u00f5":120,"\u00f4":120,"\u00f3":120,"\u00f2":120,"\u00f1":65,"\u00ef":-110,"\u00ee":-75,"\u00eb":120,"\u00ea":120,"\u00e9":120,"\u00e8":120,"\u00e7":120,"s":75,"r":65,"q":120,"o":120,"n":65,"m":65,"g":120,"e":120,"d":120,"c":120,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"\u00c6":150,"\u00c5":110,"\u00c4":110,"\u00c3":110,"\u00c2":110,"\u00c1":110,"\u00c0":110,"Q":20,"O":20,"J":120,"G":20,"C":20,"A":110}},"W":{"d":"929,-986v-26,125,-57,253,-90,386r-150,600r-244,0r-425,-1338r261,0r161,533v49,167,88,319,118,454r6,0v29,-145,63,-294,102,-447r138,-540r252,0r138,540v39,151,73,300,102,447r6,0v79,-353,181,-658,279,-987r261,0r-425,1338r-244,0r-150,-600v-34,-135,-64,-264,-90,-386r-6,0","w":1864,"k":{"\u2014":30,"\u2013":30,"\u00bb":40,"\u00ab":60,"-":30,"\u2026":70,".":70,",":90,"\u00f0":65,"\u00f8":75,"\u00f6":75,"\u00f5":75,"\u00f4":75,"\u00f3":75,"\u00f2":75,"\u00ef":-110,"\u00ee":-75,"\u00eb":75,"\u00ea":75,"\u00e9":75,"\u00e8":75,"\u00e7":75,"s":60,"q":75,"o":75,"g":75,"e":75,"d":75,"c":75,"\u00c6":85,"\u00c5":85,"\u00c4":85,"\u00c3":85,"\u00c2":85,"\u00c1":85,"\u00c0":85,"J":100,"A":85}},"X":{"d":"513,-1063v65,94,110,161,136,202r5,0r135,-201r191,-276r282,0r-466,658r486,680r-278,0r-351,-507r-4,0r-142,208r-209,299r-278,0r486,-680r-466,-658r282,0","w":1302,"k":{"\u2014":50,"\u2013":50,"\u00ab":50,"-":50,"\u00d8":50,"\u00d6":50,"\u00d4":50,"\u00d3":50,"\u00d2":50,"\u00c7":50,"Q":50,"O":50,"G":50,"C":50}},"Y":{"d":"651,-762r356,-576r272,0r-507,799r0,539r-245,0r0,-539r-507,-799r272,0r356,576r3,0","w":1299,"k":{"\u2014":150,"\u2013":150,"\u00bb":110,"\u00ab":195,"-":150,"\u2026":195,".":195,":":110,";":110,",":130,"\u00f0":75,"\u00ff":80,"\u00fd":80,"\u00fc":110,"\u00fb":110,"\u00fa":110,"\u00f9":110,"\u00f8":160,"\u00f6":160,"\u00f5":160,"\u00f4":160,"\u00f3":160,"\u00f2":160,"\u00f1":110,"\u00ef":-95,"\u00ee":-70,"\u00eb":160,"\u00ea":160,"\u00e9":160,"\u00e8":160,"\u00e7":160,"\u00e6":140,"\u00e5":140,"\u00e4":140,"\u00e3":140,"\u00e2":140,"\u00e1":140,"\u00e0":140,"z":80,"y":80,"x":80,"w":80,"v":80,"u":110,"s":135,"r":110,"q":160,"p":110,"o":160,"n":110,"m":110,"g":160,"e":160,"d":160,"c":160,"a":140,"\u00d8":40,"\u00d6":40,"\u00d5":40,"\u00d4":40,"\u00d3":40,"\u00d2":40,"\u00c7":40,"\u00c6":160,"\u00c5":120,"\u00c4":120,"\u00c3":120,"\u00c2":120,"\u00c1":120,"\u00c0":120,"Q":40,"O":40,"J":120,"G":40,"C":40,"A":120}},"Z":{"d":"1132,-1338r0,133r-716,1000r725,0r0,205r-1051,0r0,-132r717,-1001r-699,0r0,-205r1024,0","w":1231,"k":{"\u2014":50,"\u2013":50,"\u00ab":80,"-":50}},"\u00c0":{"d":"640,-1656r138,247r-188,0r-190,-247r240,0xm926,-341r-504,0r-131,341r-261,0r531,-1338r224,0r531,1338r-259,0xm672,-1016v-47,140,-88,257,-125,351r-46,119r346,0r-46,-119v-37,-95,-78,-212,-125,-351r-4,0","w":1346,"k":{"\"":145,"'":145,"\u00ab":50,"\u201d":130,"\u201c":155,"\u2019":130,"\u2018":155,"\u00ff":80,"\u00fd":80,"y":80,"w":40,"v":40,"\u00dd":120,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"Y":120,"W":85,"V":110,"T":110,"Q":20,"O":20,"G":20,"C":20}},"\u00c1":{"d":"947,-1656r-190,247r-188,0r138,-247r240,0xm926,-341r-504,0r-131,341r-261,0r531,-1338r224,0r531,1338r-259,0xm672,-1016v-47,140,-88,257,-125,351r-46,119r346,0r-46,-119v-37,-95,-78,-212,-125,-351r-4,0","w":1346,"k":{"\"":145,"'":145,"\u00ab":50,"\u201d":130,"\u201c":155,"\u2019":130,"\u2018":155,"\u00ff":80,"\u00fd":80,"y":80,"w":40,"v":40,"\u00dd":120,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"Y":120,"W":85,"V":110,"T":110,"Q":20,"O":20,"G":20,"C":20}},"\u00c2":{"d":"572,-1656r206,0r216,247r-207,0r-110,-126r-4,0r-111,126r-206,0xm926,-341r-504,0r-131,341r-261,0r531,-1338r224,0r531,1338r-259,0xm672,-1016v-47,140,-88,257,-125,351r-46,119r346,0r-46,-119v-37,-95,-78,-212,-125,-351r-4,0","w":1346,"k":{"\"":145,"'":145,"\u00ab":50,"\u201d":130,"\u201c":155,"\u2019":130,"\u2018":155,"\u00ff":80,"\u00fd":80,"y":80,"w":40,"v":40,"\u00dd":120,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"Y":120,"W":85,"V":110,"T":110,"Q":20,"O":20,"G":20,"C":20}},"\u00c3":{"d":"346,-1411v-9,-141,42,-244,178,-245v110,-1,172,78,266,92v45,-2,50,-32,51,-84r157,0v9,140,-42,245,-178,245v-112,0,-170,-76,-266,-92v-45,2,-50,32,-51,84r-157,0xm926,-341r-504,0r-131,341r-261,0r531,-1338r224,0r531,1338r-259,0xm672,-1016v-47,140,-88,257,-125,351r-46,119r346,0r-46,-119v-37,-95,-78,-212,-125,-351r-4,0","w":1346,"k":{"\"":145,"'":145,"\u00ab":50,"\u201d":130,"\u201c":155,"\u2019":130,"\u2018":155,"\u00ff":80,"\u00fd":80,"y":80,"w":40,"v":40,"\u00dd":120,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"Y":120,"W":85,"V":110,"T":110,"Q":20,"O":20,"G":20,"C":20}},"\u00c4":{"d":"354,-1673r224,0r0,225r-224,0r0,-225xm766,-1673r224,0r0,225r-224,0r0,-225xm926,-341r-504,0r-131,341r-261,0r531,-1338r224,0r531,1338r-259,0xm672,-1016v-47,140,-88,257,-125,351r-46,119r346,0r-46,-119v-37,-95,-78,-212,-125,-351r-4,0","w":1346,"k":{"\"":145,"'":145,"\u00ab":50,"\u201d":130,"\u201c":155,"\u2019":130,"\u2018":155,"\u00ff":80,"\u00fd":80,"y":80,"w":40,"v":40,"\u00dd":120,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"Y":120,"W":85,"V":110,"T":110,"Q":20,"O":20,"G":20,"C":20}},"\u00c5":{"d":"921,-1563v0,137,-108,196,-250,196v-142,0,-250,-59,-250,-196v0,-138,108,-196,250,-196v142,0,250,58,250,196xm772,-1563v0,-56,-45,-85,-101,-85v-56,0,-101,29,-101,85v0,56,45,85,101,85v56,0,101,-29,101,-85xm926,-341r-504,0r-131,341r-261,0r531,-1338r224,0r531,1338r-259,0xm672,-1016v-47,140,-88,257,-125,351r-46,119r346,0r-46,-119v-37,-95,-78,-212,-125,-351r-4,0","w":1346,"k":{"\"":145,"'":145,"\u00ab":50,"\u201d":130,"\u201c":155,"\u2019":130,"\u2018":155,"\u00ff":80,"\u00fd":80,"y":80,"w":40,"v":40,"\u00dd":120,"\u00d8":20,"\u00d6":20,"\u00d5":20,"\u00d4":20,"\u00d3":20,"\u00d2":20,"\u00c7":20,"Y":120,"W":85,"V":110,"T":110,"Q":20,"O":20,"G":20,"C":20}},"\u00c6":{"d":"1221,-205r622,0r0,205r-831,0r-48,-341r-510,0r-168,341r-261,0r668,-1338r1040,0r0,205r-642,0r49,346r498,0r0,205r-470,0xm555,-546r380,0r-82,-587r-8,0","w":1913},"\u00c7":{"d":"455,325v78,19,262,44,262,-47v0,-21,-14,-36,-43,-46v-29,-10,-75,-16,-137,-17r62,-208v-315,-66,-499,-280,-499,-652v0,-337,157,-557,401,-663v162,-71,427,-69,594,-11r0,208v-141,-45,-327,-68,-469,-12v-172,68,-273,224,-273,463v0,304,150,474,451,478v104,1,226,-21,303,-47r0,211v-103,29,-229,47,-362,42r-26,94v100,17,186,59,186,168v0,195,-263,232,-450,185r0,-146","w":1197,"k":{"}":-50,"]":-50,"\u00ab":50,"\u00ff":75,"\u00fd":75,"y":75,"w":75,"v":75,"\u00c7":20,"C":20}},"\u00c8":{"d":"582,-1656r138,247r-188,0r-190,-247r240,0xm405,-205r658,0r0,205r-903,0r0,-1338r867,0r0,205r-622,0r0,346r534,0r0,205r-534,0r0,377","w":1163},"\u00c9":{"d":"852,-1656r-190,247r-188,0r138,-247r240,0xm405,-205r658,0r0,205r-903,0r0,-1338r867,0r0,205r-622,0r0,346r534,0r0,205r-534,0r0,377","w":1163},"\u00ca":{"d":"498,-1656r206,0r216,247r-207,0r-110,-126r-4,0r-111,126r-206,0xm405,-205r658,0r0,205r-903,0r0,-1338r867,0r0,205r-622,0r0,346r534,0r0,205r-534,0r0,377","w":1163},"\u00cb":{"d":"283,-1673r224,0r0,225r-224,0r0,-225xm695,-1673r224,0r0,225r-224,0r0,-225xm405,-205r658,0r0,205r-903,0r0,-1338r867,0r0,205r-622,0r0,346r534,0r0,205r-534,0r0,377","w":1163},"\u00cc":{"d":"276,-1656r138,247r-188,0r-190,-247r240,0xm160,0r0,-1338r245,0r0,1338r-245,0","w":565},"\u00cd":{"d":"552,-1656r-190,247r-188,0r138,-247r240,0xm160,0r0,-1338r245,0r0,1338r-245,0","w":565},"\u00ce":{"d":"187,-1656r206,0r216,247r-207,0r-110,-126r-4,0r-111,126r-206,0xm160,0r0,-1338r245,0r0,1338r-245,0","w":565},"\u00cf":{"d":"-28,-1673r224,0r0,225r-224,0r0,-225xm384,-1673r224,0r0,225r-224,0r0,-225xm160,0r0,-1338r245,0r0,1338r-245,0","w":565},"\u00d1":{"d":"424,-1411v-9,-141,42,-244,178,-245v110,-1,172,78,266,92v45,-2,50,-32,51,-84r157,0v9,140,-42,245,-178,245v-112,0,-170,-76,-266,-92v-45,2,-50,32,-51,84r-157,0xm857,-716v96,137,174,258,234,364r6,0v-8,-174,-12,-301,-12,-380r0,-606r245,0r0,1338r-257,0r-436,-616v-77,-107,-156,-230,-238,-371r-6,0v8,164,12,291,12,381r0,606r-245,0r0,-1338r257,0","w":1490},"\u00d2":{"d":"710,-1656r138,247r-188,0r-190,-247r240,0xm752,-182v278,0,399,-198,399,-487v0,-289,-119,-487,-399,-487v-279,0,-399,199,-399,487v0,289,121,487,399,487xm1360,-950v58,166,58,397,0,562v-87,248,-280,413,-608,413v-327,0,-521,-166,-608,-413v-58,-166,-58,-397,0,-562v87,-248,280,-413,608,-413v327,0,521,166,608,413","w":1504,"k":{"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50,",":50,"\u00dd":40,"\u00c6":50,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"Y":40,"X":50,"V":20,"T":50,"J":55,"A":20}},"\u00d3":{"d":"1032,-1656r-190,247r-188,0r138,-247r240,0xm752,-182v278,0,399,-198,399,-487v0,-289,-119,-487,-399,-487v-279,0,-399,199,-399,487v0,289,121,487,399,487xm1360,-950v58,166,58,397,0,562v-87,248,-280,413,-608,413v-327,0,-521,-166,-608,-413v-58,-166,-58,-397,0,-562v87,-248,280,-413,608,-413v327,0,521,166,608,413","w":1504,"k":{"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50,",":50,"\u00dd":40,"\u00c6":50,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"Y":40,"X":50,"V":20,"T":50,"J":55,"A":20}},"\u00d4":{"d":"649,-1656r206,0r216,247r-207,0r-110,-126r-4,0r-111,126r-206,0xm752,-182v278,0,399,-198,399,-487v0,-289,-119,-487,-399,-487v-279,0,-399,199,-399,487v0,289,121,487,399,487xm1360,-950v58,166,58,397,0,562v-87,248,-280,413,-608,413v-327,0,-521,-166,-608,-413v-58,-166,-58,-397,0,-562v87,-248,280,-413,608,-413v327,0,521,166,608,413","w":1504,"k":{"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50,",":50,"\u00dd":40,"\u00c6":50,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"Y":40,"X":50,"V":20,"T":50,"J":55,"A":20}},"\u00d5":{"d":"433,-1411v-9,-141,42,-244,178,-245v110,-1,172,78,266,92v45,-2,50,-32,51,-84r157,0v9,140,-42,245,-178,245v-112,0,-170,-76,-266,-92v-45,2,-50,32,-51,84r-157,0xm752,-182v278,0,399,-198,399,-487v0,-289,-119,-487,-399,-487v-279,0,-399,199,-399,487v0,289,121,487,399,487xm1360,-950v58,166,58,397,0,562v-87,248,-280,413,-608,413v-327,0,-521,-166,-608,-413v-58,-166,-58,-397,0,-562v87,-248,280,-413,608,-413v327,0,521,166,608,413","w":1504,"k":{"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50,",":50,"\u00dd":40,"\u00c6":50,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"Y":40,"X":50,"V":20,"T":50,"J":55,"A":20}},"\u00d6":{"d":"437,-1673r224,0r0,225r-224,0r0,-225xm849,-1673r224,0r0,225r-224,0r0,-225xm752,-182v278,0,399,-198,399,-487v0,-289,-119,-487,-399,-487v-279,0,-399,199,-399,487v0,289,121,487,399,487xm1360,-950v58,166,58,397,0,562v-87,248,-280,413,-608,413v-327,0,-521,-166,-608,-413v-58,-166,-58,-397,0,-562v87,-248,280,-413,608,-413v327,0,521,166,608,413","w":1504,"k":{"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50,",":50,"\u00dd":40,"\u00c6":50,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"Y":40,"X":50,"V":20,"T":50,"J":55,"A":20}},"\u00d8":{"d":"752,25v-168,0,-301,-46,-400,-120r-111,120r-141,-133r118,-128v-119,-161,-155,-484,-74,-714v87,-248,280,-410,608,-413v168,-1,300,47,399,121r112,-121r141,133r-119,128v120,161,156,483,75,714v-87,248,-280,413,-608,413xm752,-182v320,0,434,-285,388,-620v-6,-41,-17,-77,-30,-111r-603,650v61,51,140,81,245,81xm996,-1075v-87,-80,-271,-105,-404,-51v-189,76,-268,318,-229,590v7,40,17,77,30,111","w":1504,"k":{"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50,",":50,"\u00dd":40,"\u00c6":50,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"Y":40,"X":50,"V":20,"T":50,"J":55,"A":20}},"\u00d9":{"d":"692,-1656r138,247r-188,0r-190,-247r240,0xm1279,-550v5,386,-188,575,-565,575v-376,0,-559,-192,-559,-575r0,-788r245,0r0,766v-3,251,87,390,317,390v229,0,317,-139,317,-390r0,-766r245,0r0,788","w":1434,"k":{".":50,",":50}},"\u00da":{"d":"1003,-1656r-190,247r-188,0r138,-247r240,0xm1279,-550v5,386,-188,575,-565,575v-376,0,-559,-192,-559,-575r0,-788r245,0r0,766v-3,251,87,390,317,390v229,0,317,-139,317,-390r0,-766r245,0r0,788","w":1434,"k":{".":50,",":50}},"\u00db":{"d":"613,-1656r206,0r216,247r-207,0r-110,-126r-4,0r-111,126r-206,0xm1279,-550v5,386,-188,575,-565,575v-376,0,-559,-192,-559,-575r0,-788r245,0r0,766v-3,251,87,390,317,390v229,0,317,-139,317,-390r0,-766r245,0r0,788","w":1434,"k":{".":50,",":50}},"\u00dc":{"d":"400,-1673r224,0r0,225r-224,0r0,-225xm812,-1673r224,0r0,225r-224,0r0,-225xm1279,-550v5,386,-188,575,-565,575v-376,0,-559,-192,-559,-575r0,-788r245,0r0,766v-3,251,87,390,317,390v229,0,317,-139,317,-390r0,-766r245,0r0,788","w":1434,"k":{".":50,",":50}},"\u00dd":{"d":"936,-1656r-190,247r-188,0r138,-247r240,0xm651,-762r356,-576r272,0r-507,799r0,539r-245,0r0,-539r-507,-799r272,0r356,576r3,0","w":1299,"k":{"\u2014":150,"\u2013":150,"\u00bb":110,"\u00ab":195,"-":150,"\u2026":195,".":195,":":110,";":110,",":130,"\u00f0":75,"\u00ff":80,"\u00fd":80,"\u00fc":110,"\u00fb":110,"\u00fa":110,"\u00f9":110,"\u00f8":160,"\u00f6":160,"\u00f5":160,"\u00f4":160,"\u00f3":160,"\u00f2":160,"\u00f1":110,"\u00ef":-95,"\u00ee":-70,"\u00eb":160,"\u00ea":160,"\u00e9":160,"\u00e8":160,"\u00e7":160,"\u00e6":140,"\u00e5":140,"\u00e4":140,"\u00e3":140,"\u00e2":140,"\u00e1":140,"\u00e0":140,"z":80,"y":80,"x":80,"w":80,"v":80,"u":110,"s":135,"r":110,"q":160,"p":110,"o":160,"n":110,"m":110,"g":160,"e":160,"d":160,"c":160,"a":140,"\u00d8":40,"\u00d6":40,"\u00d5":40,"\u00d4":40,"\u00d3":40,"\u00d2":40,"\u00c7":40,"\u00c6":160,"\u00c5":120,"\u00c4":120,"\u00c3":120,"\u00c2":120,"\u00c1":120,"\u00c0":120,"Q":40,"O":40,"J":120,"G":40,"C":40,"A":120}},"\u00d0":{"d":"1383,-674v0,490,-326,676,-833,674r-319,0r0,-582r-171,0r0,-205r171,0r0,-551r355,0v406,-1,674,142,768,452v19,65,29,136,29,212xm1130,-676v0,-329,-209,-459,-546,-457r-108,0r0,346r347,0r0,205r-347,0r0,377r101,0v362,2,553,-126,553,-471","w":1483},"\u00de":{"d":"877,-694v0,-216,-250,-192,-472,-192r0,404v219,18,472,5,472,-212xm1090,-514v-104,200,-375,261,-685,238r0,276r-245,0r0,-1338r245,0r0,247r141,0v333,-4,584,92,584,402v0,65,-13,123,-40,175","w":1230,"k":{"]":80,")":80,"\u201c":40,"\u2018":40,"\u2026":90,".":90,",":80,"\u00dd":110,"\u00c6":120,"\u00c5":90,"\u00c4":90,"\u00c3":90,"\u00c2":90,"\u00c1":90,"\u00c0":90,"Z":100,"Y":110,"X":120,"W":40,"V":65,"J":90,"A":90}},"a":{"d":"918,-288r6,288r-214,0r-10,-103r-4,0v-67,66,-154,128,-287,128v-198,0,-324,-112,-324,-310v0,-225,158,-329,387,-333v78,-1,151,11,209,27v9,-150,-72,-214,-215,-214v-117,0,-203,28,-300,64r0,-185v131,-61,352,-93,512,-41v139,45,240,139,240,314r0,365xm469,-164v98,0,164,-49,212,-101r0,-148v-131,-34,-361,-45,-355,119v3,87,57,130,143,130","w":1054,"k":{"\u201c":100,"\u2018":100}},"b":{"d":"380,-909v95,-71,272,-115,416,-55v166,69,265,227,265,463v0,248,-104,421,-276,495v-51,22,-103,31,-155,31v-128,0,-212,-59,-267,-128r-4,0r-23,103r-196,0r5,-227r0,-1221r237,0xm582,-164v175,0,234,-145,234,-325v0,-180,-61,-315,-230,-315v-80,0,-154,37,-204,77r0,464v46,49,107,99,200,99","w":1141,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"x":30}},"c":{"d":"610,-169v88,1,155,-20,218,-45r0,193v-113,49,-310,63,-443,16v-186,-66,-305,-214,-305,-464v0,-266,127,-425,322,-495v131,-48,297,-32,411,14r0,193v-57,-24,-121,-44,-200,-42v-193,4,-288,122,-288,324v0,187,96,303,285,306","w":903,"k":{"\u2014":60,"\u2013":60,"\u00ab":40,"-":60,"\u00e7":30,"c":30}},"d":{"d":"325,-475v-1,176,62,311,222,311v98,0,164,-49,212,-101r0,-460v-51,-40,-119,-79,-204,-79v-168,0,-229,141,-230,329xm774,-103v-63,72,-151,128,-286,128v-276,0,-408,-198,-408,-490v0,-247,101,-417,269,-495v140,-65,318,-21,412,51r-2,-539r237,0r0,1160r6,288r-214,0r-10,-103r-4,0","w":1142},"e":{"d":"322,-414v13,171,125,248,307,248v108,0,207,-24,296,-54r0,189v-72,30,-224,58,-338,56v-321,-5,-507,-165,-507,-493v0,-254,108,-419,286,-492v55,-23,112,-33,171,-33v322,2,444,236,420,579r-635,0xm714,-599v-4,-122,-57,-209,-180,-209v-129,0,-184,92,-201,209r381,0","w":1050,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"\u00ff":10,"\u00fd":10,"y":10,"v":10}},"f":{"d":"552,-1473v65,0,137,13,185,29r0,188v-47,-12,-104,-23,-159,-23v-118,-1,-168,64,-167,183r0,127r269,0r0,195r-269,0r0,774r-237,0r0,-774r-164,0r0,-195r164,0r0,-115v2,-252,132,-384,378,-389","w":672,"k":{"\"":-70,"'":-70,"}":-90,"]":-70,")":-40,"\u2014":40,"\u2013":40,"\u00ab":80,"\u201d":-80,"\u201c":-80,"\u2019":-80,"\u2018":-80,"-":40,"\u2026":80,".":80,",":50,"\u00ef":-180,"\u00ee":-105,"\u00ec":-85}},"g":{"d":"426,296v202,-1,341,-70,333,-271v-1,-32,6,-71,1,-99v-89,81,-271,134,-422,72v-165,-67,-258,-226,-258,-464v0,-248,99,-416,266,-494v51,-23,103,-33,157,-33v124,-1,216,61,271,133r4,0r10,-109r208,0r0,987v3,345,-216,472,-550,472v-117,0,-227,-15,-311,-46r0,-193v85,28,180,45,291,45xm325,-476v0,175,53,312,222,312v98,0,164,-46,212,-97r0,-433v-45,-54,-121,-106,-213,-106v-167,0,-221,144,-221,324","w":1126,"k":{"j":-15}},"h":{"d":"612,-794v-110,0,-179,56,-235,127r0,667r-237,0r0,-1448r237,0r-3,518v-2,32,-4,62,-8,88r4,0v65,-83,156,-151,304,-151v229,0,342,127,342,370r0,623r-237,0r0,-591v6,-133,-46,-203,-167,-203","w":1146,"k":{"]":40,")":40,"\u201c":50,"\u2018":50}},"i":{"d":"136,-969r237,0r0,969r-237,0r0,-969xm130,-1448r249,0r0,257r-249,0r0,-257","w":509},"j":{"d":"-8,296v125,0,173,-58,173,-188r0,-1077r237,0r0,1096v5,261,-136,359,-381,363v-69,1,-123,-8,-176,-23r0,-194v40,11,98,23,147,23xm159,-1448r249,0r0,257r-249,0r0,-257","w":538,"k":{"j":-15}},"k":{"d":"140,-1448r237,0r0,872r5,0r369,-393r293,0r-425,455r428,514r-287,0r-379,-451r-4,0r0,451r-237,0r0,-1448","w":1057,"k":{"\u2014":110,"\u2013":110,"\u00ab":100,"-":110,"\u00f0":40,"\u00f8":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u00eb":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"q":40,"o":40,"g":40,"e":40,"d":40,"c":40}},"l":{"d":"140,0r0,-1448r237,0r0,1448r-237,0","w":517},"m":{"d":"1295,-993v228,0,320,145,320,392r0,601r-237,0r0,-590v3,-119,-27,-204,-142,-204v-113,0,-188,62,-245,127r0,667r-237,0r0,-590v3,-119,-26,-204,-142,-204v-113,0,-188,62,-245,127r0,667r-237,0r0,-969r196,0r22,135r4,0v65,-88,167,-159,317,-159v142,0,243,66,289,175r4,0v71,-97,170,-175,333,-175","w":1745,"k":{"]":40,")":40,"\u201c":50,"\u2018":50}},"n":{"d":"612,-794v-110,1,-190,57,-245,127r0,667r-237,0r0,-969r196,0r22,135r4,0v74,-109,239,-193,424,-147v152,37,230,153,230,352r0,629r-237,0r0,-592v5,-127,-38,-203,-157,-202","w":1136,"k":{"]":40,")":40,"\u201c":50,"\u2018":50}},"o":{"d":"568,-169v172,0,241,-135,241,-315v0,-181,-69,-315,-243,-315v-172,0,-241,135,-241,315v0,182,70,315,243,315xm1020,-692v45,122,45,294,0,416v-67,180,-212,301,-452,301v-242,0,-388,-120,-454,-301v-45,-122,-45,-294,0,-416v67,-180,212,-301,452,-301v242,0,388,120,454,301","w":1134,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"x":30}},"p":{"d":"801,-489v0,-175,-52,-314,-217,-314v-95,0,-168,52,-217,110r0,432v47,50,111,97,206,97v171,0,228,-147,228,-325xm352,-860v56,-73,147,-136,273,-133v202,4,324,116,385,274v47,123,46,334,-2,455v-66,164,-184,283,-393,289v-106,3,-193,-46,-247,-99r-4,0r3,136r0,403r-237,0r0,-1434r208,0r10,109r4,0","w":1126,"k":{"]":30,")":30,"\u201c":50,"\u2018":50,"x":30}},"q":{"d":"325,-476v0,175,53,312,222,312v98,0,164,-46,212,-97r0,-430v-45,-53,-115,-113,-206,-113v-167,0,-228,143,-228,328xm503,-993v123,0,216,59,271,133r4,0r10,-109r208,0r0,1434r-237,0r0,-403v-1,-44,6,-96,1,-136v-68,53,-152,99,-272,99v-276,0,-408,-199,-408,-491v0,-245,99,-418,266,-494v51,-23,103,-33,157,-33","w":1126,"k":{";":-50,",":-50}},"r":{"d":"352,-834v58,-108,184,-177,354,-155r0,208v-156,-3,-278,39,-339,132r0,649r-237,0r0,-969r196,0r22,135r4,0","w":716,"k":{"\u2014":110,"\u2013":110,"\u00ab":80,"\u201d":-50,"\u2019":-50,"-":110,"\u2026":110,".":110,",":100}},"s":{"d":"352,-167v103,0,207,-18,207,-114v0,-101,-124,-103,-209,-128v-139,-40,-267,-90,-264,-268v3,-215,148,-312,361,-316v117,-2,223,21,308,52r0,193v-84,-27,-181,-53,-288,-53v-83,0,-152,21,-152,97v0,100,116,105,197,126v148,39,284,92,281,279v-4,236,-180,321,-421,324v-112,1,-215,-19,-287,-51r0,-191v87,33,166,50,267,50","w":868},"t":{"d":"564,-174v57,1,112,-10,158,-23r0,196v-50,15,-135,27,-199,26v-211,-4,-332,-79,-332,-297r0,-502r-181,0r0,-195r181,0r0,-271r237,0r0,271r280,0r0,195r-280,0r0,471v-1,98,39,127,136,129","w":777,"k":{"\u2014":40,"\u2013":40,"-":40}},"u":{"d":"558,-169v140,0,201,-77,201,-228r0,-572r237,0r0,592v-4,274,-165,402,-438,402v-276,0,-438,-128,-438,-402r0,-592r237,0r0,567v-3,149,58,233,201,233","w":1116},"v":{"d":"996,-969r-375,969r-235,0r-376,-969r250,0r135,370v39,104,74,208,106,312r4,0v28,-90,63,-192,104,-306r135,-376r252,0","w":1006,"k":{"]":30,")":30,"?":50,"\u2026":100,".":100,",":70}},"w":{"d":"765,-706v-48,248,-121,472,-183,706r-233,0r-339,-969r250,0r125,406v29,94,54,185,76,273r4,0v19,-85,41,-176,67,-273r111,-406r250,0r109,406v23,86,46,177,67,273r4,0v23,-90,48,-181,76,-273r125,-406r250,0r-339,969r-233,0r-117,-425v-27,-95,-49,-189,-66,-281r-4,0","w":1534,"k":{"]":20,")":20,"?":40,"\u2026":60,".":60,",":60}},"x":{"d":"532,-337r-250,337r-272,0r383,-494r-360,-475r279,0r226,320r230,-320r280,0r-370,474r380,495r-277,0","w":1068,"k":{"\u2014":50,"\u2013":50,"\u00ab":50,"?":50,"-":50,"\u00f0":30,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00eb":30,"\u00ea":30,"\u00e9":30,"\u00e8":30,"\u00e7":30,"q":30,"o":30,"g":30,"e":30,"d":30,"c":30}},"y":{"d":"10,-969r254,0r145,351v55,133,93,232,116,296r4,0v17,-50,51,-143,106,-278r150,-369r257,0r-624,1434r-234,0r222,-519","w":1052,"k":{"\u00ab":40,"?":40,"\u2026":100,".":100,",":70}},"z":{"d":"554,-774r-473,0r0,-195r777,0r0,147r-480,627r515,0r0,195r-828,0r0,-134","w":958,"k":{"\u2014":60,"\u2013":60,"\u00ab":40,"?":40,"-":60}},"\u00e0":{"d":"918,-288r6,288r-214,0r-10,-103r-4,0v-67,66,-154,128,-287,128v-198,0,-324,-112,-324,-310v0,-225,158,-329,387,-333v78,-1,151,11,209,27v9,-150,-72,-214,-215,-214v-117,0,-203,28,-300,64r0,-185v131,-61,352,-93,512,-41v139,45,240,139,240,314r0,365xm469,-164v98,0,164,-49,212,-101r0,-148v-131,-34,-361,-45,-355,119v3,87,57,130,143,130xm500,-1473r119,349r-184,0r-165,-349r230,0","w":1054,"k":{"\u201c":100,"\u2018":100}},"\u00e1":{"d":"918,-288r6,288r-214,0r-10,-103r-4,0v-67,66,-154,128,-287,128v-198,0,-324,-112,-324,-310v0,-225,158,-329,387,-333v78,-1,151,11,209,27v9,-150,-72,-214,-215,-214v-117,0,-203,28,-300,64r0,-185v131,-61,352,-93,512,-41v139,45,240,139,240,314r0,365xm469,-164v98,0,164,-49,212,-101r0,-148v-131,-34,-361,-45,-355,119v3,87,57,130,143,130xm754,-1473r-165,349r-184,0r119,-349r230,0","w":1054,"k":{"\u201c":100,"\u2018":100}},"\u00e2":{"d":"422,-1473r206,0r210,349r-185,0r-126,-212r-4,0r-126,212r-185,0xm918,-288r6,288r-214,0r-10,-103r-4,0v-67,66,-154,128,-287,128v-198,0,-324,-112,-324,-310v0,-225,158,-329,387,-333v78,-1,151,11,209,27v9,-150,-72,-214,-215,-214v-117,0,-203,28,-300,64r0,-185v131,-61,352,-93,512,-41v139,45,240,139,240,314r0,365xm469,-164v98,0,164,-49,212,-101r0,-148v-131,-34,-361,-45,-355,119v3,87,57,130,143,130","w":1054,"k":{"\u201c":100,"\u2018":100}},"\u00e3":{"d":"189,-1161v-9,-144,43,-245,178,-245v112,0,170,76,266,92v45,-2,50,-32,51,-84r157,0v9,137,-43,246,-178,245v-109,0,-174,-77,-266,-92v-45,2,-50,32,-51,84r-157,0xm918,-288r6,288r-214,0r-10,-103r-4,0v-67,66,-154,128,-287,128v-198,0,-324,-112,-324,-310v0,-225,158,-329,387,-333v78,-1,151,11,209,27v9,-150,-72,-214,-215,-214v-117,0,-203,28,-300,64r0,-185v131,-61,352,-93,512,-41v139,45,240,139,240,314r0,365xm469,-164v98,0,164,-49,212,-101r0,-148v-131,-34,-361,-45,-355,119v3,87,57,130,143,130","w":1054,"k":{"\u201c":100,"\u2018":100}},"\u00e4":{"d":"918,-288r6,288r-214,0r-10,-103r-4,0v-67,66,-154,128,-287,128v-198,0,-324,-112,-324,-310v0,-225,158,-329,387,-333v78,-1,151,11,209,27v9,-150,-72,-214,-215,-214v-117,0,-203,28,-300,64r0,-185v131,-61,352,-93,512,-41v139,45,240,139,240,314r0,365xm469,-164v98,0,164,-49,212,-101r0,-148v-131,-34,-361,-45,-355,119v3,87,57,130,143,130xm205,-1412r218,0r0,221r-218,0r0,-221xm615,-1412r218,0r0,221r-218,0r0,-221","w":1054,"k":{"\u201c":100,"\u2018":100}},"\u00e5":{"d":"759,-1295v0,140,-106,205,-250,205v-144,0,-250,-65,-250,-205v0,-140,106,-205,250,-205v144,0,250,65,250,205xm610,-1295v0,-59,-44,-92,-101,-92v-57,0,-101,33,-101,92v0,59,44,92,101,92v57,0,101,-33,101,-92xm918,-288r6,288r-214,0r-10,-103r-4,0v-67,66,-154,128,-287,128v-198,0,-324,-112,-324,-310v0,-225,158,-329,387,-333v78,-1,151,11,209,27v9,-150,-72,-214,-215,-214v-117,0,-203,28,-300,64r0,-185v131,-61,352,-93,512,-41v139,45,240,139,240,314r0,365xm469,-164v98,0,164,-49,212,-101r0,-148v-131,-34,-361,-45,-355,119v3,87,57,130,143,130","w":1054,"k":{"\u201c":100,"\u2018":100}},"\u00e6":{"d":"166,-926v88,-40,206,-67,327,-67v162,0,267,58,323,162r4,0v68,-93,170,-162,318,-162v313,0,427,242,404,579r-635,0v13,171,125,248,307,248v108,0,206,-24,296,-54r0,189v-93,35,-210,56,-338,56v-158,0,-285,-48,-365,-134r-4,0v-94,71,-212,134,-372,134v-209,0,-346,-104,-346,-310v0,-225,158,-328,387,-333v81,-1,149,13,209,27v8,-149,-72,-214,-215,-214v-115,0,-203,28,-300,64r0,-185xm326,-294v0,147,183,149,288,97v35,-17,71,-39,97,-60v-17,-48,-28,-100,-32,-156v-131,-33,-353,-46,-353,119xm1303,-599v-4,-122,-57,-209,-180,-209v-129,0,-184,92,-201,209r381,0","w":1635,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"\u00ff":10,"\u00fd":10,"y":10,"v":10}},"\u00e7":{"d":"274,325v80,19,262,44,262,-47v0,-21,-15,-36,-44,-46v-29,-10,-74,-16,-136,-17r63,-210v-208,-58,-339,-208,-339,-474v0,-267,129,-425,324,-495v131,-46,297,-32,409,14r0,193v-57,-24,-121,-44,-200,-42v-194,4,-288,121,-288,324v0,187,96,302,285,306v84,1,159,-21,218,-45r0,193v-66,27,-165,49,-266,46r-24,93v99,17,186,59,186,168v0,195,-263,232,-450,185r0,-146","w":903,"k":{"\u2014":60,"\u2013":60,"\u00ab":40,"-":60,"\u00e7":30,"c":30}},"\u00e8":{"d":"526,-1473r119,349r-184,0r-165,-349r230,0xm322,-414v13,171,125,248,307,248v108,0,207,-24,296,-54r0,189v-72,30,-224,58,-338,56v-321,-5,-507,-165,-507,-493v0,-254,108,-419,286,-492v55,-23,112,-33,171,-33v322,2,444,236,420,579r-635,0xm714,-599v-4,-122,-57,-209,-180,-209v-129,0,-184,92,-201,209r381,0","w":1050,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"\u00ff":10,"\u00fd":10,"y":10,"v":10}},"\u00e9":{"d":"787,-1473r-165,349r-184,0r119,-349r230,0xm322,-414v13,171,125,248,307,248v108,0,207,-24,296,-54r0,189v-72,30,-224,58,-338,56v-321,-5,-507,-165,-507,-493v0,-254,108,-419,286,-492v55,-23,112,-33,171,-33v322,2,444,236,420,579r-635,0xm714,-599v-4,-122,-57,-209,-180,-209v-129,0,-184,92,-201,209r381,0","w":1050,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"\u00ff":10,"\u00fd":10,"y":10,"v":10}},"\u00ea":{"d":"428,-1473r206,0r210,349r-185,0r-126,-212r-4,0r-126,212r-185,0xm322,-414v13,171,125,248,307,248v108,0,207,-24,296,-54r0,189v-72,30,-224,58,-338,56v-321,-5,-507,-165,-507,-493v0,-254,108,-419,286,-492v55,-23,112,-33,171,-33v322,2,444,236,420,579r-635,0xm714,-599v-4,-122,-57,-209,-180,-209v-129,0,-184,92,-201,209r381,0","w":1050,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"\u00ff":10,"\u00fd":10,"y":10,"v":10}},"\u00eb":{"d":"221,-1412r218,0r0,221r-218,0r0,-221xm631,-1412r218,0r0,221r-218,0r0,-221xm322,-414v13,171,125,248,307,248v108,0,207,-24,296,-54r0,189v-72,30,-224,58,-338,56v-321,-5,-507,-165,-507,-493v0,-254,108,-419,286,-492v55,-23,112,-33,171,-33v322,2,444,236,420,579r-635,0xm714,-599v-4,-122,-57,-209,-180,-209v-129,0,-184,92,-201,209r381,0","w":1050,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"\u00ff":10,"\u00fd":10,"y":10,"v":10}},"\u00ec":{"d":"136,-969r237,0r0,969r-237,0r0,-969xm262,-1473r119,349r-184,0r-165,-349r230,0","w":509},"\u00ed":{"d":"136,-969r237,0r0,969r-237,0r0,-969xm504,-1473r-165,349r-184,0r119,-349r230,0","w":509},"\u00ee":{"d":"154,-1473r206,0r210,349r-185,0r-126,-212r-4,0r-126,212r-185,0xm136,-969r237,0r0,969r-237,0r0,-969","w":509},"\u00ef":{"d":"136,-969r237,0r0,969r-237,0r0,-969xm-50,-1412r218,0r0,221r-218,0r0,-221xm360,-1412r218,0r0,221r-218,0r0,-221","w":509},"\u00f1":{"d":"245,-1161v-9,-144,43,-245,178,-245v112,0,170,76,266,92v45,-2,50,-32,51,-84r157,0v9,137,-43,246,-178,245v-109,0,-174,-77,-266,-92v-45,2,-50,32,-51,84r-157,0xm612,-794v-110,1,-190,57,-245,127r0,667r-237,0r0,-969r196,0r22,135r4,0v74,-109,239,-193,424,-147v152,37,230,153,230,352r0,629r-237,0r0,-592v5,-127,-38,-203,-157,-202","w":1136,"k":{"]":40,")":40,"\u201c":50,"\u2018":50}},"\u00f2":{"d":"568,-169v172,0,241,-135,241,-315v0,-181,-69,-315,-243,-315v-172,0,-241,135,-241,315v0,182,70,315,243,315xm1020,-692v45,122,45,294,0,416v-67,180,-212,301,-452,301v-242,0,-388,-120,-454,-301v-45,-122,-45,-294,0,-416v67,-180,212,-301,452,-301v242,0,388,120,454,301xm541,-1473r119,349r-184,0r-165,-349r230,0","w":1134,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"x":30}},"\u00f3":{"d":"568,-169v172,0,241,-135,241,-315v0,-181,-69,-315,-243,-315v-172,0,-241,135,-241,315v0,182,70,315,243,315xm1020,-692v45,122,45,294,0,416v-67,180,-212,301,-452,301v-242,0,-388,-120,-454,-301v-45,-122,-45,-294,0,-416v67,-180,212,-301,452,-301v242,0,388,120,454,301xm825,-1473r-165,349r-184,0r119,-349r230,0","w":1134,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"x":30}},"\u00f4":{"d":"455,-1473r206,0r210,349r-185,0r-126,-212r-4,0r-126,212r-185,0xm568,-169v172,0,241,-135,241,-315v0,-181,-69,-315,-243,-315v-172,0,-241,135,-241,315v0,182,70,315,243,315xm1020,-692v45,122,45,294,0,416v-67,180,-212,301,-452,301v-242,0,-388,-120,-454,-301v-45,-122,-45,-294,0,-416v67,-180,212,-301,452,-301v242,0,388,120,454,301","w":1134,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"x":30}},"\u00f5":{"d":"236,-1161v-9,-144,43,-245,178,-245v112,0,170,76,266,92v45,-2,50,-32,51,-84r157,0v9,137,-43,246,-178,245v-109,0,-174,-77,-266,-92v-45,2,-50,32,-51,84r-157,0xm568,-169v172,0,241,-135,241,-315v0,-181,-69,-315,-243,-315v-172,0,-241,135,-241,315v0,182,70,315,243,315xm1020,-692v45,122,45,294,0,416v-67,180,-212,301,-452,301v-242,0,-388,-120,-454,-301v-45,-122,-45,-294,0,-416v67,-180,212,-301,452,-301v242,0,388,120,454,301","w":1134,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"x":30}},"\u00f6":{"d":"568,-169v172,0,241,-135,241,-315v0,-181,-69,-315,-243,-315v-172,0,-241,135,-241,315v0,182,70,315,243,315xm1020,-692v45,122,45,294,0,416v-67,180,-212,301,-452,301v-242,0,-388,-120,-454,-301v-45,-122,-45,-294,0,-416v67,-180,212,-301,452,-301v242,0,388,120,454,301xm250,-1412r218,0r0,221r-218,0r0,-221xm660,-1412r218,0r0,221r-218,0r0,-221","w":1134,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"x":30}},"\u00f8":{"d":"365,-956v153,-64,382,-39,492,46r78,-83r119,111r-83,89v85,118,110,354,49,517v-67,180,-212,301,-452,301v-122,0,-217,-31,-291,-82r-78,82r-119,-111r83,-88v-85,-118,-109,-354,-49,-518v46,-124,131,-214,251,-264xm568,-169v212,-1,270,-227,227,-438r-369,391v39,31,87,47,142,47xm566,-799v-211,1,-270,225,-227,438r368,-391v-39,-31,-86,-47,-141,-47","w":1134,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"x":30}},"\u00df":{"d":"632,-1281v-181,7,-255,124,-255,307r0,974r-237,0r0,-983v7,-311,177,-490,489,-490v184,0,317,67,378,188v48,95,15,225,-35,285v-48,58,-113,102,-152,166v-20,33,-27,84,-2,114v77,95,232,120,314,212v63,70,87,226,36,330v-62,128,-191,202,-378,203v-95,1,-191,-18,-249,-46r0,-191v136,60,423,88,423,-101v0,-108,-104,-130,-180,-167v-109,-53,-215,-109,-215,-270v1,-186,144,-239,212,-356v57,-98,-29,-180,-149,-175","w":1273,"k":{"\"":70,"'":70,"]":40,")":40,"\u201d":90,"\u201c":70,"\u2019":90,"\u2018":70}},"\u00f9":{"d":"558,-169v140,0,201,-77,201,-228r0,-572r237,0r0,592v-4,274,-165,402,-438,402v-276,0,-438,-128,-438,-402r0,-592r237,0r0,567v-3,149,58,233,201,233xm535,-1473r119,349r-184,0r-165,-349r230,0","w":1116},"\u00fa":{"d":"558,-169v140,0,201,-77,201,-228r0,-572r237,0r0,592v-4,274,-165,402,-438,402v-276,0,-438,-128,-438,-402r0,-592r237,0r0,567v-3,149,58,233,201,233xm814,-1473r-165,349r-184,0r119,-349r230,0","w":1116},"\u00fb":{"d":"458,-1473r206,0r210,349r-185,0r-126,-212r-4,0r-126,212r-185,0xm558,-169v140,0,201,-77,201,-228r0,-572r237,0r0,592v-4,274,-165,402,-438,402v-276,0,-438,-128,-438,-402r0,-592r237,0r0,567v-3,149,58,233,201,233","w":1116},"\u00fc":{"d":"558,-169v140,0,201,-77,201,-228r0,-572r237,0r0,592v-4,274,-165,402,-438,402v-276,0,-438,-128,-438,-402r0,-592r237,0r0,567v-3,149,58,233,201,233xm242,-1412r218,0r0,221r-218,0r0,-221xm652,-1412r218,0r0,221r-218,0r0,-221","w":1116},"\u00fd":{"d":"10,-969r254,0r145,351v55,133,93,232,116,296r4,0v17,-50,51,-143,106,-278r150,-369r257,0r-624,1434r-234,0r222,-519xm785,-1473r-165,349r-184,0r119,-349r230,0","w":1052,"k":{"\u00ab":40,"?":40,"\u2026":100,".":100,",":70}},"\u00ff":{"d":"10,-969r254,0r145,351v55,133,93,232,116,296r4,0v17,-50,51,-143,106,-278r150,-369r257,0r-624,1434r-234,0r222,-519xm213,-1412r218,0r0,221r-218,0r0,-221xm623,-1412r218,0r0,221r-218,0r0,-221","w":1052,"k":{"\u00ab":40,"?":40,"\u2026":100,".":100,",":70}},"\u00f0":{"d":"524,-1448v45,38,89,80,131,124r233,-64r51,163r-162,44v162,205,329,544,220,897v-58,188,-202,309,-443,309v-231,0,-376,-110,-441,-282v-42,-112,-45,-268,-3,-385v57,-159,171,-288,373,-294v105,-3,180,41,233,93r4,-2v-47,-99,-112,-190,-178,-272r-275,74r-51,-162r202,-55v-65,-67,-134,-130,-205,-188r311,0xm558,-169v161,0,231,-121,231,-288v0,-164,-79,-285,-239,-285v-157,0,-225,122,-225,285v0,168,71,288,233,288","w":1116,"k":{"]":40,")":40}},"\u00fe":{"d":"573,-164v171,0,228,-143,228,-320v0,-177,-56,-320,-228,-320v-95,0,-159,47,-206,97r0,446v47,50,111,97,206,97xm368,-894v78,-87,259,-132,403,-70v167,71,275,231,275,472v0,248,-104,413,-275,487v-144,62,-325,18,-403,-69r-4,0r3,136r0,403r-237,0r0,-1913r237,0r0,418r-3,136r4,0","w":1126,"k":{"]":40,")":40,"\u201c":50,"\u2018":50,"x":30}},"&":{"d":"954,-429v44,-78,74,-172,83,-285r231,0v-18,182,-78,328,-163,443r262,271r-338,0v-28,-36,-63,-73,-94,-107v-168,134,-551,194,-731,35v-66,-58,-114,-144,-114,-261v0,-203,133,-292,260,-374v-85,-87,-178,-168,-178,-332v0,-227,163,-324,396,-324v233,0,400,86,400,313v0,202,-134,286,-259,369xm335,-336v-5,165,180,194,327,146v46,-14,91,-36,133,-65r-297,-303v-77,52,-159,102,-163,222xm570,-1169v-109,0,-180,75,-144,181v23,68,85,112,133,160v75,-51,164,-97,164,-213v0,-83,-63,-128,-153,-128","w":1417},"`":{"d":"458,-1473r119,349r-184,0r-165,-349r230,0","w":800},"\u00b4":{"d":"588,-1473r-165,349r-184,0r119,-349r230,0","w":800},"\u00a8":{"d":"86,-1412r218,0r0,221r-218,0r0,-221xm496,-1412r218,0r0,221r-218,0r0,-221","w":800},"\u00af":{"d":"120,-1338r560,0r0,167r-560,0r0,-167","w":800},"\u02c9":{"d":"120,-1338r560,0r0,167r-560,0r0,-167","w":800},"\u00b8":{"d":"184,325v78,20,262,43,262,-47v0,-21,-15,-36,-44,-46v-29,-10,-74,-16,-136,-17r67,-224r150,0r-35,127v99,17,186,59,186,168v0,196,-263,232,-450,185r0,-146","w":800},",":{"d":"202,-267r277,0r-216,678r-253,0","w":649,"k":{"\u045e":70,"\u044a":90,"\u0447":115,"\u0443":70,"\u0442":105,"\u0474":60,"\u040b":185,"\u0402":185,"\u042a":95,"\u0427":105,"\u0424":80,"\u0422":185,"\u00ab":50,"\u201c":70,"\u2018":70,"\u00ff":70,"\u00fd":70,"y":70,"v":60,"\u00dd":150,"Y":150,"W":130,"V":160,"T":185}},";":{"d":"202,-267r277,0r-216,678r-253,0xm193,-900r269,0r0,267r-269,0r0,-267","w":649,"k":{"\u0474":90,"\u040b":140,"\u0402":140,"\u042a":40,"\u0422":140,"\u00dd":110,"Y":110,"V":70,"T":140}},":":{"d":"165,-267r269,0r0,267r-269,0r0,-267xm165,-900r269,0r0,267r-269,0r0,-267","w":599,"k":{"\u040b":140,"\u0402":140,"\u042a":40,"\u0422":140,"\u00dd":110,"Y":110,"V":70,"T":140}},".":{"d":"165,-267r269,0r0,267r-269,0r0,-267","w":599,"k":{"\u0475":105,"\u045e":50,"\u044a":70,"\u0447":145,"\u0443":50,"\u0442":125,"\u0474":90,"\u040b":160,"\u0402":160,"\u042a":70,"\u0427":50,"\u0424":40,"\u0422":160,"\u041e":50,"\u00ab":50,"\u201c":70,"\u2018":70,"\u00ff":50,"\u00fd":50,"y":50,"w":60,"v":70,"\u00dd":195,"\u00d8":50,"\u00d6":50,"\u00d5":50,"\u00d4":50,"\u00d3":50,"\u00d2":50,"Y":195,"W":70,"V":140,"T":160,"O":50}},"\u2026":{"d":"165,-267r269,0r0,267r-269,0r0,-267xm764,-267r269,0r0,267r-269,0r0,-267xm1363,-267r269,0r0,267r-269,0r0,-267","w":1797,"k":{"\u0475":105,"\u045e":50,"\u044a":70,"\u0447":145,"\u0443":50,"\u0442":125,"\u0474":90,"\u040b":160,"\u0402":160,"\u042a":70,"\u0427":50,"\u0424":40,"\u0422":160,"\u041e":50,"\u00ff":50,"\u00fd":50,"y":50,"v":70,"\u00dd":195,"\u00d8":50,"\u00d6":50,"\u00d5":50,"\u00d4":50,"\u00d3":50,"\u00d2":50,"Y":195,"W":70,"V":140,"T":160,"O":50}},"-":{"d":"120,-608r441,0r0,215r-441,0r0,-215","w":681,"k":{"\u0459":60,"\u044a":60,"\u0445":50,"\u0442":85,"\u043b":60,"\u0437":40,"\u0436":50,"\u0434":40,"\u0474":70,"\u0462":40,"\u040e":100,"\u040b":140,"\u0409":50,"\u0408":130,"\u0402":140,"\u042f":50,"\u042a":115,"\u0427":60,"\u0425":50,"\u0423":100,"\u0422":140,"\u041b":50,"\u0417":60,"\u0416":60,"z":70,"x":50,"\u00dd":150,"\u00c6":40,"Z":60,"Y":150,"X":50,"W":30,"V":70,"T":140,"S":40,"J":130}},"\u2010":{"d":"120,-608r441,0r0,215r-441,0r0,-215","w":681},"\u00ad":{"d":"120,-608r441,0r0,215r-441,0r0,-215","w":681},"!":{"d":"432,-1338r-24,858r-217,0r-24,-858r265,0xm165,-267r269,0r0,267r-269,0r0,-267","w":599},"\u00a1":{"d":"167,387r24,-876r217,0r24,876r-265,0xm165,-969r269,0r0,267r-269,0r0,-267","w":599,"k":{"\u0458":-80,"\u0474":60,"\u040e":40,"\u040b":50,"\u0402":50,"\u0423":40,"\u0422":50,"\u0417":30,"j":-80,"\u00dd":90,"Z":50,"Y":90,"W":40,"V":50,"T":50}},"?":{"d":"411,-1363v279,-6,470,156,406,439v-40,178,-249,191,-323,338v-14,28,-19,64,-18,106r-223,0v-19,-202,87,-296,208,-372v59,-37,124,-75,124,-169v0,-104,-81,-148,-202,-148v-104,0,-211,31,-283,64r0,-193v84,-38,192,-63,311,-65xm235,-267r269,0r0,267r-269,0r0,-267","w":920,"k":{"\u00ab":105}},"\u00bf":{"d":"684,-702r-269,0r0,-267r269,0r0,267xm508,413v-242,0,-413,-90,-419,-324v-6,-243,192,-285,303,-413v34,-39,54,-91,51,-165r223,0v20,213,-98,309,-222,393v-56,38,-110,78,-110,167v0,104,81,148,202,148v104,0,211,-31,283,-64r0,193v-84,38,-192,65,-311,65","w":920,"k":{"\u0475":60,"\u0473":50,"\u045b":50,"\u0459":60,"\u0458":-110,"\u0451":50,"\u0450":50,"\u0454":50,"\u0452":50,"\u044f":50,"\u044a":60,"\u0447":40,"\u0445":50,"\u0442":60,"\u0441":50,"\u043e":50,"\u043b":60,"\u0436":60,"\u0435":50,"\u0430":40,"\u040e":90,"\u040b":140,"\u0409":80,"\u0404":50,"\u0402":140,"\u0425":80,"\u0423":90,"\u0422":140,"\u0421":50,"\u041e":50,"\u041b":80,"\u0417":50,"\u0416":60,"\u0410":50,"\u00f0":50,"\u00fc":20,"\u00fb":20,"\u00fa":20,"\u00f9":20,"\u00f8":50,"\u00f6":50,"\u00f5":50,"\u00f4":50,"\u00f3":50,"\u00f2":50,"\u00eb":50,"\u00ea":50,"\u00e9":50,"\u00e8":50,"\u00e7":50,"\u00e6":40,"\u00e5":40,"\u00e4":40,"\u00e3":40,"\u00e2":40,"\u00e1":40,"\u00e0":40,"z":30,"x":50,"w":30,"v":40,"u":20,"q":50,"o":50,"j":-110,"f":60,"e":50,"c":50,"a":40,"\u00dd":150,"\u00dc":40,"\u00db":40,"\u00da":40,"\u00d9":40,"\u00d8":50,"\u00d6":50,"\u00d5":50,"\u00d4":50,"\u00d3":50,"\u00d2":50,"\u00c7":50,"\u00c6":140,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"Z":70,"Y":150,"X":80,"W":80,"V":110,"U":40,"T":140,"S":60,"Q":50,"O":50,"J":60,"G":50,"C":50,"A":50}},"\u2018":{"d":"30,-1338r213,0r194,551r-254,0","w":497,"k":{"\u0463":-60,"\u0459":96,"\u044a":-80,"\u043b":105,"\u0434":80,"\u0409":125,"\u0408":195,"\u041b":125,"\u0416":50,"\u0414":210,"\u0410":130,"\u2018":50,"\u00bf":145,"t":-50,"\u00c6":120,"\u00c5":130,"\u00c4":130,"\u00c3":130,"\u00c2":130,"\u00c1":130,"\u00c0":130,"J":195,"A":130}},"\u2019":{"d":"213,-1338r254,0r-194,551r-213,0","w":497,"k":{"\u0473":110,"\u0459":165,"\u0451":110,"\u0450":110,"\u0455":60,"\u0454":110,"\u044f":60,"\u0444":90,"\u0441":110,"\u043e":110,"\u043b":165,"\u0435":110,"\u0434":130,"\u0431":40,"\u0430":70,"\u040e":-50,"\u0409":150,"\u0408":195,"\u0423":-50,"\u041b":150,"\u0414":180,"\u0410":155,"\u2019":50,"\u00bf":230,".":100,"\u00f8":110,"\u00f6":110,"\u00f5":110,"\u00f4":110,"\u00f3":110,"\u00f2":110,"\u00eb":110,"\u00ea":110,"\u00e9":110,"\u00e8":110,"\u00e7":110,"\u00e6":70,"\u00e5":70,"\u00e4":70,"\u00e3":70,"\u00e2":70,"\u00e1":70,"\u00e0":70,"s":60,"q":110,"o":110,"g":110,"e":110,"d":120,"c":110,"a":70,"\u00d8":50,"\u00d6":50,"\u00d5":50,"\u00d4":50,"\u00d3":50,"\u00d2":50,"\u00c6":225,"\u00c5":180,"\u00c4":180,"\u00c3":180,"\u00c2":180,"\u00c1":180,"\u00c0":180,"Q":50,"O":50,"J":195,"A":180}},"\u201c":{"d":"30,-1338r213,0r194,551r-254,0xm434,-1338r221,0r217,551r-262,0","w":932,"k":{"\u0463":-60,"\u0459":105,"\u044a":-80,"\u043b":105,"\u0434":80,"\u0409":125,"\u0408":195,"\u041b":125,"\u0416":50,"\u0414":210,"\u0410":130,"\u00bf":145,"t":-50,"\u00c6":120,"\u00c5":130,"\u00c4":130,"\u00c3":130,"\u00c2":130,"\u00c1":130,"\u00c0":130,"J":195,"A":130}},"\u201d":{"d":"213,-1338r254,0r-194,551r-213,0xm640,-1338r262,0r-217,551r-221,0","w":932,"k":{"\u0473":110,"\u0459":165,"\u0451":110,"\u0450":110,"\u0455":60,"\u0454":110,"\u044f":60,"\u0444":90,"\u0441":110,"\u043e":110,"\u043b":165,"\u0435":110,"\u0434":130,"\u0431":40,"\u0430":70,"\u040e":-50,"\u0409":150,"\u0408":195,"\u0423":-50,"\u041b":150,"\u0414":180,"\u0410":155,"\u00bf":230,".":100,"\u00f8":110,"\u00f6":110,"\u00f5":110,"\u00f4":110,"\u00f3":110,"\u00f2":110,"\u00eb":110,"\u00ea":110,"\u00e9":110,"\u00e8":110,"\u00e7":110,"\u00e6":70,"\u00e5":70,"\u00e4":70,"\u00e3":70,"\u00e2":70,"\u00e1":70,"\u00e0":70,"s":60,"q":110,"o":110,"g":110,"e":110,"d":110,"c":110,"a":70,"\u00d8":50,"\u00d6":50,"\u00d5":50,"\u00d4":50,"\u00d3":50,"\u00d2":50,"\u00c6":225,"\u00c5":180,"\u00c4":180,"\u00c3":180,"\u00c2":180,"\u00c1":180,"\u00c0":180,"Q":50,"O":50,"J":195,"A":180}},"\u00ab":{"d":"75,-474r286,-386r203,0r-238,386r238,386r-203,0xm517,-474r247,-386r203,0r-199,386r199,386r-203,0","w":1052,"k":{"\u040b":130,"\u0409":-60,"\u0402":130,"\u042a":90,"\u0422":130,"\u041b":-60,"\u00dd":110,"Y":110,"W":40,"V":70,"T":130}},"\u00bb":{"d":"691,-88r-203,0r238,-386r-238,-386r203,0r286,386xm288,-88r-203,0r199,-386r-199,-386r203,0r247,386","w":1052,"k":{"\u0475":50,"\u045e":40,"\u045b":40,"\u0459":40,"\u0452":40,"\u044f":30,"\u044a":40,"\u0445":50,"\u0443":40,"\u0442":70,"\u043b":40,"\u0436":70,"\u0434":40,"\u0474":50,"\u040e":50,"\u040b":180,"\u0409":60,"\u0408":80,"\u0402":180,"\u042f":50,"\u042a":90,"\u0427":95,"\u0425":50,"\u0423":50,"\u0422":180,"\u041b":60,"\u0416":50,"\u0414":50,"\u0410":50,"\u00ff":40,"\u00fd":40,"z":50,"y":40,"x":50,"\u00dd":195,"\u00c6":50,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"Z":100,"Y":195,"X":50,"W":60,"V":110,"T":180,"S":60,"J":80,"A":50}},"\/":{"d":"8,249r380,-1587r208,0r-380,1587r-208,0","w":603},"|":{"d":"345,465r-205,0r0,-1913r205,0r0,1913","w":485},"\u2013":{"d":"0,-588r1000,0r0,185r-1000,0r0,-185","w":1000,"k":{"\u0459":60,"\u044a":60,"\u0445":50,"\u0442":85,"\u043b":60,"\u0437":40,"\u0436":50,"\u0434":40,"\u0474":70,"\u0462":40,"\u040e":100,"\u040b":140,"\u0409":50,"\u0408":130,"\u0402":140,"\u042f":50,"\u042a":115,"\u0427":60,"\u0425":50,"\u0423":100,"\u0422":140,"\u041b":50,"\u0417":60,"\u0416":60,"z":70,"x":50,"\u00dd":150,"\u00c6":40,"Z":60,"Y":150,"X":50,"W":30,"V":70,"T":140,"S":40,"J":130}},"\u2014":{"d":"0,-588r1700,0r0,185r-1700,0r0,-185","w":1700,"k":{"\u0459":60,"\u044a":60,"\u0445":50,"\u0442":85,"\u043b":60,"\u0437":40,"\u0436":50,"\u0434":40,"\u0474":70,"\u0462":40,"\u040e":100,"\u040b":140,"\u0409":50,"\u0408":130,"\u0402":140,"\u042f":50,"\u042a":115,"\u0427":60,"\u0425":50,"\u0423":100,"\u0422":140,"\u041b":50,"\u0417":60,"\u0416":60,"z":70,"x":50,"\u00dd":150,"\u00c6":40,"Z":60,"Y":150,"X":50,"W":30,"V":70,"T":140,"S":40,"J":130}},"\u00b7":{"d":"165,-625r269,0r0,267r-269,0r0,-267","w":599},"\u2219":{"d":"165,-625r269,0r0,267r-269,0r0,-267","w":599},"(":{"d":"458,336v-238,-214,-417,-601,-340,-1068v46,-277,173,-488,340,-642r128,118v-158,174,-271,402,-271,737v0,335,113,563,271,737","w":626,"k":{"\u0473":40,"\u0458":-90,"\u0451":40,"\u0450":40,"\u0454":40,"\u044f":30,"\u0444":40,"\u0441":40,"\u043e":40,"\u0435":40,"\u0404":80,"\u0424":80,"\u0421":80,"\u041e":80,"\u00f0":40,"\u00f8":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u00f1":20,"\u00eb":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"w":20,"v":30,"q":30,"o":40,"n":20,"m":20,"j":-90,"e":40,"d":40,"c":40,"\u00d8":80,"\u00d6":80,"\u00d5":80,"\u00d4":80,"\u00d3":80,"\u00d2":80,"\u00c7":80,"\u00c6":30,"S":30,"Q":80,"O":80,"G":80,"C":80}},")":{"d":"168,-1374v238,214,418,600,340,1067v-46,277,-172,490,-340,643r-128,-118v158,-174,271,-402,271,-737v0,-335,-113,-563,-271,-737","w":626},"[":{"d":"140,-1338r446,0r0,173r-241,0r0,1291r241,0r0,174r-446,0r0,-1638","w":646,"k":{"\u0473":40,"\u0458":-110,"\u0451":40,"\u0450":40,"\u0454":40,"\u044f":30,"\u0444":40,"\u0441":40,"\u043e":40,"\u0435":40,"\u0404":80,"\u0424":80,"\u0421":80,"\u041e":80,"\u00f0":40,"\u00f8":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u00f1":20,"\u00eb":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"w":20,"v":30,"q":30,"o":40,"n":20,"m":20,"j":-110,"e":40,"d":40,"c":40,"\u00d8":80,"\u00d6":80,"\u00d5":80,"\u00d4":80,"\u00d3":80,"\u00d2":80,"\u00c7":80,"\u00c6":40,"Q":80,"O":80,"G":80,"C":80}},"]":{"d":"506,300r-446,0r0,-174r241,0r0,-1291r-241,0r0,-173r446,0r0,1638","w":646},"{":{"d":"444,-791v24,137,-45,240,-141,270r0,4v106,28,175,161,135,301v-24,84,-89,142,-89,237v0,115,103,133,231,131r0,173v-247,7,-446,-56,-446,-282v0,-157,114,-211,119,-363v3,-102,-70,-119,-173,-118r0,-162v103,1,176,-16,173,-118v-4,-148,-119,-210,-119,-363v0,-226,199,-289,446,-282r0,173v-129,-2,-231,16,-231,131v0,108,77,164,95,268","w":625,"k":{"\u0458":-110,"j":-110}},"}":{"d":"175,-309v3,-112,67,-179,147,-208r0,-4v-114,-28,-179,-182,-127,-325v26,-72,81,-124,81,-213v0,-115,-101,-133,-231,-131r0,-173v247,-7,446,56,446,282v0,153,-115,215,-119,363v-3,102,70,119,173,118r0,162v-103,-1,-176,16,-173,118v5,152,119,206,119,363v0,226,-199,289,-446,282r0,-173v128,2,231,-16,231,-131v0,-125,-104,-187,-101,-330","w":625},"*":{"d":"593,-962r158,-100r171,-59r59,180r-171,58r-188,13r-1,5r144,120r114,157r-153,112r-113,-158r-69,-175r-7,0r-69,175r-113,158r-153,-112r114,-157r144,-120r-1,-5r-188,-13r-171,-58r59,-180r171,59r158,100r4,-4r-46,-182r0,-190r189,0r0,190r-46,182","w":1081},"\u00a7":{"d":"585,-1163v-129,-6,-180,109,-130,219v124,271,360,455,360,852v0,234,-94,393,-256,468v-133,62,-348,35,-469,-16r0,-200v68,26,161,52,245,53v92,1,148,-45,148,-132v0,-131,-85,-212,-145,-306v-111,-174,-233,-351,-233,-633v0,-234,95,-393,257,-468v133,-62,347,-35,468,16r0,200v-68,-26,-161,-49,-245,-53xm291,-1083v-76,166,-12,413,54,539v85,161,197,300,256,481v20,63,26,127,14,196r14,0v77,-170,11,-420,-57,-547v-85,-158,-196,-296,-254,-476v-19,-62,-25,-125,-13,-193r-14,0","w":920},"\u00b6":{"d":"498,387r0,-708v-241,-55,-403,-216,-403,-503v0,-248,129,-403,312,-476v64,-25,140,-38,228,-38r429,0r0,1725r-195,0r0,-1538r-176,0r0,1538r-195,0","w":1224},"\u0410":{"d":"926,-341r-504,0r-131,341r-261,0r531,-1338r224,0r531,1338r-259,0xm672,-1016v-47,140,-88,257,-125,351r-46,119r346,0r-46,-119v-37,-95,-78,-212,-125,-351r-4,0","w":1346,"k":{"\"":145,"'":145,"\u0475":40,"\u045e":80,"\u044a":75,"\u0447":65,"\u0443":80,"\u0442":75,"\u0431":30,"\u0474":110,"\u040b":110,"\u0402":110,"\u042a":60,"\u0427":120,"\u0424":20,"\u0422":110,"\u0421":20,"\u041e":20,"\u00ab":50,"\u201d":130,"\u201c":155,"\u2019":130,"\u2018":155}},"\u0411":{"d":"1087,-1338r0,205r-682,0r0,314v327,-25,635,11,742,222v61,119,46,283,-29,387v-111,154,-330,210,-613,210r-345,0r0,-1338r927,0xm405,-205v246,-1,526,13,526,-219v0,-65,-31,-112,-89,-146v-80,-47,-287,-58,-437,-41r0,406","w":1274,"k":{"\u044f":40,"\u0442":60,"\u0434":40,"\u040b":100,"\u0402":100,"\u042a":60,"\u0422":100,"\u0414":40}},"\u0412":{"d":"961,-698v155,45,270,194,209,397v-68,226,-307,301,-621,301r-389,0r0,-1338v290,11,647,-43,823,88v81,60,146,138,146,268v0,138,-63,227,-168,280r0,4xm933,-404v0,-222,-298,-173,-528,-178r0,377v240,-3,528,30,528,-199xm877,-962v0,-138,-117,-171,-271,-171r-201,0r0,346r221,0v159,2,251,-40,251,-175","w":1276,"k":{"\u044f":40,"\u0434":40,"\u0414":40,"]":30,")":30,"\u201c":50,"\u2018":50}},"\u0413":{"d":"160,0r0,-1338r906,0r0,205r-661,0r0,1133r-245,0","w":1096,"k":{"\u0475":220,"\u0473":220,"\u0463":100,"\u045f":230,"\u045e":220,"\u045a":230,"\u0459":290,"\u045c":230,"\u045d":230,"\u0457":-100,"\u0451":220,"\u0450":220,"\u0455":180,"\u0454":220,"\u0491":230,"\u0453":230,"\u044f":250,"\u044e":230,"\u044d":210,"\u044c":230,"\u044b":230,"\u044a":280,"\u0449":230,"\u0448":230,"\u0447":230,"\u0446":230,"\u0445":210,"\u0444":220,"\u0443":220,"\u0442":220,"\u0441":220,"\u0440":230,"\u043f":230,"\u043e":220,"\u043d":230,"\u043c":230,"\u043b":290,"\u043a":230,"\u0439":230,"\u0438":230,"\u0437":190,"\u0436":220,"\u0435":220,"\u0434":290,"\u0433":230,"\u0432":230,"\u0430":240,"\u0409":200,"\u0408":180,"\u0404":40,"\u042f":40,"\u0424":40,"\u0421":40,"\u041e":40,"\u041b":200,"\u0414":200,"\u0410":150,"\u2014":140,"\u2013":140,"\u00bb":120,"\u00ab":220,"-":140,"\u2026":175,".":175,":":130,";":120,",":190}},"\u0414":{"d":"162,-205v229,-290,369,-657,419,-1133r693,0r0,1133r159,0r0,648r-244,0r0,-443r-865,0r0,443r-244,0r0,-648r82,0xm787,-1133v-49,383,-165,672,-343,924r0,4r585,0r0,-928r-242,0","w":1553,"k":{"\"":50,"'":50,"\u0475":70,"\u0473":30,"\u0463":50,"\u045e":60,"\u045b":40,"\u0451":30,"\u0450":30,"\u0454":30,"\u0452":40,"\u044a":60,"\u0447":70,"\u0444":30,"\u0443":60,"\u0442":75,"\u0441":30,"\u043e":30,"\u0435":30,"\u0431":40,"\u040b":60,"\u0404":60,"\u0402":60,"\u042a":60,"\u0427":60,"\u0424":60,"\u0422":60,"\u0421":60,"\u041e":60,"\u2014":30,"\u2013":30,"\u00ab":50,"\u201d":50,"\u201c":50,"\u2019":50,"\u2018":50,"-":30,";":-70,",":-70}},"\u0415":{"d":"405,-205r658,0r0,205r-903,0r0,-1338r867,0r0,205r-622,0r0,346r534,0r0,205r-534,0r0,377","w":1163},"\u0416":{"d":"859,-604r-4,0r-521,604r-314,0r584,-675r-538,-663r304,0r485,609r4,0r0,-609r245,0r0,609r4,0r485,-609r304,0r-538,663r584,675r-314,0r-521,-604r-4,0r0,604r-245,0r0,-604","w":1963,"k":{"\u0475":100,"\u0463":40,"\u045e":70,"\u044a":80,"\u0443":70,"\u0442":105,"\u0431":30,"\u0404":100,"\u0424":100,"\u0421":100,"\u041e":100,"\u2014":60,"\u2013":60,"\u00ab":50,"-":60}},"\u0417":{"d":"520,-1156v-135,1,-277,39,-384,83r0,-203v129,-58,269,-87,420,-87v280,0,482,107,482,379v0,153,-79,240,-187,289r0,4v131,35,229,132,226,293v-4,218,-132,334,-311,390v-201,64,-506,30,-656,-56r0,-208v116,56,224,90,386,90v177,0,328,-52,328,-219v0,-134,-103,-181,-247,-181r-229,0r0,-205r202,0v144,0,235,-51,235,-188v0,-136,-105,-182,-265,-181","w":1167,"k":{"\u0414":40}},"\u0418":{"d":"1073,-1338r257,0r0,1338r-245,0r0,-616v0,-77,4,-200,12,-371r-4,0v-46,78,-126,198,-240,361r-436,626r-257,0r0,-1338r245,0r0,616v0,98,-4,221,-12,370r4,0v43,-71,121,-189,236,-354","w":1490},"\u0419":{"d":"573,-1883v21,128,62,224,190,224v105,0,169,-75,191,-224r231,0v-23,249,-156,404,-424,404v-268,0,-396,-156,-419,-404r231,0xm1073,-1338r257,0r0,1338r-245,0r0,-616v0,-77,4,-200,12,-371r-4,0v-46,78,-126,198,-240,361r-436,626r-257,0r0,-1338r245,0r0,616v0,98,-4,221,-12,370r4,0v43,-71,121,-189,236,-354","w":1490},"\u041a":{"d":"160,0r0,-1338r245,0r0,609r4,0r505,-609r304,0r-558,663r604,675r-314,0r-541,-604r-4,0r0,604r-245,0","w":1294,"k":{"\u0475":100,"\u0473":40,"\u0463":40,"\u045e":70,"\u0451":40,"\u0450":40,"\u0454":40,"\u044a":80,"\u0444":40,"\u0443":70,"\u0442":105,"\u0441":40,"\u043e":40,"\u0435":40,"\u0431":30,"\u0404":100,"\u0424":100,"\u0421":100,"\u041e":100,"\u2014":90,"\u2013":90,"\u00ab":90,"\u201d":50,"\u2019":50,"-":90}},"\u041b":{"d":"693,-1133v-53,358,-97,676,-225,929v-66,131,-151,217,-336,218v-37,0,-71,-4,-102,-12r0,-219v84,21,162,4,200,-50v106,-150,148,-369,194,-615v24,-125,45,-277,68,-456r713,0r0,1338r-245,0r0,-1133r-267,0","w":1365},"\u041c":{"d":"848,-359v93,-325,230,-662,340,-979r344,0r0,1338r-245,0r0,-678v0,-99,4,-215,12,-346r-9,0r-40,128v-15,47,-31,94,-48,140r-277,756r-158,0r-277,-756v-17,-46,-33,-93,-48,-140r-40,-128r-9,0v22,342,8,672,12,1024r-245,0r0,-1338r342,0r231,637v39,106,75,220,109,342r6,0","w":1692},"\u041d":{"d":"405,-787r620,0r0,-551r245,0r0,1338r-245,0r0,-582r-620,0r0,582r-245,0r0,-1338r245,0r0,551","w":1430},"\u041e":{"d":"752,-182v278,0,399,-198,399,-487v0,-289,-119,-487,-399,-487v-279,0,-399,199,-399,487v0,289,121,487,399,487xm1360,-950v58,166,58,397,0,562v-87,248,-280,413,-608,413v-327,0,-521,-166,-608,-413v-58,-166,-58,-397,0,-562v87,-248,280,-413,608,-413v327,0,521,166,608,413","w":1504,"k":{"\u0459":40,"\u043b":40,"\u0434":50,"\u040b":50,"\u0409":40,"\u0408":55,"\u0402":50,"\u0425":50,"\u0422":50,"\u041b":40,"\u0416":100,"\u0414":70,"\u0410":20,"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50}},"\u041f":{"d":"1222,-1338r0,1338r-245,0r0,-1130r-572,0r0,1130r-245,0r0,-1338r1062,0","w":1382},"\u0420":{"d":"546,-1338v333,-3,584,91,584,402v0,230,-153,336,-345,389v-105,29,-249,33,-380,24r0,523r-245,0r0,-1338r386,0xm877,-941v0,-215,-250,-192,-472,-192r0,404v220,17,472,6,472,-212","w":1230,"k":{"\u0473":90,"\u0459":160,"\u0451":90,"\u0454":90,"\u044f":40,"\u0444":90,"\u0441":60,"\u043e":90,"\u043b":160,"\u0435":90,"\u0434":170,"\u0409":190,"\u0408":160,"\u041b":190,"\u0414":225,"\u0410":160,"\u2014":50,"\u2013":50,"\u00ab":70,"-":50,"\u2026":245,".":245,",":245}},"\u0421":{"d":"1095,-1111v-142,-46,-326,-69,-469,-12v-172,68,-273,224,-273,463v0,304,150,478,451,478v108,0,219,-18,303,-47r0,211v-176,53,-449,60,-618,-6v-242,-94,-389,-295,-389,-621v0,-337,155,-556,400,-662v163,-71,426,-71,595,-12r0,208","w":1197,"k":{"\u0475":75,"\u045e":75,"\u044a":65,"\u0443":75,"\u0442":100,"\u0421":20,"}":-50,"]":-50,"\u00ab":50}},"\u0422":{"d":"707,0r-245,0r0,-1133r-432,0r0,-205r1108,0r0,205r-431,0r0,1133","w":1168,"k":{"\u0475":130,"\u0473":130,"\u0463":90,"\u045f":130,"\u045e":130,"\u045a":130,"\u0459":170,"\u045c":130,"\u045d":130,"\u0457":-105,"\u0451":130,"\u0450":130,"\u0455":130,"\u0454":130,"\u0491":130,"\u0453":130,"\u044f":160,"\u044e":130,"\u044d":130,"\u044c":130,"\u044b":130,"\u044a":170,"\u0449":130,"\u0448":130,"\u0447":130,"\u0446":130,"\u0445":130,"\u0444":130,"\u0443":130,"\u0442":145,"\u0441":130,"\u0440":130,"\u043f":130,"\u043e":130,"\u043d":130,"\u043c":130,"\u043b":170,"\u043a":130,"\u0439":130,"\u0438":130,"\u0437":105,"\u0436":130,"\u0435":130,"\u0434":140,"\u0433":130,"\u0432":130,"\u0431":50,"\u0430":150,"\u0409":120,"\u0408":90,"\u0404":50,"\u0424":50,"\u0421":50,"\u041e":50,"\u041b":120,"\u0414":140,"\u0410":110,"\u2014":140,"\u2013":140,"\u00bb":130,"\u00ab":180,"-":140,"\u2026":160,".":160,":":140,";":140,",":120}},"\u0423":{"d":"131,-199v97,24,226,27,289,-28v52,-45,87,-102,121,-178r-521,-933r272,0r376,685r315,-685r266,0r-490,1024v-94,192,-202,340,-480,339v-48,0,-107,-5,-148,-15r0,-209","w":1269,"k":{"\u0475":65,"\u0473":110,"\u0463":50,"\u045f":85,"\u045e":75,"\u045a":85,"\u0459":250,"\u045c":85,"\u045d":85,"\u0451":110,"\u0450":110,"\u0455":95,"\u0454":110,"\u0491":85,"\u0453":85,"\u044f":135,"\u044e":85,"\u044d":65,"\u044c":85,"\u044b":85,"\u044a":65,"\u0449":85,"\u0448":85,"\u0446":85,"\u0445":75,"\u0444":110,"\u0443":75,"\u0442":75,"\u0441":110,"\u0440":85,"\u043f":85,"\u043e":110,"\u043d":85,"\u043c":85,"\u043b":250,"\u043a":85,"\u0439":85,"\u0438":85,"\u0437":55,"\u0436":95,"\u0435":110,"\u0434":250,"\u0433":85,"\u0432":85,"\u0431":40,"\u0430":120,"\u0409":160,"\u0408":120,"\u0404":40,"\u0424":40,"\u0421":40,"\u041e":40,"\u041b":160,"\u0414":180,"\u0410":150,"\u2014":100,"\u2013":100,"\u00bb":50,"\u00ab":145,"-":100,"\u2026":250,".":250,":":90,";":90,",":190}},"\u0424":{"d":"670,-1078v-204,34,-321,168,-321,406v0,238,116,373,321,407r0,-813xm911,-1448r0,179v269,30,452,159,533,375v50,134,50,312,1,447v-78,217,-263,345,-534,373r0,177r-241,0r0,-177v-272,-28,-455,-156,-534,-373v-49,-135,-48,-313,2,-447v80,-216,263,-345,532,-375r0,-179r241,0xm911,-265v205,-34,321,-169,321,-407v0,-238,-116,-371,-321,-406r0,813","w":1581,"k":{"\u0459":60,"\u043b":60,"\u0434":60,"\u040b":50,"\u0409":40,"\u0408":55,"\u0402":50,"\u0425":50,"\u0422":50,"\u041b":40,"\u0416":100,"\u0414":70,"\u0410":20,"]":80,")":80,"\u201c":40,"\u2018":40,"\u2026":40,".":40,",":40}},"\u0425":{"d":"513,-1063v65,94,110,161,136,202r5,0r135,-201r191,-276r282,0r-466,658r486,680r-278,0r-351,-507r-4,0r-142,208r-209,299r-278,0r486,-680r-466,-658r282,0","w":1302,"k":{"\u0475":40,"\u0463":40,"\u044a":40,"\u0447":60,"\u0442":50,"\u0404":50,"\u0424":50,"\u0421":50,"\u041e":50,"\u2014":50,"\u2013":50,"\u00ab":50,"-":50}},"\u0426":{"d":"1110,0r-950,0r0,-1338r245,0r0,1133r546,0r0,-1133r245,0r0,1133r159,0r0,648r-245,0r0,-443","w":1475,"k":{"\"":50,"'":50,"\u0475":70,"\u0473":30,"\u0463":50,"\u045e":60,"\u045b":40,"\u0451":30,"\u0450":30,"\u0454":30,"\u0452":40,"\u044a":60,"\u0447":70,"\u0444":30,"\u0443":60,"\u0442":75,"\u0441":30,"\u043e":30,"\u0435":30,"\u0431":40,"\u040b":60,"\u0404":60,"\u0402":60,"\u042a":60,"\u0427":60,"\u0424":60,"\u0422":60,"\u0421":60,"\u041e":60,"\u2014":30,"\u2013":30,"\u00ab":50,"\u201d":50,"\u201c":50,"\u2019":50,"\u2018":50,"-":30,";":-70,",":-70}},"\u0427":{"d":"606,-660v100,0,209,-25,287,-49r0,-629r245,0r0,1338r-245,0r0,-503v-164,54,-457,77,-596,-16v-117,-79,-157,-218,-157,-416r0,-403r245,0r0,407v-5,175,46,271,221,271","w":1298},"\u0428":{"d":"1743,0r-1583,0r0,-1338r245,0r0,1133r424,0r0,-1133r245,0r0,1133r424,0r0,-1133r245,0r0,1338","w":1903},"\u0429":{"d":"1065,-1338r0,1133r414,0r0,-1133r245,0r0,1133r161,0r0,648r-245,0r0,-443r-1480,0r0,-1338r245,0r0,1133r415,0r0,-1133r245,0","w":2005,"k":{"\"":50,"'":50,"\u0475":70,"\u0473":30,"\u0463":50,"\u045e":60,"\u045b":40,"\u0451":30,"\u0450":30,"\u0454":30,"\u0452":40,"\u044a":60,"\u0447":70,"\u0444":30,"\u0443":60,"\u0442":75,"\u0441":30,"\u043e":30,"\u0435":30,"\u0431":40,"\u040b":60,"\u0404":60,"\u0402":60,"\u042a":60,"\u0427":60,"\u0424":60,"\u0422":60,"\u0421":60,"\u041e":60,"\u2014":30,"\u2013":30,"\u00ab":50,"\u201d":50,"\u201c":50,"\u2019":50,"\u2018":50,"-":30,";":-70,",":-70}},"\u042a":{"d":"609,-819v338,-26,655,16,746,260v49,133,7,294,-62,372v-119,136,-314,187,-579,187r-350,0r0,-1133r-364,0r0,-205r609,0r0,519xm1124,-417v-2,-218,-294,-212,-515,-194r0,406r125,0v153,1,280,-18,350,-96v27,-30,40,-69,40,-116","w":1467,"k":{"\"":95,"'":95,"\u0463":30,"\u044a":30,"\u0442":30,"\u0474":100,"\u040b":180,"\u0402":180,"\u042a":100,"\u0427":60,"\u0422":180,"\u0414":40,"]":40,")":40,"\u201d":50,"\u201c":180,"\u2019":50,"\u2018":180,"?":40}},"\u042b":{"d":"1308,0r0,-1338r245,0r0,1338r-245,0xm405,-1338r0,519v381,-25,768,19,768,393v0,338,-297,427,-663,426r-350,0r0,-1338r245,0xm920,-417v-1,-218,-296,-212,-515,-194r0,406r125,0v153,1,280,-18,350,-96v27,-30,40,-69,40,-116","w":1713},"\u042c":{"d":"405,-819v390,-31,779,30,779,391v0,336,-306,432,-679,428r-345,0r0,-1338r245,0r0,519xm931,-424v0,-219,-307,-201,-526,-187r0,406r116,0v151,1,281,-19,357,-89v35,-32,53,-75,53,-130","w":1274,"k":{"\"":95,"'":95,"\u0463":30,"\u044a":30,"\u0442":30,"\u0474":100,"\u040b":180,"\u0402":180,"\u042a":100,"\u0427":60,"\u0422":180,"\u0414":40,"]":40,")":40,"\u201d":50,"\u201c":180,"\u2019":50,"\u2018":180,"?":40}},"\u042d":{"d":"877,-787v-38,-237,-193,-369,-463,-369v-88,0,-181,15,-278,45r0,-208v174,-59,438,-60,602,6v243,98,399,306,399,637v0,460,-252,698,-719,701v-112,0,-211,-17,-298,-43r0,-211v195,70,497,64,628,-53v77,-68,128,-165,136,-300r-674,0r0,-205r667,0","w":1237,"k":{"\u0459":40,"\u043b":40,"\u0434":50,"\u040b":50,"\u0409":40,"\u0408":55,"\u0402":50,"\u0425":50,"\u0422":50,"\u041b":40,"\u0416":100,"\u0414":70,"\u0410":20,"]":80,")":80,"\u201c":50,"\u2018":50,"\u2026":50,".":50}},"\u042e":{"d":"1881,-950v57,166,57,397,0,562v-86,246,-274,413,-599,413v-302,0,-484,-146,-578,-360v-32,-75,-52,-157,-60,-247r-239,0r0,582r-245,0r0,-1338r245,0r0,551r242,0v35,-266,168,-452,387,-535v152,-58,375,-53,520,10v159,69,269,193,327,362xm1282,-182v273,0,389,-201,389,-487v0,-286,-115,-487,-389,-487v-274,0,-389,201,-389,487v0,287,115,487,389,487","w":2024,"k":{"\u0459":40,"\u043b":40,"\u0434":50,"\u040b":50,"\u0409":40,"\u0408":55,"\u0402":50,"\u0425":50,"\u0422":50,"\u041b":40,"\u0416":100,"\u0414":70,"\u0410":20,"]":60,")":60,"\u201c":50,"\u2018":50,"\u2026":50,".":50}},"\u042f":{"d":"414,-918v0,167,119,211,296,211r215,0r0,-425r-226,0v-169,-4,-285,63,-285,214xm418,-545v-159,-58,-256,-168,-256,-368v0,-283,209,-425,515,-425r493,0r0,1338r-245,0r0,-503r-259,0r-302,503r-279,0r333,-541r0,-4","w":1330},"\u0403":{"d":"898,-1656r-190,247r-188,0r138,-247r240,0xm160,0r0,-1338r906,0r0,205r-661,0r0,1133r-245,0","w":1096,"k":{"\u0475":220,"\u0473":220,"\u0463":100,"\u045f":230,"\u045e":220,"\u045a":230,"\u0459":290,"\u045c":230,"\u045d":230,"\u0457":-100,"\u0451":220,"\u0450":220,"\u0455":180,"\u0454":220,"\u0491":230,"\u0453":230,"\u044f":250,"\u044e":230,"\u044d":210,"\u044c":230,"\u044b":230,"\u044a":280,"\u0449":230,"\u0448":230,"\u0447":230,"\u0446":230,"\u0445":210,"\u0444":220,"\u0443":220,"\u0442":220,"\u0441":220,"\u0440":230,"\u043f":230,"\u043e":220,"\u043d":230,"\u043c":230,"\u043b":290,"\u043a":230,"\u0439":230,"\u0438":230,"\u0437":190,"\u0436":220,"\u0435":220,"\u0434":290,"\u0433":230,"\u0432":230,"\u0430":240,"\u0409":200,"\u0408":180,"\u0404":40,"\u042f":40,"\u0424":40,"\u0421":40,"\u041e":40,"\u041b":200,"\u0414":200,"\u0410":150,"\u2014":140,"\u2013":140,"\u00bb":120,"\u00ab":220,"-":140,"\u2026":175,".":175,":":130,";":120,",":190}},"\u0490":{"d":"405,-1133r0,1133r-245,0r0,-1338r692,0r0,-367r244,0r0,572r-691,0","w":1136,"k":{"\u0475":220,"\u0473":220,"\u0463":100,"\u045f":230,"\u045e":220,"\u045a":230,"\u0459":290,"\u045c":230,"\u045d":230,"\u0457":-100,"\u0451":220,"\u0450":220,"\u0455":180,"\u0454":220,"\u0491":230,"\u0453":230,"\u044f":250,"\u044e":230,"\u044d":210,"\u044c":230,"\u044b":230,"\u044a":280,"\u0449":230,"\u0448":230,"\u0447":230,"\u0446":230,"\u0445":210,"\u0444":220,"\u0443":220,"\u0442":220,"\u0441":220,"\u0440":230,"\u043f":230,"\u043e":220,"\u043d":230,"\u043c":230,"\u043b":290,"\u043a":230,"\u0439":230,"\u0438":230,"\u0437":190,"\u0436":220,"\u0435":220,"\u0434":290,"\u0433":230,"\u0432":230,"\u0430":240,"\u0409":200,"\u0408":180,"\u0404":40,"\u042f":40,"\u0424":40,"\u0421":40,"\u041e":40,"\u041b":200,"\u0414":200,"\u0410":150,"\u2014":140,"\u2013":140,"\u00bb":120,"\u00ab":220,"-":140,"\u2026":175,".":175,":":130,";":120,",":190}},"\u0402":{"d":"1471,-421v-5,321,-242,452,-590,434r0,-205v187,14,337,-40,337,-211v0,-242,-292,-225,-524,-206r0,609r-245,0r0,-1133r-419,0r0,-205r1180,0r0,205r-516,0r0,316v387,-37,783,28,777,396","w":1561,"k":{"\"":110,"'":110,"\u0463":30,"\u044a":30,"\u0442":30,"\u0474":50,"\u040b":100,"\u0402":100,"\u042a":60,"\u0427":40,"\u0422":100,"\u0414":40,"\u201d":40,"\u201c":100,"\u2019":40,"\u2018":100}},"\u0404":{"d":"1105,-1111v-135,-43,-312,-65,-455,-21v-159,50,-261,165,-290,345r667,0r0,205r-674,0v18,263,174,400,450,400v100,0,234,-18,314,-47r0,211v-180,51,-459,60,-630,-6v-245,-95,-387,-300,-387,-631v0,-334,160,-549,402,-654v163,-71,434,-67,603,-10r0,208","w":1237},"\u0405":{"d":"505,-182v163,0,313,-40,313,-202v0,-155,-170,-161,-302,-191v-209,-48,-396,-116,-392,-371v5,-286,190,-413,479,-417v142,-2,301,32,401,75r0,210v-117,-47,-238,-77,-379,-78v-144,-1,-252,45,-252,176v0,150,141,169,267,197v226,49,434,112,430,389v-5,315,-243,416,-562,419v-143,2,-300,-30,-390,-82r0,-207v119,51,232,82,387,82","w":1182,"k":{"\u0463":20,"\u044a":30}},"\u0400":{"d":"586,-1656r138,247r-188,0r-190,-247r240,0xm405,-205r658,0r0,205r-903,0r0,-1338r867,0r0,205r-622,0r0,346r534,0r0,205r-534,0r0,377","w":1163},"\u0401":{"d":"288,-1673r224,0r0,225r-224,0r0,-225xm700,-1673r224,0r0,225r-224,0r0,-225xm405,-205r658,0r0,205r-903,0r0,-1338r867,0r0,205r-622,0r0,346r534,0r0,205r-534,0r0,377","w":1163},"\u0406":{"d":"160,0r0,-1338r245,0r0,1338r-245,0","w":565},"\u0407":{"d":"-28,-1673r224,0r0,225r-224,0r0,-225xm384,-1673r224,0r0,225r-224,0r0,-225xm160,0r0,-1338r245,0r0,1338r-245,0","w":565},"\u0408":{"d":"243,-182v123,0,181,-55,181,-174r0,-982r245,0r0,989v4,265,-151,370,-404,374v-77,1,-162,-14,-215,-36r0,-209v53,22,122,38,193,38","w":824},"\u040d":{"d":"735,-1656r138,247r-188,0r-190,-247r240,0xm1073,-1338r257,0r0,1338r-245,0r0,-616v0,-77,4,-200,12,-371r-4,0v-46,78,-126,198,-240,361r-436,626r-257,0r0,-1338r245,0r0,616v0,98,-4,221,-12,370r4,0v43,-71,121,-189,236,-354","w":1490},"\u040c":{"d":"939,-1656r-190,247r-188,0r138,-247r240,0xm160,0r0,-1338r245,0r0,609r4,0r505,-609r304,0r-558,663r604,675r-314,0r-541,-604r-4,0r0,604r-245,0","w":1294,"k":{"\u0475":100,"\u0473":40,"\u0463":40,"\u045e":70,"\u0451":40,"\u0450":40,"\u0454":40,"\u044a":80,"\u0444":40,"\u0443":70,"\u0442":105,"\u0441":40,"\u043e":40,"\u0435":40,"\u0431":30,"\u0404":100,"\u0424":100,"\u0421":100,"\u041e":100,"\u2014":90,"\u2013":90,"\u00ab":90,"\u201d":50,"\u2019":50,"-":90}},"\u0409":{"d":"1708,-417v0,-220,-281,-211,-503,-194r0,406v236,1,503,8,503,-212xm1205,-819v383,-26,756,20,756,393v0,221,-140,327,-314,385v-179,59,-452,38,-687,41r0,-1133r-267,0v-53,358,-97,676,-225,929v-66,130,-150,216,-333,218v-40,0,-75,-4,-105,-12r0,-219v82,20,157,7,197,-47v110,-150,150,-371,197,-618v24,-125,45,-277,68,-456r713,0r0,519","w":2051,"k":{"\"":95,"'":95,"\u0463":30,"\u044a":30,"\u0442":30,"\u0474":100,"\u040b":180,"\u0402":180,"\u042a":100,"\u0427":60,"\u0422":180,"\u0414":40,"]":40,")":40,"\u201d":50,"\u201c":180,"\u2019":50,"\u2018":180,"?":40}},"\u040a":{"d":"1325,-818v236,-5,422,50,526,167v107,120,94,360,-2,473v-105,125,-283,178,-523,178r-389,0r0,-613r-532,0r0,613r-245,0r0,-1338r245,0r0,520r532,0r0,-520r245,0r0,520r143,0xm1676,-417v0,-221,-263,-196,-494,-196r0,408v239,3,494,17,494,-212","w":2019,"k":{"\"":95,"'":95,"\u0463":30,"\u044a":30,"\u0442":30,"\u0474":100,"\u040b":180,"\u0402":180,"\u042a":100,"\u0427":60,"\u0422":180,"\u0414":40,"]":40,")":40,"\u201d":50,"\u201c":180,"\u2019":50,"\u2018":180,"?":40}},"\u040b":{"d":"969,-608v-96,0,-200,22,-275,47r0,561r-245,0r0,-1133r-419,0r0,-205r1180,0r0,205r-516,0r0,365v81,-24,201,-47,303,-47v313,0,438,156,438,483r0,332r-245,0r0,-321v9,-187,-40,-287,-221,-287","w":1575,"k":{"\"":110,"'":110,"\u0463":30,"\u044a":30,"\u0442":30,"\u0474":50,"\u040b":100,"\u0402":100,"\u042a":60,"\u0427":40,"\u0422":100,"\u201d":40,"\u201c":100,"\u2019":40,"\u2018":100}},"\u040e":{"d":"447,-1883v21,128,62,224,190,224v105,0,169,-75,191,-224r231,0v-23,249,-156,404,-424,404v-268,0,-396,-156,-419,-404r231,0xm131,-199v97,24,226,27,289,-28v52,-45,87,-102,121,-178r-521,-933r272,0r376,685r315,-685r266,0r-490,1024v-94,192,-202,340,-480,339v-48,0,-107,-5,-148,-15r0,-209","w":1269,"k":{"\u0475":65,"\u0473":110,"\u0463":50,"\u045f":85,"\u045e":75,"\u045a":85,"\u0459":250,"\u045c":85,"\u045d":85,"\u0451":110,"\u0450":110,"\u0455":95,"\u0454":110,"\u0491":85,"\u0453":85,"\u044f":135,"\u044e":85,"\u044d":65,"\u044c":85,"\u044b":85,"\u044a":65,"\u0449":85,"\u0448":85,"\u0446":85,"\u0445":75,"\u0444":110,"\u0443":75,"\u0442":75,"\u0441":110,"\u0440":85,"\u043f":85,"\u043e":110,"\u043d":85,"\u043c":85,"\u043b":250,"\u043a":85,"\u0439":85,"\u0438":85,"\u0437":55,"\u0436":95,"\u0435":110,"\u0434":250,"\u0433":85,"\u0432":85,"\u0431":40,"\u0430":120,"\u0409":160,"\u0408":120,"\u0404":40,"\u0424":40,"\u0421":40,"\u041e":40,"\u041b":160,"\u0414":180,"\u0410":150,"\u2014":100,"\u2013":100,"\u00bb":50,"\u00ab":145,"-":100,"\u2026":250,".":250,":":90,";":90,",":190}},"\u040f":{"d":"809,0r0,443r-245,0r0,-443r-404,0r0,-1338r245,0r0,1133r563,0r0,-1133r245,0r0,1338r-404,0","w":1373},"\u0462":{"d":"488,-819v388,-30,779,30,779,391v0,336,-306,432,-679,428r-345,0r0,-993r-233,0r0,-205r233,0r0,-140r245,0r0,140r493,0r0,205r-493,0r0,174xm1014,-424v0,-218,-303,-202,-526,-187r0,406r116,0v151,1,282,-19,358,-89v35,-32,52,-75,52,-130","w":1357,"k":{"\"":95,"'":95,"\u0463":30,"\u044a":30,"\u0442":30,"\u0474":80,"\u040b":140,"\u0402":140,"\u042a":100,"\u0427":50,"\u0422":140,"\u0414":40,")":60,"\u201d":50,"\u201c":180,"\u2019":50,"\u2018":180}},"\u0472":{"d":"1330,-950v57,166,57,397,0,562v-85,246,-271,413,-594,413v-322,0,-510,-168,-594,-413v-57,-166,-57,-397,0,-562v85,-246,272,-413,594,-413v323,0,509,168,594,413xm354,-582v20,238,137,400,382,400v244,0,363,-162,382,-400r-764,0xm1115,-787v-29,-218,-145,-369,-379,-369v-235,0,-351,150,-379,369r758,0","w":1472},"\u0474":{"d":"1376,-1134v-90,-11,-165,5,-197,62v-10,17,-21,37,-30,62r-376,1010r-220,0r-523,-1338r261,0r248,665v59,159,100,274,123,346r4,0r270,-794v55,-186,203,-267,440,-235r0,222","w":1406,"k":{"\u0475":105,"\u0473":140,"\u0463":75,"\u045f":115,"\u045e":85,"\u045a":115,"\u0459":250,"\u045c":115,"\u045d":115,"\u0451":140,"\u0450":140,"\u0455":110,"\u0454":140,"\u0491":115,"\u0453":115,"\u044f":140,"\u044e":115,"\u044d":95,"\u044c":115,"\u044b":115,"\u044a":85,"\u0449":115,"\u0448":115,"\u0447":115,"\u0446":115,"\u0445":100,"\u0444":140,"\u0443":85,"\u0442":85,"\u0441":140,"\u043f":115,"\u043e":140,"\u043d":115,"\u043c":115,"\u043b":250,"\u043a":115,"\u0439":115,"\u0438":115,"\u0437":75,"\u0436":85,"\u0435":140,"\u0434":250,"\u0433":115,"\u0432":115,"\u0430":125,"\u0409":160,"\u0408":145,"\u0404":50,"\u0424":50,"\u0421":50,"\u041e":50,"\u041b":160,"\u0414":190,"\u0410":195,"\u2014":130,"\u2013":130,"\u00bb":70,"\u00ab":145,"-":130,"\u2026":160,".":160,":":70,";":90,",":145}},"\u0430":{"d":"918,-288r6,288r-214,0r-10,-103r-4,0v-67,66,-154,128,-287,128v-198,0,-324,-112,-324,-310v0,-225,158,-329,387,-333v78,-1,151,11,209,27v9,-150,-72,-214,-215,-214v-117,0,-203,28,-300,64r0,-185v131,-61,352,-93,512,-41v139,45,240,139,240,314r0,365xm469,-164v98,0,164,-49,212,-101r0,-148v-131,-34,-361,-45,-355,119v3,87,57,130,143,130","w":1054,"k":{"\u0463":20,"\u045b":35,"\u0452":35,"\u044f":20,"\u0442":35,"\u201c":100,"\u2018":100}},"\u0431":{"d":"608,-936v280,6,429,162,429,447v0,244,-102,405,-277,477v-116,48,-292,51,-402,-6v-193,-101,-268,-331,-268,-632v0,-459,159,-756,585,-793r288,-27r0,216v-191,29,-439,5,-539,122v-54,62,-78,148,-85,265v73,-32,165,-71,269,-69xm792,-478v0,-164,-68,-262,-224,-265v-89,-1,-178,37,-233,71v-9,210,19,397,141,477v28,19,60,26,94,26v153,-3,222,-137,222,-309","w":1117,"k":{"\u0459":30,"\u044f":20,"\u044a":30,"\u0445":30,"\u043b":30,"\u0434":45}},"\u0432":{"d":"557,-969v206,-1,370,69,370,254v0,106,-62,176,-145,207r0,4v103,27,173,89,173,206v0,222,-195,298,-446,298r-379,0r0,-969r427,0xm710,-297v0,-145,-204,-99,-347,-106r0,220v148,-5,347,34,347,-114xm682,-690v-2,-70,-51,-96,-138,-96r-181,0r0,200v135,-5,322,34,319,-104","w":1035,"k":{"\u044f":20,"\u201c":50,"\u2018":50}},"\u0433":{"d":"816,-764r-449,0r0,764r-237,0r0,-969r686,0r0,205","w":836,"k":{"\u0459":110,"\u044f":30,"\u043b":110,"\u0434":150,"\u2014":105,"\u2013":105,"\u00ab":80,"?":60,"-":105,"\u2026":145,".":145,",":95}},"\u0434":{"d":"103,-201v177,-181,280,-416,290,-768r576,0r0,768r148,0r0,541r-230,0r0,-340r-622,0r0,340r-230,0r0,-541r68,0xm589,-772v-24,245,-101,417,-218,567r0,4r361,0r0,-571r-143,0","w":1167,"k":{"\"":40,"'":40,"\u0475":50,"\u0473":40,"\u0463":50,"\u045f":30,"\u045e":40,"\u045b":50,"\u045a":30,"\u045c":30,"\u045d":30,"\u0456":30,"\u0451":40,"\u0450":40,"\u0455":20,"\u0454":40,"\u0452":50,"\u0491":30,"\u0453":30,"\u044f":40,"\u044e":30,"\u044c":30,"\u044b":30,"\u044a":45,"\u0449":30,"\u0448":30,"\u0447":60,"\u0446":30,"\u0444":40,"\u0443":40,"\u0442":80,"\u0441":20,"\u043f":30,"\u043e":40,"\u043d":30,"\u043c":30,"\u043a":30,"\u0439":30,"\u0438":30,"\u0435":40,"\u0433":30,"\u0432":30,"\u0431":40,"\u0430":30,"\u2014":40,"\u2013":40,"\u00ab":50,"\u201d":30,"\u201c":50,"\u2019":30,"\u2018":50,"?":50,"-":40,";":-50,",":-50}},"\u0435":{"d":"322,-414v13,171,125,248,307,248v108,0,207,-24,296,-54r0,189v-72,30,-224,58,-338,56v-321,-5,-507,-165,-507,-493v0,-254,108,-419,286,-492v55,-23,112,-33,171,-33v322,2,444,236,420,579r-635,0xm714,-599v-4,-122,-57,-209,-180,-209v-129,0,-184,92,-201,209r381,0","w":1050,"k":{"\u0459":40,"\u044f":20,"\u044a":30,"\u0442":60,"\u043b":40,"]":40,")":40,"\u201c":50,"\u2018":50}},"\u0436":{"d":"867,-548r5,0r314,-421r280,0r-379,478r398,491r-280,0r-334,-423r-4,0r0,423r-237,0r0,-423r-4,0r-334,423r-282,0r400,-491r-377,-478r278,0r314,421r5,0r0,-421r237,0r0,421","w":1495,"k":{"\u0473":30,"\u0454":30,"\u0444":30,"\u0441":20,"\u043e":30,"\u2014":50,"\u2013":50,"\u00ab":70,"-":50}},"\u0437":{"d":"390,-803v-108,0,-219,28,-303,56r0,-186v170,-74,488,-89,629,18v60,45,104,109,105,204v1,103,-62,171,-130,207r0,4v88,32,157,93,157,210v0,233,-199,312,-451,315v-130,1,-239,-22,-327,-60r0,-191v90,37,187,61,300,61v122,0,230,-15,230,-128v0,-87,-73,-106,-179,-106r-224,0r0,-185r235,0v91,3,140,-30,140,-108v0,-86,-78,-111,-182,-111","w":928,"k":{"\u044f":30,"]":30,")":30,"\u201c":50,"\u2018":50}},"\u0438":{"d":"1026,-969r0,969r-237,0r0,-281v0,-127,3,-242,9,-345r-4,0v-105,179,-311,442,-446,626r-218,0r0,-969r237,0r0,281v0,139,-3,254,-9,345r4,0v101,-173,313,-444,446,-626r218,0","w":1156},"\u0439":{"d":"454,-1437v9,100,42,182,135,182v92,0,132,-82,138,-182r221,0v-15,217,-133,357,-360,357v-225,0,-339,-140,-353,-357r219,0xm1026,-969r0,969r-237,0r0,-281v0,-127,3,-242,9,-345r-4,0v-105,179,-311,442,-446,626r-218,0r0,-969r237,0r0,281v0,139,-3,254,-9,345r4,0v101,-173,313,-444,446,-626r218,0","w":1156},"\u043a":{"d":"130,-969r237,0r0,421r5,0r334,-421r284,0r-396,478r417,491r-286,0r-354,-423r-4,0r0,423r-237,0r0,-969","w":1021,"k":{"\u0473":45,"\u0451":45,"\u0450":45,"\u0454":45,"\u0444":50,"\u0441":45,"\u043e":45,"\u0435":45,"\u2014":95,"\u2013":95,"\u00ab":95,"?":40,"-":95}},"\u043b":{"d":"348,-93v-64,93,-179,127,-328,104r0,-211v184,32,212,-102,252,-249v42,-153,65,-322,92,-520r595,0r0,969r-237,0r0,-772r-171,0v-40,276,-84,509,-203,679","w":1089},"\u043c":{"d":"674,-321v38,-135,85,-287,143,-455r67,-193r327,0r0,969r-228,0r0,-348v0,-85,4,-203,12,-353r-8,0r-242,701r-149,0r-168,-476r-74,-225r-8,0v8,141,12,259,12,353r0,348r-228,0r0,-969r327,0r67,193v62,183,110,334,143,455r7,0","w":1341},"\u043d":{"d":"758,0r0,-400r-391,0r0,400r-237,0r0,-969r237,0r0,368r391,0r0,-368r237,0r0,969r-237,0","w":1125},"\u043e":{"d":"568,-169v172,0,241,-135,241,-315v0,-181,-69,-315,-243,-315v-172,0,-241,135,-241,315v0,182,70,315,243,315xm1020,-692v45,122,45,294,0,416v-67,180,-212,301,-452,301v-242,0,-388,-120,-454,-301v-45,-122,-45,-294,0,-416v67,-180,212,-301,452,-301v242,0,388,120,454,301","w":1134,"k":{"\u0463":35,"\u045b":35,"\u0459":40,"\u0452":35,"\u044f":30,"\u044a":30,"\u0445":30,"\u043b":40,"\u0437":20,"\u0436":30,"\u0434":50,"]":40,")":40,"\u201c":50,"\u2018":50}},"\u043f":{"d":"367,-766r0,766r-237,0r0,-969r846,0r0,969r-237,0r0,-766r-372,0","w":1106},"\u0440":{"d":"801,-489v0,-175,-52,-314,-217,-314v-95,0,-168,52,-217,110r0,432v47,50,111,97,206,97v171,0,228,-147,228,-325xm352,-860v56,-73,147,-136,273,-133v202,4,324,116,385,274v47,123,46,334,-2,455v-66,164,-184,283,-393,289v-106,3,-193,-46,-247,-99r-4,0r3,136r0,403r-237,0r0,-1434r208,0r10,109r4,0","w":1126,"k":{"\u0463":35,"\u045b":35,"\u0459":40,"\u0452":35,"\u044f":30,"\u044a":30,"\u0445":30,"\u043b":40,"\u0436":40,"\u0434":50,"]":30,")":30,"\u201c":50,"\u2018":50}},"\u0441":{"d":"610,-169v88,1,155,-20,218,-45r0,193v-113,49,-310,63,-443,16v-186,-66,-305,-214,-305,-464v0,-266,127,-425,322,-495v131,-48,297,-32,411,14r0,193v-57,-24,-121,-44,-200,-42v-193,4,-288,122,-288,324v0,187,96,303,285,306","w":903,"k":{"\u045b":40,"\u0452":40,"\u044f":30,"\u0441":30,"\u2014":60,"\u2013":60,"-":60}},"\u0442":{"d":"329,-769r-309,0r0,-200r855,0r0,200r-309,0r0,769r-237,0r0,-769","w":895,"k":{"\u045b":20,"\u0459":95,"\u0452":20,"\u044f":20,"\u043b":95,"\u0434":110,"\u2014":85,"\u2013":85,"\u00ab":70,"?":50,"-":85,"\u2026":125,".":125,",":100}},"\u0443":{"d":"10,-969r254,0r145,351v55,133,93,232,116,296r4,0v17,-50,51,-143,106,-278r150,-369r257,0r-624,1434r-234,0r222,-519","w":1052,"k":{"\u0459":80,"\u044f":20,"\u043b":80,"\u0434":80,"\u00ab":40,"?":40,"\u2026":100,".":100,",":70}},"\u0444":{"d":"827,-165v160,-29,265,-133,265,-321v0,-187,-105,-291,-265,-318r0,639xm590,465r0,-443v-235,-24,-402,-130,-476,-314v-46,-114,-46,-273,1,-386v75,-182,242,-288,475,-314r0,-456r237,0r0,456v233,27,400,132,475,314v47,113,46,272,0,386v-73,184,-240,290,-475,314r0,443r-237,0xm590,-804v-160,27,-265,131,-265,318v0,188,105,292,265,321r0,-639","w":1417,"k":{"\u045b":30,"\u0459":40,"\u0452":30,"\u0445":30,"\u043b":40,"\u0436":30,"]":40,")":40,"\u201c":50,"\u2018":50}},"\u0445":{"d":"532,-337r-250,337r-272,0r383,-494r-360,-475r279,0r226,320r230,-320r280,0r-370,474r380,495r-277,0","w":1068,"k":{"\u0473":30,"\u0454":30,"\u0444":30,"\u0441":30,"\u043e":30,"\u2014":50,"\u2013":50,"\u00ab":50,"?":50,"-":50}},"\u0446":{"d":"130,0r0,-969r237,0r0,768r347,0r0,-768r237,0r0,768r148,0r0,541r-230,0r0,-340r-739,0","w":1149,"k":{"\"":40,"'":40,"\u0475":50,"\u0473":40,"\u0463":50,"\u045f":30,"\u045e":40,"\u045b":50,"\u045a":30,"\u045c":30,"\u045d":30,"\u0456":30,"\u0451":40,"\u0450":40,"\u0455":20,"\u0454":40,"\u0452":50,"\u0491":30,"\u0453":30,"\u044f":40,"\u044e":30,"\u044c":30,"\u044b":30,"\u044a":45,"\u0449":30,"\u0448":30,"\u0447":60,"\u0446":30,"\u0444":40,"\u0443":40,"\u0442":80,"\u0441":20,"\u043f":30,"\u043e":40,"\u043d":30,"\u043c":30,"\u043a":30,"\u0439":30,"\u0438":30,"\u0435":40,"\u0433":30,"\u0432":30,"\u0431":40,"\u0430":30,"\u2014":40,"\u2013":40,"\u00ab":40,"\u201d":30,"\u201c":50,"\u2019":30,"\u2018":50,"?":50,"-":40,";":-50,",":-50}},"\u0447":{"d":"476,-491v80,0,147,-26,198,-58r0,-420r237,0r0,969r-237,0r0,-352v-65,25,-150,57,-248,55v-210,-5,-325,-116,-326,-335r0,-337r237,0r0,318v0,110,38,160,139,160","w":1041},"\u0448":{"d":"1367,0r-1237,0r0,-969r237,0r0,768r263,0r0,-768r237,0r0,768r263,0r0,-768r237,0r0,969","w":1497},"\u0449":{"d":"130,0r0,-969r237,0r0,768r253,0r0,-768r237,0r0,768r253,0r0,-768r237,0r0,768r147,0r0,541r-229,0r0,-340r-1135,0","w":1544,"k":{"\"":40,"'":40,"\u0475":50,"\u0473":40,"\u0463":50,"\u045f":30,"\u045e":40,"\u045b":50,"\u045a":30,"\u045c":30,"\u045d":30,"\u0456":30,"\u0451":40,"\u0450":40,"\u0455":20,"\u0454":40,"\u0452":50,"\u0491":30,"\u0453":30,"\u044f":40,"\u044e":30,"\u044c":30,"\u044b":30,"\u044a":45,"\u0449":30,"\u0448":30,"\u0447":60,"\u0444":40,"\u0443":40,"\u0442":80,"\u0441":20,"\u043f":30,"\u043e":40,"\u043d":30,"\u043c":30,"\u043a":30,"\u0439":30,"\u0438":30,"\u0435":40,"\u0433":30,"\u0432":30,"\u0431":40,"\u0430":30,"\u2014":40,"\u2013":40,"\u00ab":40,"\u201d":30,"\u201c":50,"\u2019":30,"\u2018":50,"?":50,"-":40,";":-50,",":-50}},"\u044a":{"d":"959,-61v-148,104,-467,104,-671,48r0,-751r-288,0r0,-205r525,0r0,347v295,-32,574,29,574,306v0,124,-62,200,-140,255xm854,-308v0,-133,-184,-140,-329,-120r0,253v145,15,329,10,329,-133","w":1179,"k":{"\"":155,"'":155,"\u0475":65,"\u0463":65,"\u045e":100,"\u045b":25,"\u0452":25,"\u044f":35,"\u044a":95,"\u0445":30,"\u0443":100,"\u0442":130,"\u0436":30,"\u0431":30,"\u201d":175,"\u201c":210,"\u2019":175,"\u2018":210,"?":50}},"\u044b":{"d":"801,-61v-148,104,-467,104,-671,48r0,-956r237,0r0,347v294,-32,574,29,574,306v0,124,-62,200,-140,255xm696,-308v0,-133,-183,-140,-329,-120r0,253v145,15,329,10,329,-133xm1040,-969r237,0r0,969r-237,0r0,-969","w":1407},"\u044c":{"d":"367,-622v303,-32,594,29,594,315v0,365,-506,367,-831,294r0,-956r237,0r0,347xm716,-304v0,-147,-201,-139,-349,-124r0,253v147,15,349,10,349,-129","w":1041,"k":{"\"":155,"'":155,"\u0475":65,"\u0463":65,"\u045e":100,"\u045b":25,"\u0452":25,"\u044f":35,"\u044a":95,"\u0443":100,"\u0442":130,"\u0436":30,"\u0431":30,"\u201d":175,"\u201c":210,"\u2019":175,"\u2018":210,"?":50}},"\u044d":{"d":"96,-940v126,-58,343,-73,488,-19v188,70,306,224,306,477v0,339,-194,503,-533,507v-105,1,-208,-25,-277,-56r0,-189v133,62,368,83,481,-3v51,-39,81,-97,88,-176r-492,0r0,-185r485,0v-24,-147,-128,-217,-294,-219v-97,-1,-180,21,-252,49r0,-186","w":970,"k":{"\u0463":35,"\u045b":35,"\u0459":40,"\u0452":35,"\u044f":30,"\u044a":30,"\u0445":30,"\u043b":40,"\u0437":20,"\u0436":30,"\u0434":50,"]":40,")":40,"\u201c":50,"\u2018":50}},"\u044e":{"d":"524,-601v44,-238,191,-392,466,-392v315,0,478,194,478,509v0,240,-103,400,-276,472v-59,24,-126,37,-200,37v-289,0,-439,-165,-474,-425r-151,0r0,400r-237,0r0,-969r237,0r0,368r157,0xm992,-169v171,0,228,-137,231,-315v2,-183,-72,-315,-233,-315v-159,0,-231,133,-231,315v0,183,72,315,233,315","w":1548,"k":{"\u0463":35,"\u045b":35,"\u0459":40,"\u0452":35,"\u044f":30,"\u044a":30,"\u0445":30,"\u043b":40,"\u0437":20,"\u0436":30,"\u0434":50,"]":40,")":40,"\u201c":50,"\u2018":50}},"\u044f":{"d":"353,-655v0,97,71,128,175,128r159,0r0,-259r-170,0v-105,0,-164,37,-164,131xm273,-393v-120,-46,-194,-174,-155,-335v40,-163,170,-242,379,-241r425,0r0,969r-235,0r0,-344r-187,0r-184,344r-256,0r213,-389r0,-4","w":1052},"\u0453":{"d":"816,-764r-449,0r0,764r-237,0r0,-969r686,0r0,205xm746,-1473r-165,349r-184,0r119,-349r230,0","w":836,"k":{"\u0459":110,"\u044f":30,"\u043b":110,"\u0434":150,"\u2014":105,"\u2013":105,"\u00ab":80,"?":60,"-":105,"\u2026":145,".":145,",":95}},"\u0491":{"d":"367,-764r0,764r-237,0r0,-969r538,0r0,-284r230,0r0,489r-531,0","w":928,"k":{"\u0459":110,"\u044f":30,"\u043b":110,"\u0434":150,"\u2014":105,"\u2013":105,"\u00ab":80,"?":60,"-":105,"\u2026":145,".":145,",":95}},"\u0452":{"d":"818,-364v0,-190,-36,-365,-215,-365v-96,0,-157,49,-204,108r0,621r-237,0r0,-1106r-162,0r0,-185r162,0r0,-157r237,0r0,157r399,0r0,185r-399,0r-3,222v-2,32,-4,62,-8,88r4,0v73,-110,279,-173,434,-96v199,99,272,399,224,700v-48,297,-209,513,-560,501r0,-202v267,4,328,-212,328,-471","w":1153,"k":{"\"":50,"'":50,"\u0475":30,"\u0463":20,"\u045e":35,"\u045b":20,"\u0452":20,"\u044f":20,"\u044a":20,"\u0443":35,"\u0442":55,"\u201c":80,"\u2018":80}},"\u0454":{"d":"599,25v-323,0,-519,-164,-519,-491v0,-260,115,-420,306,-492v144,-55,362,-40,488,18r0,186v-119,-48,-340,-79,-449,2v-50,37,-86,91,-97,168r485,0r0,185r-492,0v13,157,119,234,288,234v110,0,187,-19,281,-55r0,189v-80,33,-184,56,-291,56","w":970,"k":{"\u045b":20,"\u0452":20,"\u044f":20}},"\u0455":{"d":"352,-167v103,0,207,-18,207,-114v0,-101,-124,-103,-209,-128v-139,-40,-267,-90,-264,-268v3,-215,148,-312,361,-316v117,-2,223,21,308,52r0,193v-84,-27,-181,-53,-288,-53v-83,0,-152,21,-152,97v0,100,116,105,197,126v148,39,284,92,281,279v-4,236,-180,321,-421,324v-112,1,-215,-19,-287,-51r0,-191v87,33,166,50,267,50","w":868},"\u0450":{"d":"322,-414v13,171,125,248,307,248v108,0,207,-24,296,-54r0,189v-72,30,-224,58,-338,56v-321,-5,-507,-165,-507,-493v0,-254,108,-419,286,-492v55,-23,112,-33,171,-33v322,2,444,236,420,579r-635,0xm714,-599v-4,-122,-57,-209,-180,-209v-129,0,-184,92,-201,209r381,0xm532,-1473r119,349r-184,0r-165,-349r230,0","w":1050,"k":{"\u0459":40,"\u044f":20,"\u044a":30,"\u0442":60,"\u043b":40,"]":40,")":40,"\u201c":50,"\u2018":50}},"\u0451":{"d":"322,-414v13,171,125,248,307,248v108,0,207,-24,296,-54r0,189v-72,30,-224,58,-338,56v-321,-5,-507,-165,-507,-493v0,-254,108,-419,286,-492v55,-23,112,-33,171,-33v322,2,444,236,420,579r-635,0xm714,-599v-4,-122,-57,-209,-180,-209v-129,0,-184,92,-201,209r381,0xm222,-1412r218,0r0,221r-218,0r0,-221xm632,-1412r218,0r0,221r-218,0r0,-221","w":1050,"k":{"\u0459":40,"\u044f":20,"\u044a":30,"\u0442":60,"\u043b":40,"]":40,")":40,"\u201c":50,"\u2018":50}},"\u0456":{"d":"136,-969r237,0r0,969r-237,0r0,-969xm130,-1448r249,0r0,257r-249,0r0,-257","w":509},"\u0457":{"d":"136,-969r237,0r0,969r-237,0r0,-969xm-53,-1412r218,0r0,221r-218,0r0,-221xm357,-1412r218,0r0,221r-218,0r0,-221","w":509},"\u0458":{"d":"-8,296v125,0,173,-58,173,-188r0,-1077r237,0r0,1096v5,261,-136,359,-381,363v-69,1,-123,-8,-176,-23r0,-194v40,11,98,23,147,23xm159,-1448r249,0r0,257r-249,0r0,-257","w":538},"\u045d":{"d":"1026,-969r0,969r-237,0r0,-281v0,-127,3,-242,9,-345r-4,0v-105,179,-311,442,-446,626r-218,0r0,-969r237,0r0,281v0,139,-3,254,-9,345r4,0v101,-173,313,-444,446,-626r218,0xm578,-1473r119,349r-184,0r-165,-349r230,0","w":1156},"\u045c":{"d":"130,-969r237,0r0,421r5,0r334,-421r284,0r-396,478r417,491r-286,0r-354,-423r-4,0r0,423r-237,0r0,-969xm788,-1473r-165,349r-184,0r119,-349r230,0","w":1031,"k":{"\u0473":45,"\u0451":45,"\u0450":45,"\u0454":45,"\u0444":50,"\u0441":45,"\u043e":45,"\u0435":45,"\u2014":95,"\u2013":95,"\u00ab":95,"?":40,"-":95}},"\u0459":{"d":"1298,-308v0,-134,-184,-139,-329,-120r0,253v145,15,329,10,329,-133xm1403,-61v-149,104,-467,104,-671,48r0,-759r-171,0v-40,276,-82,510,-203,679v-55,77,-129,111,-250,111v-35,-1,-61,-3,-78,-7r0,-211v185,31,216,-106,258,-255v42,-150,65,-319,91,-514r590,0r0,347v296,-32,574,29,574,306v0,124,-62,200,-140,255","w":1623,"k":{"\"":155,"'":155,"\u0475":65,"\u0463":25,"\u045e":100,"\u045b":25,"\u0452":25,"\u044f":35,"\u044a":95,"\u0443":100,"\u0442":130,"\u0436":30,"\u0431":30,"\u201d":175,"\u201c":210,"\u2019":175,"\u2018":210,"?":50}},"\u045a":{"d":"1370,-61v-146,102,-459,104,-662,48r0,-406r-341,0r0,419r-237,0r0,-969r237,0r0,349r341,0r0,-349r237,0r0,347v292,-32,564,32,564,306v0,124,-61,200,-139,255xm1264,-308v0,-131,-181,-141,-319,-120r0,253v141,16,319,5,319,-133","w":1589,"k":{"\"":155,"'":155,"\u0475":65,"\u0463":65,"\u045e":100,"\u045b":25,"\u0452":25,"\u044f":35,"\u044a":95,"\u0443":100,"\u0442":130,"\u0436":30,"\u0431":30,"\u201d":175,"\u201c":210,"\u2019":175,"\u2018":210,"?":50}},"\u045b":{"d":"646,-742v-110,0,-190,57,-245,127r0,615r-237,0r0,-1106r-164,0r0,-185r164,0r0,-157r237,0r0,157r388,0r0,185r-388,0r-3,232v-2,32,-4,62,-8,88r4,0v64,-86,166,-151,314,-151v228,0,330,134,330,377r0,560r-237,0r0,-524v6,-134,-33,-218,-155,-218","w":1168,"k":{"\u201c":50,"\u2018":50}},"\u045e":{"d":"344,-1437v9,100,42,182,135,182v92,0,132,-82,138,-182r221,0v-15,217,-133,357,-360,357v-225,0,-339,-140,-353,-357r219,0xm-36,-969r254,0r145,351v55,133,93,232,116,296r4,0v17,-50,51,-143,106,-278r150,-369r257,0r-624,1434r-234,0r222,-519","w":989,"k":{"\u0459":80,"\u044f":20,"\u043b":80,"\u0434":80,"\u00ab":40,"?":40,"\u2026":100,".":100,",":70}},"\u045f":{"d":"668,340r-230,0r0,-340r-308,0r0,-969r237,0r0,768r370,0r0,-768r237,0r0,969r-306,0r0,340","w":1104},"\u0463":{"d":"445,-622v302,-32,594,29,594,315v0,365,-506,367,-831,294r0,-771r-208,0r0,-185r208,0r0,-479r237,0r0,479r344,0r0,185r-344,0r0,162xm446,-169v157,10,349,12,349,-139v0,-148,-200,-139,-349,-124r0,263","w":1119,"k":{"\"":105,"'":105,"\u0475":40,"\u0463":30,"\u045e":100,"\u044a":50,"\u0443":100,"\u0442":130,"\u0431":3,"\u201d":90,"\u201c":125,"\u2019":90,"\u2018":125,"?":40}},"\u0473":{"d":"1002,-690v43,121,43,291,0,412v-64,180,-206,303,-444,303v-241,0,-382,-122,-446,-303v-43,-121,-43,-291,0,-412v64,-180,206,-303,444,-303v241,0,382,122,446,303xm328,-398v11,163,145,277,312,218v85,-30,133,-110,145,-218r-457,0xm784,-583v-14,-154,-148,-261,-309,-205v-83,29,-130,104,-145,205r454,0","w":1114,"k":{"\u0463":35,"\u045b":35,"\u0459":40,"\u0452":35,"\u044f":30,"\u044a":30,"\u0445":30,"\u043b":40,"\u0437":20,"\u0436":30,"\u0434":50,"]":40,")":40,"\u201c":50,"\u2018":50}},"\u0475":{"d":"620,-593v70,-191,110,-410,377,-400v21,0,43,1,67,3r0,199v-105,-10,-149,37,-178,115r-255,676r-235,0r-376,-969r250,0r135,370v48,131,83,235,106,312r4,0v25,-78,60,-180,105,-306","w":1094,"k":{"\u0473":25,"\u045b":20,"\u0459":80,"\u0451":25,"\u0450":25,"\u0455":20,"\u0454":25,"\u0452":20,"\u044f":30,"\u0444":40,"\u043e":25,"\u043b":80,"\u0435":25,"\u0434":110,"\u0430":45,"]":30,")":30,"\u2014":60,"\u2013":60,"\u00ab":60,"?":105,"-":60,"\u2026":135,".":135,",":115}},"^":{"d":"642,-1363r384,852r-217,0r-267,-628r-4,0r-267,628r-217,0r384,-852r204,0"},"~":{"d":"367,-426v-77,0,-104,38,-138,86r-144,-105v57,-104,132,-175,276,-175v141,0,220,98,351,98v77,0,104,-37,138,-86r144,105v-62,124,-184,204,-360,163v-92,-21,-165,-86,-267,-86"},"\u00a6":{"d":"345,-720r-205,0r0,-728r205,0r0,728xm345,465r-205,0r0,-696r205,0r0,696","w":485},"\\":{"d":"371,249r-380,-1587r208,0r380,1587r-208,0","w":603},"_":{"d":"0,142r1000,0r0,133r-1000,0r0,-133","w":1000},"'":{"d":"321,-787r-211,0r0,-551r211,0r0,551","w":431,"k":{"\u0459":155,"\u043b":155,"\u0434":115,"\u0409":145,"\u0408":160,"\u042a":-40,"\u041b":145,"\u0414":190,"\u0410":145,"\u00bf":185,".":100,"\u00c6":185,"\u00c5":145,"\u00c4":145,"\u00c3":145,"\u00c2":145,"\u00c1":145,"J":160,"A":145}},"\"":{"d":"321,-787r-211,0r0,-551r211,0r0,551xm698,-787r-211,0r0,-551r211,0r0,551","w":808,"k":{"\u0459":155,"\u043b":155,"\u0434":115,"\u0409":145,"\u0408":160,"\u042a":-40,"\u041b":145,"\u0414":190,"\u0410":145,"\u00bf":185,".":100,"\u00c6":185,"\u00c5":145,"\u00c4":145,"\u00c3":145,"\u00c2":145,"\u00c1":145,"\u00c0":145,"J":160,"A":145}},"@":{"d":"1478,0v-116,1,-183,-43,-214,-125r-4,0v-76,92,-256,162,-414,104v-109,-40,-185,-128,-185,-275v0,-215,150,-311,368,-316v79,-2,141,11,198,25v9,-142,-68,-203,-204,-203v-112,0,-192,27,-285,61r0,-176v83,-38,191,-64,311,-64v237,0,403,98,403,323r0,390v-1,56,11,101,66,98v127,-7,178,-116,206,-233v35,-145,17,-332,-36,-449v-102,-225,-311,-363,-625,-363v-368,0,-578,185,-667,463v-57,177,-55,392,6,562v98,270,326,434,695,434v209,0,396,-39,543,-99r0,160v-206,79,-530,131,-795,71v-326,-73,-547,-270,-633,-585v-54,-198,-38,-449,30,-627v123,-323,387,-539,822,-539v400,0,662,188,790,470v103,226,72,594,-61,747v-73,84,-172,144,-315,146xm1026,-181v93,0,155,-47,201,-96r0,-141v-124,-31,-343,-44,-337,113v3,83,54,124,136,124","w":2098},"\u00a9":{"d":"202,-392v-70,-165,-70,-389,0,-554v103,-240,312,-417,641,-417v329,0,539,177,641,417v70,165,70,389,0,554v-103,240,-312,417,-641,417v-329,0,-539,-177,-641,-417xm344,-882v-53,130,-53,296,0,426v79,191,238,334,499,334v261,0,421,-143,499,-334v53,-130,53,-296,0,-426v-79,-191,-238,-334,-499,-334v-261,0,-421,143,-499,334xm913,-446v48,0,96,-9,132,-22r1,166v-44,16,-113,27,-174,26v-247,-5,-391,-135,-391,-384v0,-193,96,-315,235,-375v91,-39,237,-37,323,-1r0,165v-35,-13,-83,-23,-130,-22v-142,4,-226,84,-226,230v0,148,84,217,230,217","w":1686},"\u00ae":{"d":"849,-968v0,81,-54,125,-124,142r0,5r137,201r-151,0r-120,-189r-17,0r0,189r-136,0r0,-502v185,2,411,-28,411,154xm706,-968v0,-61,-66,-63,-132,-60r0,125v69,1,132,0,132,-65xm178,-672v-51,-118,-51,-276,0,-394v74,-170,223,-297,457,-297v233,0,384,127,457,297v51,118,51,276,0,394v-74,170,-223,297,-457,297v-234,0,-383,-127,-457,-297xm365,-1140v-84,80,-135,268,-75,420v53,134,163,233,345,233v182,0,292,-99,345,-233v59,-151,4,-337,-75,-420v-86,-91,-275,-147,-423,-82v-46,20,-83,49,-117,82","w":1270},"\u2122":{"d":"921,-1182r7,214r0,314r-159,0r0,-684r250,0r120,348v12,37,21,64,26,82r6,0r146,-430r250,0r0,684r-159,0r0,-314r7,-214r-7,0r-65,200r-116,328r-118,0r-155,-441v-12,-36,-20,-65,-26,-87r-7,0xm305,-1194r-208,0r0,-144r577,0r0,144r-206,0r0,540r-163,0r0,-540","w":1752},"\u00a4":{"d":"354,-989v93,-64,277,-65,370,0r135,-135r135,135r-135,135v64,93,65,277,0,370r135,134r-135,135r-134,-134v-108,65,-263,66,-371,0r-134,134r-135,-135r134,-134v-66,-108,-65,-263,0,-371r-134,-134r135,-135xm622,-866v-149,-57,-294,43,-289,197v4,128,79,212,206,212v154,0,244,-144,191,-295v-18,-52,-57,-95,-108,-114"},"$":{"d":"965,-325v0,193,-151,271,-344,292r0,103r-159,0r0,-98v-120,-4,-247,-21,-328,-58r0,-196v97,35,198,58,328,60r0,-219v-181,-27,-348,-76,-348,-285v0,-205,157,-275,348,-299r0,-103r159,0r0,100v100,6,208,23,287,51r0,198v-103,-33,-198,-52,-287,-56r0,222v179,29,344,80,344,288xm462,-830v-79,9,-129,27,-129,94v0,70,58,83,129,98r0,-192xm745,-321v0,-69,-55,-82,-124,-96r0,188v83,-11,124,-41,124,-92","k":{"9":50,"7":40,"6":30,"5":50,"3":40,"2":50}},"\u00a2":{"d":"930,-160v-49,19,-117,31,-182,35r0,150r-159,0r0,-153v-268,-34,-443,-176,-443,-474v0,-303,169,-463,443,-500r0,-162r159,0r0,159v61,5,129,16,172,35r0,194v-50,-17,-111,-31,-172,-36r0,594v61,-4,134,-16,182,-34r0,192xm589,-900v-131,35,-207,128,-207,294v-1,163,75,247,207,277r0,-571"},"\u00a3":{"d":"965,-841v-88,-42,-269,-81,-338,5v-36,45,-46,117,-56,190r268,0r0,201r-294,0r-31,244r481,0r0,201r-883,0r0,-201r164,0r32,-244r-138,0r0,-201r164,0v14,-150,54,-279,134,-355v107,-102,358,-114,497,-42r0,202","k":{"5":40}},"\u00a5":{"d":"900,-86r-242,0r0,112r-237,0r0,-112r-242,0r0,-161r242,0r0,-117r-242,0r0,-161r168,0r-291,-541r239,0r242,473r5,0r242,-473r239,0r-291,541r168,0r0,161r-242,0r0,117r242,0r0,161","k":{"5":40}},"\u00aa":{"d":"65,-735v-5,-212,234,-273,426,-211v7,-102,-39,-151,-148,-151v-84,0,-149,19,-220,46r0,-169v77,-23,168,-37,247,-38v218,-3,339,85,339,300r0,229r6,216r-199,0r-11,-77r-4,0v-44,49,-100,95,-194,95v-153,0,-238,-89,-242,-240xm366,-654v52,0,103,-33,125,-63r0,-92v-80,-27,-213,-26,-211,74v1,49,32,81,86,81","w":815},"\u00ba":{"d":"592,-522v-89,35,-217,35,-306,0v-135,-53,-221,-169,-221,-354v0,-185,89,-301,223,-355v89,-36,211,-36,300,0v134,54,223,170,223,355v0,184,-85,301,-219,354xm283,-876v0,125,47,204,156,204v109,0,154,-80,154,-204v0,-124,-47,-205,-155,-205v-108,0,-155,81,-155,205","w":876},"#":{"d":"435,-981r73,-357r190,0r-73,357r240,0r73,-357r190,0r-73,357r196,0r0,182r-234,0r-53,260r205,0r0,182r-243,0r-73,357r-190,0r73,-357r-240,0r-73,357r-190,0r73,-357r-196,0r0,-182r234,0r53,-260r-205,0r0,-182r243,0xm534,-539r240,0r53,-260r-240,0","w":1361},"0":{"d":"528,-169v158,0,217,-137,217,-315v0,-179,-58,-315,-217,-315v-159,0,-218,136,-218,315v0,179,58,315,218,315xm873,-848v102,112,152,367,87,566v-59,182,-194,307,-432,307v-236,0,-371,-127,-432,-307v-41,-121,-41,-283,0,-404v62,-180,195,-305,432,-307v158,-1,268,61,345,145","w":1055,"k":{"3":40,"2":40}},"1":{"d":"427,-201r0,-516r-337,96r0,-210r392,-138r182,0r0,768r282,0r0,201r-836,0r0,-201r317,0","w":1013,"k":{"7":40,"3":50}},"2":{"d":"471,-993v226,0,386,97,386,320v0,184,-121,274,-233,365v-46,38,-99,73,-154,111r0,4v92,-5,160,-8,205,-8r262,0r0,201r-847,0r0,-145r200,-141v108,-80,210,-159,280,-257v28,-40,42,-79,42,-118v-2,-97,-75,-128,-173,-128v-126,0,-238,42,-339,91r0,-201v100,-51,221,-94,371,-94","w":1022,"k":{"7":40,"5":60,"3":60,"2":40,"0":40}},"3":{"d":"614,-620v0,-239,-368,-177,-518,-109r0,-205v129,-54,354,-85,510,-30v144,52,253,153,253,337v0,152,-68,252,-184,304r0,4v129,40,214,139,214,304v0,302,-203,428,-513,428v-115,0,-221,-22,-301,-59r0,-206v76,34,177,63,289,62v168,-1,280,-64,280,-223v0,-144,-93,-195,-246,-195r-156,0r0,-201r106,0v163,4,266,-57,266,-211","w":999},"4":{"d":"318,-195r2,3v79,-10,197,-9,295,-9r0,-248r237,0r0,248r174,0r0,201r-174,0r0,387r-237,0r0,-387r-550,0r0,-169r365,-800r242,0","w":1081},"5":{"d":"662,-27v7,-255,-305,-246,-538,-210r103,-732r679,0r0,216r-477,0r-44,308v318,-13,522,115,522,413v0,222,-128,349,-301,411v-152,55,-385,37,-516,-23r0,-207v86,36,169,61,275,61v178,0,292,-67,297,-237","w":1002,"k":[40]},"6":{"d":"340,-573v4,212,46,395,241,395v139,0,205,-88,206,-232v1,-147,-71,-217,-215,-217v-87,1,-170,22,-232,54xm959,-1106v-102,-39,-244,-80,-363,-32v-139,56,-212,189,-243,362v173,-84,437,-64,555,51v71,69,125,165,124,302v-2,216,-103,352,-263,415v-116,46,-288,44,-396,-10v-184,-91,-278,-287,-278,-562v0,-338,126,-591,343,-720v137,-82,386,-75,521,-10r0,204","w":1127,"k":{"7":70,"5":30,"2":40}},"7":{"d":"59,-753r0,-216r865,0r0,162r-566,1194r-243,0r540,-1140r-596,0","w":1000,"k":{"5":50,"4":50,"2":40}},"8":{"d":"569,-1169v-118,0,-196,60,-196,179v0,122,85,185,196,209v111,-24,196,-87,196,-209v0,-119,-77,-179,-196,-179xm345,-371v0,132,91,198,224,202v165,6,266,-134,207,-292v-30,-80,-108,-120,-207,-133v-129,18,-224,79,-224,223xm810,-692v133,49,228,149,228,329v0,197,-123,305,-278,359v-112,39,-270,39,-382,0v-156,-54,-278,-161,-278,-359v0,-180,95,-280,228,-329r0,-4v-112,-50,-200,-140,-200,-291v0,-194,119,-301,270,-351v170,-56,386,-11,483,74v72,62,129,150,129,277v0,151,-88,242,-200,291r0,4","w":1138,"k":{"7":30,"2":50}},"9":{"d":"122,145v74,37,177,65,277,65v247,0,350,-154,381,-401v-109,51,-294,75,-428,27v-154,-54,-257,-177,-257,-382v0,-212,103,-348,259,-412v115,-48,291,-46,400,7v193,93,279,305,279,594v0,376,-128,646,-415,741v-150,50,-376,31,-496,-32r0,-207xm340,-561v-1,145,68,220,209,220v89,0,176,-20,238,-54v-8,-212,-45,-395,-245,-395v-137,0,-201,88,-202,229","w":1128},"\u00b9":{"d":"268,-687r0,-461r-211,63r0,-179r246,-87r177,0r0,664r176,0r0,174r-586,0r0,-174r198,0","w":695},"\u00b2":{"d":"63,-1304v196,-104,553,-84,548,179v-3,153,-80,231,-167,315r-132,126r1,3v108,-10,215,-5,329,-6r0,174r-593,0r0,-139r149,-150v70,-72,130,-138,173,-216v45,-83,24,-168,-94,-168v-58,0,-129,21,-214,62r0,-180","w":687},"\u00b3":{"d":"62,-1328v216,-74,532,-42,531,190v-1,95,-44,159,-116,191r0,4v77,23,136,84,134,184v-4,185,-149,267,-358,264v-75,0,-143,-12,-204,-35r0,-178v90,42,344,80,344,-59v0,-108,-133,-85,-240,-88r0,-166v103,0,222,8,222,-88v0,-61,-60,-79,-126,-79v-70,0,-134,15,-187,36r0,-176","w":656},"\u00bc":{"d":"1496,-1273r-976,1308r-130,-100r976,-1308xm1345,-511v-34,83,-61,140,-81,173r1,3v39,-4,94,-5,144,-5r0,-125r202,0r0,125r100,0r0,170r-100,0r0,161r-202,0r0,-161r-351,0r0,-133r207,-531r212,0xm268,-687r0,-461r-211,63r0,-179r246,-87r177,0r0,664r176,0r0,174r-586,0r0,-174r198,0","w":1731},"\u00bd":{"d":"1496,-1273r-976,1308r-130,-100r976,-1308xm268,-687r0,-461r-211,63r0,-179r246,-87r177,0r0,664r176,0r0,174r-586,0r0,-174r198,0xm1228,-800v196,-104,553,-84,548,179v-3,153,-80,231,-167,315r-132,126r1,3v108,-10,215,-5,329,-6r0,174r-593,0r0,-139r149,-150v70,-72,130,-138,173,-216v45,-83,24,-168,-94,-168v-58,0,-129,21,-214,62r0,-180","w":1852},"\u00be":{"d":"1401,-1273r-976,1308r-130,-100r976,-1308xm1267,-511v-34,83,-61,140,-81,173r1,3v39,-4,94,-5,144,-5r0,-125r202,0r0,125r100,0r0,170r-100,0r0,161r-202,0r0,-161r-351,0r0,-133r207,-531r212,0xm62,-1328v216,-74,532,-42,531,190v-1,95,-44,159,-116,191r0,4v77,23,136,84,134,184v-4,185,-149,267,-358,264v-75,0,-143,-12,-204,-35r0,-178v90,42,344,80,344,-59v0,-108,-133,-85,-240,-88r0,-166v103,0,222,8,222,-88v0,-61,-60,-79,-126,-79v-70,0,-134,15,-187,36r0,-176","w":1653},"%":{"d":"1378,-182v74,-75,61,-301,31,-421v-14,-56,-84,-101,-131,-53v-74,77,-60,301,-31,421v14,56,84,101,131,53xm1328,15v-236,0,-321,-186,-321,-434v0,-249,85,-434,321,-434v236,0,321,186,321,434v0,248,-85,434,-321,434xm1399,-1273r-976,1308r-130,-100r976,-1308xm416,-692v74,-75,61,-301,31,-421v-14,-56,-84,-101,-131,-53v-74,77,-60,301,-31,421v14,56,84,101,131,53xm366,-495v-236,0,-321,-186,-321,-434v0,-249,85,-434,321,-434v236,0,321,186,321,434v0,248,-85,434,-321,434","w":1694},"+":{"d":"114,-627r326,0r0,-344r200,0r0,344r326,0r0,191r-326,0r0,343r-200,0r0,-343r-326,0r0,-191"},"\u00b1":{"d":"114,-702r321,0r0,-267r210,0r0,267r321,0r0,181r-321,0r0,267r-210,0r0,-267r-321,0r0,-181xm966,0r-852,0r0,-191r852,0r0,191"},"\u00d7":{"d":"980,-227r-135,135r-306,-305r-305,305r-135,-135r305,-305r-305,-306r135,-135r305,306r306,-306r135,135r-306,306"},"\u00f7":{"d":"436,-281r208,0r0,207r-208,0r0,-207xm436,-989r208,0r0,207r-208,0r0,-207xm966,-436r-852,0r0,-191r852,0r0,191"},"=":{"d":"966,-619r-852,0r0,-191r852,0r0,191xm966,-234r-852,0r0,-191r852,0r0,191"},"<":{"d":"114,-639r852,-384r0,217r-628,267r0,4r628,267r0,217r-852,-384r0,-204"},">":{"d":"966,-435r-852,384r0,-217r628,-267r0,-4r-628,-267r0,-217r852,384r0,204"},"\u00ac":{"d":"966,-627r0,539r-200,0r0,-348r-652,0r0,-191r852,0"},"\u00b0":{"d":"165,-760v-81,-72,-136,-250,-75,-392v53,-122,161,-211,328,-211v167,0,275,90,328,211v36,84,36,196,0,280v-53,122,-161,211,-328,211v-108,0,-192,-45,-253,-99xm418,-1179v-101,0,-160,66,-160,167v0,100,60,166,160,166v101,0,161,-66,161,-166v0,-101,-59,-167,-161,-167","w":836},"\u00b5":{"d":"1047,-350v0,88,8,161,95,161v17,0,33,-2,48,-5r0,196v-27,7,-76,12,-107,12v-121,1,-186,-71,-204,-176r-4,0v-54,107,-136,187,-288,187v-101,0,-175,-43,-213,-111r-5,0r16,224r2,327r-237,0r0,-1434r237,0r0,523v-5,158,47,263,192,263v169,0,231,-125,231,-312r0,-474r237,0r0,619","w":1180}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2008 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Corbel is either a registered trademark or a trademark of Microsoft Corporation
 * in the United States and/or other countries.
 * 
 * Description:
 * Corbel is designed to give an uncluttered and clean appearance on screen. The
 * letter forms are open with soft, flowing curves. It is legible, clear and
 * functional at small sizes. At larger sizes the detailing and style of the shapes
 * is more apparent resulting in a modern sans serif type with a wide range of
 * possible uses.
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Designer:
 * Jeremy Tankard
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography/ctfonts
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/default.aspx
 */
Cufon.registerFont({"w":1050,"face":{"font-family":"corbel","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 5 3 2 2 4 9 2 4","ascent":"1523","descent":"-525","x-height":"25","bbox":"-300 -1883 1909 490","underline-thickness":"120","underline-position":"-130","slope":"-12","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":410,"k":{"\u0474":150,"\u0462":120,"\u040e":100,"\u040b":220,"\u0409":50,"\u0408":100,"\u0404":110,"\u0402":220,"\u042f":60,"\u042a":110,"\u0427":250,"\u0425":80,"\u0424":110,"\u0423":100,"\u0422":220,"\u0421":85,"\u041e":85,"\u041b":50,"\u0414":70,"\u0410":60,"\u00dd":200,"\u00dc":90,"\u00db":90,"\u00da":90,"\u00d9":90,"\u00d8":85,"\u00d6":85,"\u00d5":85,"\u00d4":85,"\u00d3":85,"\u00d2":85,"\u00c7":85,"\u00c6":100,"\u00c5":60,"\u00c4":60,"\u00c3":60,"\u00c2":60,"\u00c1":60,"\u00c0":60,"Z":70,"Y":200,"X":80,"W":125,"V":125,"U":90,"T":220,"S":80,"Q":85,"O":85,"J":100,"G":85,"C":85,"A":60}},"\u00a0":{"w":410},"A":{"d":"-40,0r741,-1338r137,0r264,1338r-165,0r-77,-403r-499,0r-221,403r-180,0xm441,-550r391,0r-48,-257v-22,-118,-39,-216,-50,-293r-4,0v-61,143,-200,389,-289,550","w":1252,"k":{"\"":140,"'":140,"\u2014":55,"\u2013":55,"\u00ab":65,"\u201d":130,"\u201c":180,"\u2019":130,"\u2018":180,"-":55,"\u00f0":30,"\u00ff":90,"\u00fd":90,"\u00fc":25,"\u00fb":25,"\u00fa":25,"\u00f9":25,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":90,"w":70,"v":80,"u":25,"t":40,"q":30,"o":30,"l":20,"g":30,"e":30,"d":30,"c":30,"b":30,"a":30,"\u00dd":120,"\u00d8":60,"\u00d6":60,"\u00d5":60,"\u00d4":60,"\u00d3":60,"\u00d2":60,"\u00c7":60,"Y":120,"W":120,"V":160,"T":100,"Q":60,"O":60,"G":60,"C":60}},"B":{"d":"1130,-1020v0,190,-117,291,-274,333r0,4v132,27,226,106,226,259v0,329,-300,421,-655,424r-352,0r279,-1338r313,0v223,-5,380,57,444,212v13,32,19,68,19,106xm898,-348v59,-167,-63,-264,-243,-264r-290,0r-97,465r183,0v223,3,392,-44,447,-201xm960,-1011v0,-207,-259,-180,-474,-180r-90,432r244,0v183,-3,320,-71,320,-252","w":1210,"k":{")":30,"\u201d":30,"\u201c":50,"\u2019":30,"\u2018":50,"\u00dd":80,"Y":80,"W":40,"V":70,"T":30}},"C":{"d":"1149,-1169v-115,-46,-302,-73,-436,-21v-259,100,-405,339,-413,686v-6,264,142,383,396,384v107,1,211,-24,292,-50r-31,149v-79,29,-185,46,-289,46v-338,0,-538,-174,-538,-518v0,-338,139,-578,336,-733v132,-104,360,-166,587,-122v49,10,91,21,126,34","w":1154,"k":{"\u2014":50,"\u2013":50,"\u00ab":60,"-":50,"\u00f0":30,"\u00ff":70,"\u00fd":70,"\u00fc":20,"\u00fb":20,"\u00fa":20,"\u00f9":20,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":70,"w":70,"v":70,"u":20,"t":20,"q":30,"o":30,"g":30,"e":30,"d":30,"c":30,"a":30,"\u00d8":30,"\u00d6":30,"\u00d5":30,"\u00d4":30,"\u00d3":30,"\u00d2":30,"\u00c7":30,"Q":30,"O":30,"C":30}},"D":{"d":"1102,-842v-6,-251,-154,-351,-414,-349r-203,0r-217,1044r134,0v429,4,634,-212,692,-579v7,-42,8,-81,8,-116xm691,-1338v365,0,581,159,581,513v0,355,-159,590,-398,723v-127,70,-279,102,-482,102r-317,0r278,-1338r338,0","w":1332,"k":{")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30,"\u00dd":50,"\u00c6":30,"Y":50,"X":30,"V":40,"T":40,"J":20}},"E":{"d":"268,-147r639,0r-30,147r-802,0r278,-1338r765,0r-31,147r-602,0r-90,432r538,0r-30,147r-538,0","w":1073},"F":{"d":"75,0r278,-1338r751,0r-31,147r-588,0r-89,432r523,0r-30,147r-524,0r-127,612r-163,0","w":979,"k":{"\u2026":95,".":95,",":130,"\u00ef":-80,"\u00ee":-65,"\u00c6":60,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"J":80,"A":50}},"G":{"d":"661,25v-336,0,-521,-180,-521,-520v0,-341,145,-575,346,-732v175,-137,547,-175,799,-80r-30,145v-130,-50,-340,-80,-495,-29v-277,94,-446,322,-446,680v0,247,112,391,355,391v225,0,331,-108,377,-306r27,-115r-306,0r31,-147r468,0v-42,168,-62,371,-142,496v-91,142,-240,217,-463,217","w":1375,"k":{"\u00ff":30,"\u00fd":30,"z":30,"y":30,"w":30,"v":30,"\u00dd":120,"Y":120,"W":115,"V":120,"T":50}},"H":{"d":"394,-759r664,0r120,-579r163,0r-278,1338r-163,0r127,-612r-662,0r-127,612r-163,0r278,-1338r163,0","w":1340},"I":{"d":"75,0r278,-1338r163,0r-278,1338r-163,0","w":511},"J":{"d":"10,-145v67,28,189,36,255,3v60,-29,88,-83,104,-160r216,-1036r163,0r-220,1059v-30,221,-200,336,-464,297v-31,-5,-59,-13,-84,-22","w":743},"K":{"d":"382,-677r701,-661r206,0r-723,678r494,660r-191,0r-491,-655r-3,0r-137,655r-163,0r278,-1338r163,0r-137,661r3,0","w":1169,"k":{"\u2014":85,"\u2013":85,"\u00ab":70,"-":85,"\u00f0":40,"\u00ff":60,"\u00fd":60,"\u00fc":30,"\u00fb":30,"\u00fa":30,"\u00f9":30,"\u00f8":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u00e7":40,"\u00e5":40,"\u00e4":40,"\u00e3":40,"\u00e2":40,"\u00e1":40,"\u00e0":40,"y":60,"w":80,"v":80,"u":30,"q":40,"o":40,"g":40,"e":40,"d":40,"c":40,"a":40,"\u00d8":60,"\u00d6":60,"\u00d5":60,"\u00d4":60,"\u00d3":60,"\u00d2":60,"\u00c7":60,"Q":60,"O":60,"G":60,"C":60}},"L":{"d":"268,-147r639,0r-30,147r-802,0r278,-1338r163,0","w":1017,"k":{"\"":160,"'":160,"\u2014":125,"\u2013":125,"\u00ab":70,"\u201d":140,"\u201c":240,"\u2019":140,"\u2018":240,"?":70,"-":125,"\u00ff":70,"\u00fd":70,"y":70,"w":70,"v":80,"t":20,"\u00dd":215,"\u00d8":50,"\u00d6":50,"\u00d5":50,"\u00d4":50,"\u00d3":50,"\u00d2":50,"\u00c7":50,"Y":215,"W":120,"V":170,"T":170,"Q":50,"O":50,"G":50,"C":50}},"M":{"d":"773,-279v59,-113,108,-204,148,-273r461,-786r243,0r-278,1338r-163,0r147,-703v17,-83,36,-163,55,-241v19,-78,36,-145,52,-204r-9,0v-188,375,-455,781,-670,1148r-80,0r-141,-742v-27,-139,-50,-274,-69,-406r-9,0v-23,158,-47,297,-72,418r-150,730r-163,0r278,-1338r226,0r150,815v17,94,31,175,40,244r4,0","w":1620},"N":{"d":"1008,-241r40,-254r175,-843r163,0r-278,1338r-152,0r-434,-937v-24,-55,-47,-110,-66,-163r-4,0v-7,55,-16,113,-25,172v-9,59,-20,115,-31,167r-158,761r-163,0r278,-1338r150,0r447,966v20,44,38,88,54,131r4,0","w":1381},"O":{"d":"865,-1363v320,0,502,170,502,492v0,337,-130,593,-321,753v-99,83,-230,143,-403,143v-320,0,-503,-169,-503,-492v0,-337,129,-593,321,-753v99,-83,231,-143,404,-143xm310,-479v-2,231,107,359,334,359v208,0,326,-118,412,-250v83,-127,139,-291,141,-489v2,-231,-107,-359,-334,-359v-208,0,-327,118,-413,250v-83,127,-138,291,-140,489","w":1427,"k":{")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30,"\u00dd":60,"\u00c6":30,"Y":60,"X":30,"V":40,"T":40,"J":40}},"P":{"d":"1141,-1021v0,396,-377,511,-788,465r-115,556r-163,0r278,-1338r327,0v229,-3,384,57,445,218v12,31,16,64,16,99xm964,-944v39,-180,-85,-247,-267,-247r-212,0r-101,489v270,37,532,-20,580,-242","w":1166,"k":{"]":40,")":40,"\u2014":80,"\u2013":80,"\u00ab":40,"?":50,"-":80,"\u2026":200,".":200,",":205,"\u00f0":60,"\u00fc":30,"\u00fb":30,"\u00fa":30,"\u00f9":30,"\u00f8":50,"\u00f6":50,"\u00f5":50,"\u00f4":50,"\u00f3":50,"\u00f2":50,"\u00e7":50,"\u00e5":50,"\u00e4":50,"\u00e3":50,"\u00e2":50,"\u00e1":50,"\u00e0":50,"u":30,"q":50,"o":50,"g":50,"e":50,"d":50,"c":50,"a":50,"\u00c6":140,"\u00c5":110,"\u00c4":110,"\u00c3":110,"\u00c2":110,"\u00c1":110,"\u00c0":110,"Z":60,"X":60,"J":150,"A":110}},"Q":{"d":"860,-1363v316,0,497,173,497,492v0,265,-94,472,-221,619v-46,52,-97,94,-153,125r0,4v91,-13,188,-17,302,-14r-31,147v-217,-20,-431,6,-648,6v-306,0,-476,-175,-476,-483v0,-339,131,-593,324,-753v100,-83,232,-143,406,-143xm300,-479v-2,231,107,359,334,359v208,0,326,-118,412,-250v83,-127,139,-291,141,-489v2,-231,-107,-359,-334,-359v-208,0,-327,118,-413,250v-83,127,-138,291,-140,489","w":1427,"k":{"\u201c":50,"\u2018":50}},"R":{"d":"1165,-1009v0,273,-184,388,-429,434r0,4r306,571r-182,0r-291,-554r-216,0r-115,554r-163,0r278,-1338r350,0v264,-4,462,90,462,329xm984,-920v52,-183,-73,-271,-271,-271r-228,0r-101,490r151,0v229,2,401,-50,449,-219","w":1190,"k":{"\u2014":60,"\u2013":60,"\u00ab":70,"\u201c":30,"\u2018":30,"-":60,"\u00dd":40,"Y":40}},"S":{"d":"419,-120v221,0,392,-71,392,-282v0,-218,-264,-202,-415,-278v-101,-51,-185,-118,-185,-266v0,-282,193,-412,480,-417v147,-3,287,35,386,77r-30,148v-91,-43,-222,-82,-350,-80v-178,3,-316,70,-316,242v0,200,234,194,378,256v125,54,223,133,223,308v0,231,-144,351,-330,407v-197,59,-481,27,-614,-60r31,-144v91,52,209,89,350,89","w":1120,"k":{")":50,"\u201d":60,"\u201c":60,"\u2019":70,"\u2018":60,"\u00ff":50,"\u00fd":50,"y":50,"w":40,"v":60,"t":30,"\u00dd":40,"Y":40,"W":40,"V":40}},"T":{"d":"503,0r-163,0r247,-1191r-415,0r31,-147r993,0r-31,147r-415,0","w":1059,"k":{"\u2014":110,"\u2013":110,"\u00bb":120,"\u00ab":120,"\u201c":-40,"\u2018":-40,"-":110,"\u2026":120,".":120,":":120,";":115,",":115,"\u00f0":80,"\u00ff":80,"\u00fd":80,"\u00fc":70,"\u00fb":70,"\u00fa":70,"\u00f9":70,"\u00f8":80,"\u00f6":80,"\u00f5":80,"\u00f4":80,"\u00f3":80,"\u00f2":80,"\u00f1":70,"\u00ef":-75,"\u00ee":-80,"\u00e7":80,"\u00e6":90,"\u00e5":80,"\u00e4":80,"\u00e3":80,"\u00e2":80,"\u00e1":80,"\u00e0":80,"z":70,"y":80,"x":60,"w":80,"v":80,"u":70,"s":60,"r":70,"q":80,"p":70,"o":80,"n":70,"m":70,"g":80,"e":80,"d":80,"c":80,"a":80,"\u00c6":70,"\u00c5":60,"\u00c4":60,"\u00c3":60,"\u00c2":60,"\u00c1":60,"\u00c0":60,"J":80,"A":60}},"U":{"d":"308,-450v-29,205,67,334,271,330v277,-6,387,-174,436,-410r167,-808r163,0r-177,858v-62,305,-235,500,-595,505v-298,4,-463,-164,-427,-471v4,-30,9,-62,16,-94r165,-798r163,0","w":1320,"k":{",":30}},"V":{"d":"1142,-1338r180,0r-731,1338r-139,0r-242,-1338r161,0r131,747v26,147,44,270,55,368r4,0v155,-352,399,-765,581,-1115","w":1172,"k":{"\u2014":40,"\u2013":40,"\u00bb":40,"\u00ab":40,"-":40,"\u2026":60,".":60,",":80,"\u00f0":50,"\u00f8":50,"\u00f6":50,"\u00f5":50,"\u00f4":50,"\u00f3":50,"\u00f2":50,"\u00ef":-80,"\u00ee":-85,"\u00e7":50,"\u00e5":50,"\u00e4":50,"\u00e3":50,"\u00e2":50,"\u00e1":50,"\u00e0":50,"s":30,"q":50,"o":50,"g":50,"e":50,"d":50,"c":50,"a":50,"\u00c6":70,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"J":40,"A":50}},"W":{"d":"1016,-717v-5,-124,-7,-217,-7,-278v1,-63,1,-98,1,-103r-5,0v-40,108,-83,222,-132,339r-320,759r-153,0r-190,-1338r163,0r94,734v25,199,38,324,40,376r4,0v27,-79,74,-201,142,-366r306,-744r171,0r36,758v5,129,9,246,11,352r4,0v21,-53,44,-108,69,-165v25,-57,57,-127,98,-206r381,-739r180,0r-707,1338r-153,0","w":1759,"k":{"\u2014":40,"\u2013":40,"\u00bb":40,"\u00ab":40,"-":40,"\u2026":60,".":60,",":80,"\u00f0":50,"\u00f8":50,"\u00f6":50,"\u00f5":50,"\u00f4":50,"\u00f3":50,"\u00f2":50,"\u00ef":-80,"\u00ee":-85,"\u00e7":50,"\u00e5":50,"\u00e4":50,"\u00e3":50,"\u00e2":50,"\u00e1":50,"\u00e0":50,"s":30,"q":50,"o":50,"g":50,"e":50,"d":50,"c":50,"a":50,"\u00c6":70,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"J":30,"A":50}},"X":{"d":"121,0r-195,0r609,-696r-292,-642r176,0r238,526r4,0r459,-526r195,0r-588,671r305,667r-176,0r-251,-550r-4,0","w":1188,"k":{"\u2014":60,"\u2013":60,"\u00ab":105,"-":60,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"q":30,"o":30,"g":30,"e":30,"d":30,"c":30,"a":30,"\u00d8":40,"\u00d6":40,"\u00d5":40,"\u00d4":40,"\u00d3":40,"\u00d2":40,"\u00c7":30,"Q":30,"O":40,"G":30,"C":30}},"Y":{"d":"400,0r113,-541r-313,-797r165,0r242,638r4,0r427,-638r189,0r-551,798r-113,540r-163,0","w":1097,"k":{"\u2014":70,"\u2013":70,"\u00bb":65,"\u00ab":80,"-":70,"\u2026":80,".":80,":":50,";":40,",":50,"\u00f0":90,"\u00fc":60,"\u00fb":60,"\u00fa":60,"\u00f9":60,"\u00f8":90,"\u00f6":90,"\u00f5":90,"\u00f4":90,"\u00f3":90,"\u00f2":90,"\u00f1":40,"\u00ef":-75,"\u00ee":-60,"\u00e7":90,"\u00e6":90,"\u00e5":90,"\u00e4":90,"\u00e3":90,"\u00e2":90,"\u00e1":90,"\u00e0":90,"z":50,"u":60,"s":60,"r":40,"q":90,"p":40,"o":90,"n":40,"m":40,"g":90,"e":90,"d":90,"c":90,"a":90,"\u00c6":90,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"J":70,"A":50}},"Z":{"d":"955,-1191r-698,0r31,-147r924,0r-21,102r-923,1085r0,4r728,0r-30,147r-956,0r21,-102r924,-1085r0,-4","w":1162,"k":{"\u2014":50,"\u2013":50,"\u00ab":60,"-":50}},"\u00c0":{"d":"756,-1656r95,247r-135,0r-130,-247r170,0xm-40,0r741,-1338r137,0r264,1338r-165,0r-77,-403r-499,0r-221,403r-180,0xm441,-550r391,0r-48,-257v-22,-118,-39,-216,-50,-293r-4,0v-61,143,-200,389,-289,550","w":1252,"k":{"\"":140,"'":140,"\u2014":55,"\u2013":55,"\u00ab":65,"\u201d":130,"\u201c":180,"\u2019":130,"\u2018":180,"-":55,"\u00f0":30,"\u00ff":90,"\u00fd":90,"\u00fc":25,"\u00fb":25,"\u00fa":25,"\u00f9":25,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":90,"w":70,"v":80,"u":25,"t":40,"q":30,"o":30,"l":20,"g":30,"e":30,"d":30,"c":30,"b":30,"a":30,"\u00dd":120,"\u00d8":60,"\u00d6":60,"\u00d5":60,"\u00d4":60,"\u00d3":60,"\u00d2":60,"\u00c7":60,"Y":120,"W":120,"V":160,"T":100,"Q":60,"O":60,"G":60,"C":60}},"\u00c1":{"d":"1091,-1656r-232,247r-143,0r193,-247r182,0xm-40,0r741,-1338r137,0r264,1338r-165,0r-77,-403r-499,0r-221,403r-180,0xm441,-550r391,0r-48,-257v-22,-118,-39,-216,-50,-293r-4,0v-61,143,-200,389,-289,550","w":1252,"k":{"\"":140,"'":140,"\u2014":55,"\u2013":55,"\u00ab":65,"\u201d":130,"\u201c":180,"\u2019":130,"\u2018":180,"-":55,"\u00f0":30,"\u00ff":90,"\u00fd":90,"\u00fc":25,"\u00fb":25,"\u00fa":25,"\u00f9":25,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":90,"w":70,"v":80,"u":25,"t":40,"q":30,"o":30,"l":20,"g":30,"e":30,"d":30,"c":30,"b":30,"a":30,"\u00dd":120,"\u00d8":60,"\u00d6":60,"\u00d5":60,"\u00d4":60,"\u00d3":60,"\u00d2":60,"\u00c7":60,"Y":120,"W":120,"V":160,"T":100,"Q":60,"O":60,"G":60,"C":60}},"\u00c2":{"d":"908,-1656r167,247r-151,0r-106,-151r-4,0r-167,151r-165,0r265,-247r161,0xm-40,0r741,-1338r137,0r264,1338r-165,0r-77,-403r-499,0r-221,403r-180,0xm441,-550r391,0r-48,-257v-22,-118,-39,-216,-50,-293r-4,0v-61,143,-200,389,-289,550","w":1252,"k":{"\"":140,"'":140,"\u2014":55,"\u2013":55,"\u00ab":65,"\u201d":130,"\u201c":180,"\u2019":130,"\u2018":180,"-":55,"\u00f0":30,"\u00ff":90,"\u00fd":90,"\u00fc":25,"\u00fb":25,"\u00fa":25,"\u00f9":25,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":90,"w":70,"v":80,"u":25,"t":40,"q":30,"o":30,"l":20,"g":30,"e":30,"d":30,"c":30,"b":30,"a":30,"\u00dd":120,"\u00d8":60,"\u00d6":60,"\u00d5":60,"\u00d4":60,"\u00d3":60,"\u00d2":60,"\u00c7":60,"Y":120,"W":120,"V":160,"T":100,"Q":60,"O":60,"G":60,"C":60}},"\u00c3":{"d":"869,-1560v64,36,127,-8,133,-73r130,0v-20,129,-94,236,-252,207v-82,-15,-122,-90,-207,-90v-48,0,-73,42,-82,87r-130,0v21,-115,70,-212,201,-212v91,0,146,47,207,81xm-40,0r741,-1338r137,0r264,1338r-165,0r-77,-403r-499,0r-221,403r-180,0xm441,-550r391,0r-48,-257v-22,-118,-39,-216,-50,-293r-4,0v-61,143,-200,389,-289,550","w":1252,"k":{"\"":140,"'":140,"\u2014":55,"\u2013":55,"\u00ab":65,"\u201d":130,"\u201c":180,"\u2019":130,"\u2018":180,"-":55,"\u00f0":30,"\u00ff":90,"\u00fd":90,"\u00fc":25,"\u00fb":25,"\u00fa":25,"\u00f9":25,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":90,"w":70,"v":80,"u":25,"t":40,"q":30,"o":30,"l":20,"g":30,"e":30,"d":30,"c":30,"b":30,"a":30,"\u00dd":120,"\u00d8":60,"\u00d6":60,"\u00d5":60,"\u00d4":60,"\u00d3":60,"\u00d2":60,"\u00c7":60,"Y":120,"W":120,"V":160,"T":100,"Q":60,"O":60,"G":60,"C":60}},"\u00c4":{"d":"523,-1448r35,-169r161,0r-35,169r-161,0xm906,-1448r35,-169r161,0r-35,169r-161,0xm-40,0r741,-1338r137,0r264,1338r-165,0r-77,-403r-499,0r-221,403r-180,0xm441,-550r391,0r-48,-257v-22,-118,-39,-216,-50,-293r-4,0v-61,143,-200,389,-289,550","w":1252,"k":{"\"":140,"'":140,"\u2014":55,"\u2013":55,"\u00ab":65,"\u201d":130,"\u201c":180,"\u2019":130,"\u2018":180,"-":55,"\u00f0":30,"\u00ff":90,"\u00fd":90,"\u00fc":25,"\u00fb":25,"\u00fa":25,"\u00f9":25,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":90,"w":70,"v":80,"u":25,"t":40,"q":30,"o":30,"l":20,"g":30,"e":30,"d":30,"c":30,"b":30,"a":30,"\u00dd":120,"\u00d8":60,"\u00d6":60,"\u00d5":60,"\u00d4":60,"\u00d3":60,"\u00d2":60,"\u00c7":60,"Y":120,"W":120,"V":160,"T":100,"Q":60,"O":60,"G":60,"C":60}},"\u00c5":{"d":"577,-1531v0,-142,107,-219,259,-219v118,0,205,44,205,155v0,142,-107,219,-259,219v-118,0,-205,-44,-205,-155xm701,-1544v0,46,36,71,89,70v74,-2,127,-38,127,-108v0,-46,-36,-71,-89,-70v-74,2,-127,38,-127,108xm-40,0r741,-1338r137,0r264,1338r-165,0r-77,-403r-499,0r-221,403r-180,0xm441,-550r391,0r-48,-257v-22,-118,-39,-216,-50,-293r-4,0v-61,143,-200,389,-289,550","w":1252,"k":{"\"":140,"'":140,"\u2014":55,"\u2013":55,"\u00ab":65,"\u201d":130,"\u201c":180,"\u2019":130,"\u2018":180,"-":55,"\u00f0":30,"\u00ff":90,"\u00fd":90,"\u00fc":25,"\u00fb":25,"\u00fa":25,"\u00f9":25,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":90,"w":70,"v":80,"u":25,"t":40,"q":30,"o":30,"l":20,"g":30,"e":30,"d":30,"c":30,"b":30,"a":30,"\u00dd":120,"\u00d8":60,"\u00d6":60,"\u00d5":60,"\u00d4":60,"\u00d3":60,"\u00d2":60,"\u00c7":60,"Y":120,"W":120,"V":160,"T":100,"Q":60,"O":60,"G":60,"C":60}},"\u00c6":{"d":"-40,0r907,-1338r864,0r-31,147r-584,0r-45,432r491,0r-30,147r-475,0r-48,465r586,0r-30,147r-734,0r41,-403r-453,0r-271,403r-188,0xm949,-1191r-431,641r369,0r67,-641r-5,0","w":1701},"\u00c7":{"d":"1149,-1169v-115,-46,-302,-73,-436,-21v-259,100,-405,339,-413,686v-6,264,142,383,396,384v107,1,211,-24,292,-50r-31,149v-91,33,-215,52,-337,44r-44,105v90,13,159,54,161,152v5,203,-241,243,-425,186r24,-112v83,33,265,37,265,-64v0,-79,-100,-69,-187,-75r89,-208v-233,-54,-373,-213,-373,-500v0,-338,139,-578,336,-733v132,-104,360,-166,587,-122v49,10,91,21,126,34","w":1154,"k":{"\u2014":50,"\u2013":50,"\u00ab":60,"-":50,"\u00f0":30,"\u00ff":70,"\u00fd":70,"\u00fc":20,"\u00fb":20,"\u00fa":20,"\u00f9":20,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":70,"w":70,"v":70,"u":20,"t":20,"q":30,"o":30,"g":30,"e":30,"d":30,"c":30,"a":30,"\u00d8":30,"\u00d6":30,"\u00d5":30,"\u00d4":30,"\u00d3":30,"\u00d2":30,"\u00c7":30,"Q":30,"O":30,"C":30}},"\u00c8":{"d":"738,-1656r95,247r-135,0r-130,-247r170,0xm268,-147r639,0r-30,147r-802,0r278,-1338r765,0r-31,147r-602,0r-90,432r538,0r-30,147r-538,0","w":1073},"\u00c9":{"d":"1026,-1656r-232,247r-143,0r193,-247r182,0xm268,-147r639,0r-30,147r-802,0r278,-1338r765,0r-31,147r-602,0r-90,432r538,0r-30,147r-538,0","w":1073},"\u00ca":{"d":"884,-1656r167,247r-151,0r-106,-151r-4,0r-167,151r-165,0r265,-247r161,0xm268,-147r639,0r-30,147r-802,0r278,-1338r765,0r-31,147r-602,0r-90,432r538,0r-30,147r-538,0","w":1073},"\u00cb":{"d":"484,-1448r35,-169r161,0r-35,169r-161,0xm867,-1448r35,-169r161,0r-35,169r-161,0xm268,-147r639,0r-30,147r-802,0r278,-1338r765,0r-31,147r-602,0r-90,432r538,0r-30,147r-538,0","w":1073},"\u00cc":{"d":"423,-1656r95,247r-135,0r-130,-247r170,0xm64,0r278,-1338r163,0r-278,1338r-163,0","w":511},"\u00cd":{"d":"724,-1656r-232,247r-143,0r193,-247r182,0xm59,0r278,-1338r163,0r-278,1338r-163,0","w":511},"\u00ce":{"d":"557,-1656r167,247r-151,0r-106,-151r-4,0r-167,151r-165,0r265,-247r161,0xm64,0r278,-1338r163,0r-278,1338r-163,0","w":511},"\u00cf":{"d":"168,-1448r35,-169r161,0r-35,169r-161,0xm551,-1448r35,-169r161,0r-35,169r-161,0xm64,0r278,-1338r163,0r-278,1338r-163,0","w":511},"\u00d1":{"d":"964,-1560v64,36,127,-8,133,-73r130,0v-20,129,-94,236,-252,207v-82,-15,-122,-90,-207,-90v-48,0,-73,42,-82,87r-130,0v21,-115,70,-212,201,-212v91,0,146,47,207,81xm1008,-241r40,-254r175,-843r163,0r-278,1338r-152,0r-434,-937v-24,-55,-47,-110,-66,-163r-4,0v-7,55,-16,113,-25,172v-9,59,-20,115,-31,167r-158,761r-163,0r278,-1338r150,0r447,966v20,44,38,88,54,131r4,0","w":1381},"\u00d2":{"d":"847,-1656r95,247r-135,0r-130,-247r170,0xm865,-1363v320,0,502,170,502,492v0,337,-130,593,-321,753v-99,83,-230,143,-403,143v-320,0,-503,-169,-503,-492v0,-337,129,-593,321,-753v99,-83,231,-143,404,-143xm310,-479v-2,231,107,359,334,359v208,0,326,-118,412,-250v83,-127,139,-291,141,-489v2,-231,-107,-359,-334,-359v-208,0,-327,118,-413,250v-83,127,-138,291,-140,489","w":1427,"k":{")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30,"\u00dd":60,"\u00c6":30,"Y":60,"X":30,"V":40,"T":40,"J":40}},"\u00d3":{"d":"1163,-1656r-232,247r-143,0r193,-247r182,0xm865,-1363v320,0,502,170,502,492v0,337,-130,593,-321,753v-99,83,-230,143,-403,143v-320,0,-503,-169,-503,-492v0,-337,129,-593,321,-753v99,-83,231,-143,404,-143xm310,-479v-2,231,107,359,334,359v208,0,326,-118,412,-250v83,-127,139,-291,141,-489v2,-231,-107,-359,-334,-359v-208,0,-327,118,-413,250v-83,127,-138,291,-140,489","w":1427,"k":{")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30,"\u00dd":60,"\u00c6":30,"Y":60,"X":30,"V":40,"T":40,"J":40}},"\u00d4":{"d":"1010,-1656r167,247r-151,0r-106,-151r-4,0r-167,151r-165,0r265,-247r161,0xm865,-1363v320,0,502,170,502,492v0,337,-130,593,-321,753v-99,83,-230,143,-403,143v-320,0,-503,-169,-503,-492v0,-337,129,-593,321,-753v99,-83,231,-143,404,-143xm310,-479v-2,231,107,359,334,359v208,0,326,-118,412,-250v83,-127,139,-291,141,-489v2,-231,-107,-359,-334,-359v-208,0,-327,118,-413,250v-83,127,-138,291,-140,489","w":1427,"k":{")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30,"\u00dd":60,"\u00c6":30,"Y":60,"X":30,"V":40,"T":40,"J":40}},"\u00d5":{"d":"983,-1560v64,36,127,-8,133,-73r130,0v-20,129,-94,236,-252,207v-82,-15,-122,-90,-207,-90v-48,0,-73,42,-82,87r-130,0v21,-115,70,-212,201,-212v91,0,146,47,207,81xm865,-1363v320,0,502,170,502,492v0,337,-130,593,-321,753v-99,83,-230,143,-403,143v-320,0,-503,-169,-503,-492v0,-337,129,-593,321,-753v99,-83,231,-143,404,-143xm310,-479v-2,231,107,359,334,359v208,0,326,-118,412,-250v83,-127,139,-291,141,-489v2,-231,-107,-359,-334,-359v-208,0,-327,118,-413,250v-83,127,-138,291,-140,489","w":1427,"k":{")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30,"\u00dd":60,"\u00c6":30,"Y":60,"X":30,"V":40,"T":40,"J":40}},"\u00d6":{"d":"617,-1448r35,-169r161,0r-35,169r-161,0xm1000,-1448r35,-169r161,0r-35,169r-161,0xm865,-1363v320,0,502,170,502,492v0,337,-130,593,-321,753v-99,83,-230,143,-403,143v-320,0,-503,-169,-503,-492v0,-337,129,-593,321,-753v99,-83,231,-143,404,-143xm310,-479v-2,231,107,359,334,359v208,0,326,-118,412,-250v83,-127,139,-291,141,-489v2,-231,-107,-359,-334,-359v-208,0,-327,118,-413,250v-83,127,-138,291,-140,489","w":1427,"k":{")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30,"\u00dd":60,"\u00c6":30,"Y":60,"X":30,"V":40,"T":40,"J":40}},"\u00d8":{"d":"643,-1324v188,-72,459,-39,575,75r110,-114r98,97r-121,125v104,178,58,502,-18,681v-85,201,-216,368,-422,446v-191,72,-454,42,-577,-76r-112,115r-98,-97r123,-127v-105,-184,-56,-498,19,-679v83,-201,217,-367,423,-446xm397,-203v81,88,283,108,415,51v207,-91,323,-294,373,-541v22,-108,24,-223,-4,-320xm1108,-1136v-82,-88,-281,-107,-412,-50v-207,91,-324,294,-374,541v-21,105,-24,226,3,318","w":1427,"k":{")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30,"\u00dd":60,"\u00c6":30,"Y":60,"X":30,"V":40,"T":40,"J":40}},"\u00d9":{"d":"829,-1656r95,247r-135,0r-130,-247r170,0xm308,-450v-29,205,67,334,271,330v277,-6,387,-174,436,-410r167,-808r163,0r-177,858v-62,305,-235,500,-595,505v-298,4,-463,-164,-427,-471v4,-30,9,-62,16,-94r165,-798r163,0","w":1320,"k":{",":30}},"\u00da":{"d":"1117,-1656r-232,247r-143,0r193,-247r182,0xm308,-450v-29,205,67,334,271,330v277,-6,387,-174,436,-410r167,-808r163,0r-177,858v-62,305,-235,500,-595,505v-298,4,-463,-164,-427,-471v4,-30,9,-62,16,-94r165,-798r163,0","w":1320,"k":{",":30}},"\u00db":{"d":"974,-1656r167,247r-151,0r-106,-151r-4,0r-167,151r-165,0r265,-247r161,0xm308,-450v-29,205,67,334,271,330v277,-6,387,-174,436,-410r167,-808r163,0r-177,858v-62,305,-235,500,-595,505v-298,4,-463,-164,-427,-471v4,-30,9,-62,16,-94r165,-798r163,0","w":1320,"k":{",":30}},"\u00dc":{"d":"578,-1448r35,-169r161,0r-35,169r-161,0xm961,-1448r35,-169r161,0r-35,169r-161,0xm308,-450v-29,205,67,334,271,330v277,-6,387,-174,436,-410r167,-808r163,0r-177,858v-62,305,-235,500,-595,505v-298,4,-463,-164,-427,-471v4,-30,9,-62,16,-94r165,-798r163,0","w":1320,"k":{",":30}},"\u00dd":{"d":"987,-1656r-232,247r-143,0r193,-247r182,0xm400,0r113,-541r-313,-797r165,0r242,638r4,0r427,-638r189,0r-551,798r-113,540r-163,0","w":1097,"k":{"\u2014":70,"\u2013":70,"\u00bb":65,"\u00ab":80,"-":70,"\u2026":80,".":80,":":50,";":40,",":50,"\u00f0":90,"\u00fc":60,"\u00fb":60,"\u00fa":60,"\u00f9":60,"\u00f8":90,"\u00f6":90,"\u00f5":90,"\u00f4":90,"\u00f3":90,"\u00f2":90,"\u00f1":40,"\u00ef":-75,"\u00ee":-60,"\u00e7":90,"\u00e6":90,"\u00e5":90,"\u00e4":90,"\u00e3":90,"\u00e2":90,"\u00e1":90,"\u00e0":90,"z":50,"u":60,"s":60,"r":40,"q":90,"p":40,"o":90,"n":40,"m":40,"g":90,"e":90,"d":90,"c":90,"a":90,"\u00c6":90,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"J":70,"A":50}},"\u00d0":{"d":"715,-1338v365,0,581,160,581,513v0,356,-159,590,-398,723v-127,71,-278,102,-482,102r-317,0r127,-612r-146,0r31,-147r145,0r121,-579r338,0xm1126,-842v-6,-251,-155,-351,-414,-349r-203,0r-90,432r362,0r-31,147r-362,0r-96,465r134,0v430,4,634,-211,692,-579v7,-42,8,-81,8,-116","w":1356,"k":{")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30,"\u00dd":50,"\u00c6":30,"Y":50,"X":30,"V":40,"T":40,"J":20}},"\u00de":{"d":"1080,-750v0,389,-375,486,-779,443r-63,307r-163,0r278,-1338r163,0r-57,271r160,0v229,-3,384,56,445,217v12,31,16,65,16,100xm910,-741v0,-141,-118,-179,-274,-179r-207,0r-97,467v281,35,578,-14,578,-288","w":1120,"k":{"]":40,")":40,"\u201c":60,"\u2018":60,"\u2026":80,".":80,",":80,"\u00dd":110,"\u00c6":50,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"Z":50,"Y":110,"X":50,"W":40,"V":80,"J":60,"A":20}},"a":{"d":"274,-538v-47,146,-81,431,109,431v142,0,218,-111,273,-219v58,-113,73,-272,106,-411v-41,-54,-92,-106,-187,-106v-184,0,-254,158,-301,305xm809,15v-116,-2,-157,-50,-155,-171r-4,0v-69,97,-156,176,-307,181v-304,10,-290,-406,-203,-639v55,-147,143,-272,281,-333v43,-19,91,-28,142,-28v106,0,185,48,223,120r4,0r46,-95r126,0r-153,731v-13,61,-14,106,54,103v19,0,41,-2,66,-6r-27,128v-28,6,-59,9,-93,9","w":1037,"k":{"\u2014":50,"\u2013":50,"\u201c":40,"\u2018":40,"-":50,"\u2026":-30,".":-30,":":-30}},"b":{"d":"391,25v-217,2,-326,-164,-279,-388r227,-1085r155,0r-130,621r4,0v58,-79,133,-148,267,-148v191,0,289,129,289,332v0,316,-130,544,-364,639v-50,20,-107,29,-169,29xm730,-400v60,-162,74,-447,-137,-442v-119,3,-190,76,-239,161v-55,95,-69,240,-94,363v-24,119,34,216,150,211v188,-8,266,-148,320,-293","w":999,"k":{"\u201d":50,"\u201c":60,"\u2019":50,"\u2018":60,"x":20}},"c":{"d":"516,20v-267,29,-437,-101,-431,-362v7,-300,132,-513,358,-604v126,-51,312,-25,411,24r-27,132v-88,-41,-233,-74,-335,-26v-162,74,-244,242,-252,464v-5,161,73,242,230,242v93,0,191,-30,251,-62r-28,142v-47,25,-111,43,-177,50","w":849,"k":{"}":-50,"]":-40,")":-50,"\u2014":50,"\u2013":50,"-":50,"\u00e7":20,"c":20}},"d":{"d":"275,-540v-50,150,-78,433,115,433v143,0,220,-110,276,-219v58,-113,73,-272,106,-411v-41,-56,-99,-105,-196,-105v-182,0,-253,157,-301,302xm660,-156v-69,97,-158,176,-310,181v-309,11,-301,-409,-208,-645v72,-182,182,-346,420,-355v112,-4,189,49,230,121r4,0r124,-594r155,0r-261,1260v-22,78,57,79,125,66r-27,128v-22,6,-63,9,-93,9v-116,-2,-157,-50,-155,-171r-4,0","k":{"\u2014":50,"\u2013":50,"-":50,"\u2026":-30,".":-30,":":-30}},"e":{"d":"598,-975v171,0,296,75,296,246v0,214,-178,269,-376,301v-80,13,-173,18,-276,21v-24,223,103,322,328,291v74,-10,146,-29,203,-56r-28,142v-70,31,-167,56,-271,55v-253,-1,-389,-131,-389,-379v0,-302,135,-509,361,-596v47,-18,97,-25,152,-25xm739,-735v-2,-113,-153,-128,-249,-87v-112,47,-184,149,-219,276v181,-2,350,-14,436,-102v22,-23,32,-53,32,-87","w":934},"f":{"d":"870,-1322v-97,-27,-217,-18,-280,42v-68,64,-92,212,-116,330r261,0r-28,133r-261,0r-197,948v-43,243,-196,392,-490,352v-25,-3,-43,-9,-54,-13r25,-132v56,20,150,23,206,2v108,-41,142,-148,170,-278r184,-879r-175,0r28,-133r175,0r34,-165v40,-261,253,-415,542,-336","w":644,"k":{"\"":-85,"'":-85,"}":-80,"]":-115,")":-105,"\u2014":60,"\u2013":60,"\u201d":-55,"\u201c":-85,"\u2019":-55,"\u2018":-85,"?":-60,"!":-60,"-":60,"\u2026":60,".":60,",":50,"\u00ef":-150,"\u00ee":-95,"\u00ec":-95}},"g":{"d":"286,-538v-50,149,-80,431,113,431v143,0,220,-111,277,-219v59,-113,72,-272,105,-411v-41,-55,-96,-106,-193,-106v-183,0,-253,159,-302,305xm-18,303v107,47,286,70,413,30v191,-61,228,-273,271,-484r-4,0v-68,96,-152,171,-303,176v-307,9,-298,-404,-207,-639v57,-147,144,-272,284,-333v44,-19,92,-28,143,-28v106,0,189,49,227,121r4,0r46,-96r126,0r-208,1008v-57,269,-213,430,-531,432v-111,0,-205,-22,-288,-51","w":1022,"k":{"j":-30,"f":-30}},"h":{"d":"818,-666v17,-114,-34,-180,-140,-177v-206,7,-312,143,-349,319r-109,524r-155,0r301,-1448r155,0r-131,627r4,0v73,-86,176,-153,322,-154v187,-1,299,115,258,313r-136,662r-155,0r121,-585v7,-34,12,-61,14,-81","w":1070,"k":{"\u201c":80,"\u2018":80}},"i":{"d":"55,0r197,-950r155,0r-197,950r-155,0xm294,-1171r35,-171r163,0r-35,171r-163,0","w":437,"k":{"}":-20,"]":-20}},"j":{"d":"-274,339v88,25,215,23,259,-37v35,-48,54,-110,70,-187r221,-1065r155,0r-233,1127v-38,189,-128,313,-355,313v-51,0,-110,-10,-143,-20xm318,-1171r35,-171r163,0r-35,171r-163,0","w":461,"k":{"j":-40}},"k":{"d":"818,19v-314,34,-323,-292,-449,-480v-12,-18,-29,-29,-46,-36r-103,497r-155,0r301,-1448r155,0r-191,919r5,0r452,-421r212,0r-492,442v113,118,90,380,305,397v10,0,21,-1,33,-3","w":929,"k":{"\u2014":60,"\u2013":60,"\u00ab":40,"-":60,"\u00f8":20,"\u00f6":20,"\u00f5":20,"\u00f4":20,"\u00f3":20,"\u00f2":20,"\u00e7":20,"\u00e5":20,"\u00e4":20,"\u00e3":20,"\u00e2":20,"\u00e1":20,"\u00e0":20,"q":20,"o":20,"g":20,"e":20,"d":20,"c":20,"a":20}},"l":{"d":"262,-233v-15,66,-19,114,52,113v22,0,44,-2,66,-6r-27,132v-24,6,-62,9,-94,9v-106,0,-168,-36,-169,-137v0,-20,3,-43,8,-70r263,-1256r155,0","w":491},"m":{"d":"694,-975v136,0,215,71,230,195r4,0v76,-105,174,-195,342,-195v177,0,275,125,236,313r-136,662r-155,0r125,-604v8,-39,12,-70,13,-106v2,-86,-47,-136,-127,-133v-141,5,-226,95,-282,193v-21,39,-36,81,-45,126r-109,524r-155,0r125,-604v8,-39,11,-70,13,-106v8,-136,-134,-158,-236,-108v-111,53,-190,158,-218,294r-109,524r-155,0r198,-950r127,0r0,129r4,0v70,-86,171,-154,310,-154","w":1602,"k":{"\u201c":70,"\u2018":70}},"n":{"d":"811,-710v0,-144,-160,-155,-268,-108v-118,51,-195,155,-224,294r-109,524r-155,0r198,-950r127,0r0,129r4,0v75,-87,178,-153,329,-154v184,-1,291,118,251,313r-136,662r-155,0r122,-590v11,-49,16,-89,16,-120","w":1060,"k":{"\u201c":80,"\u2018":80}},"o":{"d":"746,-381v66,-173,74,-474,-155,-462v-181,8,-258,138,-311,275v-26,66,-40,146,-40,229v0,139,56,232,195,232v180,0,258,-137,311,-274xm600,-975v275,-3,382,225,328,507v-42,217,-150,389,-338,464v-49,19,-105,29,-166,29v-269,2,-379,-215,-326,-493v42,-220,149,-399,337,-477v49,-20,104,-30,165,-30","w":1006,"k":{"\u201c":60,"\u2018":60,"x":20}},"p":{"d":"757,-408v51,-151,78,-442,-118,-434v-140,6,-218,112,-273,220v-62,120,-76,289,-111,435v46,44,103,84,194,80v185,-8,258,-155,308,-301xm610,-3v-124,53,-307,25,-376,-57r-4,0r-110,525r-155,0r294,-1415r127,0r0,130r4,0v68,-83,146,-150,285,-155v309,-10,312,406,219,647v-55,144,-144,265,-284,325","w":1023,"k":{"\u201c":60,"\u2018":60,"x":20}},"q":{"d":"276,-542v-50,149,-81,435,113,435v143,0,221,-111,277,-219v59,-113,73,-272,106,-411v-42,-54,-96,-106,-192,-106v-184,0,-255,155,-304,301xm568,-975v106,0,191,49,228,121r4,0r46,-96r126,0r-295,1415r-156,0r127,-605r-4,-1v-68,91,-150,163,-298,166v-303,6,-294,-410,-204,-645v56,-145,143,-270,283,-328v44,-18,92,-27,143,-27","w":1012},"r":{"d":"384,-821v69,-96,185,-176,357,-148r-31,151v-229,-27,-352,106,-391,294r-109,524r-155,0r198,-950r127,0r0,129r4,0","w":651,"k":{"\u2014":60,"\u2013":60,"\u201d":-40,"\u2019":-40,"-":60,"\u2026":60,".":60,",":60}},"s":{"d":"749,-782v-131,-68,-448,-118,-448,87v0,130,146,133,241,177v88,41,162,93,162,222v0,277,-273,358,-550,304v-52,-11,-94,-25,-124,-43r29,-130v69,29,152,59,250,58v140,-1,243,-46,243,-169v0,-148,-180,-143,-280,-200v-69,-40,-121,-90,-125,-197v-11,-315,391,-358,629,-237","w":816},"t":{"d":"334,-285v-26,101,-10,175,110,175v43,0,109,-10,145,-19r-27,135v-36,10,-108,19,-159,19v-183,0,-269,-95,-232,-272r118,-570r-184,0r28,-133r184,0r54,-260r156,0r-54,260r251,0r-27,133r-252,0","w":699,"k":{"\u2014":40,"\u2013":40,"\u00ab":30,"-":40}},"u":{"d":"278,-367v-36,146,16,260,170,260v173,0,238,-107,269,-251r123,-592r155,0r-129,618v-43,215,-161,357,-424,357v-237,0,-371,-142,-321,-382r123,-593r155,0","w":1020},"v":{"d":"271,-950r133,659v8,41,14,77,19,109r4,0r121,-224r306,-544r178,0r-559,950r-147,0r-208,-950r153,0","w":957,"k":{"?":60,"\u2026":60,".":60,",":65}},"w":{"d":"773,-775r-85,217r-242,558r-163,0r-165,-950r158,0r112,767r5,0r98,-248r226,-519r168,0r69,706v2,22,3,42,4,61r5,0v116,-269,265,-512,395,-767r176,0r-529,950r-160,0r-59,-640r-7,-135r-6,0","w":1459,"k":{"?":60,"\u2026":60,".":60,",":65}},"x":{"d":"667,0r-200,-370r-4,0r-329,370r-184,0r444,-491r-258,-459r166,0r196,361r4,0r322,-361r184,0r-437,483r262,467r-166,0","w":933,"k":{"\u2014":60,"\u2013":60,"\u00ab":40,"?":40,"-":60,"\u00f0":20,"\u00f8":20,"\u00f6":20,"\u00f5":20,"\u00f4":20,"\u00f3":20,"\u00f2":20,"\u00e7":20,"\u00e5":20,"\u00e4":20,"\u00e3":20,"\u00e2":20,"\u00e1":20,"\u00e0":20,"q":20,"o":20,"g":20,"e":20,"d":20,"c":20,"a":20}},"y":{"d":"-107,349v189,25,280,-78,357,-197v29,-46,59,-101,90,-165r-216,-937r160,0r165,751r4,0r405,-751r179,0r-543,977v-92,159,-184,339,-346,421v-75,38,-180,51,-283,35","w":962,"k":{"?":50,"\u2026":80,".":80,",":60}},"z":{"d":"634,-813r0,-4r-464,0r28,-133r666,0r-20,98r-605,715r0,4r505,0r-27,133r-717,0r17,-84","w":874,"k":{"\u00ab":30,"?":40}},"\u00e0":{"d":"274,-538v-47,146,-81,431,109,431v142,0,218,-111,273,-219v58,-113,73,-272,106,-411v-41,-54,-92,-106,-187,-106v-184,0,-254,158,-301,305xm809,15v-116,-2,-157,-50,-155,-171r-4,0v-69,97,-156,176,-307,181v-304,10,-290,-406,-203,-639v55,-147,143,-272,281,-333v43,-19,91,-28,142,-28v106,0,185,48,223,120r4,0r46,-95r126,0r-153,731v-13,61,-14,106,54,103v19,0,41,-2,66,-6r-27,128v-28,6,-59,9,-93,9xm624,-1473r50,349r-126,0r-88,-349r164,0","w":1037,"k":{"\u2014":50,"\u2013":50,"\u201c":40,"\u2018":40,"-":50,"\u2026":-30,".":-30,":":-30}},"\u00e1":{"d":"274,-538v-47,146,-81,431,109,431v142,0,218,-111,273,-219v58,-113,73,-272,106,-411v-41,-54,-92,-106,-187,-106v-184,0,-254,158,-301,305xm809,15v-116,-2,-157,-50,-155,-171r-4,0v-69,97,-156,176,-307,181v-304,10,-290,-406,-203,-639v55,-147,143,-272,281,-333v43,-19,91,-28,142,-28v106,0,185,48,223,120r4,0r46,-95r126,0r-153,731v-13,61,-14,106,54,103v19,0,41,-2,66,-6r-27,128v-28,6,-59,9,-93,9xm884,-1473r-234,349r-134,0r192,-349r176,0","w":1037,"k":{"\u2014":50,"\u2013":50,"\u201c":40,"\u2018":40,"-":50,"\u2026":-30,".":-30,":":-30}},"\u00e2":{"d":"749,-1473r139,349r-135,0r-96,-246r-4,0r-197,246r-145,0r281,-349r157,0xm274,-538v-47,146,-81,431,109,431v142,0,218,-111,273,-219v58,-113,73,-272,106,-411v-41,-54,-92,-106,-187,-106v-184,0,-254,158,-301,305xm809,15v-116,-2,-157,-50,-155,-171r-4,0v-69,97,-156,176,-307,181v-304,10,-290,-406,-203,-639v55,-147,143,-272,281,-333v43,-19,91,-28,142,-28v106,0,185,48,223,120r4,0r46,-95r126,0r-153,731v-13,61,-14,106,54,103v19,0,41,-2,66,-6r-27,128v-28,6,-59,9,-93,9","w":1037,"k":{"\u2014":50,"\u2013":50,"\u201c":40,"\u2018":40,"-":50,"\u2026":-30,".":-30,":":-30}},"\u00e3":{"d":"723,-1309v64,36,127,-8,133,-73r130,0v-17,137,-113,246,-274,200v-67,-19,-112,-83,-185,-83v-50,0,-73,42,-82,87r-130,0v21,-115,70,-212,201,-212v91,0,146,47,207,81xm274,-538v-47,146,-81,431,109,431v142,0,218,-111,273,-219v58,-113,73,-272,106,-411v-41,-54,-92,-106,-187,-106v-184,0,-254,158,-301,305xm809,15v-116,-2,-157,-50,-155,-171r-4,0v-69,97,-156,176,-307,181v-304,10,-290,-406,-203,-639v55,-147,143,-272,281,-333v43,-19,91,-28,142,-28v106,0,185,48,223,120r4,0r46,-95r126,0r-153,731v-13,61,-14,106,54,103v19,0,41,-2,66,-6r-27,128v-28,6,-59,9,-93,9","w":1037,"k":{"\u2014":50,"\u2013":50,"\u201c":40,"\u2018":40,"-":50,"\u2026":-30,".":-30,":":-30}},"\u00e4":{"d":"274,-538v-47,146,-81,431,109,431v142,0,218,-111,273,-219v58,-113,73,-272,106,-411v-41,-54,-92,-106,-187,-106v-184,0,-254,158,-301,305xm809,15v-116,-2,-157,-50,-155,-171r-4,0v-69,97,-156,176,-307,181v-304,10,-290,-406,-203,-639v55,-147,143,-272,281,-333v43,-19,91,-28,142,-28v106,0,185,48,223,120r4,0r46,-95r126,0r-153,731v-13,61,-14,106,54,103v19,0,41,-2,66,-6r-27,128v-28,6,-59,9,-93,9xm372,-1171r35,-167r159,0r-35,167r-159,0xm753,-1171r35,-167r159,0r-35,167r-159,0","w":1037,"k":{"\u2014":50,"\u2013":50,"\u201c":40,"\u2018":40,"-":50,"\u2026":-30,".":-30,":":-30}},"\u00e5":{"d":"409,-1268v0,-141,107,-218,259,-222v122,-2,205,56,205,167v0,141,-107,218,-259,222v-122,2,-205,-56,-205,-167xm533,-1275v0,49,34,77,89,76v76,-3,127,-44,127,-117v0,-49,-34,-78,-89,-76v-76,2,-127,43,-127,117xm274,-538v-47,146,-81,431,109,431v142,0,218,-111,273,-219v58,-113,73,-272,106,-411v-41,-54,-92,-106,-187,-106v-184,0,-254,158,-301,305xm809,15v-116,-2,-157,-50,-155,-171r-4,0v-69,97,-156,176,-307,181v-304,10,-290,-406,-203,-639v55,-147,143,-272,281,-333v43,-19,91,-28,142,-28v106,0,185,48,223,120r4,0r46,-95r126,0r-153,731v-13,61,-14,106,54,103v19,0,41,-2,66,-6r-27,128v-28,6,-59,9,-93,9","w":1037,"k":{"\u2014":50,"\u2013":50,"\u201c":40,"\u2018":40,"-":50,"\u2026":-30,".":-30,":":-30}},"\u00e6":{"d":"1109,25v-196,0,-309,-83,-348,-238r-3,0v-76,126,-204,238,-402,238v-177,0,-286,-92,-286,-268v0,-233,169,-341,403,-341v95,0,188,17,265,37v19,-194,-64,-299,-246,-296v-94,2,-186,27,-260,54r28,-135v71,-31,159,-51,259,-51v179,0,302,70,332,218r4,0v79,-122,189,-218,385,-218v167,0,289,78,289,246v0,217,-182,269,-385,301v-83,13,-173,19,-267,21v-17,196,68,300,258,296v97,-1,198,-26,273,-61r-28,142v-68,31,-171,56,-271,55xm225,-254v-8,135,130,176,245,128v120,-50,203,-155,244,-290v-64,-17,-157,-35,-235,-34v-147,2,-246,59,-254,196xm1374,-735v-2,-113,-155,-129,-250,-87v-112,48,-184,149,-219,277v183,-2,352,-13,437,-103v22,-23,32,-53,32,-87","w":1569},"\u00e7":{"d":"347,15v-165,-38,-262,-152,-262,-357v0,-300,132,-513,358,-604v126,-51,312,-25,411,24r-27,132v-88,-41,-233,-74,-335,-26v-162,74,-244,242,-252,464v-5,161,73,242,230,242v93,0,191,-30,251,-62r-28,142v-63,32,-139,50,-226,54r-43,104v90,13,159,54,161,152v5,203,-241,243,-425,186r24,-112v82,33,265,37,265,-64v0,-79,-100,-69,-187,-75","w":849,"k":{"}":-50,"]":-40,")":-50,"\u2014":50,"\u2013":50,"-":50,"\u00e7":20,"c":20}},"\u00e8":{"d":"637,-1473r50,349r-126,0r-88,-349r164,0xm598,-975v171,0,296,75,296,246v0,214,-178,269,-376,301v-80,13,-173,18,-276,21v-24,223,103,322,328,291v74,-10,146,-29,203,-56r-28,142v-70,31,-167,56,-271,55v-253,-1,-389,-131,-389,-379v0,-302,135,-509,361,-596v47,-18,97,-25,152,-25xm739,-735v-2,-113,-153,-128,-249,-87v-112,47,-184,149,-219,276v181,-2,350,-14,436,-102v22,-23,32,-53,32,-87","w":934},"\u00e9":{"d":"901,-1473r-234,349r-134,0r192,-349r176,0xm598,-975v171,0,296,75,296,246v0,214,-178,269,-376,301v-80,13,-173,18,-276,21v-24,223,103,322,328,291v74,-10,146,-29,203,-56r-28,142v-70,31,-167,56,-271,55v-253,-1,-389,-131,-389,-379v0,-302,135,-509,361,-596v47,-18,97,-25,152,-25xm739,-735v-2,-113,-153,-128,-249,-87v-112,47,-184,149,-219,276v181,-2,350,-14,436,-102v22,-23,32,-53,32,-87","w":934},"\u00ea":{"d":"753,-1473r139,349r-135,0r-96,-246r-4,0r-197,246r-145,0r281,-349r157,0xm598,-975v171,0,296,75,296,246v0,214,-178,269,-376,301v-80,13,-173,18,-276,21v-24,223,103,322,328,291v74,-10,146,-29,203,-56r-28,142v-70,31,-167,56,-271,55v-253,-1,-389,-131,-389,-379v0,-302,135,-509,361,-596v47,-18,97,-25,152,-25xm739,-735v-2,-113,-153,-128,-249,-87v-112,47,-184,149,-219,276v181,-2,350,-14,436,-102v22,-23,32,-53,32,-87","w":934},"\u00eb":{"d":"345,-1171r35,-167r159,0r-35,167r-159,0xm726,-1171r35,-167r159,0r-35,167r-159,0xm598,-975v171,0,296,75,296,246v0,214,-178,269,-376,301v-80,13,-173,18,-276,21v-24,223,103,322,328,291v74,-10,146,-29,203,-56r-28,142v-70,31,-167,56,-271,55v-253,-1,-389,-131,-389,-379v0,-302,135,-509,361,-596v47,-18,97,-25,152,-25xm739,-735v-2,-113,-153,-128,-249,-87v-112,47,-184,149,-219,276v181,-2,350,-14,436,-102v22,-23,32,-53,32,-87","w":934},"\u00ec":{"d":"55,0r197,-950r155,0r-197,950r-155,0xm391,-1473r50,349r-126,0r-88,-349r164,0","w":437},"\u00ed":{"d":"55,0r197,-950r155,0r-197,950r-155,0xm656,-1473r-234,349r-134,0r192,-349r176,0","w":437},"\u00ee":{"d":"504,-1473r139,349r-135,0r-96,-246r-4,0r-197,246r-145,0r281,-349r157,0xm55,0r197,-950r155,0r-197,950r-155,0","w":437},"\u00ef":{"d":"55,0r197,-950r155,0r-197,950r-155,0xm100,-1171r35,-167r159,0r-35,167r-159,0xm481,-1171r35,-167r159,0r-35,167r-159,0","w":437},"\u00f1":{"d":"767,-1309v64,36,127,-8,133,-73r130,0v-17,137,-113,246,-274,200v-67,-19,-112,-83,-185,-83v-50,0,-73,42,-82,87r-130,0v21,-115,70,-212,201,-212v91,0,146,47,207,81xm811,-710v0,-144,-160,-155,-268,-108v-118,51,-195,155,-224,294r-109,524r-155,0r198,-950r127,0r0,129r4,0v75,-87,178,-153,329,-154v184,-1,291,118,251,313r-136,662r-155,0r122,-590v11,-49,16,-89,16,-120","w":1060,"k":{"\u201c":80,"\u2018":80}},"\u00f2":{"d":"746,-381v66,-173,74,-474,-155,-462v-181,8,-258,138,-311,275v-26,66,-40,146,-40,229v0,139,56,232,195,232v180,0,258,-137,311,-274xm600,-975v275,-3,382,225,328,507v-42,217,-150,389,-338,464v-49,19,-105,29,-166,29v-269,2,-379,-215,-326,-493v42,-220,149,-399,337,-477v49,-20,104,-30,165,-30xm644,-1473r50,349r-126,0r-88,-349r164,0","w":1006,"k":{"\u201c":60,"\u2018":60,"x":20}},"\u00f3":{"d":"746,-381v66,-173,74,-474,-155,-462v-181,8,-258,138,-311,275v-26,66,-40,146,-40,229v0,139,56,232,195,232v180,0,258,-137,311,-274xm600,-975v275,-3,382,225,328,507v-42,217,-150,389,-338,464v-49,19,-105,29,-166,29v-269,2,-379,-215,-326,-493v42,-220,149,-399,337,-477v49,-20,104,-30,165,-30xm927,-1473r-234,349r-134,0r192,-349r176,0","w":1006,"k":{"\u201c":60,"\u2018":60,"x":20}},"\u00f4":{"d":"775,-1473r139,349r-135,0r-96,-246r-4,0r-197,246r-145,0r281,-349r157,0xm746,-381v66,-173,74,-474,-155,-462v-181,8,-258,138,-311,275v-26,66,-40,146,-40,229v0,139,56,232,195,232v180,0,258,-137,311,-274xm600,-975v275,-3,382,225,328,507v-42,217,-150,389,-338,464v-49,19,-105,29,-166,29v-269,2,-379,-215,-326,-493v42,-220,149,-399,337,-477v49,-20,104,-30,165,-30","w":1006,"k":{"\u201c":60,"\u2018":60,"x":20}},"\u00f5":{"d":"731,-1309v64,36,127,-8,133,-73r130,0v-17,137,-113,246,-274,200v-67,-19,-112,-83,-185,-83v-50,0,-73,42,-82,87r-130,0v21,-115,70,-212,201,-212v91,0,146,47,207,81xm746,-381v66,-173,74,-474,-155,-462v-181,8,-258,138,-311,275v-26,66,-40,146,-40,229v0,139,56,232,195,232v180,0,258,-137,311,-274xm600,-975v275,-3,382,225,328,507v-42,217,-150,389,-338,464v-49,19,-105,29,-166,29v-269,2,-379,-215,-326,-493v42,-220,149,-399,337,-477v49,-20,104,-30,165,-30","w":1006,"k":{"\u201c":60,"\u2018":60,"x":20}},"\u00f6":{"d":"746,-381v66,-173,74,-474,-155,-462v-181,8,-258,138,-311,275v-26,66,-40,146,-40,229v0,139,56,232,195,232v180,0,258,-137,311,-274xm600,-975v275,-3,382,225,328,507v-42,217,-150,389,-338,464v-49,19,-105,29,-166,29v-269,2,-379,-215,-326,-493v42,-220,149,-399,337,-477v49,-20,104,-30,165,-30xm375,-1171r35,-167r159,0r-35,167r-159,0xm756,-1171r35,-167r159,0r-35,167r-159,0","w":1006,"k":{"\u201c":60,"\u2018":60,"x":20}},"\u00f8":{"d":"435,-945v128,-54,319,-33,398,50r77,-80r91,85r-95,99v95,265,-26,580,-186,709v-74,60,-167,107,-296,107v-94,0,-170,-25,-229,-76r-73,76r-91,-85r89,-93v-96,-265,27,-577,184,-711v38,-34,82,-61,131,-81xm733,-791v-61,-69,-216,-64,-295,-5v-132,99,-217,289,-198,519xm588,-154v132,-98,216,-288,198,-512r-490,510v66,68,214,60,292,2","w":1006,"k":{"\u201c":60,"\u2018":60,"x":20}},"\u00df":{"d":"695,-1464v260,-51,492,95,415,360v-38,132,-163,186,-251,270v-47,45,-57,150,-5,198v104,97,269,135,269,338v0,298,-330,379,-600,286v-15,-6,-27,-13,-36,-18r29,-130v66,29,132,53,225,53v138,-1,230,-53,230,-184v0,-165,-178,-179,-259,-275v-43,-51,-61,-160,-32,-238v55,-150,227,-186,282,-328v47,-120,-40,-211,-174,-206v-200,8,-277,146,-315,328r-236,1134v-46,236,-171,397,-459,360v-24,-4,-43,-9,-58,-14r25,-132v93,30,210,23,261,-52v33,-48,63,-117,83,-212r234,-1110v43,-232,151,-385,372,-428","w":1234,"k":{"\"":40,"'":40,"\u201d":50,"\u201c":60,"\u2019":50,"\u2018":70,"t":30}},"\u00f9":{"d":"278,-367v-36,146,16,260,170,260v173,0,238,-107,269,-251r123,-592r155,0r-129,618v-43,215,-161,357,-424,357v-237,0,-371,-142,-321,-382r123,-593r155,0xm651,-1473r50,349r-126,0r-88,-349r164,0","w":1020},"\u00fa":{"d":"278,-367v-36,146,16,260,170,260v173,0,238,-107,269,-251r123,-592r155,0r-129,618v-43,215,-161,357,-424,357v-237,0,-371,-142,-321,-382r123,-593r155,0xm932,-1473r-234,349r-134,0r192,-349r176,0","w":1020},"\u00fb":{"d":"798,-1473r139,349r-135,0r-96,-246r-4,0r-197,246r-145,0r281,-349r157,0xm278,-367v-36,146,16,260,170,260v173,0,238,-107,269,-251r123,-592r155,0r-129,618v-43,215,-161,357,-424,357v-237,0,-371,-142,-321,-382r123,-593r155,0","w":1020},"\u00fc":{"d":"278,-367v-36,146,16,260,170,260v173,0,238,-107,269,-251r123,-592r155,0r-129,618v-43,215,-161,357,-424,357v-237,0,-371,-142,-321,-382r123,-593r155,0xm382,-1171r35,-167r159,0r-35,167r-159,0xm763,-1171r35,-167r159,0r-35,167r-159,0","w":1020},"\u00fd":{"d":"-107,349v189,25,280,-78,357,-197v29,-46,59,-101,90,-165r-216,-937r160,0r165,751r4,0r405,-751r179,0r-543,977v-92,159,-184,339,-346,421v-75,38,-180,51,-283,35xm879,-1473r-234,349r-134,0r192,-349r176,0","w":962,"k":{"?":50,"\u2026":80,".":80,",":60}},"\u00ff":{"d":"-107,349v189,25,280,-78,357,-197v29,-46,59,-101,90,-165r-216,-937r160,0r165,751r4,0r405,-751r179,0r-543,977v-92,159,-184,339,-346,421v-75,38,-180,51,-283,35xm339,-1171r35,-167r159,0r-35,167r-159,0xm720,-1171r35,-167r159,0r-35,167r-159,0","w":962,"k":{"?":50,"\u2026":80,".":80,",":60}},"\u00f0":{"d":"578,-1448v51,56,99,112,144,175r252,-56r30,125r-210,46v122,201,195,557,90,830v-74,193,-199,353,-460,353v-217,0,-339,-123,-339,-343v0,-240,94,-412,229,-522v62,-51,140,-88,243,-88v104,0,178,42,216,107r5,-1v-28,-112,-73,-213,-127,-304r-258,56r-29,-123r212,-47v-55,-75,-117,-145,-183,-208r185,0xm774,-464v37,-174,-22,-339,-193,-332v-188,7,-274,153,-319,308v-16,55,-22,110,-22,163v0,137,60,218,193,218v175,0,257,-124,311,-253v14,-34,23,-68,30,-104","w":1009},"\u00fe":{"d":"610,-3v-124,54,-307,25,-376,-57r-4,0r-110,525r-155,0r398,-1913r155,0r-130,621r4,0v60,-80,142,-148,279,-148v243,0,310,245,263,495v-41,220,-141,397,-324,477xm757,-408v51,-151,79,-439,-118,-434v-129,4,-207,83,-260,178v-69,125,-84,320,-124,477v46,44,103,84,194,80v185,-8,258,-155,308,-301","w":1023,"k":{"\u201c":60,"\u2018":60}},"&":{"d":"412,25v-217,0,-354,-111,-354,-318v0,-242,167,-334,329,-421v-67,-79,-137,-157,-137,-298v0,-233,163,-351,398,-351v186,0,317,80,317,264v0,246,-196,323,-363,413r295,354v84,-95,149,-214,181,-364r149,0v-35,195,-127,351,-243,469r189,227r-185,0r-113,-133v-122,89,-275,158,-463,158xm209,-301v-6,201,222,225,396,163v62,-22,124,-53,185,-97r-323,-384v-122,70,-251,136,-258,318xm633,-1231v-159,0,-261,106,-225,271v17,76,66,125,113,181v105,-52,212,-102,265,-202v16,-29,24,-63,24,-100v1,-103,-74,-150,-177,-150","w":1302},"`":{"d":"518,-1473r50,349r-126,0r-88,-349r164,0","w":700},"\u00b4":{"d":"652,-1473r-234,349r-134,0r192,-349r176,0","w":700},"\u00a8":{"d":"172,-1171r35,-167r159,0r-35,167r-159,0xm553,-1171r35,-167r159,0r-35,167r-159,0","w":700},"\u00af":{"d":"203,-1300r540,0r-27,129r-540,0","w":700},"\u02c9":{"d":"203,-1300r540,0r-27,129r-540,0","w":700},"\u00b8":{"d":"271,290v0,-79,-101,-69,-187,-75r92,-215r124,0r-54,128v90,13,159,54,161,152v5,203,-241,243,-425,186r24,-112v82,33,265,37,265,-64","w":700},",":{"d":"151,-218r173,0r-243,608r-151,0","w":542,"k":{"\u0475":80,"\u044a":60,"\u0447":80,"\u0474":80,"\u040b":140,"\u0402":140,"\u042a":80,"\u0427":90,"\u0422":140,"\u041e":50,"\u00ab":40,"\u201c":90,"\u2018":90,"w":70,"v":70,"\u00dd":100,"\u00dc":60,"\u00db":60,"\u00da":60,"\u00d9":60,"\u00d8":50,"\u00d6":50,"\u00d5":50,"\u00d4":50,"\u00d3":50,"\u00d2":50,"Y":100,"W":125,"V":125,"U":60,"T":140,"O":50}},";":{"d":"145,-218r173,0r-237,608r-151,0xm426,-807r-40,195r-191,0r40,-195r191,0","w":542,"k":{"\u040b":115,"\u0402":115,"\u042a":60,"\u0422":115,"\u201c":40,"\u2018":40,"\u00dd":90,"Y":90,"W":40,"V":40,"T":115}},":":{"d":"75,0r40,-195r191,0r-40,195r-191,0xm433,-807r-40,195r-191,0r40,-195r191,0","w":542,"k":{"\u040b":125,"\u0402":125,"\u042a":60,"\u0422":125,"\u201c":40,"\u2018":40,"\u00dd":90,"Y":90,"W":40,"V":40,"T":125}},".":{"d":"75,0r40,-195r191,0r-40,195r-191,0","w":542,"k":{"\u0475":80,"\u045e":135,"\u044a":70,"\u0447":80,"\u0443":135,"\u0474":120,"\u040b":125,"\u0402":125,"\u042a":140,"\u0427":90,"\u0424":70,"\u0422":125,"\u041e":120,"\u00ab":40,"\u201c":60,"\u2018":60,"\u00ff":135,"\u00fd":135,"y":135,"w":95,"v":95,"\u00dd":145,"\u00dc":50,"\u00db":50,"\u00da":50,"\u00d9":50,"\u00d8":120,"\u00d6":120,"\u00d5":120,"\u00d4":120,"\u00d3":120,"\u00d2":120,"Y":145,"W":170,"V":170,"U":50,"T":125,"Q":100,"O":120}},"\u2026":{"d":"75,0r40,-195r191,0r-40,195r-191,0xm617,0r40,-195r191,0r-40,195r-191,0xm1159,0r40,-195r191,0r-40,195r-191,0","w":1626,"k":{"\u0475":80,"\u045e":135,"\u044a":70,"\u0447":80,"\u0443":135,"\u0474":120,"\u040b":125,"\u0402":125,"\u042a":140,"\u0427":90,"\u0424":70,"\u0422":125,"\u041e":120,"\u00ff":135,"\u00fd":135,"y":135,"w":95,"v":95,"\u00dd":145,"\u00dc":50,"\u00db":50,"\u00da":50,"\u00d9":50,"\u00d8":120,"\u00d6":120,"\u00d5":120,"\u00d4":120,"\u00d3":120,"\u00d2":120,"Y":145,"W":170,"V":170,"U":50,"T":125,"Q":100,"O":120}},"-":{"d":"150,-571r421,0r-30,145r-421,0","w":661,"k":{"\u045e":30,"\u0459":40,"\u044f":40,"\u044a":70,"\u0445":50,"\u0443":30,"\u043b":40,"\u0437":40,"\u0436":60,"\u0474":50,"\u0462":50,"\u040e":90,"\u040b":50,"\u0409":70,"\u0408":120,"\u0402":50,"\u042f":50,"\u042a":90,"\u0427":60,"\u0423":90,"\u0422":50,"\u041b":70,"\u0417":50,"\u0414":50,"\u00ff":30,"\u00fd":30,"y":30,"x":50,"\u00dd":80,"Y":80,"W":100,"V":100,"T":50,"S":60,"J":120}},"\u2010":{"d":"150,-571r421,0r-30,145r-421,0","w":661},"\u00ad":{"d":"150,-571r421,0r-30,145r-421,0","w":661},"!":{"d":"75,0r40,-195r187,0r-40,195r-187,0xm533,-1338r-213,907r-135,0r165,-907r183,0","w":541},"\u00a1":{"d":"458,-950r-40,195r-187,0r40,-195r187,0xm0,387r213,-906r135,0r-165,906r-183,0","w":541,"k":{"j":-40,"f":-40,"\u00dd":80,"Z":50,"Y":80,"W":60,"V":60,"T":105}},"?":{"d":"159,0r41,-195r187,0r-41,195r-187,0xm561,-1363v197,3,337,84,337,276v0,367,-443,322,-492,656r-142,0v17,-290,270,-346,419,-503v33,-35,57,-81,57,-146v0,-219,-366,-153,-496,-82r27,-134v73,-41,178,-69,290,-67","w":850,"k":{"\"":-40,"'":-40,"\u00ab":40,"\u201d":-40,"\u201c":-30,"\u2019":-40,"\u2018":-30}},"\u00bf":{"d":"714,-950r-41,195r-187,0r41,-195r187,0xm312,413v-197,-3,-337,-84,-337,-276v0,-367,443,-322,492,-656r142,0v-17,280,-254,343,-405,489v-40,39,-71,85,-71,160v0,219,366,153,496,82r-27,134v-73,41,-178,69,-290,67","w":850,"k":{"\u00f0":40,"\u00fc":30,"\u00fb":30,"\u00fa":30,"\u00f9":30,"\u00df":-80,"\u00f8":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u00e7":40,"\u00e6":60,"\u00e5":40,"\u00e4":40,"\u00e3":40,"\u00e2":40,"\u00e1":40,"\u00e0":40,"z":50,"x":50,"w":50,"v":50,"u":30,"q":40,"o":40,"j":-115,"f":-115,"e":40,"d":40,"c":40,"a":40,"\u00dd":105,"\u00dc":40,"\u00db":40,"\u00da":40,"\u00d9":40,"\u00c6":60,"\u00c5":30,"\u00c4":30,"\u00c3":30,"\u00c2":30,"\u00c1":30,"\u00c0":30,"Z":70,"Y":105,"X":60,"W":105,"V":105,"U":40,"T":155,"J":105,"A":30}},"\u2018":{"d":"235,-1338r139,0r73,494r-169,0","w":449,"k":{"\u0463":-80,"\u0459":70,"\u044a":-60,"\u043b":70,"\u040e":40,"\u0409":100,"\u0408":130,"\u0423":40,"\u041b":100,"\u0416":40,"\u0414":180,"\u0410":50,"\u2018":40,"\u00bf":90,"t":-40,"\u00c6":70,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"X":40,"J":130,"A":50}},"\u2019":{"d":"410,-1338r181,0r-279,494r-147,0","w":449,"k":{"\u0473":40,"\u045b":-60,"\u0459":110,"\u0451":40,"\u0450":40,"\u0455":40,"\u0454":60,"\u0452":-70,"\u044f":40,"\u044a":-50,"\u0444":40,"\u0441":40,"\u043e":40,"\u043b":110,"\u0435":40,"\u0430":40,"\u0474":-60,"\u0462":-60,"\u040e":-50,"\u040b":-95,"\u0409":90,"\u0408":130,"\u0402":-80,"\u042a":-110,"\u0424":30,"\u0423":-50,"\u0422":-95,"\u041b":90,"\u0414":190,"\u0410":120,"\u2019":40,"\u00bf":150,".":60,"\u00f8":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u00e7":40,"\u00e5":40,"\u00e4":40,"\u00e3":40,"\u00e2":40,"\u00e1":40,"\u00e0":40,"s":40,"q":40,"o":40,"g":40,"e":40,"d":40,"c":40,"a":40,"\u00c6":170,"\u00c5":120,"\u00c4":120,"\u00c3":120,"\u00c2":120,"\u00c1":120,"\u00c0":120,"T":-95,"J":130,"A":120}},"\u201c":{"d":"235,-1338r139,0r53,494r-169,0xm574,-1338r141,0r72,494r-171,0","w":789,"k":{"\u0463":-80,"\u0459":70,"\u044a":-60,"\u043b":70,"\u040e":40,"\u0409":100,"\u0408":130,"\u0423":40,"\u041b":100,"\u0416":40,"\u0414":180,"\u0410":50,"\u00bf":90,"t":-40,"\u00c6":70,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"X":40,"J":130,"A":50}},"\u201d":{"d":"410,-1338r181,0r-279,494r-147,0xm768,-1338r183,0r-308,494r-149,0","w":809,"k":{"\u0473":40,"\u045b":-60,"\u0459":110,"\u0451":40,"\u0450":40,"\u0455":40,"\u0454":60,"\u0452":-70,"\u044f":40,"\u044a":-50,"\u0444":40,"\u0441":40,"\u043e":40,"\u043b":110,"\u0435":40,"\u0430":40,"\u0474":-60,"\u0462":-60,"\u040e":-50,"\u040b":-95,"\u0409":90,"\u0408":130,"\u0402":-80,"\u042a":-110,"\u0424":30,"\u0423":-50,"\u0422":-95,"\u041b":90,"\u0414":190,"\u0410":120,"\u00bf":150,".":60,"\u00f8":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u00e7":40,"\u00e5":40,"\u00e4":40,"\u00e3":40,"\u00e2":40,"\u00e1":40,"\u00e0":40,"s":40,"q":40,"o":40,"g":40,"e":40,"d":40,"c":40,"a":40,"\u00c6":170,"\u00c5":120,"\u00c4":120,"\u00c3":120,"\u00c2":120,"\u00c1":120,"\u00c0":120,"T":-95,"J":130,"A":120}},"\u00ab":{"d":"482,-474r329,-376r159,0r-306,376r149,376r-141,0xm90,-474r354,-376r165,0r-335,376r176,376r-139,0","w":980,"k":{"\u0462":70,"\u040b":105,"\u0402":105,"\u042a":80,"\u0422":105,"\u00dd":90,"Y":90,"W":40,"V":40,"T":105}},"\u00bb":{"d":"508,-474r-329,376r-159,0r306,-376r-149,-376r141,0xm900,-474r-354,376r-165,0r335,-376r-176,-376r139,0","w":980,"k":{"\u045e":40,"\u0445":40,"\u0443":40,"\u0474":80,"\u0462":60,"\u040b":95,"\u0408":90,"\u0402":95,"\u042f":40,"\u042a":80,"\u0427":110,"\u0425":40,"\u0422":95,"\u0417":40,"\u0414":40,"\u00ff":40,"\u00fd":40,"z":30,"y":40,"x":40,"\u00dd":140,"Z":50,"Y":140,"X":40,"W":80,"V":80,"T":95,"S":50,"J":90}},"\/":{"d":"-132,249r710,-1587r156,0r-711,1587r-155,0","w":563},"|":{"d":"305,465r-145,0r0,-1913r145,0r0,1913","w":465},"\u2013":{"d":"13,-558r1000,0r-27,125r-999,0","w":1000,"k":{"\u045e":30,"\u0459":40,"\u044f":40,"\u044a":70,"\u0445":50,"\u0443":30,"\u043b":40,"\u0437":40,"\u0436":60,"\u0474":50,"\u0462":50,"\u040e":90,"\u040b":50,"\u0409":70,"\u0408":120,"\u0402":50,"\u042f":50,"\u042a":90,"\u0427":60,"\u0423":90,"\u0422":50,"\u041b":70,"\u0417":50,"\u0414":50,"\u00ff":30,"\u00fd":30,"y":30,"x":50,"\u00dd":80,"Y":80,"W":100,"V":100,"T":50,"S":60,"J":120}},"\u2014":{"d":"13,-558r1700,0r-27,125r-1699,0","w":1700,"k":{"\u045e":30,"\u0459":40,"\u044f":40,"\u044a":70,"\u0445":50,"\u0443":30,"\u043b":40,"\u0437":40,"\u0436":60,"\u0474":50,"\u0462":50,"\u040e":90,"\u040b":50,"\u0409":70,"\u0408":120,"\u0402":50,"\u042f":50,"\u042a":90,"\u0427":60,"\u0423":90,"\u0422":50,"\u041b":70,"\u0417":50,"\u0414":50,"\u00ff":30,"\u00fd":30,"y":30,"x":50,"\u00dd":80,"Y":80,"W":100,"V":100,"T":50,"S":60,"J":120}},"\u00b7":{"d":"160,-394r40,-195r191,0r-40,195r-191,0","w":541},"\u2219":{"d":"160,-394r40,-195r191,0r-40,195r-191,0","w":541},"(":{"d":"283,325v-123,-134,-200,-346,-200,-609v0,-513,231,-847,520,-1079r77,85v-257,228,-444,545,-449,1021v-2,213,52,376,141,497","w":580,"k":{"\u0473":40,"\u045b":-40,"\u0458":-115,"\u0451":40,"\u0450":40,"\u0454":40,"\u0452":-60,"\u0453":30,"\u0447":40,"\u0444":30,"\u0441":40,"\u043e":40,"\u0435":40,"\u0433":30,"\u0430":40,"\u042a":-50,"\u0424":30,"\u0421":40,"\u041e":30,"\u00fc":30,"\u00fb":30,"\u00fa":30,"\u00f9":30,"\u00df":-80,"\u00f8":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u00e7":40,"\u00e5":40,"\u00e4":40,"\u00e3":40,"\u00e2":40,"\u00e1":40,"\u00e0":40,"u":30,"q":40,"o":40,"j":-115,"g":30,"f":-100,"e":40,"d":40,"c":40,"a":40,"\u00d8":30,"\u00d6":30,"\u00d5":30,"\u00d4":30,"\u00d3":30,"\u00d2":30,"\u00c7":40,"\u00c6":50,"O":30,"G":40,"C":40}},")":{"d":"303,-1363v123,134,200,346,200,609v0,513,-231,847,-520,1079r-77,-85v257,-228,444,-546,449,-1021v2,-215,-52,-376,-141,-497","w":580},"[":{"d":"342,-1338r406,0r-26,123r-255,0r-291,1392r255,0r-26,123r-405,0","w":633,"k":{"\u045b":-50,"\u0458":-100,"\u0452":-60,"\u0444":30,"\u042a":-50,"\u0421":40,"\u041e":30,"\u00df":-85,"j":-100,"f":-90,"\u00d8":30,"\u00d6":30,"\u00d5":30,"\u00d4":30,"\u00d3":30,"\u00d2":30,"\u00c7":40,"\u00c6":60,"O":30,"C":40}},"]":{"d":"290,300r-405,0r26,-123r254,0r291,-1392r-255,0r26,-123r406,0","w":633},"{":{"d":"106,-584v133,2,207,-56,205,-193v-2,-107,-58,-165,-52,-277v11,-218,198,-288,440,-284r-26,123v-150,-1,-261,34,-261,167v0,98,45,153,43,256v-4,146,-79,236,-191,273r0,4v97,24,115,190,67,288v-43,88,-112,151,-143,247v-38,118,63,163,194,157r-26,123v-211,11,-373,-72,-321,-278v38,-152,184,-211,194,-389v5,-81,-68,-95,-148,-95","w":599,"k":{"\u045b":-50,"\u0458":-100,"\u0452":-60,"\u042a":-50,"\u00df":-60,"j":-100,"f":-70,"\u00c6":50}},"}":{"d":"498,-454v-133,-2,-207,56,-205,193v2,107,58,165,52,277v-11,218,-198,288,-440,284r26,-123v150,1,261,-34,261,-167v0,-98,-45,-153,-43,-256v4,-146,79,-236,191,-273r0,-4v-97,-24,-115,-190,-67,-288v43,-88,112,-151,143,-247v38,-118,-63,-163,-194,-157r26,-123v211,-11,373,72,321,278v-38,152,-184,211,-194,389v-5,81,68,95,148,95","w":599},"*":{"d":"625,-850r-5,0r-115,181r-137,132r-101,-104r137,-132r178,-118r-1,-5r-200,-57r-162,-86r68,-128r163,86r157,134r4,-4r-8,-206r33,-187r143,25r-33,187r-78,191r3,5r193,-71r182,-26r21,143r-182,26r-207,-15r-3,5r126,171r84,171r-130,64r-84,-171","w":1097},"\u00a7":{"d":"494,151v52,-101,82,-290,56,-448v-41,-245,-190,-409,-190,-678v0,-42,5,-84,16,-126r-12,0v-68,125,-83,384,-32,551v58,192,166,339,166,575v0,42,-5,84,-16,126r12,0xm658,-1231v-147,-4,-223,102,-187,247v62,251,211,428,211,741v0,294,-97,508,-286,611v-127,69,-329,47,-446,-6r28,-131v67,27,134,50,222,50v120,1,195,-61,195,-175v0,-297,-223,-473,-219,-813v3,-293,97,-507,284,-611v127,-71,331,-46,448,6r-28,131v-67,-27,-134,-48,-222,-50","w":873},"\u00b6":{"d":"500,-298v-186,-50,-305,-176,-305,-401v0,-329,194,-502,460,-589v139,-45,336,-53,532,-50r-287,1372v-49,285,-270,405,-613,374v-79,-7,-159,-23,-215,-50r27,-130v60,30,150,66,217,24v73,-46,99,-148,121,-251xm1013,-1201v-66,0,-118,3,-177,13r-247,1181v-29,123,-52,232,-138,292r0,4v182,-16,272,-116,307,-280","w":1184},"\u0410":{"d":"-40,0r741,-1338r137,0r264,1338r-165,0r-77,-403r-499,0r-221,403r-180,0xm441,-550r391,0r-48,-257v-22,-118,-39,-216,-50,-293r-4,0v-61,143,-200,389,-289,550","w":1252,"k":{"\"":140,"'":140,"\u0475":60,"\u0473":30,"\u0463":30,"\u045f":25,"\u045e":90,"\u045d":25,"\u0451":30,"\u0450":30,"\u0454":30,"\u044a":50,"\u0449":25,"\u0448":25,"\u0447":90,"\u0446":25,"\u0444":30,"\u0443":90,"\u0441":30,"\u043e":30,"\u0439":25,"\u0438":25,"\u0435":30,"\u0434":30,"\u0431":30,"\u0430":30,"\u0474":130,"\u0462":50,"\u040b":100,"\u0402":100,"\u042a":110,"\u0427":170,"\u0424":60,"\u0422":100,"\u0421":60,"\u041e":60,"\u2014":55,"\u2013":55,"\u00ab":65,"\u201d":130,"\u201c":180,"\u2019":130,"\u2018":180,"-":55}},"\u0411":{"d":"916,-465v0,-241,-325,-217,-546,-173r-102,491v324,6,648,-10,648,-318xm639,-811v261,3,447,94,447,342v0,362,-309,470,-700,469r-311,0r278,-1338r790,0r-31,147r-627,0r-83,402v81,-15,160,-22,237,-22","w":1213,"k":{"\u0475":30,"\u045e":60,"\u044f":50,"\u044a":50,"\u0443":60,"\u0474":70,"\u040b":120,"\u0402":120,"\u042f":50,"\u042a":100,"\u0422":120,"\u0414":40,")":30,"\u201d":40,"\u2019":40}},"\u0412":{"d":"1130,-1020v0,190,-117,291,-274,333r0,4v132,27,226,106,226,259v0,329,-300,421,-655,424r-352,0r279,-1338r313,0v223,-5,380,57,444,212v13,32,19,68,19,106xm898,-348v59,-167,-63,-264,-243,-264r-290,0r-97,465r183,0v223,3,392,-44,447,-201xm960,-1011v0,-207,-259,-180,-474,-180r-90,432r244,0v183,-3,320,-71,320,-252","w":1210,"k":{"\u0474":50,"\u040b":30,"\u0402":30,"\u0422":30,"\u0414":40,")":30,"\u201d":30,"\u201c":50,"\u2019":30,"\u2018":50}},"\u0413":{"d":"75,0r278,-1338r852,0r-31,147r-689,0r-247,1191r-163,0","w":1068,"k":{"\u0475":140,"\u0473":200,"\u0463":70,"\u045f":195,"\u045e":240,"\u045a":240,"\u0459":240,"\u045c":240,"\u045d":195,"\u0457":-70,"\u0451":200,"\u0450":200,"\u0455":160,"\u0454":200,"\u0453":230,"\u044f":230,"\u044e":240,"\u044d":195,"\u044c":175,"\u044b":175,"\u044a":200,"\u0449":210,"\u0448":210,"\u0447":210,"\u0446":210,"\u0445":165,"\u0444":200,"\u0443":240,"\u0442":240,"\u0441":200,"\u0440":200,"\u043f":240,"\u043e":200,"\u043d":240,"\u043c":260,"\u043b":240,"\u043a":240,"\u0439":195,"\u0438":195,"\u0437":185,"\u0436":195,"\u0435":200,"\u0434":85,"\u0433":230,"\u0432":175,"\u0430":200,"\u0409":160,"\u0408":130,"\u041b":160,"\u0414":210,"\u0410":100,"\u2014":160,"\u2013":160,"\u00bb":110,"\u00ab":140,"-":160,"\u2026":160,".":160,":":160,";":160,",":160}},"\u0414":{"d":"889,-1191v-118,431,-289,783,-565,1040r2,4r656,0r216,-1044r-309,0xm99,-147v342,-273,537,-699,661,-1191r632,0r-247,1191r163,0r-123,590r-161,0r90,-443r-938,0r-95,443r-161,0r124,-590r55,0","w":1472,"k":{"\u0475":45,"\u0473":40,"\u0458":-80,"\u0451":40,"\u0450":40,"\u0454":40,"\u044a":40,"\u0449":40,"\u0448":40,"\u0447":70,"\u0446":40,"\u0444":40,"\u0441":40,"\u043e":40,"\u0435":40,"\u0434":40,"\u0431":40,"\u0430":40,"\u0404":40,"\u0427":40,"\u0424":40,"\u0421":40,"\u041e":40,"\u2014":40,"\u2013":40,"\u00ab":40,"\u201d":50,"\u2019":50,"-":40}},"\u0415":{"d":"268,-147r639,0r-30,147r-802,0r278,-1338r765,0r-31,147r-602,0r-90,432r538,0r-30,147r-538,0","w":1073},"\u0416":{"d":"796,-656r-3,0r-668,656r-215,0r705,-689r-372,-649r185,0r369,660r3,0r137,-660r163,0r-137,661r3,0r593,-661r205,0r-621,680r433,658r-194,0r-420,-655r-3,0r-137,655r-163,0","w":1644,"k":{"\u0475":40,"\u045e":70,"\u0443":70,"\u0424":40,"\u2014":40,"\u2013":40,"\u00ab":40,"-":40}},"\u0417":{"d":"790,-685v122,27,198,114,198,262v0,224,-138,348,-320,411v-193,67,-502,35,-638,-49r30,-142v98,48,202,85,347,83v229,-3,411,-74,411,-295v0,-152,-113,-199,-285,-197r-159,0r31,-147r113,0v197,5,319,-62,367,-205v9,-27,12,-55,12,-82v3,-195,-274,-188,-451,-152v-59,12,-115,28,-169,46r30,-147v98,-36,223,-65,356,-64v232,2,404,77,404,306v0,201,-126,312,-277,366r0,6","w":1127,"k":{"\u0414":40,")":30,"\u201c":40,"\u2018":40}},"\u0418":{"d":"244,0r-169,0r278,-1338r163,0r-129,615v-39,186,-77,348,-116,486r4,0v77,-101,168,-214,275,-337r665,-764r171,0r-278,1338r-163,0r128,-615v41,-193,80,-355,117,-486r-4,0v-89,118,-181,230,-275,337","w":1381},"\u0419":{"d":"757,-1883v-17,133,28,232,151,229v163,-4,247,-101,286,-229r153,0v-62,204,-191,353,-446,357v-213,4,-314,-138,-288,-357r144,0xm244,0r-169,0r278,-1338r163,0r-129,615v-39,186,-77,348,-116,486r4,0v77,-101,168,-214,275,-337r665,-764r171,0r-278,1338r-163,0r128,-615v41,-193,80,-355,117,-486r-4,0v-89,118,-181,230,-275,337","w":1381},"\u041a":{"d":"382,-677r701,-661r206,0r-723,678r494,660r-191,0r-491,-655r-3,0r-137,655r-163,0r278,-1338r163,0r-137,661r3,0","w":1169,"k":{"\u0475":80,"\u0473":40,"\u0463":40,"\u045e":60,"\u0451":40,"\u0450":40,"\u0454":40,"\u044a":90,"\u0444":40,"\u0443":60,"\u0441":40,"\u043e":40,"\u0435":40,"\u0434":55,"\u0432":40,"\u0431":40,"\u0430":40,"\u0404":60,"\u0424":60,"\u0421":60,"\u041e":60,"\u2014":85,"\u2013":85,"\u00ab":70,"-":85}},"\u041b":{"d":"808,-1191v-51,169,-98,317,-142,442v-75,211,-149,393,-249,543v-94,141,-209,242,-437,221r33,-159v109,13,175,-31,231,-99v146,-175,224,-419,312,-681v40,-120,80,-258,125,-414r645,0r-278,1338r-163,0r247,-1191r-324,0","w":1321},"\u041c":{"d":"773,-279v59,-113,108,-204,148,-273r461,-786r243,0r-278,1338r-163,0r147,-703v17,-83,36,-163,55,-241v19,-78,36,-145,52,-204r-9,0v-188,375,-455,781,-670,1148r-80,0r-141,-742v-27,-139,-50,-274,-69,-406r-9,0v-23,158,-47,297,-72,418r-150,730r-163,0r278,-1338r226,0r150,815v17,94,31,175,40,244r4,0","w":1620},"\u041d":{"d":"394,-759r664,0r120,-579r163,0r-278,1338r-163,0r127,-612r-662,0r-127,612r-163,0r278,-1338r163,0","w":1336},"\u041e":{"d":"865,-1363v320,0,502,170,502,492v0,337,-130,593,-321,753v-99,83,-230,143,-403,143v-320,0,-503,-169,-503,-492v0,-337,129,-593,321,-753v99,-83,231,-143,404,-143xm310,-479v-2,231,107,359,334,359v208,0,326,-118,412,-250v83,-127,139,-291,141,-489v2,-231,-107,-359,-334,-359v-208,0,-327,118,-413,250v-83,127,-138,291,-140,489","w":1427,"k":{"\u0459":55,"\u043c":30,"\u043b":55,"\u0409":50,"\u0408":40,"\u0425":30,"\u041b":50,"\u0414":60,")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30}},"\u041f":{"d":"488,-1188r-247,1188r-166,0r278,-1338r974,0r-278,1338r-166,0r247,-1188r-642,0","w":1322},"\u0420":{"d":"1141,-1021v0,396,-377,511,-788,465r-115,556r-163,0r278,-1338r327,0v229,-3,384,57,445,218v12,31,16,64,16,99xm964,-944v39,-180,-85,-247,-267,-247r-212,0r-101,489v270,37,532,-20,580,-242","w":1166,"k":{"\u0473":50,"\u0459":140,"\u0451":50,"\u0450":50,"\u0454":50,"\u0453":55,"\u044f":60,"\u0444":30,"\u0441":50,"\u043e":50,"\u043c":100,"\u043b":140,"\u0435":50,"\u0434":50,"\u0433":55,"\u0432":60,"\u0430":50,"\u040e":50,"\u0409":180,"\u0408":150,"\u0425":60,"\u0423":50,"\u041b":180,"\u0414":220,"\u0410":110,"]":40,")":40,"\u2014":80,"\u2013":80,"\u00ab":40,"?":50,"-":80,"\u2026":200,".":200,",":205}},"\u0421":{"d":"1149,-1169v-115,-46,-302,-73,-436,-21v-259,100,-405,339,-413,686v-6,264,142,383,396,384v107,1,211,-24,292,-50r-31,149v-79,29,-185,46,-289,46v-338,0,-538,-174,-538,-518v0,-338,139,-578,336,-733v132,-104,360,-166,587,-122v49,10,91,21,126,34","w":1154,"k":{"\u0475":70,"\u0473":30,"\u045e":70,"\u0451":30,"\u0450":30,"\u0454":30,"\u0453":30,"\u044a":65,"\u0444":30,"\u0443":70,"\u0441":30,"\u043e":30,"\u0435":30,"\u0434":30,"\u0433":30,"\u0430":30,"\u0421":30,"\u2014":50,"\u2013":50,"\u00ab":60,"-":50}},"\u0422":{"d":"503,0r-163,0r247,-1191r-415,0r31,-147r993,0r-31,147r-415,0","w":1059,"k":{"\u0475":80,"\u0473":80,"\u045f":70,"\u045e":80,"\u045a":70,"\u0459":110,"\u045c":70,"\u045d":70,"\u0457":-70,"\u0451":70,"\u0450":70,"\u0455":70,"\u0454":80,"\u0453":100,"\u044f":90,"\u044e":70,"\u044d":80,"\u044c":70,"\u044b":70,"\u044a":110,"\u0449":70,"\u0448":70,"\u0447":110,"\u0446":70,"\u0445":60,"\u0444":70,"\u0443":80,"\u0442":70,"\u0441":80,"\u0440":70,"\u043f":70,"\u043e":80,"\u043d":70,"\u043c":110,"\u043b":110,"\u043a":70,"\u0439":70,"\u0438":70,"\u0437":90,"\u0436":70,"\u0435":70,"\u0434":70,"\u0433":100,"\u0432":100,"\u0431":60,"\u0430":70,"\u0409":130,"\u0408":80,"\u041b":130,"\u0414":130,"\u0410":60,"\u2014":110,"\u2013":110,"\u00bb":120,"\u00ab":120,"\u201c":-40,"\u2018":-40,"-":110,"\u2026":120,".":120,":":120,";":115,",":115}},"\u0423":{"d":"68,-140v101,21,208,2,271,-44v70,-52,119,-120,170,-208r-308,-946r170,0r240,767r4,0r440,-767r188,0r-592,1012v-112,183,-220,350,-508,351v-41,0,-77,-4,-108,-12","w":1108,"k":{"\u0473":80,"\u045f":50,"\u045e":45,"\u045a":50,"\u0459":145,"\u045c":50,"\u045d":50,"\u0451":80,"\u0450":80,"\u0455":50,"\u0454":80,"\u0453":55,"\u044f":110,"\u044e":50,"\u044d":50,"\u044c":50,"\u044b":50,"\u0449":50,"\u0448":50,"\u0446":50,"\u0445":40,"\u0444":70,"\u0443":45,"\u0442":50,"\u0441":80,"\u0440":50,"\u043f":50,"\u043e":80,"\u043d":50,"\u043c":90,"\u043b":145,"\u043a":50,"\u0439":50,"\u0438":50,"\u0437":60,"\u0436":60,"\u0435":80,"\u0434":45,"\u0433":55,"\u0432":80,"\u0430":80,"\u0409":120,"\u0408":60,"\u041b":120,"\u0414":180,"\u0410":60,"\u2014":60,"\u2013":60,"\u00bb":40,"\u00ab":90,"-":60,"\u2026":160,".":160,":":70,";":100,",":190}},"\u0424":{"d":"420,-930v-108,133,-181,464,-44,620v51,56,129,87,235,93r188,-907v-175,8,-295,91,-379,194xm1152,-410v106,-129,184,-465,45,-620v-51,-56,-129,-87,-235,-93r-188,907v177,-11,293,-90,378,-194xm991,-1264v274,27,452,171,452,464v0,331,-155,548,-392,656v-87,40,-189,64,-306,69r-38,182r-163,0r38,-183v-274,-27,-452,-171,-452,-464v0,-331,155,-548,392,-657v87,-41,189,-63,306,-68r38,-180r163,0","w":1503,"k":{"\u0459":45,"\u044f":40,"\u043c":45,"\u043b":45,"\u0409":40,"\u0408":40,"\u0425":30,"\u041b":40,"\u0416":40,"\u0414":40,")":40,"\u201c":50,"\u2018":50}},"\u0425":{"d":"121,0r-195,0r609,-696r-292,-642r176,0r238,526r4,0r459,-526r195,0r-588,671r305,667r-176,0r-251,-550r-4,0","w":1188,"k":{"\u0475":55,"\u0453":40,"\u044a":50,"\u0447":130,"\u0433":40,"\u0404":40,"\u0424":40,"\u0421":40,"\u041e":40,"\u2014":60,"\u2013":60,"\u00ab":105,"-":60}},"\u0426":{"d":"75,0r278,-1338r163,0r-248,1191r611,0r248,-1191r163,0r-248,1191r163,0r-123,590r-161,0r90,-443r-936,0","w":1370,"k":{"\u0475":45,"\u0473":40,"\u0458":-80,"\u0451":40,"\u0450":40,"\u0454":40,"\u044a":40,"\u0449":39,"\u0448":39,"\u0447":70,"\u0446":40,"\u0444":40,"\u0441":40,"\u043e":40,"\u0435":40,"\u0434":40,"\u0431":40,"\u0430":40,"\u0404":40,"\u0427":40,"\u0424":40,"\u0421":40,"\u041e":40,"\u2014":40,"\u2013":40,"\u00ab":40,"\u201d":50,"\u2019":50,"-":40}},"\u0427":{"d":"388,-900v-24,165,57,245,219,245v115,0,257,-33,337,-74r126,-609r163,0r-278,1338r-163,0r119,-569v-89,32,-214,57,-326,59v-257,4,-411,-137,-359,-397r86,-431r163,0r-78,376v-4,20,-7,41,-9,62","w":1228},"\u0428":{"d":"1566,0r-1491,0r278,-1338r163,0r-248,1191r501,0r248,-1191r163,0r-248,1191r501,0r248,-1191r163,0","w":1839},"\u0429":{"d":"353,-1338r163,0r-248,1191r491,0r248,-1191r163,0r-248,1191r491,0r248,-1191r163,0r-248,1191r163,0r-123,590r-161,0r90,-443r-1470,0","w":1904,"k":{"\u0475":45,"\u0473":40,"\u0458":-80,"\u0451":40,"\u0450":40,"\u0454":40,"\u044a":40,"\u0449":50,"\u0448":40,"\u0447":70,"\u0446":40,"\u0444":39,"\u0441":40,"\u043e":40,"\u0435":40,"\u0434":40,"\u0431":40,"\u0430":40,"\u0404":40,"\u0427":40,"\u0424":40,"\u0421":40,"\u041e":40,"\u2014":40,"\u2013":40,"\u00ab":40,"\u201d":50,"\u2019":50,"-":40}},"\u042a":{"d":"1111,-465v0,-241,-323,-217,-546,-173r-102,491v324,6,648,-10,648,-318xm834,-811v262,2,447,95,447,342v0,355,-299,466,-677,469r-334,0r246,-1191r-366,0r31,-147r529,0r-113,549v79,-15,158,-22,237,-22","w":1381,"k":{"\"":140,"'":140,"\u0474":110,"\u040b":130,"\u0402":130,"\u042a":130,"\u0427":50,"\u0422":130,"\u0414":40,"]":50,")":40,"\u201d":100,"\u201c":160,"\u2019":100,"\u2018":160,"?":70}},"\u042b":{"d":"916,-465v0,-241,-324,-217,-546,-173r-102,491v324,6,648,-10,648,-318xm639,-811v262,2,447,94,447,342v0,356,-300,465,-677,469r-334,0r278,-1338r163,0r-114,549v81,-15,160,-22,237,-22xm1136,0r278,-1338r163,0r-278,1338r-163,0","w":1572},"\u042c":{"d":"641,-811v270,2,465,91,465,342v0,359,-311,467,-697,469r-334,0r278,-1338r163,0r-114,549v83,-15,163,-22,239,-22xm936,-465v0,-242,-331,-217,-566,-173r-102,491v273,7,534,-8,632,-177v24,-40,36,-87,36,-141","w":1206,"k":{"\"":140,"'":140,"\u0474":110,"\u040b":130,"\u0402":130,"\u042a":130,"\u0427":50,"\u0422":130,"\u0414":40,"]":50,")":40,"\u201d":100,"\u201c":160,"\u2019":100,"\u2018":160}},"\u042d":{"d":"60,-178v137,64,366,76,518,23v203,-71,320,-229,364,-457r-682,0r31,-147r672,0v38,-294,-84,-459,-374,-459v-114,0,-229,25,-314,51r30,-148v82,-31,193,-48,292,-48v352,0,548,168,543,529v-5,426,-178,712,-510,821v-170,56,-449,49,-600,-21","w":1200,"k":{"\u0409":50,"\u0408":40,"\u041b":50,"\u0414":60,")":30,"\u201c":40,"\u2018":40}},"\u042e":{"d":"1327,-1363v316,0,482,175,482,492v0,335,-120,592,-307,753v-97,83,-226,143,-397,143v-316,0,-480,-174,-483,-492v0,-48,3,-96,9,-145r-266,0r-127,613r-163,0r278,-1339r163,0r-122,579r266,0v67,-248,200,-456,419,-554v73,-33,156,-50,248,-50xm792,-479v0,225,90,364,314,359v274,-6,394,-199,474,-405v37,-96,58,-212,59,-334v0,-225,-90,-364,-314,-359v-273,6,-395,199,-475,405v-37,96,-57,212,-58,334","w":1869,"k":{"\u0459":55,"\u043c":30,"\u043b":55,"\u0409":50,"\u0408":40,"\u041b":50,"\u0414":60,")":30,"\u201c":50,"\u2018":50}},"\u042f":{"d":"439,-583v-121,-42,-212,-123,-212,-286v0,-210,111,-336,256,-410v170,-87,485,-53,742,-59r-278,1338r-163,0r115,-554r-291,0r-365,554r-193,0xm800,-1191v-237,-5,-394,90,-399,308v-6,237,301,172,528,182r102,-490r-231,0","w":1220},"\u0403":{"d":"1079,-1656r-232,247r-143,0r193,-247r182,0xm75,0r278,-1338r852,0r-31,147r-689,0r-247,1191r-163,0","w":1068,"k":{"\u0475":140,"\u0473":200,"\u0463":70,"\u045f":195,"\u045e":240,"\u045a":240,"\u0459":240,"\u045c":240,"\u045d":195,"\u0457":-70,"\u0451":200,"\u0450":200,"\u0455":160,"\u0454":200,"\u0453":230,"\u044f":230,"\u044e":240,"\u044d":195,"\u044c":175,"\u044b":175,"\u044a":200,"\u0449":210,"\u0448":210,"\u0447":210,"\u0446":210,"\u0445":165,"\u0444":200,"\u0443":240,"\u0442":240,"\u0441":200,"\u0440":200,"\u043f":240,"\u043e":200,"\u043d":240,"\u043c":260,"\u043b":240,"\u043a":240,"\u0439":195,"\u0438":195,"\u0437":185,"\u0436":195,"\u0435":200,"\u0434":85,"\u0433":230,"\u0432":175,"\u0430":200,"\u0409":160,"\u0408":130,"\u041b":160,"\u0414":210,"\u0410":100,"\u2014":160,"\u2013":160,"\u00bb":110,"\u00ab":140,"-":160,"\u2026":160,".":160,":":160,";":160,",":160}},"\u0490":{"d":"485,-1191r-247,1191r-163,0r278,-1338r699,0r81,-378r159,0r-109,525r-698,0","w":1077,"k":{"\u0475":140,"\u0473":200,"\u0463":70,"\u045f":195,"\u045e":240,"\u045a":240,"\u0459":240,"\u045c":240,"\u045d":195,"\u0457":-70,"\u0451":200,"\u0450":200,"\u0455":160,"\u0454":200,"\u0453":230,"\u044f":230,"\u044e":240,"\u044d":195,"\u044c":175,"\u044b":175,"\u044a":200,"\u0449":210,"\u0448":210,"\u0447":210,"\u0446":210,"\u0445":165,"\u0444":200,"\u0443":240,"\u0442":240,"\u0441":200,"\u0440":200,"\u043f":240,"\u043e":200,"\u043d":240,"\u043c":260,"\u043b":240,"\u043a":240,"\u0439":195,"\u0438":195,"\u0437":185,"\u0436":195,"\u0435":200,"\u0434":85,"\u0433":230,"\u0432":175,"\u0430":200,"\u0409":160,"\u0408":130,"\u041b":160,"\u0414":210,"\u0410":100,"\u2014":160,"\u2013":160,"\u00bb":110,"\u00ab":140,"-":160,"\u2026":160,".":160,":":160,";":160,",":160}},"\u0402":{"d":"1210,-451v0,-248,-343,-222,-580,-174r-129,625r-163,0r247,-1191r-413,0r31,-147r1068,0r-31,147r-492,0r-87,412v228,-41,485,-28,609,82v65,58,110,135,110,245v0,235,-142,371,-328,436v-90,31,-194,42,-309,33r32,-147v254,16,435,-95,435,-321","w":1480,"k":{"\"":80,"'":80,"\u0474":90,"\u040b":100,"\u0402":100,"\u042a":80,"\u0427":70,"\u0422":100,"\u201d":50,"\u201c":110,"\u2019":50,"\u2018":110}},"\u0404":{"d":"1174,-1169v-127,-50,-332,-70,-472,-13v-184,75,-310,223,-365,423r675,0r-31,147r-675,0v-4,37,-6,71,-6,104v0,262,136,387,394,388v110,1,223,-24,305,-50r-31,149v-83,28,-188,46,-297,46v-352,0,-541,-176,-541,-531v0,-350,149,-589,362,-737v136,-94,345,-147,566,-107v55,9,103,22,146,38","w":1164},"\u0405":{"d":"419,-120v221,0,392,-71,392,-282v0,-218,-264,-202,-415,-278v-101,-51,-185,-118,-185,-266v0,-282,193,-412,480,-417v147,-3,287,35,386,77r-30,148v-91,-43,-222,-82,-350,-80v-178,3,-316,70,-316,242v0,200,234,194,378,256v125,54,223,133,223,308v0,231,-144,351,-330,407v-197,59,-481,27,-614,-60r31,-144v91,52,209,89,350,89","w":1120,"k":{"\u044a":45}},"\u0400":{"d":"730,-1656r95,247r-135,0r-130,-247r170,0xm268,-147r639,0r-30,147r-802,0r278,-1338r765,0r-31,147r-602,0r-90,432r538,0r-30,147r-538,0","w":1073},"\u0401":{"d":"477,-1448r35,-169r161,0r-35,169r-161,0xm860,-1448r35,-169r161,0r-35,169r-161,0xm268,-147r639,0r-30,147r-802,0r278,-1338r765,0r-31,147r-602,0r-90,432r538,0r-30,147r-538,0","w":1073},"\u0406":{"d":"75,0r278,-1338r163,0r-278,1338r-163,0","w":511},"\u0407":{"d":"181,-1448r35,-169r161,0r-35,169r-161,0xm564,-1448r35,-169r161,0r-35,169r-161,0xm75,0r278,-1338r163,0r-278,1338r-163,0","w":511},"\u0408":{"d":"10,-145v67,28,189,36,255,3v60,-29,88,-83,104,-160r216,-1036r163,0r-220,1059v-30,221,-200,336,-464,297v-31,-5,-59,-13,-84,-22","w":743},"\u040d":{"d":"855,-1656r95,247r-135,0r-130,-247r170,0xm244,0r-169,0r278,-1338r163,0r-129,615v-39,186,-77,348,-116,486r4,0v77,-101,168,-214,275,-337r665,-764r171,0r-278,1338r-163,0r128,-615v41,-193,80,-355,117,-486r-4,0v-89,118,-181,230,-275,337","w":1381},"\u040c":{"d":"1077,-1656r-232,247r-143,0r193,-247r182,0xm382,-677r701,-661r206,0r-723,678r494,660r-191,0r-491,-655r-3,0r-137,655r-163,0r278,-1338r163,0r-137,661r3,0","w":1169,"k":{"\u0475":80,"\u0473":40,"\u0463":40,"\u045e":60,"\u0451":40,"\u0450":40,"\u0454":40,"\u044a":90,"\u0444":40,"\u0443":60,"\u0441":40,"\u043e":40,"\u0435":40,"\u0434":55,"\u0432":40,"\u0431":40,"\u0430":40,"\u0404":60,"\u0424":60,"\u0421":60,"\u041e":60,"\u2014":85,"\u2013":85,"\u00ab":70,"-":85}},"\u0409":{"d":"1716,-465v0,-239,-317,-218,-536,-173r-102,491v321,7,638,-13,638,-318xm1434,-811v270,1,452,91,452,342v0,362,-306,469,-694,469r-307,0r246,-1191r-323,0v-51,169,-98,317,-142,442v-75,211,-149,393,-249,543v-94,141,-209,243,-437,221r33,-159v110,13,174,-31,231,-99v146,-175,224,-419,312,-681v40,-120,80,-258,125,-414r644,0r-113,549v79,-15,153,-22,222,-22","w":1986,"k":{"\"":140,"'":140,"\u0474":110,"\u040b":130,"\u0402":130,"\u042a":130,"\u0427":50,"\u0422":130,"\u0414":40,"]":50,")":40,"\u201d":100,"\u201c":160,"\u2019":100,"\u2018":160}},"\u040a":{"d":"1644,-485v0,-224,-295,-173,-524,-179r-108,517v132,0,275,2,370,-29v148,-48,262,-133,262,-309xm1396,-811v244,0,418,78,418,307v0,252,-157,383,-352,456v-162,62,-416,46,-643,48r138,-664r-582,0r-137,664r-163,0r278,-1338r163,0r-110,527r581,0r110,-527r163,0r-110,527r246,0","w":1914,"k":{"\"":140,"'":140,"\u0474":110,"\u040b":130,"\u0402":130,"\u042a":130,"\u0427":50,"\u0422":130,"\u0414":40,"]":50,")":40,"\u201d":100,"\u201c":160,"\u2019":100,"\u2018":160}},"\u040b":{"d":"1182,-420v23,-164,-51,-246,-212,-246v-112,0,-222,25,-329,74r-122,592r-163,0r247,-1191r-431,0r31,-147r1093,0r-31,147r-499,0r-92,439v111,-39,217,-59,318,-59v257,0,404,139,352,397r-83,414r-163,0r74,-359v4,-20,8,-40,10,-61","w":1499,"k":{"\"":80,"'":80,"\u0475":45,"\u045e":70,"\u0447":35,"\u0443":70,"\u0474":100,"\u040b":110,"\u0402":110,"\u042a":100,"\u0427":80,"\u0422":110,"\u201d":60,"\u201c":90,"\u2019":60,"\u2018":90}},"\u040e":{"d":"579,-1883v-17,133,28,232,151,229v163,-4,247,-101,286,-229r153,0v-62,204,-191,353,-446,357v-213,4,-314,-138,-288,-357r144,0xm68,-140v101,21,208,2,271,-44v70,-52,119,-120,170,-208r-308,-946r170,0r240,767r4,0r440,-767r188,0r-592,1012v-112,183,-220,350,-508,351v-41,0,-77,-4,-108,-12","w":1108,"k":{"\u0473":80,"\u045f":50,"\u045e":45,"\u045a":50,"\u0459":145,"\u045c":50,"\u045d":50,"\u0451":80,"\u0450":80,"\u0455":50,"\u0454":80,"\u0453":55,"\u044f":110,"\u044e":50,"\u044d":50,"\u044c":50,"\u044b":50,"\u0449":50,"\u0448":50,"\u0446":50,"\u0445":40,"\u0444":70,"\u0443":45,"\u0442":50,"\u0441":80,"\u0440":50,"\u043f":50,"\u043e":80,"\u043d":50,"\u043c":90,"\u043b":145,"\u043a":50,"\u0439":50,"\u0438":50,"\u0437":60,"\u0436":60,"\u0435":80,"\u0434":45,"\u0433":55,"\u0432":80,"\u0430":80,"\u0409":120,"\u0408":60,"\u041b":120,"\u0414":180,"\u0410":60,"\u2014":60,"\u2013":60,"\u00bb":40,"\u00ab":90,"-":60,"\u2026":160,".":160,":":70,";":100,",":190}},"\u040f":{"d":"539,443r-161,0r90,-443r-393,0r278,-1338r163,0r-248,1191r614,0r248,-1191r163,0r-278,1338r-384,0","w":1288},"\u0462":{"d":"510,-789v337,-60,704,-12,704,320v0,361,-309,466,-699,469r-332,0r216,-1041r-264,0r27,-131r264,0r35,-166r163,0r-35,166r430,0r-27,131r-430,0xm1042,-465v0,-242,-339,-215,-564,-173r-102,491v272,8,532,-8,630,-177v24,-40,36,-87,36,-141","w":1314,"k":{"\"":140,"'":140,"\u0474":110,"\u040b":130,"\u0402":130,"\u042a":100,"\u0427":50,"\u0422":130,"\u0414":40,"]":50,")":40,"\u201d":100,"\u201c":160,"\u2019":100,"\u2018":160}},"\u0472":{"d":"630,25v-323,0,-490,-178,-490,-505v0,-344,131,-596,330,-752v98,-77,224,-131,388,-131v322,0,489,179,489,505v0,344,-131,596,-329,752v-97,77,-224,131,-388,131xm310,-494v0,234,97,374,326,374v225,0,351,-140,438,-294v34,-60,59,-126,76,-198r-833,0v-5,37,-7,76,-7,118xm1173,-759v25,-269,-63,-466,-322,-459v-215,6,-340,130,-427,274v-34,56,-59,118,-78,185r827,0","w":1407},"\u0474":{"d":"589,0r-135,0r-244,-1338r163,0r130,740v22,126,40,240,55,341r4,0r139,-315r244,-534v69,-152,167,-277,395,-254r-29,142v-135,-1,-176,78,-221,172","w":1170,"k":{"\"":-60,"'":-60,"\u0475":45,"\u0473":55,"\u045f":40,"\u045e":45,"\u045a":40,"\u0459":100,"\u045c":40,"\u045d":40,"\u0451":55,"\u0450":55,"\u0455":45,"\u0454":55,"\u0453":55,"\u044f":65,"\u044e":40,"\u044d":40,"\u044c":40,"\u0448":40,"\u0447":45,"\u0446":40,"\u0445":45,"\u0444":55,"\u0443":45,"\u0442":40,"\u0441":55,"\u043f":40,"\u043e":55,"\u043d":40,"\u043c":90,"\u043b":100,"\u043a":40,"\u0439":40,"\u0438":40,"\u0437":55,"\u0436":55,"\u0435":55,"\u0434":55,"\u0433":55,"\u0432":60,"\u0430":55,"\u0409":100,"\u0408":70,"\u041b":100,"\u0414":120,"\u0410":70,"\u2014":60,"\u2013":60,"\u00ab":80,"\u201c":-60,"\u2018":-60,"-":60,"\u2026":110,".":110,",":50}},"\u0430":{"d":"274,-538v-47,146,-81,431,109,431v142,0,218,-111,273,-219v58,-113,73,-272,106,-411v-41,-54,-92,-106,-187,-106v-184,0,-254,158,-301,305xm809,15v-116,-2,-157,-50,-155,-171r-4,0v-69,97,-156,176,-307,181v-304,10,-290,-406,-203,-639v55,-147,143,-272,281,-333v43,-19,91,-28,142,-28v106,0,185,48,223,120r4,0r46,-95r126,0r-153,731v-13,61,-14,106,54,103v19,0,41,-2,66,-6r-27,128v-28,6,-59,9,-93,9","w":1037,"k":{"\u2014":50,"\u2013":50,"\u201c":40,"\u2018":40,"-":50,"\u2026":-30,".":-30,":":-30}},"\u0431":{"d":"757,-413v47,-166,36,-390,-159,-383v-135,5,-232,64,-306,133v-50,181,-108,564,142,556v188,-6,278,-150,323,-306xm420,25v-224,0,-323,-150,-320,-390v3,-299,82,-556,198,-748v84,-140,214,-219,399,-261r305,-69r-34,168v-186,55,-423,59,-532,189v-62,74,-92,166,-126,283r6,0v75,-69,178,-125,319,-125v203,0,300,139,300,348v0,264,-119,459,-299,554v-64,34,-136,51,-216,51","w":1017,"k":{"\u0459":30,"\u044f":40,"\u043c":30,"\u043b":30}},"\u0432":{"d":"713,-482v88,22,148,78,148,187v0,167,-115,253,-255,295v-165,50,-411,23,-531,-50v3,-37,6,-78,11,-122v5,-44,12,-91,19,-138v7,-47,16,-93,25,-140v53,-282,130,-528,462,-525v181,3,309,75,309,248v0,132,-78,208,-188,241r0,4xm706,-294v0,-172,-281,-113,-431,-99r-36,259v172,54,467,38,467,-160xm746,-723v-2,-158,-270,-141,-342,-50v-49,62,-81,141,-101,245v166,-13,330,-18,411,-102v23,-24,32,-56,32,-93","w":976,"k":{"\u201c":40,"\u2018":40}},"\u0433":{"d":"528,12v-228,42,-463,-13,-463,-238v0,-296,305,-291,505,-388v45,-22,82,-54,83,-116v2,-131,-184,-125,-303,-97v-47,11,-91,24,-134,39r28,-139v69,-25,173,-50,270,-48v168,4,294,70,294,239v0,278,-322,258,-504,363v-46,26,-83,61,-84,128v-4,160,199,151,334,120v50,-12,96,-27,139,-44r-28,139v-42,19,-88,33,-137,42","w":843,"k":{"\u0453":30,"\u0437":30,"\u0433":30,"\u201c":40,"\u2018":40}},"\u0434":{"d":"426,-905v130,-49,301,-13,390,47r4,0v21,-252,-30,-446,-278,-446v-57,0,-126,9,-205,28r31,-153v64,-15,124,-25,198,-25v297,3,417,174,416,487v-2,406,-88,751,-320,919v-69,50,-150,73,-242,73v-274,0,-372,-234,-316,-506v41,-201,145,-357,322,-424xm810,-721v-69,-57,-222,-104,-333,-54v-151,69,-232,227,-232,437v0,139,52,231,185,231v198,0,273,-175,329,-348v25,-76,40,-165,51,-266","w":1042,"k":{"\u0459":40,"\u044f":30,"\u043c":40,"\u043b":40,"\u0436":30}},"\u0435":{"d":"598,-975v171,0,296,75,296,246v0,214,-178,269,-376,301v-80,13,-173,18,-276,21v-24,223,103,322,328,291v74,-10,146,-29,203,-56r-28,142v-70,31,-167,56,-271,55v-253,-1,-389,-131,-389,-379v0,-302,135,-509,361,-596v47,-18,97,-25,152,-25xm739,-735v-2,-113,-153,-128,-249,-87v-112,47,-184,149,-219,276v181,-2,350,-14,436,-102v22,-23,32,-53,32,-87","w":934,"k":{"\u0453":30,"\u0433":30}},"\u0436":{"d":"1294,25v-309,4,-236,-454,-141,-635r-4,0v-113,145,-221,299,-314,462v-29,50,-42,91,-59,148r-138,0v47,-197,106,-419,175,-666r-8,0v-121,194,-249,365,-392,512v-93,95,-178,198,-365,174v-19,-3,-39,-9,-58,-18r28,-135v51,27,133,33,186,1v150,-89,211,-285,217,-517v3,-120,-39,-191,-140,-191v-37,0,-78,10,-124,30r28,-133v38,-21,89,-32,143,-32v307,-2,234,454,139,635r4,0v113,-145,221,-299,314,-462v29,-50,42,-91,59,-148r138,0v-47,200,-106,422,-175,666r8,0v121,-194,249,-365,392,-512v93,-95,178,-198,365,-174v19,3,39,9,58,18r-28,135v-51,-27,-135,-33,-188,0v-146,89,-215,277,-215,504v0,118,30,203,142,203v46,0,88,-14,126,-30r-28,133v-39,21,-89,32,-145,32","w":1610,"k":{"\u0473":30,"\u0451":30,"\u0450":30,"\u0454":30,"\u0444":30,"\u0441":30,"\u043e":30,"\u0435":30,"\u0434":30,"\u2014":70,"\u2013":70,"-":70}},"\u0437":{"d":"675,-725v0,-169,-299,-120,-427,-81v-23,7,-44,13,-63,20r28,-131v77,-31,194,-58,303,-58v180,0,314,68,314,235v0,138,-85,210,-195,242r-1,4v84,23,143,79,143,184v0,296,-321,372,-623,318v-47,-8,-90,-25,-124,-45r26,-127v169,86,564,103,566,-139v0,-81,-64,-122,-191,-122r-182,0r28,-133v191,3,398,7,398,-167","w":900,"k":{"\u201c":45,"\u2018":45}},"\u0438":{"d":"370,25v-191,0,-296,-117,-271,-321v3,-22,8,-50,15,-85r118,-569r155,0r-134,654v-17,119,38,191,151,189v219,-3,292,-158,332,-348r103,-495r155,0r-151,734v-11,60,-4,105,60,105v19,0,38,-2,57,-6r-25,123v-121,29,-235,-12,-232,-134r-4,0v-64,84,-182,153,-329,153","w":1079},"\u0439":{"d":"520,-1448v-24,106,20,192,124,189v127,-4,198,-83,235,-189r142,0v-55,180,-171,308,-383,312v-186,3,-281,-123,-248,-312r130,0xm370,25v-191,0,-296,-117,-271,-321v3,-22,8,-50,15,-85r118,-569r155,0r-134,654v-17,119,38,191,151,189v219,-3,292,-158,332,-348r103,-495r155,0r-151,734v-11,60,-4,105,60,105v19,0,38,-2,57,-6r-25,123v-121,29,-235,-12,-232,-134r-4,0v-64,84,-182,153,-329,153","w":1079},"\u043a":{"d":"858,-116r-28,132v-309,45,-336,-262,-472,-432v-15,-19,-33,-31,-53,-39r-95,455r-155,0r197,-950r155,0r-95,463r5,0r483,-463r205,0r-507,476v121,115,111,382,360,358","w":965,"k":{"\u0473":30,"\u0451":30,"\u0450":30,"\u0454":30,"\u0444":30,"\u0441":30,"\u043e":30,"\u0435":30,"\u0434":30,"\u0430":30,"\u2014":40,"\u2013":40,"\u00ab":40,"?":40,"-":40}},"\u043b":{"d":"948,6v-123,24,-263,7,-263,-128v0,-20,3,-43,8,-70r132,-632v-110,-20,-204,12,-254,73v-174,211,-162,617,-423,742v-49,24,-121,32,-188,24r31,-159v163,15,202,-122,249,-242v105,-267,158,-589,526,-589v85,0,161,10,239,25r-155,760v-20,78,58,76,125,64","w":1090},"\u043c":{"d":"589,-950v39,213,70,458,67,706r6,0v115,-248,268,-484,413,-706r222,0v-16,89,-31,166,-44,230r-107,530v-8,49,8,71,59,70v24,0,46,-2,66,-6r-27,132v-27,6,-59,9,-94,9v-106,0,-168,-36,-169,-137v0,-20,3,-43,8,-70v43,-199,89,-401,140,-605r-5,0r-107,171r-115,194r-244,432r-110,0r-18,-400v-4,-67,-10,-134,-17,-201v-7,-67,-15,-132,-26,-196r-9,0v-49,259,-97,486,-206,663v-62,101,-150,166,-312,149r30,-153v124,9,169,-70,216,-175v79,-176,123,-388,174,-637r209,0","w":1382},"\u043d":{"d":"678,0r88,-425r-468,0r-88,425r-155,0r197,-950r155,0r-81,392r468,0r81,-392r155,0r-197,950r-155,0","w":1075},"\u043e":{"d":"746,-381v66,-173,74,-474,-155,-462v-181,8,-258,138,-311,275v-26,66,-40,146,-40,229v0,139,56,232,195,232v180,0,258,-137,311,-274xm600,-975v275,-3,382,225,328,507v-42,217,-150,389,-338,464v-49,19,-105,29,-166,29v-269,2,-379,-215,-326,-493v42,-220,149,-399,337,-477v49,-20,104,-30,165,-30","w":1006,"k":{"\u0459":30,"\u044f":40,"\u0445":20,"\u043b":30,"\u0437":30,"\u0436":30,"\u201c":60,"\u2018":60}},"\u043f":{"d":"811,-710v0,-144,-160,-155,-268,-108v-118,51,-195,155,-224,294r-109,524r-155,0r198,-950r127,0r0,129r4,0v75,-87,178,-153,329,-154v184,-1,291,118,251,313r-136,662r-155,0r122,-590v11,-49,16,-89,16,-120","w":1060},"\u0440":{"d":"757,-408v51,-151,78,-442,-118,-434v-140,6,-218,112,-273,220v-62,120,-76,289,-111,435v46,44,103,84,194,80v185,-8,258,-155,308,-301xm610,-3v-124,53,-307,25,-376,-57r-4,0r-110,525r-155,0r294,-1415r127,0r0,130r4,0v68,-83,146,-150,285,-155v309,-10,312,406,219,647v-55,144,-144,265,-284,325","w":1023,"k":{"\u0459":30,"\u044f":40,"\u043b":30,"\u0436":30,"\u201c":60,"\u2018":60}},"\u0441":{"d":"516,20v-267,29,-437,-101,-431,-362v7,-300,132,-513,358,-604v126,-51,312,-25,411,24r-27,132v-88,-41,-233,-74,-335,-26v-162,74,-244,242,-252,464v-5,161,73,242,230,242v93,0,191,-30,251,-62r-28,142v-47,25,-111,43,-177,50","w":849,"k":{"\u0441":20,"}":-50,"]":-40,")":-50,"\u2014":50,"\u2013":50,"-":50}},"\u0442":{"d":"694,-975v136,0,215,71,230,195r4,0v76,-105,174,-195,342,-195v177,0,275,125,236,313r-136,662r-155,0r125,-604v8,-39,12,-70,13,-106v2,-86,-47,-136,-127,-133v-141,5,-226,95,-282,193v-21,39,-36,81,-45,126r-109,524r-155,0r125,-604v8,-39,11,-70,13,-106v8,-136,-134,-158,-236,-108v-111,53,-190,158,-218,294r-109,524r-155,0r198,-950r127,0r0,129r4,0v70,-86,171,-154,310,-154","w":1602,"k":{"\u201c":70,"\u2018":70}},"\u0443":{"d":"-137,349v189,25,280,-78,357,-197v29,-46,59,-101,90,-165r-216,-937r160,0r165,751r4,0r405,-751r179,0r-543,977v-92,159,-184,339,-346,421v-75,38,-180,51,-283,35","w":932,"k":{"\u0459":60,"\u044f":40,"\u043c":50,"\u043b":60,"?":50,"\u2026":80,".":80,",":60}},"\u0444":{"d":"1008,-2v-99,47,-251,26,-317,-34r-3,0r-34,149v-22,90,-46,170,-89,234v-74,112,-172,159,-321,138r25,-142v207,15,222,-201,265,-374v-47,26,-121,56,-194,56v-291,0,-284,-391,-205,-627v49,-147,128,-276,258,-342v101,-51,245,-33,317,33r4,0v59,-258,92,-562,394,-562v21,0,43,2,66,6r-26,138v-199,-38,-247,229,-285,419r4,0v56,-38,109,-65,186,-65v360,0,279,577,151,785v-49,80,-111,148,-196,188xm1132,-414v37,-156,71,-433,-120,-428v-66,2,-129,35,-175,63r-127,633v61,40,173,54,245,13v95,-54,149,-162,177,-281xm276,-540v-45,163,-88,478,159,429v45,-9,91,-22,124,-40r129,-630v-51,-57,-160,-84,-238,-36v-90,55,-142,162,-174,277","w":1391,"k":{"\u044f":20,"\u0445":20,"\u0436":30,"\u201c":50,"\u2018":50}},"\u0445":{"d":"667,0r-200,-370r-4,0r-329,370r-184,0r444,-491r-258,-459r166,0r196,361r4,0r322,-361r184,0r-437,483r262,467r-166,0","w":933,"k":{"\u0473":20,"\u0451":20,"\u0450":20,"\u0454":20,"\u0444":20,"\u0441":20,"\u043e":20,"\u0435":20,"\u0434":30,"\u0430":20,"\u2014":60,"\u2013":60,"\u00ab":40,"?":40,"-":60}},"\u0446":{"d":"813,0v-70,-9,-102,-60,-110,-128r-4,0v-67,85,-178,155,-329,153v-172,-2,-273,-88,-275,-264v0,-31,5,-73,16,-126r121,-585r155,0r-127,610v-5,28,-8,54,-10,82v-14,170,199,180,313,112v97,-57,145,-173,173,-309r103,-495r155,0r-153,738v-11,63,6,101,76,101v24,0,45,-2,65,-5r-94,456r-147,0","w":1079,"k":{"\u045e":-40,"\u0458":-70,"\u0443":-40,"\u0440":-40,"}":-50,"]":-50,")":-50,"\u2014":50,"\u2013":50,"\u201c":50,"\u2018":50,"-":50,";":-60,",":-60}},"\u0447":{"d":"384,-330v-165,-2,-269,-95,-248,-272v14,-114,47,-236,69,-348r155,0r-58,276v-30,118,-10,215,127,211v172,-4,268,-93,301,-251r49,-236r155,0r-197,950r-155,0r90,-433r-3,0v-64,60,-165,104,-285,103","w":979},"\u0448":{"d":"818,-357v-32,124,-25,259,113,250v196,-12,266,-176,304,-358r101,-485r155,0r-151,737v-10,59,-2,106,60,102v16,-1,44,-2,57,-6r-25,123v-22,6,-50,9,-77,9v-100,-1,-150,-57,-155,-152r-4,0v-69,87,-156,160,-309,162v-126,2,-202,-68,-213,-180r-4,0v-74,108,-176,174,-330,180v-191,7,-275,-151,-234,-350r130,-625r155,0r-127,612v-30,119,-15,231,107,231v193,0,277,-174,316,-364r99,-479r155,0","w":1576},"\u0449":{"d":"1196,-137v-69,87,-156,160,-309,162v-126,2,-202,-68,-213,-180r-4,0v-74,108,-176,174,-330,180v-191,7,-275,-151,-234,-350r130,-625r155,0r-127,612v-30,119,-15,231,107,231v193,0,277,-174,316,-364r99,-479r155,0r-123,593v-10,49,-13,77,-16,121v-12,151,170,153,262,90v94,-64,142,-179,171,-319r101,-485r155,0r-152,738v-11,63,6,101,76,101v24,0,45,-2,65,-5r-94,456r-147,0r72,-340v-72,-11,-107,-59,-110,-137r-5,0","w":1576,"k":{"\u045e":-40,"\u0458":-70,"\u0443":-40,"\u0440":-40,"}":-50,"]":-50,")":-50,"\u2014":50,"\u2013":50,"\u201c":50,"\u2018":50,"-":50,";":-60,",":-60}},"\u044a":{"d":"337,-148v50,22,109,33,181,33v159,0,294,-61,294,-217v0,-184,-294,-138,-419,-86xm655,-597v183,3,312,81,312,256v0,254,-199,355,-466,358v-135,2,-253,-33,-336,-87r155,-747r-260,0r27,-133r416,0r-82,396v67,-20,153,-44,234,-43","w":1077,"k":{"\"":140,"'":140,"\u0475":80,"\u045e":110,"\u044a":100,"\u0447":60,"\u0443":110,"\u0431":30,"\u201d":160,"\u201c":220,"\u2019":160,"\u2018":220,"?":70}},"\u044b":{"d":"938,0r197,-950r155,0r-197,950r-155,0xm232,-148v50,22,109,33,181,33v159,0,294,-61,294,-217v0,-184,-294,-138,-419,-86xm550,-597v183,3,312,81,312,256v0,254,-199,355,-466,358v-135,2,-253,-33,-336,-87r183,-880r155,0r-82,396v67,-20,153,-44,234,-43","w":1335},"\u044c":{"d":"553,-597v186,3,324,77,324,254v0,186,-118,283,-269,332v-175,56,-434,23,-548,-59r183,-880r155,0r-83,396v68,-20,155,-44,238,-43xm231,-148v184,70,496,35,491,-184v-4,-186,-305,-138,-435,-86","w":987,"k":{"\"":140,"'":140,"\u0475":80,"\u045e":110,"\u044a":100,"\u0447":60,"\u0443":110,"\u0431":30,"\u201d":160,"\u201c":220,"\u2019":160,"\u2018":220,"?":70}},"\u044d":{"d":"58,-160v90,49,259,72,374,28v125,-48,202,-149,227,-293r-470,0r30,-133r457,0v12,-180,-69,-284,-243,-285v-95,0,-190,22,-263,50r27,-132v59,-30,163,-50,249,-50v245,0,384,133,384,382v0,284,-111,478,-307,572v-135,65,-373,54,-493,-9","w":905,"k":{"\u0459":30,"\u044f":40,"\u043b":30,"\u0437":30,"\u0436":30,"\u201c":60,"\u2018":60}},"\u044e":{"d":"1001,-975v275,-3,382,225,328,507v-42,217,-150,389,-339,464v-49,19,-104,29,-165,29v-252,-2,-366,-183,-333,-450r-194,0r-88,425r-155,0r197,-950r155,0r-81,392r194,0v51,-170,147,-314,302,-382v53,-24,112,-35,179,-35xm1098,-274v99,-155,173,-572,-106,-569v-128,1,-209,81,-262,167v-53,86,-89,209,-89,337v0,139,56,232,195,232v128,0,208,-82,262,-167","w":1407,"k":{"\u0459":30,"\u044f":40,"\u043b":30,"\u0437":30,"\u0436":30,"\u201c":60,"\u2018":60}},"\u044f":{"d":"325,-430v-96,-27,-149,-139,-121,-268v61,-277,481,-323,763,-214r-189,912r-155,0r79,-383r-199,0v-72,-1,-91,35,-119,83v-17,30,-32,65,-48,104v-51,125,-142,251,-331,212r28,-142v194,34,143,-244,292,-300r0,-4xm349,-622v0,156,228,100,379,110r64,-307v-44,-11,-93,-17,-146,-17v-168,3,-297,55,-297,214","w":1012},"\u0453":{"d":"528,12v-228,42,-463,-13,-463,-238v0,-296,305,-291,505,-388v45,-22,82,-54,83,-116v2,-131,-184,-125,-303,-97v-47,11,-91,24,-134,39r28,-139v69,-25,173,-50,270,-48v168,4,294,70,294,239v0,278,-322,258,-504,363v-46,26,-83,61,-84,128v-4,160,199,151,334,120v50,-12,96,-27,139,-44r-28,139v-42,19,-88,33,-137,42xm855,-1473r-234,349r-134,0r192,-349r176,0","w":843,"k":{"\u0453":30,"\u0437":30,"\u0433":30,"\u201c":40,"\u2018":40}},"\u0491":{"d":"752,-950r64,-295r144,0r-91,436r-492,0r-167,809r-155,0r197,-950r500,0","w":840,"k":{"\u0459":130,"\u044f":40,"\u043c":80,"\u043b":130,"\u0434":30,"\u0432":30}},"\u0452":{"d":"694,-907v352,-7,281,496,192,744v-74,205,-188,379,-396,449v-65,22,-137,30,-216,22r32,-146v213,13,321,-125,394,-273v63,-126,104,-283,104,-457v0,-128,-37,-207,-155,-207v-145,0,-231,94,-289,193v-22,39,-37,81,-46,126r-94,456r-155,0r239,-1152r-162,0r27,-133r163,0r34,-163r155,0r-34,163r366,0r-27,133r-367,0r-84,399r4,0v72,-84,173,-151,315,-154","w":1034,"k":{"\u201c":60,"\u2018":60}},"\u0454":{"d":"598,10v-287,61,-509,-69,-503,-357v5,-275,120,-473,307,-575v134,-73,342,-62,474,0r-27,128v-92,-45,-238,-69,-347,-25v-114,46,-190,138,-223,261r466,0r-30,133r-466,0v-28,192,53,323,240,318v93,-2,193,-28,257,-64r-28,141v-30,16,-70,30,-120,40","w":891,"k":{"\u0454":30,"\u0453":20,"\u0437":30,"\u0433":20}},"\u0455":{"d":"749,-782v-131,-68,-448,-118,-448,87v0,130,146,133,241,177v88,41,162,93,162,222v0,277,-273,358,-550,304v-52,-11,-94,-25,-124,-43r29,-130v69,29,152,59,250,58v140,-1,243,-46,243,-169v0,-148,-180,-143,-280,-200v-69,-40,-121,-90,-125,-197v-11,-315,391,-358,629,-237","w":816},"\u0450":{"d":"598,-975v171,0,296,75,296,246v0,214,-178,269,-376,301v-80,13,-173,18,-276,21v-24,223,103,322,328,291v74,-10,146,-29,203,-56r-28,142v-70,31,-167,56,-271,55v-253,-1,-389,-131,-389,-379v0,-302,135,-509,361,-596v47,-18,97,-25,152,-25xm739,-735v-2,-113,-153,-128,-249,-87v-112,47,-184,149,-219,276v181,-2,350,-14,436,-102v22,-23,32,-53,32,-87xm634,-1473r50,349r-126,0r-88,-349r164,0","w":934,"k":{"\u0453":30,"\u0433":30}},"\u0451":{"d":"598,-975v171,0,296,75,296,246v0,214,-178,269,-376,301v-80,13,-173,18,-276,21v-24,223,103,322,328,291v74,-10,146,-29,203,-56r-28,142v-70,31,-167,56,-271,55v-253,-1,-389,-131,-389,-379v0,-302,135,-509,361,-596v47,-18,97,-25,152,-25xm739,-735v-2,-113,-153,-128,-249,-87v-112,47,-184,149,-219,276v181,-2,350,-14,436,-102v22,-23,32,-53,32,-87xm347,-1171r35,-167r159,0r-35,167r-159,0xm728,-1171r35,-167r159,0r-35,167r-159,0","w":934,"k":{"\u0453":30,"\u0433":30}},"\u0456":{"d":"55,0r197,-950r155,0r-197,950r-155,0xm294,-1171r35,-171r163,0r-35,171r-163,0","w":437},"\u0457":{"d":"55,0r197,-950r155,0r-197,950r-155,0xm101,-1171r35,-167r159,0r-35,167r-159,0xm482,-1171r35,-167r159,0r-35,167r-159,0","w":437},"\u0458":{"d":"-274,339v88,25,215,23,259,-37v35,-48,54,-110,70,-187r221,-1065r155,0r-233,1127v-38,189,-128,313,-355,313v-51,0,-110,-10,-143,-20xm318,-1171r35,-171r163,0r-35,171r-163,0","w":461,"k":{"\u0458":-40}},"\u045d":{"d":"370,25v-191,0,-296,-117,-271,-321v3,-22,8,-50,15,-85r118,-569r155,0r-134,654v-17,119,38,191,151,189v219,-3,292,-158,332,-348r103,-495r155,0r-151,734v-11,60,-4,105,60,105v19,0,38,-2,57,-6r-25,123v-121,29,-235,-12,-232,-134r-4,0v-64,84,-182,153,-329,153xm654,-1473r50,349r-126,0r-88,-349r164,0","w":1079},"\u045c":{"d":"858,-116r-28,132v-309,45,-336,-262,-472,-432v-15,-19,-33,-31,-53,-39r-95,455r-155,0r197,-950r155,0r-95,463r5,0r483,-463r205,0r-507,476v121,115,111,382,360,358xm912,-1473r-234,349r-134,0r192,-349r176,0","w":965,"k":{"\u0473":30,"\u0451":30,"\u0450":30,"\u0454":30,"\u0444":30,"\u0441":30,"\u043e":30,"\u0435":30,"\u0434":30,"\u0430":30,"\u2014":40,"\u2013":40,"\u00ab":40,"?":40,"-":40}},"\u0459":{"d":"1149,-597v183,2,300,82,300,256v0,250,-192,355,-456,358v-133,1,-243,-33,-326,-87r158,-754v-323,-51,-350,268,-442,498v-72,181,-159,367,-423,341r31,-159v190,14,216,-174,274,-313r37,-105v81,-210,173,-413,464,-413v76,0,156,8,239,25r-82,396v68,-19,144,-44,226,-43xm839,-148v48,22,102,33,171,33v157,0,284,-64,284,-217v0,-186,-274,-138,-399,-86","w":1559,"k":{"\"":140,"'":140,"\u0475":80,"\u045e":110,"\u044a":100,"\u0447":60,"\u0443":110,"\u0431":30,"\u201d":160,"\u201c":220,"\u2019":160,"\u2018":220,"?":70}},"\u045a":{"d":"1129,-597v183,2,300,82,300,256v0,250,-192,355,-456,358v-133,1,-243,-33,-326,-87r79,-375r-424,0r-92,445r-155,0r197,-950r155,0r-77,372r424,0r78,-372r154,0r-83,396v68,-19,144,-44,226,-43xm819,-148v48,22,102,33,171,33v157,0,284,-64,284,-217v0,-186,-274,-138,-399,-86","w":1539,"k":{"\"":140,"'":140,"\u0475":80,"\u045e":110,"\u044a":100,"\u0447":60,"\u0443":110,"\u0431":30,"\u201d":160,"\u201c":220,"\u2019":160,"\u2018":220,"?":70}},"\u045b":{"d":"795,-598v17,-114,-32,-180,-136,-177v-205,7,-309,144,-345,319r-94,456r-155,0r239,-1152r-162,0r27,-133r163,0r34,-163r155,0r-34,163r381,0r-27,133r-382,0r-84,399r4,0v74,-86,171,-153,318,-154v187,-2,293,116,253,313r-120,594r-155,0r106,-517v7,-34,11,-61,14,-81","w":1047,"k":{"\u201c":60,"\u2018":60}},"\u045e":{"d":"503,-1448v-24,106,20,192,124,189v127,-4,198,-83,235,-189r142,0v-55,180,-171,308,-383,312v-186,3,-281,-123,-248,-312r130,0xm-107,349v189,25,280,-78,357,-197v29,-46,59,-101,90,-165r-216,-937r160,0r165,751r4,0r405,-751r179,0r-543,977v-92,159,-184,339,-346,421v-75,38,-180,51,-283,35","w":962,"k":{"\u0459":60,"\u044f":40,"\u043c":50,"\u043b":60,"?":50,"\u2026":80,".":80,",":60}},"\u045f":{"d":"376,25v-191,0,-302,-112,-278,-317v2,-19,7,-43,12,-70r122,-588r155,0r-128,613v-5,28,-7,51,-9,79v-12,190,256,177,357,86v69,-63,114,-150,139,-272r105,-506r155,0r-152,737v-10,59,-3,102,61,102v20,0,39,-2,57,-6r-25,123v-122,29,-236,-10,-232,-134r-4,0v-71,89,-178,153,-335,153xm495,103r-78,361r-147,0r80,-361r145,0","w":1091},"\u0463":{"d":"592,-597v187,3,324,77,324,254v0,186,-119,283,-270,332v-175,56,-433,23,-547,-59r155,-747r-201,0r27,-133r201,0r103,-498r155,0r-103,498r303,0r-27,133r-303,0r-55,263v68,-20,155,-44,238,-43xm270,-148v184,70,496,35,491,-184v-4,-186,-305,-138,-435,-86","w":1026,"k":{"\"":140,"'":140,"\u0475":80,"\u045e":110,"\u044a":90,"\u0447":60,"\u0443":110,"\u201d":160,"\u201c":220,"\u2019":160,"\u2018":220,"?":70}},"\u0473":{"d":"590,-975v274,-4,369,229,318,507v-40,216,-144,390,-331,464v-49,19,-103,29,-163,29v-267,4,-367,-220,-316,-493v41,-220,143,-399,329,-477v49,-20,103,-30,163,-30xm245,-423v-20,164,13,323,180,316v193,-8,269,-158,316,-316r-496,0xm763,-556v15,-158,-26,-292,-182,-287v-183,6,-258,143,-308,287r490,0","w":991,"k":{"\u0459":30,"\u044f":40,"\u0445":20,"\u043b":30,"\u0437":30,"\u0436":30,"\u201c":60,"\u2018":60}},"\u0475":{"d":"449,0r-149,0r-212,-950r161,0r151,742r4,0r283,-604v53,-117,134,-179,295,-159r-27,135v-79,-12,-110,30,-136,84","w":912,"k":{"\u0459":70,"\u044f":20,"\u043c":30,"\u043b":70,"\u0434":20,"\u0430":20,"\u2014":40,"\u2013":40,"?":50,"-":40,"\u2026":60,".":60,",":70}},"^":{"d":"199,-543r-150,0r408,-820r136,0r408,820r-150,0r-324,-662r-4,0"},"~":{"d":"695,-473v76,0,109,-43,142,-91r102,73v-43,85,-116,152,-240,152v-141,0,-225,-98,-356,-98v-76,0,-109,43,-142,91r-102,-73v43,-85,116,-152,240,-152v140,0,224,98,356,98"},"\u00a6":{"d":"305,-720r-145,0r0,-728r145,0r0,728xm305,465r-145,0r0,-696r145,0r0,696","w":465},"\\":{"d":"327,249r-241,-1587r142,0r241,1587r-142,0","w":563},"_":{"d":"0,142r1000,0r0,133r-1000,0r0,-133","w":1000},"'":{"d":"278,-1338r157,0r-103,494r-157,0","w":380,"k":{"\u0463":-70,"\u045b":-50,"\u0459":100,"\u0452":-50,"\u044a":-60,"\u043b":100,"\u0409":140,"\u0408":130,"\u041b":140,"\u0410":90,"\u00bf":160,".":40,"\u00c6":130,"\u00c5":90,"\u00c4":90,"\u00c3":90,"\u00c1":90,"\u00c0":90,"J":130,"A":90}},"\"":{"d":"278,-1338r157,0r-103,494r-157,0xm619,-1338r157,0r-103,494r-157,0","w":721,"k":{"\u0463":-70,"\u045b":-50,"\u0459":100,"\u0452":-50,"\u044a":-60,"\u043b":100,"\u0409":140,"\u0408":130,"\u041b":140,"\u0410":90,"\u00bf":160,".":40,"\u00c6":130,"\u00c5":90,"\u00c4":90,"\u00c3":90,"\u00c2":90,"\u00c1":90,"\u00c0":90,"J":130,"A":90}},"@":{"d":"1083,-965v106,0,185,48,223,120r4,0r46,-95r126,0r-141,669v-17,86,-7,144,70,144v168,0,242,-165,287,-319v41,-139,39,-335,-15,-461v-87,-202,-273,-321,-555,-321v-380,0,-595,188,-712,454v-52,118,-82,261,-82,420v0,419,234,632,662,635v193,2,379,-36,513,-85r-28,141v-222,75,-572,110,-818,29v-297,-98,-483,-329,-483,-723v0,-413,171,-696,428,-864v132,-86,302,-143,513,-142v357,2,590,156,699,411v67,158,69,387,16,558v-48,155,-136,280,-262,350v-60,33,-126,49,-195,49v-123,0,-189,-61,-188,-181r-4,0v-71,100,-167,181,-325,181v-174,0,-260,-123,-255,-314v8,-301,121,-528,334,-628v43,-20,91,-28,142,-28xm796,-534v-43,137,-86,415,101,407v149,-6,227,-108,285,-219v54,-105,70,-251,100,-381v-41,-54,-92,-106,-187,-106v-183,0,-253,154,-299,299","w":2035},"\u00a9":{"d":"242,-392v-70,-165,-70,-389,0,-554v103,-240,311,-417,640,-417v329,0,538,177,640,417v70,165,70,389,0,554v-103,240,-311,417,-640,417v-329,0,-538,-177,-640,-417xm1078,-911v-43,-15,-99,-28,-156,-27v-169,4,-258,102,-259,275v-1,176,90,262,263,262v50,0,121,-12,159,-27r0,126v-44,16,-113,27,-174,26v-247,-5,-391,-135,-391,-384v0,-193,96,-315,235,-375v91,-39,237,-37,323,-1r0,125xm362,-890v-55,136,-55,306,0,442v81,200,248,348,520,348v271,0,439,-149,520,-348v55,-136,55,-306,0,-442v-81,-200,-248,-348,-520,-348v-271,0,-439,149,-520,348","w":1686},"\u00ae":{"d":"252,-686v-50,-115,-50,-271,0,-386v73,-167,219,-291,448,-291v229,0,376,125,448,291v50,115,50,271,0,386v-73,167,-219,291,-448,291v-229,0,-376,-125,-448,-291xm424,-1156v-86,81,-138,275,-77,430v54,137,167,237,353,237v185,0,299,-100,353,-237v61,-154,4,-345,-77,-430v-88,-92,-281,-149,-432,-82v-47,20,-85,49,-120,82xm895,-980v0,84,-52,127,-124,141r0,4r136,201r-114,0r-121,-190r-51,0r0,190r-99,0r0,-496v174,0,371,-22,373,150xm791,-980v0,-76,-92,-65,-170,-65r0,136v82,0,170,6,170,-71","w":1270},"\u2122":{"d":"444,-1229r-228,0r0,-109r577,0r0,109r-227,0r0,575r-122,0r0,-575xm1022,-1202r5,219r0,329r-119,0r0,-684r182,0r168,430v12,31,21,56,26,74r6,0r77,-206r117,-298r184,0r0,684r-120,0r0,-329r5,-219r-7,0r-85,220r-131,328r-85,0r-216,-548r-7,0","w":1752},"\u00a4":{"d":"190,-669v0,-84,27,-152,64,-205r-138,-139r85,-85r138,139v54,-38,121,-66,206,-66v85,0,153,27,206,65r138,-138r85,85r-138,138v38,54,65,121,65,206v0,85,-29,153,-66,206r140,139r-85,85r-140,-139v-53,38,-121,63,-205,64v-85,0,-152,-27,-205,-65r-140,140r-85,-85r140,-140v-38,-54,-65,-120,-65,-205xm545,-894v-135,0,-218,90,-218,225v0,135,84,224,218,224v135,0,219,-89,219,-224v0,-135,-84,-225,-219,-225","w":1030},"$":{"d":"596,-561v133,28,263,70,263,230v0,209,-177,278,-375,302r-21,104r-132,0r21,-101v-102,-5,-207,-24,-271,-54r27,-134v67,35,173,51,272,54r61,-291v-134,-29,-250,-82,-250,-245v0,-206,157,-283,364,-291r21,-100r132,0r-22,105v90,6,162,22,229,46r-28,134v-69,-24,-141,-41,-229,-47xm513,-167v100,-16,192,-45,192,-154v0,-76,-72,-91,-137,-107xm526,-850v-120,2,-215,77,-171,196v16,42,65,56,115,68","w":1030,"k":{"9":50,"8":50,"7":50,"6":50,"5":50,"3":50,"2":50}},"\u00a2":{"d":"482,-130v-192,-33,-314,-143,-314,-367v0,-260,122,-441,298,-537v64,-35,137,-55,218,-62r33,-158r132,0r-33,160v60,5,126,17,172,33r-28,135v-46,-17,-109,-31,-172,-35r-146,699r116,-13v34,-6,70,-14,99,-23r-30,141v-59,20,-138,31,-214,34r-31,148r-132,0xm496,-888v-122,94,-199,271,-161,474v17,90,80,133,176,147r144,-689v-63,11,-117,34,-159,68","w":1030},"\u00a3":{"d":"259,-11v-82,0,-157,9,-221,23r-22,-122v158,-51,218,-202,264,-365r-126,0r28,-137r133,0v57,-238,139,-456,432,-458v72,-1,154,19,206,39r-28,134v-72,-31,-195,-57,-274,-17v-105,53,-143,175,-173,302r323,0r-28,137r-326,0v-31,137,-77,260,-178,327r0,4v142,-20,272,25,405,28v88,2,135,-28,170,-80r110,88v-54,85,-136,133,-271,133v-150,0,-268,-36,-424,-36","w":1030},"\u00a5":{"d":"520,-546r354,-499r180,0r-398,533r205,0r-28,133r-262,0r-30,142r263,0r-28,133r-262,0r-27,130r-157,0r27,-130r-262,0r28,-133r261,0r30,-142r-262,0r28,-133r200,0r-191,-533r156,0r170,499r5,0","w":1030},"\u00aa":{"d":"647,-1055v-26,-31,-80,-71,-136,-68v-135,7,-191,131,-220,247v-26,105,-38,266,83,261v109,-4,161,-87,203,-171v35,-73,50,-178,70,-269xm329,-494v-136,0,-194,-100,-194,-243v0,-218,84,-383,219,-469v104,-66,268,-40,313,56r3,0r33,-76r120,0r-116,562v-5,56,59,47,110,40r-24,116v-115,20,-227,2,-221,-120r-4,0v-56,84,-125,134,-239,134","w":814},"\u00ba":{"d":"596,-730v69,-108,118,-403,-76,-393v-173,9,-244,171,-244,349v0,96,41,160,137,159v89,0,146,-56,183,-115xm400,-494v-206,2,-299,-162,-255,-374v43,-205,146,-370,387,-376v206,-5,298,160,256,374v-33,166,-115,298,-260,354v-38,15,-81,22,-128,22","w":778},"#":{"d":"466,-949r120,-389r152,0r-120,389r286,0r120,-389r152,0r-120,389r193,0r-14,132r-220,0r-91,296r199,0r-14,132r-226,0r-120,389r-152,0r120,-389r-286,0r-120,389r-152,0r120,-389r-193,0r14,-132r220,0r91,-296r-199,0r14,-132r226,0xm486,-521r286,0r91,-296r-286,0","w":1290},"0":{"d":"604,-975v237,1,355,125,355,357v0,304,-139,521,-365,614v-49,20,-104,29,-164,29v-237,0,-355,-126,-355,-357v0,-304,139,-521,365,-614v49,-20,104,-29,164,-29xm804,-614v-1,-147,-59,-234,-207,-229v-194,6,-288,157,-339,317v-19,61,-28,125,-28,190v1,147,59,234,207,229v193,-6,290,-157,340,-317v19,-61,27,-125,27,-190","w":1034,"k":{"3":35,"2":45}},"1":{"d":"378,-143r133,-638r-372,113r31,-150r397,-132r134,0r-168,807r295,0r-29,143r-744,0r29,-143r294,0","w":929,"k":{"7":40,"5":30,"3":30}},"2":{"d":"553,-975v189,2,318,75,318,256v0,141,-76,233,-157,313v-101,101,-237,187,-367,269r-1,4v180,-16,314,-8,495,-10r-29,143r-753,0r21,-107r248,-161v132,-89,255,-179,338,-294v33,-48,50,-97,50,-146v0,-93,-66,-136,-173,-134v-123,1,-224,41,-322,81r28,-136v73,-40,193,-79,304,-78","w":1032,"k":{"9":30,"7":40,"5":35,"3":40,"2":80,"0":35}},"3":{"d":"574,-55v0,-185,-198,-181,-392,-179r27,-133v212,12,361,-52,432,-186v19,-37,29,-77,29,-120v0,-238,-359,-172,-521,-110r27,-132v86,-36,192,-60,297,-60v205,0,353,84,353,280v0,214,-128,330,-298,383r-1,4v127,18,202,106,202,247v0,250,-145,385,-340,445v-159,49,-383,31,-497,-36r27,-126v79,36,155,60,272,58v226,-4,383,-112,383,-335","w":929},"4":{"d":"224,-133r0,4r148,-4r182,0r63,-304r155,0r-63,304r189,0r-27,133r-189,0r-81,387r-155,0r81,-387r-507,0r23,-114r535,-836r168,0","w":1028},"5":{"d":"632,-42v0,-221,-261,-255,-508,-226r203,-682r626,0r-30,143r-490,0r-119,397v279,-9,473,103,473,363v0,219,-126,351,-295,420v-152,62,-414,46,-537,-26r27,-127v79,37,166,58,268,58v222,0,382,-106,382,-320","w":998,"k":{"2":20,"0":50}},"6":{"d":"601,-806v208,0,334,115,334,330v0,217,-108,377,-261,456v-58,30,-124,45,-200,45v-249,0,-359,-169,-359,-427v0,-339,122,-612,295,-795v106,-113,283,-198,496,-154v37,8,78,22,123,41r-27,130v-100,-48,-265,-69,-374,-6v-175,102,-271,299,-336,518r4,0v68,-76,169,-138,305,-138xm780,-462v0,-134,-74,-206,-204,-206v-148,0,-239,85,-283,197v-15,40,-23,84,-23,131v3,142,70,233,210,233v202,0,300,-156,300,-355","w":1039,"k":{"7":20,"2":25}},"7":{"d":"83,-807r30,-143r768,0r-22,104r-694,1233r-166,0r667,-1194r-583,0","w":859,"k":{"4":40,"2":40}},"8":{"d":"415,-701v-92,-55,-172,-127,-172,-273v0,-197,112,-310,260,-363v51,-17,104,-26,161,-26v219,3,368,94,368,307v0,210,-136,317,-305,370r-1,4v113,35,199,116,199,260v0,226,-125,356,-295,417v-58,20,-120,30,-186,30v-223,-2,-367,-97,-367,-313v0,-234,142,-361,337,-409xm586,-756v159,-32,291,-112,291,-295v0,-115,-85,-184,-210,-181v-166,4,-269,93,-269,260v0,134,82,186,188,216xm232,-299v0,131,86,194,227,192v143,-2,238,-71,285,-173v17,-37,26,-79,26,-126v-3,-138,-92,-193,-213,-213v-188,22,-325,116,-325,320","w":1032,"k":{"2":45}},"9":{"d":"552,-975v253,0,374,166,374,433v0,364,-127,643,-325,818v-114,101,-318,173,-515,118v-43,-12,-76,-26,-101,-39r31,-129v101,57,278,71,395,9v186,-99,293,-296,353,-524r-4,0v-67,84,-173,145,-321,145v-208,0,-331,-116,-331,-328v0,-228,109,-386,266,-464v54,-26,113,-39,178,-39xm263,-480v-3,129,71,198,197,198v194,0,311,-125,311,-316v0,-147,-69,-245,-215,-245v-196,0,-288,160,-293,363","w":1039},"\u00b9":{"d":"283,-630r122,-581r-235,71r27,-128r250,-83r128,0r-150,721r183,0r-24,117r-500,0r24,-117r175,0","w":598},"\u00b2":{"d":"339,-1350v175,-43,347,19,341,195v-3,100,-43,161,-96,229v-83,105,-188,194,-303,296r0,4v97,-7,223,-3,329,-4r-23,117r-523,0r18,-89r193,-178v93,-87,175,-164,233,-260v21,-35,31,-69,31,-102v0,-159,-243,-90,-336,-49r22,-121v37,-17,76,-29,114,-38","w":630},"\u00b3":{"d":"255,-1000v141,5,265,-28,265,-152v0,-137,-228,-86,-318,-53r24,-121v49,-21,128,-39,203,-37v135,3,232,59,232,192v0,120,-80,202,-186,228r-1,4v77,11,129,63,127,148v-5,206,-156,291,-361,297v-77,2,-144,-17,-192,-41r25,-116v48,23,102,36,174,36v121,0,212,-53,213,-165v1,-108,-115,-105,-228,-103","w":591},"\u00bc":{"d":"1527,-1363r85,88r-1209,1300r-85,-88xm1218,-310r1,4r173,-4r40,-192r142,0r-40,192r102,0r-24,117r-102,0r-39,187r-142,0r39,-187r-328,0r21,-98r312,-540r147,0xm283,-630r122,-581r-235,71r27,-128r250,-83r128,0r-150,721r183,0r-24,117r-500,0r24,-117r175,0","w":1710},"\u00bd":{"d":"1531,-1363r85,88r-1209,1300r-85,-88xm283,-630r122,-581r-235,71r27,-128r250,-83r128,0r-150,721r183,0r-24,117r-500,0r24,-117r175,0xm1424,-843v175,-43,347,19,341,195v-3,100,-43,161,-96,229v-83,105,-188,194,-303,296r0,4v97,-7,223,-3,329,-4r-23,117r-523,0r18,-89r193,-178v93,-87,175,-164,233,-260v21,-35,31,-69,31,-102v0,-159,-243,-90,-336,-49r22,-121v37,-17,76,-29,114,-38","w":1819},"\u00be":{"d":"1432,-1363r85,88r-1209,1300r-85,-88xm1123,-310r1,4r173,-4r40,-192r142,0r-40,192r102,0r-24,117r-102,0r-39,187r-142,0r39,-187r-328,0r21,-98r312,-540r147,0xm255,-1000v141,5,265,-28,265,-152v0,-137,-228,-86,-318,-53r24,-121v49,-21,128,-39,203,-37v135,3,232,59,232,192v0,120,-80,202,-186,228r-1,4v77,11,129,63,127,148v-5,206,-156,291,-361,297v-77,2,-144,-17,-192,-41r25,-116v48,23,102,36,174,36v121,0,212,-53,213,-165v1,-108,-115,-105,-228,-103","w":1615},"%":{"d":"1443,-1363r85,88r-1209,1300r-85,-88xm352,-494v-151,-1,-221,-103,-218,-263v5,-263,80,-483,255,-579v35,-19,76,-27,121,-27v151,1,221,103,218,263v-5,263,-80,482,-255,578v-35,19,-76,28,-121,28xm582,-1002v10,-108,22,-245,-85,-240v-100,5,-138,99,-169,182v-32,83,-53,183,-53,289v0,95,8,156,90,156v101,0,137,-100,169,-182v24,-61,42,-134,48,-205xm1264,19v-151,-1,-221,-103,-218,-263v5,-263,80,-482,255,-578v35,-19,76,-28,121,-28v151,1,221,103,218,263v-5,263,-80,483,-255,579v-35,19,-76,27,-121,27xm1494,-488v10,-108,22,-246,-85,-241v-100,5,-138,99,-169,182v-32,83,-53,183,-53,289v0,95,8,156,90,156v101,0,137,-100,169,-182v24,-61,42,-133,48,-204","w":1694},"+":{"d":"115,-587r340,0r0,-363r140,0r0,363r340,0r0,132r-340,0r0,363r-140,0r0,-363r-340,0r0,-132"},"\u00b1":{"d":"115,-665r340,0r0,-285r140,0r0,285r340,0r0,132r-340,0r0,285r-140,0r0,-285r-340,0r0,-132xm115,0r0,-132r820,0r0,132r-820,0"},"\u00d7":{"d":"105,-848r94,-93r326,327r327,-327r93,93r-327,327r327,326r-94,93r-326,-326r-326,326r-93,-93r326,-326"},"\u00f7":{"d":"445,-257r160,0r0,165r-160,0r0,-165xm935,-587r0,132r-820,0r0,-132r820,0xm445,-950r160,0r0,165r-160,0r0,-165"},"=":{"d":"115,-639r0,-132r820,0r0,132r-820,0xm115,-273r0,-132r820,0r0,132r-820,0"},"<":{"d":"935,-207r0,152r-820,-413r0,-126r820,-413r0,152r-652,322r0,4"},">":{"d":"777,-529r0,-4r-662,-324r0,-150r820,408r0,136r-820,408r0,-150"},"\u00ac":{"d":"115,-455r0,-132r820,0r0,495r-140,0r0,-363r-680,0"},"\u00b0":{"d":"300,-787v-77,-69,-131,-238,-72,-373v51,-116,152,-203,312,-203v160,0,261,87,312,203v35,80,35,186,0,266v-51,116,-152,203,-312,203v-104,0,-182,-44,-240,-96xm540,-1224v-119,0,-190,78,-190,197v0,119,72,196,190,196v119,0,191,-77,191,-196v0,-119,-72,-197,-191,-197","w":836},"\u00b5":{"d":"750,-153v-76,95,-172,176,-328,178v-84,1,-160,-39,-190,-92r-4,0r-108,532r-155,0r294,-1415r155,0r-127,609v-5,28,-8,51,-9,79v-7,144,145,181,264,131v144,-61,210,-210,248,-394r88,-425r155,0r-151,737v-9,58,-5,102,60,102v19,0,38,-2,57,-6r-25,123v-22,6,-48,9,-71,9v-108,0,-148,-58,-149,-168r-4,0","w":1180}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2008 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Corbel is either a registered trademark or a trademark of Microsoft Corporation
 * in the United States and/or other countries.
 * 
 * Description:
 * Corbel is designed to give an uncluttered and clean appearance on screen. The
 * letter forms are open with soft, flowing curves. It is legible, clear and
 * functional at small sizes. At larger sizes the detailing and style of the shapes
 * is more apparent resulting in a modern sans serif type with a wide range of
 * possible uses.
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Designer:
 * Jeremy Tankard
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography/ctfonts
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/default.aspx
 */
Cufon.registerFont({"w":1080,"face":{"font-family":"corbel","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 7 3 2 2 4 9 2 4","ascent":"1523","descent":"-525","x-height":"25","bbox":"-320 -1883 2034 490.023","underline-thickness":"120","underline-position":"-130","slope":"-12","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":422,"k":{"\u0474":150,"\u0462":120,"\u040e":100,"\u040b":220,"\u0409":50,"\u0408":100,"\u0404":110,"\u0402":220,"\u042f":60,"\u042a":110,"\u0427":250,"\u0425":80,"\u0424":110,"\u0423":100,"\u0422":220,"\u0421":85,"\u041e":85,"\u041b":50,"\u0414":70,"\u0410":60,"\u00dd":200,"\u00dc":90,"\u00db":90,"\u00da":90,"\u00d9":90,"\u00d8":85,"\u00d6":85,"\u00d5":85,"\u00d4":85,"\u00d3":85,"\u00d2":85,"\u00c7":85,"\u00c6":100,"\u00c5":60,"\u00c4":60,"\u00c3":60,"\u00c2":60,"\u00c1":60,"\u00c0":60,"Z":70,"Y":200,"X":80,"W":125,"V":125,"U":90,"T":220,"S":80,"Q":85,"O":85,"J":100,"G":85,"C":85,"A":60}},"\u00a0":{"w":422},"A":{"d":"872,-341r-475,0r-185,341r-272,0r746,-1338r228,0r272,1338r-250,0xm509,-546r325,0r-27,-144v-22,-115,-40,-222,-53,-321r-6,0v-71,161,-156,314,-239,465","w":1326,"k":{"\"":140,"'":140,"\u2014":55,"\u2013":55,"\u00ab":65,"\u201d":130,"\u201c":180,"\u2019":130,"\u2018":180,"-":55,"\u00f0":30,"\u00ff":80,"\u00fd":80,"\u00fc":25,"\u00fb":25,"\u00fa":25,"\u00f9":25,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00eb":30,"\u00ea":30,"\u00e9":30,"\u00e8":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":80,"w":70,"v":80,"u":25,"t":40,"q":30,"o":30,"l":20,"g":30,"e":30,"d":30,"c":30,"b":30,"a":30,"\u00dd":120,"\u00d8":60,"\u00d6":60,"\u00d5":60,"\u00d4":60,"\u00d3":60,"\u00d2":60,"\u00c7":60,"Y":120,"W":120,"V":160,"T":100,"Q":60,"O":60,"G":60,"C":60}},"B":{"d":"941,-995v0,-169,-227,-136,-402,-139r-72,347r177,0v175,4,297,-51,297,-208xm891,-449v0,-186,-280,-121,-466,-133r-79,377v277,5,545,-3,545,-244xm710,-1338v265,-2,476,84,476,324v0,178,-101,268,-237,326r0,4v109,32,187,107,187,242v0,337,-322,442,-696,442r-380,0r277,-1338r373,0","w":1246,"k":{")":30,"\u201d":30,"\u201c":50,"\u2019":30,"\u2018":50,"\u00dd":80,"Y":80,"W":40,"V":70,"T":30}},"C":{"d":"1184,-1111v-131,-40,-301,-69,-441,-20v-239,84,-366,296,-373,608v-6,236,123,341,353,341v123,1,234,-25,334,-59r-44,216v-92,34,-227,50,-342,50v-349,0,-546,-174,-546,-527v0,-333,131,-574,328,-725v139,-106,358,-163,601,-123v61,10,118,22,171,39","w":1185,"k":{"\u2014":50,"\u2013":50,"\u00ab":60,"-":50,"\u00f0":30,"\u00ff":70,"\u00fd":70,"\u00fc":20,"\u00fb":20,"\u00fa":20,"\u00f9":20,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00eb":30,"\u00ea":30,"\u00e9":30,"\u00e8":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":70,"w":70,"v":70,"u":20,"t":20,"q":30,"o":30,"g":30,"e":30,"d":30,"c":30,"a":30,"\u00d8":30,"\u00d6":30,"\u00d5":30,"\u00d4":30,"\u00d3":30,"\u00d2":30,"\u00c7":30,"Q":30,"O":30,"C":30}},"D":{"d":"346,-205v173,3,335,-2,445,-63v183,-101,295,-282,305,-549v8,-235,-129,-322,-371,-316r-186,0xm736,-1338v412,-8,658,196,596,617v-67,453,-353,723,-890,721r-382,0r277,-1338r399,0","w":1381,"k":{")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30,"\u00dd":50,"\u00c6":30,"Y":50,"X":30,"V":40,"T":40,"J":20}},"E":{"d":"346,-205r631,0r-42,205r-875,0r277,-1338r839,0r-43,205r-594,0r-72,346r510,0r-42,205r-510,0","w":1116},"F":{"d":"60,0r277,-1338r819,0r-43,205r-574,0r-72,346r500,0r-42,205r-500,0r-121,582r-244,0","w":1026,"k":{"\u2026":95,".":95,",":130,"\u00ef":-70,"\u00ee":-65,"\u00c6":60,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"J":80,"A":50}},"G":{"d":"370,-519v-5,211,86,336,288,337v228,1,336,-123,359,-329r-299,0r42,-205r544,0v-42,175,-61,387,-147,513v-103,152,-276,228,-522,228v-246,0,-402,-115,-472,-299v-78,-206,-24,-506,59,-664v129,-246,343,-420,709,-425v138,-2,270,28,369,65r-42,202v-140,-55,-328,-85,-489,-35v-254,80,-392,290,-399,612","w":1389,"k":{"\u00ff":30,"\u00fd":30,"z":30,"y":30,"w":30,"v":30,"\u00dd":120,"Y":120,"W":115,"V":120,"T":50}},"H":{"d":"467,-787r571,0r114,-551r244,0r-277,1338r-244,0r121,-582r-571,0r-121,582r-244,0r277,-1338r244,0","w":1362},"I":{"d":"60,0r277,-1338r244,0r-277,1338r-244,0","w":551},"J":{"d":"22,-215v77,35,215,51,284,-3v36,-28,62,-68,73,-123r206,-997r244,0r-218,1049v-38,209,-173,311,-416,314v-87,0,-153,-15,-215,-38","w":799},"K":{"d":"60,0r277,-1338r244,0r-123,595r4,0r554,-595r302,0r-639,673r425,665r-281,0r-387,-618r-4,0r-128,618r-244,0","w":1198,"k":{"\u2014":85,"\u2013":85,"\u00ab":70,"-":85,"\u00f0":40,"\u00ff":60,"\u00fd":60,"\u00fc":30,"\u00fb":30,"\u00fa":30,"\u00f9":30,"\u00f8":40,"\u00f6":40,"\u00f5":40,"\u00f4":40,"\u00f3":40,"\u00f2":40,"\u00eb":40,"\u00ea":40,"\u00e9":40,"\u00e8":40,"\u00e7":40,"\u00e5":40,"\u00e4":40,"\u00e3":40,"\u00e2":40,"\u00e1":40,"\u00e0":40,"y":60,"w":80,"v":80,"u":30,"q":40,"o":40,"g":40,"e":40,"d":40,"c":40,"a":40,"\u00d8":60,"\u00d6":60,"\u00d5":60,"\u00d4":60,"\u00d3":60,"\u00d2":60,"\u00c7":60,"Q":60,"O":60,"G":60,"C":60}},"L":{"d":"346,-205r631,0r-42,205r-875,0r277,-1338r244,0","w":1102,"k":{"\"":160,"'":160,"\u2014":125,"\u2013":125,"\u00ab":70,"\u201d":140,"\u201c":240,"\u2019":140,"\u2018":240,"?":70,"-":125,"\u00ff":70,"\u00fd":70,"y":70,"w":70,"v":80,"t":20,"\u00dd":215,"\u00d8":50,"\u00d6":50,"\u00d5":50,"\u00d4":50,"\u00d3":50,"\u00d2":50,"\u00c7":50,"Y":215,"W":120,"V":170,"T":170,"Q":50,"O":50,"G":50,"C":50}},"M":{"d":"795,-361v75,-167,390,-720,537,-977r331,0r-277,1338r-244,0r143,-638v24,-107,54,-233,91,-380r-8,0v-75,170,-388,726,-560,1018r-163,0r-107,-723v-15,-97,-28,-195,-39,-295r-8,0v-33,328,-127,699,-187,1018r-244,0r277,-1338r315,0r60,374v25,156,50,357,77,603r6,0","w":1633},"N":{"d":"934,0r-275,-593v-67,-144,-121,-272,-161,-385r-6,0v-38,310,-128,671,-188,978r-244,0r277,-1338r237,0r275,593v67,143,121,272,161,385r6,0v31,-273,132,-692,188,-978r244,0r-277,1338r-237,0","w":1418},"O":{"d":"1159,-848v2,-195,-104,-308,-290,-308v-249,0,-365,173,-441,357v-36,88,-58,195,-58,309v0,196,97,308,290,308v249,0,366,-173,442,-357v36,-88,56,-195,57,-309xm643,25v-330,-4,-518,-178,-518,-510v0,-317,127,-563,309,-719v108,-93,255,-161,452,-159v330,4,518,178,518,510v0,317,-128,563,-310,719v-108,93,-254,161,-451,159","w":1444,"k":{")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30,"\u00dd":60,"\u00c6":30,"Y":60,"X":30,"V":40,"T":40,"J":40}},"P":{"d":"304,0r-244,0r277,-1338v203,3,485,-13,626,34v142,47,228,143,228,310v0,249,-156,379,-359,441v-115,35,-278,44,-418,25xm946,-984v0,-175,-222,-147,-407,-149r-83,401v239,31,490,-18,490,-252","w":1201,"k":{"]":40,")":40,"\u2014":80,"\u2013":80,"\u00ab":40,"?":50,"-":80,"\u2026":200,".":200,",":205,"\u00f0":60,"\u00fc":30,"\u00fb":30,"\u00fa":30,"\u00f9":30,"\u00f8":50,"\u00f6":50,"\u00f5":50,"\u00f4":50,"\u00f3":50,"\u00f2":50,"\u00eb":50,"\u00ea":50,"\u00e9":50,"\u00e8":50,"\u00e7":50,"\u00e5":50,"\u00e4":50,"\u00e3":50,"\u00e2":50,"\u00e1":50,"\u00e0":50,"u":30,"q":50,"o":50,"g":50,"e":50,"d":50,"c":50,"a":50,"\u00c6":140,"\u00c5":110,"\u00c4":110,"\u00c3":110,"\u00c2":110,"\u00c1":110,"\u00c0":110,"Z":60,"X":100,"J":150,"A":110}},"Q":{"d":"1404,-853v0,320,-139,543,-329,684r1,3v137,-24,236,-36,297,-36r-44,214v-244,-25,-456,9,-687,9v-328,0,-517,-175,-517,-506v0,-335,136,-583,333,-737v106,-83,246,-143,428,-141v332,3,518,177,518,510xm1159,-848v2,-198,-105,-308,-299,-308v-245,0,-357,175,-432,357v-36,88,-57,194,-58,309v-2,198,105,308,299,308v245,0,358,-175,433,-357v36,-88,56,-195,57,-309","w":1454,"k":{"\u201c":50,"\u2018":50}},"R":{"d":"1213,-999v0,272,-168,391,-399,445r0,4r297,550r-270,0r-268,-518r-162,0r-107,518r-244,0r277,-1338r362,0v293,-7,514,77,514,339xm968,-980v5,-192,-239,-148,-429,-153r-85,410v264,8,507,-17,514,-257","w":1223,"k":{"\u2014":60,"\u2013":60,"\u00ab":70,"\u201c":30,"\u2018":30,"-":60,"\u00dd":40,"Y":40}},"S":{"d":"75,-270v198,109,706,168,706,-148v0,-144,-170,-148,-285,-187v-160,-55,-298,-129,-298,-339v0,-212,121,-333,286,-389v202,-68,486,-8,639,59r-43,203v-129,-50,-226,-78,-379,-85v-169,-7,-313,113,-235,260v76,141,325,124,451,222v65,51,118,120,116,235v-8,371,-331,498,-723,455v-107,-12,-205,-42,-277,-84","w":1153,"k":{")":50,"\u201d":60,"\u201c":60,"\u2019":70,"\u2018":60,"\u00ff":50,"\u00fd":50,"y":50,"w":40,"v":60,"t":30,"\u00dd":40,"Y":40,"W":40,"V":40}},"T":{"d":"604,0r-244,0r235,-1133r-420,0r41,-205r1085,0r-42,205r-420,0","w":1161,"k":{"\u2014":110,"\u2013":110,"\u00bb":120,"\u00ab":120,"\u201c":-40,"\u2018":-40,"-":110,"\u2026":120,".":120,":":120,";":115,",":115,"\u00f0":80,"\u00ff":80,"\u00fd":80,"\u00fc":70,"\u00fb":70,"\u00fa":70,"\u00f9":70,"\u00f8":80,"\u00f6":80,"\u00f5":80,"\u00f4":80,"\u00f3":80,"\u00f2":80,"\u00f1":70,"\u00ef":-70,"\u00ee":-85,"\u00eb":80,"\u00ea":80,"\u00e9":80,"\u00e8":80,"\u00e7":80,"\u00e6":90,"\u00e5":80,"\u00e4":80,"\u00e3":80,"\u00e2":80,"\u00e1":80,"\u00e0":80,"z":70,"y":80,"x":60,"w":80,"v":80,"u":70,"s":60,"r":70,"q":80,"p":70,"o":80,"n":70,"m":70,"g":80,"e":80,"d":80,"c":80,"a":80,"\u00c6":70,"\u00c5":60,"\u00c4":60,"\u00c3":60,"\u00c2":60,"\u00c1":60,"\u00c0":60,"J":80,"A":60}},"U":{"d":"380,-475v-23,180,54,295,232,293v238,-3,328,-163,371,-373r162,-783r244,0r-172,832v-62,330,-238,529,-628,531v-319,2,-492,-174,-453,-501v4,-30,10,-62,17,-93r159,-769r244,0","w":1349,"k":{",":30}},"V":{"d":"1144,-1338r270,0r-738,1338r-208,0r-253,-1338r242,0r100,570v30,171,53,308,68,410r6,0r212,-410","w":1274,"k":{"\u2014":40,"\u2013":40,"\u00bb":40,"\u00ab":40,"-":40,"\u2026":60,".":60,",":80,"\u00f0":50,"\u00f8":50,"\u00f6":50,"\u00f5":50,"\u00f4":50,"\u00f3":50,"\u00f2":50,"\u00ef":-85,"\u00ee":-70,"\u00eb":50,"\u00ea":50,"\u00e9":50,"\u00e8":50,"\u00e7":50,"\u00e5":50,"\u00e4":50,"\u00e3":50,"\u00e2":50,"\u00e1":50,"\u00e0":50,"s":30,"q":50,"o":50,"g":50,"e":50,"d":50,"c":50,"a":50,"\u00c6":70,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"J":40,"A":50}},"W":{"d":"957,-1338r261,0r18,538v5,180,7,330,6,451r7,0v138,-337,314,-668,475,-989r270,0r-696,1338r-253,0r-13,-474v-4,-162,-6,-328,-5,-499r-6,0v-88,282,-255,678,-373,973r-249,0r-184,-1338r250,0r58,485v24,208,40,376,49,504r6,0v81,-282,261,-696,379,-989","w":1854,"k":{"\u2014":40,"\u2013":40,"\u00bb":40,"\u00ab":40,"-":40,"\u2026":60,".":60,",":80,"\u00f0":50,"\u00f8":50,"\u00f6":50,"\u00f5":50,"\u00f4":50,"\u00f3":50,"\u00f2":50,"\u00ef":-85,"\u00ee":-70,"\u00eb":50,"\u00ea":50,"\u00e9":50,"\u00e8":50,"\u00e7":50,"\u00e5":50,"\u00e4":50,"\u00e3":50,"\u00e2":50,"\u00e1":50,"\u00e0":50,"s":30,"q":50,"o":50,"g":50,"e":50,"d":50,"c":50,"a":50,"\u00c6":70,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"J":30,"A":50}},"X":{"d":"738,-865r4,0r417,-473r299,0r-607,679r314,659r-262,0r-228,-496r-4,0r-433,496r-298,0r621,-700r-303,-638r261,0","w":1298,"k":{"\u2014":60,"\u2013":60,"\u00ab":105,"-":60,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00eb":30,"\u00ea":30,"\u00e9":30,"\u00e8":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"q":30,"o":30,"g":30,"e":30,"d":30,"c":30,"a":30,"\u00d8":40,"\u00d6":40,"\u00d5":40,"\u00d4":40,"\u00d3":40,"\u00d2":40,"\u00c7":30,"Q":30,"O":40,"G":30,"C":30}},"Y":{"d":"403,0r112,-541r-320,-797r251,0r220,562r378,-562r278,0r-564,802r-111,536r-244,0","w":1162,"k":{"\u2014":70,"\u2013":70,"\u00bb":65,"\u00ab":80,"-":70,"\u2026":80,".":80,":":50,";":40,",":50,"\u00f0":90,"\u00fc":60,"\u00fb":60,"\u00fa":60,"\u00f9":60,"\u00f8":90,"\u00f6":90,"\u00f5":90,"\u00f4":90,"\u00f3":90,"\u00f2":90,"\u00f1":40,"\u00ef":-95,"\u00ee":-50,"\u00eb":90,"\u00ea":90,"\u00e9":90,"\u00e8":90,"\u00e7":90,"\u00e6":90,"\u00e5":90,"\u00e4":90,"\u00e3":90,"\u00e2":90,"\u00e1":90,"\u00e0":90,"z":50,"u":60,"s":60,"r":40,"q":90,"p":40,"o":90,"n":40,"m":40,"g":90,"e":90,"d":90,"c":90,"a":90,"\u00c6":90,"\u00c5":50,"\u00c4":50,"\u00c3":50,"\u00c2":50,"\u00c1":50,"\u00c0":50,"J":70,"A":50}},"Z":{"d":"31,-135r874,-998r-665,0r42,-205r996,0r-28,136r-874,997r697,0r-42,205r-1031,0","w":1228,"k":{"\u2014":50,"\u2013":50,"\u00ab":60,"-":50}},"\u00c0":{"d":"826,-1656r87,247r-182,0r-139,-247r234,0xm872,-341r-475,0r-185,341r-272,0r746,-1338r228,0r272,1338r-250,0xm509,-546r325,0r-27,-144v-22,-115,-40,-222,-53,-321r-6,0v-71,161,-156,314,-239,465","w":1326,"k":{"\"":140,"'":140,"\u2014":55,"\u2013":55,"\u00ab":65,"\u201d":130,"\u201c":180,"\u2019":130,"\u2018":180,"-":55,"\u00f0":30,"\u00ff":80,"\u00fd":80,"\u00fc":25,"\u00fb":25,"\u00fa":25,"\u00f9":25,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00eb":30,"\u00ea":30,"\u00e9":30,"\u00e8":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":80,"w":70,"v":80,"u":25,"t":40,"q":30,"o":30,"l":20,"g":30,"e":30,"d":30,"c":30,"b":30,"a":30,"\u00dd":120,"\u00d8":60,"\u00d6":60,"\u00d5":60,"\u00d4":60,"\u00d3":60,"\u00d2":60,"\u00c7":60,"Y":120,"W":120,"V":160,"T":100,"Q":60,"O":60,"G":60,"C":60}},"\u00c1":{"d":"1154,-1656r-241,247r-194,0r189,-247r246,0xm872,-341r-475,0r-185,341r-272,0r746,-1338r228,0r272,1338r-250,0xm509,-546r325,0r-27,-144v-22,-115,-40,-222,-53,-321r-6,0v-71,161,-156,314,-239,465","w":1326,"k":{"\"":140,"'":140,"\u2014":55,"\u2013":55,"\u00ab":65,"\u201d":130,"\u201c":180,"\u2019":130,"\u2018":180,"-":55,"\u00f0":30,"\u00ff":80,"\u00fd":80,"\u00fc":25,"\u00fb":25,"\u00fa":25,"\u00f9":25,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00eb":30,"\u00ea":30,"\u00e9":30,"\u00e8":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":80,"w":70,"v":80,"u":25,"t":40,"q":30,"o":30,"l":20,"g":30,"e":30,"d":30,"c":30,"b":30,"a":30,"\u00dd":120,"\u00d8":60,"\u00d6":60,"\u00d5":60,"\u00d4":60,"\u00d3":60,"\u00d2":60,"\u00c7":60,"Y":120,"W":120,"V":160,"T":100,"Q":60,"O":60,"G":60,"C":60}},"\u00c2":{"d":"757,-1656r206,0r165,247r-200,0r-84,-126r-4,0r-137,126r-213,0xm872,-341r-475,0r-185,341r-272,0r746,-1338r228,0r272,1338r-250,0xm509,-546r325,0r-27,-144v-22,-115,-40,-222,-53,-321r-6,0v-71,161,-156,314,-239,465","w":1326,"k":{"\"":140,"'":140,"\u2014":55,"\u2013":55,"\u00ab":65,"\u201d":130,"\u201c":180,"\u2019":130,"\u2018":180,"-":55,"\u00f0":30,"\u00ff":80,"\u00fd":80,"\u00fc":25,"\u00fb":25,"\u00fa":25,"\u00f9":25,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00eb":30,"\u00ea":30,"\u00e9":30,"\u00e8":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":80,"w":70,"v":80,"u":25,"t":40,"q":30,"o":30,"l":20,"g":30,"e":30,"d":30,"c":30,"b":30,"a":30,"\u00dd":120,"\u00d8":60,"\u00d6":60,"\u00d5":60,"\u00d4":60,"\u00d3":60,"\u00d2":60,"\u00c7":60,"Y":120,"W":120,"V":160,"T":100,"Q":60,"O":60,"G":60,"C":60}},"\u00c3":{"d":"960,-1564v48,-3,57,-34,68,-84r167,0v-18,136,-80,241,-226,245v-107,3,-158,-79,-250,-92v-48,3,-57,34,-68,84r-167,0v18,-136,80,-241,226,-245v106,-3,159,79,250,92xm872,-341r-475,0r-185,341r-272,0r746,-1338r228,0r272,1338r-250,0xm509,-546r325,0r-27,-144v-22,-115,-40,-222,-53,-321r-6,0v-71,161,-156,314,-239,465","w":1326,"k":{"\"":140,"'":140,"\u2014":55,"\u2013":55,"\u00ab":65,"\u201d":130,"\u201c":180,"\u2019":130,"\u2018":180,"-":55,"\u00f0":30,"\u00ff":80,"\u00fd":80,"\u00fc":25,"\u00fb":25,"\u00fa":25,"\u00f9":25,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00eb":30,"\u00ea":30,"\u00e9":30,"\u00e8":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":80,"w":70,"v":80,"u":25,"t":40,"q":30,"o":30,"l":20,"g":30,"e":30,"d":30,"c":30,"b":30,"a":30,"\u00dd":120,"\u00d8":60,"\u00d6":60,"\u00d5":60,"\u00d4":60,"\u00d3":60,"\u00d2":60,"\u00c7":60,"Y":120,"W":120,"V":160,"T":100,"Q":60,"O":60,"G":60,"C":60}},"\u00c4":{"d":"547,-1673r224,0r-47,225r-224,0xm959,-1673r224,0r-47,225r-224,0xm872,-341r-475,0r-185,341r-272,0r746,-1338r228,0r272,1338r-250,0xm509,-546r325,0r-27,-144v-22,-115,-40,-222,-53,-321r-6,0v-71,161,-156,314,-239,465","w":1326,"k":{"\"":140,"'":140,"\u2014":55,"\u2013":55,"\u00ab":65,"\u201d":130,"\u201c":180,"\u2019":130,"\u2018":180,"-":55,"\u00f0":30,"\u00ff":80,"\u00fd":80,"\u00fc":25,"\u00fb":25,"\u00fa":25,"\u00f9":25,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00eb":30,"\u00ea":30,"\u00e9":30,"\u00e8":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":80,"w":70,"v":80,"u":25,"t":40,"q":30,"o":30,"l":20,"g":30,"e":30,"d":30,"c":30,"b":30,"a":30,"\u00dd":120,"\u00d8":60,"\u00d6":60,"\u00d5":60,"\u00d4":60,"\u00d3":60,"\u00d2":60,"\u00c7":60,"Y":120,"W":120,"V":160,"T":100,"Q":60,"O":60,"G":60,"C":60}},"\u00c5":{"d":"806,-1367v-159,5,-267,-106,-204,-249v39,-88,128,-139,258,-143v159,-5,267,106,204,249v-39,88,-128,139,-258,143xm936,-1583v0,-45,-33,-65,-84,-65v-70,0,-122,43,-122,105v0,45,33,65,84,65v70,0,122,-43,122,-105xm872,-341r-475,0r-185,341r-272,0r746,-1338r228,0r272,1338r-250,0xm509,-546r325,0r-27,-144v-22,-115,-40,-222,-53,-321r-6,0v-71,161,-156,314,-239,465","w":1326,"k":{"\"":140,"'":140,"\u2014":55,"\u2013":55,"\u00ab":65,"\u201d":130,"\u201c":180,"\u2019":130,"\u2018":180,"-":55,"\u00f0":30,"\u00ff":80,"\u00fd":80,"\u00fc":25,"\u00fb":25,"\u00fa":25,"\u00f9":25,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00eb":30,"\u00ea":30,"\u00e9":30,"\u00e8":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":80,"w":70,"v":80,"u":25,"t":40,"q":30,"o":30,"l":20,"g":30,"e":30,"d":30,"c":30,"b":30,"a":30,"\u00dd":120,"\u00d8":60,"\u00d6":60,"\u00d5":60,"\u00d4":60,"\u00d3":60,"\u00d2":60,"\u00c7":60,"Y":120,"W":120,"V":160,"T":100,"Q":60,"O":60,"G":60,"C":60}},"\u00c6":{"d":"1111,-205r644,0r-42,205r-857,0r35,-341r-452,0r-227,341r-276,0r899,-1338r1027,0r-43,205r-612,0r-36,346r526,0r-42,205r-505,0xm575,-546r337,0r61,-587r-7,0","w":1879},"\u00c7":{"d":"1184,-1111v-123,-39,-306,-69,-442,-20v-237,85,-365,297,-372,608v-6,236,123,341,353,341v126,0,231,-26,334,-59r-44,216v-87,30,-196,47,-325,50r-35,93v101,11,174,49,174,154v0,183,-207,234,-407,212v-27,-3,-48,-9,-62,-15r29,-142v78,26,246,26,252,-57v2,-37,-56,-56,-170,-55r74,-199v-267,-42,-418,-208,-418,-518v0,-333,136,-568,328,-725v167,-137,522,-173,772,-84","w":1185,"k":{"\u2014":50,"\u2013":50,"\u00ab":60,"-":50,"\u00f0":30,"\u00ff":70,"\u00fd":70,"\u00fc":20,"\u00fb":20,"\u00fa":20,"\u00f9":20,"\u00f8":30,"\u00f6":30,"\u00f5":30,"\u00f4":30,"\u00f3":30,"\u00f2":30,"\u00eb":30,"\u00ea":30,"\u00e9":30,"\u00e8":30,"\u00e7":30,"\u00e5":30,"\u00e4":30,"\u00e3":30,"\u00e2":30,"\u00e1":30,"\u00e0":30,"y":70,"w":70,"v":70,"u":20,"t":20,"q":30,"o":30,"g":30,"e":30,"d":30,"c":30,"a":30,"\u00d8":30,"\u00d6":30,"\u00d5":30,"\u00d4":30,"\u00d3":30,"\u00d2":30,"\u00c7":30,"Q":30,"O":30,"C":30}},"\u00c8":{"d":"768,-1656r87,247r-182,0r-139,-247r234,0xm346,-205r631,0r-42,205r-875,0r277,-1338r839,0r-43,205r-594,0r-72,346r510,0r-42,205r-510,0","w":1116},"\u00c9":{"d":"1072,-1656r-241,247r-194,0r189,-247r246,0xm346,-205r631,0r-42,205r-875,0r277,-1338r839,0r-43,205r-594,0r-72,346r510,0r-42,205r-510,0","w":1116},"\u00ca":{"d":"706,-1656r206,0r165,247r-200,0r-84,-126r-4,0r-137,126r-213,0xm346,-205r631,0r-42,205r-875,0r277,-1338r839,0r-43,205r-594,0r-72,346r510,0r-42,205r-510,0","w":1116},"\u00cb":{"d":"486,-1673r224,0r-47,225r-224,0xm898,-1673r224,0r-47,225r-224,0xm346,-205r631,0r-42,205r-875,0r277,-1338r839,0r-43,205r-594,0r-72,346r510,0r-42,205r-510,0","w":1116},"\u00cc":{"d":"512,-1656r87,247r-182,0r-139,-247r234,0xm60,0r277,-1338r244,0r-277,1338r-244,0","w":551},"\u00cd":{"d":"788,-1656r-241,247r-194,0r189,-247r246,0xm60,0r277,-1338r244,0r-277,1338r-244,0","w":551},"\u00ce":{"d":"417,-1656r206,0r165,247r-200,0r-84,-126r-4,0r-137,126r-213,0xm60,0r277,-1338r244,0r-277,1338r-244,0","w":551},"\u00cf":{"d":"215,-1673r224,0r-47,225r-224,0xm627,-1673r224,0r-47,225r-224,0xm60,0r277,-1338r244,0r-277,1338r-244,0","w":551},"\u00d1":{"d":"1040,-1564v48,-3,57,-34,68,-84r167,0v-18,136,-80,241,-226,245v-107,3,-158,-79,-250,-92v-48,3,-57,34,-68,84r-167,0v18,-136,80,-241,226,-245v106,-3,159,79,250,92xm934,0r-275,-593v-67,-144,-121,-272,-161,-385r-6,0v-38,310,-128,671,-188,978r-244,0r277,-1338r237,0r275,593v67,143,121,272,161,385r6,0v31,-273,132,-692,188,-978r244,0r-277,1338r-237,0","w":1418},"\u00d2":{"d":"913,-1656r87,247r-182,0r-139,-247r234,0xm1159,-848v2,-195,-104,-308,-290,-308v-249,0,-365,173,-441,357v-36,88,-58,195,-58,309v0,196,97,308,290,308v249,0,366,-173,442,-357v36,-88,56,-195,57,-309xm643,25v-330,-4,-518,-178,-518,-510v0,-317,127,-563,309,-719v108,-93,255,-161,452,-159v330,4,518,178,518,510v0,317,-128,563,-310,719v-108,93,-254,161,-451,159","w":1444,"k":{")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30,"\u00dd":60,"\u00c6":30,"Y":60,"X":30,"V":40,"T":40,"J":40}},"\u00d3":{"d":"1251,-1656r-241,247r-194,0r189,-247r246,0xm1159,-848v2,-195,-104,-308,-290,-308v-249,0,-365,173,-441,357v-36,88,-58,195,-58,309v0,196,97,308,290,308v249,0,366,-173,442,-357v36,-88,56,-195,57,-309xm643,25v-330,-4,-518,-178,-518,-510v0,-317,127,-563,309,-719v108,-93,255,-161,452,-159v330,4,518,178,518,510v0,317,-128,563,-310,719v-108,93,-254,161,-451,159","w":1444,"k":{")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30,"\u00dd":60,"\u00c6":30,"Y":60,"X":30,"V":40,"T":40,"J":40}},"\u00d4":{"d":"852,-1656r206,0r165,247r-200,0r-84,-126r-4,0r-137,126r-213,0xm1159,-848v2,-195,-104,-308,-290,-308v-249,0,-365,173,-441,357v-36,88,-58,195,-58,309v0,196,97,308,290,308v249,0,366,-173,442,-357v36,-88,56,-195,57,-309xm643,25v-330,-4,-518,-178,-518,-510v0,-317,127,-563,309,-719v108,-93,255,-161,452,-159v330,4,518,178,518,510v0,317,-128,563,-310,719v-108,93,-254,161,-451,159","w":1444,"k":{")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30,"\u00dd":60,"\u00c6":30,"Y":60,"X":30,"V":40,"T":40,"J":40}},"\u00d5":{"d":"1060,-1564v48,-3,57,-34,68,-84r167,0v-18,136,-80,241,-226,245v-107,3,-158,-79,-250,-92v-48,3,-57,34,-68,84r-167,0v18,-136,80,-241,226,-245v106,-3,159,79,250,92xm1159,-848v2,-195,-104,-308,-290,-308v-249,0,-365,173,-441,357v-36,88,-58,195,-58,309v0,196,97,308,290,308v249,0,366,-173,442,-357v36,-88,56,-195,57,-309xm643,25v-330,-4,-518,-178,-518,-510v0,-317,127,-563,309,-719v108,-93,255,-161,452,-159v330,4,518,178,518,510v0,317,-128,563,-310,719v-108,93,-254,161,-451,159","w":1444,"k":{")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30,"\u00dd":60,"\u00c6":30,"Y":60,"X":30,"V":40,"T":40,"J":40}},"\u00d6":{"d":"648,-1673r224,0r-47,225r-224,0xm1060,-1673r224,0r-47,225r-224,0xm1159,-848v2,-195,-104,-308,-290,-308v-249,0,-365,173,-441,357v-36,88,-58,195,-58,309v0,196,97,308,290,308v249,0,366,-173,442,-357v36,-88,56,-195,57,-309xm643,25v-330,-4,-518,-178,-518,-510v0,-317,127,-563,309,-719v108,-93,255,-161,452,-159v330,4,518,178,518,510v0,317,-128,563,-310,719v-108,93,-254,161,-451,159","w":1444,"k":{")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30,"\u00dd":60,"\u00c6":30,"Y":60,"X":30,"V":40,"T":40,"J":40}},"\u00d8":{"d":"898,-18v-185,73,-477,52,-601,-61r-106,104r-137,-137r122,-119v-115,-261,-9,-628,115,-809v122,-179,299,-323,595,-323v146,0,261,37,345,104r106,-104r137,137r-122,119v118,263,9,625,-114,809v-82,122,-192,222,-340,280xm464,-241v77,65,242,78,351,31v185,-81,291,-261,335,-482v16,-79,20,-146,10,-228xm1064,-1097v-78,-65,-241,-78,-350,-31v-186,81,-290,261,-335,482v-15,74,-20,154,-10,227","w":1444,"k":{")":30,"\u201c":50,"\u2018":50,"\u2026":40,".":40,",":30,"\u00dd":60,"\u00c6":30,"Y":60,"X":30,"V":40,"T":40,"J":40}},"\u00d9":{"d":"870,-1656r87,247r-182,0r-139,-247r234,0xm380,-475v-23,180,54,295,232,293v238,-3,328,-163,371,-373r162,-783r244,0r-172,832v-62,330,-238,529,-628,531v-319,2,-492,-174,-453,-501v4,-30,10,-62,17,-93r159,-769r244,0","w":1349,"k":{",":30}},"\u00da":{"d":"1173,-1656r-241,247r-194,0r189,-247r246,0xm380,-475v-23,180,54,295,232,293v238,-3,328,-163,371,-373r162,-783r244,0r-172,832v-62,330,-238,529,-628,531v-319,2,-492,-174,-453,-501v4,-30,10,-62,17,-93r159,-769r244,0","w":1349,"k":{",":30}},"\u00db":{"d":"809,-1656r206,0r165,247r-200,0r-84,-126r-4,0r-137,126r-213,0xm380,-475v-23,180,54,295,
