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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;// $Id: progress.js,v 1.20 2008/01/04 11:53:21 goba Exp $

/**
 * A progressbar object. Initialized with the given id. Must be inserted into
 * the DOM afterwards through progressBar.element.
 *
 * method is the function which will perform the HTTP request to get the
 * progress bar state. Either "GET" or "POST".
 *
 * e.g. pb = new progressBar('myProgressBar');
 *      some_element.appendChild(pb.element);
 */
Drupal.progressBar = function (id, updateCallback, method, errorCallback) {
  var pb = this;
  this.id = id;
  this.method = method || "GET";
  this.updateCallback = updateCallback;
  this.errorCallback = errorCallback;

  this.element = document.createElement('div');
  this.element.id = id;
  this.element.className = 'progress';
  $(this.element).html('<div class="bar"><div class="filled"></div></div>'+
                       '<div class="percentage"></div>'+
                       '<div class="message">&nbsp;</div>');
};

/**
 * Set the percentage and status message for the progressbar.
 */
Drupal.progressBar.prototype.setProgress = function (percentage, message) {
  if (percentage >= 0 && percentage <= 100) {
    $('div.filled', this.element).css('width', percentage +'%');
    $('div.percentage', this.element).html(percentage +'%');
  }
  $('div.message', this.element).html(message);
  if (this.updateCallback) {
    this.updateCallback(percentage, message, this);
  }
};

/**
 * Start monitoring progress via Ajax.
 */
Drupal.progressBar.prototype.startMonitoring = function (uri, delay) {
  this.delay = delay;
  this.uri = uri;
  this.sendPing();
};

/**
 * Stop monitoring progress via Ajax.
 */
Drupal.progressBar.prototype.stopMonitoring = function () {
  clearTimeout(this.timer);
  // This allows monitoring to be stopped from within the callback
  this.uri = null;
};

/**
 * Request progress data from server.
 */
Drupal.progressBar.prototype.sendPing = function () {
  if (this.timer) {
    clearTimeout(this.timer);
  }
  if (this.uri) {
    var pb = this;
    // When doing a post request, you need non-null data. Otherwise a
    // HTTP 411 or HTTP 406 (with Apache mod_security) error may result.
    $.ajax({
      type: this.method,
      url: this.uri,
      data: '',
      dataType: 'json',
      success: function (progress) {
        // Display errors
        if (progress.status == 0) {
          pb.displayError(progress.data);
          return;
        }
        // Update display
        pb.setProgress(progress.percentage, progress.message);
        // Schedule next timer
        pb.timer = setTimeout(function() { pb.sendPing(); }, pb.delay);
      },
      error: function (xmlhttp) {
        pb.displayError(Drupal.ahahError(xmlhttp, pb.uri));
      }
    });
  }
};

/**
 * Display errors on the page.
 */
Drupal.progressBar.prototype.displayError = function (string) {
  var error = document.createElement('div');
  error.className = 'error';
  error.innerHTML = string;

  $(this.element).before(error).hide();

  if (this.errorCallback) {
    this.errorCallback(this);
  }
};
;Drupal.locale = { 'pluralFormula': function($n) { return Number(($n!=1)); }, 'strings': { "Unspecified error": "Error no especificado", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "Los cambios sobre estos bloques no se guardarÃ¡n hasta que no pulse el botÃ³n \x3cem\x3eGuardar bloques\x3c/em\x3e.", "Your server has been successfully tested to support this feature.": "Su servidor pasÃ³ con Ã©xito la prueba sobre soporte de esta caracterÃ­stica.", "Your system configuration does not currently support this feature. The \x3ca href=\"http://drupal.org/node/15365\"\x3ehandbook page on Clean URLs\x3c/a\x3e has additional troubleshooting information.": "La configuraciÃ³n de su sistema no soporta actualmente esta caracterÃ­stica. La \x3ca href=\"http://drupal.org/node/15365\"\x3epÃ¡gina del manual sobre URL limpios\x3c/a\x3e tiene mÃ¡s informaciÃ³n sobre posibles problemas.", "Testing clean URLs...": "Probando URL limpios...", "Go to previous page": "Ir a la pÃ¡gina anterior", "Go to next page": "Ir a la siguiente pÃ¡gina", "Save": "Guardar", "Go to first page": "Ir a la primera pÃ¡gina", "Go to last page": "Ir a la Ãºltima pÃ¡gina", "Select all rows in this table": "Seleccionar todas las filas de esta tabla", "Deselect all rows in this table": "Quitar la selecciÃ³n a todas las filas de esta tabla", "An HTTP error @status occurred. \n@uri": "OcurriÃ³ un error HTTP @status. @uri", "Drag to re-order": "Arrastre para reordenar", "Changes made in this table will not be saved until the form is submitted.": "Los cambios realizados en esta tabla no se guardarÃ¡n hasta que se envÃ­e el formulario", "Split summary at cursor": "Definir resumen hasta el cursor", "Join summary": "Unir resumen", "An error occurred. \n@uri\n@text": "An error occurred.  @uri @text", "An error occurred. \n@uri\n(no information available).": "Ha ocurrido un error. \n@uri\n(informaciÃ³n no disponible).", "Automatic alias": "Alias automÃ¡tico de ruta" } };;/**
 * Modified Star Rating - jQuery plugin
 *
 * Copyright (c) 2006 Wil Stuckey
 *
 * Original source available: http://sandbox.wilstuckey.com/jquery-ratings/
 * Extensively modified by Lullabot: http://www.lullabot.com
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

/**
 * Create a degradeable star rating interface out of a simple form structure.
 * Returns a modified jQuery object containing the new interface.
 *   
 * @example jQuery('form.rating').fivestar();
 * @cat plugin
 * @type jQuery 
 *
 */
(function($){ // Create local scope.
    /**
     * Takes the form element, builds the rating interface and attaches the proper events.
     * @param {Object} $obj
     */
    var buildRating = function($obj){
        var $widget = buildInterface($obj),
            $stars = $('.star', $widget),
            $cancel = $('.cancel', $widget),
            $summary = $('.fivestar-summary', $obj),
            feedbackTimerId = 0,
            summaryText = $summary.html(),
            summaryHover = $obj.is('.fivestar-labels-hover'),
            currentValue = $("select", $obj).val(),
            cancelTitle = $('label', $obj).html(),
            voteTitle = cancelTitle != Drupal.settings.fivestar.titleAverage ? cancelTitle : Drupal.settings.fivestar.titleUser,
            voteChanged = false;

        // Record star display.
        if ($obj.is('.fivestar-user-stars')) {
          var starDisplay = 'user';
        }
        else if ($obj.is('.fivestar-average-stars')) {
          var starDisplay = 'average';
          currentValue = $("input[name=vote_average]", $obj).val();
        }
        else if ($obj.is('.fivestar-combo-stars')) {
          var starDisplay = 'combo';
        }
        else {
          var starDisplay = 'none';
        }

        // Smart is intentionally separate, so the average will be set if necessary.
        if ($obj.is('.fivestar-smart-stars')) {
          var starDisplay = 'smart';
        }

        // Record text display.
        if ($summary.size()) {
          var textDisplay = $summary.attr('class').replace(/.*?fivestar-summary-([^ ]+).*/, '$1').replace(/-/g, '_');
        }
        else {
          var textDisplay = 'none';
        }

        // Add hover and focus events.
        $stars
            .mouseover(function(){
                event.drain();
                event.fill(this);
            })
            .mouseout(function(){
                event.drain();
                event.reset();
            });
        $stars.children()
            .focus(function(){
                event.drain();
                event.fill(this.parentNode)
            })
            .blur(function(){
                event.drain();
                event.reset();
            }).end();

        // Cancel button events.
        $cancel
            .mouseover(function(){
                event.drain();
                $(this).addClass('on')
            })
            .mouseout(function(){
                event.reset();
                $(this).removeClass('on')
            });
        $cancel.children()
            .focus(function(){
                event.drain();
                $(this.parentNode).addClass('on')
            })
            .blur(function(){
                event.reset();
                $(this.parentNode).removeClass('on')
            }).end();

        // Click events.
        $cancel.click(function(){
            currentValue = 0;
            event.reset();
            voteChanged = false;
            // Inform a user that his vote is being processed
            if ($("input.fivestar-path", $obj).size() && $summary.is('.fivestar-feedback-enabled')) {
              setFeedbackText(Drupal.settings.fivestar.feedbackDeletingVote);
            }
            // Save the currentValue in a hidden field.
            $("select", $obj).val(0);
            // Update the title.
            cancelTitle = starDisplay != 'smart' ? cancelTitle : Drupal.settings.fivestar.titleAverage;
            $('label', $obj).html(cancelTitle);
            // Update the smart classes on the widget if needed.
            if ($obj.is('.fivestar-smart-text')) {
              $obj.removeClass('fivestar-user-text').addClass('fivestar-average-text');
              $summary[0].className = $summary[0].className.replace(/-user/, '-average');
              textDisplay = $summary.attr('class').replace(/.*?fivestar-summary-([^ ]+).*/, '$1').replace(/-/g, '_');
            }
            if ($obj.is('.fivestar-smart-stars')) {
              $obj.removeClass('fivestar-user-stars').addClass('fivestar-average-stars');
            }
            // Submit the form if needed.
            $("input.fivestar-path", $obj).each(function() {
              var token = $("input.fivestar-token", $obj).val();
              $.ajax({
                type: 'GET',
                data: { token: token },
                dataType: 'xml',
                url: this.value + '/' + 0,
                success: voteHook
              });
            });
            return false;
        });
        $stars.click(function(){
            currentValue = $('select option', $obj).get($stars.index(this) + $cancel.size() + 1).value;
            // Save the currentValue to the hidden select field.
            $("select", $obj).val(currentValue);
            // Update the display of the stars.
            voteChanged = true;
            event.reset();
            // Inform a user that his vote is being processed.
            if ($("input.fivestar-path", $obj).size() && $summary.is('.fivestar-feedback-enabled')) {
              setFeedbackText(Drupal.settings.fivestar.feedbackSavingVote);
            }
            // Update the smart classes on the widget if needed.
            if ($obj.is('.fivestar-smart-text')) {
              $obj.removeClass('fivestar-average-text').addClass('fivestar-user-text');
              $summary[0].className = $summary[0].className.replace(/-average/, '-user');
              textDisplay = $summary.attr('class').replace(/.*?fivestar-summary-([^ ]+).*/, '$1').replace(/-/g, '_');
            }
            if ($obj.is('.fivestar-smart-stars')) {
              $obj.removeClass('fivestar-average-stars').addClass('fivestar-user-stars');
            }
            // Submit the form if needed.
            $("input.fivestar-path", $obj).each(function () {
              var token = $("input.fivestar-token", $obj).val();
              $.ajax({
                type: 'GET',
                data: { token: token },
                dataType: 'xml',
                url: this.value + '/' + currentValue,
                success: voteHook
              });
            });
            return false;
        });

        var event = {
            fill: function(el){
              // Fill to the current mouse position.
              var index = $stars.index(el) + 1;
              $stars
                .children('a').css('width', '100%').end()
                .filter(':lt(' + index + ')').addClass('hover').end();
              // Update the description text and label.
              if (summaryHover && !feedbackTimerId) {
                var summary = $("select option", $obj)[index + $cancel.size()].text;
                var value = $("select option", $obj)[index + $cancel.size()].value;
                $summary.html(summary != index + 1 ? summary : '&nbsp;');
                $('label', $obj).html(voteTitle);
              }
            },
            drain: function() {
              // Drain all the stars.
              $stars
                .filter('.on').removeClass('on').end()
                .filter('.hover').removeClass('hover').end();
              // Update the description text.
              if (summaryHover && !feedbackTimerId) {
                var cancelText = $("select option", $obj)[1].text;
                $summary.html(($cancel.size() && cancelText != 0) ? cancelText : '&nbsp');
                if (!voteChanged) {
                  $('label', $obj).html(cancelTitle);
                }
              }
            },
            reset: function(){
              // Reset the stars to the default index.
              var starValue = currentValue/100 * $stars.size();
              var percent = (starValue - Math.floor(starValue)) * 100;
              $stars.filter(':lt(' + Math.floor(starValue) + ')').addClass('on').end();
              if (percent > 0) {
                $stars.eq(Math.floor(starValue)).addClass('on').children('a').css('width', percent + "%").end().end();
              }
              // Restore the summary text and original title.
              if (summaryHover && !feedbackTimerId) {
                $summary.html(summaryText ? summaryText : '&nbsp;');
              }
              if (voteChanged) {
                $('label', $obj).html(voteTitle);
              }
              else {
                $('label', $obj).html(cancelTitle);
              }
            }
        };

        var setFeedbackText = function(text) {
          // Kill previous timer if it isn't finished yet so that the text we
          // are about to set will not get cleared too early.
          feedbackTimerId = 1;
          $summary.html(text);
        };

        /**
         * Checks for the presence of a javascript hook 'fivestarResult' to be
         * called upon completion of a AJAX vote request.
         */
        var voteHook = function(data) {
          var returnObj = {
            result: {
              count: $("result > count", data).text(),
              average: $("result > average", data).text(),
              summary: {
                average: $("summary average", data).text(),
                average_count: $("summary average_count", data).text(),
                user: $("summary user", data).text(),
                user_count: $("summary user_count", data).text(),
                combo: $("summary combo", data).text(),
                count: $("summary count", data).text()
              }
            },
            vote: {
              id: $("vote id", data).text(),
              tag: $("vote tag", data).text(),
              type: $("vote type", data).text(),
              value: $("vote value", data).text()
            },
            display: {
              stars: starDisplay,
              text: textDisplay
            }
          };
          // Check for a custom callback.
          if (window.fivestarResult) {
            fivestarResult(returnObj);
          }
          // Use the default.
          else {
            fivestarDefaultResult(returnObj);
          }
          // Update the summary text.
          summaryText = returnObj.result.summary[returnObj.display.text];
          if ($(returnObj.result.summary.average).is('.fivestar-feedback-enabled')) {
            // Inform user that his/her vote has been processed.
            if (returnObj.vote.value != 0) { // check if vote has been saved or deleted 
              setFeedbackText(Drupal.settings.fivestar.feedbackVoteSaved);
            }
            else {
              setFeedbackText(Drupal.settings.fivestar.feedbackVoteDeleted);
            }
            // Setup a timer to clear the feedback text after 3 seconds.
            feedbackTimerId = setTimeout(function() { clearTimeout(feedbackTimerId); feedbackTimerId = 0; $summary.html(returnObj.result.summary[returnObj.display.text]); }, 2000);
          }
          // Update the current star currentValue to the previous average.
          if (returnObj.vote.value == 0 && (starDisplay == 'average' || starDisplay == 'smart')) {
            currentValue = returnObj.result.average;
            event.reset();
          }
        };

        event.reset();
        return $widget;
    };
    
    /**
     * Accepts jQuery object containing a single fivestar widget.
     * Returns the proper div structure for the star interface.
     * 
     * @return jQuery
     * @param {Object} $widget
     * 
     */
    var buildInterface = function($widget){
        var $container = $('<div class="fivestar-widget clear-block"></div>');
        var $options = $("select option", $widget);
        var size = $('option', $widget).size() - 1;
        var cancel = 1;
        for (var i = 1, option; option = $options[i]; i++){
            if (option.value == "0") {
              cancel = 0;
              $div = $('<div class="cancel"><a href="#0" title="' + option.text + '">' + option.text + '</a></div>');
            }
            else {
              var zebra = (i + cancel - 1) % 2 == 0 ? 'even' : 'odd';
              var count = i + cancel - 1;
              var first = count == 1 ? ' star-first' : '';
              var last = count == size + cancel - 1 ? ' star-last' : '';
              $div = $('<div class="star star-' + count + ' star-' + zebra + first + last + '"><a href="#' + option.value + '" title="' + option.text + '">' + option.text + '</a></div>');
            }
            $container.append($div[0]);
        }
        $container.addClass('fivestar-widget-' + (size + cancel - 1));
        // Attach the new widget and hide the existing widget.
        $('select', $widget).after($container).css('display', 'none');
        return $container;
    };

    /**
     * Standard handler to update the average rating when a user changes their
     * vote. This behavior can be overridden by implementing a fivestarResult
     * function in your own module or theme.
     * @param object voteResult
     * Object containing the following properties from the vote result:
     * voteResult.result.count The current number of votes for this item.
     * voteResult.result.average The current average of all votes for this item.
     * voteResult.result.summary.average The textual description of the average.
     * voteResult.result.summary.user The textual description of the user's current vote.
     * voteResult.vote.id The id of the item the vote was placed on (such as the nid)
     * voteResult.vote.type The type of the item the vote was placed on (such as 'node')
     * voteResult.vote.tag The multi-axis tag the vote was placed on (such as 'vote')
     * voteResult.vote.average The average of the new vote saved
     * voteResult.display.stars The type of star display we're using. Either 'average', 'user', or 'combo'.
     * voteResult.display.text The type of text display we're using. Either 'average', 'user', or 'combo'.
     */
    function fivestarDefaultResult(voteResult) {
      // Update the summary text.
      $('div.fivestar-summary-'+voteResult.vote.tag+'-'+voteResult.vote.id).html(voteResult.result.summary[voteResult.display.text]);
      // If this is a combo display, update the average star display.
      if (voteResult.display.stars == 'combo') {
        $('div.fivestar-form-'+voteResult.vote.id).each(function() {
          // Update stars.
          var $stars = $('.fivestar-widget-static .star span', this);
          var average = voteResult.result.average/100 * $stars.size();
          var index = Math.floor(average);
          $stars.removeClass('on').addClass('off').css('width', 'auto');
          $stars.filter(':lt(' + (index + 1) + ')').removeClass('off').addClass('on');
          $stars.eq(index).css('width', ((average - index) * 100) + "%");
          // Update summary.
          var $summary = $('.fivestar-static-form-item .fivestar-summary', this);
          if ($summary.size()) {
            var textDisplay = $summary.attr('class').replace(/.*?fivestar-summary-([^ ]+).*/, '$1').replace(/-/g, '_');
            $summary.html(voteResult.result.summary[textDisplay]);
          }
        });
      }
    };

    /**
     * Set up the plugin
     */
    $.fn.fivestar = function() {
      var stack = [];
      this.each(function() {
          var ret = buildRating($(this));
          stack.push(ret);
      });
      return stack;
    };

  // Fix ie6 background flicker problem.
  if ($.browser.msie == true) {
    try {
      document.execCommand('BackgroundImageCache', false, true);
    } catch(err) {}
  }

  Drupal.behaviors.fivestar = function(context) {
    $('div.fivestar-form-item:not(.fivestar-processed)', context).addClass('fivestar-processed').fivestar();
    $('input.fivestar-submit', context).css('display', 'none');
  }

})(jQuery);;/* $Id: greybox.js,v 1.2 2008/12/04 11:32:23 Gurpartap Exp $ */

/**
 * Greybox Redux
 * jQuery is required (included in Drupal 5): http://jquery.com/
 * Written by: John Resig
 * License: GPL
 */

var GB_DONE = false;
var GB_SITEPATH = null;
var GB_HEIGHT = null;
var GB_WIDTH = null;

Drupal.behaviors.greybox = function() {
  GB_SITEPATH = Drupal.settings.greybox.path;

  var windowHeight = self.innerHeight ||
    jQuery.boxModel && document.documentElement.clientHeight ||
    document.body.clientHeight || 600;
  var windowWidth = self.innerWidth ||
    jQuery.boxModel && document.documentElement.clientWidth ||
    document.body.clientWidth || 800;

  $('a.' + Drupal.settings.greybox.class_text).bind('click', function(){
    var title = this.title || $(this).text() || this.href;
    var dims = $(this).attr('rel');
    dims = dims.split(/x/i, 2);

    GB_WIDTH = dims[0] || Drupal.settings.greybox.gbwidth || Math.round(windowWidth - (windowWidth/100)*10);
    GB_HEIGHT = dims[1] || Drupal.settings.greybox.gbheight || Math.round(windowHeight - (windowHeight/100)*10);

    GB_show(title, this.href);
    return false;
  });
}

function GB_show(caption, url) {
  if(!GB_DONE) {
    $(document.body)
      .append("<div id='GB_overlay'></div><div id='GB_window'><div id='GB_caption'></div>"
      + "<img src='"+ GB_SITEPATH + "/images/close.gif' alt='Cerrar ventana'/></div>");
    $("#GB_window img").click(GB_hide);
    $("#GB_overlay").click(GB_hide);
    $(window).resize(GB_position);
    $(window).scroll(GB_position);
    GB_DONE = true;
  }
  $("#GB_frame").remove();
  $("#GB_window").append("<iframe id='GB_frame' src='" + url + "'></iframe>");

  $("#GB_caption").html(caption);
  $("#GB_overlay").fadeIn(350);
  GB_position();

  $("#GB_window").css({ height: 0, width: 0 }).animate({ height: GB_HEIGHT, width: GB_WIDTH, opacity: 1 }, 350, GB_position);

  $('body').css('overflow', 'hidden');

  /*
  var left = document.all ? iebody.scrollLeft : pageXOffset;
  var top = document.all ? iebody.scrollTop : pageYOffset;
	
  $(document).bind('scroll', function() {
    scrollTo(left, top);
  });
  */
}

function GB_hide() {
  $("#GB_window").animate({ height: 0, width: 0, opacity: 0 }, 350);
  $("#GB_overlay").fadeOut(350, function() {
    $('body').css('overflow', 'auto');
  });
}

// Keep Greybox Window centered regardless of window scroll.
// Code from http://jquery.com/blog/2006/02/10/greybox-redux/
function GB_position() {
  var de = document.documentElement;
  var h = self.innerHeight || (de && de.clientHeight) || document.body.clientHeight;
  var w = self.innerWidth || (de && de.clientWidth) || document.body.clientWidth;
  var iebody = (document.compatMode && document.compatMode != "BackCompat") ? document.documentElement : document.body;
  var dsocleft = document.all? iebody.scrollLeft : pageXOffset;
  var dsoctop = document.all? iebody.scrollTop : pageYOffset;
    
  var height = h < GB_HEIGHT ? h - 32 : GB_HEIGHT;
  var top = (h - height)/2 + dsoctop;

  $("#GB_window, #GB_frame").css({ width: GB_WIDTH + "px", height: height + "px",
    left: ((w - GB_WIDTH)/2) +"px", top: top + "px" });
  $("#GB_frame").css("height", height - 32 + "px");
}
;var AudioPlayer=function(){var G=[];var D;var F="";var A={};var E=-1;function B(H){if(document.all&&!window[H]){for(var I=0;I<document.forms.length;I++){if(document.forms[I][H]){return document.forms[I][H];break}}}return document.all?window[H]:document[H]}function C(H,I,J){B(H).addListener(I,J)}return{setup:function(I,H){F=I;A=H},getPlayer:function(H){return B(H)},addListener:function(H,I,J){C(H,I,J)},embed:function(L,P){var J={};var N;var H;var Q;var I;var O={};var K={};var M={};for(N in A){J[N]=A[N]}for(N in P){J[N]=P[N]}if(J.transparentpagebg=="yes"){O.bgcolor="#FFFFFF";O.wmode="transparent"}else{if(J.pagebg){O.bgcolor="#"+J.pagebg}O.wmode="opaque"}O.menu="false";for(N in J){if(N=="pagebg"||N=="width"||N=="transparentpagebg"){continue}K[N]=J[N]}M.name=L;M.style="outline: none";K.playerID=L;audioplayer_swfobject.embedSWF(F,L,J.width.toString(),"24","9",false,K,O,M);G.push(L)},syncVolumes:function(H,J){E=J;for(var I=0;I<G.length;I++){if(G[I]!=H){B(G[I]).setVolume(E)}}},activate:function(H,I){if(D&&D!=H){B(D).close()}D=H},load:function(J,H,K,I){B(J).load(H,K,I)},close:function(H){B(H).close();if(H==D){D=null}},open:function(H,I){if(I==undefined){I=1}B(H).open(I==undefined?0:I-1)},getVolume:function(H){return E}}}()/*	SWFObject v2.2 <http://code.google.com/p/swfobject/> 
	is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/
var audioplayer_swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return !a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in audioplayer_swfobject){audioplayer_swfobject[X]=null}audioplayer_swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();;// $Id: panels.js,v 1.2.4.1 2009/10/05 22:40:35 merlinofchaos Exp $

(function ($) {
  Drupal.Panels = {};

  Drupal.Panels.autoAttach = function() {
    if ($.browser.msie) {
      // If IE, attach a hover event so we can see our admin links.
      $("div.panel-pane").hover(
        function() {
          $('div.panel-hide', this).addClass("panel-hide-hover"); return true;
        },
        function() {
          $('div.panel-hide', this).removeClass("panel-hide-hover"); return true;
        }
      );
      $("div.admin-links").hover(
        function() {
          $(this).addClass("admin-links-hover"); return true;
        },
        function(){
          $(this).removeClass("admin-links-hover"); return true;
        }
      );
    }
  };

  $(Drupal.Panels.autoAttach);
})(jQuery);
;/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
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("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.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}})());;/*
 * jQuery UI 1.6
 *
 * Copyright (c) 2008 AUTHORS.txt (http://ui.jquery.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI
 */(function(C){var I=C.fn.remove,D=C.browser.mozilla&&(parseFloat(C.browser.version)<1.9);C.ui={version:"1.6",plugin:{add:function(K,L,N){var M=C.ui[K].prototype;for(var J in N){M.plugins[J]=M.plugins[J]||[];M.plugins[J].push([L,N[J]])}},call:function(J,L,K){var N=J.plugins[L];if(!N){return }for(var M=0;M<N.length;M++){if(J.options[N[M][0]]){N[M][1].apply(J.element,K)}}}},contains:function(L,K){var J=C.browser.safari&&C.browser.version<522;if(L.contains&&!J){return L.contains(K)}if(L.compareDocumentPosition){return !!(L.compareDocumentPosition(K)&16)}while(K=K.parentNode){if(K==L){return true}}return false},cssCache:{},css:function(J){if(C.ui.cssCache[J]){return C.ui.cssCache[J]}var K=C('<div class="ui-gen">').addClass(J).css({position:"absolute",top:"-5000px",left:"-5000px",display:"block"}).appendTo("body");C.ui.cssCache[J]=!!((!(/auto|default/).test(K.css("cursor"))||(/^[1-9]/).test(K.css("height"))||(/^[1-9]/).test(K.css("width"))||!(/none/).test(K.css("backgroundImage"))||!(/transparent|rgba\(0, 0, 0, 0\)/).test(K.css("backgroundColor"))));try{C("body").get(0).removeChild(K.get(0))}catch(L){}return C.ui.cssCache[J]},hasScroll:function(M,K){if(C(M).css("overflow")=="hidden"){return false}var J=(K&&K=="left")?"scrollLeft":"scrollTop",L=false;if(M[J]>0){return true}M[J]=1;L=(M[J]>0);M[J]=0;return L},isOverAxis:function(K,J,L){return(K>J)&&(K<(J+L))},isOver:function(O,K,N,M,J,L){return C.ui.isOverAxis(O,N,J)&&C.ui.isOverAxis(K,M,L)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(D){var F=C.attr,E=C.fn.removeAttr,H="http://www.w3.org/2005/07/aaa",A=/^aria-/,B=/^wairole:/;C.attr=function(K,J,L){var M=L!==undefined;return(J=="role"?(M?F.call(this,K,J,"wairole:"+L):(F.apply(this,arguments)||"").replace(B,"")):(A.test(J)?(M?K.setAttributeNS(H,J.replace(A,"aaa:"),L):F.call(this,K,J.replace(A,"aaa:"))):F.apply(this,arguments)))};C.fn.removeAttr=function(J){return(A.test(J)?this.each(function(){this.removeAttributeNS(H,J.replace(A,""))}):E.call(this,J))}}C.fn.extend({remove:function(){C("*",this).add(this).each(function(){C(this).triggerHandler("remove")});return I.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var J;if((C.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){J=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(C.curCSS(this,"position",1))&&(/(auto|scroll)/).test(C.curCSS(this,"overflow",1)+C.curCSS(this,"overflow-y",1)+C.curCSS(this,"overflow-x",1))}).eq(0)}else{J=this.parents().filter(function(){return(/(auto|scroll)/).test(C.curCSS(this,"overflow",1)+C.curCSS(this,"overflow-y",1)+C.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!J.length?C(document):J}});C.extend(C.expr[":"],{data:function(K,L,J){return C.data(K,J[3])},tabbable:function(L,M,K){var N=L.nodeName.toLowerCase();function J(O){return !(C(O).is(":hidden")||C(O).parents(":hidden").length)}return(L.tabIndex>=0&&(("a"==N&&L.href)||(/input|select|textarea|button/.test(N)&&"hidden"!=L.type&&!L.disabled))&&J(L))}});function G(M,N,O,L){function K(Q){var P=C[M][N][Q]||[];return(typeof P=="string"?P.split(/,?\s+/):P)}var J=K("getter");if(L.length==1&&typeof L[0]=="string"){J=J.concat(K("getterSetter"))}return(C.inArray(O,J)!=-1)}C.widget=function(K,J){var L=K.split(".")[0];K=K.split(".")[1];C.fn[K]=function(P){var N=(typeof P=="string"),O=Array.prototype.slice.call(arguments,1);if(N&&P.substring(0,1)=="_"){return this}if(N&&G(L,K,P,O)){var M=C.data(this[0],K);return(M?M[P].apply(M,O):undefined)}return this.each(function(){var Q=C.data(this,K);(!Q&&!N&&C.data(this,K,new C[L][K](this,P)));(Q&&N&&C.isFunction(Q[P])&&Q[P].apply(Q,O))})};C[L]=C[L]||{};C[L][K]=function(O,N){var M=this;this.widgetName=K;this.widgetEventPrefix=C[L][K].eventPrefix||K;this.widgetBaseClass=L+"-"+K;this.options=C.extend({},C.widget.defaults,C[L][K].defaults,C.metadata&&C.metadata.get(O)[K],N);this.element=C(O).bind("setData."+K,function(Q,P,R){return M._setData(P,R)}).bind("getData."+K,function(Q,P){return M._getData(P)}).bind("remove",function(){return M.destroy()});this._init()};C[L][K].prototype=C.extend({},C.widget.prototype,J);C[L][K].getterSetter="option"};C.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName)},option:function(L,M){var K=L,J=this;if(typeof L=="string"){if(M===undefined){return this._getData(L)}K={};K[L]=M}C.each(K,function(N,O){J._setData(N,O)})},_getData:function(J){return this.options[J]},_setData:function(J,K){this.options[J]=K;if(J=="disabled"){this.element[K?"addClass":"removeClass"](this.widgetBaseClass+"-disabled")}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(K,L,M){var J=(K==this.widgetEventPrefix?K:this.widgetEventPrefix+K);L=L||C.event.fix({type:J,target:this.element[0]});return this.element.triggerHandler(J,[L,M],this.options[K])}};C.widget.defaults={disabled:false};C.ui.mouse={_mouseInit:function(){var J=this;this.element.bind("mousedown."+this.widgetName,function(K){return J._mouseDown(K)}).bind("click."+this.widgetName,function(K){if(J._preventClickEvent){J._preventClickEvent=false;return false}});if(C.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(C.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(L){(this._mouseStarted&&this._mouseUp(L));this._mouseDownEvent=L;var K=this,M=(L.which==1),J=(typeof this.options.cancel=="string"?C(L.target).parents().add(L.target).filter(this.options.cancel).length:false);if(!M||J||!this._mouseCapture(L)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){K.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(L)&&this._mouseDelayMet(L)){this._mouseStarted=(this._mouseStart(L)!==false);if(!this._mouseStarted){L.preventDefault();return true}}this._mouseMoveDelegate=function(N){return K._mouseMove(N)};this._mouseUpDelegate=function(N){return K._mouseUp(N)};C(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);if(!C.browser.safari){L.preventDefault()}return true},_mouseMove:function(J){if(C.browser.msie&&!J.button){return this._mouseUp(J)}if(this._mouseStarted){this._mouseDrag(J);return J.preventDefault()}if(this._mouseDistanceMet(J)&&this._mouseDelayMet(J)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,J)!==false);(this._mouseStarted?this._mouseDrag(J):this._mouseUp(J))}return !this._mouseStarted},_mouseUp:function(J){C(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=true;this._mouseStop(J)}return false},_mouseDistanceMet:function(J){return(Math.max(Math.abs(this._mouseDownEvent.pageX-J.pageX),Math.abs(this._mouseDownEvent.pageY-J.pageY))>=this.options.distance)},_mouseDelayMet:function(J){return this.mouseDelayMet},_mouseStart:function(J){},_mouseDrag:function(J){},_mouseStop:function(J){},_mouseCapture:function(J){return true}};C.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);/*
 * jQuery UI Tabs 1.6
 *
 * Copyright (c) 2008 AUTHORS.txt (http://ui.jquery.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Tabs
 *
 * Depends:
 *	ui.core.js
 */(function(A){A.widget("ui.tabs",{_init:function(){this._tabify(true)},destroy:function(){var B=this.options;this.element.unbind(".tabs").removeClass(B.navClass).removeData("tabs");this.$tabs.each(function(){var C=A.data(this,"href.tabs");if(C){this.href=C}var D=A(this).unbind(".tabs");A.each(["href","load","cache"],function(E,F){D.removeData(F+".tabs")})});this.$lis.add(this.$panels).each(function(){if(A.data(this,"destroy.tabs")){A(this).remove()}else{A(this).removeClass([B.selectedClass,B.deselectableClass,B.disabledClass,B.panelClass,B.hideClass].join(" "))}});if(B.cookie){this._cookie(null,B.cookie)}},_setData:function(B,C){if((/^selected/).test(B)){this.select(C)}else{this.options[B]=C;this._tabify()}},length:function(){return this.$tabs.length},_tabId:function(B){return B.title&&B.title.replace(/\s/g,"_").replace(/[^A-Za-z0-9\-_:\.]/g,"")||this.options.idPrefix+A.data(B)},_sanitizeSelector:function(B){return B.replace(/:/g,"\\:")},_cookie:function(){var B=this.cookie||(this.cookie="ui-tabs-"+A.data(this.element[0]));return A.cookie.apply(null,[B].concat(A.makeArray(arguments)))},_tabify:function(N){this.$lis=A("li:has(a[href])",this.element);this.$tabs=this.$lis.map(function(){return A("a",this)[0]});this.$panels=A([]);var O=this,C=this.options;this.$tabs.each(function(Q,P){if(P.hash&&P.hash.replace("#","")){O.$panels=O.$panels.add(O._sanitizeSelector(P.hash))}else{if(A(P).attr("href")!="#"){A.data(P,"href.tabs",P.href);A.data(P,"load.tabs",P.href);var S=O._tabId(P);P.href="#"+S;var R=A("#"+S);if(!R.length){R=A(C.panelTemplate).attr("id",S).addClass(C.panelClass).insertAfter(O.$panels[Q-1]||O.element);R.data("destroy.tabs",true)}O.$panels=O.$panels.add(R)}else{C.disabled.push(Q+1)}}});if(N){this.element.addClass(C.navClass);this.$panels.addClass(C.panelClass);if(C.selected===undefined){if(location.hash){this.$tabs.each(function(Q,P){if(P.hash==location.hash){C.selected=Q;return false}})}else{if(C.cookie){var I=parseInt(O._cookie(),10);if(I&&O.$tabs[I]){C.selected=I}}else{if(O.$lis.filter("."+C.selectedClass).length){C.selected=O.$lis.index(O.$lis.filter("."+C.selectedClass)[0])}}}}C.selected=C.selected===null||C.selected!==undefined?C.selected:0;C.disabled=A.unique(C.disabled.concat(A.map(this.$lis.filter("."+C.disabledClass),function(Q,P){return O.$lis.index(Q)}))).sort();if(A.inArray(C.selected,C.disabled)!=-1){C.disabled.splice(A.inArray(C.selected,C.disabled),1)}this.$panels.addClass(C.hideClass);this.$lis.removeClass(C.selectedClass);if(C.selected!==null){this.$panels.eq(C.selected).removeClass(C.hideClass);var E=[C.selectedClass];if(C.deselectable){E.push(C.deselectableClass)}this.$lis.eq(C.selected).addClass(E.join(" "));var J=function(){O._trigger("show",null,O.ui(O.$tabs[C.selected],O.$panels[C.selected]))};if(A.data(this.$tabs[C.selected],"load.tabs")){this.load(C.selected,J)}else{J()}}A(window).bind("unload",function(){O.$tabs.unbind(".tabs");O.$lis=O.$tabs=O.$panels=null})}else{C.selected=this.$lis.index(this.$lis.filter("."+C.selectedClass)[0])}if(C.cookie){this._cookie(C.selected,C.cookie)}for(var G=0,M;M=this.$lis[G];G++){A(M)[A.inArray(G,C.disabled)!=-1&&!A(M).hasClass(C.selectedClass)?"addClass":"removeClass"](C.disabledClass)}if(C.cache===false){this.$tabs.removeData("cache.tabs")}var B,H;if(C.fx){if(C.fx.constructor==Array){B=C.fx[0];H=C.fx[1]}else{B=H=C.fx}}function D(P,Q){P.css({display:""});if(A.browser.msie&&Q.opacity){P[0].style.removeAttribute("filter")}}var K=H?function(P,Q){Q.animate(H,H.duration||"normal",function(){Q.removeClass(C.hideClass);D(Q,H);O._trigger("show",null,O.ui(P,Q[0]))})}:function(P,Q){Q.removeClass(C.hideClass);O._trigger("show",null,O.ui(P,Q[0]))};var L=B?function(Q,P,R){P.animate(B,B.duration||"normal",function(){P.addClass(C.hideClass);D(P,B);if(R){K(Q,R,P)}})}:function(Q,P,R){P.addClass(C.hideClass);if(R){K(Q,R)}};function F(R,T,P,S){var Q=[C.selectedClass];if(C.deselectable){Q.push(C.deselectableClass)}T.addClass(Q.join(" ")).siblings().removeClass(Q.join(" "));L(R,P,S)}this.$tabs.unbind(".tabs").bind(C.event+".tabs",function(){var S=A(this).parents("li:eq(0)"),P=O.$panels.filter(":visible"),R=A(O._sanitizeSelector(this.hash));if((S.hasClass(C.selectedClass)&&!C.deselectable)||S.hasClass(C.disabledClass)||A(this).hasClass(C.loadingClass)||O._trigger("select",null,O.ui(this,R[0]))===false){this.blur();return false}C.selected=O.$tabs.index(this);if(C.deselectable){if(S.hasClass(C.selectedClass)){O.options.selected=null;S.removeClass([C.selectedClass,C.deselectableClass].join(" "));O.$panels.stop();L(this,P);this.blur();return false}else{if(!P.length){O.$panels.stop();var Q=this;O.load(O.$tabs.index(this),function(){S.addClass([C.selectedClass,C.deselectableClass].join(" "));K(Q,R)});this.blur();return false}}}if(C.cookie){O._cookie(C.selected,C.cookie)}O.$panels.stop();if(R.length){var Q=this;O.load(O.$tabs.index(this),P.length?function(){F(Q,S,P,R)}:function(){S.addClass(C.selectedClass);K(Q,R)})}else{throw"jQuery UI Tabs: Mismatching fragment identifier."}if(A.browser.msie){this.blur()}return false});if(C.event!="click"){this.$tabs.bind("click.tabs",function(){return false})}},add:function(E,D,C){if(C==undefined){C=this.$tabs.length}var G=this.options;var I=A(G.tabTemplate.replace(/#\{href\}/g,E).replace(/#\{label\}/g,D));I.data("destroy.tabs",true);var H=E.indexOf("#")==0?E.replace("#",""):this._tabId(A("a:first-child",I)[0]);var F=A("#"+H);if(!F.length){F=A(G.panelTemplate).attr("id",H).addClass(G.hideClass).data("destroy.tabs",true)}F.addClass(G.panelClass);if(C>=this.$lis.length){I.appendTo(this.element);F.appendTo(this.element[0].parentNode)}else{I.insertBefore(this.$lis[C]);F.insertBefore(this.$panels[C])}G.disabled=A.map(G.disabled,function(K,J){return K>=C?++K:K});this._tabify();if(this.$tabs.length==1){I.addClass(G.selectedClass);F.removeClass(G.hideClass);var B=A.data(this.$tabs[0],"load.tabs");if(B){this.load(C,B)}}this._trigger("add",null,this.ui(this.$tabs[C],this.$panels[C]))},remove:function(B){var D=this.options,E=this.$lis.eq(B).remove(),C=this.$panels.eq(B).remove();if(E.hasClass(D.selectedClass)&&this.$tabs.length>1){this.select(B+(B+1<this.$tabs.length?1:-1))}D.disabled=A.map(A.grep(D.disabled,function(G,F){return G!=B}),function(G,F){return G>=B?--G:G});this._tabify();this._trigger("remove",null,this.ui(E.find("a")[0],C[0]))},enable:function(B){var C=this.options;if(A.inArray(B,C.disabled)==-1){return }var D=this.$lis.eq(B).removeClass(C.disabledClass);if(A.browser.safari){D.css("display","inline-block");setTimeout(function(){D.css("display","block")},0)}C.disabled=A.grep(C.disabled,function(F,E){return F!=B});this._trigger("enable",null,this.ui(this.$tabs[B],this.$panels[B]))},disable:function(C){var B=this,D=this.options;if(C!=D.selected){this.$lis.eq(C).addClass(D.disabledClass);D.disabled.push(C);D.disabled.sort();this._trigger("disable",null,this.ui(this.$tabs[C],this.$panels[C]))}},select:function(B){if(typeof B=="string"){B=this.$tabs.index(this.$tabs.filter("[href$="+B+"]")[0])}this.$tabs.eq(B).trigger(this.options.event+".tabs")},load:function(G,K){var L=this,D=this.options,E=this.$tabs.eq(G),J=E[0],H=K==undefined||K===false,B=E.data("load.tabs");K=K||function(){};if(!B||!H&&A.data(J,"cache.tabs")){K();return }var M=function(N){var O=A(N),P=O.find("*:last");return P.length&&P.is(":not(img)")&&P||O};var C=function(){L.$tabs.filter("."+D.loadingClass).removeClass(D.loadingClass).each(function(){if(D.spinner){M(this).parent().html(M(this).data("label.tabs"))}});L.xhr=null};if(D.spinner){var I=M(J).html();M(J).wrapInner("<em></em>").find("em").data("label.tabs",I).html(D.spinner)}var F=A.extend({},D.ajaxOptions,{url:B,success:function(P,N){A(L._sanitizeSelector(J.hash)).html(P);C();if(D.cache){A.data(J,"cache.tabs",true)}L._trigger("load",null,L.ui(L.$tabs[G],L.$panels[G]));try{D.ajaxOptions.success(P,N)}catch(O){}K()}});if(this.xhr){this.xhr.abort();C()}E.addClass(D.loadingClass);L.xhr=A.ajax(F)},url:function(C,B){this.$tabs.eq(C).removeData("cache.tabs").data("load.tabs",B)},ui:function(C,B){return{options:this.options,tab:C,panel:B,index:this.$tabs.index(C)}}});A.extend(A.ui.tabs,{version:"1.6",getter:"length",defaults:{ajaxOptions:null,cache:false,cookie:null,deselectable:false,deselectableClass:"ui-tabs-deselectable",disabled:[],disabledClass:"ui-tabs-disabled",event:"click",fx:null,hideClass:"ui-tabs-hide",idPrefix:"ui-tabs-",loadingClass:"ui-tabs-loading",navClass:"ui-tabs-nav",panelClass:"ui-tabs-panel",panelTemplate:"<div></div>",selectedClass:"ui-tabs-selected",spinner:"Loading&#8230;",tabTemplate:'<li><a href="#{href}"><span>#{label}</span></a></li>'}});A.extend(A.ui.tabs.prototype,{rotation:null,rotate:function(C,F){F=F||false;var B=this,E=this.options.selected;function G(){B.rotation=setInterval(function(){E=++E<B.$tabs.length?E:0;B.select(E)},C)}function D(H){if(!H||H.clientX){clearInterval(B.rotation)}}if(C){G();if(!F){this.$tabs.bind(this.options.event+".tabs",D)}else{this.$tabs.bind(this.options.event+".tabs",function(){D();E=B.options.selected;G()})}}else{D();this.$tabs.unbind(this.options.event+".tabs",D)}}})})(jQuery);// $Id: tabs.js,v 1.12 2010/01/18 08:11:21 nedjo Exp $

Drupal.tabs = Drupal.tabs || {};

Drupal.behaviors.tabs = function (context) {
  // Set the active class to the first tab with an form error.
  $('.drupal-tabs').children('ul > li').each( function() {
    if ($($(this).find('a').attr('href')).find('div.form-item .error:first').size()) {
      $(this).addClass('error').addClass('ui-tabs-selected');
    }
  });

  var fx = {duration: Drupal.settings.tabs.speed};
  if (Drupal.settings.tabs.fade) {
    fx.opacity = 'toggle';
  }
  if (Drupal.settings.tabs.slide) {
    fx.height = 'toggle';
  }
  // Process custom tabs.
  var selected = null;
  $('.drupal-tabs:not(.tabs-processed)', context)
    .find('> ul')
    .tabs({
      spinner: Drupal.t('Loading...'),
      // Add the 'active' class when showing tabs and remove it from siblings.
      show: function(event, ui) {
        $(ui.tab).parent('li').addClass('active').siblings('li').removeClass('active');
      },
      fx: fx
    })
    .addClass('tabs')
    .each(function () {
      // Assign secondary class to nested tabsets.
      var newClass = $(this).parents('.drupal-tabs').size() > 1 ? 'secondary' : 'primary';
      $(this)
        .addClass(newClass)
        .find('>li:first')
        .addClass('first')
        .end()
        .find('>li:last')
        .addClass('last');
    })
    .after('<span class="clear"></span>')
    .end()
    .addClass('tabs-processed')
    .each(function () {
      if ($(this).is('.tabs-navigation')) {
        Drupal.tabs.tabsNavigation(this);
      }
    })
    .show();
};

Drupal.tabs.tabsNavigation = function(elt) {
  // Extract tabset name.
  var tabsetName = $(elt).get(0).id.substring(5);
  var $tabs = $('> ul', elt);
  var i = 1;
  var $tabsContent = $('div.tabs-' + tabsetName, elt);
  var count = $tabsContent.size();
  $tabsContent.each(function() {
    if ((i > 1) || (i < count)) {
      $(this).append('<span class="clear"></span><div class="tabs-nav-link-sep"></div>');
    }
    if (i > 1) {
      var previousText = 'â€¹ ' + (Drupal.settings.tabs.navigation_titles ? $tabs.find('> li:eq(' + parseInt(i - 2) + ')').text() : Drupal.settings.tabs.previous_text);
      var link = $(document.createElement('a'))
        .append('<span>' + previousText + '</span>')
        .attr('id', 'tabs-' + tabsetName + '-previous-link-' + i)
        .addClass('tabs-nav-previous')
        .click(function() {
          var tabIndex = parseInt($(this).attr('id').substring($(this).attr('id').lastIndexOf('-') + 1)) -1;
          $tabs.tabs('select', tabIndex - 1);
          Drupal.tabs.scrollTo(elt);
          return false;
        });
      $(this).append(link);
    }
    if (i < count) {
      var nextText = (Drupal.settings.tabs.navigation_titles ? $tabs.find('> li:eq(' + parseInt(i) + ')').text() : Drupal.settings.tabs.next_text) + ' â€º';
      var link = $(document.createElement('a'))
        .append('<span>' + nextText + '</span>')
        .attr('id', 'tabs-' + tabsetName + '-next-button-' + i)
        .addClass('tabs-nav-next')
        .click(function() {
          var tabIndex = parseInt($(this).attr('id').substring($(this).attr('id').lastIndexOf('-') + 1)) -1;
          $tabs.tabs('select', tabIndex + 1);
          Drupal.tabs.scrollTo(elt);
          return false;
        });
      $(this).append(link);
    }
    $tabsContent.append('<span class="clear"></span>');
    i++;
  });
};

Drupal.tabs.scrollTo = function(elt) {
  // Scroll to the top of the tab.
  var offset = $(elt).offset();
  // Only scroll upwards.
  if (offset.top - 10 < $(window).scrollTop()) {
    $('html,body').animate({scrollTop: (offset.top - 10)}, 500);
  }
};

;// $Id: base.js,v 1.11.2.1 2010/03/10 20:08:58 merlinofchaos Exp $
/**
 * @file base.js
 *
 * Some basic behaviors and utility functions for Views.
 */

Drupal.Views = {};

/**
 * jQuery UI tabs, Views integration component
 */
Drupal.behaviors.viewsTabs = function (context) {
  $('#views-tabset:not(.views-processed)').addClass('views-processed').each(function() {
    new Drupal.Views.Tabs($(this), {selectedClass: 'active'});
  });

  $('a.views-remove-link')
    .addClass('views-processed')
    .click(function() {
      var id = $(this).attr('id').replace('views-remove-link-', '');
      $('#views-row-' + id).hide();
      $('#views-removed-' + id).attr('checked', true);
      return false;
    });
}

/**
 * For IE, attach some javascript so that our hovers do what they're supposed
 * to do.
 */
Drupal.behaviors.viewsHoverlinks = function() {
  if ($.browser.msie) {
    // If IE, attach a hover event so we can see our admin links.
    $("div.view:not(.views-hover-processed)").addClass('views-hover-processed').hover(
      function() {
        $('div.views-hide', this).addClass("views-hide-hover"); return true;
      },
      function(){
        $('div.views-hide', this).removeClass("views-hide-hover"); return true;
      }
    );
    $("div.views-admin-links:not(.views-hover-processed)")
      .addClass('views-hover-processed')
      .hover(
        function() {
          $(this).addClass("views-admin-links-hover"); return true;
        },
        function(){
          $(this).removeClass("views-admin-links-hover"); return true;
        }
      );
  }
}

/**
 * Helper function to parse a querystring.
 */
Drupal.Views.parseQueryString = function (query) {
  var args = {};
  var pos = query.indexOf('?');
  if (pos != -1) {
    query = query.substring(pos + 1);
  }
  var pairs = query.split('&');
  for(var i in pairs) {
    var pair = pairs[i].split('=');
    // Ignore the 'q' path argument, if present.
    if (pair[0] != 'q' && pair[1]) {
      args[pair[0]] = decodeURIComponent(pair[1].replace(/\+/g, ' '));
    }
  }
  return args;
};

/**
 * Helper function to return a view's arguments based on a path.
 */
Drupal.Views.parseViewArgs = function (href, viewPath) {
  var returnObj = {};
  var path = Drupal.Views.getPath(href);
  // Ensure we have a correct path.
  if (viewPath && path.substring(0, viewPath.length + 1) == viewPath + '/') {
    var args = decodeURIComponent(path.substring(viewPath.length + 1, path.length));
    returnObj.view_args = args;
    returnObj.view_path = path;
  }
  return returnObj;
};

/**
 * Strip off the protocol plus domain from an href.
 */
Drupal.Views.pathPortion = function (href) {
  // Remove e.g. http://example.com if present.
  var protocol = window.location.protocol;
  if (href.substring(0, protocol.length) == protocol) {
    // 2 is the length of the '//' that normally follows the protocol
    href = href.substring(href.indexOf('/', protocol.length + 2));
  }
  return href;
};

/**
 * Return the Drupal path portion of an href.
 */
Drupal.Views.getPath = function (href) {
  href = Drupal.Views.pathPortion(href);
  href = href.substring(Drupal.settings.basePath.length, href.length);
  // 3 is the length of the '?q=' added to the url without clean urls.
  if (href.substring(0, 3) == '?q=') {
    href = href.substring(3, href.length);
  }
  var chars = ['#', '?', '&'];
  for (i in chars) {
    if (href.indexOf(chars[i]) > -1) {
      href = href.substr(0, href.indexOf(chars[i]));
    }
  }
  return href;
};
;// $Id: ajax_view.js,v 1.19.2.5 2010/03/25 18:25:28 merlinofchaos Exp $

/**
 * @file ajaxView.js
 *
 * Handles AJAX fetching of views, including filter submission and response.
 */

Drupal.Views.Ajax = Drupal.Views.Ajax || {};

/**
 * An ajax responder that accepts a packet of JSON data and acts appropriately.
 *
 * The following fields control behavior.
 * - 'display': Display the associated data in the view area.
 */
Drupal.Views.Ajax.ajaxViewResponse = function(target, response) {

  if (response.debug) {
    alert(response.debug);
  }

  var $view = $(target);

  // Check the 'display' for data.
  if (response.status && response.display) {
    var $newView = $(response.display);
    $view.replaceWith($newView);
    $view = $newView;
    Drupal.attachBehaviors($view.parent());
  }

  if (response.messages) {
    // Show any messages (but first remove old ones, if there are any).
    $view.find('.views-messages').remove().end().prepend(response.messages);
  }
};

/**
 * Ajax behavior for views.
 */
Drupal.behaviors.ViewsAjaxView = function() {
  if (Drupal.settings && Drupal.settings.views && Drupal.settings.views.ajaxViews) {
    var ajax_path = Drupal.settings.views.ajax_path;
    // If there are multiple views this might've ended up showing up multiple times.
    if (ajax_path.constructor.toString().indexOf("Array") != -1) {
      ajax_path = ajax_path[0];
    }
    $.each(Drupal.settings.views.ajaxViews, function(i, settings) {
      var view = '.view-dom-id-' + settings.view_dom_id;
      if (!$(view).size()) {
        // Backward compatibility: if 'views-view.tpl.php' is old and doesn't
        // contain the 'view-dom-id-#' class, we fall back to the old way of
        // locating the view:
        view = '.view-id-' + settings.view_name + '.view-display-id-' + settings.view_display_id;
      }


      // Process exposed filter forms.
      $('form#views-exposed-form-' + settings.view_name.replace(/_/g, '-') + '-' + settings.view_display_id.replace(/_/g, '-'))
      .filter(':not(.views-processed)')
      .each(function () {
        // remove 'q' from the form; it's there for clean URLs
        // so that it submits to the right place with regular submit
        // but this method is submitting elsewhere.
        $('input[name=q]', this).remove();
        var form = this;
        // ajaxSubmit doesn't accept a data argument, so we have to
        // pass additional fields this way.
        $.each(settings, function(key, setting) {
          $(form).append('<input type="hidden" name="'+ key + '" value="'+ setting +'"/>');
        });
      })
      .addClass('views-processed')
      .submit(function () {
        $('input[type=submit], button', this).after('<span class="views-throbbing">&nbsp</span>');
        var object = this;
        $(this).ajaxSubmit({
          url: ajax_path,
          type: 'GET',
          success: function(response) {
            // Call all callbacks.
            if (response.__callbacks) {
              $.each(response.__callbacks, function(i, callback) {
                eval(callback)(view, response);
              });
              $('.views-throbbing', object).remove();
            }
          },
          error: function(xhr) { Drupal.Views.Ajax.handleErrors(xhr, ajax_path); $('.views-throbbing', object).remove(); },
          dataType: 'json'
        });

        return false;
      });

      $(view).filter(':not(.views-processed)')
        // Don't attach to nested views. Doing so would attach multiple behaviors
        // to a given element.
        .filter(function() {
          // If there is at least one parent with a view class, this view
          // is nested (e.g., an attachment). Bail.
          return !$(this).parents('.view').size();
        })
        .each(function() {
          // Set a reference that will work in subsequent calls.
          var target = this;
          $(this)
            .addClass('views-processed')
            // Process pager, tablesort, and attachment summary links.
            .find('ul.pager > li > a, th.views-field a, .attachment .views-summary a')
            .each(function () {
              var viewData = { 'js': 1 };
              // Construct an object using the settings defaults and then overriding
              // with data specific to the link.
              $.extend(
                viewData,
                Drupal.Views.parseQueryString($(this).attr('href')),
                // Extract argument data from the URL.
                Drupal.Views.parseViewArgs($(this).attr('href'), settings.view_base_path),
                // Settings must be used last to avoid sending url aliases to the server.
                settings
              );
              $(this).click(function () {
                $.extend(viewData, Drupal.Views.parseViewArgs($(this).attr('href'), settings.view_base_path));
                $(this).addClass('views-throbbing');
                $.ajax({
                  url: ajax_path,
                  type: 'GET',
                  data: viewData,
                  success: function(response) {
                    $(this).removeClass('views-throbbing');
                    // Scroll to the top of the view. This will allow users
                    // to browse newly loaded content after e.g. clicking a pager
                    // link.
                    var offset = $(target).offset();
                    // We can't guarantee that the scrollable object should be
                    // the body, as the view could be embedded in something
                    // more complex such as a modal popup. Recurse up the DOM
                    // and scroll the first element that has a non-zero top.
                    var scrollTarget = target;
                    while ($(scrollTarget).scrollTop() == 0 && $(scrollTarget).parent()) {
                      scrollTarget = $(scrollTarget).parent()
                    }
                    // Only scroll upward
                    if (offset.top - 10 < $(scrollTarget).scrollTop()) {
                      $(scrollTarget).animate({scrollTop: (offset.top - 10)}, 500);
                    }
                    // Call all callbacks.
                    if (response.__callbacks) {
                      $.each(response.__callbacks, function(i, callback) {
                        eval(callback)(target, response);
                      });
                    }
                  },
                  error: function(xhr) { $(this).removeClass('views-throbbing'); Drupal.Views.Ajax.handleErrors(xhr, ajax_path); },
                  dataType: 'json'
                });

                return false;
              });
            }); // .each function () {
      }); // $view.filter().each
    }); // .each Drupal.settings.views.ajaxViews
  } // if
};
;if (Drupal.jsEnabled) {
  $(document).ready(function() {
    // I am assuming that all of the links are refering to an internal node
    
    // add the attribute rel=facebox to all of the links I want to have a popup
    $('div.view-field > a').attr('class', 'popup');
   
    // on click of a link
    $('a.popup').click(function(a) {
    
      // Make sure that other stuff is closed. This seems to cause a problem in Fx2 and IE7.
      $('div#calpopup').fadeOut();
      $('div#calpopup').remove();
      
      // create div to hold data and add it to the end of the body
      var div = $('<div id="calpopup"><div id="popup-close"><img id="popup-close-img" src="' + var_path + '/images/cross.png" /></div><div id="calpopup-body"><img src="' + var_path + '/images/throbber.gif" id="popthrobber" /></div></div>').attr('style','display: none');
      div.appendTo(document.body);
      
      // Locate Popup
      var offset = $(this).offset();
      // Check position with window width.
      var offset_left = offset.left + 5;
      if ($(window).width() < $('#calpopup').width() + offset.left) {
        offset_left -= $('#calpopup').width() + 5;
        if (offset_left < 0) {
          offset_left = 0;
        }
      }
      var offset_top = offset.top + 25;
      if ($(window).height() < $('#calpopup').height() + offset_top) {
        offset_top -= $('#calpopup').height() + 25;
	      if (offset_top < 0) {
          offset_top = 0;
        }
      }
      $('#calpopup').css('left', offset_left);
      $('#calpopup').css('top', offset_top);
      
      // Show Popup
      $('#calpopup').fadeIn('slow');
      
      // If sucessful call this
      function domCallback(msg) {
        $('#calpopup-body').html(msg);
      }
      
      // Get NodeID and ItemID
      var ids = $(this).parent().parent().attr('id');
      var arr = ids.split(":");
      var nid = arr[1];
      var id = arr[4];
            
      // fill the div with data
      $.ajax({
        type: "GET",
        url: var_base_path + "?q=jcalendar/getnode/"+nid+"/"+ids,
        success: function(msg){
          domCallback(msg);
        }
      });
      
      // On click of the close image
      $('img#popup-close-img').click(function(x) {
        $('div#calpopup').fadeOut();
        $('div#calpopup').remove();
      });
      
      $(document).click(function(y) {
        var $tgt = $(y.target);
        if (!$tgt.parents().is('div#calpopup')) {
          $('div#calpopup').fadeOut();
          $('div#calpopup').remove();
          $(document).unbind("click");
        }
      });
      
      // Don't Follow the real link
      return false;
    });
  });
};// $Id: quicktabs.js,v 1.3.2.18 2009/09/29 03:02:37 pasqualle Exp $

Drupal.settings.views = Drupal.settings.views || {'ajax_path': 'views/ajax'};

Drupal.behaviors.quicktabs = function (context) {
  $('.quicktabs_wrapper:not(.quicktabs-processed)', context).addClass('quicktabs-processed').each(function(){
    Drupal.quicktabs.prepare(this);
  });
};

Drupal.quicktabs = Drupal.quicktabs || {};

// setting up the inital behaviours
Drupal.quicktabs.prepare = function(el) {
  var i = 0;
  // el.id format: "quicktabs-$qtid"
  var qtid = el.id.substring(el.id.indexOf('-') +1);

  $(el).find('ul.quicktabs_tabs li a').each(function(){
    this.myTabIndex = i++;
    this.qtid = qtid;
    $(this).bind('click', quicktabsClick);
  });

  // Search for the active tab.
  var $active_tab = $(el).children('.quicktabs_tabs').find('li.active a');

  if ($active_tab.hasClass('qt_tab') || $active_tab.hasClass('qt_ajax_tab')) {
    $active_tab.trigger('click');
  }
  else {
    // Click on the first tab.
    $(el).children('.quicktabs_tabs').find('li.first a').trigger('click');
  }
  return false;
}

// constructor for an individual tab
Drupal.quicktabs.tab = function (el) {
  this.element = el;
  this.tabIndex = el.myTabIndex;
  this.qtid = el.qtid;
  var qtKey = 'qt_' + this.qtid;
  var i = 0;
  for (var key in Drupal.settings.quicktabs[qtKey].tabs) {
    if (i == this.tabIndex) {
      this.tabObj = Drupal.settings.quicktabs[qtKey].tabs[key];
      this.tabKey = key;
    }
    i++;
  }
  this.tabpage_id = 'quicktabs_tabpage_' + this.qtid + '_' + this.tabKey;
  this.container = $('#quicktabs_container_' + this.qtid);
  this.tabpage = this.container.find('#' + this.tabpage_id);
  // The 'this' variable will not persist inside of the options object.
  var tab = this;
  this.options = {
    success: function(response) {
      return tab.success(response);
    },
    complete: function(response) {
      return tab.complete();
    }
  }
}

// ajax callback for non-views tabs
Drupal.quicktabs.tab.prototype.success = function(response) {
  var result = Drupal.parseJson(response.data);
  this.container.append(Drupal.theme('quicktabsResponse', this, result));
  Drupal.attachBehaviors(this.container);
}

// function to call on completed ajax call
// for non-views tabs
Drupal.quicktabs.tab.prototype.complete = function() {
  // stop the progress bar
  this.stopProgress();
}


Drupal.quicktabs.tab.prototype.stopProgress = function () {
  if (this.progress.element) {
    $(this.progress.element).remove();
  }
  $(this.element).removeClass('progress-disabled').attr('disabled', false);
}

Drupal.quicktabs.tab.prototype.startProgress = function () {
  var progressBar = new Drupal.progressBar('qt-progress-' + this.element.id, null, null, null);
  progressBar.setProgress(-1, Drupal.t('Loading'));
  this.progress = {};
  this.progress.element = $(progressBar.element).addClass('qt-progress qt-progress-bar');
  this.container.prepend(this.progress.element);
}

Drupal.quicktabs.tab.prototype.quicktabsAjaxView = function() {
  // Create an empty div for the tabpage. The generated view will be inserted into this.
  var tab = this;
  tab.container.append(Drupal.theme('quicktabsResponse', this, null));

  var target;
  target = $('#' + tab.tabpage_id + ' > div');
  var ajax_path = Drupal.settings.views.ajax_path;
   //If there are multiple views this might've ended up showing up multiple times.
  if (ajax_path.constructor.toString().indexOf("Array") != -1) {
    ajax_path = ajax_path[0];
  }
  var args;
  if (tab.tabObj.args != '') {
    args = tab.tabObj.args.join('/');
  } else {
    args = '';
  }
  var viewData = {
    'view_name': tab.tabObj.vid,
    'view_display_id': tab.tabObj.display,
    'view_args': args
  }
  $.ajax({
    url: ajax_path,
    type: 'GET',
    data: viewData,
    success: function(response) {
      // Call all callbacks.
      if (response.__callbacks) {
        $.each(response.__callbacks, function(i, callback) {
          eval(callback)(target, response);
        });
      }
    },
    complete: function() {
      tab.stopProgress();
    },
    error: function() { alert(Drupal.t("An error occurred at @path.", {'@path': ajax_path})); },
    dataType: 'json'
  });
}

var quicktabsClick = function() {

  var tab = new Drupal.quicktabs.tab(this);

  // Set clicked tab to active.
  $(this).parents('li').siblings().removeClass('active');
  $(this).parents('li').addClass('active');

  // Hide all tabpages.
  tab.container.children().addClass('quicktabs-hide');

  // Show the active tabpage.
  if (tab.tabpage.hasClass('quicktabs_tabpage')) {
    tab.tabpage.removeClass('quicktabs-hide');
  }
  else {
    if ($(this).hasClass('qt_ajax_tab')) {
      tab.startProgress();
      // Construct the ajax tabpage.
      if (tab.tabObj.type != 'view') {
        // construct the ajax path to retrieve the content, depending on type
        var qtAjaxPath = Drupal.settings.basePath + 'quicktabs/ajax/' + tab.tabObj.type + '/';
        switch (tab.tabObj.type) {
          case 'node':
            qtAjaxPath +=  tab.tabObj.nid + '/' + tab.tabObj.teaser + '/' + tab.tabObj.hide_title;
            break;
          case 'block':
            qtAjaxPath +=  tab.tabObj.bid + '/' + tab.tabObj.hide_title;
            break;
          case 'qtabs':
            qtAjaxPath +=  tab.tabObj.qtid;
            break;
        }
        
        $.ajax({
          url: qtAjaxPath,
          type: 'GET',
          data: null,
          success: tab.options.success,
          complete: tab.options.complete,
          dataType: 'json'
        });
      }
      else {
        // special treatment for views
        tab.quicktabsAjaxView();
      }
    }
  }
  return false;
}

// theme function for ajax response
Drupal.theme.prototype.quicktabsResponse = function(tab, result) {
  var newDiv = tab.tabObj.type == 'view' ? '<div id="' + tab.tabpage_id + '" class="quicktabs_tabpage"><div></div></div>' : '<div id="' + tab.tabpage_id + '" class="quicktabs_tabpage">' + result['data'] + '</div>';
  return newDiv;
}; 
;/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * ©1993 Martin Majoor
 */
Cufon.registerFont({"w":550,"face":{"font-family":"scala","font-weight":400,"font-variant":"small-caps","font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"755","descent":"-245","x-height":"9","bbox":"-124 -868 1200 247","underline-thickness":"57","underline-position":"-28","stemh":"63.000","stemv":"82.000","unicode-range":"U+0020-U+2265"},"glyphs":{" ":{"w":250},"!":{"d":"181,-736r-6,541r-76,0r-6,-541r88,0xm194,-44v0,31,-26,57,-57,57v-31,0,-57,-26,-57,-57v0,-31,26,-57,57,-57v31,0,57,26,57,57","w":264},"$":{"d":"480,-616r-38,68v-30,-18,-42,-24,-69,-34v-31,-11,-43,-14,-75,-16r0,230v9,6,16,10,21,13v53,31,87,52,103,65v32,25,52,70,52,118v0,54,-22,104,-60,136v-31,27,-55,37,-116,46r0,59r-44,0r-1,-56v-59,-3,-84,-8,-118,-22v-25,-10,-42,-20,-85,-49r42,-65v38,25,53,34,75,44v28,12,45,15,86,18r0,-240r-41,-24v-105,-62,-141,-103,-141,-171v0,-95,66,-158,182,-173r1,-60r44,0r0,59v49,2,67,4,102,15v27,9,43,17,80,39xm253,-390r0,-207v-66,12,-101,45,-101,95v0,29,14,54,41,72v23,16,36,25,37,26v9,8,23,17,23,14xm393,-162v0,-23,-3,-40,-9,-49v-4,-6,-25,-25,-61,-54v-10,-8,-19,-13,-25,-13r0,215v58,-11,95,-50,95,-99","w":534},"%":{"d":"384,-495v0,97,-78,175,-175,175v-96,0,-175,-78,-175,-175v0,-97,79,-176,175,-176v97,0,175,79,175,176xm744,-692r-572,736r-69,0r572,-736r69,0xm816,-162v0,96,-79,175,-175,175v-97,0,-175,-79,-175,-175v0,-97,78,-175,175,-175v96,0,175,78,175,175xm324,-495v0,-63,-51,-115,-115,-115v-63,0,-114,52,-114,115v0,64,51,115,114,115v64,0,115,-51,115,-115xm755,-162v0,-64,-51,-115,-114,-115v-64,0,-115,51,-115,115v0,63,51,114,115,114v63,0,114,-51,114,-114","w":850},"&":{"d":"619,-65v-20,25,-26,34,-41,46v-24,20,-51,29,-82,29v-45,0,-72,-15,-104,-53v-49,37,-101,53,-164,53v-98,0,-162,-52,-162,-119v0,-48,11,-91,92,-135r35,-19v-28,-28,-61,-66,-61,-103v0,-65,55,-120,149,-120v85,0,137,45,137,119v0,38,-19,58,-73,87r-17,9r-39,-43r18,-9v21,-10,38,-21,39,-42v1,-31,-20,-64,-67,-64v-52,0,-73,32,-73,61v0,25,6,32,46,77r149,165v41,-35,59,-52,58,-109r64,0v-2,87,-30,108,-83,152v29,30,41,34,66,34v25,0,44,-12,73,-47xm352,-86r-121,-134r-22,13v-51,30,-63,48,-63,90v0,37,45,64,79,64v39,0,77,1,127,-33","w":625},"(":{"d":"349,245r-75,0v-35,-43,-43,-57,-76,-136v-46,-109,-68,-211,-68,-322v0,-110,21,-208,68,-321v37,-89,42,-99,76,-132r75,0v-79,94,-136,284,-136,456v0,174,56,361,136,455","w":363},")":{"d":"241,-213v0,111,-20,204,-68,322v-30,73,-40,91,-76,136r-75,0v80,-94,136,-281,136,-455v0,-172,-57,-362,-136,-456r75,0v33,33,39,43,76,132v47,113,68,211,68,321","w":363},"*":{"d":"287,-660r-7,169r-58,0r-6,-169r71,0xm474,-471r-162,46r-19,-56r159,-58xm206,-481r-19,56r-162,-46r22,-68xm410,-274r-57,42r-94,-140r47,-35xm242,-372r-94,140r-58,-42r104,-132","w":500},"+":{"d":"512,-208r-209,0r0,208r-56,0r0,-208r-209,0r0,-57r209,0r0,-209r56,0r0,209r209,0r0,57"},",":{"d":"176,-36v0,17,-3,34,-8,53v-9,30,-19,54,-46,104r-13,24r-44,0v10,-22,13,-30,22,-57v9,-28,11,-36,17,-62r-43,-108v21,-14,35,-18,58,-18v38,0,57,22,57,64","w":252},"-":{"d":"233,-190r-191,0r0,-76r191,0r0,76","w":276},".":{"d":"182,-45v0,32,-25,57,-56,57v-32,0,-57,-25,-57,-57v0,-31,25,-56,57,-56v31,0,56,25,56,56","w":251},"\/":{"d":"364,-660r-252,905r-69,0r252,-905r69,0","w":409},"0":{"d":"476,-334v0,208,-90,349,-221,349v-131,0,-220,-141,-220,-349v0,-207,89,-348,220,-348v131,0,221,141,221,348xm388,-334v0,-164,-53,-272,-134,-272v-78,0,-131,110,-131,272v0,164,53,273,133,273v78,0,132,-110,132,-273","w":500},"1":{"d":"304,0r-82,0r0,-585r-138,0r0,-75r220,0r0,660","w":499},"2":{"d":"445,0r-399,0r0,-39r160,-200v30,-37,58,-76,85,-116v36,-54,48,-86,48,-131v0,-68,-34,-105,-95,-105v-23,0,-45,5,-63,14v-25,13,-34,20,-88,68r-50,-57v15,-13,28,-24,40,-33v55,-44,107,-63,168,-63v105,0,169,67,169,177v0,26,-3,49,-10,69v-13,41,-51,102,-91,152r-151,189r277,0r0,75","w":500},"3":{"d":"409,-206v0,121,-96,215,-220,215v-47,0,-76,-8,-137,-40r32,-70v57,30,82,39,114,39v71,0,124,-57,124,-135v0,-68,-46,-111,-119,-111r-44,0r0,-57v48,-18,66,-30,91,-59v26,-29,40,-64,40,-96v0,-47,-26,-75,-69,-75v-35,0,-54,9,-112,54r-44,-56v44,-34,61,-45,85,-55v25,-10,58,-16,89,-16v84,0,139,55,139,137v0,36,-9,65,-29,97v-18,27,-30,39,-64,63v75,11,124,76,124,165","w":500},"4":{"d":"455,-170r-82,0r0,170r-75,0r0,-170r-271,0r0,-50r296,-440r50,0r0,421r82,0r0,69xm298,-239r0,-258r-176,258r176,0","w":500},"5":{"d":"413,-213v0,131,-85,226,-203,226v-23,0,-46,-3,-68,-9v-35,-9,-52,-17,-92,-42r38,-69v55,35,78,44,115,44v76,0,131,-60,131,-144v0,-73,-31,-117,-94,-137v-37,-12,-60,-14,-132,-14r-7,0r0,-302r289,0r0,75r-208,0r0,158v92,5,127,16,166,50v43,38,65,93,65,164","w":500},"6":{"d":"460,-215v0,132,-81,230,-192,230v-134,0,-210,-112,-210,-308v0,-121,27,-207,86,-278v24,-29,53,-51,85,-67v45,-22,81,-32,167,-28r20,1r0,73r-9,0v-78,0,-110,7,-154,29v-21,11,-40,25,-55,44v-30,36,-40,68,-52,150v63,-22,110,-31,156,-31v97,0,158,72,158,185xm378,-208v0,-76,-36,-121,-98,-121v-35,0,-84,11,-137,30v4,159,46,239,127,239v62,0,108,-64,108,-148","w":500},"7":{"d":"459,-610r-120,308v-20,51,-37,93,-53,127v-25,53,-48,93,-104,188r-69,-44r50,-80v32,-56,81,-161,107,-228r95,-246r-277,0r0,-75r371,0r0,50","w":500},"8":{"d":"450,-164v0,108,-86,183,-211,183v-110,0,-193,-68,-193,-159v0,-46,23,-85,91,-152r55,-54r-68,-63v-32,-30,-52,-73,-52,-117v0,-90,78,-156,182,-156v95,0,158,59,158,146v0,46,-14,79,-54,119r-58,59r70,57v62,50,80,83,80,137xm332,-537v0,-42,-37,-74,-85,-74v-53,0,-89,34,-89,85v0,26,10,48,34,73r52,56r45,-48v25,-27,43,-66,43,-92xm362,-152v0,-34,-12,-56,-50,-89r-70,-62r-58,63v-39,42,-51,66,-51,99v0,51,46,87,112,87v68,0,117,-40,117,-98","w":500},"9":{"d":"452,-358v0,121,-27,208,-86,278v-24,29,-53,52,-84,67v-46,22,-82,28,-168,28r-20,0r0,-74r10,0v78,0,109,-7,153,-29v21,-11,40,-25,55,-44v29,-36,40,-68,52,-150v-63,22,-110,32,-156,32v-97,0,-158,-72,-158,-185v0,-133,82,-230,192,-230v134,0,210,111,210,307xm367,-352v-4,-159,-46,-239,-127,-239v-62,0,-108,64,-108,148v0,76,36,121,98,121v35,0,84,-11,137,-30","w":500},":":{"d":"182,-409v0,32,-25,57,-56,57v-32,0,-57,-25,-57,-57v0,-31,25,-56,57,-56v31,0,56,25,56,56xm182,-45v0,32,-25,57,-56,57v-32,0,-57,-25,-57,-57v0,-31,25,-56,57,-56v31,0,56,25,56,56","w":251},";":{"d":"183,-409v0,32,-25,57,-57,57v-31,0,-56,-25,-56,-57v0,-31,25,-56,56,-56v32,0,57,25,57,56xm176,-36v0,17,-3,34,-8,53v-8,30,-17,55,-46,104r-14,24r-44,0v11,-22,13,-30,22,-57v10,-28,12,-36,18,-62r-43,-108v21,-14,34,-18,58,-18v38,0,57,22,57,64","w":251},"<":{"d":"511,0r-472,-210r0,-54r472,-210r0,63r-396,174r396,174r0,63"},"=":{"d":"525,-273r-500,0r0,-57r500,0r0,57xm525,-134r-500,0r0,-57r500,0r0,57"},">":{"d":"511,-210r-472,210r0,-63r396,-174r-396,-174r0,-63r472,210r0,54"},"?":{"d":"365,-446v0,52,-12,86,-42,116v-28,28,-43,34,-88,34r-51,0r0,107r-75,0r0,-176r151,0v21,-30,27,-47,27,-79v0,-116,-80,-202,-203,-218r25,-76v59,12,80,19,113,38v87,50,143,150,143,254xm203,-45v0,32,-25,57,-56,57v-32,0,-57,-25,-57,-57v0,-31,25,-56,57,-56v31,0,56,25,56,56","w":418},"A":{"d":"587,0r-88,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0xm405,-270r-107,-302r-108,302r215,0","w":595},"B":{"d":"532,-176v0,105,-72,176,-179,176r-244,0r0,-660r214,0v64,0,99,11,132,41v32,30,52,75,52,121v0,71,-43,128,-113,152v88,17,138,79,138,170xm420,-491v0,-32,-10,-59,-27,-76v-17,-18,-38,-24,-89,-24r-113,0r0,214r107,0v47,0,68,-7,90,-29v20,-20,32,-51,32,-85xm445,-182v0,-77,-51,-120,-141,-120r-113,0r0,233r113,0v60,0,83,-6,106,-25v21,-18,35,-53,35,-88","w":591},"C":{"d":"582,-609r-41,62v-50,-35,-98,-50,-162,-50v-140,0,-240,108,-240,259v0,166,101,275,256,275v56,0,99,-9,152,-31r23,64v-40,18,-56,24,-89,32v-33,8,-60,11,-91,11v-199,0,-340,-143,-340,-346v0,-193,143,-339,332,-339v43,0,85,8,124,22v29,11,43,18,76,41","w":605},"D":{"d":"661,-333v0,86,-32,172,-89,237v-60,69,-129,96,-244,96r-219,0r0,-660r220,0v193,0,332,137,332,327xm575,-334v0,-147,-110,-257,-259,-257r-125,0r0,522r125,0v87,0,136,-17,178,-60v48,-51,81,-133,81,-205","w":711},"E":{"d":"489,0r-380,0r0,-660r371,0r0,69r-289,0r0,220r239,0r0,69r-239,0r0,233r298,0r0,69","w":539},"F":{"d":"480,-591r-289,0r0,226r239,0r0,70r-239,0r0,295r-82,0r0,-660r371,0r0,69","w":522},"G":{"d":"616,-25v-21,8,-37,13,-48,16v-45,14,-111,22,-166,22v-199,0,-352,-149,-352,-344v0,-196,148,-340,349,-340v47,0,102,6,137,15v29,8,44,15,80,35r-31,68v-16,-9,-27,-14,-35,-18v-38,-16,-90,-26,-143,-26v-93,0,-153,25,-204,84v-41,48,-65,111,-65,176v0,159,122,276,287,276v33,0,56,-3,109,-14r0,-220r82,0r0,270","w":708},"H":{"d":"662,0r-82,0r0,-302r-389,0r0,302r-82,0r0,-660r82,0r0,283r389,0r0,-283r82,0r0,660","w":771},"I":{"d":"191,0r-82,0r0,-660r82,0r0,660","w":300},"J":{"d":"191,19v-16,56,-25,77,-51,118v-24,38,-39,56,-81,96r-53,-45v46,-51,59,-69,73,-95v19,-38,30,-91,30,-150r0,-603r82,0r0,679","w":300},"K":{"d":"562,0r-101,0r-264,-333r258,-327r94,0r-258,321xm191,0r-82,0r0,-660r82,0r0,660","w":571},"L":{"d":"486,0r-377,0r0,-660r82,0r0,591r295,0r0,69","w":495},"M":{"d":"769,0r-82,0r0,-578v-7,34,-11,45,-25,81r-195,497r-75,0r-182,-484v-14,-37,-18,-47,-26,-88r0,572r-75,0r0,-660r113,0r201,528v10,27,10,31,13,50v4,-26,5,-32,12,-50r208,-528r113,0r0,660","w":878},"N":{"d":"650,6r-95,0r-333,-515v-3,-5,-8,-13,-13,-23v-4,-7,-7,-11,-8,-15v-4,-7,-6,-12,-10,-25r0,572r-82,0r0,-660r107,0r327,503v3,4,6,10,9,16r12,30v1,2,2,6,4,10r0,-559r82,0r0,666","w":759},"O":{"d":"713,-330v0,199,-139,343,-331,343v-192,0,-332,-144,-332,-343v0,-198,140,-342,332,-342v192,0,331,144,331,342xm623,-330v0,-148,-109,-270,-241,-270v-133,0,-242,122,-242,270v0,149,109,271,242,271v132,0,241,-122,241,-271","w":763},"P":{"d":"528,-465v0,138,-90,223,-235,223v-26,0,-44,-2,-102,-8r0,250r-82,0r0,-660r207,0v80,0,124,14,161,52v34,35,51,81,51,143xm443,-460v0,-43,-13,-79,-37,-103v-20,-20,-49,-28,-102,-28r-113,0r0,272v46,5,65,6,88,6v37,0,64,-4,86,-13v48,-20,78,-72,78,-134","w":556},"Q":{"d":"713,-329v0,174,-109,309,-276,341v13,17,18,22,33,38v19,19,37,35,54,48v35,27,57,39,117,65r-46,63v-65,-34,-90,-50,-131,-82v-46,-36,-69,-63,-111,-114r-14,-17v-41,-7,-53,-9,-76,-17v-125,-43,-213,-178,-213,-326v0,-198,139,-342,332,-342v192,0,331,144,331,343xm624,-330v0,-148,-109,-270,-242,-270v-133,0,-243,122,-243,270v0,149,109,271,243,271v133,0,242,-122,242,-271","w":763},"R":{"d":"555,0r-94,0r-182,-283r-88,0r0,283r-82,0r0,-660r201,0v80,0,118,12,156,49v32,31,52,79,52,129v0,52,-21,102,-58,137v-27,27,-51,39,-100,50xm430,-481v0,-42,-12,-72,-36,-91v-20,-16,-37,-19,-96,-19r-107,0r0,239r107,0v87,0,132,-44,132,-129","w":584},"S":{"d":"480,-616r-38,68v-34,-20,-48,-27,-69,-34v-25,-8,-65,-14,-91,-14v-75,0,-126,37,-126,93v0,49,29,74,163,145v45,24,80,46,104,67v32,27,51,72,51,120v0,113,-84,184,-217,184v-45,0,-87,-8,-122,-22v-25,-10,-42,-20,-85,-49r42,-65v37,25,53,34,76,43v29,11,61,17,95,17v78,0,125,-37,125,-100v0,-19,-3,-35,-10,-47v-11,-20,-30,-39,-56,-54r-110,-59v-99,-53,-141,-105,-141,-173v0,-105,87,-175,218,-175v38,0,77,5,111,16v27,9,43,17,80,39","w":534},"T":{"d":"530,-591r-220,0r0,591r-82,0r0,-591r-220,0r0,-69r522,0r0,69","w":539},"U":{"d":"608,-226v0,88,-21,139,-76,184v-49,40,-110,61,-181,61v-71,0,-133,-21,-182,-61v-55,-45,-77,-98,-77,-184r0,-434r82,0r0,409v0,82,6,105,38,140v33,37,81,57,138,57v57,0,105,-20,138,-57v32,-35,38,-58,38,-140r0,-409r82,0r0,434","w":700},"V":{"d":"574,-660r-256,677r-50,0r-260,-677r88,0r195,515v3,9,6,19,7,32v0,-12,2,-21,6,-32r188,-515r82,0","w":583},"W":{"d":"856,-660r-250,673r-51,0r-119,-312r-120,312r-44,0r-264,-673r88,0r202,545r104,-271r-104,-274r75,0r66,173r67,-173r68,0r-101,262r108,282r194,-544r81,0","w":864},"X":{"d":"563,0r-94,0r-182,-269r-184,269r-95,0r231,-337r-220,-323r94,0r175,254r173,-254r93,0r-221,324","w":572},"Y":{"d":"542,-660r-232,352r0,308r-82,0r0,-302r-220,-358r88,0r177,283r182,-283r87,0"},"Z":{"d":"554,0r-512,0r0,-38r382,-553r-382,0r0,-69r494,0r0,44r-382,547r400,0r0,69","w":595},"[":{"d":"237,245r-164,0r0,-905r164,0r0,56r-88,0r0,793r88,0r0,56","w":250},"\\":{"d":"364,245r-69,0r-252,-905r69,0","w":409},"]":{"d":"177,245r-164,0r0,-56r88,0r0,-793r-88,0r0,-56r164,0r0,905","w":250},"_":{"d":"500,57r-500,0r0,-57r500,0r0,57","w":500},"`":{"d":"258,-519r-69,0r-113,-163r88,0","w":383},"a":{"d":"490,0r-75,0r-55,-133r-205,0r-54,133r-76,0r195,-490r75,0xm339,-195r-81,-214r-82,214r163,0","w":516},"b":{"d":"444,-130v0,76,-62,130,-150,130r-202,0r0,-478r176,0v103,0,154,40,154,118v0,55,-34,100,-83,109v64,10,105,57,105,121xm345,-349v0,-48,-24,-66,-89,-66r-88,0r0,138r81,0v47,0,53,-1,71,-15v16,-13,25,-33,25,-57xm364,-138v0,-25,-10,-48,-28,-61v-12,-9,-27,-15,-42,-15r-38,0r-88,0r0,151r88,0v50,0,54,1,74,-11v21,-12,34,-37,34,-64","w":495},"c":{"d":"484,-441r-36,58v-22,-16,-31,-22,-48,-28v-21,-7,-50,-12,-78,-12v-108,0,-183,73,-183,178v0,56,21,106,57,142v36,35,80,50,150,50v45,0,66,-5,106,-25r22,56v-54,22,-96,31,-143,31v-160,0,-272,-103,-272,-250v0,-140,114,-246,265,-246v61,0,108,14,160,46","w":516},"d":{"d":"559,-239v0,61,-27,128,-69,173v-43,45,-104,66,-197,66r-176,0r0,-478r176,0v92,0,154,21,198,66v39,40,68,113,68,173xm479,-240v0,-55,-24,-109,-64,-142v-30,-25,-61,-33,-128,-33r-94,0r0,352r88,0v69,0,102,-9,135,-35v38,-31,63,-88,63,-142","w":609},"e":{"d":"419,0r-302,0r0,-478r296,0r0,63r-220,0r0,138r182,0r0,63r-182,0r0,151r226,0r0,63","w":478},"f":{"d":"413,-415r-220,0r0,145r182,0r0,63r-182,0r0,207r-76,0r0,-478r296,0r0,63","w":463},"g":{"d":"524,-19v-17,5,-30,9,-39,11v-42,10,-101,18,-141,18v-164,0,-285,-107,-285,-250v0,-141,118,-246,278,-246v38,0,83,5,110,11v24,6,38,12,71,29r-32,63v-15,-9,-26,-15,-33,-18v-31,-13,-77,-23,-114,-23v-115,0,-200,77,-200,180v0,109,94,191,217,191v24,0,45,-2,92,-10r0,-151r76,0r0,195","w":624},"h":{"d":"570,0r-75,0r0,-214r-302,0r0,214r-76,0r0,-478r76,0r0,201r302,0r0,-201r75,0r0,478","w":687},"i":{"d":"193,0r-76,0r0,-478r76,0r0,478","w":310},"j":{"d":"174,13v-18,46,-27,64,-46,92v-16,23,-28,38,-61,71r-53,-40v33,-37,43,-49,56,-69v20,-32,28,-69,28,-130r0,-415r76,0r0,491","w":291},"k":{"d":"507,0r-107,0r-201,-239r195,-239r101,0r-202,239xm193,0r-76,0r0,-478r76,0r0,478","w":534},"l":{"d":"419,0r-302,0r0,-478r76,0r0,415r226,0r0,63","w":436},"m":{"d":"645,0r-75,0r0,-381v-6,25,-8,32,-19,56r-147,325r-60,0r-132,-305v-12,-27,-15,-36,-19,-63r0,368r-76,0r0,-478r97,0r155,353v6,15,6,18,9,38v3,-15,4,-19,10,-38r161,-353r96,0r0,478","w":763},"n":{"d":"551,6r-69,0r-270,-345v-16,-21,-22,-31,-25,-44r0,383r-70,0r0,-478r76,0r270,340v8,11,17,29,19,44r0,-384r69,0r0,484","w":668},"o":{"d":"589,-239v0,144,-112,248,-265,248v-154,0,-265,-104,-265,-248v0,-143,111,-248,265,-248v153,0,265,105,265,248xm508,-239v0,-105,-79,-184,-184,-184v-105,0,-185,79,-185,184v0,105,80,185,185,185v105,0,184,-80,184,-185","w":647},"p":{"d":"458,-331v0,89,-68,151,-165,151v-38,0,-83,-5,-100,-10r0,190r-76,0r0,-478r166,0v114,0,175,51,175,147xm382,-334v0,-57,-31,-81,-107,-81r-82,0r0,162v12,3,48,10,92,10v58,0,97,-36,97,-91","w":495},"q":{"d":"589,-239v0,121,-75,211,-203,244v28,34,41,46,72,66v29,20,46,29,93,47r-41,53v-56,-22,-79,-33,-111,-55v-39,-27,-67,-55,-109,-107v-82,-15,-114,-29,-158,-72v-47,-46,-73,-108,-73,-176v0,-143,111,-248,265,-248v153,0,265,105,265,248xm508,-239v0,-105,-79,-184,-184,-184v-105,0,-185,79,-185,184v0,105,80,185,185,185v105,0,184,-80,184,-185","w":647},"r":{"d":"476,0r-88,0r-126,-195r-69,0r0,195r-76,0r0,-478r161,0v115,0,178,48,178,136v0,74,-45,130,-112,141xm374,-339v0,-28,-10,-49,-29,-63v-16,-12,-22,-13,-77,-13r-75,0r0,157r75,0v49,0,59,-2,80,-20v18,-16,26,-35,26,-61","w":513},"s":{"d":"402,-446r-27,63v-25,-17,-36,-22,-60,-29v-25,-8,-46,-10,-67,-10v-61,0,-98,22,-98,59v0,10,2,19,6,25v14,21,30,30,123,75v90,44,119,77,119,136v0,85,-66,136,-174,136v-36,0,-70,-5,-98,-15v-20,-8,-34,-15,-68,-36r34,-65v30,22,43,30,62,38v24,10,52,16,79,16v56,0,89,-24,89,-64v0,-32,-16,-53,-54,-71r-87,-42v-73,-35,-106,-75,-106,-126v0,-79,68,-130,174,-130v31,0,62,4,89,12v22,6,34,12,64,28","w":464},"t":{"d":"432,-415r-170,0r0,415r-75,0r0,-415r-170,0r0,-63r415,0r0,63","w":448},"u":{"d":"513,-195v0,95,-19,143,-70,173v-36,21,-90,36,-136,36v-46,0,-100,-14,-137,-36v-50,-29,-69,-78,-69,-173r0,-283r75,0r0,296v0,87,45,132,131,132v86,0,131,-45,131,-132r0,-296r75,0r0,283","w":614},"v":{"d":"478,-478r-205,490r-40,0r-208,-490r82,0r144,345v3,6,5,13,5,22v1,-9,2,-14,6,-22r134,-345r82,0","w":503},"w":{"d":"704,-478r-201,487r-40,0r-98,-216r-93,216r-36,0r-211,-487r82,0r151,371r75,-176r-82,-195r70,0r50,113r44,-113r69,0r-82,189r82,182r145,-371r75,0","w":729},"x":{"d":"472,0r-89,0r-138,-182r-132,182r-88,0r176,-245r-167,-233r92,0r125,170r126,-170r88,0r-176,233","w":497},"y":{"d":"453,-478r-183,264r0,214r-75,0r0,-214r-170,-264r88,0r126,195r126,-195r88,0","w":478},"z":{"d":"459,0r-409,0r0,-44r289,-371r-289,0r0,-63r396,0r0,44r-289,371r302,0r0,63","w":509},"{":{"d":"386,243r-56,0v-94,0,-132,-38,-132,-132r0,-220v0,-74,-26,-113,-76,-113r-36,0r0,-55r36,0v49,0,76,-39,76,-113r0,-220v0,-94,38,-132,132,-132r56,0r0,63r-44,0v-21,0,-45,12,-56,30v-10,15,-13,33,-13,71r0,201v0,18,0,34,-1,45v-4,39,-29,70,-59,77r-25,6r24,4v17,3,33,15,44,32v14,22,17,38,17,91r0,202v0,37,3,54,13,70v11,17,35,30,56,30r44,0r0,63","w":409},"|":{"d":"162,239r-70,0r0,-968r70,0r0,968","w":250},"}":{"d":"327,-222r-36,0v-49,0,-76,40,-76,113r0,220v0,94,-38,132,-132,132r-56,0r0,-63r44,0v21,0,45,-12,56,-30v10,-15,13,-33,13,-70r0,-202v0,-18,0,-33,1,-45v4,-39,29,-71,59,-77r25,-5r-24,-5v-17,-4,-33,-15,-44,-32v-14,-22,-17,-38,-17,-91r0,-201v0,-38,-3,-55,-13,-71v-11,-17,-35,-30,-56,-30r-44,0r0,-63r56,0v94,0,132,38,132,132r0,220v0,74,26,112,76,113r36,1r0,54","w":409},"~":{"d":"530,-232v-33,24,-47,32,-75,43v-31,11,-62,17,-91,17v-42,0,-68,-7,-131,-37v-31,-15,-49,-20,-71,-20v-40,0,-85,18,-125,49r-29,-42v32,-26,46,-35,78,-48v30,-12,57,-18,81,-18v22,0,49,6,80,20r50,22v30,13,48,18,71,18v21,0,43,-4,64,-11v22,-8,36,-16,65,-37","w":544},"\u00c4":{"d":"440,-758v0,27,-22,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v28,0,50,23,50,51xm255,-758v0,27,-23,50,-51,50v-27,0,-50,-23,-50,-50v0,-28,23,-51,50,-51v28,0,51,23,51,51xm587,0r-88,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0xm405,-270r-107,-302r-108,302r215,0","w":595},"\u00c5":{"d":"379,-788v0,44,-35,79,-79,79v-44,0,-80,-35,-80,-79v0,-44,36,-80,80,-80v44,0,79,36,79,80xm587,0r-88,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0xm341,-788v0,-23,-19,-42,-41,-42v-23,0,-42,19,-42,42v0,23,19,41,42,41v22,0,41,-18,41,-41xm405,-270r-107,-302r-108,302r215,0","w":595},"\u00c7":{"d":"582,-609r-41,62v-50,-35,-98,-50,-162,-50v-140,0,-240,108,-240,259v0,166,101,275,256,275v56,0,99,-9,152,-31r23,64v-35,16,-49,21,-74,28v-36,9,-66,13,-97,13r-4,0r-36,58r9,0v50,0,77,27,77,76v0,56,-40,92,-103,92v-32,0,-59,-6,-107,-23r25,-51v37,16,57,22,76,22v24,0,41,-16,41,-37v0,-30,-19,-41,-67,-41r-31,0r58,-97v-46,-7,-64,-12,-96,-26v-117,-53,-191,-176,-191,-317v0,-193,143,-339,332,-339v43,0,85,8,124,22v29,11,43,18,76,41","w":605},"\u00c9":{"d":"459,-833r-113,118r-70,0r95,-118r88,0xm489,0r-380,0r0,-660r371,0r0,69r-289,0r0,220r239,0r0,69r-239,0r0,233r298,0r0,69","w":539},"\u00d1":{"d":"581,-749v-22,21,-31,27,-56,37v-25,11,-49,16,-70,16v-25,0,-53,-9,-87,-27v-31,-16,-38,-19,-56,-19v-13,0,-25,3,-35,8v-13,6,-16,7,-45,26r-32,-44v33,-21,43,-27,61,-35v20,-10,42,-15,62,-15v4,0,8,0,12,1v22,2,26,4,78,32v22,12,36,17,52,17v27,0,41,-6,85,-37xm650,6r-95,0r-333,-515v-3,-5,-8,-13,-13,-23v-4,-7,-7,-11,-8,-15v-4,-7,-6,-12,-10,-25r0,572r-82,0r0,-660r107,0r327,503v3,4,6,10,9,16r12,30v1,2,2,6,4,10r0,-559r82,0r0,666","w":759},"\u00d6":{"d":"535,-760v0,28,-22,51,-50,51v-28,0,-50,-23,-50,-51v0,-27,22,-50,50,-50v28,0,50,23,50,50xm333,-760v0,28,-23,51,-50,51v-28,0,-51,-23,-51,-51v0,-27,23,-50,51,-50v27,0,50,23,50,50xm713,-330v0,199,-139,343,-331,343v-192,0,-332,-144,-332,-343v0,-198,140,-342,332,-342v192,0,331,144,331,342xm623,-330v0,-144,-110,-266,-241,-266v-131,0,-242,122,-242,266v0,145,111,266,242,266v131,0,241,-122,241,-266","w":763},"\u00dc":{"d":"508,-762v0,28,-22,50,-50,50v-28,0,-50,-22,-50,-50v0,-28,22,-50,50,-50v28,0,50,22,50,50xm306,-762v0,28,-22,50,-50,50v-28,0,-50,-22,-50,-50v0,-28,22,-50,50,-50v28,0,50,22,50,50xm608,-226v0,88,-21,139,-76,184v-49,40,-110,61,-181,61v-71,0,-133,-21,-182,-61v-55,-45,-77,-98,-77,-184r0,-434r82,0r0,409v0,82,6,105,38,140v33,37,81,57,138,57v57,0,105,-20,138,-57v32,-35,38,-58,38,-140r0,-409r82,0r0,434","w":700},"\u00e1":{"d":"388,-682r-113,164r-69,0r94,-164r88,0xm490,0r-75,0r-55,-133r-205,0r-54,133r-76,0r195,-490r75,0xm339,-195r-81,-214r-82,214r163,0","w":516},"\u00e0":{"d":"321,-519r-69,0r-113,-163r88,0xm490,0r-75,0r-55,-133r-205,0r-54,133r-76,0r195,-490r75,0xm339,-195r-81,-214r-82,214r163,0","w":516},"\u00e2":{"d":"411,-519r-70,0r-76,-107r-75,107r-68,0r112,-163r63,0xm490,0r-75,0r-55,-133r-205,0r-54,133r-76,0r195,-490r75,0xm339,-195r-81,-214r-82,214r163,0","w":516},"\u00e4":{"d":"400,-572v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51xm225,-572v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51xm490,0r-75,0r-55,-133r-205,0r-54,133r-76,0r195,-490r75,0xm339,-195r-81,-214r-82,214r163,0","w":516},"\u00e3":{"d":"450,-575v-22,21,-31,27,-56,37v-25,11,-49,16,-70,16v-25,0,-53,-9,-87,-27v-31,-16,-38,-19,-56,-19v-13,0,-25,3,-35,8v-13,6,-16,7,-45,26r-32,-44v33,-21,43,-27,61,-35v20,-10,42,-15,62,-15v4,0,8,0,12,1v22,2,26,4,78,32v22,12,36,17,52,17v27,0,41,-6,85,-37xm490,0r-75,0r-55,-133r-205,0r-54,133r-76,0r195,-490r75,0xm339,-195r-81,-214r-82,214r163,0","w":516},"\u00e5":{"d":"339,-596v0,44,-35,79,-79,79v-44,0,-80,-35,-80,-79v0,-44,36,-80,80,-80v44,0,79,36,79,80xm490,0r-75,0r-55,-133r-205,0r-54,133r-76,0r195,-490r75,0xm301,-596v0,-23,-19,-42,-41,-42v-23,0,-42,19,-42,42v0,23,19,41,42,41v22,0,41,-18,41,-41xm339,-195r-81,-214r-82,214r163,0","w":516},"\u00e7":{"d":"484,-441r-36,58v-22,-16,-31,-22,-48,-28v-21,-7,-50,-12,-78,-12v-108,0,-183,73,-183,178v0,56,21,106,57,142v36,35,80,50,150,50v45,0,66,-5,106,-25r22,56v-31,13,-44,17,-71,23v-31,7,-42,9,-72,9r-32,56v48,0,75,28,75,76v0,53,-40,92,-95,92v-26,0,-42,-4,-99,-23r25,-50v37,16,57,21,77,21v23,0,40,-16,40,-37v0,-29,-19,-41,-67,-41r-31,0r58,-98v-137,-20,-223,-116,-223,-247v0,-140,114,-246,265,-246v61,0,108,14,160,46","w":516},"\u00e9":{"d":"416,-682r-113,164r-69,0r94,-164r88,0xm419,0r-302,0r0,-478r296,0r0,63r-220,0r0,138r182,0r0,63r-182,0r0,151r226,0r0,63","w":478},"\u00e8":{"d":"322,-519r-69,0r-113,-163r88,0xm419,0r-302,0r0,-478r296,0r0,63r-220,0r0,138r182,0r0,63r-182,0r0,151r226,0r0,63","w":478},"\u00ea":{"d":"415,-519r-70,0r-76,-107r-75,107r-68,0r112,-163r63,0xm419,0r-302,0r0,-478r296,0r0,63r-220,0r0,138r182,0r0,63r-182,0r0,151r226,0r0,63","w":478},"\u00eb":{"d":"406,-570v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51xm231,-570v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51xm419,0r-302,0r0,-478r296,0r0,63r-220,0r0,138r182,0r0,63r-182,0r0,151r226,0r0,63","w":478},"\u00ed":{"d":"281,-682r-113,164r-70,0r95,-164r88,0xm193,0r-76,0r0,-478r76,0r0,478","w":310},"\u00ec":{"d":"217,-519r-69,0r-113,-163r88,0xm193,0r-76,0r0,-478r76,0r0,478","w":310},"\u00ee":{"d":"305,-519r-71,0r-75,-107r-75,107r-68,0r112,-163r62,0xm193,0r-76,0r0,-478r76,0r0,478","w":310},"\u00ef":{"d":"283,-572v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51xm133,-572v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51xm193,0r-76,0r0,-478r76,0r0,478","w":310},"\u00f1":{"d":"522,-575v-22,21,-31,27,-56,37v-25,11,-49,16,-70,16v-25,0,-53,-9,-87,-27v-31,-16,-38,-19,-56,-19v-13,0,-25,3,-35,8v-13,6,-16,7,-45,26r-32,-44v33,-21,43,-27,61,-35v20,-10,42,-15,62,-15v4,0,8,0,12,1v22,2,26,4,78,32v22,12,36,17,52,17v27,0,41,-6,85,-37xm551,6r-69,0r-270,-345v-16,-21,-22,-31,-25,-44r0,383r-70,0r0,-478r76,0r270,340v8,11,17,29,19,44r0,-384r69,0r0,484","w":668},"\u00f3":{"d":"460,-682r-113,164r-69,0r94,-164r88,0xm589,-239v0,144,-112,248,-265,248v-154,0,-265,-104,-265,-248v0,-143,111,-248,265,-248v153,0,265,105,265,248xm508,-239v0,-105,-79,-184,-184,-184v-105,0,-185,79,-185,184v0,105,80,185,185,185v105,0,184,-80,184,-185","w":647},"\u00f2":{"d":"369,-519r-69,0r-113,-163r88,0xm589,-239v0,144,-112,248,-265,248v-154,0,-265,-104,-265,-248v0,-143,111,-248,265,-248v153,0,265,105,265,248xm508,-239v0,-105,-79,-184,-184,-184v-105,0,-185,79,-185,184v0,105,80,185,185,185v105,0,184,-80,184,-185","w":647},"\u00f4":{"d":"475,-519r-70,0r-76,-107r-75,107r-68,0r112,-163r63,0xm589,-239v0,144,-112,248,-265,248v-154,0,-265,-104,-265,-248v0,-143,111,-248,265,-248v153,0,265,105,265,248xm508,-239v0,-105,-79,-184,-184,-184v-105,0,-185,79,-185,184v0,105,80,185,185,185v105,0,184,-80,184,-185","w":647},"\u00f6":{"d":"488,-572v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm253,-572v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm589,-239v0,144,-112,248,-265,248v-154,0,-265,-104,-265,-248v0,-143,111,-248,265,-248v153,0,265,105,265,248xm508,-239v0,-105,-79,-184,-184,-184v-105,0,-185,79,-185,184v0,105,80,185,185,185v105,0,184,-80,184,-185","w":647},"\u00f5":{"d":"510,-574v-22,21,-31,27,-56,37v-25,11,-49,16,-70,16v-25,0,-53,-9,-87,-27v-31,-16,-38,-19,-56,-19v-13,0,-25,3,-35,8v-13,6,-16,7,-45,26r-32,-44v33,-21,43,-27,61,-35v20,-10,42,-15,62,-15v4,0,8,0,12,1v22,2,26,4,78,32v22,12,36,17,52,17v27,0,41,-6,85,-37xm589,-239v0,144,-112,248,-265,248v-154,0,-265,-104,-265,-248v0,-143,111,-248,265,-248v153,0,265,105,265,248xm508,-239v0,-105,-79,-184,-184,-184v-105,0,-185,79,-185,184v0,105,80,185,185,185v105,0,184,-80,184,-185","w":647},"\u00fa":{"d":"445,-682r-113,164r-69,0r94,-164r88,0xm513,-195v0,95,-19,143,-70,173v-36,21,-90,36,-136,36v-46,0,-100,-14,-137,-36v-50,-29,-69,-78,-69,-173r0,-283r75,0r0,296v0,87,45,132,131,132v86,0,131,-45,131,-132r0,-296r75,0r0,283","w":614},"\u00f9":{"d":"353,-519r-69,0r-113,-163r88,0xm513,-195v0,95,-19,143,-70,173v-36,21,-90,36,-136,36v-46,0,-100,-14,-137,-36v-50,-29,-69,-78,-69,-173r0,-283r75,0r0,296v0,87,45,132,131,132v86,0,131,-45,131,-132r0,-296r75,0r0,283","w":614},"\u00fb":{"d":"457,-519r-70,0r-76,-107r-75,107r-68,0r112,-163r62,0xm513,-195v0,95,-19,143,-70,173v-36,21,-90,36,-136,36v-46,0,-100,-14,-137,-36v-50,-29,-69,-78,-69,-173r0,-283r75,0r0,296v0,87,45,132,131,132v86,0,131,-45,131,-132r0,-296r75,0r0,283","w":614},"\u00fc":{"d":"445,-571v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm267,-571v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm513,-195v0,95,-19,143,-70,173v-36,21,-90,36,-136,36v-46,0,-100,-14,-137,-36v-50,-29,-69,-78,-69,-173r0,-283r75,0r0,296v0,87,45,132,131,132v86,0,131,-45,131,-132r0,-296r75,0r0,283","w":614},"\u00a2":{"d":"431,-35v-37,23,-53,30,-82,38v-23,6,-54,10,-81,10v-11,0,-15,-1,-27,-2r-16,83r-44,0r17,-92v-5,-2,-8,-3,-10,-4v-44,-18,-54,-24,-77,-46v-45,-43,-68,-102,-68,-173v0,-138,99,-245,228,-245v4,0,10,0,17,1r16,-84r44,0r-16,89v43,11,56,17,90,41r-43,61v-24,-21,-34,-26,-61,-34r-63,333v11,2,15,3,26,3v46,0,74,-10,111,-38xm275,-397v-4,0,-7,-1,-10,-1v-78,0,-140,77,-140,173v0,57,16,100,50,130v9,9,17,14,37,27","w":444},"\u00a3":{"d":"648,-654r-57,38v-17,-38,-29,-46,-72,-46v-33,0,-57,12,-81,36v-25,27,-36,48,-55,123r-88,340r189,0r-25,69r-189,0r-40,148r-15,45v-6,17,-10,28,-11,31v-3,5,-6,12,-11,21v11,-2,19,-2,24,-2v6,0,15,0,26,2v16,2,28,4,36,5v3,1,21,7,54,16v23,7,45,9,67,9v33,0,52,-13,52,-38v0,-6,-1,-15,-3,-24v-1,-6,-3,-15,-5,-27r75,-11v8,37,11,53,11,71v0,62,-46,95,-132,95v-30,0,-57,-4,-80,-9r-69,-16v-22,-5,-45,-8,-70,-8r-8,0v-24,0,-47,3,-68,7v-7,2,-31,8,-71,17v-7,2,-18,4,-32,7r13,-75v42,-5,61,-10,82,-25v33,-23,54,-60,71,-126r29,-113r-126,0r19,-57r126,-12r100,-359v32,-114,41,-132,79,-165v33,-28,82,-45,134,-45v66,0,95,19,121,78","w":576},"\u00b4":{"d":"345,-660r-113,163r-69,0r94,-163r88,0","w":383},"\u00a8":{"d":"341,-572v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51xm166,-572v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51","w":406},"\u2260":{"d":"525,-135r-278,0r-92,145r-50,-30r74,-115r-154,0r0,-57r189,0r51,-83r-240,0r0,-57r276,0r84,-135r50,34r-63,101r152,0r1,57r-189,0r-53,83r242,0r0,57"},"\u00c6":{"d":"744,0r-377,0r0,-195r-195,0r-94,195r-95,0r333,-660r51,0r371,0r0,69r-294,0r0,220r243,0r0,69r-243,0r0,233r300,0r0,69xm367,-270r0,-338r-164,338r164,0","w":794},"\u00d8":{"d":"718,-330v0,201,-139,343,-336,343v-85,0,-125,-6,-201,-68r-11,-9r-99,114r-37,-31r102,-118v-64,-91,-81,-137,-81,-226v0,-204,138,-347,334,-347v76,0,112,6,187,56r6,4r93,-105r37,32r-92,105v64,67,98,153,98,250xm526,-546v-37,-33,-93,-55,-142,-55v-128,0,-239,124,-239,269v0,57,21,123,51,164xm628,-329v0,-67,-27,-140,-68,-184r-332,383v58,50,102,70,159,70v130,0,241,-123,241,-269","w":768},"\u221e":{"d":"514,-29r-42,41r-197,-196r-197,197r-42,-42r197,-197r-197,-197r42,-42r197,197r197,-197r42,42r-197,197"},"\u00b1":{"d":"512,-249r-209,0r0,169r-56,0r0,-169r-209,0r0,-56r209,0r0,-169r56,0r0,169r209,0r0,56xm512,0r-474,0r0,-57r474,0r0,57"},"\u2264":{"d":"511,-101r-472,-159r0,-54r472,-160r0,63r-396,124r396,124r0,62xm511,0r-472,0r0,-57r472,0r0,57"},"\u2265":{"d":"511,-260r-472,159r0,-62r396,-124r-396,-124r0,-63r472,160r0,54xm511,0r-472,0r0,-57r472,0r0,57"},"\u00a5":{"d":"542,-660r-207,314r139,0r0,57r-164,0r0,69r164,0r0,57r-164,0r0,163r-82,0r0,-163r-163,0r0,-57r163,0r0,-69r-163,0r0,-57r138,0r-195,-314r88,0r177,283r182,-283r87,0"},"\u222b":{"d":"254,0r-82,0r0,-585r-138,0r0,-75r220,0r0,660","w":360},"\u00e6":{"d":"627,1r-301,0r0,-135r-162,0r-77,135r-87,0r283,-479r43,0r296,0r0,63r-221,0r0,138r183,0r0,63r-182,0r0,151r225,0r0,64xm321,-200r0,-218r-121,218r121,0","w":686},"\u00f8":{"d":"589,-238v0,142,-112,247,-264,247v-64,0,-110,-12,-150,-40r-66,76r-30,-25r63,-73v-56,-52,-83,-113,-83,-186v0,-143,111,-248,264,-248v63,0,112,14,153,42r53,-62r30,23r-52,64v51,39,82,108,82,182xm430,-391v-32,-21,-69,-32,-107,-32v-104,0,-184,80,-184,184v0,50,19,99,51,130xm508,-238v0,-50,-19,-100,-48,-127r-241,281v49,24,68,30,107,30v102,0,182,-81,182,-184","w":647},"\u00bf":{"d":"350,-454v0,32,-25,57,-57,57v-31,0,-56,-25,-56,-57v0,-31,25,-56,56,-56v32,0,57,25,57,56xm356,164r-25,75v-59,-11,-80,-19,-114,-38v-86,-49,-142,-149,-142,-254v0,-52,12,-86,42,-115v28,-28,43,-34,88,-34r51,0r0,-108r75,0r0,176r-152,0v-21,31,-26,48,-26,80v0,116,80,202,203,218","w":418},"\u00a1":{"d":"189,-453v0,31,-25,56,-56,56v-31,0,-57,-25,-57,-56v0,-32,26,-57,57,-57v31,0,56,25,56,57xm177,238r-88,0r6,-540r75,0","w":264},"\u0192":{"d":"615,-652r-57,37v-21,-36,-36,-45,-72,-45v-32,0,-60,12,-82,34v-23,24,-27,34,-53,125r-14,49r102,0r-14,55r-102,0r-114,431v-25,96,-42,130,-81,164v-33,29,-80,46,-126,46v-64,0,-104,-24,-126,-78r56,-37v18,34,36,46,72,46v31,0,59,-12,82,-36v25,-26,32,-43,54,-123r111,-413r-84,0r14,-55r83,0r18,-68v24,-89,41,-126,81,-163v33,-30,78,-47,126,-47v66,0,90,15,126,78","w":576},"\u2248":{"d":"533,-302v-33,24,-48,32,-76,43v-30,12,-61,18,-91,18v-41,0,-67,-7,-130,-37v-32,-15,-49,-20,-71,-20v-40,0,-85,17,-125,48r-29,-41v32,-27,46,-34,78,-48v29,-12,57,-19,80,-19v23,0,50,8,81,21r50,21v31,13,48,18,71,18v21,0,43,-4,63,-11v23,-8,36,-15,66,-37xm533,-164v-33,24,-48,32,-76,43v-30,12,-61,18,-91,18v-41,0,-67,-8,-130,-37v-32,-15,-49,-20,-71,-20v-40,0,-85,17,-125,48r-29,-42v31,-25,45,-34,78,-48v30,-13,56,-19,79,-19v23,0,50,7,82,21r50,22v30,13,48,18,71,18v21,0,43,-4,63,-11v23,-8,36,-16,66,-37","w":544},"\u00ab":{"d":"505,-38r-226,-188r226,-189r0,82r-132,107r132,107r0,81xm266,-38r-226,-188r226,-189r0,82r-132,107r132,107r0,81","w":560},"\u00bb":{"d":"520,-226r-227,188r0,-81r132,-107r-132,-107r0,-82xm281,-226r-227,188r0,-81r133,-107r-133,-107r0,-82","w":560},"\u00a0":{"w":500},"\u00c0":{"d":"339,-715r-69,0r-114,-118r88,0xm587,0r-88,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0xm405,-270r-107,-302r-108,302r215,0","w":595},"\u00c3":{"d":"497,-758v-22,21,-31,27,-56,37v-25,11,-49,16,-70,16v-25,0,-53,-9,-87,-27v-31,-16,-38,-19,-56,-19v-13,0,-25,3,-35,8v-13,6,-16,7,-45,26r-32,-44v33,-21,43,-27,61,-35v20,-10,42,-15,62,-15v4,0,8,0,12,1v22,2,26,4,78,32v22,12,36,17,52,17v27,0,41,-6,85,-37xm587,0r-88,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0xm405,-270r-107,-302r-108,302r215,0","w":595},"\u00d5":{"d":"574,-745v-22,21,-31,27,-56,37v-25,11,-49,16,-70,16v-25,0,-53,-9,-87,-27v-31,-16,-38,-19,-56,-19v-13,0,-25,3,-35,8v-13,6,-16,7,-45,26r-32,-44v33,-21,43,-27,61,-35v20,-10,42,-15,62,-15v4,0,8,0,12,1v22,2,26,4,78,32v22,12,36,17,52,17v27,0,41,-6,85,-37xm713,-330v0,199,-139,343,-331,343v-192,0,-332,-144,-332,-343v0,-198,140,-342,332,-342v192,0,331,144,331,342xm623,-330v0,-144,-110,-266,-241,-266v-131,0,-242,122,-242,266v0,145,111,266,242,266v131,0,241,-122,241,-266","w":763},"\u0152":{"d":"868,0r-384,0v-47,8,-90,13,-116,13v-178,0,-318,-151,-318,-343v0,-191,140,-343,318,-343v26,0,70,5,116,13r371,0r0,69r-289,0r0,220r239,0r0,69r-239,0r0,233r302,0r0,69xm484,-82r0,-497v-43,-17,-60,-21,-98,-21v-137,0,-246,119,-246,270v0,150,109,270,247,270v38,0,56,-4,97,-22","w":918},"\u0153":{"d":"768,0r-352,0v-45,8,-83,13,-107,13v-140,0,-250,-108,-250,-245v0,-141,116,-256,260,-256v24,0,56,3,97,9r346,0r0,61r-219,0r0,142r181,0r0,62r-181,0r0,152r225,0r0,62xm467,-73r0,-334v-52,-11,-87,-15,-125,-15v-64,0,-102,13,-141,49v-38,35,-62,87,-62,135v0,100,86,187,185,187v49,0,89,-6,143,-22","w":827},"\u2013":{"d":"525,-208r-500,0r0,-57r500,0r0,57"},"\u2014":{"d":"1000,-208r-1000,0r0,-57r1000,0r0,57","w":1000},"\u201c":{"d":"376,-433v-31,15,-38,17,-59,17v-39,0,-58,-21,-58,-64v0,-47,25,-114,66,-180r51,0v-16,24,-19,30,-29,61v-7,21,-10,33,-15,59xm192,-433v-30,15,-38,17,-59,17v-39,0,-58,-21,-58,-64v0,-47,24,-112,66,-180r51,0v-16,24,-19,32,-29,61v-7,21,-10,32,-15,59","w":437},"\u201d":{"d":"361,-608v0,47,-23,112,-66,180r-50,0v16,-24,20,-32,29,-61v7,-21,9,-32,15,-59r-44,-107v29,-15,37,-17,59,-17v38,0,57,21,57,64xm177,-608v0,47,-24,114,-66,180r-50,0v15,-24,18,-30,29,-61v7,-21,10,-33,15,-59r-44,-107v31,-15,38,-17,59,-17v38,0,57,21,57,64","w":437},"\u2018":{"d":"191,-433v-22,14,-35,18,-58,18v-38,0,-58,-21,-58,-64v0,-16,3,-34,8,-52v8,-30,21,-53,47,-104r13,-25r44,0v-10,23,-13,31,-22,57v-9,29,-12,37,-17,63","w":252},"\u2019":{"d":"176,-608v0,16,-3,34,-8,52v-9,31,-20,54,-46,104r-13,25r-44,0v10,-23,13,-30,22,-57v9,-29,11,-37,17,-63r-43,-107v21,-14,35,-18,58,-18v38,0,57,21,57,64","w":252},"\u00f7":{"d":"335,-427v0,32,-26,58,-58,58v-33,0,-59,-26,-59,-58v0,-33,26,-59,59,-59v32,0,58,26,58,59xm525,-208r-500,0r0,-57r500,0r0,57xm335,-48v0,33,-26,59,-58,59v-33,0,-59,-26,-59,-59v0,-32,26,-58,59,-58v32,0,58,26,58,58"},"\u00ff":{"d":"381,-573v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51xm206,-573v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51xm453,-478r-183,264r0,214r-75,0r0,-214r-170,-264r88,0r126,195r126,-195r88,0","w":478},"\u0178":{"d":"420,-758v0,28,-23,51,-51,51v-27,0,-50,-23,-50,-51v0,-27,23,-50,50,-50v28,0,51,23,51,50xm218,-758v0,28,-23,51,-51,51v-28,0,-50,-23,-50,-51v0,-27,22,-50,50,-50v28,0,51,23,51,50xm542,-660r-232,352r0,308r-82,0r0,-302r-220,-358r88,0r177,283r182,-283r87,0"},"\u2044":{"d":"277,-330r-138,220r-90,0r132,-220r96,0","w":333},"\u2039":{"d":"266,-38r-226,-188r226,-189r0,82r-132,107r132,107r0,81","w":321},"\u203a":{"d":"281,-226r-227,188r0,-81r133,-107r-133,-107r0,-82","w":321},"\u201a":{"d":"176,-36v0,17,-3,34,-8,53v-9,30,-19,54,-46,104r-13,24r-44,0v10,-22,13,-30,22,-57v9,-28,11,-36,17,-62r-43,-108v21,-14,35,-18,58,-18v38,0,57,22,57,64","w":252},"\u201e":{"d":"361,-35v0,47,-23,111,-66,179r-50,0v16,-24,20,-31,29,-60v7,-21,9,-33,15,-59r-44,-107v29,-15,37,-18,59,-18v38,0,57,22,57,65xm177,-35v0,47,-24,114,-66,179r-50,0v15,-23,19,-30,29,-60v8,-22,10,-33,15,-59r-44,-107v31,-16,38,-18,59,-18v38,0,57,22,57,65","w":437},"\u2030":{"d":"384,-495v0,97,-78,175,-175,175v-96,0,-175,-78,-175,-175v0,-97,79,-176,175,-176v97,0,175,79,175,176xm744,-692r-572,736r-69,0r572,-736r69,0xm1200,-162v0,96,-79,175,-175,175v-97,0,-175,-79,-175,-175v0,-97,78,-175,175,-175v96,0,175,78,175,175xm816,-162v0,96,-79,175,-175,175v-97,0,-175,-79,-175,-175v0,-97,78,-175,175,-175v96,0,175,78,175,175xm324,-495v0,-63,-51,-115,-115,-115v-63,0,-114,52,-114,115v0,64,51,115,114,115v64,0,115,-51,115,-115xm1140,-162v0,-64,-52,-115,-115,-115v-64,0,-115,51,-115,115v0,63,51,114,115,114v63,0,115,-51,115,-114xm755,-162v0,-64,-51,-115,-114,-115v-64,0,-115,51,-115,115v0,63,51,114,115,114v63,0,114,-51,114,-114","w":1234},"\u00c2":{"d":"446,-696r-70,0r-76,-67r-75,67r-68,0r112,-117r63,0xm587,0r-88,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0xm405,-270r-107,-302r-108,302r215,0","w":595},"\u00ca":{"d":"456,-696r-71,0r-75,-67r-76,67r-67,0r111,-117r63,0xm489,0r-380,0r0,-660r371,0r0,69r-289,0r0,220r239,0r0,69r-239,0r0,233r298,0r0,69","w":539},"\u00c1":{"d":"450,-833r-113,118r-70,0r95,-118r88,0xm587,0r-88,0r-68,-195r-267,0r-68,195r-88,0r246,-679r88,0xm405,-270r-107,-302r-108,302r215,0","w":595},"\u00cb":{"d":"451,-761v0,28,-22,51,-50,51v-28,0,-50,-23,-50,-51v0,-28,22,-50,50,-50v28,0,50,22,50,50xm266,-761v0,28,-23,51,-50,51v-28,0,-51,-23,-51,-51v0,-28,23,-50,51,-50v27,0,50,22,50,50xm489,0r-380,0r0,-660r371,0r0,69r-289,0r0,220r239,0r0,69r-239,0r0,233r298,0r0,69","w":539},"\u00c8":{"d":"362,-715r-69,0r-113,-118r88,0xm489,0r-380,0r0,-660r371,0r0,69r-289,0r0,220r239,0r0,69r-239,0r0,233r298,0r0,69","w":539},"\u00cd":{"d":"278,-833r-113,118r-69,0r94,-118r88,0xm191,0r-82,0r0,-660r82,0r0,660","w":300},"\u00ce":{"d":"300,-696r-70,0r-76,-67r-75,67r-68,0r112,-117r63,0xm191,0r-82,0r0,-660r82,0r0,660","w":300},"\u00cf":{"d":"279,-758v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm127,-758v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm191,0r-82,0r0,-660r82,0r0,660","w":300},"\u00cc":{"d":"210,-715r-69,0r-113,-118r88,0xm191,0r-82,0r0,-660r82,0r0,660","w":300},"\u00d3":{"d":"526,-833r-113,118r-69,0r94,-118r88,0xm713,-330v0,199,-139,343,-331,343v-192,0,-332,-144,-332,-343v0,-198,140,-342,332,-342v192,0,331,144,331,342xm623,-330v0,-144,-110,-266,-241,-266v-131,0,-242,122,-242,266v0,145,111,266,242,266v131,0,241,-122,241,-266","w":763},"\u00d4":{"d":"527,-696r-71,0r-75,-67r-76,67r-68,0r112,-117r63,0xm713,-330v0,199,-139,343,-331,343v-192,0,-332,-144,-332,-343v0,-198,140,-342,332,-342v192,0,331,144,331,342xm623,-330v0,-144,-110,-266,-241,-266v-131,0,-242,122,-242,266v0,145,111,266,242,266v131,0,241,-122,241,-266","w":763},"\u00d2":{"d":"410,-715r-69,0r-113,-118r88,0xm713,-330v0,199,-139,343,-331,343v-192,0,-332,-144,-332,-343v0,-198,140,-342,332,-342v192,0,331,144,331,342xm623,-330v0,-144,-110,-266,-241,-266v-131,0,-242,122,-242,266v0,145,111,266,242,266v131,0,241,-122,241,-266","w":763},"\u00da":{"d":"492,-833r-113,118r-69,0r94,-118r88,0xm608,-226v0,88,-21,139,-76,184v-49,40,-110,61,-181,61v-71,0,-133,-21,-182,-61v-55,-45,-77,-98,-77,-184r0,-434r82,0r0,409v0,82,6,105,38,140v33,37,81,57,138,57v57,0,105,-20,138,-57v32,-35,38,-58,38,-140r0,-409r82,0r0,434","w":700},"\u00db":{"d":"503,-696r-71,0r-75,-67r-76,67r-68,0r112,-117r63,0xm608,-226v0,88,-21,139,-76,184v-49,40,-110,61,-181,61v-71,0,-133,-21,-182,-61v-55,-45,-77,-98,-77,-184r0,-434r82,0r0,409v0,82,6,105,38,140v33,37,81,57,138,57v57,0,105,-20,138,-57v32,-35,38,-58,38,-140r0,-409r82,0r0,434","w":700},"\u00d9":{"d":"418,-715r-69,0r-114,-118r88,0xm608,-226v0,88,-21,139,-76,184v-49,40,-110,61,-181,61v-71,0,-133,-21,-182,-61v-55,-45,-77,-98,-77,-184r0,-434r82,0r0,409v0,82,6,105,38,140v33,37,81,57,138,57v57,0,105,-20,138,-57v32,-35,38,-58,38,-140r0,-409r82,0r0,434","w":700},"\u02c6":{"d":"352,-497r-71,0r-75,-107r-76,107r-67,0r111,-163r63,0","w":338},"\u02dc":{"d":"406,-575v-22,21,-31,27,-56,37v-25,11,-49,16,-70,16v-25,0,-53,-9,-87,-27v-31,-16,-38,-19,-56,-19v-13,0,-25,3,-35,8v-13,6,-16,7,-45,26r-32,-44v33,-21,43,-27,61,-35v20,-10,42,-15,62,-15v4,0,8,0,12,1v22,2,26,4,78,32v22,12,36,17,52,17v27,0,41,-6,85,-37","w":454},"\u00af":{"d":"341,-539r-273,0r0,-63r273,0r0,63","w":406},"\u02d8":{"d":"336,-660v-13,61,-23,84,-49,116v-27,33,-70,54,-111,54v-41,0,-82,-21,-111,-54v-25,-30,-36,-54,-49,-116r63,0v17,71,49,107,97,107v48,0,80,-36,97,-107r63,0","w":352},"\u02d9":{"d":"169,-572v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51","w":234},"\u02da":{"d":"201,-574v0,44,-35,79,-79,79v-44,0,-80,-35,-80,-79v0,-44,36,-80,80,-80v44,0,79,36,79,80xm163,-574v0,-23,-19,-42,-41,-42v-23,0,-42,19,-42,42v0,23,19,41,42,41v22,0,41,-18,41,-41","w":243},"\u00b8":{"d":"334,145v0,53,-40,91,-95,91v-26,0,-42,-3,-99,-22r25,-51v37,16,57,22,77,22v23,0,40,-16,40,-37v0,-30,-19,-41,-66,-41r-32,0r57,-94r50,0r-31,56v47,0,74,27,74,76","w":444},"\u02dd":{"d":"365,-660r-113,163r-69,0r94,-163r88,0xm228,-660r-113,163r-70,0r95,-163r88,0","w":383},"\u02db":{"d":"171,177v-16,11,-27,15,-45,15v-29,0,-44,-17,-44,-50v0,-34,12,-65,42,-122r10,-19r34,0v-7,18,-10,24,-17,44v-7,22,-9,28,-13,49","w":252},"\u02c7":{"d":"312,-652r-112,164r-63,0r-114,-164r70,0r76,107r75,-107r68,0","w":338}}});
;/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Calibri is either a registered trademark or a trademark of Microsoft
 * Corporation in the United States and/or other countries.
 * 
 * Description:
 * Calibri is a modern sans serif family with subtle roundings on stems and
 * corners. It features real italics, small caps, and multiple numeral sets. Its
 * proportions allow high impact in tightly set lines of big and small text alike.
 * Calibri's many curves and the new rasteriser team up in bigger sizes to reveal a
 * warm and soft character.
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Designer:
 * Luc(as) de Groot
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography/ctfonts
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/default.aspx
 */
Cufon.registerFont({"w":1038,"face":{"font-family":"calibri","font-weight":400,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 15 5 2 2 2 4 3 2 4","ascent":"1536","descent":"-512","x-height":"19","cap-height":"6","bbox":"-50.7664 -1689 1760 365","underline-thickness":"134","underline-position":"-165","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":463},"\u00a0":{"w":463},"A":{"d":"1141,-61v5,15,9,26,9,35v0,9,-3,16,-8,21v-5,5,-14,8,-26,9v-12,1,-29,2,-50,2v-21,0,-38,-1,-50,-2v-12,-1,-22,-2,-28,-4v-6,-2,-11,-6,-14,-10v-3,-4,-5,-9,-8,-15r-111,-315r-538,0r-106,311v-2,6,-5,11,-8,15v-3,4,-9,9,-15,12v-6,3,-14,5,-26,6v-12,1,-27,2,-46,2v-19,0,-36,0,-48,-2v-12,-2,-21,-5,-26,-10v-5,-5,-6,-11,-6,-20v0,-9,3,-21,8,-36r434,-1202v3,-7,6,-13,10,-18v4,-5,12,-8,20,-11v8,-3,19,-4,32,-5v13,-1,29,-2,49,-2v21,0,39,1,53,2v14,1,25,2,34,5v9,3,15,6,20,11v5,5,8,12,11,19xm584,-1122r-1,0r-223,645r450,0","w":1185,"k":{"-":15,"\u201d":78,"\u201c":181,"\u2019":78,"\u2018":181,".":-12,",":-15,"?":68,"y":41,"v":38,"t":52,"Y":150,"W":80,"V":89,"\u00dc":32,"\u00da":32,"\u00d9":32,"U":32,"T":160,"Q":23,"\u00d6":23,"\u00d3":23,"\u00d2":23,"O":23,"J":-23,"G":15,"C":15}},"\u00c0":{"d":"643,-1438v6,7,9,14,11,19v2,5,1,9,-2,13v-3,4,-9,6,-18,8v-9,2,-22,3,-37,3v-14,0,-26,0,-35,-1v-9,-1,-18,-4,-25,-6v-7,-2,-13,-4,-19,-8v-6,-4,-12,-9,-19,-16r-226,-212v-7,-7,-11,-13,-13,-19v-2,-6,-1,-11,4,-16v5,-5,12,-8,24,-11v12,-3,28,-5,48,-5v17,0,30,0,42,1v12,1,22,3,31,6v9,3,17,6,24,11v7,5,15,11,22,20xm1141,-61v5,15,9,26,9,35v0,9,-3,16,-8,21v-5,5,-14,8,-26,9v-12,1,-29,2,-50,2v-21,0,-38,-1,-50,-2v-12,-1,-22,-2,-28,-4v-6,-2,-11,-6,-14,-10v-3,-4,-5,-9,-8,-15r-111,-315r-538,0r-106,311v-2,6,-5,11,-8,15v-3,4,-9,9,-15,12v-6,3,-14,5,-26,6v-12,1,-27,2,-46,2v-19,0,-36,0,-48,-2v-12,-2,-21,-5,-26,-10v-5,-5,-6,-11,-6,-20v0,-9,3,-21,8,-36r434,-1202v3,-7,6,-13,10,-18v4,-5,12,-8,20,-11v8,-3,19,-4,32,-5v13,-1,29,-2,49,-2v21,0,39,1,53,2v14,1,25,2,34,5v9,3,15,6,20,11v5,5,8,12,11,19xm584,-1122r-1,0r-223,645r450,0","w":1185,"k":{"-":15,"\u201d":78,"\u201c":181,"\u2019":78,"\u2018":181,".":-12,",":-15,"?":68,"y":41,"v":38,"t":52,"Y":150,"W":80,"V":89,"\u00dc":32,"\u00da":32,"\u00d9":32,"U":32,"T":160,"Q":23,"\u00d6":23,"\u00d3":23,"\u00d2":23,"O":23,"J":-23,"G":15,"C":15}},"\u00c1":{"d":"704,-1651v7,-9,15,-15,22,-20v7,-5,14,-8,23,-11v9,-3,19,-5,31,-6v12,-1,26,-1,43,-1v20,0,36,2,47,5v11,3,19,6,24,11v5,5,6,10,4,16v-2,6,-5,12,-11,19r-227,212v-7,7,-12,12,-18,16v-6,4,-13,6,-20,8v-7,2,-16,5,-26,6v-10,1,-21,1,-35,1v-15,0,-27,-1,-36,-3v-9,-2,-15,-4,-18,-8v-3,-4,-4,-8,-3,-13v1,-5,5,-12,11,-19xm1141,-61v5,15,9,26,9,35v0,9,-3,16,-8,21v-5,5,-14,8,-26,9v-12,1,-29,2,-50,2v-21,0,-38,-1,-50,-2v-12,-1,-22,-2,-28,-4v-6,-2,-11,-6,-14,-10v-3,-4,-5,-9,-8,-15r-111,-315r-538,0r-106,311v-2,6,-5,11,-8,15v-3,4,-9,9,-15,12v-6,3,-14,5,-26,6v-12,1,-27,2,-46,2v-19,0,-36,0,-48,-2v-12,-2,-21,-5,-26,-10v-5,-5,-6,-11,-6,-20v0,-9,3,-21,8,-36r434,-1202v3,-7,6,-13,10,-18v4,-5,12,-8,20,-11v8,-3,19,-4,32,-5v13,-1,29,-2,49,-2v21,0,39,1,53,2v14,1,25,2,34,5v9,3,15,6,20,11v5,5,8,12,11,19xm584,-1122r-1,0r-223,645r450,0","w":1185,"k":{"-":15,"\u201d":78,"\u201c":181,"\u2019":78,"\u2018":181,".":-12,",":-15,"?":68,"y":41,"v":38,"t":52,"Y":150,"W":80,"V":89,"\u00dc":32,"\u00da":32,"\u00d9":32,"U":32,"T":160,"Q":23,"\u00d6":23,"\u00d3":23,"\u00d2":23,"O":23,"J":-23,"G":15,"C":15}},"\u00c4":{"d":"488,-1529v0,37,-7,63,-21,77v-14,14,-40,21,-77,21v-37,0,-63,-7,-76,-21v-13,-14,-20,-38,-20,-75v0,-37,6,-63,20,-77v14,-14,40,-20,77,-20v37,0,63,7,77,20v14,13,20,38,20,75xm901,-1529v0,37,-7,63,-21,77v-14,14,-39,21,-77,21v-37,0,-61,-7,-75,-21v-14,-14,-21,-38,-21,-75v0,-37,7,-63,21,-77v14,-14,39,-20,76,-20v38,0,64,7,77,20v13,13,20,38,20,75xm1141,-61v5,15,9,26,9,35v0,9,-3,16,-8,21v-5,5,-14,8,-26,9v-12,1,-29,2,-50,2v-21,0,-38,-1,-50,-2v-12,-1,-22,-2,-28,-4v-6,-2,-11,-6,-14,-10v-3,-4,-5,-9,-8,-15r-111,-315r-538,0r-106,311v-2,6,-5,11,-8,15v-3,4,-9,9,-15,12v-6,3,-14,5,-26,6v-12,1,-27,2,-46,2v-19,0,-36,0,-48,-2v-12,-2,-21,-5,-26,-10v-5,-5,-6,-11,-6,-20v0,-9,3,-21,8,-36r434,-1202v3,-7,6,-13,10,-18v4,-5,12,-8,20,-11v8,-3,19,-4,32,-5v13,-1,29,-2,49,-2v21,0,39,1,53,2v14,1,25,2,34,5v9,3,15,6,20,11v5,5,8,12,11,19xm584,-1122r-1,0r-223,645r450,0","w":1185,"k":{"-":15,"\u201d":78,"\u201c":181,"\u2019":78,"\u2018":181,".":-12,",":-15,"?":68,"y":41,"v":38,"t":52,"Y":150,"W":80,"V":89,"\u00dc":32,"\u00da":32,"\u00d9":32,"U":32,"T":160,"Q":23,"\u00d6":23,"\u00d3":23,"\u00d2":23,"O":23,"J":-23,"G":15,"C":15}},"B":{"d":"1025,-371v0,41,-5,79,-15,113v-10,34,-25,65,-44,92v-19,27,-42,51,-68,72v-26,21,-55,38,-88,52v-33,14,-68,25,-106,32v-38,7,-81,10,-130,10r-338,0v-15,0,-30,-6,-44,-16v-14,-10,-20,-28,-20,-54r0,-1154v0,-26,6,-44,20,-54v14,-10,29,-16,44,-16r294,0v77,0,141,7,190,22v49,15,91,36,124,64v33,28,57,62,74,103v17,41,25,87,25,138v0,31,-4,60,-11,88v-7,28,-18,53,-32,77v-14,24,-32,45,-54,64v-22,19,-47,34,-75,46v35,7,68,18,99,36v31,18,57,41,80,68v23,27,42,59,55,96v13,37,20,77,20,121xm766,-950v0,-31,-4,-60,-13,-85v-9,-25,-22,-47,-41,-65v-19,-18,-43,-31,-73,-40v-30,-9,-70,-14,-119,-14r-178,0r0,419r196,0v45,0,81,-5,108,-17v27,-12,50,-28,68,-48v18,-20,32,-42,40,-68v8,-26,12,-54,12,-82xm844,-361v0,-39,-6,-73,-18,-102v-12,-29,-30,-54,-54,-74v-24,-20,-54,-35,-90,-45v-36,-10,-80,-16,-134,-16r-206,0r0,456r250,0v39,0,74,-5,103,-14v29,-9,55,-24,77,-42v22,-18,40,-41,53,-68v13,-27,19,-59,19,-95","w":1114,"k":{"\u201c":28,"\u2018":28,",":28,"y":20,"x":15,"v":20,"t":20,"f":20,"Z":20,"Y":57,"X":44,"W":24,"V":25,"T":48,"\u00c4":20,"\u00c1":20,"\u00c0":20,"A":20}},"C":{"d":"1036,-183v0,11,0,20,-1,28v-1,8,-1,15,-3,21v-2,6,-4,11,-7,16v-3,5,-7,10,-14,17v-7,7,-21,17,-42,31v-21,14,-47,27,-79,40v-32,13,-69,23,-110,32v-41,9,-85,14,-134,14v-84,0,-160,-14,-228,-42v-68,-28,-124,-69,-172,-124v-48,-55,-84,-122,-110,-202v-26,-80,-39,-173,-39,-278v0,-107,13,-203,41,-287v28,-84,67,-155,117,-213v50,-58,109,-103,179,-134v70,-31,147,-46,232,-46v37,0,74,3,109,10v35,7,68,16,98,27v30,11,57,23,80,37v23,14,40,25,49,34v9,9,14,16,17,21v3,5,5,11,7,17v2,6,3,13,4,22v1,9,1,19,1,31v0,13,-1,25,-2,34v-1,9,-3,17,-6,23v-3,6,-5,11,-9,14v-4,3,-9,5,-14,5v-9,0,-22,-6,-39,-19v-17,-13,-39,-28,-65,-44v-26,-16,-58,-29,-96,-42v-38,-13,-82,-20,-135,-20v-57,0,-110,11,-157,34v-47,23,-87,57,-120,102v-33,45,-60,100,-78,164v-18,64,-27,137,-27,220v0,82,9,155,27,218v18,63,43,116,76,158v33,42,73,74,121,96v48,22,102,32,163,32v51,0,96,-6,134,-19v38,-13,71,-27,98,-43v27,-16,50,-29,67,-42v17,-13,31,-19,41,-19v5,0,9,1,12,3v3,2,6,6,8,12v2,6,3,13,4,23v1,10,2,23,2,38","w":1092,"k":{"\u201d":-89,"\u201c":-12,"\u2019":-89,"\u2018":-12,",":9,"T":-10,"Q":18,"\u00d6":18,"\u00d3":18,"\u00d2":18,"O":18,"J":-12,"G":18}},"D":{"d":"1167,-666v0,112,-14,210,-43,294v-29,84,-71,153,-126,208v-55,55,-122,96,-202,123v-80,27,-175,41,-286,41r-274,0v-15,0,-30,-6,-44,-16v-14,-10,-20,-28,-20,-54r0,-1154v0,-26,6,-44,20,-54v14,-10,29,-16,44,-16r293,0v112,0,207,15,284,44v77,29,143,70,195,124v52,54,91,121,118,198v27,77,41,165,41,262xm986,-659v0,-70,-9,-135,-26,-195v-17,-60,-45,-113,-82,-157v-37,-44,-83,-78,-140,-103v-57,-25,-130,-37,-219,-37r-175,0r0,1007r177,0v83,0,152,-10,209,-31v57,-21,104,-52,142,-95v38,-43,67,-96,86,-160v19,-64,28,-141,28,-229","w":1260,"k":{"\u201d":-3,"\u201c":17,"\u2019":-3,"\u2018":17,".":48,",":55,"Z":22,"Y":39,"X":31,"W":14,"V":24,"T":23,"J":22,"\u00c4":30,"\u00c1":30,"\u00c0":30,"A":30}},"E":{"d":"892,-71v0,12,-1,22,-2,31v-1,9,-4,17,-7,23v-3,6,-7,10,-11,13v-4,3,-10,4,-15,4r-621,0v-15,0,-30,-6,-44,-16v-14,-10,-20,-28,-20,-54r0,-1154v0,-26,6,-44,20,-54v14,-10,29,-16,44,-16r614,0v5,0,10,1,14,4v4,3,8,7,11,13v3,6,5,14,7,23v2,9,2,20,2,33v0,12,0,22,-2,31v-2,9,-4,16,-7,22v-3,6,-7,10,-11,13v-4,3,-9,4,-14,4r-506,0r0,406r434,0v5,0,10,2,14,5v4,3,9,7,12,12v3,5,5,13,6,22v1,9,2,20,2,33v0,12,-1,22,-2,31v-1,9,-3,16,-6,21v-3,5,-8,9,-12,11v-4,2,-9,4,-14,4r-434,0r0,463r513,0v5,0,11,1,15,4v4,3,8,7,11,13v3,6,6,13,7,22v1,9,2,20,2,33","w":1000,"k":{"-":27,"y":48,"w":34,"v":48,"t":24,"q":30,"\u00f6":37,"\u00f3":37,"\u00f2":37,"o":37,"f":64,"\u00e9":37,"\u00e8":37,"e":37,"d":30,"\u00e7":28,"c":28,"\u00e4":34,"\u00e1":34,"\u00e0":34,"a":34,"Z":10,"S":20,"Q":32,"\u00d6":32,"\u00d3":32,"\u00d2":32,"O":32,"G":24,"C":24,"\u00c4":22,"\u00c1":22,"\u00c0":22,"A":22}},"\u00c8":{"d":"585,-1438v6,7,9,14,11,19v2,5,1,9,-2,13v-3,4,-9,6,-18,8v-9,2,-22,3,-37,3v-14,0,-26,0,-35,-1v-9,-1,-18,-4,-25,-6v-7,-2,-13,-4,-19,-8v-6,-4,-12,-9,-19,-16r-226,-212v-7,-7,-11,-13,-13,-19v-2,-6,-1,-11,4,-16v5,-5,12,-8,24,-11v12,-3,28,-5,48,-5v17,0,30,0,42,1v12,1,22,3,31,6v9,3,17,6,24,11v7,5,15,11,22,20xm892,-71v0,12,-1,22,-2,31v-1,9,-4,17,-7,23v-3,6,-7,10,-11,13v-4,3,-10,4,-15,4r-621,0v-15,0,-30,-6,-44,-16v-14,-10,-20,-28,-20,-54r0,-1154v0,-26,6,-44,20,-54v14,-10,29,-16,44,-16r614,0v5,0,10,1,14,4v4,3,8,7,11,13v3,6,5,14,7,23v2,9,2,20,2,33v0,12,0,22,-2,31v-2,9,-4,16,-7,22v-3,6,-7,10,-11,13v-4,3,-9,4,-14,4r-506,0r0,406r434,0v5,0,10,2,14,5v4,3,9,7,12,12v3,5,5,13,6,22v1,9,2,20,2,33v0,12,-1,22,-2,31v-1,9,-3,16,-6,21v-3,5,-8,9,-12,11v-4,2,-9,4,-14,4r-434,0r0,463r513,0v5,0,11,1,15,4v4,3,8,7,11,13v3,6,6,13,7,22v1,9,2,20,2,33","w":1000,"k":{"-":27,"y":48,"w":34,"v":48,"t":24,"q":30,"\u00f6":37,"\u00f3":37,"\u00f2":37,"o":37,"f":64,"\u00e9":37,"\u00e8":37,"e":37,"d":30,"\u00e7":28,"c":28,"\u00e4":34,"\u00e1":34,"\u00e0":34,"a":34,"Z":10,"S":20,"Q":32,"\u00d6":32,"\u00d3":32,"\u00d2":32,"O":32,"G":24,"C":24,"\u00c4":22,"\u00c1":22,"\u00c0":22,"A":22}},"\u00c9":{"d":"654,-1651v7,-9,15,-15,22,-20v7,-5,14,-8,23,-11v9,-3,19,-5,31,-6v12,-1,26,-1,43,-1v20,0,36,2,47,5v11,3,19,6,24,11v5,5,6,10,4,16v-2,6,-5,12,-11,19r-227,212v-7,7,-12,12,-18,16v-6,4,-13,6,-20,8v-7,2,-16,5,-26,6v-10,1,-21,1,-35,1v-15,0,-27,-1,-36,-3v-9,-2,-15,-4,-18,-8v-3,-4,-4,-8,-3,-13v1,-5,5,-12,11,-19xm892,-71v0,12,-1,22,-2,31v-1,9,-4,17,-7,23v-3,6,-7,10,-11,13v-4,3,-10,4,-15,4r-621,0v-15,0,-30,-6,-44,-16v-14,-10,-20,-28,-20,-54r0,-1154v0,-26,6,-44,20,-54v14,-10,29,-16,44,-16r614,0v5,0,10,1,14,4v4,3,8,7,11,13v3,6,5,14,7,23v2,9,2,20,2,33v0,12,0,22,-2,31v-2,9,-4,16,-7,22v-3,6,-7,10,-11,13v-4,3,-9,4,-14,4r-506,0r0,406r434,0v5,0,10,2,14,5v4,3,9,7,12,12v3,5,5,13,6,22v1,9,2,20,2,33v0,12,-1,22,-2,31v-1,9,-3,16,-6,21v-3,5,-8,9,-12,11v-4,2,-9,4,-14,4r-434,0r0,463r513,0v5,0,11,1,15,4v4,3,8,7,11,13v3,6,6,13,7,22v1,9,2,20,2,33","w":1000,"k":{"-":27,"y":48,"w":34,"v":48,"t":24,"q":30,"\u00f6":37,"\u00f3":37,"\u00f2":37,"o":37,"f":64,"\u00e9":37,"\u00e8":37,"e":37,"d":30,"\u00e7":28,"c":28,"\u00e4":34,"\u00e1":34,"\u00e0":34,"a":34,"Z":10,"S":20,"Q":32,"\u00d6":32,"\u00d3":32,"\u00d2":32,"O":32,"G":24,"C":24,"\u00c4":22,"\u00c1":22,"\u00c0":22,"A":22}},"\u00cb":{"d":"425,-1529v0,37,-7,63,-21,77v-14,14,-40,21,-77,21v-37,0,-63,-7,-76,-21v-13,-14,-20,-38,-20,-75v0,-37,7,-63,21,-77v14,-14,39,-20,76,-20v37,0,62,7,76,20v14,13,21,38,21,75xm838,-1529v0,37,-6,63,-20,77v-14,14,-40,21,-78,21v-37,0,-62,-7,-76,-21v-14,-14,-20,-38,-20,-75v0,-37,7,-63,21,-77v14,-14,39,-20,76,-20v38,0,64,7,77,20v13,13,20,38,20,75xm892,-71v0,12,-1,22,-2,31v-1,9,-4,17,-7,23v-3,6,-7,10,-11,13v-4,3,-10,4,-15,4r-621,0v-15,0,-30,-6,-44,-16v-14,-10,-20,-28,-20,-54r0,-1154v0,-26,6,-44,20,-54v14,-10,29,-16,44,-16r614,0v5,0,10,1,14,4v4,3,8,7,11,13v3,6,5,14,7,23v2,9,2,20,2,33v0,12,0,22,-2,31v-2,9,-4,16,-7,22v-3,6,-7,10,-11,13v-4,3,-9,4,-14,4r-506,0r0,406r434,0v5,0,10,2,14,5v4,3,9,7,12,12v3,5,5,13,6,22v1,9,2,20,2,33v0,12,-1,22,-2,31v-1,9,-3,16,-6,21v-3,5,-8,9,-12,11v-4,2,-9,4,-14,4r-434,0r0,463r513,0v5,0,11,1,15,4v4,3,8,7,11,13v3,6,6,13,7,22v1,9,2,20,2,33","w":1000,"k":{"-":27,"y":48,"w":34,"v":48,"t":24,"q":30,"\u00f6":37,"\u00f3":37,"\u00f2":37,"o":37,"f":64,"\u00e9":37,"\u00e8":37,"e":37,"d":30,"\u00e7":28,"c":28,"\u00e4":34,"\u00e1":34,"\u00e0":34,"a":34,"Z":10,"S":20,"Q":32,"\u00d6":32,"\u00d3":32,"\u00d2":32,"O":32,"G":24,"C":24,"\u00c4":22,"\u00c1":22,"\u00c0":22,"A":22}},"F":{"d":"852,-1220v0,13,-1,24,-2,33v-1,9,-4,17,-7,23v-3,6,-7,9,-11,12v-4,3,-9,4,-14,4r-474,0r0,440r448,0v5,0,10,2,14,4v4,2,8,6,11,11v3,5,6,12,7,21v1,9,2,21,2,35v0,13,-1,24,-2,33v-1,9,-4,16,-7,22v-3,6,-7,9,-11,12v-4,3,-9,5,-14,5r-448,0r0,539v0,5,-1,10,-4,14v-3,4,-7,8,-14,10v-7,2,-15,4,-26,6v-11,2,-25,2,-42,2v-16,0,-30,0,-41,-2v-11,-2,-20,-4,-27,-6v-7,-2,-11,-6,-14,-10v-3,-4,-4,-9,-4,-14r0,-1198v0,-26,6,-44,20,-54v14,-10,29,-16,44,-16r582,0v5,0,10,1,14,4v4,3,8,7,11,13v3,6,6,13,7,23v1,10,2,21,2,34","w":941,"k":{"\/":65,"\u201d":-3,"\u2019":-3,".":193,",":204,"s":35,"q":20,"\u00f6":28,"\u00f3":28,"\u00f2":28,"o":28,"\u00ef":-25,"\u00e9":30,"\u00e8":30,"e":30,"d":20,"\u00e7":28,"c":28,"\u00e4":55,"\u00e1":55,"\u00e0":55,"a":55,"Z":11,"X":22,"S":29,"Q":18,"\u00d6":18,"\u00d3":18,"\u00d2":18,"O":18,"J":109,"G":18,"C":18,"\u00c4":115,"\u00c1":115,"\u00c0":115,"A":115}},"G":{"d":"1144,-1118v0,13,-1,24,-2,34v-1,10,-3,18,-6,24v-3,6,-6,10,-10,13v-4,3,-8,4,-13,4v-8,0,-21,-6,-40,-19v-19,-13,-44,-27,-75,-42v-31,-15,-68,-29,-112,-42v-44,-13,-96,-19,-156,-19v-71,0,-135,13,-192,39v-57,26,-105,62,-144,108v-39,46,-69,101,-90,164v-21,63,-32,132,-32,206v0,83,11,156,34,220v23,64,55,118,96,162v41,44,90,77,146,100v56,23,118,34,185,34v40,0,80,-4,121,-14v41,-10,80,-25,115,-44r0,-377r-300,0v-11,0,-19,-6,-25,-17v-6,-11,-9,-29,-9,-53v0,-13,1,-24,2,-33v1,-9,4,-16,7,-22v3,-6,6,-9,10,-12v4,-3,9,-4,15,-4r411,0v7,0,15,1,22,4v7,3,14,7,20,12v6,5,11,13,14,22v3,9,5,20,5,32r0,493v0,17,-3,32,-9,45v-6,13,-19,24,-38,34v-19,10,-44,20,-75,31v-31,11,-62,21,-95,29v-33,8,-66,14,-99,18v-33,4,-66,6,-99,6v-100,0,-189,-15,-268,-46v-79,-31,-146,-76,-200,-133v-54,-57,-95,-126,-124,-206v-29,-80,-43,-169,-43,-268v0,-103,16,-196,47,-279v31,-83,74,-154,130,-213v56,-59,125,-105,204,-137v79,-32,166,-48,262,-48v49,0,96,4,139,13v43,9,81,19,115,31v34,12,63,24,86,38v23,14,38,24,47,33v9,9,15,19,18,30v3,11,5,28,5,49","w":1292,"k":{"y":30,"x":14,"w":22,"v":29,"Y":30,"W":9,"V":10,"T":10}},"H":{"d":"1104,-26v0,5,-1,10,-4,14v-3,4,-7,8,-14,10v-7,2,-15,4,-26,6v-11,2,-25,2,-41,2v-17,0,-31,0,-42,-2v-11,-2,-19,-4,-26,-6v-7,-2,-11,-6,-14,-10v-3,-4,-4,-9,-4,-14r0,-574r-589,0r0,574v0,5,-1,10,-4,14v-3,4,-7,8,-14,10v-7,2,-15,4,-26,6v-11,2,-25,2,-42,2v-16,0,-30,0,-41,-2v-11,-2,-20,-4,-27,-6v-7,-2,-11,-6,-14,-10v-3,-4,-4,-9,-4,-14r0,-1242v0,-5,1,-10,4,-14v3,-4,7,-8,14,-10v7,-2,16,-4,27,-6v11,-2,25,-2,41,-2v17,0,31,0,42,2v11,2,19,4,26,6v7,2,11,6,14,10v3,4,4,9,4,14r0,518r589,0r0,-518v0,-5,1,-10,4,-14v3,-4,7,-8,14,-10v7,-2,15,-4,26,-6v11,-2,25,-2,42,-2v16,0,30,0,41,2v11,2,19,4,26,6v7,2,11,6,14,10v3,4,4,9,4,14r0,1242","w":1276,"k":{"\u201c":17,"\u2018":17,"\u00ef":-12}},"I":{"d":"344,-26v0,5,-1,10,-4,14v-3,4,-7,8,-14,10v-7,2,-15,4,-26,6v-11,2,-25,2,-42,2v-16,0,-30,0,-41,-2v-11,-2,-20,-4,-27,-6v-7,-2,-11,-6,-14,-10v-3,-4,-4,-9,-4,-14r0,-1242v0,-5,1,-10,4,-14v3,-4,9,-8,16,-10v7,-2,15,-4,26,-6v11,-2,25,-2,40,-2v17,0,31,0,42,2v11,2,19,4,26,6v7,2,11,6,14,10v3,4,4,9,4,14r0,1242","w":516},"\u00cc":{"d":"334,-1438v6,7,10,14,12,19v2,5,0,9,-3,13v-3,4,-10,6,-19,8v-9,2,-21,3,-36,3v-14,0,-26,0,-35,-1v-9,-1,-18,-4,-25,-6v-7,-2,-14,-4,-20,-8v-6,-4,-11,-9,-18,-16r-226,-212v-7,-7,-12,-13,-14,-19v-2,-6,0,-11,5,-16v5,-5,13,-8,25,-11v12,-3,27,-5,47,-5v17,0,31,0,43,1v12,1,21,3,30,6v9,3,17,6,24,11v7,5,15,11,22,20xm344,-26v0,5,-1,10,-4,14v-3,4,-7,8,-14,10v-7,2,-15,4,-26,6v-11,2,-25,2,-42,2v-16,0,-30,0,-41,-2v-11,-2,-20,-4,-27,-6v-7,-2,-11,-6,-14,-10v-3,-4,-4,-9,-4,-14r0,-1242v0,-5,1,-10,4,-14v3,-4,9,-8,16,-10v7,-2,15,-4,26,-6v11,-2,25,-2,40,-2v17,0,31,0,42,2v11,2,19,4,26,6v7,2,11,6,14,10v3,4,4,9,4,14r0,1242","w":516},"\u00cd":{"d":"373,-1651v7,-9,14,-15,21,-20v7,-5,15,-8,24,-11v9,-3,19,-5,31,-6v12,-1,26,-1,43,-1v20,0,36,2,47,5v11,3,19,6,24,11v5,5,7,10,5,16v-2,6,-6,12,-12,19r-227,212v-7,7,-13,12,-19,16v-6,4,-12,6,-19,8v-7,2,-15,5,-25,6v-10,1,-22,1,-36,1v-15,0,-27,-1,-36,-3v-9,-2,-15,-4,-18,-8v-3,-4,-4,-8,-3,-13v1,-5,5,-12,11,-19xm344,-26v0,5,-1,10,-4,14v-3,4,-7,8,-14,10v-7,2,-15,4,-26,6v-11,2,-25,2,-42,2v-16,0,-30,0,-41,-2v-11,-2,-20,-4,-27,-6v-7,-2,-11,-6,-14,-10v-3,-4,-4,-9,-4,-14r0,-1242v0,-5,1,-10,4,-14v3,-4,9,-8,16,-10v7,-2,15,-4,26,-6v11,-2,25,-2,40,-2v17,0,31,0,42,2v11,2,19,4,26,6v7,2,11,6,14,10v3,4,4,9,4,14r0,1242","w":516},"\u00cf":{"d":"150,-1529v0,37,-7,63,-21,77v-14,14,-40,21,-77,21v-37,0,-63,-7,-76,-21v-13,-14,-20,-38,-20,-75v0,-37,6,-63,20,-77v14,-14,40,-20,77,-20v37,0,63,7,77,20v14,13,20,38,20,75xm563,-1529v0,37,-7,63,-21,77v-14,14,-39,21,-77,21v-37,0,-61,-7,-75,-21v-14,-14,-21,-38,-21,-75v0,-37,7,-63,21,-77v14,-14,39,-20,76,-20v38,0,64,7,77,20v13,13,20,38,20,75xm344,-26v0,5,-1,10,-4,14v-3,4,-7,8,-14,10v-7,2,-15,4,-26,6v-11,2,-25,2,-42,2v-16,0,-30,0,-41,-2v-11,-2,-20,-4,-27,-6v-7,-2,-11,-6,-14,-10v-3,-4,-4,-9,-4,-14r0,-1242v0,-5,1,-10,4,-14v3,-4,9,-8,16,-10v7,-2,15,-4,26,-6v11,-2,25,-2,40,-2v17,0,31,0,42,2v11,2,19,4,26,6v7,2,11,6,14,10v3,4,4,9,4,14r0,1242","w":516},"J":{"d":"484,-326v0,51,-5,98,-14,141v-9,43,-25,79,-48,109v-23,30,-53,54,-90,70v-37,16,-82,24,-137,24v-19,0,-37,-1,-55,-4v-18,-3,-36,-7,-51,-12v-15,-5,-29,-10,-40,-16v-11,-6,-19,-11,-23,-15v-4,-4,-6,-8,-8,-12v-2,-4,-4,-9,-6,-15v-2,-6,-3,-12,-4,-20v-1,-8,-1,-19,-1,-31v0,-15,0,-27,1,-37v1,-10,3,-16,6,-22v3,-6,6,-10,10,-12v4,-2,8,-4,13,-4v5,0,13,3,21,8v8,5,18,10,30,16v12,6,25,11,40,16v15,5,33,8,54,8v23,0,42,-2,58,-8v16,-6,29,-17,40,-32v11,-15,19,-37,24,-64v5,-27,8,-62,8,-105r0,-926v0,-5,1,-9,4,-13v3,-4,7,-7,14,-10v7,-3,15,-5,26,-6v11,-1,25,-2,42,-2v16,0,30,1,41,2v11,1,21,3,27,6v6,3,11,6,14,10v3,4,4,8,4,13r0,943","w":653,"k":{".":18,",":27,"X":20,"\u00c4":35,"\u00c1":35,"\u00c0":35,"A":35}},"K":{"d":"1016,-28v0,5,-2,10,-4,14v-2,4,-6,8,-13,11v-7,3,-16,5,-27,7v-11,2,-26,2,-44,2v-23,0,-42,-1,-57,-3v-15,-2,-26,-6,-33,-11v-7,-5,-13,-11,-18,-18r-476,-647r0,647v0,5,-1,10,-4,14v-3,4,-7,8,-14,10v-7,2,-15,4,-26,6v-11,2,-25,2,-42,2v-16,0,-30,0,-41,-2v-11,-2,-20,-4,-27,-6v-7,-2,-11,-6,-14,-10v-3,-4,-4,-9,-4,-14r0,-1242v0,-5,1,-10,4,-14v3,-4,7,-8,14,-10v7,-2,16,-4,27,-6v11,-2,25,-2,41,-2v17,0,31,0,42,2v11,2,19,4,26,6v7,2,11,6,14,10v3,4,4,9,4,14r0,575r458,-575v4,-6,9,-11,14,-15v5,-4,12,-7,20,-9v8,-2,17,-5,28,-6v11,-1,25,-2,42,-2v17,0,31,0,42,2v11,2,20,4,26,7v6,3,10,6,12,10v2,4,4,8,4,13v0,9,-2,17,-6,26v-4,9,-13,21,-25,36r-429,513r462,614v11,17,18,29,20,35v2,6,4,12,4,16","w":1064,"k":{"-":34,"y":85,"w":95,"v":101,"\u00fc":32,"\u00fa":32,"\u00f9":32,"u":32,"t":38,"s":18,"r":32,"q":33,"p":32,"\u00f6":37,"\u00f3":37,"\u00f2":37,"o":37,"\u00f1":32,"n":32,"m":32,"\u00ef":-29,"\u00ec":-28,"f":25,"\u00e9":37,"\u00e8":37,"e":37,"d":33,"\u00e7":40,"c":40,"\u00e4":34,"\u00e1":34,"\u00e0":34,"a":34,"W":34,"\u00dc":29,"\u00da":29,"\u00d9":29,"U":29,"S":18,"Q":97,"\u00d6":97,"\u00d3":97,"\u00d2":97,"O":97,"G":80,"C":78}},"L":{"d":"843,-75v0,13,-1,24,-2,33v-1,9,-4,18,-7,24v-3,6,-6,11,-10,14v-4,3,-10,4,-16,4r-572,0v-15,0,-30,-6,-44,-16v-14,-10,-20,-28,-20,-54r0,-1198v0,-5,1,-10,4,-14v3,-4,7,-8,14,-10v7,-2,16,-4,27,-6v11,-2,25,-2,41,-2v17,0,31,0,42,2v11,2,19,4,26,6v7,2,11,6,14,10v3,4,4,9,4,14r0,1119r464,0v6,0,12,2,16,5v4,3,7,6,10,12v3,6,6,14,7,23v1,9,2,21,2,34","w":861,"k":{"\u00b7":55,"\u201d":147,"\u201c":197,"\u2019":147,"\u2018":197,",":-17,"y":79,"w":72,"v":78,"t":38,"f":23,"Y":167,"W":118,"V":147,"\u00dc":44,"\u00da":44,"\u00d9":44,"U":44,"T":150,"Q":45,"\u00d6":45,"\u00d3":45,"\u00d2":45,"O":45,"J":-25,"G":47,"C":22}},"M":{"d":"1579,-26v0,5,-1,10,-4,14v-3,4,-7,8,-14,10v-7,2,-15,4,-25,6v-10,2,-24,2,-41,2v-15,0,-28,0,-39,-2v-11,-2,-20,-4,-26,-6v-6,-2,-11,-6,-14,-10v-3,-4,-4,-9,-4,-14r0,-1127r-2,0r-461,1132v-2,5,-5,9,-9,12v-4,3,-9,7,-16,9v-7,2,-14,3,-24,4v-10,1,-22,2,-35,2v-14,0,-26,-1,-36,-2v-10,-1,-18,-4,-25,-6v-7,-2,-12,-5,-16,-8v-4,-3,-6,-7,-7,-11r-441,-1132r-1,0r0,1127v0,5,-1,10,-4,14v-3,4,-7,8,-14,10v-7,2,-15,4,-26,6v-11,2,-24,2,-41,2v-16,0,-29,0,-40,-2v-11,-2,-20,-4,-26,-6v-6,-2,-10,-6,-12,-10v-2,-4,-4,-9,-4,-14r0,-1190v0,-28,7,-48,22,-60v15,-12,31,-18,49,-18r104,0v21,0,40,2,56,6v16,4,30,10,42,19v12,9,22,20,30,33v8,13,15,29,21,47r375,937r5,0r390,-934v7,-20,15,-37,24,-51v9,-14,18,-25,28,-33v10,-8,22,-14,35,-18v13,-4,27,-6,44,-6r109,0v10,0,19,1,28,4v9,3,18,8,24,14v6,6,11,14,15,24v4,10,6,22,6,36r0,1190","w":1751},"N":{"d":"1150,-71v0,13,-2,25,-6,34v-4,9,-11,17,-18,23v-7,6,-14,10,-23,13v-9,3,-17,4,-26,4r-55,0v-17,0,-33,-1,-46,-5v-13,-4,-24,-10,-36,-20v-12,-10,-24,-23,-36,-40v-12,-17,-24,-38,-38,-64r-408,-736r-64,-120v0,0,-33,-62,-61,-121r-2,0r3,147v0,0,1,100,1,149r0,781v0,5,-1,10,-4,14v-3,4,-7,8,-13,10v-6,2,-16,4,-26,6v-10,2,-23,2,-39,2v-16,0,-29,0,-39,-2v-10,-2,-19,-4,-25,-6v-6,-2,-10,-6,-13,-10v-3,-4,-4,-9,-4,-14r0,-1194v0,-27,7,-46,22,-57v15,-11,31,-17,48,-17r82,0v19,0,35,2,48,5v13,3,26,9,36,17v10,8,20,18,30,32v10,14,20,30,31,51r314,568r56,101r52,98r49,94r49,94r1,0v-1,-53,-2,-107,-2,-164v0,-57,-1,-112,-1,-165r0,-702v0,-5,1,-9,4,-13v3,-4,7,-7,13,-10v6,-3,16,-6,26,-7v10,-1,23,-2,40,-2v15,0,27,1,38,2v11,1,19,4,25,7v6,3,10,6,13,10v3,4,4,8,4,13r0,1194","w":1322},"\u00d1":{"d":"881,-1614v0,-9,5,-15,14,-18v9,-3,25,-4,48,-4v24,0,40,3,47,8v7,5,11,15,11,32v0,62,-17,110,-51,146v-34,36,-83,54,-146,54v-35,0,-66,-6,-92,-18v-26,-12,-50,-26,-72,-40v-32,-22,-32,-20,-60,-38v-19,-12,-40,-18,-61,-18v-28,0,-48,8,-59,25v-11,17,-17,39,-17,67v0,5,-2,9,-5,12v-3,3,-7,4,-12,6v-5,2,-12,4,-20,4r-25,0v-24,0,-40,-3,-47,-8v-7,-5,-11,-16,-11,-32v0,-32,5,-61,14,-86v9,-25,23,-45,40,-62v17,-17,39,-29,63,-38v24,-9,51,-14,80,-14v35,0,66,6,92,18v26,12,50,25,71,39r61,39v19,12,39,18,61,18v23,0,41,-6,55,-20v14,-14,21,-38,21,-72xm1150,-71v0,13,-2,25,-6,34v-4,9,-11,17,-18,23v-7,6,-14,10,-23,13v-9,3,-17,4,-26,4r-55,0v-17,0,-33,-1,-46,-5v-13,-4,-24,-10,-36,-20v-12,-10,-24,-23,-36,-40v-12,-17,-24,-38,-38,-64r-408,-736r-64,-120v0,0,-33,-62,-61,-121r-2,0r3,147v0,0,1,100,1,149r0,781v0,5,-1,10,-4,14v-3,4,-7,8,-13,10v-6,2,-16,4,-26,6v-10,2,-23,2,-39,2v-16,0,-29,0,-39,-2v-10,-2,-19,-4,-25,-6v-6,-2,-10,-6,-13,-10v-3,-4,-4,-9,-4,-14r0,-1194v0,-27,7,-46,22,-57v15,-11,31,-17,48,-17r82,0v19,0,35,2,48,5v13,3,26,9,36,17v10,8,20,18,30,32v10,14,20,30,31,51r314,568r56,101r52,98r49,94r49,94r1,0v-1,-53,-2,-107,-2,-164v0,-57,-1,-112,-1,-165r0,-702v0,-5,1,-9,4,-13v3,-4,7,-7,13,-10v6,-3,16,-6,26,-7v10,-1,23,-2,40,-2v15,0,27,1,38,2v11,1,19,4,25,7v6,3,10,6,13,10v3,4,4,8,4,13r0,1194","w":1322},"O":{"d":"1256,-662v0,105,-12,199,-37,283v-25,84,-62,156,-111,215v-49,59,-110,104,-184,136v-74,32,-160,47,-259,47v-97,0,-182,-14,-253,-43v-71,-29,-130,-72,-176,-127v-46,-55,-80,-124,-103,-206v-23,-82,-34,-176,-34,-283v0,-102,12,-195,37,-278v25,-83,62,-154,111,-212v49,-58,111,-104,185,-136v74,-32,160,-47,259,-47v95,0,178,14,249,43v71,29,129,71,176,126v47,55,83,123,106,204v23,81,34,173,34,278xm1075,-650v0,-73,-6,-141,-19,-204v-13,-63,-36,-118,-66,-164v-30,-46,-70,-83,-121,-109v-51,-26,-113,-39,-188,-39v-75,0,-137,14,-188,42v-51,28,-91,65,-123,112v-32,47,-54,102,-68,164v-14,62,-21,127,-21,196v0,76,6,146,19,210v13,64,34,120,64,166v30,46,70,82,120,108v50,26,114,38,190,38v75,0,139,-14,190,-42v51,-28,93,-66,124,-114v31,-48,54,-102,67,-165v13,-63,20,-129,20,-199","w":1356,"k":{"\u201d":-12,"\u201c":18,"\u2019":-12,"\u2018":18,".":30,",":48,"z":10,"x":12,"Z":38,"Y":55,"X":64,"W":22,"V":25,"T":55,"J":27,"\u00c4":23,"\u00c1":23,"\u00c0":23,"A":23}},"\u00d2":{"d":"757,-1438v6,7,9,14,11,19v2,5,1,9,-2,13v-3,4,-9,6,-18,8v-9,2,-22,3,-37,3v-14,0,-26,0,-35,-1v-9,-1,-18,-4,-25,-6v-7,-2,-13,-4,-19,-8v-6,-4,-12,-9,-19,-16r-226,-212v-7,-7,-11,-13,-13,-19v-2,-6,-1,-11,4,-16v5,-5,12,-8,24,-11v12,-3,28,-5,48,-5v17,0,30,0,42,1v12,1,22,3,31,6v9,3,17,6,24,11v7,5,15,11,22,20xm1256,-662v0,105,-12,199,-37,283v-25,84,-62,156,-111,215v-49,59,-110,104,-184,136v-74,32,-160,47,-259,47v-97,0,-182,-14,-253,-43v-71,-29,-130,-72,-176,-127v-46,-55,-80,-124,-103,-206v-23,-82,-34,-176,-34,-283v0,-102,12,-195,37,-278v25,-83,62,-154,111,-212v49,-58,111,-104,185,-136v74,-32,160,-47,259,-47v95,0,178,14,249,43v71,29,129,71,176,126v47,55,83,123,106,204v23,81,34,173,34,278xm1075,-650v0,-73,-6,-141,-19,-204v-13,-63,-36,-118,-66,-164v-30,-46,-70,-83,-121,-109v-51,-26,-113,-39,-188,-39v-75,0,-137,14,-188,42v-51,28,-91,65,-123,112v-32,47,-54,102,-68,164v-14,62,-21,127,-21,196v0,76,6,146,19,210v13,64,34,120,64,166v30,46,70,82,120,108v50,26,114,38,190,38v75,0,139,-14,190,-42v51,-28,93,-66,124,-114v31,-48,54,-102,67,-165v13,-63,20,-129,20,-199","w":1356,"k":{"\u201d":-12,"\u201c":18,"\u2019":-12,"\u2018":18,".":30,",":48,"z":10,"x":12,"Z":38,"Y":55,"X":64,"W":22,"V":25,"T":55,"J":27,"\u00c4":23,"\u00c1":23,"\u00c0":23,"A":23}},"\u00d3":{"d":"782,-1651v7,-9,15,-15,22,-20v7,-5,14,-8,23,-11v9,-3,19,-5,31,-6v12,-1,26,-1,43,-1v20,0,36,2,47,5v11,3,19,6,24,11v5,5,6,10,4,16v-2,6,-5,12,-11,19r-227,212v-7,7,-12,12,-18,16v-6,4,-13,6,-20,8v-7,2,-16,5,-26,6v-10,1,-21,1,-35,1v-15,0,-27,-1,-36,-3v-9,-2,-15,-4,-18,-8v-3,-4,-4,-8,-3,-13v1,-5,5,-12,11,-19xm1256,-662v0,105,-12,199,-37,283v-25,84,-62,156,-111,215v-49,59,-110,104,-184,136v-74,32,-160,47,-259,47v-97,0,-182,-14,-253,-43v-71,-29,-130,-72,-176,-127v-46,-55,-80,-124,-103,-206v-23,-82,-34,-176,-34,-283v0,-102,12,-195,37,-278v25,-83,62,-154,111,-212v49,-58,111,-104,185,-136v74,-32,160,-47,259,-47v95,0,178,14,249,43v71,29,129,71,176,126v47,55,83,123,106,204v23,81,34,173,34,278xm1075,-650v0,-73,-6,-141,-19,-204v-13,-63,-36,-118,-66,-164v-30,-46,-70,-83,-121,-109v-51,-26,-113,-39,-188,-39v-75,0,-137,14,-188,42v-51,28,-91,65,-123,112v-32,47,-54,102,-68,164v-14,62,-21,127,-21,196v0,76,6,146,19,210v13,64,34,120,64,166v30,46,70,82,120,108v50,26,114,38,190,38v75,0,139,-14,190,-42v51,-28,93,-66,124,-114v31,-48,54,-102,67,-165v13,-63,20,-129,20,-199","w":1356,"k":{"\u201d":-12,"\u201c":18,"\u2019":-12,"\u2018":18,".":30,",":48,"z":10,"x":12,"Z":38,"Y":55,"X":64,"W":22,"V":25,"T":55,"J":27,"\u00c4":23,"\u00c1":23,"\u00c0":23,"A":23}},"\u00d6":{"d":"572,-1529v0,37,-7,63,-21,77v-14,14,-40,21,-77,21v-37,0,-63,-7,-76,-21v-13,-14,-20,-38,-20,-75v0,-37,6,-63,20,-77v14,-14,40,-20,77,-20v37,0,63,7,77,20v14,13,20,38,20,75xm985,-1529v0,37,-7,63,-21,77v-14,14,-39,21,-77,21v-37,0,-61,-7,-75,-21v-14,-14,-21,-38,-21,-75v0,-37,7,-63,21,-77v14,-14,39,-20,76,-20v38,0,64,7,77,20v13,13,20,38,20,75xm1256,-662v0,105,-12,199,-37,283v-25,84,-62,156,-111,215v-49,59,-110,104,-184,136v-74,32,-160,47,-259,47v-97,0,-182,-14,-253,-43v-71,-29,-130,-72,-176,-127v-46,-55,-80,-124,-103,-206v-23,-82,-34,-176,-34,-283v0,-102,12,-195,37,-278v25,-83,62,-154,111,-212v49,-58,111,-104,185,-136v74,-32,160,-47,259,-47v95,0,178,14,249,43v71,29,129,71,176,126v47,55,83,123,106,204v23,81,34,173,34,278xm1075,-650v0,-73,-6,-141,-19,-204v-13,-63,-36,-118,-66,-164v-30,-46,-70,-83,-121,-109v-51,-26,-113,-39,-188,-39v-75,0,-137,14,-188,42v-51,28,-91,65,-123,112v-32,47,-54,102,-68,164v-14,62,-21,127,-21,196v0,76,6,146,19,210v13,64,34,120,64,166v30,46,70,82,120,108v50,26,114,38,190,38v75,0,139,-14,190,-42v51,-28,93,-66,124,-114v31,-48,54,-102,67,-165v13,-63,20,-129,20,-199","w":1356,"k":{"\u201d":-12,"\u201c":18,"\u2019":-12,"\u2018":18,".":30,",":48,"z":10,"x":12,"Z":38,"Y":55,"X":64,"W":22,"V":25,"T":55,"J":27,"\u00c4":23,"\u00c1":23,"\u00c0":23,"A":23}},"P":{"d":"967,-915v0,65,-11,123,-32,175v-21,52,-51,96,-91,133v-40,37,-88,65,-146,85v-58,20,-127,30,-207,30r-147,0r0,466v0,5,-1,10,-4,14v-3,4,-8,8,-14,10v-6,2,-15,4,-26,6v-11,2,-25,2,-42,2v-17,0,-31,0,-42,-2v-11,-2,-19,-4,-26,-6v-7,-2,-11,-6,-14,-10v-3,-4,-4,-9,-4,-14r0,-1194v0,-27,7,-46,21,-57v14,-11,30,-17,47,-17r277,0v28,0,55,2,81,4v26,2,55,6,90,14v35,8,72,23,108,44v36,21,67,46,92,77v25,31,44,67,58,107v14,40,21,84,21,133xm786,-901v0,-53,-10,-97,-30,-132v-20,-35,-43,-62,-72,-79v-29,-17,-59,-28,-90,-33v-31,-5,-62,-7,-91,-7r-159,0r0,519r155,0v52,0,95,-7,129,-20v34,-13,64,-31,87,-55v23,-24,41,-53,53,-86v12,-33,18,-68,18,-107","w":1058,"k":{"-":61,"\/":108,"\u201d":-48,"\u201c":-13,"\u2019":-48,"\u2018":-13,".":261,",":254,"y":-12,"t":-12,"s":32,"q":34,"\u00f6":41,"\u00f3":41,"\u00f2":41,"o":41,"f":-12,"\u00e9":41,"\u00e8":41,"e":41,"d":34,"\u00e7":43,"c":43,"\u00e4":44,"\u00e1":44,"\u00e0":44,"a":44,"Z":29,"Y":11,"X":35,"V":10,"T":9,"J":140,"\u00c4":151,"\u00c1":151,"\u00c0":151,"A":151}},"Q":{"d":"1415,114v0,15,-1,28,-3,38v-2,10,-4,18,-7,24v-3,6,-7,10,-11,12v-4,2,-8,3,-12,3v-13,0,-34,-6,-64,-17v-30,-11,-64,-27,-103,-48v-39,-21,-80,-46,-124,-76v-44,-30,-87,-65,-128,-105v-33,20,-74,37,-124,52v-50,15,-108,22,-174,22v-97,0,-182,-14,-253,-43v-71,-29,-130,-71,-176,-126v-46,-55,-80,-124,-103,-206v-23,-82,-34,-177,-34,-284v0,-103,12,-195,37,-278v25,-83,62,-154,111,-212v49,-58,111,-104,185,-136v74,-32,160,-47,259,-47v93,0,175,14,245,43v70,29,128,71,176,126v48,55,84,122,108,203v24,81,36,173,36,278v0,54,-4,106,-10,155v-6,49,-16,96,-30,140v-14,44,-30,85,-51,122v-21,37,-45,71,-73,101v49,40,91,71,128,93v37,22,67,40,91,51v24,11,43,20,56,25v13,5,23,10,30,16v7,6,11,16,14,28v3,12,4,27,4,46xm1075,-651v0,-73,-6,-141,-19,-204v-13,-63,-36,-117,-66,-163v-30,-46,-70,-83,-121,-109v-51,-26,-113,-39,-188,-39v-75,0,-137,14,-188,42v-51,28,-91,65,-123,112v-32,47,-54,101,-68,163v-14,62,-21,128,-21,197v0,76,6,146,19,210v13,64,34,118,64,165v30,47,70,83,120,109v50,26,114,38,190,38v75,0,139,-14,190,-42v51,-28,93,-66,124,-114v31,-48,54,-103,67,-166v13,-63,20,-129,20,-199","w":1378,"k":{"}":-30,"]":-32,")":-30,"\/":-136,"\u201d":-8,"\u2019":-8,";":-60,",":-105,"x":-31,"j":-79,"g":-59,"Y":46,"X":-12,"W":12,"V":25,"T":47,"J":-41}},"R":{"d":"1035,-26v0,5,-1,10,-3,14v-2,4,-6,7,-13,10v-7,3,-16,5,-28,6v-12,1,-28,2,-48,2v-17,0,-32,-1,-43,-2v-11,-1,-19,-3,-26,-6v-7,-3,-12,-8,-16,-13v-4,-5,-6,-12,-9,-20r-119,-305v-14,-35,-29,-67,-44,-96v-15,-29,-32,-53,-53,-74v-21,-21,-45,-38,-73,-50v-28,-12,-62,-17,-101,-17r-115,0r0,551v0,5,-1,10,-4,14v-3,4,-8,8,-14,10v-6,2,-15,4,-26,6v-11,2,-25,2,-42,2v-17,0,-31,0,-42,-2v-11,-2,-19,-4,-26,-6v-7,-2,-11,-6,-14,-10v-3,-4,-4,-9,-4,-14r0,-1198v0,-26,6,-44,20,-54v14,-10,29,-16,44,-16r275,0v33,0,59,0,81,2v22,2,42,4,59,6v50,9,95,22,133,41v38,19,70,42,96,71v26,29,45,61,58,98v13,37,20,78,20,123v0,43,-6,83,-18,117v-12,34,-28,64,-50,90v-22,26,-48,50,-79,69v-31,19,-65,36,-103,49v21,9,41,22,58,36v17,14,33,31,48,51v15,20,30,43,43,69v13,26,27,55,40,88r116,285v9,24,15,41,18,51v3,10,4,17,4,22xm776,-935v0,-51,-11,-94,-34,-129v-23,-35,-61,-60,-114,-75v-17,-5,-35,-8,-56,-10v-21,-2,-49,-3,-83,-3r-145,0r0,436r168,0v45,0,85,-5,118,-16v33,-11,60,-26,82,-46v22,-20,38,-43,48,-70v10,-27,16,-56,16,-87","w":1112,"k":{".":-10,"y":33,"w":33,"v":26,"\u00f6":42,"\u00f3":42,"\u00f2":42,"o":42,"\u00e9":36,"\u00e8":36,"e":36,"Y":30,"W":18,"V":28,"T":20,"S":27,"Q":20,"\u00d6":20,"\u00d3":20,"\u00d2":20,"O":20,"G":19,"C":18}},"S":{"d":"867,-363v0,61,-11,115,-33,162v-22,47,-54,88,-94,121v-40,33,-86,57,-140,74v-54,17,-111,25,-173,25v-43,0,-84,-4,-121,-11v-37,-7,-69,-16,-98,-27v-29,-11,-54,-22,-74,-33v-20,-11,-32,-21,-40,-29v-8,-8,-14,-19,-18,-31v-4,-12,-5,-28,-5,-49v0,-15,1,-27,2,-37v1,-10,3,-17,6,-23v3,-6,6,-11,10,-13v4,-2,9,-3,14,-3v9,0,22,6,39,17v17,11,39,24,66,37v27,13,58,25,96,37v38,12,82,18,131,18v37,0,72,-5,103,-15v31,-10,58,-25,80,-43v22,-18,39,-40,51,-67v12,-27,18,-57,18,-91v0,-37,-8,-68,-25,-94v-17,-26,-39,-48,-66,-68v-27,-20,-59,-38,-94,-54r-107,-50v-37,-17,-72,-36,-107,-57v-35,-21,-66,-45,-93,-73v-27,-28,-50,-60,-67,-98v-17,-38,-25,-83,-25,-136v0,-54,9,-102,29,-144v20,-42,47,-78,82,-107v35,-29,78,-50,126,-65v48,-15,100,-23,156,-23v29,0,57,2,86,7v29,5,56,12,82,20v26,8,49,18,69,28v20,10,33,20,39,26v6,6,11,10,13,14v2,4,4,8,5,14v1,6,2,13,3,21v1,8,1,18,1,31v0,12,-1,23,-2,32v-1,9,-2,18,-4,24v-2,6,-4,11,-8,14v-4,3,-8,4,-13,4v-7,0,-19,-5,-35,-14v-16,-9,-34,-20,-57,-32v-23,-12,-50,-22,-81,-32v-31,-10,-65,-14,-104,-14v-36,0,-67,4,-94,14v-27,10,-49,23,-66,39v-17,16,-30,35,-39,57v-9,22,-13,45,-13,70v0,36,8,67,25,93v17,26,39,49,67,69v28,20,59,38,94,55r108,51v37,17,73,36,108,56v35,20,66,44,94,72v28,28,51,60,68,98v17,38,25,82,25,133","w":941,"k":{"-":9,"\u201d":14,"\u201c":20,"\u2019":14,"\u2018":20,"y":25,"w":17,"v":23,"Y":20,"X":13,"W":15,"V":14,"T":14,"J":9,"\u00c4":15,"\u00c1":15,"\u00c0":15,"A":15}},"T":{"d":"983,-1220v0,13,-1,24,-2,33v-1,9,-4,17,-7,23v-3,6,-6,9,-10,12v-4,3,-10,4,-15,4r-364,0r0,1122v0,5,-1,10,-4,14v-3,4,-7,8,-14,10v-7,2,-16,4,-27,6v-11,2,-24,2,-41,2v-16,0,-30,0,-41,-2v-11,-2,-20,-4,-27,-6v-7,-2,-11,-6,-14,-10v-3,-4,-4,-9,-4,-14r0,-1122r-364,0v-5,0,-11,-1,-15,-4v-4,-3,-7,-6,-10,-12v-3,-6,-4,-14,-6,-23v-2,-9,-3,-20,-3,-33v0,-13,1,-24,3,-34v2,-10,3,-17,6,-23v3,-6,6,-10,10,-13v4,-3,10,-4,15,-4r900,0v5,0,11,1,15,4v4,3,7,7,10,13v3,6,6,13,7,23v1,10,2,21,2,34","w":998,"k":{"-":160,"\/":107,"\u201d":-48,"\u201c":-22,"\u2019":-48,"\u2018":-22,".":203,":":134,";":114,",":210,"z":142,"y":93,"x":90,"w":86,"v":92,"\u00fc":127,"\u00fa":127,"\u00f9":127,"u":127,"s":153,"r":127,"q":147,"p":127,"\u00f6":182,"\u00f3":182,"\u00f2":182,"o":182,"\u00f1":127,"n":127,"m":127,"\u00ef":-83,"\u00ec":-38,"g":151,"\u00e9":182,"\u00e8":182,"e":182,"d":147,"\u00e7":177,"c":177,"\u00e4":160,"\u00e1":160,"\u00e0":160,"a":160,"T":-28,"S":10,"Q":58,"\u00d6":58,"\u00d3":58,"\u00d2":58,"O":58,"J":65,"G":59,"C":42,"\u00c4":160,"\u00c1":160,"\u00c0":160,"A":160}},"U":{"d":"1145,-478v0,79,-12,148,-35,210v-23,62,-55,114,-98,157v-43,43,-95,75,-156,97v-61,22,-131,33,-209,33v-71,0,-136,-10,-195,-31v-59,-21,-109,-52,-151,-92v-42,-40,-74,-90,-97,-151v-23,-61,-34,-131,-34,-210r0,-803v0,-5,1,-10,4,-14v3,-4,7,-8,14,-10v7,-2,15,-4,26,-6v11,-2,25,-2,42,-2v16,0,30,0,41,2v11,2,21,4,27,6v6,2,10,6,13,10v3,4,4,9,4,14r0,782v0,60,7,112,22,157v15,45,35,81,63,111v28,30,61,53,100,68v39,15,83,22,132,22v50,0,95,-7,134,-22v39,-15,71,-37,98,-66v27,-29,48,-66,62,-109v14,-43,22,-94,22,-152r0,-791v0,-5,1,-10,4,-14v3,-4,7,-8,14,-10v7,-2,15,-4,26,-6v11,-2,25,-2,42,-2v16,0,29,0,40,2v11,2,20,4,26,6v6,2,11,6,14,10v3,4,5,9,5,14r0,790","w":1314,"k":{".":36,",":28,"J":40,"\u00c4":45,"\u00c1":45,"\u00c0":45,"A":45}},"\u00d9":{"d":"718,-1438v6,7,10,14,12,19v2,5,0,9,-3,13v-3,4,-10,6,-19,8v-9,2,-21,3,-36,3v-14,0,-26,0,-35,-1v-9,-1,-18,-4,-25,-6v-7,-2,-14,-4,-20,-8v-6,-4,-11,-9,-18,-16r-226,-212v-7,-7,-12,-13,-14,-19v-2,-6,0,-11,5,-16v5,-5,13,-8,25,-11v12,-3,27,-5,47,-5v17,0,31,0,43,1v12,1,21,3,30,6v9,3,17,6,24,11v7,5,15,11,22,20xm1145,-478v0,79,-12,148,-35,210v-23,62,-55,114,-98,157v-43,43,-95,75,-156,97v-61,22,-131,33,-209,33v-71,0,-136,-10,-195,-31v-59,-21,-109,-52,-151,-92v-42,-40,-74,-90,-97,-151v-23,-61,-34,-131,-34,-210r0,-803v0,-5,1,-10,4,-14v3,-4,7,-8,14,-10v7,-2,15,-4,26,-6v11,-2,25,-2,42,-2v16,0,30,0,41,2v11,2,21,4,27,6v6,2,10,6,13,10v3,4,4,9,4,14r0,782v0,60,7,112,22,157v15,45,35,81,63,111v28,30,61,53,100,68v39,15,83,22,132,22v50,0,95,-7,134,-22v39,-15,71,-37,98,-66v27,-29,48,-66,62,-109v14,-43,22,-94,22,-152r0,-791v0,-5,1,-10,4,-14v3,-4,7,-8,14,-10v7,-2,15,-4,26,-6v11,-2,25,-2,42,-2v16,0,29,0,40,2v11,2,20,4,26,6v6,2,11,6,14,10v3,4,5,9,5,14r0,790","w":1314,"k":{".":36,",":28,"J":40,"\u00c4":45,"\u00c1":45,"\u00c0":45,"A":45}},"\u00da":{"d":"761,-1651v7,-9,14,-15,21,-20v7,-5,15,-8,24,-11v9,-3,19,-5,31,-6v12,-1,26,-1,43,-1v20,0,36,2,47,5v11,3,19,6,24,11v5,5,7,10,5,16v-2,6,-6,12,-12,19r-227,212v-7,7,-13,12,-19,16v-6,4,-12,6,-19,8v-7,2,-15,5,-25,6v-10,1,-22,1,-36,1v-15,0,-27,-1,-36,-3v-9,-2,-15,-4,-18,-8v-3,-4,-4,-8,-3,-13v1,-5,5,-12,11,-19xm1145,-478v0,79,-12,148,-35,210v-23,62,-55,114,-98,157v-43,43,-95,75,-156,97v-61,22,-131,33,-209,33v-71,0,-136,-10,-195,-31v-59,-21,-109,-52,-151,-92v-42,-40,-74,-90,-97,-151v-23,-61,-34,-131,-34,-210r0,-803v0,-5,1,-10,4,-14v3,-4,7,-8,14,-10v7,-2,15,-4,26,-6v11,-2,25,-2,42,-2v16,0,30,0,41,2v11,2,21,4,27,6v6,2,10,6,13,10v3,4,4,9,4,14r0,782v0,60,7,112,22,157v15,45,35,81,63,111v28,30,61,53,100,68v39,15,83,22,132,22v50,0,95,-7,134,-22v39,-15,71,-37,98,-66v27,-29,48,-66,62,-109v14,-43,22,-94,22,-152r0,-791v0,-5,1,-10,4,-14v3,-4,7,-8,14,-10v7,-2,15,-4,26,-6v11,-2,25,-2,42,-2v16,0,29,0,40,2v11,2,20,4,26,6v6,2,11,6,14,10v3,4,5,9,5,14r0,790","w":1314,"k":{".":36,",":28,"J":40,"\u00c4":45,"\u00c1":45,"\u00c0":45,"A":45}},"\u00dc":{"d":"546,-1529v0,37,-7,63,-21,77v-14,14,-40,21,-77,21v-37,0,-63,-7,-76,-21v-13,-14,-20,-38,-20,-75v0,-37,6,-63,20,-77v14,-14,40,-20,77,-20v37,0,63,7,77,20v14,13,20,38,20,75xm959,-1529v0,37,-7,63,-21,77v-14,14,-39,21,-77,21v-37,0,-61,-7,-75,-21v-14,-14,-21,-38,-21,-75v0,-37,7,-63,21,-77v14,-14,39,-20,76,-20v38,0,64,7,77,20v13,13,20,38,20,75xm1145,-478v0,79,-12,148,-35,210v-23,62,-55,114,-98,157v-43,43,-95,75,-156,97v-61,22,-131,33,-209,33v-71,0,-136,-10,-195,-31v-59,-21,-109,-52,-151,-92v-42,-40,-74,-90,-97,-151v-23,-61,-34,-131,-34,-210r0,-803v0,-5,1,-10,4,-14v3,-4,7,-8,14,-10v7,-2,15,-4,26,-6v11,-2,25,-2,42,-2v16,0,30,0,41,2v11,2,21,4,27,6v6,2,10,6,13,10v3,4,4,9,4,14r0,782v0,60,7,112,22,157v15,45,35,81,63,111v28,30,61,53,100,68v39,15,83,22,132,22v50,0,95,-7,134,-22v39,-15,71,-37,98,-66v27,-29,48,-66,62,-109v14,-43,22,-94,22,-152r0,-791v0,-5,1,-10,4,-14v3,-4,7,-8,14,-10v7,-2,15,-4,26,-6v11,-2,25,-2,42,-2v16,0,29,0,40,2v11,2,20,4,26,6v6,2,11,6,14,10v3,4,5,9,5,14r0,790","w":1314,"k":{".":36,",":28,"J":40,"\u00c4":45,"\u00c1":45,"\u00c0":45,"A":45}},"V":{"d":"695,-30v-3,7,-6,13,-11,18v-5,5,-12,8,-20,11v-8,3,-19,4,-32,5v-13,1,-29,2,-48,2r-38,0v0,0,-21,-2,-29,-3v-8,-1,-15,-3,-21,-5v-6,-2,-10,-3,-14,-6v-4,-3,-8,-6,-10,-10v-2,-4,-4,-8,-6,-13r-423,-1202v-5,-15,-9,-26,-9,-35v0,-9,3,-16,9,-21v6,-5,16,-8,29,-9v13,-1,31,-2,54,-2v19,0,33,1,44,2v11,1,20,2,26,5v6,3,11,7,14,11v3,4,5,9,8,16r371,1089r1,0r361,-1087v2,-7,4,-13,7,-18v3,-5,7,-8,14,-11v7,-3,16,-4,28,-5v12,-1,28,-2,48,-2v21,0,37,0,49,2v12,2,21,5,25,10v4,5,5,11,4,20v-1,9,-4,21,-9,36","w":1162,"k":{"-":101,"\/":106,"\u201d":-53,"\u2019":-53,".":205,":":73,";":108,",":166,"z":82,"y":35,"\u00fc":50,"\u00fa":50,"\u00f9":50,"u":50,"s":90,"r":50,"q":87,"p":50,"\u00f6":86,"\u00f3":86,"\u00f2":86,"o":86,"\u00f1":50,"n":50,"m":50,"\u00ef":-72,"\u00ec":-47,"g":100,"\u00e9":102,"\u00e8":102,"e":102,"d":87,"\u00e7":103,"c":103,"\u00e4":114,"\u00e1":114,"\u00e0":114,"a":114,"V":-9,"S":12,"Q":27,"\u00d6":27,"\u00d3":27,"\u00d2":27,"O":27,"J":80,"G":25,"C":18,"\u00c4":96,"\u00c1":96,"\u00c0":96,"A":96}},"W":{"d":"1411,-38v-3,9,-7,16,-12,22v-5,6,-13,11,-22,14v-9,3,-21,5,-35,6v-14,1,-30,2,-50,2v-21,0,-38,-1,-52,-2v-14,-1,-27,-3,-36,-6v-9,-3,-16,-8,-21,-14v-5,-6,-8,-13,-11,-22r-271,-977r-2,0r-250,977v-2,9,-5,16,-10,22v-5,6,-11,11,-20,14v-9,3,-19,5,-33,6v-14,1,-32,2,-53,2v-22,0,-40,-1,-55,-2v-15,-1,-27,-3,-36,-6v-9,-3,-17,-8,-22,-14v-5,-6,-8,-13,-10,-22r-342,-1195v-4,-15,-6,-27,-6,-36v0,-9,2,-15,8,-20v6,-5,14,-8,27,-9v13,-1,30,-2,51,-2v21,0,37,1,49,2v12,1,21,2,27,5v6,3,12,6,14,11v2,5,4,11,5,18r291,1084r1,0r276,-1082v2,-7,4,-13,7,-18v3,-5,8,-9,15,-12v7,-3,17,-5,29,-6v12,-1,28,-2,48,-2v19,0,33,1,44,2v11,1,20,3,27,6v7,3,12,7,15,12v3,5,5,11,7,18r297,1082r2,0r285,-1083v2,-7,4,-12,6,-17v2,-5,7,-9,13,-12v6,-3,14,-5,26,-6v12,-1,28,-2,47,-2v20,0,35,0,47,2v12,2,21,5,26,10v5,5,8,11,8,20v0,9,-3,21,-6,36","w":1822,"k":{"-":88,"\u201d":-14,"\u2019":-14,".":206,";":156,",":216,"y":53,"v":34,"\u00fc":60,"\u00fa":60,"\u00f9":60,"u":60,"s":73,"r":60,"q":72,"p":60,"\u00f6":86,"\u00f3":86,"\u00f2":86,"o":86,"\u00f1":60,"n":60,"m":60,"\u00ef":-47,"\u00ec":-16,"g":54,"\u00e9":75,"\u00e8":75,"e":75,"d":72,"\u00e7":78,"c":78,"\u00e4":71,"\u00e1":71,"\u00e0":71,"a":71,"X":13,"S":10,"Q":22,"\u00d6":22,"\u00d3":22,"\u00d2":22,"O":22,"J":88,"G":22,"C":22,"\u00c4":93,"\u00c1":93,"\u00c0":93,"A":93}},"X":{"d":"996,-62v9,15,14,26,16,35v2,9,-1,16,-7,21v-6,5,-15,8,-29,10v-14,2,-32,2,-55,2v-21,0,-38,-1,-50,-2v-12,-1,-22,-2,-29,-5v-7,-3,-12,-5,-16,-9v-4,-4,-6,-9,-9,-15r-288,-515r-291,515v-3,6,-7,11,-11,15v-4,4,-10,8,-17,10v-7,2,-16,3,-28,4v-12,1,-28,2,-48,2v-22,0,-39,0,-52,-2v-13,-2,-21,-5,-26,-10v-5,-5,-8,-12,-6,-21v2,-9,7,-20,16,-35r353,-595r-337,-575v-8,-15,-14,-27,-16,-36v-2,-9,0,-15,5,-20v5,-5,15,-9,28,-10v13,-1,32,-2,55,-2v20,0,36,1,49,2v13,1,23,2,30,4v7,2,13,6,16,10v5,6,5,7,11,15r278,484r276,-484v3,-5,7,-11,10,-15v3,-4,8,-8,14,-10v6,-2,16,-3,27,-4v11,-1,27,-2,46,-2v21,0,38,0,51,2v13,2,22,5,28,10v6,5,7,11,6,20v-1,9,-6,21,-14,36r-336,571","w":1063,"k":{"-":81,"\u201d":14,"\u2019":14,"y":43,"w":49,"v":55,"u":38,"t":31,"q":44,"\u00f6":38,"\u00f3":38,"\u00f2":38,"o":38,"g":9,"\u00e9":39,"\u00e8":39,"e":39,"d":44,"S":20,"Q":57,"\u00d6":57,"\u00d3":57,"\u00d2":57,"O":57,"G":65,"C":57}},"Y":{"d":"585,-503r0,477v0,5,-1,10,-4,14v-3,4,-7,8,-14,10v-7,2,-16,4,-27,6v-11,2,-25,2,-41,2v-17,0,-30,0,-41,-2v-11,-2,-21,-4,-28,-6v-7,-2,-11,-6,-14,-10v-3,-4,-4,-9,-4,-14r0,-477r-366,-730v-7,-15,-12,-27,-14,-36v-2,-9,1,-15,6,-20v5,-5,13,-8,26,-9v13,-1,31,-2,53,-2v20,0,37,1,49,2v12,1,22,4,29,6v7,2,13,6,17,10v4,4,7,9,10,16r179,372r50,111r51,117r2,0r48,-114r49,-111r180,-374v2,-7,5,-12,9,-17v4,-5,8,-8,14,-10v6,-2,16,-5,27,-6v11,-1,26,-2,43,-2v24,0,42,0,56,2v14,2,24,5,29,10v5,5,7,11,5,20v-2,9,-6,20,-13,35","w":998,"k":{"-":117,"\/":125,"\u201d":-26,"\u2019":-26,".":237,":":154,";":138,",":252,"z":100,"y":65,"x":70,"w":62,"v":69,"\u00fc":94,"\u00fa":94,"\u00f9":94,"u":94,"t":44,"s":115,"r":94,"q":131,"p":94,"\u00f6":153,"\u00f3":153,"\u00f2":153,"o":153,"\u00f1":94,"n":94,"m":94,"j":49,"\u00ef":-52,"\u00ed":70,"\u00ec":-40,"i":32,"g":142,"f":62,"\u00e9":147,"\u00e8":147,"e":147,"d":131,"\u00e7":159,"c":159,"\u00e4":134,"\u00e1":134,"\u00e0":134,"a":134,"Z":10,"S":17,"Q":66,"\u00d6":66,"\u00d3":66,"\u00d2":66,"O":66,"J":112,"G":67,"C":67,"\u00c4":152,"\u00c1":152,"\u00c0":152,"A":152}},"Z":{"d":"916,-72v0,13,-1,23,-2,32v-1,9,-3,17,-6,23v-3,6,-8,10,-12,13v-4,3,-9,4,-15,4r-764,0v-17,0,-31,-5,-42,-16v-11,-11,-16,-28,-16,-51r0,-37v0,-9,0,-17,1,-24v1,-7,4,-16,7,-24v3,-8,8,-18,14,-28v9,-16,9,-15,22,-36r597,-934r-590,0v-7,0,-12,-1,-17,-4v-5,-3,-8,-6,-11,-12v-3,-6,-6,-13,-7,-22v-1,-9,-2,-20,-2,-32v0,-13,1,-25,2,-34v1,-9,4,-17,7,-23v3,-6,6,-10,11,-13v5,-3,10,-4,17,-4r720,0v18,0,32,6,42,16v10,10,16,26,16,47r0,39v0,11,-1,20,-2,28v-1,8,-4,17,-7,26v-3,9,-7,18,-13,28v-6,10,-14,22,-23,35r-594,930r632,0v11,0,20,6,26,17v6,11,9,30,9,56","w":959,"k":{"-":45,"\u201d":-46,"\u2019":-46,"y":37,"w":38,"v":45,"q":18,"\u00f6":29,"\u00f3":29,"\u00f2":29,"o":29,"\u00ef":-55,"\u00ec":-17,"\u00e9":31,"\u00e8":31,"e":31,"d":18,"\u00e7":12,"c":12,"\u00e4":10,"\u00e1":10,"\u00e0":10,"a":10,"Y":7,"W":7,"Q":24,"\u00d6":24,"\u00d3":24,"\u00d2":24,"O":24,"G":24,"C":25,"\u00c4":11,"\u00c1":11,"\u00c0":11,"A":11}},"a":{"d":"831,-24v0,8,-3,14,-8,18v-5,4,-13,7,-22,9v-9,2,-23,3,-41,3v-17,0,-32,-1,-42,-3v-10,-2,-17,-5,-22,-9v-5,-4,-7,-10,-7,-18r0,-90v-39,42,-83,75,-131,98v-48,23,-100,35,-154,35v-47,0,-90,-7,-128,-19v-38,-12,-71,-30,-98,-53v-27,-23,-49,-52,-64,-86v-15,-34,-22,-73,-22,-116v0,-51,10,-95,31,-132v21,-37,50,-68,89,-93v39,-25,86,-44,142,-56v56,-12,119,-18,189,-18r124,0r0,-70v0,-35,-4,-65,-11,-92v-7,-27,-20,-48,-36,-66v-16,-18,-37,-31,-63,-40v-26,-9,-58,-14,-96,-14v-41,0,-77,4,-109,14v-32,10,-62,20,-86,32v-24,12,-44,22,-60,32v-16,10,-29,15,-37,15v-5,0,-10,-1,-14,-4v-4,-3,-8,-7,-11,-12v-3,-5,-5,-13,-6,-21v-1,-8,-2,-17,-2,-27v0,-17,2,-29,4,-39v2,-10,7,-19,16,-28v9,-9,25,-18,47,-30v22,-12,47,-22,76,-32v29,-10,60,-18,94,-24v34,-6,68,-10,103,-10v65,0,120,7,165,22v45,15,82,36,110,64v28,28,48,64,61,106v13,42,19,91,19,147r0,607xm667,-435r-141,0v-45,0,-85,3,-118,11v-33,8,-61,19,-83,34v-22,15,-39,33,-49,54v-10,21,-15,46,-15,73v0,47,15,83,45,111v30,28,71,42,124,42v43,0,83,-11,120,-33v37,-22,76,-56,117,-101r0,-191","w":981,"k":{"\u201c":37,"\u2018":37,"y":38,"x":19,"w":14,"v":34,"t":19,"f":12}},"\u00e0":{"d":"831,-24v0,8,-3,14,-8,18v-5,4,-13,7,-22,9v-9,2,-23,3,-41,3v-17,0,-32,-1,-42,-3v-10,-2,-17,-5,-22,-9v-5,-4,-7,-10,-7,-18r0,-90v-39,42,-83,75,-131,98v-48,23,-100,35,-154,35v-47,0,-90,-7,-128,-19v-38,-12,-71,-30,-98,-53v-27,-23,-49,-52,-64,-86v-15,-34,-22,-73,-22,-116v0,-51,10,-95,31,-132v21,-37,50,-68,89,-93v39,-25,86,-44,142,-56v56,-12,119,-18,189,-18r124,0r0,-70v0,-35,-4,-65,-11,-92v-7,-27,-20,-48,-36,-66v-16,-18,-37,-31,-63,-40v-26,-9,-58,-14,-96,-14v-41,0,-77,4,-109,14v-32,10,-62,20,-86,32v-24,12,-44,22,-60,32v-16,10,-29,15,-37,15v-5,0,-10,-1,-14,-4v-4,-3,-8,-7,-11,-12v-3,-5,-5,-13,-6,-21v-1,-8,-2,-17,-2,-27v0,-17,2,-29,4,-39v2,-10,7,-19,16,-28v9,-9,25,-18,47,-30v22,-12,47,-22,76,-32v29,-10,60,-18,94,-24v34,-6,68,-10,103,-10v65,0,120,7,165,22v45,15,82,36,110,64v28,28,48,64,61,106v13,42,19,91,19,147r0,607xm667,-435r-141,0v-45,0,-85,3,-118,11v-33,8,-61,19,-83,34v-22,15,-39,33,-49,54v-10,21,-15,46,-15,73v0,47,15,83,45,111v30,28,71,42,124,42v43,0,83,-11,120,-33v37,-22,76,-56,117,-101r0,-191xm564,-1134v5,7,8,14,9,19v1,5,0,10,-4,13v-4,3,-10,6,-18,8v-8,2,-19,3,-34,3v-13,0,-24,0,-33,-1v-9,-1,-17,-4,-23,-6v-6,-2,-11,-5,-16,-9v-5,-4,-9,-9,-14,-16r-181,-233v-5,-6,-8,-12,-9,-18v-1,-6,1,-10,6,-14v5,-4,12,-8,24,-10v12,-2,27,-4,46,-4v16,0,29,1,40,2v11,1,21,3,28,6v7,3,14,6,19,11v5,5,11,11,16,18","w":981,"k":{"\u201c":37,"\u2018":37,"y":38,"x":19,"w":14,"v":34,"t":19,"f":12}},"\u00e1":{"d":"568,-1365v4,-7,9,-13,14,-18v5,-5,12,-8,20,-11v8,-3,17,-5,28,-6v11,-1,25,-2,41,-2v19,0,33,2,45,4v12,2,20,6,25,10v5,4,7,8,6,14v-1,6,-4,12,-9,18r-181,233v-5,7,-11,12,-15,16v-4,4,-8,7,-14,9v-6,2,-13,5,-22,6v-9,1,-21,1,-34,1v-15,0,-26,-1,-35,-3v-9,-2,-15,-5,-19,-8v-4,-3,-5,-8,-4,-13v1,-5,4,-12,9,-19xm831,-24v0,8,-3,14,-8,18v-5,4,-13,7,-22,9v-9,2,-23,3,-41,3v-17,0,-32,-1,-42,-3v-10,-2,-17,-5,-22,-9v-5,-4,-7,-10,-7,-18r0,-90v-39,42,-83,75,-131,98v-48,23,-100,35,-154,35v-47,0,-90,-7,-128,-19v-38,-12,-71,-30,-98,-53v-27,-23,-49,-52,-64,-86v-15,-34,-22,-73,-22,-116v0,-51,10,-95,31,-132v21,-37,50,-68,89,-93v39,-25,86,-44,142,-56v56,-12,119,-18,189,-18r124,0r0,-70v0,-35,-4,-65,-11,-92v-7,-27,-20,-48,-36,-66v-16,-18,-37,-31,-63,-40v-26,-9,-58,-14,-96,-14v-41,0,-77,4,-109,14v-32,10,-62,20,-86,32v-24,12,-44,22,-60,32v-16,10,-29,15,-37,15v-5,0,-10,-1,-14,-4v-4,-3,-8,-7,-11,-12v-3,-5,-5,-13,-6,-21v-1,-8,-2,-17,-2,-27v0,-17,2,-29,4,-39v2,-10,7,-19,16,-28v9,-9,25,-18,47,-30v22,-12,47,-22,76,-32v29,-10,60,-18,94,-24v34,-6,68,-10,103,-10v65,0,120,7,165,22v45,15,82,36,110,64v28,28,48,64,61,106v13,42,19,91,19,147r0,607xm667,-435r-141,0v-45,0,-85,3,-118,11v-33,8,-61,19,-83,34v-22,15,-39,33,-49,54v-10,21,-15,46,-15,73v0,47,15,83,45,111v30,28,71,42,124,42v43,0,83,-11,120,-33v37,-22,76,-56,117,-101r0,-191","w":981,"k":{"\u201c":37,"\u2018":37,"y":38,"x":19,"w":14,"v":34,"t":19,"f":12}},"\u00e4":{"d":"411,-1217v0,37,-7,62,-20,75v-13,13,-38,20,-74,20v-36,0,-60,-7,-73,-20v-13,-13,-19,-37,-19,-72v0,-37,6,-63,19,-76v13,-13,38,-20,74,-20v37,0,61,7,74,20v13,13,19,38,19,73xm765,-1217v0,37,-7,62,-20,75v-13,13,-38,20,-74,20v-36,0,-60,-7,-73,-20v-13,-13,-19,-37,-19,-72v0,-37,6,-63,19,-76v13,-13,38,-20,74,-20v37,0,61,7,74,20v13,13,19,38,19,73xm831,-24v0,8,-3,14,-8,18v-5,4,-13,7,-22,9v-9,2,-23,3,-41,3v-17,0,-32,-1,-42,-3v-10,-2,-17,-5,-22,-9v-5,-4,-7,-10,-7,-18r0,-90v-39,42,-83,75,-131,98v-48,23,-100,35,-154,35v-47,0,-90,-7,-128,-19v-38,-12,-71,-30,-98,-53v-27,-23,-49,-52,-64,-86v-15,-34,-22,-73,-22,-116v0,-51,10,-95,31,-132v21,-37,50,-68,89,-93v39,-25,86,-44,142,-56v56,-12,119,-18,189,-18r124,0r0,-70v0,-35,-4,-65,-11,-92v-7,-27,-20,-48,-36,-66v-16,-18,-37,-31,-63,-40v-26,-9,-58,-14,-96,-14v-41,0,-77,4,-109,14v-32,10,-62,20,-86,32v-24,12,-44,22,-60,32v-16,10,-29,15,-37,15v-5,0,-10,-1,-14,-4v-4,-3,-8,-7,-11,-12v-3,-5,-5,-13,-6,-21v-1,-8,-2,-17,-2,-27v0,-17,2,-29,4,-39v2,-10,7,-19,16,-28v9,-9,25,-18,47,-30v22,-12,47,-22,76,-32v29,-10,60,-18,94,-24v34,-6,68,-10,103,-10v65,0,120,7,165,22v45,15,82,36,110,64v28,28,48,64,61,106v13,42,19,91,19,147r0,607xm667,-435r-141,0v-45,0,-85,3,-118,11v-33,8,-61,19,-83,34v-22,15,-39,33,-49,54v-10,21,-15,46,-15,73v0,47,15,83,45,111v30,28,71,42,124,42v43,0,83,-11,120,-33v37,-22,76,-56,117,-101r0,-191","w":981,"k":{"\u201c":37,"\u2018":37,"y":38,"x":19,"w":14,"v":34,"t":19,"f":12}},"b":{"d":"981,-487v0,78,-8,149,-25,211v-17,62,-43,115,-76,159v-33,44,-73,78,-121,101v-48,23,-103,35,-165,35v-29,0,-56,-3,-80,-9v-24,-6,-48,-14,-71,-27v-23,-13,-47,-29,-70,-48v-23,-19,-48,-43,-74,-70r0,110v0,5,-1,10,-4,14v-3,4,-7,7,-13,9v-6,2,-13,5,-22,6v-9,1,-21,2,-35,2v-13,0,-25,-1,-34,-2v-9,-1,-17,-4,-23,-6v-6,-2,-10,-5,-12,-9v-2,-4,-3,-9,-3,-14r0,-1336v0,-5,1,-10,3,-14v2,-4,8,-7,14,-10v6,-3,14,-5,25,-6v11,-1,24,-2,40,-2v17,0,30,1,41,2v11,1,19,3,25,6v6,3,10,6,13,10v3,4,4,9,4,14r0,539v27,-27,53,-50,78,-69v25,-19,49,-33,73,-45v24,-12,48,-21,72,-26v24,-5,49,-8,76,-8v65,0,121,13,167,39v46,26,85,61,114,105v29,44,50,94,63,153v13,59,20,121,20,186xm807,-468v0,-46,-4,-91,-11,-134v-7,-43,-19,-82,-36,-115v-17,-33,-40,-61,-69,-81v-29,-20,-64,-30,-107,-30v-21,0,-42,3,-63,9v-21,6,-42,16,-63,30v-21,14,-43,32,-66,54v-23,22,-48,50,-74,83r0,359v45,55,89,98,130,127v41,29,84,43,129,43v41,0,77,-10,106,-30v29,-20,53,-46,71,-79v18,-33,32,-71,40,-112v8,-41,13,-82,13,-124","w":1076,"k":{"\u201c":22,"\u2018":22,"z":28,"y":10,"x":41,"w":10,"v":10,"t":9,"s":10,"f":17}},"c":{"d":"800,-162v0,11,0,22,-1,30v-1,8,-1,14,-3,20v-2,6,-4,12,-6,16v-2,4,-8,10,-16,18v-8,8,-23,20,-43,32v-20,12,-42,22,-67,32v-25,10,-53,18,-82,24v-29,6,-60,9,-91,9v-65,0,-122,-11,-172,-32v-50,-21,-91,-52,-125,-93v-34,-41,-60,-92,-78,-152v-18,-60,-26,-128,-26,-206v0,-89,10,-164,32,-228v22,-64,52,-116,90,-157v38,-41,81,-71,132,-91v51,-20,107,-29,166,-29v29,0,57,3,84,8v27,5,51,12,74,21v23,9,42,19,60,30v18,11,31,21,39,29v8,8,14,14,17,19v3,5,5,10,7,16v2,6,3,14,4,22v1,8,1,18,1,30v0,26,-3,44,-9,54v-6,10,-13,16,-22,16v-10,0,-22,-5,-35,-16v-13,-11,-29,-24,-49,-37v-20,-13,-45,-26,-73,-37v-28,-11,-61,-16,-100,-16v-79,0,-140,31,-182,92v-42,61,-64,149,-64,265v0,58,5,109,16,153v11,44,28,80,49,109v21,29,48,51,79,65v31,14,66,22,106,22v38,0,71,-6,100,-18v29,-12,53,-26,74,-40v21,-14,40,-26,54,-38v14,-12,25,-18,33,-18v5,0,9,1,12,4v3,3,7,8,9,14v2,6,3,14,4,24v1,10,2,21,2,34","w":866,"k":{"\u00f6":17,"\u00f3":17,"\u00f2":17,"o":17,"\u00e4":17,"\u00e1":17,"\u00e0":17,"a":17}},"\u00e7":{"d":"800,-162v0,11,0,22,-1,30v-1,8,-1,14,-3,20v-2,6,-4,12,-6,16v-2,4,-8,10,-16,18v-8,8,-23,19,-44,32v-21,13,-48,26,-79,38v-31,12,-67,19,-106,24r26,58v14,30,25,54,31,74v6,20,9,39,9,56v0,25,-5,48,-14,68v-9,20,-23,36,-40,50v-17,14,-38,25,-62,32v-24,7,-51,11,-81,11v-23,0,-45,-2,-66,-5v-21,-3,-39,-6,-54,-9v-15,-3,-24,-6,-30,-9v-6,-3,-10,-6,-12,-10v-2,-4,-5,-9,-6,-15v-1,-6,-1,-14,-1,-24v0,-21,3,-34,7,-41v4,-7,11,-11,21,-11r124,0v21,0,38,-4,50,-13v12,-9,18,-23,18,-41v0,-9,-2,-20,-6,-33v-4,-13,-9,-26,-16,-41r-47,-104v-68,-13,-125,-40,-170,-81v-45,-41,-79,-94,-102,-160v-23,-66,-34,-143,-34,-232v0,-89,10,-164,32,-228v22,-64,52,-116,90,-157v38,-41,81,-71,132,-91v51,-20,107,-29,166,-29v29,0,57,3,84,8v27,5,51,12,74,21v23,9,42,19,60,30v18,11,31,21,39,29v8,8,14,14,17,19v3,5,5,10,7,16v2,6,3,14,4,22v1,8,1,18,1,30v0,26,-3,44,-9,54v-6,10,-13,16,-22,16v-10,0,-22,-5,-35,-16v-13,-11,-29,-24,-49,-37v-20,-13,-45,-26,-73,-37v-28,-11,-61,-16,-100,-16v-79,0,-140,31,-182,92v-42,61,-64,149,-64,265v0,58,5,109,16,153v11,44,28,80,49,109v21,29,48,51,79,65v31,14,66,22,106,22v38,0,71,-6,100,-18v29,-12,53,-26,74,-40v21,-14,40,-26,54,-38v14,-12,25,-18,33,-18v5,0,9,1,12,4v3,3,7,8,9,14v2,6,3,14,4,24v1,10,2,21,2,34","w":866,"k":{"\u00f6":17,"\u00f3":17,"\u00f2":17,"o":17,"\u00e4":17,"\u00e1":17,"\u00e0":17,"a":17}},"d":{"d":"924,-25v0,5,-2,10,-4,14v-2,4,-6,7,-12,9v-6,2,-13,5,-22,6v-9,1,-21,2,-34,2v-14,0,-26,-1,-35,-2v-9,-1,-17,-4,-23,-6v-6,-2,-10,-5,-13,-9v-3,-4,-4,-9,-4,-14r0,-119v-47,51,-96,91,-147,120v-51,29,-107,43,-168,43v-66,0,-122,-13,-169,-39v-47,-26,-84,-60,-113,-104v-29,-44,-51,-95,-64,-154v-13,-59,-20,-121,-20,-186v0,-77,8,-148,25,-210v17,-62,41,-115,74,-159v33,-44,73,-77,121,-101v48,-24,105,-36,168,-36v53,0,100,11,144,34v44,23,87,57,130,102r0,-523v0,-5,2,-9,4,-13v2,-4,6,-8,13,-10v7,-2,15,-4,25,-6v10,-2,24,-3,40,-3v17,0,30,1,41,3v11,2,19,4,25,6v6,2,11,6,14,10v3,4,4,8,4,13r0,1332xm758,-658v-45,-55,-88,-97,-130,-126v-42,-29,-85,-44,-130,-44v-42,0,-78,10,-107,30v-29,20,-53,46,-71,79v-18,33,-32,70,-40,111v-8,41,-13,83,-13,126v0,45,4,90,11,133v7,43,19,81,36,115v17,34,40,62,69,82v29,20,65,30,108,30v22,0,43,-3,63,-9v20,-6,42,-16,63,-30v21,-14,44,-33,67,-55v23,-22,48,-49,74,-82r0,-360","w":1076},"e":{"d":"921,-514v0,26,-6,45,-19,56v-13,11,-28,16,-45,16r-590,0v0,50,5,95,15,135v10,40,27,74,50,103v23,29,54,51,91,66v37,15,83,23,137,23v43,0,81,-4,114,-11v33,-7,62,-14,86,-23v24,-9,44,-16,60,-23v16,-7,28,-11,36,-11v5,0,8,1,12,3v4,2,7,6,9,11v2,5,4,11,5,19v1,8,1,19,1,31v0,9,0,17,-1,23v-1,6,-1,11,-2,16v-1,5,-4,10,-6,14v-2,4,-4,8,-8,12v-4,4,-15,10,-33,18v-18,8,-41,16,-70,24v-29,8,-61,16,-99,22v-38,6,-78,9,-121,9v-74,0,-139,-10,-195,-31v-56,-21,-102,-51,-140,-92v-38,-41,-67,-92,-86,-153v-19,-61,-29,-133,-29,-214v0,-77,10,-147,30,-209v20,-62,49,-113,87,-156v38,-43,83,-77,136,-100v53,-23,113,-34,179,-34v71,0,131,11,181,34v50,23,90,54,122,92v32,38,55,82,70,134v15,52,23,107,23,166r0,30xm755,-563v2,-87,-17,-155,-57,-204v-40,-49,-101,-74,-180,-74v-41,0,-76,8,-107,23v-31,15,-56,36,-77,61v-21,25,-37,55,-48,89v-11,34,-18,68,-19,105r488,0","w":1019,"k":{"\u201c":18,"\u2018":18,"z":20,"y":13,"x":31,"w":10,"v":10,"t":11,"f":18}},"\u00e8":{"d":"921,-514v0,26,-6,45,-19,56v-13,11,-28,16,-45,16r-590,0v0,50,5,95,15,135v10,40,27,74,50,103v23,29,54,51,91,66v37,15,83,23,137,23v43,0,81,-4,114,-11v33,-7,62,-14,86,-23v24,-9,44,-16,60,-23v16,-7,28,-11,36,-11v5,0,8,1,12,3v4,2,7,6,9,11v2,5,4,11,5,19v1,8,1,19,1,31v0,9,0,17,-1,23v-1,6,-1,11,-2,16v-1,5,-4,10,-6,14v-2,4,-4,8,-8,12v-4,4,-15,10,-33,18v-18,8,-41,16,-70,24v-29,8,-61,16,-99,22v-38,6,-78,9,-121,9v-74,0,-139,-10,-195,-31v-56,-21,-102,-51,-140,-92v-38,-41,-67,-92,-86,-153v-19,-61,-29,-133,-29,-214v0,-77,10,-147,30,-209v20,-62,49,-113,87,-156v38,-43,83,-77,136,-100v53,-23,113,-34,179,-34v71,0,131,11,181,34v50,23,90,54,122,92v32,38,55,82,70,134v15,52,23,107,23,166r0,30xm755,-563v2,-87,-17,-155,-57,-204v-40,-49,-101,-74,-180,-74v-41,0,-76,8,-107,23v-31,15,-56,36,-77,61v-21,25,-37,55,-48,89v-11,34,-18,68,-19,105r488,0xm591,-1134v5,7,8,14,9,19v1,5,0,10,-4,13v-4,3,-10,6,-18,8v-8,2,-19,3,-34,3v-13,0,-24,0,-33,-1v-9,-1,-17,-4,-23,-6v-6,-2,-11,-5,-16,-9v-5,-4,-9,-9,-14,-16r-181,-233v-5,-6,-8,-12,-9,-18v-1,-6,1,-10,6,-14v5,-4,12,-8,24,-10v12,-2,27,-4,46,-4v16,0,29,1,40,2v11,1,21,3,28,6v7,3,14,6,19,11v5,5,11,11,16,18","w":1019,"k":{"\u201c":18,"\u2018":18,"z":20,"y":13,"x":31,"w":10,"v":10,"t":11,"f":18}},"\u00e9":{"d":"593,-1365v4,-7,9,-13,14,-18v5,-5,11,-8,19,-11v8,-3,18,-5,29,-6v11,-1,25,-2,41,-2v19,0,34,2,46,4v12,2,19,6,24,10v5,4,7,8,6,14v-1,6,-4,12,-9,18r-181,233v-5,7,-10,12,-14,16v-4,4,-10,7,-16,9v-6,2,-13,5,-22,6v-9,1,-20,1,-33,1v-15,0,-26,-1,-35,-3v-9,-2,-14,-5,-18,-8v-4,-3,-5,-8,-4,-13v1,-5,3,-12,8,-19xm921,-514v0,26,-6,45,-19,56v-13,11,-28,16,-45,16r-590,0v0,50,5,95,15,135v10,40,27,74,50,103v23,29,54,51,91,66v37,15,83,23,137,23v43,0,81,-4,114,-11v33,-7,62,-14,86,-23v24,-9,44,-16,60,-23v16,-7,28,-11,36,-11v5,0,8,1,12,3v4,2,7,6,9,11v2,5,4,11,5,19v1,8,1,19,1,31v0,9,0,17,-1,23v-1,6,-1,11,-2,16v-1,5,-4,10,-6,14v-2,4,-4,8,-8,12v-4,4,-15,10,-33,18v-18,8,-41,16,-70,24v-29,8,-61,16,-99,22v-38,6,-78,9,-121,9v-74,0,-139,-10,-195,-31v-56,-21,-102,-51,-140,-92v-38,-41,-67,-92,-86,-153v-19,-61,-29,-133,-29,-214v0,-77,10,-147,30,-209v20,-62,49,-113,87,-156v38,-43,83,-77,136,-100v53,-23,113,-34,179,-34v71,0,131,11,181,34v50,23,90,54,122,92v32,38,55,82,70,134v15,52,23,107,23,166r0,30xm755,-563v2,-87,-17,-155,-57,-204v-40,-49,-101,-74,-180,-74v-41,0,-76,8,-107,23v-31,15,-56,36,-77,61v-21,25,-37,55,-48,89v-11,34,-18,68,-19,105r488,0","w":1019,"k":{"\u201c":18,"\u2018":18,"z":20,"y":13,"x":31,"w":10,"v":10,"t":11,"f":18}},"f":{"d":"646,-1295v0,13,-1,23,-2,31v-1,8,-2,13,-4,18v-2,5,-4,8,-7,10v-3,2,-6,2,-10,2v-5,0,-10,-1,-17,-4v-7,-3,-16,-6,-26,-10v-10,-4,-22,-7,-36,-10v-14,-3,-29,-5,-47,-5v-25,0,-46,4,-63,12v-17,8,-31,20,-42,37v-11,17,-18,39,-23,66v-5,27,-7,60,-7,99r0,98r201,0v5,0,9,1,13,3v4,2,7,6,10,12v3,6,6,13,8,22v2,9,2,19,2,32v0,24,-3,41,-9,52v-6,11,-14,16,-24,16r-201,0r0,789v0,5,-1,9,-4,13v-3,4,-8,7,-14,10v-6,3,-14,5,-25,6v-11,1,-24,2,-40,2v-16,0,-29,-1,-40,-2v-11,-1,-19,-3,-25,-6v-6,-3,-11,-6,-14,-10v-3,-4,-4,-8,-4,-13r0,-789r-127,0v-11,0,-19,-5,-24,-16v-5,-11,-8,-28,-8,-52v0,-13,1,-23,2,-32v1,-9,3,-16,6,-22v3,-6,6,-10,10,-12v4,-2,9,-3,14,-3r127,0r0,-93v0,-63,6,-117,18,-162v12,-45,29,-81,53,-110v24,-29,55,-50,91,-64v36,-14,79,-20,128,-20v23,0,46,2,68,6v22,4,39,9,51,14v12,5,20,10,24,14v4,4,7,10,10,16v3,6,4,13,5,22v1,9,2,20,2,33","w":625,"k":{")":-30,"-":55,"\u201d":-109,"\u201c":-25,"\u2019":-109,"\u2018":-25,".":136,",":126,"z":20,"y":-10,"w":-6,"v":-13,"s":27,"q":53,"\u00f6":43,"\u00f3":43,"\u00f2":43,"o":43,"g":60,"f":20,"\u00e9":51,"\u00e8":51,"e":51,"d":53,"\u00e7":45,"c":45,"\u00e4":40,"\u00e1":40,"\u00e0":40,"a":40}},"g":{"d":"905,-884v0,23,-3,40,-9,50v-6,10,-15,16,-25,16r-129,0v23,24,40,51,49,80v9,29,14,59,14,90v0,52,-8,98,-25,138v-17,40,-41,74,-72,102v-31,28,-67,48,-110,63v-43,15,-90,22,-142,22v-37,0,-71,-5,-104,-15v-33,-10,-59,-21,-77,-36v-12,12,-21,26,-29,41v-8,15,-12,33,-12,53v0,23,10,43,32,58v22,15,51,24,87,25r235,10v45,1,86,8,123,19v37,11,70,26,97,46v27,20,49,46,64,76v15,30,23,64,23,103v0,41,-9,81,-26,118v-17,37,-43,71,-79,99v-36,28,-82,50,-137,66v-55,16,-121,25,-196,25v-73,0,-134,-7,-185,-19v-51,-12,-93,-29,-126,-50v-33,-21,-56,-46,-71,-76v-15,-30,-22,-62,-22,-97v0,-22,3,-43,8,-64v5,-21,14,-40,25,-59v11,-19,24,-37,40,-54v16,-17,36,-33,57,-50v-33,-17,-57,-38,-73,-63v-16,-25,-23,-53,-23,-82v0,-41,8,-77,25,-109v17,-32,37,-61,62,-86v-21,-25,-37,-53,-49,-84v-12,-31,-18,-68,-18,-112v0,-51,9,-97,26,-138v17,-41,41,-75,72,-103v31,-28,68,-50,111,-65v43,-15,89,-22,140,-22v27,0,52,1,76,4v24,3,46,8,67,13r272,0v11,0,19,6,25,17v6,11,9,27,9,50xm647,-647v0,-61,-17,-109,-51,-143v-34,-34,-81,-52,-143,-52v-32,0,-59,5,-83,16v-24,11,-44,25,-60,44v-16,19,-26,40,-34,64v-8,24,-12,50,-12,77v0,59,16,106,50,140v34,34,81,51,142,51v33,0,61,-6,85,-16v24,-10,43,-24,59,-42v16,-18,28,-40,36,-64v8,-24,11,-49,11,-75xm730,66v0,-39,-16,-69,-48,-90v-32,-21,-74,-32,-128,-33r-233,-8v-21,17,-39,32,-53,47v-14,15,-24,30,-32,44v-8,14,-13,27,-16,40v-3,13,-5,27,-5,41v0,43,22,77,66,99v44,22,105,33,184,33v50,0,91,-5,125,-15v34,-10,61,-22,82,-38v21,-16,35,-34,44,-55v9,-21,14,-42,14,-65","w":964,"k":{"\/":-73,"\u201d":-83,"\u201c":-13,"\u2019":-83,"\u2018":-13,",":-23,"t":31,"q":19,"\u00f6":14,"\u00f3":14,"\u00f2":14,"o":14,"g":-19,"\u00e9":17,"\u00e8":17,"e":17,"d":19,"\u00e7":12,"c":12,"\u00e4":38,"\u00e1":38,"\u00e0":38,"a":38}},"h":{"d":"928,-25v0,5,-1,9,-4,13v-3,4,-7,7,-13,10v-6,3,-14,5,-25,6v-11,1,-24,2,-40,2v-17,0,-30,-1,-41,-2v-11,-1,-19,-3,-25,-6v-6,-3,-10,-6,-13,-10v-3,-4,-4,-8,-4,-13r0,-527v0,-51,-4,-93,-12,-124v-8,-31,-20,-58,-35,-81v-15,-23,-36,-40,-60,-52v-24,-12,-52,-18,-84,-18v-41,0,-83,15,-124,44v-41,29,-85,72,-130,129r0,629v0,5,-1,9,-4,13v-3,4,-7,7,-13,10v-6,3,-14,5,-25,6v-11,1,-24,2,-41,2v-16,0,-29,-1,-40,-2v-11,-1,-19,-3,-25,-6v-6,-3,-12,-6,-14,-10v-2,-4,-3,-8,-3,-13r0,-1336v0,-5,1,-10,3,-14v2,-4,8,-7,14,-10v6,-3,14,-5,25,-6v11,-1,24,-2,40,-2v17,0,30,1,41,2v11,1,19,3,25,6v6,3,10,6,13,10v3,4,4,9,4,14r0,539v47,-50,95,-88,143,-112v48,-24,96,-36,145,-36v60,0,111,10,152,30v41,20,74,48,99,82v25,34,44,74,55,120v11,46,16,100,16,165r0,548","w":1076,"k":{"\u201c":37,"\u2018":37,"y":38,"x":19,"w":14,"v":34,"t":19,"f":12}},"i":{"d":"318,-25v0,5,-1,9,-4,13v-3,4,-7,7,-13,10v-6,3,-14,5,-25,6v-11,1,-24,2,-41,2v-16,0,-29,-1,-40,-2v-11,-1,-19,-3,-25,-6v-6,-3,-12,-6,-14,-10v-2,-4,-3,-8,-3,-13r0,-900v0,-5,1,-9,3,-13v2,-4,8,-7,14,-10v6,-3,14,-5,25,-6v11,-1,24,-2,40,-2v17,0,30,1,41,2v11,1,19,3,25,6v6,3,10,6,13,10v3,4,4,8,4,13r0,900xm337,-1229v0,39,-7,65,-22,79v-15,14,-42,21,-81,21v-39,0,-66,-7,-80,-21v-14,-14,-21,-39,-21,-77v0,-39,7,-65,22,-79v15,-14,42,-21,81,-21v39,0,66,7,80,21v14,14,21,39,21,77","w":470,"k":{"\u201d":-22,"\u2019":-22}},"\u00ec":{"d":"318,-25v0,5,-1,9,-4,13v-3,4,-7,7,-13,10v-6,3,-14,5,-25,6v-11,1,-24,2,-41,2v-16,0,-29,-1,-40,-2v-11,-1,-19,-3,-25,-6v-6,-3,-12,-6,-14,-10v-2,-4,-3,-8,-3,-13r0,-900v0,-5,1,-9,3,-13v2,-4,8,-7,14,-10v6,-3,14,-5,25,-6v11,-1,24,-2,40,-2v17,0,30,1,41,2v11,1,19,3,25,6v6,3,10,6,13,10v3,4,4,8,4,13r0,900xm309,-1134v5,7,8,14,9,19v1,5,0,10,-4,13v-4,3,-10,6,-18,8v-8,2,-19,3,-34,3v-13,0,-24,0,-33,-1v-9,-1,-17,-4,-23,-6v-6,-2,-11,-5,-16,-9v-5,-4,-9,-9,-14,-16r-181,-233v-5,-6,-8,-12,-9,-18v-1,-6,1,-10,6,-14v5,-4,12,-8,24,-10v12,-2,27,-4,46,-4v16,0,29,1,40,2v11,1,21,3,28,6v7,3,14,6,19,11v5,5,11,11,16,18","w":470},"\u00ed":{"d":"318,-25v0,5,-1,9,-4,13v-3,4,-7,7,-13,10v-6,3,-14,5,-25,6v-11,1,-24,2,-41,2v-16,0,-29,-1,-40,-2v-11,-1,-19,-3,-25,-6v-6,-3,-12,-6,-14,-10v-2,-4,-3,-8,-3,-13r0,-900v0,-5,1,-9,3,-13v2,-4,8,-7,14,-10v6,-3,14,-5,25,-6v11,-1,24,-2,40,-2v17,0,30,1,41,2v11,1,19,3,25,6v6,3,10,6,13,10v3,4,4,8,4,13r0,900xm301,-1365v4,-7,9,-13,14,-18v5,-5,11,-8,19,-11v8,-3,18,-5,29,-6v11,-1,25,-2,41,-2v19,0,34,2,46,4v12,2,19,6,24,10v5,4,7,8,6,14v-1,6,-4,12,-9,18r-181,233v-5,7,-10,12,-14,16v-4,4,-10,7,-16,9v-6,2,-13,5,-22,6v-9,1,-20,1,-33,1v-15,0,-26,-1,-35,-3v-9,-2,-14,-5,-18,-8v-4,-3,-5,-8,-4,-13v1,-5,3,-12,8,-19","w":470,"k":{"\u201d":-73,"\u201c":-8,"\u2019":-73,"\u2018":-8}},"\u00ef":{"d":"172,-1217v0,36,-7,61,-20,75v-13,14,-37,20,-72,20v-35,0,-58,-7,-71,-20v-13,-13,-19,-37,-19,-72v0,-37,7,-62,20,-76v13,-14,36,-20,71,-20v35,0,58,7,71,20v13,13,20,38,20,73xm483,-1217v0,36,-7,61,-20,75v-13,14,-37,20,-72,20v-35,0,-58,-7,-71,-20v-13,-13,-19,-37,-19,-72v0,-37,6,-62,19,-76v13,-14,37,-20,71,-20v35,0,60,7,73,20v13,13,19,38,19,73xm318,-25v0,5,-1,9,-4,13v-3,4,-7,7,-13,10v-6,3,-14,5,-25,6v-11,1,-24,2,-41,2v-16,0,-29,-1,-40,-2v-11,-1,-19,-3,-25,-6v-6,-3,-12,-6,-14,-10v-2,-4,-3,-8,-3,-13r0,-900v0,-5,1,-9,3,-13v2,-4,8,-7,14,-10v6,-3,14,-5,25,-6v11,-1,24,-2,40,-2v17,0,30,1,41,2v11,1,19,3,25,6v6,3,10,6,13,10v3,4,4,8,4,13r0,900","w":470,"k":{"\u201d":-49,"\u201c":-38,"\u2019":-49,"\u2018":-38,"l":-13,"k":-13,"h":-13,"b":-13}},"j":{"d":"337,15v0,67,-5,120,-15,161v-10,41,-26,76,-47,104v-21,28,-49,50,-82,64v-33,14,-74,21,-121,21v-21,0,-39,-1,-54,-4v-15,-3,-27,-6,-35,-9v-8,-3,-14,-8,-17,-12v-3,-4,-5,-8,-6,-14v-1,-6,-2,-12,-2,-18v0,-6,-1,-13,-1,-22v0,-12,0,-22,1,-31v1,-9,4,-16,6,-21v2,-5,5,-10,8,-12v3,-2,6,-3,11,-3v4,0,11,1,23,3v12,2,26,2,41,2v22,0,41,-3,57,-10v16,-7,28,-17,38,-32v10,-15,17,-35,22,-59v5,-24,7,-60,7,-109r0,-939v0,-5,1,-9,4,-13v3,-4,7,-7,13,-10v6,-3,15,-5,26,-6v11,-1,24,-2,40,-2v16,0,29,1,40,2v11,1,20,3,26,6v6,3,10,6,13,10v3,4,4,8,4,13r0,940xm356,-1229v0,39,-7,65,-22,79v-15,14,-42,21,-81,21v-39,0,-65,-7,-79,-21v-14,-14,-21,-39,-21,-77v0,-39,7,-65,21,-79v14,-14,42,-21,81,-21v39,0,66,7,80,21v14,14,21,39,21,77","w":490,"k":{"\u201d":-22,"\u2019":-22}},"k":{"d":"892,-26v0,5,-1,10,-4,14v-3,4,-8,7,-14,10v-6,3,-15,5,-26,6v-11,1,-26,2,-43,2v-18,0,-33,-1,-45,-2v-12,-1,-21,-2,-29,-4v-8,-2,-14,-6,-19,-10v-5,-4,-10,-10,-14,-16r-380,-498r0,499v0,5,-1,9,-4,13v-3,4,-7,7,-13,10v-6,3,-14,5,-25,6v-11,1,-24,2,-41,2v-16,0,-29,-1,-40,-2v-11,-1,-19,-3,-25,-6v-6,-3,-12,-6,-14,-10v-2,-4,-3,-8,-3,-13r0,-1336v0,-5,1,-10,3,-14v2,-4,8,-7,14,-10v6,-3,14,-5,25,-6v11,-1,24,-2,40,-2v17,0,30,1,41,2v11,1,19,3,25,6v6,3,10,6,13,10v3,4,4,9,4,14r0,814r340,-374v5,-7,11,-13,17,-17v6,-4,13,-7,21,-10v8,-3,19,-5,30,-6v11,-1,25,-2,41,-2v17,0,31,1,42,2v11,1,20,2,27,4v7,2,13,6,16,10v3,4,4,8,4,14v0,8,-2,16,-6,24v-4,8,-12,17,-22,28r-326,326r366,475v9,11,14,20,18,27v4,7,6,14,6,20","w":931,"k":{"-":77,"u":26,"t":10,"s":19,"q":56,"\u00f6":69,"\u00f3":69,"\u00f2":69,"o":69,"\u00e9":66,"\u00e8":66,"e":66,"d":56,"\u00e7":48,"c":48,"\u00e4":35,"\u00e1":35,"\u00e0":35,"a":35}},"l":{"d":"318,-25v0,5,-1,9,-4,13v-3,4,-7,7,-13,10v-6,3,-14,5,-25,6v-11,1,-24,2,-41,2v-16,0,-29,-1,-40,-2v-11,-1,-19,-3,-25,-6v-6,-3,-12,-6,-14,-10v-2,-4,-3,-8,-3,-13r0,-1336v0,-5,1,-10,3,-14v2,-4,8,-7,14,-10v6,-3,14,-5,25,-6v11,-1,24,-2,40,-2v17,0,30,1,41,2v11,1,19,3,25,6v6,3,10,6,13,10v3,4,4,9,4,14r0,1336","w":470},"m":{"d":"1488,-25v0,5,-1,9,-4,13v-3,4,-7,7,-13,10v-6,3,-14,5,-25,6v-11,1,-24,2,-40,2v-17,0,-30,-1,-41,-2v-11,-1,-19,-3,-25,-6v-6,-3,-11,-6,-14,-10v-3,-4,-4,-8,-4,-13r0,-547v0,-38,-3,-73,-10,-104v-7,-31,-17,-58,-32,-81v-15,-23,-33,-40,-56,-52v-23,-12,-49,-18,-80,-18v-38,0,-76,15,-114,44v-38,29,-81,72,-127,129r0,629v0,5,-1,9,-4,13v-3,4,-7,7,-13,10v-6,3,-15,5,-26,6v-11,1,-24,2,-40,2v-15,0,-29,-1,-40,-2v-11,-1,-20,-3,-26,-6v-6,-3,-10,-6,-12,-10v-2,-4,-4,-8,-4,-13r0,-547v0,-38,-4,-73,-11,-104v-7,-31,-18,-58,-33,-81v-15,-23,-34,-40,-56,-52v-22,-12,-48,-18,-79,-18v-38,0,-76,15,-115,44v-39,29,-81,72,-126,129r0,629v0,5,-1,9,-4,13v-3,4,-7,7,-13,10v-6,3,-14,5,-25,6v-11,1,-24,2,-41,2v-16,0,-29,-1,-40,-2v-11,-1,-19,-3,-25,-6v-6,-3,-12,-6,-14,-10v-2,-4,-3,-8,-3,-13r0,-900v0,-5,1,-9,3,-13v2,-4,6,-7,12,-10v6,-3,14,-5,23,-6v9,-1,22,-2,37,-2v15,0,26,1,36,2v10,1,18,3,23,6v5,3,9,6,11,10v2,4,4,8,4,13r0,119v51,-57,100,-98,148,-124v48,-26,95,-40,144,-40v37,0,70,4,100,13v30,9,56,21,79,37v23,16,42,34,58,56v16,22,29,45,40,72v30,-33,58,-60,85,-83v27,-23,53,-41,78,-55v25,-14,50,-24,74,-30v24,-6,47,-10,71,-10v58,0,107,10,146,30v39,20,71,48,95,82v24,34,42,74,52,120v10,46,16,93,16,144r0,569","w":1636,"k":{"\u201c":37,"\u2018":37,"y":38,"x":19,"w":14,"v":34,"t":19,"f":12}},"n":{"d":"928,-25v0,5,-1,9,-4,13v-3,4,-7,7,-13,10v-6,3,-14,5,-25,6v-11,1,-24,2,-40,2v-17,0,-30,-1,-41,-2v-11,-1,-19,-3,-25,-6v-6,-3,-10,-6,-13,-10v-3,-4,-4,-8,-4,-13r0,-527v0,-51,-4,-93,-12,-124v-8,-31,-20,-58,-35,-81v-15,-23,-36,-40,-60,-52v-24,-12,-52,-18,-84,-18v-41,0,-83,15,-124,44v-41,29,-85,72,-130,129r0,629v0,5,-1,9,-4,13v-3,4,-7,7,-13,10v-6,3,-14,5,-25,6v-11,1,-24,2,-41,2v-16,0,-29,-1,-40,-2v-11,-1,-19,-3,-25,-6v-6,-3,-12,-6,-14,-10v-2,-4,-3,-8,-3,-13r0,-900v0,-5,1,-9,3,-13v2,-4,6,-7,12,-10v6,-3,14,-5,23,-6v9,-1,22,-2,37,-2v15,0,26,1,36,2v10,1,18,3,23,6v5,3,9,6,11,10v2,4,4,8,4,13r0,119v51,-57,102,-98,152,-124v50,-26,101,-40,152,-40v60,0,111,10,152,30v41,20,74,48,99,82v25,34,44,74,55,120v11,46,16,100,16,164r0,549","w":1076,"k":{"\u201c":37,"\u2018":37,"y":38,"x":19,"w":14,"v":34,"t":19,"f":12}},"\u00f1":{"d":"872,-1314v0,71,-17,125,-52,162v-35,37,-82,56,-141,56v-25,0,-47,-4,-66,-10v-19,-6,-37,-14,-53,-24v-16,-10,-31,-21,-44,-32v-13,-11,-27,-22,-40,-32v-13,-10,-25,-18,-38,-24v-13,-6,-26,-10,-41,-10v-27,0,-45,10,-56,29v-11,19,-16,45,-16,77v0,5,-1,8,-2,12v-1,4,-5,7,-9,9v-4,2,-10,3,-18,4v-8,1,-19,1,-32,1v-11,0,-20,-1,-27,-2v-7,-1,-13,-3,-17,-6v-4,-3,-8,-6,-10,-12v-2,-6,-3,-13,-3,-22v0,-66,17,-119,50,-158v33,-39,81,-59,143,-59v36,0,67,7,93,21v26,14,50,28,71,44v32,24,30,25,58,46v18,14,39,21,60,21v24,0,42,-9,54,-27v12,-18,19,-43,19,-78v0,-11,4,-18,11,-22v7,-4,22,-5,45,-5v25,0,41,2,49,7v8,5,12,17,12,34xm928,-25v0,5,-1,9,-4,13v-3,4,-7,7,-13,10v-6,3,-14,5,-25,6v-11,1,-24,2,-40,2v-17,0,-30,-1,-41,-2v-11,-1,-19,-3,-25,-6v-6,-3,-10,-6,-13,-10v-3,-4,-4,-8,-4,-13r0,-527v0,-51,-4,-93,-12,-124v-8,-31,-20,-58,-35,-81v-15,-23,-36,-40,-60,-52v-24,-12,-52,-18,-84,-18v-41,0,-83,15,-124,44v-41,29,-85,72,-130,129r0,629v0,5,-1,9,-4,13v-3,4,-7,7,-13,10v-6,3,-14,5,-25,6v-11,1,-24,2,-41,2v-16,0,-29,-1,-40,-2v-11,-1,-19,-3,-25,-6v-6,-3,-12,-6,-14,-10v-2,-4,-3,-8,-3,-13r0,-900v0,-5,1,-9,3,-13v2,-4,6,-7,12,-10v6,-3,14,-5,23,-6v9,-1,22,-2,37,-2v15,0,26,1,36,2v10,1,18,3,23,6v5,3,9,6,11,10v2,4,4,8,4,13r0,119v51,-57,102,-98,152,-124v50,-26,101,-40,152,-40v60,0,111,10,152,30v41,20,74,48,99,82v25,34,44,74,55,120v11,46,16,100,16,164r0,549","w":1076,"k":{"\u201c":37,"\u2018":37,"y":38,"x":19,"w":14,"v":34,"t":19,"f":12}},"o":{"d":"990,-485v0,73,-10,141,-29,203v-19,62,-49,114,-87,159v-38,45,-86,80,-144,105v-58,25,-124,37,-200,37v-74,0,-139,-11,-194,-33v-55,-22,-100,-54,-137,-96v-37,-42,-64,-93,-82,-153v-18,-60,-27,-128,-27,-204v0,-73,9,-141,28,-203v19,-62,48,-114,86,-159v38,-45,87,-79,144,-104v57,-25,124,-37,201,-37v74,0,138,11,193,33v55,22,101,54,138,96v37,42,64,93,82,153v18,60,28,128,28,203xm816,-474v0,-49,-5,-95,-14,-138v-9,-43,-23,-81,-44,-114v-21,-33,-49,-59,-84,-78v-35,-19,-79,-28,-132,-28v-49,0,-91,9,-126,26v-35,17,-63,42,-86,74v-23,32,-39,69,-50,112v-11,43,-17,91,-17,142v0,49,4,96,13,139v9,43,25,81,46,113v21,32,49,59,84,78v35,19,79,28,132,28v48,0,90,-9,125,-26v35,-17,64,-42,87,-73v23,-31,39,-69,50,-112v11,-43,16,-91,16,-143","w":1080,"k":{",":37,"z":27,"y":11,"x":40,"w":8,"v":9}},"\u00f2":{"d":"990,-485v0,73,-10,141,-29,203v-19,62,-49,114,-87,159v-38,45,-86,80,-144,105v-58,25,-124,37,-200,37v-74,0,-139,-11,-194,-33v-55,-22,-100,-54,-137,-96v-37,-42,-64,-93,-82,-153v-18,-60,-27,-128,-27,-204v0,-73,9,-141,28,-203v19,-62,48,-114,86,-159v38,-45,87,-79,144,-104v57,-25,124,-37,201,-37v74,0,138,11,193,33v55,22,101,54,138,96v37,42,64,93,82,153v18,60,28,128,28,203xm816,-474v0,-49,-5,-95,-14,-138v-9,-43,-23,-81,-44,-114v-21,-33,-49,-59,-84,-78v-35,-19,-79,-28,-132,-28v-49,0,-91,9,-126,26v-35,17,-63,42,-86,74v-23,32,-39,69,-50,112v-11,43,-17,91,-17,142v0,49,4,96,13,139v9,43,25,81,46,113v21,32,49,59,84,78v35,19,79,28,132,28v48,0,90,-9,125,-26v35,-17,64,-42,87,-73v23,-31,39,-69,50,-112v11,-43,16,-91,16,-143xm607,-1134v5,7,8,14,9,19v1,5,0,10,-4,13v-4,3,-10,6,-18,8v-8,2,-19,3,-34,3v-13,0,-24,0,-33,-1v-9,-1,-17,-4,-23,-6v-6,-2,-11,-5,-16,-9v-5,-4,-9,-9,-14,-16r-181,-233v-5,-6,-8,-12,-9,-18v-1,-6,1,-10,6,-14v5,-4,12,-8,24,-10v12,-2,27,-4,46,-4v16,0,29,1,40,2v11,1,21,3,28,6v7,3,14,6,19,11v5,5,11,11,16,18","w":1080,"k":{",":37,"z":27,"y":11,"x":40,"w":8,"v":9}},"\u00f3":{"d":"622,-1365v4,-7,9,-13,14,-18v5,-5,12,-8,20,-11v8,-3,17,-5,28,-6v11,-1,25,-2,41,-2v19,0,33,2,45,4v12,2,20,6,25,10v5,4,7,8,6,14v-1,6,-4,12,-9,18r-181,233v-5,7,-11,12,-15,16v-4,4,-8,7,-14,9v-6,2,-13,5,-22,6v-9,1,-21,1,-34,1v-15,0,-26,-1,-35,-3v-9,-2,-15,-5,-19,-8v-4,-3,-5,-8,-4,-13v1,-5,4,-12,9,-19xm990,-485v0,73,-10,141,-29,203v-19,62,-49,114,-87,159v-38,45,-86,80,-144,105v-58,25,-124,37,-200,37v-74,0,-139,-11,-194,-33v-55,-22,-100,-54,-137,-96v-37,-42,-64,-93,-82,-153v-18,-60,-27,-128,-27,-204v0,-73,9,-141,28,-203v19,-62,48,-114,86,-159v38,-45,87,-79,144,-104v57,-25,124,-37,201,-37v74,0,138,11,193,33v55,22,101,54,138,96v37,42,64,93,82,153v18,60,28,128,28,203xm816,-474v0,-49,-5,-95,-14,-138v-9,-43,-23,-81,-44,-114v-21,-33,-49,-59,-84,-78v-35,-19,-79,-28,-132,-28v-49,0,-91,9,-126,26v-35,17,-63,42,-86,74v-23,32,-39,69,-50,112v-11,43,-17,91,-17,142v0,49,4,96,13,139v9,43,25,81,46,113v21,32,49,59,84,78v35,19,79,28,132,28v48,0,90,-9,125,-26v35,-17,64,-42,87,-73v23,-31,39,-69,50,-112v11,-43,16,-91,16,-143","w":1080,"k":{",":37,"z":27,"y":11,"x":40,"w":8,"v":9}},"\u00f6":{"d":"457,-1217v0,37,-7,62,-20,75v-13,13,-38,20,-74,20v-36,0,-60,-7,-73,-20v-13,-13,-19,-37,-19,-72v0,-37,6,-63,19,-76v13,-13,38,-20,74,-20v37,0,61,7,74,20v13,13,19,38,19,73xm811,-1217v0,37,-7,62,-20,75v-13,13,-38,20,-74,20v-36,0,-60,-7,-73,-20v-13,-13,-19,-37,-19,-72v0,-37,6,-63,19,-76v13,-13,38,-20,74,-20v37,0,61,7,74,20v13,13,19,38,19,73xm990,-485v0,73,-10,141,-29,203v-19,62,-49,114,-87,159v-38,45,-86,80,-144,105v-58,25,-124,37,-200,37v-74,0,-139,-11,-194,-33v-55,-22,-100,-54,-137,-96v-37,-42,-64,-93,-82,-153v-18,-60,-27,-128,-27,-204v0,-73,9,-141,28,-203v19,-62,48,-114,86,-159v38,-45,87,-79,144,-104v57,-25,124,-37,201,-37v74,0,138,11,193,33v55,22,101,54,138,96v37,42,64,93,82,153v18,60,28,128,28,203xm816,-474v0,-49,-5,-95,-14,-138v-9,-43,-23,-81,-44,-114v-21,-33,-49,-59,-84,-78v-35,-19,-79,-28,-132,-28v-49,0,-91,9,-126,26v-35,17,-63,42,-86,74v-23,32,-39,69,-50,112v-11,43,-17,91,-17,142v0,49,4,96,13,139v9,43,25,81,46,113v21,32,49,59,84,78v35,19,79,28,132,28v48,0,90,-9,125,-26v35,-17,64,-42,87,-73v23,-31,39,-69,50,-112v11,-43,16,-91,16,-143","w":1080,"k":{",":37,"z":27,"y":11,"x":40,"w":8,"v":9}},"p":{"d":"981,-489v0,79,-8,149,-25,212v-17,63,-43,115,-76,159v-33,44,-73,78,-122,102v-49,24,-104,35,-167,35v-27,0,-51,-3,-74,-8v-23,-5,-45,-14,-67,-25v-22,-11,-43,-26,-64,-43v-21,-17,-44,-38,-68,-61r0,450v0,5,-1,10,-4,14v-3,4,-7,7,-13,10v-6,3,-14,5,-25,6v-11,1,-24,2,-41,2v-16,0,-29,-1,-40,-2v-11,-1,-19,-3,-25,-6v-6,-3,-12,-6,-14,-10v-2,-4,-3,-9,-3,-14r0,-1257v0,-6,1,-11,3,-15v2,-4,6,-6,12,-9v6,-3,14,-4,23,-5v9,-1,21,-2,34,-2v14,0,26,1,35,2v9,1,16,2,22,5v6,3,10,5,12,9v2,4,4,9,4,15r0,121v27,-28,54,-52,79,-73v25,-21,51,-37,77,-51v26,-14,51,-25,78,-32v27,-7,56,-10,86,-10v65,0,121,13,167,38v46,25,84,60,113,104v29,44,50,96,63,154v13,58,20,120,20,185xm807,-470v0,-46,-4,-91,-11,-134v-7,-43,-19,-81,-36,-114v-17,-33,-39,-60,-68,-80v-29,-20,-64,-30,-107,-30v-21,0,-42,4,-63,10v-21,6,-42,16,-63,30v-21,14,-44,32,-67,54v-23,22,-48,49,-74,82r0,358v45,55,88,98,129,127v41,29,83,44,128,44v41,0,77,-10,107,-30v30,-20,54,-47,72,-80v18,-33,31,-71,40,-112v9,-41,13,-83,13,-125","w":1076,"k":{"\u201c":22,"\u2018":22,"z":28,"y":10,"x":41,"w":10,"v":10,"t":9,"s":10,"f":17}},"q":{"d":"924,332v0,5,-1,10,-4,14v-3,4,-8,7,-14,10v-6,3,-14,5,-25,6v-11,1,-24,2,-40,2v-17,0,-31,-1,-41,-2v-10,-1,-18,-3,-25,-6v-7,-3,-11,-6,-13,-10v-2,-4,-4,-9,-4,-14r0,-461v-27,27,-53,50,-78,69v-25,19,-49,34,-73,46v-24,12,-49,21,-73,26v-24,5,-49,7,-75,7v-65,0,-121,-13,-167,-39v-46,-26,-83,-60,-112,-104v-29,-44,-51,-95,-64,-154v-13,-59,-20,-121,-20,-186v0,-77,8,-148,25,-210v17,-62,42,-115,75,-159v33,-44,74,-77,122,-101v48,-24,104,-36,167,-36v27,0,52,2,75,8v23,6,47,16,70,28v23,12,46,28,70,48v24,20,49,43,77,70r0,-109v0,-6,1,-11,4,-15v3,-4,7,-6,13,-9v6,-3,14,-4,23,-5v9,-1,21,-2,35,-2v13,0,25,1,34,2v9,1,16,2,22,5v6,3,10,5,12,9v2,4,4,9,4,15r0,1257xm758,-658v-45,-55,-88,-97,-130,-126v-42,-29,-85,-44,-130,-44v-42,0,-78,10,-107,30v-29,20,-53,46,-71,79v-18,33,-32,70,-40,111v-8,41,-13,83,-13,126v0,46,4,91,11,134v7,43,19,82,36,115v17,33,40,61,69,81v29,20,65,30,108,30v22,0,43,-3,63,-9v20,-6,42,-16,63,-30v21,-14,44,-33,67,-55v23,-22,48,-49,74,-82r0,-360","w":1076,"k":{"g":-10}},"r":{"d":"679,-866v0,15,0,27,-1,37v-1,10,-2,17,-4,23v-2,6,-5,11,-8,14v-3,3,-7,4,-12,4v-5,0,-12,-1,-20,-4v-8,-3,-16,-7,-26,-10v-10,-3,-20,-5,-32,-8v-12,-3,-25,-4,-39,-4v-17,0,-33,3,-49,10v-16,7,-32,18,-50,33v-18,15,-37,36,-56,61v-19,25,-41,56,-64,93r0,592v0,5,-1,9,-4,13v-3,4,-7,7,-13,10v-6,3,-14,5,-25,6v-11,1,-24,2,-41,2v-16,0,-29,-1,-40,-2v-11,-1,-19,-3,-25,-6v-6,-3,-12,-6,-14,-10v-2,-4,-3,-8,-3,-13r0,-900v0,-5,1,-9,3,-13v2,-4,6,-7,12,-10v6,-3,14,-5,23,-6v9,-1,22,-2,37,-2v15,0,26,1,36,2v10,1,18,3,23,6v5,3,9,6,11,10v2,4,4,8,4,13r0,131v25,-36,48,-65,70,-88v22,-23,42,-41,61,-54v19,-13,38,-21,57,-26v19,-5,39,-8,58,-8v9,0,19,1,30,2v11,1,22,2,34,5v12,3,22,6,32,9v10,3,17,7,21,10v4,3,7,7,8,10v1,3,2,6,3,11v1,5,2,12,2,21v0,9,1,21,1,36","w":714,"k":{"-":60,"\u201d":-91,"\u201c":-28,"\u2019":-91,"\u2018":-28,".":206,",":176,"y":-10,"w":-11,"v":-19,"s":35,"q":28,"\u00f6":33,"\u00f3":33,"\u00f2":33,"o":33,"g":28,"\u00e9":27,"\u00e8":27,"e":27,"d":28,"\u00e7":30,"c":30,"\u00e4":42,"\u00e1":42,"\u00e0":42,"a":42}},"s":{"d":"718,-270v0,46,-9,87,-26,123v-17,36,-41,66,-72,91v-31,25,-69,43,-112,56v-43,13,-91,19,-143,19v-32,0,-62,-2,-91,-7v-29,-5,-55,-12,-78,-20v-23,-8,-43,-16,-59,-24v-16,-8,-28,-15,-35,-22v-7,-7,-13,-16,-16,-28v-3,-12,-5,-28,-5,-49v0,-13,1,-23,2,-32v1,-9,3,-16,5,-21v2,-5,4,-10,8,-12v4,-2,8,-3,13,-3v7,0,19,4,33,13v14,9,31,19,52,30v21,11,46,21,75,30v29,9,62,13,99,13v28,0,53,-3,76,-9v23,-6,42,-14,59,-26v17,-12,30,-27,39,-45v9,-18,13,-39,13,-64v0,-25,-6,-47,-19,-64v-13,-17,-31,-33,-52,-46v-21,-13,-45,-25,-72,-35r-82,-33v-28,-11,-57,-25,-84,-39v-27,-14,-51,-31,-72,-52v-21,-21,-39,-45,-52,-74v-13,-29,-19,-63,-19,-103v0,-35,7,-69,21,-101v14,-32,34,-62,61,-86v27,-24,62,-43,103,-58v41,-15,88,-22,143,-22v24,0,48,2,72,6v24,4,46,9,65,15v19,6,36,12,50,19v14,7,23,14,30,19v7,5,12,10,14,14v2,4,5,8,6,13v1,5,1,12,2,19v1,7,2,16,2,27v0,11,-1,22,-2,30v-1,8,-2,15,-4,20v-2,5,-6,10,-9,12v-3,2,-7,3,-11,3v-6,0,-15,-4,-26,-11v-11,-7,-26,-16,-44,-24v-18,-8,-40,-16,-64,-23v-24,-7,-52,-11,-83,-11v-28,0,-53,4,-74,10v-21,6,-39,14,-53,26v-14,12,-23,26,-30,42v-7,16,-11,33,-11,52v0,26,7,48,20,66v13,18,31,33,52,46v21,13,46,25,73,36r84,33v28,11,56,24,84,38v28,14,52,31,73,51v21,20,38,44,51,72v13,28,20,61,20,100","w":801,"k":{"\u201c":27,"\u2018":27,"z":18,"y":37,"x":22,"w":10,"v":31,"t":23,"f":19}},"t":{"d":"621,-91v0,19,-1,35,-4,46v-3,11,-7,20,-12,25v-5,5,-13,10,-24,15v-11,5,-23,8,-37,11v-14,3,-28,6,-43,8v-15,2,-31,3,-46,3v-47,0,-87,-7,-120,-19v-33,-12,-61,-31,-82,-56v-21,-25,-37,-56,-47,-94v-10,-38,-14,-84,-14,-136r0,-526r-126,0v-10,0,-18,-5,-24,-16v-6,-11,-9,-28,-9,-52v0,-13,1,-23,3,-32v2,-9,3,-16,6,-22v3,-6,6,-10,10,-12v4,-2,10,-3,15,-3r125,0r0,-214v0,-5,2,-9,4,-13v2,-4,6,-7,12,-10v6,-3,15,-6,26,-7v11,-1,24,-2,40,-2v17,0,30,1,41,2v11,1,19,4,25,7v6,3,10,6,13,10v3,4,4,8,4,13r0,214r231,0v5,0,10,1,14,3v4,2,7,6,10,12v3,6,6,13,7,22v1,9,2,19,2,32v0,24,-3,41,-9,52v-6,11,-14,16,-24,16r-231,0r0,502v0,62,9,108,27,140v18,32,52,48,99,48v15,0,29,-1,41,-4v12,-3,23,-7,32,-10v9,-3,17,-7,24,-10v7,-3,13,-4,18,-4v3,0,7,0,10,2v3,2,4,5,6,10v2,5,4,11,5,19v1,8,2,18,2,30","w":686,"k":{"-":63,"\u201d":-71,"\u201c":-11,"\u2019":-71,"\u2018":-11,"t":29,"q":23,"\u00f6":20,"\u00f3":20,"\u00f2":20,"o":20,"\u00e9":22,"\u00e8":22,"e":22,"d":23,"\u00e7":25,"c":25,"\u00e4":25,"\u00e1":25,"\u00e0":25,"a":25}},"u":{"d":"924,-25v0,5,-2,9,-4,13v-2,4,-6,7,-12,10v-6,3,-14,5,-24,6v-10,1,-21,2,-35,2v-15,0,-27,-1,-37,-2v-10,-1,-18,-3,-24,-6v-6,-3,-9,-6,-11,-10v-2,-4,-3,-8,-3,-13r0,-119v-51,57,-102,98,-152,124v-50,26,-101,39,-152,39v-60,0,-111,-10,-152,-30v-41,-20,-74,-47,-99,-81v-25,-34,-44,-74,-55,-120v-11,-46,-16,-102,-16,-167r0,-546v0,-5,2,-9,4,-13v2,-4,6,-7,13,-10v7,-3,15,-5,26,-6v11,-1,24,-2,40,-2v16,0,29,1,40,2v11,1,19,3,25,6v6,3,11,6,14,10v3,4,4,8,4,13r0,524v0,53,4,95,12,127v8,32,18,58,34,80v16,22,36,40,60,52v24,12,52,19,84,19v41,0,83,-15,124,-44v41,-29,84,-72,130,-129r0,-629v0,-5,2,-9,4,-13v2,-4,6,-7,13,-10v7,-3,15,-5,25,-6v10,-1,24,-2,41,-2v16,0,29,1,40,2v11,1,19,3,25,6v6,3,11,6,14,10v3,4,4,8,4,13r0,900","w":1076},"\u00f9":{"d":"924,-25v0,5,-2,9,-4,13v-2,4,-6,7,-12,10v-6,3,-14,5,-24,6v-10,1,-21,2,-35,2v-15,0,-27,-1,-37,-2v-10,-1,-18,-3,-24,-6v-6,-3,-9,-6,-11,-10v-2,-4,-3,-8,-3,-13r0,-119v-51,57,-102,98,-152,124v-50,26,-101,39,-152,39v-60,0,-111,-10,-152,-30v-41,-20,-74,-47,-99,-81v-25,-34,-44,-74,-55,-120v-11,-46,-16,-102,-16,-167r0,-546v0,-5,2,-9,4,-13v2,-4,6,-7,13,-10v7,-3,15,-5,26,-6v11,-1,24,-2,40,-2v16,0,29,1,40,2v11,1,19,3,25,6v6,3,11,6,14,10v3,4,4,8,4,13r0,524v0,53,4,95,12,127v8,32,18,58,34,80v16,22,36,40,60,52v24,12,52,19,84,19v41,0,83,-15,124,-44v41,-29,84,-72,130,-129r0,-629v0,-5,2,-9,4,-13v2,-4,6,-7,13,-10v7,-3,15,-5,25,-6v10,-1,24,-2,41,-2v16,0,29,1,40,2v11,1,19,3,25,6v6,3,11,6,14,10v3,4,4,8,4,13r0,900xm597,-1134v5,7,8,14,9,19v1,5,0,10,-4,13v-4,3,-10,6,-18,8v-8,2,-19,3,-34,3v-13,0,-24,0,-33,-1v-9,-1,-17,-4,-23,-6v-6,-2,-11,-5,-16,-9v-5,-4,-9,-9,-14,-16r-181,-233v-5,-6,-8,-12,-9,-18v-1,-6,1,-10,6,-14v5,-4,12,-8,24,-10v12,-2,27,-4,46,-4v16,0,29,1,40,2v11,1,21,3,28,6v7,3,14,6,19,11v5,5,11,11,16,18","w":1076},"\u00fa":{"d":"620,-1365v4,-7,9,-13,14,-18v5,-5,12,-8,20,-11v8,-3,17,-5,28,-6v11,-1,25,-2,41,-2v19,0,33,2,45,4v12,2,20,6,25,10v5,4,7,8,6,14v-1,6,-4,12,-9,18r-181,233v-5,7,-11,12,-15,16v-4,4,-8,7,-14,9v-6,2,-13,5,-22,6v-9,1,-21,1,-34,1v-15,0,-26,-1,-35,-3v-9,-2,-15,-5,-19,-8v-4,-3,-5,-8,-4,-13v1,-5,4,-12,9,-19xm924,-25v0,5,-2,9,-4,13v-2,4,-6,7,-12,10v-6,3,-14,5,-24,6v-10,1,-21,2,-35,2v-15,0,-27,-1,-37,-2v-10,-1,-18,-3,-24,-6v-6,-3,-9,-6,-11,-10v-2,-4,-3,-8,-3,-13r0,-119v-51,57,-102,98,-152,124v-50,26,-101,39,-152,39v-60,0,-111,-10,-152,-30v-41,-20,-74,-47,-99,-81v-25,-34,-44,-74,-55,-120v-11,-46,-16,-102,-16,-167r0,-546v0,-5,2,-9,4,-13v2,-4,6,-7,13,-10v7,-3,15,-5,26,-6v11,-1,24,-2,40,-2v16,0,29,1,40,2v11,1,19,3,25,6v6,3,11,6,14,10v3,4,4,8,4,13r0,524v0,53,4,95,12,127v8,32,18,58,34,80v16,22,36,40,60,52v24,12,52,19,84,19v41,0,83,-15,124,-44v41,-29,84,-72,130,-129r0,-629v0,-5,2,-9,4,-13v2,-4,6,-7,13,-10v7,-3,15,-5,25,-6v10,-1,24,-2,41,-2v16,0,29,1,40,2v11,1,19,3,25,6v6,3,11,6,14,10v3,4,4,8,4,13r0,900","w":1076},"\u00fc":{"d":"455,-1217v0,37,-7,62,-20,75v-13,13,-38,20,-74,20v-36,0,-60,-7,-73,-20v-13,-13,-19,-37,-19,-72v0,-37,6,-63,19,-76v13,-13,38,-20,74,-20v37,0,61,7,74,20v13,13,19,38,19,73xm809,-1217v0,37,-7,62,-20,75v-13,13,-38,20,-74,20v-36,0,-60,-7,-73,-20v-13,-13,-19,-37,-19,-72v0,-37,6,-63,19,-76v13,-13,38,-20,74,-20v37,0,61,7,74,20v13,13,19,38,19,73xm924,-25v0,5,-2,9,-4,13v-2,4,-6,7,-12,10v-6,3,-14,5,-24,6v-10,1,-21,2,-35,2v-15,0,-27,-1,-37,-2v-10,-1,-18,-3,-24,-6v-6,-3,-9,-6,-11,-10v-2,-4,-3,-8,-3,-13r0,-119v-51,57,-102,98,-152,124v-50,26,-101,39,-152,39v-60,0,-111,-10,-152,-30v-41,-20,-74,-47,-99,-81v-25,-34,-44,-74,-55,-120v-11,-46,-16,-102,-16,-167r0,-546v0,-5,2,-9,4,-13v2,-4,6,-7,13,-10v7,-3,15,-5,26,-6v11,-1,24,-2,40,-2v16,0,29,1,40,2v11,1,19,3,25,6v6,3,11,6,14,10v3,4,4,8,4,13r0,524v0,53,4,95,12,127v8,32,18,58,34,80v16,22,36,40,60,52v24,12,52,19,84,19v41,0,83,-15,124,-44v41,-29,84,-72,130,-129r0,-629v0,-5,2,-9,4,-13v2,-4,6,-7,13,-10v7,-3,15,-5,25,-6v10,-1,24,-2,41,-2v16,0,29,1,40,2v11,1,19,3,25,6v6,3,11,6,14,10v3,4,4,8,4,13r0,900","w":1076},"v":{"d":"891,-927v0,3,-1,6,-1,9v0,3,0,6,-1,9v-1,3,-2,7,-3,11v-1,4,-2,8,-3,13r-307,855v-3,7,-6,13,-10,18v-4,5,-11,8,-20,11v-9,3,-20,4,-33,5v-13,1,-30,2,-50,2v-20,0,-37,-1,-50,-2v-13,-1,-25,-3,-33,-6v-8,-3,-14,-6,-19,-11v-5,-5,-8,-10,-11,-17r-306,-855v-3,-8,-4,-15,-6,-21v-2,-6,-4,-11,-4,-14r0,-7v0,-5,1,-10,4,-14v3,-4,8,-7,14,-9v6,-2,14,-4,24,-5v10,-1,24,-1,39,-1v19,0,35,1,47,2v12,1,20,2,26,5v6,3,11,6,14,10v3,4,6,9,9,15r254,742r4,12r3,-12r251,-742v1,-6,4,-11,7,-15v3,-4,8,-7,14,-10v6,-3,15,-4,26,-5v11,-1,26,-2,44,-2v15,0,28,0,38,1v10,1,18,2,24,5v6,3,10,6,12,10v2,4,3,8,3,13","w":925,"k":{"-":47,"\u201d":-60,"\u201c":-15,"\u2019":-60,"\u2018":-15,".":168,",":159,"z":26,"y":-12,"w":-12,"v":-12,"t":-10,"s":9,"q":20,"\u00f6":19,"\u00f3":19,"\u00f2":19,"o":19,"g":28,"f":-11,"\u00e9":20,"\u00e8":20,"e":20,"d":20,"\u00e7":25,"c":25,"\u00e4":30,"\u00e1":30,"\u00e0":30,"a":30}},"w":{"d":"1412,-927v0,5,-1,10,-2,17v-1,7,-4,15,-7,25r-265,855v-2,7,-6,13,-10,18v-4,5,-10,8,-18,11v-8,3,-18,4,-31,5v-13,1,-30,2,-50,2v-21,0,-38,-1,-52,-2v-14,-1,-25,-3,-33,-6v-8,-3,-15,-6,-19,-11v-4,-5,-7,-10,-9,-17r-189,-653r-2,-9r-2,9r-175,653v-2,7,-6,13,-10,18v-4,5,-10,8,-19,11v-9,3,-19,4,-33,5v-14,1,-31,2,-51,2v-21,0,-38,-1,-51,-2v-13,-1,-24,-3,-32,-6v-8,-3,-14,-6,-18,-11v-4,-5,-7,-10,-9,-17r-263,-855v-3,-10,-6,-18,-7,-25v-1,-7,-2,-12,-2,-17v0,-6,1,-11,4,-15v3,-4,7,-6,13,-8v6,-2,15,-4,26,-5v11,-1,24,-1,39,-1v19,0,34,1,45,2v11,1,20,2,26,4v6,2,10,6,13,10v3,4,5,10,7,16r217,742r2,9r2,-9r199,-742v1,-6,3,-12,6,-16v3,-4,8,-8,14,-10v6,-2,14,-3,24,-4v10,-1,24,-2,41,-2v16,0,29,1,39,2v10,1,19,2,25,4v6,2,10,6,13,10v3,4,5,9,6,14r215,744r2,9r1,-9r214,-742v1,-6,3,-12,6,-16v3,-4,8,-8,14,-10v6,-2,15,-3,26,-4v11,-1,26,-2,43,-2v16,0,29,0,39,1v10,1,16,2,22,5v6,3,10,6,12,9v2,3,4,8,4,14","w":1464,"k":{"-":43,"\u201d":-60,"\u201c":-15,"\u2019":-60,"\u2018":-15,".":131,",":176,"z":17,"y":-12,"w":-8,"v":-12,"t":-4,"s":18,"q":18,"\u00f6":19,"\u00f3":19,"\u00f2":19,"o":19,"g":18,"f":-6,"\u00e9":18,"\u00e8":18,"e":18,"d":18,"\u00e7":20,"c":20,"\u00e4":23,"\u00e1":23,"\u00e0":23,"a":23}},"x":{"d":"835,-44v5,9,8,18,8,24v0,6,-3,11,-9,15v-6,4,-17,7,-30,9v-13,2,-29,2,-50,2v-20,0,-36,-1,-48,-2v-12,-1,-21,-2,-28,-4v-7,-2,-12,-6,-16,-10v-4,-4,-6,-7,-9,-12r-216,-357r-215,357v-3,5,-6,8,-10,12v-4,4,-9,8,-16,10v-7,2,-16,3,-27,4v-11,1,-26,2,-45,2v-19,0,-36,0,-48,-2v-12,-2,-20,-5,-26,-9v-6,-4,-8,-9,-8,-15v0,-6,3,-15,9,-24r280,-439r-265,-423v-5,-9,-8,-18,-8,-24v0,-6,2,-12,8,-16v6,-4,17,-7,30,-8v13,-1,30,-2,51,-2v19,0,35,1,47,2v12,1,20,2,27,4v7,2,12,5,15,8v3,3,6,7,9,12r205,335r208,-335v3,-4,6,-8,9,-11v3,-3,7,-7,13,-9v6,-2,14,-3,24,-4v10,-1,25,-2,43,-2v19,0,35,1,47,2v12,1,22,4,28,8v6,4,9,8,8,15v-1,7,-4,15,-10,25r-263,418","w":887,"k":{"-":62,"\u201d":-51,"\u2019":-51,"u":20,"t":-6,"s":12,"q":44,"\u00f6":55,"\u00f3":55,"\u00f2":55,"o":55,"\u00e9":54,"\u00e8":54,"e":54,"d":44,"\u00e7":46,"c":46,"\u00e4":37,"\u00e1":37,"\u00e0":37,"a":37}},"y":{"d":"563,0r-120,331v-4,11,-15,19,-31,25v-16,6,-41,8,-74,8v-17,0,-31,0,-42,-2v-11,-2,-18,-5,-24,-9v-6,-4,-9,-9,-10,-16v-1,-7,1,-15,5,-24r124,-313v-6,-3,-12,-7,-17,-13v-5,-6,-9,-12,-11,-19r-321,-860v-5,-14,-8,-25,-8,-33v0,-8,3,-14,8,-19v5,-5,14,-8,26,-10v12,-2,28,-2,48,-2v20,0,36,1,47,2v11,1,20,2,27,5v7,3,11,6,14,11v3,5,7,12,10,21r257,722r3,0r248,-726v4,-13,8,-21,14,-25v6,-4,15,-6,26,-8v11,-2,28,-2,49,-2v19,0,34,0,46,2v12,2,21,5,27,10v6,5,8,11,8,19v0,8,-2,18,-6,30","w":927,"k":{"-":45,"\u201d":-62,"\u201c":-15,"\u2019":-62,"\u2018":-15,".":135,",":146,"z":17,"y":-10,"w":-8,"v":-12,"t":-10,"s":19,"q":24,"\u00f6":24,"\u00f3":24,"\u00f2":24,"o":24,"g":26,"f":-10,"\u00e9":25,"\u00e8":25,"e":25,"d":24,"\u00e7":26,"c":26,"\u00e4":31,"\u00e1":31,"\u00e0":31,"a":31}},"z":{"d":"727,-70v0,13,-1,23,-3,32v-2,9,-4,16,-7,22v-3,6,-6,10,-11,12v-5,2,-10,4,-15,4r-554,0v-14,0,-26,-5,-35,-14v-9,-9,-13,-25,-13,-47r0,-34v0,-9,1,-18,2,-25v1,-7,3,-15,6,-22v3,-7,6,-16,11,-24r17,-28r397,-618r-385,0v-11,0,-19,-5,-25,-16v-6,-11,-10,-29,-10,-54v0,-12,1,-23,2,-32v1,-9,3,-16,6,-22v3,-6,8,-10,12,-12v4,-2,9,-3,15,-3r516,0v7,0,13,1,19,3v6,2,11,5,15,10v4,5,7,11,9,18v2,7,4,17,4,28r0,32v0,9,-1,18,-2,26v-1,8,-3,16,-6,24v-3,8,-6,15,-11,24v-5,9,-10,18,-17,29r-395,618r422,0v5,0,11,1,15,3v4,2,7,7,10,12v3,5,6,13,8,22v2,9,3,19,3,32","w":809,"k":{"\u201d":-28,"\u2019":-28,"y":18,"w":22,"v":18,"u":10,"s":22,"q":46,"\u00f6":45,"\u00f3":45,"\u00f2":45,"o":45,"g":17,"f":10,"\u00e9":46,"\u00e8":46,"e":46,"d":46,"\u00e7":45,"c":45,"\u00e4":34,"\u00e1":34,"\u00e0":34,"a":34}},"\u00aa":{"d":"672,-645v0,4,-2,7,-4,10v-2,3,-5,5,-10,7v-5,2,-11,4,-19,5v-8,1,-18,2,-29,2v-13,0,-24,-1,-32,-2v-8,-1,-15,-3,-20,-5v-5,-2,-8,-5,-10,-8v-2,-3,-3,-6,-3,-10r0,-54r-2,0v-25,28,-55,50,-89,66v-34,16,-71,24,-111,24v-35,0,-66,-5,-94,-14v-28,-9,-51,-21,-71,-38v-20,-17,-35,-37,-46,-62v-11,-25,-16,-53,-16,-86v0,-35,8,-66,22,-92v14,-26,35,-49,62,-66v27,-17,59,-30,98,-38v39,-8,84,-13,135,-13r90,0r0,-41v0,-21,-2,-40,-7,-56v-5,-16,-13,-29,-24,-40v-11,-11,-25,-20,-43,-25v-18,-5,-40,-8,-67,-8v-26,0,-50,3,-72,9v-22,6,-42,14,-58,22v-16,8,-30,14,-41,20v-11,6,-19,10,-24,10v-11,0,-19,-6,-25,-18v-6,-12,-9,-28,-9,-49v0,-7,0,-15,1,-21v1,-6,3,-11,6,-15v3,-4,6,-8,11,-12v5,-4,17,-11,37,-20v20,-9,46,-19,81,-29v35,-10,74,-15,117,-15v49,0,90,6,124,17v34,11,61,27,82,48v21,21,36,46,46,76v10,30,14,64,14,101r0,420xm679,-407v0,23,-3,39,-9,48v-6,9,-14,14,-26,14r-495,0v-11,0,-20,-5,-26,-14v-6,-9,-9,-25,-9,-48v0,-23,3,-40,9,-49v6,-9,15,-14,26,-14r495,0v12,0,20,5,26,14v6,9,9,26,9,49xm523,-923r-86,0v-30,0,-56,2,-77,7v-21,5,-39,12,-52,21v-13,9,-24,21,-30,34v-6,13,-9,28,-9,45v0,31,10,54,29,71v19,17,44,25,77,25v15,0,29,-2,41,-5v12,-3,24,-9,35,-15v11,-6,23,-14,35,-24v12,-10,24,-22,37,-37r0,-122","w":824},"\u00ba":{"d":"761,-965v0,53,-7,101,-22,145v-15,44,-35,81,-63,112v-28,31,-63,55,-104,72v-41,17,-89,26,-142,26v-57,0,-106,-8,-148,-24v-42,-16,-75,-38,-102,-68v-27,-30,-47,-65,-60,-108v-13,-43,-20,-93,-20,-148v0,-52,7,-99,21,-142v14,-43,35,-81,63,-112v28,-31,62,-55,104,-72v42,-17,91,-26,148,-26v53,0,100,8,141,24v41,16,74,40,101,70v27,30,48,65,62,108v14,43,21,90,21,143xm724,-407v0,23,-2,39,-8,48v-6,9,-15,14,-27,14r-518,0v-11,0,-20,-5,-26,-14v-6,-9,-9,-25,-9,-48v0,-23,3,-40,9,-49v6,-9,15,-14,26,-14r518,0v12,0,21,5,27,14v6,9,8,26,8,49xm600,-958v0,-31,-2,-60,-8,-88v-6,-28,-15,-51,-28,-72v-13,-21,-30,-38,-52,-50v-22,-12,-49,-19,-82,-19v-29,0,-55,6,-76,17v-21,11,-38,26,-52,46v-14,20,-24,42,-31,70v-7,28,-10,59,-10,92v0,33,3,62,8,90v5,28,14,52,27,72v13,20,31,36,53,48v22,12,49,18,81,18v27,0,52,-5,73,-14v21,-9,39,-22,53,-40v14,-18,26,-42,33,-70v7,-28,11,-62,11,-100","w":865},"`":{"d":"455,-1134v5,7,8,14,9,19v1,5,0,10,-4,13v-4,3,-10,6,-18,8v-8,2,-19,3,-34,3v-13,0,-24,0,-33,-1v-9,-1,-17,-4,-23,-6v-6,-2,-11,-5,-16,-9v-5,-4,-9,-9,-14,-16r-181,-233v-5,-6,-8,-12,-9,-18v-1,-6,1,-10,6,-14v5,-4,12,-8,24,-10v12,-2,27,-4,46,-4v16,0,29,1,40,2v11,1,21,3,28,6v7,3,14,6,19,11v5,5,11,11,16,18","w":596},"!":{"d":"445,-373v0,5,-1,10,-3,14v-2,4,-7,7,-13,10v-6,3,-14,5,-23,6v-9,1,-21,2,-35,2v-14,0,-26,-1,-35,-2v-9,-1,-17,-3,-23,-6v-6,-3,-11,-6,-13,-10v-2,-4,-3,-9,-3,-14r-17,-954v-1,-8,0,-15,3,-21v3,-6,8,-11,15,-15v7,-4,16,-7,28,-9v12,-2,26,-2,45,-2v18,0,33,1,45,3v12,2,21,5,28,9v7,4,11,8,14,14v3,6,4,13,4,21xm476,-104v0,22,-1,40,-4,54v-3,14,-10,27,-18,36v-8,9,-19,14,-32,18v-13,4,-30,6,-51,6v-21,0,-37,-2,-51,-6v-14,-4,-25,-9,-33,-18v-8,-9,-14,-22,-17,-36v-3,-14,-4,-32,-4,-54v0,-22,1,-41,4,-56v3,-15,9,-26,17,-34v8,-8,19,-14,33,-18v14,-4,30,-6,51,-6v21,0,38,2,51,6v13,4,24,10,32,18v8,8,15,19,18,34v3,15,4,34,4,56","w":667},"\u00a1":{"d":"222,-809v0,-5,1,-10,3,-14v2,-4,7,-7,13,-10v6,-3,14,-5,23,-6v9,-1,21,-2,35,-2v14,-0,26,1,35,2v9,1,17,3,23,6v6,3,11,6,13,10v2,4,3,9,3,14r17,954v1,8,0,15,-3,21v-3,6,-8,11,-15,15v-7,4,-16,7,-28,9v-12,2,-26,2,-45,2v-18,-0,-33,-1,-45,-3v-12,-2,-21,-5,-28,-9v-7,-4,-11,-8,-14,-14v-3,-6,-4,-13,-4,-21xm191,-1078v0,-22,1,-40,4,-54v3,-14,10,-27,18,-36v8,-9,19,-14,32,-18v13,-4,30,-6,51,-6v21,0,37,2,51,6v14,4,25,9,33,18v8,9,14,22,17,36v3,14,4,32,4,54v0,22,-1,41,-4,56v-3,15,-9,26,-17,34v-8,8,-19,14,-33,18v-14,4,-30,6,-51,6v-21,-0,-38,-2,-51,-6v-13,-4,-24,-10,-32,-18v-8,-8,-15,-19,-18,-34v-3,-15,-4,-34,-4,-56","w":667},"?":{"d":"855,-991v0,59,-8,111,-25,156v-17,45,-40,84,-70,116v-30,32,-66,57,-108,75v-42,18,-89,29,-140,32r-7,241v0,10,-5,18,-17,23v-12,5,-31,7,-57,7v-14,0,-26,0,-36,-1v-10,-1,-18,-4,-24,-6v-6,-2,-10,-5,-13,-9v-3,-4,-4,-9,-4,-14r-6,-277v-1,-15,1,-28,4,-38v3,-10,7,-18,13,-24v6,-6,14,-10,23,-12v9,-2,20,-4,32,-4r22,0v43,0,80,-6,111,-20v31,-14,56,-32,75,-55v19,-23,32,-49,41,-80v9,-31,13,-63,13,-96v0,-38,-5,-73,-16,-105v-11,-32,-27,-59,-48,-82v-21,-23,-48,-40,-80,-53v-32,-13,-71,-19,-115,-19v-39,0,-72,4,-101,12v-29,8,-55,18,-76,28v-21,10,-38,19,-52,27v-14,8,-24,12,-31,12v-5,0,-9,-1,-13,-3v-4,-2,-6,-6,-9,-12v-3,-6,-5,-12,-6,-22v-1,-10,-2,-22,-2,-37v0,-16,1,-29,3,-37v2,-8,6,-16,13,-22v7,-6,20,-14,39,-24v19,-10,41,-20,68,-29v27,-9,58,-16,90,-22v32,-6,65,-9,100,-9v71,0,133,10,184,30v51,20,94,48,127,83v33,35,58,75,74,122v16,47,24,96,24,148xm539,-104v0,22,-2,40,-5,54v-3,14,-8,27,-16,36v-8,9,-18,14,-32,18v-14,4,-31,6,-51,6v-21,0,-39,-2,-52,-6v-13,-4,-25,-9,-33,-18v-8,-9,-13,-22,-16,-36v-3,-14,-5,-32,-5,-54v0,-22,2,-41,5,-56v3,-15,8,-26,16,-34v8,-8,20,-14,33,-18v13,-4,31,-6,52,-6v20,0,37,2,51,6v14,4,24,10,32,18v8,8,13,19,16,34v3,15,5,34,5,56","w":949,"k":{"\u201d":-35,"\u2019":-35}},"\u00bf":{"d":"94,-191v0,-59,8,-111,25,-156v17,-45,40,-84,70,-116v30,-32,66,-57,108,-75v42,-18,89,-29,140,-32r7,-241v0,-10,5,-18,17,-23v12,-5,31,-7,57,-7v14,-0,26,-0,36,1v10,1,18,4,24,6v6,2,10,5,13,9v3,4,4,9,4,14r6,277v1,15,-1,28,-4,38v-3,10,-7,18,-13,24v-6,6,-14,10,-23,12v-9,2,-20,4,-32,4r-22,-0v-43,-0,-80,6,-111,20v-31,14,-56,32,-75,55v-19,23,-32,49,-41,80v-9,31,-13,63,-13,96v0,38,5,73,16,105v11,32,27,59,48,82v21,23,48,40,80,53v32,13,71,19,115,19v39,-0,72,-4,101,-12v29,-8,55,-18,76,-28v21,-10,38,-19,52,-27v14,-8,24,-12,31,-12v5,-0,9,1,13,3v4,2,6,6,9,12v3,6,5,12,6,22v1,10,2,22,2,37v0,16,-1,29,-3,37v-2,8,-6,16,-13,22v-7,6,-20,14,-39,24v-19,10,-41,20,-68,29v-27,9,-58,16,-90,22v-32,6,-65,9,-100,9v-71,-0,-133,-10,-184,-30v-51,-20,-94,-48,-127,-83v-33,-35,-58,-75,-74,-122v-16,-47,-24,-96,-24,-148xm410,-1078v0,-22,2,-40,5,-54v3,-14,8,-27,16,-36v8,-9,18,-14,32,-18v14,-4,31,-6,51,-6v21,0,39,2,52,6v13,4,25,9,33,18v8,9,13,22,16,36v3,14,5,32,5,54v0,22,-2,41,-5,56v-3,15,-8,26,-16,34v-8,8,-20,14,-33,18v-13,4,-31,6,-52,6v-20,-0,-37,-2,-51,-6v-14,-4,-24,-10,-32,-18v-8,-8,-13,-19,-16,-34v-3,-15,-5,-34,-5,-56","w":949,"k":{"y":67,"w":73,"v":65,"j":-23,"f":48,"Y":111,"V":96,"T":103}},",":{"d":"371,-143v0,21,-1,40,-3,57v-2,17,-5,34,-10,49v-5,15,-10,30,-18,45v-8,15,-18,31,-29,48r-137,206v-3,5,-8,9,-12,12v-4,3,-10,6,-16,9v-6,3,-14,4,-22,5v-8,1,-18,2,-31,2v-11,0,-21,-1,-29,-2v-8,-1,-13,-2,-16,-4v-3,-2,-6,-6,-6,-10v0,-4,1,-9,4,-14r133,-275r0,-128v0,-18,1,-32,5,-43v4,-11,10,-19,18,-24v8,-5,18,-9,30,-11v12,-2,27,-3,44,-3v17,0,31,1,43,3v12,2,21,6,29,11v8,5,14,13,18,24v4,11,5,25,5,43","w":511,"k":{"\u2013":54,"\u201d":140,"\u201c":181,"\u2019":140,"\u2018":181,"t":43,"Y":147,"X":-10,"W":150,"V":139,"T":133,"J":-22,"\u00c4":-17,"\u00c1":-17,"\u00c0":-17,"A":-17}},";":{"d":"397,-800v0,21,-2,39,-5,54v-3,15,-8,27,-16,36v-8,9,-20,14,-33,18v-13,4,-30,6,-51,6v-21,0,-39,-2,-52,-6v-13,-4,-24,-9,-32,-18v-8,-9,-13,-21,-16,-36v-3,-15,-5,-33,-5,-54v0,-23,2,-41,5,-56v3,-15,8,-27,16,-36v8,-9,19,-16,32,-20v13,-4,31,-5,52,-5v21,0,38,1,51,5v13,4,25,11,33,20v8,9,13,21,16,36v3,15,5,33,5,56xm397,-143v0,21,-1,40,-3,57v-2,17,-6,34,-10,49v-4,15,-10,30,-18,45v-8,15,-17,31,-28,48r-136,204v-3,5,-8,10,-12,13v-4,3,-9,7,-15,9v-6,2,-13,4,-21,5v-8,1,-19,2,-31,2v-11,0,-21,0,-29,-1v-8,-1,-13,-3,-16,-6v-3,-3,-6,-6,-6,-10v0,-4,1,-8,4,-14r131,-273r0,-128v0,-18,2,-32,6,-43v4,-11,9,-19,17,-24v8,-5,18,-9,30,-11v12,-2,26,-3,43,-3v16,0,30,1,42,3v12,2,21,6,29,11v8,5,14,13,18,24v4,11,5,25,5,43","w":548},":":{"d":"397,-800v0,21,-2,39,-5,54v-3,15,-8,27,-16,36v-8,9,-20,14,-33,18v-13,4,-30,6,-51,6v-21,0,-39,-2,-52,-6v-13,-4,-24,-9,-32,-18v-8,-9,-13,-21,-16,-36v-3,-15,-5,-33,-5,-54v0,-23,2,-41,5,-56v3,-15,8,-27,16,-36v8,-9,19,-16,32,-20v13,-4,31,-5,52,-5v21,0,38,1,51,5v13,4,25,11,33,20v8,9,13,21,16,36v3,15,5,33,5,56xm397,-106v0,22,-2,40,-5,55v-3,15,-8,26,-16,35v-8,9,-20,16,-33,20v-13,4,-30,5,-51,5v-21,0,-39,-1,-52,-5v-13,-4,-24,-11,-32,-20v-8,-9,-13,-20,-16,-35v-3,-15,-5,-33,-5,-55v0,-22,2,-41,5,-56v3,-15,8,-26,16,-35v8,-9,19,-15,32,-19v13,-4,31,-6,52,-6v21,0,38,2,51,6v13,4,25,10,33,19v8,9,13,20,16,35v3,15,5,34,5,56","w":548},".":{"d":"366,-109v0,47,-8,79,-24,95v-16,16,-44,23,-85,23v-40,0,-68,-8,-83,-23v-15,-15,-23,-46,-23,-92v0,-47,7,-78,23,-94v16,-16,45,-24,86,-24v40,0,68,8,83,23v15,15,23,46,23,92","w":517,"k":{"-":113,"\u201d":150,"\u201c":195,"\u2019":150,"\u2018":195,"z":-10,"y":77,"w":68,"v":77,"t":44,"g":-22,"f":40,"Y":188,"W":144,"V":151,"\u00dc":18,"\u00da":18,"\u00d9":18,"U":18,"T":153,"Q":22,"\u00d6":22,"\u00d3":22,"\u00d2":22,"O":22,"J":-19,"G":38,"C":38,"\u00c4":-12,"\u00c1":-12,"\u00c0":-12,"A":-12}},"\u2026":{"d":"361,-108v0,47,-7,78,-23,94v-16,16,-44,23,-84,23v-39,0,-66,-8,-81,-23v-15,-15,-23,-46,-23,-91v0,-47,8,-77,24,-93v16,-16,43,-24,83,-24v39,0,66,8,81,23v15,15,23,46,23,91xm812,-108v0,47,-8,78,-23,94v-15,16,-43,23,-83,23v-39,0,-66,-8,-81,-23v-15,-15,-23,-46,-23,-91v0,-47,8,-77,24,-93v16,-16,43,-24,82,-24v39,0,67,8,82,23v15,15,22,46,22,91xm1264,-108v0,47,-8,78,-24,94v-16,16,-43,23,-83,23v-39,0,-66,-8,-81,-23v-15,-15,-23,-46,-23,-91v0,-47,7,-77,23,-93v16,-16,44,-24,84,-24v39,0,66,8,81,23v15,15,23,46,23,91","w":1414},"\u2018":{"d":"332,-1094r0,127v0,18,-2,32,-6,43v-4,11,-10,18,-18,24v-8,6,-18,10,-30,12v-12,2,-26,3,-43,3v-17,0,-31,-1,-43,-3v-12,-2,-22,-6,-30,-12v-8,-6,-12,-13,-16,-24v-4,-11,-6,-25,-6,-43v0,-20,1,-39,3,-56v2,-17,5,-34,10,-49v5,-15,11,-31,19,-46v8,-15,17,-31,28,-47r137,-206v3,-5,7,-10,11,-13v4,-3,10,-6,16,-8v6,-2,14,-5,22,-6v8,-1,18,-2,30,-2v12,0,22,1,30,2v8,1,12,2,16,4v4,2,6,6,6,10v0,4,-1,9,-4,14","w":511,"k":{".":191,",":190,"s":47,"q":93,"\u00f6":70,"\u00f3":70,"\u00f2":70,"o":70,"\u00ef":-69,"\u00ec":-77,"g":82,"\u00e9":87,"\u00e8":87,"e":87,"d":93,"\u00e7":95,"c":95,"\u00e4":50,"\u00e1":50,"\u00e0":50,"a":50,"Y":-43,"W":-10,"V":-56,"T":-91,"Q":22,"\u00d6":22,"\u00d3":22,"\u00d2":22,"O":22,"J":90,"G":36,"\u00c4":172,"\u00c1":172,"\u00c0":172,"A":172}},"\u2019":{"d":"371,-1318v0,21,-1,39,-3,56v-2,17,-5,34,-10,50v-5,16,-10,31,-18,46v-8,15,-18,30,-29,46r-137,206v-3,5,-8,9,-12,13v-4,4,-10,7,-16,9v-6,2,-14,5,-22,6v-8,1,-18,1,-31,1v-11,0,-21,0,-29,-1v-8,-1,-13,-4,-16,-6v-3,-2,-6,-5,-6,-9v0,-4,1,-9,4,-15r133,-275r0,-127v0,-17,1,-31,5,-42v4,-11,10,-19,18,-25v8,-6,18,-10,30,-12v12,-2,27,-3,44,-3v17,0,31,1,43,3v12,2,21,6,29,12v8,6,14,14,18,25v4,11,5,25,5,42","w":511,"k":{".":195,",":198,"z":25,"y":43,"x":47,"w":27,"v":27,"\u00fc":45,"\u00fa":45,"\u00f9":45,"u":45,"s":125,"r":45,"q":145,"p":45,"\u00f6":148,"\u00f3":148,"\u00f2":148,"o":148,"\u00f1":45,"n":45,"m":45,"j":10,"\u00ef":-43,"\u00ec":-62,"i":-8,"g":141,"\u00e9":145,"\u00e8":145,"e":145,"d":145,"\u00e7":148,"c":148,"\u00e4":149,"\u00e1":149,"\u00e0":149,"a":149,"Y":-13,"T":-15,"Q":77,"\u00d6":77,"\u00d3":77,"\u00d2":77,"O":77,"J":130,"G":77,"C":68,"\u00c4":264,"\u00c1":264,"\u00c0":264,"A":264}},"\u201c":{"d":"678,-1095r0,126v0,17,-2,31,-6,42v-4,11,-8,19,-16,25v-8,6,-18,10,-30,12v-12,2,-25,3,-41,3v-16,0,-30,-1,-41,-3v-11,-2,-21,-6,-28,-12v-7,-6,-12,-14,-16,-25v-4,-11,-6,-25,-6,-42v0,-20,1,-38,3,-55v2,-17,5,-34,9,-49v4,-15,10,-30,18,-45v8,-15,17,-31,28,-48r135,-205v3,-5,7,-10,11,-13v4,-3,9,-6,15,-8v6,-2,13,-5,21,-6v8,-1,19,-2,31,-2v11,0,20,1,27,2v7,1,13,2,16,4v3,2,6,6,6,10v0,4,-2,9,-5,14xm320,-1095r0,126v0,17,-2,31,-6,42v-4,11,-8,19,-16,25v-8,6,-18,10,-30,12v-12,2,-25,3,-41,3v-16,0,-30,-1,-41,-3v-11,-2,-21,-6,-28,-12v-7,-6,-12,-14,-16,-25v-4,-11,-6,-25,-6,-42v0,-20,1,-38,3,-55v2,-17,5,-34,9,-49v4,-15,10,-30,18,-45v8,-15,17,-31,28,-48r135,-205v3,-5,7,-10,11,-13v4,-3,9,-6,15,-8v6,-2,13,-5,21,-6v8,-1,19,-2,31,-2v11,0,20,1,27,2v7,1,12,2,16,4v4,2,5,6,5,10v0,4,-1,9,-4,14","w":857,"k":{".":191,",":190,"s":47,"q":93,"\u00f6":70,"\u00f3":70,"\u00f2":70,"o":70,"\u00ef":-69,"\u00ec":-77,"g":82,"\u00e9":87,"\u00e8":87,"e":87,"d":93,"\u00e7":95,"c":95,"\u00e4":50,"\u00e1":50,"\u00e0":50,"a":50,"Y":-43,"W":-10,"V":-56,"T":-91,"Q":22,"\u00d6":22,"\u00d3":22,"\u00d2":22,"O":22,"J":90,"G":36,"\u00c4":172,"\u00c1":172,"\u00c0":172,"A":172}},"\u201d":{"d":"721,-1319v0,21,-1,40,-3,57v-2,17,-6,33,-10,48v-4,15,-10,31,-18,46v-8,15,-16,30,-27,46r-136,205v-3,5,-7,9,-11,13v-4,4,-9,8,-15,10v-6,2,-13,4,-21,5v-8,1,-18,2,-30,2v-11,0,-19,0,-26,-1v-7,-1,-12,-3,-16,-6v-4,-3,-6,-6,-6,-10v0,-4,1,-9,3,-15r132,-273r0,-127v0,-17,2,-31,5,-42v3,-11,8,-19,16,-25v8,-6,18,-9,30,-11v12,-2,25,-3,42,-3v15,0,28,1,40,3v12,2,22,5,29,11v7,6,13,14,17,25v4,11,5,25,5,42xm363,-1319v0,21,-1,40,-3,57v-2,17,-6,33,-10,48v-4,15,-10,31,-18,46v-8,15,-16,30,-27,46r-136,205v-3,5,-7,9,-11,13v-4,4,-9,8,-15,10v-6,2,-13,4,-21,5v-8,1,-18,2,-30,2v-11,0,-20,0,-27,-1v-7,-1,-13,-3,-16,-6v-3,-3,-5,-6,-5,-10v0,-4,0,-9,3,-15r132,-273r0,-127v0,-17,2,-31,5,-42v3,-11,8,-19,16,-25v8,-6,18,-9,30,-11v12,-2,25,-3,42,-3v16,0,30,1,41,3v11,2,21,5,28,11v7,6,13,14,17,25v4,11,5,25,5,42","w":857,"k":{".":195,",":198,"z":25,"y":43,"x":47,"w":27,"v":27,"\u00fc":45,"\u00fa":45,"\u00f9":45,"u":45,"s":125,"r":45,"q":145,"p":45,"\u00f6":148,"\u00f3":148,"\u00f2":148,"o":148,"\u00f1":45,"n":45,"m":45,"j":10,"\u00ef":-43,"\u00ec":-62,"i":-8,"g":141,"\u00e9":145,"\u00e8":145,"e":145,"d":145,"\u00e7":148,"c":148,"\u00e4":149,"\u00e1":149,"\u00e0":149,"a":149,"Y":-13,"T":-15,"Q":77,"\u00d6":77,"\u00d3":77,"\u00d2":77,"O":77,"J":130,"G":77,"C":68,"\u00c4":264,"\u00c1":264,"\u00c0":264,"A":264}},"\u00bb":{"d":"699,-127v-3,5,-7,10,-11,13v-4,3,-8,6,-14,8v-6,2,-13,3,-22,4v-9,1,-21,1,-36,1v-17,0,-30,-1,-40,-3v-10,-2,-17,-5,-22,-9v-5,-4,-8,-9,-8,-14v0,-5,3,-11,7,-18r213,-374r-214,-373v-4,-7,-6,-12,-6,-18v0,-6,1,-12,6,-16v5,-4,12,-7,22,-9v10,-2,23,-3,40,-3v15,0,27,0,36,1v9,1,16,2,22,4v6,2,11,5,14,8v3,3,7,8,11,13r220,353v9,15,14,30,14,43v0,13,-5,28,-15,43xm333,-146v-3,5,-7,10,-10,13v-3,3,-8,5,-14,7v-6,2,-14,3,-23,4v-9,1,-22,1,-37,1v-17,0,-31,-1,-41,-3v-10,-2,-19,-4,-24,-8v-5,-4,-7,-7,-7,-12v0,-5,2,-11,7,-18r215,-355r-220,-361v-4,-7,-6,-12,-6,-17v0,-5,2,-9,7,-12v5,-3,14,-6,24,-8v10,-2,24,-3,41,-3v15,0,27,0,37,1v10,1,16,2,22,4v6,2,10,4,14,7v4,3,8,8,11,13r219,336v9,14,14,28,14,41v0,13,-5,26,-15,41","w":1049},"\/":{"d":"168,241v-3,9,-6,16,-10,21v-4,5,-10,8,-17,11v-7,3,-15,5,-25,6v-10,1,-21,2,-35,2v-17,0,-30,-1,-41,-3v-11,-2,-20,-6,-26,-10v-6,-4,-10,-10,-11,-16v-1,-6,0,-14,4,-23r605,-1659v3,-9,6,-15,10,-20v4,-5,10,-9,16,-12v6,-3,15,-5,25,-6v10,-1,22,-2,36,-2v17,0,30,2,41,4v11,2,19,5,25,9v6,4,10,9,11,16v1,7,0,14,-3,23","w":791,"k":{"s":39,"\u00f6":35,"\u00f3":35,"\u00f2":35,"o":35,"g":35,"\u00e9":37,"\u00e8":37,"e":37,"\u00e7":37,"c":37,"\u00e4":37,"\u00e1":37,"\u00e0":37,"a":37,"J":37,"\u00c4":71,"\u00c1":71,"\u00c0":71,"A":71}},"|":{"d":"549,333v0,5,-1,10,-3,14v-2,4,-7,7,-13,10v-6,3,-14,5,-24,6v-10,1,-23,2,-38,2v-15,0,-27,-1,-37,-2v-10,-1,-18,-3,-24,-6v-6,-3,-10,-6,-12,-10v-2,-4,-4,-9,-4,-14r0,-1736v0,-5,2,-9,4,-13v2,-4,6,-7,12,-10v6,-3,14,-5,24,-6v10,-1,22,-2,37,-2v15,0,28,1,38,2v10,1,18,3,24,6v6,3,11,6,13,10v2,4,3,8,3,13r0,1736","w":943},"\\":{"d":"783,223v4,11,6,20,6,27v0,7,-3,12,-8,15v-5,3,-14,6,-25,7v-11,1,-25,2,-43,2v-17,0,-31,-1,-42,-2v-11,-1,-19,-2,-25,-4v-6,-2,-12,-4,-15,-8v-3,-4,-6,-9,-8,-14r-605,-1659v-5,-11,-7,-20,-7,-27v0,-7,3,-12,8,-15v5,-3,14,-6,25,-7v11,-1,25,-1,43,-1v17,0,31,0,42,1v11,1,19,2,26,4v7,2,12,6,15,9v3,3,5,8,7,13","w":791},"-":{"d":"558,-505v0,26,-3,44,-9,54v-6,10,-15,15,-26,15r-418,0v-12,0,-21,-6,-27,-16v-6,-10,-9,-28,-9,-53v0,-25,3,-43,9,-53v6,-10,15,-15,27,-15r418,0v5,0,11,1,15,3v4,2,7,6,10,12v3,6,6,12,8,21v2,9,2,19,2,32","w":627,"k":{"y":20,"x":38,"v":18,"f":18,"Y":101}},"\u2010":{"d":"558,-505v0,26,-3,44,-9,54v-6,10,-15,15,-26,15r-418,0v-12,0,-21,-6,-27,-16v-6,-10,-9,-28,-9,-53v0,-25,3,-43,9,-53v6,-10,15,-15,27,-15r418,0v5,0,11,1,15,3v4,2,7,6,10,12v3,6,6,12,8,21v2,9,2,19,2,32","w":627},"\u00ad":{"d":"558,-505v0,26,-3,44,-9,54v-6,10,-15,15,-26,15r-418,0v-12,0,-21,-6,-27,-16v-6,-10,-9,-28,-9,-53v0,-25,3,-43,9,-53v6,-10,15,-15,27,-15r418,0v5,0,11,1,15,3v4,2,7,6,10,12v3,6,6,12,8,21v2,9,2,19,2,32","w":627},"\u2013":{"d":"1026,-566v0,25,-4,44,-10,56v-6,12,-15,17,-28,17r-961,0v-13,0,-22,-5,-28,-17v-6,-12,-9,-31,-9,-56v0,-25,3,-42,9,-54v6,-12,15,-18,28,-18r961,0v6,0,11,1,16,4v5,3,9,8,12,14v3,6,6,13,8,22v2,9,2,19,2,32","w":1020},"\u2014":{"d":"1705,-566v0,27,-3,46,-11,57v-8,11,-17,16,-27,16r-1479,0v-10,0,-19,-5,-27,-16v-8,-11,-12,-30,-12,-57v0,-25,4,-44,11,-56v7,-12,16,-17,28,-17r1479,0v11,0,20,6,27,17v7,11,11,30,11,56","w":1854},"_":{"d":"1024,298v0,23,-3,40,-8,51v-5,11,-14,16,-25,16r-963,0v-11,0,-20,-5,-26,-15v-6,-10,-9,-27,-9,-50v0,-23,3,-40,9,-51v6,-11,15,-17,26,-17r963,0v11,0,19,5,25,16v6,11,8,27,8,50","w":1020},"\u00b7":{"d":"366,-584v0,47,-8,78,-24,94v-16,16,-44,24,-85,24v-40,0,-68,-8,-83,-23v-15,-15,-23,-46,-23,-92v0,-47,7,-79,23,-95v16,-16,45,-23,86,-23v40,0,68,8,83,23v15,15,23,46,23,92","w":517},"\u2219":{"d":"366,-584v0,47,-8,78,-24,94v-16,16,-44,24,-85,24v-40,0,-68,-8,-83,-23v-15,-15,-23,-46,-23,-92v0,-47,7,-79,23,-95v16,-16,45,-23,86,-23v40,0,68,8,83,23v15,15,23,46,23,92","w":517},"(":{"d":"495,-1378v-63,134,-110,271,-141,412v-31,141,-47,283,-47,426v0,143,15,285,47,426v32,141,78,279,139,414v3,8,5,14,5,20v0,6,-1,10,-6,14v-5,4,-12,6,-22,8v-10,2,-22,3,-39,3v-12,0,-22,0,-31,-1v-9,-1,-16,-2,-22,-4v-6,-2,-12,-4,-16,-7v-4,-3,-7,-6,-9,-9v-36,-68,-68,-136,-95,-206v-27,-70,-50,-141,-69,-213v-19,-72,-33,-145,-42,-219v-9,-74,-14,-148,-14,-223v0,-75,5,-150,15,-223v10,-73,25,-146,44,-218v19,-72,43,-144,70,-214v27,-70,58,-139,92,-208v1,-3,3,-5,6,-7v3,-2,7,-4,12,-6v5,-2,13,-4,22,-5v9,-1,21,-1,36,-1v15,0,28,1,37,3v9,2,17,5,22,8v5,3,8,8,9,13v1,5,0,11,-3,17","w":621,"k":{"j":-63,"g":-10}},")":{"d":"487,-537v0,75,-5,149,-14,223v-9,74,-23,147,-42,219v-19,72,-42,143,-69,213v-27,70,-58,138,-94,206v-2,3,-5,6,-9,9v-4,3,-9,5,-15,7v-6,2,-14,3,-23,4v-9,1,-19,1,-31,1v-17,0,-30,-1,-40,-3v-10,-2,-18,-4,-22,-8v-4,-4,-6,-8,-6,-14v0,-6,3,-12,6,-20v61,-135,108,-273,139,-414v31,-141,47,-283,47,-426v0,-143,-16,-285,-47,-426v-31,-141,-78,-278,-141,-412v-3,-6,-4,-12,-3,-17v1,-5,4,-10,9,-13v5,-3,13,-6,22,-8v9,-2,22,-3,37,-3v14,0,26,0,35,1v9,1,16,3,22,5v6,2,10,4,13,6v3,2,5,4,6,7v69,137,122,278,161,422v39,144,59,291,59,441","w":621},"[":{"d":"539,260v0,22,-2,37,-7,46v-5,9,-13,14,-22,14r-256,0v-8,0,-16,-2,-23,-4v-7,-2,-14,-6,-20,-11v-6,-5,-11,-12,-15,-21v-4,-9,-5,-21,-5,-34r0,-1579v0,-13,1,-24,5,-33v4,-9,9,-16,15,-22v6,-6,13,-10,20,-12v7,-2,15,-3,23,-3r256,0v4,0,8,1,12,3v4,2,6,6,9,11v3,5,5,11,6,19v1,8,2,18,2,29v0,21,-2,37,-7,46v-5,9,-13,14,-22,14r-163,0r0,1476r163,0v4,0,8,1,12,3v4,2,6,5,9,10v3,5,5,12,6,20v1,8,2,17,2,28","w":628},"]":{"d":"438,250v0,13,-2,25,-6,34v-4,9,-8,16,-14,21v-6,5,-12,9,-20,11v-8,2,-16,4,-24,4r-255,0v-9,0,-16,-5,-21,-14v-5,-9,-8,-24,-8,-46v0,-11,1,-20,2,-28v1,-8,2,-15,5,-20v3,-5,5,-8,9,-10v4,-2,8,-3,13,-3r163,0r0,-1476r-163,0v-9,0,-16,-5,-21,-14v-5,-9,-8,-25,-8,-46v0,-11,1,-21,2,-29v1,-8,2,-14,5,-19v3,-5,5,-9,9,-11v4,-2,8,-3,13,-3r255,0v8,0,16,1,24,3v8,2,14,6,20,12v6,6,10,13,14,22v4,9,6,20,6,33r0,1579","w":628},"{":{"d":"580,257v0,11,-1,19,-2,27v-1,8,-3,14,-6,18v-3,4,-7,8,-11,11v-4,3,-8,4,-12,4v-12,3,-22,5,-31,5r-33,0v-45,0,-81,-8,-110,-22v-29,-14,-51,-36,-68,-64v-17,-28,-28,-63,-34,-106v-6,-43,-9,-99,-9,-170r0,-206v0,-45,-2,-82,-8,-110v-6,-28,-14,-53,-26,-74v-12,-21,-28,-37,-46,-50v-18,-13,-40,-21,-66,-24v-6,-1,-11,-4,-15,-6v-4,-2,-7,-5,-9,-10v-2,-5,-5,-10,-6,-18v-1,-8,-2,-17,-2,-27v0,-11,1,-20,2,-27v1,-7,2,-13,4,-18v2,-5,6,-9,10,-11v4,-2,9,-4,15,-5v49,-5,87,-30,111,-72v24,-42,36,-104,36,-187r0,-161v0,-70,4,-126,10,-169v6,-43,17,-78,34,-107v17,-29,40,-50,68,-64v28,-14,65,-22,109,-22r31,0v0,0,19,2,31,5v5,0,9,1,13,3v4,2,9,6,12,11v3,5,5,11,6,19v1,8,2,16,2,27v0,11,-1,21,-2,29v-1,8,-3,14,-6,19v-3,5,-8,9,-12,11v-4,2,-9,3,-14,3r-41,1v-16,0,-30,2,-41,8v-11,6,-21,18,-28,34v-7,16,-12,38,-16,67v-4,29,-5,73,-5,132r0,146v0,49,-3,91,-8,125v-5,34,-15,65,-29,92v-14,27,-31,50,-54,70v-23,20,-51,34,-86,41v35,7,63,19,86,39v23,20,40,44,54,72v14,28,24,58,29,92v5,34,8,76,8,125r0,190v0,59,2,102,5,131v3,29,9,52,16,68v7,16,15,27,26,33v11,6,25,9,40,9r42,1v6,0,11,1,16,3v5,2,9,5,12,10v3,5,5,12,6,20v1,8,2,17,2,29","w":644},"}":{"d":"613,-567v0,11,0,20,-1,27v-1,7,-4,13,-6,18v-2,5,-5,8,-9,10v-4,2,-9,4,-14,5v-28,3,-51,12,-70,29v-19,17,-33,39,-45,66v-12,27,-20,57,-25,90v-5,33,-7,73,-7,121r0,161v0,70,-3,126,-10,169v-7,43,-18,78,-35,107v-17,29,-39,50,-68,64v-29,14,-65,22,-108,22v-13,0,-23,0,-32,-1v-9,-1,-20,-2,-33,-4v-5,0,-9,-1,-13,-4v-4,-3,-7,-7,-10,-11v-3,-4,-5,-10,-7,-18v-2,-8,-3,-16,-3,-27v0,-11,1,-21,3,-29v2,-8,5,-14,8,-19v3,-5,6,-9,10,-11v4,-2,8,-3,13,-3r43,-1v16,0,30,-3,41,-9v11,-6,21,-17,28,-33v7,-16,13,-38,16,-67v3,-29,5,-73,5,-132r0,-146v0,-49,2,-93,8,-132v6,-39,16,-75,29,-108v13,-33,32,-62,55,-86v23,-24,51,-40,85,-47v-34,-7,-62,-17,-85,-32v-23,-15,-42,-34,-55,-56v-13,-22,-23,-48,-29,-77v-6,-29,-8,-69,-8,-118r0,-190v0,-59,-2,-103,-5,-131v-3,-28,-8,-52,-15,-68v-7,-16,-17,-27,-28,-33v-11,-6,-24,-9,-39,-9r-40,-1v-7,0,-14,-1,-19,-3v-5,-2,-9,-5,-12,-10v-3,-5,-6,-12,-7,-20v-1,-8,-2,-17,-2,-29v0,-11,1,-19,3,-27v2,-8,3,-14,6,-19v3,-5,8,-9,12,-11v4,-2,9,-3,15,-3v11,-3,21,-5,30,-5r32,0v44,0,80,8,109,22v29,14,51,36,68,64v17,28,28,63,34,106v6,43,10,99,10,170r0,206v0,45,2,79,8,102v6,23,14,43,26,58v12,15,28,28,46,36v18,8,40,14,66,17v5,0,10,1,14,4v4,3,7,6,10,11v3,5,5,11,6,18v1,7,1,16,1,27","w":644},"*":{"d":"841,-935v9,4,14,11,13,23v-1,12,-9,31,-24,57v-15,27,-28,43,-38,49v-10,6,-18,6,-26,0r-213,-155r28,262v2,10,-2,18,-13,23v-11,5,-31,8,-62,8v-31,0,-51,-3,-62,-8v-11,-5,-15,-13,-13,-23r28,-262r-212,155v-8,6,-17,6,-27,0v-10,-6,-23,-22,-38,-49v-15,-26,-24,-45,-24,-57v0,-12,5,-19,14,-23r241,-107r-241,-106v-9,-5,-14,-12,-14,-24v0,-12,9,-31,24,-57v15,-26,28,-42,38,-48v10,-6,19,-6,27,0r212,154r-28,-261v-2,-11,2,-19,13,-24v11,-5,31,-8,62,-8v31,0,51,3,62,8v11,5,15,13,13,24r-28,261r213,-154v8,-6,16,-6,26,0v10,6,23,22,38,49v15,25,23,44,24,56v1,12,-4,19,-13,24r-241,106","w":1020},"^":{"d":"900,-624v5,13,8,22,9,30v1,8,-2,14,-7,18v-5,4,-14,7,-26,8v-12,1,-27,1,-46,1v-17,0,-32,0,-44,-1v-12,-1,-21,-3,-28,-6v-7,-3,-12,-6,-16,-10v-4,-4,-7,-9,-10,-14r-232,-551r-3,3r-219,548v-2,5,-4,10,-8,14v-4,4,-10,7,-17,10v-7,3,-16,5,-27,6v-11,1,-26,1,-43,1v-19,0,-34,0,-45,-1v-11,-1,-19,-4,-24,-8v-5,-4,-8,-11,-8,-18v0,-7,4,-17,9,-30r284,-648v2,-6,6,-12,11,-16v5,-4,12,-7,20,-10v8,-3,19,-5,31,-6v12,-1,26,-2,42,-2v17,0,32,1,44,2v12,1,22,3,30,6v8,3,15,6,20,10v5,4,9,10,12,16","w":1020},"~":{"d":"962,-1037v-1,45,-9,85,-24,119v-15,34,-35,63,-58,86v-23,23,-50,40,-81,52v-31,12,-62,17,-94,17v-32,0,-60,-4,-83,-11v-23,-7,-44,-16,-62,-28v-18,-12,-34,-24,-48,-39v-14,-15,-26,-30,-38,-45v-18,-23,-19,-23,-36,-43v-11,-13,-23,-25,-35,-35v-12,-10,-25,-19,-39,-25v-14,-6,-30,-9,-48,-9v-23,0,-42,4,-58,14v-16,10,-28,23,-38,39v-10,16,-18,34,-22,55v-4,21,-6,43,-6,66v0,12,-6,20,-17,24v-11,4,-28,5,-49,5v-13,0,-24,-1,-32,-2v-8,-1,-15,-3,-20,-5v-5,-2,-8,-6,-10,-10v-2,-4,-3,-8,-3,-13r0,-27v0,-46,6,-87,19,-122v13,-35,30,-64,53,-88v23,-24,49,-41,81,-53v32,-12,67,-18,104,-18v31,0,58,4,82,11v24,7,45,16,63,27v18,11,34,25,48,39v14,14,27,29,39,44r34,43v11,13,23,25,35,35v12,10,25,19,39,25v14,6,30,9,49,9v22,0,41,-4,57,-13v16,-9,28,-21,38,-37v10,-16,17,-34,22,-55v5,-21,7,-45,7,-70v0,-11,6,-17,17,-21v11,-4,27,-6,48,-6v13,0,23,1,32,2v9,1,16,2,21,5v5,3,9,6,11,10v2,4,3,9,2,15r0,33","w":1020},"'":{"d":"290,-902v0,5,-2,10,-4,14v-2,4,-5,7,-10,10v-5,3,-12,5,-20,6v-8,1,-18,2,-30,2v-12,0,-22,-1,-30,-2v-8,-1,-15,-3,-20,-6v-5,-3,-8,-6,-10,-10v-2,-4,-4,-9,-4,-14r-23,-463v0,-5,2,-10,5,-14v3,-4,9,-7,16,-10v7,-3,15,-5,26,-6v11,-1,25,-2,40,-2v16,0,29,0,40,1v11,1,21,3,28,6v7,3,11,7,14,11v3,4,5,9,4,14","w":452},"\"":{"d":"643,-902v0,5,-1,10,-3,14v-2,4,-6,7,-11,10v-5,3,-11,5,-19,6v-8,1,-18,2,-30,2v-12,0,-22,-1,-30,-2v-8,-1,-15,-3,-20,-6v-5,-3,-8,-6,-10,-10v-2,-4,-3,-9,-3,-14r-23,-463v0,-5,2,-10,5,-14v3,-4,8,-7,15,-10v7,-3,15,-5,26,-6v11,-1,25,-2,40,-2v16,0,29,1,40,2v11,1,20,3,27,6v7,3,12,6,15,10v3,4,4,9,3,14xm288,-902v0,5,-1,10,-3,14v-2,4,-6,7,-11,10v-5,3,-12,5,-20,6v-8,1,-17,2,-29,2v-12,0,-22,-1,-30,-2v-8,-1,-14,-3,-19,-6v-5,-3,-9,-6,-11,-10v-2,-4,-3,-9,-3,-14r-23,-463v0,-5,2,-10,5,-14v3,-4,8,-7,15,-10v7,-3,16,-5,27,-6v11,-1,24,-2,39,-2v32,0,54,3,67,8v13,5,19,13,19,24","w":821},"&":{"d":"108,-341v0,-37,5,-72,15,-105v10,-33,26,-65,47,-96v21,-31,50,-61,84,-90v34,-29,75,-58,124,-87v-27,-36,-49,-69,-68,-98v-19,-29,-36,-57,-48,-82v-12,-25,-21,-50,-26,-73v-5,-23,-8,-46,-8,-69v0,-41,7,-81,21,-119v14,-38,36,-71,67,-100v31,-29,71,-51,120,-68v49,-17,108,-26,177,-26v59,0,110,6,153,19v43,13,78,31,106,54v28,23,50,52,64,85v14,33,22,69,22,110v0,39,-6,75,-19,108v-13,33,-33,64,-61,95v-28,31,-64,61,-108,91v-44,30,-96,63,-158,96v34,41,34,42,74,86r84,89v0,0,42,45,88,89r90,83v13,-18,25,-38,36,-61v11,-23,20,-48,28,-74v8,-26,14,-51,18,-78v4,-27,6,-54,6,-81r0,-36v0,-7,2,-13,4,-17v2,-4,6,-7,11,-10v5,-3,13,-6,23,-7v10,-1,24,-2,41,-2v15,0,27,0,37,1v10,1,19,2,26,4v7,2,11,7,14,12v3,5,5,11,5,20r0,25v0,37,-3,74,-9,110v-6,36,-15,71,-26,105v-11,34,-26,68,-42,99v-16,31,-34,60,-54,87v30,24,56,44,78,60v22,16,42,29,58,39v16,10,28,17,38,21v10,4,19,6,26,6v7,0,13,0,19,-1v6,-1,11,0,15,3v4,3,6,8,8,16v2,8,3,20,3,37v0,17,0,30,-1,40v-1,10,-2,18,-4,23v-2,5,-4,9,-8,12v-4,3,-11,6,-22,9v-11,3,-25,4,-42,4v-13,0,-28,-2,-44,-7v-16,-5,-35,-12,-56,-24v-21,-12,-46,-28,-74,-48v-28,-20,-62,-45,-100,-76v-28,23,-57,44,-88,63v-31,19,-65,35,-100,49v-35,14,-72,24,-110,32v-38,8,-79,12,-124,12v-42,0,-82,-4,-120,-11v-38,-7,-72,-17,-104,-31v-32,-14,-61,-31,-86,-52v-25,-21,-46,-44,-64,-70v-18,-26,-32,-56,-42,-89v-10,-33,-14,-68,-14,-106xm403,-1054v0,18,2,36,7,55v5,19,14,39,24,59v10,20,23,42,38,65v15,23,32,49,53,78v49,-27,90,-52,123,-75v33,-23,59,-46,79,-67v20,-21,34,-43,43,-64v9,-21,14,-44,14,-68v0,-19,-3,-37,-10,-55v-7,-18,-19,-34,-34,-48v-15,-14,-35,-24,-58,-32v-23,-8,-51,-12,-84,-12v-35,0,-66,5,-90,14v-24,9,-44,21,-60,36v-16,15,-27,32,-34,52v-7,20,-11,41,-11,62xm287,-358v0,35,5,66,17,95v12,29,29,54,52,75v23,21,51,36,85,48v34,12,73,18,118,18v27,0,54,-2,80,-8v26,-6,51,-14,75,-24v24,-10,46,-20,67,-34v21,-14,41,-29,59,-44r-104,-94v0,0,-51,-48,-99,-97r-93,-97v-30,-32,-56,-64,-81,-95v-33,21,-61,42,-83,63v-22,21,-40,43,-54,64v-14,21,-24,42,-30,63v-6,21,-9,44,-9,67","w":1397},"@":{"d":"1656,-769v0,45,-2,92,-8,139v-6,47,-15,93,-28,138v-13,45,-29,86,-50,126v-21,40,-46,75,-76,105v-30,30,-64,54,-104,71v-40,17,-86,25,-137,25v-27,0,-53,-3,-76,-9v-23,-6,-44,-16,-62,-28v-18,-12,-33,-27,-45,-46v-12,-19,-21,-41,-26,-66v-27,27,-53,49,-78,68v-25,19,-49,35,-73,47v-24,12,-48,21,-71,26v-23,5,-45,8,-67,8v-29,0,-54,-3,-76,-9v-22,-6,-42,-13,-59,-24v-17,-11,-31,-25,-43,-41v-12,-16,-22,-34,-30,-54v-8,-20,-14,-42,-17,-66v-3,-24,-5,-50,-5,-78v0,-29,2,-62,7,-99v5,-37,12,-75,23,-114v11,-39,25,-78,44,-116v19,-38,41,-70,69,-100v28,-30,61,-54,99,-72v38,-18,82,-28,133,-28v21,0,42,3,62,8v20,5,38,12,56,23v18,11,35,24,52,40v17,16,34,35,51,57r17,-88v3,-9,9,-16,18,-21v9,-5,27,-7,52,-7v12,0,22,1,30,2v8,1,15,4,20,6v5,2,8,5,10,8v2,3,1,7,0,12r-89,460v-11,58,-8,100,8,128v16,28,46,42,91,42v27,0,52,-6,74,-20v22,-14,41,-33,58,-56v17,-23,31,-51,42,-82v11,-31,21,-64,28,-98v7,-34,13,-69,16,-105v3,-36,5,-71,5,-104v0,-58,-7,-113,-23,-165v-16,-52,-43,-98,-81,-138v-38,-40,-89,-72,-153,-96v-64,-24,-143,-35,-239,-35v-79,0,-149,9,-210,26v-61,17,-115,41,-162,71v-47,30,-87,63,-120,102v-33,39,-62,80,-85,124v-23,44,-41,88,-55,134v-14,46,-25,90,-32,132v-7,42,-13,82,-15,119v-2,37,-3,69,-3,95v0,74,8,142,25,203v17,61,47,114,89,159v42,45,98,79,169,104v71,25,160,37,267,37v49,0,93,-3,132,-9v39,-6,74,-12,103,-18v29,-6,52,-12,70,-18v18,-6,30,-8,37,-8v4,0,8,2,11,4v3,2,4,5,6,10v2,5,3,12,4,20v1,8,1,17,1,28v0,9,-1,17,-1,23v0,6,-1,12,-2,17v-1,5,-4,9,-6,13v-2,4,-5,8,-9,11v-4,3,-16,8,-35,15v-19,7,-44,13,-76,20v-32,7,-71,12,-114,17v-43,5,-91,7,-143,7v-125,0,-231,-15,-317,-44v-86,-29,-156,-71,-210,-126v-54,-55,-94,-120,-118,-197v-24,-77,-36,-162,-36,-257v0,-35,2,-74,6,-119v4,-45,10,-93,20,-144v10,-51,25,-103,44,-156v19,-53,42,-105,72,-156v30,-51,66,-99,108,-144v42,-45,92,-84,150,-118v58,-34,124,-60,198,-79v74,-19,159,-29,253,-29v109,0,203,14,283,40v80,26,146,63,198,111v52,48,91,106,116,175v25,69,38,146,38,231xm1076,-704v-25,-43,-51,-75,-78,-98v-27,-23,-57,-34,-91,-34v-28,0,-53,6,-76,20v-23,14,-42,32,-59,54v-17,22,-30,46,-42,73v-12,27,-22,55,-29,84v-7,29,-12,56,-15,83v-3,27,-5,51,-5,72v0,49,9,87,27,114v18,27,47,40,89,40v16,0,32,-2,49,-8v17,-6,34,-14,53,-26v19,-12,38,-27,59,-46v21,-19,45,-42,70,-68","w":1831},"\u2122":{"d":"512,-1240v0,9,-1,16,-2,22v-1,6,-2,12,-4,16v-2,4,-4,8,-7,10v-3,2,-6,3,-9,3r-141,0r0,454v0,3,-1,6,-3,8v-2,2,-5,4,-10,6v-5,2,-10,4,-18,5v-8,1,-18,1,-30,1v-12,0,-22,0,-30,-1v-8,-1,-14,-3,-19,-5v-5,-2,-9,-4,-11,-6v-2,-2,-3,-5,-3,-8r0,-454r-138,0v-4,0,-7,-1,-10,-3v-3,-2,-5,-6,-7,-10v-2,-4,-5,-10,-6,-16v-1,-6,-1,-13,-1,-22v0,-9,0,-17,1,-24v1,-7,4,-14,6,-18v2,-4,4,-7,7,-9v3,-2,6,-3,10,-3r403,0v3,0,6,1,9,3v3,2,5,5,7,9v2,4,3,11,4,18v1,7,2,15,2,24xm1290,-735v0,3,0,6,-2,8v-2,2,-5,4,-9,6v-4,2,-10,4,-17,5v-7,1,-17,1,-28,1v-12,0,-21,0,-28,-1v-7,-1,-14,-3,-18,-5v-4,-2,-7,-4,-8,-6v-1,-2,-2,-5,-2,-8r0,-446r-2,0r-167,450v-1,5,-7,9,-17,12v-10,3,-25,4,-43,4v-16,0,-29,-1,-38,-4v-9,-3,-15,-7,-17,-12r-163,-450r-2,0r0,446v0,3,-1,6,-3,8v-2,2,-4,4,-8,6v-4,2,-11,4,-18,5v-7,1,-15,1,-26,1v-12,0,-22,0,-29,-1v-7,-1,-13,-3,-17,-5v-4,-2,-8,-4,-10,-6v-2,-2,-2,-5,-2,-8r0,-512v0,-15,4,-27,13,-35v9,-8,19,-12,32,-12r76,0v13,0,25,2,34,4v9,2,18,6,25,11v7,5,13,12,18,21v5,9,9,21,14,34r125,344r133,-344v9,-23,20,-40,32,-52v12,-12,30,-18,53,-18r74,0v13,0,25,4,33,12v8,8,12,20,12,35r0,512","w":1444},"\u20ac":{"d":"987,-155v0,23,-2,41,-6,52v-4,11,-10,21,-18,29v-8,8,-21,16,-38,27v-17,11,-39,21,-64,30v-25,9,-55,17,-88,23v-33,6,-69,10,-108,10v-68,0,-129,-10,-183,-29v-54,-19,-100,-48,-140,-85v-40,-37,-72,-83,-97,-138v-25,-55,-44,-117,-55,-188r-115,0v-11,0,-19,-6,-25,-16v-6,-10,-8,-27,-8,-50v0,-11,1,-22,2,-30v1,-8,3,-15,6,-20v3,-5,6,-10,10,-12v4,-2,8,-3,13,-3r108,0v-1,-13,-1,-25,-1,-39v0,-14,-1,-28,-1,-41v0,-16,1,-32,1,-49v0,-17,0,-32,1,-46r-108,0v-10,0,-18,-5,-23,-15v-5,-10,-8,-27,-8,-51v0,-11,0,-22,2,-30v2,-8,4,-15,7,-20v3,-5,6,-8,10,-11v4,-3,9,-4,14,-4r121,0v13,-68,31,-130,56,-185v25,-55,57,-103,96,-142v39,-39,86,-69,140,-90v54,-21,115,-32,186,-32v31,0,62,3,92,8v30,5,59,12,84,20v25,8,46,16,64,26v18,10,30,18,37,24v7,6,12,12,15,17v3,5,6,11,8,18v2,7,3,15,4,24v1,9,2,20,2,33v0,12,-1,22,-2,30v-1,8,-2,16,-4,21v-2,5,-6,9,-9,12v-3,3,-8,4,-13,4v-10,0,-22,-5,-36,-15v-14,-10,-33,-20,-54,-32v-21,-12,-48,-22,-78,-32v-30,-10,-66,-14,-108,-14v-44,0,-83,6,-116,20v-33,14,-62,34,-86,60v-24,26,-44,58,-60,96v-16,38,-28,81,-37,129r306,0v5,0,10,1,14,4v4,3,8,6,11,11v3,5,4,12,6,20v2,8,3,19,3,30v0,24,-3,41,-9,51v-6,10,-14,15,-25,15r-321,0r-3,42v0,0,-1,30,-1,47v0,15,0,29,1,43r3,43r321,0v5,0,10,1,14,3v4,2,8,7,11,12v3,5,4,12,6,20v2,8,3,19,3,30v0,23,-3,40,-9,50v-6,10,-14,16,-25,16r-309,0v7,47,18,88,34,125v16,37,36,68,62,93v26,25,57,43,92,56v35,13,75,19,122,19v43,0,81,-5,112,-16v31,-11,57,-22,79,-35v22,-13,39,-24,53,-35v14,-11,25,-16,34,-16v5,0,9,1,12,3v3,2,6,7,8,13v2,6,3,14,4,24v1,10,1,23,1,38"},"$":{"d":"932,-366v0,53,-10,102,-30,146v-20,44,-50,81,-87,112v-37,31,-83,56,-137,75v-54,19,-114,30,-181,33r-22,217v-1,4,-1,7,-3,11v-2,4,-5,8,-10,10v-5,2,-12,4,-20,5v-8,1,-19,2,-32,2v-15,0,-27,-1,-36,-3v-9,-2,-17,-4,-22,-6v-5,-2,-8,-6,-10,-10v-2,-4,-2,-9,-1,-14r23,-216v-32,-4,-62,-10,-89,-16v-27,-6,-52,-13,-73,-20v-21,-7,-39,-15,-54,-23v-15,-8,-27,-16,-34,-23v-7,-7,-11,-16,-14,-27v-3,-11,-4,-27,-4,-47v0,-15,1,-26,2,-36v1,-10,3,-18,6,-24v3,-6,6,-12,10,-14v4,-2,10,-3,16,-3v9,0,21,5,37,15v16,10,37,20,63,32v26,12,59,22,97,32v38,10,84,15,137,15v95,0,167,-19,216,-56v49,-37,73,-88,73,-152v0,-39,-9,-73,-27,-99v-18,-26,-42,-49,-72,-68v-30,-19,-62,-34,-100,-48r-116,-42v-39,-14,-76,-30,-114,-48v-38,-18,-72,-40,-101,-67v-29,-27,-53,-59,-71,-97v-18,-38,-27,-86,-27,-142v0,-45,8,-86,23,-125v15,-39,38,-72,69,-101v31,-29,69,-54,116,-72v47,-18,101,-29,163,-33r20,-202v1,-4,2,-7,4,-11v2,-4,4,-7,9,-10v5,-3,11,-5,19,-6v8,-1,19,-1,33,-1v15,0,27,1,37,2v10,1,17,4,22,7v5,3,8,6,9,10v1,4,2,9,2,14r-22,200v20,2,41,5,63,10v22,5,41,12,60,18v19,6,37,12,52,20v15,8,26,15,32,20v6,5,10,10,12,15v2,5,4,10,5,16v1,6,2,13,3,21v1,8,2,17,2,27v0,13,-1,24,-2,33v-1,9,-2,17,-4,22v-2,5,-5,9,-8,12v-3,3,-7,4,-12,4v-7,0,-19,-4,-35,-13v-16,-9,-37,-18,-61,-28v-24,-10,-52,-19,-84,-28v-32,-9,-68,-13,-107,-13v-45,0,-83,4,-115,13v-32,9,-56,21,-76,37v-20,16,-35,34,-44,56v-9,22,-13,46,-13,72v0,40,9,73,27,100v18,27,42,49,72,68v30,19,64,35,102,48r116,42v40,14,79,30,117,47v38,17,71,39,101,66v30,27,54,59,72,97v18,38,28,86,28,142"},"#":{"d":"983,-886v0,11,-1,21,-3,29v-2,8,-3,14,-6,19v-3,5,-8,10,-12,12v-4,2,-8,3,-13,3r-131,0r-40,332r116,0v10,0,18,5,24,15v6,10,10,26,10,49v0,11,-1,21,-3,29v-2,8,-4,15,-7,20v-3,5,-6,8,-10,10v-4,2,-9,4,-14,4r-133,0r-42,342v-1,5,-2,8,-4,12v-2,4,-6,8,-11,10v-5,2,-13,3,-22,4v-9,1,-22,2,-37,2v-15,0,-28,-1,-38,-2v-10,-1,-18,-2,-23,-4v-5,-2,-9,-6,-11,-10v-2,-4,-3,-7,-2,-12r42,-342r-278,0r-42,342v-1,5,-3,8,-5,12v-2,4,-5,8,-10,10v-5,2,-12,3,-21,4v-9,1,-22,2,-37,2v-16,0,-29,-1,-39,-2v-10,-1,-18,-2,-23,-4v-5,-2,-9,-6,-11,-10v-2,-4,-3,-7,-2,-12r41,-342r-116,0v-10,0,-18,-4,-24,-14v-6,-10,-10,-26,-10,-49v0,-11,1,-21,3,-29v2,-8,4,-15,7,-20v3,-5,6,-8,10,-11v4,-3,9,-4,14,-4r134,0r41,-332r-121,0v-10,0,-18,-5,-24,-15v-6,-10,-10,-26,-10,-47v0,-23,4,-40,10,-50v6,-10,14,-15,24,-15r136,0r41,-321v1,-5,3,-9,5,-13v2,-4,6,-6,12,-8v6,-2,13,-5,23,-6v10,-1,23,-2,38,-2v16,0,29,1,38,2v9,1,16,4,21,6v5,2,9,4,10,8v1,4,2,8,2,12r-42,322r278,0r39,-321v1,-5,2,-9,5,-13v3,-4,7,-6,12,-8v5,-2,13,-5,23,-6v10,-1,23,-2,39,-2v15,0,28,1,38,2v10,1,16,4,21,6v5,2,7,4,9,8v2,4,3,8,2,12r-40,322r115,0v10,0,19,6,25,16v6,10,9,26,9,48xm392,-823r-40,332r277,0r42,-332r-279,0","w":1020},"0":{"d":"967,-650v0,99,-7,190,-23,272v-16,82,-42,153,-78,212v-36,59,-84,104,-143,136v-59,32,-131,49,-217,49v-81,0,-150,-14,-206,-43v-56,-29,-100,-72,-134,-128v-34,-56,-58,-126,-72,-208v-14,-82,-22,-177,-22,-284v0,-99,8,-190,24,-272v16,-82,42,-153,78,-212v36,-59,83,-104,142,-136v59,-32,131,-49,216,-49v82,0,150,14,206,43v56,29,101,72,135,128v34,56,59,126,73,208v14,82,21,177,21,284xm791,-638v0,-65,-2,-123,-7,-174v-5,-51,-11,-97,-20,-136v-9,-39,-22,-74,-36,-102v-14,-28,-31,-52,-51,-70v-20,-18,-43,-32,-69,-40v-26,-8,-54,-12,-86,-12v-57,0,-103,13,-138,40v-35,27,-64,63,-84,110v-20,47,-34,101,-41,164v-7,63,-11,130,-11,202v0,97,5,178,15,246v10,68,25,123,47,166v22,43,50,74,84,93v34,19,74,29,122,29v37,0,70,-6,98,-18v28,-12,54,-30,74,-52v20,-22,37,-49,50,-80v13,-31,24,-66,32,-104v8,-38,13,-80,16,-124v3,-44,5,-90,5,-138"},"1":{"d":"927,-68v0,13,-1,23,-3,32v-2,9,-5,16,-8,21v-3,5,-8,9,-12,11v-4,2,-8,4,-13,4r-676,0v-5,0,-9,-2,-13,-4v-4,-2,-8,-6,-12,-11v-4,-5,-6,-12,-8,-21v-2,-9,-3,-19,-3,-32v0,-12,1,-22,3,-31v2,-9,5,-15,8,-21v3,-6,6,-11,10,-14v4,-3,10,-4,15,-4r270,0r0,-984r-250,149v-13,7,-23,11,-31,12v-8,1,-13,-1,-18,-5v-5,-4,-8,-11,-10,-21v-2,-10,-2,-23,-2,-38v0,-11,1,-21,2,-29v1,-8,2,-15,4,-20v2,-5,4,-10,8,-14v4,-4,9,-8,15,-12r298,-191v3,-2,6,-4,10,-5v4,-1,9,-3,15,-4v6,-1,13,-2,21,-2v8,0,18,-1,30,-1v16,0,29,1,40,2v11,1,19,3,25,5v6,2,10,6,12,10v2,4,3,7,3,11r0,1137r234,0v5,0,10,1,15,4v5,3,9,8,12,14v3,6,4,12,6,21v2,9,3,19,3,31"},"2":{"d":"924,-74v0,12,0,23,-2,32v-2,9,-5,18,-8,24v-3,6,-7,11,-12,14v-5,3,-10,4,-16,4r-715,0v-9,0,-18,-2,-25,-4v-7,-2,-13,-6,-18,-11v-5,-5,-8,-13,-10,-23v-2,-10,-4,-22,-4,-37v0,-13,1,-25,2,-35v1,-10,3,-18,6,-26v3,-8,7,-16,12,-24v5,-8,12,-15,20,-24r251,-266v58,-61,104,-116,139,-165v35,-49,63,-93,82,-133v19,-40,31,-76,37,-109v6,-33,9,-63,9,-92v0,-29,-5,-55,-14,-81v-9,-26,-22,-49,-40,-68v-18,-19,-40,-35,-67,-46v-27,-11,-57,-17,-92,-17v-41,0,-77,6,-109,17v-32,11,-62,24,-86,37v-24,13,-44,26,-60,37v-16,11,-29,17,-37,17v-5,0,-9,-1,-13,-4v-4,-3,-6,-7,-8,-13v-2,-6,-5,-14,-6,-24v-1,-10,-2,-22,-2,-36v0,-10,0,-19,1,-26v1,-7,1,-14,3,-19v2,-5,4,-10,7,-15v3,-5,8,-11,16,-18v8,-7,21,-16,41,-28v20,-12,44,-24,74,-36v30,-12,62,-21,98,-29v36,-8,74,-12,113,-12v63,0,118,9,165,27v47,18,85,41,116,72v31,31,55,66,70,107v15,41,23,84,23,130v0,41,-4,82,-11,123v-7,41,-22,86,-46,134v-24,48,-58,100,-103,158v-45,58,-104,126,-178,202r-205,214r563,0v5,0,10,1,15,4v5,3,10,8,14,14v4,6,6,13,8,22v2,9,2,20,2,32"},"3":{"d":"914,-370v0,59,-10,112,-31,160v-21,48,-50,89,-89,123v-39,34,-86,61,-143,79v-57,18,-121,27,-192,27v-43,0,-83,-4,-121,-11v-38,-7,-72,-14,-101,-24v-29,-10,-54,-20,-73,-30v-19,-10,-31,-18,-36,-23v-5,-5,-9,-9,-12,-14v-3,-5,-5,-10,-7,-17v-2,-7,-4,-14,-5,-24v-1,-10,-1,-22,-1,-36v0,-24,2,-41,7,-50v5,-9,11,-14,20,-14v6,0,18,5,36,16v18,11,40,22,68,34v28,12,59,24,96,35v37,11,79,16,124,16v44,0,83,-6,116,-17v33,-11,61,-27,84,-48v23,-21,40,-46,51,-74v11,-28,17,-59,17,-92v0,-37,-8,-70,-22,-99v-14,-29,-34,-55,-62,-76v-28,-21,-62,-38,-102,-49v-40,-11,-87,-17,-138,-17r-123,0v-5,0,-10,-1,-15,-3v-5,-2,-10,-7,-14,-12v-4,-5,-6,-12,-8,-21v-2,-9,-4,-20,-4,-34v0,-13,1,-23,3,-31v2,-8,5,-15,9,-20v4,-5,7,-10,12,-12v5,-2,10,-3,16,-3r113,0v44,0,84,-6,119,-17v35,-11,64,-28,88,-49v24,-21,43,-47,56,-77v13,-30,20,-62,20,-99v0,-27,-4,-53,-13,-77v-9,-24,-22,-45,-39,-63v-17,-18,-39,-33,-66,-43v-27,-10,-59,-15,-94,-15v-39,0,-74,5,-106,17v-32,12,-62,25,-87,38v-25,13,-46,26,-63,38v-17,12,-28,17,-35,17v-5,0,-9,-1,-13,-3v-4,-2,-6,-5,-8,-10v-2,-5,-5,-11,-6,-20v-1,-9,-1,-21,-1,-36v0,-10,0,-18,1,-26v1,-8,2,-14,4,-20v2,-6,4,-11,7,-16v3,-5,7,-10,13,-16v6,-6,20,-16,39,-28v19,-12,43,-24,71,-36v28,-12,61,-21,98,-29v37,-8,77,-12,120,-12v60,0,113,8,158,23v45,15,84,37,114,65v30,28,53,62,68,101v15,39,22,82,22,129v0,41,-5,78,-16,113v-11,35,-26,67,-47,94v-21,27,-46,49,-76,68v-30,19,-65,33,-104,40r0,2v45,5,86,16,123,34v37,18,68,39,95,66v27,27,48,58,63,94v15,36,22,73,22,114"},"4":{"d":"979,-368v0,22,-3,39,-10,52v-7,13,-16,19,-28,19r-146,0r0,272v0,5,-1,9,-4,13v-3,4,-7,7,-14,10v-7,3,-15,5,-26,6v-11,1,-24,2,-41,2v-16,0,-29,-1,-40,-2v-11,-1,-20,-3,-26,-6v-6,-3,-10,-6,-12,-10v-2,-4,-4,-8,-4,-13r0,-272r-534,0v-8,0,-15,-1,-20,-3v-5,-2,-10,-6,-14,-11v-4,-5,-8,-13,-10,-23v-2,-10,-2,-23,-2,-39v0,-13,0,-24,1,-34v1,-10,2,-19,4,-27v2,-8,5,-16,8,-24v3,-8,7,-16,12,-25r466,-786v3,-5,9,-10,15,-14v6,-4,14,-7,24,-10v10,-3,22,-4,37,-5v15,-1,32,-2,52,-2v22,0,41,0,57,2v16,2,30,4,40,7v10,3,18,7,23,11v5,4,8,9,8,15r0,826r146,0v11,0,20,5,27,17v7,12,11,30,11,54xm628,-1149r-2,0r-421,710r423,0r0,-710"},"5":{"d":"918,-416v0,69,-12,131,-35,185v-23,54,-56,100,-99,137v-43,37,-93,65,-152,84v-59,19,-125,29,-197,29v-40,0,-78,-3,-114,-9v-36,-6,-68,-12,-96,-20v-28,-8,-51,-17,-69,-25v-18,-8,-29,-14,-34,-19v-5,-5,-9,-9,-11,-13v-2,-4,-3,-9,-5,-15v-2,-6,-3,-12,-4,-21v-1,-9,-1,-19,-1,-31v0,-11,0,-21,1,-30v1,-9,3,-16,6,-22v3,-6,6,-10,10,-13v4,-3,7,-4,12,-4v7,0,17,5,31,13v14,8,33,16,57,26v24,10,53,19,88,28v35,9,76,13,124,13v45,0,86,-5,123,-16v37,-11,70,-27,97,-50v27,-23,48,-51,63,-85v15,-34,23,-77,23,-126v0,-41,-7,-78,-20,-110v-13,-32,-33,-57,-60,-78v-27,-21,-61,-38,-102,-48v-41,-10,-91,-15,-148,-15v-41,0,-76,2,-105,6v-29,4,-57,6,-82,6v-19,0,-32,-4,-40,-13v-8,-9,-12,-25,-12,-50r0,-527v0,-22,5,-38,15,-49v10,-11,26,-16,45,-16r573,0v5,0,11,1,16,4v5,3,9,8,12,14v3,6,6,14,8,23v2,9,2,20,2,33v0,24,-3,43,-10,56v-7,13,-16,20,-28,20r-483,0r0,363v23,-3,47,-5,71,-6v24,-1,53,-1,85,-1v74,0,139,8,194,26v55,18,102,44,139,76v37,32,65,71,84,117v19,46,28,97,28,153"},"6":{"d":"957,-419v0,57,-9,112,-26,165v-17,53,-44,100,-80,140v-36,40,-82,72,-137,96v-55,24,-121,37,-196,37v-54,0,-102,-7,-143,-20v-41,-13,-77,-32,-108,-57v-31,-25,-57,-55,-77,-91v-20,-36,-36,-77,-48,-123v-12,-46,-22,-96,-27,-151v-5,-55,-8,-113,-8,-176v0,-55,3,-111,9,-168v6,-57,17,-111,32,-164v15,-53,36,-103,62,-149v26,-46,60,-86,100,-120v40,-34,87,-62,142,-82v55,-20,120,-30,193,-30v25,0,50,1,75,4v25,3,49,7,70,12v21,5,39,11,54,17v15,6,24,11,29,15v5,4,9,8,11,12v2,4,4,9,5,14v1,5,2,10,3,16v1,6,1,15,1,24v0,12,-1,22,-1,31v0,9,-2,16,-4,21v-2,5,-4,9,-8,12v-4,3,-9,4,-15,4v-7,0,-17,-2,-30,-7v-13,-5,-28,-9,-46,-15v-18,-6,-39,-11,-65,-16v-26,-5,-56,-7,-90,-7v-62,0,-115,13,-160,38v-45,25,-82,59,-110,102v-28,43,-48,93,-62,149v-14,56,-22,115,-24,176v17,-10,36,-20,58,-30v22,-10,46,-19,72,-27v26,-8,52,-14,81,-19v29,-5,59,-8,92,-8v70,0,129,9,177,28v48,19,86,46,116,80v30,34,51,72,64,118v13,46,19,96,19,149xm783,-403v0,-39,-3,-73,-11,-105v-8,-32,-21,-59,-39,-81v-18,-22,-42,-39,-72,-51v-30,-12,-67,-18,-111,-18v-25,0,-49,2,-74,6v-25,4,-49,10,-72,18v-23,8,-45,18,-66,28v-21,10,-40,21,-57,33v0,86,6,158,17,216v11,58,27,104,48,139v21,35,47,61,78,76v31,15,68,22,110,22v43,0,80,-8,111,-24v31,-16,57,-37,78,-64v21,-27,35,-58,45,-92v10,-34,15,-68,15,-103"},"7":{"d":"943,-1220v0,12,0,22,-1,32v-1,10,-2,19,-4,28v-2,9,-5,18,-8,26v-3,8,-6,18,-10,27r-466,1074v-3,8,-7,14,-12,19v-5,5,-12,9,-20,12v-8,3,-17,5,-29,6v-12,1,-27,2,-44,2v-23,0,-40,-1,-53,-3v-13,-2,-22,-5,-28,-9v-6,-4,-8,-10,-7,-16v1,-6,3,-14,7,-23r490,-1098r-621,0v-13,0,-23,-7,-29,-20v-6,-13,-9,-32,-9,-56v0,-13,1,-24,3,-33v2,-9,4,-18,7,-24v3,-6,7,-11,12,-14v5,-3,10,-4,16,-4r754,0v9,0,18,1,25,3v7,2,12,6,16,12v4,6,6,14,8,23v2,9,3,21,3,36"},"8":{"d":"954,-332v0,56,-10,106,-30,150v-20,44,-48,80,-86,110v-38,30,-85,53,-140,68v-55,15,-119,23,-190,23v-67,0,-126,-7,-179,-21v-53,-14,-97,-35,-134,-62v-37,-27,-65,-61,-84,-101v-19,-40,-29,-86,-29,-137v0,-41,7,-78,20,-112v13,-34,33,-65,58,-94v25,-29,55,-55,92,-80v37,-25,78,-49,124,-72v-40,-21,-75,-43,-106,-66v-31,-23,-57,-47,-78,-74v-21,-27,-37,-56,-48,-87v-11,-31,-17,-64,-17,-100v0,-45,9,-87,25,-127v16,-40,41,-75,74,-104v33,-29,75,-53,126,-70v51,-17,110,-25,178,-25v65,0,122,7,170,23v48,16,87,37,118,64v31,27,53,59,68,96v15,37,22,76,22,118v0,34,-5,67,-16,98v-11,31,-28,61,-49,89v-21,28,-48,55,-79,79v-31,24,-66,47,-106,68v47,23,89,47,126,72v37,25,69,52,94,80v25,28,43,58,56,90v13,32,20,66,20,104xm738,-996v0,-28,-4,-53,-14,-76v-10,-23,-24,-42,-43,-58v-19,-16,-41,-28,-69,-36v-28,-8,-60,-13,-95,-13v-72,0,-126,16,-163,49v-37,33,-56,77,-56,134v0,26,5,50,14,72v9,22,23,44,42,64v19,20,43,39,72,58v29,19,63,39,103,60v67,-35,119,-73,155,-115v36,-42,54,-88,54,-139xm780,-314v0,-31,-6,-59,-17,-84v-11,-25,-28,-48,-51,-70v-23,-22,-52,-42,-86,-62v-34,-20,-75,-42,-120,-64v-42,21,-78,41,-110,62v-32,21,-58,42,-78,64v-20,22,-36,46,-46,70v-10,24,-16,51,-16,80v0,65,22,115,66,150v44,35,111,53,199,53v85,0,149,-17,193,-53v44,-36,66,-85,66,-146"},"9":{"d":"934,-698v0,56,-3,113,-10,170v-7,57,-18,113,-34,166v-16,53,-37,102,-64,148v-27,46,-61,87,-102,122v-41,35,-90,62,-146,82v-56,20,-122,29,-197,29v-29,0,-56,-1,-83,-5v-27,-4,-52,-9,-74,-14v-22,-5,-39,-11,-54,-17v-15,-6,-25,-12,-32,-18v-7,-6,-11,-15,-14,-25v-3,-10,-5,-24,-5,-41v0,-15,0,-26,1,-35v1,-9,3,-15,5,-20v2,-5,5,-8,9,-10v4,-2,8,-2,13,-2v7,0,18,3,31,8v13,5,30,10,50,16v20,6,45,11,72,16v27,5,58,8,92,8v65,0,120,-13,166,-38v46,-25,85,-58,114,-100v29,-42,51,-91,66,-146v15,-55,23,-114,24,-175v-35,21,-78,39,-127,55v-49,16,-106,24,-170,24v-72,0,-132,-10,-181,-30v-49,-20,-88,-46,-118,-80v-30,-34,-51,-74,-64,-121v-13,-47,-20,-98,-20,-153v0,-57,8,-112,25,-164v17,-52,43,-97,78,-136v35,-39,80,-71,135,-94v55,-23,120,-35,196,-35v54,0,102,7,144,21v42,14,77,32,108,58v31,26,57,58,78,94v21,36,39,77,52,123v13,46,22,95,28,149v6,54,8,111,8,170xm759,-717v0,-85,-6,-157,-17,-215v-11,-58,-28,-106,-50,-142v-22,-36,-49,-62,-81,-78v-32,-16,-69,-24,-111,-24v-43,0,-80,8,-111,24v-31,16,-55,36,-75,62v-20,26,-35,57,-44,90v-9,33,-14,68,-14,103v0,39,4,75,12,108v8,33,22,60,41,83v19,23,43,40,73,52v30,12,67,19,111,19v50,0,98,-8,145,-23v47,-15,87,-34,121,-59"},"%":{"d":"1392,-327v0,51,-6,98,-17,140v-11,42,-29,77,-52,107v-23,30,-53,53,-89,70v-36,17,-77,25,-125,25v-49,0,-90,-8,-125,-23v-35,-15,-63,-37,-85,-66v-22,-29,-39,-64,-49,-106v-10,-42,-15,-90,-15,-143v0,-49,6,-94,17,-135v11,-41,27,-77,50,-107v23,-30,52,-54,88,-71v36,-17,77,-26,126,-26v53,0,96,9,132,27v36,18,65,43,86,73v21,30,36,65,45,106v9,41,13,84,13,129xm1252,-322v0,-37,-3,-71,-8,-100v-5,-29,-13,-53,-24,-72v-11,-19,-26,-34,-44,-44v-18,-10,-39,-14,-64,-14v-23,0,-44,5,-61,14v-17,9,-32,23,-43,42v-11,19,-19,42,-24,70v-5,28,-8,60,-8,97v0,45,4,83,10,113v6,30,14,54,26,72v12,18,26,31,44,38v18,7,38,10,61,10v27,0,48,-5,65,-15v17,-10,32,-25,42,-45v10,-20,18,-42,22,-70v4,-28,6,-60,6,-96xm629,-974v0,51,-6,98,-17,140v-11,42,-29,78,-52,108v-23,30,-52,52,-88,69v-36,17,-78,25,-126,25v-49,0,-90,-8,-125,-23v-35,-15,-63,-38,-85,-67v-22,-29,-38,-64,-48,-106v-10,-42,-16,-89,-16,-142v0,-49,5,-94,16,-135v11,-41,28,-77,51,-107v23,-30,51,-54,87,-71v36,-17,78,-26,127,-26v53,0,97,9,133,27v36,18,64,42,85,72v21,30,36,66,45,107v9,41,13,84,13,129xm489,-969v0,-37,-3,-70,-8,-99v-5,-29,-14,-54,-25,-73v-11,-19,-25,-33,-43,-43v-18,-10,-39,-15,-64,-15v-23,0,-44,5,-61,14v-17,9,-31,23,-42,42v-11,19,-20,41,-25,69v-5,28,-8,61,-8,98v0,45,3,84,9,114v6,30,16,54,28,72v12,18,26,29,44,36v18,7,37,11,60,11v27,0,49,-5,66,-15v17,-10,30,-24,40,-44v10,-20,18,-44,22,-72v4,-28,7,-59,7,-95xm346,8v-3,6,-7,11,-12,14v-5,3,-10,6,-17,8v-7,2,-15,3,-24,4v-9,1,-21,2,-34,2v-15,0,-26,-1,-35,-4v-9,-3,-16,-6,-20,-10v-4,-4,-5,-10,-4,-16v1,-6,5,-14,10,-22r900,-1289v3,-5,7,-9,12,-13v5,-4,11,-7,18,-9v7,-2,15,-4,24,-5v9,-1,20,-1,34,-1v14,0,25,1,34,3v9,2,16,6,20,11v4,5,5,10,4,17v-1,7,-4,14,-9,21","w":1464},"+":{"d":"950,-576v0,13,-1,23,-3,32v-2,9,-5,17,-8,23v-3,6,-7,10,-12,13v-5,3,-10,4,-15,4r-328,0r0,364v0,5,-1,10,-4,14v-3,4,-6,6,-12,9v-6,3,-14,5,-23,7v-9,2,-21,2,-35,2v-13,0,-24,0,-34,-2v-10,-2,-18,-4,-24,-7v-6,-3,-9,-5,-12,-9v-3,-4,-4,-9,-4,-14r0,-364r-328,0v-6,0,-12,-1,-16,-4v-4,-3,-8,-7,-11,-13v-3,-6,-6,-14,-8,-23v-2,-9,-3,-19,-3,-32v0,-12,1,-23,3,-32v2,-9,5,-16,8,-22v3,-6,7,-10,11,-13v4,-3,10,-4,15,-4r329,0r0,-364v0,-5,1,-11,4,-15v3,-4,6,-7,12,-10v6,-3,14,-6,24,-8v10,-2,21,-2,34,-2v14,0,26,0,35,2v9,2,17,5,23,8v6,3,9,6,12,10v3,4,4,10,4,15r0,364r329,0v5,0,11,1,15,4v4,3,8,7,12,13v4,6,6,13,8,22v2,9,2,20,2,32","w":1020,"k":{"+":-15}},"\u00d7":{"d":"610,-573r302,301v3,4,6,8,8,12v2,4,3,8,3,13v0,9,-3,18,-9,28v-6,10,-14,19,-24,28v-10,9,-20,16,-30,22v-10,6,-18,9,-25,9v-4,0,-7,-1,-11,-3v-4,-2,-8,-4,-12,-7r-303,-304r-303,303v-4,3,-8,5,-12,7v-4,2,-9,3,-14,3v-8,0,-16,-3,-26,-10v-10,-7,-19,-14,-28,-23v-9,-9,-16,-20,-22,-30v-6,-10,-8,-18,-8,-25v0,-8,3,-16,10,-23r304,-304r-303,-303v-3,-3,-6,-7,-8,-11v-2,-4,-3,-8,-3,-13v0,-9,3,-18,10,-28v7,-10,15,-19,24,-28v9,-9,19,-15,29,-21v10,-6,18,-9,25,-9v9,0,17,4,24,11r303,304r303,-303v3,-3,7,-6,11,-8v4,-2,8,-3,13,-3v8,0,17,3,27,10v10,7,19,15,28,24v9,9,16,18,22,28v6,10,9,19,9,26v0,4,-1,8,-2,12v-1,4,-4,8,-8,11","w":1020},"=":{"d":"925,-771v0,27,-3,45,-11,55v-8,10,-17,16,-27,16r-756,0v-10,0,-19,-6,-26,-16v-7,-10,-11,-28,-11,-55v0,-24,3,-42,10,-53v7,-11,16,-17,27,-17r756,0v12,0,21,6,28,17v7,11,10,29,10,53xm925,-382v0,27,-3,45,-11,55v-8,10,-17,15,-27,15r-756,0v-10,0,-19,-5,-26,-15v-7,-10,-11,-28,-11,-55v0,-25,3,-43,10,-54v7,-11,16,-17,27,-17r756,0v12,0,21,6,28,17v7,11,10,29,10,54","w":1020},"<":{"d":"919,-162v0,17,-1,30,-2,40v-1,10,-4,18,-7,22v-3,4,-7,7,-12,6v-5,-1,-12,-3,-19,-7r-788,-398v-7,-3,-12,-11,-16,-24v-4,-13,-6,-31,-6,-55v0,-11,0,-21,1,-30v1,-9,4,-17,6,-23v2,-6,5,-11,8,-15v3,-4,6,-8,10,-9r785,-396v15,-7,25,-7,31,1v6,8,9,28,9,59v0,19,0,35,-1,46v-1,11,-4,20,-6,27v-2,7,-6,12,-10,16v-4,4,-10,8,-18,12r-644,315r640,310v9,5,15,9,20,13v5,4,9,9,12,16v3,7,5,16,6,28v1,12,1,27,1,46","w":1020},">":{"d":"952,-574v0,11,-1,21,-2,30v-1,9,-3,17,-5,24v-2,7,-5,12,-8,16v-3,4,-7,6,-11,8r-785,396v-7,3,-14,6,-19,6v-5,0,-9,-2,-12,-7v-3,-5,-6,-11,-7,-21v-1,-10,-2,-23,-2,-38v0,-19,0,-34,1,-45v1,-11,2,-20,4,-27v2,-7,6,-13,11,-17v5,-4,11,-8,18,-11r645,-317r-641,-309v-9,-4,-16,-8,-21,-12v-5,-4,-8,-9,-11,-16v-3,-7,-4,-16,-5,-28v-1,-12,-1,-28,-1,-47v0,-17,1,-31,2,-41v1,-10,4,-16,7,-20v3,-4,7,-7,12,-6v5,1,12,3,19,7r788,397v7,3,13,11,17,24v4,13,6,31,6,54","w":1020}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Calibri is either a registered trademark or a trademark of Microsoft
 * Corporation in the United States and/or other countries.
 * 
 * Description:
 * Calibri is a modern sans serif family with subtle roundings on stems and
 * corners. It features real italics, small caps, and multiple numeral sets. Its
 * proportions allow high impact in tightly set lines of big and small text alike.
 * Calibri's many curves and the new rasteriser team up in bigger sizes to reveal a
 * warm and soft character.
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Designer:
 * Luc(as) de Groot
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography/ctfonts
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/default.aspx
 */
Cufon.registerFont({"w":1038,"face":{"font-family":"calibri","font-weight":700,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 15 7 2 3 4 4 3 2 4","ascent":"1536","descent":"-512","x-height":"23","cap-height":"6","bbox":"-76 -1689 1810.19 365","underline-thickness":"186","underline-position":"-86","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":463},"\u00a0":{"w":463},"A":{"d":"1201,-98v8,24,13,43,15,57v2,14,-1,24,-8,31v-7,7,-20,12,-39,14v-19,2,-44,2,-77,2v-34,0,-61,-1,-80,-2v-19,-1,-33,-3,-43,-6v-10,-3,-17,-7,-21,-12v-4,-5,-7,-12,-10,-21r-87,-260r-486,0r-82,253v-3,9,-7,18,-11,24v-4,6,-10,10,-20,14v-10,4,-24,7,-42,8v-18,1,-40,2,-69,2v-31,0,-55,-1,-72,-3v-17,-2,-29,-7,-36,-15v-7,-8,-9,-18,-7,-32v2,-14,7,-33,15,-56r399,-1148v4,-11,9,-21,14,-28v5,-7,14,-12,26,-16v12,-4,27,-5,48,-6v21,-1,48,-2,82,-2v39,0,71,1,94,2v23,1,41,2,54,6v13,4,22,10,28,17v6,7,11,17,15,30xm607,-1047r-1,0r-183,550r367,0","w":1241,"k":{"-":25,"\u201d":94,"\u201c":165,"\u2019":94,"\u2018":165,".":-15,",":-25,"?":84,"y":61,"v":50,"t":63,"Y":167,"W":80,"V":105,"\u00dc":35,"\u00da":35,"\u00d9":35,"U":35,"T":160,"Q":28,"\u00d6":28,"\u00d3":28,"\u00d2":28,"O":28,"J":-28,"G":25,"C":24}},"\u00c0":{"d":"700,-1439v7,9,12,17,14,24v2,7,-1,13,-7,17v-6,4,-16,7,-29,9v-13,2,-31,3,-54,3v-21,0,-38,-1,-52,-2v-14,-1,-26,-3,-36,-6v-10,-3,-19,-8,-26,-12v-7,-4,-13,-9,-20,-15r-222,-200v-10,-9,-17,-17,-20,-25v-3,-8,0,-16,6,-22v6,-6,17,-11,34,-15v17,-4,41,-6,72,-6v25,0,46,0,62,1v16,1,30,4,42,7v12,3,21,8,30,14v9,6,17,14,26,24xm1201,-98v8,24,13,43,15,57v2,14,-1,24,-8,31v-7,7,-20,12,-39,14v-19,2,-44,2,-77,2v-34,0,-61,-1,-80,-2v-19,-1,-33,-3,-43,-6v-10,-3,-17,-7,-21,-12v-4,-5,-7,-12,-10,-21r-87,-260r-486,0r-82,253v-3,9,-7,18,-11,24v-4,6,-10,10,-20,14v-10,4,-24,7,-42,8v-18,1,-40,2,-69,2v-31,0,-55,-1,-72,-3v-17,-2,-29,-7,-36,-15v-7,-8,-9,-18,-7,-32v2,-14,7,-33,15,-56r399,-1148v4,-11,9,-21,14,-28v5,-7,14,-12,26,-16v12,-4,27,-5,48,-6v21,-1,48,-2,82,-2v39,0,71,1,94,2v23,1,41,2,54,6v13,4,22,10,28,17v6,7,11,17,15,30xm607,-1047r-1,0r-183,550r367,0","w":1241,"k":{"-":25,"\u201d":94,"\u201c":165,"\u2019":94,"\u2018":165,".":-15,",":-25,"?":84,"y":61,"v":50,"t":63,"Y":167,"W":80,"V":105,"\u00dc":35,"\u00da":35,"\u00d9":35,"U":35,"T":160,"Q":28,"\u00d6":28,"\u00d3":28,"\u00d2":28,"O":28,"J":-28,"G":25,"C":24}},"\u00c1":{"d":"676,-1643v9,-10,18,-18,26,-24v8,-6,18,-11,30,-14v12,-3,25,-6,42,-7v17,-1,37,-1,62,-1v31,0,55,2,72,6v17,4,28,9,34,15v6,6,8,14,5,22v-3,8,-10,16,-19,25r-222,200v-7,6,-13,11,-20,15v-7,4,-16,9,-26,12v-10,3,-22,5,-36,6v-14,1,-31,2,-52,2v-23,0,-40,-1,-54,-3v-14,-2,-24,-5,-30,-9v-6,-4,-7,-10,-6,-17v1,-7,6,-15,14,-24xm1201,-98v8,24,13,43,15,57v2,14,-1,24,-8,31v-7,7,-20,12,-39,14v-19,2,-44,2,-77,2v-34,0,-61,-1,-80,-2v-19,-1,-33,-3,-43,-6v-10,-3,-17,-7,-21,-12v-4,-5,-7,-12,-10,-21r-87,-260r-486,0r-82,253v-3,9,-7,18,-11,24v-4,6,-10,10,-20,14v-10,4,-24,7,-42,8v-18,1,-40,2,-69,2v-31,0,-55,-1,-72,-3v-17,-2,-29,-7,-36,-15v-7,-8,-9,-18,-7,-32v2,-14,7,-33,15,-56r399,-1148v4,-11,9,-21,14,-28v5,-7,14,-12,26,-16v12,-4,27,-5,48,-6v21,-1,48,-2,82,-2v39,0,71,1,94,2v23,1,41,2,54,6v13,4,22,10,28,17v6,7,11,17,15,30xm607,-1047r-1,0r-183,550r367,0","w":1241,"k":{"-":25,"\u201d":94,"\u201c":165,"\u2019":94,"\u2018":165,".":-15,",":-25,"?":84,"y":61,"v":50,"t":63,"Y":167,"W":80,"V":105,"\u00dc":35,"\u00da":35,"\u00d9":35,"U":35,"T":160,"Q":28,"\u00d6":28,"\u00d3":28,"\u00d2":28,"O":28,"J":-28,"G":25,"C":24}},"\u00c4":{"d":"537,-1534v0,47,-9,79,-27,98v-18,19,-54,28,-105,28v-51,0,-86,-9,-104,-27v-18,-18,-27,-50,-27,-95v0,-47,9,-80,28,-98v19,-18,53,-28,104,-28v52,0,86,8,104,26v18,18,27,50,27,96xm974,-1534v0,47,-9,79,-28,98v-19,19,-54,28,-105,28v-51,0,-85,-9,-103,-27v-18,-18,-27,-50,-27,-95v0,-47,9,-80,27,-98v18,-18,54,-28,105,-28v51,0,86,8,104,26v18,18,27,50,27,96xm1201,-98v8,24,13,43,15,57v2,14,-1,24,-8,31v-7,7,-20,12,-39,14v-19,2,-44,2,-77,2v-34,0,-61,-1,-80,-2v-19,-1,-33,-3,-43,-6v-10,-3,-17,-7,-21,-12v-4,-5,-7,-12,-10,-21r-87,-260r-486,0r-82,253v-3,9,-7,18,-11,24v-4,6,-10,10,-20,14v-10,4,-24,7,-42,8v-18,1,-40,2,-69,2v-31,0,-55,-1,-72,-3v-17,-2,-29,-7,-36,-15v-7,-8,-9,-18,-7,-32v2,-14,7,-33,15,-56r399,-1148v4,-11,9,-21,14,-28v5,-7,14,-12,26,-16v12,-4,27,-5,48,-6v21,-1,48,-2,82,-2v39,0,71,1,94,2v23,1,41,2,54,6v13,4,22,10,28,17v6,7,11,17,15,30xm607,-1047r-1,0r-183,550r367,0","w":1241,"k":{"-":25,"\u201d":94,"\u201c":165,"\u2019":94,"\u2018":165,".":-15,",":-25,"?":84,"y":61,"v":50,"t":63,"Y":167,"W":80,"V":105,"\u00dc":35,"\u00da":35,"\u00d9":35,"U":35,"T":160,"Q":28,"\u00d6":28,"\u00d3":28,"\u00d2":28,"O":28,"J":-28,"G":25,"C":24}},"B":{"d":"1078,-388v0,46,-6,88,-19,125v-13,37,-31,70,-53,99v-22,29,-49,53,-80,74v-31,21,-65,38,-102,51v-37,13,-78,23,-120,29v-42,6,-89,10,-141,10r-344,0v-22,0,-40,-7,-55,-20v-15,-13,-23,-34,-23,-63r0,-1128v0,-29,8,-50,23,-63v15,-13,33,-20,55,-20r325,0v79,0,147,7,202,20v55,13,100,33,138,60v38,27,67,62,87,103v20,41,30,90,30,146v0,31,-4,61,-12,89v-8,28,-20,52,-35,75v-15,23,-34,43,-56,60v-22,17,-48,31,-77,42v37,7,70,18,101,35v31,17,59,38,82,64v23,26,41,58,54,93v13,35,20,75,20,119xm738,-933v0,-26,-4,-49,-12,-70v-8,-21,-20,-37,-36,-51v-16,-14,-36,-25,-60,-32v-24,-7,-57,-11,-98,-11r-133,0r0,336r147,0v38,0,68,-4,91,-13v23,-9,42,-22,57,-38v15,-16,26,-33,33,-54v7,-21,11,-44,11,-67xm805,-379v0,-30,-5,-57,-15,-81v-10,-24,-25,-43,-44,-59v-19,-16,-44,-28,-74,-37v-30,-9,-69,-13,-117,-13r-156,0r0,368r190,0v37,0,68,-3,93,-11v25,-8,46,-19,64,-34v18,-15,34,-34,44,-56v10,-22,15,-48,15,-77","w":1148,"k":{"\u201c":25,"\u2018":25,",":25,"y":20,"x":25,"v":20,"t":20,"f":20,"Z":20,"Y":70,"X":50,"W":30,"V":35,"T":45,"\u00c4":20,"\u00c1":20,"\u00c0":20,"A":20}},"C":{"d":"1036,-196v0,17,-1,30,-2,42v-1,12,-2,22,-4,30v-2,8,-5,16,-8,22v-3,6,-9,12,-16,20v-7,8,-21,18,-42,30v-21,12,-48,23,-78,34v-30,11,-65,21,-104,28v-39,7,-81,11,-126,11v-89,0,-169,-14,-240,-41v-71,-27,-132,-68,-182,-122v-50,-54,-88,-123,-115,-204v-27,-81,-40,-176,-40,-284v0,-110,15,-208,44,-293v29,-85,70,-157,123,-215v53,-58,116,-102,190,-132v74,-30,154,-45,243,-45v36,0,71,3,104,9v33,6,65,14,93,24v28,10,53,20,76,33v23,13,39,24,48,33v9,9,15,16,18,22v3,6,6,14,8,23v2,9,3,20,4,33v1,13,2,28,2,47v0,20,-1,37,-2,51v-1,14,-4,25,-7,34v-3,9,-7,15,-12,19v-5,4,-10,6,-16,6v-10,0,-23,-5,-38,-17v-15,-12,-35,-26,-59,-40v-24,-14,-54,-26,-88,-38v-34,-12,-73,-18,-120,-18v-51,0,-98,11,-138,32v-40,21,-74,51,-102,90v-28,39,-50,86,-65,141v-15,55,-22,118,-22,187v0,76,7,142,23,198v16,56,39,101,68,137v29,36,63,63,104,81v41,18,88,26,139,26v47,0,87,-5,121,-16v34,-11,64,-24,88,-37v24,-13,44,-25,60,-36v16,-11,27,-16,36,-16v7,0,12,1,16,4v4,3,7,8,10,16v3,8,5,19,6,33v1,14,2,34,2,58","w":1084,"k":{"\u201d":-62,"\u201c":-15,"\u2019":-62,"\u2018":-15,",":7,"T":-10,"Q":15,"\u00d6":15,"\u00d3":15,"\u00d2":15,"O":15,"J":-15,"G":15}},"D":{"d":"1216,-666v0,119,-15,220,-46,304v-31,84,-76,154,-134,207v-58,53,-129,92,-212,117v-83,25,-181,38,-296,38r-309,0v-22,0,-40,-7,-55,-20v-15,-13,-23,-34,-23,-63r0,-1128v0,-29,8,-50,23,-63v15,-13,33,-20,55,-20r332,0v115,0,213,13,293,40v80,27,149,67,204,120v55,53,96,119,125,197v29,78,43,168,43,271xm944,-657v0,-61,-8,-118,-22,-171v-14,-53,-36,-98,-68,-137v-32,-39,-72,-69,-122,-91v-50,-22,-115,-32,-196,-32r-133,0r0,880r137,0v72,0,133,-9,182,-28v49,-19,91,-46,124,-84v33,-38,58,-85,74,-141v16,-56,24,-121,24,-196","w":1291,"k":{"\u201d":-10,"\u201c":13,"\u2019":-10,"\u2018":13,".":45,",":45,"Z":25,"Y":55,"X":51,"W":20,"V":30,"T":29,"J":24,"\u00c4":48,"\u00c1":48,"\u00c0":48,"A":48}},"E":{"d":"908,-103v0,19,0,36,-2,49v-2,13,-5,23,-8,31v-3,8,-7,13,-12,17v-5,4,-11,6,-17,6r-650,0v-22,0,-40,-7,-55,-20v-15,-13,-23,-34,-23,-63r0,-1128v0,-29,8,-50,23,-63v15,-13,33,-20,55,-20r646,0v6,0,11,2,16,5v5,3,9,9,12,17v3,8,5,19,7,32v2,13,3,30,3,50v0,19,-1,35,-3,48v-2,13,-4,23,-7,31v-3,8,-7,13,-12,17v-5,4,-10,6,-16,6r-462,0r0,316r391,0v6,0,11,2,16,6v5,4,10,8,13,16v3,8,5,19,7,32v2,13,3,28,3,47v0,19,-1,35,-3,48v-2,13,-4,23,-7,31v-3,8,-8,13,-13,16v-5,3,-10,5,-16,5r-391,0r0,365r466,0v6,0,12,2,17,6v5,4,9,9,12,17v3,8,6,18,8,31v2,13,2,30,2,49","w":999,"k":{"-":40,"y":53,"w":40,"v":53,"t":30,"q":30,"\u00f6":34,"\u00f3":34,"\u00f2":34,"o":34,"f":55,"\u00e9":34,"\u00e8":34,"e":34,"d":30,"\u00e7":25,"c":25,"\u00e4":27,"\u00e1":27,"\u00e0":27,"a":27,"Z":10,"S":20,"Q":35,"\u00d6":35,"\u00d3":35,"\u00d2":35,"O":35,"G":30,"C":30,"\u00c4":25,"\u00c1":25,"\u00c0":25,"A":25}},"\u00c8":{"d":"618,-1439v7,9,12,17,14,24v2,7,-1,13,-7,17v-6,4,-16,7,-29,9v-13,2,-31,3,-54,3v-21,0,-38,-1,-52,-2v-14,-1,-26,-3,-36,-6v-10,-3,-19,-8,-26,-12v-7,-4,-13,-9,-20,-15r-222,-200v-10,-9,-17,-17,-20,-25v-3,-8,0,-16,6,-22v6,-6,17,-11,34,-15v17,-4,41,-6,72,-6v25,0,46,0,62,1v16,1,30,4,42,7v12,3,21,8,30,14v9,6,17,14,26,24xm908,-103v0,19,0,36,-2,49v-2,13,-5,23,-8,31v-3,8,-7,13,-12,17v-5,4,-11,6,-17,6r-650,0v-22,0,-40,-7,-55,-20v-15,-13,-23,-34,-23,-63r0,-1128v0,-29,8,-50,23,-63v15,-13,33,-20,55,-20r646,0v6,0,11,2,16,5v5,3,9,9,12,17v3,8,5,19,7,32v2,13,3,30,3,50v0,19,-1,35,-3,48v-2,13,-4,23,-7,31v-3,8,-7,13,-12,17v-5,4,-10,6,-16,6r-462,0r0,316r391,0v6,0,11,2,16,6v5,4,10,8,13,16v3,8,5,19,7,32v2,13,3,28,3,47v0,19,-1,35,-3,48v-2,13,-4,23,-7,31v-3,8,-8,13,-13,16v-5,3,-10,5,-16,5r-391,0r0,365r466,0v6,0,12,2,17,6v5,4,9,9,12,17v3,8,6,18,8,31v2,13,2,30,2,49","w":999,"k":{"-":40,"y":53,"w":40,"v":53,"t":30,"q":30,"\u00f6":34,"\u00f3":34,"\u00f2":34,"o":34,"f":55,"\u00e9":34,"\u00e8":34,"e":34,"d":30,"\u00e7":25,"c":25,"\u00e4":27,"\u00e1":27,"\u00e0":27,"a":27,"Z":10,"S":20,"Q":35,"\u00d6":35,"\u00d3":35,"\u00d2":35,"O":35,"G":30,"C":30,"\u00c4":25,"\u00c1":25,"\u00c0":25,"A":25}},"\u00c9":{"d":"600,-1643v9,-10,18,-18,26,-24v8,-6,18,-11,30,-14v12,-3,25,-6,42,-7v17,-1,37,-1,62,-1v31,0,55,2,72,6v17,4,28,9,34,15v6,6,8,14,5,22v-3,8,-10,16,-19,25r-222,200v-7,6,-13,11,-20,15v-7,4,-16,9,-26,12v-10,3,-22,5,-36,6v-14,1,-31,2,-52,2v-23,0,-40,-1,-54,-3v-14,-2,-24,-5,-30,-9v-6,-4,-7,-10,-6,-17v1,-7,6,-15,14,-24xm908,-103v0,19,0,36,-2,49v-2,13,-5,23,-8,31v-3,8,-7,13,-12,17v-5,4,-11,6,-17,6r-650,0v-22,0,-40,-7,-55,-20v-15,-13,-23,-34,-23,-63r0,-1128v0,-29,8,-50,23,-63v15,-13,33,-20,55,-20r646,0v6,0,11,2,16,5v5,3,9,9,12,17v3,8,5,19,7,32v2,13,3,30,3,50v0,19,-1,35,-3,48v-2,13,-4,23,-7,31v-3,8,-7,13,-12,17v-5,4,-10,6,-16,6r-462,0r0,316r391,0v6,0,11,2,16,6v5,4,10,8,13,16v3,8,5,19,7,32v2,13,3,28,3,47v0,19,-1,35,-3,48v-2,13,-4,23,-7,31v-3,8,-8,13,-13,16v-5,3,-10,5,-16,5r-391,0r0,365r466,0v6,0,12,2,17,6v5,4,9,9,12,17v3,8,6,18,8,31v2,13,2,30,2,49","w":999,"k":{"-":40,"y":53,"w":40,"v":53,"t":30,"q":30,"\u00f6":34,"\u00f3":34,"\u00f2":34,"o":34,"f":55,"\u00e9":34,"\u00e8":34,"e":34,"d":30,"\u00e7":25,"c":25,"\u00e4":27,"\u00e1":27,"\u00e0":27,"a":27,"Z":10,"S":20,"Q":35,"\u00d6":35,"\u00d3":35,"\u00d2":35,"O":35,"G":30,"C":30,"\u00c4":25,"\u00c1":25,"\u00c0":25,"A":25}},"\u00cb":{"d":"442,-1534v0,47,-10,79,-28,98v-18,19,-53,28,-104,28v-51,0,-86,-9,-104,-27v-18,-18,-27,-50,-27,-95v0,-47,9,-80,28,-98v19,-18,53,-28,104,-28v52,0,87,8,105,26v18,18,26,50,26,96xm879,-1534v0,47,-9,79,-28,98v-19,19,-54,28,-105,28v-51,0,-86,-9,-104,-27v-18,-18,-26,-50,-26,-95v0,-47,10,-80,28,-98v18,-18,53,-28,104,-28v51,0,86,8,104,26v18,18,27,50,27,96xm908,-103v0,19,0,36,-2,49v-2,13,-5,23,-8,31v-3,8,-7,13,-12,17v-5,4,-11,6,-17,6r-650,0v-22,0,-40,-7,-55,-20v-15,-13,-23,-34,-23,-63r0,-1128v0,-29,8,-50,23,-63v15,-13,33,-20,55,-20r646,0v6,0,11,2,16,5v5,3,9,9,12,17v3,8,5,19,7,32v2,13,3,30,3,50v0,19,-1,35,-3,48v-2,13,-4,23,-7,31v-3,8,-7,13,-12,17v-5,4,-10,6,-16,6r-462,0r0,316r391,0v6,0,11,2,16,6v5,4,10,8,13,16v3,8,5,19,7,32v2,13,3,28,3,47v0,19,-1,35,-3,48v-2,13,-4,23,-7,31v-3,8,-8,13,-13,16v-5,3,-10,5,-16,5r-391,0r0,365r466,0v6,0,12,2,17,6v5,4,9,9,12,17v3,8,6,18,8,31v2,13,2,30,2,49","w":999,"k":{"-":40,"y":53,"w":40,"v":53,"t":30,"q":30,"\u00f6":34,"\u00f3":34,"\u00f2":34,"o":34,"f":55,"\u00e9":34,"\u00e8":34,"e":34,"d":30,"\u00e7":25,"c":25,"\u00e4":27,"\u00e1":27,"\u00e0":27,"a":27,"Z":10,"S":20,"Q":35,"\u00d6":35,"\u00d3":35,"\u00d2":35,"O":35,"G":30,"C":30,"\u00c4":25,"\u00c1":25,"\u00c0":25,"A":25}},"F":{"d":"867,-1186v0,20,-1,36,-3,50v-2,14,-4,25,-8,33v-4,8,-7,14,-12,18v-5,4,-10,6,-16,6r-423,0r0,348r397,0v6,0,11,2,16,5v5,3,8,9,12,17v4,8,6,19,8,32v2,13,3,30,3,50v0,20,-1,37,-3,50v-2,13,-4,24,-8,33v-4,9,-7,14,-12,18v-5,4,-10,6,-16,6r-397,0r0,482v0,7,-2,14,-6,19v-4,5,-11,9,-21,13v-10,4,-24,7,-41,9v-17,2,-38,3,-64,3v-25,0,-46,-1,-63,-3v-17,-2,-31,-5,-41,-9v-10,-4,-17,-8,-21,-13v-4,-5,-7,-12,-7,-19r0,-1173v0,-29,8,-50,23,-63v15,-13,33,-20,55,-20r609,0v6,0,11,2,16,6v5,4,8,10,12,18v4,8,6,19,8,33v2,14,3,31,3,51","w":940,"k":{"\/":55,"\u201d":-10,"\u2019":-10,".":161,",":175,"s":25,"q":20,"\u00f6":25,"\u00f3":25,"\u00f2":25,"o":25,"\u00ef":-35,"\u00e9":30,"\u00e8":30,"e":30,"d":20,"\u00e7":25,"c":25,"\u00e4":56,"\u00e1":56,"\u00e0":56,"a":56,"Z":14,"X":25,"S":27,"Q":15,"\u00d6":15,"\u00d3":15,"\u00d2":15,"O":15,"J":108,"G":15,"C":15,"\u00c4":116,"\u00c1":116,"\u00c0":116,"A":116}},"G":{"d":"1179,-1093v0,19,-1,36,-3,50v-2,14,-3,25,-6,33v-3,8,-8,15,-12,18v-4,3,-9,5,-15,5v-9,0,-23,-6,-42,-18v-19,-12,-45,-25,-77,-39v-32,-14,-70,-27,-114,-39v-44,-12,-96,-18,-155,-18v-63,0,-119,11,-170,33v-51,22,-94,52,-130,92v-36,40,-64,86,-83,142v-19,56,-29,118,-29,185v0,74,9,139,29,195v20,56,48,104,83,142v35,38,77,67,127,86v50,19,105,29,165,29v29,0,58,-3,87,-10v29,-7,55,-17,80,-30r0,-300r-245,0v-12,0,-21,-8,-28,-23v-7,-15,-10,-40,-10,-76v0,-19,1,-34,3,-47v2,-13,4,-23,7,-31v3,-8,7,-12,12,-16v5,-4,10,-6,16,-6r437,0v11,0,20,2,28,6v8,4,16,9,22,16v6,7,12,16,15,26v3,10,5,23,5,36r0,515v0,20,-3,38,-10,53v-7,15,-22,26,-44,35v-22,9,-48,18,-80,27v-32,9,-66,17,-100,24v-34,7,-69,12,-104,15v-35,3,-70,5,-105,5v-103,0,-195,-14,-277,-44v-82,-30,-151,-74,-208,-130v-57,-56,-100,-125,-130,-206v-30,-81,-45,-172,-45,-275v0,-106,16,-201,48,-285v32,-84,77,-157,136,-216v59,-59,130,-104,213,-135v83,-31,175,-47,277,-47v56,0,107,4,153,12v46,8,86,17,120,28v34,11,63,22,86,35v23,13,39,24,48,33v9,9,15,23,19,40v4,17,6,42,6,75","w":1305,"k":{"y":30,"x":20,"w":22,"v":27,"Y":30,"W":8,"V":10,"T":10}},"H":{"d":"1151,-36v0,7,-3,13,-7,18v-4,5,-11,10,-21,13v-10,3,-23,6,-40,8v-17,2,-38,3,-63,3v-26,0,-47,-1,-64,-3v-17,-2,-30,-5,-40,-8v-10,-3,-18,-8,-22,-13v-4,-5,-6,-11,-6,-18r0,-523r-484,0r0,523v0,7,-2,13,-6,18v-4,5,-11,10,-21,13v-10,3,-23,6,-40,8v-17,2,-38,3,-64,3v-25,0,-46,-1,-63,-3v-17,-2,-31,-5,-41,-8v-10,-3,-17,-8,-21,-13v-4,-5,-7,-11,-7,-18r0,-1222v0,-7,3,-13,7,-18v4,-5,11,-10,21,-13v10,-3,24,-6,41,-8v17,-2,38,-3,63,-3v26,0,47,1,64,3v17,2,30,5,40,8v10,3,17,8,21,13v4,5,6,11,6,18r0,475r484,0r0,-475v0,-7,2,-13,6,-18v4,-5,12,-10,22,-13v10,-3,23,-6,40,-8v17,-2,38,-3,64,-3v25,0,46,1,63,3v17,2,30,5,40,8v10,3,17,8,21,13v4,5,7,11,7,18r0,1222","w":1292,"k":{"\u201c":10,"\u2018":10,"\u00ef":-15}},"I":{"d":"405,-36v0,7,-3,13,-7,18v-4,5,-11,10,-21,13v-10,3,-23,6,-40,8v-17,2,-38,3,-64,3v-25,0,-46,-1,-63,-3v-17,-2,-31,-5,-41,-8v-10,-3,-17,-8,-21,-13v-4,-5,-7,-11,-7,-18r0,-1222v0,-7,3,-13,7,-18v4,-5,12,-10,22,-13v10,-3,23,-6,40,-8v17,-2,38,-3,63,-3v26,0,47,1,64,3v17,2,30,5,40,8v10,3,17,8,21,13v4,5,7,11,7,18r0,1222","w":546},"\u00cc":{"d":"389,-1439v7,9,11,17,13,24v2,7,0,13,-6,17v-6,4,-16,7,-29,9v-13,2,-31,3,-54,3v-21,0,-38,-1,-52,-2v-14,-1,-26,-3,-36,-6v-10,-3,-18,-8,-25,-12v-7,-4,-14,-9,-21,-15r-222,-200v-10,-9,-16,-17,-19,-25v-3,-8,-2,-16,4,-22v6,-6,19,-11,36,-15v17,-4,40,-6,71,-6v25,0,45,0,61,1v16,1,30,4,42,7v12,3,22,8,31,14v9,6,17,14,26,24xm405,-36v0,7,-3,13,-7,18v-4,5,-11,10,-21,13v-10,3,-23,6,-40,8v-17,2,-38,3,-64,3v-25,0,-46,-1,-63,-3v-17,-2,-31,-5,-41,-8v-10,-3,-17,-8,-21,-13v-4,-5,-7,-11,-7,-18r0,-1222v0,-7,3,-13,7,-18v4,-5,12,-10,22,-13v10,-3,23,-6,40,-8v17,-2,38,-3,63,-3v26,0,47,1,64,3v17,2,30,5,40,8v10,3,17,8,21,13v4,5,7,11,7,18r0,1222","w":546},"\u00cd":{"d":"335,-1643v9,-10,17,-18,25,-24v8,-6,18,-11,30,-14v12,-3,26,-6,43,-7v17,-1,37,-1,62,-1v31,0,54,2,71,6v17,4,30,9,36,15v6,6,7,14,4,22v-3,8,-10,16,-19,25r-222,200v-7,6,-14,11,-21,15v-7,4,-15,9,-25,12v-10,3,-22,5,-36,6v-14,1,-31,2,-52,2v-23,0,-41,-1,-55,-3v-14,-2,-22,-5,-28,-9v-6,-4,-8,-10,-7,-17v1,-7,6,-15,14,-24xm405,-36v0,7,-3,13,-7,18v-4,5,-11,10,-21,13v-10,3,-23,6,-40,8v-17,2,-38,3,-64,3v-25,0,-46,-1,-63,-3v-17,-2,-31,-5,-41,-8v-10,-3,-17,-8,-21,-13v-4,-5,-7,-11,-7,-18r0,-1222v0,-7,3,-13,7,-18v4,-5,12,-10,22,-13v10,-3,23,-6,40,-8v17,-2,38,-3,63,-3v26,0,47,1,64,3v17,2,30,5,40,8v10,3,17,8,21,13v4,5,7,11,7,18r0,1222","w":546},"\u00cf":{"d":"187,-1534v0,47,-9,79,-27,98v-18,19,-54,28,-105,28v-51,0,-86,-9,-104,-27v-18,-18,-27,-50,-27,-95v0,-47,9,-80,28,-98v19,-18,53,-28,104,-28v52,0,86,8,104,26v18,18,27,50,27,96xm624,-1534v0,47,-9,79,-28,98v-19,19,-54,28,-105,28v-51,0,-85,-9,-103,-27v-18,-18,-27,-50,-27,-95v0,-47,9,-80,27,-98v18,-18,54,-28,105,-28v51,0,86,8,104,26v18,18,27,50,27,96xm405,-36v0,7,-3,13,-7,18v-4,5,-11,10,-21,13v-10,3,-23,6,-40,8v-17,2,-38,3,-64,3v-25,0,-46,-1,-63,-3v-17,-2,-31,-5,-41,-8v-10,-3,-17,-8,-21,-13v-4,-5,-7,-11,-7,-18r0,-1222v0,-7,3,-13,7,-18v4,-5,12,-10,22,-13v10,-3,23,-6,40,-8v17,-2,38,-3,63,-3v26,0,47,1,64,3v17,2,30,5,40,8v10,3,17,8,21,13v4,5,7,11,7,18r0,1222","w":546},"J":{"d":"539,-360v0,59,-6,111,-17,158v-11,47,-30,87,-56,120v-26,33,-60,59,-103,76v-43,17,-95,26,-158,26v-20,0,-39,-1,-59,-4v-20,-3,-38,-7,-54,-12v-16,-5,-31,-10,-43,-15v-12,-5,-20,-11,-24,-15v-4,-4,-7,-8,-10,-13v-3,-5,-5,-11,-7,-19v-2,-8,-3,-17,-4,-28v-1,-11,-1,-26,-1,-43v0,-23,0,-41,1,-57v1,-16,4,-29,6,-38v2,-9,6,-14,10,-18v4,-4,9,-6,16,-6v6,0,13,2,21,6r27,14v0,0,22,10,35,14v13,4,29,6,47,6v18,0,34,-3,48,-8v14,-5,25,-14,34,-26v9,-12,15,-28,20,-49v5,-21,7,-47,7,-80r0,-889v0,-7,3,-13,7,-18v4,-5,10,-9,20,-12v10,-3,24,-6,41,-8v17,-2,39,-2,64,-2v25,0,46,0,63,2v17,2,30,5,40,8v10,3,18,7,22,12v4,5,7,11,7,18r0,900","w":678,"k":{".":15,",":20,"X":20,"\u00c4":45,"\u00c1":45,"\u00c0":45,"A":45}},"K":{"d":"1086,-39v0,7,-2,13,-6,19v-4,6,-10,10,-20,14v-10,4,-25,7,-43,9v-18,2,-41,3,-68,3v-43,0,-74,-2,-93,-5v-19,-3,-34,-8,-42,-15v-8,-7,-14,-15,-19,-24r-391,-614r0,614v0,7,-2,14,-6,19v-4,5,-11,9,-21,13v-10,4,-23,7,-40,9v-17,2,-38,3,-64,3v-25,0,-46,-1,-63,-3v-17,-2,-31,-5,-41,-9v-10,-4,-17,-8,-21,-13v-4,-5,-7,-12,-7,-19r0,-1219v0,-7,3,-14,7,-19v4,-5,11,-10,21,-13v10,-3,24,-6,41,-8v17,-2,38,-3,63,-3v26,0,47,1,64,3v17,2,30,5,40,8v10,3,17,8,21,13v4,5,6,12,6,19r0,551r379,-550v5,-9,10,-16,17,-22v7,-6,15,-10,26,-13v11,-3,24,-6,41,-7v17,-1,38,-2,64,-2v27,0,49,1,66,3v17,2,31,5,41,9v10,4,18,8,22,13v4,5,6,11,6,18v0,11,-3,23,-9,35v-6,12,-17,31,-34,57r-355,465r387,585v15,27,24,46,27,55v3,9,4,16,4,21","w":1120,"k":{"-":40,"y":82,"w":85,"v":89,"\u00fc":22,"\u00fa":22,"\u00f9":22,"u":22,"t":51,"s":15,"r":22,"q":37,"p":22,"\u00f6":33,"\u00f3":33,"\u00f2":33,"o":33,"\u00f1":22,"n":22,"m":22,"\u00ef":-47,"\u00ec":-26,"f":35,"\u00e9":37,"\u00e8":37,"e":37,"d":37,"\u00e7":41,"c":41,"\u00e4":26,"\u00e1":26,"\u00e0":26,"a":26,"W":23,"\u00dc":26,"\u00da":26,"\u00d9":26,"U":26,"S":15,"Q":90,"\u00d6":90,"\u00d3":90,"\u00d2":90,"O":90,"G":80,"C":75}},"L":{"d":"852,-110v0,20,0,36,-2,50v-2,14,-5,25,-8,34v-3,9,-7,16,-12,20v-5,4,-11,6,-18,6r-593,0v-22,0,-40,-7,-55,-20v-15,-13,-23,-34,-23,-63r0,-1175v0,-7,3,-13,7,-18v4,-5,11,-10,21,-13v10,-3,24,-6,41,-8v17,-2,38,-3,63,-3v26,0,47,1,64,3v17,2,30,5,40,8v10,3,17,8,21,13v4,5,7,11,7,18r0,1041r407,0v7,0,13,1,18,5v5,4,9,10,12,18v3,8,6,20,8,34v2,14,2,30,2,50","w":866,"k":{"\u00b7":63,"\u201d":148,"\u201c":190,"\u2019":148,"\u2018":190,",":-30,"y":83,"w":71,"v":78,"t":39,"f":28,"Y":180,"W":114,"V":160,"\u00dc":50,"\u00da":50,"\u00d9":50,"U":50,"T":150,"Q":36,"\u00d6":36,"\u00d3":36,"\u00d2":36,"O":36,"J":-33,"G":40,"C":25}},"M":{"d":"1649,-36v0,7,-1,13,-5,18v-4,5,-10,10,-20,13v-10,3,-23,6,-39,8v-16,2,-36,3,-61,3v-24,0,-44,-1,-60,-3v-16,-2,-29,-5,-38,-8v-9,-3,-16,-8,-20,-13v-4,-5,-6,-11,-6,-18r0,-1053r-2,0r-375,1052v-3,9,-7,15,-13,21v-6,6,-14,11,-24,14v-10,3,-24,5,-40,6v-16,1,-35,2,-58,2v-23,0,-42,0,-58,-2v-16,-2,-30,-4,-40,-8v-10,-4,-18,-9,-24,-14v-6,-5,-10,-12,-12,-19r-362,-1052r-2,0r0,1053v0,7,-2,13,-6,18v-4,5,-10,10,-20,13v-10,3,-22,6,-38,8v-16,2,-36,3,-61,3v-24,0,-44,-1,-60,-3v-16,-2,-29,-5,-39,-8v-10,-3,-16,-8,-20,-13v-4,-5,-5,-11,-5,-18r0,-1153v0,-34,9,-60,27,-78v18,-18,42,-27,72,-27r172,0v31,0,57,3,79,8v22,5,41,12,57,24v16,12,29,27,40,46v11,19,20,43,28,71r280,771r4,0r290,-769v9,-28,18,-52,28,-71v10,-19,22,-35,36,-47v14,-12,30,-20,49,-25v19,-5,40,-8,65,-8r177,0v18,0,34,2,47,7v13,5,24,12,32,21v8,9,14,19,18,32v4,13,7,28,7,45r0,1153","w":1790},"N":{"d":"1208,-92v0,15,-3,29,-8,41v-5,12,-13,22,-22,30v-9,8,-20,13,-32,17v-12,4,-24,6,-37,6r-112,0v-23,0,-44,-2,-61,-7v-17,-5,-32,-13,-46,-25v-14,-12,-29,-29,-42,-50v-13,-21,-28,-49,-45,-82r-322,-605v-19,-36,-38,-75,-57,-117v-19,-42,-37,-82,-52,-121r-2,0v3,48,5,95,6,143v1,48,2,97,2,148r0,677v0,7,-2,13,-6,18v-4,5,-9,9,-18,13v-9,4,-22,7,-37,9v-15,2,-35,3,-59,3v-23,0,-43,-1,-58,-3v-15,-2,-27,-5,-36,-9v-9,-4,-15,-8,-18,-13v-3,-5,-5,-11,-5,-18r0,-1163v0,-31,9,-54,27,-70v18,-16,41,-24,68,-24r141,0v25,0,47,2,64,6v17,4,33,12,47,22v14,10,26,24,38,42v12,18,24,39,37,65r252,473r43,84r42,84r39,81r37,80r1,0v-2,-47,-4,-95,-5,-146v-1,-51,-1,-99,-1,-145r0,-607v0,-7,2,-13,6,-18v4,-5,11,-10,20,-14v9,-4,22,-7,37,-9v15,-2,35,-2,59,-2v23,0,42,0,57,2v15,2,28,5,36,9v8,4,14,9,17,14v3,5,5,11,5,18r0,1163","w":1349},"\u00d1":{"d":"878,-1636v0,-11,6,-18,17,-21v11,-3,32,-5,62,-5v30,0,51,3,61,8v10,5,15,15,15,30v0,77,-19,135,-57,175v-38,40,-91,60,-162,60v-38,0,-70,-5,-96,-15v-26,-10,-50,-22,-71,-34r-57,-34v-17,-10,-35,-16,-55,-16v-23,0,-39,6,-49,19v-10,13,-14,31,-14,54v0,6,-1,11,-4,14v-3,3,-8,5,-15,7v-7,2,-15,3,-25,4v-10,1,-21,1,-35,1v-30,0,-51,-2,-61,-7v-10,-5,-15,-16,-15,-31v0,-38,5,-72,15,-101v10,-29,25,-54,44,-74v19,-20,41,-34,68,-44v27,-10,58,-16,92,-16v38,0,70,6,96,16v26,10,50,21,70,34v30,19,31,18,57,34v17,10,36,16,56,16v19,0,35,-5,46,-16v11,-11,17,-31,17,-58xm1208,-92v0,15,-3,29,-8,41v-5,12,-13,22,-22,30v-9,8,-20,13,-32,17v-12,4,-24,6,-37,6r-112,0v-23,0,-44,-2,-61,-7v-17,-5,-32,-13,-46,-25v-14,-12,-29,-29,-42,-50v-13,-21,-28,-49,-45,-82r-322,-605v-19,-36,-38,-75,-57,-117v-19,-42,-37,-82,-52,-121r-2,0v3,48,5,95,6,143v1,48,2,97,2,148r0,677v0,7,-2,13,-6,18v-4,5,-9,9,-18,13v-9,4,-22,7,-37,9v-15,2,-35,3,-59,3v-23,0,-43,-1,-58,-3v-15,-2,-27,-5,-36,-9v-9,-4,-15,-8,-18,-13v-3,-5,-5,-11,-5,-18r0,-1163v0,-31,9,-54,27,-70v18,-16,41,-24,68,-24r141,0v25,0,47,2,64,6v17,4,33,12,47,22v14,10,26,24,38,42v12,18,24,39,37,65r252,473r43,84r42,84r39,81r37,80r1,0v-2,-47,-4,-95,-5,-146v-1,-51,-1,-99,-1,-145r0,-607v0,-7,2,-13,6,-18v4,-5,11,-10,20,-14v9,-4,22,-7,37,-9v15,-2,35,-2,59,-2v23,0,42,0,57,2v15,2,28,5,36,9v8,4,14,9,17,14v3,5,5,11,5,18r0,1163","w":1349},"O":{"d":"1305,-662v0,107,-13,203,-40,288v-27,85,-66,157,-119,216v-53,59,-118,103,-196,134v-78,31,-167,47,-269,47v-101,0,-188,-13,-263,-39v-75,-26,-138,-67,-188,-121v-50,-54,-87,-123,-112,-206v-25,-83,-38,-182,-38,-296v0,-105,13,-199,40,-283v27,-84,66,-154,119,-213v53,-59,117,-104,195,-135v78,-31,168,-47,271,-47v98,0,184,13,259,39v75,26,138,66,188,120v50,54,88,122,114,204v26,82,39,180,39,292xm1029,-648v0,-68,-5,-130,-16,-186v-11,-56,-29,-102,-55,-142v-26,-40,-59,-70,-102,-92v-43,-22,-96,-33,-160,-33v-65,0,-119,13,-162,37v-43,24,-78,56,-105,97v-27,41,-46,89,-57,143v-11,54,-16,111,-16,172v0,71,5,134,16,190v11,56,29,105,54,145v25,40,59,70,102,91v43,21,96,32,161,32v65,0,119,-12,162,-36v43,-24,78,-57,105,-98v27,-41,45,-89,56,-144v11,-55,17,-114,17,-176","w":1385,"k":{"\u201d":-15,"\u201c":15,"\u2019":-15,"\u2018":15,".":30,",":45,"z":10,"x":14,"Z":33,"Y":65,"X":70,"W":25,"V":35,"T":45,"J":20,"\u00c4":28,"\u00c1":28,"\u00c0":28,"A":28}},"\u00d2":{"d":"796,-1439v7,9,12,17,14,24v2,7,-1,13,-7,17v-6,4,-16,7,-29,9v-13,2,-31,3,-54,3v-21,0,-38,-1,-52,-2v-14,-1,-26,-3,-36,-6v-10,-3,-19,-8,-26,-12v-7,-4,-13,-9,-20,-15r-222,-200v-10,-9,-17,-17,-20,-25v-3,-8,0,-16,6,-22v6,-6,17,-11,34,-15v17,-4,41,-6,72,-6v25,0,46,0,62,1v16,1,30,4,42,7v12,3,21,8,30,14v9,6,17,14,26,24xm1305,-662v0,107,-13,203,-40,288v-27,85,-66,157,-119,216v-53,59,-118,103,-196,134v-78,31,-167,47,-269,47v-101,0,-188,-13,-263,-39v-75,-26,-138,-67,-188,-121v-50,-54,-87,-123,-112,-206v-25,-83,-38,-182,-38,-296v0,-105,13,-199,40,-283v27,-84,66,-154,119,-213v53,-59,117,-104,195,-135v78,-31,168,-47,271,-47v98,0,184,13,259,39v75,26,138,66,188,120v50,54,88,122,114,204v26,82,39,180,39,292xm1029,-648v0,-68,-5,-130,-16,-186v-11,-56,-29,-102,-55,-142v-26,-40,-59,-70,-102,-92v-43,-22,-96,-33,-160,-33v-65,0,-119,13,-162,37v-43,24,-78,56,-105,97v-27,41,-46,89,-57,143v-11,54,-16,111,-16,172v0,71,5,134,16,190v11,56,29,105,54,145v25,40,59,70,102,91v43,21,96,32,161,32v65,0,119,-12,162,-36v43,-24,78,-57,105,-98v27,-41,45,-89,56,-144v11,-55,17,-114,17,-176","w":1385,"k":{"\u201d":-15,"\u201c":15,"\u2019":-15,"\u2018":15,".":30,",":45,"z":10,"x":14,"Z":33,"Y":65,"X":70,"W":25,"V":35,"T":45,"J":20,"\u00c4":28,"\u00c1":28,"\u00c0":28,"A":28}},"\u00d3":{"d":"758,-1643v9,-10,18,-18,26,-24v8,-6,18,-11,30,-14v12,-3,25,-6,42,-7v17,-1,37,-1,62,-1v31,0,55,2,72,6v17,4,28,9,34,15v6,6,8,14,5,22v-3,8,-10,16,-19,25r-222,200v-7,6,-13,11,-20,15v-7,4,-16,9,-26,12v-10,3,-22,5,-36,6v-14,1,-31,2,-52,2v-23,0,-40,-1,-54,-3v-14,-2,-24,-5,-30,-9v-6,-4,-7,-10,-6,-17v1,-7,6,-15,14,-24xm1305,-662v0,107,-13,203,-40,288v-27,85,-66,157,-119,216v-53,59,-118,103,-196,134v-78,31,-167,47,-269,47v-101,0,-188,-13,-263,-39v-75,-26,-138,-67,-188,-121v-50,-54,-87,-123,-112,-206v-25,-83,-38,-182,-38,-296v0,-105,13,-199,40,-283v27,-84,66,-154,119,-213v53,-59,117,-104,195,-135v78,-31,168,-47,271,-47v98,0,184,13,259,39v75,26,138,66,188,120v50,54,88,122,114,204v26,82,39,180,39,292xm1029,-648v0,-68,-5,-130,-16,-186v-11,-56,-29,-102,-55,-142v-26,-40,-59,-70,-102,-92v-43,-22,-96,-33,-160,-33v-65,0,-119,13,-162,37v-43,24,-78,56,-105,97v-27,41,-46,89,-57,143v-11,54,-16,111,-16,172v0,71,5,134,16,190v11,56,29,105,54,145v25,40,59,70,102,91v43,21,96,32,161,32v65,0,119,-12,162,-36v43,-24,78,-57,105,-98v27,-41,45,-89,56,-144v11,-55,17,-114,17,-176","w":1385,"k":{"\u201d":-15,"\u201c":15,"\u2019":-15,"\u2018":15,".":30,",":45,"z":10,"x":14,"Z":33,"Y":65,"X":70,"W":25,"V":35,"T":45,"J":20,"\u00c4":28,"\u00c1":28,"\u00c0":28,"A":28}},"\u00d6":{"d":"608,-1534v0,47,-10,79,-28,98v-18,19,-53,28,-104,28v-51,0,-86,-9,-104,-27v-18,-18,-27,-50,-27,-95v0,-47,9,-80,28,-98v19,-18,53,-28,104,-28v52,0,87,8,105,26v18,18,26,50,26,96xm1045,-1534v0,47,-9,79,-28,98v-19,19,-54,28,-105,28v-51,0,-86,-9,-104,-27v-18,-18,-26,-50,-26,-95v0,-47,10,-80,28,-98v18,-18,53,-28,104,-28v51,0,86,8,104,26v18,18,27,50,27,96xm1305,-662v0,107,-13,203,-40,288v-27,85,-66,157,-119,216v-53,59,-118,103,-196,134v-78,31,-167,47,-269,47v-101,0,-188,-13,-263,-39v-75,-26,-138,-67,-188,-121v-50,-54,-87,-123,-112,-206v-25,-83,-38,-182,-38,-296v0,-105,13,-199,40,-283v27,-84,66,-154,119,-213v53,-59,117,-104,195,-135v78,-31,168,-47,271,-47v98,0,184,13,259,39v75,26,138,66,188,120v50,54,88,122,114,204v26,82,39,180,39,292xm1029,-648v0,-68,-5,-130,-16,-186v-11,-56,-29,-102,-55,-142v-26,-40,-59,-70,-102,-92v-43,-22,-96,-33,-160,-33v-65,0,-119,13,-162,37v-43,24,-78,56,-105,97v-27,41,-46,89,-57,143v-11,54,-16,111,-16,172v0,71,5,134,16,190v11,56,29,105,54,145v25,40,59,70,102,91v43,21,96,32,161,32v65,0,119,-12,162,-36v43,-24,78,-57,105,-98v27,-41,45,-89,56,-144v11,-55,17,-114,17,-176","w":1385,"k":{"\u201d":-15,"\u201c":15,"\u2019":-15,"\u2018":15,".":30,",":45,"z":10,"x":14,"Z":33,"Y":65,"X":70,"W":25,"V":35,"T":45,"J":20,"\u00c4":28,"\u00c1":28,"\u00c0":28,"A":28}},"P":{"d":"1027,-901v0,73,-11,137,-34,193v-23,56,-56,104,-99,142v-43,38,-97,67,-160,87v-63,20,-137,30,-222,30r-108,0r0,413v0,7,-2,13,-6,18v-4,5,-12,10,-22,13v-10,3,-23,6,-40,8v-17,2,-38,3,-64,3v-25,0,-47,-1,-64,-3v-17,-2,-30,-5,-40,-8v-10,-3,-17,-8,-21,-13v-4,-5,-6,-11,-6,-18r0,-1164v0,-31,9,-54,25,-70v16,-16,37,-24,64,-24r305,0v31,0,59,2,87,4v28,2,61,6,100,14v39,8,78,22,118,43v40,21,73,47,101,79v28,32,49,68,64,110v15,42,22,90,22,143xm752,-882v0,-45,-8,-83,-24,-112v-16,-29,-36,-51,-59,-65v-23,-14,-47,-23,-73,-27v-26,-4,-53,-5,-80,-5r-112,0r0,439r118,0v42,0,78,-6,106,-17v28,-11,51,-27,69,-47v18,-20,32,-46,41,-74v9,-28,14,-59,14,-92","w":1090,"k":{"-":45,"\/":85,"\u201d":-45,"\u201c":-20,"\u2019":-45,"\u2018":-20,".":226,",":225,"y":-15,"t":-15,"s":22,"q":25,"\u00f6":33,"\u00f3":33,"\u00f2":33,"o":33,"f":-15,"\u00e9":33,"\u00e8":33,"e":33,"d":25,"\u00e7":38,"c":38,"\u00e4":40,"\u00e1":40,"\u00e0":40,"a":40,"Z":28,"Y":13,"X":45,"V":10,"T":6,"J":123,"\u00c4":139,"\u00c1":139,"\u00c0":139,"A":139}},"Q":{"d":"1427,123v0,24,-1,43,-3,58v-2,15,-6,26,-10,34v-4,8,-8,13,-13,15v-5,2,-10,4,-15,4v-22,0,-50,-6,-86,-18v-36,-12,-75,-30,-116,-52v-41,-22,-83,-50,-126,-82v-43,-32,-83,-69,-120,-111v-31,14,-68,27,-112,37v-44,10,-92,15,-145,15v-101,0,-188,-13,-263,-39v-75,-26,-138,-65,-188,-119v-50,-54,-87,-123,-112,-207v-25,-84,-38,-183,-38,-298v0,-105,13,-198,40,-282v27,-84,66,-156,119,-214v53,-58,117,-103,195,-134v78,-31,168,-47,271,-47v97,0,183,13,257,39v74,26,137,66,188,120v51,54,90,121,116,203v26,82,39,179,39,291v0,58,-3,113,-11,164v-8,51,-19,98,-34,141v-15,43,-33,83,-54,119v-21,36,-46,68,-73,95v41,36,78,63,110,82v32,19,59,33,81,42v22,9,39,17,52,21v13,4,23,9,30,16v7,7,13,19,16,36v3,17,5,41,5,71xm1029,-650v0,-67,-5,-129,-16,-184v-11,-55,-29,-102,-55,-142v-26,-40,-59,-70,-102,-92v-43,-22,-96,-33,-160,-33v-65,0,-119,12,-162,36v-43,24,-78,56,-105,97v-27,41,-46,88,-57,142v-11,54,-16,112,-16,172v0,71,5,135,16,192v11,57,29,105,54,145v25,40,59,70,102,91v43,21,96,32,161,32v65,0,119,-12,162,-36v43,-24,78,-57,105,-98v27,-41,45,-90,56,-145v11,-55,17,-114,17,-177","w":1405,"k":{"}":-30,"]":-35,")":-30,"\/":-110,"\u201d":-12,"\u2019":-12,";":-60,",":-95,"x":-23,"j":-79,"g":-56,"Y":59,"X":-4,"W":15,"V":35,"T":40,"J":-33}},"R":{"d":"1101,-34v0,7,-1,13,-4,18v-3,5,-9,10,-19,13v-10,3,-25,6,-44,7v-19,1,-46,2,-79,2v-28,0,-50,-1,-67,-2v-17,-1,-30,-4,-40,-8v-10,-4,-16,-8,-20,-14v-4,-6,-7,-12,-10,-20r-116,-289v-14,-33,-28,-62,-41,-87v-13,-25,-29,-47,-45,-64v-16,-17,-35,-29,-56,-38v-21,-9,-46,-13,-74,-13r-82,0r0,493v0,7,-2,13,-6,18v-4,5,-12,10,-22,13v-10,3,-23,6,-40,8v-17,2,-38,3,-64,3v-25,0,-47,-1,-64,-3v-17,-2,-30,-5,-40,-8v-10,-3,-17,-8,-21,-13v-4,-5,-6,-11,-6,-18r0,-1175v0,-29,8,-50,23,-63v15,-13,33,-20,55,-20r335,0v34,0,62,1,84,2v22,1,42,3,60,5v52,7,98,20,140,38v42,18,77,42,106,71v29,29,52,62,67,102v15,40,23,86,23,137v0,43,-5,83,-16,119v-11,36,-28,67,-49,95v-21,28,-48,52,-79,73v-31,21,-67,37,-107,50v19,9,38,21,55,34v17,13,33,29,48,48v15,19,29,42,42,66v13,24,26,51,39,82r109,255v10,25,17,43,20,55v3,12,5,21,5,28xm762,-912v0,-43,-10,-79,-29,-108v-19,-29,-51,-50,-95,-62v-13,-3,-29,-6,-46,-8v-17,-2,-40,-3,-70,-3r-118,0r0,367r134,0v37,0,70,-5,98,-14v28,-9,51,-22,70,-38v19,-16,33,-35,42,-58v9,-23,14,-48,14,-76","w":1153,"k":{".":-10,"y":22,"w":22,"v":18,"\u00f6":36,"\u00f3":36,"\u00f2":36,"o":36,"\u00e9":30,"\u00e8":30,"e":30,"Y":38,"W":15,"V":25,"T":20,"S":20,"Q":20,"\u00d6":20,"\u00d3":20,"\u00d2":20,"O":20,"G":16,"C":15}},"S":{"d":"908,-388v0,68,-13,128,-38,179v-25,51,-60,95,-103,129v-43,34,-94,60,-152,77v-58,17,-120,26,-186,26v-45,0,-87,-4,-125,-11v-38,-7,-72,-16,-101,-26v-29,-10,-53,-22,-73,-33v-20,-11,-34,-21,-43,-30v-9,-9,-15,-21,-19,-37v-4,-16,-5,-40,-5,-71v0,-21,1,-38,2,-52v1,-14,4,-25,7,-34v3,-9,7,-15,12,-19v5,-4,10,-5,17,-5v9,0,22,6,39,17v17,11,39,23,66,36v27,13,59,25,96,36v37,11,79,17,128,17v32,0,61,-3,86,-11v25,-8,46,-19,64,-33v18,-14,32,-31,41,-52v9,-21,14,-44,14,-69v0,-29,-8,-55,-24,-76v-16,-21,-37,-40,-63,-56v-26,-16,-54,-32,-87,-46r-101,-45v-35,-16,-68,-35,-101,-55v-33,-20,-61,-44,-87,-72v-26,-28,-47,-62,-63,-101v-16,-39,-24,-85,-24,-139v0,-62,12,-117,35,-164v23,-47,53,-85,92,-116v39,-31,85,-55,138,-70v53,-15,110,-23,169,-23v31,0,61,2,92,7v31,5,59,11,86,19v27,8,50,17,71,27v21,10,34,18,41,25v7,7,11,12,13,17v2,5,4,10,6,18v2,8,3,18,4,30v1,12,1,26,1,43v0,19,0,36,-1,49v-1,13,-4,24,-6,33v-2,9,-6,15,-10,19v-4,4,-10,6,-17,6v-7,0,-19,-5,-35,-14v-16,-9,-36,-19,-59,-30v-23,-11,-50,-21,-81,-30v-31,-9,-64,-14,-101,-14v-29,0,-54,3,-75,10v-21,7,-40,18,-54,30v-14,12,-25,27,-32,44v-7,17,-10,36,-10,55v0,29,8,54,24,75v16,21,36,40,62,56v26,16,57,32,90,46r102,45v35,16,69,35,102,55v33,20,63,44,89,72v26,28,47,62,63,100v16,38,24,84,24,136","w":968,"k":{"-":8,"\u201d":20,"\u201c":20,"\u2019":20,"\u2018":20,"y":29,"w":19,"v":23,"Y":39,"X":19,"W":15,"V":21,"T":20,"J":8,"\u00c4":25,"\u00c1":25,"\u00c0":25,"A":25}},"T":{"d":"1002,-1186v0,19,0,36,-2,50v-2,14,-5,24,-8,32v-3,8,-7,15,-12,19v-5,4,-11,6,-17,6r-324,0r0,1043v0,7,-3,13,-7,18v-4,5,-11,10,-21,13v-10,3,-24,6,-41,8v-17,2,-38,3,-63,3v-25,0,-46,-1,-63,-3v-17,-2,-31,-5,-41,-8v-10,-3,-17,-8,-21,-13v-4,-5,-7,-11,-7,-18r0,-1043r-324,0v-7,0,-12,-2,-17,-6v-5,-4,-9,-11,-12,-19v-3,-8,-6,-18,-8,-32v-2,-14,-2,-31,-2,-50v0,-20,0,-37,2,-51v2,-14,5,-25,8,-33v3,-8,7,-14,12,-18v5,-4,10,-6,17,-6r912,0v6,0,12,2,17,6v5,4,9,10,12,18v3,8,6,19,8,33v2,14,2,31,2,51","w":1014,"k":{"-":140,"\/":120,"\u201d":-37,"\u201c":-25,"\u2019":-37,"\u2018":-25,".":171,":":86,";":85,",":190,"z":107,"y":64,"x":75,"w":60,"v":64,"\u00fc":105,"\u00fa":105,"\u00f9":105,"u":105,"s":136,"r":105,"q":148,"p":105,"\u00f6":177,"\u00f3":177,"\u00f2":177,"o":177,"\u00f1":105,"n":105,"m":105,"\u00ef":-90,"\u00ec":-35,"g":147,"\u00e9":177,"\u00e8":177,"e":177,"d":148,"\u00e7":178,"c":178,"\u00e4":155,"\u00e1":155,"\u00e0":155,"a":155,"T":-25,"S":10,"Q":55,"\u00d6":55,"\u00d3":55,"\u00d2":55,"O":55,"J":73,"G":56,"C":45,"\u00c4":161,"\u00c1":161,"\u00c0":161,"A":161}},"U":{"d":"1197,-482v0,79,-12,150,-35,213v-23,63,-58,116,-103,159v-45,43,-101,76,-168,99v-67,23,-143,34,-230,34v-81,0,-154,-11,-219,-31v-65,-20,-119,-51,-164,-92v-45,-41,-78,-92,-102,-154v-24,-62,-36,-134,-36,-217r0,-787v0,-7,2,-13,6,-18v4,-5,12,-10,22,-13v10,-3,23,-6,40,-8v17,-2,38,-3,64,-3v25,0,46,1,63,3v17,2,30,5,40,8v10,3,17,8,21,13v4,5,7,11,7,18r0,764v0,51,6,96,19,134v13,38,30,68,54,93v24,25,53,43,86,55v33,12,69,19,110,19v41,0,78,-6,111,-19v33,-13,60,-32,83,-56v23,-24,40,-54,52,-90v12,-36,19,-76,19,-121r0,-779v0,-7,2,-13,6,-18v4,-5,11,-10,21,-13v10,-3,23,-6,40,-8v17,-2,39,-3,64,-3v25,0,46,1,62,3v16,2,30,5,40,8v10,3,17,8,21,13v4,5,6,11,6,18r0,776","w":1337,"k":{".":26,",":25,"J":32,"\u00c4":55,"\u00c1":55,"\u00c0":55,"A":55}},"\u00d9":{"d":"760,-1439v7,9,12,17,14,24v2,7,-1,13,-7,17v-6,4,-16,7,-29,9v-13,2,-31,3,-54,3v-21,0,-38,-1,-52,-2v-14,-1,-26,-3,-36,-6v-10,-3,-19,-8,-26,-12v-7,-4,-13,-9,-20,-15r-222,-200v-10,-9,-17,-17,-20,-25v-3,-8,0,-16,6,-22v6,-6,17,-11,34,-15v17,-4,41,-6,72,-6v25,0,46,0,62,1v16,1,30,4,42,7v12,3,21,8,30,14v9,6,17,14,26,24xm1197,-482v0,79,-12,150,-35,213v-23,63,-58,116,-103,159v-45,43,-101,76,-168,99v-67,23,-143,34,-230,34v-81,0,-154,-11,-219,-31v-65,-20,-119,-51,-164,-92v-45,-41,-78,-92,-102,-154v-24,-62,-36,-134,-36,-217r0,-787v0,-7,2,-13,6,-18v4,-5,12,-10,22,-13v10,-3,23,-6,40,-8v17,-2,38,-3,64,-3v25,0,46,1,63,3v17,2,30,5,40,8v10,3,17,8,21,13v4,5,7,11,7,18r0,764v0,51,6,96,19,134v13,38,30,68,54,93v24,25,53,43,86,55v33,12,69,19,110,19v41,0,78,-6,111,-19v33,-13,60,-32,83,-56v23,-24,40,-54,52,-90v12,-36,19,-76,19,-121r0,-779v0,-7,2,-13,6,-18v4,-5,11,-10,21,-13v10,-3,23,-6,40,-8v17,-2,39,-3,64,-3v25,0,46,1,62,3v16,2,30,5,40,8v10,3,17,8,21,13v4,5,6,11,6,18r0,776","w":1337,"k":{".":26,",":25,"J":32,"\u00c4":55,"\u00c1":55,"\u00c0":55,"A":55}},"\u00da":{"d":"741,-1643v9,-10,17,-18,25,-24v8,-6,18,-11,30,-14v12,-3,26,-6,43,-7v17,-1,37,-1,62,-1v31,0,54,2,71,6v17,4,30,9,36,15v6,6,7,14,4,22v-3,8,-10,16,-19,25r-222,200v-7,6,-14,11,-21,15v-7,4,-15,9,-25,12v-10,3,-22,5,-36,6v-14,1,-31,2,-52,2v-23,0,-41,-1,-55,-3v-14,-2,-22,-5,-28,-9v-6,-4,-8,-10,-7,-17v1,-7,6,-15,14,-24xm1197,-482v0,79,-12,150,-35,213v-23,63,-58,116,-103,159v-45,43,-101,76,-168,99v-67,23,-143,34,-230,34v-81,0,-154,-11,-219,-31v-65,-20,-119,-51,-164,-92v-45,-41,-78,-92,-102,-154v-24,-62,-36,-134,-36,-217r0,-787v0,-7,2,-13,6,-18v4,-5,12,-10,22,-13v10,-3,23,-6,40,-8v17,-2,38,-3,64,-3v25,0,46,1,63,3v17,2,30,5,40,8v10,3,17,8,21,13v4,5,7,11,7,18r0,764v0,51,6,96,19,134v13,38,30,68,54,93v24,25,53,43,86,55v33,12,69,19,110,19v41,0,78,-6,111,-19v33,-13,60,-32,83,-56v23,-24,40,-54,52,-90v12,-36,19,-76,19,-121r0,-779v0,-7,2,-13,6,-18v4,-5,11,-10,21,-13v10,-3,23,-6,40,-8v17,-2,39,-3,64,-3v25,0,46,1,62,3v16,2,30,5,40,8v10,3,17,8,21,13v4,5,6,11,6,18r0,776","w":1337,"k":{".":26,",":25,"J":32,"\u00c4":55,"\u00c1":55,"\u00c0":55,"A":55}},"\u00dc":{"d":"580,-1534v0,47,-10,79,-28,98v-18,19,-53,28,-104,28v-51,0,-86,-9,-104,-27v-18,-18,-27,-50,-27,-95v0,-47,9,-80,28,-98v19,-18,53,-28,104,-28v52,0,87,8,105,26v18,18,26,50,26,96xm1017,-1534v0,47,-9,79,-28,98v-19,19,-54,28,-105,28v-51,0,-86,-9,-104,-27v-18,-18,-26,-50,-26,-95v0,-47,10,-80,28,-98v18,-18,53,-28,104,-28v51,0,86,8,104,26v18,18,27,50,27,96xm1197,-482v0,79,-12,150,-35,213v-23,63,-58,116,-103,159v-45,43,-101,76,-168,99v-67,23,-143,34,-230,34v-81,0,-154,-11,-219,-31v-65,-20,-119,-51,-164,-92v-45,-41,-78,-92,-102,-154v-24,-62,-36,-134,-36,-217r0,-787v0,-7,2,-13,6,-18v4,-5,12,-10,22,-13v10,-3,23,-6,40,-8v17,-2,38,-3,64,-3v25,0,46,1,63,3v17,2,30,5,40,8v10,3,17,8,21,13v4,5,7,11,7,18r0,764v0,51,6,96,19,134v13,38,30,68,54,93v24,25,53,43,86,55v33,12,69,19,110,19v41,0,78,-6,111,-19v33,-13,60,-32,83,-56v23,-24,40,-54,52,-90v12,-36,19,-76,19,-121r0,-779v0,-7,2,-13,6,-18v4,-5,11,-10,21,-13v10,-3,23,-6,40,-8v17,-2,39,-3,64,-3v25,0,46,1,62,3v16,2,30,5,40,8v10,3,17,8,21,13v4,5,6,11,6,18r0,776","w":1337,"k":{".":26,",":25,"J":32,"\u00c4":55,"\u00c1":55,"\u00c0":55,"A":55}},"V":{"d":"785,-46v-3,11,-8,21,-13,28v-5,7,-14,12,-26,16v-12,4,-28,5,-49,6v-21,1,-48,2,-81,2r-68,0v0,0,-36,-2,-49,-3v-13,-1,-25,-3,-33,-6v-8,-3,-14,-6,-20,-10v-6,-4,-11,-9,-14,-15v-3,-6,-5,-12,-8,-21r-385,-1147v-8,-24,-13,-43,-15,-57v-2,-14,2,-24,10,-31v8,-7,23,-12,43,-14v20,-2,48,-2,84,-2v31,0,55,1,72,2v17,1,31,4,40,7v9,3,15,8,19,15v4,7,8,15,11,25r315,998r1,0r309,-993v3,-11,6,-21,10,-28v4,-7,10,-12,20,-16v10,-4,24,-7,42,-8v18,-1,43,-2,74,-2v31,0,55,1,72,3v17,2,28,7,34,15v6,8,8,18,6,32v-2,14,-7,33,-15,56","w":1211,"k":{"-":85,"\/":96,"\u201d":-36,"\u2019":-36,".":195,":":60,";":85,",":158,"z":78,"y":29,"\u00fc":58,"\u00fa":58,"\u00f9":58,"u":58,"s":86,"r":58,"q":92,"p":58,"\u00f6":95,"\u00f3":95,"\u00f2":95,"o":95,"\u00f1":58,"n":58,"m":58,"\u00ef":-95,"\u00ec":-60,"g":100,"\u00e9":105,"\u00e8":105,"e":105,"d":92,"\u00e7":109,"c":109,"\u00e4":113,"\u00e1":113,"\u00e0":113,"a":113,"V":-9,"S":16,"Q":40,"\u00d6":40,"\u00d3":40,"\u00d2":40,"O":40,"J":80,"G":35,"C":33,"\u00c4":109,"\u00c1":109,"\u00c0":109,"A":109}},"W":{"d":"1503,-67v-4,16,-10,29,-17,39v-7,10,-17,17,-31,22v-14,5,-32,8,-54,10v-22,2,-50,2,-84,2v-38,0,-68,0,-91,-2v-23,-2,-42,-5,-55,-10v-13,-5,-23,-12,-29,-22v-6,-10,-11,-23,-14,-39r-207,-820r-2,0r-196,820v-3,15,-8,27,-14,37v-6,10,-16,18,-29,23v-13,5,-30,9,-52,11v-22,2,-52,2,-89,2v-39,0,-70,0,-93,-2v-23,-2,-41,-5,-54,-10v-13,-5,-23,-12,-29,-22v-6,-10,-11,-23,-15,-39r-294,-1129v-6,-24,-9,-42,-10,-56v-1,-14,4,-25,12,-32v8,-7,21,-12,40,-14v19,-2,46,-2,80,-2v31,0,56,1,74,2v18,1,33,2,42,6v9,4,16,9,19,16v3,7,6,17,8,30r227,991r1,0r236,-984v3,-13,7,-23,11,-31v4,-8,12,-14,22,-18v10,-4,24,-8,42,-10v18,-2,42,-2,72,-2v32,0,57,1,76,2v19,1,34,4,44,8v10,4,18,11,23,19v5,8,8,19,11,32r244,984r2,0r227,-988v2,-11,5,-19,8,-27v3,-8,10,-14,19,-18v9,-4,23,-8,40,-10v17,-2,42,-2,73,-2v29,0,53,0,69,2v16,2,28,7,35,14v7,7,10,18,9,32v-1,14,-4,34,-10,59","w":1856,"k":{"-":65,"\u201d":-13,"\u2019":-13,".":176,";":111,",":173,"y":36,"v":25,"\u00fc":56,"\u00fa":56,"\u00f9":56,"u":56,"s":68,"r":56,"q":68,"p":56,"\u00f6":80,"\u00f3":80,"\u00f2":80,"o":80,"\u00f1":56,"n":56,"m":56,"\u00ef":-60,"\u00ec":-10,"g":57,"\u00e9":73,"\u00e8":73,"e":73,"d":68,"\u00e7":78,"c":78,"\u00e4":74,"\u00e1":74,"\u00e0":74,"a":74,"X":15,"S":10,"Q":25,"\u00d6":25,"\u00d3":25,"\u00d2":25,"O":25,"J":85,"G":25,"C":26,"\u00c4":96,"\u00c1":96,"\u00c0":96,"A":96}},"X":{"d":"1063,-99v12,23,19,42,23,56v4,14,2,25,-6,32v-8,7,-23,12,-44,14v-21,2,-50,3,-87,3v-31,0,-56,-1,-74,-2v-18,-1,-33,-3,-43,-6v-10,-3,-17,-8,-22,-13v-5,-5,-9,-12,-12,-20r-243,-467r-242,467v-4,8,-8,15,-13,20v-5,5,-12,10,-22,13v-10,3,-26,5,-44,6v-18,1,-42,2,-72,2v-35,0,-61,-1,-80,-3v-19,-2,-32,-7,-39,-14v-7,-7,-8,-18,-4,-32v4,-14,12,-33,25,-56r310,-565r-288,-531v-12,-24,-20,-43,-24,-57v-4,-14,-4,-25,4,-32v8,-7,22,-12,43,-14v21,-2,50,-2,88,-2v31,0,57,1,75,2v18,1,32,3,43,6v11,3,19,8,23,13v4,5,8,12,12,20r227,428r221,-428v4,-8,8,-15,12,-20v4,-5,12,-10,22,-13v10,-3,23,-5,40,-6v17,-1,40,-2,70,-2v33,0,60,0,79,2v19,2,33,7,40,14v7,7,9,18,5,32v-4,14,-11,33,-22,57r-288,528","w":1128,"k":{"-":65,"\u201d":20,"\u2019":20,"y":65,"w":65,"v":73,"u":35,"t":46,"q":46,"\u00f6":39,"\u00f3":39,"\u00f2":39,"o":39,"g":7,"\u00e9":39,"\u00e8":39,"e":39,"d":46,"S":20,"Q":70,"\u00d6":70,"\u00d3":70,"\u00d2":70,"O":70,"G":75,"C":70}},"Y":{"d":"664,-491r0,455v0,7,-2,13,-6,18v-4,5,-12,10,-22,13v-10,3,-23,6,-40,8v-17,2,-39,3,-64,3v-26,0,-47,-1,-64,-3v-17,-2,-30,-5,-40,-8v-10,-3,-18,-8,-22,-13v-4,-5,-6,-11,-6,-18r0,-455r-354,-705v-13,-25,-20,-44,-24,-58v-4,-14,-2,-23,6,-30v8,-7,21,-12,42,-14v21,-2,49,-2,86,-2v31,0,56,1,74,2v18,1,32,4,43,8v11,4,18,8,23,14v5,6,10,14,15,23r144,318v14,31,27,63,41,97r42,107r2,0r39,-105r39,-97r142,-316v3,-11,7,-19,12,-25v5,-6,13,-12,23,-16v10,-4,24,-7,41,-8v17,-1,40,-2,69,-2v38,0,68,0,89,2v21,2,34,7,42,14v8,7,10,17,6,31v-4,14,-12,33,-24,57","w":1064,"k":{"-":110,"\/":135,"\u201d":-20,"\u2019":-20,".":230,":":141,";":135,",":238,"z":112,"y":75,"x":86,"w":64,"v":69,"\u00fc":100,"\u00fa":100,"\u00f9":100,"u":100,"t":50,"s":127,"r":100,"q":145,"p":100,"\u00f6":165,"\u00f3":165,"\u00f2":165,"o":165,"\u00f1":100,"n":100,"m":100,"j":46,"\u00ef":-75,"\u00ed":70,"\u00ec":-40,"i":31,"g":153,"f":65,"\u00e9":164,"\u00e8":164,"e":164,"d":145,"\u00e7":174,"c":174,"\u00e4":140,"\u00e1":140,"\u00e0":140,"a":140,"Z":10,"S":30,"Q":77,"\u00d6":77,"\u00d3":77,"\u00d2":77,"O":77,"J":115,"G":80,"C":80,"\u00c4":175,"\u00c1":175,"\u00c0":175,"A":175}},"Z":{"d":"936,-104v0,19,0,36,-2,49v-2,13,-5,25,-8,33v-3,8,-7,14,-12,17v-5,3,-11,5,-17,5r-763,0v-27,0,-48,-8,-62,-23v-14,-15,-21,-38,-21,-67r0,-44v0,-13,1,-25,3,-36v2,-11,4,-23,8,-34v4,-11,10,-24,18,-37r28,-48r502,-796r-498,0v-8,0,-14,-1,-20,-5v-6,-4,-10,-10,-14,-18v-4,-8,-6,-19,-8,-32v-2,-13,-3,-29,-3,-48v0,-20,1,-36,3,-50v2,-14,4,-26,8,-34v4,-8,8,-14,14,-17v6,-3,12,-5,20,-5r715,0v27,0,48,7,61,21v13,14,19,34,19,59r0,49v0,18,-1,34,-3,47v-2,13,-4,26,-8,38v-4,12,-11,25,-18,38v-7,13,-17,28,-28,46r-494,785r541,0v13,0,22,8,29,24v7,16,10,44,10,83","w":979,"k":{"-":35,"\u201d":-32,"\u2019":-32,"y":35,"w":39,"v":43,"q":15,"\u00f6":26,"\u00f3":26,"\u00f2":26,"o":26,"\u00ef":-45,"\u00ec":-13,"\u00e9":31,"\u00e8":31,"e":31,"d":15,"\u00e7":15,"c":15,"\u00e4":10,"\u00e1":10,"\u00e0":10,"a":10,"Y":13,"W":12,"Q":30,"\u00d6":30,"\u00d3":30,"\u00d2":30,"O":30,"G":30,"C":34,"\u00c4":14,"\u00c1":14,"\u00c0":14,"A":14}},"a":{"d":"886,-31v0,9,-3,17,-10,22v-7,5,-18,9,-32,11v-14,2,-35,4,-63,4v-30,0,-51,-2,-65,-4v-14,-2,-24,-6,-30,-11v-6,-5,-8,-13,-8,-22r0,-71v-37,39,-79,70,-126,92v-47,22,-99,33,-156,33v-47,0,-90,-7,-130,-19v-40,-12,-75,-30,-104,-54v-29,-24,-51,-55,-67,-91v-16,-36,-24,-78,-24,-126v0,-52,11,-97,31,-135v20,-38,50,-71,90,-96v40,-25,91,-43,151,-55v60,-12,130,-18,209,-18r87,0r0,-54v0,-28,-3,-52,-9,-73v-6,-21,-15,-39,-28,-53v-13,-14,-30,-24,-52,-31v-22,-7,-48,-10,-80,-10v-42,0,-79,5,-112,14v-33,9,-63,20,-88,31v-25,11,-47,22,-64,31v-17,9,-30,14,-41,14v-7,0,-13,-2,-19,-7v-6,-5,-10,-11,-14,-20v-4,-9,-7,-19,-9,-32v-2,-13,-3,-27,-3,-42v0,-21,2,-37,5,-49v3,-12,10,-22,19,-32v9,-10,26,-20,49,-32v23,-12,51,-23,82,-33v31,-10,66,-19,103,-25v37,-6,75,-9,114,-9v70,0,130,7,180,21v50,14,90,34,122,62v32,28,55,65,70,110v15,45,22,98,22,159r0,600xm639,-413r-96,0v-41,0,-75,3,-104,9v-29,6,-52,15,-70,27v-18,12,-31,26,-39,43v-8,17,-13,37,-13,59v0,37,11,67,35,88v24,21,57,32,99,32v35,0,67,-9,97,-27v30,-18,60,-44,91,-79r0,-152","w":1011,"k":{"\u201c":30,"\u2018":30,"y":37,"x":19,"w":16,"v":29,"t":19,"f":11}},"\u00e0":{"d":"886,-31v0,9,-3,17,-10,22v-7,5,-18,9,-32,11v-14,2,-35,4,-63,4v-30,0,-51,-2,-65,-4v-14,-2,-24,-6,-30,-11v-6,-5,-8,-13,-8,-22r0,-71v-37,39,-79,70,-126,92v-47,22,-99,33,-156,33v-47,0,-90,-7,-130,-19v-40,-12,-75,-30,-104,-54v-29,-24,-51,-55,-67,-91v-16,-36,-24,-78,-24,-126v0,-52,11,-97,31,-135v20,-38,50,-71,90,-96v40,-25,91,-43,151,-55v60,-12,130,-18,209,-18r87,0r0,-54v0,-28,-3,-52,-9,-73v-6,-21,-15,-39,-28,-53v-13,-14,-30,-24,-52,-31v-22,-7,-48,-10,-80,-10v-42,0,-79,5,-112,14v-33,9,-63,20,-88,31v-25,11,-47,22,-64,31v-17,9,-30,14,-41,14v-7,0,-13,-2,-19,-7v-6,-5,-10,-11,-14,-20v-4,-9,-7,-19,-9,-32v-2,-13,-3,-27,-3,-42v0,-21,2,-37,5,-49v3,-12,10,-22,19,-32v9,-10,26,-20,49,-32v23,-12,51,-23,82,-33v31,-10,66,-19,103,-25v37,-6,75,-9,114,-9v70,0,130,7,180,21v50,14,90,34,122,62v32,28,55,65,70,110v15,45,22,98,22,159r0,600xm639,-413r-96,0v-41,0,-75,3,-104,9v-29,6,-52,15,-70,27v-18,12,-31,26,-39,43v-8,17,-13,37,-13,59v0,37,11,67,35,88v24,21,57,32,99,32v35,0,67,-9,97,-27v30,-18,60,-44,91,-79r0,-152xm613,-1135v6,9,10,16,11,23v1,7,-1,12,-7,16v-6,4,-15,8,-28,10v-13,2,-31,3,-54,3v-19,0,-35,-1,-48,-2v-13,-1,-23,-3,-32,-6v-9,-3,-16,-7,-22,-11v-6,-4,-11,-9,-16,-16r-193,-232v-7,-7,-10,-14,-11,-21v-1,-7,2,-12,10,-17v8,-5,21,-9,39,-12v18,-3,42,-4,73,-4v22,0,41,1,56,2v15,1,27,3,37,6v10,3,19,8,25,13v6,5,12,12,17,19","w":1011,"k":{"\u201c":30,"\u2018":30,"y":37,"x":19,"w":16,"v":29,"t":19,"f":11}},"\u00e1":{"d":"551,-1364v5,-7,10,-14,17,-19v7,-5,15,-10,25,-13v10,-3,23,-5,38,-6v15,-1,34,-2,56,-2v31,0,55,1,73,4v18,3,30,7,38,12v8,5,11,10,10,17v-1,7,-4,14,-10,21r-194,232v-5,7,-11,12,-16,16v-5,4,-12,8,-20,11v-8,3,-19,5,-32,6v-13,1,-29,2,-48,2v-23,0,-42,-1,-56,-3v-14,-2,-23,-6,-28,-10v-5,-4,-7,-9,-6,-16v1,-7,4,-14,10,-23xm886,-31v0,9,-3,17,-10,22v-7,5,-18,9,-32,11v-14,2,-35,4,-63,4v-30,0,-51,-2,-65,-4v-14,-2,-24,-6,-30,-11v-6,-5,-8,-13,-8,-22r0,-71v-37,39,-79,70,-126,92v-47,22,-99,33,-156,33v-47,0,-90,-7,-130,-19v-40,-12,-75,-30,-104,-54v-29,-24,-51,-55,-67,-91v-16,-36,-24,-78,-24,-126v0,-52,11,-97,31,-135v20,-38,50,-71,90,-96v40,-25,91,-43,151,-55v60,-12,130,-18,209,-18r87,0r0,-54v0,-28,-3,-52,-9,-73v-6,-21,-15,-39,-28,-53v-13,-14,-30,-24,-52,-31v-22,-7,-48,-10,-80,-10v-42,0,-79,5,-112,14v-33,9,-63,20,-88,31v-25,11,-47,22,-64,31v-17,9,-30,14,-41,14v-7,0,-13,-2,-19,-7v-6,-5,-10,-11,-14,-20v-4,-9,-7,-19,-9,-32v-2,-13,-3,-27,-3,-42v0,-21,2,-37,5,-49v3,-12,10,-22,19,-32v9,-10,26,-20,49,-32v23,-12,51,-23,82,-33v31,-10,66,-19,103,-25v37,-6,75,-9,114,-9v70,0,130,7,180,21v50,14,90,34,122,62v32,28,55,65,70,110v15,45,22,98,22,159r0,600xm639,-413r-96,0v-41,0,-75,3,-104,9v-29,6,-52,15,-70,27v-18,12,-31,26,-39,43v-8,17,-13,37,-13,59v0,37,11,67,35,88v24,21,57,32,99,32v35,0,67,-9,97,-27v30,-18,60,-44,91,-79r0,-152","w":1011,"k":{"\u201c":30,"\u2018":30,"y":37,"x":19,"w":16,"v":29,"t":19,"f":11}},"\u00e4":{"d":"443,-1227v0,47,-9,79,-27,97v-18,18,-51,28,-100,28v-50,0,-84,-8,-101,-26v-17,-18,-26,-49,-26,-94v0,-48,9,-81,27,-99v18,-18,51,-27,100,-27v51,0,85,8,102,26v17,18,25,50,25,95xm834,-1227v0,47,-8,79,-26,97v-18,18,-52,28,-102,28v-49,0,-83,-8,-100,-26v-17,-18,-26,-49,-26,-94v0,-48,8,-81,26,-99v18,-18,52,-27,101,-27v50,0,84,8,101,26v17,18,26,50,26,95xm886,-31v0,9,-3,17,-10,22v-7,5,-18,9,-32,11v-14,2,-35,4,-63,4v-30,0,-51,-2,-65,-4v-14,-2,-24,-6,-30,-11v-6,-5,-8,-13,-8,-22r0,-71v-37,39,-79,70,-126,92v-47,22,-99,33,-156,33v-47,0,-90,-7,-130,-19v-40,-12,-75,-30,-104,-54v-29,-24,-51,-55,-67,-91v-16,-36,-24,-78,-24,-126v0,-52,11,-97,31,-135v20,-38,50,-71,90,-96v40,-25,91,-43,151,-55v60,-12,130,-18,209,-18r87,0r0,-54v0,-28,-3,-52,-9,-73v-6,-21,-15,-39,-28,-53v-13,-14,-30,-24,-52,-31v-22,-7,-48,-10,-80,-10v-42,0,-79,5,-112,14v-33,9,-63,20,-88,31v-25,11,-47,22,-64,31v-17,9,-30,14,-41,14v-7,0,-13,-2,-19,-7v-6,-5,-10,-11,-14,-20v-4,-9,-7,-19,-9,-32v-2,-13,-3,-27,-3,-42v0,-21,2,-37,5,-49v3,-12,10,-22,19,-32v9,-10,26,-20,49,-32v23,-12,51,-23,82,-33v31,-10,66,-19,103,-25v37,-6,75,-9,114,-9v70,0,130,7,180,21v50,14,90,34,122,62v32,28,55,65,70,110v15,45,22,98,22,159r0,600xm639,-413r-96,0v-41,0,-75,3,-104,9v-29,6,-52,15,-70,27v-18,12,-31,26,-39,43v-8,17,-13,37,-13,59v0,37,11,67,35,88v24,21,57,32,99,32v35,0,67,-9,97,-27v30,-18,60,-44,91,-79r0,-152","w":1011,"k":{"\u201c":30,"\u2018":30,"y":37,"x":19,"w":16,"v":29,"t":19,"f":11}},"b":{"d":"1024,-492v0,79,-9,151,-26,214v-17,63,-42,117,-75,162v-33,45,-73,79,-121,103v-48,24,-101,36,-162,36v-30,0,-58,-3,-84,-9v-26,-6,-50,-14,-74,-27v-24,-13,-47,-29,-70,-48v-23,-19,-47,-43,-71,-70r0,97v0,7,-1,13,-5,18v-4,5,-10,10,-18,13v-8,3,-20,6,-34,7v-14,1,-31,2,-51,2v-21,0,-37,-1,-51,-2v-14,-1,-26,-4,-34,-7v-8,-3,-14,-8,-17,-13v-3,-5,-5,-11,-5,-18r0,-1315v0,-7,2,-13,6,-18v4,-5,10,-9,20,-13v10,-4,23,-7,39,-9v16,-2,36,-3,61,-3v25,0,45,1,61,3v16,2,29,5,39,9v10,4,16,8,20,13v4,5,6,11,6,18r0,493v23,-23,45,-42,68,-58v23,-16,45,-30,68,-40v23,-10,46,-17,70,-22v24,-5,49,-7,76,-7v66,0,122,13,168,39v46,26,83,62,112,107v29,45,51,97,64,157v13,60,20,122,20,188xm763,-474v0,-38,-3,-75,-9,-110v-6,-35,-15,-67,-29,-94v-14,-27,-33,-50,-55,-66v-22,-16,-50,-24,-84,-24v-17,0,-33,2,-49,7v-16,5,-32,13,-49,24v-17,11,-35,26,-53,44v-18,18,-37,40,-57,67r0,296v35,45,70,80,102,104v32,24,66,35,101,35v33,0,60,-8,83,-25v23,-17,41,-38,56,-65v15,-27,26,-57,33,-91v7,-34,10,-68,10,-102","w":1099,"k":{"\u201c":25,"\u2018":25,"z":25,"y":11,"x":37,"w":10,"v":10,"t":8,"s":10,"f":11}},"c":{"d":"801,-176v0,17,0,32,-1,44v-1,12,-2,21,-4,29v-2,8,-4,14,-6,19v-2,5,-8,12,-16,20v-8,8,-22,17,-41,28v-19,11,-41,20,-66,29v-25,9,-52,16,-81,21v-29,5,-58,8,-89,8v-69,0,-130,-11,-183,-32v-53,-21,-97,-52,-133,-94v-36,-42,-63,-93,-81,-153v-18,-60,-28,-129,-28,-206v0,-89,12,-166,34,-231v22,-65,53,-119,93,-162v40,-43,87,-74,142,-95v55,-21,115,-31,180,-31v27,0,53,2,79,7v26,5,50,11,72,19v22,8,42,17,60,27v18,10,30,19,37,26v7,7,12,14,15,19v3,5,6,11,8,19v2,8,3,17,4,29v1,12,1,26,1,43v0,39,-3,65,-10,81v-7,16,-15,24,-26,24v-11,0,-23,-5,-36,-14v-13,-9,-28,-20,-45,-31v-17,-11,-38,-22,-62,-31v-24,-9,-53,-14,-86,-14v-65,0,-115,26,-150,76v-35,50,-52,124,-52,221v0,48,4,90,13,127v9,37,22,67,39,92v17,25,38,44,64,56v26,12,55,18,89,18v35,0,64,-6,89,-16v25,-10,47,-21,66,-34v19,-13,34,-24,47,-34v13,-10,23,-16,32,-16v6,0,11,2,15,5v4,3,8,10,10,19v2,9,4,20,5,34v1,14,2,32,2,54","w":857,"k":{"\u00f6":10,"\u00f3":10,"\u00f2":10,"o":10,"\u00e4":12,"\u00e1":12,"\u00e0":12,"a":12}},"\u00e7":{"d":"801,-176v0,17,0,32,-1,44v-1,12,-2,21,-4,29v-2,8,-4,14,-6,19v-2,5,-8,12,-16,20v-8,8,-22,17,-42,28v-20,11,-44,22,-72,32v-28,10,-57,16,-88,20r22,50v12,26,21,49,26,68v5,19,8,38,8,56v0,31,-5,57,-16,79v-11,22,-26,40,-46,54v-20,14,-42,24,-68,31v-26,7,-54,11,-84,11v-29,0,-57,-2,-82,-6v-25,-4,-45,-8,-62,-13v-17,-5,-29,-9,-36,-12v-7,-3,-11,-8,-14,-13v-3,-5,-5,-13,-6,-21v-1,-8,-2,-19,-2,-34v0,-27,3,-46,8,-56v5,-10,14,-15,27,-15r116,0v19,0,34,-5,43,-13v9,-8,14,-19,14,-34v0,-8,-1,-17,-4,-27v-3,-10,-7,-20,-12,-31r-39,-85v-65,-17,-120,-45,-163,-87v-43,-42,-76,-94,-98,-158v-22,-64,-32,-138,-32,-223v0,-89,12,-166,34,-231v22,-65,53,-119,93,-162v40,-43,87,-74,142,-95v55,-21,115,-31,180,-31v27,0,53,2,79,7v26,5,50,11,72,19v22,8,42,17,60,27v18,10,30,19,37,26v7,7,12,14,15,19v3,5,6,11,8,19v2,8,3,17,4,29v1,12,1,26,1,43v0,39,-3,65,-10,81v-7,16,-15,24,-26,24v-11,0,-23,-5,-36,-14v-13,-9,-28,-20,-45,-31v-17,-11,-38,-22,-62,-31v-24,-9,-53,-14,-86,-14v-65,0,-115,26,-150,76v-35,50,-52,124,-52,221v0,48,4,90,13,127v9,37,22,67,39,92v17,25,38,44,64,56v26,12,55,18,89,18v35,0,64,-6,89,-16v25,-10,47,-21,66,-34v19,-13,34,-24,47,-34v13,-10,23,-16,32,-16v6,0,11,2,15,5v4,3,8,10,10,19v2,9,4,20,5,34v1,14,2,32,2,54","w":857,"k":{"\u00f6":10,"\u00f3":10,"\u00f2":10,"o":10,"\u00e4":12,"\u00e1":12,"\u00e0":12,"a":12}},"d":{"d":"972,-34v0,7,-2,13,-5,18v-3,5,-9,10,-17,13v-8,3,-18,6,-32,7v-14,1,-31,2,-51,2v-21,0,-39,-1,-52,-2v-13,-1,-25,-4,-33,-7v-8,-3,-14,-8,-18,-13v-4,-5,-5,-11,-5,-18r0,-99v-46,49,-95,88,-145,115v-50,27,-106,41,-167,41v-68,0,-126,-13,-173,-39v-47,-26,-84,-62,-114,-107v-30,-45,-52,-97,-65,-157v-13,-60,-20,-122,-20,-188v0,-79,8,-151,25,-214v17,-63,42,-117,75,-162v33,-45,73,-79,122,-103v49,-24,105,-36,168,-36v50,0,95,11,136,31v41,20,81,50,121,89r0,-483v0,-7,2,-13,6,-18v4,-5,10,-10,20,-14v10,-4,22,-6,38,-8v16,-2,36,-3,61,-3v25,0,45,1,61,3v16,2,29,4,38,8v9,4,16,9,20,14v4,5,6,11,6,18r0,1312xm722,-630v-36,-45,-71,-80,-104,-104v-33,-24,-67,-36,-103,-36v-33,0,-61,8,-85,24v-24,16,-42,39,-56,66v-14,27,-25,58,-32,92v-7,34,-11,68,-11,103v0,37,3,74,9,109v6,35,16,66,30,94v14,28,31,50,54,67v23,17,51,25,86,25v17,0,34,-3,50,-8v16,-5,33,-13,50,-24v17,-11,35,-26,53,-44v18,-18,38,-41,59,-68r0,-296","w":1099},"e":{"d":"950,-506v0,31,-6,53,-20,68v-14,15,-33,22,-57,22r-543,0v0,38,5,73,14,104v9,31,22,56,42,78v20,22,45,39,76,50v31,11,69,17,112,17v44,0,83,-3,116,-9v33,-6,62,-14,86,-22v24,-8,45,-14,61,-20v16,-6,29,-10,39,-10v6,0,11,2,15,4v4,2,7,6,10,12v3,6,4,15,5,26v1,11,2,24,2,41v0,15,0,27,-1,37v-1,10,-2,20,-3,27v-1,7,-3,14,-6,19v-3,5,-6,9,-10,14v-4,5,-17,11,-36,19v-19,8,-44,15,-74,23v-30,8,-64,14,-103,20v-39,6,-80,9,-124,9v-79,0,-149,-10,-209,-30v-60,-20,-109,-50,-149,-91v-40,-41,-69,-92,-89,-154v-20,-62,-30,-135,-30,-218v0,-79,10,-150,31,-214v21,-64,51,-118,90,-162v39,-44,87,-79,143,-102v56,-23,120,-35,191,-35v75,0,138,11,191,33v53,22,97,53,131,92v34,39,59,85,75,138v16,53,24,111,24,174r0,40xm706,-578v2,-71,-12,-126,-42,-166v-30,-40,-78,-61,-141,-61v-32,0,-59,6,-83,18v-24,12,-44,29,-60,49v-16,20,-28,44,-36,72v-8,28,-13,57,-14,88r376,0","w":1031,"k":{"\u201c":15,"\u2018":15,"z":20,"y":19,"x":32,"w":10,"v":10,"t":14,"f":15}},"\u00e8":{"d":"950,-506v0,31,-6,53,-20,68v-14,15,-33,22,-57,22r-543,0v0,38,5,73,14,104v9,31,22,56,42,78v20,22,45,39,76,50v31,11,69,17,112,17v44,0,83,-3,116,-9v33,-6,62,-14,86,-22v24,-8,45,-14,61,-20v16,-6,29,-10,39,-10v6,0,11,2,15,4v4,2,7,6,10,12v3,6,4,15,5,26v1,11,2,24,2,41v0,15,0,27,-1,37v-1,10,-2,20,-3,27v-1,7,-3,14,-6,19v-3,5,-6,9,-10,14v-4,5,-17,11,-36,19v-19,8,-44,15,-74,23v-30,8,-64,14,-103,20v-39,6,-80,9,-124,9v-79,0,-149,-10,-209,-30v-60,-20,-109,-50,-149,-91v-40,-41,-69,-92,-89,-154v-20,-62,-30,-135,-30,-218v0,-79,10,-150,31,-214v21,-64,51,-118,90,-162v39,-44,87,-79,143,-102v56,-23,120,-35,191,-35v75,0,138,11,191,33v53,22,97,53,131,92v34,39,59,85,75,138v16,53,24,111,24,174r0,40xm706,-578v2,-71,-12,-126,-42,-166v-30,-40,-78,-61,-141,-61v-32,0,-59,6,-83,18v-24,12,-44,29,-60,49v-16,20,-28,44,-36,72v-8,28,-13,57,-14,88r376,0xm620,-1135v6,9,10,16,11,23v1,7,-1,12,-7,16v-6,4,-15,8,-28,10v-13,2,-31,3,-54,3v-19,0,-35,-1,-48,-2v-13,-1,-23,-3,-32,-6v-9,-3,-16,-7,-22,-11v-6,-4,-11,-9,-16,-16r-193,-232v-7,-7,-10,-14,-11,-21v-1,-7,2,-12,10,-17v8,-5,21,-9,39,-12v18,-3,42,-4,73,-4v22,0,41,1,56,2v15,1,27,3,37,6v10,3,19,8,25,13v6,5,12,12,17,19","w":1031,"k":{"\u201c":15,"\u2018":15,"z":20,"y":19,"x":32,"w":10,"v":10,"t":14,"f":15}},"\u00e9":{"d":"565,-1364v5,-7,10,-14,17,-19v7,-5,15,-10,25,-13v10,-3,23,-5,38,-6v15,-1,34,-2,56,-2v31,0,55,1,73,4v18,3,30,7,38,12v8,5,11,10,10,17v-1,7,-4,14,-10,21r-194,232v-5,7,-11,12,-16,16v-5,4,-12,8,-20,11v-8,3,-19,5,-32,6v-13,1,-29,2,-48,2v-23,0,-42,-1,-56,-3v-14,-2,-23,-6,-28,-10v-5,-4,-7,-9,-6,-16v1,-7,4,-14,10,-23xm950,-506v0,31,-6,53,-20,68v-14,15,-33,22,-57,22r-543,0v0,38,5,73,14,104v9,31,22,56,42,78v20,22,45,39,76,50v31,11,69,17,112,17v44,0,83,-3,116,-9v33,-6,62,-14,86,-22v24,-8,45,-14,61,-20v16,-6,29,-10,39,-10v6,0,11,2,15,4v4,2,7,6,10,12v3,6,4,15,5,26v1,11,2,24,2,41v0,15,0,27,-1,37v-1,10,-2,20,-3,27v-1,7,-3,14,-6,19v-3,5,-6,9,-10,14v-4,5,-17,11,-36,19v-19,8,-44,15,-74,23v-30,8,-64,14,-103,20v-39,6,-80,9,-124,9v-79,0,-149,-10,-209,-30v-60,-20,-109,-50,-149,-91v-40,-41,-69,-92,-89,-154v-20,-62,-30,-135,-30,-218v0,-79,10,-150,31,-214v21,-64,51,-118,90,-162v39,-44,87,-79,143,-102v56,-23,120,-35,191,-35v75,0,138,11,191,33v53,22,97,53,131,92v34,39,59,85,75,138v16,53,24,111,24,174r0,40xm706,-578v2,-71,-12,-126,-42,-166v-30,-40,-78,-61,-141,-61v-32,0,-59,6,-83,18v-24,12,-44,29,-60,49v-16,20,-28,44,-36,72v-8,28,-13,57,-14,88r376,0","w":1031,"k":{"\u201c":15,"\u2018":15,"z":20,"y":19,"x":32,"w":10,"v":10,"t":14,"f":15}},"f":{"d":"664,-1266v0,19,-1,34,-2,46v-1,12,-3,22,-6,28v-3,6,-6,10,-9,12v-3,2,-7,4,-11,4v-5,0,-10,-2,-16,-4v-6,-2,-12,-4,-20,-7v-8,-3,-19,-5,-30,-7v-11,-2,-25,-4,-40,-4v-18,0,-33,2,-46,8v-13,6,-24,16,-33,28v-9,12,-15,28,-19,48v-4,20,-6,43,-6,72r0,82r163,0v6,0,12,2,17,5v5,3,9,9,12,17v3,8,6,18,8,31v2,13,2,30,2,49v0,37,-3,62,-10,78v-7,16,-16,24,-29,24r-163,0r0,722v0,7,-2,13,-6,18v-4,5,-11,9,-20,12v-9,3,-22,6,-39,8v-17,2,-37,2,-61,2v-24,0,-44,0,-60,-2v-16,-2,-30,-5,-40,-8v-10,-3,-16,-7,-20,-12v-4,-5,-5,-11,-5,-18r0,-722r-112,0v-13,0,-23,-8,-29,-24v-6,-16,-9,-41,-9,-78v0,-19,1,-36,3,-49v2,-13,3,-23,6,-31v3,-8,7,-14,12,-17v5,-3,11,-5,18,-5r111,0r0,-75v0,-61,6,-113,18,-159v12,-46,31,-84,57,-114v26,-30,58,-54,98,-69v40,-15,86,-23,140,-23v26,0,51,2,74,6v23,4,42,9,55,14v13,5,22,10,27,14v5,4,9,12,12,20v3,8,5,19,6,32v1,13,2,29,2,48","w":648,"k":{")":-30,"-":45,"\u201d":-90,"\u201c":-35,"\u2019":-90,"\u2018":-35,".":110,",":100,"z":20,"y":-10,"w":-7,"v":-20,"s":20,"q":37,"\u00f6":31,"\u00f3":31,"\u00f2":31,"o":31,"g":40,"\u00e9":36,"\u00e8":36,"e":36,"d":37,"\u00e7":35,"c":35,"\u00e4":33,"\u00e1":33,"\u00e0":33,"a":33}},"g":{"d":"930,-864v0,32,-4,56,-11,71v-7,15,-16,23,-27,23r-105,0v15,16,25,34,31,54v6,20,10,42,10,64v0,52,-9,98,-26,138v-17,40,-42,74,-74,102v-32,28,-72,50,-118,64v-46,14,-96,21,-152,21v-29,0,-56,-4,-82,-11v-26,-7,-46,-15,-60,-24v-8,9,-16,19,-22,31v-6,12,-9,25,-9,40v0,19,8,35,25,47v17,12,41,20,72,21r217,8v51,2,95,9,135,21v40,12,73,30,100,52v27,22,48,50,62,81v14,31,22,67,22,107v0,44,-10,85,-29,124v-19,39,-48,73,-87,102v-39,29,-88,51,-146,68v-58,17,-126,25,-204,25v-76,0,-140,-6,-194,-18v-54,-12,-98,-29,-132,-50v-34,-21,-60,-47,-76,-77v-16,-30,-23,-62,-23,-97v0,-22,3,-43,9,-63v6,-20,13,-40,24,-58v11,-18,25,-35,41,-52v16,-17,34,-33,55,-48v-29,-15,-50,-36,-66,-62v-16,-26,-24,-56,-24,-87v0,-39,9,-75,27,-107v18,-32,41,-62,70,-88v-23,-23,-42,-51,-56,-84v-14,-33,-21,-73,-21,-122v0,-52,10,-99,28,-140v18,-41,43,-76,76,-104v33,-28,72,-49,117,-64v45,-15,95,-23,150,-23v28,0,55,2,81,5v26,3,49,8,71,14r283,0v11,0,21,7,28,22v7,15,10,39,10,74xm607,-653v0,-48,-13,-85,-40,-112v-27,-27,-64,-40,-113,-40v-25,0,-46,5,-65,13v-19,8,-35,20,-47,34v-12,14,-21,31,-27,50v-6,19,-9,38,-9,59v0,45,13,81,40,107v27,26,64,40,111,40v25,0,47,-4,66,-12v19,-8,35,-19,47,-33v12,-14,22,-31,28,-49v6,-18,9,-37,9,-57xm666,59v0,-30,-12,-53,-36,-69v-24,-16,-57,-25,-99,-26r-179,-5v-17,13,-32,25,-42,37v-10,12,-18,22,-24,33v-6,11,-11,21,-13,31v-2,10,-3,20,-3,31v0,33,16,59,50,76v34,17,82,26,143,26v38,0,70,-3,96,-11v26,-8,47,-18,63,-31v16,-13,27,-27,34,-43v7,-16,10,-32,10,-49","w":971,"k":{"\/":-60,"\u201d":-70,"\u201c":-18,"\u2019":-70,"\u2018":-18,",":-30,"t":15,"q":23,"\u00f6":20,"\u00f3":20,"\u00f2":20,"o":20,"g":-17,"\u00e9":22,"\u00e8":22,"e":22,"d":23,"\u00e7":15,"c":15,"\u00e4":35,"\u00e1":35,"\u00e0":35,"a":35}},"h":{"d":"978,-34v0,7,-2,13,-6,18v-4,5,-11,9,-20,12v-9,3,-22,6,-38,8v-16,2,-37,2,-61,2v-25,0,-45,0,-61,-2v-16,-2,-30,-5,-39,-8v-9,-3,-16,-7,-20,-12v-4,-5,-6,-11,-6,-18r0,-509v0,-43,-3,-77,-9,-102v-6,-25,-16,-45,-28,-63v-12,-18,-27,-32,-46,-42v-19,-10,-42,-14,-67,-14v-32,0,-64,12,-97,35v-33,23,-67,57,-102,102r0,593v0,7,-2,13,-6,18v-4,5,-10,9,-20,12v-10,3,-23,6,-39,8v-16,2,-36,2,-61,2v-25,0,-45,0,-61,-2v-16,-2,-29,-5,-39,-8v-10,-3,-16,-7,-20,-12v-4,-5,-6,-11,-6,-18r0,-1315v0,-7,2,-13,6,-18v4,-5,10,-9,20,-13v10,-4,23,-7,39,-9v16,-2,36,-3,61,-3v25,0,45,1,61,3v16,2,29,5,39,9v10,4,16,8,20,13v4,5,6,11,6,18r0,493v43,-43,87,-75,132,-96v45,-21,92,-31,141,-31v61,0,111,10,153,30v42,20,76,47,102,82v26,35,44,75,55,121v11,46,17,103,17,169r0,547","w":1099,"k":{"\u201c":30,"\u2018":30,"y":37,"x":19,"w":16,"v":29,"t":19,"f":11}},"i":{"d":"378,-34v0,7,-2,13,-6,18v-4,5,-10,9,-20,12v-10,3,-23,6,-39,8v-16,2,-36,2,-61,2v-25,0,-45,0,-61,-2v-16,-2,-29,-5,-39,-8v-10,-3,-16,-7,-20,-12v-4,-5,-6,-11,-6,-18r0,-890v0,-7,2,-13,6,-18v4,-5,10,-8,20,-12v10,-4,23,-7,39,-9v16,-2,36,-3,61,-3v25,0,45,1,61,3v16,2,29,5,39,9v10,4,16,7,20,12v4,5,6,11,6,18r0,890xm397,-1228v0,51,-10,86,-31,105v-21,19,-59,29,-115,29v-57,0,-95,-9,-115,-28v-20,-19,-29,-52,-29,-101v0,-51,11,-85,31,-105v20,-20,58,-30,115,-30v56,0,94,9,114,28v20,19,30,53,30,102","w":503,"k":{"\u201d":-25,"\u2019":-25}},"\u00ec":{"d":"378,-34v0,7,-2,13,-6,18v-4,5,-10,9,-20,12v-10,3,-23,6,-39,8v-16,2,-36,2,-61,2v-25,0,-45,0,-61,-2v-16,-2,-29,-5,-39,-8v-10,-3,-16,-7,-20,-12v-4,-5,-6,-11,-6,-18r0,-892v0,-7,2,-13,6,-18v4,-5,10,-9,20,-12v10,-3,23,-6,39,-8v16,-2,36,-2,61,-2v25,0,45,0,61,2v16,2,29,5,39,8v10,3,16,7,20,12v4,5,6,11,6,18r0,892xm366,-1135v6,9,10,16,11,23v1,7,-1,12,-7,16v-6,4,-15,8,-28,10v-13,2,-31,3,-54,3v-19,0,-35,-1,-48,-2v-13,-1,-23,-3,-32,-6v-9,-3,-16,-7,-22,-11v-6,-4,-11,-9,-16,-16r-193,-232v-7,-7,-10,-14,-11,-21v-1,-7,2,-12,10,-17v8,-5,21,-9,39,-12v18,-3,42,-4,73,-4v22,0,41,1,56,2v15,1,27,3,37,6v10,3,19,8,25,13v6,5,12,12,17,19","w":503},"\u00ed":{"d":"378,-34v0,7,-2,13,-6,18v-4,5,-10,9,-20,12v-10,3,-23,6,-39,8v-16,2,-36,2,-61,2v-25,0,-45,0,-61,-2v-16,-2,-29,-5,-39,-8v-10,-3,-16,-7,-20,-12v-4,-5,-6,-11,-6,-18r0,-892v0,-7,2,-13,6,-18v4,-5,10,-9,20,-12v10,-3,23,-6,39,-8v16,-2,36,-2,61,-2v25,0,45,0,61,2v16,2,29,5,39,8v10,3,16,7,20,12v4,5,6,11,6,18r0,892xm282,-1364v5,-7,10,-14,17,-19v7,-5,15,-10,25,-13v10,-3,23,-5,38,-6v15,-1,34,-2,56,-2v31,0,54,1,72,4v18,3,30,7,38,12v8,5,12,10,11,17v-1,7,-4,14,-10,21r-194,232v-5,7,-11,12,-16,16v-5,4,-13,8,-21,11v-8,3,-18,5,-31,6v-13,1,-29,2,-48,2v-23,0,-41,-1,-55,-3v-14,-2,-24,-6,-29,-10v-5,-4,-8,-9,-7,-16v1,-7,5,-14,11,-23","w":503,"k":{"\u201d":-80,"\u201c":-12,"\u2019":-80,"\u2018":-12}},"\u00ef":{"d":"207,-1227v0,47,-9,79,-26,97v-17,18,-49,28,-96,28v-47,0,-79,-8,-96,-26v-17,-18,-25,-49,-25,-94v0,-47,9,-80,26,-98v17,-18,49,-28,95,-28v48,0,80,8,97,26v17,18,25,50,25,95xm543,-1227v0,47,-9,79,-26,97v-17,18,-49,28,-96,28v-47,0,-79,-8,-95,-26v-16,-18,-25,-49,-25,-94v0,-47,8,-80,25,-98v17,-18,49,-28,96,-28v47,0,79,8,96,26v17,18,25,50,25,95xm378,-34v0,7,-2,13,-6,18v-4,5,-10,9,-20,12v-10,3,-23,6,-39,8v-16,2,-36,2,-61,2v-25,0,-45,0,-61,-2v-16,-2,-29,-5,-39,-8v-10,-3,-16,-7,-20,-12v-4,-5,-6,-11,-6,-18r0,-892v0,-7,2,-13,6,-18v4,-5,10,-9,20,-12v10,-3,23,-6,39,-8v16,-2,36,-2,61,-2v25,0,45,0,61,2v16,2,29,5,39,8v10,3,16,7,20,12v4,5,6,11,6,18r0,892","w":503,"k":{"\u201d":-65,"\u201c":-50,"\u2019":-65,"\u2018":-50,"l":-20,"k":-20,"h":-20,"b":-20}},"j":{"d":"397,-4v0,70,-6,127,-18,170v-12,43,-31,80,-55,110v-24,30,-54,51,-91,66v-37,15,-80,23,-129,23v-27,0,-51,-1,-70,-5v-19,-4,-33,-8,-42,-12v-9,-4,-15,-9,-18,-15v-3,-6,-6,-13,-7,-21v-1,-8,-2,-16,-3,-26v-1,-10,-1,-22,-1,-37v0,-19,0,-35,1,-47v1,-12,3,-22,6,-29v3,-7,6,-13,9,-16v3,-3,8,-5,13,-5v3,0,10,0,20,2v10,2,22,3,34,3v17,0,32,-3,45,-8v13,-5,23,-13,31,-25v8,-12,14,-28,18,-46v4,-18,6,-47,6,-87r0,-915v0,-7,2,-13,6,-18v4,-5,11,-8,20,-12v9,-4,22,-7,38,-9v16,-2,36,-3,61,-3v25,0,45,1,61,3v16,2,28,5,38,9v10,4,17,7,21,12v4,5,6,11,6,18r0,920xm416,-1228v0,51,-10,86,-30,105v-20,19,-59,29,-116,29v-56,0,-94,-9,-114,-28v-20,-19,-30,-52,-30,-101v0,-51,10,-85,31,-105v21,-20,59,-30,115,-30v57,0,94,9,114,28v20,19,30,53,30,102","w":523,"k":{"\u201d":-25,"\u2019":-25}},"k":{"d":"955,-33v0,7,-1,12,-5,17v-4,5,-10,9,-20,12v-10,3,-23,6,-40,8v-17,2,-38,2,-65,2v-27,0,-50,-1,-67,-2v-17,-1,-31,-3,-42,-6v-11,-3,-19,-8,-25,-13v-6,-5,-11,-12,-16,-21r-297,-470r0,472v0,7,-2,13,-6,18v-4,5,-10,9,-20,12v-10,3,-23,6,-39,8v-16,2,-36,2,-61,2v-25,0,-45,0,-61,-2v-16,-2,-29,-5,-39,-8v-10,-3,-16,-7,-20,-12v-4,-5,-6,-11,-6,-18r0,-1315v0,-7,2,-13,6,-18v4,-5,10,-9,20,-13v10,-4,23,-7,39,-9v16,-2,36,-3,61,-3v25,0,45,1,61,3v16,2,29,5,39,9v10,4,16,8,20,13v4,5,6,11,6,18r0,783r264,-355v5,-8,11,-15,18,-21v7,-6,15,-11,26,-14v11,-3,26,-6,42,-8v16,-2,37,-2,62,-2v25,0,45,0,62,2v17,2,32,5,42,8v10,3,17,7,21,12v4,5,6,12,6,19v0,10,-2,21,-7,32v-5,11,-13,23,-23,36r-261,296r302,467v8,13,14,24,18,34v4,10,5,19,5,27","w":983,"k":{"-":70,"u":25,"t":10,"s":17,"q":46,"\u00f6":58,"\u00f3":58,"\u00f2":58,"o":58,"\u00e9":56,"\u00e8":56,"e":56,"d":46,"\u00e7":45,"c":45,"\u00e4":25,"\u00e1":25,"\u00e0":25,"a":25}},"l":{"d":"378,-34v0,7,-2,13,-6,18v-4,5,-10,9,-20,12v-10,3,-23,6,-39,8v-16,2,-36,2,-61,2v-25,0,-45,0,-61,-2v-16,-2,-29,-5,-39,-8v-10,-3,-16,-7,-20,-12v-4,-5,-6,-11,-6,-18r0,-1315v0,-7,2,-13,6,-18v4,-5,10,-9,20,-13v10,-4,23,-7,39,-9v16,-2,36,-3,61,-3v25,0,45,1,61,3v16,2,29,5,39,9v10,4,16,8,20,13v4,5,6,11,6,18r0,1315","w":503},"m":{"d":"1545,-34v0,7,-2,13,-6,18v-4,5,-11,9,-20,12v-9,3,-22,6,-38,8v-16,2,-36,2,-61,2v-25,0,-46,0,-62,-2v-16,-2,-28,-5,-38,-8v-10,-3,-16,-7,-20,-12v-4,-5,-6,-11,-6,-18r0,-529v0,-30,-2,-57,-8,-82v-6,-25,-14,-45,-26,-63v-12,-18,-26,-32,-44,-42v-18,-10,-39,-14,-64,-14v-30,0,-60,12,-91,35v-31,23,-64,57,-100,102r0,593v0,7,-2,13,-6,18v-4,5,-11,9,-21,12v-10,3,-22,6,-38,8v-16,2,-36,2,-60,2v-25,0,-45,0,-61,-2v-16,-2,-29,-5,-39,-8v-10,-3,-16,-7,-20,-12v-4,-5,-6,-11,-6,-18r0,-529v0,-30,-2,-57,-8,-82v-6,-25,-15,-45,-26,-63v-11,-18,-26,-32,-44,-42v-18,-10,-39,-14,-63,-14v-31,0,-61,12,-92,35v-31,23,-64,57,-99,102r0,593v0,7,-2,13,-6,18v-4,5,-10,9,-20,12v-10,3,-23,6,-39,8v-16,2,-36,2,-61,2v-25,0,-45,0,-61,-2v-16,-2,-29,-5,-39,-8v-10,-3,-16,-7,-20,-12v-4,-5,-6,-11,-6,-18r0,-892v0,-7,2,-13,5,-18v3,-5,9,-9,18,-12v9,-3,19,-6,33,-8v14,-2,31,-2,52,-2v21,0,39,0,53,2v14,2,25,5,33,8v8,3,13,7,16,12v3,5,5,11,5,18r0,103v49,-53,98,-93,147,-120v49,-27,101,-40,154,-40v37,0,70,3,99,11v29,8,56,20,79,34v23,14,42,31,59,51v17,20,31,42,42,67v27,-29,53,-53,79,-74v26,-21,51,-37,76,-50v25,-13,49,-24,74,-30v25,-6,51,-9,77,-9v59,0,109,10,150,30v41,20,74,47,99,81v25,34,42,75,53,121v11,46,16,95,16,146r0,571","w":1666,"k":{"\u201c":30,"\u2018":30,"y":37,"x":19,"w":16,"v":29,"t":19,"f":11}},"n":{"d":"978,-34v0,7,-2,13,-6,18v-4,5,-11,9,-20,12v-9,3,-22,6,-38,8v-16,2,-37,2,-61,2v-25,0,-45,0,-61,-2v-16,-2,-30,-5,-39,-8v-9,-3,-16,-7,-20,-12v-4,-5,-6,-11,-6,-18r0,-509v0,-43,-3,-77,-9,-102v-6,-25,-16,-45,-28,-63v-12,-18,-27,-32,-46,-42v-19,-10,-42,-14,-67,-14v-32,0,-64,12,-97,35v-33,23,-67,57,-102,102r0,593v0,7,-2,13,-6,18v-4,5,-10,9,-20,12v-10,3,-23,6,-39,8v-16,2,-36,2,-61,2v-25,0,-45,0,-61,-2v-16,-2,-29,-5,-39,-8v-10,-3,-16,-7,-20,-12v-4,-5,-6,-11,-6,-18r0,-892v0,-7,2,-13,5,-18v3,-5,9,-9,18,-12v9,-3,19,-6,33,-8v14,-2,31,-2,52,-2v21,0,39,0,53,2v14,2,25,5,33,8v8,3,13,7,16,12v3,5,5,11,5,18r0,103v49,-53,100,-93,151,-120v51,-27,104,-40,159,-40v61,0,111,10,153,30v42,20,76,47,102,81v26,34,44,75,55,121v11,46,17,101,17,166r0,551","w":1099,"k":{"\u201c":30,"\u2018":30,"y":37,"x":19,"w":16,"v":29,"t":19,"f":11}},"\u00f1":{"d":"909,-1336v0,81,-19,143,-57,186v-38,43,-92,64,-160,64v-26,0,-49,-3,-69,-8v-20,-5,-38,-12,-54,-21v-16,-9,-30,-17,-43,-27v-20,-14,-20,-16,-38,-28v-12,-8,-24,-14,-36,-20v-12,-6,-24,-9,-37,-9v-22,0,-38,7,-47,23v-9,16,-14,37,-14,62v0,6,-2,10,-4,14v-2,4,-6,7,-12,9v-6,2,-14,3,-24,4v-10,1,-23,1,-39,1v-14,0,-25,-1,-35,-2v-10,-1,-18,-3,-24,-6v-6,-3,-9,-7,-12,-12v-3,-5,-4,-12,-4,-21v0,-77,19,-139,56,-183v37,-44,91,-66,160,-66v38,0,70,6,96,18v26,12,50,24,70,38r57,40v17,12,35,17,54,17v20,0,35,-7,46,-21v11,-14,16,-36,16,-64v0,-11,5,-18,15,-22v10,-4,30,-6,61,-6v30,0,50,3,61,8v11,5,17,15,17,32xm978,-34v0,7,-2,13,-6,18v-4,5,-11,9,-20,12v-9,3,-22,6,-38,8v-16,2,-37,2,-61,2v-25,0,-45,0,-61,-2v-16,-2,-30,-5,-39,-8v-9,-3,-16,-7,-20,-12v-4,-5,-6,-11,-6,-18r0,-509v0,-43,-3,-77,-9,-102v-6,-25,-16,-45,-28,-63v-12,-18,-27,-32,-46,-42v-19,-10,-42,-14,-67,-14v-32,0,-64,12,-97,35v-33,23,-67,57,-102,102r0,593v0,7,-2,13,-6,18v-4,5,-10,9,-20,12v-10,3,-23,6,-39,8v-16,2,-36,2,-61,2v-25,0,-45,0,-61,-2v-16,-2,-29,-5,-39,-8v-10,-3,-16,-7,-20,-12v-4,-5,-6,-11,-6,-18r0,-892v0,-7,2,-13,5,-18v3,-5,9,-9,18,-12v9,-3,19,-6,33,-8v14,-2,31,-2,52,-2v21,0,39,0,53,2v14,2,25,5,33,8v8,3,13,7,16,12v3,5,5,11,5,18r0,103v49,-53,100,-93,151,-120v51,-27,104,-40,159,-40v61,0,111,10,153,30v42,20,76,47,102,81v26,34,44,75,55,121v11,46,17,101,17,166r0,551","w":1099,"k":{"\u201c":30,"\u2018":30,"y":37,"x":19,"w":16,"v":29,"t":19,"f":11}},"o":{"d":"1028,-489v0,76,-10,145,-30,208v-20,63,-50,117,-91,162v-41,45,-92,80,-153,105v-61,25,-133,37,-215,37v-79,0,-148,-11,-207,-33v-59,-22,-107,-54,-146,-96v-39,-42,-67,-94,-86,-155v-19,-61,-28,-131,-28,-210v0,-76,10,-146,30,-209v20,-63,51,-117,92,-162v41,-45,91,-79,152,-104v61,-25,133,-37,215,-37v80,0,149,11,208,33v59,22,107,53,145,95v38,42,67,94,86,155v19,61,28,132,28,211xm769,-479v0,-44,-4,-84,-11,-121v-7,-37,-18,-70,-35,-97v-17,-27,-39,-49,-67,-64v-28,-15,-62,-23,-104,-23v-37,0,-70,6,-98,20v-28,14,-51,34,-69,60v-18,26,-32,59,-41,96v-9,37,-13,79,-13,126v0,44,4,85,11,122v7,37,20,69,36,96v16,27,38,49,66,64v28,15,63,22,104,22v38,0,71,-6,99,-20v28,-14,51,-34,69,-60v18,-26,31,-57,40,-94v9,-37,13,-80,13,-127","w":1101,"k":{",":30,"z":21,"y":12,"x":41,"w":4,"v":6}},"\u00f2":{"d":"1028,-489v0,76,-10,145,-30,208v-20,63,-50,117,-91,162v-41,45,-92,80,-153,105v-61,25,-133,37,-215,37v-79,0,-148,-11,-207,-33v-59,-22,-107,-54,-146,-96v-39,-42,-67,-94,-86,-155v-19,-61,-28,-131,-28,-210v0,-76,10,-146,30,-209v20,-63,51,-117,92,-162v41,-45,91,-79,152,-104v61,-25,133,-37,215,-37v80,0,149,11,208,33v59,22,107,53,145,95v38,42,67,94,86,155v19,61,28,132,28,211xm769,-479v0,-44,-4,-84,-11,-121v-7,-37,-18,-70,-35,-97v-17,-27,-39,-49,-67,-64v-28,-15,-62,-23,-104,-23v-37,0,-70,6,-98,20v-28,14,-51,34,-69,60v-18,26,-32,59,-41,96v-9,37,-13,79,-13,126v0,44,4,85,11,122v7,37,20,69,36,96v16,27,38,49,66,64v28,15,63,22,104,22v38,0,71,-6,99,-20v28,-14,51,-34,69,-60v18,-26,31,-57,40,-94v9,-37,13,-80,13,-127xm656,-1135v6,9,10,16,11,23v1,7,-1,12,-7,16v-6,4,-15,8,-28,10v-13,2,-31,3,-54,3v-19,0,-35,-1,-48,-2v-13,-1,-23,-3,-32,-6v-9,-3,-16,-7,-22,-11v-6,-4,-11,-9,-16,-16r-193,-232v-7,-7,-10,-14,-11,-21v-1,-7,2,-12,10,-17v8,-5,21,-9,39,-12v18,-3,42,-4,73,-4v22,0,41,1,56,2v15,1,27,3,37,6v10,3,19,8,25,13v6,5,12,12,17,19","w":1101,"k":{",":30,"z":21,"y":12,"x":41,"w":4,"v":6}},"\u00f3":{"d":"599,-1364v5,-7,10,-14,17,-19v7,-5,15,-10,25,-13v10,-3,23,-5,38,-6v15,-1,34,-2,56,-2v31,0,55,1,73,4v18,3,30,7,38,12v8,5,11,10,10,17v-1,7,-4,14,-10,21r-194,232v-5,7,-11,12,-16,16v-5,4,-12,8,-20,11v-8,3,-19,5,-32,6v-13,1,-29,2,-48,2v-23,0,-42,-1,-56,-3v-14,-2,-23,-6,-28,-10v-5,-4,-7,-9,-6,-16v1,-7,4,-14,10,-23xm1028,-489v0,76,-10,145,-30,208v-20,63,-50,117,-91,162v-41,45,-92,80,-153,105v-61,25,-133,37,-215,37v-79,0,-148,-11,-207,-33v-59,-22,-107,-54,-146,-96v-39,-42,-67,-94,-86,-155v-19,-61,-28,-131,-28,-210v0,-76,10,-146,30,-209v20,-63,51,-117,92,-162v41,-45,91,-79,152,-104v61,-25,133,-37,215,-37v80,0,149,11,208,33v59,22,107,53,145,95v38,42,67,94,86,155v19,61,28,132,28,211xm769,-479v0,-44,-4,-84,-11,-121v-7,-37,-18,-70,-35,-97v-17,-27,-39,-49,-67,-64v-28,-15,-62,-23,-104,-23v-37,0,-70,6,-98,20v-28,14,-51,34,-69,60v-18,26,-32,59,-41,96v-9,37,-13,79,-13,126v0,44,4,85,11,122v7,37,20,69,36,96v16,27,38,49,66,64v28,15,63,22,104,22v38,0,71,-6,99,-20v28,-14,51,-34,69,-60v18,-26,31,-57,40,-94v9,-37,13,-80,13,-127","w":1101,"k":{",":30,"z":21,"y":12,"x":41,"w":4,"v":6}},"\u00f6":{"d":"485,-1227v0,47,-9,79,-27,97v-18,18,-51,28,-100,28v-50,0,-84,-8,-101,-26v-17,-18,-26,-49,-26,-94v0,-48,9,-81,27,-99v18,-18,51,-27,100,-27v51,0,85,8,102,26v17,18,25,50,25,95xm876,-1227v0,47,-8,79,-26,97v-18,18,-52,28,-102,28v-49,0,-83,-8,-100,-26v-17,-18,-26,-49,-26,-94v0,-48,8,-81,26,-99v18,-18,52,-27,101,-27v50,0,84,8,101,26v17,18,26,50,26,95xm1028,-489v0,76,-10,145,-30,208v-20,63,-50,117,-91,162v-41,45,-92,80,-153,105v-61,25,-133,37,-215,37v-79,0,-148,-11,-207,-33v-59,-22,-107,-54,-146,-96v-39,-42,-67,-94,-86,-155v-19,-61,-28,-131,-28,-210v0,-76,10,-146,30,-209v20,-63,51,-117,92,-162v41,-45,91,-79,152,-104v61,-25,133,-37,215,-37v80,0,149,11,208,33v59,22,107,53,145,95v38,42,67,94,86,155v19,61,28,132,28,211xm769,-479v0,-44,-4,-84,-11,-121v-7,-37,-18,-70,-35,-97v-17,-27,-39,-49,-67,-64v-28,-15,-62,-23,-104,-23v-37,0,-70,6,-98,20v-28,14,-51,34,-69,60v-18,26,-32,59,-41,96v-9,37,-13,79,-13,126v0,44,4,85,11,122v7,37,20,69,36,96v16,27,38,49,66,64v28,15,63,22,104,22v38,0,71,-6,99,-20v28,-14,51,-34,69,-60v18,-26,31,-57,40,-94v9,-37,13,-80,13,-127","w":1101,"k":{",":30,"z":21,"y":12,"x":41,"w":4,"v":6}},"p":{"d":"1024,-493v0,79,-9,151,-26,215v-17,64,-41,117,-74,162v-33,45,-73,79,-122,103v-49,24,-104,36,-167,36v-26,0,-49,-2,-71,-7v-22,-5,-44,-14,-64,-24v-20,-10,-40,-23,-60,-38v-20,-15,-41,-33,-62,-54r0,420v0,7,-2,13,-6,18v-4,5,-10,10,-20,14v-10,4,-23,6,-39,8v-16,2,-36,3,-61,3v-25,0,-45,-1,-61,-3v-16,-2,-29,-4,-39,-8v-10,-4,-16,-9,-20,-14v-4,-5,-6,-11,-6,-18r0,-1246v0,-7,2,-13,5,-18v3,-5,9,-9,17,-12v8,-3,20,-6,34,-8v14,-2,30,-2,51,-2v20,0,37,0,51,2v14,2,24,5,32,8v8,3,15,7,18,12v3,5,5,11,5,18r0,105v26,-27,52,-51,77,-71v25,-20,50,-36,76,-50v26,-14,52,-24,80,-31v28,-7,58,-10,89,-10v65,0,121,13,167,39v46,26,83,60,112,105v29,45,51,97,64,156v13,59,20,123,20,190xm762,-475v0,-38,-2,-74,-8,-109v-6,-35,-16,-67,-30,-94v-14,-27,-32,-50,-54,-66v-22,-16,-50,-24,-83,-24v-17,0,-33,3,-49,8v-16,5,-33,13,-50,24v-17,11,-35,26,-53,44v-18,18,-37,40,-57,67r0,294v35,45,69,79,101,103v32,24,65,37,100,37v33,0,60,-8,83,-25v23,-17,42,-39,57,-66v15,-27,26,-57,33,-91v7,-34,10,-68,10,-102","w":1099,"k":{"\u201c":25,"\u2018":25,"z":25,"y":11,"x":37,"w":10,"v":10,"t":8,"s":10,"f":11}},"q":{"d":"972,320v0,7,-2,13,-6,18v-4,5,-11,10,-20,14v-9,4,-22,6,-38,8v-16,2,-36,3,-61,3v-25,0,-45,-1,-61,-3v-16,-2,-28,-4,-38,-8v-10,-4,-16,-9,-20,-14v-4,-5,-6,-11,-6,-18r0,-424v-24,22,-47,42,-70,58v-23,16,-45,30,-68,40v-23,10,-46,17,-70,22v-24,5,-49,7,-76,7v-65,0,-121,-13,-167,-39v-46,-26,-84,-62,-113,-107v-29,-45,-50,-97,-63,-157v-13,-60,-20,-122,-20,-188v0,-79,9,-151,26,-214v17,-63,43,-117,76,-162v33,-45,74,-79,123,-103v49,-24,105,-36,169,-36v25,0,48,2,71,7v23,5,45,14,68,26v23,12,46,28,70,48v24,20,52,44,81,73r0,-97v0,-7,1,-13,5,-18v4,-5,10,-9,18,-12v8,-3,20,-6,33,-8v13,-2,31,-2,52,-2v20,0,37,0,51,2v14,2,24,5,32,8v8,3,14,7,17,12v3,5,5,11,5,18r0,1246xm722,-630v-36,-45,-71,-80,-104,-104v-33,-24,-67,-36,-103,-36v-33,0,-61,8,-85,24v-24,16,-42,39,-56,66v-14,27,-25,58,-32,92v-7,34,-11,68,-11,103v0,37,3,73,9,109v6,36,16,68,30,95v14,27,31,49,54,66v23,17,51,25,86,25v17,0,34,-3,50,-8v16,-5,33,-13,50,-24v17,-11,35,-26,53,-44v18,-18,38,-41,59,-68r0,-296","w":1099,"k":{"g":-9}},"r":{"d":"699,-843v0,24,-1,44,-2,59v-1,15,-3,27,-6,36v-3,9,-7,15,-11,18v-4,3,-9,5,-16,5v-5,0,-11,-1,-18,-3v-10,-4,-10,-4,-22,-8v-8,-3,-18,-6,-28,-8v-10,-2,-21,-3,-33,-3v-14,0,-28,3,-42,9v-14,6,-28,14,-43,26v-15,12,-32,28,-48,48v-16,20,-33,45,-52,74r0,556v0,7,-2,13,-6,18v-4,5,-10,9,-20,12v-10,3,-23,6,-39,8v-16,2,-36,2,-61,2v-25,0,-45,0,-61,-2v-16,-2,-29,-5,-39,-8v-10,-3,-16,-7,-20,-12v-4,-5,-6,-11,-6,-18r0,-892v0,-7,2,-13,5,-18v3,-5,9,-9,18,-12v9,-3,19,-6,33,-8v14,-2,31,-2,52,-2v21,0,39,0,53,2v14,2,25,5,33,8v8,3,13,7,16,12v3,5,5,11,5,18r0,111v23,-33,45,-61,66,-83v21,-22,40,-38,59,-51v19,-13,37,-22,56,-27v19,-5,37,-7,56,-7v9,0,18,0,28,1v10,1,20,4,31,6v11,2,20,5,28,8v8,3,13,6,17,9v4,3,6,7,8,11v2,4,4,9,5,16v1,7,2,18,3,32v1,14,1,33,1,57","w":728,"k":{"-":40,"\u201d":-75,"\u201c":-25,"\u2019":-75,"\u2018":-25,".":180,",":150,"y":-9,"w":-12,"v":-18,"s":25,"q":25,"\u00f6":25,"\u00f3":25,"\u00f2":25,"o":25,"g":24,"\u00e9":23,"\u00e8":23,"e":23,"d":25,"\u00e7":29,"c":29,"\u00e4":45,"\u00e1":45,"\u00e0":45,"a":45}},"s":{"d":"754,-286v0,51,-9,95,-28,134v-19,39,-46,71,-81,97v-35,26,-76,46,-123,59v-47,13,-99,19,-154,19v-33,0,-66,-2,-96,-7v-30,-5,-57,-12,-81,-20v-24,-8,-44,-15,-60,-23v-16,-8,-28,-16,-35,-23v-7,-7,-13,-17,-17,-32v-4,-15,-6,-38,-6,-67v0,-19,1,-35,2,-47v1,-12,3,-21,6,-28v3,-7,6,-12,10,-14v4,-2,9,-3,15,-3v7,0,18,5,32,13v14,8,33,17,54,27v21,10,46,19,74,28v28,9,61,13,97,13v23,0,43,-2,61,-7v18,-5,33,-11,46,-20v13,-9,22,-20,29,-33v7,-13,10,-29,10,-46v0,-20,-7,-38,-19,-52v-12,-14,-28,-26,-48,-37v-20,-11,-44,-21,-70,-30v-26,-9,-51,-20,-78,-31v-27,-11,-54,-24,-80,-39v-26,-15,-48,-33,-68,-54v-20,-21,-38,-47,-50,-77v-12,-30,-18,-66,-18,-108v0,-43,8,-82,25,-118v17,-36,41,-66,72,-91v31,-25,70,-45,115,-59v45,-14,95,-21,151,-21v28,0,55,2,81,6v26,4,51,9,72,15v21,6,39,13,54,20v15,7,26,13,32,18v6,5,10,9,13,14v3,5,5,11,6,18v1,7,2,16,3,26v1,10,2,24,2,39v0,18,-1,33,-2,44v-1,11,-2,20,-4,27v-2,7,-6,12,-10,14v-4,2,-9,3,-14,3v-6,0,-15,-4,-28,-11v-13,-7,-29,-14,-48,-22v-19,-8,-41,-15,-66,-22v-25,-7,-53,-11,-85,-11v-23,0,-42,2,-59,7v-17,5,-30,11,-41,20v-11,9,-19,18,-24,30v-5,12,-8,25,-8,38v0,21,6,38,19,52v13,14,29,26,50,37v21,11,44,21,70,30v26,9,53,20,80,31v27,11,54,23,80,38v26,15,50,33,71,54v21,21,37,46,50,76v13,30,19,65,19,106","w":817,"k":{"\u201c":20,"\u2018":20,"z":15,"y":31,"x":22,"w":10,"v":28,"t":23,"f":17}},"t":{"d":"654,-122v0,29,-2,52,-6,68v-4,16,-8,26,-14,32v-6,6,-14,13,-26,18v-12,5,-26,8,-42,12v-16,4,-32,7,-50,9v-18,2,-37,3,-56,3v-50,0,-93,-6,-130,-19v-37,-13,-67,-33,-91,-59v-24,-26,-42,-59,-53,-99v-11,-40,-17,-87,-17,-142r0,-457r-107,0v-13,0,-22,-8,-29,-24v-7,-16,-10,-41,-10,-78v0,-19,1,-36,3,-49v2,-13,4,-23,7,-31v3,-8,8,-14,13,-17v5,-3,10,-5,17,-5r106,0r0,-199v0,-7,1,-13,5,-18v4,-5,10,-9,20,-13v10,-4,24,-6,40,-8v16,-2,36,-3,60,-3v25,0,46,1,62,3v16,2,29,4,38,8v9,4,16,8,20,13v4,5,6,11,6,18r0,199r194,0v7,0,13,2,18,5v5,3,9,9,12,17v3,8,6,18,8,31v2,13,2,30,2,49v0,37,-3,62,-10,78v-7,16,-16,24,-29,24r-195,0r0,419v0,49,8,85,23,109v15,24,43,37,82,37v13,0,25,-1,36,-3v11,-2,21,-5,29,-8v8,-3,14,-6,20,-8v6,-2,11,-4,16,-4v4,0,8,2,12,4v4,2,6,7,8,14v2,7,4,16,6,28v2,12,2,27,2,46","w":710,"k":{"-":50,"\u201d":-55,"\u201c":-12,"\u2019":-55,"\u2018":-12,"t":24,"q":23,"\u00f6":20,"\u00f3":20,"\u00f2":20,"o":20,"\u00e9":25,"\u00e8":25,"e":25,"d":23,"\u00e7":27,"c":27,"\u00e4":20,"\u00e1":20,"\u00e0":20,"a":20}},"u":{"d":"972,-34v0,7,-2,13,-5,18v-3,5,-9,9,-17,12v-8,3,-20,6,-34,8v-14,2,-30,2,-51,2v-22,0,-39,0,-53,-2v-14,-2,-25,-5,-33,-8v-8,-3,-14,-7,-17,-12v-3,-5,-5,-11,-5,-18r0,-103v-49,53,-100,93,-151,120v-51,27,-103,40,-158,40v-61,0,-112,-10,-154,-30v-42,-20,-76,-47,-102,-82v-26,-35,-43,-75,-54,-121v-11,-46,-17,-102,-17,-170r0,-546v0,-7,1,-13,5,-18v4,-5,10,-9,20,-12v10,-3,24,-6,40,-8v16,-2,36,-2,60,-2v25,0,45,0,61,2v16,2,29,5,39,8v10,3,16,7,20,12v4,5,6,11,6,18r0,504v0,47,3,82,9,107v6,25,15,45,27,63v12,18,29,32,48,42v19,10,41,14,66,14v32,0,64,-12,96,-35v32,-23,67,-57,104,-102r0,-593v0,-7,2,-13,6,-18v4,-5,10,-9,20,-12v10,-3,22,-6,38,-8v16,-2,36,-2,61,-2v25,0,45,0,61,2v16,2,29,5,38,8v9,3,16,7,20,12v4,5,6,11,6,18r0,892","w":1099},"\u00f9":{"d":"972,-34v0,7,-2,13,-5,18v-3,5,-9,9,-17,12v-8,3,-20,6,-34,8v-14,2,-30,2,-51,2v-22,0,-39,0,-53,-2v-14,-2,-25,-5,-33,-8v-8,-3,-14,-7,-17,-12v-3,-5,-5,-11,-5,-18r0,-103v-49,53,-100,93,-151,120v-51,27,-103,40,-158,40v-61,0,-112,-10,-154,-30v-42,-20,-76,-47,-102,-82v-26,-35,-43,-75,-54,-121v-11,-46,-17,-102,-17,-170r0,-546v0,-7,1,-13,5,-18v4,-5,10,-9,20,-12v10,-3,24,-6,40,-8v16,-2,36,-2,60,-2v25,0,45,0,61,2v16,2,29,5,39,8v10,3,16,7,20,12v4,5,6,11,6,18r0,504v0,47,3,82,9,107v6,25,15,45,27,63v12,18,29,32,48,42v19,10,41,14,66,14v32,0,64,-12,96,-35v32,-23,67,-57,104,-102r0,-593v0,-7,2,-13,6,-18v4,-5,10,-9,20,-12v10,-3,22,-6,38,-8v16,-2,36,-2,61,-2v25,0,45,0,61,2v16,2,29,5,38,8v9,3,16,7,20,12v4,5,6,11,6,18r0,892xm634,-1135v6,9,10,16,11,23v1,7,-1,12,-7,16v-6,4,-15,8,-28,10v-13,2,-31,3,-54,3v-19,0,-35,-1,-48,-2v-13,-1,-23,-3,-32,-6v-9,-3,-16,-7,-22,-11v-6,-4,-11,-9,-16,-16r-193,-232v-7,-7,-10,-14,-11,-21v-1,-7,2,-12,10,-17v8,-5,21,-9,39,-12v18,-3,42,-4,73,-4v22,0,41,1,56,2v15,1,27,3,37,6v10,3,19,8,25,13v6,5,12,12,17,19","w":1099},"\u00fa":{"d":"598,-1364v5,-7,10,-14,17,-19v7,-5,15,-10,25,-13v10,-3,23,-5,38,-6v15,-1,34,-2,56,-2v31,0,54,1,72,4v18,3,30,7,38,12v8,5,12,10,11,17v-1,7,-4,14,-10,21r-194,232v-5,7,-11,12,-16,16v-5,4,-13,8,-21,11v-8,3,-18,5,-31,6v-13,1,-29,2,-48,2v-23,0,-41,-1,-55,-3v-14,-2,-24,-6,-29,-10v-5,-4,-8,-9,-7,-16v1,-7,5,-14,11,-23xm972,-34v0,7,-2,13,-5,18v-3,5,-9,9,-17,12v-8,3,-20,6,-34,8v-14,2,-30,2,-51,2v-22,0,-39,0,-53,-2v-14,-2,-25,-5,-33,-8v-8,-3,-14,-7,-17,-12v-3,-5,-5,-11,-5,-18r0,-103v-49,53,-100,93,-151,120v-51,27,-103,40,-158,40v-61,0,-112,-10,-154,-30v-42,-20,-76,-47,-102,-82v-26,-35,-43,-75,-54,-121v-11,-46,-17,-102,-17,-170r0,-546v0,-7,1,-13,5,-18v4,-5,10,-9,20,-12v10,-3,24,-6,40,-8v16,-2,36,-2,60,-2v25,0,45,0,61,2v16,2,29,5,39,8v10,3,16,7,20,12v4,5,6,11,6,18r0,504v0,47,3,82,9,107v6,25,15,45,27,63v12,18,29,32,48,42v19,10,41,14,66,14v32,0,64,-12,96,-35v32,-23,67,-57,104,-102r0,-593v0,-7,2,-13,6,-18v4,-5,10,-9,20,-12v10,-3,22,-6,38,-8v16,-2,36,-2,61,-2v25,0,45,0,61,2v16,2,29,5,38,8v9,3,16,7,20,12v4,5,6,11,6,18r0,892","w":1099},"\u00fc":{"d":"481,-1227v0,47,-9,79,-27,97v-18,18,-51,28,-100,28v-50,0,-84,-8,-101,-26v-17,-18,-26,-49,-26,-94v0,-48,9,-81,27,-99v18,-18,51,-27,100,-27v51,0,85,8,102,26v17,18,25,50,25,95xm872,-1227v0,47,-8,79,-26,97v-18,18,-52,28,-102,28v-49,0,-83,-8,-100,-26v-17,-18,-26,-49,-26,-94v0,-48,8,-81,26,-99v18,-18,52,-27,101,-27v50,0,84,8,101,26v17,18,26,50,26,95xm972,-34v0,7,-2,13,-5,18v-3,5,-9,9,-17,12v-8,3,-20,6,-34,8v-14,2,-30,2,-51,2v-22,0,-39,0,-53,-2v-14,-2,-25,-5,-33,-8v-8,-3,-14,-7,-17,-12v-3,-5,-5,-11,-5,-18r0,-103v-49,53,-100,93,-151,120v-51,27,-103,40,-158,40v-61,0,-112,-10,-154,-30v-42,-20,-76,-47,-102,-82v-26,-35,-43,-75,-54,-121v-11,-46,-17,-102,-17,-170r0,-546v0,-7,1,-13,5,-18v4,-5,10,-9,20,-12v10,-3,24,-6,40,-8v16,-2,36,-2,60,-2v25,0,45,0,61,2v16,2,29,5,39,8v10,3,16,7,20,12v4,5,6,11,6,18r0,504v0,47,3,82,9,107v6,25,15,45,27,63v12,18,29,32,48,42v19,10,41,14,66,14v32,0,64,-12,96,-35v32,-23,67,-57,104,-102r0,-593v0,-7,2,-13,6,-18v4,-5,10,-9,20,-12v10,-3,22,-6,38,-8v16,-2,36,-2,61,-2v25,0,45,0,61,2v16,2,29,5,38,8v9,3,16,7,20,12v4,5,6,11,6,18r0,892","w":1099},"v":{"d":"947,-927v0,3,-1,7,-1,12v0,5,-1,9,-2,15v-1,6,-2,13,-4,20v-2,7,-3,16,-6,25r-268,807v-3,11,-8,21,-14,28v-6,7,-15,12,-28,16v-13,4,-30,7,-52,8v-22,1,-52,2,-88,2v-35,0,-64,0,-86,-2v-22,-2,-40,-5,-53,-9v-13,-4,-21,-10,-27,-17v-6,-7,-11,-15,-14,-26r-268,-807v-4,-13,-8,-25,-10,-36v-2,-11,-4,-18,-4,-23r0,-13v0,-7,2,-12,6,-17v4,-5,10,-10,19,-13v9,-3,23,-6,39,-7v16,-1,36,-2,61,-2v27,0,49,0,66,2v17,2,29,5,39,8v10,3,17,6,21,12v4,6,7,13,10,21r203,655r6,25r6,-25r200,-655v2,-8,6,-15,10,-21v4,-6,11,-9,20,-12v9,-3,22,-6,38,-8v16,-2,36,-2,61,-2v25,0,45,1,61,2v16,1,27,4,36,7v9,3,15,8,18,13v3,5,5,10,5,17","w":969,"k":{"-":41,"\u201d":-60,"\u201c":-25,"\u2019":-60,"\u2018":-25,".":145,",":121,"z":18,"y":-15,"w":-15,"v":-15,"t":-10,"s":6,"q":20,"\u00f6":19,"\u00f3":19,"\u00f2":19,"o":19,"g":23,"f":-14,"\u00e9":19,"\u00e8":19,"e":19,"d":20,"\u00e7":25,"c":25,"\u00e4":30,"\u00e1":30,"\u00e0":30,"a":30}},"w":{"d":"1491,-928v0,7,-1,16,-3,27v-2,11,-6,26,-11,46r-238,807v-3,11,-8,21,-13,28v-5,7,-13,12,-24,16v-11,4,-28,7,-48,8v-20,1,-46,2,-79,2v-33,0,-59,0,-80,-2v-21,-2,-37,-5,-49,-9v-12,-4,-20,-10,-25,-17v-5,-7,-9,-15,-12,-26r-150,-542r-2,-9r-2,9r-138,542v-3,11,-6,21,-11,28v-5,7,-14,12,-26,16v-12,4,-28,7,-49,8v-21,1,-47,2,-80,2v-33,0,-61,0,-81,-2v-20,-2,-36,-5,-48,-9v-12,-4,-20,-10,-25,-17v-5,-7,-9,-15,-12,-26r-236,-807v-6,-19,-9,-34,-11,-45v-2,-11,-3,-21,-3,-28v0,-7,1,-13,5,-18v4,-5,10,-9,20,-12v10,-3,24,-5,40,-6v16,-1,36,-2,61,-2v27,0,48,1,65,2v17,1,30,4,39,7v9,3,15,7,19,13v4,6,7,13,9,21r177,655r2,12r2,-12r166,-655v2,-8,6,-15,10,-21v4,-6,10,-10,19,-13v9,-3,21,-6,37,-7v16,-1,35,-2,60,-2v25,0,45,0,60,2v15,2,27,5,36,8v9,3,16,7,20,12v4,5,6,10,8,17r178,660r3,11r2,-12r170,-655v1,-8,4,-15,8,-21v4,-6,11,-10,20,-13v9,-3,22,-6,38,-7v16,-1,36,-2,61,-2v25,0,44,1,60,2v16,1,29,3,38,6v9,3,15,7,18,12v3,5,5,11,5,18","w":1526,"k":{"-":30,"\u201d":-60,"\u201c":-25,"\u2019":-60,"\u2018":-25,".":119,",":150,"z":12,"y":-15,"w":-12,"v":-15,"t":-6,"s":13,"q":15,"\u00f6":17,"\u00f3":17,"\u00f2":17,"o":17,"g":16,"f":-7,"\u00e9":16,"\u00e8":16,"e":16,"d":15,"\u00e7":19,"c":19,"\u00e4":22,"\u00e1":22,"\u00e0":22,"a":22}},"x":{"d":"901,-52v5,11,7,21,7,28v0,7,-5,13,-14,18v-9,5,-24,8,-43,10v-19,2,-45,2,-77,2v-30,0,-54,-1,-72,-2v-18,-1,-34,-3,-44,-6v-10,-3,-17,-6,-22,-10v-5,-4,-9,-10,-12,-17r-165,-317r-165,317v-3,7,-6,13,-11,17v-5,4,-11,7,-21,10v-10,3,-24,5,-41,6v-17,1,-40,2,-68,2v-29,0,-53,0,-70,-2v-17,-2,-30,-5,-38,-10v-8,-5,-13,-11,-13,-18v0,-7,3,-17,9,-28r247,-439r-228,-412v-6,-12,-10,-23,-10,-31v0,-8,4,-14,13,-19v9,-5,22,-8,41,-10v19,-2,45,-3,78,-3v29,0,52,1,70,2v18,1,32,2,42,4v10,2,17,6,22,10v5,4,9,9,12,16r159,298r158,-298v2,-5,5,-10,9,-14v4,-4,10,-7,19,-10v9,-3,20,-5,35,-6v15,-1,36,-2,62,-2v29,0,52,1,70,2v18,1,30,4,38,9v8,5,12,11,12,19v0,8,-5,20,-12,33r-222,405","w":941,"k":{"-":65,"\u201d":-35,"\u2019":-35,"u":20,"s":15,"q":39,"\u00f6":47,"\u00f3":47,"\u00f2":47,"o":47,"\u00e9":49,"\u00e8":49,"e":49,"d":39,"\u00e7":47,"c":47,"\u00e4":32,"\u00e1":32,"\u00e0":32,"a":32}},"y":{"d":"643,0r-108,316v-6,17,-22,29,-49,36v-27,7,-66,11,-117,11v-27,0,-48,-1,-64,-3v-16,-2,-28,-7,-36,-12v-8,-5,-12,-12,-13,-20v-1,-8,1,-18,6,-29r119,-299v-9,-4,-16,-10,-23,-18v-7,-8,-13,-18,-16,-27r-307,-820v-9,-23,-13,-41,-13,-53v0,-12,4,-23,12,-30v8,-7,21,-11,40,-14v19,-3,45,-4,76,-4v29,0,51,1,68,2v17,1,30,3,39,7v9,4,16,11,21,19v5,8,9,20,14,35r210,597r3,0r192,-609v4,-17,9,-29,15,-35v6,-6,17,-9,32,-12v15,-3,40,-4,77,-4v29,0,52,1,71,4v19,3,33,8,42,15v9,7,14,17,14,29v0,12,-3,27,-8,44","w":970,"k":{"-":35,"\u201d":-65,"\u201c":-25,"\u2019":-65,"\u2018":-25,".":125,",":124,"z":12,"y":-10,"w":-12,"v":-15,"t":-10,"s":13,"q":23,"\u00f6":22,"\u00f3":22,"\u00f2":22,"o":22,"g":20,"f":-10,"\u00e9":23,"\u00e8":23,"e":23,"d":23,"\u00e7":26,"c":26,"\u00e4":31,"\u00e1":31,"\u00e0":31,"a":31}},"z":{"d":"750,-103v0,19,-1,35,-3,49v-2,14,-5,25,-8,33v-3,8,-8,14,-13,17v-5,3,-11,4,-18,4r-583,0v-18,0,-31,-6,-41,-18v-10,-12,-15,-32,-15,-59r0,-46v0,-12,0,-23,1,-33v1,-10,3,-19,6,-28v3,-9,7,-18,12,-27v5,-9,12,-20,20,-31r334,-516r-316,0v-13,0,-22,-8,-30,-24v-8,-16,-12,-42,-12,-77v0,-19,0,-36,2,-49v2,-13,5,-22,8,-30v3,-8,8,-14,13,-17v5,-3,12,-5,19,-5r545,0v9,0,17,1,24,3v7,2,13,6,17,11v4,5,8,13,10,22v2,9,3,21,3,35r0,49v0,13,-1,26,-2,36v-1,10,-3,20,-6,29v-3,9,-6,19,-11,28v-5,9,-11,19,-18,30r-332,515r352,0v6,0,12,1,17,4v5,3,9,8,13,15v4,7,7,18,9,31v2,13,3,29,3,49","w":814,"k":{"\u201d":-25,"\u2019":-25,"y":15,"w":17,"v":15,"u":10,"s":18,"q":38,"\u00f6":35,"\u00f3":35,"\u00f2":35,"o":35,"g":11,"f":10,"\u00e9":38,"\u00e8":38,"e":38,"d":38,"\u00e7":37,"c":37,"\u00e4":26,"\u00e1":26,"\u00e0":26,"a":26}},"\u00aa":{"d":"721,-648v0,5,-1,8,-3,12v-2,4,-8,8,-14,10v-6,2,-15,4,-26,5v-11,1,-24,2,-41,2v-18,0,-33,-1,-45,-2v-12,-1,-20,-3,-26,-6v-6,-3,-12,-5,-14,-9v-2,-4,-3,-9,-3,-14r0,-41r-3,0v-23,25,-51,46,-85,61v-34,15,-73,22,-116,22v-38,0,-72,-4,-102,-13v-30,-9,-56,-22,-77,-39v-21,-17,-37,-39,-48,-65v-11,-26,-16,-56,-16,-91v0,-37,7,-69,21,-96v14,-27,35,-49,64,-66v29,-17,65,-30,108,-38v43,-8,95,-13,155,-13r65,0r0,-31v0,-16,-2,-30,-5,-42v-3,-12,-9,-22,-18,-30v-9,-8,-21,-14,-36,-18v-15,-4,-34,-7,-57,-7v-29,0,-55,3,-77,9v-22,6,-42,13,-58,20v-16,7,-30,14,-41,20v-11,6,-21,9,-28,9v-14,0,-25,-8,-32,-23v-7,-15,-11,-38,-11,-67v0,-10,1,-19,2,-27v1,-8,3,-14,6,-20v3,-6,6,-10,12,-14v6,-4,20,-12,41,-21v21,-9,51,-19,89,-28v38,-9,80,-14,127,-14v51,0,96,5,133,15v37,10,66,24,90,45v24,21,41,47,52,79v11,32,17,68,17,111r0,415xm730,-411v0,31,-4,52,-10,65v-6,13,-16,20,-31,20r-538,0v-15,0,-25,-7,-31,-20v-6,-13,-10,-34,-10,-65v0,-32,4,-54,10,-67v6,-13,16,-20,31,-20r538,0v15,0,25,6,31,19v6,13,10,35,10,68xm515,-912r-58,0v-28,0,-51,2,-70,6v-19,4,-34,8,-46,16v-12,8,-20,17,-25,28v-5,11,-8,24,-8,38v0,25,8,43,24,56v16,13,38,20,65,20v12,0,23,-1,33,-4v10,-3,21,-7,30,-12v9,-5,19,-12,28,-20v9,-8,18,-18,27,-29r0,-99","w":852},"\u00ba":{"d":"796,-966v0,54,-8,104,-24,148v-16,44,-38,82,-68,113v-30,31,-67,55,-112,72v-45,17,-95,25,-152,25v-61,0,-114,-7,-159,-22v-45,-15,-82,-38,-111,-68v-29,-30,-50,-66,-64,-110v-14,-44,-21,-93,-21,-150v0,-55,8,-104,23,-148v15,-44,37,-81,67,-112v30,-31,68,-55,113,-72v45,-17,97,-25,158,-25v58,0,108,7,152,23v44,16,81,39,110,69v29,30,51,67,66,110v15,43,22,92,22,147xm756,-411v0,31,-3,52,-9,65v-6,13,-16,20,-31,20r-552,0v-15,0,-25,-7,-32,-20v-7,-13,-10,-34,-10,-65v0,-32,3,-54,10,-67v7,-13,17,-20,32,-20r552,0v15,0,25,6,31,19v6,13,9,35,9,68xm570,-958v0,-28,-2,-54,-6,-77v-4,-23,-12,-43,-22,-60v-10,-17,-24,-29,-40,-39v-16,-10,-37,-15,-62,-15v-22,0,-41,4,-58,13v-17,9,-30,20,-40,36v-10,16,-19,35,-24,58v-5,23,-7,50,-7,79v0,29,2,55,6,78v4,23,11,43,21,59v10,16,23,29,40,38v17,9,37,14,62,14v21,0,40,-3,56,-10v16,-7,30,-18,41,-33v11,-15,19,-34,25,-57v6,-23,8,-51,8,-84","w":891},"`":{"d":"502,-1135v6,9,10,16,11,23v1,7,-1,12,-7,16v-6,4,-15,8,-28,10v-13,2,-31,3,-54,3v-19,0,-35,-1,-48,-2v-13,-1,-23,-3,-32,-6v-9,-3,-16,-7,-22,-11v-6,-4,-11,-9,-16,-16r-193,-232v-7,-7,-10,-14,-11,-21v-1,-7,2,-12,10,-17v8,-5,21,-9,39,-12v18,-3,42,-4,73,-4v22,0,41,1,56,2v15,1,27,3,37,6v10,3,19,8,25,13v6,5,12,12,17,19","w":615},"!":{"d":"481,-424v-1,7,-3,13,-6,18v-3,5,-9,10,-17,14v-8,4,-20,6,-34,8v-14,2,-32,3,-53,3v-21,0,-39,-1,-53,-3v-14,-2,-26,-4,-34,-8v-8,-4,-14,-9,-17,-14v-3,-5,-5,-11,-6,-18r-26,-908v0,-9,2,-16,6,-23v4,-7,11,-13,21,-17v10,-4,24,-7,42,-9v18,-2,40,-3,67,-3v27,0,49,2,66,4v17,2,31,6,41,10v10,4,18,10,22,16v4,6,7,13,7,22xm512,-131v0,27,-2,50,-6,69v-4,19,-13,34,-24,45v-11,11,-25,20,-43,25v-18,5,-41,7,-68,7v-27,0,-51,-2,-69,-7v-18,-5,-32,-14,-43,-25v-11,-11,-19,-26,-23,-45v-4,-19,-6,-42,-6,-69v0,-28,2,-52,6,-71v4,-19,12,-34,23,-46v11,-12,25,-19,43,-24v18,-5,42,-8,69,-8v27,0,50,3,68,8v18,5,32,12,43,24v11,12,20,27,24,46v4,19,6,43,6,71","w":667},"\u00a1":{"d":"186,-767v1,-7,3,-13,6,-18v3,-5,9,-10,17,-14v8,-4,20,-6,34,-8v14,-2,32,-3,53,-3v21,-0,39,1,53,3v14,2,26,4,34,8v8,4,14,9,17,14v3,5,5,11,6,18r26,908v0,9,-2,16,-6,23v-4,7,-11,13,-21,17v-10,4,-24,7,-42,9v-18,2,-40,3,-67,3v-27,-0,-49,-2,-66,-4v-17,-2,-31,-6,-41,-10v-10,-4,-18,-10,-22,-16v-4,-6,-7,-13,-7,-22xm155,-1060v0,-27,2,-50,6,-69v4,-19,13,-34,24,-45v11,-11,25,-20,43,-25v18,-5,41,-7,68,-7v27,-0,51,2,69,7v18,5,32,14,43,25v11,11,19,26,23,45v4,19,6,42,6,69v0,28,-2,52,-6,71v-4,19,-12,34,-23,46v-11,12,-25,19,-43,24v-18,5,-42,8,-69,8v-27,-0,-50,-3,-68,-8v-18,-5,-32,-12,-43,-24v-11,-12,-20,-27,-24,-46v-4,-19,-6,-43,-6,-71","w":667},"?":{"d":"866,-988v0,55,-8,104,-24,148v-16,44,-38,82,-66,114v-28,32,-62,58,-102,77v-40,19,-83,32,-131,37r-8,195v-1,12,-11,21,-29,27v-18,6,-44,9,-79,9v-22,0,-40,0,-55,-1v-15,-1,-27,-3,-36,-6v-9,-3,-15,-6,-19,-11v-4,-5,-6,-11,-7,-18r-9,-236v-1,-21,0,-39,3,-52v3,-13,7,-24,14,-32v7,-8,16,-14,27,-17v11,-3,23,-4,38,-4r14,0v35,0,65,-6,91,-17v26,-11,47,-26,64,-45v17,-19,28,-41,36,-66v8,-25,12,-52,12,-81v0,-32,-5,-61,-14,-88v-9,-27,-22,-50,-40,-69v-18,-19,-42,-34,-70,-44v-28,-10,-60,-16,-97,-16v-34,0,-64,3,-90,10v-26,7,-48,14,-67,22v-19,8,-34,15,-46,22v-12,7,-22,10,-29,10v-5,0,-9,-1,-13,-4v-4,-3,-7,-9,-10,-17v-3,-8,-4,-19,-6,-34v-2,-15,-3,-33,-3,-56v0,-23,1,-40,3,-51v2,-11,6,-19,13,-26v7,-7,19,-15,38,-24v19,-9,41,-16,67,-24v26,-8,55,-15,87,-20v32,-5,65,-8,100,-8v79,0,146,10,202,32v56,22,101,51,137,88v36,37,62,79,79,126v17,47,25,97,25,150xm570,-131v0,27,-2,50,-6,69v-4,19,-13,34,-24,45v-11,11,-26,20,-44,25v-18,5,-40,7,-67,7v-28,0,-51,-2,-69,-7v-18,-5,-33,-14,-44,-25v-11,-11,-18,-26,-22,-45v-4,-19,-7,-42,-7,-69v0,-28,3,-52,7,-71v4,-19,11,-34,22,-46v11,-12,26,-19,44,-24v18,-5,41,-8,69,-8v27,0,49,3,67,8v18,5,33,12,44,24v11,12,20,27,24,46v4,19,6,43,6,71","w":949,"k":{"\u201d":-25,"\u2019":-25}},"\u00bf":{"d":"83,-204v0,-55,8,-104,24,-148v16,-44,38,-82,66,-114v28,-32,62,-58,102,-77v40,-19,83,-32,131,-37r8,-195v1,-12,11,-21,29,-27v18,-6,44,-9,79,-9v22,-0,40,-0,55,1v15,1,27,3,36,6v9,3,15,6,19,11v4,5,6,11,7,18r9,236v1,21,0,39,-3,52v-3,13,-7,24,-14,32v-7,8,-16,14,-27,17v-11,3,-23,4,-38,4r-14,-0v-35,-0,-65,6,-91,17v-26,11,-47,26,-64,45v-17,19,-28,41,-36,66v-8,25,-12,52,-12,81v0,32,5,61,14,88v9,27,22,50,40,69v18,19,42,34,70,44v28,10,60,16,97,16v34,-0,64,-3,90,-10v26,-7,48,-14,67,-22v19,-8,34,-15,46,-22v12,-7,22,-10,29,-10v5,-0,9,1,13,4v4,3,7,9,10,17v3,8,4,19,6,34v2,15,3,33,3,56v0,23,-1,40,-3,51v-2,11,-6,19,-13,26v-7,7,-19,15,-38,24v-19,9,-41,16,-67,24v-26,8,-55,15,-87,20v-32,5,-65,8,-100,8v-79,-0,-146,-10,-202,-32v-56,-22,-101,-51,-137,-88v-36,-37,-62,-79,-79,-126v-17,-47,-25,-97,-25,-150xm379,-1061v0,-27,2,-50,6,-69v4,-19,13,-34,24,-45v11,-11,26,-20,44,-25v18,-5,40,-7,67,-7v28,-0,51,2,69,7v18,5,33,14,44,25v11,11,18,26,22,45v4,19,7,42,7,69v0,28,-3,52,-7,71v-4,19,-11,34,-22,46v-11,12,-26,19,-44,24v-18,5,-41,8,-69,8v-27,-0,-49,-3,-67,-8v-18,-5,-33,-12,-44,-24v-11,-12,-20,-27,-24,-46v-4,-19,-6,-43,-6,-71","w":949,"k":{"y":60,"w":60,"v":55,"j":-30,"f":45,"Y":112,"V":88,"T":90}},",":{"d":"422,-184v0,27,-1,50,-4,72v-3,22,-7,43,-13,62v-6,19,-14,38,-23,56v-9,18,-21,38,-35,57r-134,192v-5,7,-9,12,-15,17v-6,5,-13,8,-21,11v-8,3,-18,5,-29,7v-11,2,-26,2,-43,2v-19,0,-35,0,-47,-2v-12,-2,-21,-5,-26,-8v-5,-3,-8,-8,-8,-13v0,-5,1,-12,4,-19r122,-276r0,-158v0,-23,3,-41,8,-55v5,-14,14,-25,25,-32v11,-7,26,-13,43,-15v17,-2,38,-3,63,-3v23,0,43,1,60,3v17,2,30,8,41,15v11,7,19,18,24,32v5,14,8,32,8,55","w":528,"k":{"\u2013":41,"\u201d":120,"\u201c":146,"\u2019":120,"\u2018":146,"t":30,"Y":124,"X":-18,"W":96,"V":101,"T":101,"J":-45,"\u00c4":-30,"\u00c1":-30,"\u00c0":-30,"A":-30}},";":{"d":"442,-790v0,28,-2,51,-7,70v-5,19,-12,34,-23,46v-11,12,-26,21,-44,26v-18,5,-41,7,-68,7v-27,0,-50,-2,-68,-7v-18,-5,-33,-14,-44,-26v-11,-12,-18,-27,-22,-46v-4,-19,-6,-42,-6,-70v0,-29,2,-53,6,-72v4,-19,11,-35,22,-47v11,-12,26,-21,44,-26v18,-5,41,-8,68,-8v27,0,50,3,68,8v18,5,33,14,44,26v11,12,18,28,23,47v5,19,7,43,7,72xm442,-184v0,27,-1,50,-4,72v-3,22,-6,43,-12,62v-6,19,-14,38,-23,56v-9,18,-21,38,-34,57r-130,188v-5,7,-9,12,-15,17v-6,5,-13,9,-21,12v-8,3,-18,5,-29,6v-11,1,-24,2,-41,2v-19,0,-34,-1,-45,-2v-11,-1,-20,-4,-25,-8v-5,-4,-9,-8,-9,-13v0,-5,2,-12,5,-19r117,-272r0,-158v0,-23,3,-41,8,-55v5,-14,13,-25,24,-32v11,-7,26,-13,43,-15v17,-2,38,-3,61,-3v23,0,42,1,58,3v16,2,30,8,41,15v11,7,18,18,23,32v5,14,8,32,8,55","w":565},":":{"d":"442,-790v0,28,-2,51,-7,70v-5,19,-12,34,-23,46v-11,12,-26,21,-44,26v-18,5,-41,7,-68,7v-27,0,-50,-2,-68,-7v-18,-5,-33,-14,-44,-26v-11,-12,-18,-27,-22,-46v-4,-19,-6,-42,-6,-70v0,-29,2,-53,6,-72v4,-19,11,-35,22,-47v11,-12,26,-21,44,-26v18,-5,41,-8,68,-8v27,0,50,3,68,8v18,5,33,14,44,26v11,12,18,28,23,47v5,19,7,43,7,72xm442,-137v0,28,-2,52,-7,71v-5,19,-12,34,-23,46v-11,12,-26,21,-44,26v-18,5,-41,7,-68,7v-27,0,-50,-2,-68,-7v-18,-5,-33,-14,-44,-26v-11,-12,-18,-27,-22,-46v-4,-19,-6,-43,-6,-71v0,-28,2,-51,6,-71v4,-20,11,-36,22,-48v11,-12,26,-21,44,-26v18,-5,41,-7,68,-7v27,0,50,2,68,7v18,5,33,14,44,26v11,12,18,28,23,48v5,20,7,43,7,71","w":565},".":{"d":"422,-144v0,62,-10,104,-32,125v-22,21,-61,32,-117,32v-56,0,-95,-10,-116,-31v-21,-21,-32,-61,-32,-120v0,-63,11,-105,33,-126v22,-21,60,-32,117,-32v55,0,94,11,115,32v21,21,32,61,32,120","w":547,"k":{"-":81,"\u201d":150,"\u201c":185,"\u2019":150,"\u2018":185,"z":-10,"y":70,"w":65,"v":70,"t":50,"g":-25,"f":40,"Y":185,"W":96,"V":135,"\u00dc":15,"\u00da":15,"\u00d9":15,"U":15,"T":140,"Q":25,"\u00d6":25,"\u00d3":25,"\u00d2":25,"O":25,"J":-35,"G":35,"C":35,"\u00c4":-15,"\u00c1":-15,"\u00c0":-15,"A":-15}},"\u2026":{"d":"406,-141v0,61,-10,101,-31,122v-21,21,-58,31,-111,31v-53,0,-90,-10,-110,-30v-20,-20,-30,-60,-30,-118v0,-61,10,-101,31,-122v21,-21,58,-31,111,-31v53,0,90,11,110,31v20,20,30,59,30,117xm870,-141v0,61,-11,101,-32,122v-21,21,-57,31,-110,31v-53,0,-90,-10,-110,-30v-20,-20,-31,-60,-31,-118v0,-61,10,-101,31,-122v21,-21,58,-31,111,-31v53,0,89,11,110,31v21,20,31,59,31,117xm1333,-141v0,61,-10,101,-31,122v-21,21,-58,31,-111,31v-53,0,-89,-10,-109,-30v-20,-20,-31,-60,-31,-118v0,-61,10,-101,31,-122v21,-21,57,-31,110,-31v53,0,90,11,110,31v20,20,31,59,31,117","w":1457},"\u2018":{"d":"378,-1081r0,157v0,23,-3,41,-8,55v-5,14,-14,25,-25,32v-11,7,-25,13,-43,15v-18,2,-39,3,-63,3v-23,0,-43,-1,-60,-3v-17,-2,-30,-8,-41,-15v-11,-7,-19,-18,-24,-32v-5,-14,-7,-32,-7,-55v0,-26,1,-50,3,-72v2,-22,7,-42,13,-61v6,-19,14,-39,23,-57v9,-18,21,-37,35,-56r134,-193v5,-7,10,-12,15,-17v5,-5,12,-9,20,-12v8,-3,18,-5,30,-6v12,-1,26,-2,42,-2v20,0,36,1,48,2v12,1,21,4,26,8v5,4,8,8,8,13v0,5,-1,12,-4,19","w":528,"k":{".":175,",":170,"s":40,"q":80,"\u00f6":70,"\u00f3":70,"\u00f2":70,"o":70,"\u00ef":-97,"\u00ec":-90,"g":66,"\u00e9":80,"\u00e8":80,"e":80,"d":80,"\u00e7":85,"c":85,"\u00e4":58,"\u00e1":58,"\u00e0":58,"a":58,"Y":-38,"W":-14,"V":-46,"T":-75,"Q":25,"\u00d6":25,"\u00d3":25,"\u00d2":25,"O":25,"J":86,"G":30,"\u00c4":164,"\u00c1":164,"\u00c0":164,"A":164}},"\u2019":{"d":"422,-1294v0,26,-1,50,-4,72v-3,22,-7,42,-13,61v-6,19,-14,39,-23,57v-9,18,-21,37,-35,56r-134,192v-5,7,-9,12,-15,17v-6,5,-13,8,-21,11v-8,3,-18,6,-29,7v-11,1,-26,2,-43,2v-19,0,-35,-1,-47,-2v-12,-1,-21,-4,-26,-7v-5,-3,-8,-8,-8,-14v0,-6,1,-12,4,-19r122,-276r0,-157v0,-23,3,-41,8,-55v5,-14,14,-25,25,-33v11,-8,26,-12,43,-14v17,-2,38,-4,63,-4v23,0,43,2,60,4v17,2,30,6,41,14v11,8,19,19,24,33v5,14,8,32,8,55","w":528,"k":{".":185,",":195,"z":35,"y":30,"x":40,"w":20,"v":20,"\u00fc":35,"\u00fa":35,"\u00f9":35,"u":35,"s":115,"r":35,"q":135,"p":35,"\u00f6":145,"\u00f3":145,"\u00f2":145,"o":145,"\u00f1":35,"n":35,"m":35,"j":10,"\u00ef":-65,"\u00ec":-61,"i":-5,"g":125,"\u00e9":136,"\u00e8":136,"e":136,"d":135,"\u00e7":145,"c":145,"\u00e4":126,"\u00e1":126,"\u00e0":126,"a":126,"Y":-20,"T":-25,"Q":70,"\u00d6":70,"\u00d3":70,"\u00d2":70,"O":70,"J":114,"G":70,"C":65,"\u00c4":243,"\u00c1":243,"\u00c0":243,"A":243}},"\u201c":{"d":"742,-1085r0,155v0,23,-3,40,-8,54v-5,14,-12,25,-22,32v-10,7,-24,12,-40,14v-16,2,-36,4,-57,4v-22,0,-41,-2,-56,-4v-15,-2,-28,-7,-38,-14v-10,-7,-17,-18,-21,-32v-4,-14,-7,-31,-7,-54v0,-25,1,-49,3,-70v2,-21,7,-42,12,-61v5,-19,13,-38,22,-56v9,-18,19,-36,32,-55r127,-191v5,-7,10,-12,15,-17v5,-5,10,-9,18,-12v8,-3,17,-5,28,-6v11,-1,24,-2,40,-2v17,0,31,1,42,2v11,1,19,4,24,8v5,4,8,8,8,13v0,5,-2,12,-5,19xm349,-1085r0,155v0,23,-2,40,-7,54v-5,14,-14,25,-24,32v-10,7,-23,12,-39,14v-16,2,-35,4,-57,4v-22,0,-41,-2,-56,-4v-15,-2,-28,-7,-38,-14v-10,-7,-16,-18,-21,-32v-5,-14,-7,-31,-7,-54v0,-25,2,-49,4,-70v2,-21,6,-42,11,-61v5,-19,12,-38,21,-56v9,-18,20,-36,33,-55r128,-191v5,-7,10,-12,15,-17v5,-5,10,-9,18,-12v8,-3,17,-5,28,-6v11,-1,24,-2,39,-2v17,0,31,1,42,2v11,1,19,4,24,8v5,4,8,8,8,13v0,5,-1,12,-4,19","w":891,"k":{".":175,",":170,"s":40,"q":80,"\u00f6":70,"\u00f3":70,"\u00f2":70,"o":70,"\u00ef":-97,"\u00ec":-90,"g":66,"\u00e9":80,"\u00e8":80,"e":80,"d":80,"\u00e7":85,"c":85,"\u00e4":58,"\u00e1":58,"\u00e0":58,"a":58,"Y":-38,"W":-14,"V":-46,"T":-75,"Q":25,"\u00d6":25,"\u00d3":25,"\u00d2":25,"O":25,"J":86,"G":30,"\u00c4":164,"\u00c1":164,"\u00c0":164,"A":164}},"\u201d":{"d":"791,-1296v0,25,-1,49,-3,70v-2,21,-7,42,-12,61v-5,19,-12,38,-21,56v-9,18,-20,36,-33,55r-128,191v-5,7,-9,12,-14,17v-5,5,-12,9,-20,12v-8,3,-16,5,-27,6v-11,1,-24,2,-39,2v-17,0,-31,-1,-42,-2v-11,-1,-19,-4,-24,-8v-5,-4,-8,-8,-8,-13v0,-5,1,-12,4,-20r118,-272r0,-155v0,-23,3,-40,8,-54v5,-14,12,-25,22,-32v10,-7,24,-12,40,-14v16,-2,35,-4,57,-4v22,0,41,2,56,4v15,2,27,7,37,14v10,7,17,18,22,32v5,14,7,31,7,54xm399,-1296v0,25,-1,49,-3,70v-2,21,-7,42,-12,61v-5,19,-13,38,-22,56v-9,18,-19,36,-32,55r-129,191v-4,7,-9,12,-14,17v-5,5,-11,9,-19,12v-8,3,-18,5,-28,6v-10,1,-23,2,-38,2v-17,0,-31,-1,-42,-2v-11,-1,-19,-4,-24,-8v-5,-4,-8,-8,-8,-13v0,-5,1,-12,4,-20r118,-272r0,-155v0,-23,2,-40,7,-54v5,-14,13,-25,23,-32v10,-7,24,-12,40,-14v16,-2,35,-4,57,-4v22,0,41,2,56,4v15,2,27,7,37,14v10,7,17,18,22,32v5,14,7,31,7,54","w":891,"k":{".":185,",":195,"z":35,"y":30,"x":40,"w":20,"v":20,"\u00fc":35,"\u00fa":35,"\u00f9":35,"u":35,"s":115,"r":35,"q":135,"p":35,"\u00f6":145,"\u00f3":145,"\u00f2":145,"o":145,"\u00f1":35,"n":35,"m":35,"j":10,"\u00ef":-65,"\u00ec":-61,"i":-5,"g":125,"\u00e9":136,"\u00e8":136,"e":136,"d":135,"\u00e7":145,"c":145,"\u00e4":126,"\u00e1":126,"\u00e0":126,"a":126,"Y":-20,"T":-25,"Q":70,"\u00d6":70,"\u00d3":70,"\u00d2":70,"O":70,"J":114,"G":70,"C":65,"\u00c4":243,"\u00c1":243,"\u00c0":243,"A":243}},"\u00bb":{"d":"781,-119v-4,6,-9,11,-13,15v-4,4,-10,8,-18,10v-8,2,-18,5,-30,6v-12,1,-29,2,-48,2v-25,0,-44,-2,-59,-4v-15,-2,-26,-5,-33,-10v-7,-5,-12,-11,-12,-18v0,-7,2,-14,6,-23r195,-375r-200,-383v-5,-9,-7,-16,-7,-23v0,-7,5,-13,12,-18v7,-5,17,-8,32,-11v15,-3,35,-4,60,-4v19,0,36,1,48,2v12,1,22,3,30,5v8,2,13,6,18,10v5,4,9,10,12,16r224,366v9,14,12,28,12,43v0,15,-5,31,-16,48xm376,-139v-4,6,-8,11,-12,15v-4,4,-11,8,-19,10v-8,2,-18,3,-30,4v-12,1,-28,2,-47,2v-25,0,-44,-1,-59,-3v-15,-2,-26,-5,-33,-9v-7,-4,-12,-10,-12,-17v0,-7,2,-14,7,-23r190,-355r-203,-369v-5,-8,-7,-14,-6,-20v1,-6,5,-11,12,-15v7,-4,17,-7,32,-9v15,-2,35,-3,60,-3v19,0,36,0,48,1v12,1,22,2,30,4v8,2,14,6,18,10v4,4,8,8,12,13r221,347v9,13,13,28,13,42v0,14,-6,30,-17,47","w":1103},"\/":{"d":"252,259v-3,9,-8,16,-13,21v-5,5,-13,10,-23,13v-10,3,-22,5,-36,7v-14,2,-32,3,-54,3v-27,0,-50,-1,-67,-4v-17,-3,-30,-7,-39,-12v-9,-5,-15,-13,-16,-21v-1,-8,0,-18,4,-29r598,-1679v3,-9,7,-16,12,-22v5,-6,13,-10,22,-13v9,-3,21,-5,36,-7v15,-2,34,-3,55,-3v28,0,50,1,67,4v17,3,30,7,39,12v9,5,14,13,15,21v1,8,0,18,-3,29","w":880,"k":{"s":55,"\u00f6":45,"\u00f3":45,"\u00f2":45,"o":45,"g":45,"\u00e9":50,"\u00e8":50,"e":50,"\u00e7":50,"c":50,"\u00e4":50,"\u00e1":50,"\u00e0":50,"a":50,"J":50,"\u00c4":90,"\u00c1":90,"\u00c0":90,"A":90}},"|":{"d":"605,323v0,7,-1,13,-5,18v-4,5,-11,9,-20,13v-9,4,-21,6,-36,8v-15,2,-35,3,-58,3v-23,0,-41,-1,-56,-3v-15,-2,-28,-4,-37,-8v-9,-4,-15,-8,-19,-13v-4,-5,-6,-11,-6,-18r0,-1726v0,-7,2,-13,6,-18v4,-5,10,-9,19,-13v9,-4,22,-7,37,-9v15,-2,33,-3,56,-3v23,0,43,1,58,3v15,2,27,5,36,9v9,4,16,8,20,13v4,5,5,11,5,18r0,1726","w":973},"\\":{"d":"866,218v5,17,8,30,9,40v1,10,-3,18,-11,23v-8,5,-19,7,-36,9v-17,2,-40,3,-69,3v-27,0,-49,-1,-65,-2v-16,-1,-29,-3,-38,-6v-9,-3,-16,-6,-20,-11v-4,-5,-8,-12,-11,-19r-586,-1651v-6,-17,-9,-31,-10,-41v-1,-10,3,-17,11,-22v8,-5,19,-7,36,-9v17,-2,40,-3,69,-3v27,0,49,1,65,2v16,1,29,3,38,6v9,3,16,6,20,11v4,5,7,12,10,19","w":880},"-":{"d":"568,-503v0,39,-4,66,-11,81v-7,15,-19,23,-35,23r-416,0v-17,0,-29,-7,-36,-23v-7,-16,-11,-43,-11,-81v0,-37,4,-64,11,-79v7,-15,19,-23,36,-23r416,0v8,0,14,2,20,5v6,3,11,9,15,17v4,8,7,19,9,32v2,13,2,29,2,48","w":627,"k":{"y":20,"x":35,"v":15,"f":15,"Y":85}},"\u2010":{"d":"568,-503v0,39,-4,66,-11,81v-7,15,-19,23,-35,23r-416,0v-17,0,-29,-7,-36,-23v-7,-16,-11,-43,-11,-81v0,-37,4,-64,11,-79v7,-15,19,-23,36,-23r416,0v8,0,14,2,20,5v6,3,11,9,15,17v4,8,7,19,9,32v2,13,2,29,2,48","w":627},"\u00ad":{"d":"568,-503v0,39,-4,66,-11,81v-7,15,-19,23,-35,23r-416,0v-17,0,-29,-7,-36,-23v-7,-16,-11,-43,-11,-81v0,-37,4,-64,11,-79v7,-15,19,-23,36,-23r416,0v8,0,14,2,20,5v6,3,11,9,15,17v4,8,7,19,9,32v2,13,2,29,2,48","w":627},"\u2013":{"d":"1028,-568v0,37,-3,62,-10,78v-7,16,-19,24,-36,24r-946,0v-17,0,-29,-8,-36,-24v-7,-16,-11,-41,-11,-78v0,-37,4,-64,11,-80v7,-16,19,-23,36,-23r946,0v8,0,15,2,21,5v6,3,11,10,14,18v3,8,6,19,8,32v2,13,3,29,3,48","w":1020},"\u2014":{"d":"1723,-568v0,38,-4,65,-12,80v-8,15,-19,22,-34,22r-1498,0v-15,0,-27,-7,-35,-22v-8,-15,-13,-42,-13,-80v0,-37,3,-64,11,-80v8,-16,20,-24,37,-24r1498,0v16,0,28,8,35,23v7,15,11,42,11,81","w":1854},"_":{"d":"1026,272v0,33,-4,58,-10,72v-6,14,-16,21,-31,21r-950,0v-15,0,-27,-7,-33,-21v-6,-14,-9,-38,-9,-71v0,-33,3,-57,9,-72v6,-15,18,-22,33,-22r950,0v15,0,25,7,31,21v6,14,10,38,10,72","w":1020},"\u00b7":{"d":"422,-598v0,62,-10,104,-32,126v-22,22,-61,32,-117,32v-56,0,-95,-11,-116,-32v-21,-21,-32,-61,-32,-120v0,-62,11,-104,33,-126v22,-22,60,-32,117,-32v55,0,94,11,115,32v21,21,32,61,32,120","w":548},"\u2219":{"d":"422,-598v0,62,-10,104,-32,126v-22,22,-61,32,-117,32v-56,0,-95,-11,-116,-32v-21,-21,-32,-61,-32,-120v0,-62,11,-104,33,-126v22,-22,60,-32,117,-32v55,0,94,11,115,32v21,21,32,61,32,120","w":548},"(":{"d":"535,-1368v-56,130,-98,264,-127,402v-29,138,-43,281,-43,426v0,146,14,288,43,426v29,138,71,272,126,404v4,11,6,20,6,28v0,8,-4,14,-11,19v-7,5,-18,9,-33,12v-15,3,-36,4,-63,4v-19,0,-35,-1,-48,-2v-13,-1,-24,-3,-33,-5v-9,-2,-17,-6,-22,-10v-5,-4,-8,-7,-10,-12v-36,-69,-67,-140,-94,-210v-27,-70,-48,-140,-66,-212v-18,-72,-31,-145,-40,-218v-9,-73,-13,-147,-13,-222v0,-75,4,-149,13,-222v9,-73,23,-144,41,-216v18,-72,41,-143,67,-214v26,-71,57,-141,92,-211v1,-3,4,-6,8,-9v4,-3,10,-6,18,-8v8,-2,18,-3,32,-4v14,-1,32,-2,53,-2v24,0,44,2,59,4v15,2,27,5,35,10v8,5,12,11,13,18v1,7,0,15,-3,24","w":638,"k":{"j":-50,"g":-10}},")":{"d":"530,-538v0,75,-4,149,-13,222v-9,73,-21,146,-39,218v-18,72,-40,142,-66,212v-26,70,-58,141,-94,210v-2,5,-5,8,-10,12v-5,4,-13,8,-22,10v-9,2,-20,4,-33,5v-13,1,-29,2,-48,2v-27,0,-48,-1,-63,-4v-15,-3,-27,-7,-34,-12v-7,-5,-11,-11,-11,-19v0,-8,2,-17,6,-28v55,-131,98,-266,127,-404v29,-138,43,-280,43,-426v0,-145,-14,-288,-43,-426v-29,-138,-71,-272,-128,-402v-3,-9,-5,-17,-4,-24v1,-7,6,-13,14,-18v8,-5,21,-8,36,-10v15,-2,34,-4,59,-4v21,0,38,1,51,2v13,1,24,2,33,4v9,2,15,5,19,8v4,3,6,6,8,9v69,140,122,282,158,425v36,143,54,289,54,438","w":638},"[":{"d":"578,248v0,33,-3,57,-9,70v-6,13,-15,20,-26,20r-309,0v-11,0,-22,-2,-31,-5v-9,-3,-17,-8,-24,-15v-7,-7,-12,-15,-16,-26v-4,-11,-6,-23,-6,-38r0,-1586v0,-14,2,-26,6,-37v4,-11,9,-20,16,-27v7,-7,15,-11,24,-14v9,-3,20,-5,31,-5r309,0v5,0,10,2,15,5v5,3,9,7,12,14v3,7,5,17,6,28v1,11,2,26,2,43v0,34,-3,58,-9,71v-6,13,-15,19,-26,19r-151,0r0,1393r151,0v5,0,10,1,15,4v5,3,9,8,12,15v3,7,5,17,6,28v1,11,2,26,2,43","w":665},"]":{"d":"510,254v0,15,-2,27,-6,38v-4,11,-10,19,-17,26v-7,7,-15,12,-24,15v-9,3,-20,5,-31,5r-310,0v-11,0,-20,-7,-26,-20v-6,-13,-9,-37,-9,-70v0,-17,1,-32,3,-43v2,-11,3,-21,6,-28v3,-7,8,-12,12,-15v4,-3,9,-4,14,-4r152,0r0,-1393r-152,0v-11,0,-20,-6,-26,-19v-6,-13,-9,-37,-9,-71v0,-17,1,-32,3,-43v2,-11,3,-21,6,-28v3,-7,8,-11,12,-14v4,-3,9,-5,14,-5r310,0v11,0,22,2,31,5v9,3,17,7,24,14v7,7,13,16,17,27v4,11,6,23,6,37r0,1586","w":665},"{":{"d":"632,238v0,17,0,31,-2,42v-2,11,-5,20,-8,27v-3,7,-7,12,-12,15v-5,3,-10,6,-15,7v-15,4,-30,7,-44,8v-14,1,-30,2,-47,2v-53,0,-96,-8,-131,-25v-35,-17,-62,-40,-83,-72v-21,-32,-36,-72,-44,-120v-8,-48,-12,-110,-12,-186r0,-172v0,-42,-3,-75,-8,-100v-5,-25,-14,-47,-25,-66v-11,-19,-25,-34,-43,-47v-18,-13,-40,-21,-65,-25v-7,-1,-12,-4,-17,-8v-5,-4,-9,-9,-12,-16v-3,-7,-6,-16,-8,-28v-2,-12,-2,-27,-2,-44v0,-18,1,-34,2,-46v1,-12,3,-22,6,-29v3,-7,8,-12,12,-15v4,-3,9,-6,16,-7v47,-7,82,-29,107,-68v25,-39,37,-96,37,-171r0,-129v0,-76,4,-137,12,-185v8,-48,23,-88,44,-120v21,-32,49,-58,84,-74v35,-16,78,-24,130,-24v17,0,33,0,47,2v14,2,28,5,43,8v6,1,11,3,16,6v5,3,9,8,12,15v3,7,6,15,8,27v2,12,2,26,2,43v0,17,-1,32,-3,43v-2,11,-5,21,-8,28v-3,7,-8,13,-13,16v-5,3,-11,4,-16,4r-37,1v-17,1,-30,3,-41,9v-11,6,-21,16,-28,30v-7,14,-11,34,-14,58v-3,24,-5,63,-5,114r0,124v0,51,-4,94,-11,129v-7,35,-20,66,-36,94v-16,28,-37,53,-63,73v-26,20,-58,34,-96,43v38,9,70,23,96,43v26,20,47,44,63,72v16,28,29,60,36,95v7,35,11,77,11,128r0,168v0,51,2,89,5,113v3,24,8,44,14,58v6,14,14,24,24,30v10,6,21,9,36,10r37,0v9,1,17,3,24,6v7,3,11,7,15,14v4,7,7,17,8,28v1,11,2,26,2,44","w":704},"}":{"d":"684,-574v0,19,0,34,-2,46v-2,12,-4,22,-7,29v-3,7,-6,13,-11,16v-5,3,-10,5,-16,6v-25,3,-47,13,-65,29v-18,16,-33,38,-45,62v-12,24,-20,51,-26,81v-6,30,-8,67,-8,112r0,129v0,76,-4,138,-12,186v-8,48,-23,87,-44,119v-21,32,-49,56,-84,73v-35,17,-78,25,-130,25v-17,0,-32,-1,-46,-3v-14,-2,-29,-4,-46,-7v-5,-1,-10,-4,-14,-7v-4,-3,-9,-8,-12,-15v-3,-7,-6,-16,-8,-27v-2,-11,-3,-25,-3,-42v0,-17,1,-32,3,-43v2,-11,4,-21,8,-28v4,-7,9,-12,14,-15v5,-3,10,-5,15,-6r38,0v17,-1,30,-4,41,-10v11,-6,21,-16,28,-30v7,-14,11,-33,14,-58v3,-25,5,-62,5,-113r0,-125v0,-51,4,-96,11,-135v7,-39,19,-75,35,-109v16,-34,37,-63,63,-88v26,-25,59,-42,97,-51v-38,-9,-71,-21,-97,-36v-26,-15,-47,-34,-63,-57v-16,-23,-28,-49,-35,-79v-7,-30,-11,-71,-11,-122r0,-167v0,-51,-2,-88,-5,-112v-3,-24,-7,-44,-13,-59v-6,-15,-14,-25,-24,-31v-10,-6,-22,-8,-37,-9r-36,-1v-10,0,-18,-1,-25,-4v-7,-3,-12,-8,-16,-15v-4,-7,-7,-15,-8,-27v-1,-12,-2,-27,-2,-45v0,-17,1,-31,3,-43v2,-12,4,-20,8,-27v4,-7,7,-12,12,-15v5,-3,10,-5,16,-6v15,-4,30,-7,44,-8v14,-1,29,-2,46,-2v53,0,96,8,131,24v35,16,62,41,83,73v21,32,36,71,44,119v8,48,12,110,12,187r0,172v0,41,3,73,8,93v5,20,13,37,24,50v11,13,26,24,44,32v18,8,40,14,65,19v6,1,12,3,17,7v5,4,9,9,12,16v3,7,5,16,7,28v2,12,3,27,3,44","w":704},"*":{"d":"859,-939v13,5,20,15,19,31v-1,16,-12,41,-31,74v-19,33,-36,54,-49,62v-13,8,-25,9,-36,0r-199,-159r40,251v3,14,-2,25,-17,32v-15,7,-41,11,-80,11v-39,0,-65,-4,-80,-11v-15,-7,-20,-18,-17,-32r40,-251r-199,159v-10,9,-22,9,-35,0v-13,-9,-30,-30,-50,-63v-19,-33,-29,-57,-30,-73v-1,-16,5,-26,18,-31r238,-92r-238,-92v-13,-5,-19,-15,-18,-31v1,-16,11,-41,30,-74v19,-33,35,-54,49,-63v14,-9,26,-8,36,1r199,159r-40,-251v-3,-13,2,-24,17,-32v15,-8,41,-11,80,-11v39,0,65,3,80,11v15,8,20,19,17,32r-40,251r199,-159v11,-9,23,-9,36,0v13,9,29,30,49,63v19,33,30,57,31,73v1,16,-6,26,-19,31r-237,92","w":1020},"^":{"d":"968,-596v9,19,14,34,16,45v2,11,-1,20,-8,26v-7,6,-19,9,-36,11v-17,2,-40,3,-69,3v-26,0,-48,-1,-65,-3v-17,-2,-31,-4,-42,-8v-11,-4,-18,-8,-24,-14v-6,-6,-11,-12,-14,-20r-221,-541r-5,1r-212,540v-3,8,-8,14,-14,20v-6,6,-13,10,-24,14v-11,4,-25,6,-42,8v-17,2,-38,3,-64,3v-29,0,-52,-1,-68,-3v-16,-2,-29,-5,-36,-11v-7,-6,-9,-15,-7,-26v2,-11,7,-26,16,-45r288,-656v4,-9,10,-16,18,-22v8,-6,19,-12,33,-16v14,-4,30,-8,49,-10v19,-2,42,-4,69,-4v27,0,50,2,70,4v20,2,36,6,49,10v13,4,24,10,32,16v8,6,14,13,18,22","w":1020},"~":{"d":"966,-1070v-1,53,-9,99,-24,138v-15,39,-35,72,-60,98v-25,26,-54,44,-86,57v-32,13,-66,19,-101,19v-29,0,-54,-3,-76,-8v-22,-5,-42,-13,-59,-22v-17,-9,-32,-19,-46,-31v-14,-12,-28,-25,-42,-39v-14,-14,-25,-27,-36,-40v-11,-13,-22,-24,-32,-33v-10,-9,-20,-16,-31,-21v-11,-5,-23,-8,-38,-8v-17,0,-31,3,-43,10v-12,7,-22,17,-29,30v-7,13,-13,28,-17,46v-4,18,-5,38,-5,59v0,13,-8,22,-23,27v-15,5,-38,8,-69,8v-18,0,-33,0,-45,-2v-12,-2,-21,-4,-28,-8v-7,-4,-12,-9,-15,-14v-3,-5,-4,-11,-4,-18r0,-27v0,-53,7,-100,21,-140v14,-40,32,-73,56,-99v24,-26,53,-46,86,-59v33,-13,69,-19,108,-19v29,0,54,3,76,8v22,5,42,11,60,20v18,9,32,20,46,32v14,12,28,24,41,38v13,14,25,27,36,40v11,13,21,24,31,33v10,9,21,17,32,22v11,5,23,8,38,8v16,0,30,-4,42,-11v12,-7,22,-16,30,-29v8,-13,12,-28,16,-46v4,-18,6,-39,6,-62v0,-11,8,-20,24,-25v16,-5,38,-7,67,-7v19,0,34,1,46,3v12,2,22,4,29,8v7,4,11,8,14,13v3,5,5,12,4,19r0,32","w":1020},"'":{"d":"332,-910v0,7,-2,14,-5,19v-3,5,-9,10,-16,13v-7,3,-17,6,-29,8v-12,2,-26,2,-43,2v-18,0,-33,-1,-45,-3v-12,-2,-21,-5,-28,-8v-7,-3,-13,-8,-16,-13v-3,-5,-4,-11,-5,-18r-23,-447v-1,-7,2,-13,6,-18v4,-5,11,-9,20,-13v9,-4,21,-6,36,-8v15,-2,34,-3,55,-3v22,0,40,1,55,3v15,2,27,4,36,7v9,3,16,8,20,13v4,5,6,12,5,19","w":478},"\"":{"d":"707,-910v0,7,-2,13,-5,18v-3,5,-7,10,-14,13v-7,3,-17,6,-28,8v-11,2,-26,3,-43,3v-18,0,-33,-1,-45,-3v-12,-2,-20,-5,-27,-8v-7,-3,-12,-8,-15,-13v-3,-5,-4,-11,-4,-18r-24,-447v0,-7,2,-13,6,-18v4,-5,11,-9,20,-13v9,-4,20,-6,35,-8v15,-2,33,-3,54,-3v21,0,39,1,54,3v15,2,26,4,35,8v9,4,16,8,19,13v3,5,5,11,5,18xm326,-910v0,7,-1,13,-4,18v-3,5,-8,10,-15,13v-7,3,-15,6,-27,8v-12,2,-27,3,-44,3v-18,0,-33,-1,-44,-3v-11,-2,-21,-5,-28,-8v-7,-3,-11,-8,-14,-13v-3,-5,-4,-11,-5,-18r-23,-447v-1,-7,1,-13,5,-18v4,-5,10,-9,19,-13v9,-4,21,-6,36,-8v15,-2,33,-3,54,-3v43,0,74,4,90,11v16,7,24,17,24,31","w":898},"&":{"d":"82,-361v0,-37,5,-72,16,-105v11,-33,28,-65,50,-94v22,-29,50,-57,82,-84v32,-27,69,-53,112,-78v-24,-31,-44,-59,-62,-86v-18,-27,-32,-53,-44,-78v-12,-25,-20,-48,-26,-70v-6,-22,-9,-45,-9,-67v0,-47,8,-90,25,-131v17,-41,43,-77,78,-107v35,-30,80,-53,135,-71v55,-18,120,-27,197,-27v70,0,130,7,181,20v51,13,92,33,125,57v33,24,57,54,73,90v16,36,24,75,24,120v0,40,-7,77,-21,111v-14,34,-34,66,-62,97v-28,31,-62,60,-103,88v-41,28,-90,57,-145,86v18,21,38,43,60,66r70,68r71,69v24,23,47,44,70,63v9,-13,16,-29,23,-46v7,-17,13,-36,18,-55v5,-19,9,-39,12,-59v3,-20,5,-40,5,-59r0,-31v0,-7,1,-14,4,-19v3,-5,9,-10,17,-13v8,-3,20,-6,36,-8v16,-2,35,-2,60,-2v23,0,43,1,58,2v15,1,27,3,36,6v9,3,16,8,20,14v4,6,5,12,5,21r0,32v0,32,-2,64,-7,97v-5,33,-11,65,-20,96v-9,31,-21,60,-34,88v-13,28,-28,55,-44,80v23,18,43,33,60,45v17,12,32,22,44,29v12,7,22,11,30,14v8,3,15,4,20,4r20,0v6,0,12,2,16,7v4,5,7,13,9,25v2,12,3,30,3,53v0,25,-1,44,-2,58v-1,14,-2,24,-4,31v-2,7,-6,12,-12,16v-6,4,-16,8,-29,12v-13,4,-29,6,-48,6v-15,0,-29,-2,-45,-6v-16,-4,-34,-10,-55,-20v-21,-10,-45,-25,-72,-42v-27,-17,-59,-38,-95,-65v-31,21,-64,40,-97,57v-33,17,-69,32,-105,43v-36,11,-73,20,-112,26v-39,6,-80,9,-124,9v-43,0,-86,-3,-127,-10v-41,-7,-81,-16,-117,-30v-36,-14,-69,-31,-99,-52v-30,-21,-56,-46,-77,-74v-21,-28,-38,-60,-50,-96v-12,-36,-18,-77,-18,-121xm466,-1036v0,14,2,29,7,44v5,15,11,30,19,46v8,16,19,34,32,52v19,28,19,28,43,60v39,-21,73,-41,99,-59v26,-18,47,-36,63,-53v16,-17,27,-33,34,-50v7,-17,10,-35,10,-53v0,-16,-3,-31,-9,-45v-6,-14,-15,-26,-28,-36v-13,-10,-28,-19,-47,-25v-19,-6,-41,-9,-66,-9v-28,0,-51,4,-71,10v-20,6,-36,14,-49,26v-13,12,-22,26,-28,42v-6,16,-9,32,-9,50xm354,-375v0,29,5,55,16,79v11,24,26,45,46,62v20,17,44,30,74,40v30,10,64,15,103,15v20,0,39,-1,59,-5v20,-4,39,-10,58,-16v19,-6,37,-13,54,-22v17,-9,33,-19,48,-30v-30,-24,-60,-49,-90,-76v-46,-40,-46,-41,-89,-82r-83,-82v-26,-27,-49,-52,-70,-76v-23,15,-42,30,-58,46v-16,16,-29,31,-39,47v-10,16,-17,32,-22,49v-5,17,-7,34,-7,51","w":1443},"@":{"d":"1711,-769v0,49,-3,97,-10,147v-7,50,-18,98,-33,144v-15,46,-34,88,-57,128v-23,40,-52,75,-85,104v-33,29,-71,53,-114,70v-43,17,-92,25,-147,25v-33,0,-62,-3,-89,-9v-27,-6,-50,-16,-70,-28v-20,-12,-37,-28,-50,-46v-13,-18,-22,-40,-29,-64v-26,27,-52,50,-77,68v-25,18,-50,33,-74,45v-24,12,-48,21,-72,26v-24,5,-48,8,-73,8v-31,0,-59,-3,-83,-11v-24,-8,-44,-19,-62,-32v-18,-13,-32,-28,-44,-46v-12,-18,-22,-38,-29,-59v-7,-21,-12,-44,-15,-67v-3,-23,-5,-47,-5,-71v0,-31,2,-66,7,-105v5,-39,14,-78,26,-118v12,-40,27,-80,46,-118v19,-38,43,-70,72,-100v29,-30,62,-54,100,-72v38,-18,83,-27,133,-27v23,0,44,2,63,7v19,5,38,12,56,22v18,10,35,23,52,39v17,16,35,36,54,59r17,-77v3,-12,11,-21,25,-27v14,-6,37,-9,72,-9v17,0,32,1,44,3v12,2,20,3,27,6v7,3,11,8,13,12v2,4,3,9,2,15r-86,447v-9,49,-8,85,4,108v12,23,37,35,73,35v23,0,45,-6,64,-19v19,-13,37,-30,51,-52v14,-22,26,-46,36,-74v10,-28,18,-59,24,-90v6,-31,11,-62,14,-94v3,-32,5,-62,5,-91v0,-53,-7,-103,-22,-151v-15,-48,-40,-90,-77,-126v-37,-36,-87,-65,-150,-86v-63,-21,-144,-32,-241,-32v-65,0,-125,7,-179,20v-54,13,-101,31,-144,54v-43,23,-81,50,-114,81v-33,31,-62,66,-87,103v-25,37,-46,76,-63,118v-17,42,-30,83,-40,126v-10,43,-17,85,-22,128v-5,43,-7,84,-7,124v0,73,8,138,24,195v16,57,44,106,83,146v39,40,92,70,158,91v66,21,147,32,246,32v51,0,98,-3,140,-9v42,-6,80,-12,112,-19v32,-7,57,-13,77,-19v20,-6,34,-9,41,-9v5,0,9,2,12,4v3,2,6,6,8,13v2,7,3,16,4,27v1,11,2,26,2,43v0,15,0,27,-1,37v-1,10,-1,19,-3,26v-2,7,-4,13,-7,18v-3,5,-6,8,-10,12v-4,4,-16,10,-37,17v-21,7,-49,14,-84,21v-35,7,-77,14,-124,19v-47,5,-98,8,-154,8v-127,0,-235,-14,-324,-43v-89,-29,-163,-71,-220,-126v-57,-55,-98,-122,-124,-200v-26,-78,-40,-167,-40,-265v0,-55,4,-110,12,-167v8,-57,19,-113,35,-168v16,-55,37,-110,63,-162v26,-52,56,-101,91,-148v35,-47,77,-89,123,-128v46,-39,98,-73,156,-101v58,-28,120,-50,190,-65v70,-15,147,-23,230,-23v122,0,227,14,314,41v87,27,158,66,214,116v56,50,98,110,124,180v26,70,39,149,39,235xm1039,-680v-20,-37,-41,-64,-63,-83v-22,-19,-46,-28,-73,-28v-23,0,-45,6,-63,17v-18,11,-34,26,-48,44v-14,18,-26,39,-36,62v-10,23,-18,46,-24,70v-6,24,-10,47,-13,70v-3,23,-4,44,-4,61v0,40,7,72,22,95v15,23,39,35,74,35v13,0,25,-3,39,-7v14,-4,29,-10,44,-20v15,-10,31,-22,48,-38v17,-16,35,-35,56,-57","w":1840},"\u2122":{"d":"523,-1220v0,14,-1,25,-2,34v-1,9,-3,17,-5,22v-2,5,-5,10,-8,12v-3,2,-7,3,-10,3r-124,0r0,416v0,3,-1,6,-4,9v-3,3,-7,6,-14,8v-7,2,-16,4,-27,5v-11,1,-25,2,-42,2v-18,0,-33,-1,-44,-2v-11,-1,-21,-3,-27,-5v-6,-2,-10,-5,-13,-8v-3,-3,-4,-6,-4,-9r0,-416r-123,0v-4,0,-7,-1,-10,-3v-3,-2,-6,-7,-8,-12v-2,-5,-5,-13,-6,-22v-1,-9,-2,-20,-2,-34v0,-14,1,-26,2,-36v1,-10,4,-16,6,-22v2,-6,5,-10,8,-12v3,-2,6,-4,10,-4r422,0v3,0,7,2,10,4v3,2,6,6,8,12v2,6,4,12,5,22v1,10,2,22,2,36xm1346,-733v0,3,-1,6,-3,9v-2,3,-5,6,-11,8v-6,2,-14,4,-24,5v-10,1,-22,2,-37,2v-15,0,-27,-1,-37,-2v-10,-1,-18,-3,-24,-5v-6,-2,-9,-5,-11,-8v-2,-3,-3,-6,-3,-9r0,-416r-2,0r-138,419v-2,8,-9,13,-22,16v-13,3,-32,5,-57,5v-25,0,-43,-2,-55,-5v-12,-3,-18,-9,-21,-16r-137,-419r-2,0r0,416v0,3,-1,6,-3,9v-2,3,-6,6,-11,8v-5,2,-12,4,-22,5v-10,1,-23,2,-38,2v-16,0,-28,-1,-38,-2v-10,-1,-18,-3,-24,-5v-6,-2,-9,-5,-11,-8v-2,-3,-3,-6,-3,-9r0,-506v0,-17,5,-31,14,-41v9,-10,21,-14,37,-14r124,0v15,0,27,2,37,6v10,4,20,9,28,16v8,7,14,17,20,28v6,11,11,24,15,39r94,280r99,-280v9,-27,20,-49,34,-65v14,-16,35,-24,61,-24r118,0v17,0,30,4,39,14v9,10,14,24,14,41r0,506","w":1475},"\u20ac":{"d":"999,-172v0,29,-3,53,-8,70v-5,17,-13,30,-22,39v-9,9,-23,19,-41,29v-18,10,-38,18,-64,26v-26,8,-55,16,-88,21v-33,5,-70,8,-110,8v-75,0,-142,-10,-200,-29v-58,-19,-108,-48,-149,-84v-41,-36,-75,-81,-101,-134v-26,-53,-44,-113,-55,-180r-96,0v-10,0,-18,-7,-24,-20v-6,-13,-9,-34,-9,-65v0,-15,1,-28,2,-39v1,-11,2,-20,4,-26v2,-6,6,-11,10,-14v4,-3,8,-4,13,-4r89,0r0,-32v0,0,-1,-21,-1,-32v0,-13,1,-27,1,-40r0,-37r-89,0v-10,0,-17,-7,-22,-19v-5,-12,-7,-34,-7,-65v0,-16,0,-29,2,-40v2,-11,5,-19,8,-25v3,-6,6,-11,10,-14v4,-3,8,-4,13,-4r103,0v13,-64,32,-123,58,-176v26,-53,60,-98,100,-136v40,-38,88,-69,144,-90v56,-21,123,-31,198,-31v35,0,68,2,100,7v32,5,62,12,88,20v26,8,47,16,64,24v17,8,30,16,37,22v7,6,13,12,16,18v3,6,6,15,8,24v2,9,4,22,5,36v1,14,2,31,2,52v0,18,-1,33,-2,44v-1,11,-3,21,-6,28v-3,7,-8,11,-12,14v-4,3,-9,4,-14,4v-11,0,-24,-5,-38,-14v-14,-9,-31,-19,-52,-30v-21,-11,-47,-21,-76,-30v-29,-9,-64,-14,-103,-14v-37,0,-70,6,-98,16v-28,10,-53,25,-73,45v-20,20,-36,44,-49,72v-13,28,-22,60,-29,95r274,0v5,0,10,1,14,4v4,3,7,8,10,14v3,6,4,14,6,25v2,11,3,24,3,40v0,31,-3,53,-9,65v-6,12,-14,19,-24,19r-294,0v-1,11,-2,22,-2,33r0,36r0,36v0,0,1,23,2,36r294,0v5,0,10,1,14,4v4,3,7,8,10,14v3,6,4,15,6,26v2,11,3,24,3,39v0,31,-3,52,-9,65v-6,13,-14,20,-24,20r-275,0v5,34,14,65,27,92v13,27,29,49,50,68v21,19,48,33,78,43v30,10,66,15,108,15v39,0,73,-5,102,-14v29,-9,55,-20,76,-31v21,-11,40,-22,54,-31v14,-9,26,-14,35,-14v5,0,11,1,15,4v4,3,7,8,10,16v3,8,6,18,7,32v1,14,2,31,2,54"},"$":{"d":"951,-393v0,57,-11,109,-31,155v-20,46,-49,86,-86,119v-37,33,-82,60,-135,80v-53,20,-111,33,-175,38r-21,214v-1,5,-3,10,-5,14v-2,4,-6,7,-12,10v-6,3,-15,5,-26,7v-11,2,-25,2,-42,2v-21,0,-39,-1,-52,-3v-13,-2,-23,-5,-30,-9v-7,-4,-12,-8,-14,-14v-2,-6,-3,-13,-2,-20r21,-203v-29,-4,-56,-9,-81,-15v-25,-6,-48,-14,-69,-22v-21,-8,-38,-15,-53,-23v-15,-8,-26,-15,-34,-23v-8,-8,-14,-19,-17,-34v-3,-15,-5,-38,-5,-67v0,-23,1,-41,2,-56v1,-15,4,-26,7,-34v3,-8,8,-14,13,-17v5,-3,10,-4,17,-4v9,0,21,5,38,15v17,10,38,21,64,33v26,12,58,23,95,33v37,10,80,15,130,15v78,0,136,-15,174,-44v38,-29,57,-67,57,-115v0,-32,-9,-58,-25,-79v-16,-21,-38,-38,-65,-54v-27,-16,-59,-30,-93,-42v-52,-18,-51,-19,-105,-40v-36,-14,-71,-30,-105,-49v-34,-19,-66,-42,-93,-69v-27,-27,-49,-61,-65,-100v-16,-39,-25,-86,-25,-141v0,-50,8,-96,25,-137v17,-41,41,-76,72,-107v31,-31,70,-56,116,-75v46,-19,97,-31,155,-38r20,-201v1,-5,3,-9,5,-13v2,-4,6,-7,12,-10v6,-3,15,-6,26,-7v11,-1,25,-2,42,-2v21,0,38,1,52,3v14,2,24,4,31,8v7,4,12,9,14,15v2,6,3,13,3,20r-20,189v19,3,38,6,59,11v21,5,40,11,58,17v18,6,34,13,49,20v15,7,24,12,30,18v6,6,11,12,14,18v3,6,4,12,6,20v2,8,3,18,4,30v1,12,1,26,1,41v0,21,0,38,-1,51v-1,13,-3,23,-6,30v-3,7,-6,12,-9,14v-3,2,-7,4,-12,4v-9,0,-21,-4,-38,-13v-17,-9,-37,-18,-61,-28v-24,-10,-52,-19,-84,-28v-32,-9,-67,-13,-105,-13v-35,0,-64,3,-89,10v-25,7,-45,16,-60,28v-15,12,-27,26,-34,43v-7,17,-11,35,-11,55v0,31,8,58,25,79v17,21,38,40,66,55v28,15,59,29,94,42r108,40v36,14,71,30,106,48v35,18,67,41,94,68v27,27,49,60,66,98v17,38,25,85,25,139"},"#":{"d":"991,-886v0,16,-1,29,-3,40v-2,11,-5,20,-8,27v-3,7,-7,12,-12,15v-5,3,-11,4,-16,4r-114,0r-34,285r98,0v11,0,21,6,28,19v7,13,10,35,10,66v0,16,-1,30,-3,41v-2,11,-5,20,-8,27v-3,7,-8,11,-13,14v-5,3,-10,5,-15,5r-119,0r-37,313v-1,6,-2,12,-5,16v-3,4,-8,8,-16,11v-8,3,-19,6,-32,7v-13,1,-29,2,-49,2v-21,0,-38,-1,-51,-2v-13,-1,-23,-4,-30,-7v-7,-3,-12,-7,-14,-11v-2,-4,-3,-10,-2,-16r38,-313r-224,0r-37,313v-1,5,-2,10,-5,15v-3,5,-9,9,-16,12v-7,3,-17,6,-30,7v-13,1,-31,2,-52,2v-21,0,-37,-1,-50,-2v-13,-1,-23,-4,-30,-7v-7,-3,-12,-7,-14,-11v-2,-4,-2,-10,-1,-16r36,-313r-95,0v-11,0,-21,-6,-28,-19v-7,-13,-10,-35,-10,-66v0,-16,1,-30,3,-41v2,-11,5,-20,8,-27v3,-7,7,-11,12,-14v5,-3,10,-5,16,-5r116,0r34,-285r-101,0v-11,0,-21,-6,-28,-19v-7,-13,-10,-35,-10,-66v0,-32,4,-54,11,-67v7,-13,17,-19,28,-19r120,0r36,-292v0,-6,2,-11,5,-15v3,-4,9,-9,17,-12v8,-3,19,-6,32,-8v13,-2,30,-2,51,-2v21,0,37,0,50,2v13,2,22,5,29,8v7,3,11,8,13,12v2,4,2,9,2,14r-37,293r224,0r34,-292v1,-5,3,-10,6,-15v3,-5,9,-9,17,-12v8,-3,18,-6,31,-8v13,-2,31,-2,52,-2v21,0,37,0,50,2v13,2,22,5,29,8v7,3,10,8,12,12v2,4,3,9,2,14r-35,293r96,0v11,0,20,6,27,19v7,13,11,35,11,66xm415,-800r-34,285r223,0r35,-285r-224,0","w":1020},"0":{"d":"982,-652v0,103,-8,197,-25,280v-17,83,-43,154,-81,213v-38,59,-88,104,-148,135v-60,31,-134,47,-221,47v-89,0,-162,-15,-220,-45v-58,-30,-104,-75,-138,-132v-34,-57,-57,-126,-71,-208v-14,-82,-21,-176,-21,-280v0,-103,8,-196,25,-280v17,-84,44,-154,82,-213v38,-59,88,-104,148,-135v60,-31,133,-47,220,-47v89,0,162,15,220,45v58,30,105,75,139,132v34,57,58,126,71,208v13,82,20,176,20,280xm717,-639v0,-61,-2,-116,-5,-163v-3,-47,-9,-87,-16,-122v-7,-35,-16,-64,-26,-88v-10,-24,-22,-44,-37,-58v-15,-14,-31,-24,-50,-30v-19,-6,-39,-9,-62,-9v-39,0,-71,10,-97,29v-26,19,-47,47,-62,85v-15,38,-25,85,-31,142v-6,57,-9,123,-9,198v0,92,4,169,11,229v7,60,19,108,35,144v16,36,35,60,60,74v25,14,54,22,89,22v26,0,49,-4,69,-12v20,-8,37,-21,52,-38v15,-17,28,-38,38,-63v10,-25,18,-55,24,-88v6,-33,12,-71,14,-113v2,-42,3,-88,3,-139"},"1":{"d":"944,-100v0,19,-1,35,-3,48v-2,13,-5,22,-9,30v-4,8,-7,14,-12,17v-5,3,-10,5,-16,5r-714,0v-5,0,-10,-2,-15,-5v-5,-3,-9,-9,-13,-17v-4,-8,-6,-17,-8,-30v-2,-13,-3,-29,-3,-48v0,-19,1,-35,3,-48v2,-13,4,-24,8,-32v4,-8,7,-14,12,-18v5,-4,10,-5,16,-5r241,0r0,-842r-208,115v-15,7,-27,12,-37,14v-10,2,-18,0,-24,-6v-6,-6,-9,-16,-11,-30v-2,-14,-3,-34,-3,-59v0,-16,0,-29,1,-39v1,-10,2,-20,5,-27v3,-7,6,-13,11,-18v5,-5,11,-10,19,-15r278,-180v3,-3,7,-4,12,-6v5,-2,12,-3,20,-4v8,-1,19,-2,32,-2v13,0,29,-1,50,-1v25,0,46,0,62,1v16,1,27,4,35,6v8,2,13,5,16,9v3,4,4,9,4,15r0,1069r211,0v6,0,11,1,16,5v5,4,10,10,14,18v4,8,6,19,8,32v2,13,2,29,2,48"},"2":{"d":"956,-107v0,19,0,35,-2,49v-2,14,-5,25,-8,34v-3,9,-8,14,-13,18v-5,4,-11,6,-18,6r-744,0v-15,0,-27,-1,-38,-4v-11,-3,-19,-8,-26,-16v-7,-8,-12,-18,-15,-33v-3,-15,-4,-34,-4,-57v0,-22,1,-40,3,-56v2,-16,6,-30,11,-42v5,-12,12,-24,20,-36v8,-12,20,-25,33,-39r224,-240v45,-47,81,-89,108,-127v27,-38,49,-74,64,-106v15,-32,25,-60,31,-87v6,-27,9,-52,9,-76v0,-22,-4,-43,-11,-63v-7,-20,-16,-36,-30,-51v-14,-15,-31,-27,-52,-35v-21,-8,-45,-12,-73,-12v-39,0,-75,5,-105,15v-30,10,-57,21,-80,33v-23,12,-42,24,-57,34v-15,10,-27,16,-36,16v-6,0,-11,-2,-15,-6v-4,-4,-8,-11,-11,-20v-3,-9,-5,-22,-7,-38v-2,-16,-2,-34,-2,-57v0,-15,1,-29,2,-39v1,-10,2,-18,4,-26v2,-8,5,-14,8,-20v3,-6,10,-13,18,-21v8,-8,24,-19,46,-31v22,-12,49,-24,82,-36v33,-12,69,-21,108,-29v39,-8,80,-12,123,-12v67,0,127,8,177,25v50,17,92,42,125,72v33,30,59,66,75,108v16,42,24,86,24,134v0,42,-4,83,-12,124v-8,41,-25,85,-50,132v-25,47,-61,99,-107,156v-46,57,-107,123,-183,198r-151,155r510,0v7,0,13,2,19,6v6,4,10,11,14,19v4,8,7,18,9,32v2,14,3,30,3,49"},"3":{"d":"950,-379v0,65,-12,122,-37,172v-25,50,-59,92,-103,126v-44,34,-97,59,-158,77v-61,18,-128,27,-201,27v-44,0,-85,-3,-124,-9v-39,-6,-73,-15,-103,-24v-30,-9,-54,-19,-73,-29v-19,-10,-32,-18,-38,-23v-6,-5,-10,-11,-13,-18v-3,-7,-6,-15,-8,-24v-2,-9,-5,-20,-6,-34v-1,-14,-1,-30,-1,-49v0,-32,3,-55,8,-67v5,-12,13,-18,24,-18v7,0,19,5,35,14v16,9,37,18,62,28v25,10,55,21,89,30v34,9,73,13,116,13v37,0,69,-4,97,-13v28,-9,52,-20,72,-36v20,-16,34,-36,44,-58v10,-22,14,-47,14,-74v0,-30,-6,-57,-18,-81v-12,-24,-29,-44,-52,-61v-23,-17,-51,-31,-86,-40v-35,-9,-77,-14,-124,-14r-112,0v-9,0,-16,-2,-22,-4v-6,-2,-11,-7,-15,-14v-4,-7,-7,-17,-9,-30v-2,-13,-2,-30,-2,-51v0,-19,0,-35,2,-47v2,-12,4,-22,8,-29v4,-7,8,-11,14,-14v6,-3,13,-4,21,-4r113,0v39,0,73,-4,103,-13v30,-9,55,-22,75,-39v20,-17,36,-37,47,-61v11,-24,16,-49,16,-78v0,-22,-4,-42,-11,-62v-7,-20,-18,-38,-32,-52v-14,-14,-33,-26,-56,-34v-23,-8,-49,-12,-80,-12v-35,0,-67,6,-98,16v-31,10,-58,22,-82,34v-24,12,-45,23,-62,34v-17,11,-30,16,-38,16v-5,0,-10,-2,-14,-4v-4,-2,-7,-6,-10,-13v-3,-7,-5,-16,-6,-29v-1,-13,-2,-29,-2,-49v0,-17,0,-30,1,-41v1,-11,2,-21,4,-28v2,-7,4,-14,7,-19v3,-5,8,-11,15,-17v7,-6,20,-16,41,-29v21,-13,47,-25,78,-37v31,-12,67,-22,108,-30v41,-8,86,-13,134,-13v63,0,118,7,166,22v48,15,89,35,122,63v33,28,59,62,76,102v17,40,25,86,25,137v0,39,-5,76,-15,110v-10,34,-25,64,-44,91v-19,27,-43,49,-72,68v-29,19,-63,33,-101,42r0,3v45,5,86,17,122,35v36,18,66,39,91,66v25,27,45,56,58,90v13,34,20,70,20,109"},"4":{"d":"996,-372v0,34,-3,60,-10,78v-7,18,-17,26,-29,26r-115,0r0,234v0,7,-2,13,-6,18v-4,5,-11,9,-21,12v-10,3,-23,6,-39,8v-16,2,-37,2,-62,2v-24,0,-44,0,-60,-2v-16,-2,-30,-5,-40,-8v-10,-3,-16,-7,-20,-12v-4,-5,-5,-11,-5,-18r0,-234r-495,0v-9,0,-18,-2,-25,-4v-7,-2,-14,-8,-19,-16v-5,-8,-8,-20,-10,-36v-2,-16,-4,-36,-4,-62v0,-21,1,-40,2,-56v1,-16,2,-29,4,-42v2,-13,6,-25,10,-36v4,-11,10,-23,17,-36r402,-709v3,-6,9,-11,17,-15v8,-4,20,-9,34,-12v14,-3,32,-5,54,-6v22,-1,49,-2,80,-2v34,0,63,0,87,2v24,2,43,4,57,8v14,4,25,9,32,14v7,5,10,12,10,19r0,779r115,0v11,0,19,8,27,24v8,16,12,44,12,82xm589,-1073r-2,0r-341,595r343,0r0,-595"},"5":{"d":"944,-420v0,70,-12,133,-36,188v-24,55,-60,100,-104,138v-44,38,-98,67,-160,87v-62,20,-131,30,-207,30v-40,0,-78,-2,-114,-7v-36,-5,-68,-12,-97,-20v-29,-8,-52,-14,-70,-22v-18,-8,-30,-15,-36,-20v-6,-5,-10,-10,-13,-16v-3,-6,-5,-14,-7,-22v-2,-8,-2,-18,-3,-31v-1,-13,-1,-28,-1,-45v0,-19,1,-35,2,-48v1,-13,3,-23,6,-31v3,-8,7,-14,11,-17v4,-3,9,-5,14,-5v7,0,17,3,31,11v14,8,32,17,54,26v22,9,49,18,81,26v32,8,70,11,115,11v39,0,74,-4,106,-12v32,-8,58,-21,80,-39v22,-18,39,-39,51,-66v12,-27,18,-59,18,-96v0,-32,-5,-61,-15,-86v-10,-25,-26,-46,-47,-63v-21,-17,-49,-30,-83,-39v-34,-9,-75,-13,-124,-13v-39,0,-74,2,-106,6v-32,4,-61,6,-89,6v-19,0,-33,-5,-41,-15v-8,-10,-13,-27,-13,-53r0,-562v0,-27,5,-45,15,-57v10,-12,27,-18,50,-18r613,0v6,0,12,2,17,6v5,4,10,10,14,19v4,9,6,21,8,35v2,14,2,31,2,51v0,40,-3,69,-10,87v-7,18,-18,27,-31,27r-460,0r0,277v23,-3,46,-4,69,-5v23,-1,48,-1,73,-1v70,0,133,8,187,24v54,16,99,40,136,72v37,32,66,71,85,118v19,47,29,102,29,164"},"6":{"d":"976,-432v0,65,-10,126,-30,182v-20,56,-49,104,-88,144v-39,40,-86,71,-143,94v-57,23,-122,35,-196,35v-60,0,-112,-7,-157,-21v-45,-14,-83,-32,-116,-58v-33,-26,-59,-57,-80,-94v-21,-37,-38,-78,-50,-124v-12,-46,-20,-96,-25,-150v-5,-54,-7,-111,-7,-172v0,-51,3,-104,8,-159v5,-55,14,-110,28,-163v14,-53,35,-104,61,-152v26,-48,60,-92,101,-128v41,-36,90,-65,148,-86v58,-21,128,-32,208,-32v25,0,50,1,76,4v26,3,50,7,72,12v22,5,41,10,56,16v15,6,25,12,30,16v5,4,9,9,12,14v3,5,4,12,6,18v2,6,3,14,4,23v1,9,1,21,1,34v0,21,0,37,-1,51v-1,14,-3,24,-6,32v-3,8,-6,14,-11,17v-5,3,-10,5,-17,5v-8,0,-18,-2,-31,-6v-13,-4,-28,-10,-46,-15v-18,-5,-39,-10,-63,-14v-24,-4,-53,-6,-85,-6v-54,0,-100,10,-137,30v-37,20,-68,47,-91,81v-23,34,-40,75,-51,120v-11,45,-16,93,-17,144v15,-9,32,-19,51,-28v19,-9,40,-17,62,-24v22,-7,46,-12,72,-16v26,-4,54,-7,83,-7v65,0,121,9,168,27v47,18,85,44,115,77v30,33,51,74,65,121v14,47,21,100,21,158xm718,-407v0,-34,-3,-63,-9,-89v-6,-26,-16,-48,-29,-66v-13,-18,-31,-31,-53,-40v-22,-9,-49,-13,-80,-13v-19,0,-37,2,-55,5v-18,3,-36,8,-53,14v-17,6,-34,14,-50,22v-16,8,-31,17,-45,26v0,71,4,130,12,178v8,48,20,86,36,114v16,28,34,48,58,60v24,12,52,17,83,17v31,0,58,-6,81,-17v23,-11,42,-27,57,-48v15,-21,27,-44,35,-72v8,-28,12,-58,12,-91"},"7":{"d":"955,-1183v0,19,-1,37,-2,51v-1,14,-3,28,-5,40v-2,12,-6,23,-10,34v-4,11,-9,23,-14,36r-426,987v-4,9,-10,16,-16,21v-6,5,-15,9,-26,12v-11,3,-26,5,-44,6v-18,1,-39,2,-65,2v-35,0,-63,-2,-84,-4v-21,-2,-35,-5,-45,-10v-10,-5,-15,-12,-16,-20v-1,-8,2,-17,7,-28r458,-1010r-544,0v-14,0,-24,-10,-31,-28v-7,-18,-11,-47,-11,-87v0,-20,1,-37,3,-51v2,-14,4,-27,8,-36v4,-9,9,-16,14,-20v5,-4,10,-6,17,-6r769,0v12,0,22,2,30,4v8,2,14,7,19,15v5,8,9,19,11,34v2,15,3,34,3,58"},"8":{"d":"976,-347v0,59,-10,111,-30,157v-20,46,-50,84,-90,116v-40,32,-89,56,-148,72v-59,16,-126,25,-203,25v-73,0,-138,-7,-193,-22v-55,-15,-102,-37,-139,-65v-37,-28,-65,-62,-84,-104v-19,-42,-28,-90,-28,-144v0,-37,6,-72,17,-104v11,-32,26,-62,48,-90v22,-28,50,-54,82,-78v32,-24,69,-47,111,-69v-34,-19,-65,-39,-92,-61v-27,-22,-51,-44,-70,-70v-19,-26,-34,-54,-44,-85v-10,-31,-15,-64,-15,-100v0,-52,10,-99,28,-141v18,-42,46,-79,82,-110v36,-31,81,-55,136,-72v55,-17,118,-25,190,-25v71,0,133,8,184,23v51,15,92,37,125,65v33,28,57,62,73,101v16,39,23,82,23,129v0,31,-5,61,-15,91v-10,30,-25,58,-44,85v-19,27,-42,51,-69,75v-27,24,-58,46,-93,65v41,21,77,44,109,68v32,24,59,49,81,77v22,28,38,58,50,89v12,31,18,65,18,102xm686,-975v0,-23,-3,-44,-10,-63v-7,-19,-18,-35,-32,-48v-14,-13,-31,-22,-52,-29v-21,-7,-46,-10,-75,-10v-56,0,-98,13,-125,39v-27,26,-41,61,-41,106v0,21,4,41,11,59v7,18,17,35,32,51v15,16,34,32,57,47v23,15,51,32,83,49v49,-29,86,-59,112,-92v26,-33,40,-69,40,-109xm716,-329v0,-25,-4,-47,-12,-67v-8,-20,-22,-40,-40,-58v-18,-18,-39,-35,-66,-52v-27,-17,-58,-34,-93,-51v-31,17,-58,33,-81,50v-23,17,-43,35,-58,53v-15,18,-26,38,-34,58v-8,20,-12,42,-12,65v0,52,16,92,50,119v34,27,84,41,151,41v65,0,115,-14,147,-42v32,-28,48,-67,48,-116"},"9":{"d":"959,-706v0,53,-3,108,-8,164v-5,56,-16,111,-31,165v-15,54,-36,105,-62,154v-26,49,-60,91,-102,127v-42,36,-92,66,-152,87v-60,21,-130,32,-211,32v-29,0,-57,-2,-85,-6v-28,-4,-55,-9,-78,-15v-23,-6,-44,-12,-60,-19v-16,-7,-28,-14,-35,-21v-7,-7,-13,-17,-16,-30v-3,-13,-5,-32,-5,-56v0,-22,1,-40,2,-53v1,-13,3,-24,6,-31v3,-7,6,-12,10,-14v4,-2,10,-4,16,-4v8,0,19,2,34,7v15,5,33,10,54,16v21,6,44,11,71,16v27,5,56,7,89,7v56,0,103,-10,142,-30v39,-20,70,-47,94,-81v24,-34,42,-73,53,-118v11,-45,18,-92,19,-141v-31,19,-68,36,-111,50v-43,14,-93,22,-149,22v-69,0,-127,-9,-175,-27v-48,-18,-87,-44,-117,-78v-30,-34,-52,-75,-66,-124v-14,-49,-20,-104,-20,-165v0,-65,10,-124,29,-178v19,-54,48,-102,86,-142v38,-40,85,-70,142,-92v57,-22,122,-33,197,-33v60,0,113,7,158,21v45,14,84,34,116,60v32,26,58,57,80,94v22,37,40,79,52,124v12,45,21,94,26,147v5,53,7,108,7,165xm698,-742v0,-71,-4,-131,-12,-179v-8,-48,-20,-86,-36,-115v-16,-29,-36,-49,-60,-61v-24,-12,-52,-18,-84,-18v-31,0,-58,6,-81,17v-23,11,-42,26,-57,46v-15,20,-26,44,-33,71v-7,27,-11,57,-11,90v0,35,4,66,10,93v6,27,16,50,30,68v14,18,31,30,53,39v22,9,49,13,80,13v39,0,75,-6,109,-18v34,-12,65,-27,92,-46"},"%":{"d":"1436,-329v0,53,-6,101,-18,143v-12,42,-29,78,-54,108v-25,30,-56,53,-94,70v-38,17,-85,25,-138,25v-57,0,-104,-8,-142,-25v-38,-17,-68,-40,-91,-70v-23,-30,-39,-65,-48,-106v-9,-41,-14,-87,-14,-137v0,-50,6,-95,17,-137v11,-42,30,-78,54,-109v24,-31,56,-54,94,-71v38,-17,84,-26,138,-26v59,0,108,9,146,27v38,18,69,42,91,73v22,31,37,66,46,107v9,41,13,83,13,128xm1238,-322v0,-37,-2,-68,-6,-94v-4,-26,-10,-46,-18,-62v-8,-16,-19,-28,-32,-35v-13,-7,-29,-11,-47,-11v-17,0,-31,3,-44,10v-13,7,-23,18,-31,34v-8,16,-15,37,-19,62v-4,25,-6,55,-6,91v0,41,2,75,7,101v5,26,11,47,20,62v9,15,19,26,32,32v13,6,27,8,44,8v19,0,35,-4,48,-12v13,-8,22,-19,30,-35v8,-16,14,-36,17,-61v3,-25,5,-55,5,-90xm656,-976v0,53,-6,100,-18,142v-12,42,-29,79,-54,109v-25,30,-56,53,-94,70v-38,17,-85,25,-138,25v-57,0,-104,-8,-142,-25v-38,-17,-68,-39,-91,-69v-23,-30,-39,-66,-48,-107v-9,-41,-14,-87,-14,-137v0,-50,6,-96,17,-138v11,-42,30,-77,54,-108v24,-31,56,-55,94,-72v38,-17,84,-25,138,-25v59,0,108,9,146,27v38,18,69,42,91,73v22,31,37,66,46,107v9,41,13,83,13,128xm458,-969v0,-37,-2,-67,-6,-93v-4,-26,-10,-47,-18,-63v-8,-16,-19,-28,-32,-35v-13,-7,-29,-11,-47,-11v-17,0,-31,4,-44,11v-13,7,-23,18,-31,34v-8,16,-15,35,-19,60v-4,25,-6,56,-6,92v0,41,2,76,7,102v5,26,11,47,20,62v9,15,19,24,32,30v13,6,27,9,44,9v19,0,35,-3,48,-11v13,-8,22,-20,30,-36v8,-16,14,-37,17,-62v3,-25,5,-54,5,-89xm383,-7v-6,8,-13,14,-19,19v-6,5,-14,10,-23,13v-9,3,-21,6,-34,7v-13,1,-30,2,-49,2v-22,0,-39,-1,-52,-4v-13,-3,-22,-7,-28,-12v-6,-5,-9,-11,-8,-18v1,-7,6,-16,13,-26r922,-1263v6,-7,12,-14,18,-19v6,-5,13,-10,23,-13v10,-3,22,-6,35,-7v13,-1,30,-2,49,-2v22,0,39,1,52,4v13,3,22,7,28,12v6,5,8,12,7,19v-1,7,-5,16,-12,25","w":1493},"+":{"d":"968,-575v0,19,-1,34,-3,47v-2,13,-5,22,-9,30v-4,8,-9,14,-14,17v-5,3,-11,5,-17,5r-311,0r0,339v0,7,-2,12,-5,17v-3,5,-9,10,-17,14v-8,4,-19,6,-32,8v-13,2,-30,3,-50,3v-20,0,-37,-1,-50,-3v-13,-2,-24,-4,-32,-8v-8,-4,-14,-9,-18,-14v-4,-5,-5,-10,-5,-17r0,-339r-310,0v-6,0,-12,-2,-17,-5v-5,-3,-9,-9,-13,-17v-4,-8,-7,-17,-9,-30v-2,-13,-4,-28,-4,-47v0,-18,1,-34,3,-47v2,-13,5,-22,9,-30v4,-8,7,-14,12,-17v5,-3,10,-5,16,-5r313,0r0,-338v0,-7,1,-12,5,-18v4,-6,10,-10,18,-14v8,-4,19,-7,32,-9v13,-2,30,-3,50,-3v20,0,37,1,50,3v13,2,24,5,32,9v8,4,14,8,17,14v3,6,5,11,5,18r0,338r314,0v5,0,11,2,16,5v5,3,8,9,12,17v4,8,7,17,9,30v2,13,3,29,3,47","w":1020,"k":{"+":-25}},"\u00d7":{"d":"643,-577r277,276v5,5,8,10,10,15v2,5,3,11,3,16v0,12,-4,25,-13,39v-9,14,-20,27,-32,39v-12,12,-26,21,-39,29v-13,8,-24,12,-33,12v-5,0,-10,-1,-14,-3v-4,-2,-9,-6,-13,-9r-279,-280r-278,276v-4,4,-9,7,-14,9v-5,2,-11,4,-17,4v-12,0,-25,-5,-39,-14v-14,-9,-26,-20,-38,-32v-12,-12,-20,-25,-28,-38v-8,-13,-12,-24,-12,-33v0,-10,4,-19,12,-27r280,-279r-277,-278v-3,-4,-6,-9,-9,-14v-3,-5,-4,-11,-4,-16v0,-13,5,-25,14,-39v9,-14,20,-26,32,-38v12,-12,25,-22,38,-30v13,-8,25,-12,34,-12v10,0,19,4,27,13r279,280r277,-277v4,-4,8,-8,13,-10v5,-2,11,-3,18,-3v12,0,25,5,39,14v14,9,27,21,39,33v12,12,20,25,28,38v8,13,12,23,12,32v0,4,0,9,-2,14v-2,5,-5,9,-10,13","w":1020},"=":{"d":"934,-779v0,35,-4,60,-12,75v-8,15,-18,22,-32,22r-763,0v-14,0,-25,-7,-33,-22v-8,-15,-11,-40,-11,-75v0,-34,4,-58,11,-73v7,-15,18,-22,33,-22r763,0v15,0,27,7,34,22v7,15,10,39,10,73xm934,-375v0,36,-4,61,-12,75v-8,14,-18,21,-32,21r-763,0v-14,0,-25,-7,-33,-21v-8,-14,-11,-39,-11,-75v0,-34,4,-58,11,-73v7,-15,18,-23,33,-23r763,0v15,0,27,8,34,23v7,15,10,39,10,73","w":1020},"<":{"d":"915,-174v0,25,-1,44,-3,58v-2,14,-6,24,-10,30v-4,6,-10,9,-16,8v-6,-1,-14,-3,-24,-8r-767,-382v-9,-5,-17,-17,-21,-34v-4,-17,-6,-42,-6,-76v0,-17,1,-33,2,-46v1,-13,3,-24,5,-32v2,-8,5,-15,9,-20v4,-5,7,-8,12,-11r766,-380v19,-9,33,-8,41,5v8,13,12,40,12,80v0,27,0,49,-1,65v-1,16,-3,29,-6,38v-3,9,-6,16,-11,20v-5,4,-11,8,-19,12r-576,270r565,262v10,5,19,9,25,14v6,5,11,11,14,21v3,10,6,24,7,40v1,16,2,38,2,66","w":1020},">":{"d":"950,-575v0,17,-1,32,-2,45v-1,13,-4,23,-6,32v-2,9,-4,15,-8,20v-4,5,-8,9,-13,11r-767,380v-9,5,-17,7,-24,6v-7,-1,-12,-4,-16,-11v-4,-7,-8,-17,-10,-30v-2,-13,-2,-29,-2,-49v0,-27,1,-49,2,-65v1,-16,2,-29,5,-38v3,-9,6,-16,11,-20v5,-4,11,-9,19,-12r576,-270r-565,-262v-11,-5,-20,-9,-26,-14v-6,-5,-11,-12,-14,-22v-3,-10,-5,-22,-6,-38v-1,-16,-2,-39,-2,-67v0,-25,0,-44,2,-58v2,-14,6,-24,10,-30v4,-6,9,-9,16,-8v7,1,15,3,24,8r768,383v9,4,15,15,20,32v5,17,8,43,8,77","w":1020}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Calibri is either a registered trademark or a trademark of Microsoft
 * Corporation in the United States and/or other countries.
 * 
 * Description:
 * Calibri is a modern sans serif family with subtle roundings on stems and
 * corners. It features real italics, small caps, and multiple numeral sets. Its
 * proportions allow high impact in tightly set lines of big and small text alike.
 * Calibri's many curves and the new rasteriser team up in bigger sizes to reveal a
 * warm and soft character.
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Designer:
 * Luc(as) de Groot
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography/ctfonts
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/default.aspx
 */
Cufon.registerFont({"w":1053,"face":{"font-family":"calibri","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"2048","panose-1":"2 15 5 2 2 2 4 10 2 4","ascent":"1536","descent":"-512","x-height":"19","cap-height":"6","bbox":"-197 -1689 1919.97 365","underline-thickness":"134","underline-position":"-165","slope":"-11","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":463},"\u00a0":{"w":463},"A":{"d":"1060,-61v2,15,3,26,2,35v-1,9,-6,16,-12,21v-6,5,-16,8,-29,9v-13,1,-31,2,-54,2v-15,0,-27,-1,-38,-2v-11,-1,-19,-2,-25,-4v-6,-2,-9,-6,-12,-10v-3,-4,-4,-9,-5,-15r-48,-315r-539,0r-169,312v-3,7,-7,12,-11,16v-4,4,-10,8,-18,11v-8,3,-18,4,-30,5v-12,1,-28,2,-46,2v-20,0,-36,0,-48,-2v-12,-2,-20,-5,-25,-10v-5,-5,-6,-11,-4,-20v2,-9,7,-21,14,-36r674,-1202v5,-7,10,-13,15,-18v5,-5,12,-8,21,-11v9,-3,20,-4,33,-5v13,-1,30,-2,49,-2v22,0,39,1,53,2v14,1,26,2,34,5v8,3,14,6,17,11v3,5,6,12,7,19xm723,-1122r-1,0r-350,645r448,0","w":1185,"k":{"-":57,"\u201d":113,"\u201c":189,"\u2019":113,"\u2018":189,".":-12,",":-15,"?":117,"y":75,"v":71,"t":57,"Y":176,"W":121,"V":146,"\u00dc":59,"\u00da":59,"\u00d9":59,"U":59,"T":168,"Q":58,"\u00d6":58,"\u00d3":58,"\u00d2":58,"O":58,"J":-23,"G":48,"C":48}},"\u00c0":{"d":"839,-1438v6,7,9,14,11,19v2,5,1,9,-3,13v-4,4,-10,6,-19,8v-9,2,-21,3,-36,3v-14,0,-26,0,-35,-1v-9,-1,-18,-4,-25,-6v-7,-2,-13,-4,-19,-8v-6,-4,-12,-9,-19,-16r-217,-212v-7,-7,-11,-13,-12,-19v-1,-6,0,-11,5,-16v5,-5,13,-8,25,-11v12,-3,28,-5,48,-5v17,0,31,0,42,1v11,1,22,2,31,5v9,3,17,6,24,11v7,5,13,12,20,21xm1060,-61v2,15,3,26,2,35v-1,9,-6,16,-12,21v-6,5,-16,8,-29,9v-13,1,-31,2,-54,2v-15,0,-27,-1,-38,-2v-11,-1,-19,-2,-25,-4v-6,-2,-9,-6,-12,-10v-3,-4,-4,-9,-5,-15r-48,-315r-539,0r-169,312v-3,7,-7,12,-11,16v-4,4,-10,8,-18,11v-8,3,-18,4,-30,5v-12,1,-28,2,-46,2v-20,0,-36,0,-48,-2v-12,-2,-20,-5,-25,-10v-5,-5,-6,-11,-4,-20v2,-9,7,-21,14,-36r674,-1202v5,-7,10,-13,15,-18v5,-5,12,-8,21,-11v9,-3,20,-4,33,-5v13,-1,30,-2,49,-2v22,0,39,1,53,2v14,1,26,2,34,5v8,3,14,6,17,11v3,5,6,12,7,19xm723,-1122r-1,0r-350,645r448,0","w":1185,"k":{"-":57,"\u201d":113,"\u201c":189,"\u2019":113,"\u2018":189,".":-12,",":-15,"?":117,"y":75,"v":71,"t":57,"Y":176,"W":121,"V":146,"\u00dc":59,"\u00da":59,"\u00d9":59,"U":59,"T":168,"Q":58,"\u00d6":58,"\u00d3":58,"\u00d2":58,"O":58,"J":-23,"G":48,"C":48}},"\u00c1":{"d":"864,-1426v-7,6,-14,11,-20,15v-6,4,-13,7,-20,9v-7,2,-16,5,-26,6v-10,1,-21,1,-34,1v-31,0,-49,-4,-55,-11v-6,-7,-2,-17,11,-32r197,-213v7,-8,15,-14,23,-19v8,-5,15,-9,24,-12v9,-3,20,-5,32,-6v12,-1,25,-1,42,-1v20,0,36,2,47,5v11,3,19,6,24,11v5,5,5,10,3,16v-2,6,-6,12,-13,19xm1060,-61v2,15,3,26,2,35v-1,9,-6,16,-12,21v-6,5,-16,8,-29,9v-13,1,-31,2,-54,2v-15,0,-27,-1,-38,-2v-11,-1,-19,-2,-25,-4v-6,-2,-9,-6,-12,-10v-3,-4,-4,-9,-5,-15r-48,-315r-539,0r-169,312v-3,7,-7,12,-11,16v-4,4,-10,8,-18,11v-8,3,-18,4,-30,5v-12,1,-28,2,-46,2v-20,0,-36,0,-48,-2v-12,-2,-20,-5,-25,-10v-5,-5,-6,-11,-4,-20v2,-9,7,-21,14,-36r674,-1202v5,-7,10,-13,15,-18v5,-5,12,-8,21,-11v9,-3,20,-4,33,-5v13,-1,30,-2,49,-2v22,0,39,1,53,2v14,1,26,2,34,5v8,3,14,6,17,11v3,5,6,12,7,19xm723,-1122r-1,0r-350,645r448,0","w":1185,"k":{"-":57,"\u201d":113,"\u201c":189,"\u2019":113,"\u2018":189,".":-12,",":-15,"?":117,"y":75,"v":71,"t":57,"Y":176,"W":121,"V":146,"\u00dc":59,"\u00da":59,"\u00d9":59,"U":59,"T":168,"Q":58,"\u00d6":58,"\u00d3":58,"\u00d2":58,"O":58,"J":-23,"G":48,"C":48}},"\u00c4":{"d":"1122,-1527v-3,19,-7,34,-12,46v-5,12,-13,21,-22,29v-9,8,-19,13,-32,16v-13,3,-29,5,-47,5v-19,0,-33,-2,-45,-5v-12,-3,-22,-8,-28,-16v-6,-8,-9,-17,-10,-29v-1,-12,-1,-27,2,-46v3,-19,7,-35,12,-47v5,-12,11,-22,20,-30v9,-8,20,-13,33,-16v13,-3,28,-4,47,-4v19,0,34,1,46,4v12,3,20,8,26,16v6,8,10,18,12,30v2,12,1,28,-2,47xm709,-1527v-3,19,-7,34,-12,46v-5,12,-12,21,-21,29v-9,8,-21,13,-34,16v-13,3,-28,5,-47,5v-19,0,-33,-2,-45,-5v-12,-3,-21,-8,-27,-16v-6,-8,-10,-17,-11,-29v-1,-12,1,-27,4,-46v3,-19,7,-35,12,-47v5,-12,12,-22,20,-30v8,-8,19,-13,32,-16v13,-3,29,-4,48,-4v18,0,32,1,44,4v12,3,22,8,28,16v6,8,10,18,11,30v1,12,1,28,-2,47xm1060,-61v2,15,3,26,2,35v-1,9,-6,16,-12,21v-6,5,-16,8,-29,9v-13,1,-31,2,-54,2v-15,0,-27,-1,-38,-2v-11,-1,-19,-2,-25,-4v-6,-2,-9,-6,-12,-10v-3,-4,-4,-9,-5,-15r-48,-315r-539,0r-169,312v-3,7,-7,12,-11,16v-4,4,-10,8,-18,11v-8,3,-18,4,-30,5v-12,1,-28,2,-46,2v-20,0,-36,0,-48,-2v-12,-2,-20,-5,-25,-10v-5,-5,-6,-11,-4,-20v2,-9,7,-21,14,-36r674,-1202v5,-7,10,-13,15,-18v5,-5,12,-8,21,-11v9,-3,20,-4,33,-5v13,-1,30,-2,49,-2v22,0,39,1,53,2v14,1,26,2,34,5v8,3,14,6,17,11v3,5,6,12,7,19xm723,-1122r-1,0r-350,645r448,0","w":1185,"k":{"-":57,"\u201d":113,"\u201c":189,"\u2019":113,"\u2018":189,".":-12,",":-15,"?":117,"y":75,"v":71,"t":57,"Y":176,"W":121,"V":146,"\u00dc":59,"\u00da":59,"\u00d9":59,"U":59,"T":168,"Q":58,"\u00d6":58,"\u00d3":58,"\u00d2":58,"O":58,"J":-23,"G":48,"C":48}},"B":{"d":"1051,-1042v0,41,-6,80,-17,116v-11,36,-26,69,-46,100v-20,31,-45,58,-74,81v-29,23,-62,43,-99,58v28,5,55,15,79,29v24,14,45,31,62,52v17,21,30,46,40,75v10,29,15,60,15,95v0,35,-5,70,-14,106v-9,36,-24,70,-43,102v-19,32,-42,62,-70,90v-28,28,-62,52,-100,73v-38,21,-81,37,-128,48v-47,11,-101,17,-163,17r-343,0v-22,0,-39,-5,-50,-16v-11,-11,-13,-29,-7,-54r230,-1154v5,-26,15,-44,32,-54v17,-10,34,-16,52,-16r278,0v66,0,121,5,166,16v45,11,81,28,111,49v30,21,52,48,67,79v15,31,22,67,22,108xm868,-1011v0,-22,-4,-42,-11,-59v-7,-17,-19,-32,-35,-44v-16,-12,-37,-23,-62,-30v-25,-7,-58,-10,-99,-10r-182,0r-83,419r195,0v53,0,96,-9,130,-26v34,-17,61,-40,83,-67v22,-27,38,-56,48,-89v10,-33,16,-64,16,-94xm829,-424v0,-55,-20,-98,-59,-128v-39,-30,-100,-46,-182,-46r-221,0r-90,456r241,0v55,0,100,-8,138,-24v38,-16,70,-36,95,-62v25,-26,45,-55,58,-89v13,-34,20,-70,20,-107","w":1114,"k":{"\u201c":37,"\u2018":37,",":29,"y":28,"x":27,"v":22,"t":28,"f":28,"Z":22,"Y":60,"X":49,"W":32,"V":40,"T":51,"\u00c4":22,"\u00c1":22,"\u00c0":22,"A":22}},"C":{"d":"1145,-1162v0,14,-2,31,-7,52v-5,21,-10,37,-18,49v-8,12,-16,18,-25,18v-9,0,-20,-7,-33,-19v-13,-12,-30,-26,-51,-40v-21,-14,-49,-28,-83,-40v-34,-12,-75,-18,-126,-18v-56,0,-107,11,-153,32v-46,21,-88,48,-125,84v-37,36,-69,77,-97,124v-28,47,-51,95,-69,146v-18,51,-33,103,-42,155v-9,52,-14,101,-14,148v0,53,7,101,20,143v13,42,33,76,58,105v25,29,56,50,93,65v37,15,78,22,125,22v52,0,96,-6,134,-18v38,-12,71,-24,98,-38v27,-14,49,-28,67,-40v18,-12,33,-17,44,-17v7,0,13,3,16,8v3,5,5,13,5,24v0,3,-1,9,-2,15v-1,6,-2,13,-3,20v-2,11,-3,11,-5,24v-2,9,-3,16,-6,24v-3,8,-5,16,-8,22v-3,6,-9,12,-16,19v-7,7,-22,16,-44,29v-22,13,-50,26,-82,38v-32,12,-68,22,-108,30v-40,8,-84,12,-129,12v-68,0,-129,-10,-184,-30v-55,-20,-101,-50,-139,-90v-38,-40,-69,-89,-90,-148v-21,-59,-31,-127,-31,-204v0,-63,7,-129,20,-196v13,-67,33,-132,59,-195v26,-63,59,-123,98,-179v39,-56,84,-106,136,-148v52,-42,109,-76,174,-100v65,-24,136,-36,213,-36v49,0,95,5,137,16v42,11,78,25,108,42v30,17,52,31,65,44v13,13,20,29,20,46","w":1070,"k":{"\u201d":-89,"\u201c":-12,"\u2019":-89,"\u2018":-12,",":9,"T":-10,"Q":20,"\u00d6":20,"\u00d3":20,"\u00d2":20,"O":20,"J":-13,"G":18}},"D":{"d":"1221,-828v0,43,-3,89,-9,136v-6,47,-15,93,-28,140v-13,47,-30,94,-51,139v-21,45,-45,88,-75,129v-30,41,-65,79,-104,114v-39,35,-83,65,-133,90v-50,25,-106,45,-167,59v-61,14,-135,21,-221,21r-287,0v-9,0,-16,-2,-24,-4v-8,-2,-15,-6,-20,-11v-5,-5,-9,-12,-11,-21v-2,-9,-1,-21,2,-34r230,-1154v5,-26,15,-44,31,-54v16,-10,33,-16,53,-16r273,0v99,0,182,11,247,32v65,21,119,51,163,91v44,40,76,89,98,147v22,58,33,123,33,196xm1039,-813v0,-49,-7,-95,-21,-136v-14,-41,-35,-77,-64,-107v-29,-30,-66,-53,-112,-70v-46,-17,-107,-25,-182,-25r-180,0r-201,1007r178,0v81,0,149,-10,204,-30v55,-20,103,-46,145,-80v42,-34,78,-72,107,-117v29,-45,53,-92,72,-141v19,-49,32,-100,41,-152v9,-52,13,-101,13,-149","w":1260,"k":{"\u201c":17,"\u2018":17,".":56,",":63,"Z":17,"Y":40,"X":45,"W":18,"V":26,"T":40,"J":26,"\u00c4":32,"\u00c1":32,"\u00c0":32,"A":32}},"E":{"d":"1038,-1261r0,15v0,0,-2,15,-4,23v-2,8,-4,16,-6,25v-2,9,-5,17,-9,24v-4,7,-9,12,-15,16v-6,4,-11,7,-18,7r-505,0r-82,406r435,0v8,0,14,3,18,8v4,5,6,13,6,24v0,3,-1,8,-2,15v-1,7,-2,16,-3,24v-1,8,-3,16,-6,24v-3,8,-5,16,-9,22v-4,6,-9,12,-14,16v-5,4,-11,6,-18,6r-434,0r-94,463r515,0v7,0,13,3,17,8v4,5,6,14,6,25v0,4,0,10,-1,17v-1,7,-1,15,-3,23r-6,24v0,0,-6,17,-10,24v-4,7,-8,12,-14,16v-6,4,-12,6,-19,6r-622,0v-7,0,-14,-2,-21,-4v-7,-2,-13,-6,-18,-12v-5,-6,-9,-13,-11,-22v-2,-9,-1,-19,2,-32r231,-1154v5,-26,15,-44,31,-54v16,-10,32,-16,47,-16r613,0v15,0,23,11,23,33","w":1000,"k":{"-":23,"y":47,"w":45,"v":47,"\u00fc":17,"\u00fa":17,"\u00f9":17,"u":17,"t":27,"r":17,"q":37,"p":17,"\u00f6":38,"\u00f3":38,"\u00f2":38,"o":38,"\u00f1":17,"n":17,"m":17,"g":37,"f":61,"\u00e9":38,"\u00e8":38,"e":38,"d":37,"\u00e7":31,"c":31,"\u00e4":37,"\u00e1":37,"\u00e0":37,"a":37,"Z":10,"S":20,"Q":33,"\u00d6":33,"\u00d3":33,"\u00d2":33,"O":33,"G":26,"C":32,"\u00c4":22,"\u00c1":22,"\u00c0":22,"A":22}},"\u00c8":{"d":"778,-1438v6,7,10,14,12,19v2,5,0,9,-4,13v-4,4,-11,6,-20,8v-9,2,-20,3,-35,3v-14,0,-26,0,-35,-1v-9,-1,-17,-4,-24,-6v-7,-2,-14,-4,-20,-8v-6,-4,-12,-9,-19,-16r-217,-212v-7,-7,-11,-13,-12,-19v-1,-6,0,-11,5,-16v5,-5,13,-8,25,-11v12,-3,28,-5,48,-5v17,0,31,0,42,1v11,1,22,2,31,5v9,3,17,6,24,11v7,5,13,12,20,21xm1038,-1261r0,15v0,0,-2,15,-4,23v-2,8,-4,16,-6,25v-2,9,-5,17,-9,24v-4,7,-9,12,-15,16v-6,4,-11,7,-18,7r-505,0r-82,406r435,0v8,0,14,3,18,8v4,5,6,13,6,24v0,3,-1,8,-2,15v-1,7,-2,16,-3,24v-1,8,-3,16,-6,24v-3,8,-5,16,-9,22v-4,6,-9,12,-14,16v-5,4,-11,6,-18,6r-434,0r-94,463r515,0v7,0,13,3,17,8v4,5,6,14,6,25v0,4,0,10,-1,17v-1,7,-1,15,-3,23r-6,24v0,0,-6,17,-10,24v-4,7,-8,12,-14,16v-6,4,-12,6,-19,6r-622,0v-7,0,-14,-2,-21,-4v-7,-2,-13,-6,-18,-12v-5,-6,-9,-13,-11,-22v-2,-9,-1,-19,2,-32r231,-1154v5,-26,15,-44,31,-54v16,-10,32,-16,47,-16r613,0v15,0,23,11,23,33","w":1000,"k":{"-":23,"y":47,"w":45,"v":47,"\u00fc":17,"\u00fa":17,"\u00f9":17,"u":17,"t":27,"r":17,"q":37,"p":17,"\u00f6":38,"\u00f3":38,"\u00f2":38,"o":38,"\u00f1":17,"n":17,"m":17,"g":37,"f":61,"\u00e9":38,"\u00e8":38,"e":38,"d":37,"\u00e7":31,"c":31,"\u00e4":37,"\u00e1":37,"\u00e0":37,"a":37,"Z":10,"S":20,"Q":33,"\u00d6":33,"\u00d3":33,"\u00d2":33,"O":33,"G":26,"C":32,"\u00c4":22,"\u00c1":22,"\u00c0":22,"A":22}},"\u00c9":{"d":"799,-1426v-7,6,-14,11,-20,15v-6,4,-13,7,-20,9v-7,2,-15,5,-25,6v-10,1,-22,1,-35,1v-31,0,-49,-4,-55,-11v-6,-7,-2,-17,11,-32r197,-213v7,-8,14,-14,22,-19v8,-5,17,-9,26,-12v9,-3,18,-5,30,-6v12,-1,26,-1,43,-1v20,0,36,2,47,5v11,3,19,6,24,11v5,5,6,10,4,16v-2,6,-7,12,-14,19xm1038,-1261r0,15v0,0,-2,15,-4,23v-2,8,-4,16,-6,25v-2,9,-5,17,-9,24v-4,7,-9,12,-15,16v-6,4,-11,7,-18,7r-505,0r-82,406r435,0v8,0,14,3,18,8v4,5,6,13,6,24v0,3,-1,8,-2,15v-1,7,-2,16,-3,24v-1,8,-3,16,-6,24v-3,8,-5,16,-9,22v-4,6,-9,12,-14,16v-5,4,-11,6,-18,6r-434,0r-94,463r515,0v7,0,13,3,17,8v4,5,6,14,6,25v0,4,0,10,-1,17v-1,7,-1,15,-3,23r-6,24v0,0,-6,17,-10,24v-4,7,-8,12,-14,16v-6,4,-12,6,-19,6r-622,0v-7,0,-14,-2,-21,-4v-7,-2,-13,-6,-18,-12v-5,-6,-9,-13,-11,-22v-2,-9,-1,-19,2,-32r231,-1154v5,-26,15,-44,31,-54v16,-10,32,-16,47,-16r613,0v15,0,23,11,23,33","w":1000,"k":{"-":23,"y":47,"w":45,"v":47,"\u00fc":17,"\u00fa":17,"\u00f9":17,"u":17,"t":27,"r":17,"q":37,"p":17,"\u00f6":38,"\u00f3":38,"\u00f2":38,"o":38,"\u00f1":17,"n":17,"m":17,"g":37,"f":61,"\u00e9":38,"\u00e8":38,"e":38,"d":37,"\u00e7":31,"c":31,"\u00e4":37,"\u00e1":37,"\u00e0":37,"a":37,"Z":10,"S":20,"Q":33,"\u00d6":33,"\u00d3":33,"\u00d2":33,"O":33,"G":26,"C":32,"\u00c4":22,"\u00c1":22,"\u00c0":22,"A":22}},"\u00cb":{"d":"1036,-1527v-3,19,-7,34,-12,46v-5,12,-13,21,-22,29v-9,8,-19,13,-32,16v-13,3,-29,5,-47,5v-19,0,-33,-2,-45,-5v-12,-3,-22,-8,-28,-16v-6,-8,-9,-17,-10,-29v-1,-12,-1,-27,2,-46v3,-19,7,-35,12,-47v5,-12,11,-22,20,-30v9,-8,20,-13,33,-16v13,-3,28,-4,47,-4v19,0,34,1,46,4v12,3,20,8,26,16v6,8,10,18,12,30v2,12,1,28,-2,47xm623,-1527v-3,19,-7,34,-12,46v-5,12,-12,21,-21,29v-9,8,-21,13,-34,16v-13,3,-28,5,-47,5v-19,0,-33,-2,-45,-5v-12,-3,-21,-8,-27,-16v-6,-8,-10,-17,-11,-29v-1,-12,1,-27,4,-46v3,-19,7,-35,12,-47v5,-12,12,-22,20,-30v8,-8,19,-13,32,-16v13,-3,29,-4,48,-4v18,0,32,1,44,4v12,3,22,8,28,16v6,8,10,18,11,30v1,12,1,28,-2,47xm1038,-1261r0,15v0,0,-2,15,-4,23v-2,8,-4,16,-6,25v-2,9,-5,17,-9,24v-4,7,-9,12,-15,16v-6,4,-11,7,-18,7r-505,0r-82,406r435,0v8,0,14,3,18,8v4,5,6,13,6,24v0,3,-1,8,-2,15v-1,7,-2,16,-3,24v-1,8,-3,16,-6,24v-3,8,-5,16,-9,22v-4,6,-9,12,-14,16v-5,4,-11,6,-18,6r-434,0r-94,463r515,0v7,0,13,3,17,8v4,5,6,14,6,25v0,4,0,10,-1,17v-1,7,-1,15,-3,23r-6,24v0,0,-6,17,-10,24v-4,7,-8,12,-14,16v-6,4,-12,6,-19,6r-622,0v-7,0,-14,-2,-21,-4v-7,-2,-13,-6,-18,-12v-5,-6,-9,-13,-11,-22v-2,-9,-1,-19,2,-32r231,-1154v5,-26,15,-44,31,-54v16,-10,32,-16,47,-16r613,0v15,0,23,11,23,33","w":1000,"k":{"-":23,"y":47,"w":45,"v":47,"\u00fc":17,"\u00fa":17,"\u00f9":17,"u":17,"t":27,"r":17,"q":37,"p":17,"\u00f6":38,"\u00f3":38,"\u00f2":38,"o":38,"\u00f1":17,"n":17,"m":17,"g":37,"f":61,"\u00e9":38,"\u00e8":38,"e":38,"d":37,"\u00e7":31,"c":31,"\u00e4":37,"\u00e1":37,"\u00e0":37,"a":37,"Z":10,"S":20,"Q":33,"\u00d6":33,"\u00d3":33,"\u00d2":33,"O":33,"G":26,"C":32,"\u00c4":22,"\u00c1":22,"\u00c0":22,"A":22}},"F":{"d":"1006,-1260r0,16v0,0,-2,14,-4,22v-2,8,-3,17,-6,26v-3,9,-6,17,-10,24v-4,7,-9,14,-14,18v-5,4,-11,6,-18,6r-473,0r-88,440r448,0v8,0,13,2,17,8v4,6,6,14,6,24v0,5,0,11,-1,18v-1,7,-1,14,-3,22v-2,8,-4,16,-7,25v-3,9,-6,16,-10,23v-4,7,-9,12,-14,16v-5,4,-11,7,-18,7r-447,0r-108,539v-1,5,-2,10,-6,14v-4,4,-9,8,-16,10v-7,2,-17,4,-28,6v-11,2,-25,2,-42,2v-17,0,-31,0,-42,-2v-11,-2,-19,-4,-25,-6v-6,-2,-10,-6,-12,-10v-2,-4,-2,-9,-1,-14r240,-1198v5,-26,15,-44,31,-54v16,-10,32,-16,47,-16r581,0v9,0,16,4,19,10v3,6,4,14,4,24","w":941,"k":{"\/":74,".":188,",":198,"\u00fc":27,"\u00fa":27,"\u00f9":27,"u":27,"s":36,"r":27,"q":28,"p":27,"\u00f6":31,"\u00f3":31,"\u00f2":31,"o":31,"\u00f1":27,"n":27,"m":27,"\u00ef":-29,"g":28,"\u00e9":31,"\u00e8":31,"e":31,"d":28,"\u00e7":29,"c":29,"\u00e4":28,"\u00e1":28,"\u00e0":28,"a":28,"Z":11,"X":22,"S":28,"Q":18,"\u00d6":18,"\u00d3":18,"\u00d2":18,"O":18,"J":105,"G":18,"C":18,"\u00c4":108,"\u00c1":108,"\u00c0":108,"A":108}},"G":{"d":"1279,-1153v0,5,0,10,-1,17v-1,7,-2,14,-4,22v-2,8,-4,16,-7,24v-3,8,-6,16,-9,22v-3,6,-7,12,-11,16v-4,4,-8,5,-13,5v-10,0,-23,-6,-40,-18v-17,-12,-40,-26,-68,-41v-28,-15,-63,-28,-104,-40v-41,-12,-89,-19,-146,-19v-59,0,-114,9,-166,27v-52,18,-100,41,-143,72v-43,31,-82,68,-116,110v-34,42,-63,88,-87,138v-24,50,-42,102,-54,157v-12,55,-18,110,-18,166v0,59,9,110,26,155v17,45,41,83,73,114v32,31,71,54,116,70v45,16,96,23,152,23v41,0,84,-5,129,-15v45,-10,87,-24,126,-44r75,-375r-299,0v-8,0,-14,-3,-18,-9v-4,-6,-7,-13,-7,-24v0,-5,0,-10,1,-18v1,-8,2,-16,4,-24v2,-8,5,-16,8,-24v3,-8,6,-16,10,-22v4,-6,9,-10,14,-14v5,-4,10,-6,16,-6r411,0v19,0,33,6,41,19v8,13,10,30,5,51r-100,498v-3,13,-7,22,-11,30v-4,8,-9,15,-14,21v-6,6,-22,15,-46,27v-24,12,-55,23,-92,35v-37,12,-78,22,-124,31v-46,9,-95,14,-146,14v-87,0,-163,-12,-229,-34v-66,-22,-121,-54,-166,-97v-45,-43,-79,-94,-102,-155v-23,-61,-35,-129,-35,-206v0,-71,8,-141,24,-210v16,-69,40,-135,71,-197v31,-62,68,-119,113,-172v45,-53,98,-98,156,-136v58,-38,122,-68,192,-90v70,-22,146,-33,227,-33v47,0,90,4,131,12v41,8,77,18,109,30v32,12,59,25,81,39v22,14,37,25,45,32v8,7,13,14,16,21v3,7,4,15,4,25","w":1292,"k":{"y":28,"x":12,"w":21,"v":27,"Y":31,"W":9,"V":11,"T":10}},"H":{"d":"1016,-25v-1,5,-4,9,-8,13v-4,4,-9,8,-16,10v-7,2,-15,4,-26,6v-11,2,-26,2,-43,2v-16,0,-29,0,-40,-2v-11,-2,-19,-4,-25,-6v-6,-2,-11,-6,-13,-10v-2,-4,-2,-8,0,-13r114,-575r-589,0r-114,575v-1,5,-4,9,-7,13v-3,4,-9,8,-16,10v-7,2,-17,4,-28,6v-11,2,-25,2,-41,2v-17,0,-31,0,-42,-2v-11,-2,-19,-4,-25,-6v-6,-2,-10,-6,-12,-10v-2,-4,-2,-8,-1,-13r248,-1244v1,-5,3,-9,7,-13v4,-4,10,-8,17,-10v7,-2,17,-4,28,-6v11,-2,24,-2,41,-2v16,0,30,0,41,2v11,2,19,4,25,6v6,2,9,6,11,10v2,4,3,8,2,13r-103,519r588,0r104,-519v1,-5,3,-9,7,-13v4,-4,9,-8,16,-10v7,-2,17,-4,28,-6v11,-2,25,-2,42,-2v16,0,29,0,40,2v11,2,20,4,26,6v6,2,10,6,12,10v2,4,1,8,0,13","w":1276,"k":{"\u201c":17,"\u2018":17,"\u00ef":-12}},"I":{"d":"256,-25v-1,5,-2,9,-6,13v-4,4,-10,8,-17,10v-7,2,-17,4,-28,6v-11,2,-25,2,-41,2v-17,0,-31,0,-42,-2v-11,-2,-19,-4,-25,-6v-6,-2,-10,-6,-12,-10v-2,-4,-2,-8,-1,-13r248,-1244v1,-5,4,-9,8,-13v4,-4,10,-8,17,-10v7,-2,16,-4,27,-6v11,-2,25,-2,41,-2v16,0,29,0,40,2v11,2,19,4,25,6v6,2,11,6,13,10v2,4,2,8,1,13","w":516},"\u00cc":{"d":"508,-1438v6,7,10,14,12,19v2,5,0,9,-4,13v-4,4,-11,6,-20,8v-9,2,-20,3,-35,3v-14,0,-26,0,-35,-1v-9,-1,-17,-4,-24,-6v-7,-2,-14,-4,-20,-8v-6,-4,-12,-9,-19,-16r-217,-212v-7,-7,-11,-13,-12,-19v-1,-6,0,-11,5,-16v5,-5,13,-8,25,-11v12,-3,28,-5,48,-5v17,0,31,0,42,1v11,1,22,2,31,5v9,3,17,6,24,11v7,5,13,12,20,21xm256,-25v-1,5,-2,9,-6,13v-4,4,-10,8,-17,10v-7,2,-17,4,-28,6v-11,2,-25,2,-41,2v-17,0,-31,0,-42,-2v-11,-2,-19,-4,-25,-6v-6,-2,-10,-6,-12,-10v-2,-4,-2,-8,-1,-13r248,-1244v1,-5,4,-9,8,-13v4,-4,10,-8,17,-10v7,-2,16,-4,27,-6v11,-2,25,-2,41,-2v16,0,29,0,40,2v11,2,19,4,25,6v6,2,11,6,13,10v2,4,2,8,1,13","w":516},"\u00cd":{"d":"522,-1426v-7,6,-14,11,-20,15v-6,4,-13,7,-20,9v-7,2,-16,5,-26,6v-10,1,-21,1,-34,1v-31,0,-49,-4,-55,-11v-6,-7,-2,-17,11,-32r197,-213v7,-8,15,-14,23,-19v8,-5,15,-9,24,-12v9,-3,20,-5,32,-6v12,-1,25,-1,42,-1v20,0,36,2,47,5v11,3,19,6,24,11v5,5,5,10,3,16v-2,6,-6,12,-13,19xm256,-25v-1,5,-2,9,-6,13v-4,4,-10,8,-17,10v-7,2,-17,4,-28,6v-11,2,-25,2,-41,2v-17,0,-31,0,-42,-2v-11,-2,-19,-4,-25,-6v-6,-2,-10,-6,-12,-10v-2,-4,-2,-8,-1,-13r248,-1244v1,-5,4,-9,8,-13v4,-4,10,-8,17,-10v7,-2,16,-4,27,-6v11,-2,25,-2,41,-2v16,0,29,0,40,2v11,2,19,4,25,6v6,2,11,6,13,10v2,4,2,8,1,13","w":516},"\u00cf":{"d":"774,-1527v-3,19,-7,34,-12,46v-5,12,-13,21,-22,29v-9,8,-19,13,-32,16v-13,3,-29,5,-47,5v-19,0,-33,-2,-45,-5v-12,-3,-22,-8,-28,-16v-6,-8,-9,-17,-10,-29v-1,-12,-1,-27,2,-46v3,-19,7,-35,12,-47v5,-12,11,-22,20,-30v9,-8,20,-13,33,-16v13,-3,28,-4,47,-4v19,0,34,1,46,4v12,3,20,8,26,16v6,8,10,18,12,30v2,12,1,28,-2,47xm361,-1527v-3,19,-7,34,-12,46v-5,12,-12,21,-21,29v-9,8,-21,13,-34,16v-13,3,-28,5,-47,5v-19,0,-33,-2,-45,-5v-12,-3,-21,-8,-27,-16v-6,-8,-10,-17,-11,-29v-1,-12,1,-27,4,-46v3,-19,7,-35,12,-47v5,-12,12,-22,20,-30v8,-8,19,-13,32,-16v13,-3,29,-4,48,-4v18,0,32,1,44,4v12,3,22,8,28,16v6,8,10,18,11,30v1,12,1,28,-2,47xm256,-25v-1,5,-2,9,-6,13v-4,4,-10,8,-17,10v-7,2,-17,4,-28,6v-11,2,-25,2,-41,2v-17,0,-31,0,-42,-2v-11,-2,-19,-4,-25,-6v-6,-2,-10,-6,-12,-10v-2,-4,-2,-8,-1,-13r248,-1244v1,-5,4,-9,8,-13v4,-4,10,-8,17,-10v7,-2,16,-4,27,-6v11,-2,25,-2,41,-2v16,0,29,0,40,2v11,2,19,4,25,6v6,2,11,6,13,10v2,4,2,8,1,13","w":516},"J":{"d":"454,-312v-9,47,-22,92,-39,132v-17,40,-38,75,-65,104v-27,29,-58,52,-96,69v-38,17,-83,25,-135,25v-31,0,-60,-3,-86,-8v-26,-5,-47,-12,-65,-20v-18,-8,-30,-15,-34,-22v-4,-7,-6,-16,-6,-25v0,-5,1,-11,2,-19v1,-8,2,-16,4,-25v2,-9,3,-18,6,-27v3,-9,7,-18,10,-25v3,-7,7,-14,11,-19v4,-5,8,-7,13,-7v7,0,15,2,22,7v7,5,16,10,26,16v10,6,23,11,38,16v15,5,33,8,54,8v25,0,47,-3,65,-10v18,-7,34,-18,47,-34v13,-16,24,-35,33,-60v9,-25,18,-55,25,-92r188,-941v1,-5,3,-9,7,-13v4,-4,10,-7,17,-10v7,-3,17,-5,28,-6v11,-1,24,-2,41,-2v15,0,28,1,39,2v11,1,19,4,25,6v6,2,10,5,13,9v3,4,4,9,3,14","w":653,"k":{".":18,",":27,"X":20,"\u00c4":36,"\u00c1":36,"\u00c0":36,"A":36}},"K":{"d":"1151,-1267v0,9,-4,18,-11,28v-7,10,-17,22,-32,36r-537,524r339,603v6,11,10,21,12,28v2,7,4,13,4,18v0,6,-1,11,-4,16v-3,5,-8,8,-14,11v-6,3,-14,5,-26,7v-12,2,-27,2,-45,2v-19,0,-33,-1,-45,-2v-12,-1,-21,-4,-28,-6v-7,-2,-12,-6,-16,-10v-4,-4,-7,-9,-10,-15r-354,-646r-128,647v-1,5,-2,10,-6,14v-4,4,-10,8,-17,10v-7,2,-17,4,-28,6v-11,2,-25,2,-41,2v-17,0,-31,0,-42,-2v-11,-2,-19,-4,-25,-6v-6,-2,-10,-6,-12,-10v-2,-4,-2,-9,-1,-14r248,-1243v1,-5,3,-9,7,-13v4,-4,10,-8,17,-10v7,-2,17,-4,28,-6v11,-2,25,-2,41,-2v16,0,30,0,41,2v11,2,19,4,25,6v6,2,10,6,12,10v2,4,3,8,2,13r-115,576r566,-574v5,-6,12,-11,18,-15v6,-4,14,-8,22,-10v8,-2,18,-5,30,-6v12,-1,26,-2,42,-2v17,0,31,0,42,2v11,2,19,4,25,7v6,3,11,6,13,10v2,4,3,9,3,14","w":1064,"k":{"-":34,"y":86,"w":95,"v":100,"\u00fc":17,"\u00fa":17,"\u00f9":17,"u":17,"t":38,"s":18,"r":17,"q":45,"p":17,"\u00f6":40,"\u00f3":40,"\u00f2":40,"o":40,"\u00f1":17,"n":17,"m":17,"\u00ef":-34,"\u00ec":-33,"g":45,"f":21,"\u00e9":43,"\u00e8":43,"e":43,"d":45,"\u00e7":41,"c":41,"\u00e4":45,"\u00e1":45,"\u00e0":45,"a":45,"W":35,"\u00dc":32,"\u00da":32,"\u00d9":32,"U":32,"S":18,"Q":97,"\u00d6":97,"\u00d3":97,"\u00d2":97,"O":97,"G":80,"C":78}},"L":{"d":"769,-115v0,3,0,9,-1,16v-1,7,-2,15,-4,24r-6,26v0,0,-6,17,-10,24v-4,7,-9,13,-14,18v-5,5,-11,7,-18,7r-573,0v-8,0,-16,-2,-23,-4v-7,-2,-13,-6,-18,-12v-5,-6,-9,-13,-11,-22v-2,-9,-1,-19,2,-32r239,-1199v1,-5,3,-9,7,-13v4,-4,10,-8,17,-10v7,-2,17,-4,28,-6v11,-2,25,-2,41,-2v16,0,30,0,41,2v11,2,19,4,25,6v6,2,10,6,12,10v2,4,2,8,1,13r-223,1120r464,0v9,0,15,3,19,9v4,6,5,14,5,25","w":861,"k":{"\u00b7":112,"\u201d":146,"\u201c":197,"\u2019":146,"\u2018":197,",":-17,"y":80,"w":80,"v":87,"t":39,"Y":165,"W":128,"V":146,"\u00dc":89,"\u00da":89,"\u00d9":89,"U":89,"T":159,"Q":67,"\u00d6":67,"\u00d3":67,"\u00d2":67,"O":67,"J":-25,"G":67,"C":65}},"M":{"d":"1491,-25v-1,5,-4,9,-7,13v-3,4,-8,8,-15,10v-7,2,-16,4,-27,6v-11,2,-24,2,-41,2v-16,0,-29,0,-40,-2v-11,-2,-19,-4,-25,-6v-6,-2,-10,-6,-12,-10v-2,-4,-1,-8,0,-13r225,-1127r-2,0r-689,1131v-5,9,-15,17,-29,21v-14,4,-34,6,-61,6v-27,0,-47,-3,-58,-8v-11,-5,-17,-11,-18,-19r-215,-1132r-2,0r-225,1128v-1,5,-4,9,-7,13v-3,4,-8,8,-15,10v-7,2,-15,4,-26,6v-11,2,-25,2,-42,2v-16,0,-29,0,-40,-2v-11,-2,-18,-4,-24,-6v-6,-2,-10,-6,-12,-10v-2,-4,-1,-8,0,-13r237,-1191v3,-13,7,-25,13,-35v6,-10,13,-19,21,-25v8,-6,16,-11,25,-14v9,-3,19,-4,28,-4r100,0v21,0,40,2,54,6v14,4,26,11,36,20v10,9,17,20,22,33v5,13,9,29,12,48r187,935r5,0r578,-935v10,-18,20,-34,30,-47v10,-13,22,-23,34,-32v12,-9,25,-16,40,-21v15,-5,32,-7,51,-7r114,0v10,0,19,1,27,4v8,3,14,8,20,14v6,6,10,14,12,24v2,10,1,22,-2,36","w":1751},"N":{"d":"1068,-71v-2,13,-6,25,-12,34v-6,9,-12,17,-20,23v-8,6,-16,10,-25,13v-9,3,-17,4,-26,4r-65,0v-17,0,-32,-2,-44,-6v-12,-4,-23,-11,-32,-21v-9,-10,-17,-22,-24,-38v-7,-16,-14,-35,-22,-58r-243,-690r-49,-148v0,0,-25,-73,-48,-147r-2,0v-9,55,-18,109,-28,163r-31,162r-150,754v-1,5,-3,10,-7,14v-4,4,-9,8,-16,10v-7,2,-17,4,-28,6v-11,2,-24,2,-39,2v-15,0,-29,0,-39,-2v-10,-2,-18,-4,-23,-6v-5,-2,-9,-6,-11,-10v-2,-4,-1,-9,0,-14r238,-1194v5,-27,17,-46,34,-57v17,-11,34,-17,51,-17r79,0v16,0,30,2,42,5v12,3,22,9,31,18v9,9,16,19,23,33v7,14,14,32,22,53r245,699r45,130r45,131r2,0v9,-55,20,-111,31,-170r32,-170r141,-701v1,-5,4,-10,7,-14v3,-4,8,-6,15,-9v7,-3,15,-5,25,-6v10,-1,24,-2,40,-2v15,0,28,1,38,2v10,1,18,3,24,6v6,3,10,5,12,9v2,4,3,9,2,14","w":1320},"\u00d1":{"d":"1095,-1614v1,-5,2,-8,5,-11v3,-3,7,-5,12,-7v5,-2,12,-2,20,-3v8,-1,17,-1,28,-1v23,0,37,2,44,6v7,4,10,11,10,19v0,3,-1,9,-2,21v-1,12,-3,26,-8,42v-5,16,-11,32,-20,50v-9,18,-20,35,-36,50v-16,15,-36,27,-60,37v-24,10,-53,15,-87,15v-35,0,-65,-6,-90,-18v-25,-12,-49,-26,-69,-40v-20,-14,-39,-26,-58,-38v-19,-12,-40,-18,-61,-18v-29,0,-50,8,-63,25v-13,17,-21,39,-24,67v-1,4,-2,7,-5,10v-3,3,-6,4,-11,6v-5,2,-12,3,-20,4v-8,1,-17,2,-28,2v-22,0,-36,-2,-44,-6v-8,-4,-12,-10,-12,-19v0,-7,1,-18,3,-32v2,-14,5,-29,11,-45v6,-16,14,-32,24,-48v10,-16,23,-30,39,-44v16,-14,35,-26,58,-34v23,-8,50,-12,81,-12v34,0,63,6,88,18v25,12,48,25,69,39r59,39v19,12,39,18,60,18v24,0,44,-6,59,-20v15,-14,25,-38,28,-72xm1068,-71v-2,13,-6,25,-12,34v-6,9,-12,17,-20,23v-8,6,-16,10,-25,13v-9,3,-17,4,-26,4r-65,0v-17,0,-32,-2,-44,-6v-12,-4,-23,-11,-32,-21v-9,-10,-17,-22,-24,-38v-7,-16,-14,-35,-22,-58r-243,-690r-49,-148v0,0,-25,-73,-48,-147r-2,0v-9,55,-18,109,-28,163r-31,162r-150,754v-1,5,-3,10,-7,14v-4,4,-9,8,-16,10v-7,2,-17,4,-28,6v-11,2,-24,2,-39,2v-15,0,-29,0,-39,-2v-10,-2,-18,-4,-23,-6v-5,-2,-9,-6,-11,-10v-2,-4,-1,-9,0,-14r238,-1194v5,-27,17,-46,34,-57v17,-11,34,-17,51,-17r79,0v16,0,30,2,42,5v12,3,22,9,31,18v9,9,16,19,23,33v7,14,14,32,22,53r245,699r45,130r45,131r2,0v9,-55,20,-111,31,-170r32,-170r141,-701v1,-5,4,-10,7,-14v3,-4,8,-6,15,-9v7,-3,15,-5,25,-6v10,-1,24,-2,40,-2v15,0,28,1,38,2v10,1,18,3,24,6v6,3,10,5,12,9v2,4,3,9,2,14","w":1320},"O":{"d":"1298,-860v0,51,-5,109,-14,172v-9,63,-25,128,-47,193v-22,65,-51,129,-87,191v-36,62,-82,116,-135,164v-53,48,-117,86,-190,115v-73,29,-157,44,-252,44v-76,0,-143,-10,-200,-29v-57,-19,-105,-46,-143,-84v-38,-38,-68,-85,-87,-140v-19,-55,-29,-119,-29,-192v0,-57,5,-119,15,-185v10,-66,26,-131,49,-197v23,-66,53,-129,90,-190v37,-61,82,-115,136,-162v54,-47,117,-84,189,-112v72,-28,155,-41,248,-41v75,0,142,9,199,29v57,20,104,50,142,88v38,38,68,86,87,142v19,56,29,121,29,194xm1114,-848v0,-47,-5,-89,-16,-128v-11,-39,-28,-73,-51,-101v-23,-28,-54,-49,-93,-65v-39,-16,-85,-24,-140,-24v-69,0,-130,12,-182,38v-52,26,-98,60,-136,101v-38,41,-71,89,-96,141v-25,52,-45,105,-60,158v-15,53,-26,105,-32,155v-6,50,-9,93,-9,130v0,47,5,91,15,129v10,38,28,71,52,98v24,27,56,49,94,64v38,15,85,22,140,22v69,0,129,-13,181,-38v52,-25,97,-57,135,-98v38,-41,70,-86,95,-138v25,-52,46,-105,61,-158v15,-53,26,-104,32,-154v6,-50,10,-94,10,-132","w":1340,"k":{"\u201d":-12,"\u201c":18,"\u2019":-12,"\u2018":18,".":31,",":46,"z":10,"x":10,"Z":37,"Y":53,"X":61,"W":22,"V":26,"T":54,"J":27,"\u00c4":23,"\u00c1":23,"\u00c0":23,"A":23}},"\u00d2":{"d":"912,-1438v6,7,10,14,12,19v2,5,0,9,-4,13v-4,4,-11,6,-20,8v-9,2,-20,3,-35,3v-14,0,-26,0,-35,-1v-9,-1,-17,-4,-24,-6v-7,-2,-14,-4,-20,-8v-6,-4,-12,-9,-19,-16r-217,-212v-7,-7,-11,-13,-12,-19v-1,-6,0,-11,5,-16v5,-5,13,-8,25,-11v12,-3,28,-5,48,-5v17,0,31,0,42,1v11,1,22,2,31,5v9,3,17,6,24,11v7,5,13,12,20,21xm1298,-860v0,51,-5,109,-14,172v-9,63,-25,128,-47,193v-22,65,-51,129,-87,191v-36,62,-82,116,-135,164v-53,48,-117,86,-190,115v-73,29,-157,44,-252,44v-76,0,-143,-10,-200,-29v-57,-19,-105,-46,-143,-84v-38,-38,-68,-85,-87,-140v-19,-55,-29,-119,-29,-192v0,-57,5,-119,15,-185v10,-66,26,-131,49,-197v23,-66,53,-129,90,-190v37,-61,82,-115,136,-162v54,-47,117,-84,189,-112v72,-28,155,-41,248,-41v75,0,142,9,199,29v57,20,104,50,142,88v38,38,68,86,87,142v19,56,29,121,29,194xm1114,-848v0,-47,-5,-89,-16,-128v-11,-39,-28,-73,-51,-101v-23,-28,-54,-49,-93,-65v-39,-16,-85,-24,-140,-24v-69,0,-130,12,-182,38v-52,26,-98,60,-136,101v-38,41,-71,89,-96,141v-25,52,-45,105,-60,158v-15,53,-26,105,-32,155v-6,50,-9,93,-9,130v0,47,5,91,15,129v10,38,28,71,52,98v24,27,56,49,94,64v38,15,85,22,140,22v69,0,129,-13,181,-38v52,-25,97,-57,135,-98v38,-41,70,-86,95,-138v25,-52,46,-105,61,-158v15,-53,26,-104,32,-154v6,-50,10,-94,10,-132","w":1340,"k":{"\u201d":-12,"\u201c":18,"\u2019":-12,"\u2018":18,".":31,",":46,"z":10,"x":10,"Z":37,"Y":53,"X":61,"W":22,"V":26,"T":54,"J":27,"\u00c4":23,"\u00c1":23,"\u00c0":23,"A":23}},"\u00d3":{"d":"906,-1426v-7,6,-14,11,-20,15v-6,4,-13,7,-20,9v-7,2,-16,5,-26,6v-10,1,-21,1,-34,1v-31,0,-49,-4,-55,-11v-6,-7,-2,-17,11,-32r197,-213v7,-8,15,-14,23,-19v8,-5,15,-9,24,-12v9,-3,20,-5,32,-6v12,-1,25,-1,42,-1v20,0,36,2,47,5v11,3,19,6,24,11v5,5,5,10,3,16v-2,6,-6,12,-13,19xm1298,-860v0,51,-5,109,-14,172v-9,63,-25,128,-47,193v-22,65,-51,129,-87,191v-36,62,-82,116,-135,164v-53,48,-117,86,-190,115v-73,29,-157,44,-252,44v-76,0,-143,-10,-200,-29v-57,-19,-105,-46,-143,-84v-38,-38,-68,-85,-87,-140v-19,-55,-29,-119,-29,-192v0,-57,5,-119,15,-185v10,-66,26,-131,49,-197v23,-66,53,-129,90,-190v37,-61,82,-115,136,-162v54,-47,117,-84,189,-112v72,-28,155,-41,248,-41v75,0,142,9,199,29v57,20,104,50,142,88v38,38,68,86,87,142v19,56,29,121,29,194xm1114,-848v0,-47,-5,-89,-16,-128v-11,-39,-28,-73,-51,-101v-23,-28,-54,-49,-93,-65v-39,-16,-85,-24,-140,-24v-69,0,-130,12,-182,38v-52,26,-98,60,-136,101v-38,41,-71,89,-96,141v-25,52,-45,105,-60,158v-15,53,-26,105,-32,155v-6,50,-9,93,-9,130v0,47,5,91,15,129v10,38,28,71,52,98v24,27,56,49,94,64v38,15,85,22,140,22v69,0,129,-13,181,-38v52,-25,97,-57,135,-98v38,-41,70,-86,95,-138v25,-52,46,-105,61,-158v15,-53,26,-104,32,-154v6,-50,10,-94,10,-132","w":1340,"k":{"\u201d":-12,"\u201c":18,"\u2019":-12,"\u2018":18,".":31,",":46,"z":10,"x":10,"Z":37,"Y":53,"X":61,"W":22,"V":26,"T":54,"J":27,"\u00c4":23,"\u00c1":23,"\u00c0":23,"A":23}},"\u00d6":{"d":"1195,-1527v-3,19,-8,34,-13,46v-5,12,-11,21,-20,29v-9,8,-21,13,-34,16v-13,3,-28,5,-46,5v-19,0,-34,-2,-46,-5v-12,-3,-20,-8,-26,-16v-6,-8,-11,-17,-12,-29v-1,-12,0,-27,3,-46v3,-19,7,-35,12,-47v5,-12,12,-22,21,-30v9,-8,19,-13,32,-16v13,-3,28,-4,47,-4v19,0,33,1,45,4v12,3,22,8,28,16v6,8,10,18,12,30v2,12,0,28,-3,47xm782,-1527v-3,19,-7,34,-12,46v-5,12,-13,21,-22,29v-9,8,-19,13,-32,16v-13,3,-29,5,-48,5v-19,0,-34,-2,-46,-5v-12,-3,-20,-8,-26,-16v-6,-8,-9,-17,-10,-29v-1,-12,0,-27,3,-46v3,-19,6,-35,11,-47v5,-12,12,-22,20,-30v8,-8,19,-13,32,-16v13,-3,30,-4,49,-4v18,0,33,1,45,4v12,3,20,8,26,16v6,8,11,18,12,30v1,12,1,28,-2,47xm1298,-860v0,51,-5,109,-14,172v-9,63,-25,128,-47,193v-22,65,-51,129,-87,191v-36,62,-82,116,-135,164v-53,48,-117,86,-190,115v-73,29,-157,44,-252,44v-76,0,-143,-10,-200,-29v-57,-19,-105,-46,-143,-84v-38,-38,-68,-85,-87,-140v-19,-55,-29,-119,-29,-192v0,-57,5,-119,15,-185v10,-66,26,-131,49,-197v23,-66,53,-129,90,-190v37,-61,82,-115,136,-162v54,-47,117,-84,189,-112v72,-28,155,-41,248,-41v75,0,142,9,199,29v57,20,104,50,142,88v38,38,68,86,87,142v19,56,29,121,29,194xm1114,-848v0,-47,-5,-89,-16,-128v-11,-39,-28,-73,-51,-101v-23,-28,-54,-49,-93,-65v-39,-16,-85,-24,-140,-24v-69,0,-130,12,-182,38v-52,26,-98,60,-136,101v-38,41,-71,89,-96,141v-25,52,-45,105,-60,158v-15,53,-26,105,-32,155v-6,50,-9,93,-9,130v0,47,5,91,15,129v10,38,28,71,52,98v24,27,56,49,94,64v38,15,85,22,140,22v69,0,129,-13,181,-38v52,-25,97,-57,135,-98v38,-41,70,-86,95,-138v25,-52,46,-105,61,-158v15,-53,26,-104,32,-154v6,-50,10,-94,10,-132","w":1340,"k":{"\u201d":-12,"\u201c":18,"\u2019":-12,"\u2018":18,".":31,",":46,"z":10,"x":10,"Z":37,"Y":53,"X":61,"W":22,"V":26,"T":54,"J":27,"\u00c4":23,"\u00c1":23,"\u00c0":23,"A":23}},"P":{"d":"1064,-990v0,35,-4,72,-12,111v-8,39,-22,76,-40,113v-18,37,-40,73,-68,106v-28,33,-62,62,-101,87v-39,25,-84,45,-135,59v-51,14,-112,22,-181,22r-178,0r-93,467v-1,5,-4,9,-7,13v-3,4,-9,8,-17,10v-8,2,-17,4,-28,6v-11,2,-24,2,-41,2v-15,0,-28,-1,-39,-2v-11,-1,-20,-4,-26,-6v-6,-2,-10,-5,-12,-9v-2,-4,-3,-9,-2,-14r238,-1195v5,-27,16,-46,33,-57v17,-11,36,-17,58,-17r255,0v33,0,62,2,88,4v26,2,51,6,75,11v36,8,68,20,97,37v29,17,54,38,74,62v20,24,35,52,46,84v11,32,16,67,16,106xm882,-972v0,-41,-10,-76,-30,-106v-20,-30,-52,-51,-95,-63v-16,-5,-34,-8,-53,-9v-19,-1,-40,-2,-62,-2r-162,0r-102,519r163,0v47,0,87,-5,120,-16v33,-11,61,-25,86,-42v25,-17,46,-38,63,-61v17,-23,30,-47,41,-72v11,-25,18,-50,23,-76v5,-26,8,-50,8,-72","w":1058,"k":{"-":41,"\/":117,"\u201d":-48,"\u201c":-14,"\u2019":-48,"\u2018":-14,".":250,",":231,"y":-13,"t":-13,"q":37,"\u00f6":41,"\u00f3":41,"\u00f2":41,"o":41,"g":37,"f":-13,"\u00e9":41,"\u00e8":41,"e":41,"d":37,"\u00e7":41,"c":41,"\u00e4":37,"\u00e1":37,"\u00e0":37,"a":37,"Z":29,"Y":11,"X":34,"V":10,"T":7,"J":137,"\u00c4":130,"\u00c1":130,"\u00c0":130,"A":130}},"Q":{"d":"1289,74v0,5,0,12,-1,20v-1,8,-3,16,-5,25v-2,9,-4,17,-7,25v-3,8,-7,16,-11,23v-4,7,-8,12,-13,16v-5,4,-10,6,-16,6v-5,0,-15,-2,-28,-6v-13,-4,-30,-10,-48,-18v-18,-8,-39,-18,-62,-31v-23,-13,-47,-29,-72,-47v-25,-18,-50,-38,-75,-61v-25,-23,-50,-48,-75,-76v-41,23,-86,40,-136,52v-50,12,-106,17,-168,17v-76,0,-143,-10,-200,-29v-57,-19,-104,-46,-142,-84v-38,-38,-68,-85,-87,-140v-19,-55,-29,-119,-29,-192v0,-57,4,-119,14,-185v10,-66,27,-131,50,-197v23,-66,53,-129,90,-190v37,-61,82,-115,136,-162v54,-47,116,-84,188,-112v72,-28,155,-41,248,-41v75,0,141,9,198,29v57,20,106,50,144,88v38,38,67,86,86,142v19,56,29,121,29,194v0,33,-1,70,-5,110v-4,40,-11,82,-20,124v-9,42,-20,85,-35,129v-15,44,-32,87,-53,129v-21,42,-46,83,-74,122v-28,39,-61,75,-98,109v37,36,72,65,102,86v30,21,57,38,80,50v23,12,42,21,56,27v14,6,24,11,28,15v4,4,6,9,8,13v2,4,3,11,3,20xm1113,-848v0,-47,-5,-89,-16,-128v-11,-39,-28,-73,-51,-101v-23,-28,-54,-49,-92,-65v-38,-16,-86,-24,-141,-24v-69,0,-131,12,-183,38v-52,26,-97,60,-135,101v-38,41,-70,89,-95,141v-25,52,-45,105,-60,158v-15,53,-26,105,-32,155v-6,50,-10,93,-10,130v0,47,6,91,16,129v10,38,27,71,51,98v24,27,55,49,94,64v39,15,86,22,141,22v68,0,128,-13,180,-38v52,-25,97,-57,135,-98v38,-41,69,-86,95,-138v26,-52,47,-105,62,-158v15,-53,26,-104,32,-154v6,-50,9,-94,9,-132","w":1360,"k":{"}":-29,"]":-31,")":-31,"\/":-136,"\u201d":-7,"\u2019":-7,";":-59,",":-105,"x":-27,"j":-81,"Y":55,"X":-6,"W":20,"V":33,"T":46,"J":-47}},"R":{"d":"1062,-1023v0,46,-7,90,-20,131v-13,41,-32,79,-58,114v-26,35,-60,65,-100,92v-40,27,-85,49,-138,66v35,13,64,39,86,80v22,41,39,94,51,161r53,286v3,19,4,19,6,35v2,11,2,21,2,30v0,6,-2,12,-5,16v-3,4,-9,7,-16,10v-7,3,-18,5,-31,6v-13,1,-28,2,-47,2v-17,0,-31,-1,-42,-2v-11,-1,-19,-4,-25,-7v-6,-3,-10,-8,-12,-13v-2,-5,-4,-11,-5,-20r-51,-304v-5,-35,-12,-67,-22,-96v-10,-29,-24,-53,-41,-74v-17,-21,-40,-38,-67,-50v-27,-12,-59,-17,-98,-17r-115,0r-111,552v-1,5,-4,9,-7,13v-3,4,-9,8,-16,10v-7,2,-17,4,-28,6v-11,2,-25,2,-42,2v-15,0,-28,-1,-39,-2v-11,-1,-20,-4,-26,-6v-6,-2,-10,-5,-12,-9v-2,-4,-3,-9,-2,-14r240,-1199v5,-26,16,-44,32,-54v16,-10,34,-16,53,-16r281,0v61,0,116,6,162,18v46,12,85,29,116,52v31,23,54,52,70,86v16,34,24,72,24,115xm876,-996v0,-23,-4,-44,-12,-63v-8,-19,-21,-36,-38,-50v-17,-14,-38,-25,-66,-32v-28,-7,-61,-11,-99,-11r-179,0r-88,436r152,0v59,0,110,-8,152,-24v42,-16,76,-38,102,-64v26,-26,46,-56,58,-89v12,-33,18,-68,18,-103","w":1112,"k":{".":-10,"y":33,"w":33,"v":26,"\u00f6":42,"\u00f3":42,"\u00f2":42,"o":42,"\u00e9":36,"\u00e8":36,"e":36,"Y":42,"W":27,"V":50,"T":50,"S":27,"Q":18,"\u00d6":18,"\u00d3":18,"\u00d2":18,"O":18,"G":18,"C":18}},"S":{"d":"921,-1196v0,5,0,11,-1,18v-1,7,-2,14,-4,22r-6,24v0,0,-5,16,-8,22v-3,6,-8,12,-12,16v-4,4,-9,6,-14,6v-7,0,-17,-4,-30,-13v-13,-9,-30,-17,-50,-27v-20,-10,-45,-19,-73,-28v-28,-9,-60,-13,-97,-13v-41,0,-76,7,-107,19v-31,12,-56,29,-77,50v-21,21,-36,44,-46,71v-10,27,-16,54,-16,83v0,29,7,55,20,77v13,22,29,42,50,60v21,18,45,35,72,51r83,49v28,17,56,34,83,53v27,19,51,41,72,66v21,25,39,54,52,86v13,32,19,70,19,113v0,57,-12,109,-35,159v-23,50,-57,93,-100,130v-43,37,-94,66,-155,88v-61,22,-128,33,-203,33v-41,0,-79,-4,-114,-11v-35,-7,-66,-16,-94,-26v-28,-10,-52,-21,-71,-32v-19,-11,-33,-20,-42,-29v-9,-9,-13,-21,-13,-38v0,-4,1,-10,2,-17v1,-7,2,-15,4,-24v2,-9,4,-18,6,-26v2,-8,6,-15,10,-22v4,-7,8,-14,12,-18v4,-4,9,-6,15,-6v11,0,24,5,40,16v16,11,35,22,59,34v24,12,52,24,85,35v33,11,71,16,115,16v47,0,88,-6,125,-19v37,-13,68,-32,93,-54v25,-22,44,-48,57,-78v13,-30,20,-62,20,-96v0,-30,-6,-56,-19,-78v-13,-22,-29,-43,-50,-61v-21,-18,-45,-35,-72,-50r-82,-48v-28,-17,-54,-34,-81,-53v-27,-19,-50,-41,-71,-66v-21,-25,-37,-54,-50,-86v-13,-32,-20,-71,-20,-114v0,-53,10,-102,31,-148v21,-46,50,-86,88,-121v38,-35,84,-62,138,-82v54,-20,114,-30,181,-30v32,0,63,3,92,8v29,5,55,11,78,19v23,8,43,17,60,26v17,9,28,16,34,22v6,6,10,12,13,18v3,6,4,15,4,24","w":926,"k":{"\u201d":14,"\u201c":20,"\u2019":14,"\u2018":20,"y":25,"w":16,"v":26,"Y":27,"X":12,"W":19,"V":31,"T":14,"J":-5,"\u00c4":11,"\u00c1":11,"\u00c0":11,"A":11}},"T":{"d":"1139,-1259v0,4,-1,10,-1,17v0,7,0,14,-2,22v-2,8,-4,17,-7,26v-3,9,-6,16,-10,23v-4,7,-9,13,-15,17v-6,4,-11,6,-18,6r-364,0r-225,1122v-1,5,-3,10,-7,14v-4,4,-9,8,-16,10v-7,2,-17,4,-28,6v-11,2,-25,2,-42,2v-17,0,-30,0,-41,-2v-11,-2,-19,-4,-25,-6v-6,-2,-10,-6,-12,-10v-2,-4,-2,-9,-1,-14r224,-1122r-362,0v-9,0,-16,-3,-19,-9v-3,-6,-5,-14,-5,-25v0,-5,0,-11,1,-18v1,-7,2,-14,4,-23v2,-9,4,-17,7,-25v3,-8,6,-15,10,-22v4,-7,8,-14,13,-18v5,-4,11,-6,18,-6r900,0v9,0,15,4,18,10v3,6,5,14,5,25","w":998,"k":{"-":160,"\/":107,"\u201d":-47,"\u201c":-22,"\u2019":-47,"\u2018":-22,".":202,":":134,";":114,",":203,"z":140,"y":90,"x":84,"w":91,"v":87,"\u00fc":98,"\u00fa":98,"\u00f9":98,"u":98,"s":150,"r":98,"q":174,"p":98,"\u00f6":173,"\u00f3":173,"\u00f2":173,"o":173,"\u00f1":98,"n":98,"m":98,"\u00ef":-85,"\u00ec":-46,"g":174,"\u00e9":173,"\u00e8":173,"e":173,"d":174,"\u00e7":167,"c":167,"\u00e4":174,"\u00e1":174,"\u00e0":174,"a":174,"T":-29,"Q":52,"\u00d6":52,"\u00d3":52,"\u00d2":52,"O":52,"J":57,"G":52,"C":37,"\u00c4":151,"\u00c1":151,"\u00c0":151,"A":151}},"U":{"d":"1145,-471v-16,81,-41,153,-76,214v-35,61,-77,112,-127,153v-50,41,-106,71,-169,92v-63,21,-131,31,-204,31v-77,0,-144,-10,-201,-31v-57,-21,-104,-52,-138,-94v-34,-42,-56,-94,-67,-156v-11,-62,-8,-134,9,-216r158,-790v1,-5,2,-10,6,-14v4,-4,10,-8,17,-10v7,-2,16,-4,27,-6v11,-2,25,-2,42,-2v17,0,30,0,41,2v11,2,19,4,25,6v6,2,10,6,12,10v2,4,2,9,1,14r-157,788v-11,59,-15,110,-10,154v5,44,18,81,39,110v21,29,49,51,85,66v36,15,80,22,131,22v50,0,97,-8,139,-23v42,-15,79,-37,112,-67v33,-30,61,-66,84,-110v23,-44,41,-94,52,-150r158,-790v1,-5,2,-10,6,-14v4,-4,9,-8,16,-10v7,-2,17,-4,28,-6v11,-2,24,-2,41,-2v16,0,29,0,40,2v11,2,19,4,25,6v6,2,11,6,13,10v2,4,3,9,2,14","w":1314,"k":{".":35,",":37,"J":20,"\u00c4":46,"\u00c1":46,"\u00c0":46,"A":46}},"\u00d9":{"d":"888,-1438v6,7,10,14,12,19v2,5,0,9,-4,13v-4,4,-11,6,-20,8v-9,2,-20,3,-35,3v-14,0,-26,0,-35,-1v-9,-1,-17,-4,-24,-6v-7,-2,-14,-4,-20,-8v-6,-4,-12,-9,-19,-16r-217,-212v-7,-7,-11,-13,-12,-19v-1,-6,0,-11,5,-16v5,-5,13,-8,25,-11v12,-3,28,-5,48,-5v17,0,31,0,42,1v11,1,22,2,31,5v9,3,17,6,24,11v7,5,13,12,20,21xm1145,-471v-16,81,-41,153,-76,214v-35,61,-77,112,-127,153v-50,41,-106,71,-169,92v-63,21,-131,31,-204,31v-77,0,-144,-10,-201,-31v-57,-21,-104,-52,-138,-94v-34,-42,-56,-94,-67,-156v-11,-62,-8,-134,9,-216r158,-790v1,-5,2,-10,6,-14v4,-4,10,-8,17,-10v7,-2,16,-4,27,-6v11,-2,25,-2,42,-2v17,0,30,0,41,2v11,2,19,4,25,6v6,2,10,6,12,10v2,4,2,9,1,14r-157,788v-11,59,-15,110,-10,154v5,44,18,81,39,110v21,29,49,51,85,66v36,15,80,22,131,22v50,0,97,-8,139,-23v42,-15,79,-37,112,-67v33,-30,61,-66,84,-110v23,-44,41,-94,52,-150r158,-790v1,-5,2,-10,6,-14v4,-4,9,-8,16,-10v7,-2,17,-4,28,-6v11,-2,24,-2,41,-2v16,0,29,0,40,2v11,2,19,4,25,6v6,2,11,6,13,10v2,4,3,9,2,14","w":1314,"k":{".":35,",":37,"J":20,"\u00c4":46,"\u00c1":46,"\u00c0":46,"A":46}},"\u00da":{"d":"909,-1426v-7,6,-14,11,-20,15v-6,4,-13,7,-20,9v-7,2,-15,5,-25,6v-10,1,-22,1,-35,1v-31,0,-49,-4,-55,-11v-6,-7,-2,-17,11,-32r197,-213v7,-8,14,-14,22,-19v8,-5,17,-9,26,-12v9,-3,18,-5,30,-6v12,-1,26,-1,43,-1v20,0,36,2,47,5v11,3,19,6,24,11v5,5,6,10,4,16v-2,6,-7,12,-14,19xm1145,-471v-16,81,-41,153,-76,214v-35,61,-77,112,-127,153v-50,41,-106,71,-169,92v-63,21,-131,31,-204,31v-77,0,-144,-10,-201,-31v-57,-21,-104,-52,-138,-94v-34,-42,-56,-94,-67,-156v-11,-62,-8,-134,9,-216r158,-790v1,-5,2,-10,6,-14v4,-4,10,-8,17,-10v7,-2,16,-4,27,-6v11,-2,25,-2,42,-2v17,0,30,0,41,2v11,2,19,4,25,6v6,2,10,6,12,10v2,4,2,9,1,14r-157,788v-11,59,-15,110,-10,154v5,44,18,81,39,110v21,29,49,51,85,66v36,15,80,22,131,22v50,0,97,-8,139,-23v42,-15,79,-37,112,-67v33,-30,61,-66,84,-110v23,-44,41,-94,52,-150r158,-790v1,-5,2,-10,6,-14v4,-4,9,-8,16,-10v7,-2,17,-4,28,-6v11,-2,24,-2,41,-2v16,0,29,0,40,2v11,2,19,4,25,6v6,2,11,6,13,10v2,4,3,9,2,14","w":1314,"k":{".":35,",":37,"J":20,"\u00c4":46,"\u00c1":46,"\u00c0":46,"A":46}},"\u00dc":{"d":"1167,-1527v-3,19,-8,34,-13,46v-5,12,-11,21,-20,29v-9,8,-21,13,-34,16v-13,3,-28,5,-46,5v-19,0,-34,-2,-46,-5v-12,-3,-20,-8,-26,-16v-6,-8,-11,-17,-12,-29v-1,-12,0,-27,3,-46v3,-19,7,-35,12,-47v5,-12,12,-22,21,-30v9,-8,19,-13,32,-16v13,-3,28,-4,47,-4v19,0,33,1,45,4v12,3,22,8,28,16v6,8,10,18,12,30v2,12,0,28,-3,47xm754,-1527v-3,19,-7,34,-12,46v-5,12,-13,21,-22,29v-9,8,-19,13,-32,16v-13,3,-29,5,-48,5v-19,0,-34,-2,-46,-5v-12,-3,-20,-8,-26,-16v-6,-8,-9,-17,-10,-29v-1,-12,0,-27,3,-46v3,-19,6,-35,11,-47v5,-12,12,-22,20,-30v8,-8,19,-13,32,-16v13,-3,30,-4,49,-4v18,0,33,1,45,4v12,3,20,8,26,16v6,8,11,18,12,30v1,12,1,28,-2,47xm1145,-471v-16,81,-41,153,-76,214v-35,61,-77,112,-127,153v-50,41,-106,71,-169,92v-63,21,-131,31,-204,31v-77,0,-144,-10,-201,-31v-57,-21,-104,-52,-138,-94v-34,-42,-56,-94,-67,-156v-11,-62,-8,-134,9,-216r158,-790v1,-5,2,-10,6,-14v4,-4,10,-8,17,-10v7,-2,16,-4,27,-6v11,-2,25,-2,42,-2v17,0,30,0,41,2v11,2,19,4,25,6v6,2,10,6,12,10v2,4,2,9,1,14r-157,788v-11,59,-15,110,-10,154v5,44,18,81,39,110v21,29,49,51,85,66v36,15,80,22,131,22v50,0,97,-8,139,-23v42,-15,79,-37,112,-67v33,-30,61,-66,84,-110v23,-44,41,-94,52,-150r158,-790v1,-5,2,-10,6,-14v4,-4,9,-8,16,-10v7,-2,17,-4,28,-6v11,-2,24,-2,41,-2v16,0,29,0,40,2v11,2,19,4,25,6v6,2,11,6,13,10v2,4,3,9,2,14","w":1314,"k":{".":35,",":37,"J":20,"\u00c4":46,"\u00c1":46,"\u00c0":46,"A":46}},"V":{"d":"608,-30v-5,7,-10,13,-15,18v-5,5,-12,8,-21,11v-9,3,-20,4,-33,5v-13,1,-30,2,-50,2v-21,0,-39,-1,-53,-2v-14,-1,-25,-2,-33,-5v-8,-3,-13,-6,-17,-11v-4,-5,-6,-12,-7,-19r-183,-1210v-2,-13,-2,-23,-2,-31v0,-8,2,-14,8,-18v6,-4,14,-7,26,-8v12,-1,28,-2,49,-2v20,0,35,1,47,2v12,1,21,2,28,5v7,3,12,6,14,11v2,5,4,10,5,17r151,1088r1,0r577,-1089v3,-7,8,-12,12,-16v4,-4,10,-8,17,-11v7,-3,17,-4,29,-5v12,-1,29,-2,49,-2v21,0,37,0,49,2v12,2,20,5,25,10v5,5,6,11,4,20v-2,9,-7,21,-15,36","w":1162,"k":{"-":110,"\/":107,"\u201d":-52,"\u2019":-52,".":202,":":73,";":108,",":166,"z":81,"y":27,"\u00fc":61,"\u00fa":61,"\u00f9":61,"u":61,"s":88,"r":61,"q":100,"p":61,"\u00f6":87,"\u00f3":87,"\u00f2":87,"o":87,"\u00f1":61,"n":61,"m":61,"\u00ef":-68,"\u00ec":-48,"g":100,"\u00e9":102,"\u00e8":102,"e":102,"d":100,"\u00e7":105,"c":105,"\u00e4":100,"\u00e1":100,"\u00e0":100,"a":100,"V":-8,"S":12,"Q":27,"\u00d6":27,"\u00d3":27,"\u00d2":27,"O":27,"J":80,"G":25,"C":18,"\u00c4":88,"\u00c1":88,"\u00c0":88,"A":88}},"W":{"d":"1325,-37v-4,9,-9,17,-15,23v-6,6,-15,9,-25,12v-10,3,-22,5,-36,6v-14,1,-31,2,-50,2v-21,0,-38,-1,-52,-2v-14,-1,-25,-3,-34,-6v-9,-3,-15,-7,-19,-12v-4,-5,-6,-12,-7,-21r-77,-980r-2,0r-442,978v-3,9,-8,17,-14,23v-6,6,-14,9,-23,12v-9,3,-21,5,-35,6v-14,1,-31,2,-52,2v-23,0,-41,-1,-56,-2v-15,-1,-27,-3,-36,-6v-9,-3,-15,-7,-19,-13v-4,-6,-6,-14,-7,-23r-103,-1199v-1,-13,-2,-24,-1,-33v1,-9,4,-16,10,-20v6,-4,14,-7,26,-8v12,-1,29,-2,50,-2v17,0,32,1,46,2v14,1,23,4,29,7v6,3,10,8,12,14v2,6,3,14,3,23r72,1074r2,0r494,-1082v3,-7,8,-13,12,-18v4,-5,10,-9,17,-12v7,-3,17,-5,29,-6v12,-1,29,-2,50,-2v18,0,32,1,43,2v11,1,19,3,25,6v6,3,10,7,12,12v2,5,2,11,3,18r82,1082r2,0r502,-1086v3,-7,6,-12,10,-16v4,-4,9,-8,17,-11v8,-3,18,-4,30,-5v12,-1,28,-2,47,-2v19,0,35,0,46,2v11,2,19,5,24,10v5,5,6,11,4,20v-2,9,-6,21,-12,36","w":1823,"k":{"-":88,"\u201d":-15,"\u2019":-15,".":205,";":53,",":155,"y":52,"v":34,"\u00fc":55,"\u00fa":55,"\u00f9":55,"u":55,"s":54,"r":55,"q":81,"p":55,"\u00f6":85,"\u00f3":85,"\u00f2":85,"o":85,"\u00f1":55,"n":55,"m":55,"\u00ef":-51,"\u00ec":-27,"g":81,"\u00e9":82,"\u00e8":82,"e":82,"d":81,"\u00e7":83,"c":83,"\u00e4":81,"\u00e1":81,"\u00e0":81,"a":81,"X":10,"S":9,"Q":20,"\u00d6":20,"\u00d3":20,"\u00d2":20,"O":20,"J":78,"G":20,"C":21,"\u00c4":92,"\u00c1":92,"\u00c0":92,"A":92}},"X":{"d":"681,-661r242,598v5,15,7,26,7,35v0,9,-2,17,-8,22v-6,5,-16,8,-30,10v-14,2,-33,2,-56,2v-19,0,-35,-1,-46,-2v-11,-1,-20,-2,-26,-5v-6,-3,-11,-5,-14,-9v-3,-4,-5,-9,-7,-15r-196,-519r-392,519v-5,6,-10,11,-15,15v-5,4,-11,8,-19,10v-8,2,-18,3,-31,4v-13,1,-29,2,-48,2v-22,0,-40,0,-54,-2v-14,-2,-23,-5,-28,-10v-5,-5,-5,-12,-2,-21v3,-9,10,-20,21,-35r479,-604r-221,-566v-5,-15,-7,-26,-7,-35v0,-9,3,-16,10,-21v7,-5,17,-8,31,-10v14,-2,32,-2,55,-2v18,0,33,1,44,2v11,1,20,3,26,6v6,3,11,7,14,12v3,5,6,12,9,20r176,473r365,-482v5,-5,9,-11,14,-15v5,-4,11,-8,19,-10v8,-2,18,-3,30,-4v12,-1,28,-2,47,-2v22,0,40,0,54,2v14,2,23,5,28,10v5,5,5,12,2,21v-3,9,-9,20,-19,35","w":1063,"k":{"-":109,"\u201d":14,"\u2019":14,"y":43,"w":48,"v":55,"u":33,"t":31,"q":43,"\u00f6":39,"\u00f3":39,"\u00f2":39,"o":39,"g":43,"\u00e9":39,"\u00e8":39,"e":39,"d":43,"\u00e4":43,"\u00e1":43,"\u00e0":43,"a":43,"S":20,"Q":61,"\u00d6":61,"\u00d3":61,"\u00d2":61,"O":61,"G":63,"C":62}},"Y":{"d":"592,-503r-95,478v-1,5,-3,9,-7,13v-4,4,-10,8,-17,10v-7,2,-17,4,-28,6v-11,2,-25,2,-41,2v-17,0,-30,0,-41,-2v-11,-2,-19,-4,-25,-6v-6,-2,-10,-6,-12,-10v-2,-4,-3,-8,-2,-13r96,-478r-220,-730v-4,-15,-7,-26,-8,-35v-1,-9,2,-15,7,-20v5,-5,15,-8,27,-10v12,-2,30,-2,53,-2v18,0,33,1,44,2v11,1,20,3,27,6v7,3,11,7,14,12v3,5,6,12,9,21r103,355v12,41,23,82,32,120r27,119r2,0r73,-119r78,-119r245,-361v4,-7,8,-12,13,-17v5,-5,12,-8,20,-11v8,-3,18,-5,30,-6v12,-1,28,-2,48,-2v24,0,42,2,55,4v13,2,21,6,25,11v4,5,3,12,-1,21v-4,9,-10,19,-19,31","w":998,"k":{"-":117,"\/":126,"\u201d":-27,"\u2019":-27,".":203,":":122,";":122,",":194,"z":94,"y":63,"x":73,"w":62,"v":70,"\u00fc":99,"\u00fa":99,"\u00f9":99,"u":99,"t":44,"s":115,"r":99,"q":139,"p":99,"\u00f6":143,"\u00f3":143,"\u00f2":143,"o":143,"\u00f1":99,"n":99,"m":99,"j":33,"\u00ef":-53,"\u00ed":37,"\u00ec":-46,"i":24,"g":139,"f":53,"\u00e9":144,"\u00e8":144,"e":144,"d":139,"\u00e7":140,"c":140,"\u00e4":139,"\u00e1":139,"\u00e0":139,"a":139,"Z":10,"S":15,"Q":53,"\u00d6":53,"\u00d3":53,"\u00d2":53,"O":53,"J":93,"G":56,"C":57,"\u00c4":149,"\u00c1":149,"\u00c0":149,"A":149}},"Z":{"d":"998,-1294v13,0,24,4,32,12v8,8,12,18,12,31v0,8,-1,21,-4,38v-3,17,-7,32,-10,44v-2,6,-4,12,-6,17v-2,5,-6,11,-11,18r-17,24v-7,10,-17,22,-28,35r-774,930r625,0v9,0,15,3,18,9v3,6,5,13,5,24v0,4,0,9,-1,16v-1,7,-2,16,-3,24v-1,8,-4,16,-6,25v-2,9,-4,16,-8,23v-4,7,-9,14,-14,18v-5,4,-12,6,-19,6r-765,0v-16,0,-28,-5,-36,-14v-8,-9,-12,-19,-12,-32v0,-4,1,-10,2,-17v1,-7,2,-15,4,-23v2,-8,3,-16,5,-24v2,-8,4,-14,6,-19v2,-5,4,-9,7,-15v3,-6,6,-12,11,-19r17,-24v7,-9,16,-20,27,-32r774,-931r-584,0v-17,0,-25,-12,-25,-35v0,-3,0,-8,1,-15v1,-7,1,-15,3,-23v2,-8,4,-16,6,-25v2,-9,6,-16,10,-23v4,-7,9,-13,15,-17v6,-4,13,-6,20,-6r723,0","w":959,"k":{"-":44,"\u201d":-45,"\u2019":-45,"y":38,"w":39,"v":44,"q":19,"\u00f6":29,"\u00f3":29,"\u00f2":29,"o":29,"\u00ef":-49,"\u00ec":-19,"g":19,"\u00e9":23,"\u00e8":23,"e":23,"d":19,"\u00e7":20,"c":20,"\u00e4":19,"\u00e1":19,"\u00e0":19,"a":19,"Y":6,"W":5,"Q":25,"\u00d6":25,"\u00d3":25,"\u00d2":25,"O":25,"G":22,"C":24,"\u00c4":11,"\u00c1":11,"\u00c0":11,"A":11}},"a":{"d":"812,-25v-3,11,-10,19,-22,24v-12,5,-32,7,-60,7v-13,0,-24,-1,-33,-2v-9,-1,-16,-4,-21,-6v-5,-2,-9,-4,-11,-8v-2,-4,-2,-9,0,-15r33,-170v-9,21,-24,45,-47,70v-23,25,-50,49,-81,70v-31,21,-65,39,-103,53v-38,14,-77,21,-116,21v-53,0,-98,-9,-133,-28v-35,-19,-62,-43,-83,-74v-21,-31,-35,-65,-43,-104v-8,-39,-11,-78,-11,-119v0,-37,4,-80,11,-127v7,-47,18,-96,34,-145v16,-49,35,-97,60,-144v25,-47,56,-89,91,-126v35,-37,76,-66,123,-88v47,-22,100,-34,159,-34v59,0,111,12,153,36v42,24,80,57,113,99r19,-91v3,-11,10,-18,23,-23v13,-5,32,-7,59,-7v13,0,25,1,34,2v9,1,16,2,21,5v5,3,9,6,10,10v1,4,2,8,1,13xm781,-690v-31,-46,-65,-81,-101,-104v-36,-23,-78,-34,-123,-34v-36,0,-68,9,-97,26v-29,17,-56,39,-78,67v-22,28,-42,59,-58,95v-16,36,-30,73,-40,111v-10,38,-17,75,-22,112v-5,37,-8,70,-8,99v0,23,2,47,6,70v4,23,10,43,20,62v10,19,25,34,43,46v18,12,41,18,70,18v37,0,74,-10,111,-30v37,-20,71,-49,103,-85v32,-36,60,-78,85,-127v25,-49,43,-102,55,-161"},"\u00e0":{"d":"812,-25v-3,11,-10,19,-22,24v-12,5,-32,7,-60,7v-13,0,-24,-1,-33,-2v-9,-1,-16,-4,-21,-6v-5,-2,-9,-4,-11,-8v-2,-4,-2,-9,0,-15r33,-170v-9,21,-24,45,-47,70v-23,25,-50,49,-81,70v-31,21,-65,39,-103,53v-38,14,-77,21,-116,21v-53,0,-98,-9,-133,-28v-35,-19,-62,-43,-83,-74v-21,-31,-35,-65,-43,-104v-8,-39,-11,-78,-11,-119v0,-37,4,-80,11,-127v7,-47,18,-96,34,-145v16,-49,35,-97,60,-144v25,-47,56,-89,91,-126v35,-37,76,-66,123,-88v47,-22,100,-34,159,-34v59,0,111,12,153,36v42,24,80,57,113,99r19,-91v3,-11,10,-18,23,-23v13,-5,32,-7,59,-7v13,0,25,1,34,2v9,1,16,2,21,5v5,3,9,6,10,10v1,4,2,8,1,13xm781,-690v-31,-46,-65,-81,-101,-104v-36,-23,-78,-34,-123,-34v-36,0,-68,9,-97,26v-29,17,-56,39,-78,67v-22,28,-42,59,-58,95v-16,36,-30,73,-40,111v-10,38,-17,75,-22,112v-5,37,-8,70,-8,99v0,23,2,47,6,70v4,23,10,43,20,62v10,19,25,34,43,46v18,12,41,18,70,18v37,0,74,-10,111,-30v37,-20,71,-49,103,-85v32,-36,60,-78,85,-127v25,-49,43,-102,55,-161xm733,-1134v5,7,8,14,9,19v1,5,0,10,-4,13v-4,3,-11,6,-20,8v-9,2,-20,3,-35,3v-13,0,-24,0,-33,-1v-9,-1,-16,-2,-22,-4v-6,-2,-11,-6,-16,-10v-5,-4,-9,-10,-14,-17r-171,-233v-5,-6,-7,-12,-7,-18v0,-6,1,-10,6,-14v5,-4,14,-8,26,-10v12,-2,27,-4,46,-4v16,0,29,1,40,2v11,1,20,2,27,5v7,3,14,6,19,11v5,5,9,12,14,19"},"\u00e1":{"d":"706,-1123v-5,7,-10,12,-14,16v-4,4,-10,7,-16,9v-6,2,-13,5,-22,6v-9,1,-20,1,-33,1v-15,0,-26,-1,-35,-3v-9,-2,-15,-5,-18,-8v-3,-3,-4,-8,-3,-13v1,-5,4,-12,9,-19r154,-231v5,-7,10,-13,16,-18v6,-5,12,-8,20,-11v8,-3,17,-5,28,-6v11,-1,25,-2,42,-2v19,0,33,2,44,4v11,2,20,6,24,10v4,4,5,8,4,14v-1,6,-4,12,-9,18xm812,-25v-3,11,-10,19,-22,24v-12,5,-32,7,-60,7v-13,0,-24,-1,-33,-2v-9,-1,-16,-4,-21,-6v-5,-2,-9,-4,-11,-8v-2,-4,-2,-9,0,-15r33,-170v-9,21,-24,45,-47,70v-23,25,-50,49,-81,70v-31,21,-65,39,-103,53v-38,14,-77,21,-116,21v-53,0,-98,-9,-133,-28v-35,-19,-62,-43,-83,-74v-21,-31,-35,-65,-43,-104v-8,-39,-11,-78,-11,-119v0,-37,4,-80,11,-127v7,-47,18,-96,34,-145v16,-49,35,-97,60,-144v25,-47,56,-89,91,-126v35,-37,76,-66,123,-88v47,-22,100,-34,159,-34v59,0,111,12,153,36v42,24,80,57,113,99r19,-91v3,-11,10,-18,23,-23v13,-5,32,-7,59,-7v13,0,25,1,34,2v9,1,16,2,21,5v5,3,9,6,10,10v1,4,2,8,1,13xm781,-690v-31,-46,-65,-81,-101,-104v-36,-23,-78,-34,-123,-34v-36,0,-68,9,-97,26v-29,17,-56,39,-78,67v-22,28,-42,59,-58,95v-16,36,-30,73,-40,111v-10,38,-17,75,-22,112v-5,37,-8,70,-8,99v0,23,2,47,6,70v4,23,10,43,20,62v10,19,25,34,43,46v18,12,41,18,70,18v37,0,74,-10,111,-30v37,-20,71,-49,103,-85v32,-36,60,-78,85,-127v25,-49,43,-102,55,-161"},"\u00e4":{"d":"937,-1216v-3,18,-8,34,-13,46v-5,12,-12,21,-20,28v-8,7,-19,13,-32,16v-13,3,-28,4,-45,4v-17,0,-32,-1,-43,-4v-11,-3,-20,-9,-26,-16v-6,-7,-9,-16,-10,-28v-1,-12,0,-28,3,-46v3,-18,6,-33,11,-45v5,-12,12,-22,21,-29v9,-7,19,-13,31,-16v12,-3,28,-4,45,-4v17,0,32,1,43,4v11,3,20,9,26,16v6,7,11,17,12,29v1,12,0,27,-3,45xm583,-1216v-3,18,-7,34,-12,46v-5,12,-12,21,-21,28v-9,7,-19,13,-32,16v-13,3,-27,4,-44,4v-18,0,-33,-1,-44,-4v-11,-3,-20,-9,-26,-16v-6,-7,-9,-16,-10,-28v-1,-12,0,-28,3,-46v3,-18,6,-33,11,-45v5,-12,12,-22,21,-29v9,-7,19,-13,31,-16v12,-3,28,-4,45,-4v17,0,32,1,43,4v11,3,20,9,26,16v6,7,11,17,12,29v1,12,0,27,-3,45xm812,-25v-3,11,-10,19,-22,24v-12,5,-32,7,-60,7v-13,0,-24,-1,-33,-2v-9,-1,-16,-4,-21,-6v-5,-2,-9,-4,-11,-8v-2,-4,-2,-9,0,-15r33,-170v-9,21,-24,45,-47,70v-23,25,-50,49,-81,70v-31,21,-65,39,-103,53v-38,14,-77,21,-116,21v-53,0,-98,-9,-133,-28v-35,-19,-62,-43,-83,-74v-21,-31,-35,-65,-43,-104v-8,-39,-11,-78,-11,-119v0,-37,4,-80,11,-127v7,-47,18,-96,34,-145v16,-49,35,-97,60,-144v25,-47,56,-89,91,-126v35,-37,76,-66,123,-88v47,-22,100,-34,159,-34v59,0,111,12,153,36v42,24,80,57,113,99r19,-91v3,-11,10,-18,23,-23v13,-5,32,-7,59,-7v13,0,25,1,34,2v9,1,16,2,21,5v5,3,9,6,10,10v1,4,2,8,1,13xm781,-690v-31,-46,-65,-81,-101,-104v-36,-23,-78,-34,-123,-34v-36,0,-68,9,-97,26v-29,17,-56,39,-78,67v-22,28,-42,59,-58,95v-16,36,-30,73,-40,111v-10,38,-17,75,-22,112v-5,37,-8,70,-8,99v0,23,2,47,6,70v4,23,10,43,20,62v10,19,25,34,43,46v18,12,41,18,70,18v37,0,74,-10,111,-30v37,-20,71,-49,103,-85v32,-36,60,-78,85,-127v25,-49,43,-102,55,-161"},"b":{"d":"976,-644v0,40,-4,84,-11,132v-7,48,-19,97,-35,146v-16,49,-37,98,-62,144v-25,46,-54,86,-90,122v-36,36,-78,64,-124,86v-46,22,-98,33,-156,33v-60,0,-111,-11,-154,-34v-43,-23,-81,-55,-114,-98r-18,88v-1,11,-9,19,-22,24v-13,5,-32,7,-59,7v-28,0,-47,-3,-56,-8v-9,-5,-13,-13,-10,-23r266,-1336v1,-5,4,-10,7,-14v3,-4,7,-7,14,-10v7,-3,17,-5,28,-6v11,-1,24,-2,41,-2v16,0,29,1,39,2v10,1,18,3,24,6v6,3,10,6,11,10v1,4,2,9,1,14r-80,402v-3,17,-7,35,-12,54v-7,28,-6,27,-14,55v-5,18,-11,36,-16,52v-8,24,-7,25,-13,43v11,-23,28,-48,51,-73v23,-25,49,-47,80,-68v31,-21,65,-39,102,-53v37,-14,74,-21,111,-21v40,0,74,5,103,16v29,11,53,24,73,42v20,18,37,38,49,61v12,23,21,46,28,70v7,24,11,47,14,71v3,24,4,46,4,66xm803,-630v0,-18,-2,-39,-5,-62v-3,-23,-10,-45,-20,-65v-10,-20,-24,-37,-42,-51v-18,-14,-42,-20,-73,-20v-36,0,-73,10,-110,31v-37,21,-72,49,-104,85v-32,36,-60,79,-85,128v-25,49,-44,103,-55,161r-33,166v31,46,65,80,101,102v36,22,77,33,122,33v35,0,66,-8,94,-24v28,-16,53,-37,76,-64v23,-27,42,-58,59,-92v17,-34,31,-70,42,-108v11,-38,18,-75,24,-113v6,-38,9,-74,9,-107","k":{"\u201c":63,"\u2018":63,"z":29,"y":10,"x":41,"w":10,"v":10,"t":9,"s":10,"f":1}},"c":{"d":"854,-846v0,12,-2,24,-4,37v-2,13,-5,24,-10,35v-5,11,-10,21,-16,28v-6,7,-14,11,-22,11v-9,0,-19,-5,-29,-15v-10,-10,-23,-20,-39,-32v-16,-12,-37,-23,-62,-33v-25,-10,-57,-15,-96,-15v-43,0,-81,8,-114,26v-33,18,-62,42,-86,70v-24,28,-44,60,-60,96v-16,36,-29,72,-39,109v-10,37,-17,73,-21,107v-4,34,-7,64,-7,89v0,69,15,121,45,156v30,35,75,53,134,53v43,0,81,-5,112,-16v31,-11,56,-22,78,-36v22,-14,40,-26,54,-37v14,-11,26,-16,37,-16v5,0,10,2,13,7v3,5,4,13,4,22v0,8,-1,17,-2,28v-1,11,-3,22,-6,34v-3,12,-8,23,-12,33v-4,10,-10,19,-18,27v-8,8,-22,19,-42,31v-20,12,-44,23,-70,33v-26,10,-54,18,-85,24v-31,6,-62,9,-95,9v-107,0,-187,-27,-240,-82v-53,-55,-80,-136,-80,-244v0,-41,3,-85,10,-133v7,-48,19,-97,36,-146v17,-49,38,-97,64,-143v26,-46,58,-87,96,-123v38,-36,82,-64,132,-85v50,-21,107,-32,172,-32v27,0,52,3,77,7v25,4,47,10,69,17v22,7,42,16,60,27v18,11,30,21,40,30v10,9,16,16,18,22v2,6,4,13,4,20","w":852,"k":{"q":13,"\u00f6":17,"\u00f3":17,"\u00f2":17,"o":17,"g":13,"\u00e9":13,"\u00e8":13,"e":13,"d":13,"\u00e7":18,"c":18,"\u00e4":13,"\u00e1":13,"\u00e0":13,"a":13}},"\u00e7":{"d":"300,9v-69,-12,-124,-44,-164,-96v-40,-52,-60,-125,-60,-220v0,-41,3,-85,10,-133v7,-48,19,-97,36,-146v17,-49,38,-97,64,-143v26,-46,58,-87,96,-123v38,-36,82,-64,132,-85v50,-21,107,-32,172,-32v27,0,52,3,77,7v25,4,47,10,69,17v22,7,42,16,60,27v18,11,30,21,40,30v10,9,16,16,18,22v2,6,4,13,4,20v0,12,-2,24,-4,37v-2,13,-5,24,-10,35v-5,11,-10,21,-16,28v-6,7,-14,11,-22,11v-9,0,-19,-5,-29,-15v-10,-10,-23,-20,-39,-32v-16,-12,-37,-23,-62,-33v-25,-10,-57,-15,-96,-15v-43,0,-81,8,-114,26v-33,18,-62,42,-86,70v-24,28,-44,60,-60,96v-16,36,-29,72,-39,109v-10,37,-17,73,-21,107v-4,34,-7,64,-7,89v0,69,15,121,45,156v30,35,75,53,134,53v43,0,81,-5,112,-16v31,-11,56,-22,78,-36v22,-14,40,-26,54,-37v14,-11,26,-16,37,-16v5,0,10,2,13,7v3,5,4,13,4,22v0,8,-1,17,-2,28v-1,11,-3,22,-6,34v-3,12,-8,23,-12,33v-4,10,-10,19,-18,27v-8,8,-24,20,-46,34v-22,14,-51,26,-88,38v-37,12,-75,19,-113,22r15,58v6,22,11,40,14,56v3,16,4,31,4,45v0,33,-6,61,-16,85v-10,24,-25,44,-44,59v-19,15,-41,27,-68,35v-27,8,-58,11,-92,11v-17,0,-34,-1,-51,-2v-17,-1,-33,-3,-47,-6v-14,-3,-28,-6,-38,-9v-10,-3,-17,-5,-21,-8v-4,-2,-7,-5,-8,-8v-1,-3,-2,-8,-2,-14v0,-7,1,-14,2,-23v1,-9,4,-17,7,-25v3,-8,7,-14,12,-20v5,-6,12,-9,20,-9r123,0v11,0,21,-1,31,-3v10,-2,18,-7,26,-12v8,-5,14,-13,19,-22v5,-9,7,-20,7,-33v0,-7,0,-15,-2,-26r-6,-32","w":852,"k":{"q":13,"\u00f6":17,"\u00f3":17,"\u00f2":17,"o":17,"g":13,"\u00e9":13,"\u00e8":13,"e":13,"d":13,"\u00e7":18,"c":18,"\u00e4":13,"\u00e1":13,"\u00e0":13,"a":13}},"d":{"d":"813,-25v-2,11,-9,19,-21,24v-12,5,-32,7,-60,7v-14,0,-25,-1,-34,-2v-9,-1,-16,-4,-21,-6v-5,-2,-9,-4,-11,-8v-2,-4,-1,-9,0,-15r32,-168v-9,22,-24,46,-47,71v-23,25,-50,47,-81,68v-31,21,-65,38,-103,52v-38,14,-77,21,-116,21v-39,0,-74,-5,-103,-15v-29,-10,-52,-25,-72,-42v-20,-17,-36,-37,-48,-60v-12,-23,-23,-48,-30,-72v-7,-24,-12,-48,-14,-73v-2,-25,-3,-47,-3,-68v0,-39,4,-82,11,-130v7,-48,19,-97,35,-145v16,-48,36,-96,61,-142v25,-46,56,-86,91,-122v35,-36,77,-65,123,-87v46,-22,98,-33,157,-33v29,0,56,4,81,10v25,6,48,15,69,26v21,11,40,24,57,39v17,15,33,31,47,48r102,-510v1,-5,3,-9,6,-13v3,-4,8,-8,15,-10v7,-2,15,-4,26,-6v11,-2,24,-3,41,-3v16,0,29,1,39,3v10,2,19,4,25,6v6,2,9,6,11,10v2,4,2,8,1,13xm781,-687v-31,-46,-65,-81,-101,-105v-36,-24,-78,-36,-123,-36v-35,0,-67,8,-95,24v-28,16,-54,39,-77,66v-23,27,-43,59,-59,94v-16,35,-29,72,-40,110v-11,38,-19,74,-24,111v-5,37,-8,70,-8,101v0,65,11,114,33,148v22,34,57,52,106,52v37,0,74,-10,111,-30v37,-20,71,-48,103,-83v32,-35,60,-77,85,-126v25,-49,43,-102,55,-160"},"e":{"d":"925,-741v0,46,-11,87,-32,124v-21,37,-55,68,-100,94v-45,26,-103,46,-174,60v-71,14,-155,21,-254,21r-106,0v-5,22,-7,43,-9,64v-2,21,-3,40,-3,58v0,67,16,118,49,153v33,35,87,53,161,53v43,0,81,-4,115,-10v34,-6,63,-13,88,-20v25,-7,46,-14,62,-20v16,-6,27,-10,33,-10v6,0,10,2,13,6v3,4,5,11,5,19v0,7,-1,15,-2,24v-1,9,-3,19,-6,29v-3,10,-7,18,-11,27v-4,9,-9,16,-14,22v-8,8,-22,15,-42,23v-20,8,-45,16,-73,22v-28,6,-59,11,-92,15v-33,4,-67,6,-100,6v-59,0,-111,-7,-156,-20v-45,-13,-81,-33,-111,-61v-30,-28,-52,-63,-67,-104v-15,-41,-22,-90,-22,-146v0,-43,5,-90,13,-140v8,-50,21,-98,39,-147v18,-49,41,-95,70,-140v29,-45,63,-84,103,-118v40,-34,85,-61,137,-82v52,-21,111,-31,176,-31v56,0,104,7,143,21v39,14,71,32,96,54v25,22,43,46,54,73v11,27,17,54,17,81xm756,-726v0,-34,-13,-61,-40,-82v-27,-21,-65,-32,-114,-32v-43,0,-82,7,-115,22v-33,15,-63,36,-89,61v-26,25,-48,55,-66,89v-18,34,-33,69,-44,106r102,0v70,0,129,-4,176,-13v47,-9,84,-20,112,-35v28,-15,48,-33,60,-53v12,-20,18,-41,18,-63","w":978,"k":{"\u201c":43,"\u2018":43,"z":23,"y":13,"x":42,"w":12,"v":13,"t":11,"f":2}},"\u00e8":{"d":"925,-741v0,46,-11,87,-32,124v-21,37,-55,68,-100,94v-45,26,-103,46,-174,60v-71,14,-155,21,-254,21r-106,0v-5,22,-7,43,-9,64v-2,21,-3,40,-3,58v0,67,16,118,49,153v33,35,87,53,161,53v43,0,81,-4,115,-10v34,-6,63,-13,88,-20v25,-7,46,-14,62,-20v16,-6,27,-10,33,-10v6,0,10,2,13,6v3,4,5,11,5,19v0,7,-1,15,-2,24v-1,9,-3,19,-6,29v-3,10,-7,18,-11,27v-4,9,-9,16,-14,22v-8,8,-22,15,-42,23v-20,8,-45,16,-73,22v-28,6,-59,11,-92,15v-33,4,-67,6,-100,6v-59,0,-111,-7,-156,-20v-45,-13,-81,-33,-111,-61v-30,-28,-52,-63,-67,-104v-15,-41,-22,-90,-22,-146v0,-43,5,-90,13,-140v8,-50,21,-98,39,-147v18,-49,41,-95,70,-140v29,-45,63,-84,103,-118v40,-34,85,-61,137,-82v52,-21,111,-31,176,-31v56,0,104,7,143,21v39,14,71,32,96,54v25,22,43,46,54,73v11,27,17,54,17,81xm756,-726v0,-34,-13,-61,-40,-82v-27,-21,-65,-32,-114,-32v-43,0,-82,7,-115,22v-33,15,-63,36,-89,61v-26,25,-48,55,-66,89v-18,34,-33,69,-44,106r102,0v70,0,129,-4,176,-13v47,-9,84,-20,112,-35v28,-15,48,-33,60,-53v12,-20,18,-41,18,-63xm723,-1134v5,7,8,14,9,19v1,5,0,10,-4,13v-4,3,-11,6,-20,8v-9,2,-20,3,-35,3v-13,0,-24,0,-33,-1v-9,-1,-16,-2,-22,-4v-6,-2,-11,-6,-16,-10v-5,-4,-9,-10,-14,-17r-171,-233v-5,-6,-7,-12,-7,-18v0,-6,1,-10,6,-14v5,-4,14,-8,26,-10v12,-2,27,-4,46,-4v16,0,29,1,40,2v11,1,20,2,27,5v7,3,14,6,19,