/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var
window=this,undefined,_jQuery=window.jQuery,_$=window.$,jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);},quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;this.context=selector;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&&elem.id!=match[3])
return jQuery().find(selector);var ret=jQuery(elem||[]);ret.context=document;ret.selector=selector;return ret;}}else
return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))
return jQuery(document).ready(selector);if(selector.selector&&selector.context){this.selector=selector.selector;this.context=selector.context;}
return this.setArray(jQuery.isArray(selector)?selector:jQuery.makeArray(selector));},selector:"",jquery:"1.3.2",size:function(){return this.length;},get:function(num){return num===undefined?Array.prototype.slice.call(this):this[num];},pushStack:function(elems,name,selector){var ret=jQuery(elems);ret.prevObject=this;ret.context=this.context;if(name==="find")
ret.selector=this.selector+(this.selector?" ":"")+selector;else if(name)
ret.selector=this.selector+"."+name+"("+selector+")";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){return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(typeof name==="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]){var wrap=jQuery(html,this[0].ownerDocument).clone();if(this[0].parentNode)
wrap.insertBefore(this[0]);wrap.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,function(elem){if(this.nodeType==1)
this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1)
this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},push:[].push,sort:[].sort,splice:[].splice,find:function(selector){if(this.length===1){var ret=this.pushStack([],"find",selector);ret.length=0;jQuery.find(selector,this[0],ret);return ret;}else{return this.pushStack(jQuery.unique(jQuery.map(this,function(elem){return jQuery.find(selector,elem);})),"find",selector);}},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML;if(!html){var div=this.ownerDocument.createElement("div");div.appendChild(this.cloneNode(true));html=div.innerHTML;}
return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0];}else
return this.cloneNode(true);});if(events===true){var orig=this.find("*").andSelf(),i=0;ret.find("*").andSelf().each(function(){if(this.nodeName!==orig[i].nodeName)
return;var events=jQuery.data(orig[i],"events");for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data);}}
i++;});}
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,jQuery.grep(this,function(elem){return elem.nodeType===1;})),"filter",selector);},closest:function(selector){var pos=jQuery.expr.match.POS.test(selector)?jQuery(selector):null,closer=0;return this.map(function(){var cur=this;while(cur&&cur.ownerDocument){if(pos?pos.index(cur)>-1:jQuery(cur).is(selector)){jQuery.data(cur,"closest",closer);return cur;}
cur=cur.parentNode;closer++;}});},not:function(selector){if(typeof selector==="string")
if(isSimple.test(selector))
return this.pushStack(jQuery.multiFilter(selector,this,true),"not",selector);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!!selector&&this.is("."+selector);},val:function(value){if(value===undefined){var elem=this[0];if(elem){if(jQuery.nodeName(elem,'option'))
return(elem.attributes.value||{}).specified?elem.value:elem.text;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(option).val();if(one)
return value;values.push(value);}}
return values;}
return(elem.value||"").replace(/\r/g,"");}
return undefined;}
if(typeof value==="number")
value+='';return this.each(function(){if(this.nodeType!=1)
return;if(jQuery.isArray(value)&&/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.replace(/ jQuery\d+="(?:\d+|null)"/g,""):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),"slice",Array.prototype.slice.call(arguments).join(","));},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);},domManip:function(args,table,callback){if(this[0]){var fragment=(this[0].ownerDocument||this[0]).createDocumentFragment(),scripts=jQuery.clean(args,(this[0].ownerDocument||this[0]),fragment),first=fragment.firstChild;if(first)
for(var i=0,l=this.length;i<l;i++)
callback.call(root(this[i],first),this.length>1||i>0?fragment.cloneNode(true):fragment);if(scripts)
jQuery.each(scripts,evalScript);}
return this;function root(elem,cur){return table&&jQuery.nodeName(elem,"table")&&jQuery.nodeName(cur,"tr")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem;}}};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(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2;}
if(typeof target!=="object"&&!jQuery.isFunction(target))
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 exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{},toString=Object.prototype.toString;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)
window.jQuery=_jQuery;return jQuery;},isFunction:function(obj){return toString.call(obj)==="[object Function]";},isArray:function(obj){return toString.call(obj)==="[object Array]";},isXMLDoc:function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&jQuery.isXMLDoc(elem.ownerDocument);},globalEval:function(data){if(data&&/\S/.test(data)){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.support.scriptEval)
script.appendChild(document.createTextNode(data));else
script.text=data;head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},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 typeof value==="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 elem&&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,extra){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;if(extra==="border")
return;jQuery.each(which,function(){if(!extra)
val-=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;if(extra==="margin")
val+=parseFloat(jQuery.curCSS(elem,"margin"+this,true))||0;else
val-=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});}
if(elem.offsetWidth!==0)
getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,Math.round(val));}
return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style;if(name=="opacity"&&!jQuery.support.opacity){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}
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)
ret=computedStyle.getPropertyValue(name);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,fragment){context=context||document;if(typeof context.createElement==="undefined")
context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;if(!fragment&&elems.length===1&&typeof elems[0]==="string"){var match=/^<(\w+)\s*\/?>$/.exec(elems[0]);if(match)
return[context.createElement(match[1])];}
var ret=[],scripts=[],div=context.createElement("div");jQuery.each(elems,function(i,elem){if(typeof elem==="number")
elem+='';if(!elem)
return;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=elem.replace(/^\s+/,"").substring(0,10).toLowerCase();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.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)
div=div.lastChild;if(!jQuery.support.tbody){var hasBody=/<tbody/i.test(elem),tbody=!tags.indexOf("<table")&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&!hasBody?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(!jQuery.support.leadingWhitespace&&/^\s/.test(elem))
div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);elem=jQuery.makeArray(div.childNodes);}
if(elem.nodeType)
ret.push(elem);else
ret=jQuery.merge(ret,elem);});if(fragment){for(var i=0;ret[i];i++){if(jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i]);}else{if(ret[i].nodeType===1)
ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))));fragment.appendChild(ret[i]);}}
return scripts;}
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;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&elem.parentNode)
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;if(name=="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?attributeNode.value:elem.nodeName.match(/(button|input|object|select|textarea)/i)?0:elem.nodeName.match(/^(a|area)$/i)&&elem.href?0:undefined;}
return elem[name];}
if(!jQuery.support.style&&notxml&&name=="style")
return jQuery.attr(elem.style,"cssText",value);if(set)
elem.setAttribute(name,""+value);var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}
if(!jQuery.support.opacity&&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||typeof array==="string"||jQuery.isFunction(array)||array.setInterval)
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.support.getAll){while((elem=second[i++])!=null)
if(elem.nodeType!=8)
first[pos++]=elem;}else
while((elem=second[i++])!=null)
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.]+)/)||[0,'0'])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};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),name,selector);};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector);for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery.fn[original].apply(jQuery(insert[i]),elems);ret=ret.concat(elems);}
return this.pushStack(ret,name,selector);};});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,state){if(typeof state!=="boolean")
state=!jQuery.className.has(this,classNames);jQuery.className[state?"add":"remove"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).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).children().remove();while(this.firstChild)
this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}
var expando="jQuery"+now(),uuid=0,windowData={};jQuery.extend({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];}},queue:function(elem,type,data){if(elem){type=(type||"fx")+"queue";var q=jQuery.data(elem,type);if(!q||jQuery.isArray(data))
q=jQuery.data(elem,type,jQuery.makeArray(data));else if(data)
q.push(data);}
return q;},dequeue:function(elem,type){var queue=jQuery.queue(elem,type),fn=queue.shift();if(!type||type==="fx")
fn=queue[0];if(fn!==undefined)
fn.call(elem);}});jQuery.fn.extend({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);});},queue:function(type,data){if(typeof type!=="string"){data=type;type="fx";}
if(data===undefined)
return jQuery.queue(this[0],type);return this.each(function(){var queue=jQuery.queue(this,type,data);if(type=="fx"&&queue.length==1)
queue[0].call(this);});},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type);});}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,done=0,toString=Object.prototype.toString;var Sizzle=function(selector,context,results,seed){results=results||[];context=context||document;if(context.nodeType!==1&&context.nodeType!==9)
return[];if(!selector||typeof selector!=="string"){return results;}
var parts=[],m,set,checkSet,check,mode,extra,prune=true;chunker.lastIndex=0;while((m=chunker.exec(selector))!==null){parts.push(m[1]);if(m[2]){extra=RegExp.rightContext;break;}}
if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context);}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector])
selector+=parts.shift();set=posProcess(selector,set);}}}else{var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&context.parentNode?context.parentNode:context,isXML(context));set=Sizzle.filter(ret.expr,ret.set);if(parts.length>0){checkSet=makeArray(set);}else{prune=false;}
while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur="";}else{pop=parts.pop();}
if(pop==null){pop=context;}
Expr.relative[cur](checkSet,pop,isXML(context));}}
if(!checkSet){checkSet=set;}
if(!checkSet){throw"Syntax error, unrecognized expression: "+(cur||selector);}
if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else if(context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i]);}}}}else{makeArray(checkSet,results);}
if(extra){Sizzle(extra,context,results,seed);if(sortOrder){hasDuplicate=false;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1);}}}}}
return results;};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set);};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[];}
for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.match[type].exec(expr))){var left=RegExp.leftContext;if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}}
if(!set){set=context.getElementsByTagName("*");}
return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.match[type].exec(expr))!=null){var filter=Expr.filter[type],found,item;anyFound=false;if(curLoop==result){result=[];}
if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true;}else if(match===true){continue;}}
if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true;}else{curLoop[i]=false;}}else if(pass){result.push(item);anyFound=true;}}}}
if(found!==undefined){if(!inplace){curLoop=result;}
expr=expr.replace(Expr.match[type],"");if(!anyFound){return[];}
break;}}}
if(expr==old){if(anyFound==null){throw"Syntax error, unrecognized expression: "+expr;}else{break;}}
old=expr;}
return curLoop;};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href");}},relative:{"+":function(checkSet,part,isXML){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag&&!isXML){part=part.toUpperCase();}
for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}
checkSet[i]=isPartStrNotTag||elem&&elem.nodeName===part?elem||false:elem===part;}}
if(isPartStrNotTag){Sizzle.filter(part,checkSet,true);}},">":function(checkSet,part,isXML){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=isXML?part:part.toUpperCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName===part?parent:false;}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part;}}
if(isPartStr){Sizzle.filter(part,checkSet,true);}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML);}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[];}},NAME:function(match,context,isXML){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i]);}}
return ret.length===0?null:ret;}},TAG:function(match,context){return context.getElementsByTagName(match[1]);}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match;}
for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").indexOf(match)>=0)){if(!inplace)
result.push(elem);}else if(inplace){curLoop[i]=false;}}}
return false;},ID:function(match){return match[1].replace(/\\/g,"");},TAG:function(match,curLoop){for(var i=0;curLoop[i]===false;i++){}
return curLoop[i]&&isXML(curLoop[i])?match[1]:match[1].toUpperCase();},CHILD:function(match){if(match[1]=="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]=="even"&&"2n"||match[2]=="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0;}
match[0]=done++;return match;},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name];}
if(match[2]==="~="){match[4]=" "+match[4]+" ";}
return match;},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if(match[3].match(chunker).length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop);}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret);}
return false;}}else if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true;}
return match;},POS:function(match){match.unshift(true);return match;}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden";},disabled:function(elem){return elem.disabled===true;},checked:function(elem){return elem.checked===true;},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true;},parent:function(elem){return!!elem.firstChild;},empty:function(elem){return!elem.firstChild;},has:function(elem,i,match){return!!Sizzle(match[3],elem).length;},header:function(elem){return /h\d/i.test(elem.nodeName);},text:function(elem){return"text"===elem.type;},radio:function(elem){return"radio"===elem.type;},checkbox:function(elem){return"checkbox"===elem.type;},file:function(elem){return"file"===elem.type;},password:function(elem){return"password"===elem.type;},submit:function(elem){return"submit"===elem.type;},image:function(elem){return"image"===elem.type;},reset:function(elem){return"reset"===elem.type;},button:function(elem){return"button"===elem.type||elem.nodeName.toUpperCase()==="BUTTON";},input:function(elem){return /input|select|textarea|button/i.test(elem.nodeName);}},setFilters:{first:function(elem,i){return i===0;},last:function(elem,i,match,array){return i===array.length-1;},even:function(elem,i){return i%2===0;},odd:function(elem,i){return i%2===1;},lt:function(elem,i,match){return i<match[3]-0;},gt:function(elem,i,match){return i>match[3]-0;},nth:function(elem,i,match){return match[3]-0==i;},eq:function(elem,i,match){return match[3]-0==i;}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array);}else if(name==="contains"){return(elem.textContent||elem.innerText||"").indexOf(match[3])>=0;}else if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false;}}
return true;}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case'only':case'first':while(node=node.previousSibling){if(node.nodeType===1)return false;}
if(type=='first')return true;node=elem;case'last':while(node=node.nextSibling){if(node.nodeType===1)return false;}
return true;case'nth':var first=match[2],last=match[3];if(first==1&&last==0){return true;}
var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count;}}
parent.sizcache=doneName;}
var diff=elem.nodeIndex-last;if(first==0){return diff==0;}else{return(diff%first==0&&diff/first>=0);}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match;},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName===match;},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1;},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!=check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false;},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array);}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);}
var makeArray=function(array,results){array=Array.prototype.slice.call(array);if(results){results.push.apply(results,array);return results;}
return array;};try{Array.prototype.slice.call(document.documentElement.childNodes);}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i]);}}else{for(var i=0;array[i];i++){ret.push(array[i]);}}}
return ret;};}
var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true;}
return ret;};}else if("sourceIndex"in document.documentElement){sortOrder=function(a,b){var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true;}
return ret;};}else if(document.createRange){sortOrder=function(a,b){var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.selectNode(a);aRange.collapse(true);bRange.selectNode(b);bRange.collapse(true);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true;}
return ret;};}
(function(){var form=document.createElement("form"),id="script"+(new Date).getTime();form.innerHTML="<input name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(!!document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[];}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match;};}
root.removeChild(form);})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i]);}}
results=tmp;}
return results;};}
div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2);};}})();if(document.querySelectorAll)(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return;}
Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra);}catch(e){}}
return oldSizzle(query,context,extra,seed);};Sizzle.find=oldSizzle.find;Sizzle.filter=oldSizzle.filter;Sizzle.selectors=oldSizzle.selectors;Sizzle.matches=oldSizzle.matches;})();if(document.getElementsByClassName&&document.documentElement.getElementsByClassName)(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(div.getElementsByClassName("e").length===0)
return;div.lastChild.className="e";if(div.getElementsByClassName("e").length===1)
return;Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1]);}};})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;}
elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(elem.nodeName===cur){match=elem;break;}
elem=elem[dir];}
checkSet[i]=match;}}}
function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;}
elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(typeof cur!=="string"){if(elem===cur){match=true;break;}}else if(Sizzle.filter(cur,[elem]).length>0){match=elem;break;}}
elem=elem[dir];}
checkSet[i]=match;}}}
var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16;}:function(a,b){return a!==b&&(a.contains?a.contains(b):true);};var isXML=function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&isXML(elem.ownerDocument);};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"");}
selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet);}
return Sizzle.filter(later,tmpSet);};jQuery.find=Sizzle;jQuery.filter=Sizzle.filter;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;Sizzle.selectors.filters.hidden=function(elem){return elem.offsetWidth===0||elem.offsetHeight===0;};Sizzle.selectors.filters.visible=function(elem){return elem.offsetWidth>0||elem.offsetHeight>0;};Sizzle.selectors.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem;}).length;};jQuery.multiFilter=function(expr,elems,not){if(not){expr=":not("+expr+")";}
return Sizzle.matches(expr,elems);};jQuery.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;};jQuery.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;};jQuery.sibling=function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem)
r.push(n);}
return r;};return;window.Sizzle=Sizzle;})();jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)
return;if(elem.setInterval&&elem!=window)
elem=window;if(!handler.guid)
handler.guid=this.guid++;if(data!==undefined){var fn=handler;handler=this.proxy(fn);handler.data=data;}
var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(arguments.callee.elem,arguments):undefined;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();handler.type=namespaces.slice().sort().join(".");var handlers=events[type];if(jQuery.event.specialAll[type])
jQuery.event.specialAll[type].setup.call(elem,data,namespaces);if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem,data,namespaces)===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 namespaces=type.split(".");type=namespaces.shift();var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");if(events[type]){if(handler)
delete events[type][handler.guid];else
for(var handle in events[type])
if(namespace.test(events[type][handle].type))
delete events[type][handle];if(jQuery.event.specialAll[type])
jQuery.event.specialAll[type].teardown.call(elem,namespaces);for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem,namespaces)===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(event,data,elem,bubbling){var type=event.type||event;if(!bubbling){event=typeof event==="object"?event[expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true;}
if(!elem){event.stopPropagation();if(this.global[type])
jQuery.each(jQuery.cache,function(){if(this.events&&this.events[type])
jQuery.event.trigger(event,data,this.handle.elem);});}
if(!elem||elem.nodeType==3||elem.nodeType==8)
return undefined;event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event);}
event.currentTarget=elem;var handle=jQuery.data(elem,"handle");if(handle)
handle.apply(elem,data);if((!elem[type]||(jQuery.nodeName(elem,'a')&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)
event.result=false;if(!bubbling&&elem[type]&&!event.isDefaultPrevented()&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}
this.triggered=false;if(!event.isPropagationStopped()){var parent=elem.parentNode||elem.ownerDocument;if(parent)
jQuery.event.trigger(event,data,parent,true);}},handle:function(event){var all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;var namespaces=event.type.split(".");event.type=namespaces.shift();all=!namespaces.length&&!event.exclusive;var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||namespace.test(handler.type)){event.handler=handler;event.data=handler.data;var ret=handler.apply(this,arguments);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}
if(event.isImmediatePropagationStopped())
break;}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[expando])
return event;var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop];}
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=proxy||function(){return fn.apply(this,arguments);};proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:bindReady,teardown:function(){}}},specialAll:{live:{setup:function(selector,namespaces){jQuery.event.add(this,namespaces[0],liveHandler);},teardown:function(namespaces){if(namespaces.length){var remove=0,name=RegExp("(^|\\.)"+namespaces[0]+"(\\.|$)");jQuery.each((jQuery.data(this,"events").live||{}),function(){if(name.test(this.type))
remove++;});if(remove<1)
jQuery.event.remove(this,namespaces[0],liveHandler);}}}}};jQuery.Event=function(src){if(!this.preventDefault)
return new jQuery.Event(src);if(src&&src.type){this.originalEvent=src;this.type=src.type;}else
this.type=src;this.timeStamp=now();this[expando]=true;};function returnFalse(){return false;}
function returnTrue(){return true;}
jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e)
return;if(e.preventDefault)
e.preventDefault();e.returnValue=false;},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e)
return;if(e.stopPropagation)
e.stopPropagation();e.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation();},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;while(parent&&parent!=this)
try{parent=parent.parentNode;}
catch(e){parent=this;}
if(parent!=this){event.type=event.data;jQuery.event.handle.apply(this,arguments);}};jQuery.each({mouseover:'mouseenter',mouseout:'mouseleave'},function(orig,fix){jQuery.event.special[fix]={setup:function(){jQuery.event.add(this,orig,withinElement,fix);},teardown:function(){jQuery.event.remove(this,orig,withinElement);}};});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){return this.each(function(){jQuery.event.trigger(type,data,this);});},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result;}},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.mouseenter(fnOver).mouseleave(fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)
fn.call(document,jQuery);else
jQuery.readyList.push(fn);return this;},live:function(type,fn){var proxy=jQuery.event.proxy(fn);proxy.guid+=this.selector+type;jQuery(document).bind(liveConvert(type,this.selector),this.selector,proxy);return this;},die:function(type,fn){jQuery(document).unbind(liveConvert(type,this.selector),fn?{guid:fn.guid+this.selector+type}:null);return this;}});function liveHandler(event){var check=RegExp("(^|\\.)"+event.type+"(\\.|$)"),stop=true,elems=[];jQuery.each(jQuery.data(this,"events").live||[],function(i,fn){if(check.test(fn.type)){var elem=jQuery(event.target).closest(fn.data)[0];if(elem)
elems.push({elem:elem,fn:fn});}});elems.sort(function(a,b){return jQuery.data(a.elem,"closest")-jQuery.data(b.elem,"closest");});jQuery.each(elems,function(){if(this.fn.call(this.elem,event,this.fn.data)===false)
return(stop=false);});return stop;}
function liveConvert(type,selector){return["live",type,selector.replace(/\./g,"`").replace(/ /g,"|")].join(".");}
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);});jQuery.readyList=null;}
jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);jQuery.ready();},false);}else if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);jQuery.ready();}});if(document.documentElement.doScroll&&window==window.top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){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,mouseenter,mouseleave,"+"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);};});jQuery(window).bind('unload',function(){for(var id in jQuery.cache)
if(id!=1&&jQuery.cache[id].handle)
jQuery.event.remove(jQuery.cache[id].handle.elem);});(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+(new Date).getTime();div.style.display="none";div.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return;}
jQuery.support={leadingWhitespace:div.firstChild.nodeType==3,tbody:!div.getElementsByTagName("tbody").length,objectAll:!!div.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:a.style.opacity==="0.5",cssFloat:!!a.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};script.type="text/javascript";try{script.appendChild(document.createTextNode("window."+id+"=1;"));}catch(e){}
root.insertBefore(script,root.firstChild);if(window[id]){jQuery.support.scriptEval=true;delete window[id];}
root.removeChild(script);if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",arguments.callee);});div.cloneNode(true).fireEvent("onclick");}
jQuery(function(){var div=document.createElement("div");div.style.width=div.style.paddingLeft="1px";document.body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;document.body.removeChild(div).style.display='none';});})();var styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat";jQuery.props={"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};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);}
var type="GET";if(params)
if(jQuery.isFunction(params)){callback=params;params=null;}else if(typeof params==="object"){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);if(callback)
self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?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",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(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 parts=/^(\w+:)?\/\/([^\/?#]+)/.exec(s.url);if(s.dataType=="script"&&type=="GET"&&parts&&(parts[1]&&parts[1]!=location.protocol||parts[2]!=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();script.onload=script.onreadystatechange=null;head.removeChild(script);}};}
head.appendChild(script);return undefined;}
var requestDone=false;var xhr=s.xhr();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){if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");xhr.abort();return false;}
if(s.global)
jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(xhr.readyState==0){if(ival){clearInterval(ival);ival=null;if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");}}else 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);}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(isTimeout)
xhr.abort();if(s.async)
xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)
setTimeout(function(){if(xhr&&!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;}catch(e){}
return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url];}catch(e){}
return false;},httpData:function(xhr,type,s){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(s&&s.dataFilter)
data=s.dataFilter(data,type);if(typeof data==="string"){if(type=="script")
jQuery.globalEval(data);if(type=="json")
data=window["eval"]("("+data+")");}
return data;},param:function(a){var s=[];function add(key,value){s[s.length]=encodeURIComponent(key)+'='+encodeURIComponent(value);};if(jQuery.isArray(a)||a.jquery)
jQuery.each(a,function(){add(this.name,this.value);});else
for(var j in a)
if(jQuery.isArray(a[j]))
jQuery.each(a[j],function(){add(j,this);});else
add(j,jQuery.isFunction(a[j])?a[j]():a[j]);return s.join("&").replace(/%20/g,"+");}});var elemdisplay={},timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;}
jQuery.fn.extend({show:function(speed,callback){if(speed){return this.animate(genFx("show",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");this[i].style.display=old||"";if(jQuery.css(this[i],"display")==="none"){var tagName=this[i].tagName,display;if(elemdisplay[tagName]){display=elemdisplay[tagName];}else{var elem=jQuery("<"+tagName+" />").appendTo("body");display=elem.css("display");if(display==="none")
display="block";elem.remove();elemdisplay[tagName]=display;}
jQuery.data(this[i],"olddisplay",display);}}
for(var i=0,l=this.length;i<l;i++){this[i].style.display=jQuery.data(this[i],"olddisplay")||"";}
return this;}},hide:function(speed,callback){if(speed){return this.animate(genFx("hide",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");if(!old&&old!=="none")
jQuery.data(this[i],"olddisplay",jQuery.css(this[i],"display"));}
for(var i=0,l=this.length;i<l;i++){this[i].style.display="none";}
return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn==null||bool?this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]();}):this.animate(genFx("toggle",3),fn,fn2);},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(){var opt=jQuery.extend({},optall),p,hidden=this.nodeType==1&&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")&&this.style){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;});},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;}});jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(name,props){jQuery.fn[name]=function(speed,callback){return this.animate(props,speed,callback);};});jQuery.extend({speed:function(speed,easing,fn){var opt=typeof speed==="object"?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:jQuery.fx.speeds[opt.duration]||jQuery.fx.speeds._default;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:[],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)
this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&(!this.elem.style||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;var self=this;function t(gotoEnd){return self.step(gotoEnd);}
t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){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(timerId);timerId=undefined;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());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)
jQuery(this.elem).hide();if(this.options.hide||this.options.show)
for(var p in this.options.curAnim)
jQuery.attr(this.elem.style,p,this.options.orig[p]);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,_default:400},step:{opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null)
fx.elem.style[fx.prop]=fx.now+fx.unit;else
fx.elem[fx.prop]=fx.now;}}});if(document.documentElement["getBoundingClientRect"])
jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);var box=this[0].getBoundingClientRect(),doc=this[0].ownerDocument,body=doc.body,docElem=doc.documentElement,clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,top=box.top+(self.pageYOffset||jQuery.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;return{top:top,left:left};};else
jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);jQuery.offset.initialized||jQuery.offset.initialize();var elem=this[0],offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView.getComputedStyle(elem,null),top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){computedStyle=defaultView.getComputedStyle(elem,null);top-=elem.scrollTop,left-=elem.scrollLeft;if(elem===offsetParent){top+=elem.offsetTop,left+=elem.offsetLeft;if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(elem.tagName)))
top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevOffsetParent=offsetParent,offsetParent=elem.offsetParent;}
if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible")
top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevComputedStyle=computedStyle;}
if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static")
top+=body.offsetTop,left+=body.offsetLeft;if(prevComputedStyle.position==="fixed")
top+=Math.max(docElem.scrollTop,body.scrollTop),left+=Math.max(docElem.scrollLeft,body.scrollLeft);return{top:top,left:left};};jQuery.offset={initialize:function(){if(this.initialized)return;var body=document.body,container=document.createElement('div'),innerDiv,checkDiv,table,td,rules,prop,bodyMarginTop=body.style.marginTop,html='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';rules={position:'absolute',top:0,left:0,margin:0,border:0,width:'1px',height:'1px',visibility:'hidden'};for(prop in rules)container.style[prop]=rules[prop];container.innerHTML=html;body.insertBefore(container,body.firstChild);innerDiv=container.firstChild,checkDiv=innerDiv.firstChild,td=innerDiv.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(checkDiv.offsetTop!==5);this.doesAddBorderForTableAndCells=(td.offsetTop===5);innerDiv.style.overflow='hidden',innerDiv.style.position='relative';this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);body.style.marginTop='1px';this.doesNotIncludeMarginInBodyOffset=(body.offsetTop===0);body.style.marginTop=bodyMarginTop;body.removeChild(container);this.initialized=true;},bodyOffset:function(body){jQuery.offset.initialized||jQuery.offset.initialize();var top=body.offsetTop,left=body.offsetLeft;if(jQuery.offset.doesNotIncludeMarginInBodyOffset)
top+=parseInt(jQuery.curCSS(body,'marginTop',true),10)||0,left+=parseInt(jQuery.curCSS(body,'marginLeft',true),10)||0;return{top:top,left:left};}};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||document.body;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 null;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",lower=name.toLowerCase();jQuery.fn["inner"+name]=function(){return this[0]?jQuery.css(this[0],lower,false,"padding"):null;};jQuery.fn["outer"+name]=function(margin){return this[0]?jQuery.css(this[0],lower,false,margin?"margin":"border"):null;};var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(document.documentElement["client"+name],document.body["scroll"+name],document.documentElement["scroll"+name],document.body["offset"+name],document.documentElement["offset"+name]):size===undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,typeof size==="string"?size:size+"px");};});})();;(function($){$.fn.ajaxSubmit=function(options){if(typeof options=='function')
options={success:options};options=$.extend({url:this.attr('action')||window.location.toString(),type:this.attr('method')||'GET'},options||{});var veto={};this.trigger('form-pre-serialize',[this,options,veto]);if(veto.veto)return this;var a=this.formToArray(options.semantic);if(options.data){options.extraData=options.data;for(var n in options.data)
a.push({name:n,value:options.data[n]});}
if(options.beforeSubmit&&options.beforeSubmit(a,this,options)===false)return this;this.trigger('form-submit-validate',[a,this,options,veto]);if(veto.veto)return this;var q=$.param(a);if(options.type.toUpperCase()=='GET'){options.url+=(options.url.indexOf('?')>=0?'&':'?')+q;options.data=null;}
else
options.data=q;var $form=this,callbacks=[];if(options.resetForm)callbacks.push(function(){$form.resetForm();});if(options.clearForm)callbacks.push(function(){$form.clearForm();});if(!options.dataType&&options.target){var oldSuccess=options.success||function(){};callbacks.push(function(data){$(options.target).html(data).each(oldSuccess,arguments);});}
else if(options.success)
callbacks.push(options.success);options.success=function(data,status){for(var i=0,max=callbacks.length;i<max;i++)
callbacks[i](data,status,$form);};var files=$('input:file',this).fieldValue();var found=false;for(var j=0;j<files.length;j++)
if(files[j])
found=true;if(options.iframe||found){if($.browser.safari&&options.closeKeepAlive)
$.get(options.closeKeepAlive,fileUpload);else
fileUpload();}
else
$.ajax(options);this.trigger('form-submit-notify',[this,options]);return this;function fileUpload(){var form=$form[0];var opts=$.extend({},$.ajaxSettings,options);var id='jqFormIO'+(new Date().getTime());var $io=$('<iframe id="'+id+'" name="'+id+'" />');var io=$io[0];var op8=$.browser.opera&&window.opera.version()<9;if($.browser.msie||op8)io.src='javascript:false;document.write("");';$io.css({position:'absolute',top:'-1000px',left:'-1000px'});var xhr={responseText:null,responseXML:null,status:0,statusText:'n/a',getAllResponseHeaders:function(){},getResponseHeader:function(){},setRequestHeader:function(){}};var g=opts.global;if(g&&!$.active++)$.event.trigger("ajaxStart");if(g)$.event.trigger("ajaxSend",[xhr,opts]);var cbInvoked=0;var timedOut=0;setTimeout(function(){var t=$form.attr('target'),a=$form.attr('action');$form.attr({target:id,encoding:'multipart/form-data',enctype:'multipart/form-data',method:'POST',action:opts.url});if(opts.timeout)
setTimeout(function(){timedOut=true;cb();},opts.timeout);var extraInputs=[];try{if(options.extraData)
for(var n in options.extraData)
extraInputs.push($('<input type="hidden" name="'+n+'" value="'+options.extraData[n]+'" />').appendTo(form)[0]);$io.appendTo('body');io.attachEvent?io.attachEvent('onload',cb):io.addEventListener('load',cb,false);form.submit();}
finally{$form.attr('action',a);t?$form.attr('target',t):$form.removeAttr('target');$(extraInputs).remove();}},10);function cb(){if(cbInvoked++)return;io.detachEvent?io.detachEvent('onload',cb):io.removeEventListener('load',cb,false);var ok=true;try{if(timedOut)throw'timeout';var data,doc;doc=io.contentWindow?io.contentWindow.document:io.contentDocument?io.contentDocument:io.document;xhr.responseText=doc.body?doc.body.innerHTML:null;xhr.responseXML=doc.XMLDocument?doc.XMLDocument:doc;xhr.getResponseHeader=function(header){var headers={'content-type':opts.dataType};return headers[header];};if(opts.dataType=='json'||opts.dataType=='script'){var ta=doc.getElementsByTagName('textarea')[0];xhr.responseText=ta?ta.value:xhr.responseText;}
else if(opts.dataType=='xml'&&!xhr.responseXML&&xhr.responseText!=null){xhr.responseXML=toXml(xhr.responseText);}
data=$.httpData(xhr,opts.dataType);}
catch(e){ok=false;$.handleError(opts,xhr,'error',e);}
if(ok){opts.success(data,'success');if(g)$.event.trigger("ajaxSuccess",[xhr,opts]);}
if(g)$.event.trigger("ajaxComplete",[xhr,opts]);if(g&&!--$.active)$.event.trigger("ajaxStop");if(opts.complete)opts.complete(xhr,ok?'success':'error');setTimeout(function(){$io.remove();xhr.responseXML=null;},100);};function toXml(s,doc){if(window.ActiveXObject){doc=new ActiveXObject('Microsoft.XMLDOM');doc.async='false';doc.loadXML(s);}
else
doc=(new DOMParser()).parseFromString(s,'text/xml');return(doc&&doc.documentElement&&doc.documentElement.tagName!='parsererror')?doc:null;};};};$.fn.ajaxForm=function(options){return this.ajaxFormUnbind().bind('submit.form-plugin',function(){$(this).ajaxSubmit(options);return false;}).each(function(){$(":submit,input:image",this).bind('click.form-plugin',function(e){var $form=this.form;$form.clk=this;if(this.type=='image'){if(e.offsetX!=undefined){$form.clk_x=e.offsetX;$form.clk_y=e.offsetY;}else if(typeof $.fn.offset=='function'){var offset=$(this).offset();$form.clk_x=e.pageX-offset.left;$form.clk_y=e.pageY-offset.top;}else{$form.clk_x=e.pageX-this.offsetLeft;$form.clk_y=e.pageY-this.offsetTop;}}
setTimeout(function(){$form.clk=$form.clk_x=$form.clk_y=null;},10);});});};$.fn.ajaxFormUnbind=function(){this.unbind('submit.form-plugin');return this.each(function(){$(":submit,input:image",this).unbind('click.form-plugin');});};$.fn.formToArray=function(semantic){var a=[];if(this.length==0)return a;var form=this[0];var els=semantic?form.getElementsByTagName('*'):form.elements;if(!els)return a;for(var i=0,max=els.length;i<max;i++){var el=els[i];var n=el.name;if(!n)continue;if(semantic&&form.clk&&el.type=="image"){if(!el.disabled&&form.clk==el)
a.push({name:n+'.x',value:form.clk_x},{name:n+'.y',value:form.clk_y});continue;}
var v=$.fieldValue(el,true);if(v&&v.constructor==Array){for(var j=0,jmax=v.length;j<jmax;j++)
a.push({name:n,value:v[j]});}
else if(v!==null&&typeof v!='undefined')
a.push({name:n,value:v});}
if(!semantic&&form.clk){var inputs=form.getElementsByTagName("input");for(var i=0,max=inputs.length;i<max;i++){var input=inputs[i];var n=input.name;if(n&&!input.disabled&&input.type=="image"&&form.clk==input)
a.push({name:n+'.x',value:form.clk_x},{name:n+'.y',value:form.clk_y});}}
return a;};$.fn.formSerialize=function(semantic){return $.param(this.formToArray(semantic));};$.fn.fieldSerialize=function(successful){var a=[];this.each(function(){var n=this.name;if(!n)return;var v=$.fieldValue(this,successful);if(v&&v.constructor==Array){for(var i=0,max=v.length;i<max;i++)
a.push({name:n,value:v[i]});}
else if(v!==null&&typeof v!='undefined')
a.push({name:this.name,value:v});});return $.param(a);};$.fn.fieldValue=function(successful){for(var val=[],i=0,max=this.length;i<max;i++){var el=this[i];var v=$.fieldValue(el,successful);if(v===null||typeof v=='undefined'||(v.constructor==Array&&!v.length))
continue;v.constructor==Array?$.merge(val,v):val.push(v);}
return val;};$.fieldValue=function(el,successful){var n=el.name,t=el.type,tag=el.tagName.toLowerCase();if(typeof successful=='undefined')successful=true;if(successful&&(!n||el.disabled||t=='reset'||t=='button'||(t=='checkbox'||t=='radio')&&!el.checked||(t=='submit'||t=='image')&&el.form&&el.form.clk!=el||tag=='select'&&el.selectedIndex==-1))
return null;if(tag=='select'){var index=el.selectedIndex;if(index<0)return null;var a=[],ops=el.options;var one=(t=='select-one');var max=(one?index+1:ops.length);for(var i=(one?index:0);i<max;i++){var op=ops[i];if(op.selected){var v=$.browser.msie&&!(op.attributes['value'].specified)?op.text:op.value;if(one)return v;a.push(v);}}
return a;}
return el.value;};$.fn.clearForm=function(){return this.each(function(){$('input,select,textarea',this).clearFields();});};$.fn.clearFields=$.fn.clearInputs=function(){return this.each(function(){var t=this.type,tag=this.tagName.toLowerCase();if(t=='text'||t=='password'||tag=='textarea')
this.value='';else if(t=='checkbox'||t=='radio')
this.checked=false;else if(tag=='select')
this.selectedIndex=-1;});};$.fn.resetForm=function(){return this.each(function(){if(typeof this.reset=='function'||(typeof this.reset=='object'&&!this.reset.nodeType))
this.reset();});};$.fn.enable=function(b){if(b==undefined)b=true;return this.each(function(){this.disabled=!b});};$.fn.select=function(select){if(select==undefined)select=true;return this.each(function(){var t=this.type;if(t=='checkbox'||t=='radio')
this.checked=select;else if(this.tagName.toLowerCase()=='option'){var $sel=$(this).parent('select');if(select&&$sel[0]&&$sel[0].type=='select-one'){$sel.find('option').select(false);}
this.selected=select;}});};})(jQuery);;var root='http://works.themespub.com/simplified2/wp-content/themes/simplified2/';(function($){$.fn.lightBox=function(settings){settings=jQuery.extend({overlayBgColor:'#000',overlayOpacity:0.8,fixedNavigation:false,imageLoading:root+'images/lightbox-ico-loading.gif',imageBtnPrev:root+'images/lightbox-btn-prev.gif',imageBtnNext:root+'images/lightbox-btn-next.gif',imageBtnClose:root+'images/lightbox-btn-close.gif',imageBlank:root+'images/lightbox-blank.gif',containerBorderSize:10,containerResizeSpeed:400,txtImage:'Image',txtOf:'of',keyToClose:'c',keyToPrev:'p',keyToNext:'n',imageArray:[],activeImage:0},settings);var jQueryMatchedObj=this;function _initialize(){_start(this,jQueryMatchedObj);return false;}
function _start(objClicked,jQueryMatchedObj){$('embed, object, select').css({'visibility':'hidden'});_set_interface();settings.imageArray.length=0;settings.activeImage=0;if(jQueryMatchedObj.length==1){settings.imageArray.push(new Array(objClicked.getAttribute('href'),objClicked.getAttribute('title')));}else{for(var i=0;i<jQueryMatchedObj.length;i++){settings.imageArray.push(new Array(jQueryMatchedObj[i].getAttribute('href'),jQueryMatchedObj[i].getAttribute('title')));}}
while(settings.imageArray[settings.activeImage][0]!=objClicked.getAttribute('href')){settings.activeImage++;}
_set_image_to_view();}
function _set_interface(){$('body').append('<div id="jquery-overlay"></div><div id="jquery-lightbox"><div id="lightbox-container-image-box"><div id="lightbox-container-image"><img id="lightbox-image"><div style="" id="lightbox-nav"><a href="#" id="lightbox-nav-btnPrev"></a><a href="#" id="lightbox-nav-btnNext"></a></div><div id="lightbox-loading"><a href="#" id="lightbox-loading-link"><img src="'+settings.imageLoading+'"></a></div></div></div><div id="lightbox-container-image-data-box"><div id="lightbox-container-image-data"><div id="lightbox-image-details"><span id="lightbox-image-details-caption"></span><span id="lightbox-image-details-currentNumber"></span></div><div id="lightbox-secNav"><a href="#" id="lightbox-secNav-btnClose"><img src="'+settings.imageBtnClose+'"></a></div></div></div></div>');var arrPageSizes=___getPageSize();$('#jquery-overlay').css({backgroundColor:settings.overlayBgColor,opacity:settings.overlayOpacity,width:arrPageSizes[0],height:arrPageSizes[1]}).fadeIn();var arrPageScroll=___getPageScroll();$('#jquery-lightbox').css({top:arrPageScroll[1]+(arrPageSizes[3]/10),left:arrPageScroll[0]}).show();$('#jquery-overlay,#jquery-lightbox').click(function(){_finish();});$('#lightbox-loading-link,#lightbox-secNav-btnClose').click(function(){_finish();return false;});$(window).resize(function(){var arrPageSizes=___getPageSize();$('#jquery-overlay').css({width:arrPageSizes[0],height:arrPageSizes[1]});var arrPageScroll=___getPageScroll();$('#jquery-lightbox').css({top:arrPageScroll[1]+(arrPageSizes[3]/10),left:arrPageScroll[0]});});}
function _set_image_to_view(){$('#lightbox-loading').show();if(settings.fixedNavigation){$('#lightbox-image,#lightbox-container-image-data-box,#lightbox-image-details-currentNumber').hide();}else{$('#lightbox-image,#lightbox-nav,#lightbox-nav-btnPrev,#lightbox-nav-btnNext,#lightbox-container-image-data-box,#lightbox-image-details-currentNumber').hide();}
var objImagePreloader=new Image();objImagePreloader.onload=function(){$('#lightbox-image').attr('src',settings.imageArray[settings.activeImage][0]);_resize_container_image_box(objImagePreloader.width,objImagePreloader.height);objImagePreloader.onload=function(){};};objImagePreloader.src=settings.imageArray[settings.activeImage][0];};function _resize_container_image_box(intImageWidth,intImageHeight){var intCurrentWidth=$('#lightbox-container-image-box').width();var intCurrentHeight=$('#lightbox-container-image-box').height();var intWidth=(intImageWidth+(settings.containerBorderSize*2));var intHeight=(intImageHeight+(settings.containerBorderSize*2));var intDiffW=intCurrentWidth-intWidth;var intDiffH=intCurrentHeight-intHeight;$('#lightbox-container-image-box').animate({width:intWidth,height:intHeight},settings.containerResizeSpeed,function(){_show_image();});if((intDiffW==0)&&(intDiffH==0)){if($.browser.msie){___pause(250);}else{___pause(100);}}
$('#lightbox-container-image-data-box').css({width:intImageWidth});$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({height:intImageHeight+(settings.containerBorderSize*2)});};function _show_image(){$('#lightbox-loading').hide();$('#lightbox-image').fadeIn(function(){_show_image_data();_set_navigation();});_preload_neighbor_images();};function _show_image_data(){$('#lightbox-container-image-data-box').slideDown('fast');$('#lightbox-image-details-caption').hide();if(settings.imageArray[settings.activeImage][1]){$('#lightbox-image-details-caption').html(settings.imageArray[settings.activeImage][1]).show();}
if(settings.imageArray.length>1){$('#lightbox-image-details-currentNumber').html(settings.txtImage+' '+(settings.activeImage+1)+' '+settings.txtOf+' '+settings.imageArray.length).show();}}
function _set_navigation(){$('#lightbox-nav').show();$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({'background':'transparent url('+settings.imageBlank+') no-repeat'});if(settings.activeImage!=0){if(settings.fixedNavigation){$('#lightbox-nav-btnPrev').css({'background':'url('+settings.imageBtnPrev+') left 15% no-repeat'}).unbind().bind('click',function(){settings.activeImage=settings.activeImage-1;_set_image_to_view();return false;});}else{$('#lightbox-nav-btnPrev').unbind().hover(function(){$(this).css({'background':'url('+settings.imageBtnPrev+') left 15% no-repeat'});},function(){$(this).css({'background':'transparent url('+settings.imageBlank+') no-repeat'});}).show().bind('click',function(){settings.activeImage=settings.activeImage-1;_set_image_to_view();return false;});}}
if(settings.activeImage!=(settings.imageArray.length-1)){if(settings.fixedNavigation){$('#lightbox-nav-btnNext').css({'background':'url('+settings.imageBtnNext+') right 15% no-repeat'}).unbind().bind('click',function(){settings.activeImage=settings.activeImage+1;_set_image_to_view();return false;});}else{$('#lightbox-nav-btnNext').unbind().hover(function(){$(this).css({'background':'url('+settings.imageBtnNext+') right 15% no-repeat'});},function(){$(this).css({'background':'transparent url('+settings.imageBlank+') no-repeat'});}).show().bind('click',function(){settings.activeImage=settings.activeImage+1;_set_image_to_view();return false;});}}
_enable_keyboard_navigation();}
function _enable_keyboard_navigation(){$(document).keydown(function(objEvent){_keyboard_action(objEvent);});}
function _disable_keyboard_navigation(){$(document).unbind();}
function _keyboard_action(objEvent){if(objEvent==null){keycode=event.keyCode;escapeKey=27;}else{keycode=objEvent.keyCode;escapeKey=objEvent.DOM_VK_ESCAPE;}
key=String.fromCharCode(keycode).toLowerCase();if((key==settings.keyToClose)||(key=='x')||(keycode==escapeKey)){_finish();}
if((key==settings.keyToPrev)||(keycode==37)){if(settings.activeImage!=0){settings.activeImage=settings.activeImage-1;_set_image_to_view();_disable_keyboard_navigation();}}
if((key==settings.keyToNext)||(keycode==39)){if(settings.activeImage!=(settings.imageArray.length-1)){settings.activeImage=settings.activeImage+1;_set_image_to_view();_disable_keyboard_navigation();}}}
function _preload_neighbor_images(){if((settings.imageArray.length-1)>settings.activeImage){objNext=new Image();objNext.src=settings.imageArray[settings.activeImage+1][0];}
if(settings.activeImage>0){objPrev=new Image();objPrev.src=settings.imageArray[settings.activeImage-1][0];}}
function _finish(){$('#jquery-lightbox').remove();$('#jquery-overlay').fadeOut(function(){$('#jquery-overlay').remove();});$('embed, object, select').css({'visibility':'visible'});}
function ___getPageSize(){var xScroll,yScroll;if(window.innerHeight&&window.scrollMaxY){xScroll=window.innerWidth+window.scrollMaxX;yScroll=window.innerHeight+window.scrollMaxY;}else if(document.body.scrollHeight>document.body.offsetHeight){xScroll=document.body.scrollWidth;yScroll=document.body.scrollHeight;}else{xScroll=document.body.offsetWidth;yScroll=document.body.offsetHeight;}
var windowWidth,windowHeight;if(self.innerHeight){if(document.documentElement.clientWidth){windowWidth=document.documentElement.clientWidth;}else{windowWidth=self.innerWidth;}
windowHeight=self.innerHeight;}else if(document.documentElement&&document.documentElement.clientHeight){windowWidth=document.documentElement.clientWidth;windowHeight=document.documentElement.clientHeight;}else if(document.body){windowWidth=document.body.clientWidth;windowHeight=document.body.clientHeight;}
if(yScroll<windowHeight){pageHeight=windowHeight;}else{pageHeight=yScroll;}
if(xScroll<windowWidth){pageWidth=xScroll;}else{pageWidth=windowWidth;}
arrayPageSize=new Array(pageWidth,pageHeight,windowWidth,windowHeight);return arrayPageSize;};function ___getPageScroll(){var xScroll,yScroll;if(self.pageYOffset){yScroll=self.pageYOffset;xScroll=self.pageXOffset;}else if(document.documentElement&&document.documentElement.scrollTop){yScroll=document.documentElement.scrollTop;xScroll=document.documentElement.scrollLeft;}else if(document.body){yScroll=document.body.scrollTop;xScroll=document.body.scrollLeft;}
arrayPageScroll=new Array(xScroll,yScroll);return arrayPageScroll;};function ___pause(ms){var date=new Date();curDate=null;do{var curDate=new Date();}
while(curDate-date<ms);};return this.unbind('click').click(_initialize);};})(jQuery);;;(function($){$.fn.superfish=function(op){var sf=$.fn.superfish,c=sf.c,$arrow=$(['<span class="',c.arrowClass,'"> <strong>&#187;</strong></span>'].join('')),over=function(){var $$=$(this),menu=getMenu($$);clearTimeout(menu.sfTimer);$$.showSuperfishUl().siblings().hideSuperfishUl();},out=function(){var $$=$(this),menu=getMenu($$),o=sf.op;clearTimeout(menu.sfTimer);menu.sfTimer=setTimeout(function(){o.retainPath=($.inArray($$[0],o.$path)>-1);$$.hideSuperfishUl();if(o.$path.length&&$$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}},o.delay);},getMenu=function($menu){var menu=$menu.parents(['ul.',c.menuClass,':first'].join(''))[0];sf.op=sf.o[menu.serial];return menu;},addArrow=function($a){$a.addClass(c.anchorClass).append($arrow.clone());};return this.each(function(){var s=this.serial=sf.o.length;var o=$.extend({},sf.defaults,op);o.$path=$('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){$(this).addClass([o.hoverClass,c.bcClass].join(' ')).filter('li:has(ul)').removeClass(o.pathClass);});sf.o[s]=sf.op=o;$('li:has(ul)',this)[($.fn.hoverIntent&&!o.disableHI)?'hoverIntent':'hover'](over,out).each(function(){if(o.autoArrows)addArrow($('>a:first-child',this));}).not('.'+c.bcClass).hideSuperfishUl();var $a=$('a',this);$a.each(function(i){var $li=$a.eq(i).parents('li');$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});});o.onInit.call(this);}).each(function(){menuClasses=[c.menuClass];if(sf.op.dropShadows&&!($.browser.msie&&$.browser.version<7))menuClasses.push(c.shadowClass);$(this).addClass(menuClasses.join(' '));});};var sf=$.fn.superfish;sf.o=[];sf.op={};sf.IE7fix=function(){var o=sf.op;if($.browser.msie&&$.browser.version>6&&o.dropShadows&&o.animation.opacity!=undefined)
this.toggleClass(sf.c.shadowClass+'-off');};sf.c={bcClass:'sf-breadcrumb',menuClass:'sf-js-enabled',anchorClass:'sf-with-ul',arrowClass:'sf-sub-indicator',shadowClass:'sf-shadow'};sf.defaults={hoverClass:'sfHover',pathClass:'overideThisToUse',pathLevels:1,delay:800,animation:{opacity:'show'},speed:'normal',autoArrows:true,dropShadows:true,disableHI:false,onInit:function(){},onBeforeShow:function(){},onShow:function(){},onHide:function(){}};$.fn.extend({hideSuperfishUl:function(){var o=sf.op,not=(o.retainPath===true)?o.$path:'';o.retainPath=false;var $ul=$(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass).find('>ul').hide().css('visibility','hidden');o.onHide.call($ul);return this;},showSuperfishUl:function(){var o=sf.op,sh=sf.c.shadowClass+'-off',$ul=this.addClass(o.hoverClass).find('>ul:hidden').css('visibility','visible');sf.IE7fix.call($ul);o.onBeforeShow.call($ul);$ul.animate(o.animation,o.speed,function(){sf.IE7fix.call($ul);o.onShow.call($ul);});return this;}});})(jQuery);;$(function(){$('a.lightbox').lightBox();});$(document).ready(function(){$('#contact').ajaxForm(function(data){if(data==1){$('#success').fadeIn("slow");$('#bademail').fadeOut("slow");$('#badserver').fadeOut("slow");$('#contact').resetForm();}
else if(data==2){$('#badserver').fadeIn("slow");}
else if(data==3)
{$('#bademail').fadeIn("slow");}});});$(document).ready(function(){$("ul.sf-menu").superfish({delay:200,animation:{opacity:'show',height:'show'},speed:'fast',autoArrows:true,dropShadows:true});});$(document).ready(function(){$('.boxgrid.slidedown').hover(function(){$(".cover",this).stop().animate({top:'-260px'},{queue:false,duration:300});},function(){$(".cover",this).stop().animate({top:'0px'},{queue:false,duration:300});});$('.boxgrid.slideright').hover(function(){$(".cover",this).stop().animate({left:'325px'},{queue:false,duration:300});},function(){$(".cover",this).stop().animate({left:'0px'},{queue:false,duration:300});});$('.boxgrid.thecombo').hover(function(){$(".cover",this).stop().animate({top:'260px',left:'325px'},{queue:false,duration:300});},function(){$(".cover",this).stop().animate({top:'0px',left:'0px'},{queue:false,duration:300});});$('.boxgrid.peek').hover(function(){$(".cover",this).stop().animate({top:'90px'},{queue:false,duration:160});},function(){$(".cover",this).stop().animate({top:'0px'},{queue:false,duration:160});});$('.boxgrid.captionfull').hover(function(){$(".cover",this).stop().animate({top:'180px'},{queue:false,duration:160});},function(){$(".cover",this).stop().animate({top:'250px'},{queue:false,duration:160});});$('.boxgrid.caption').hover(function(){$(".cover",this).stop().animate({top:'180px'},{queue:false,duration:160});},function(){$(".cover",this).stop().animate({top:'250px'},{queue:false,duration:160});});});;var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return!!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc /
 * Type Solutions Inc. 1990-91 All Rights Reserved
 * 
 * Trademark:
 * Century Gothic is a trademark of The Monotype Corporation plc.
 * 
 * Description:
 * A design based on Monotype 20th Century, which was drawn by Sol Hess between
 * 1936 and 1947. Century Gothic maintains the basic design of 20th Century but has
 * an enlarged 'x' height and has been modified to ensure satisfactory output from
 * modern digital systems. The design is influenced by the geometric style sans
 * serif faces which were popular during the 1920's and 30's. Useful for headlines
 * and general display work and for small quantities of text, particularly in
 * advertising.
 * 
 * Manufacturer:
 * Monotype Typography, Inc.
 * 
 * Designer:
 * Monotype Type Drawing Office
 * 
 * Vendor URL:
 * http://www.monotype.com/html/mtname/ms_welcome.html
 * 
 * License information:
 * http://www.monotype.com/html/type/license.html
 */
Cufon.registerFont({"w":256,"face":{"font-family":"Century Gothic","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 2 2 2 2 2 2 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-61 -382 415 110","underline-thickness":"20.918","underline-position":"-24.2578","unicode-range":"U+0020-U+F108"},"glyphs":{" ":{"w":99},"!":{"d":"66,-265r0,200r-26,0r0,-200r26,0xm31,-17v0,-27,44,-28,44,0v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":106},"\"":{"d":"99,-184r-18,0r-4,-81r26,0xm31,-184r-19,0r-4,-81r26,0","w":111},"#":{"d":"217,-106r0,19r-44,0r-13,87r-19,0r12,-87r-58,0r-13,87r-20,0r14,-87r-44,0r0,-19r47,0r9,-59r-45,0r0,-19r47,0r13,-82r18,0r-11,82r58,0r12,-82r20,0r-13,82r40,0r0,19r-42,0r-9,59r41,0xm165,-165r-58,0r-9,59r58,0","w":259},"$":{"d":"29,-197v0,-37,27,-58,64,-62r0,-18r23,0r0,19v26,6,39,15,53,36r-19,15v-9,-14,-20,-22,-34,-25r0,87v48,28,72,32,72,82v0,41,-28,65,-72,69r0,55r-23,0r0,-55v-41,-3,-63,-19,-80,-46r18,-14v16,22,37,34,62,36r0,-109v-40,-20,-64,-24,-64,-70xm93,-234v-31,0,-49,33,-31,58v6,9,17,16,31,22r0,-80xm116,-19v36,-2,62,-41,37,-71v-7,-9,-19,-17,-37,-27r0,98","w":199},"%":{"d":"68,-265v49,9,106,12,154,-5r21,0r-189,288r-23,0r171,-262v-22,6,-52,7,-83,7v29,39,-4,94,-51,94v-33,0,-62,-28,-60,-61v1,-35,25,-60,60,-61xm108,-204v0,-20,-19,-39,-39,-39v-20,0,-39,19,-39,39v0,20,18,38,39,38v21,0,39,-18,39,-38xm149,-53v0,-33,28,-61,61,-61v33,0,61,28,61,61v0,33,-28,61,-61,61v-33,0,-61,-28,-61,-61xm249,-53v1,-20,-18,-39,-39,-39v-21,0,-38,18,-38,39v0,20,18,38,38,38v21,0,39,-18,39,-38","w":278},"&":{"d":"175,-202v-2,32,-19,42,-45,65r66,68v19,-16,19,-16,31,-27r18,19v-11,10,-22,19,-31,26r49,51r-36,0r-33,-35v-37,27,-49,42,-96,42v-37,0,-67,-25,-67,-60v0,-45,26,-56,63,-88v-20,-27,-34,-32,-34,-61v0,-64,118,-61,115,0xm117,-224v-21,0,-38,16,-28,35v6,10,15,21,25,33v18,-14,30,-26,35,-46v0,-14,-15,-22,-32,-22xm57,-55v1,29,39,47,70,32v14,-6,30,-17,49,-30r-65,-69v-31,26,-47,34,-54,67","w":272},"'":{"d":"45,-184r-18,0r-4,-81r26,0","w":71},"(":{"d":"111,-270v-46,84,-50,251,-9,345r-27,0v-39,-94,-36,-257,8,-345r28,0","w":132},")":{"d":"57,-270v41,93,37,257,-7,345r-28,0v45,-87,51,-252,8,-345r27,0","w":132},"*":{"d":"65,-265r23,0r-5,52r43,-31r11,20r-48,22r48,21r-11,20r-43,-30r5,52r-23,0r5,-52r-43,30r-12,-20r50,-21r-50,-22r12,-20r43,31","w":152},"+":{"d":"97,-141r0,-77r24,0r0,77r77,0r0,24r-77,0r0,76r-24,0r0,-76r-77,0r0,-24r77,0","w":218},",":{"d":"52,-47r24,11r-36,66r-18,-7","w":99},"-":{"d":"11,-108r97,0r0,22r-97,0r0,-22","w":119},"\u00ad":{"d":"11,-108r97,0r0,22r-97,0r0,-22","w":119},".":{"d":"33,-17v0,-12,10,-22,21,-22v12,0,22,10,22,22v0,12,-9,23,-22,22v-12,0,-21,-10,-21,-22","w":99},"\/":{"d":"147,-265r-107,300r-27,0r107,-300r27,0","w":157},"0":{"d":"98,7v-66,0,-87,-58,-87,-136v0,-79,19,-136,87,-136v68,0,90,59,90,136v0,77,-23,136,-90,136xm99,-240v-51,6,-63,48,-63,111v0,64,11,112,63,112v52,0,65,-55,65,-112v0,-59,-14,-107,-65,-111","w":199},"1":{"d":"67,-259r50,0r0,259r-25,0r0,-233r-41,0","w":199},"2":{"d":"102,-240v-37,0,-58,25,-60,62r-25,0v0,-50,38,-86,86,-87v60,-2,101,64,69,118v-21,36,-74,87,-105,122r119,0r0,25r-175,0r99,-107v29,-34,45,-39,48,-80v2,-29,-26,-54,-56,-53","w":199},"3":{"d":"97,-240v-29,1,-39,16,-49,41r-27,0v8,-38,34,-64,76,-66v69,-4,103,88,41,120v26,9,48,37,48,68v0,71,-91,109,-144,64v-15,-13,-24,-31,-29,-56r25,0v8,32,25,49,60,50v35,1,62,-24,62,-56v0,-41,-29,-55,-76,-56r0,-24v32,-1,60,-12,60,-43v1,-24,-21,-43,-47,-42","w":199},"4":{"d":"153,-265r6,0r0,180r31,0r0,25r-31,0r0,60r-26,0r0,-60r-124,0xm133,-85r0,-108r-76,108r76,0","w":199},"5":{"d":"157,-85v0,-59,-64,-73,-116,-45r24,-129r112,0r0,25r-92,0r-13,71v61,-20,112,20,112,79v0,102,-158,126,-169,21r26,0v5,28,23,44,54,45v35,1,62,-31,62,-67","w":199},"6":{"d":"103,7v-57,0,-96,-57,-72,-113v24,-55,70,-108,101,-159r21,14r-70,106v53,-20,102,21,101,72v-1,47,-34,80,-81,80xm158,-73v0,-29,-25,-54,-54,-54v-30,0,-55,25,-55,54v0,29,26,54,55,54v28,0,54,-26,54,-54","w":199},"7":{"d":"26,-259r164,0r-138,266r-22,-11r120,-230r-124,0r0,-25","w":199},"8":{"d":"175,-197v0,29,-16,43,-37,55v28,15,48,31,49,68v0,48,-37,81,-88,81v-51,0,-87,-35,-87,-79v0,-36,21,-55,50,-70v-22,-11,-38,-29,-38,-56v0,-39,34,-67,77,-67v42,0,74,28,74,68xm149,-198v0,-23,-20,-42,-49,-42v-26,0,-49,18,-49,43v-1,23,26,46,50,45v26,-2,48,-19,48,-46xm161,-74v0,-29,-29,-55,-60,-55v-34,0,-64,27,-63,58v1,33,27,53,62,53v35,1,61,-24,61,-56","w":199},"9":{"d":"98,-265v82,-2,89,94,49,155r-78,117r-21,-14r70,-106v-53,20,-101,-21,-100,-72v0,-49,34,-79,80,-80xm43,-185v0,28,26,54,54,54v29,0,55,-25,55,-54v0,-29,-26,-55,-55,-55v-29,0,-54,26,-54,55","w":199},":":{"d":"33,-174v0,-12,9,-22,21,-22v12,0,23,9,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21xm33,-17v0,-12,10,-22,21,-22v12,0,22,10,22,22v0,12,-9,23,-22,22v-12,0,-21,-10,-21,-22","w":99},";":{"d":"33,-174v0,-12,9,-22,21,-22v12,0,23,9,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21xm52,-47r24,11r-36,66r-18,-7","w":99},"\u037e":{"d":"33,-174v0,-12,9,-22,21,-22v12,0,23,9,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21xm52,-47r24,11r-36,66r-18,-7","w":99},"<":{"d":"200,-61r0,26r-182,-83r0,-23r182,-82r0,25r-148,69","w":218},"=":{"d":"198,-180r0,24r-178,0r0,-24r178,0xm198,-103r0,24r-178,0r0,-24r178,0","w":218},">":{"d":"18,-61r148,-68r-148,-69r0,-25r182,82r0,23r-182,83r0,-26","w":218},"?":{"d":"107,-240v-31,0,-52,19,-52,52r-25,0v-1,-47,31,-77,77,-77v62,0,97,63,52,102v-19,16,-88,25,-87,56v0,16,18,26,36,26v26,0,35,-13,38,-37r26,0v-2,38,-25,62,-64,62v-34,0,-62,-20,-62,-51v0,-65,106,-45,109,-97v1,-22,-23,-36,-48,-36xm85,-17v0,-12,10,-22,22,-22v11,0,21,10,21,22v0,12,-9,22,-21,22v-12,0,-23,-9,-22,-22","w":212},"@":{"d":"38,-133v-6,114,153,162,216,80r18,0v-29,37,-54,58,-108,58v-82,0,-140,-55,-140,-137v0,-81,56,-137,138,-139v65,-2,126,52,126,113v0,59,-39,99,-90,104v-13,1,-22,-4,-21,-19v-31,38,-101,8,-97,-46v3,-42,30,-85,75,-83v24,1,35,9,46,26r5,-24r19,0r-22,122v0,5,3,10,9,9v34,-6,62,-42,62,-85v0,-58,-53,-102,-113,-101v-74,1,-119,50,-123,122xm157,-183v-56,-3,-75,107,-10,108v50,1,68,-107,10,-108","w":312},"A":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0","w":266},"B":{"d":"187,-74v0,44,-37,75,-84,74r-71,0r0,-259v69,-3,134,0,134,64v0,26,-14,44,-33,54v32,11,54,28,54,67xm139,-195v1,-39,-40,-40,-82,-38r0,83v47,2,80,-5,82,-45xm160,-74v0,-47,-45,-52,-103,-50r0,99v55,2,103,-1,103,-49","w":206},"C":{"d":"20,-131v0,-99,109,-165,204,-120v19,10,36,23,48,40r-20,16v-20,-26,-51,-45,-93,-45v-65,0,-109,45,-112,112v-4,105,145,149,205,68r20,15v-24,30,-61,52,-113,52v-80,2,-139,-58,-139,-138","w":292},"D":{"d":"249,-126v0,81,-45,128,-135,126r-83,0r0,-259r54,0v111,-3,164,38,164,133xm223,-126v0,-89,-61,-113,-167,-107r0,209v104,5,167,-13,167,-102","w":267},"E":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259","w":193},"F":{"d":"31,-259r130,0r0,26r-104,0r0,81r104,0r0,25r-104,0r0,127r-26,0r0,-259","w":174},"G":{"d":"21,-129v-1,-102,103,-162,203,-124v19,8,39,21,57,38r-20,19v-24,-24,-58,-43,-98,-43v-64,0,-111,45,-115,109v-8,122,200,156,219,31r-82,0r0,-25r111,0v1,80,-52,129,-130,131v-80,2,-144,-58,-145,-136","w":313},"H":{"d":"31,-259r26,0r0,109r132,0r0,-109r26,0r0,259r-26,0r0,-125r-132,0r0,125r-26,0r0,-259","w":245},"I":{"d":"28,-259r26,0r0,259r-26,0r0,-259","w":81},"J":{"d":"29,-41v36,34,87,33,87,-44r0,-174r26,0r0,175v15,96,-75,110,-127,63","w":173},"K":{"d":"31,-259r27,0r0,97r103,-97r35,0r-124,116r134,143r-35,0r-113,-121r0,121r-27,0r0,-259","w":212},"L":{"d":"31,-259r26,0r0,234r100,0r0,25r-126,0r0,-259","w":166},"M":{"d":"20,0r36,-259r5,0r105,213r104,-213r4,0r37,259r-25,0r-26,-185r-91,185r-7,0r-92,-186r-25,186r-25,0","w":330},"N":{"d":"32,0r0,-259r5,0r172,198r0,-198r26,0r0,259r-6,0r-171,-195r0,195r-26,0","w":266},"O":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110","w":312},"P":{"d":"193,-190v-4,67,-55,73,-136,70r0,120r-26,0r0,-259r52,0v74,-3,102,12,110,69xm166,-190v0,-49,-56,-44,-109,-43r0,87v52,2,109,7,109,-44","w":213},"Q":{"d":"293,-129v-1,46,-18,76,-45,101r39,48r-32,0r-26,-33v-90,57,-212,-14,-208,-115v3,-80,55,-135,135,-137v75,-2,138,62,137,136xm47,-128v-3,81,92,138,165,94r-57,-73r31,0r46,59v70,-63,23,-196,-75,-192v-64,3,-108,47,-110,112","w":313},"R":{"d":"195,-190v0,50,-35,70,-90,70r93,120r-32,0r-93,-120r-14,0r0,120r-26,0r0,-259v84,-2,162,-5,162,69xm168,-190v0,-49,-56,-44,-109,-43r0,88v53,1,109,5,109,-45","w":218},"S":{"d":"144,-102v44,64,-39,141,-104,96v-13,-8,-24,-22,-35,-42r22,-13v15,28,33,42,53,42v27,0,48,-17,48,-44v0,-62,-107,-74,-107,-141v0,-49,54,-76,97,-52v11,6,22,17,34,33r-21,16v-16,-20,-22,-29,-48,-31v-36,-3,-46,46,-19,66v13,9,74,54,80,70","w":179},"T":{"d":"6,-233r0,-26r142,0r0,26r-58,0r0,233r-26,0r0,-233r-58,0","w":153},"U":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266","w":235},"V":{"d":"12,-259r28,0r86,200r87,-200r28,0r-113,259r-5,0","w":252},"W":{"d":"17,-259r26,0r53,187r74,-187r5,0r74,187r53,-187r27,0r-74,259r-5,0r-77,-196r-78,196r-5,0","w":345},"X":{"d":"18,-259r30,0r62,101r62,-101r30,0r-77,126r82,133r-30,0r-67,-108r-68,108r-30,0r83,-133","w":219},"Y":{"d":"11,-259r30,0r66,107r65,-107r30,0r-82,135r0,124r-25,0r0,-124","w":213},"Z":{"d":"21,-234r0,-25r137,0r-108,234r102,0r0,25r-142,0r109,-234r-98,0","w":172},"[":{"d":"51,-265r59,0r0,25r-34,0r0,286r34,0r0,24r-59,0r0,-335","w":126},"\\":{"d":"39,-265r167,300r-27,0r-167,-300r27,0","w":217},"]":{"d":"75,70r-59,0r0,-25r35,0r0,-286r-35,0r0,-24r59,0r0,335","w":126},"^":{"d":"111,-259r20,0r90,195r-23,0r-78,-168r-76,168r-23,0","w":241},"_":{"d":"-2,27r184,0r0,18r-184,0r0,-18","w":180},"`":{"d":"57,-281r39,54r-25,0r-51,-54r37,0","w":136},"a":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77","w":245},"b":{"d":"129,5v-36,-1,-59,-18,-76,-40r0,35r-24,0r0,-265r24,0r0,107v17,-23,41,-37,77,-38v54,-2,98,48,98,101v0,53,-45,101,-99,100xm52,-97v0,42,34,79,75,78v45,-1,76,-32,76,-77v0,-44,-31,-78,-75,-78v-44,0,-76,30,-76,77","w":245},"c":{"d":"18,-94v0,-102,146,-136,195,-58r-19,13v-40,-61,-151,-34,-151,43v0,78,109,104,151,45r19,13v-17,25,-47,43,-89,43v-57,0,-106,-43,-106,-99","w":232},"d":{"d":"118,-196v36,1,59,17,76,40r0,-109r24,0r0,265r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm196,-95v0,-42,-35,-78,-76,-77v-45,1,-76,32,-76,77v0,44,32,77,76,77v44,0,76,-31,76,-77","w":246},"e":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0","w":233},"f":{"d":"39,-191v-1,-42,-2,-81,39,-79v8,0,17,2,28,5r0,24v-23,-10,-47,-11,-42,24r0,26r40,0r0,21r-40,0r0,170r-25,0r0,-170r-25,0r0,-21r25,0","w":113},"g":{"d":"18,-97v0,-94,127,-132,174,-61r0,-33r25,0r0,152v24,131,-159,148,-197,54r27,0v31,61,167,48,145,-51v-46,66,-174,33,-174,-61xm193,-97v0,-45,-29,-75,-73,-75v-45,0,-76,32,-78,76v-2,42,33,73,76,73v44,0,75,-30,75,-74","w":242},"h":{"d":"119,-173v-76,1,-68,89,-67,173r-25,0r0,-265r25,0r0,108v17,-22,38,-38,72,-39v87,-1,69,108,70,196r-24,0v-5,-70,22,-174,-51,-173","w":219},"i":{"d":"16,-250v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-11,0,-20,-10,-20,-21xm24,-191r25,0r0,191r-25,0r0,-191","w":72},"j":{"d":"16,-250v0,-11,10,-20,21,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-12,0,-21,-9,-21,-21xm-11,47v21,10,35,5,35,-25r0,-213r25,0r0,220v4,42,-26,55,-60,40r0,-22","w":73},"k":{"d":"27,-265r25,0r0,151r88,-77r37,0r-105,91r111,100r-35,0r-96,-86r0,86r-25,0r0,-265","w":180},"l":{"d":"24,-265r24,0r0,265r-24,0r0,-265","w":72},"m":{"d":"113,-172v-73,0,-61,94,-61,172r-25,0r0,-191r25,0r0,33v15,-22,34,-38,65,-38v35,1,51,18,61,46v13,-26,36,-45,70,-46v85,-1,62,111,65,196r-25,0v-7,-66,25,-173,-45,-172v-74,1,-60,94,-61,172r-24,0v-6,-66,23,-172,-45,-172","w":337},"n":{"d":"119,-173v-76,1,-68,89,-67,173r-25,0r0,-191r25,0r0,34v17,-22,38,-38,72,-39v87,-1,69,108,70,196r-24,0v-5,-70,22,-174,-51,-173","w":219},"o":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77","w":235},"p":{"d":"129,5v-35,-2,-59,-16,-77,-38r0,103r-24,0r0,-261r24,0r0,35v17,-23,40,-39,76,-40v54,-1,99,47,99,100v0,53,-45,102,-98,101xm202,-95v0,-45,-31,-76,-76,-77v-41,-1,-76,35,-76,77v0,46,33,77,77,77v43,0,75,-34,75,-77","w":245},"q":{"d":"117,-196v37,1,60,17,77,40r0,-35r24,0r0,261r-24,0r0,-103v-18,23,-42,36,-77,38v-53,1,-98,-47,-98,-101v0,-53,45,-101,98,-100xm195,-95v1,-42,-35,-78,-76,-77v-45,1,-76,33,-76,77v0,42,32,77,76,77v44,0,75,-31,76,-77","w":245},"r":{"d":"43,0r-25,0r0,-191r25,0r0,28v15,-23,40,-43,72,-27r-13,21v-75,-15,-56,95,-59,169","w":108},"s":{"d":"18,-146v4,-55,72,-66,106,-24r-16,16v-21,-26,-62,-26,-68,7v7,45,84,41,84,96v0,59,-86,74,-115,29r16,-18v13,14,26,22,40,22v18,0,35,-14,35,-32v-4,-47,-86,-40,-82,-96","w":139},"t":{"d":"49,-262r25,0r0,71r39,0r0,21r-39,0r0,170r-25,0r0,-170r-34,0r0,-21r34,0r0,-71","w":121},"u":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196","w":218},"v":{"d":"9,-191r27,0r63,139r64,-139r26,0r-87,191r-5,0","w":199},"w":{"d":"2,-191r25,0r58,139r62,-139r4,0r61,139r60,-139r26,0r-83,191r-5,0r-61,-137r-61,137r-5,0","w":299},"x":{"d":"6,-191r29,0r51,71r50,-71r30,0r-65,91r73,100r-30,0r-58,-80r-58,80r-29,0r72,-100","w":172},"y":{"d":"7,-191r26,0r66,147r63,-147r27,0r-114,261r-26,0r36,-84","w":193},"z":{"d":"12,-191r140,0r-108,169r105,0r0,22r-147,0r108,-170r-98,0r0,-21","w":152},"{":{"d":"50,-7v0,-44,-2,-64,-37,-68r0,-29v40,-4,37,-33,37,-81v0,-56,12,-76,65,-74r0,28v-29,0,-37,5,-36,36v0,63,1,86,-36,105v29,14,36,33,36,80v0,48,-7,62,36,62r0,27v-59,2,-65,-24,-65,-86","w":126},"|":{"d":"108,-265r25,0r0,335r-25,0r0,-335","w":241},"}":{"d":"77,-172v-1,45,1,64,36,68r0,29v-39,0,-37,40,-36,80v1,55,-12,77,-66,74r0,-27v29,0,37,-5,36,-36v0,-63,1,-87,37,-106v-31,-16,-36,-31,-37,-79v0,-52,6,-60,-36,-62r0,-28v59,-2,67,25,66,87","w":126},"~":{"d":"154,-128v21,-1,21,-7,44,-19r0,28v-20,10,-25,15,-44,17v-22,3,-66,-28,-88,-28v-21,0,-26,7,-46,19r0,-29v20,-10,25,-14,44,-16v22,-2,65,29,90,28","w":218},"\u00c4":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm77,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm149,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":266},"\u00c5":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm95,-312v0,-20,18,-37,38,-37v20,0,37,17,37,37v0,20,-17,38,-37,38v-20,0,-39,-17,-38,-38xm152,-312v0,-9,-9,-20,-19,-19v-10,-1,-20,9,-20,19v0,10,10,19,20,19v9,0,19,-10,19,-19","w":266},"\u00c7":{"d":"20,-131v0,-99,109,-165,204,-120v19,10,36,23,48,40r-20,16v-20,-26,-51,-45,-93,-45v-65,0,-109,45,-112,112v-4,105,145,149,205,68r20,15v-24,30,-61,52,-113,52v-80,2,-139,-58,-139,-138xm161,41v-2,-9,-13,-8,-23,-5r5,-36r15,0r-3,21v14,-4,26,6,27,18v-1,28,-43,34,-70,23r4,-13v15,5,44,9,45,-8","w":292},"\u00c9":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm119,-333r38,0r-52,54r-24,0","w":193},"\u00d1":{"d":"32,0r0,-259r5,0r172,198r0,-198r26,0r0,259r-6,0r-171,-195r0,195r-26,0xm69,-302v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":266},"\u00d6":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm100,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm172,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":312},"\u00dc":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm62,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm134,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":235},"\u00e1":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm134,-281r38,0r-52,54r-24,0","w":245},"\u00e0":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm112,-281r39,54r-25,0r-51,-54r37,0","w":245},"\u00e2":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm112,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":245},"\u00e4":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm67,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm139,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":245},"\u00e3":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm59,-250v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":245},"\u00e5":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm85,-260v0,-20,18,-37,38,-37v20,0,37,17,37,37v0,20,-17,38,-37,38v-20,0,-39,-17,-38,-38xm142,-260v0,-9,-9,-20,-19,-19v-10,-1,-20,9,-20,19v0,10,10,19,20,19v9,0,19,-10,19,-19","w":245},"\u00e7":{"d":"18,-94v0,-102,146,-136,195,-58r-19,13v-40,-61,-151,-34,-151,43v0,78,109,104,151,45r19,13v-17,25,-47,43,-89,43v-57,0,-106,-43,-106,-99xm131,41v-2,-9,-13,-8,-23,-5r5,-36r15,0r-3,21v14,-4,26,6,27,18v-1,28,-43,34,-70,23r4,-13v15,5,44,9,45,-8","w":232},"\u00e9":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm129,-281r38,0r-52,54r-24,0","w":233},"\u00e8":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm106,-281r39,54r-25,0r-51,-54r37,0","w":233},"\u00ea":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm106,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":233},"\u00eb":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm61,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm133,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":233},"\u00ed":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm48,-281r38,0r-52,54r-24,0","w":72},"\u00ec":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm25,-281r39,54r-25,0r-51,-54r37,0","w":72},"\u00ee":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm25,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":72},"\u00ef":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm-20,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm52,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":72},"\u00f1":{"d":"119,-173v-76,1,-68,89,-67,173r-25,0r0,-191r25,0r0,34v17,-22,38,-38,72,-39v87,-1,69,108,70,196r-24,0v-5,-70,22,-174,-51,-173xm46,-250v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":219},"\u00f3":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm129,-281r38,0r-52,54r-24,0","w":235},"\u00f2":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm107,-281r39,54r-25,0r-51,-54r37,0","w":235},"\u00f4":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm107,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":235},"\u00f6":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm62,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm134,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":235},"\u00f5":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm54,-250v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":235},"\u00fa":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm121,-281r38,0r-52,54r-24,0","w":218},"\u00f9":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm98,-281r39,54r-25,0r-51,-54r37,0","w":218},"\u00fb":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm98,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":218},"\u00fc":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm53,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm125,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":218},"\u2020":{"d":"86,-265r26,0r-4,80r63,-3r0,26r-63,-5r5,222r-27,0r5,-222r-63,5r0,-26r63,3","w":199},"\u00b0":{"d":"72,-265v33,0,61,28,61,60v0,33,-28,61,-61,61v-33,0,-61,-28,-61,-61v0,-33,28,-60,61,-60xm72,-163v21,0,40,-20,40,-41v0,-22,-18,-42,-39,-42v-22,0,-41,18,-41,41v0,22,18,42,40,42","w":143},"\u00a2":{"d":"55,-14v-79,-56,-19,-220,91,-176r23,-46r21,11r-23,45v8,5,15,11,20,17r-15,18v-5,-5,-10,-9,-16,-13r-70,134v32,13,52,4,80,-16r16,18v-24,22,-67,36,-107,20r-26,52r-21,-11xm134,-169v-74,-28,-121,80,-68,132","w":199},"\u00a3":{"d":"10,-27v0,-30,35,-52,64,-33v4,-25,1,-45,-6,-66r-51,0r0,-22r45,0v-35,-70,10,-137,81,-110v18,12,29,30,31,60r-24,0v0,-25,-12,-44,-36,-44v-52,-1,-41,59,-26,94r57,0r0,22r-51,0v7,24,10,56,3,80v10,7,30,25,49,26v11,0,17,-13,18,-40r25,0v-1,33,-10,67,-40,67v-24,0,-46,-16,-61,-29v-13,39,-77,39,-78,-5xm34,-30v4,21,28,14,34,-6v-14,-11,-32,-12,-34,6","w":199},"\u00a7":{"d":"69,-161v-53,-25,-34,-114,34,-109v39,3,62,23,66,60r-25,0v1,-44,-81,-47,-81,-4v0,63,113,55,113,123v0,27,-25,47,-51,52v20,13,38,31,39,59v2,75,-129,68,-136,4r26,0v7,38,84,38,84,-4v0,-61,-115,-61,-115,-128v0,-30,21,-46,46,-53xm105,-54v31,-1,59,-31,37,-58v-5,-5,-25,-21,-53,-35v-32,1,-53,36,-31,61v8,9,24,20,47,32","w":221},"\u2022":{"d":"55,-131v0,-28,26,-54,54,-54v28,0,54,26,54,54v0,28,-26,54,-54,54v-28,0,-54,-26,-54,-54","w":218},"\u00b6":{"d":"17,-194v0,-43,24,-72,72,-72r91,0r0,13r-15,0r0,294r-21,0r0,-294r-38,0r0,294r-21,0r0,-165v-46,0,-68,-26,-68,-70","w":203},"\u00df":{"d":"103,-246v-38,4,-50,21,-50,73r0,173r-25,0r0,-175v-2,-65,20,-91,74,-95v40,-3,71,26,70,64v-1,36,-24,54,-58,59v43,5,64,33,67,75v3,57,-59,96,-110,68r0,-23v39,23,85,0,85,-45v0,-40,-28,-61,-69,-61r0,-28v33,3,60,-16,60,-44v0,-23,-20,-43,-44,-41","w":199},"\u00ae":{"d":"135,-271v80,0,138,59,138,137v0,81,-58,139,-138,139v-79,0,-139,-58,-139,-138v0,-80,58,-138,139,-138xm135,-14v68,0,118,-50,118,-119v0,-68,-49,-120,-118,-120v-69,0,-119,52,-119,120v0,68,50,119,119,119xm178,-55v-8,-30,7,-73,-36,-66r-40,0r0,66r-25,0r0,-159v56,1,125,-11,123,45v-1,18,-6,25,-20,35v29,8,9,56,26,79r-28,0xm175,-168v0,-32,-43,-21,-73,-23r0,47v31,-1,73,8,73,-24","w":268},"\u00a9":{"d":"135,-271v80,0,138,58,138,138v0,80,-58,138,-138,138v-80,0,-139,-58,-139,-138v0,-80,58,-138,139,-138xm135,-14v68,0,118,-49,118,-119v0,-70,-50,-119,-119,-119v-68,0,-118,51,-118,119v0,69,50,119,119,119xm62,-132v0,-68,69,-108,120,-70v13,9,19,24,20,40r-24,0v-4,-20,-18,-32,-41,-32v-33,1,-49,25,-49,62v0,68,88,82,90,17r24,0v-4,36,-29,63,-67,63v-46,0,-73,-32,-73,-80","w":268},"\u2122":{"d":"346,-266r0,152r-27,0r0,-125r-56,125r-18,0r-54,-125r0,125r-26,0r0,-152r42,0r47,105r50,-105r42,0xm135,-266r0,24r-53,0r0,128r-27,0r0,-128r-53,0r0,-24r133,0","w":360},"\u00b4":{"d":"79,-281r38,0r-52,54r-24,0","w":135},"\u00a8":{"d":"10,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm82,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":132},"\u2260":{"d":"130,-180r58,0r0,24r-67,0r-20,53r87,0r0,24r-97,0r-33,86r-24,0r33,-86r-57,0r0,-24r66,0r21,-53r-87,0r0,-24r96,0r32,-85r25,0","w":197},"\u00c6":{"d":"0,0r167,-259r160,0r0,27r-122,0r0,79r122,0r0,26r-122,0r0,102r122,0r0,25r-148,0r0,-85r-94,0r-55,85r-30,0xm102,-109r77,0r0,-120","w":357},"\u00d8":{"d":"61,-31v-85,-79,-26,-234,95,-234v30,0,57,9,82,26r26,-31r18,16r-26,31v22,22,34,53,36,94v4,104,-123,175,-212,113r-29,34r-19,-15xm221,-219v-72,-52,-174,0,-174,91v0,30,10,56,31,77xm97,-36v74,45,172,-7,169,-93v0,-29,-10,-54,-28,-74","w":312},"\u221e":{"d":"27,-126v0,-54,67,-62,94,-17v23,-25,27,-41,58,-41v30,0,51,23,51,57v0,36,-20,59,-51,59v-31,0,-36,-17,-58,-41v-27,45,-94,37,-94,-17xm210,-125v0,-30,-27,-50,-50,-32v-6,4,-15,14,-27,31v16,21,20,38,46,38v19,0,31,-16,31,-37xm46,-126v5,38,44,32,63,0v-14,-28,-60,-41,-63,0"},"\u00b1":{"d":"87,-160r0,-77r24,0r0,77r77,0r0,24r-77,0r0,76r-24,0r0,-76r-77,0r0,-24r77,0xm188,-28r0,24r-178,0r0,-24r178,0","w":197},"\u2264":{"d":"190,-85r0,26r-182,-82r0,-23r182,-83r0,26r-148,68xm190,-41r0,24r-182,0r0,-24r182,0","w":197},"\u2265":{"d":"8,-85r148,-68r-148,-68r0,-26r182,83r0,23r-182,82r0,-26xm190,-41r0,24r-182,0r0,-24r182,0","w":197},"\u00a5":{"d":"159,-259r29,0r-73,130r63,0r0,20r-66,0r0,27r66,0r0,21r-66,0r0,61r-25,0r0,-61r-65,0r0,-21r65,0r0,-27r-65,0r0,-20r62,0r-73,-130r29,0r59,106","w":199},"\u00b5":{"d":"157,-21v-19,33,-86,32,-106,1r0,90r-25,0r0,-261r25,0v3,71,-20,170,53,169v72,-1,50,-99,53,-169r25,0r0,191r-25,0r0,-21","w":207},"\u2202":{"d":"151,-162v-1,-44,-2,-78,-36,-78v-17,0,-30,14,-40,40r-24,-11v13,-28,31,-51,63,-51v45,0,56,47,57,99v0,87,-32,162,-107,167v-34,2,-55,-26,-54,-61v3,-72,58,-105,141,-105xm41,-53v0,35,37,41,63,20v27,-22,41,-58,46,-107v-70,1,-109,28,-109,87","w":177},"\u2211":{"d":"24,-270r218,0r0,29r-174,0r107,140r-114,148r183,0r0,28r-223,0r0,-33r109,-142r-106,-139r0,-31"},"\u220f":{"d":"28,-270r240,0r0,345r-34,0r0,-314r-172,0r0,314r-34,0r0,-345","w":296},"\uf006":{"d":"0,-187r198,0r0,28r-29,0r0,159r-33,0r0,-159r-75,0r0,159r-33,0r0,-159r-28,0r0,-28","w":197},"\u222b":{"d":"0,17v1,-25,28,-14,37,-6v5,0,6,-5,6,-10r-8,-168v5,-51,-12,-153,41,-160v12,-1,22,8,22,18v1,11,-6,19,-16,19v-7,0,-27,-22,-27,1v4,99,12,120,5,242v-3,52,-3,81,-39,86v-12,2,-21,-10,-21,-22","w":98},"\u00aa":{"d":"10,-202v-6,-51,60,-85,87,-43r0,-17r20,0r0,120r-20,0r0,-17v-27,41,-94,8,-87,-43xm98,-202v0,-23,-14,-44,-34,-44v-44,0,-44,88,0,88v20,0,34,-21,34,-44","w":132},"\u00ba":{"d":"10,-202v0,-34,25,-63,56,-63v32,0,57,30,57,63v0,33,-24,62,-57,62v-33,0,-56,-28,-56,-62xm102,-202v0,-24,-15,-43,-36,-44v-45,0,-47,88,0,88v21,-1,36,-20,36,-44","w":132},"\u2126":{"d":"64,-137v0,52,23,89,60,105r0,32r-102,0r0,-30r65,2v-37,-24,-61,-55,-61,-113v0,-74,43,-121,116,-123v69,-2,115,54,114,123v-1,56,-25,89,-61,113r64,-1r0,29r-101,0r0,-31v79,-24,88,-206,-17,-205v-51,1,-77,43,-77,99","w":276},"\u00e6":{"d":"21,-96v0,-96,129,-134,175,-60r0,-35r23,0r0,34v28,-47,109,-51,148,-10v18,20,28,44,28,74r-172,0v3,43,30,75,75,75v37,0,56,-17,70,-45r21,11v-20,62,-136,78,-170,18r0,34r-23,0r0,-35v-19,25,-40,39,-76,40v-53,1,-99,-47,-99,-101xm368,-114v-5,-60,-95,-77,-129,-31v-7,8,-12,19,-15,31r144,0xm197,-95v-1,-46,-30,-77,-76,-77v-43,0,-74,32,-75,76v-1,42,35,78,76,78v42,0,75,-35,75,-77","w":416},"\u00f8":{"d":"49,-22v-65,-57,-19,-174,68,-174v24,0,44,7,62,21r21,-24r16,13r-22,26v55,62,5,165,-76,165v-19,0,-37,-4,-53,-14r-20,24r-16,-13xm163,-156v-57,-46,-145,16,-114,91v4,10,9,18,16,25xm81,-28v70,41,144,-47,96,-113","w":235},"\u00bf":{"d":"85,-173v0,-12,9,-22,21,-22v12,0,22,10,22,22v0,11,-10,21,-22,21v-12,0,-21,-9,-21,-21xm106,50v31,0,52,-19,52,-52r25,0v1,47,-31,77,-77,77v-41,0,-72,-24,-74,-61v-3,-63,99,-51,109,-97v0,-16,-17,-28,-36,-27v-26,0,-36,13,-38,38r-26,0v2,-38,25,-62,64,-62v35,0,62,20,62,51v3,64,-106,45,-109,97v-1,22,23,36,48,36","w":212},"\u00a1":{"d":"31,-173v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,11,-10,21,-22,21v-12,0,-22,-10,-22,-21xm41,75r0,-201r25,0r0,201r-25,0","w":106},"\u00ac":{"d":"198,-180r0,101r-24,0r0,-77r-154,0r0,-24r178,0","w":218},"\u221a":{"d":"184,-329r13,0r-55,343r-87,-180r-35,16r-6,-11r53,-27r71,145","w":197},"\u0192":{"d":"109,-155r41,0r-3,21r-41,0v-15,67,-8,165,-51,201v-15,13,-32,11,-49,-1r3,-22v37,23,50,-15,56,-56r17,-122r-25,0r3,-21r25,0v10,-43,4,-114,49,-115v10,0,21,3,32,11r-4,24v-25,-25,-39,-9,-45,28","w":199},"\u2248":{"d":"143,-160v21,0,22,-7,45,-20r0,29v-20,10,-25,15,-44,17v-22,2,-66,-29,-88,-29v-20,0,-27,7,-47,19r0,-28v20,-10,25,-16,45,-17v22,-2,66,29,89,29xm143,-95v21,0,22,-7,45,-19r0,28v-20,10,-25,15,-44,17v-21,2,-66,-28,-88,-28v-21,0,-27,6,-47,18r0,-28v20,-10,25,-16,45,-17v23,-2,65,29,89,29","w":197},"\u2206":{"d":"216,0r-211,0r110,-244xm174,-14r-70,-170r-77,170r147,0","w":220},"\u00ab":{"d":"69,-191r-39,96r39,95r-26,0r-39,-95r39,-96r26,0xm149,-191r-39,96r39,95r-26,0r-39,-95r39,-96r26,0","w":152},"\u00bb":{"d":"84,0r39,-96r-39,-95r26,0r39,95r-39,96r-26,0xm4,0r39,-96r-39,-95r26,0r39,95r-39,96r-26,0","w":152},"\u2026":{"d":"158,-17v0,-27,44,-28,44,0v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22xm38,-17v0,-27,44,-28,44,0v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22xm278,-17v0,-27,44,-28,44,0v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":360},"\u00a0":{"w":100},"\u00c0":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm122,-333r39,54r-25,0r-51,-54r37,0","w":266},"\u00c3":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm69,-302v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":266},"\u00d5":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm92,-302v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":312},"\u0152":{"d":"158,-265v47,0,88,27,110,57r0,-51r147,0r0,26r-121,0r0,80r121,0r0,26r-121,0r0,102r121,0r0,25r-147,0r0,-50v-29,34,-54,55,-111,57v-74,2,-138,-61,-137,-135v1,-80,59,-137,138,-137xm267,-130v-1,-65,-48,-107,-110,-110v-56,-2,-109,53,-109,110v0,60,50,111,111,111v59,0,109,-52,108,-111","w":429},"\u0153":{"d":"291,-196v55,-1,103,45,98,103r-171,0v-5,86,121,97,144,30r21,10v-20,35,-43,58,-92,58v-44,0,-66,-18,-86,-48v-20,28,-44,47,-86,48v-55,1,-99,-48,-99,-102v0,-54,45,-99,99,-99v41,0,67,19,86,50v19,-31,44,-49,86,-50xm193,-94v1,-42,-34,-79,-75,-78v-44,1,-74,33,-74,77v0,44,32,77,76,77v43,0,72,-32,73,-76xm362,-114v-7,-52,-77,-77,-119,-41v-11,9,-18,23,-23,41r142,0","w":409},"\u2013":{"d":"-2,-112r184,0r0,23r-184,0r0,-23","w":180},"\u2014":{"d":"-2,-112r364,0r0,23r-364,0r0,-23","w":360},"\u201c":{"d":"51,-265r14,8v-7,17,-11,21,-13,40r16,0r0,48r-32,0v0,-41,-1,-70,15,-96xm129,-265r14,8v-7,17,-11,21,-13,40r16,0r0,48r-32,0v0,-41,-1,-70,15,-96","w":180},"\u201d":{"d":"127,-169r-14,-7v7,-17,11,-21,13,-41r-16,0r0,-48r32,0v0,41,1,70,-15,96xm49,-169r-14,-7v7,-17,11,-21,12,-41r-15,0r0,-48r32,0v0,41,1,70,-15,96","w":174},"\u2018":{"d":"65,-265r14,8v-7,17,-11,21,-13,40r16,0r0,48r-32,0v0,-41,-1,-70,15,-96","w":126},"\u2019":{"d":"61,-169r-14,-7v7,-17,11,-21,13,-41r-16,0r0,-48r32,0v0,41,1,70,-15,96","w":126},"\u00f7":{"d":"81,-212r35,0r0,35r-35,0r0,-35xm10,-141r178,0r0,24r-178,0r0,-24xm81,-82r35,0r0,36r-35,0r0,-36","w":197},"\u25ca":{"d":"97,-250r73,125r-73,125r-20,0r-69,-125r69,-125r20,0xm87,-233r-60,108r60,108r63,-108","w":177},"\u00ff":{"d":"7,-191r26,0r66,147r63,-147r27,0r-114,261r-26,0r36,-84xm42,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm114,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":193},"\u0178":{"d":"11,-259r30,0r66,107r65,-107r30,0r-82,135r0,124r-25,0r0,-124xm50,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm122,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":213},"\u2044":{"d":"-61,7r162,-272r20,0r-163,272r-19,0","w":59},"\u2215":{"d":"-61,7r162,-272r20,0r-163,272r-19,0","w":59},"\u00a4":{"d":"156,-38v-27,25,-86,27,-112,0r-21,20r-16,-16r21,-20v-25,-28,-25,-81,0,-109r-21,-20r16,-16r21,21v27,-24,84,-27,111,-1r21,-20r15,16r-20,20v27,25,26,83,1,109r20,20r-15,16xm100,-174v-35,0,-66,31,-66,66v0,35,31,66,66,66v35,0,66,-31,66,-66v0,-35,-31,-66,-66,-66","w":199},"\u2039":{"d":"78,-191r-39,96r39,95r-26,0r-39,-95r39,-96r26,0","w":90},"\u203a":{"d":"12,0r40,-96r-40,-95r26,0r39,95r-39,96r-26,0","w":90},"\uf001":{"d":"40,-191v-12,-68,49,-99,95,-66v11,8,15,21,16,35r-25,0v-3,-16,-13,-24,-29,-24v-30,0,-33,21,-32,55r39,0r0,21r-39,0r0,170r-25,0r0,-170r-25,0r0,-21r25,0xm126,-191r25,0r0,191r-25,0r0,-191","w":175},"\ufb01":{"d":"40,-191v-12,-68,49,-99,95,-66v11,8,15,21,16,35r-25,0v-3,-16,-13,-24,-29,-24v-30,0,-33,21,-32,55r39,0r0,21r-39,0r0,170r-25,0r0,-170r-25,0r0,-21r25,0xm126,-191r25,0r0,191r-25,0r0,-191","w":175},"\uf002":{"d":"127,-196v12,-51,-42,-67,-58,-31v-1,5,-2,17,-2,36r39,0r0,22r-39,0r0,169r-26,0r0,-169r-25,0r0,-22r25,0v-2,-51,12,-79,56,-79v41,0,55,23,55,75r0,195r-25,0r0,-196","w":174},"\ufb02":{"d":"127,-196v12,-51,-42,-67,-58,-31v-1,5,-2,17,-2,36r39,0r0,22r-39,0r0,169r-26,0r0,-169r-25,0r0,-22r25,0v-2,-51,12,-79,56,-79v41,0,55,23,55,75r0,195r-25,0r0,-196","w":174},"\u2021":{"d":"86,-265r26,0r-4,62r63,-4r0,26r-63,-5v4,54,4,107,0,161r63,-4r0,26r-63,-5r4,63r-26,0r5,-63r-63,5r0,-26r63,4v-5,-54,-5,-107,0,-161r-63,5r0,-26r63,4","w":199},"\u2219":{"d":"28,-129v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,27,-44,28,-44,0","w":99},"\u201a":{"d":"62,48r-14,-7v7,-17,11,-21,12,-41r-15,0r0,-48r32,0v0,41,1,70,-15,96","w":127},"\u201e":{"d":"130,48r-14,-8v7,-16,11,-20,12,-40r-15,0r0,-48r32,0v0,41,1,70,-15,96xm52,48r-14,-8v7,-16,11,-20,12,-40r-15,0r0,-48r32,0v0,41,1,70,-15,96","w":180},"\u2030":{"d":"69,-265v49,9,106,12,154,-5r20,0r-188,288r-23,0r171,-262v-22,6,-52,7,-84,7v28,38,-3,94,-50,94v-33,0,-62,-28,-60,-61v1,-35,25,-60,60,-61xm108,-204v0,-21,-19,-39,-39,-39v-20,0,-38,18,-38,39v0,20,18,38,38,38v21,0,39,-17,39,-38xm150,-53v0,-33,28,-61,61,-61v33,0,60,28,60,61v0,33,-28,61,-60,61v-33,0,-61,-28,-61,-61xm249,-53v0,-21,-17,-39,-38,-39v-21,0,-39,18,-39,39v0,21,18,38,39,38v20,0,38,-18,38,-38xm290,-53v0,-33,28,-61,61,-61v33,0,61,28,61,61v0,33,-28,61,-61,61v-33,0,-61,-28,-61,-61xm389,-53v0,-21,-17,-39,-38,-39v-21,0,-39,19,-39,39v0,20,18,38,39,38v20,0,38,-18,38,-38","w":422},"\u00c2":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm122,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":266},"\u00ca":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm96,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":193},"\u00c1":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm145,-333r38,0r-52,54r-24,0","w":266},"\u00cb":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm51,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm123,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":193},"\u00c8":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm96,-333r39,54r-25,0r-51,-54r37,0","w":193},"\u00cd":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm52,-333r38,0r-52,54r-24,0","w":81},"\u00ce":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm29,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":81},"\u00cf":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm-16,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm56,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":81},"\u00cc":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm30,-333r39,54r-25,0r-51,-54r37,0","w":81},"\u00d3":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm168,-333r38,0r-52,54r-24,0","w":312},"\u00d4":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm145,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":312},"\uf000":{"w":284},"\u00d2":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm145,-333r39,54r-25,0r-51,-54r37,0","w":312},"\u00da":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm129,-333r38,0r-52,54r-24,0","w":235},"\u00db":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm107,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":235},"\u00d9":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm107,-333r39,54r-25,0r-51,-54r37,0","w":235},"\u0131":{"d":"24,-191r25,0r0,191r-25,0r0,-191","w":72},"\u02c6":{"d":"79,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":180},"\u02dc":{"d":"15,-250v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":158},"\u02c9":{"d":"27,-260r121,0r0,21r-121,0r0,-21","w":174},"\u02d8":{"d":"43,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":163},"\u02d9":{"d":"20,-246v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":79},"\u02da":{"d":"22,-260v0,-20,18,-37,38,-37v20,0,37,17,37,37v0,20,-17,38,-37,38v-20,0,-39,-17,-38,-38xm79,-260v0,-9,-9,-20,-19,-19v-10,-1,-20,9,-20,19v0,10,10,19,20,19v9,0,19,-10,19,-19","w":119},"\u00b8":{"d":"73,41v-2,-9,-13,-8,-23,-5r5,-36r15,0r-3,21v14,-4,26,6,27,18v-1,28,-43,34,-70,23r4,-13v15,5,44,9,45,-8","w":116},"\u02dd":{"d":"83,-281r38,0r-52,54r-24,0xm139,-281r38,0r-52,54r-24,0","w":198},"\u02db":{"d":"88,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":108},"\u02c7":{"d":"102,-226r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":180},"\u0141":{"d":"77,-151r47,-38r0,30r-47,39r0,95r99,0r0,25r-125,0r0,-98r-35,29r0,-30r35,-30r0,-130r26,0r0,108","w":186},"\u0142":{"d":"66,-171r35,-22r0,24r-35,23r0,146r-24,0r0,-130r-33,21r0,-25r33,-21r0,-110r24,0r0,94","w":107},"\u0160":{"d":"144,-102v44,64,-39,141,-104,96v-13,-8,-24,-22,-35,-42r22,-13v15,28,33,42,53,42v27,0,48,-17,48,-44v0,-62,-107,-74,-107,-141v0,-49,54,-76,97,-52v11,6,22,17,34,33r-21,16v-16,-20,-22,-29,-48,-31v-36,-3,-46,46,-19,66v13,9,74,54,80,70xm101,-278r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":179},"\u0161":{"d":"18,-146v4,-55,72,-66,106,-24r-16,16v-21,-26,-62,-26,-68,7v7,45,84,41,84,96v0,59,-86,74,-115,29r16,-18v13,14,26,22,40,22v18,0,35,-14,35,-32v-4,-47,-86,-40,-82,-96xm81,-226r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":139},"\u017d":{"d":"21,-234r0,-25r137,0r-108,234r102,0r0,25r-142,0r109,-234r-98,0xm98,-278r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":172},"\u017e":{"d":"12,-191r140,0r-108,169r105,0r0,22r-147,0r108,-170r-98,0r0,-21xm88,-226r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":152},"\u00a6":{"d":"108,-121r0,-144r25,0r0,135xm108,70r0,-168r25,-10r0,178r-25,0","w":241},"\u00d0":{"d":"266,-126v0,81,-46,126,-136,126r-93,0r0,-117r-31,0r0,-24r31,0r0,-118r65,0v110,-3,164,38,164,133xm240,-126v0,-93,-69,-114,-178,-107r0,92r68,0r0,24r-68,0r0,93v106,5,178,-8,178,-102","w":284},"\u00f0":{"d":"18,-96v0,-69,73,-125,141,-89v-11,-15,-24,-28,-38,-41r-38,16r-9,-19r31,-13v-11,-9,-21,-17,-29,-23r34,0v6,4,12,9,18,14r29,-12r9,18r-20,9v40,38,72,77,72,136v0,62,-41,103,-101,105v-54,2,-99,-47,-99,-101xm192,-96v0,-46,-28,-77,-72,-77v-41,0,-77,32,-77,76v0,42,34,79,75,78v43,-2,75,-31,74,-77","w":235},"\u00dd":{"d":"11,-259r30,0r66,107r65,-107r30,0r-82,135r0,124r-25,0r0,-124xm118,-333r38,0r-52,54r-24,0","w":213},"\u00fd":{"d":"7,-191r26,0r66,147r63,-147r27,0r-114,261r-26,0r36,-84xm108,-281r38,0r-52,54r-24,0","w":193},"\u00de":{"d":"193,-129v0,66,-55,72,-136,69r0,60r-26,0r0,-259r26,0r0,61v78,-3,136,2,136,69xm166,-129v0,-50,-56,-45,-109,-44r0,88v53,1,109,6,109,-44","w":213},"\u00fe":{"d":"129,5v-35,-2,-59,-16,-77,-38r0,103r-24,0r0,-335r24,0r0,109v17,-23,40,-39,76,-40v54,-1,99,47,99,100v0,53,-45,102,-98,101xm202,-95v0,-45,-31,-76,-76,-77v-41,-1,-76,35,-76,77v0,46,33,77,77,77v43,0,75,-34,75,-77","w":245},"\u2212":{"d":"20,-141r178,0r0,24r-178,0r0,-24","w":218},"\u00d7":{"d":"125,-129r59,58r-17,16r-58,-58r-58,58r-16,-16r58,-58r-58,-59r16,-16r58,59r58,-59r17,16","w":218},"\u00b9":{"d":"39,-262r33,0r0,133r-19,0r0,-116r-26,0","w":119},"\u00b2":{"d":"92,-224v-5,-35,-66,-30,-65,7r-18,0v0,-28,24,-48,53,-48v34,0,61,31,43,61v-10,17,-41,42,-58,58r66,0r0,17r-112,0r63,-57v17,-17,24,-19,28,-38","w":119},"\u00b3":{"d":"60,-248v-15,1,-22,8,-28,21r-19,0v3,-48,90,-50,93,-2v0,10,-5,18,-16,25v44,17,21,78,-29,78v-32,0,-48,-15,-53,-42r19,0v3,34,68,32,68,-1v0,-21,-19,-23,-44,-25r0,-17v38,7,46,-37,9,-37","w":123},"\u00bd":{"d":"31,-262r33,0r0,133r-19,0r0,-116r-26,0xm49,7r162,-272r20,0r-163,272r-19,0xm256,-94v-5,-35,-66,-30,-65,7r-18,0v0,-28,24,-48,53,-48v34,0,61,31,43,61v-10,17,-41,42,-58,58r66,0r0,17r-112,0r63,-57v17,-17,24,-19,28,-38","w":299},"\u00bc":{"d":"33,-262r33,0r0,133r-19,0r0,-116r-26,0xm68,7r162,-272r20,0r-163,272r-19,0xm273,-139r0,93r18,0r0,17r-18,0r0,30r-20,0r0,-30r-76,0xm253,-46r0,-43r-37,43r37,0","w":299},"\u00be":{"d":"64,-248v-15,1,-22,8,-28,21r-19,0v3,-48,90,-50,93,-2v0,10,-5,18,-16,25v44,17,21,78,-29,78v-32,0,-48,-15,-53,-42r19,0v3,34,68,32,68,-1v0,-21,-19,-23,-44,-25r0,-17v38,7,46,-37,9,-37xm76,7r162,-272r20,0r-163,272r-19,0xm272,-139r0,93r18,0r0,17r-18,0r0,30r-20,0r0,-30r-76,0xm252,-46r0,-43r-37,43r37,0","w":299},"\u20a3":{"d":"57,-73r50,0r0,24r-50,0r0,49r-26,0r0,-49r-31,0r0,-24r31,0r0,-186r130,0r0,26r-104,0r0,81r104,0r0,25r-104,0r0,54","w":174},"\u011e":{"d":"21,-129v-1,-102,103,-162,203,-124v19,8,39,21,57,38r-20,19v-24,-24,-58,-43,-98,-43v-64,0,-111,45,-115,109v-8,122,200,156,219,31r-82,0r0,-25r111,0v1,80,-52,129,-130,131v-80,2,-144,-58,-145,-136xm118,-320v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":313},"\u011f":{"d":"18,-97v0,-94,127,-132,174,-61r0,-33r25,0r0,152v24,131,-159,148,-197,54r27,0v31,61,167,48,145,-51v-46,66,-174,33,-174,-61xm193,-97v0,-45,-29,-75,-73,-75v-45,0,-76,32,-78,76v-2,42,33,73,76,73v44,0,75,-30,75,-74xm83,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":242},"\u0130":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm21,-298v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":81},"\u015e":{"d":"144,-102v44,64,-39,141,-104,96v-13,-8,-24,-22,-35,-42r22,-13v15,28,33,42,53,42v27,0,48,-17,48,-44v0,-62,-107,-74,-107,-141v0,-49,54,-76,97,-52v11,6,22,17,34,33r-21,16v-16,-20,-22,-29,-48,-31v-36,-3,-46,46,-19,66v13,9,74,54,80,70xm94,41v-2,-9,-13,-8,-23,-5r5,-36r15,0r-3,21v14,-4,26,6,27,18v-1,28,-43,34,-70,23r4,-13v15,5,44,9,45,-8","w":179},"\u015f":{"d":"18,-146v4,-55,72,-66,106,-24r-16,16v-21,-26,-62,-26,-68,7v7,45,84,41,84,96v0,59,-86,74,-115,29r16,-18v13,14,26,22,40,22v18,0,35,-14,35,-32v-4,-47,-86,-40,-82,-96xm78,41v-2,-9,-13,-8,-23,-5r5,-36r15,0r-3,21v14,-4,26,6,27,18v-1,28,-43,34,-70,23r4,-13v15,5,44,9,45,-8","w":139},"\u0106":{"d":"20,-131v0,-99,109,-165,204,-120v19,10,36,23,48,40r-20,16v-20,-26,-51,-45,-93,-45v-65,0,-109,45,-112,112v-4,105,145,149,205,68r20,15v-24,30,-61,52,-113,52v-80,2,-139,-58,-139,-138xm173,-333r38,0r-52,54r-24,0","w":292},"\u0107":{"d":"18,-94v0,-102,146,-136,195,-58r-19,13v-40,-61,-151,-34,-151,43v0,78,109,104,151,45r19,13v-17,25,-47,43,-89,43v-57,0,-106,-43,-106,-99xm134,-281r38,0r-52,54r-24,0","w":232},"\u010c":{"d":"20,-131v0,-99,109,-165,204,-120v19,10,36,23,48,40r-20,16v-20,-26,-51,-45,-93,-45v-65,0,-109,45,-112,112v-4,105,145,149,205,68r20,15v-24,30,-61,52,-113,52v-80,2,-139,-58,-139,-138xm171,-278r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":292},"\u010d":{"d":"18,-94v0,-102,146,-136,195,-58r-19,13v-40,-61,-151,-34,-151,43v0,78,109,104,151,45r19,13v-17,25,-47,43,-89,43v-57,0,-106,-43,-106,-99xm137,-226r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":232},"\u0111":{"d":"118,-196v36,1,59,17,76,40r0,-58r-54,0r0,-20r54,0r0,-31r24,0r0,31r28,0r0,20r-28,0r0,214r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm196,-95v0,-42,-35,-78,-76,-77v-45,1,-76,32,-76,77v0,44,32,77,76,77v44,0,76,-31,76,-77","w":246},"\u00af":{"d":"-2,-304r184,0r0,19r-184,0r0,-19","w":180},"\u00b7":{"d":"85,-133v0,-11,10,-20,21,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-12,0,-21,-9,-21,-21","w":119},"\uf003":{"d":"99,-269r0,93r18,0r0,17r-18,0r0,30r-20,0r0,-30r-76,0xm79,-176r0,-43r-37,43r37,0","w":123},"\u0102":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm96,-320v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":266},"\u0103":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm78,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":245},"\u0104":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm265,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":266},"\u0105":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm230,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":245},"\u010e":{"d":"249,-126v0,81,-45,128,-135,126r-83,0r0,-259r54,0v111,-3,164,38,164,133xm223,-126v0,-89,-61,-113,-167,-107r0,209v104,5,167,-13,167,-102xm129,-278r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":267},"\u010f":{"d":"19,-96v-3,-88,125,-140,175,-60r0,-109r24,0r0,265r-24,0r0,-33v-21,25,-47,38,-77,38v-55,1,-96,-48,-98,-101xm196,-95v0,-44,-35,-77,-76,-77v-43,0,-75,36,-76,77v-1,41,36,77,76,77v41,0,76,-33,76,-77xm246,-183r-12,-7v6,-12,10,-23,11,-34r-13,0r0,-41r27,0v1,35,0,58,-13,82","w":246},"\u0110":{"d":"266,-126v0,81,-46,126,-136,126r-93,0r0,-117r-31,0r0,-24r31,0r0,-118r65,0v110,-3,164,38,164,133xm240,-126v0,-93,-69,-114,-178,-107r0,92r68,0r0,24r-68,0r0,93v106,5,178,-8,178,-102","w":284},"\u0118":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm177,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":193},"\u0119":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm155,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":233},"\u011a":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm119,-278r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":193},"\u011b":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm129,-226r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":233},"\u0132":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm110,-41v47,40,88,27,88,-44r0,-174r25,0r0,175v14,93,-72,114,-126,63","w":254},"\u0133":{"d":"16,-250v-1,-11,10,-20,20,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-11,0,-20,-10,-20,-21xm88,-250v0,-11,10,-20,21,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-12,0,-21,-9,-21,-21xm24,-191r25,0r0,191r-25,0r0,-191xm61,47v20,11,36,3,36,-25r0,-213r24,0r0,220v2,45,-27,54,-60,40r0,-22","w":145},"\u0139":{"d":"31,-259r26,0r0,234r100,0r0,25r-126,0r0,-259xm96,-333r38,0r-52,54r-24,0","w":166},"\u013a":{"d":"24,-265r24,0r0,265r-24,0r0,-265xm52,-333r38,0r-52,54r-24,0","w":72},"\u013d":{"d":"31,-259r26,0r0,234r100,0r0,25r-126,0r0,-259xm98,-162r-14,-7v7,-17,11,-21,13,-41r-16,0r0,-48r32,0v0,41,1,70,-15,96","w":166},"\u013e":{"d":"24,-265r24,0r0,265r-24,0r0,-265xm76,-183r-12,-7v6,-12,10,-23,11,-34r-14,0r0,-41r27,0v0,34,1,59,-12,82","w":74},"\u013f":{"d":"31,-259r26,0r0,234r100,0r0,25r-126,0r0,-259xm87,-133v0,-11,10,-20,21,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-12,0,-21,-9,-21,-21","w":166},"\u0140":{"d":"24,-265r24,0r0,265r-24,0r0,-265xm62,-133v0,-11,10,-20,21,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-12,0,-21,-9,-21,-21","w":94},"\u0143":{"d":"32,0r0,-259r5,0r172,198r0,-198r26,0r0,259r-6,0r-171,-195r0,195r-26,0xm151,-333r38,0r-52,54r-24,0","w":266},"\u0144":{"d":"119,-173v-76,1,-68,89,-67,173r-25,0r0,-191r25,0r0,34v17,-22,38,-38,72,-39v87,-1,69,108,70,196r-24,0v-5,-70,22,-174,-51,-173xm117,-281r38,0r-52,54r-24,0","w":219},"\u0147":{"d":"32,0r0,-259r5,0r172,198r0,-198r26,0r0,259r-6,0r-171,-195r0,195r-26,0xm146,-278r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":266},"\u0148":{"d":"119,-173v-76,1,-68,89,-67,173r-25,0r0,-191r25,0r0,34v17,-22,38,-38,72,-39v87,-1,69,108,70,196r-24,0v-5,-70,22,-174,-51,-173xm133,-226r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":219},"\u0149":{"d":"120,-173v-76,1,-68,89,-67,173r-25,0r0,-191r25,0r0,34v17,-22,38,-38,72,-39v87,-1,69,108,70,196r-24,0v-5,-70,22,-174,-51,-173xm5,-169r-14,-7v7,-17,11,-21,13,-41r-16,0r0,-48r32,0v0,41,1,70,-15,96","w":220},"\u0150":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm149,-333r38,0r-52,54r-24,0xm205,-333r38,0r-52,54r-24,0","w":312},"\u0151":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm113,-281r38,0r-52,54r-24,0xm169,-281r38,0r-52,54r-24,0","w":235},"\u0154":{"d":"195,-190v0,50,-35,70,-90,70r93,120r-32,0r-93,-120r-14,0r0,120r-26,0r0,-259v84,-2,162,-5,162,69xm168,-190v0,-49,-56,-44,-109,-43r0,88v53,1,109,5,109,-45xm127,-333r38,0r-52,54r-24,0","w":218},"\u0155":{"d":"43,0r-25,0r0,-191r25,0r0,28v15,-23,40,-43,72,-27r-13,21v-75,-15,-56,95,-59,169xm74,-281r38,0r-52,54r-24,0","w":108},"\u0158":{"d":"195,-190v0,50,-35,70,-90,70r93,120r-32,0r-93,-120r-14,0r0,120r-26,0r0,-259v84,-2,162,-5,162,69xm168,-190v0,-49,-56,-44,-109,-43r0,88v53,1,109,5,109,-45xm115,-278r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":218},"\u0159":{"d":"43,0r-25,0r0,-191r25,0r0,28v15,-23,40,-43,72,-27r-13,21v-75,-15,-56,95,-59,169xm70,-226r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":108},"\u015a":{"d":"144,-102v44,64,-39,141,-104,96v-13,-8,-24,-22,-35,-42r22,-13v15,28,33,42,53,42v27,0,48,-17,48,-44v0,-62,-107,-74,-107,-141v0,-49,54,-76,97,-52v11,6,22,17,34,33r-21,16v-16,-20,-22,-29,-48,-31v-36,-3,-46,46,-19,66v13,9,74,54,80,70xm97,-333r38,0r-52,54r-24,0","w":179},"\u015b":{"d":"18,-146v4,-55,72,-66,106,-24r-16,16v-21,-26,-62,-26,-68,7v7,45,84,41,84,96v0,59,-86,74,-115,29r16,-18v13,14,26,22,40,22v18,0,35,-14,35,-32v-4,-47,-86,-40,-82,-96xm70,-281r38,0r-52,54r-24,0","w":139},"\u0162":{"d":"6,-233r0,-26r142,0r0,26r-58,0r0,233r-26,0r0,-233r-58,0xm83,75r-12,-5v4,-8,7,-16,7,-22r-15,0r0,-27r28,0v1,22,-2,43,-8,54","w":153},"\u0163":{"d":"49,-262r25,0r0,71r39,0r0,21r-39,0r0,170r-25,0r0,-170r-34,0r0,-21r34,0r0,-71xm67,75r-11,-5v4,-8,6,-16,6,-22r-15,0r0,-27r28,0v1,22,-2,43,-8,54","w":121},"\u0164":{"d":"6,-233r0,-26r142,0r0,26r-58,0r0,233r-26,0r0,-233r-58,0xm91,-278r-24,0r-51,-45r31,0r31,27r32,-27r33,0","w":153},"\u0165":{"d":"104,-204r-10,-5v6,-10,10,-19,10,-27r-12,0r0,-29r24,0v0,28,1,45,-12,61xm49,-262r25,0r0,71r39,0r0,21r-39,0r0,170r-25,0r0,-170r-34,0r0,-21r34,0r0,-71","w":121},"\u016e":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm74,-312v0,-20,18,-37,38,-37v20,0,37,17,37,37v0,20,-17,38,-37,38v-20,0,-39,-17,-38,-38xm131,-312v0,-9,-9,-20,-19,-19v-10,-1,-20,9,-20,19v0,10,10,19,20,19v9,0,19,-10,19,-19","w":235},"\u016f":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm65,-260v0,-20,18,-37,38,-37v20,0,37,17,37,37v0,20,-17,38,-37,38v-20,0,-39,-17,-38,-38xm122,-260v0,-9,-9,-20,-19,-19v-10,-1,-20,9,-20,19v0,10,10,19,20,19v9,0,19,-10,19,-19","w":218},"\u0170":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm113,-333r38,0r-52,54r-24,0xm169,-333r38,0r-52,54r-24,0","w":235},"\u0171":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm105,-281r38,0r-52,54r-24,0xm161,-281r38,0r-52,54r-24,0","w":218},"\u0179":{"d":"21,-234r0,-25r137,0r-108,234r102,0r0,25r-142,0r109,-234r-98,0xm92,-333r38,0r-52,54r-24,0","w":172},"\u017a":{"d":"12,-191r140,0r-108,169r105,0r0,22r-147,0r108,-170r-98,0r0,-21xm93,-281r38,0r-52,54r-24,0","w":152},"\u017b":{"d":"21,-234r0,-25r137,0r-108,234r102,0r0,25r-142,0r109,-234r-98,0xm60,-298v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":172},"\u017c":{"d":"12,-191r140,0r-108,169r105,0r0,22r-147,0r108,-170r-98,0r0,-21xm51,-246v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":152},"\uf100":{"d":"31,-258r156,0r0,31r-122,0r0,227r-34,0r0,-258","w":195},"\uf101":{"d":"20,-129v-1,-78,39,-136,116,-135v74,0,114,56,113,136v0,78,-36,135,-113,135v-81,-1,-115,-54,-116,-136xm213,-131v0,-58,-24,-105,-77,-105v-57,1,-81,42,-80,106v1,64,19,109,78,109v58,0,79,-44,79,-110xm86,-146r97,0r0,30r-97,0r0,-30","w":268},"\uf102":{"d":"20,-127v0,-69,40,-101,114,-103r0,-34r34,0r0,34v75,3,113,37,113,103v0,66,-38,100,-113,103r0,55r-34,0r0,-55v-76,-3,-114,-37,-114,-103xm134,-203v-51,0,-77,26,-77,76v0,48,26,73,77,76r0,-152xm168,-203r0,152v51,-1,76,-26,76,-76v0,-50,-25,-75,-76,-76","w":301},"\uf103":{"d":"18,-89v0,-58,30,-101,85,-101v29,0,49,12,63,35r8,-32r34,0v-17,62,-16,129,3,187r-36,0v-4,-13,-6,-25,-8,-34v-40,75,-149,32,-149,-55xm163,-93v0,-41,-14,-73,-54,-73v-38,0,-54,31,-54,74v0,40,17,73,54,73v39,0,54,-29,54,-74","w":226},"\uf104":{"d":"18,-85v1,-55,39,-87,97,-81v-28,-23,-46,-30,-46,-64v0,-44,65,-51,106,-38r0,23v-36,-9,-85,0,-64,34v38,40,94,64,94,127v0,52,-38,89,-94,89v-54,0,-94,-38,-93,-90xm168,-83v-1,-36,-18,-65,-55,-65v-38,0,-58,25,-58,64v0,38,19,66,57,65v34,0,57,-26,56,-64","w":223},"\uf105":{"d":"55,-82v-1,51,57,69,111,58r0,26v-80,14,-148,-18,-148,-94v0,-74,64,-111,145,-95r0,25v-56,-5,-104,4,-107,55r106,0r0,25r-107,0","w":184},"\uf106":{"d":"18,-93v0,-66,44,-96,116,-95r105,1r0,27r-60,0v52,52,20,165,-67,165v-58,0,-94,-38,-94,-98xm168,-94v0,-40,-16,-75,-56,-74v-39,0,-58,26,-58,78v0,39,18,71,57,71v41,-1,57,-31,57,-75","w":245},"\uf107":{"d":"7,-187r158,0r0,28r-62,0r0,159r-34,0r0,-159r-62,0r0,-28","w":172},"\uf108":{"d":"18,-94v0,-66,42,-93,105,-95r0,-45r33,0r0,45v61,0,103,32,103,93v0,69,-40,95,-104,99r0,65r-33,0r0,-66v-61,0,-104,-31,-104,-96xm122,-165v-46,0,-66,26,-67,71v0,48,22,73,67,73r0,-144xm156,-165r0,144v45,0,67,-25,67,-73v0,-47,-22,-70,-67,-71","w":277},"\u2017":{"d":"-2,26r184,0r0,18r-184,0r0,-18xm-2,57r184,0r0,18r-184,0r0,-18","w":180},"\u2032":{"d":"41,-184r-18,0r7,-81r26,0","w":71},"\u2033":{"d":"95,-184r-18,0r7,-81r26,0xm27,-184r-19,0r8,-81r26,0","w":111},"\u203c":{"d":"66,-265r0,200r-26,0r0,-200r26,0xm150,-265r0,200r-25,0r0,-200r25,0xm31,-17v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22xm116,-17v0,-27,44,-28,44,0v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":191},"\u207f":{"d":"68,-205v-43,0,-33,57,-34,104r-21,0r0,-120r21,0r0,17v30,-39,81,-16,81,41r0,62r-20,0v-4,-39,15,-104,-27,-104","w":128},"\u20a7":{"d":"31,-259v81,-1,161,-7,162,68r13,0r0,-71r25,0r0,71v62,5,108,-22,143,21r-16,16v-13,-13,-25,-19,-38,-19v-14,0,-30,11,-29,26v6,46,83,40,83,96v0,59,-85,73,-114,29r15,-18v21,32,72,28,76,-10v-6,-47,-87,-39,-83,-96v0,-9,2,-16,6,-24r-43,0r0,170r-25,0r0,-170r-16,0v-14,51,-63,50,-133,50r0,120r-26,0r0,-259xm166,-190v0,-49,-56,-44,-109,-43r0,87v68,2,109,6,109,-44","w":390},"\u2105":{"d":"8,-201v-5,-62,87,-89,113,-34r-16,9v-20,-37,-77,-18,-77,24v0,42,57,62,77,23r16,10v-12,19,-30,29,-53,29v-36,0,-58,-30,-60,-61xm66,7r162,-272r20,0r-163,272r-19,0xm192,-60v0,-32,25,-63,57,-63v31,0,56,31,56,63v0,33,-24,63,-56,63v-33,0,-57,-30,-57,-63xm249,-16v46,0,46,-87,0,-87v-21,-1,-36,22,-36,44v0,23,16,43,36,43","w":313},"\u2113":{"d":"113,-11v-27,25,-80,20,-75,-27r0,-40r-14,18r-17,-14r31,-41v4,-58,-17,-147,41,-147v24,0,41,18,39,41v-3,43,-23,64,-50,104r0,73v0,39,20,22,45,4r0,29xm80,-241v-22,3,-9,54,-12,83v16,-28,23,-34,26,-62v1,-11,-5,-22,-14,-21","w":129},"\u2190":{"d":"86,-154r14,0v-9,20,-21,38,-34,54r280,0r0,18r-280,0v12,12,23,30,34,54r-13,0v-26,-30,-51,-50,-73,-60r0,-7v21,-8,44,-28,72,-59","w":360},"\u2191":{"d":"27,-185v31,-28,50,-51,58,-72r9,0v10,22,29,47,59,73r0,13v-24,-11,-42,-22,-54,-34r0,280r-18,0r0,-280v-16,13,-34,25,-54,34r0,-14","w":180},"\u2192":{"d":"273,-154v28,31,52,51,73,59r0,7v-22,10,-47,30,-73,60r-13,0v11,-24,22,-42,34,-54r-280,0r0,-18r280,0v-13,-16,-25,-34,-34,-54r13,0","w":360},"\u2193":{"d":"27,3r0,-14v20,9,38,22,54,35r0,-281r18,0r0,281v12,-12,30,-24,54,-35r0,14v-30,26,-49,50,-59,72r-9,0v-8,-21,-27,-44,-58,-72","w":180},"\u2194":{"d":"346,-95r0,8v-21,9,-45,29,-71,59r-14,0v8,-20,19,-38,34,-54r-230,0v15,16,26,34,34,54r-14,0v-26,-30,-50,-50,-71,-59r0,-8v21,-9,45,-29,71,-59r14,0v-8,20,-19,38,-34,54r230,0v-15,-16,-26,-34,-34,-54r14,0v26,30,50,50,71,59","w":360},"\u2195":{"d":"86,-257r8,0v9,21,29,45,59,71r0,14v-20,-8,-39,-19,-55,-34r0,230v16,-15,35,-26,55,-34r0,14v-30,26,-50,50,-59,71r-8,0v-9,-21,-29,-45,-59,-71r0,-14v20,8,38,19,54,34r0,-230v-16,15,-34,26,-54,34r0,-14v30,-26,50,-50,59,-71","w":180},"\u21a8":{"d":"86,-257r8,0v9,21,29,45,59,71r0,14v-20,-8,-39,-19,-55,-34r0,230v16,-15,35,-26,55,-34r0,14v-30,26,-50,50,-59,71r-8,0v-9,-21,-29,-45,-59,-71r0,-14v20,8,38,19,54,34r0,-230v-16,15,-34,26,-54,34r0,-14v30,-26,50,-50,59,-71xm27,92r126,0r0,17r-126,0r0,-17","w":180},"\u221f":{"d":"64,-225r17,0r0,207r208,0r0,18r-225,0r0,-225","w":352},"\u2229":{"d":"106,-239v-93,0,-57,143,-64,239r-19,0v4,-111,-26,-262,83,-262v108,0,80,145,83,262r-19,0v-7,-96,29,-239,-64,-239","w":211},"\u2261":{"d":"198,-212r0,24r-178,0r0,-24r178,0xm20,-141r178,0r0,24r-178,0r0,-24xm198,-71r0,24r-178,0r0,-24r178,0","w":218},"\u25a1":{"d":"26,-166r166,0r0,166r-166,0r0,-166xm39,-153r0,140r139,0r0,-140r-139,0","w":217},"\u25aa":{"d":"104,-160r0,82r-81,0r0,-82r81,0","w":127},"\u25ab":{"d":"104,-160r0,82r-81,0r0,-82r81,0xm91,-146r-55,0r0,54r55,0r0,-54","w":127},"\u25cf":{"d":"31,-102v0,-42,36,-77,78,-77v41,0,77,36,77,77v0,41,-36,78,-77,78v-41,0,-78,-37,-78,-78","w":217},"\u25e6":{"d":"20,-119v0,-23,21,-45,44,-44v23,0,44,19,44,44v0,23,-21,44,-44,44v-23,0,-44,-21,-44,-44xm95,-119v0,-16,-15,-31,-31,-31v-16,0,-31,14,-31,31v0,17,15,31,31,31v16,0,32,-14,31,-31","w":127},"\uf004":{"d":"57,21r22,10r-32,60r-16,-7","w":119},"\u0100":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm73,-312r121,0r0,21r-121,0r0,-21","w":266},"\u0101":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm63,-260r121,0r0,21r-121,0r0,-21","w":245},"\u0108":{"d":"20,-131v0,-99,109,-165,204,-120v19,10,36,23,48,40r-20,16v-20,-26,-51,-45,-93,-45v-65,0,-109,45,-112,112v-4,105,145,149,205,68r20,15v-24,30,-61,52,-113,52v-80,2,-139,-58,-139,-138xm142,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":292},"\u0109":{"d":"18,-94v0,-102,146,-136,195,-58r-19,13v-40,-61,-151,-34,-151,43v0,78,109,104,151,45r19,13v-17,25,-47,43,-89,43v-57,0,-106,-43,-106,-99xm105,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":232},"\u010a":{"d":"20,-131v0,-99,109,-165,204,-120v19,10,36,23,48,40r-20,16v-20,-26,-51,-45,-93,-45v-65,0,-109,45,-112,112v-4,105,145,149,205,68r20,15v-24,30,-61,52,-113,52v-80,2,-139,-58,-139,-138xm134,-298v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":292},"\u010b":{"d":"18,-94v0,-102,146,-136,195,-58r-19,13v-40,-61,-151,-34,-151,43v0,78,109,104,151,45r19,13v-17,25,-47,43,-89,43v-57,0,-106,-43,-106,-99xm100,-246v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":232},"\u0112":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm45,-312r121,0r0,21r-121,0r0,-21","w":193},"\u0113":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm57,-260r121,0r0,21r-121,0r0,-21","w":233},"\u0114":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm58,-320v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":193},"\u0115":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm78,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":233},"\u0116":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm86,-298v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":193},"\u0117":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm97,-246v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":233},"\u011c":{"d":"21,-129v-1,-102,103,-162,203,-124v19,8,39,21,57,38r-20,19v-24,-24,-58,-43,-98,-43v-64,0,-111,45,-115,109v-8,122,200,156,219,31r-82,0r0,-25r111,0v1,80,-52,129,-130,131v-80,2,-144,-58,-145,-136xm147,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":313},"\u011d":{"d":"18,-97v0,-94,127,-132,174,-61r0,-33r25,0r0,152v24,131,-159,148,-197,54r27,0v31,61,167,48,145,-51v-46,66,-174,33,-174,-61xm193,-97v0,-45,-29,-75,-73,-75v-45,0,-76,32,-78,76v-2,42,33,73,76,73v44,0,75,-30,75,-74xm106,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":242},"\u0120":{"d":"21,-129v-1,-102,103,-162,203,-124v19,8,39,21,57,38r-20,19v-24,-24,-58,-43,-98,-43v-64,0,-111,45,-115,109v-8,122,200,156,219,31r-82,0r0,-25r111,0v1,80,-52,129,-130,131v-80,2,-144,-58,-145,-136xm140,-298v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":313},"\u0121":{"d":"18,-97v0,-94,127,-132,174,-61r0,-33r25,0r0,152v24,131,-159,148,-197,54r27,0v31,61,167,48,145,-51v-46,66,-174,33,-174,-61xm193,-97v0,-45,-29,-75,-73,-75v-45,0,-76,32,-78,76v-2,42,33,73,76,73v44,0,75,-30,75,-74xm102,-246v0,-11,9,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20","w":242},"\u0122":{"d":"21,-129v-1,-102,103,-162,203,-124v19,8,39,21,57,38r-20,19v-24,-24,-58,-43,-98,-43v-64,0,-111,45,-115,109v-8,122,200,156,219,31r-82,0r0,-25r111,0v1,80,-52,129,-130,131v-80,2,-144,-58,-145,-136xm172,41v-2,-9,-13,-8,-23,-5r5,-36r15,0r-3,21v14,-4,26,6,27,18v-1,28,-43,34,-70,23r4,-13v15,5,44,9,45,-8","w":313},"\u0123":{"d":"18,-97v0,-94,127,-132,174,-61r0,-33r25,0r0,152v24,131,-159,148,-197,54r27,0v31,61,167,48,145,-51v-46,66,-174,33,-174,-61xm193,-97v0,-45,-29,-75,-73,-75v-45,0,-76,32,-78,76v-2,42,33,73,76,73v44,0,75,-30,75,-74xm119,-319r14,8v-7,17,-11,21,-13,40r16,0r0,48r-32,0v0,-41,-1,-70,15,-96","w":242},"\u0124":{"d":"31,-259r26,0r0,109r132,0r0,-109r26,0r0,259r-26,0r0,-125r-132,0r0,125r-26,0r0,-259xm112,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":245},"\u0125":{"d":"119,-173v-76,1,-68,89,-67,173r-25,0r0,-265r25,0r0,108v17,-22,38,-38,72,-39v87,-1,69,108,70,196r-24,0v-5,-70,22,-174,-51,-173xm98,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":219},"\u0126":{"d":"57,-218r132,0r0,-41r26,0r0,41r23,0r0,24r-23,0r0,194r-26,0r0,-125r-132,0r0,125r-26,0r0,-194r-23,0r0,-24r23,0r0,-41r26,0r0,41xm57,-194r0,44r132,0r0,-44r-132,0","w":245},"\u0127":{"d":"119,-173v-78,1,-67,90,-67,173r-25,0r0,-218r-26,0r0,-20r26,0r0,-27r25,0r0,27r66,0r0,20r-66,0r0,61v47,-69,159,-42,142,59r0,98r-24,0v-6,-70,23,-174,-51,-173","w":219},"\u0128":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm-23,-302v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":81},"\u0129":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm-28,-250v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":72},"\u012a":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm-20,-312r121,0r0,21r-121,0r0,-21","w":81},"\u012b":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm-24,-260r121,0r0,21r-121,0r0,-21","w":72},"\u012c":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm2,-320v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":81},"\u012d":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm-3,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":72},"\u012e":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm68,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":81},"\u012f":{"d":"16,-250v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-11,0,-20,-10,-20,-21xm24,-191r25,0r0,191r-25,0r0,-191xm63,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":72},"\u0134":{"d":"29,-41v36,34,87,33,87,-44r0,-174r26,0r0,175v15,96,-75,110,-127,63xm99,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":173},"\u0135":{"d":"25,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0xm-11,47v19,10,35,4,35,-25r0,-213r25,0r0,220v2,45,-27,54,-60,40r0,-22","w":73},"\u0136":{"d":"31,-259r27,0r0,97r103,-97r35,0r-124,116r134,143r-35,0r-113,-121r0,121r-27,0r0,-259xm131,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":212},"\u0137":{"d":"27,-265r25,0r0,151r88,-77r37,0r-105,91r111,100r-35,0r-96,-86r0,86r-25,0r0,-265xm118,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":180},"\u0138":{"d":"27,-191r25,0r0,77r88,-77r37,0r-105,91r111,100r-35,0r-96,-86r0,86r-25,0r0,-191","w":180},"\u013b":{"d":"31,-259r26,0r0,234r100,0r0,25r-126,0r0,-259xm116,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":166},"\u013c":{"d":"24,-265r24,0r0,265r-24,0r0,-265xm63,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":72},"\u0145":{"d":"32,0r0,-259r5,0r172,198r0,-198r26,0r0,259r-6,0r-171,-195r0,195r-26,0xm160,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":266},"\u0146":{"d":"119,-173v-76,1,-68,89,-67,173r-25,0r0,-191r25,0r0,34v17,-22,38,-38,72,-39v87,-1,69,108,70,196r-24,0v-5,-70,22,-174,-51,-173xm137,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":219},"\u014a":{"d":"259,-128v0,101,-102,183,-166,101r18,-16v12,16,28,25,47,25v49,0,74,-58,74,-112v0,-59,-39,-112,-94,-111v-35,0,-64,22,-81,44r0,197r-26,0r0,-259r26,0r0,32v23,-25,52,-38,85,-38v71,-1,117,64,117,137","w":279},"\u014b":{"d":"52,-157v46,-69,142,-44,142,59r0,127v1,45,-27,54,-60,40r0,-22v20,11,40,3,36,-25v-8,-74,28,-195,-51,-195v-78,0,-67,90,-67,173r-25,0r0,-191r25,0r0,34","w":219},"\u014c":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm96,-312r121,0r0,21r-121,0r0,-21","w":312},"\u014d":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm58,-260r121,0r0,21r-121,0r0,-21","w":235},"\u014e":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm118,-320v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":312},"\u014f":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm79,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":235},"\u0156":{"d":"195,-190v0,50,-35,70,-90,70r93,120r-32,0r-93,-120r-14,0r0,120r-26,0r0,-259v84,-2,162,-5,162,69xm168,-190v0,-49,-56,-44,-109,-43r0,88v53,1,109,5,109,-45xm133,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":218},"\u0157":{"d":"43,0r-25,0r0,-191r25,0r0,28v15,-23,40,-43,72,-27r-13,21v-75,-15,-56,95,-59,169xm78,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":108},"\u015c":{"d":"144,-102v44,64,-39,141,-104,96v-13,-8,-24,-22,-35,-42r22,-13v15,28,33,42,53,42v27,0,48,-17,48,-44v0,-62,-107,-74,-107,-141v0,-49,54,-76,97,-52v11,6,22,17,34,33r-21,16v-16,-20,-22,-29,-48,-31v-36,-3,-46,46,-19,66v13,9,74,54,80,70xm78,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":179},"\u015d":{"d":"18,-146v4,-55,72,-66,106,-24r-16,16v-21,-26,-62,-26,-68,7v7,45,84,41,84,96v0,59,-86,74,-115,29r16,-18v13,14,26,22,40,22v18,0,35,-14,35,-32v-4,-47,-86,-40,-82,-96xm59,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":139},"\u0166":{"d":"90,-137r49,0r0,25r-49,0r0,112r-26,0r0,-112r-50,0r0,-25r50,0r0,-96r-58,0r0,-26r142,0r0,26r-58,0r0,96","w":153},"\u0167":{"d":"74,-107r43,0r0,21r-43,0r0,86r-25,0r0,-86r-38,0r0,-21r38,0r0,-63r-34,0r0,-21r34,0r0,-71r25,0r0,71r39,0r0,21r-39,0r0,63","w":121},"\u0168":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm55,-302v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":235},"\u0169":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm45,-250v33,-42,79,15,116,-12r12,17v-34,39,-86,-20,-117,13","w":218},"\u016a":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm57,-312r121,0r0,21r-121,0r0,-21","w":235},"\u016b":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm49,-260r121,0r0,21r-121,0r0,-21","w":218},"\u016c":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm79,-320v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":235},"\u016d":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm71,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":218},"\u0172":{"d":"121,7v-63,0,-89,-33,-89,-109r0,-157r26,0r0,157v-5,59,16,84,61,84v93,0,49,-150,59,-241r26,0v-5,112,31,266,-83,266xm153,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":235},"\u0173":{"d":"108,5v-98,0,-84,-101,-84,-196r25,0v3,75,-18,178,59,172v46,-3,58,-23,58,-83r0,-89r26,0v0,0,14,196,-84,196xm139,67v-49,16,-75,-43,-34,-67r19,0v-14,12,-21,23,-21,34v1,16,18,22,38,18","w":218},"\u0174":{"d":"17,-259r26,0r53,187r74,-187r5,0r74,187r53,-187r27,0r-74,259r-5,0r-77,-196r-78,196r-5,0xm161,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":345},"\u0175":{"d":"2,-191r25,0r58,139r62,-139r4,0r61,139r60,-139r26,0r-83,191r-5,0r-61,-137r-61,137r-5,0xm138,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":299},"\u0176":{"d":"11,-259r30,0r66,107r65,-107r30,0r-82,135r0,124r-25,0r0,-124xm95,-323r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":213},"\u0177":{"d":"7,-191r26,0r66,147r63,-147r27,0r-114,261r-26,0r36,-84xm85,-271r24,0r51,45r-31,0r-31,-27r-33,27r-32,0","w":193},"\u017f":{"d":"24,-211v-7,-55,23,-66,67,-54r0,24v-22,-12,-43,-7,-43,24r0,217r-24,0r0,-211","w":72},"\u01fa":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm96,-283v0,-20,18,-37,38,-37v20,0,37,17,37,37v0,20,-17,38,-37,38v-20,0,-39,-17,-38,-38xm153,-283v0,-9,-9,-20,-19,-19v-10,-1,-20,9,-20,19v0,10,10,19,20,19v9,0,19,-10,19,-19xm140,-382r38,0r-52,54r-24,0","w":266},"\u01fb":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm85,-253v0,-20,18,-37,38,-37v20,0,37,17,37,37v0,20,-17,38,-37,38v-20,0,-39,-17,-38,-38xm142,-253v0,-9,-9,-20,-19,-19v-10,-1,-20,9,-20,19v0,10,10,19,20,19v9,0,19,-10,19,-19xm131,-351r38,0r-52,54r-24,0","w":245},"\u01fc":{"d":"0,0r167,-259r160,0r0,27r-122,0r0,79r122,0r0,26r-122,0r0,102r122,0r0,25r-148,0r0,-85r-94,0r-55,85r-30,0xm102,-109r77,0r0,-120xm228,-333r38,0r-52,54r-24,0","w":357},"\u01fd":{"d":"21,-96v0,-96,129,-134,175,-60r0,-35r23,0r0,34v28,-47,109,-51,148,-10v18,20,28,44,28,74r-172,0v3,43,30,75,75,75v37,0,56,-17,70,-45r21,11v-20,62,-136,78,-170,18r0,34r-23,0r0,-35v-19,25,-40,39,-76,40v-53,1,-99,-47,-99,-101xm368,-114v-5,-60,-95,-77,-129,-31v-7,8,-12,19,-15,31r144,0xm197,-95v-1,-46,-30,-77,-76,-77v-43,0,-74,32,-75,76v-1,42,35,78,76,78v42,0,75,-35,75,-77xm220,-281r38,0r-52,54r-24,0","w":416},"\u01fe":{"d":"61,-31v-85,-79,-26,-234,95,-234v30,0,57,9,82,26r26,-31r18,16r-26,31v22,22,34,53,36,94v4,104,-123,175,-212,113r-29,34r-19,-15xm221,-219v-72,-52,-174,0,-174,91v0,30,10,56,31,77xm97,-36v74,45,172,-7,169,-93v0,-29,-10,-54,-28,-74xm168,-333r38,0r-52,54r-24,0","w":312},"\u01ff":{"d":"49,-22v-65,-57,-19,-174,68,-174v24,0,44,7,62,21r21,-24r16,13r-22,26v55,62,5,165,-76,165v-19,0,-37,-4,-53,-14r-20,24r-16,-13xm163,-156v-57,-46,-145,16,-114,91v4,10,9,18,16,25xm81,-28v70,41,144,-47,96,-113xm128,-281r38,0r-52,54r-24,0","w":235},"\u0384":{"d":"83,-281r-5,60r-20,0r-5,-60r30,0","w":136},"\u0385":{"d":"83,-281r-5,60r-20,0r-5,-60r30,0xm127,-243v0,8,-8,16,-16,16v-8,0,-15,-8,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15xm40,-243v0,8,-7,16,-15,16v-8,0,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15","w":136},"\u0386":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0xm74,-265r-5,60r-20,0r-5,-60r30,0","w":266},"\u0387":{"d":"54,-196v12,0,23,9,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,9,-22,21,-22","w":99},"\u0388":{"d":"48,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm13,-265r-5,60r-20,0r-5,-60r30,0","w":208},"\u0389":{"d":"47,-259r26,0r0,109r132,0r0,-109r26,0r0,259r-26,0r0,-125r-132,0r0,125r-26,0r0,-259xm13,-265r-5,60r-20,0r-5,-60r30,0","w":261},"\u038a":{"d":"44,-259r26,0r0,259r-26,0r0,-259xm13,-265r-5,60r-20,0r-5,-60r30,0","w":97},"\u038c":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110xm13,-265r-5,60r-20,0r-5,-60r30,0","w":312},"\u038e":{"d":"30,-259r30,0r66,107r65,-107r30,0r-82,135r0,124r-25,0r0,-124xm13,-265r-5,60r-20,0r-5,-60r30,0","w":232},"\u038f":{"d":"278,-145v-2,66,-31,86,-84,121r76,0r0,24r-99,0r0,-34v53,-38,77,-49,81,-110v3,-58,-43,-96,-101,-96v-58,0,-104,38,-101,96v3,61,27,72,80,110r0,34r-99,0r0,-24r76,0v-53,-36,-81,-54,-84,-121v-3,-72,56,-120,128,-120v72,0,130,49,127,120xm13,-265r-5,60r-20,0r-5,-60r30,0","w":301},"\u0390":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm51,-281r-5,60r-20,0r-5,-60r30,0xm95,-243v0,8,-8,16,-16,16v-8,0,-15,-8,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15xm8,-243v0,8,-7,16,-15,16v-8,0,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15","w":72},"\u0391":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0","w":266},"\u0392":{"d":"187,-74v0,44,-37,75,-84,74r-71,0r0,-259v69,-3,134,0,134,64v0,26,-14,44,-33,54v32,11,54,28,54,67xm139,-195v1,-39,-40,-40,-82,-38r0,83v47,2,80,-5,82,-45xm160,-74v0,-47,-45,-52,-103,-50r0,99v55,2,103,-1,103,-49","w":206},"\u0393":{"d":"161,-233r-104,0r0,233r-26,0r0,-259r130,0r0,26","w":166},"\u0394":{"d":"258,0r-249,0r122,-259r6,0xm218,-25r-84,-179r-85,179r169,0","w":266},"\u0395":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259","w":193},"\u0396":{"d":"21,-234r0,-25r137,0r-108,234r102,0r0,25r-142,0r109,-234r-98,0","w":172},"\u0397":{"d":"31,-259r26,0r0,109r132,0r0,-109r26,0r0,259r-26,0r0,-125r-132,0r0,125r-26,0r0,-259","w":245},"\u0398":{"d":"292,-129v0,74,-61,136,-135,136v-75,0,-137,-61,-137,-135v0,-74,62,-137,135,-137v76,0,137,60,137,136xm266,-129v0,-63,-53,-111,-110,-111v-58,-1,-109,51,-109,112v0,60,48,109,109,109v61,0,110,-49,110,-110xm221,-118r-129,0r0,-25r129,0r0,25","w":312},"\u0399":{"d":"28,-259r26,0r0,259r-26,0r0,-259","w":81},"\u039a":{"d":"31,-259r27,0r0,97r103,-97r35,0r-124,116r134,143r-35,0r-113,-121r0,121r-27,0r0,-259","w":212},"\u039b":{"d":"241,0r-28,0r-86,-200r-87,200r-28,0r113,-259r5,0","w":252},"\u039c":{"d":"20,0r36,-259r5,0r105,213r104,-213r4,0r37,259r-25,0r-26,-185r-91,185r-7,0r-92,-186r-25,186r-25,0","w":330},"\u039d":{"d":"32,0r0,-259r5,0r172,198r0,-198r26,0r0,259r-6,0r-171,-195r0,195r-26,0","w":266},"\u039e":{"d":"171,-233r-151,0r0,-26r151,0r0,26xm171,-127r-151,0r0,-25r151,0r0,25xm171,0r-151,0r0,-25r151,0r0,25","w":191},"\u039f":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110","w":312},"\u03a0":{"d":"215,0r-26,0r0,-234r-132,0r0,234r-26,0r0,-259r184,0r0,259","w":245},"\u03a1":{"d":"193,-190v-4,67,-55,73,-136,70r0,120r-26,0r0,-259r52,0v74,-3,102,12,110,69xm166,-190v0,-49,-56,-44,-109,-43r0,87v52,2,109,7,109,-44","w":213},"\u03a3":{"d":"163,0r-151,0r72,-129r-71,-130r147,0r0,25r-105,0r58,105r-59,104r109,0r0,25","w":180},"\u03a4":{"d":"6,-233r0,-26r142,0r0,26r-58,0r0,233r-26,0r0,-233r-58,0","w":153},"\u03a5":{"d":"11,-259r30,0r66,107r65,-107r30,0r-82,135r0,124r-25,0r0,-124","w":213},"\u03a6":{"d":"292,-131v0,65,-57,103,-124,106r0,25r-26,0r0,-25v-69,-3,-123,-39,-124,-106v0,-65,56,-103,124,-105r0,-23r26,0r0,23v69,3,124,39,124,105xm168,-50v53,-3,98,-25,97,-81v-1,-53,-42,-78,-97,-82r0,163xm142,-213v-53,4,-99,26,-98,82v1,53,43,78,98,81r0,-163","w":309},"\u03a7":{"d":"18,-259r30,0r62,101r62,-101r30,0r-77,126r82,133r-30,0r-67,-108r-68,108r-30,0r83,-133","w":219},"\u03a8":{"d":"155,-88v56,-7,79,-26,79,-92r0,-79r26,0r0,90v3,74,-39,101,-105,106r0,63r-26,0r0,-63v-67,-6,-104,-31,-104,-108r0,-88r26,0v4,60,-15,134,29,157v13,7,29,12,49,14r0,-171r26,0r0,171","w":284},"\u03a9":{"d":"278,-145v-2,66,-31,86,-84,121r76,0r0,24r-99,0r0,-34v53,-38,77,-49,81,-110v3,-58,-43,-96,-101,-96v-58,0,-104,38,-101,96v3,61,27,72,80,110r0,34r-99,0r0,-24r76,0v-53,-36,-81,-54,-84,-121v-3,-72,56,-120,128,-120v72,0,130,49,127,120","w":301},"\u03aa":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm-16,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm56,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":81},"\u03ab":{"d":"11,-259r30,0r66,107r65,-107r30,0r-82,135r0,124r-25,0r0,-124xm50,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm122,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":213},"\u03ac":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77xm138,-281r-5,60r-20,0r-5,-60r30,0","w":245},"\u03ad":{"d":"44,-54v-1,44,65,45,86,16r15,18v-35,42,-127,31,-127,-34v0,-24,12,-41,35,-51v-50,-18,-24,-92,29,-92v19,0,38,8,55,22r-14,17v-24,-22,-73,-22,-73,16v0,23,20,34,46,31r0,21v-30,-4,-51,11,-52,36xm91,-281r-5,60r-20,0r-5,-60r30,0","w":152},"\u03ae":{"d":"52,-157v46,-67,142,-45,142,59r0,168r-24,0r0,-161v1,-49,-6,-82,-51,-82v-77,0,-68,89,-67,173r-25,0r0,-191r25,0r0,34xm125,-281r-5,60r-20,0r-5,-60r30,0","w":219},"\u03af":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm51,-281r-5,60r-20,0r-5,-60r30,0","w":72},"\u03b0":{"d":"108,5v-60,-2,-85,-34,-84,-104r0,-92r25,0v3,76,-19,172,59,172v43,0,63,-33,63,-77v0,-32,-15,-58,-45,-78r14,-22v82,37,74,205,-32,201xm122,-281r-5,60r-20,0r-5,-60r30,0xm166,-243v0,8,-8,16,-16,16v-8,0,-15,-8,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15xm79,-243v0,8,-7,16,-15,16v-8,0,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15","w":214},"\u03b1":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77","w":245},"\u03b2":{"d":"197,-81v4,76,-105,120,-145,52r0,99r-25,0r0,-265v-2,-49,28,-72,71,-75v68,-5,86,95,25,112v42,3,72,34,74,77xm171,-80v-1,-47,-37,-65,-95,-62r0,-20v40,-1,60,-17,60,-48v1,-21,-15,-37,-36,-37v-72,0,-44,101,-48,166v-2,35,26,62,59,63v33,1,62,-29,60,-62","w":214},"\u03b3":{"d":"189,-191r-77,170r0,91r-25,0r0,-92r-78,-169r27,0r63,139r64,-139r26,0","w":199},"\u03b4":{"d":"103,5v-47,0,-85,-38,-85,-85v0,-39,20,-65,60,-79v-55,-32,-23,-111,42,-111v15,0,29,2,42,5r-6,22v-33,-10,-85,-4,-82,32v3,32,17,37,54,49v90,30,70,167,-25,167xm163,-80v1,-32,-28,-62,-60,-62v-32,0,-61,30,-60,62v0,33,26,62,60,62v34,0,60,-29,60,-62","w":205},"\u03b5":{"d":"44,-54v-1,44,65,45,86,16r15,18v-35,42,-127,31,-127,-34v0,-24,12,-41,35,-51v-50,-18,-24,-92,29,-92v19,0,38,8,55,22r-14,17v-24,-22,-73,-22,-73,16v0,23,20,34,46,31r0,21v-30,-4,-51,11,-52,36","w":152},"\u03b6":{"d":"154,-5v35,47,-26,97,-86,76r7,-22v35,13,87,-13,54,-41v-6,-4,-18,-9,-36,-12v-48,-9,-72,-37,-72,-85v0,-76,51,-106,108,-154r-88,0r0,-22r119,0r0,22v-60,56,-114,77,-114,152v0,43,17,57,58,66v27,6,44,11,50,20","w":167},"\u03b7":{"d":"52,-157v46,-67,142,-45,142,59r0,168r-24,0r0,-161v1,-49,-6,-82,-51,-82v-77,0,-68,89,-67,173r-25,0r0,-191r25,0r0,34","w":219},"\u03b8":{"d":"217,-132v0,75,-29,136,-99,137v-70,0,-100,-62,-100,-137v0,-75,32,-137,100,-138v69,0,100,63,99,138xm192,-143v-2,-56,-23,-105,-74,-105v-51,0,-72,50,-74,105r148,0xm44,-122v2,57,22,104,74,104v52,0,72,-47,74,-104r-148,0","w":235},"\u03b9":{"d":"24,-191r25,0r0,191r-25,0r0,-191","w":72},"\u03ba":{"d":"183,0r-35,0r-96,-86r0,86r-25,0r0,-191r25,0r0,77r88,-77r37,0r-105,91","w":180},"\u03bb":{"d":"189,0r-27,0r-63,-147r-66,147r-26,0r78,-177r-38,-88r26,0","w":193},"\u03bc":{"d":"101,-18v76,-1,69,-89,67,-173r24,0r0,191r-24,0r0,-34v-27,40,-86,55,-118,18r0,86r-25,0r0,-261r25,0v5,70,-23,174,51,173","w":219},"\u03bd":{"d":"9,-191r27,0r63,139r64,-139r26,0r-87,191r-5,0","w":199},"\u03be":{"d":"150,-8v42,44,-19,102,-82,79r7,-22v34,12,85,-11,56,-40v-5,-4,-20,-11,-42,-13v-87,-7,-87,-136,-14,-152v-71,-27,-38,-114,37,-114v18,0,34,3,49,7r-6,23v-34,-13,-98,-11,-95,33v2,35,45,48,88,44r0,21v-54,-4,-98,7,-102,57v-5,61,73,58,104,77","w":167},"\u03bf":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77","w":235},"\u03c0":{"d":"233,-170r-39,0r0,170r-25,0r0,-170r-97,0r0,170r-24,0r0,-170r-39,0r0,-21r224,0r0,21","w":241},"\u03c1":{"d":"223,-95v0,91,-127,139,-175,59r0,106r-24,0r0,-160v-2,-59,42,-106,99,-106v55,0,100,46,100,101xm198,-95v0,-41,-34,-77,-75,-77v-41,0,-74,36,-74,77v0,41,33,77,74,77v42,0,75,-34,75,-77","w":241},"\u03c2":{"d":"18,-94v0,-99,137,-140,181,-58r-20,13v-38,-61,-136,-33,-136,43v0,71,88,65,128,87v44,46,-17,102,-81,80r6,-22v35,13,88,-13,55,-41v-6,-4,-20,-9,-41,-12v-61,-10,-92,-39,-92,-90","w":208},"\u03c3":{"d":"18,-95v0,-64,62,-119,132,-96r101,0r0,21r-65,0v65,59,21,175,-68,175v-55,0,-100,-45,-100,-100xm192,-95v0,-41,-33,-77,-74,-77v-41,0,-75,35,-75,77v0,41,34,77,75,77v43,0,74,-36,74,-77","w":258},"\u03c4":{"d":"136,-170r-51,0r0,170r-25,0r0,-170r-51,0r0,-21r127,0r0,21","w":144},"\u03c5":{"d":"108,5v-60,-2,-85,-34,-84,-104r0,-92r25,0v3,76,-19,172,59,172v43,0,63,-33,63,-77v0,-32,-15,-58,-45,-78r14,-22v82,37,74,205,-32,201","w":214},"\u03c6":{"d":"257,-95v0,61,-46,97,-107,100r0,65r-25,0r0,-66v-86,5,-137,-92,-87,-159v13,-17,32,-28,55,-36r8,23v-38,14,-58,38,-58,73v0,45,27,70,82,75r0,-176v78,-4,132,31,132,101xm150,-172r0,152v81,1,105,-84,60,-130v-14,-15,-35,-21,-60,-22","w":275},"\u03c7":{"d":"166,-191r-66,123r74,138r-28,0r-60,-112r-61,112r-26,0r73,-137r-66,-124r27,0r53,98r53,-98r27,0","w":172},"\u03c8":{"d":"145,-19v52,-6,72,-27,72,-88r0,-84r24,0r0,94v2,70,-39,98,-96,102r0,65r-25,0r0,-65v-63,-6,-96,-31,-96,-104r0,-92r24,0v2,79,-19,172,72,171r0,-171r25,0r0,172","w":264},"\u03c9":{"d":"209,5v-27,0,-50,-17,-55,-40v-5,23,-27,39,-54,40v-85,4,-106,-118,-52,-168v21,-19,44,-31,75,-33r2,24v-48,2,-82,37,-82,86v0,40,19,68,55,68v40,0,46,-45,44,-91r25,0v-2,46,4,90,44,91v36,0,54,-29,54,-68v0,-49,-34,-84,-81,-86r2,-24v58,2,104,48,104,109v0,56,-30,91,-81,92","w":308},"\u03ca":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm-20,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm52,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":72},"\u03cb":{"d":"108,5v-60,-2,-85,-34,-84,-104r0,-92r25,0v3,76,-19,172,59,172v43,0,63,-33,63,-77v0,-32,-15,-58,-45,-78r14,-22v82,37,74,205,-32,201xm51,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm123,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":214},"\u03cc":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77xm133,-281r-5,60r-20,0r-5,-60r30,0","w":235},"\u03cd":{"d":"108,5v-60,-2,-85,-34,-84,-104r0,-92r25,0v3,76,-19,172,59,172v43,0,63,-33,63,-77v0,-32,-15,-58,-45,-78r14,-22v82,37,74,205,-32,201xm122,-281r-5,60r-20,0r-5,-60r30,0","w":214},"\u03ce":{"d":"209,5v-27,0,-50,-17,-55,-40v-5,23,-27,39,-54,40v-85,4,-106,-118,-52,-168v21,-19,44,-31,75,-33r2,24v-48,2,-82,37,-82,86v0,40,19,68,55,68v40,0,46,-45,44,-91r25,0v-2,46,4,90,44,91v36,0,54,-29,54,-68v0,-49,-34,-84,-81,-86r2,-24v58,2,104,48,104,109v0,56,-30,91,-81,92xm169,-281r-5,60r-20,0r-5,-60r30,0","w":308},"\u0401":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259xm51,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm123,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":193},"\u0402":{"d":"195,-69v0,-60,-46,-57,-105,-56r0,125r-27,0r0,-233r-57,0r0,-26r141,0r0,26r-57,0r0,83v80,-4,131,7,131,81v0,66,-61,96,-103,58r16,-18v28,27,61,0,61,-40","w":241},"\u0403":{"d":"57,0r-26,0r0,-259r130,0r0,26r-104,0r0,233xm124,-333r38,0r-52,54r-24,0","w":166},"\u0404":{"d":"21,-131v1,77,57,138,139,138v48,0,86,-18,113,-52r-20,-15v-39,48,-114,56,-165,18v-22,-16,-34,-42,-39,-76r122,0r0,-25r-121,0v3,-97,151,-132,203,-52r20,-16v-22,-31,-63,-54,-113,-54v-76,-2,-140,59,-139,134","w":292},"\u0405":{"d":"144,-102v44,64,-39,141,-104,96v-13,-8,-24,-22,-35,-42r22,-13v15,28,33,42,53,42v27,0,48,-17,48,-44v0,-62,-107,-74,-107,-141v0,-49,54,-76,97,-52v11,6,22,17,34,33r-21,16v-16,-20,-22,-29,-48,-31v-36,-3,-46,46,-19,66v13,9,74,54,80,70","w":179},"\u0406":{"d":"28,-259r26,0r0,259r-26,0r0,-259","w":81},"\u0407":{"d":"28,-259r26,0r0,259r-26,0r0,-259xm-16,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm56,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":81},"\u0408":{"d":"29,-41v36,34,87,33,87,-44r0,-174r26,0r0,175v15,96,-75,110,-127,63","w":173},"\u0409":{"d":"363,-73v-1,68,-58,76,-133,73r-96,-204r-97,204r-28,0r122,-259r6,0r54,111v84,0,174,-8,172,75xm336,-73v2,-63,-73,-47,-136,-49r46,97v53,1,89,-1,90,-48","w":383},"\u040a":{"d":"355,-77v2,86,-78,78,-166,77r0,-125r-132,0r0,125r-26,0r0,-259r26,0r0,109r132,0r0,-109r26,0r0,109v80,-3,138,1,140,73xm328,-76v-1,-56,-51,-49,-113,-49r0,100v61,0,114,8,113,-51","w":375},"\u040b":{"d":"195,0v-3,-58,17,-133,-50,-125r-55,0r0,125r-26,0r0,-233r-58,0r0,-26r142,0r0,26r-58,0r0,83v79,-3,141,-2,131,85r0,65r-26,0","w":244},"\u040c":{"d":"31,-259r27,0r0,97r103,-97r35,0r-124,116r134,143r-35,0r-113,-121r0,121r-27,0r0,-259xm135,-333r38,0r-52,54r-24,0","w":212},"\u040e":{"d":"33,-42v26,33,59,34,73,-8r-94,-208r29,0r78,176r72,-177r28,0r-98,233v-20,47,-81,39,-107,0xm78,-320v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":232},"\u040f":{"d":"105,0r-74,0r0,-259r26,0r0,235r119,0r0,-235r26,0r0,259r-73,0r0,39r-24,0r0,-39","w":233},"\u0410":{"d":"137,-259r121,259r-28,0r-41,-85r-111,0r-41,85r-28,0r122,-259r6,0xm134,-204r-45,94r89,0","w":266},"\u0411":{"d":"186,-74v2,43,-37,74,-84,74r-71,0r0,-259r130,0r0,26r-104,0r0,83v77,-3,126,12,129,76xm159,-74v0,-48,-46,-52,-102,-50r0,99v54,3,102,-2,102,-49","w":206},"\u0412":{"d":"187,-74v0,44,-37,75,-84,74r-71,0r0,-259v69,-3,134,0,134,64v0,26,-14,44,-33,54v32,11,54,28,54,67xm139,-195v1,-39,-40,-40,-82,-38r0,83v47,2,80,-5,82,-45xm160,-74v0,-47,-45,-52,-103,-50r0,99v55,2,103,-1,103,-49","w":206},"\u0413":{"d":"57,0r-26,0r0,-259r130,0r0,26r-104,0r0,233","w":166},"\u0414":{"d":"31,39r-26,0r0,-63r21,0r102,-235r9,0r107,235r20,0r0,63r-25,0r0,-39r-208,0r0,39xm56,-24r157,0r-81,-181","w":269},"\u0415":{"d":"32,-259r148,0r0,26r-123,0r0,81r122,0r0,25r-122,0r0,102r122,0r0,25r-147,0r0,-259","w":193},"\u0416":{"d":"181,-120r0,120r-26,0r0,-120r-8,-7r-106,127r-34,0r123,-143r-113,-116r35,0r103,110r0,-110r26,0r0,110r104,-110r35,0r-114,116r123,143r-34,0r-106,-127","w":336},"\u0417":{"d":"150,-194v0,-51,-67,-62,-96,-24r-17,-15v37,-53,140,-38,140,34v0,28,-12,47,-38,59v34,11,51,34,51,69v0,66,-78,97,-134,66v-14,-8,-27,-21,-39,-40r20,-12v20,28,31,41,67,41v34,0,61,-21,59,-56v-2,-43,-31,-55,-80,-53r0,-22v41,2,68,-13,67,-47","w":209},"\u0418":{"d":"235,0r-27,0r0,-198r-171,198r-5,0r0,-259r25,0r0,202r172,-202r6,0r0,259","w":266},"\u0419":{"d":"235,0r-27,0r0,-198r-171,198r-5,0r0,-259r25,0r0,202r172,-202r6,0r0,259xm95,-320v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":266},"\u041a":{"d":"31,-259r27,0r0,97r103,-97r35,0r-124,116r134,143r-35,0r-113,-121r0,121r-27,0r0,-259","w":212},"\u041b":{"d":"241,0r-28,0r-86,-200r-87,200r-28,0r113,-259r5,0","w":252},"\u041c":{"d":"20,0r36,-259r5,0r105,213r104,-213r4,0r37,259r-25,0r-26,-185r-91,185r-7,0r-92,-186r-25,186r-25,0","w":330},"\u041d":{"d":"31,-259r26,0r0,109r132,0r0,-109r26,0r0,259r-26,0r0,-125r-132,0r0,125r-26,0r0,-259","w":245},"\u041e":{"d":"20,-128v2,-80,56,-135,135,-137v76,-2,137,61,137,136v0,74,-61,136,-135,136v-74,0,-138,-62,-137,-135xm266,-129v0,-65,-47,-111,-110,-111v-63,0,-108,47,-109,112v-1,60,49,111,109,109v65,-1,110,-46,110,-110","w":312},"\u041f":{"d":"31,-259r184,0r0,259r-26,0r0,-234r-132,0r0,234r-26,0r0,-259","w":245},"\u0420":{"d":"193,-190v-4,67,-55,73,-136,70r0,120r-26,0r0,-259r52,0v74,-3,102,12,110,69xm166,-190v0,-49,-56,-44,-109,-43r0,87v52,2,109,7,109,-44","w":213},"\u0421":{"d":"20,-131v0,-99,109,-165,204,-120v19,10,36,23,48,40r-20,16v-20,-26,-51,-45,-93,-45v-65,0,-109,45,-112,112v-4,105,145,149,205,68r20,15v-24,30,-61,52,-113,52v-80,2,-139,-58,-139,-138","w":292},"\u0422":{"d":"6,-233r0,-26r142,0r0,26r-58,0r0,233r-26,0r0,-233r-58,0","w":153},"\u0423":{"d":"33,-42v26,33,59,34,73,-8r-94,-208r29,0r78,176r72,-177r28,0r-98,233v-20,47,-81,39,-107,0","w":232},"\u0424":{"d":"20,-148v0,-59,49,-83,124,-78r0,-33r26,0r0,33v74,-4,123,17,123,78v0,58,-50,80,-123,74r0,74r-26,0r0,-74v-71,5,-124,-11,-124,-74xm266,-149v0,-46,-44,-55,-96,-52r0,102v51,4,96,-3,96,-50xm47,-149v-1,47,44,54,97,50r0,-102v-51,-3,-97,6,-97,52","w":313},"\u0425":{"d":"18,-259r30,0r62,101r62,-101r30,0r-77,126r82,133r-30,0r-67,-108r-68,108r-30,0r83,-133","w":219},"\u0426":{"d":"223,0r-192,0r0,-259r26,0r0,235r120,0r0,-235r26,0r0,235r44,0r0,63r-24,0r0,-39","w":254},"\u0427":{"d":"31,-259v-4,71,-1,126,83,112r23,0r0,-112r26,0r0,259r-26,0r0,-122v-82,3,-135,-5,-131,-85r0,-52r25,0","w":194},"\u0428":{"d":"57,-24r111,0r0,-235r26,0r0,235r112,0r0,-235r26,0r0,259r-301,0r0,-259r26,0r0,235","w":362},"\u0429":{"d":"332,-24r44,0r0,63r-24,0r0,-39r-321,0r0,-259r26,0r0,235r111,0r0,-235r26,0r0,235r112,0r0,-235r26,0r0,235","w":383},"\u042a":{"d":"226,-75v1,82,-80,76,-167,75r0,-234r-53,0r0,-25r79,0r0,111v82,-1,140,0,141,73xm199,-73v-1,-56,-51,-50,-114,-49r0,97v62,-1,115,8,114,-48","w":246},"\u042b":{"d":"198,-75v2,82,-80,76,-167,75r0,-259r26,0r0,111v82,-2,139,1,141,73xm171,-73v-1,-56,-51,-50,-114,-49r0,97v62,-1,115,8,114,-48xm228,-259r26,0r0,259r-26,0r0,-259","w":285},"\u042c":{"d":"198,-75v2,82,-80,76,-167,75r0,-259r26,0r0,111v82,-2,139,1,141,73xm171,-73v-1,-56,-51,-50,-114,-49r0,97v62,-1,115,8,114,-48","w":218},"\u042d":{"d":"272,-131v-1,77,-57,138,-139,138v-48,0,-86,-18,-113,-52r20,-15v39,48,114,56,165,18v22,-16,34,-42,39,-76r-122,0r0,-25r121,0v-3,-97,-151,-132,-203,-52r-20,-16v22,-31,63,-54,113,-54v76,-2,140,59,139,134","w":292},"\u042e":{"d":"238,7v-73,-1,-131,-54,-136,-126r-45,0r0,119r-26,0r0,-259r26,0r0,116r45,0v9,-71,63,-120,134,-122v76,-2,138,61,138,136v0,75,-62,137,-136,136xm237,-19v60,0,110,-48,110,-110v0,-61,-51,-111,-110,-111v-58,0,-108,51,-108,112v0,59,51,109,108,109","w":394},"\u042f":{"d":"16,-190v0,50,35,70,90,70r-93,120r32,0r93,-120r14,0r0,120r26,0r0,-259v-84,-2,-162,-5,-162,69xm43,-190v0,-49,56,-44,109,-43r0,88v-53,1,-109,5,-109,-45","w":210},"\u0430":{"d":"118,-196v36,1,59,18,76,40r0,-35r24,0r0,191r-24,0r0,-33v-18,23,-42,36,-77,38v-53,1,-98,-48,-98,-101v0,-53,45,-101,99,-100xm195,-95v0,-42,-34,-78,-75,-77v-45,1,-76,32,-76,77v0,43,32,77,75,77v44,0,76,-30,76,-77","w":245},"\u0431":{"d":"18,-131v0,-126,66,-137,192,-138r0,23v-33,8,-114,1,-137,21v-21,18,-34,52,-34,92v11,-39,40,-62,84,-63v55,-1,100,47,100,101v0,53,-46,102,-100,100v-68,-3,-105,-55,-105,-136xm123,-18v41,0,75,-36,75,-77v0,-40,-36,-77,-75,-77v-39,0,-75,36,-75,77v0,41,34,77,75,77","w":240},"\u0432":{"d":"27,-191v56,-2,116,-3,114,48v0,19,-9,32,-26,39v25,9,38,26,38,51v0,55,-66,56,-126,53r0,-191xm115,-139v0,-32,-25,-33,-63,-31r0,60v36,1,63,2,63,-29xm125,-53v0,-35,-36,-37,-73,-35r0,67v38,1,73,4,73,-32","w":168},"\u0433":{"d":"52,-170r0,170r-25,0r0,-191r97,0r0,21r-72,0","w":129},"\u0434":{"d":"29,-21r74,-170r13,0r73,170r23,0r0,45r-24,0r0,-24r-158,0r0,25r-24,0r0,-46r23,0xm109,-153r-56,132r109,0","w":217},"\u0435":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0","w":233},"\u0436":{"d":"126,-191r24,0r0,84r92,-84r30,0r-90,85r97,106r-32,0r-82,-92r-15,11r0,81r-24,0r0,-81r-14,-11r-83,92r-31,0r96,-106r-89,-85r30,0r91,84r0,-84","w":276},"\u0437":{"d":"111,-54v-1,-27,-22,-39,-52,-36r0,-21v26,2,46,-7,46,-31v0,-38,-49,-38,-73,-16r-14,-17v35,-36,110,-26,111,29v0,20,-9,34,-27,41v59,21,37,110,-29,110v-26,0,-47,-8,-63,-25r15,-18v21,29,86,28,86,-16","w":152},"\u0438":{"d":"52,-191r0,141r142,-141r0,191r-24,0r0,-140r-140,140r-3,0r0,-191r25,0","w":221},"\u0439":{"d":"52,-191r0,141r142,-141r0,191r-24,0r0,-140r-140,140r-3,0r0,-191r25,0xm72,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":221},"\u043a":{"d":"27,-191r25,0r0,80r89,-80r34,0r-97,87r105,104r-35,0r-88,-88r-8,6r0,82r-25,0r0,-191","w":180},"\u043b":{"d":"189,0r-26,0r-64,-139r-63,139r-27,0r88,-191r4,0","w":199},"\u043c":{"d":"235,-191r7,0r65,191r-26,0r-47,-141r-74,141r-4,0r-74,-141r-47,141r-26,0r66,-191r6,0r77,149","w":316},"\u043d":{"d":"163,-92r-111,0r0,92r-25,0r0,-191r25,0r0,76r111,0r0,-76r25,0r0,191r-25,0r0,-92","w":215},"\u043e":{"d":"18,-95v0,-54,45,-101,100,-101v54,0,99,45,99,101v0,54,-44,100,-99,100v-55,0,-100,-46,-100,-100xm192,-95v2,-40,-35,-77,-74,-77v-39,0,-77,36,-75,77v1,44,31,77,75,77v44,0,72,-33,74,-77","w":235},"\u043f":{"d":"27,-191r161,0r0,191r-25,0r0,-168r-111,0r0,168r-25,0r0,-191","w":215},"\u0440":{"d":"129,5v-35,-2,-59,-16,-77,-38r0,103r-24,0r0,-261r24,0r0,35v17,-23,40,-39,76,-40v54,-1,99,47,99,100v0,53,-45,102,-98,101xm202,-95v0,-45,-31,-76,-76,-77v-41,-1,-76,35,-76,77v0,46,33,77,77,77v43,0,75,-34,75,-77","w":245},"\u0441":{"d":"18,-94v0,-102,146,-136,195,-58r-19,13v-40,-61,-151,-34,-151,43v0,78,109,104,151,45r19,13v-17,25,-47,43,-89,43v-57,0,-106,-43,-106,-99","w":232},"\u0442":{"d":"6,-191r126,0r0,21r-51,0r0,170r-25,0r0,-170r-50,0r0,-21","w":137},"\u0443":{"d":"7,-191r26,0r66,147r63,-147r27,0r-114,261r-26,0r36,-84","w":193},"\u0444":{"d":"18,-94v-9,-88,116,-138,165,-68r0,-103r24,0r0,103v48,-70,174,-19,164,68v9,87,-118,138,-164,65r0,99r-24,0r0,-99v-46,72,-174,21,-165,-65xm272,-173v-41,2,-66,33,-66,82v0,41,28,73,65,73v44,1,76,-36,76,-78v0,-42,-35,-78,-75,-77xm117,-173v-41,-1,-74,36,-74,78v0,42,33,80,76,77v42,-3,65,-28,65,-78v0,-45,-27,-76,-67,-77","w":389},"\u0445":{"d":"6,-191r29,0r51,71r50,-71r30,0r-65,91r73,100r-30,0r-58,-80r-58,80r-29,0r72,-100","w":172},"\u0446":{"d":"206,0r-179,0r0,-191r25,0r0,168r111,0r0,-168r25,0r0,168r41,0r0,53r-23,0r0,-30","w":235},"\u0447":{"d":"36,-191v1,45,-7,90,41,84r36,0r0,-84r24,0r0,191r-24,0r0,-86v-56,4,-104,-2,-101,-57r0,-48r24,0","w":164},"\u0448":{"d":"313,0r-286,0r0,-191r25,0r0,168r106,0r0,-168r25,0r0,168r105,0r0,-168r25,0r0,191","w":340},"\u0449":{"d":"331,0r-304,0r0,-191r25,0r0,168r106,0r0,-168r25,0r0,168r105,0r0,-168r25,0r0,168r42,0r0,53r-24,0r0,-30","w":360},"\u044a":{"d":"175,-57v1,59,-66,61,-130,57r0,-169r-35,0r0,-22r59,0r0,76v60,-4,105,5,106,58xm148,-57v-2,-37,-36,-40,-79,-38r0,74v40,2,81,-2,79,-36","w":186},"\u044b":{"d":"158,-57v1,59,-67,60,-131,57r0,-191r25,0r0,76v60,-4,105,6,106,58xm131,-56v0,-38,-36,-38,-78,-37r0,72v39,2,78,-2,78,-35xm192,-191r24,0r0,191r-24,0r0,-191","w":241},"\u044c":{"d":"158,-57v1,59,-67,60,-131,57r0,-191r25,0r0,76v60,-4,105,6,106,58xm131,-56v0,-38,-36,-38,-78,-37r0,72v39,2,78,-2,78,-35","w":169},"\u044d":{"d":"213,-94v0,-97,-146,-139,-195,-58r20,13v37,-58,143,-33,150,29r-85,0r0,22r85,0v-3,70,-110,95,-150,37r-20,13v16,27,51,42,90,43v58,3,105,-45,105,-99","w":231},"\u044e":{"d":"183,5v-53,0,-95,-41,-99,-92r-32,0r0,87r-24,0r0,-191r24,0r0,80r32,0v7,-47,47,-85,99,-85v55,0,100,47,100,101v0,53,-46,100,-100,100xm183,-18v41,0,75,-36,75,-77v0,-41,-36,-77,-75,-77v-39,0,-76,37,-75,77v0,41,33,77,75,77","w":300},"\u044f":{"d":"19,-138v0,-57,57,-55,114,-53r0,191r-25,0r0,-86r-17,0r-55,86r-27,0r58,-88v-26,-3,-48,-22,-48,-50xm43,-137v1,32,27,31,65,30r0,-63v-37,0,-67,-3,-65,33","w":160},"\u0451":{"d":"116,-18v39,-2,56,-16,72,-45r21,10v-17,34,-42,57,-91,58v-58,1,-100,-47,-100,-100v0,-54,43,-101,98,-101v56,0,100,43,100,102r-172,0v-1,42,31,78,72,76xm188,-115v-6,-52,-80,-76,-120,-40v-10,9,-17,22,-22,40r142,0xm61,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm133,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":233},"\u0452":{"d":"125,-173v-79,0,-67,90,-67,173r-25,0r0,-220r-27,0r0,-21r27,0r0,-24r25,0r0,24r84,0r0,21r-84,0r0,63v47,-69,141,-43,142,59r1,127v2,45,-28,54,-61,40r0,-22v30,14,40,-7,36,-47v-6,-70,23,-174,-51,-173","w":225},"\u0453":{"d":"52,-170r0,170r-25,0r0,-191r97,0r0,21r-72,0xm91,-281r38,0r-52,54r-24,0","w":129},"\u0454":{"d":"18,-94v0,-97,146,-139,195,-58r-20,13v-37,-58,-143,-33,-150,29r85,0r0,22r-85,0v3,70,110,95,150,37r20,13v-16,27,-51,42,-90,43v-58,3,-105,-45,-105,-99","w":231},"\u0455":{"d":"18,-146v4,-55,72,-66,106,-24r-16,16v-21,-26,-62,-26,-68,7v7,45,84,41,84,96v0,59,-86,74,-115,29r16,-18v13,14,26,22,40,22v18,0,35,-14,35,-32v-4,-47,-86,-40,-82,-96","w":139},"\u0456":{"d":"16,-250v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-11,0,-20,-10,-20,-21xm24,-191r25,0r0,191r-25,0r0,-191","w":72},"\u0457":{"d":"24,-191r25,0r0,191r-25,0r0,-191xm-20,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm52,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":72},"\u0458":{"d":"16,-250v0,-11,10,-20,21,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-12,0,-21,-9,-21,-21xm-11,47v21,10,35,5,35,-25r0,-213r25,0r0,220v4,42,-26,55,-60,40r0,-22","w":73},"\u0459":{"d":"274,-57v0,50,-51,63,-111,57r-65,-146r-64,146r-25,0r88,-191r4,0r36,76v69,-2,137,-4,137,58xm247,-56v0,-45,-54,-37,-101,-37r33,72v37,2,68,-6,68,-35","w":285},"\u045a":{"d":"293,-57v2,59,-66,61,-130,57r0,-92r-111,0r0,92r-25,0r0,-191r25,0r0,76r111,0r0,-76r25,0r0,76v60,-4,103,7,105,58xm266,-55v0,-38,-36,-38,-78,-37r0,71v38,2,78,-1,78,-34","w":304},"\u045b":{"d":"125,-173v-78,1,-67,90,-67,173r-24,0r0,-220r-28,0r0,-21r28,0r0,-24r24,0r0,24r84,0r0,21r-84,0r0,63v47,-69,159,-42,142,59r0,98r-24,0v-6,-69,24,-175,-51,-173","w":225},"\u045c":{"d":"27,-191r25,0r0,80r89,-80r34,0r-97,87r105,104r-35,0r-88,-88r-8,6r0,82r-25,0r0,-191xm114,-281r38,0r-52,54r-24,0","w":180},"\u045e":{"d":"7,-191r26,0r66,147r63,-147r27,0r-114,261r-26,0r36,-84xm58,-268v12,24,66,25,78,0r23,0v-9,49,-116,49,-125,0r24,0","w":193},"\u045f":{"d":"95,0r-67,0r0,-191r24,0r0,168r111,0r0,-168r25,0r0,191r-70,0r0,30r-23,0r0,-30","w":215},"\u0490":{"d":"57,0r-26,0r0,-259r84,0r0,-37r25,0r0,63r-83,0r0,233","w":145},"\u0491":{"d":"52,-170r0,170r-25,0r0,-191r68,0r0,-24r24,0r0,45r-67,0","w":128},"\u1e80":{"d":"17,-259r26,0r53,187r74,-187r5,0r74,187r53,-187r27,0r-74,259r-5,0r-77,-196r-78,196r-5,0xm162,-333r39,54r-25,0r-51,-54r37,0","w":345},"\u1e81":{"d":"2,-191r25,0r58,139r62,-139r4,0r61,139r60,-139r26,0r-83,191r-5,0r-61,-137r-61,137r-5,0xm139,-281r39,54r-25,0r-51,-54r37,0","w":299},"\u1e82":{"d":"17,-259r26,0r53,187r74,-187r5,0r74,187r53,-187r27,0r-74,259r-5,0r-77,-196r-78,196r-5,0xm184,-333r38,0r-52,54r-24,0","w":345},"\u1e83":{"d":"2,-191r25,0r58,139r62,-139r4,0r61,139r60,-139r26,0r-83,191r-5,0r-61,-137r-61,137r-5,0xm161,-281r38,0r-52,54r-24,0","w":299},"\u1e84":{"d":"17,-259r26,0r53,187r74,-187r5,0r74,187r53,-187r27,0r-74,259r-5,0r-77,-196r-78,196r-5,0xm117,-298v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm189,-298v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":345},"\u1e85":{"d":"2,-191r25,0r58,139r62,-139r4,0r61,139r60,-139r26,0r-83,191r-5,0r-61,-137r-61,137r-5,0xm93,-246v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm165,-246v0,-11,9,-21,20,-21v12,0,21,9,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":299},"\u1ef2":{"d":"11,-259r30,0r66,107r65,-107r30,0r-82,135r0,124r-25,0r0,-124xm96,-333r39,54r-25,0r-51,-54r37,0","w":213},"\u1ef3":{"d":"7,-191r26,0r66,147r63,-147r27,0r-114,261r-26,0r36,-84xm85,-281r39,54r-25,0r-51,-54r37,0","w":193},"\u2015":{"d":"-2,-112r274,0r0,23r-274,0r0,-23","w":270},"\u201b":{"d":"65,-169v-16,-27,-15,-54,-15,-96r32,0r0,48r-16,0v1,13,6,27,13,41","w":126},"\u203e":{"d":"-7,-329r214,0r0,13r-214,0r0,-13","w":199},"\u20a4":{"d":"114,-242v-40,0,-48,36,-32,72r63,0r0,23r-56,0r5,20r51,0r0,22r-46,0v3,18,3,46,-2,59v22,18,38,26,48,26v11,0,18,-13,19,-40r25,0v0,32,-11,66,-40,67v-18,0,-39,-10,-61,-29v-10,19,-24,29,-42,29v-20,0,-36,-12,-36,-34v0,-31,35,-52,64,-33v3,-17,3,-30,-1,-45r-56,0r0,-22r51,0r-6,-20r-45,0r0,-23r39,0v-33,-70,51,-125,100,-77v12,11,17,28,18,49r-24,0v-1,-29,-13,-44,-36,-44xm34,-30v4,21,29,14,34,-6v-13,-11,-32,-12,-34,6","w":199},"\u2116":{"d":"32,0r0,-259r5,0r172,198r0,-198r26,0r0,259r-6,0r-171,-195r0,195r-26,0xm325,-172v33,0,61,28,61,61v0,33,-28,61,-61,61v-33,0,-61,-28,-61,-61v0,-33,28,-61,61,-61xm325,-73v21,0,39,-18,39,-38v1,-20,-18,-39,-39,-39v-21,0,-39,19,-39,39v0,20,18,38,39,38xm264,-18r122,0r0,18r-122,0r0,-18","w":395},"\u212e":{"d":"16,-93v0,-86,99,-132,157,-75v18,17,28,42,29,75r-146,0r0,65v37,35,99,25,122,-22r13,7v-23,32,-40,48,-82,49v-55,2,-93,-44,-93,-99xm161,-106r0,-53v-28,-28,-79,-28,-105,1r0,52r105,0","w":216},"\u215b":{"d":"50,7r162,-272r20,0r-163,272r-19,0xm40,-262r32,0r0,133r-19,0r0,-116r-26,0xm240,-136v38,0,62,46,25,63v47,18,23,76,-26,76v-49,0,-72,-58,-25,-76v-38,-18,-13,-63,26,-63xm214,-101v0,26,50,28,50,0v0,-13,-12,-18,-25,-18v-12,0,-25,7,-25,18xm207,-37v1,32,65,30,64,-1v0,-15,-14,-26,-31,-26v-17,0,-34,11,-33,27","w":299},"\u215c":{"d":"84,-230v-5,-25,-47,-24,-54,3r-19,0v4,-51,91,-49,93,-2v0,10,-5,18,-16,25v47,19,19,78,-29,78v-30,0,-48,-14,-53,-42r19,0v3,35,68,32,68,-1v0,-18,-18,-25,-44,-25r0,-17v16,0,35,-5,35,-19xm59,7r162,-272r19,0r-162,272r-19,0xm240,-136v38,0,62,46,25,63v47,18,23,81,-26,76v-49,5,-72,-58,-25,-76v-39,-18,-12,-63,26,-63xm214,-101v0,26,51,28,50,0v0,-13,-11,-18,-25,-18v-12,0,-25,7,-25,18xm207,-37v1,32,65,30,64,-1v0,-15,-14,-26,-31,-26v-17,0,-34,11,-33,27","w":299},"\u215d":{"d":"59,7r162,-272r19,0r-162,272r-19,0xm92,-173v-2,-30,-38,-30,-69,-21r15,-68r70,0r0,17r-55,0r-7,31v34,-8,64,11,66,41v3,54,-98,65,-105,10r20,0v5,32,68,23,65,-10xm240,-136v38,-4,62,46,25,63v47,18,23,76,-26,76v-49,0,-72,-58,-25,-76v-39,-18,-12,-67,26,-63xm214,-101v0,26,51,28,50,0v0,-13,-11,-18,-25,-18v-12,0,-25,7,-25,18xm207,-37v1,32,65,30,64,-1v0,-15,-14,-26,-31,-26v-17,0,-34,11,-33,27","w":299},"\u215e":{"d":"46,7r162,-272r19,0r-162,272r-19,0xm14,-262r102,0r-83,136r-16,-7r68,-112r-71,0r0,-17xm240,-136v38,-4,62,46,25,63v47,18,23,76,-26,76v-49,0,-72,-58,-25,-76v-38,-18,-12,-67,26,-63xm214,-101v0,26,50,28,50,0v0,-13,-12,-18,-25,-18v-12,0,-25,7,-25,18xm207,-37v1,32,65,30,64,-1v0,-15,-14,-26,-31,-26v-17,0,-34,11,-33,27","w":299},"\u2302":{"d":"27,0r0,-111r81,-92r81,92r0,111r-162,0xm41,-14r134,0r0,-91r-67,-76r-67,76r0,91","w":216},"\u2310":{"d":"20,-180r178,0r0,24r-154,0r0,77r-24,0r0,-101","w":218},"\u2320":{"d":"130,-287v-12,2,-9,10,-9,31r0,347r-26,0r0,-319v-1,-40,18,-74,52,-77v26,-2,32,33,8,35v-14,1,-15,-15,-25,-17","w":216},"\u2321":{"d":"86,72v12,-2,9,-10,9,-31r0,-346r26,0r0,318v1,41,-18,75,-52,78v-25,2,-33,-33,-9,-36v13,-1,17,15,26,17","w":216},"\u2500":{"d":"260,-94r-263,0r0,-31r263,0r0,31"},"\u2502":{"d":"113,109r0,-437r31,0r0,437r-31,0"},"\u250c":{"d":"260,-125r0,31r-116,0r0,203r-31,0r0,-234r147,0"},"\u2510":{"d":"113,-94r-116,0r0,-31r147,0r0,234r-31,0r0,-203"},"\u2514":{"d":"113,-94r0,-234r31,0r0,203r116,0r0,31r-147,0"},"\u2518":{"d":"144,-94r-147,0r0,-31r116,0r0,-203r31,0r0,234"},"\u251c":{"d":"113,109r0,-437r31,0r0,203r116,0r0,31r-116,0r0,203r-31,0"},"\u2524":{"d":"113,109r0,-203r-116,0r0,-31r116,0r0,-203r31,0r0,437r-31,0"},"\u252c":{"d":"113,-94r-116,0r0,-31r263,0r0,31r-116,0r0,203r-31,0r0,-203"},"\u2534":{"d":"260,-94r-263,0r0,-31r116,0r0,-203r31,0r0,203r116,0r0,31"},"\u253c":{"d":"113,-94r-116,0r0,-31r116,0r0,-203r31,0r0,203r116,0r0,31r-116,0r0,203r-31,0r0,-203"},"\u2550":{"d":"260,-127r-263,0r0,-31r263,0r0,31xm260,-60r-263,0r0,-31r263,0r0,31"},"\u2551":{"d":"146,109r0,-437r31,0r0,437r-31,0xm80,109r0,-437r30,0r0,437r-30,0"},"\u2552":{"d":"113,109r0,-267r147,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0"},"\u2553":{"d":"80,109r0,-234r180,0r0,31r-83,0r0,203r-31,0r0,-200r-36,0r0,200r-30,0"},"\u2554":{"d":"110,109r-30,0r0,-267r180,0r0,31r-150,0r0,236xm177,-60r0,169r-31,0r0,-200r114,0r0,31r-83,0"},"\u2555":{"d":"113,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r147,0r0,267r-31,0r0,-169"},"\u2556":{"d":"79,109r0,-203r-82,0r0,-31r180,0r0,234r-31,0r0,-203r-36,0r0,203r-31,0"},"\u2557":{"d":"146,109r0,-236r-149,0r0,-31r180,0r0,267r-31,0xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169"},"\u2558":{"d":"113,-60r0,-268r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-147,0"},"\u2559":{"d":"260,-94r-180,0r0,-234r30,0r0,203r36,0r0,-203r31,0r0,203r83,0r0,31"},"\u255a":{"d":"110,-328r0,237r150,0r0,31r-180,0r0,-268r30,0xm177,-158r83,0r0,31r-114,0r0,-201r31,0r0,170"},"\u255b":{"d":"144,-60r-147,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,268"},"\u255c":{"d":"177,-94r-180,0r0,-31r82,0r0,-203r31,0r0,203r36,0r0,-203r31,0r0,234"},"\u255d":{"d":"146,-328r31,0r0,268r-180,0r0,-31r149,0r0,-237xm79,-158r0,-170r31,0r0,201r-113,0r0,-31r82,0"},"\u255e":{"d":"113,109r0,-437r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0"},"\u255f":{"d":"146,109r0,-437r31,0r0,203r83,0r0,31r-83,0r0,203r-31,0xm80,109r0,-437r30,0r0,437r-30,0"},"\u2560":{"d":"80,109r0,-437r30,0r0,437r-30,0xm146,-127r0,-201r31,0r0,170r83,0r0,31r-114,0xm146,109r0,-200r114,0r0,31r-83,0r0,169r-31,0"},"\u2561":{"d":"113,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,437r-31,0r0,-169"},"\u2562":{"d":"79,109r0,-203r-82,0r0,-31r82,0r0,-203r31,0r0,437r-31,0xm146,109r0,-437r31,0r0,437r-31,0"},"\u2563":{"d":"146,109r0,-437r31,0r0,437r-31,0xm110,-328r0,201r-113,0r0,-31r82,0r0,-170r31,0xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169"},"\u2564":{"d":"260,-127r-263,0r0,-31r263,0r0,31xm113,-60r-116,0r0,-31r263,0r0,31r-116,0r0,169r-31,0r0,-169"},"\u2565":{"d":"79,109r0,-203r-82,0r0,-31r263,0r0,31r-83,0r0,203r-31,0r0,-200r-36,0r0,200r-31,0"},"\u2566":{"d":"260,-127r-263,0r0,-31r263,0r0,31xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169xm146,109r0,-200r114,0r0,31r-83,0r0,169r-31,0"},"\u2567":{"d":"260,-127r-263,0r0,-31r116,0r0,-170r31,0r0,170r116,0r0,31xm260,-60r-263,0r0,-31r263,0r0,31"},"\u2568":{"d":"260,-94r-263,0r0,-31r82,0r0,-203r31,0r0,203r36,0r0,-203r31,0r0,203r83,0r0,31"},"\u2569":{"d":"110,-127r-113,0r0,-31r82,0r0,-170r31,0r0,201xm260,-127r-114,0r0,-201r31,0r0,170r83,0r0,31xm260,-60r-263,0r0,-31r263,0r0,31"},"\u256a":{"d":"113,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0r0,-169"},"\u256b":{"d":"79,109r0,-203r-82,0r0,-31r82,0r0,-203r31,0r0,203r36,0r0,-203r31,0r0,203r83,0r0,31r-83,0r0,203r-31,0r0,-203r-36,0r0,203r-31,0"},"\u256c":{"d":"177,-158r83,0r0,31r-114,0r0,-201r31,0r0,170xm79,-158r0,-170r31,0r0,201r-113,0r0,-31r82,0xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169xm177,-60r0,169r-31,0r0,-200r114,0r0,31r-83,0"},"\u2580":{"d":"260,-109r-263,0r0,-219r263,0r0,219"},"\u2584":{"d":"260,109r-263,0r0,-218r263,0r0,218"},"\u2588":{"d":"-3,109r0,-437r263,0r0,437r-263,0"},"\u258c":{"d":"-3,109r0,-437r131,0r0,437r-131,0"},"\u2590":{"d":"128,109r0,-437r132,0r0,437r-132,0"},"\u2591":{"d":"19,-328r22,0r0,22r-22,0r0,-22xm106,-328r22,0r0,22r-22,0r0,-22xm194,-328r22,0r0,22r-22,0r0,-22xm63,-284r22,0r0,22r-22,0r0,-22xm150,-284r22,0r0,22r-22,0r0,-22xm238,-284r22,0r0,22r-22,0r0,-22xm194,-240r22,0r0,22r-22,0r0,-22xm106,-240r22,0r0,22r-22,0r0,-22xm19,-240r22,0r0,22r-22,0r0,-22xm238,-196r22,0r0,22r-22,0r0,-22xm150,-196r22,0r0,22r-22,0r0,-22xm63,-196r22,0r0,22r-22,0r0,-22xm19,-152r22,0r0,22r-22,0r0,-22xm106,-152r22,0r0,22r-22,0r0,-22xm194,-152r22,0r0,22r-22,0r0,-22xm238,-109r22,0r0,22r-22,0r0,-22xm150,-109r22,0r0,22r-22,0r0,-22xm63,-109r22,0r0,22r-22,0r0,-22xm19,-65r22,0r0,22r-22,0r0,-22xm106,-65r22,0r0,22r-22,0r0,-22xm194,-65r22,0r0,22r-22,0r0,-22xm63,-21r22,0r0,22r-22,0r0,-22xm150,-21r22,0r0,22r-22,0r0,-22xm238,-21r22,0r0,22r-22,0r0,-22xm194,23r22,0r0,22r-22,0r0,-22xm106,23r22,0r0,22r-22,0r0,-22xm19,23r22,0r0,22r-22,0r0,-22xm63,67r22,0r0,22r-22,0r0,-22xm150,67r22,0r0,22r-22,0r0,-22xm238,67r22,0r0,22r-22,0r0,-22"},"\u2592":{"d":"19,-328r22,0r0,22r-22,0r0,-22xm63,-328r21,0r0,22r-21,0r0,-22xm106,-328r22,0r0,22r-22,0r0,-22xm150,-328r22,0r0,22r-22,0r0,-22xm194,-328r22,0r0,22r-22,0r0,-22xm238,-328r22,0r0,22r-22,0r0,-22xm-3,-284r22,0r0,22r-22,0r0,-22xm41,-284r22,0r0,22r-22,0r0,-22xm84,-284r22,0r0,22r-22,0r0,-22xm128,-284r22,0r0,22r-22,0r0,-22xm172,-284r22,0r0,22r-22,0r0,-22xm216,-284r22,0r0,22r-22,0r0,-22xm19,-240r22,0r0,22r-22,0r0,-22xm63,-240r21,0r0,22r-21,0r0,-22xm106,-240r22,0r0,22r-22,0r0,-22xm150,-240r22,0r0,22r-22,0r0,-22xm194,-240r22,0r0,22r-22,0r0,-22xm238,-240r22,0r0,22r-22,0r0,-22xm-3,-196r22,0r0,22r-22,0r0,-22xm41,-196r22,0r0,22r-22,0r0,-22xm84,-196r22,0r0,22r-22,0r0,-22xm128,-196r22,0r0,22r-22,0r0,-22xm172,-196r22,0r0,22r-22,0r0,-22xm216,-196r22,0r0,22r-22,0r0,-22xm19,-152r22,0r0,22r-22,0r0,-22xm63,-152r21,0r0,22r-21,0r0,-22xm106,-152r22,0r0,22r-22,0r0,-22xm150,-152r22,0r0,22r-22,0r0,-22xm194,-152r22,0r0,22r-22,0r0,-22xm238,-152r22,0r0,22r-22,0r0,-22xm-3,-109r22,0r0,22r-22,0r0,-22xm84,-109r22,0r0,22r-22,0r0,-22xm128,-109r22,0r0,22r-22,0r0,-22xm172,-109r22,0r0,22r-22,0r0,-22xm216,-109r22,0r0,22r-22,0r0,-22xm41,-109r22,0r0,22r-22,0r0,-22xm238,-65r22,0r0,22r-22,0r0,-22xm194,-65r22,0r0,22r-22,0r0,-22xm150,-65r22,0r0,22r-22,0r0,-22xm106,-65r22,0r0,22r-22,0r0,-22xm63,-65r21,0r0,22r-21,0r0,-22xm19,-65r22,0r0,22r-22,0r0,-22xm-3,-21r22,0r0,22r-22,0r0,-22xm41,-21r22,0r0,22r-22,0r0,-22xm84,-21r22,0r0,22r-22,0r0,-22xm128,-21r22,0r0,22r-22,0r0,-22xm172,-21r22,0r0,22r-22,0r0,-22xm216,-21r22,0r0,22r-22,0r0,-22xm238,23r22,0r0,22r-22,0r0,-22xm194,23r22,0r0,22r-22,0r0,-22xm150,23r22,0r0,22r-22,0r0,-22xm106,23r22,0r0,22r-22,0r0,-22xm63,23r21,0r0,22r-21,0r0,-22xm19,23r22,0r0,22r-22,0r0,-22xm-3,67r22,0r0,22r-22,0r0,-22xm41,67r22,0r0,22r-22,0r0,-22xm84,67r22,0r0,22r-22,0r0,-22xm128,67r22,0r0,22r-22,0r0,-22xm172,67r22,0r0,22r-22,0r0,-22xm216,67r22,0r0,22r-22,0r0,-22"},"\u2593":{"d":"263,-262r0,66r-22,0r0,22r22,0r0,65r-22,0r0,22r22,0r0,66r-22,0r0,22r22,0r0,66r-22,0r0,22r22,0r0,21r-263,0r0,-65r22,0r0,-22r-22,0r0,-66r22,0r0,-22r-22,0r0,-65r22,0r0,-22r-22,0r0,-66r22,0r0,-22r-22,0r0,-66r22,0r0,-22r22,0r0,22r22,0r0,-22r22,0r0,22r22,0r0,-22r21,0r0,22r22,0r0,-22r22,0r0,22r22,0r0,-22r22,0r0,22r22,0r0,-22r22,0r0,44r-22,0r0,22r22,0xm22,-284r0,22r22,0r0,-22r-22,0xm66,-284r0,22r22,0r0,-22r-22,0xm110,-284r0,22r21,0r0,-22r-21,0xm153,-284r0,22r22,0r0,-22r-22,0xm197,-284r0,22r22,0r0,-22r-22,0xm241,-240r-22,0r0,22r22,0r0,-22xm197,-240r-22,0r0,22r22,0r0,-22xm153,-240r-22,0r0,22r22,0r0,-22xm110,-240r-22,0r0,22r22,0r0,-22xm66,-240r-22,0r0,22r22,0r0,-22xm22,-196r0,22r22,0r0,-22r-22,0xm66,-196r0,22r22,0r0,-22r-22,0xm110,-196r0,22r21,0r0,-22r-21,0xm153,-196r0,22r22,0r0,-22r-22,0xm197,-196r0,22r22,0r0,-22r-22,0xm66,-152r-22,0r0,22r22,0r0,-22xm88,-152r0,22r22,0r0,-22r-22,0xm131,-152r0,22r22,0r0,-22r-22,0xm175,-152r0,22r22,0r0,-22r-22,0xm219,-152r0,22r22,0r0,-22r-22,0xm22,-109r0,22r22,0r0,-22r-22,0xm110,-109r0,22r21,0r0,-22r-21,0xm88,-87r0,-22r-22,0r0,22r22,0xm153,-109r0,22r22,0r0,-22r-22,0xm197,-109r0,22r22,0r0,-22r-22,0xm241,-43r0,-22r-22,0r0,22r22,0xm197,-43r0,-22r-22,0r0,22r22,0xm153,-43r0,-22r-22,0r0,22r22,0xm110,-43r0,-22r-22,0r0,22r22,0xm66,-43r0,-22r-22,0r0,22r22,0xm22,-21r0,22r22,0r0,-22r-22,0xm66,-21r0,22r22,0r0,-22r-22,0xm110,-21r0,22r21,0r0,-22r-21,0xm153,-21r0,22r22,0r0,-22r-22,0xm197,-21r0,22r22,0r0,-22r-22,0xm241,45r0,-22r-22,0r0,22r22,0xm197,45r0,-22r-22,0r0,22r22,0xm153,45r0,-22r-22,0r0,22r22,0xm110,45r0,-22r-22,0r0,22r22,0xm66,45r0,-22r-22,0r0,22r22,0xm22,67r0,22r22,0r0,-22r-22,0xm66,67r0,22r22,0r0,-22r-22,0xm110,67r0,22r21,0r0,-22r-21,0xm153,67r0,22r22,0r0,-22r-22,0xm197,67r0,22r22,0r0,-22r-22,0","w":262},"\u25a0":{"d":"26,-166r166,0r0,166r-166,0r0,-166","w":217},"\u25ac":{"d":"0,-124r360,0r0,68r-360,0r0,-68","w":360},"\u25b2":{"d":"53,0r125,-249r125,249r-250,0","w":356},"\u25ba":{"d":"51,-249r255,127r-255,127r0,-254","w":356},"\u25bc":{"d":"303,-244r-125,249r-125,-249r250,0","w":356},"\u25c4":{"d":"306,-249r0,254r-255,-127","w":356},"\u25cb":{"d":"108,-179v41,0,77,35,77,77v0,42,-36,78,-77,78v-41,0,-77,-36,-77,-78v0,-42,36,-77,77,-77xm108,-37v34,0,64,-31,64,-65v0,-34,-30,-64,-64,-64v-34,0,-64,31,-64,64v0,33,30,65,64,65","w":216},"\u25d8":{"d":"22,0r0,-172r172,0r0,172r-172,0xm108,-51v19,0,35,-16,35,-35v0,-19,-16,-36,-35,-36v-19,0,-36,17,-36,36v0,19,17,35,36,35","w":216},"\u25d9":{"d":"7,0r0,-203r203,0r0,203r-203,0xm108,-24v41,0,78,-36,78,-77v0,-41,-37,-78,-78,-78v-41,0,-77,36,-77,78v0,42,36,77,77,77xm108,-166v34,0,64,30,64,65v0,34,-30,64,-64,64v-34,0,-64,-30,-64,-64v0,-34,30,-65,64,-65","w":216},"\u263a":{"d":"184,-203v60,0,112,52,112,112v0,60,-52,112,-112,112v-60,0,-112,-52,-112,-112v0,-60,52,-112,112,-112xm184,5v50,0,96,-46,96,-96v0,-50,-45,-96,-96,-96v-51,0,-96,45,-96,96v0,51,46,96,96,96xm141,-128v7,0,14,7,14,14v0,7,-7,14,-14,14v-7,0,-14,-7,-14,-14v0,-7,7,-14,14,-14xm227,-128v7,0,14,7,14,14v0,7,-7,14,-14,14v-7,0,-14,-7,-14,-14v0,-7,7,-14,14,-14xm132,-55r11,-6v16,33,66,34,81,0r12,6v-22,46,-82,45,-104,0","w":367},"\u263b":{"d":"189,-203v60,0,112,51,112,112v0,61,-52,112,-112,112v-60,0,-112,-52,-112,-112v0,-60,52,-112,112,-112xm146,-100v8,0,15,-6,15,-14v0,-8,-7,-14,-15,-14v-7,0,-14,7,-14,14v0,7,7,14,14,14xm232,-100v8,0,15,-7,15,-14v0,-7,-7,-14,-15,-14v-7,-1,-14,7,-14,14v0,7,7,15,14,14xm138,-55v21,46,81,45,103,0r-11,-6v-16,33,-66,34,-81,0","w":378},"\u263c":{"d":"159,-285r13,0r0,59v22,1,42,9,61,25r51,-50r9,9r-50,51v16,21,25,42,25,63r59,0r0,12r-59,0v-2,22,-10,42,-25,61r50,51r-10,9r-50,-49v-20,15,-40,22,-61,24r0,59r-13,0r0,-59v-24,-3,-44,-11,-61,-24r-52,49r-9,-9r50,-51v-15,-18,-23,-39,-25,-62r-59,0r0,-12r59,0v2,-23,10,-43,25,-61r-50,-51r9,-10r51,50v21,-15,42,-24,62,-25r0,-59xm165,-33v48,0,90,-42,90,-90v0,-48,-42,-90,-90,-90v-48,0,-90,42,-90,90v0,48,42,90,90,90","w":330},"\u2640":{"d":"183,-168v0,45,-36,81,-79,83r0,65r73,0r0,9r-73,0r0,70r-10,0r0,-70r-73,0r0,-9r73,0r0,-65v-42,-2,-78,-37,-78,-83v0,-45,38,-84,83,-84v45,0,84,39,84,84xm99,-93v40,0,75,-35,75,-75v0,-40,-35,-75,-75,-75v-40,0,-75,35,-75,75v0,40,35,75,75,75","w":198},"\u2642":{"d":"96,-191v49,-16,53,-20,99,-50r5,2v4,42,13,78,28,108r-4,3v-17,-22,-30,-46,-39,-73r-52,111v24,9,51,42,51,76v0,44,-38,74,-81,74v-46,0,-85,-37,-85,-81v0,-52,53,-94,107,-72r51,-112v-25,11,-52,16,-80,18r0,-4xm162,-21v0,-38,-33,-70,-69,-70v-36,-1,-68,32,-68,67v-1,38,32,70,69,70v37,0,68,-31,68,-67","w":240},"\u2660":{"d":"95,-82v-15,46,-81,43,-84,-5v0,-18,11,-36,33,-54v31,-25,48,-50,52,-75v5,54,79,73,85,128v2,21,-18,41,-38,40v-18,0,-33,-12,-45,-34v-1,51,22,72,67,75r1,7r-140,0r2,-7v44,0,69,-29,67,-75","w":191},"\u2663":{"d":"179,-48v-28,-2,-44,-17,-58,-42v2,55,22,76,71,84r2,6r-149,0r1,-6v50,-7,70,-31,71,-84v-10,24,-30,41,-58,42v-25,1,-48,-22,-48,-49v0,-37,36,-64,71,-40v-27,-33,-4,-79,36,-79v41,-1,66,48,37,79v36,-23,71,2,72,39v1,27,-21,51,-48,50","w":238},"\u2665":{"d":"107,-172v4,-56,97,-57,95,0v-1,36,-14,47,-37,78v-32,43,-53,75,-58,98v-12,-52,-61,-94,-90,-146v-18,-34,3,-74,39,-74v24,0,41,15,51,44","w":212},"\u2666":{"d":"91,-216v23,38,50,74,81,110v-16,15,-70,86,-81,110v-12,-22,-38,-59,-80,-110v38,-45,64,-81,80,-110","w":182},"\u266a":{"d":"5,25v0,-65,101,-89,163,-54r-5,-241r10,0v25,14,96,77,100,105v0,4,-6,12,-10,12v-23,-15,-61,-60,-88,-74r4,242v0,80,-174,94,-174,10","w":277},"\u266b":{"d":"53,33v0,-43,53,-65,93,-42r0,-201r164,-51r0,228v2,48,-21,67,-63,69v-31,1,-49,-18,-50,-46v0,-43,52,-65,93,-42r0,-149r-123,38r0,172v1,45,-22,69,-65,70v-28,0,-49,-18,-49,-46","w":360},"\uf005":{"d":"85,39v-3,27,-38,33,-66,24r4,-13v21,12,61,-9,29,-16v-3,0,-8,0,-13,2r2,-14v18,-5,46,-2,44,17","w":116},"\u20ac":{"d":"195,4v-83,12,-144,-32,-161,-95r-26,0r6,-24r16,0v-1,-14,-1,-17,0,-30r-22,0r7,-25r20,0v18,-61,81,-107,162,-92r-7,24v-61,-10,-109,23,-127,68r113,0r-7,25r-112,0v-1,10,-2,19,0,30r104,0r-6,24r-93,0v16,48,69,83,133,70r0,25","w":199}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Typeface © The Monotype Corporation plc. Data © The Monotype Corporation plc /
 * Type Solutions Inc. 1990-91 All Rights Reserved
 * 
 * Trademark:
 * Century Gothic is a trademark of The Monotype Corporation plc.
 * 
 * Description:
 * A design based on Monotype 20th Century, which was drawn by Sol Hess between
 * 1936 and 1947. Century Gothic maintains the basic design of 20th Century but has
 * an enlarged 'x' height and has been modified to ensure satisfactory output from
 * modern digital systems. The design is influenced by the geometric style sans
 * serif faces which were popular during the 1920's and 30's. Useful for headlines
 * and general display work and for small quantities of text, particularly in
 * advertising.
 * 
 * Manufacturer:
 * Monotype Typography, Inc.
 * 
 * Designer:
 * Monotype Type Drawing Office
 * 
 * Vendor URL:
 * http://www.monotype.com/html/mtname/ms_welcome.html
 * 
 * License information:
 * http://www.monotype.com/html/type/license.html
 */
Cufon.registerFont({"w":216,"face":{"font-family":"Century Gothic","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 2 2 2 2 2 2 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-41 -404 454 110","underline-thickness":"32.3438","underline-position":"-16.875","unicode-range":"U+0020-U+F108"},"glyphs":{" ":{"w":100},"!":{"d":"26,-265r49,0r0,189r-49,0r0,-189xm20,-25v0,-15,15,-30,30,-30v16,0,31,14,31,30v0,16,-15,30,-31,30v-15,0,-30,-15,-30,-30","w":100},"\"":{"d":"115,-176r-28,0r-9,-89r47,0xm43,-176r-28,0r-10,-89r47,0","w":129},"#":{"d":"195,-119r0,35r-40,0r-13,84r-35,0r12,-84r-34,0r-12,84r-35,0r12,-84r-39,0r0,-35r45,0r5,-33r-39,0r0,-35r44,0r11,-78r35,0r-11,78r33,0r12,-78r35,0r-11,78r35,0r0,35r-40,0r-5,33r35,0xm129,-152r-34,0r-4,33r33,0"},"$":{"d":"54,-144v-54,-33,-26,-124,39,-121r0,-18r33,0r0,20v27,7,37,15,57,34r-34,33v-15,-16,-31,-24,-46,-24v-22,-1,-42,25,-23,40v41,33,117,36,113,107v-2,44,-25,72,-67,79r0,47r-33,0r0,-46v-38,-5,-59,-21,-81,-44r34,-35v21,23,42,35,62,35v27,1,49,-34,30,-57v-15,-18,-75,-39,-84,-50","w":201},"%":{"d":"67,-265v55,9,125,21,171,-5r35,0r-205,288r-35,0r175,-247v-27,5,-52,6,-81,4v16,43,-17,83,-58,83v-34,0,-63,-28,-62,-61v0,-36,27,-59,60,-62xm99,-203v0,-15,-15,-30,-30,-30v-15,0,-30,15,-30,30v0,15,14,29,30,29v16,0,30,-14,30,-29xm179,-55v0,-33,29,-62,61,-62v33,0,62,29,62,62v0,33,-29,62,-62,62v-33,0,-61,-29,-61,-62xm270,-55v0,-15,-15,-30,-30,-30v-15,0,-30,15,-30,30v0,15,15,30,30,30v15,0,30,-15,30,-30","w":309},"&":{"d":"164,-192v0,36,-16,39,-42,68v21,25,35,40,41,46v4,-3,14,-11,29,-24r29,34r-27,24r42,44r-60,0r-17,-18v-54,39,-142,34,-142,-38v0,-38,19,-54,46,-76v-44,-47,-26,-113,38,-116v35,-2,63,26,63,56xm102,-203v-22,3,-19,27,-4,44v13,-11,20,-20,20,-29v0,-8,-7,-16,-16,-15xm63,-58v7,28,39,23,64,6v-9,-9,-22,-23,-38,-44v-17,14,-26,27,-26,38","w":244},"'":{"d":"53,-176r-27,0r-10,-89r47,0","w":79},"(":{"d":"67,75v-66,-87,-68,-260,0,-345r61,0v-39,44,-62,94,-62,171v0,81,21,123,62,174r-61,0","w":136},")":{"d":"70,-270v66,87,68,260,0,345r-61,0v39,-45,62,-92,62,-171v0,-81,-21,-123,-62,-174r61,0","w":136},"*":{"d":"58,-265r45,0r-14,53r40,-38r20,39r-53,14r53,15r-23,38r-38,-38r13,53r-43,0r14,-53r-39,38r-24,-38r54,-15r-54,-15r24,-39r39,39","w":158},"+":{"d":"86,-151r0,-66r44,0r0,66r66,0r0,44r-66,0r0,66r-44,0r0,-66r-66,0r0,-44r66,0"},",":{"d":"47,-49r35,18r-44,74r-24,-12","w":100},"-":{"d":"31,-118r89,0r0,45r-89,0r0,-45","w":151},"\u00ad":{"d":"31,-118r89,0r0,45r-89,0r0,-45","w":151},".":{"d":"23,-23v0,-15,12,-27,27,-27v16,0,28,11,28,27v0,16,-12,28,-28,28v-16,0,-27,-12,-27,-28","w":100},"\/":{"d":"8,46r116,-312r34,0r-116,312r-34,0","w":165},"0":{"d":"10,-127v0,-83,22,-138,90,-138v72,0,92,56,92,136v0,80,-19,136,-91,136v-71,0,-91,-53,-91,-134xm101,-39v55,5,48,-125,30,-160v-7,-14,-18,-19,-30,-19v-40,0,-42,42,-42,92v0,52,7,84,42,87","w":201},"1":{"d":"59,-259r74,0r0,259r-49,0r0,-212r-53,0","w":201},"2":{"d":"100,-219v-23,0,-37,20,-37,44r-48,0v1,-53,36,-90,89,-90v66,-1,99,67,68,126v-14,26,-51,67,-77,93r92,0r0,46r-179,0r0,-24v41,-51,116,-90,128,-161v3,-19,-17,-35,-36,-34","w":201},"3":{"d":"126,-193v2,-35,-53,-29,-58,-2r-47,0v4,-41,38,-70,80,-70v40,0,75,30,75,68v0,27,-16,45,-37,55v93,27,43,153,-41,149v-51,-2,-85,-35,-87,-85r48,0v4,23,16,40,42,39v21,0,41,-17,40,-38v-2,-27,-27,-43,-60,-42r0,-42v26,-2,43,-10,45,-32","w":201},"4":{"d":"119,-265r49,0r0,166r23,0r0,46r-23,0r0,53r-48,0r0,-53r-113,0r0,-46xm120,-99r0,-86r-59,86r59,0","w":201},"5":{"d":"137,-81v0,-39,-48,-55,-68,-25r-40,-9r31,-144r121,0r0,46r-84,0r-11,47v54,-14,99,30,99,83v0,72,-89,118,-145,71v-16,-13,-27,-30,-32,-52r52,0v13,39,77,28,77,-17","w":201},"6":{"d":"99,7v-68,0,-107,-85,-61,-142r66,-130r42,21r-45,88v45,-2,79,38,79,82v0,43,-38,81,-81,81xm132,-75v0,-19,-14,-35,-34,-35v-18,0,-32,16,-32,35v0,18,15,35,32,35v18,0,35,-16,34,-35","w":201},"7":{"d":"22,-259r169,0r0,26r-116,240r-42,-21r97,-198r-108,0r0,-47","w":201},"8":{"d":"101,-265v70,-6,101,85,53,125v22,14,37,36,37,67v0,50,-35,80,-90,80v-92,0,-116,-109,-54,-147v-47,-39,-18,-133,54,-125xm129,-189v0,-17,-12,-29,-30,-29v-16,0,-27,12,-27,29v0,15,13,29,28,29v17,0,29,-12,29,-29xm142,-76v0,-22,-19,-38,-41,-38v-22,0,-42,16,-42,37v0,21,20,37,42,37v24,0,40,-14,41,-36","w":201},"9":{"d":"102,-265v70,0,96,75,62,141r-67,131r-42,-21r46,-88v-44,1,-79,-38,-79,-82v0,-44,37,-81,80,-81xm70,-184v0,19,13,35,33,35v19,0,33,-17,33,-35v1,-18,-15,-35,-33,-35v-18,0,-33,17,-33,35","w":201},":":{"d":"23,-169v0,-15,12,-27,27,-27v16,0,28,11,28,27v0,16,-12,28,-28,28v-16,0,-27,-12,-27,-28xm23,-23v0,-15,12,-27,27,-27v16,0,28,11,28,27v0,16,-12,28,-28,28v-16,0,-27,-12,-27,-28","w":100},";":{"d":"23,-169v0,-15,12,-27,27,-27v16,0,28,11,28,27v0,16,-12,28,-28,28v-16,0,-27,-12,-27,-28xm48,-49r33,18r-43,74r-24,-12","w":100},"\u037e":{"d":"23,-169v0,-15,12,-27,27,-27v16,0,28,11,28,27v0,16,-12,28,-28,28v-16,0,-27,-12,-27,-28xm48,-49r33,18r-43,74r-24,-12","w":100},"<":{"d":"196,-64r0,44r-176,-90r0,-39r176,-89r0,44r-125,65"},"=":{"d":"20,-189r176,0r0,44r-176,0r0,-44xm20,-114r176,0r0,44r-176,0r0,-44"},">":{"d":"20,-194r0,-44r176,89r0,39r-176,90r0,-44r126,-65"},"?":{"d":"101,-226v-20,1,-38,13,-37,34r-46,0v-1,-47,37,-78,85,-78v48,0,78,28,80,72v2,59,-67,59,-63,123r-47,0v-9,-53,37,-83,58,-110v14,-19,-5,-42,-30,-41xm67,-25v0,-16,14,-30,30,-30v18,0,31,14,31,30v1,15,-15,30,-30,30v-16,0,-31,-14,-31,-30","w":201},"@":{"d":"27,-134v-6,99,127,148,189,81r33,0v-28,36,-53,58,-109,58v-81,0,-139,-58,-139,-138v0,-80,57,-136,139,-138v65,-2,125,52,125,113v0,59,-40,98,-90,104v-13,2,-22,-5,-22,-18v-34,39,-101,5,-96,-48v-8,-62,80,-116,118,-61r4,-19r35,0r-20,115v0,3,3,6,7,6v24,-6,40,-37,40,-69v-2,-60,-42,-97,-102,-97v-67,0,-108,45,-112,111xm101,-124v0,18,11,32,29,32v38,0,50,-72,7,-73v-20,-1,-37,20,-36,41","w":266},"A":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0","w":266},"B":{"d":"191,-75v0,49,-33,76,-89,75r-72,0r0,-259v75,-2,142,1,142,67v0,24,-10,38,-26,50v28,12,45,32,45,67xm125,-185v1,-23,-20,-29,-46,-27r0,55v26,1,46,-5,46,-28xm143,-77v0,-30,-27,-38,-64,-36r0,66v35,0,64,-1,64,-30","w":208},"C":{"d":"17,-130v0,-133,179,-177,250,-83r-34,33v-52,-67,-167,-37,-167,50v0,93,122,115,167,52r33,35v-34,32,-57,49,-112,50v-78,1,-137,-57,-137,-137","w":280},"D":{"d":"235,-126v0,87,-42,132,-146,126r-59,0r0,-259r58,0v102,-4,147,44,147,133xm185,-127v0,-61,-36,-89,-106,-84r0,163v71,6,106,-16,106,-79","w":252},"E":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259","w":187},"F":{"d":"30,-259r129,0r0,48r-80,0r0,47r80,0r0,48r-80,0r0,116r-49,0r0,-259","w":172},"G":{"d":"18,-131v-7,-125,176,-181,250,-85r-34,34v-52,-65,-167,-33,-167,52v0,83,131,127,164,45r-75,0r0,-46r130,0v3,80,-48,138,-128,138v-84,0,-135,-56,-140,-138","w":302},"H":{"d":"29,-259r50,0r0,98r87,0r0,-98r50,0r0,259r-50,0r0,-113r-87,0r0,113r-50,0r0,-259","w":244},"I":{"d":"26,-259r49,0r0,259r-49,0r0,-259","w":100},"J":{"d":"78,-42v16,0,16,-13,16,-36r0,-181r49,0r0,172v16,104,-91,118,-136,56r35,-33v12,13,18,22,36,22","w":172},"K":{"d":"30,-259r50,0r0,89r70,-89r59,0r-90,116r99,143r-59,0r-79,-115r0,115r-50,0r0,-259","w":223},"L":{"d":"30,-259r49,0r0,212r71,0r0,47r-120,0r0,-259","w":158},"M":{"d":"54,-259r49,0r59,181r61,-181r48,0r43,259r-47,0r-28,-163r-55,163r-44,0r-54,-163r-28,163r-48,0","w":323},"N":{"d":"30,-259r47,0r111,171r0,-171r49,0r0,259r-47,0r-111,-170r0,170r-49,0r0,-259","w":266},"O":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88","w":302},"P":{"d":"183,-184v-3,56,-35,77,-104,74r0,110r-50,0r0,-259v82,-3,158,-1,154,75xm135,-184v0,-26,-26,-26,-56,-26r0,52v30,1,56,2,56,-26","w":201},"Q":{"d":"152,-265v110,-5,178,146,99,227r45,58r-58,0r-23,-29v-91,50,-202,-24,-198,-120v3,-79,56,-133,135,-136xm66,-128v0,59,61,105,119,80r-46,-60r58,0r24,30v40,-57,-4,-139,-69,-139v-49,0,-86,40,-86,89","w":302},"R":{"d":"187,-184v-1,38,-20,58,-50,69r62,115r-54,0r-58,-110r-5,0r0,110r-49,0r0,-259v83,-3,155,-1,154,75xm139,-184v-1,-27,-25,-27,-57,-26r0,52v30,0,58,2,57,-26","w":208},"S":{"d":"32,-162v-43,-57,29,-130,95,-94v12,6,24,17,38,33r-36,32v-13,-18,-26,-27,-39,-27v-11,0,-22,7,-22,17v17,48,102,68,102,134v0,62,-77,95,-128,60v-14,-9,-25,-24,-35,-43r42,-25v12,23,26,35,42,35v22,1,40,-23,24,-42v-15,-19,-78,-66,-83,-80","w":187},"T":{"d":"4,-259r143,0r0,49r-47,0r0,210r-50,0r0,-210r-46,0r0,-49","w":151},"U":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111","w":230},"V":{"d":"10,-259r50,0r66,184r65,-184r51,0r-93,259r-48,0","w":252},"W":{"d":"10,-259r48,0r38,165r46,-165r41,0r47,165r36,-165r49,0r-58,259r-47,0r-48,-167r-47,167r-47,0","w":323},"X":{"d":"13,-259r55,0r54,83r55,-83r55,0r-82,126r87,133r-55,0r-60,-91r-59,91r-56,0r88,-133","w":244},"Y":{"d":"11,-259r53,0r48,93r48,-93r52,0r-75,147r0,112r-50,0r0,-112","w":223},"Z":{"d":"16,-259r156,0r-92,212r86,0r0,47r-158,0r92,-210r-84,0r0,-49","w":180},"[":{"d":"30,-265r77,0r0,45r-29,0r0,245r29,0r0,45r-77,0r0,-335","w":115},"\\":{"d":"190,46r-34,0r-116,-312r34,0","w":230},"]":{"d":"85,70r-77,0r0,-45r29,0r0,-245r-29,0r0,-45r77,0r0,335","w":115},"^":{"d":"87,-259r41,0r69,195r-43,0r-46,-132r-46,132r-43,0"},"_":{"d":"-2,27r184,0r0,18r-184,0r0,-18","w":180},"`":{"d":"67,-295r42,69r-34,0r-65,-69r57,0","w":151},"a":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57","w":237},"b":{"d":"222,-95v7,79,-97,133,-150,75r0,20r-48,0r0,-265r48,0r0,95v52,-59,160,-8,150,75xm174,-96v0,-32,-22,-56,-52,-56v-30,1,-52,24,-52,56v0,32,22,56,52,57v30,1,52,-26,52,-57","w":237},"c":{"d":"15,-95v-5,-101,146,-135,196,-58r-39,22v-31,-39,-109,-19,-109,37v0,56,79,73,109,33r37,26v-21,27,-49,40,-86,40v-63,0,-105,-44,-108,-100","w":230},"d":{"d":"15,-95v0,-83,98,-134,151,-75r0,-95r47,0r0,265r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57","w":237},"e":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0","w":230},"f":{"d":"99,-227v-16,-4,-31,-7,-32,12r-1,24r31,0r0,41r-31,0r0,150r-48,0r0,-150r-17,0r0,-41r17,0v-9,-73,26,-89,81,-72r0,36","w":100},"g":{"d":"16,-98v-8,-82,97,-130,150,-72r0,-21r47,0r0,164v19,122,-169,134,-197,41r53,0v17,23,81,21,92,-5v3,-6,5,-18,5,-33v-52,56,-158,5,-150,-74xm168,-98v0,-30,-23,-53,-52,-53v-29,0,-52,23,-52,53v0,31,23,55,53,55v30,1,51,-24,51,-55","w":237},"h":{"d":"114,-152v-60,0,-38,90,-42,152r-48,0r0,-265r48,0r0,93v38,-42,122,-26,122,46r0,126r-47,0v-6,-56,20,-152,-33,-152"},"i":{"d":"12,-239v-1,-16,15,-31,31,-31v16,0,31,14,31,31v0,17,-15,31,-31,31v-17,0,-30,-15,-31,-31xm19,-191r48,0r0,191r-48,0r0,-191","w":86},"j":{"d":"16,-239v-1,-16,15,-31,31,-31v17,0,31,14,31,31v0,17,-15,31,-31,31v-17,0,-31,-14,-31,-31xm-15,30v20,10,38,6,38,-20r0,-201r48,0r0,197v5,59,-35,82,-86,62r0,-38","w":93},"k":{"d":"25,-265r48,0r0,153r70,-79r60,0r-82,92r92,99r-59,0r-81,-88r0,88r-48,0r0,-265","w":208},"l":{"d":"19,-265r48,0r0,265r-48,0r0,-265","w":86},"m":{"d":"113,-153v-58,0,-37,92,-41,153r-48,0r0,-191r48,0r0,22v24,-35,100,-36,116,7v14,-19,34,-33,64,-34v88,-3,61,112,65,196r-48,0v-7,-54,21,-153,-33,-153v-59,0,-37,93,-41,153r-48,0v-6,-56,20,-153,-34,-153","w":338},"n":{"d":"114,-152v-60,0,-38,91,-42,152r-48,0r0,-191r48,0r0,19v39,-43,122,-26,122,46r0,126r-48,0v-7,-56,22,-152,-32,-152"},"o":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56","w":230},"p":{"d":"222,-95v7,79,-97,133,-150,75r0,90r-48,0r0,-261r48,0r0,21v52,-59,160,-8,150,75xm174,-96v0,-32,-22,-56,-52,-56v-30,1,-52,24,-52,56v0,32,22,56,52,57v30,1,52,-26,52,-57","w":237},"q":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,261r-47,0r0,-90v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57","w":237},"r":{"d":"101,-150v-37,-16,-40,29,-40,73r0,77r-48,0r0,-191r41,0r0,24v9,-22,35,-37,62,-24","w":115},"s":{"d":"16,-141v-2,-61,97,-72,125,-24r-29,30v-12,-12,-23,-18,-33,-18v-11,-1,-22,9,-15,19v30,21,81,31,81,79v0,68,-105,79,-136,27r30,-32v10,18,53,35,61,7v3,-11,-24,-24,-37,-30v-31,-16,-47,-35,-47,-58","w":158},"t":{"d":"30,-262r48,0r0,71r28,0r0,41r-28,0r0,150r-48,0r0,-150r-25,0r0,-41r25,0r0,-71","w":107},"u":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115"},"v":{"d":"4,-191r49,0r48,113r48,-113r49,0r-82,191r-31,0","w":201},"w":{"d":"3,-191r47,0r38,109r42,-109r29,0r40,107r39,-107r47,0r-70,191r-30,0r-41,-109r-42,109r-30,0","w":287},"x":{"d":"7,-191r56,0r37,52r38,-52r55,0r-65,90r73,101r-55,0r-46,-63r-45,63r-55,0r73,-101","w":201},"y":{"d":"3,-191r49,0r50,120r55,-120r49,0r-120,261r-50,0r40,-84","w":208},"z":{"d":"16,-191r147,0r-86,150r81,0r0,41r-155,0r86,-151r-73,0r0,-40","w":165},"{":{"d":"41,1v0,-46,0,-66,-39,-70r0,-42v35,-2,39,-22,39,-62v0,-70,17,-87,82,-86r0,43v-27,1,-37,-1,-36,25v0,44,-1,86,-33,102v31,22,31,35,32,96v0,30,8,28,37,30r0,42v-62,2,-82,-13,-82,-78","w":122},"|":{"d":"94,-265r28,0r0,335r-28,0r0,-335"},"}":{"d":"82,-180v0,46,-1,66,38,69r0,42v-34,4,-41,22,-39,63v3,70,-17,86,-81,85r0,-42v27,-1,35,0,36,-25v0,-43,0,-88,33,-102v-32,-21,-32,-35,-33,-96v0,-29,-6,-30,-36,-30r0,-43v61,-1,82,15,82,79","w":122},"~":{"d":"59,-119v-19,1,-25,9,-41,20r0,-56v68,-47,120,53,181,-5r0,57v-48,32,-93,-7,-140,-16"},"\u00c4":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm69,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm147,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":266},"\u00c5":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm94,-318v0,-21,19,-39,39,-39v20,0,38,18,38,39v0,21,-18,41,-38,40v-21,0,-39,-20,-39,-40xm147,-318v0,-8,-6,-17,-14,-16v-9,-1,-16,7,-15,16v0,7,7,15,15,15v8,0,14,-7,14,-15","w":266},"\u00c7":{"d":"17,-130v0,-133,179,-177,250,-83r-34,33v-52,-67,-167,-37,-167,50v0,93,122,115,167,52r33,35v-34,32,-57,49,-112,50v-78,1,-137,-57,-137,-137xm125,40v20,0,24,-23,4,-22r-10,0r6,-21r30,0r-2,8v13,3,25,13,25,27v0,36,-49,43,-84,27r6,-23v8,3,17,4,25,4","w":280},"\u00c9":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm108,-347r57,0r-65,69r-34,0","w":187},"\u00d1":{"d":"30,-259r47,0r111,171r0,-171r49,0r0,259r-47,0r-111,-170r0,170r-49,0r0,-259xm207,-297v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":266},"\u00d6":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm87,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm165,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":302},"\u00dc":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm51,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm129,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":230},"\u00e1":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm127,-295r57,0r-65,69r-34,0","w":237},"\u00e0":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm110,-295r42,69r-34,0r-65,-69r57,0","w":237},"\u00e2":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm47,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":237},"\u00e4":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm55,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm133,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":237},"\u00e3":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm192,-245v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":237},"\u00e5":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm80,-266v0,-21,19,-39,39,-39v20,0,38,18,38,39v0,21,-18,41,-38,40v-21,0,-39,-20,-39,-40xm133,-266v0,-8,-6,-17,-14,-16v-9,-1,-16,7,-15,16v0,7,7,15,15,15v8,0,14,-7,14,-15","w":237},"\u00e7":{"d":"15,-95v-5,-101,146,-135,196,-58r-39,22v-31,-39,-109,-19,-109,37v0,56,79,73,109,33r37,26v-21,27,-49,40,-86,40v-63,0,-105,-44,-108,-100xm100,40v20,0,24,-23,4,-22r-10,0r6,-21r30,0r-2,8v13,3,25,13,25,27v0,36,-49,43,-84,27r6,-23v8,3,17,4,25,4","w":230},"\u00e9":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm124,-295r57,0r-65,69r-34,0","w":230},"\u00e8":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm107,-295r42,69r-34,0r-65,-69r57,0","w":230},"\u00ea":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm43,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":230},"\u00eb":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm51,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm129,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":230},"\u00ed":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm52,-295r57,0r-65,69r-34,0","w":86},"\u00ec":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm35,-295r42,69r-34,0r-65,-69r57,0","w":86},"\u00ee":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm-29,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":86},"\u00ef":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm-21,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm57,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":86},"\u00f1":{"d":"114,-152v-60,0,-38,91,-42,152r-48,0r0,-191r48,0r0,19v39,-43,122,-26,122,46r0,126r-48,0v-7,-56,22,-152,-32,-152xm182,-245v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17"},"\u00f3":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm124,-295r57,0r-65,69r-34,0","w":230},"\u00f2":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm107,-295r42,69r-34,0r-65,-69r57,0","w":230},"\u00f4":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm43,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":230},"\u00f6":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm51,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm129,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":230},"\u00f5":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm189,-245v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":230},"\u00fa":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm117,-295r57,0r-65,69r-34,0"},"\u00f9":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm100,-295r42,69r-34,0r-65,-69r57,0"},"\u00fb":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm36,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0"},"\u00fc":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm44,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm122,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25"},"\u2020":{"d":"78,-265r47,0r-9,96r80,-8r0,47r-80,-9r9,209r-47,0r8,-209r-79,9r0,-47r79,8","w":201},"\u00b0":{"d":"72,-265v33,0,61,28,61,60v0,33,-28,61,-61,61v-33,0,-61,-28,-61,-61v0,-33,28,-60,61,-60xm72,-164v21,0,40,-19,40,-40v0,-22,-18,-41,-39,-41v-21,-1,-41,19,-41,40v0,21,19,41,40,41","w":143},"\u00a2":{"d":"48,-15v-65,-61,-29,-200,79,-180r17,-38r28,12r-17,37v13,8,23,17,30,28r-39,24v-3,-4,-7,-8,-10,-11r-44,102v23,7,42,1,57,-14r31,30v-22,25,-64,38,-106,25r-20,43r-27,-12xm109,-153v-42,0,-57,52,-40,90","w":201},"\u00a3":{"d":"37,-158v-36,-66,36,-132,105,-98v22,11,36,33,36,63r-50,0v-3,-38,-51,-33,-50,1v0,8,7,25,10,34r60,0r0,44r-47,0v5,28,1,39,-10,69v22,4,52,11,56,-14r45,0v-2,37,-29,66,-67,66v-32,0,-72,-14,-100,-1r-16,-42v10,-4,19,-7,28,-8v13,-21,18,-39,15,-70r-43,0r0,-44r28,0","w":201},"\u00a7":{"d":"54,-161v-47,-32,-18,-109,46,-109v39,0,71,32,73,68r-46,0v-2,-25,-43,-34,-48,-10v17,48,104,51,103,117v0,28,-17,45,-38,54v18,16,28,29,30,57v3,57,-84,76,-121,42v-12,-11,-20,-28,-23,-50r45,0v3,26,48,32,51,5v-23,-47,-107,-50,-107,-119v-1,-26,16,-48,35,-55xm116,-60v35,-13,21,-41,-6,-60r-29,-20v-18,6,-29,29,-13,44v8,8,35,27,48,36","w":201},"\u2022":{"d":"54,-131v0,-28,26,-54,54,-54v28,0,54,26,54,54v0,28,-26,54,-54,54v-28,0,-54,-26,-54,-54"},"\u00b6":{"d":"29,-194v0,-81,79,-74,157,-72r0,20r-15,0r0,313r-24,0r0,-313r-26,0r0,313r-24,0r0,-192v-43,0,-68,-26,-68,-69"},"\u00df":{"d":"153,-79v-1,-29,-21,-44,-51,-45r0,-43v44,7,52,-58,10,-59v-32,6,-40,25,-40,69r0,157r-48,0r0,-157v-2,-74,27,-109,90,-113v41,-2,76,28,75,66v-1,35,-21,52,-54,58v39,7,65,31,66,74v1,56,-53,91,-108,71r0,-45v27,17,61,-3,60,-33"},"\u00ae":{"d":"133,-267v78,0,135,56,135,134v0,78,-57,134,-135,134v-77,0,-134,-57,-134,-134v0,-77,57,-134,134,-134xm133,-27v60,0,105,-43,107,-105v2,-58,-49,-107,-106,-107v-58,0,-110,50,-108,106v2,61,46,106,107,106xm164,-59v-12,-24,8,-64,-28,-57r-26,0r0,57r-32,0r0,-147v52,2,120,-13,116,43v-1,19,-4,24,-17,33v25,5,6,62,24,71r-37,0xm163,-161v0,-24,-31,-15,-53,-17r0,35v23,-1,53,7,53,-18","w":266},"\u00a9":{"d":"133,-267v78,0,135,56,135,134v0,78,-57,134,-135,134v-77,0,-134,-57,-134,-134v0,-77,57,-134,134,-134xm133,-27v61,0,106,-43,107,-106v2,-58,-49,-108,-107,-106v-62,2,-107,45,-107,106v0,62,46,106,107,106xm93,-136v-8,51,67,79,79,28r31,0v-3,29,-31,54,-64,53v-44,0,-76,-35,-76,-80v0,-82,125,-111,140,-26r-31,0v-16,-50,-83,-24,-79,25","w":266},"\u2122":{"d":"335,-259r0,148r-31,0r0,-121r-48,121r-16,0r-47,-121r0,121r-31,0r0,-148r47,0r39,95r40,-95r47,0xm142,-259r0,26r-46,0r0,122r-32,0r0,-122r-46,0r0,-26r124,0","w":360},"\u00b4":{"d":"84,-295r57,0r-65,69r-34,0","w":151},"\u00a8":{"d":"26,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm104,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":180},"\u2260":{"d":"141,-189r46,0r0,44r-65,0r-13,31r78,0r0,44r-97,0r-33,77r-33,0r32,-77r-45,0r0,-44r64,0r13,-31r-77,0r0,-44r96,0r33,-76r34,0","w":197},"\u00c6":{"d":"136,-259r169,0r0,49r-91,0r0,47r91,0r0,47r-91,0r0,68r91,0r0,48r-140,0r0,-53r-79,0r-25,53r-51,0xm165,-102r0,-113r-55,113r55,0","w":323},"\u00d8":{"d":"17,-129v0,-108,124,-174,213,-111r28,-33r22,18r-29,35v79,82,13,227,-99,227v-28,0,-52,-7,-74,-22r-31,35r-22,-19r30,-35v-21,-21,-38,-55,-38,-95xm198,-203v-56,-38,-131,7,-131,75v0,23,7,42,20,57xm109,-53v77,48,167,-52,110,-129","w":302},"\u221e":{"d":"69,-178v21,0,39,14,50,30v16,-23,27,-39,57,-40v34,-1,54,26,54,61v0,35,-20,61,-54,61v-31,-1,-42,-17,-57,-40v-11,17,-28,31,-50,31v-26,0,-43,-23,-43,-52v0,-29,17,-51,43,-51xm204,-128v0,-28,-24,-44,-45,-28v-6,5,-14,15,-23,29v17,24,16,33,41,35v18,1,27,-18,27,-36xm51,-128v0,20,18,34,33,21v6,-4,12,-11,20,-21v-12,-17,-22,-24,-33,-24v-13,0,-20,10,-20,24","w":256},"\u00b1":{"d":"77,-190r0,-66r44,0r0,66r66,0r0,44r-66,0r0,66r-44,0r0,-66r-66,0r0,-44r66,0xm11,-44r176,0r0,44r-176,0r0,-44","w":197},"\u2264":{"d":"187,-100r0,44r-176,-89r0,-39r176,-90r0,44r-126,65xm11,-36r176,0r0,44r-176,0r0,-44","w":197},"\u2265":{"d":"11,-100r125,-65r-125,-65r0,-44r176,90r0,39r-176,89r0,-44xm187,-36r0,44r-176,0r0,-44r176,0","w":197},"\u00a5":{"d":"8,-259r52,0r41,92r41,-92r51,0r-54,122r46,0r0,29r-59,0r0,22r59,0r0,30r-59,0r0,56r-50,0r0,-56r-60,0r0,-30r60,0r0,-22r-60,0r0,-29r47,0","w":201},"\u00b5":{"d":"143,-22v-12,35,-67,34,-79,1r0,91r-49,0r0,-261r49,0v5,60,-21,155,40,155v60,0,33,-97,39,-155r49,0r0,191r-49,0r0,-22","w":207},"\u2202":{"d":"107,-230v-23,0,-28,12,-40,33r-24,-15v10,-30,30,-50,65,-50v48,0,64,43,64,96v0,81,-29,168,-109,170v-34,0,-56,-25,-55,-62v4,-71,59,-109,137,-108v0,-36,-9,-64,-38,-64xm48,-59v0,42,47,35,68,3v13,-19,22,-43,27,-77v-55,-3,-95,26,-95,74","w":177},"\u2211":{"d":"24,-265r218,0r0,29r-174,0r107,136r-114,142r183,0r0,28r-223,0r0,-33r109,-136r-106,-135r0,-31","w":256},"\u220f":{"d":"28,-265r240,0r0,335r-34,0r0,-304r-172,0r0,304r-34,0r0,-335","w":296},"\uf006":{"d":"0,-187r198,0r0,36r-30,0r0,151r-51,0r0,-151r-36,0r0,151r-52,0r0,-151r-29,0r0,-36","w":197},"\u222b":{"d":"0,17v1,-25,28,-14,37,-6v5,0,6,-5,6,-10r-8,-168v5,-51,-12,-153,41,-160v12,-1,22,8,22,18v1,11,-6,19,-16,19v-7,0,-27,-22,-27,1v4,99,12,120,5,242v-3,52,-3,81,-39,86v-12,2,-21,-10,-21,-22","w":98},"\u00aa":{"d":"8,-202v-5,-45,42,-83,73,-50r0,-10r35,0r0,120r-35,0r0,-10v-31,31,-78,-6,-73,-50xm63,-171v26,-1,25,-62,0,-63v-25,0,-27,62,0,63","w":129},"\u00ba":{"d":"8,-202v0,-33,25,-63,56,-63v33,-1,58,29,58,63v0,34,-25,62,-58,62v-31,0,-56,-29,-56,-62xm65,-171v28,0,28,-62,0,-62v-29,0,-29,62,0,62","w":129},"\u2126":{"d":"68,-139v1,48,20,81,55,96r0,43r-113,0r0,-40v25,0,47,3,71,4v-40,-19,-67,-49,-67,-107v0,-73,50,-121,123,-121v82,0,128,45,128,121v0,55,-26,89,-67,106r71,-4r0,41r-113,0r0,-43v36,-15,53,-47,54,-95v2,-52,-26,-88,-72,-88v-44,0,-71,38,-70,87","w":276},"\u00e6":{"d":"221,-81v3,46,75,58,101,25r40,19v-21,41,-103,57,-144,23r0,14r-44,0r0,-24v-49,63,-167,13,-158,-71v-8,-81,108,-138,158,-71r0,-25r44,0r0,14v68,-48,168,2,157,96r-154,0xm327,-119v-8,-46,-95,-48,-104,0r104,0xm175,-97v0,-31,-23,-56,-55,-56v-31,0,-55,25,-55,58v0,31,23,56,55,56v34,0,55,-25,55,-58","w":388},"\u00f8":{"d":"43,-30v-57,-62,-6,-166,75,-166v21,0,40,6,58,18r22,-25r22,20r-23,25v52,64,5,163,-79,163v-20,0,-37,-6,-53,-16r-23,26r-22,-19xm146,-144v-48,-27,-102,28,-72,79xm96,-45v47,22,92,-29,69,-77","w":237},"\u00bf":{"d":"133,-170v0,16,-14,30,-30,30v-17,0,-31,-14,-31,-30v-1,-16,15,-30,31,-30v15,0,30,15,30,30xm65,4v4,41,74,31,72,-7r46,0v1,46,-37,78,-85,78v-49,0,-79,-29,-81,-72v-3,-60,68,-58,63,-123r48,0v7,56,-35,84,-59,110v-3,4,-4,9,-4,14","w":201},"\u00a1":{"d":"20,-170v0,-15,15,-30,30,-30v16,0,31,14,31,30v0,16,-15,30,-31,30v-15,0,-30,-15,-30,-30xm75,70r-49,0r0,-189r49,0r0,189","w":100},"\u00ac":{"d":"20,-189r176,0r0,119r-44,0r0,-75r-132,0r0,-44"},"\u221a":{"d":"184,-329r13,0r-55,343r-87,-180r-35,16r-6,-11r53,-27r71,145","w":197},"\u0192":{"d":"189,-255r-5,42v-24,-19,-42,-13,-43,23r-4,26r39,0r-6,41r-39,0v-10,55,-11,124,-29,171v-12,32,-61,34,-89,11r6,-42v22,19,40,18,45,-16r19,-124r-40,0r6,-41r40,0v4,-57,13,-122,78,-103v6,2,13,6,22,12","w":201},"\u2248":{"d":"189,-145v-64,45,-128,-51,-181,3r0,-56v68,-48,120,54,181,-4r0,57xm189,-60v-64,45,-128,-52,-181,3r0,-56v68,-48,119,54,181,-4r0,57","w":197},"\u2206":{"d":"216,0r-211,0r110,-244xm174,-14r-70,-170r-77,170r147,0","w":220},"\u00ab":{"d":"37,-191r44,0r-32,96r32,95r-44,0r-33,-95xm116,-191r45,0r-32,96r32,95r-45,0r-32,-95","w":165},"\u00bb":{"d":"129,0r-45,0r33,-96r-33,-95r45,0r32,95xm49,0r-45,0r33,-96r-33,-95r45,0r32,95","w":165},"\u2026":{"d":"152,-23v0,-16,12,-27,28,-27v15,0,27,12,27,27v0,16,-11,28,-27,28v-16,0,-28,-12,-28,-28xm32,-23v0,-16,12,-27,28,-27v15,0,28,12,28,27v0,15,-12,28,-28,28v-16,0,-28,-12,-28,-28xm272,-23v0,-16,12,-27,28,-27v15,0,27,12,27,27v0,16,-11,28,-27,28v-16,0,-28,-12,-28,-28","w":360},"\u00a0":{"w":100},"\u00c0":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm124,-347r42,69r-34,0r-65,-69r57,0","w":266},"\u00c3":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm207,-297v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":266},"\u00d5":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm225,-297v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":302},"\u0152":{"d":"17,-129v-6,-112,132,-175,212,-107r0,-23r137,0r0,49r-87,0r0,47r87,0r0,47r-87,0r0,68r87,0r0,48r-137,0r0,-24v-22,18,-44,31,-81,31v-79,0,-127,-56,-131,-136xm229,-128v-1,-51,-32,-89,-82,-90v-44,-1,-82,42,-81,89v1,52,33,86,84,88v46,1,80,-40,79,-87","w":381},"\u0153":{"d":"117,-196v38,2,60,13,78,37v39,-58,145,-41,168,15v7,16,12,37,12,63r-155,0v3,44,69,59,100,27r41,18v-30,50,-131,56,-166,4v-18,22,-41,36,-78,37v-56,1,-103,-46,-103,-101v0,-53,48,-102,103,-100xm327,-119v-9,-48,-96,-46,-106,0r106,0xm171,-96v0,-30,-24,-57,-54,-57v-33,1,-55,25,-55,58v0,33,20,57,54,57v33,1,55,-26,55,-58","w":388},"\u2013":{"d":"-2,-82r0,-43r184,0r0,43r-184,0","w":180},"\u2014":{"d":"-2,-82r0,-43r364,0r0,43r-364,0","w":360},"\u201c":{"d":"73,-166r-44,0v-2,-45,3,-74,25,-99r17,13v-8,12,-12,19,-16,35r18,0r0,51xm145,-166r-45,0v-2,-45,4,-74,25,-99r18,13v-8,12,-12,19,-16,35r18,0r0,51","w":172},"\u201d":{"d":"100,-265r44,0v2,45,-4,73,-25,99r-17,-14v9,-12,12,-18,15,-35r-17,0r0,-50xm28,-265r44,0v2,45,-3,74,-25,99r-17,-14v9,-12,12,-18,16,-35r-18,0r0,-50","w":172},"\u2018":{"d":"74,-166r-45,0v-2,-45,4,-74,25,-99r18,13v-8,12,-12,19,-16,35r18,0r0,51","w":100},"\u2019":{"d":"27,-265r45,0v2,45,-4,73,-25,99r-18,-14v9,-12,12,-18,16,-35r-18,0r0,-50","w":100},"\u00f7":{"d":"70,-233r57,0r0,56r-57,0r0,-56xm11,-151r176,0r0,44r-176,0r0,-44xm70,-82r57,0r0,57r-57,0r0,-57","w":197},"\u25ca":{"d":"97,-250r73,125r-73,125r-20,0r-69,-125r69,-125r20,0xm87,-233r-60,108r60,108r63,-108","w":177},"\u00ff":{"d":"3,-191r49,0r50,120r55,-120r49,0r-120,261r-50,0r40,-84xm40,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm118,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":208},"\u0178":{"d":"11,-259r53,0r48,93r48,-93r52,0r-75,147r0,112r-50,0r0,-112xm49,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm127,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":223},"\u2044":{"d":"-41,7r110,-272r30,0r-110,272r-30,0","w":57},"\u2215":{"d":"-41,7r110,-272r30,0r-110,272r-30,0","w":57},"\u00a4":{"d":"160,-72v-26,24,-78,23,-104,0r-18,19r-21,-22r18,-18v-22,-25,-21,-78,0,-102r-18,-18r21,-22r19,18v27,-21,77,-22,103,0r18,-18r21,22r-18,17v22,25,22,78,0,103r19,18r-21,22xm109,-200v-30,0,-56,27,-56,57v0,28,26,55,55,55v30,0,55,-25,55,-56v0,-30,-25,-56,-54,-56"},"\u2039":{"d":"37,-191r45,0r-33,96r33,95r-45,0r-32,-95","w":86},"\u203a":{"d":"50,0r-45,0r32,-96r-32,-95r45,0r32,95","w":86},"\uf001":{"d":"115,-213v-4,-22,-41,-22,-46,-1v-2,4,-2,12,-2,23r28,0r0,40r-28,0r0,151r-49,0r0,-151r-17,0r0,-40r17,0v-12,-81,93,-101,135,-53v6,8,10,18,12,31r-50,0xm117,-191r48,0r0,191r-48,0r0,-191","w":187},"\ufb01":{"d":"115,-213v-4,-22,-41,-22,-46,-1v-2,4,-2,12,-2,23r28,0r0,40r-28,0r0,151r-49,0r0,-151r-17,0r0,-40r17,0v-12,-81,93,-101,135,-53v6,8,10,18,12,31r-50,0xm117,-191r48,0r0,191r-48,0r0,-191","w":187},"\uf002":{"d":"117,-188v9,-43,-34,-55,-47,-26v-2,5,-3,12,-3,23r28,0r0,40r-28,0r0,151r-48,0r0,-151r-18,0r0,-40r18,0v-1,-53,23,-79,73,-79v51,0,75,23,74,79r0,191r-49,0r0,-188","w":187},"\ufb02":{"d":"117,-188v9,-43,-34,-55,-47,-26v-2,5,-3,12,-3,23r28,0r0,40r-28,0r0,151r-48,0r0,-151r-18,0r0,-40r18,0v-1,-53,23,-79,73,-79v51,0,75,23,74,79r0,191r-49,0r0,-188","w":187},"\u2021":{"d":"77,-265r47,0r-9,82r80,-8r0,47r-80,-9r9,57r-9,56r80,-10r0,49r-80,-10r9,81r-47,0r9,-81r-79,10r0,-49r79,10r-9,-56r9,-57r-79,9r0,-47r79,8","w":201},"\u2219":{"d":"23,-129v0,-16,11,-28,27,-28v16,0,28,12,28,28v0,16,-12,27,-28,27v-15,0,-27,-12,-27,-27","w":100},"\u201a":{"d":"27,-50r45,0v2,45,-4,73,-25,98r-18,-13v8,-12,12,-19,16,-35r-18,0r0,-50","w":100},"\u201e":{"d":"100,-50r44,0v2,45,-4,73,-25,98r-17,-13v8,-12,12,-18,15,-35r-17,0r0,-50xm28,-50r44,0v2,45,-3,74,-25,98r-17,-13v8,-12,12,-19,16,-35r-18,0r0,-50","w":172},"\u2030":{"d":"67,-265v55,9,125,21,170,-5r36,0r-205,288r-35,0r175,-247v-27,5,-52,6,-81,4v16,43,-17,83,-58,83v-34,0,-63,-28,-62,-61v0,-36,27,-59,60,-62xm99,-203v0,-15,-15,-30,-30,-30v-15,0,-30,15,-30,30v0,15,14,29,30,29v16,0,30,-14,30,-29xm330,-55v0,-33,29,-62,62,-62v32,0,62,30,62,62v0,33,-29,62,-62,62v-33,0,-62,-29,-62,-62xm422,-55v0,-15,-15,-30,-30,-30v-15,0,-30,15,-30,30v0,15,15,30,30,30v15,0,30,-15,30,-30xm179,-55v0,-33,29,-62,61,-62v33,0,62,29,62,62v0,33,-29,62,-62,62v-33,0,-61,-29,-61,-62xm270,-55v0,-15,-15,-30,-30,-30v-15,0,-30,15,-30,30v0,15,15,30,30,30v15,0,30,-15,30,-30","w":460},"\u00c2":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm61,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":266},"\u00ca":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm28,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":187},"\u00c1":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm141,-347r57,0r-65,69r-34,0","w":266},"\u00cb":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm36,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm114,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":187},"\u00c8":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm91,-347r42,69r-34,0r-65,-69r57,0","w":187},"\u00cd":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm59,-347r57,0r-65,69r-34,0","w":100},"\u00ce":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm-22,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":100},"\u00cf":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm-14,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm64,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":100},"\u00cc":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm42,-347r42,69r-34,0r-65,-69r57,0","w":100},"\u00d3":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm160,-347r57,0r-65,69r-34,0","w":302},"\u00d4":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm79,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":302},"\uf000":{"w":284},"\u00d2":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm143,-347r42,69r-34,0r-65,-69r57,0","w":302},"\u00da":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm124,-347r57,0r-65,69r-34,0","w":230},"\u00db":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm43,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":230},"\u00d9":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm107,-347r42,69r-34,0r-65,-69r57,0","w":230},"\u0131":{"d":"19,-191r48,0r0,191r-48,0r0,-191","w":86},"\u02c6":{"d":"25,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":194},"\u02dc":{"d":"160,-245v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":172},"\u02c9":{"d":"25,-226r0,-39r101,0r0,39r-101,0","w":151},"\u02d8":{"d":"54,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":172},"\u02d9":{"d":"25,-251v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":100},"\u02da":{"d":"26,-266v0,-21,19,-39,39,-39v20,0,38,18,38,39v0,21,-18,41,-38,40v-21,0,-39,-20,-39,-40xm79,-266v0,-8,-6,-17,-14,-16v-9,-1,-16,7,-15,16v0,7,7,15,15,15v8,0,14,-7,14,-15","w":129},"\u00b8":{"d":"46,40v20,0,24,-23,4,-22r-10,0r6,-21r30,0r-2,8v13,3,25,13,25,27v0,36,-49,43,-84,27r6,-23v8,3,17,4,25,4","w":122},"\u02dd":{"d":"100,-295r57,0r-65,69r-34,0xm178,-295r57,0r-64,69r-35,0","w":252},"\u02db":{"d":"28,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31","w":122},"\u02c7":{"d":"25,-276r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":194},"\u0141":{"d":"86,-175r39,-46r0,45r-39,46r0,83r72,0r0,47r-121,0r0,-72r-30,34r0,-45r30,-34r0,-142r49,0r0,84","w":172},"\u0142":{"d":"82,-181r19,-21r0,43r-19,22r0,137r-48,0r0,-84r-20,21r0,-43r20,-21r0,-138r48,0r0,84","w":115},"\u0160":{"d":"32,-162v-43,-57,29,-130,95,-94v12,6,24,17,38,33r-36,32v-13,-18,-26,-27,-39,-27v-11,0,-22,7,-22,17v17,48,102,68,102,134v0,62,-77,95,-128,60v-14,-9,-25,-24,-35,-43r42,-25v12,23,26,35,42,35v22,1,40,-23,24,-42v-15,-19,-78,-66,-83,-80xm21,-328r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":187},"\u0161":{"d":"16,-141v-2,-61,97,-72,125,-24r-29,30v-12,-12,-23,-18,-33,-18v-11,-1,-22,9,-15,19v30,21,81,31,81,79v0,68,-105,79,-136,27r30,-32v10,18,53,35,61,7v3,-11,-24,-24,-37,-30v-31,-16,-47,-35,-47,-58xm7,-276r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":158},"\u017d":{"d":"16,-259r156,0r-92,212r86,0r0,47r-158,0r92,-210r-84,0r0,-49xm18,-328r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":180},"\u017e":{"d":"16,-191r147,0r-86,150r81,0r0,41r-155,0r86,-151r-73,0r0,-40xm11,-276r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":165},"\u00a6":{"d":"94,-131r0,-134r28,0r0,125xm94,70r0,-160r28,-10r0,170r-28,0"},"\u00d0":{"d":"248,-126v0,87,-42,132,-146,126r-64,0r0,-115r-29,0r0,-29r29,0r0,-115r63,0v102,-4,147,44,147,133xm198,-127v0,-63,-38,-90,-110,-84r0,67r53,0r0,29r-53,0r0,67v72,5,110,-14,110,-79","w":267},"\u00f0":{"d":"15,-96v0,-58,57,-116,117,-95v-3,-8,-9,-17,-18,-28r-46,14r-9,-28r33,-10v-11,-10,-19,-18,-24,-22v23,0,50,-4,60,10r35,-10r9,28r-18,5v33,32,61,75,63,130v1,59,-44,107,-102,107v-55,0,-100,-47,-100,-101xm168,-95v0,-32,-23,-56,-53,-56v-30,-1,-52,24,-52,55v0,32,21,56,52,56v31,1,53,-24,53,-55","w":230},"\u00dd":{"d":"11,-259r53,0r48,93r48,-93r52,0r-75,147r0,112r-50,0r0,-112xm120,-347r57,0r-65,69r-34,0","w":223},"\u00fd":{"d":"3,-191r49,0r50,120r55,-120r49,0r-120,261r-50,0r40,-84xm113,-295r57,0r-65,69r-34,0","w":208},"\u00de":{"d":"183,-129v0,57,-35,77,-104,74r0,55r-50,0r0,-259r50,0r0,55v71,-2,104,17,104,75xm135,-129v0,-27,-26,-28,-56,-27r0,53v30,1,56,2,56,-26","w":201},"\u00fe":{"d":"222,-95v7,79,-97,133,-150,75r0,90r-48,0r0,-335r48,0r0,95v52,-59,160,-8,150,75xm174,-96v0,-32,-22,-56,-52,-56v-30,1,-52,24,-52,56v0,32,22,56,52,57v30,1,52,-26,52,-57","w":237},"\u2212":{"d":"20,-151r176,0r0,44r-176,0r0,-44"},"\u00d7":{"d":"108,-103r-56,55r-26,-26r56,-55r-56,-56r26,-26r56,56r55,-56r26,26r-55,56r55,55r-26,26"},"\u00b9":{"d":"35,-262r47,0r0,133r-33,0r0,-105r-34,0","w":120},"\u00b2":{"d":"60,-237v-12,0,-20,9,-20,21r-33,0v-4,-60,105,-65,105,-9v0,32,-28,49,-49,69r50,0r0,27r-110,0r0,-15v24,-25,65,-44,76,-79v-1,-9,-8,-14,-19,-14","w":120},"\u00b3":{"d":"47,-212v25,5,37,-26,14,-26v-8,0,-14,5,-18,13r-32,0v1,-52,92,-52,96,-5v0,11,-6,20,-17,26v50,22,17,78,-32,78v-29,0,-53,-18,-53,-46r33,0v0,25,44,24,44,3v0,-12,-12,-17,-35,-18r0,-25","w":120},"\u00bd":{"d":"36,-262r47,0r0,133r-33,0r0,-105r-34,0xm75,7r110,-272r30,0r-110,272r-30,0xm240,-108v-12,0,-20,9,-20,21r-33,0v-4,-60,105,-65,105,-9v0,32,-28,49,-49,69r50,0r0,27r-110,0r0,-15v24,-25,65,-44,76,-79v-1,-9,-8,-14,-19,-14","w":302},"\u00bc":{"d":"36,-262r47,0r0,133r-33,0r0,-105r-34,0xm82,7r110,-272r30,0r-110,272r-30,0xm250,-136r32,0r0,85r14,0r0,25r-14,0r0,26r-29,0r0,-26r-70,0r0,-26xm253,-51r0,-47r-39,47r39,0","w":302},"\u00be":{"d":"48,-212v25,5,37,-26,14,-26v-8,0,-14,5,-18,13r-32,0v1,-52,92,-52,96,-5v0,11,-6,20,-17,26v50,22,17,78,-32,78v-29,0,-53,-18,-53,-46r33,0v0,25,44,24,44,3v0,-12,-12,-17,-35,-18r0,-25xm86,7r110,-272r30,0r-110,272r-30,0xm250,-136r32,0r0,85r14,0r0,25r-14,0r0,26r-29,0r0,-26r-70,0r0,-26xm253,-51r0,-47r-39,47r39,0","w":302},"\u20a3":{"d":"79,-73r40,0r0,29r-40,0r0,44r-49,0r0,-44r-30,0r0,-29r30,0r0,-186r129,0r0,48r-80,0r0,47r80,0r0,48r-80,0r0,43","w":172},"\u011e":{"d":"18,-131v-7,-125,176,-181,250,-85r-34,34v-52,-65,-167,-33,-167,52v0,83,131,127,164,45r-75,0r0,-46r130,0v3,80,-48,138,-128,138v-84,0,-135,-56,-140,-138xm119,-328v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":302},"\u011f":{"d":"16,-98v-8,-82,97,-130,150,-72r0,-21r47,0r0,164v19,122,-169,134,-197,41r53,0v17,23,81,21,92,-5v3,-6,5,-18,5,-33v-52,56,-158,5,-150,-74xm168,-98v0,-30,-23,-53,-52,-53v-29,0,-52,23,-52,53v0,31,23,55,53,55v30,1,51,-24,51,-55xm93,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":237},"\u0130":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm25,-303v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":100},"\u015e":{"d":"32,-162v-43,-57,29,-130,95,-94v12,6,24,17,38,33r-36,32v-13,-18,-26,-27,-39,-27v-11,0,-22,7,-22,17v17,48,102,68,102,134v0,62,-77,95,-128,60v-14,-9,-25,-24,-35,-43r42,-25v12,23,26,35,42,35v22,1,40,-23,24,-42v-15,-19,-78,-66,-83,-80xm79,40v20,0,24,-23,4,-22r-10,0r6,-21r30,0r-2,8v13,3,25,13,25,27v0,36,-49,43,-84,27r6,-23v8,3,17,4,25,4","w":187},"\u015f":{"d":"16,-141v-2,-61,97,-72,125,-24r-29,30v-12,-12,-23,-18,-33,-18v-11,-1,-22,9,-15,19v30,21,81,31,81,79v0,68,-105,79,-136,27r30,-32v10,18,53,35,61,7v3,-11,-24,-24,-37,-30v-31,-16,-47,-35,-47,-58xm64,40v20,0,24,-23,4,-22r-10,0r6,-21r30,0r-2,8v13,3,25,13,25,27v0,36,-49,43,-84,27r6,-23v8,3,17,4,25,4","w":158},"\u0106":{"d":"17,-130v0,-133,179,-177,250,-83r-34,33v-52,-67,-167,-37,-167,50v0,93,122,115,167,52r33,35v-34,32,-57,49,-112,50v-78,1,-137,-57,-137,-137xm157,-347r57,0r-65,69r-34,0","w":280},"\u0107":{"d":"15,-95v-5,-101,146,-135,196,-58r-39,22v-31,-39,-109,-19,-109,37v0,56,79,73,109,33r37,26v-21,27,-49,40,-86,40v-63,0,-105,-44,-108,-100xm130,-295r57,0r-65,69r-34,0","w":230},"\u010c":{"d":"17,-130v0,-133,179,-177,250,-83r-34,33v-52,-67,-167,-37,-167,50v0,93,122,115,167,52r33,35v-34,32,-57,49,-112,50v-78,1,-137,-57,-137,-137xm81,-328r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":280},"\u010d":{"d":"15,-95v-5,-101,146,-135,196,-58r-39,22v-31,-39,-109,-19,-109,37v0,56,79,73,109,33r37,26v-21,27,-49,40,-86,40v-63,0,-105,-44,-108,-100xm49,-276r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":230},"\u0111":{"d":"15,-95v0,-83,98,-134,151,-75r0,-46r-75,0r0,-29r75,0r0,-20r47,0r0,20r24,0r0,29r-24,0r0,216r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57","w":237},"\u00af":{"d":"-2,-296r184,0r0,18r-184,0r0,-18","w":180},"\u00b7":{"d":"122,-107v-31,0,-32,-51,0,-51v13,0,26,12,26,25v0,13,-13,26,-26,26","w":119},"\uf003":{"d":"70,-265r32,0r0,85r14,0r0,25r-14,0r0,26r-29,0r0,-26r-70,0r0,-26xm73,-180r0,-47r-39,47r39,0","w":120},"\u0102":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm102,-328v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":266},"\u0103":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm83,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":237},"\u0104":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm199,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31","w":266},"\u0105":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm159,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31","w":237},"\u010e":{"d":"235,-126v0,87,-42,132,-146,126r-59,0r0,-259r58,0v102,-4,147,44,147,133xm185,-127v0,-61,-36,-89,-106,-84r0,163v71,6,106,-16,106,-79xm28,-328r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":252},"\u010f":{"d":"15,-95v0,-83,98,-134,151,-75r0,-95r47,0r0,265r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm226,-265r45,0v2,45,-4,73,-25,99r-18,-14v9,-12,12,-18,16,-35r-18,0r0,-50","w":259},"\u0110":{"d":"248,-126v0,87,-42,132,-146,126r-64,0r0,-115r-29,0r0,-29r29,0r0,-115r63,0v102,-4,147,44,147,133xm198,-127v0,-63,-38,-90,-110,-84r0,67r53,0r0,29r-53,0r0,67v72,5,110,-14,110,-79","w":267},"\u0118":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm90,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31","w":187},"\u0119":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm81,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31","w":230},"\u011a":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm34,-328r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":187},"\u011b":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm43,-276r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":230},"\u0132":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm179,-42v17,0,16,-15,16,-36r0,-181r49,0r0,172v16,102,-91,119,-137,56r36,-33v13,15,25,22,36,22","w":273},"\u0133":{"d":"134,-270v17,0,31,15,31,31v0,16,-14,31,-31,31v-16,0,-31,-14,-31,-31v0,-17,15,-31,31,-31xm43,-270v17,0,31,14,31,31v0,17,-15,31,-31,31v-16,0,-31,-15,-31,-31v0,-15,15,-32,31,-31xm19,-191r49,0r0,191r-49,0r0,-191xm72,30v19,10,38,7,38,-20r0,-201r48,0r0,197v4,63,-35,80,-86,62r0,-38","w":180},"\u0139":{"d":"30,-259r49,0r0,212r71,0r0,47r-120,0r0,-259xm80,-347r57,0r-65,69r-34,0","w":158},"\u013a":{"d":"19,-265r48,0r0,265r-48,0r0,-265xm45,-347r57,0r-65,69r-34,0","w":86},"\u013d":{"d":"30,-259r49,0r0,212r71,0r0,47r-120,0r0,-259xm102,-265r45,0v2,45,-4,73,-25,99r-18,-14v9,-12,12,-18,16,-35r-18,0r0,-50","w":158},"\u013e":{"d":"19,-265r48,0r0,265r-48,0r0,-265xm84,-265r45,0v2,45,-4,73,-25,99r-18,-14v9,-12,12,-18,16,-35r-18,0r0,-50","w":113},"\u013f":{"d":"30,-259r49,0r0,212r71,0r0,47r-120,0r0,-259xm118,-107v-31,0,-32,-51,0,-51v13,0,26,12,26,25v0,13,-13,26,-26,26","w":158},"\u0140":{"d":"19,-265r48,0r0,265r-48,0r0,-265xm104,-107v-31,0,-32,-51,0,-51v13,0,26,12,26,25v0,13,-13,26,-26,26","w":124},"\u0143":{"d":"30,-259r47,0r111,171r0,-171r49,0r0,259r-47,0r-111,-170r0,170r-49,0r0,-259xm149,-347r57,0r-65,69r-34,0","w":266},"\u0144":{"d":"114,-152v-60,0,-38,91,-42,152r-48,0r0,-191r48,0r0,19v39,-43,122,-26,122,46r0,126r-48,0v-7,-56,22,-152,-32,-152xm114,-295r57,0r-65,69r-34,0"},"\u0147":{"d":"30,-259r47,0r111,171r0,-171r49,0r0,259r-47,0r-111,-170r0,170r-49,0r0,-259xm54,-328r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":266},"\u0148":{"d":"114,-152v-60,0,-38,91,-42,152r-48,0r0,-191r48,0r0,19v39,-43,122,-26,122,46r0,126r-48,0v-7,-56,22,-152,-32,-152xm52,-276r53,0r20,23r19,-23r52,0r-52,50r-39,0"},"\u0149":{"d":"129,-152v-60,0,-38,91,-42,152r-48,0r0,-191r48,0r0,19v39,-43,122,-26,122,46r0,126r-48,0v-7,-56,22,-152,-32,-152xm-9,-265r45,0v2,45,-4,73,-25,99r-18,-14v9,-12,12,-18,16,-35r-18,0r0,-50","w":231},"\u0150":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm140,-347r57,0r-65,69r-34,0xm218,-347r57,0r-64,69r-35,0","w":302},"\u0151":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm108,-295r57,0r-65,69r-34,0xm186,-295r57,0r-64,69r-35,0","w":230},"\u0154":{"d":"187,-184v-1,38,-20,58,-50,69r62,115r-54,0r-58,-110r-5,0r0,110r-49,0r0,-259v83,-3,155,-1,154,75xm139,-184v-1,-27,-25,-27,-57,-26r0,52v30,0,58,2,57,-26xm119,-347r57,0r-65,69r-34,0","w":208},"\u0155":{"d":"101,-150v-37,-16,-40,29,-40,73r0,77r-48,0r0,-191r41,0r0,24v9,-22,35,-37,62,-24xm71,-295r57,0r-65,69r-34,0","w":115},"\u0158":{"d":"187,-184v-1,38,-20,58,-50,69r62,115r-54,0r-58,-110r-5,0r0,110r-49,0r0,-259v83,-3,155,-1,154,75xm139,-184v-1,-27,-25,-27,-57,-26r0,52v30,0,58,2,57,-26xm32,-328r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":208},"\u0159":{"d":"101,-150v-37,-16,-40,29,-40,73r0,77r-48,0r0,-191r41,0r0,24v9,-22,35,-37,62,-24xm-15,-276r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":115},"\u015a":{"d":"32,-162v-43,-57,29,-130,95,-94v12,6,24,17,38,33r-36,32v-13,-18,-26,-27,-39,-27v-11,0,-22,7,-22,17v17,48,102,68,102,134v0,62,-77,95,-128,60v-14,-9,-25,-24,-35,-43r42,-25v12,23,26,35,42,35v22,1,40,-23,24,-42v-15,-19,-78,-66,-83,-80xm89,-347r57,0r-65,69r-34,0","w":187},"\u015b":{"d":"16,-141v-2,-61,97,-72,125,-24r-29,30v-12,-12,-23,-18,-33,-18v-11,-1,-22,9,-15,19v30,21,81,31,81,79v0,68,-105,79,-136,27r30,-32v10,18,53,35,61,7v3,-11,-24,-24,-37,-30v-31,-16,-47,-35,-47,-58xm84,-295r57,0r-65,69r-34,0","w":158},"\u0162":{"d":"4,-259r143,0r0,49r-46,0r0,210r-50,0r0,-210r-47,0r0,-49xm60,21r31,0v0,30,0,42,-17,54r-9,-9v6,-4,8,-10,10,-16r-15,0r0,-29","w":151},"\u0163":{"d":"30,-262r48,0r0,71r28,0r0,41r-28,0r0,150r-48,0r0,-150r-25,0r0,-41r25,0r0,-71xm38,21r32,0v-1,30,-1,41,-18,54r-9,-9v6,-4,9,-10,11,-16r-16,0r0,-29","w":107},"\u0164":{"d":"4,-259r143,0r0,49r-47,0r0,210r-50,0r0,-210r-46,0r0,-49xm4,-328r53,0r20,23r19,-23r52,0r-52,50r-39,0","w":151},"\u0165":{"d":"105,-265r35,0v1,29,-5,49,-20,68r-14,-11v8,-9,12,-18,13,-27r-14,0r0,-30xm30,-262r48,0r0,71r28,0r0,41r-28,0r0,150r-48,0r0,-150r-25,0r0,-41r25,0r0,-71","w":129},"\u016e":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm79,-318v0,-21,19,-39,39,-39v20,0,38,18,38,39v0,21,-18,41,-38,40v-21,0,-39,-20,-39,-40xm132,-318v0,-8,-6,-17,-14,-16v-9,-1,-16,7,-15,16v0,7,7,15,15,15v8,0,14,-7,14,-15","w":230},"\u016f":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm62,-266v0,-21,19,-39,39,-39v20,0,38,18,38,39v0,21,-18,41,-38,40v-21,0,-39,-20,-39,-40xm115,-266v0,-8,-6,-17,-14,-16v-9,-1,-16,7,-15,16v0,7,7,15,15,15v8,0,14,-7,14,-15"},"\u0170":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm100,-347r57,0r-65,69r-34,0xm178,-347r57,0r-64,69r-35,0","w":230},"\u0171":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm82,-295r57,0r-65,69r-34,0xm160,-295r57,0r-64,69r-35,0"},"\u0179":{"d":"16,-259r156,0r-92,212r86,0r0,47r-158,0r92,-210r-84,0r0,-49xm102,-347r57,0r-65,69r-34,0","w":180},"\u017a":{"d":"16,-191r147,0r-86,150r81,0r0,41r-155,0r86,-151r-73,0r0,-40xm84,-295r57,0r-65,69r-34,0","w":165},"\u017b":{"d":"16,-259r156,0r-92,212r86,0r0,47r-158,0r92,-210r-84,0r0,-49xm60,-303v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":180},"\u017c":{"d":"16,-191r147,0r-86,150r81,0r0,41r-155,0r86,-151r-73,0r0,-40xm60,-251v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":165},"\uf100":{"d":"29,-258r159,0r0,40r-106,0r0,218r-53,0r0,-258","w":193},"\uf101":{"d":"17,-129v0,-81,44,-135,129,-135v79,0,124,51,124,133v0,86,-45,137,-123,138v-85,1,-130,-51,-130,-136xm216,-128v0,-64,-21,-99,-70,-99v-55,0,-74,36,-74,100v0,60,20,96,72,96v52,0,72,-39,72,-97xm98,-152r92,0r0,41r-92,0r0,-41","w":287},"\uf102":{"d":"17,-127v0,-74,46,-104,123,-108r0,-29r53,0r0,29v82,4,123,40,123,107v0,73,-50,107,-123,108r0,51r-53,0r0,-51v-76,-3,-123,-35,-123,-107xm140,-198v-69,-4,-92,93,-41,129v10,8,24,11,41,12r0,-141xm193,-57v63,5,88,-80,50,-120v-12,-12,-29,-19,-50,-20r0,140","w":333},"\uf103":{"d":"15,-89v0,-52,32,-102,84,-101v28,0,50,14,67,41v1,-10,4,-23,8,-36r50,0v-17,56,-15,129,3,185r-50,0v-4,-14,-8,-27,-10,-40v-36,79,-152,47,-152,-49xm163,-96v0,-33,-16,-61,-48,-61v-35,0,-48,29,-48,66v0,37,16,62,47,62v33,0,49,-31,49,-67","w":237},"\uf104":{"d":"15,-85v0,-52,39,-87,95,-83v-63,-39,-50,-109,33,-105v11,0,26,2,46,6r0,33v-25,-6,-68,-9,-69,12v25,51,102,64,102,137v0,55,-43,90,-101,90v-63,0,-105,-34,-106,-90xm170,-88v0,-32,-19,-55,-51,-55v-34,0,-52,19,-52,59v-1,34,18,56,51,56v35,0,52,-25,52,-60","w":236},"\uf105":{"d":"15,-92v0,-78,80,-112,162,-93r0,35v-45,-12,-104,-4,-108,39r107,0r0,33r-107,0v3,46,62,55,112,44r0,35v-83,15,-166,-11,-166,-93","w":195},"\uf106":{"d":"113,-190v46,3,96,3,146,3r0,36r-58,0v50,62,0,156,-83,156v-61,0,-103,-42,-103,-100v0,-54,46,-98,98,-95xm170,-97v0,-37,-18,-63,-53,-63v-35,1,-50,27,-50,67v0,39,15,66,52,65v35,-1,52,-28,51,-69","w":265},"\uf107":{"d":"6,-187r183,0r0,36r-66,0r0,151r-51,0r0,-151r-66,0r0,-36","w":195},"\uf108":{"d":"15,-93v0,-67,40,-91,105,-97r0,-44r51,0r0,45v66,2,106,35,106,96v0,59,-38,93,-105,95r0,66r-52,0r0,-65v-65,-3,-105,-33,-105,-96xm120,-157v-53,-6,-67,79,-38,112v10,10,22,16,38,16r0,-128xm171,-157r0,128v52,5,67,-75,40,-111v-9,-11,-22,-17,-40,-17","w":291},"\u2017":{"d":"-2,20r184,0r0,18r-184,0r0,-18xm-2,51r184,0r0,18r-184,0r0,-18","w":180},"\u2032":{"d":"50,-176r-27,0r3,-89r47,0","w":79},"\u2033":{"d":"112,-176r-28,0r3,-89r47,0xm40,-176r-28,0r3,-89r47,0","w":129},"\u203c":{"d":"25,-265r49,0r0,189r-49,0r0,-189xm129,-265r49,0r0,189r-49,0r0,-189xm19,-25v0,-17,14,-30,30,-30v17,0,31,13,31,30v0,16,-15,30,-31,30v-15,0,-30,-15,-30,-30xm123,-25v0,-15,15,-30,30,-30v17,0,31,13,31,30v0,16,-15,30,-31,30v-15,0,-30,-15,-30,-30","w":202},"\u207f":{"d":"64,-192v-26,4,-11,60,-15,91r-35,0r0,-120r35,0r0,10v25,-27,62,-7,62,32r0,78r-35,0v-3,-31,9,-85,-12,-91","w":123},"\u20a7":{"d":"29,-259v79,-3,149,-1,155,68r16,0r0,-71r48,0r0,71v64,4,120,-21,151,26r-30,30v-12,-12,-22,-18,-32,-18v-25,2,-21,22,0,28v31,17,65,29,66,70v1,68,-105,79,-136,27r30,-32v8,16,55,36,61,7v3,-11,-25,-23,-38,-30v-34,-18,-50,-35,-45,-67r-27,0r0,150r-48,0r0,-150r-24,0v-13,27,-45,42,-97,43r0,107r-50,0r0,-259xm135,-184v1,-28,-26,-27,-56,-27r0,58v35,-1,55,-3,56,-31","w":416},"\u2105":{"d":"7,-202v0,-61,88,-88,115,-34r-30,16v-15,-25,-52,-10,-49,19v-4,30,36,41,49,16r29,19v-30,49,-114,24,-114,-36xm89,7r111,-272r30,0r-110,272r-31,0xm196,-60v0,-33,25,-63,56,-63v32,0,58,30,58,63v0,33,-25,63,-58,63v-32,0,-56,-30,-56,-63xm253,-29v28,0,28,-62,0,-62v-28,1,-29,63,0,62","w":317},"\u2113":{"d":"79,-99v-6,72,35,79,78,43r0,43v-55,37,-122,14,-126,-61v-6,3,-13,6,-20,9r-7,-45r26,-13v-2,-86,10,-131,75,-139v35,-4,61,28,58,61v-4,56,-35,68,-84,102xm104,-222v-25,0,-23,37,-25,71v23,-19,42,-25,42,-52v0,-11,-6,-19,-17,-19","w":173},"\u2190":{"d":"86,-154r14,0v-9,20,-21,38,-34,54r280,0r0,18r-280,0v12,12,23,30,34,54r-13,0v-26,-30,-51,-50,-73,-60r0,-7v21,-8,44,-28,72,-59","w":360},"\u2191":{"d":"27,-185v31,-28,50,-51,58,-72r9,0v10,22,29,47,59,73r0,13v-24,-11,-42,-22,-54,-34r0,280r-18,0r0,-280v-16,13,-34,25,-54,34r0,-14","w":180},"\u2192":{"d":"273,-154v28,31,52,51,73,59r0,7v-22,10,-47,30,-73,60r-13,0v11,-24,22,-42,34,-54r-280,0r0,-18r280,0v-13,-16,-25,-34,-34,-54r13,0","w":360},"\u2193":{"d":"27,3r0,-14v20,9,38,22,54,35r0,-281r18,0r0,281v12,-12,30,-24,54,-35r0,14v-30,26,-49,50,-59,72r-9,0v-8,-21,-27,-44,-58,-72","w":180},"\u2194":{"d":"346,-95r0,8v-21,9,-45,29,-71,59r-14,0v8,-20,19,-38,34,-54r-230,0v15,16,26,34,34,54r-14,0v-26,-30,-50,-50,-71,-59r0,-8v21,-9,45,-29,71,-59r14,0v-8,20,-19,38,-34,54r230,0v-15,-16,-26,-34,-34,-54r14,0v26,30,50,50,71,59","w":360},"\u2195":{"d":"86,-257r8,0v9,21,29,45,59,71r0,14v-20,-8,-39,-19,-55,-34r0,230v16,-15,35,-26,55,-34r0,14v-30,26,-50,50,-59,71r-8,0v-9,-21,-29,-45,-59,-71r0,-14v20,8,38,19,54,34r0,-230v-16,15,-34,26,-54,34r0,-14v30,-26,50,-50,59,-71","w":180},"\u21a8":{"d":"86,-257r8,0v9,21,29,45,59,71r0,14v-20,-8,-39,-19,-55,-34r0,230v16,-15,35,-26,55,-34r0,14v-30,26,-50,50,-59,71r-8,0v-9,-21,-29,-45,-59,-71r0,-14v20,8,38,19,54,34r0,-230v-16,15,-34,26,-54,34r0,-14v30,-26,50,-50,59,-71xm27,92r126,0r0,17r-126,0r0,-17","w":180},"\u221f":{"d":"64,-225r17,0r0,207r208,0r0,18r-225,0r0,-225","w":352},"\u2229":{"d":"106,-239v-93,0,-57,143,-64,239r-19,0v4,-111,-26,-262,83,-262v108,0,80,145,83,262r-19,0v-7,-96,29,-239,-64,-239","w":211},"\u2261":{"d":"20,-226r176,0r0,44r-176,0r0,-44xm20,-151r176,0r0,44r-176,0r0,-44xm20,-76r176,0r0,44r-176,0r0,-44"},"\u25a1":{"d":"26,-166r166,0r0,166r-166,0r0,-166xm39,-153r0,140r139,0r0,-140r-139,0","w":217},"\u25aa":{"d":"104,-160r0,82r-81,0r0,-82r81,0","w":127},"\u25ab":{"d":"104,-160r0,82r-81,0r0,-82r81,0xm91,-146r-55,0r0,54r55,0r0,-54","w":127},"\u25cf":{"d":"31,-102v0,-42,36,-77,78,-77v41,0,77,36,77,77v0,41,-36,78,-77,78v-41,0,-78,-37,-78,-78","w":217},"\u25e6":{"d":"20,-119v0,-23,21,-45,44,-44v23,0,44,19,44,44v0,23,-21,44,-44,44v-23,0,-44,-21,-44,-44xm95,-119v0,-16,-15,-31,-31,-31v-16,0,-31,14,-31,31v0,17,15,31,31,31v16,0,32,-14,31,-31","w":127},"\uf004":{"d":"44,13r31,16r-39,67r-22,-11","w":100},"\u0100":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm83,-278r0,-39r101,0r0,39r-101,0","w":266},"\u0101":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm64,-226r0,-39r101,0r0,39r-101,0","w":237},"\u0108":{"d":"17,-130v0,-133,179,-177,250,-83r-34,33v-52,-67,-167,-37,-167,50v0,93,122,115,167,52r33,35v-34,32,-57,49,-112,50v-78,1,-137,-57,-137,-137xm76,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":280},"\u0109":{"d":"15,-95v-5,-101,146,-135,196,-58r-39,22v-31,-39,-109,-19,-109,37v0,56,79,73,109,33r37,26v-21,27,-49,40,-86,40v-63,0,-105,-44,-108,-100xm41,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":230},"\u010a":{"d":"17,-130v0,-133,179,-177,250,-83r-34,33v-52,-67,-167,-37,-167,50v0,93,122,115,167,52r33,35v-34,32,-57,49,-112,50v-78,1,-137,-57,-137,-137xm125,-303v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":280},"\u010b":{"d":"15,-95v-5,-101,146,-135,196,-58r-39,22v-31,-39,-109,-19,-109,37v0,56,79,73,109,33r37,26v-21,27,-49,40,-86,40v-63,0,-105,-44,-108,-100xm94,-251v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":230},"\u0112":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm50,-278r0,-39r101,0r0,39r-101,0","w":187},"\u0113":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm65,-226r0,-39r101,0r0,39r-101,0","w":230},"\u0114":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm68,-328v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":187},"\u0115":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm83,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":230},"\u0116":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm75,-303v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":187},"\u0117":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm90,-251v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":230},"\u011c":{"d":"18,-131v-7,-125,176,-181,250,-85r-34,34v-52,-65,-167,-33,-167,52v0,83,131,127,164,45r-75,0r0,-46r130,0v3,80,-48,138,-128,138v-84,0,-135,-56,-140,-138xm80,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":302},"\u011d":{"d":"16,-98v-8,-82,97,-130,150,-72r0,-21r47,0r0,164v19,122,-169,134,-197,41r53,0v17,23,81,21,92,-5v3,-6,5,-18,5,-33v-52,56,-158,5,-150,-74xm168,-98v0,-30,-23,-53,-52,-53v-29,0,-52,23,-52,53v0,31,23,55,53,55v30,1,51,-24,51,-55xm42,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":237},"\u0120":{"d":"18,-131v-7,-125,176,-181,250,-85r-34,34v-52,-65,-167,-33,-167,52v0,83,131,127,164,45r-75,0r0,-46r130,0v3,80,-48,138,-128,138v-84,0,-135,-56,-140,-138xm127,-303v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":302},"\u0121":{"d":"16,-98v-8,-82,97,-130,150,-72r0,-21r47,0r0,164v19,122,-169,134,-197,41r53,0v17,23,81,21,92,-5v3,-6,5,-18,5,-33v-52,56,-158,5,-150,-74xm168,-98v0,-30,-23,-53,-52,-53v-29,0,-52,23,-52,53v0,31,23,55,53,55v30,1,51,-24,51,-55xm89,-251v0,-13,12,-26,25,-26v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25","w":237},"\u0122":{"d":"18,-131v-7,-125,176,-181,250,-85r-34,34v-52,-65,-167,-33,-167,52v0,83,131,127,164,45r-75,0r0,-46r130,0v3,80,-48,138,-128,138v-84,0,-135,-56,-140,-138xm138,40v20,0,24,-23,4,-22r-10,0r6,-21r30,0r-2,8v13,3,25,13,25,27v0,36,-49,43,-84,27r6,-23v8,3,17,4,25,4","w":302},"\u0123":{"d":"16,-98v-8,-82,97,-130,150,-72r0,-21r47,0r0,164v19,122,-169,134,-197,41r53,0v17,23,81,21,92,-5v3,-6,5,-18,5,-33v-52,56,-158,5,-150,-74xm168,-98v0,-30,-23,-53,-52,-53v-29,0,-52,23,-52,53v0,31,23,55,53,55v30,1,51,-24,51,-55xm142,-219r-45,0v-2,-45,4,-74,25,-99r18,13v-8,12,-12,19,-16,35r18,0r0,51","w":237},"\u0124":{"d":"29,-259r50,0r0,98r87,0r0,-98r50,0r0,259r-50,0r0,-113r-87,0r0,113r-50,0r0,-259xm50,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":244},"\u0125":{"d":"114,-152v-60,0,-38,90,-42,152r-48,0r0,-265r48,0r0,93v38,-42,122,-26,122,46r0,126r-47,0v-6,-56,20,-152,-33,-152xm37,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0"},"\u0126":{"d":"79,-227r87,0r0,-32r49,0r0,32r24,0r0,29r-24,0r0,198r-49,0r0,-113r-87,0r0,113r-50,0r0,-198r-23,0r0,-29r23,0r0,-32r50,0r0,32xm79,-198r0,37r87,0r0,-37r-87,0","w":244},"\u0127":{"d":"114,-152v-60,0,-38,91,-42,152r-48,0r0,-215r-24,0r0,-28r24,0r0,-22r48,0r0,22r56,0r0,28r-56,0r0,43v43,-45,122,-24,122,46r0,126r-48,0v-7,-54,22,-152,-32,-152"},"\u0128":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm124,-297v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":100},"\u0129":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm117,-245v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":86},"\u012a":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm0,-278r0,-39r101,0r0,39r-101,0","w":100},"\u012b":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm-7,-226r0,-39r101,0r0,39r-101,0","w":86},"\u012c":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm18,-328v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":100},"\u012d":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm11,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":86},"\u012e":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm18,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31","w":100},"\u012f":{"d":"12,-239v-1,-16,15,-31,31,-31v16,0,31,14,31,31v0,17,-15,31,-31,31v-17,0,-30,-15,-31,-31xm19,-191r48,0r0,191r-48,0r0,-191xm10,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31","w":86},"\u0134":{"d":"78,-42v16,0,16,-13,16,-36r0,-181r49,0r0,172v16,104,-91,118,-136,56r35,-33v12,13,18,22,36,22xm27,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":172},"\u0135":{"d":"-25,-226r53,-50r38,0r53,50r-53,0r-19,-23r-19,23r-53,0xm-15,30v19,10,38,6,38,-20r0,-201r48,0r0,197v4,63,-35,80,-86,62r0,-38","w":93},"\u0136":{"d":"30,-259r50,0r0,89r70,-89r59,0r-90,116r99,143r-59,0r-79,-115r0,115r-50,0r0,-259xm147,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30","w":223},"\u0137":{"d":"25,-265r48,0r0,153r70,-79r60,0r-82,92r92,99r-59,0r-81,-88r0,88r-48,0r0,-265xm142,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30","w":208},"\u0138":{"d":"25,-191r48,0r0,79r70,-79r60,0r-82,92r92,99r-59,0r-81,-88r0,88r-48,0r0,-191","w":208},"\u013b":{"d":"30,-259r49,0r0,212r71,0r0,47r-120,0r0,-259xm117,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30","w":158},"\u013c":{"d":"19,-265r48,0r0,265r-48,0r0,-265xm79,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30","w":86},"\u0145":{"d":"30,-259r47,0r111,171r0,-171r49,0r0,259r-47,0r-111,-170r0,170r-49,0r0,-259xm169,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30","w":266},"\u0146":{"d":"114,-152v-60,0,-38,91,-42,152r-48,0r0,-191r48,0r0,19v39,-43,122,-26,122,46r0,126r-48,0v-7,-56,22,-152,-32,-152xm146,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30"},"\u014a":{"d":"218,-126v0,-52,-24,-91,-69,-92v-25,0,-48,16,-70,47r0,171r-50,0r0,-259r50,0r0,28v71,-81,189,-6,189,102v0,85,-53,164,-136,127v-11,-5,-21,-15,-31,-29r35,-33v11,15,22,23,34,23v34,-2,48,-45,48,-85","w":285},"\u014b":{"d":"72,-172v45,-45,126,-24,122,46v-5,87,31,238,-86,194r0,-38v19,10,41,7,38,-20v-7,-57,23,-162,-32,-162v-60,0,-38,91,-42,152r-48,0r0,-191r48,0r0,19"},"\u014c":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm101,-278r0,-39r101,0r0,39r-101,0","w":302},"\u014d":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm65,-226r0,-39r101,0r0,39r-101,0","w":230},"\u014e":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm119,-328v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":302},"\u014f":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm83,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":230},"\u0156":{"d":"187,-184v-1,38,-20,58,-50,69r62,115r-54,0r-58,-110r-5,0r0,110r-49,0r0,-259v83,-3,155,-1,154,75xm139,-184v-1,-27,-25,-27,-57,-26r0,52v30,0,58,2,57,-26xm142,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30","w":208},"\u0157":{"d":"101,-150v-37,-16,-40,29,-40,73r0,77r-48,0r0,-191r41,0r0,24v9,-22,35,-37,62,-24xm96,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30","w":115},"\u015c":{"d":"32,-162v-43,-57,29,-130,95,-94v12,6,24,17,38,33r-36,32v-13,-18,-26,-27,-39,-27v-11,0,-22,7,-22,17v17,48,102,68,102,134v0,62,-77,95,-128,60v-14,-9,-25,-24,-35,-43r42,-25v12,23,26,35,42,35v22,1,40,-23,24,-42v-15,-19,-78,-66,-83,-80xm16,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":187},"\u015d":{"d":"16,-141v-2,-61,97,-72,125,-24r-29,30v-12,-12,-23,-18,-33,-18v-11,-1,-22,9,-15,19v30,21,81,31,81,79v0,68,-105,79,-136,27r30,-32v10,18,53,35,61,7v3,-11,-24,-24,-37,-30v-31,-16,-47,-35,-47,-58xm5,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":158},"\u0166":{"d":"101,-139r38,0r0,28r-38,0r0,111r-50,0r0,-111r-39,0r0,-28r39,0r0,-71r-47,0r0,-49r143,0r0,49r-46,0r0,71","w":151},"\u0167":{"d":"78,-108r33,0r0,28r-33,0r0,80r-48,0r0,-80r-29,0r0,-28r29,0r0,-42r-25,0r0,-41r25,0r0,-71r48,0r0,71r28,0r0,41r-28,0r0,42","w":107},"\u0168":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm189,-297v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17","w":230},"\u0169":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm182,-245v-36,43,-85,-8,-127,18r-20,-29v38,-40,87,11,129,-17"},"\u016a":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm65,-278r0,-39r101,0r0,39r-101,0","w":230},"\u016b":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm58,-226r0,-39r101,0r0,39r-101,0"},"\u016c":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm83,-328v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":230},"\u016d":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm76,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0"},"\u0172":{"d":"115,7v-63,0,-87,-35,-87,-111r0,-155r49,0r0,168v-1,33,8,50,37,50v32,0,39,-16,39,-56r0,-162r50,0r0,155v3,76,-24,111,-88,111xm87,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31","w":230},"\u0173":{"d":"108,5v-67,0,-86,-38,-84,-117r0,-79r49,0v6,55,-22,150,35,151v59,1,29,-96,36,-151r48,0r0,81v2,80,-18,115,-84,115xm81,38v1,-25,22,-42,57,-38v-16,10,-25,19,-25,29v0,17,19,20,34,12r0,28v-32,7,-68,-2,-66,-31"},"\u0174":{"d":"10,-259r48,0r38,165r46,-165r41,0r47,165r36,-165r49,0r-58,259r-47,0r-48,-167r-47,167r-47,0xm90,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":323},"\u0175":{"d":"3,-191r47,0r38,109r42,-109r29,0r40,107r39,-107r47,0r-70,191r-30,0r-41,-109r-42,109r-30,0xm72,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":287},"\u0176":{"d":"11,-259r53,0r48,93r48,-93r52,0r-75,147r0,112r-50,0r0,-112xm39,-278r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":223},"\u0177":{"d":"3,-191r49,0r50,120r55,-120r49,0r-120,261r-50,0r40,-84xm32,-226r53,-50r39,0r52,50r-52,0r-19,-23r-20,23r-53,0","w":208},"\u017f":{"d":"19,-201v-9,-64,31,-79,80,-62r0,36v-18,-5,-32,-7,-32,19r0,208r-48,0r0,-201","w":86},"\u01fa":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm94,-288v0,-21,19,-39,39,-39v20,0,38,18,38,39v0,21,-18,41,-38,40v-21,0,-39,-20,-39,-40xm147,-288v0,-8,-6,-17,-14,-16v-9,-1,-16,7,-15,16v0,7,7,15,15,15v8,0,14,-7,14,-15xm141,-404r57,0r-65,69r-34,0","w":266},"\u01fb":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm80,-258v0,-21,19,-39,39,-39v20,0,38,18,38,39v0,21,-18,41,-38,40v-21,0,-39,-20,-39,-40xm133,-258v0,-8,-6,-17,-14,-16v-9,-1,-16,7,-15,16v0,7,7,15,15,15v8,0,14,-7,14,-15xm127,-381r57,0r-65,69r-34,0","w":237},"\u01fc":{"d":"136,-259r169,0r0,49r-91,0r0,47r91,0r0,47r-91,0r0,68r91,0r0,48r-140,0r0,-53r-79,0r-25,53r-51,0xm165,-102r0,-113r-55,113r55,0xm203,-347r57,0r-65,69r-34,0","w":323},"\u01fd":{"d":"221,-81v3,46,75,58,101,25r40,19v-21,41,-103,57,-144,23r0,14r-44,0r0,-24v-49,63,-167,13,-158,-71v-8,-81,108,-138,158,-71r0,-25r44,0r0,14v68,-48,168,2,157,96r-154,0xm327,-119v-8,-46,-95,-48,-104,0r104,0xm175,-97v0,-31,-23,-56,-55,-56v-31,0,-55,25,-55,58v0,31,23,56,55,56v34,0,55,-25,55,-58xm204,-295r57,0r-65,69r-34,0","w":388},"\u01fe":{"d":"17,-129v0,-108,124,-174,213,-111r28,-33r22,18r-29,35v79,82,13,227,-99,227v-28,0,-52,-7,-74,-22r-31,35r-22,-19r30,-35v-21,-21,-38,-55,-38,-95xm198,-203v-56,-38,-131,7,-131,75v0,23,7,42,20,57xm109,-53v77,48,167,-52,110,-129xm160,-347r57,0r-65,69r-34,0","w":302},"\u01ff":{"d":"43,-30v-57,-62,-6,-166,75,-166v21,0,40,6,58,18r22,-25r22,20r-23,25v52,64,5,163,-79,163v-20,0,-37,-6,-53,-16r-23,26r-22,-19xm146,-144v-48,-27,-102,28,-72,79xm96,-45v47,22,92,-29,69,-77xm128,-295r57,0r-65,69r-34,0","w":237},"\u0384":{"d":"100,-288r-7,67r-35,0r-7,-67r49,0","w":151},"\u0385":{"d":"100,-288r-7,67r-35,0r-7,-67r49,0xm23,-266v13,0,23,10,23,22v0,12,-11,23,-23,23v-12,0,-23,-11,-23,-23v0,-12,10,-22,23,-22xm128,-266v13,0,23,10,23,22v0,12,-11,23,-23,23v-12,0,-23,-11,-23,-23v0,-12,10,-22,23,-22","w":151},"\u0386":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0xm67,-265r-7,67r-35,0r-7,-67r49,0","w":266},"\u0387":{"d":"50,-196v16,0,28,11,28,27v0,16,-12,28,-28,28v-16,0,-27,-12,-27,-28v0,-15,12,-27,27,-27","w":100},"\u0388":{"d":"59,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm32,-265r-7,67r-35,0r-7,-67r49,0","w":215},"\u0389":{"d":"58,-259r50,0r0,98r87,0r0,-98r50,0r0,259r-50,0r0,-113r-87,0r0,113r-50,0r0,-259xm32,-265r-7,67r-35,0r-7,-67r49,0","w":273},"\u038a":{"d":"55,-259r49,0r0,259r-49,0r0,-259xm32,-265r-7,67r-35,0r-7,-67r49,0","w":129},"\u038c":{"d":"30,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm249,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88xm32,-265r-7,67r-35,0r-7,-67r49,0","w":315},"\u038e":{"d":"41,-259r53,0r48,93r48,-93r52,0r-75,147r0,112r-50,0r0,-112xm32,-265r-7,67r-35,0r-7,-67r49,0","w":253},"\u038f":{"d":"167,-265v75,0,132,46,131,118v0,40,-19,72,-60,98r65,0r0,49r-119,0r0,-59v43,-22,65,-51,65,-88v1,-44,-35,-70,-82,-70v-47,0,-82,26,-82,70v0,37,22,66,65,88r0,59r-119,0r0,-49r65,0v-41,-26,-61,-58,-61,-98v0,-72,57,-118,132,-118xm32,-265r-7,67r-35,0r-7,-67r49,0","w":320},"\u0390":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm68,-288r-7,67r-35,0r-7,-67r49,0xm-9,-266v13,0,23,10,23,22v0,12,-11,23,-23,23v-12,0,-23,-11,-23,-23v0,-12,10,-22,23,-22xm96,-266v13,0,23,10,23,22v0,12,-11,23,-23,23v-12,0,-23,-11,-23,-23v0,-12,10,-22,23,-22","w":86},"\u0391":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0","w":266},"\u0392":{"d":"191,-75v0,49,-33,76,-89,75r-72,0r0,-259v75,-2,142,1,142,67v0,24,-10,38,-26,50v28,12,45,32,45,67xm125,-185v1,-23,-20,-29,-46,-27r0,55v26,1,46,-5,46,-28xm143,-77v0,-30,-27,-38,-64,-36r0,66v35,0,64,-1,64,-30","w":208},"\u0393":{"d":"29,-259r129,0r0,49r-80,0r0,210r-49,0r0,-259","w":166},"\u0394":{"d":"254,0r-241,0r0,-41r98,-218r44,0r99,218r0,41xm196,-48r-63,-142r-63,142r126,0","w":266},"\u0395":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259","w":187},"\u0396":{"d":"16,-259r156,0r-92,212r86,0r0,47r-158,0r92,-210r-84,0r0,-49","w":180},"\u0397":{"d":"29,-259r50,0r0,98r87,0r0,-98r50,0r0,259r-50,0r0,-113r-87,0r0,113r-50,0r0,-259","w":244},"\u0398":{"d":"152,-265v73,0,133,63,133,137v0,74,-60,135,-133,135v-74,0,-135,-62,-135,-136v0,-74,63,-136,135,-136xm151,-217v-49,0,-85,40,-85,89v0,49,39,87,86,87v47,0,84,-41,84,-88v0,-47,-38,-88,-85,-88xm105,-154r93,0r0,47r-93,0r0,-47","w":302},"\u0399":{"d":"26,-259r49,0r0,259r-49,0r0,-259","w":100},"\u039a":{"d":"30,-259r50,0r0,89r70,-89r59,0r-90,116r99,143r-59,0r-79,-115r0,115r-50,0r0,-259","w":223},"\u039b":{"d":"197,0r-72,-190r-72,190r-53,0r100,-259r50,0r99,259r-52,0","w":249},"\u039c":{"d":"54,-259r49,0r59,181r61,-181r48,0r43,259r-47,0r-28,-163r-55,163r-44,0r-54,-163r-28,163r-48,0","w":323},"\u039d":{"d":"30,-259r47,0r111,171r0,-171r49,0r0,259r-47,0r-111,-170r0,170r-49,0r0,-259","w":266},"\u039e":{"d":"171,-210r-152,0r0,-49r152,0r0,49xm171,-116r-152,0r0,-48r152,0r0,48xm171,0r-152,0r0,-48r152,0r0,48","w":190},"\u039f":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88","w":302},"\u03a0":{"d":"29,-259r187,0r0,259r-50,0r0,-213r-87,0r0,213r-50,0r0,-259","w":244},"\u03a1":{"d":"183,-184v-3,56,-35,77,-104,74r0,110r-50,0r0,-259v82,-3,158,-1,154,75xm135,-184v0,-26,-26,-26,-56,-26r0,52v30,1,56,2,56,-26","w":201},"\u03a3":{"d":"5,0r68,-129r-67,-130r158,0r0,49r-80,0r42,81r-43,81r83,0r0,48r-161,0","w":180},"\u03a4":{"d":"4,-259r143,0r0,49r-47,0r0,210r-50,0r0,-210r-46,0r0,-49","w":151},"\u03a5":{"d":"11,-259r53,0r48,93r48,-93r52,0r-75,147r0,112r-50,0r0,-112","w":223},"\u03a6":{"d":"296,-131v1,67,-48,104,-116,105r0,26r-50,0r0,-26v-67,-6,-115,-38,-116,-105v-1,-63,54,-102,116,-105r0,-23r50,0r0,23v64,4,115,41,116,105xm180,-191r0,120v44,-4,66,-24,66,-60v0,-36,-22,-56,-66,-60xm130,-191v-44,4,-66,24,-66,60v0,35,22,56,66,60r0,-120","w":309},"\u03a7":{"d":"13,-259r55,0r54,83r55,-83r55,0r-82,126r87,133r-55,0r-60,-91r-59,91r-56,0r88,-133","w":244},"\u03a8":{"d":"172,-110v68,-1,48,-83,51,-149r50,0r0,90v0,61,-34,96,-101,104r0,65r-49,0r0,-65v-67,-8,-100,-43,-100,-106r0,-88r49,0v4,63,-19,147,51,148r0,-148r49,0r0,149","w":295},"\u03a9":{"d":"154,-265v75,0,132,46,131,118v0,40,-19,72,-60,98r65,0r0,49r-119,0r0,-59v43,-22,65,-51,65,-88v1,-44,-35,-70,-82,-70v-47,0,-82,26,-82,70v0,37,22,66,65,88r0,59r-119,0r0,-49r65,0v-41,-26,-61,-58,-61,-98v0,-72,57,-118,132,-118","w":307},"\u03aa":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm-14,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm64,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":100},"\u03ab":{"d":"11,-259r53,0r48,93r48,-93r52,0r-75,147r0,112r-50,0r0,-112xm49,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm127,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":223},"\u03ac":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57xm143,-288r-7,67r-35,0r-7,-67r49,0","w":237},"\u03ad":{"d":"69,-59v3,30,43,25,64,5r22,37v-39,38,-142,28,-140,-37v0,-23,12,-39,36,-48v-53,-26,-21,-94,38,-94v20,0,38,7,55,20r-19,33v-21,-16,-48,-17,-52,8v-2,16,15,21,34,20r0,34v-21,-2,-40,3,-38,22xm103,-288r-7,67r-35,0r-7,-67r49,0","w":157},"\u03ae":{"d":"114,-152v-61,0,-37,92,-42,152r-48,0r0,-191r48,0r0,19v45,-44,122,-25,122,46r0,196r-48,0r0,-154v1,-39,1,-68,-32,-68xm133,-288r-7,67r-35,0r-7,-67r49,0"},"\u03af":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm68,-288r-7,67r-35,0r-7,-67r49,0","w":86},"\u03b0":{"d":"109,5v-64,-2,-91,-33,-90,-102r0,-94r48,0v5,58,-21,151,42,151v30,0,45,-17,45,-52v0,-28,-16,-50,-48,-65r26,-40v46,25,69,60,69,105v0,56,-34,98,-92,97xm133,-288r-7,67r-35,0r-7,-67r49,0xm56,-266v13,0,23,10,23,22v0,12,-11,23,-23,23v-12,0,-23,-11,-23,-23v0,-12,10,-22,23,-22xm161,-266v13,0,23,10,23,22v0,12,-11,23,-23,23v-12,0,-23,-11,-23,-23v0,-12,10,-22,23,-22"},"\u03b1":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57","w":237},"\u03b2":{"d":"208,-85v0,74,-86,118,-137,70r0,85r-48,0r0,-258v-1,-49,30,-82,79,-82v66,0,104,77,47,113v39,12,59,35,59,72xm115,-39v25,0,45,-16,45,-40v0,-31,-23,-47,-67,-47r0,-40v24,-4,36,-15,36,-34v0,-15,-10,-26,-25,-26v-50,0,-30,91,-33,141v-2,28,17,46,44,46","w":222},"\u03b3":{"d":"125,-20r0,90r-48,0r0,-90r-73,-171r49,0r48,113r48,-113r49,0","w":201},"\u03b4":{"d":"108,5v-49,0,-94,-39,-93,-86v0,-36,18,-62,55,-77v-55,-38,-15,-112,54,-112v15,0,34,3,55,8r-13,43v-36,-16,-99,-1,-64,33v7,4,18,10,34,16v43,17,65,46,65,86v1,50,-43,89,-93,89xm153,-84v0,-25,-21,-46,-45,-46v-24,0,-45,21,-45,46v0,25,21,46,45,46v24,0,45,-21,45,-46","w":215},"\u03b5":{"d":"69,-59v3,30,43,25,64,5r22,37v-39,38,-142,28,-140,-37v0,-23,12,-39,36,-48v-53,-26,-21,-94,38,-94v20,0,38,7,55,20r-19,33v-21,-16,-48,-17,-52,8v-2,16,15,21,34,20r0,34v-21,-2,-40,3,-38,22","w":157},"\u03b6":{"d":"160,-23v36,61,-25,122,-100,92r10,-42v15,7,57,10,54,-10v-3,-24,-56,-20,-67,-32v-26,-13,-44,-40,-44,-79v0,-64,40,-84,88,-126r-72,0r0,-45r138,0r0,40v-53,42,-97,65,-106,130v-7,56,82,44,99,72","w":171},"\u03b7":{"d":"114,-152v-61,0,-37,92,-42,152r-48,0r0,-191r48,0r0,19v45,-44,122,-25,122,46r0,196r-48,0r0,-154v1,-39,1,-68,-32,-68"},"\u03b8":{"d":"221,-133v0,80,-30,138,-104,138v-72,0,-102,-59,-102,-137v0,-76,32,-138,103,-138v73,0,103,58,103,137xm64,-155r107,0v-4,-47,-22,-70,-54,-70v-31,0,-48,23,-53,70xm171,-110r-107,0v5,47,22,70,53,70v31,0,49,-23,54,-70","w":235},"\u03b9":{"d":"19,-191r48,0r0,191r-48,0r0,-191","w":86},"\u03ba":{"d":"25,-191r48,0r0,79r70,-79r60,0r-82,92r92,99r-59,0r-81,-88r0,88r-48,0r0,-191","w":208},"\u03bb":{"d":"206,0r-49,0r-55,-120r-50,120r-49,0r73,-177r-41,-88r49,0","w":208},"\u03bc":{"d":"103,-39v61,0,37,-92,42,-152r48,0r0,191r-48,0r0,-20v-21,22,-52,32,-74,12r0,78r-48,0r0,-261r48,0v7,55,-22,152,32,152"},"\u03bd":{"d":"4,-191r49,0r48,113r48,-113r49,0r-82,191r-31,0","w":201},"\u03be":{"d":"160,-22v35,61,-27,120,-100,91r10,-42v21,12,70,4,49,-21v-4,-2,-16,-7,-33,-10v-87,-14,-96,-114,-29,-149v-21,-13,-30,-31,-30,-54v-2,-65,79,-73,138,-55r-13,43v-27,-7,-79,-14,-78,19v2,30,42,31,77,30r0,44v-44,-1,-90,-2,-90,40v0,47,84,37,99,64","w":171},"\u03bf":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56","w":230},"\u03c0":{"d":"232,-146r-31,0r0,146r-48,0r0,-146r-65,0r0,146r-48,0r0,-146r-29,0r0,-45r221,0r0,45","w":242},"\u03c1":{"d":"220,-96v0,82,-97,136,-152,74r0,92r-49,0r0,-165v-1,-54,44,-101,99,-101v54,0,102,45,102,100xm119,-151v-29,0,-52,24,-52,55v0,32,21,56,52,56v30,0,52,-25,52,-56v0,-32,-21,-56,-52,-55","w":234},"\u03c2":{"d":"37,-36v-53,-61,-6,-160,83,-160v37,0,71,19,86,43r-40,22v-31,-36,-103,-25,-103,29v0,73,122,40,122,116v0,55,-58,72,-112,55r11,-42v15,5,55,13,54,-10v0,-7,-8,-14,-26,-18v-35,-8,-61,-18,-75,-35","w":210},"\u03c3":{"d":"15,-95v0,-64,63,-118,131,-96r102,0r0,45r-48,0v45,60,-11,151,-86,151v-55,0,-99,-46,-99,-100xm167,-96v0,-32,-21,-55,-52,-55v-30,0,-52,24,-52,55v0,32,21,56,52,56v30,0,52,-26,52,-56","w":258},"\u03c4":{"d":"139,-146r-40,0r0,146r-48,0r0,-146r-40,0r0,-45r128,0r0,45","w":149},"\u03c5":{"d":"109,5v-64,-2,-91,-33,-90,-102r0,-94r48,0v5,58,-21,151,42,151v30,0,45,-17,45,-52v0,-28,-16,-50,-48,-65r26,-40v46,25,69,60,69,105v0,56,-34,98,-92,97"},"\u03c6":{"d":"119,-195v84,-8,153,23,153,99v0,57,-36,90,-106,100r0,66r-47,0r0,-66v-93,-3,-131,-88,-85,-156v12,-18,30,-32,53,-43r13,47v-57,26,-46,106,19,107r0,-154xm166,-151r0,110v38,-5,58,-23,58,-54v0,-34,-20,-54,-58,-56","w":286},"\u03c7":{"d":"193,-191r-67,123r75,138r-53,0r-48,-93r-47,93r-53,0r75,-137r-68,-124r53,0r41,79r40,-79r52,0","w":201},"\u03c8":{"d":"161,-42v65,-2,41,-86,46,-149r48,0r0,95v0,59,-31,93,-94,100r0,66r-48,0r0,-66v-63,-7,-94,-41,-94,-102r0,-93r48,0v4,60,-19,148,46,148r0,-148r48,0r0,149","w":274},"\u03c9":{"d":"294,-88v0,81,-98,126,-140,65v-43,61,-140,15,-140,-65v0,-66,47,-107,112,-109r3,46v-45,6,-67,26,-67,63v0,33,13,50,38,50v28,0,33,-36,31,-72r47,0v-2,36,3,72,31,72v25,0,37,-17,37,-50v0,-44,-25,-57,-67,-63r4,-46v65,2,111,44,111,109","w":308},"\u03ca":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm-21,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm57,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":86},"\u03cb":{"d":"109,5v-64,-2,-91,-33,-90,-102r0,-94r48,0v5,58,-21,151,42,151v30,0,45,-17,45,-52v0,-28,-16,-50,-48,-65r26,-40v46,25,69,60,69,105v0,56,-34,98,-92,97xm44,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm122,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25"},"\u03cc":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56xm140,-288r-7,67r-35,0r-7,-67r49,0","w":230},"\u03cd":{"d":"109,5v-64,-2,-91,-33,-90,-102r0,-94r48,0v5,58,-21,151,42,151v30,0,45,-17,45,-52v0,-28,-16,-50,-48,-65r26,-40v46,25,69,60,69,105v0,56,-34,98,-92,97xm133,-288r-7,67r-35,0r-7,-67r49,0"},"\u03ce":{"d":"294,-88v0,81,-98,126,-140,65v-43,61,-140,15,-140,-65v0,-66,47,-107,112,-109r3,46v-45,6,-67,26,-67,63v0,33,13,50,38,50v28,0,33,-36,31,-72r47,0v-2,36,3,72,31,72v25,0,37,-17,37,-50v0,-44,-25,-57,-67,-63r4,-46v65,2,111,44,111,109xm179,-288r-7,67r-35,0r-7,-67r49,0","w":308},"\u0401":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259xm36,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm114,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":187},"\u0402":{"d":"185,-73v0,-43,-39,-41,-85,-40r0,113r-50,0r0,-210r-46,0r0,-49r142,0r0,49r-46,0r0,49v82,-3,135,10,135,86v0,65,-45,98,-109,73r15,-41v26,10,45,1,44,-30","w":248},"\u0403":{"d":"29,-259r129,0r0,49r-80,0r0,210r-49,0r0,-259xm121,-347r57,0r-65,69r-34,0","w":166},"\u0404":{"d":"69,-105v16,72,117,86,164,27r33,35v-33,33,-58,48,-112,50v-80,2,-137,-59,-137,-137v0,-99,104,-164,199,-122v20,9,37,22,51,39r-34,33v-45,-63,-156,-38,-164,30r99,0r0,45r-99,0","w":280},"\u0405":{"d":"32,-162v-43,-57,29,-130,95,-94v12,6,24,17,38,33r-36,32v-13,-18,-26,-27,-39,-27v-11,0,-22,7,-22,17v17,48,102,68,102,134v0,62,-77,95,-128,60v-14,-9,-25,-24,-35,-43r42,-25v12,23,26,35,42,35v22,1,40,-23,24,-42v-15,-19,-78,-66,-83,-80","w":187},"\u0406":{"d":"26,-259r49,0r0,259r-49,0r0,-259","w":100},"\u0407":{"d":"26,-259r49,0r0,259r-49,0r0,-259xm-14,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm64,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":100},"\u0408":{"d":"78,-42v16,0,16,-13,16,-36r0,-181r49,0r0,172v16,104,-91,118,-136,56r35,-33v12,13,18,22,36,22","w":172},"\u0409":{"d":"344,-78v0,74,-66,83,-147,78r-72,-190r-72,190r-53,0r100,-259r50,0r41,98v86,-6,153,5,153,83xm232,-47v37,0,63,1,63,-33v0,-37,-47,-39,-90,-37","w":357},"\u040a":{"d":"328,-79v0,53,-32,79,-89,79r-73,0r0,-114r-87,0r0,114r-50,0r0,-259r50,0r0,98r87,0r0,-98r50,0r0,98v68,-4,112,25,112,82xm216,-47v36,0,63,0,63,-32v0,-29,-27,-38,-63,-35r0,67","w":341},"\u040b":{"d":"180,-66v3,-50,-31,-47,-80,-47r0,113r-50,0r0,-210r-46,0r0,-49r142,0r0,49r-46,0r0,49v84,-4,130,15,130,94r0,67r-50,0r0,-66","w":246},"\u040c":{"d":"29,-259r50,0r0,89r70,-89r59,0r-90,116r99,143r-59,0r-79,-115r0,115r-50,0r0,-259xm132,-347r57,0r-65,69r-34,0","w":223},"\u040e":{"d":"102,-59r-92,-200r56,0r60,145r50,-145r51,0r-69,185v-20,80,-100,108,-154,42r33,-32v20,26,48,30,65,5xm87,-328v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":230},"\u040f":{"d":"29,0r0,-259r50,0r0,215r87,0r0,-215r50,0r0,259r-71,0r0,39r-46,0r0,-39r-70,0","w":244},"\u0410":{"d":"108,-259r50,0r100,259r-51,0r-21,-53r-105,0r-21,53r-51,0xm134,-190r-35,89r69,0","w":266},"\u0411":{"d":"191,-79v3,83,-78,82,-162,79r0,-259r136,0r0,48r-86,0r0,50v69,-4,109,21,112,82xm79,-47v37,0,64,-1,64,-32v0,-28,-25,-40,-64,-38r0,70","w":204},"\u0412":{"d":"191,-75v0,49,-33,76,-89,75r-72,0r0,-259v75,-2,142,1,142,67v0,24,-10,38,-26,50v28,12,45,32,45,67xm125,-185v1,-23,-20,-29,-46,-27r0,55v26,1,46,-5,46,-28xm143,-77v0,-30,-27,-38,-64,-36r0,66v35,0,64,-1,64,-30","w":208},"\u0413":{"d":"29,-259r129,0r0,49r-80,0r0,210r-49,0r0,-259","w":166},"\u0414":{"d":"114,-259r49,0r83,213r29,0r0,85r-47,0r0,-39r-178,0r0,39r-48,0r0,-85r29,0xm139,-190r-57,144r113,0","w":277},"\u0415":{"d":"30,-259r141,0r0,49r-92,0r0,46r92,0r0,48r-92,0r0,68r92,0r0,48r-141,0r0,-259","w":187},"\u0416":{"d":"143,-115r-7,-7r-72,122r-59,0r96,-150r-87,-109r59,0r70,93r0,-93r50,0r0,93r70,-93r60,0r-87,109r95,150r-58,0r-73,-122r-7,7r0,115r-50,0r0,-115","w":336},"\u0417":{"d":"175,-73v0,64,-71,98,-129,71v-13,-6,-27,-19,-42,-38r38,-27v20,37,82,38,84,-9v0,-33,-24,-39,-64,-37r0,-44v52,14,69,-61,20,-63v-11,0,-22,5,-34,16r-29,-32v42,-51,144,-35,142,39v-1,29,-8,39,-32,55v30,13,46,36,46,69","w":192},"\u0418":{"d":"218,-259r0,259r-49,0r0,-162r-97,162r-43,0r0,-259r50,0r0,168r97,-168r42,0","w":247},"\u0419":{"d":"218,-259r0,259r-49,0r0,-162r-97,162r-43,0r0,-259r50,0r0,168r97,-168r42,0xm93,-328v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":247},"\u041a":{"d":"30,-259r50,0r0,89r70,-89r59,0r-90,116r99,143r-59,0r-79,-115r0,115r-50,0r0,-259","w":223},"\u041b":{"d":"197,0r-72,-190r-72,190r-53,0r100,-259r50,0r99,259r-52,0","w":249},"\u041c":{"d":"54,-259r49,0r59,181r61,-181r48,0r43,259r-47,0r-28,-163r-55,163r-44,0r-54,-163r-28,163r-48,0","w":323},"\u041d":{"d":"29,-259r50,0r0,98r87,0r0,-98r50,0r0,259r-50,0r0,-113r-87,0r0,113r-50,0r0,-259","w":244},"\u041e":{"d":"17,-129v2,-80,56,-134,135,-136v72,-2,133,63,133,137v0,74,-61,135,-133,135v-74,0,-137,-63,-135,-136xm236,-129v0,-48,-39,-88,-85,-88v-48,0,-85,40,-85,89v0,49,38,86,86,87v47,1,84,-40,84,-88","w":302},"\u041f":{"d":"29,-259r187,0r0,259r-50,0r0,-213r-87,0r0,213r-50,0r0,-259","w":244},"\u0420":{"d":"183,-184v-3,56,-35,77,-104,74r0,110r-50,0r0,-259v82,-3,158,-1,154,75xm135,-184v0,-26,-26,-26,-56,-26r0,52v30,1,56,2,56,-26","w":201},"\u0421":{"d":"17,-130v0,-133,179,-177,250,-83r-34,33v-52,-67,-167,-37,-167,50v0,93,122,115,167,52r33,35v-34,32,-57,49,-112,50v-78,1,-137,-57,-137,-137","w":280},"\u0422":{"d":"4,-259r143,0r0,49r-47,0r0,210r-50,0r0,-210r-46,0r0,-49","w":151},"\u0423":{"d":"102,-59r-92,-200r56,0r60,145r50,-145r51,0r-69,185v-20,80,-100,108,-154,42r33,-32v20,26,48,30,65,5","w":230},"\u0424":{"d":"8,-147v0,-58,34,-80,101,-78r0,-34r50,0r0,34v66,-3,106,22,104,77v-2,60,-37,80,-104,78r0,70r-50,0r0,-70v-62,1,-101,-20,-101,-77xm55,-147v0,31,23,34,54,33r0,-66v-32,-1,-54,3,-54,33xm216,-147v0,-30,-24,-34,-57,-33r0,66v34,2,57,-3,57,-33","w":271},"\u0425":{"d":"13,-259r55,0r54,83r55,-83r55,0r-82,126r87,133r-55,0r-60,-91r-59,91r-56,0r88,-133","w":244},"\u0426":{"d":"29,0r0,-259r50,0r0,215r87,0r0,-215r50,0r0,215r52,0r0,83r-46,0r0,-39r-193,0","w":270},"\u0427":{"d":"63,-259v2,51,-13,107,50,98r30,0r0,-98r49,0r0,259r-49,0r0,-113v-83,3,-132,-14,-130,-94r0,-52r50,0","w":221},"\u0428":{"d":"148,-44r0,-215r50,0r0,215r70,0r0,-215r50,0r0,259r-289,0r0,-259r50,0r0,215r69,0","w":347},"\u0429":{"d":"264,-44r0,-215r50,0r0,215r53,0r0,83r-46,0r0,-39r-296,0r0,-259r50,0r0,215r69,0r0,-215r50,0r0,215r70,0","w":368},"\u042a":{"d":"222,-79v0,50,-32,79,-90,79r-72,0r0,-212r-58,0r0,-47r107,0r0,98v68,-4,113,22,113,82xm109,-47v35,0,64,0,64,-33v0,-27,-26,-39,-64,-37r0,70","w":235},"\u042b":{"d":"227,-259r49,0r0,259r-49,0r0,-259xm191,-79v0,53,-32,79,-89,79r-73,0r0,-259r50,0r0,98v68,-4,112,21,112,82xm79,-47v37,0,63,1,63,-33v0,-27,-25,-39,-63,-37r0,70","w":304},"\u042c":{"d":"191,-79v0,53,-32,79,-89,79r-73,0r0,-259r50,0r0,98v68,-4,112,21,112,82xm79,-47v37,0,63,1,63,-33v0,-27,-25,-39,-63,-37r0,70","w":204},"\u042d":{"d":"212,-105v-16,72,-117,86,-164,27r-33,35v33,33,58,48,112,50v80,2,137,-59,137,-137v0,-99,-104,-164,-199,-122v-20,9,-37,22,-51,39r34,33v45,-63,156,-38,164,30r-99,0r0,45r99,0","w":280},"\u042e":{"d":"245,7v-67,0,-131,-52,-133,-120r-34,0r0,113r-49,0r0,-259r49,0r0,98r34,0v24,-65,62,-101,133,-104v71,-3,134,63,134,137v0,74,-62,136,-134,135xm245,-41v46,0,84,-41,84,-88v0,-46,-38,-89,-85,-88v-46,1,-84,40,-84,89v0,50,39,87,85,87","w":395},"\u042f":{"d":"22,-180v0,-81,72,-82,160,-79r0,259r-49,0r0,-104r-13,0r-52,104r-53,0r58,-112v-34,-10,-51,-32,-51,-68xm74,-181v-1,30,28,29,59,29r0,-58v-33,-1,-59,-1,-59,29","w":211},"\u0430":{"d":"15,-95v0,-83,98,-134,151,-75r0,-21r47,0r0,191r-47,0r0,-20v-53,58,-151,4,-151,-75xm168,-96v0,-33,-23,-55,-53,-56v-30,0,-52,25,-52,56v0,31,22,58,52,57v31,0,53,-24,53,-57","w":237},"\u0431":{"d":"118,5v-130,0,-140,-243,-24,-264v20,-4,86,-7,113,-10r0,45v-71,7,-151,-9,-150,78v32,-90,163,-44,163,48v0,57,-44,103,-102,103xm119,-40v31,0,52,-24,52,-56v0,-32,-22,-55,-52,-55v-29,-1,-52,25,-52,55v0,33,21,56,52,56","w":234},"\u0432":{"d":"176,-53v1,68,-85,51,-152,53r0,-191v62,1,143,-11,142,48v0,19,-9,33,-28,41v25,9,38,25,38,49xm115,-135v1,-22,-19,-25,-43,-23r0,42v21,1,43,-1,43,-19xm122,-56v1,-23,-23,-27,-50,-25r0,44v23,1,49,0,50,-19","w":192},"\u0433":{"d":"24,-191r112,0r0,45r-64,0r0,146r-48,0r0,-191","w":143},"\u0434":{"d":"49,0r0,33r-43,0r0,-74r29,0r66,-150r31,0r67,150r29,0r0,74r-46,0r0,-33r-133,0xm148,-41r-31,-80r-33,80r64,0","w":234},"\u0435":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0","w":230},"\u0436":{"d":"121,0v-2,-22,6,-54,-5,-68r-57,68r-64,0r87,-98r-86,-93r59,0r66,71r0,-71r48,0r0,71r66,-71r59,0r-86,93r87,98r-64,0r-57,-68v-11,13,-2,46,-5,68r-48,0","w":290},"\u0437":{"d":"94,-59v0,-17,-17,-24,-38,-22r0,-34v36,9,45,-38,12,-40v-8,0,-18,4,-30,12r-19,-33v38,-35,121,-24,120,33v0,17,-9,31,-27,41v67,25,31,107,-39,107v-26,0,-48,-7,-65,-22r27,-33v19,17,59,18,59,-9","w":162},"\u0438":{"d":"50,0r-26,0r0,-191r47,0r0,112r98,-112r23,0r0,191r-47,0r0,-110"},"\u0439":{"d":"50,0r-26,0r0,-191r47,0r0,112r98,-112r23,0r0,191r-47,0r0,-110xm77,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0"},"\u043a":{"d":"24,-191r48,0r0,71r66,-71r59,0r-85,93r86,98r-64,0r-57,-68v-11,13,-2,46,-5,68r-48,0r0,-191","w":193},"\u043b":{"d":"195,0r-49,0r-48,-121r-48,121r-49,0r82,-191r31,0","w":196},"\u043c":{"d":"141,-71r59,-120r32,0r47,191r-46,0r-26,-112r-57,112r-20,0r-55,-112r-26,112r-47,0r48,-191r32,0","w":281},"\u043d":{"d":"72,-122r72,0r0,-69r48,0r0,191r-48,0r0,-79r-72,0r0,79r-48,0r0,-191r48,0r0,69"},"\u043e":{"d":"15,-95v0,-54,45,-102,99,-101v59,1,102,42,102,100v0,58,-42,99,-102,101v-54,1,-99,-47,-99,-100xm167,-96v0,-31,-22,-56,-52,-55v-29,0,-52,24,-52,55v0,33,21,56,52,56v31,0,52,-25,52,-56","w":230},"\u043f":{"d":"72,0r-48,0r0,-191r168,0r0,191r-48,0r0,-145r-72,0r0,145"},"\u0440":{"d":"222,-95v7,79,-97,133,-150,75r0,90r-48,0r0,-261r48,0r0,21v52,-59,160,-8,150,75xm174,-96v0,-32,-22,-56,-52,-56v-30,1,-52,24,-52,56v0,32,22,56,52,57v30,1,52,-26,52,-57","w":237},"\u0441":{"d":"15,-95v-5,-101,146,-135,196,-58r-39,22v-31,-39,-109,-19,-109,37v0,56,79,73,109,33r37,26v-21,27,-49,40,-86,40v-63,0,-105,-44,-108,-100","w":230},"\u0442":{"d":"7,-191r178,0r0,45r-63,0r0,146r-48,0r0,-146r-67,0r0,-45","w":192},"\u0443":{"d":"3,-191r49,0r50,120r55,-120r49,0r-120,261r-50,0r40,-84","w":208},"\u0444":{"d":"349,-95v0,76,-84,132,-144,79r0,86r-47,0r0,-86v-60,54,-144,-2,-144,-79v0,-79,87,-132,144,-78r0,-92r47,0r0,92v56,-53,144,-5,144,78xm252,-39v28,0,49,-26,49,-57v0,-31,-20,-56,-50,-56v-28,0,-47,25,-47,58v0,31,19,55,48,55xm111,-38v29,-1,49,-24,48,-56v0,-34,-16,-55,-47,-57v-30,-2,-50,26,-50,56v0,30,20,58,49,57","w":362},"\u0445":{"d":"7,-191r56,0r37,52r38,-52r55,0r-65,90r73,101r-55,0r-46,-63r-45,63r-55,0r73,-101","w":201},"\u0446":{"d":"24,0r0,-191r48,0r0,145r72,0r0,-145r48,0r0,145r48,0r0,80r-45,0r0,-34r-171,0","w":242},"\u0447":{"d":"128,-76v-64,2,-122,-2,-120,-64r0,-51r49,0v1,35,-10,76,33,72r38,0r0,-72r48,0r0,191r-48,0r0,-76","w":200},"\u0448":{"d":"300,0r-276,0r0,-191r48,0r0,145r66,0r0,-145r48,0r0,145r66,0r0,-145r48,0r0,191","w":324},"\u0449":{"d":"300,-46r49,0r0,80r-46,0r0,-34r-279,0r0,-191r48,0r0,145r66,0r0,-145r48,0r0,145r66,0r0,-145r48,0r0,145","w":351},"\u044a":{"d":"197,-61v3,71,-75,62,-147,61r0,-149r-46,0r0,-42r94,0r0,69v60,-4,97,9,99,61xm98,-37v26,1,47,0,48,-22v2,-24,-23,-25,-48,-24r0,46","w":209},"\u044b":{"d":"171,-61v3,72,-76,61,-147,61r0,-191r48,0r0,69v60,-4,98,8,99,61xm72,-37v25,1,48,1,48,-22v0,-24,-23,-25,-48,-24r0,46xm204,-191r48,0r0,191r-48,0r0,-191","w":276},"\u044c":{"d":"171,-61v3,72,-76,61,-147,61r0,-191r48,0r0,69v60,-4,98,8,99,61xm72,-37v25,1,48,1,48,-22v0,-24,-23,-25,-48,-24r0,46","w":183},"\u044d":{"d":"210,-95v0,98,-140,135,-195,60r38,-26v26,34,93,31,106,-15r-64,0r0,-41r64,0v-18,-41,-74,-46,-106,-14r-40,-22v55,-79,197,-42,197,58","w":224},"\u044e":{"d":"195,5v-48,0,-89,-37,-97,-77r-26,0r0,72r-48,0r0,-191r48,0r0,76r26,0v9,-45,48,-80,97,-81v54,-1,101,45,101,100v0,55,-45,101,-101,101xm196,-40v31,0,52,-24,52,-56v0,-31,-22,-55,-52,-55v-30,0,-52,24,-52,55v0,33,21,56,52,56","w":311},"\u044f":{"d":"21,-130v1,-65,68,-64,142,-61r0,191r-48,0r0,-69r-9,0r-46,69r-56,0r53,-78v-19,-6,-37,-27,-36,-52xm115,-105r0,-46v-23,-2,-44,2,-44,23v0,19,20,25,44,23","w":187},"\u0451":{"d":"114,-196v63,1,107,45,102,114r-154,0v3,46,71,60,101,26r40,19v-18,26,-44,42,-86,42v-59,0,-102,-44,-102,-100v0,-56,44,-102,99,-101xm168,-120v-10,-45,-92,-48,-104,0r104,0xm51,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm129,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":230},"\u0452":{"d":"114,-152v-61,0,-37,91,-42,152r-48,0r0,-215r-27,0r0,-31r27,0r0,-19r48,0r0,19r61,0r0,31r-61,0r0,43v43,-45,126,-24,122,46v-5,88,30,235,-86,194r0,-38v22,11,43,4,39,-26v-7,-56,22,-156,-33,-156"},"\u0453":{"d":"24,-191r112,0r0,45r-64,0r0,146r-48,0r0,-191xm87,-296r57,0r-65,69r-34,0","w":143},"\u0454":{"d":"15,-95v0,98,140,135,195,60r-38,-26v-26,34,-93,31,-106,-15r64,0r0,-41r-64,0v18,-41,74,-46,106,-14r40,-22v-55,-79,-197,-42,-197,58","w":224},"\u0455":{"d":"16,-141v-2,-61,97,-72,125,-24r-29,30v-12,-12,-23,-18,-33,-18v-11,-1,-22,9,-15,19v30,21,81,31,81,79v0,68,-105,79,-136,27r30,-32v10,18,53,35,61,7v3,-11,-24,-24,-37,-30v-31,-16,-47,-35,-47,-58","w":158},"\u0456":{"d":"12,-239v-1,-16,15,-31,31,-31v16,0,31,14,31,31v0,17,-15,31,-31,31v-17,0,-30,-15,-31,-31xm19,-191r48,0r0,191r-48,0r0,-191","w":86},"\u0457":{"d":"19,-191r48,0r0,191r-48,0r0,-191xm-21,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm57,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":86},"\u0458":{"d":"16,-239v-1,-16,15,-31,31,-31v17,0,31,14,31,31v0,17,-15,31,-31,31v-17,0,-31,-14,-31,-31xm-15,30v20,10,38,6,38,-20r0,-201r48,0r0,197v5,59,-35,82,-86,62r0,-38","w":93},"\u0459":{"d":"268,-61v1,63,-57,63,-122,61r-48,-121r-48,121r-49,0r82,-191r31,0r28,69v66,-3,125,-1,126,61xm178,-37v24,1,38,-3,40,-22v2,-28,-32,-24,-59,-24","w":280},"\u045a":{"d":"291,-61v3,72,-76,61,-147,61r0,-79r-72,0r0,79r-48,0r0,-191r48,0r0,69r72,0r0,-69r48,0r0,69v62,-3,97,8,99,61xm192,-37v26,1,47,0,48,-22v2,-24,-23,-25,-48,-24r0,46","w":303},"\u045b":{"d":"113,-152v-60,0,-36,92,-41,152r-48,0r0,-215r-27,0r0,-31r27,0r0,-19r48,0r0,19r61,0r0,31r-61,0r0,43v43,-45,122,-24,122,46r0,126r-47,0v-7,-56,22,-152,-34,-152"},"\u045c":{"d":"24,-191r48,0r0,71r66,-71r59,0r-85,93r86,98r-64,0r-57,-68v-11,13,-2,46,-5,68r-48,0r0,-191xm125,-295r57,0r-65,69r-34,0","w":193},"\u045e":{"d":"3,-191r49,0r50,120r55,-120r49,0r-120,261r-50,0r40,-84xm75,-276v10,19,55,21,65,0r39,0v-1,55,-103,66,-132,26v-6,-8,-9,-16,-11,-26r39,0","w":208},"\u045f":{"d":"24,0r0,-191r48,0r0,145r72,0r0,-145r48,0r0,191r-62,0r0,34r-45,0r0,-34r-61,0"},"\u0490":{"d":"29,-259r88,0r0,-37r47,0r0,86r-86,0r0,210r-49,0r0,-259","w":172},"\u0491":{"d":"24,-191r77,0r0,-28r45,0r0,73r-74,0r0,146r-48,0r0,-191","w":154},"\u1e80":{"d":"10,-259r48,0r38,165r46,-165r41,0r47,165r36,-165r49,0r-58,259r-47,0r-48,-167r-47,167r-47,0xm154,-347r42,69r-34,0r-65,-69r57,0","w":323},"\u1e81":{"d":"3,-191r47,0r38,109r42,-109r29,0r40,107r39,-107r47,0r-70,191r-30,0r-41,-109r-42,109r-30,0xm135,-295r42,69r-34,0r-65,-69r57,0","w":287},"\u1e82":{"d":"10,-259r48,0r38,165r46,-165r41,0r47,165r36,-165r49,0r-58,259r-47,0r-48,-167r-47,167r-47,0xm171,-347r57,0r-65,69r-34,0","w":323},"\u1e83":{"d":"3,-191r47,0r38,109r42,-109r29,0r40,107r39,-107r47,0r-70,191r-30,0r-41,-109r-42,109r-30,0xm152,-295r57,0r-65,69r-34,0","w":287},"\u1e84":{"d":"10,-259r48,0r38,165r46,-165r41,0r47,165r36,-165r49,0r-58,259r-47,0r-48,-167r-47,167r-47,0xm98,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm176,-303v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":323},"\u1e85":{"d":"3,-191r47,0r38,109r42,-109r29,0r40,107r39,-107r47,0r-70,191r-30,0r-41,-109r-42,109r-30,0xm80,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25xm158,-251v0,-14,12,-26,25,-26v13,0,25,12,25,26v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25","w":287},"\u1ef2":{"d":"11,-259r53,0r48,93r48,-93r52,0r-75,147r0,112r-50,0r0,-112xm103,-347r42,69r-34,0r-65,-69r57,0","w":223},"\u1ef3":{"d":"3,-191r49,0r50,120r55,-120r49,0r-120,261r-50,0r40,-84xm96,-295r42,69r-34,0r-65,-69r57,0","w":208},"\u2015":{"d":"-2,-82r0,-43r274,0r0,43r-274,0","w":270},"\u201b":{"d":"74,-265r-45,0v-2,45,4,73,25,99r18,-14v-9,-12,-12,-18,-16,-35r18,0r0,-50","w":100},"\u203e":{"d":"-7,-329r216,0r0,13r-216,0r0,-13","w":201},"\u20a4":{"d":"128,-193v-3,-38,-51,-33,-50,1v0,5,2,12,6,23r64,0r0,31r-53,0v1,4,2,9,4,17r49,0r0,31r-45,0v-1,13,-5,28,-12,45v23,3,50,14,56,-14r45,0v-1,35,-32,68,-68,66v-31,-2,-72,-14,-99,-1r-16,-42v10,-4,19,-7,28,-8v10,-17,15,-32,16,-46r-44,0r0,-31r41,0v-1,-3,-4,-9,-7,-17r-34,0r0,-31r23,0v-28,-76,68,-125,124,-77v15,13,22,30,22,53r-50,0","w":201},"\u2116":{"d":"29,-259r47,0r111,171r0,-171r50,0r0,259r-48,0r-110,-170r0,170r-50,0r0,-259xm324,-177v33,0,62,28,62,61v0,33,-29,62,-62,62v-33,0,-61,-29,-61,-62v0,-33,28,-61,61,-61xm324,-86v15,0,30,-15,30,-30v0,-15,-14,-29,-30,-29v-16,0,-30,14,-30,29v0,16,14,30,30,30xm263,-31r123,0r0,31r-123,0r0,-31","w":399},"\u212e":{"d":"16,-93v0,-86,99,-132,157,-75v18,17,28,42,29,75r-146,0r0,65v37,35,99,25,122,-22r13,7v-23,32,-40,48,-82,49v-55,2,-93,-44,-93,-99xm161,-106r0,-53v-28,-28,-79,-28,-105,1r0,52r105,0"},"\u215b":{"d":"77,7r110,-272r30,0r-110,272r-30,0xm36,-262r47,0r0,133r-33,0r0,-105r-34,0xm240,-136v38,0,66,39,34,64v41,23,17,81,-33,75v-50,6,-77,-51,-35,-75v-31,-24,-5,-64,34,-64xm240,-83v9,0,16,-6,16,-14v0,-8,-5,-12,-16,-12v-8,1,-15,4,-15,12v0,8,6,14,15,14xm218,-40v0,10,10,16,22,16v15,0,22,-6,22,-16v0,-11,-10,-17,-21,-17v-10,0,-23,6,-23,17","w":302},"\u215c":{"d":"49,-212v30,4,35,-26,13,-26v-8,0,-14,5,-18,13r-32,0v1,-51,92,-52,96,-5v0,11,-5,20,-16,26v47,20,17,78,-32,78v-29,0,-53,-18,-53,-46r32,0v0,26,43,24,44,3v0,-12,-11,-18,-34,-18r0,-25xm81,7r110,-272r30,0r-110,272r-30,0xm241,-136v39,-3,63,40,33,64v41,23,17,81,-33,75v-52,6,-75,-51,-35,-75v-30,-25,-4,-69,35,-64xm240,-83v9,0,16,-6,16,-14v0,-8,-5,-12,-16,-12v-8,1,-15,4,-15,12v-1,8,7,14,15,14xm218,-40v0,10,10,16,22,16v15,0,23,-6,23,-16v-1,-22,-44,-22,-45,0","w":302},"\u215d":{"d":"81,7r110,-272r30,0r-110,272r-30,0xm81,-171v0,-18,-24,-24,-37,-11r-27,-5r19,-75r75,0r0,27r-50,0r-5,19v32,-3,58,15,58,44v2,55,-99,62,-109,9r34,0v8,15,43,13,42,-8xm240,-136v38,0,66,39,34,64v41,23,17,81,-33,75v-50,6,-77,-51,-35,-75v-31,-24,-5,-64,34,-64xm240,-83v9,0,16,-6,16,-14v0,-8,-6,-12,-17,-12v-8,1,-14,4,-14,12v0,8,6,14,15,14xm218,-40v0,10,10,16,22,16v15,0,22,-6,22,-16v0,-11,-10,-17,-21,-17v-10,0,-23,6,-23,17","w":302},"\u215e":{"d":"70,7r110,-272r30,0r-110,272r-30,0xm13,-262r104,0r0,14r-70,122r-26,-14r55,-95r-63,0r0,-27xm240,-136v38,0,66,39,34,64v41,23,17,81,-33,75v-53,6,-75,-51,-35,-75v-31,-24,-5,-64,34,-64xm240,-83v9,0,16,-6,16,-14v0,-8,-6,-12,-17,-12v-8,1,-14,4,-14,12v0,8,6,14,15,14xm218,-40v0,10,10,16,22,16v15,0,22,-6,22,-16v0,-11,-10,-17,-21,-17v-10,0,-23,6,-23,17","w":302},"\u2302":{"d":"27,0r0,-111r81,-92r81,92r0,111r-162,0xm41,-14r134,0r0,-91r-67,-76r-67,76r0,91"},"\u2310":{"d":"196,-189r0,44r-132,0r0,75r-44,0r0,-119r176,0"},"\u2320":{"d":"130,-287v-12,2,-9,10,-9,31r0,347r-26,0r0,-319v-1,-40,18,-74,52,-77v26,-2,32,33,8,35v-14,1,-15,-15,-25,-17"},"\u2321":{"d":"86,72v12,-2,9,-10,9,-31r0,-346r26,0r0,318v1,41,-18,75,-52,78v-25,2,-33,-33,-9,-36v13,-1,17,15,26,17"},"\u2500":{"d":"260,-94r-263,0r0,-31r263,0r0,31","w":256},"\u2502":{"d":"79,109r0,-437r31,0r0,437r-31,0","w":223},"\u250c":{"d":"260,-125r0,31r-116,0r0,203r-31,0r0,-234r147,0","w":256},"\u2510":{"d":"113,-94r-116,0r0,-31r147,0r0,234r-31,0r0,-203","w":256},"\u2514":{"d":"113,-94r0,-234r31,0r0,203r116,0r0,31r-147,0","w":256},"\u2518":{"d":"144,-94r-147,0r0,-31r116,0r0,-203r31,0r0,234","w":256},"\u251c":{"d":"113,109r0,-437r31,0r0,203r116,0r0,31r-116,0r0,203r-31,0","w":256},"\u2524":{"d":"113,109r0,-203r-116,0r0,-31r116,0r0,-203r31,0r0,437r-31,0","w":256},"\u252c":{"d":"113,-94r-116,0r0,-31r263,0r0,31r-116,0r0,203r-31,0r0,-203","w":256},"\u2534":{"d":"260,-94r-263,0r0,-31r116,0r0,-203r31,0r0,203r116,0r0,31","w":256},"\u253c":{"d":"113,-94r-116,0r0,-31r116,0r0,-203r31,0r0,203r116,0r0,31r-116,0r0,203r-31,0r0,-203","w":256},"\u2550":{"d":"260,-127r-263,0r0,-31r263,0r0,31xm260,-60r-263,0r0,-31r263,0r0,31","w":256},"\u2551":{"d":"146,109r0,-437r31,0r0,437r-31,0xm80,109r0,-437r30,0r0,437r-30,0","w":256},"\u2552":{"d":"113,109r0,-267r147,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0","w":256},"\u2553":{"d":"80,109r0,-234r180,0r0,31r-83,0r0,203r-31,0r0,-200r-36,0r0,200r-30,0","w":256},"\u2554":{"d":"110,109r-30,0r0,-267r180,0r0,31r-150,0r0,236xm177,-60r0,169r-31,0r0,-200r114,0r0,31r-83,0","w":256},"\u2555":{"d":"113,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r147,0r0,267r-31,0r0,-169","w":256},"\u2556":{"d":"79,109r0,-203r-82,0r0,-31r180,0r0,234r-31,0r0,-203r-36,0r0,203r-31,0","w":256},"\u2557":{"d":"146,109r0,-236r-149,0r0,-31r180,0r0,267r-31,0xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169","w":256},"\u2558":{"d":"113,-60r0,-268r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-147,0","w":256},"\u2559":{"d":"260,-94r-180,0r0,-234r30,0r0,203r36,0r0,-203r31,0r0,203r83,0r0,31","w":256},"\u255a":{"d":"110,-328r0,237r150,0r0,31r-180,0r0,-268r30,0xm177,-158r83,0r0,31r-114,0r0,-201r31,0r0,170","w":256},"\u255b":{"d":"144,-60r-147,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,268","w":256},"\u255c":{"d":"177,-94r-180,0r0,-31r82,0r0,-203r31,0r0,203r36,0r0,-203r31,0r0,234","w":256},"\u255d":{"d":"146,-328r31,0r0,268r-180,0r0,-31r149,0r0,-237xm79,-158r0,-170r31,0r0,201r-113,0r0,-31r82,0","w":256},"\u255e":{"d":"113,109r0,-437r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0","w":256},"\u255f":{"d":"146,109r0,-437r31,0r0,203r83,0r0,31r-83,0r0,203r-31,0xm80,109r0,-437r30,0r0,437r-30,0","w":256},"\u2560":{"d":"80,109r0,-437r30,0r0,437r-30,0xm146,-127r0,-201r31,0r0,170r83,0r0,31r-114,0xm146,109r0,-200r114,0r0,31r-83,0r0,169r-31,0","w":256},"\u2561":{"d":"113,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,437r-31,0r0,-169","w":256},"\u2562":{"d":"79,109r0,-203r-82,0r0,-31r82,0r0,-203r31,0r0,437r-31,0xm146,109r0,-437r31,0r0,437r-31,0","w":256},"\u2563":{"d":"146,109r0,-437r31,0r0,437r-31,0xm110,-328r0,201r-113,0r0,-31r82,0r0,-170r31,0xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169","w":256},"\u2564":{"d":"260,-127r-263,0r0,-31r263,0r0,31xm113,-60r-116,0r0,-31r263,0r0,31r-116,0r0,169r-31,0r0,-169","w":256},"\u2565":{"d":"79,109r0,-203r-82,0r0,-31r263,0r0,31r-83,0r0,203r-31,0r0,-200r-36,0r0,200r-31,0","w":256},"\u2566":{"d":"260,-127r-263,0r0,-31r263,0r0,31xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169xm146,109r0,-200r114,0r0,31r-83,0r0,169r-31,0","w":256},"\u2567":{"d":"260,-127r-263,0r0,-31r116,0r0,-170r31,0r0,170r116,0r0,31xm260,-60r-263,0r0,-31r263,0r0,31","w":256},"\u2568":{"d":"260,-94r-263,0r0,-31r82,0r0,-203r31,0r0,203r36,0r0,-203r31,0r0,203r83,0r0,31","w":256},"\u2569":{"d":"110,-127r-113,0r0,-31r82,0r0,-170r31,0r0,201xm260,-127r-114,0r0,-201r31,0r0,170r83,0r0,31xm260,-60r-263,0r0,-31r263,0r0,31","w":256},"\u256a":{"d":"113,-60r-116,0r0,-31r116,0r0,-36r-116,0r0,-31r116,0r0,-170r31,0r0,170r116,0r0,31r-116,0r0,36r116,0r0,31r-116,0r0,169r-31,0r0,-169","w":256},"\u256b":{"d":"79,109r0,-203r-82,0r0,-31r82,0r0,-203r31,0r0,203r36,0r0,-203r31,0r0,203r83,0r0,31r-83,0r0,203r-31,0r0,-203r-36,0r0,203r-31,0","w":256},"\u256c":{"d":"177,-158r83,0r0,31r-114,0r0,-201r31,0r0,170xm79,-158r0,-170r31,0r0,201r-113,0r0,-31r82,0xm79,-60r-82,0r0,-31r113,0r0,200r-31,0r0,-169xm177,-60r0,169r-31,0r0,-200r114,0r0,31r-83,0","w":256},"\u2580":{"d":"260,-109r-263,0r0,-219r263,0r0,219","w":256},"\u2584":{"d":"260,109r-263,0r0,-218r263,0r0,218","w":256},"\u2588":{"d":"-3,109r0,-437r263,0r0,437r-263,0","w":256},"\u258c":{"d":"-3,109r0,-437r131,0r0,437r-131,0","w":256},"\u2590":{"d":"128,109r0,-437r132,0r0,437r-132,0","w":256},"\u2591":{"d":"19,-328r22,0r0,22r-22,0r0,-22xm106,-328r22,0r0,22r-22,0r0,-22xm194,-328r22,0r0,22r-22,0r0,-22xm63,-284r22,0r0,22r-22,0r0,-22xm150,-284r22,0r0,22r-22,0r0,-22xm238,-284r22,0r0,22r-22,0r0,-22xm194,-240r22,0r0,22r-22,0r0,-22xm106,-240r22,0r0,22r-22,0r0,-22xm19,-240r22,0r0,22r-22,0r0,-22xm238,-196r22,0r0,22r-22,0r0,-22xm150,-196r22,0r0,22r-22,0r0,-22xm63,-196r22,0r0,22r-22,0r0,-22xm19,-152r22,0r0,22r-22,0r0,-22xm106,-152r22,0r0,22r-22,0r0,-22xm194,-152r22,0r0,22r-22,0r0,-22xm238,-109r22,0r0,22r-22,0r0,-22xm150,-109r22,0r0,22r-22,0r0,-22xm63,-109r22,0r0,22r-22,0r0,-22xm19,-65r22,0r0,22r-22,0r0,-22xm106,-65r22,0r0,22r-22,0r0,-22xm194,-65r22,0r0,22r-22,0r0,-22xm63,-21r22,0r0,22r-22,0r0,-22xm150,-21r22,0r0,22r-22,0r0,-22xm238,-21r22,0r0,22r-22,0r0,-22xm194,23r22,0r0,22r-22,0r0,-22xm106,23r22,0r0,22r-22,0r0,-22xm19,23r22,0r0,22r-22,0r0,-22xm63,67r22,0r0,22r-22,0r0,-22xm150,67r22,0r0,22r-22,0r0,-22xm238,67r22,0r0,22r-22,0r0,-22","w":256},"\u2592":{"d":"19,-328r22,0r0,22r-22,0r0,-22xm63,-328r21,0r0,22r-21,0r0,-22xm106,-328r22,0r0,22r-22,0r0,-22xm150,-328r22,0r0,22r-22,0r0,-22xm194,-328r22,0r0,22r-22,0r0,-22xm238,-328r22,0r0,22r-22,0r0,-22xm-3,-284r22,0r0,22r-22,0r0,-22xm41,-284r22,0r0,22r-22,0r0,-22xm84,-284r22,0r0,22r-22,0r0,-22xm128,-284r22,0r0,22r-22,0r0,-22xm172,-284r22,0r0,22r-22,0r0,-22xm216,-284r22,0r0,22r-22,0r0,-22xm19,-240r22,0r0,22r-22,0r0,-22xm63,-240r21,0r0,22r-21,0r0,-22xm106,-240r22,0r0,22r-22,0r0,-22xm150,-240r22,0r0,22r-22,0r0,-22xm194,-240r22,0r0,22r-22,0r0,-22xm238,-240r22,0r0,22r-22,0r0,-22xm-3,-196r22,0r0,22r-22,0r0,-22xm41,-196r22,0r0,22r-22,0r0,-22xm84,-196r22,0r0,22r-22,0r0,-22xm128,-196r22,0r0,22r-22,0r0,-22xm172,-196r22,0r0,22r-22,0r0,-22xm216,-196r22,0r0,22r-22,0r0,-22xm19,-152r22,0r0,22r-22,0r0,-22xm63,-152r21,0r0,22r-21,0r0,-22xm106,-152r22,0r0,22r-22,0r0,-22xm150,-152r22,0r0,22r-22,0r0,-22xm194,-152r22,0r0,22r-22,0r0,-22xm238,-152r22,0r0,22r-22,0r0,-22xm-3,-109r22,0r0,22r-22,0r0,-22xm84,-109r22,0r0,22r-22,0r0,-22xm128,-109r22,0r0,22r-22,0r0,-22xm172,-109r22,0r0,22r-22,0r0,-22xm216,-109r22,0r0,22r-22,0r0,-22xm41,-109r22,0r0,22r-22,0r0,-22xm238,-65r22,0r0,22r-22,0r0,-22xm194,-65r22,0r0,22r-22,0r0,-22xm150,-65r22,0r0,22r-22,0r0,-22xm106,-65r22,0r0,22r-22,0r0,-22xm63,-65r21,0r0,22r-21,0r0,-22xm19,-65r22,0r0,22r-22,0r0,-22xm-3,-21r22,0r0,22r-22,0r0,-22xm41,-21r22,0r0,22r-22,0r0,-22xm84,-21r22,0r0,22r-22,0r0,-22xm128,-21r22,0r0,22r-22,0r0,-22xm172,-21r22,0r0,22r-22,0r0,-22xm216,-21r22,0r0,22r-22,0r0,-22xm238,23r22,0r0,22r-22,0r0,-22xm194,23r22,0r0,22r-22,0r0,-22xm150,23r22,0r0,22r-22,0r0,-22xm106,23r22,0r0,22r-22,0r0,-22xm63,23r21,0r0,22r-21,0r0,-22xm19,23r22,0r0,22r-22,0r0,-22xm-3,67r22,0r0,22r-22,0r0,-22xm41,67r22,0r0,22r-22,0r0,-22xm84,67r22,0r0,22r-22,0r0,-22xm128,67r22,0r0,22r-22,0r0,-22xm172,67r22,0r0,22r-22,0r0,-22xm216,67r22,0r0,22r-22,0r0,-22","w":256},"\u2593":{"d":"263,-262r0,66r-22,0r0,22r22,0r0,65r-22,0r0,22r22,0r0,66r-22,0r0,22r22,0r0,66r-22,0r0,22r22,0r0,21r-263,0r0,-65r22,0r0,-22r-22,0r0,-66r22,0r0,-22r-22,0r0,-65r22,0r0,-22r-22,0r0,-66r22,0r0,-22r-22,0r0,-66r22,0r0,-22r22,0r0,22r22,0r0,-22r22,0r0,22r22,0r0,-22r21,0r0,22r22,0r0,-22r22,0r0,22r22,0r0,-22r22,0r0,22r22,0r0,-22r22,0r0,44r-22,0r0,22r22,0xm22,-284r0,22r22,0r0,-22r-22,0xm66,-284r0,22r22,0r0,-22r-22,0xm110,-284r0,22r21,0r0,-22r-21,0xm153,-284r0,22r22,0r0,-22r-22,0xm197,-284r0,22r22,0r0,-22r-22,0xm241,-240r-22,0r0,22r22,0r0,-22xm197,-240r-22,0r0,22r22,0r0,-22xm153,-240r-22,0r0,22r22,0r0,-22xm110,-240r-22,0r0,22r22,0r0,-22xm66,-240r-22,0r0,22r22,0r0,-22xm22,-196r0,22r22,0r0,-22r-22,0xm66,-196r0,22r22,0r0,-22r-22,0xm110,-196r0,22r21,0r0,-22r-21,0xm153,-196r0,22r22,0r0,-22r-22,0xm197,-196r0,22r22,0r0,-22r-22,0xm66,-152r-22,0r0,22r22,0r0,-22xm88,-152r0,22r22,0r0,-22r-22,0xm131,-152r0,22r22,0r0,-22r-22,0xm175,-152r0,22r22,0r0,-22r-22,0xm219,-152r0,22r22,0r0,-22r-22,0xm22,-109r0,22r22,0r0,-22r-22,0xm110,-109r0,22r21,0r0,-22r-21,0xm88,-87r0,-22r-22,0r0,22r22,0xm153,-109r0,22r22,0r0,-22r-22,0xm197,-109r0,22r22,0r0,-22r-22,0xm241,-43r0,-22r-22,0r0,22r22,0xm197,-43r0,-22r-22,0r0,22r22,0xm153,-43r0,-22r-22,0r0,22r22,0xm110,-43r0,-22r-22,0r0,22r22,0xm66,-43r0,-22r-22,0r0,22r22,0xm22,-21r0,22r22,0r0,-22r-22,0xm66,-21r0,22r22,0r0,-22r-22,0xm110,-21r0,22r21,0r0,-22r-21,0xm153,-21r0,22r22,0r0,-22r-22,0xm197,-21r0,22r22,0r0,-22r-22,0xm241,45r0,-22r-22,0r0,22r22,0xm197,45r0,-22r-22,0r0,22r22,0xm153,45r0,-22r-22,0r0,22r22,0xm110,45r0,-22r-22,0r0,22r22,0xm66,45r0,-22r-22,0r0,22r22,0xm22,67r0,22r22,0r0,-22r-22,0xm66,67r0,22r22,0r0,-22r-22,0xm110,67r0,22r21,0r0,-22r-21,0xm153,67r0,22r22,0r0,-22r-22,0xm197,67r0,22r22,0r0,-22r-22,0","w":262},"\u25a0":{"d":"26,-166r166,0r0,166r-166,0r0,-166","w":217},"\u25ac":{"d":"0,-124r360,0r0,68r-360,0r0,-68","w":360},"\u25b2":{"d":"53,0r125,-249r125,249r-250,0","w":356},"\u25ba":{"d":"51,-249r255,127r-255,127r0,-254","w":356},"\u25bc":{"d":"303,-244r-125,249r-125,-249r250,0","w":356},"\u25c4":{"d":"306,-249r0,254r-255,-127","w":356},"\u25cb":{"d":"108,-179v41,0,77,35,77,77v0,42,-36,78,-77,78v-41,0,-77,-36,-77,-78v0,-42,36,-77,77,-77xm108,-37v34,0,64,-31,64,-65v0,-34,-30,-64,-64,-64v-34,0,-64,31,-64,64v0,33,30,65,64,65"},"\u25d8":{"d":"22,0r0,-172r172,0r0,172r-172,0xm108,-51v19,0,35,-16,35,-35v0,-19,-16,-36,-35,-36v-19,0,-36,17,-36,36v0,19,17,35,36,35"},"\u25d9":{"d":"7,0r0,-203r203,0r0,203r-203,0xm108,-24v41,0,78,-36,78,-77v0,-41,-37,-78,-78,-78v-41,0,-77,36,-77,78v0,42,36,77,77,77xm108,-166v34,0,64,30,64,65v0,34,-30,64,-64,64v-34,0,-64,-30,-64,-64v0,-34,30,-65,64,-65"},"\u263a":{"d":"184,-203v60,0,112,52,112,112v0,60,-52,112,-112,112v-60,0,-112,-52,-112,-112v0,-60,52,-112,112,-112xm184,5v50,0,96,-46,96,-96v0,-50,-45,-96,-96,-96v-51,0,-96,45,-96,96v0,51,46,96,96,96xm141,-128v7,0,14,7,14,14v0,7,-7,14,-14,14v-7,0,-14,-7,-14,-14v0,-7,7,-14,14,-14xm227,-128v7,0,14,7,14,14v0,7,-7,14,-14,14v-7,0,-14,-7,-14,-14v0,-7,7,-14,14,-14xm132,-55r11,-6v16,33,66,34,81,0r12,6v-22,46,-82,45,-104,0","w":367},"\u263b":{"d":"189,-203v60,0,112,51,112,112v0,61,-52,112,-112,112v-60,0,-112,-52,-112,-112v0,-60,52,-112,112,-112xm146,-100v8,0,15,-6,15,-14v0,-8,-7,-14,-15,-14v-7,0,-14,7,-14,14v0,7,7,14,14,14xm232,-100v8,0,15,-7,15,-14v0,-7,-7,-14,-15,-14v-7,-1,-14,7,-14,14v0,7,7,15,14,14xm138,-55v21,46,81,45,103,0r-11,-6v-16,33,-66,34,-81,0","w":378},"\u263c":{"d":"159,-285r13,0r0,59v22,1,42,9,61,25r51,-50r9,9r-50,51v16,21,25,42,25,63r59,0r0,12r-59,0v-2,22,-10,42,-25,61r50,51r-10,9r-50,-49v-20,15,-40,22,-61,24r0,59r-13,0r0,-59v-24,-3,-44,-11,-61,-24r-52,49r-9,-9r50,-51v-15,-18,-23,-39,-25,-62r-59,0r0,-12r59,0v2,-23,10,-43,25,-61r-50,-51r9,-10r51,50v21,-15,42,-24,62,-25r0,-59xm165,-33v48,0,90,-42,90,-90v0,-48,-42,-90,-90,-90v-48,0,-90,42,-90,90v0,48,42,90,90,90","w":330},"\u2640":{"d":"183,-168v0,45,-36,81,-79,83r0,65r73,0r0,9r-73,0r0,70r-10,0r0,-70r-73,0r0,-9r73,0r0,-65v-42,-2,-78,-37,-78,-83v0,-45,38,-84,83,-84v45,0,84,39,84,84xm99,-93v40,0,75,-35,75,-75v0,-40,-35,-75,-75,-75v-40,0,-75,35,-75,75v0,40,35,75,75,75","w":198},"\u2642":{"d":"96,-191v49,-16,53,-20,99,-50r5,2v4,42,13,78,28,108r-4,3v-17,-22,-30,-46,-39,-73r-52,111v24,9,51,42,51,76v0,44,-38,74,-81,74v-46,0,-85,-37,-85,-81v0,-52,53,-94,107,-72r51,-112v-25,11,-52,16,-80,18r0,-4xm162,-21v0,-38,-33,-70,-69,-70v-36,-1,-68,32,-68,67v-1,38,32,70,69,70v37,0,68,-31,68,-67","w":240},"\u2660":{"d":"95,-82v-15,46,-81,43,-84,-5v0,-18,11,-36,33,-54v31,-25,48,-50,52,-75v5,54,79,73,85,128v2,21,-18,41,-38,40v-18,0,-33,-12,-45,-34v-1,51,22,72,67,75r1,7r-140,0r2,-7v44,0,69,-29,67,-75","w":191},"\u2663":{"d":"179,-48v-28,-2,-44,-17,-58,-42v2,55,22,76,71,84r2,6r-149,0r1,-6v50,-7,70,-31,71,-84v-10,24,-30,41,-58,42v-25,1,-48,-22,-48,-49v0,-37,36,-64,71,-40v-27,-33,-4,-79,36,-79v41,-1,66,48,37,79v36,-23,71,2,72,39v1,27,-21,51,-48,50","w":238},"\u2665":{"d":"107,-172v4,-56,97,-57,95,0v-1,36,-14,47,-37,78v-32,43,-53,75,-58,98v-12,-52,-61,-94,-90,-146v-18,-34,3,-74,39,-74v24,0,41,15,51,44","w":212},"\u2666":{"d":"91,-216v23,38,50,74,81,110v-16,15,-70,86,-81,110v-12,-22,-38,-59,-80,-110v38,-45,64,-81,80,-110","w":182},"\u266a":{"d":"5,25v0,-65,101,-89,163,-54r-5,-241r10,0v25,14,96,77,100,105v0,4,-6,12,-10,12v-23,-15,-61,-60,-88,-74r4,242v0,80,-174,94,-174,10","w":277},"\u266b":{"d":"53,33v0,-43,53,-65,93,-42r0,-201r164,-51r0,228v2,48,-21,67,-63,69v-31,1,-49,-18,-50,-46v0,-43,52,-65,93,-42r0,-149r-123,38r0,172v1,45,-22,69,-65,70v-28,0,-49,-18,-49,-46","w":360},"\uf005":{"d":"98,44v0,34,-46,43,-80,28r7,-23v15,5,38,5,38,-9v0,-11,-15,-11,-28,-10r5,-16v31,-5,58,5,58,30","w":119},"\u20ac":{"d":"27,-169v18,-64,87,-111,168,-91r-11,47v-47,-17,-89,12,-105,44r95,0r-7,29r-96,0v-1,10,-1,12,0,22r91,0r-7,29r-76,0v15,38,68,60,116,41r0,50v-80,20,-153,-26,-168,-91r-25,0r7,-29r13,0r0,-22r-20,0r7,-29r18,0","w":201}}});;function convertEntities(b){var d,a;d=function(c){if(/&[^;]+;/.test(c)){var f=document.createElement("div");f.innerHTML=c;return!f.firstChild?c:f.firstChild.nodeValue}return c};if(typeof b==="string"){return d(b)}else{if(typeof b==="object"){for(a in b){if(typeof b[a]==="string"){b[a]=d(b[a])}}}}return b};;
/*
 * jQuery JavaScript Library v1.6.1
 * http://jquery.com/
 *
 * Copyright 2011, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 * Copyright 2011, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Thu May 12 15:04:36 2011 -0400
 */
(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!cj[a]){var b=f("<"+a+">").appendTo("body"),d=b.css("display");b.remove();if(d==="none"||d===""){ck||(ck=c.createElement("iframe"),ck.frameBorder=ck.width=ck.height=0),c.body.appendChild(ck);if(!cl||!ck.createElement)cl=(ck.contentWindow||ck.contentDocument).document,cl.write("<!doctype><html><body></body></html>");b=cl.createElement(a),cl.body.appendChild(b),d=f.css(b,"display"),c.body.removeChild(ck)}cj[a]=d}return cj[a]}function cu(a,b){var c={};f.each(cp.concat.apply([],cp.slice(0,b)),function(){c[this]=a});return c}function ct(){cq=b}function cs(){setTimeout(ct,0);return cq=f.now()}function ci(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ch(){try{return new a.XMLHttpRequest}catch(b){}}function cb(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function ca(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function b_(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bF.test(a)?d(a,e):b_(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)b_(a+"["+e+"]",b[e],c,d);else d(a,b)}function b$(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bU,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=b$(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=b$(a,c,d,e,"*",g));return l}function bZ(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bQ),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bD(a,b,c){var d=b==="width"?bx:by,e=b==="width"?a.offsetWidth:a.offsetHeight;if(c==="border")return e;f.each(d,function(){c||(e-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?e+=parseFloat(f.css(a,"margin"+this))||0:e-=parseFloat(f.css(a,"border"+this+"Width"))||0});return e}function bn(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bm(a){f.nodeName(a,"input")?bl(a):a.getElementsByTagName&&f.grep(a.getElementsByTagName("input"),bl)}function bl(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bk(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function bj(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bi(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c=f.expando,d=f.data(a),e=f.data(b,d);if(d=d[c]){var g=d.events;e=e[c]=f.extend({},d);if(g){delete e.handle,e.events={};for(var h in g)for(var i=0,j=g[h].length;i<j;i++)f.event.add(b,h+(g[h][i].namespace?".":"")+g[h][i].namespace,g[h][i],g[h][i].data)}}}}function bh(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function X(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(S.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function W(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function O(a,b){return(a&&a!=="*"?a+".":"")+b.replace(A,"`").replace(B,"&")}function N(a){var b,c,d,e,g,h,i,j,k,l,m,n,o,p=[],q=[],r=f._data(this,"events");if(!(a.liveFired===this||!r||!r.live||a.target.disabled||a.button&&a.type==="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var s=r.live.slice(0);for(i=0;i<s.length;i++)g=s[i],g.origType.replace(y,"")===a.type?q.push(g.selector):s.splice(i--,1);e=f(a.target).closest(q,a.currentTarget);for(j=0,k=e.length;j<k;j++){m=e[j];for(i=0;i<s.length;i++){g=s[i];if(m.selector===g.selector&&(!n||n.test(g.namespace))&&!m.elem.disabled){h=m.elem,d=null;if(g.preType==="mouseenter"||g.preType==="mouseleave")a.type=g.preType,d=f(a.relatedTarget).closest(g.selector)[0],d&&f.contains(h,d)&&(d=h);(!d||d!==h)&&p.push({elem:h,handleObj:g,level:m.level})}}}for(j=0,k=p.length;j<k;j++){e=p[j];if(c&&e.level>c)break;a.currentTarget=e.elem,a.data=e.handleObj.data,a.handleObj=e.handleObj,o=e.handleObj.origHandler.apply(e.elem,arguments);if(o===!1||a.isPropagationStopped()){c=e.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function L(a,c,d){var e=f.extend({},d[0]);e.type=a,e.originalEvent={},e.liveFired=b,f.event.handle.call(c,e),e.isDefaultPrevented()&&d[0].preventDefault()}function F(){return!0}function E(){return!1}function m(a,c,d){var e=c+"defer",g=c+"queue",h=c+"mark",i=f.data(a,e,b,!0);i&&(d==="queue"||!f.data(a,g,b,!0))&&(d==="mark"||!f.data(a,h,b,!0))&&setTimeout(function(){!f.data(a,g,b,!0)&&!f.data(a,h,b,!0)&&(f.removeData(a,e,!0),i.resolve())},0)}function l(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function k(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(j,"$1-$2").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNaN(d)?i.test(d)?f.parseJSON(d):d:parseFloat(d)}catch(g){}f.data(a,c,d)}else d=b}return d}var c=a.document,d=a.navigator,e=a.location,f=function(){function H(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(H,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=d.userAgent,x,y,z,A=Object.prototype.toString,B=Object.prototype.hasOwnProperty,C=Array.prototype.push,D=Array.prototype.slice,E=String.prototype.trim,F=Array.prototype.indexOf,G={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.6.1",length:0,size:function(){return this.length},toArray:function(){return D.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?C.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),y.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(D.apply(this,arguments),"slice",D.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:C,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;y.resolveWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!y){y=e._Deferred();if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",z,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",z),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&H()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNaN:function(a){return a==null||!m.test(a)||isNaN(a)},type:function(a){return a==null?String(a):G[A.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;if(a.constructor&&!B.call(a,"constructor")&&!B.call(a.constructor.prototype,"isPrototypeOf"))return!1;var c;for(c in a);return c===b||B.call(a,c)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(b,c,d){a.DOMParser?(d=new DOMParser,c=d.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b)),d=c.documentElement,(!d||!d.nodeName||d.nodeName==="parsererror")&&e.error("Invalid XML: "+b);return c},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:E?function(a){return a==null?"":E.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?C.call(c,a):e.merge(c,a)}return c},inArray:function(a,b){if(F)return F.call(b,a);for(var c=0,d=b.length;c<d;c++)if(b[c]===a)return c;return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=D.call(arguments,2),g=function(){return a.apply(c,f.concat(D.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=s.exec(a)||t.exec(a)||u.exec(a)||a.indexOf("compatible")<0&&v.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){G["[object "+b+"]"]=b.toLowerCase()}),x=e.uaMatch(w),x.browser&&(e.browser[x.browser]=!0,e.browser.version=x.version),e.browser.webkit&&(e.browser.safari=!0),j.test("Â ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?z=function(){c.removeEventListener("DOMContentLoaded",z,!1),e.ready()}:c.attachEvent&&(z=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",z),e.ready())});return e}(),g="done fail isResolved isRejected promise then always pipe".split(" "),h=[].slice;f.extend({_Deferred:function(){var a=[],b,c,d,e={done:function(){if(!d){var c=arguments,g,h,i,j,k;b&&(k=b,b=0);for(g=0,h=c.length;g<h;g++)i=c[g],j=f.type(i),j==="array"?e.done.apply(e,i):j==="function"&&a.push(i);k&&e.resolveWith(k[0],k[1])}return this},resolveWith:function(e,f){if(!d&&!b&&!c){f=f||[],c=1;try{while(a[0])a.shift().apply(e,f)}finally{b=[e,f],c=0}}return this},resolve:function(){e.resolveWith(this,arguments);return this},isResolved:function(){return!!c||!!b},cancel:function(){d=1,a=[];return this}};return e},Deferred:function(a){var b=f._Deferred(),c=f._Deferred(),d;f.extend(b,{then:function(a,c){b.done(a).fail(c);return this},always:function(){return b.done.apply(b,arguments).fail.apply(this,arguments)},fail:c.done,rejectWith:c.resolveWith,reject:c.resolve,isRejected:c.isResolved,pipe:function(a,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[c,"reject"]},function(a,c){var e=c[0],g=c[1],h;f.isFunction(e)?b[a](function(){h=e.apply(this,arguments),h&&f.isFunction(h.promise)?h.promise().then(d.resolve,d.reject):d[g](h)}):b[a](d[g])})}).promise()},promise:function(a){if(a==null){if(d)return d;d=a={}}var c=g.length;while(c--)a[g[c]]=b[g[c]];return a}}),b.done(c.cancel).fail(b.cancel),delete b.cancel,a&&a.call(b,b);return b},when:function(a){function i(a){return function(c){b[a]=arguments.length>1?h.call(arguments,0):c,--e||g.resolveWith(g,h.call(b,0))}}var b=arguments,c=0,d=b.length,e=d,g=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>1){for(;c<d;c++)b[c]&&f.isFunction(b[c].promise)?b[c].promise().then(i(c),g.reject):--e;e||g.resolveWith(g,b)}else g!==a&&g.resolveWith(g,d?[a]:[]);return g.promise()}}),f.support=function(){var a=c.createElement("div"),b=c.documentElement,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r;a.setAttribute("className","t"),a.innerHTML="   <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};f=c.createElement("select"),g=f.appendChild(c.createElement("option")),h=a.getElementsByTagName("input")[0],j={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55$/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:a.className!=="t",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},h.checked=!0,j.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,j.optDisabled=!g.disabled;try{delete a.test}catch(s){j.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function b(){j.noCloneEvent=!1,a.detachEvent("onclick",b)}),a.cloneNode(!0).fireEvent("onclick")),h=c.createElement("input"),h.value="t",h.setAttribute("type","radio"),j.radioValue=h.value==="t",h.setAttribute("checked","checked"),a.appendChild(h),k=c.createDocumentFragment(),k.appendChild(a.firstChild),j.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",l=c.createElement("body"),m={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"};for(q in m)l.style[q]=m[q];l.appendChild(a),b.insertBefore(l,b.firstChild),j.appendChecked=h.checked,j.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,j.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="<div style='width:4px;'></div>",j.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",n=a.getElementsByTagName("td"),r=n[0].offsetHeight===0,n[0].style.display="",n[1].style.display="none",j.reliableHiddenOffsets=r&&n[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(i=c.createElement("div"),i.style.width="0",i.style.marginRight="0",a.appendChild(i),j.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(i,null)||{marginRight:0}).marginRight,10)||0)===0),l.innerHTML="",b.removeChild(l);if(a.attachEvent)for(q in{submit:1,change:1,focusin:1})p="on"+q,r=p in a,r||(a.setAttribute(p,"return;"),r=typeof a[p]=="function"),j[q+"Bubbles"]=r;return j}(),f.boxModel=f.support.boxModel;var i=/^(?:\{.*\}|\[.*\])$/,j=/([a-z])([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!l(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g=f.expando,h=typeof c=="string",i,j=a.nodeType,k=j?f.cache:a,l=j?a[f.expando]:a[f.expando]&&f.expando;if((!l||e&&l&&!k[l][g])&&h&&d===b)return;l||(j?a[f.expando]=l=++f.uuid:l=f.expando),k[l]||(k[l]={},j||(k[l].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?k[l][g]=f.extend(k[l][g],c):k[l]=f.extend(k[l],c);i=k[l],e&&(i[g]||(i[g]={}),i=i[g]),d!==b&&(i[f.camelCase(c)]=d);if(c==="events"&&!i[c])return i[g]&&i[g].events;return h?i[f.camelCase(c)]:i}},removeData:function(b,c,d){if(!!f.acceptData(b)){var e=f.expando,g=b.nodeType,h=g?f.cache:b,i=g?b[f.expando]:f.expando;if(!h[i])return;if(c){var j=d?h[i][e]:h[i];if(j){delete j[c];if(!l(j))return}}if(d){delete h[i][e];if(!l(h[i]))return}var k=h[i][e];f.support.deleteExpando||h!=a?delete h[i]:h[i]=null,k?(h[i]={},g||(h[i].toJSON=f.noop),h[i][e]=k):g&&(f.support.deleteExpando?delete b[f.expando]:b.removeAttribute?b.removeAttribute(f.expando):b[f.expando]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d=null;if(typeof a=="undefined"){if(this.length){d=f.data(this[0]);if(this[0].nodeType===1){var e=this[0].attributes,g;for(var h=0,i=e.length;h<i;h++)g=e[h].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),k(this[0],g,d[g]))}}return d}if(typeof a=="object")return this.each(function(){f.data(this,a)});var j=a.split(".");j[1]=j[1]?"."+j[1]:"";if(c===b){d=this.triggerHandler("getData"+j[1]+"!",[j[0]]),d===b&&this.length&&(d=f.data(this[0],a),d=k(this[0],a,d));return d===b&&j[1]?this.data(j[0]):d}return this.each(function(){var b=f(this),d=[j[0],c];b.triggerHandler("setData"+j[1]+"!",d),f.data(this,a,c),b.triggerHandler("changeData"+j[1]+"!",d)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,c){a&&(c=(c||"fx")+"mark",f.data(a,c,(f.data(a,c,b,!0)||0)+1,!0))},_unmark:function(a,c,d){a!==!0&&(d=c,c=a,a=!1);if(c){d=d||"fx";var e=d+"mark",g=a?0:(f.data(c,e,b,!0)||1)-1;g?f.data(c,e,g,!0):(f.removeData(c,e,!0),m(c,d,"mark"))}},queue:function(a,c,d){if(a){c=(c||"fx")+"queue";var e=f.data(a,c,b,!0);d&&(!e||f.isArray(d)?e=f.data(a,c,f.makeArray(d),!0):e.push(d));return e||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e;d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),d.call(a,function(){f.dequeue(a,b)})),c.length||(f.removeData(a,b+"queue",!0),m(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(){var c=this;setTimeout(function(){f.dequeue(c,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f._Deferred(),!0))h++,l.done(m);m();return d.promise()}});var n=/[\n\t\r]/g,o=/\s+/,p=/\r/g,q=/^(?:button|input)$/i,r=/^(?:button|input|object|select|textarea)$/i,s=/^a(?:rea)?$/i,t=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,u=/\:/,v,w;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.addClass(a.call(this,b,c.attr("class")||""))});if(a&&typeof a=="string"){var b=(a||"").split(o);for(var c=0,d=this.length;c<d;c++){var e=this[c];if(e.nodeType===1)if(!e.className)e.className=a;else{var g=" "+e.className+" ",h=e.className;for(var i=0,j=b.length;i<j;i++)g.indexOf(" "+b[i]+" ")<0&&(h+=" "+b[i]);e.className=f.trim(h)}}}return this},removeClass:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.removeClass(a.call(this,b,c.attr("class")))});if(a&&typeof a=="string"||a===b){var c=(a||"").split(o);for(var d=0,e=this.length;d<e;d++){var g=this[d];if(g.nodeType===1&&g.className)if(a){var h=(" "+g.className+" ").replace(n," ");for(var i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){var d=f(this);d.toggleClass(a.call(this,c,d.attr("class"),b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(o);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ";for(var c=0,d=this.length;c<d;c++)if((" "+this[c].className+" ").replace(n," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e=this[0];if(!arguments.length){if(e){c=f.valHooks[e.nodeName.toLowerCase()]||f.valHooks[e.type];if(c&&"get"in c&&(d=c.get(e,"value"))!==b)return d;return(e.value||"").replace(p,"")}return b}var g=f.isFunction(a);return this.each(function(d){var e=f(this),h;if(this.nodeType===1){g?h=a.call(this,d,e.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c=a.selectedIndex,d=[],e=a.options,g=a.type==="select-one";if(c<0)return null;for(var h=g?c:0,i=g?c+1:e.length;h<i;h++){var j=e[h];if(j.selected&&(f.support.optDisabled?!j.disabled:j.getAttribute("disabled")===null)&&(!j.parentNode.disabled||!f.nodeName(j.parentNode,"optgroup"))){b=f(j).val();if(g)return b;d.push(b)}}if(g&&!d.length&&e.length)return f(e[c]).val();return d},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attrFix:{tabindex:"tabIndex"},attr:function(a,c,d,e){var g=a.nodeType;if(!a||g===3||g===8||g===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);var h,i,j=g!==1||!f.isXMLDoc(a);c=j&&f.attrFix[c]||c,i=f.attrHooks[c],i||(!t.test(c)||typeof d!="boolean"&&d!==b&&d.toLowerCase()!==c.toLowerCase()?v&&(f.nodeName(a,"form")||u.test(c))&&(i=v):i=w);if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(i&&"set"in i&&j&&(h=i.set(a,d,c))!==b)return h;a.setAttribute(c,""+d);return d}if(i&&"get"in i&&j)return i.get(a,c);h=a.getAttribute(c);return h===null?b:h},removeAttr:function(a,b){var c;a.nodeType===1&&(b=f.attrFix[b]||b,f.support.getSetAttribute?a.removeAttribute(b):(f.attr(a,b,""),a.removeAttributeNode(a.getAttributeNode(b))),t.test(b)&&(c=f.propFix[b]||b)in a&&(a[c]=!1))},attrHooks:{type:{set:function(a,b){if(q.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},tabIndex:{get:function(a){var c=a.getAttributeNode("tabIndex");return c&&c.specified?parseInt(c.value,10):r.test(a.nodeName)||s.test(a.nodeName)&&a.href?0:b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e=a.nodeType;if(!a||e===3||e===8||e===2)return b;var g,h,i=e!==1||!f.isXMLDoc(a);c=i&&f.propFix[c]||c,h=f.propHooks[c];return d!==b?h&&"set"in h&&(g=h.set(a,d,c))!==b?g:a[c]=d:h&&"get"in h&&(g=h.get(a,c))!==b?g:a[c]},propHooks:{}}),w={get:function(a,c){return a[f.propFix[c]||c]?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=b),a.setAttribute(c,c.toLowerCase()));return c}},f.attrHooks.value={get:function(a,b){if(v&&f.nodeName(a,"button"))return v.get(a,b);return a.value},set:function(a,b,c){if(v&&f.nodeName(a,"button"))return v.set(a,b,c);a.value=b}},f.support.getSetAttribute||(f.attrFix=f.propFix,v=f.attrHooks.name=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&d.nodeValue!==""?d.nodeValue:b},set:function(a,b,c){var d=a.getAttributeNode(c);if(d){d.nodeValue=b;return b}}},f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})})),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}})),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var x=Object.prototype.hasOwnProperty,y=/\.(.*)$/,z=/^(?:textarea|input|select)$/i,A=/\./g,B=/ /g,C=/[^\w\s.|`]/g,D=function(a){return a.replace(C,"\\$&")};f.event={add:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){if(d===!1)d=E;else if(!d)return;var g,h;d.handler&&(g=d,d=g.handler),d.guid||(d.guid=f.guid++);var i=f._data(a);if(!i)return;var j=i.events,k=i.handle;j||(i.events=j={}),k||(i.handle=k=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.handle.apply(k.elem,arguments):b}),k.elem=a,c=c.split(" ");var l,m=0,n;while(l=c[m++]){h=g?f.extend({},g):{handler:d,data:e},l.indexOf(".")>-1?(n=l.split("."),l=n.shift(),h.namespace=n.slice(0).sort().join(".")):(n=[],h.namespace=""),h.type=l,h.guid||(h.guid=d.guid);var o=j[l],p=f.event.special[l]||{};if(!o){o=j[l]=[];if(!p.setup||p.setup.call(a,e,n,k)===!1)a.addEventListener?a.addEventListener(l,k,!1):a.attachEvent&&a.attachEvent("on"+l,k)}p.add&&(p.add.call(a,h),h.handler.guid||(h.handler.guid=d.guid)),o.push(h),f.event.global[l]=!0}a=null}},global:{},remove:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){d===!1&&(d=E);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=f.hasData(a)&&f._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(d=c.handler,c=c.type);if(!c||typeof c=="string"&&c.charAt(0)==="."){c=c||"";for(h in t)f.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+f.map(m.slice(0).sort(),D).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!d){for(j=0;j<p.length;j++){q=p[j];if(l||n.test(q.namespace))f.event.remove(a,r,q.handler,j),p.splice(j--,1)}continue}o=f.event.special[h]||{};for(j=e||0;j<p.length;j++){q=p[j];if(d.guid===q.guid){if(l||n.test(q.namespace))e==null&&p.splice(j--,1),o.remove&&o.remove.call(a,q);if(e!=null)break}}if(p.length===0||e!=null&&p.length===1)(!o.teardown||o.teardown.call(a,m)===!1)&&f.removeEvent(a,h,s.handle),g=null,delete t[h]}if(f.isEmptyObject(t)){var u=s.handle;u&&(u.elem=null),delete s.events,delete s.handle,f.isEmptyObject(s)&&f.removeData(a,b,!0)}}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){var h=c.type||c,i=[],j;h.indexOf("!")>=0&&(h=h.slice(0,-1),j=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if(!!e&&!f.event.customEvent[h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)");if(g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=this[a];b&&b.events&&b.events[h]&&f.event.trigger(c,d,b.handle.elem)});return}if(e.nodeType===3||e.nodeType===8)return;c.result=b,c.target=e,d=d?f.makeArray(d):[],d.unshift(c);var k=e,l=h.indexOf(":")<0?"on"+h:"";do{var m=f._data(k,"handle");c.currentTarget=k,m&&m.apply(k,d),l&&f.acceptData(k)&&k[l]&&k[l].apply(k,d)===!1&&(c.result=!1,c.preventDefault()),k=k.parentNode||k.ownerDocument||k===c.target.ownerDocument&&a}while(k&&!c.isPropagationStopped());if(!c.isDefaultPrevented()){var n,o=f.event.special[h]||{};if((!o._default||o._default.call(e.ownerDocument,c)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)){try{l&&e[h]&&(n=e[l],n&&(e[l]=null),f.event.triggered=h,e[h]())}catch(p){}n&&(e[l]=n),f.event.triggered=b}}return c.result}},handle:function(c){c=f.event.fix(c||a.event);var d=((f._data(this,"events")||{})[c.type]||[]).slice(0),e=!c.exclusive&&!c.namespace,g=Array.prototype.slice.call(arguments,0);g[0]=c,c.currentTarget=this;for(var h=0,i=d.length;h<i;h++){var j=d[h];if(e||c.namespace_re.test(j.namespace)){c.handler=j.handler,c.data=j.data,c.handleObj=j;var k=j.handler.apply(this,g);k!==b&&(c.result=k,k===!1&&(c.preventDefault(),c.stopPropagation()));if(c.isImmediatePropagationStopped())break}}return c.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(a){if(a[f.expando])return a;var d=a;a=f.Event(d);for(var e=this.props.length,g;e;)g=this.props[--e],a[g]=d[g];a.target||(a.target=a.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),!a.relatedTarget&&a.fromElement&&(a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement);if(a.pageX==null&&a.clientX!=null){var h=a.target.ownerDocument||c,i=h.documentElement,j=h.body;a.pageX=a.clientX+(i&&i.scrollLeft||j&&j.scrollLeft||0)-(i&&i.clientLeft||j&&j.clientLeft||0),a.pageY=a.clientY+(i&&i.scrollTop||j&&j.scrollTop||0)-(i&&i.clientTop||j&&j.clientTop||0)}a.which==null&&(a.charCode!=null||a.keyCode!=null)&&(a.which=a.charCode!=null?a.charCode:a.keyCode),!a.metaKey&&a.ctrlKey&&(a.metaKey=a.ctrlKey),!a.which&&a.button!==b&&(a.which=a.button&1?1:a.button&2?3:a.button&4?2:0);return a},guid:1e8,proxy:f.proxy,special:{ready:{setup:f.bindReady,teardown:f.noop},live:{add:function(a){f.event.add(this,O(a.origType,a.selector),f.extend({},a,{handler:N,guid:a.handler.guid}))},remove:function(a){f.event.remove(this,O(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}}},f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!this.preventDefault)return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?F:E):this.type=a,b&&f.extend(this,b),this.timeStamp=f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=F;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=F;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=F,this.stopPropagation()},isDefaultPrevented:E,isPropagationStopped:E,isImmediatePropagationStopped:E};var G=function(a){var b=a.relatedTarget;a.type=a.data;try{if(b&&b!==c&&!b.parentNode)return;while(b&&b!==this)b=b.parentNode;b!==this&&f.event.handle.apply(this,arguments)}catch(d){}},H=function(a){a.type=a.data,f.event.handle.apply(this,arguments)};f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={setup:function(c){f.event.add(this,b,c&&c.selector?H:G,a)},teardown:function(a){f.event.remove(this,b,a&&a.selector?H:G)}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(a,b){if(!f.nodeName(this,"form"))f.event.add(this,"click.specialSubmit",function(a){var b=a.target,c=b.type;(c==="submit"||c==="image")&&f(b).closest("form").length&&L("submit",this,arguments)}),f.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,c=b.type;(c==="text"||c==="password")&&f(b).closest("form").length&&a.keyCode===13&&L("submit",this,arguments)});else return!1},teardown:function(a){f.event.remove(this,".specialSubmit")}});if(!f.support.changeBubbles){var I,J=function(a){var b=a.type,c=a.value;b==="radio"||b==="checkbox"?c=a.checked:b==="select-multiple"?c=a.selectedIndex>-1?f.map(a.options,function(a){return a.selected}).join("-"):"":f.nodeName(a,"select")&&(c=a.selectedIndex);return c},K=function(c){var d=c.target,e,g;if(!!z.test(d.nodeName)&&!d.readOnly){e=f._data(d,"_change_data"),g=J(d),(c.type!=="focusout"||d.type!=="radio")&&f._data(d,"_change_data",g);if(e===b||g===e)return;if(e!=null||g)c.type="change",c.liveFired=b,f.event.trigger(c,arguments[1],d)}};f.event.special.change={filters:{focusout:K,beforedeactivate:K,click:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="radio"||c==="checkbox"||f.nodeName(b,"select"))&&K.call(this,a)},keydown:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(a.keyCode===13&&!f.nodeName(b,"textarea")||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&K.call(this,a)},beforeactivate:function(a){var b=a.target;f._data(b,"_change_data",J(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in I)f.event.add(this,c+".specialChange",I[c]);return z.test(this.nodeName)},teardown:function(a){f.event.remove(this,".specialChange");return z.test(this.nodeName)}},I=f.event.special.change.filters,I.focus=I.beforeactivate}f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){function e(a){var c=f.event.fix(a);c.type=b,c.originalEvent={},f.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var d=0;f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.each(["bind","one"],function(a,c){f.fn[c]=function(a,d,e){var g;if(typeof a=="object"){for(var h in a)this[c](h,d,a[h],e);return this}if(arguments.length===2||d===!1)e=d,d=b;c==="one"?(g=function(a){f(this).unbind(a,g);return e.apply(this,arguments)},g.guid=e.guid||f.guid++):g=e;if(a==="unload"&&c!=="one")this.one(a,d,e);else for(var i=0,j=this.length;i<j;i++)f.event.add(this[i],a,g,d);return this}}),f.fn.extend({unbind:function(a,b){if(typeof a=="object"&&!a.preventDefault)for(var c in a)this.unbind(c,a[c]);else for(var d=0,e=this.length;d<e;d++)f.event.remove(this[d],a,b);return this},delegate:function(a,b,c,d){return this.live(b,c,d,a)},undelegate:function(a,b,c){return arguments.length===0?this.unbind("live"):this.die(b,null,c,a)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f.data(this,"lastToggle"+a.guid)||0)%d;f.data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var M={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};f.each(["live","die"],function(a,c){f.fn[c]=function(a,d,e,g){var h,i=0,j,k,l,m=g||this.selector,n=g?this:f(this.context);if(typeof a=="object"&&!a.preventDefault){for(var o in a)n[c](o,d,a[o],m);return this}if(c==="die"&&!a&&g&&g.charAt(0)==="."){n.unbind(g);return this}if(d===!1||f.isFunction(d))e=d||E,d=b;a=(a||"").split(" ");while((h=a[i++])!=null){j=y.exec(h),k="",j&&(k=j[0],h=h.replace(y,""));if(h==="hover"){a.push("mouseenter"+k,"mouseleave"+k);continue}l=h,M[h]?(a.push(M[h]+k),h=h+k):h=(M[h]||h)+k;if(c==="live")for(var p=0,q=n.length;p<q;p++)f.event.add(n[p],"live."+O(h,m),{data:d,selector:m,handler:e,origType:h,origHandler:e,preType:l});else n.unbind("live."+O(h,m),e)}return this}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}if(i.nodeType===1){f||(i.sizcache=c,i.sizset=g);if(typeof b!="string"){if(i===b){j=!0;break}}else if(k.filter(b,[i]).length>0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}i.nodeType===1&&!f&&(i.sizcache=c,i.sizset=g);if(i.nodeName.toLowerCase()===b){j=i;break}i=i[a]}d[g]=j}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d=0,e=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,f,g){f=f||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return f;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(e.call(n)==="[object Array]")if(!u)f.push.apply(f,n);else if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&f.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&f.push(j[t]);else p(n,f);o&&(k(o,h,f,g),k.uniqueSort(f));return f};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},k.matches=function(a,b){return k(a,null,null,b)},k.matchesSelector=function(a,b){return k(b,null,null,[a]).length>0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e<f;e++){var g,h=l.order[e];if(g=l.leftMatch[h].exec(a)){var j=g[1];g.splice(1,1);if(j.substr(j.length-1)!=="\\"){g[1]=(g[1]||"").replace(i,""),d=l.find[h](g,b,c);if(d!=null){a=a.replace(l.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},k.filter=function(a,c,d,e){var f,g,h=a,i=[],j=c,m=c&&c[0]&&k.isXML(c[0]);while(a&&c.length){for(var n in l.filter)if((f=l.leftMatch[n].exec(a))!=null&&f[2]){var o,p,q=l.filter[n],r=f[1];g=!1,f.splice(1,1);if(r.substr(r.length-1)==="\\")continue;j===i&&(i=[]);if(l.preFilter[n]){f=l.preFilter[n](f,j,d,i,e,m);if(!f)g=o=!0;else if(f===!0)continue}if(f)for(var s=0;(p=j[s])!=null;s++)if(p){o=q(p,f,s,j);var t=e^!!o;d&&o!=null?t?g=!0:j[s]=!1:t&&(i.push(p),g=!0)}if(o!==b){d||(j=i),a=a.replace(l.match[n],"");if(!g)return[];break}}if(a===h)if(g==null)k.error(a);else break;h=a}return j},k.error=function(a){throw"Syntax error, unrecognized expression: "+a};var l=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!j.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&k.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&k.filter(b,a,!0)}},"":function(a,b,c){var e,f=d++,g=u;typeof b=="string"&&!j.test(b)&&(b=b.toLowerCase(),e=b,g=t),g("parentNode",b,f,a,e,c)},"~":function(a,b,c){var e,f=d++,g=u;typeof b=="string"&&!j.test(b)&&(b=b.toLowerCase(),e=b,g=t),g("previousSibling",b,f,a,e,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(i,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=d++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}k.error(e)},CHILD:function(a,b){var c=b[1],d=a;switch(c){case"only":case"first":while(d=d.previousSibling)if(d.nodeType===1)return!1;if(c==="first")return!0;d=a;case"last":while(d=d.nextSibling)if(d.nodeType===1)return!1;return!0;case"nth":var e=b[2],f=b[3];if(e===1&&f===0)return!0;var g=b[0],h=a.parentNode;if(h&&(h.sizcache!==g||!a.nodeIndex)){var i=0;for(d=h.firstChild;d;d=d.nextSibling)d.nodeType===1&&(d.nodeIndex=++i);h.sizcache=g}var j=a.nodeIndex-f;return e===0?j===0:j%e===0&&j/e>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(e.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var f=a.length;c<f;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var r,s;c.documentElement.compareDocumentPosition?r=function(a,b){if(a===b){g=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(r=function(a,b){if(a===b){g=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],h=a.parentNode,i=b.parentNode,j=h;if(h===i)return s(a,b);if(!h)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return s(e[k],f[k]);return k===c?s(a,f[k],-1):s(e[k],b,1)},s=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),k.getText=function(a){var b="",c;for(var d=0;a[d];d++)c=a[d],c.nodeType===3||c.nodeType===4?b+=c.nodeValue:c.nodeType!==8&&(b+=k.getText(c.childNodes));return b},function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g<h;g++)k(a,f[g],d);return k.filter(e,d)};f.find=k,f.expr=k.selectors,f.expr[":"]=f.expr.filters,f.unique=k.uniqueSort,f.text=k.getText,f.isXMLDoc=k.isXML,f.contains=k.contains}();var P=/Until$/,Q=/^(?:parents|prevUntil|prevAll)/,R=/,/,S=/^.[^:#\[\.,]*$/,T=Array.prototype.slice,U=f.expr.match.POS,V={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(X(this,a,!1),"not",a)},filter:function(a){return this.pushStack(X(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(d=0,e=a.length;d<e;d++)i=a[d],j[i]||(j[i]=U.test(i)?f(i,b||this.context):i);while(g&&g.ownerDocument&&g!==b){for(i in j)h=j[i],(h.jquery?h.index(g)>-1:f(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=U.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(l?l.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a||typeof a=="string")return f.inArray(this[0],a?f(a):this.parent().children());return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(W(c[0])||W(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=T.call(arguments);P.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!V[a]?f.unique(e):e,(this.length>1||R.test(d))&&Q.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var Y=/ jQuery\d+="(?:\d+|null)"/g,Z=/^\s+/,$=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,_=/<([\w:]+)/,ba=/<tbody/i,bb=/<|&#?\w+;/,bc=/<(?:script|object|embed|option|style)/i,bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*<!(?:\[CDATA\[|\-\-)/,bg={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Y,""):null;if(typeof a=="string"&&!bc.test(a)&&(f.support.leadingWhitespace||!Z.test(a))&&!bg[(_.exec(a)||["",""])[1].toLowerCase()]){a=a.replace($,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bd.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bh(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bn)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i=b&&b[0]?b[0].ownerDocument||b[0]:c;a.length===1&&typeof a[0]=="string"&&a[0].length<512&&i===c&&a[0].charAt(0)==="<"&&!bc.test(a[0])&&(f.support.checkClone||!bd.test(a[0]))&&(g=!0,h=f.fragments[a[0]],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[a[0]]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bj(a,d),e=bk(a),g=bk(d);for(h=0;e[h];++h)bj(e[h],g[h])}if(b){bi(a,d);if(c){e=bk(a),g=bk(d);for(h=0;e[h];++h)bi(e[h],g[h])}}return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!bb.test(k))k=b.createTextNode(k);else{k=k.replace($,"<$1></$2>");var l=(_.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=ba.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&Z.test(k)&&o.insertBefore(b.createTextNode(Z.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof(r=k.length)=="number")for(i=0;i<r;i++)bm(k[i]);else bm(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||be.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.expando,g=f.event.special,h=f.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){if(j.nodeName&&f.noData[j.nodeName.toLowerCase()])continue;c=j[f.expando];if(c){b=d[c]&&d[c][e];if(b&&b.events){for(var k in b.events)g[k]?f.event.remove(j,k):f.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[f.expando]:j.removeAttribute&&j.removeAttribute(f.expando),delete d[c]}}}});var bo=/alpha\([^)]*\)/i,bp=/opacity=([^)]*)/,bq=/-([a-z])/ig,br=/([A-Z]|^ms)/g,bs=/^-?\d+(?:px)?$/i,bt=/^-?\d/,bu=/^[+\-]=/,bv=/[^+\-\.\de]+/g,bw={position:"absolute",visibility:"hidden",display:"block"},bx=["Left","Right"],by=["Top","Bottom"],bz,bA,bB,bC=function(a,b){return b.toUpperCase()};f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bz(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{zIndex:!0,fontWeight:!0,opacity:!0,zoom:!0,lineHeight:!0,widows:!0,orphans:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d;if(h==="number"&&isNaN(d)||d==null)return;h==="string"&&bu.test(d)&&(d=+d.replace(bv,"")+parseFloat(f.css(a,c))),h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bz)return bz(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]},camelCase:function(a){return a.replace(bq,bC)}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){a.offsetWidth!==0?e=bD(a,b,d):f.swap(a,bw,function(){e=bD(a,b,d)});if(e<=0){e=bz(a,b,b),e==="0px"&&bB&&(e=bB(a,b,b));if(e!=null)return e===""||e==="auto"?"0px":e}if(e<0||e==null){e=a.style[b];return e===""||e==="auto"?"0px":e}return typeof e=="string"?e:e+"px"}},set:function(a,b){if(!bs.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bp.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle;c.zoom=1;var e=f.isNaN(b)?"":"alpha(opacity="+b*100+")",g=d&&d.filter||c.filter||"";c.filter=bo.test(g)?g.replace(bo,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,c){var d,e,g;c=c.replace(br,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bs.test(d)&&bt.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bE=/%20/g,bF=/\[\]$/,bG=/\r?\n/g,bH=/#.*$/,bI=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bJ=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bK=/^(?:about|app|app\-storage|.+\-extension|file|widget):$/,bL=/^(?:GET|HEAD)$/,bM=/^\/\//,bN=/\?/,bO=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bP=/^(?:select|textarea)/i,bQ=/\s+/,bR=/([?&])_=[^&]*/,bS=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bT=f.fn.load,bU={},bV={},bW,bX;try{bW=e.href}catch(bY){bW=c.createElement("a"),bW.href="",bW=bW.href}bX=bS.exec(bW.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bT)return bT.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bO,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bP.test(this.nodeName)||bJ.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bG,"\r\n")}}):{name:b.name,value:c.replace(bG,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?f.extend(!0,a,f.ajaxSettings,b):(b=a,a=f.extend(!0,f.ajaxSettings,b));for(var c in{context:1,url:1})c in b?a[c]=b[c]:c in f.ajaxSettings&&(a[c]=f.ajaxSettings[c]);return a},ajaxSettings:{url:bW,isLocal:bK.test(bX[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML}},ajaxPrefilter:bZ(bU),ajaxTransport:bZ(bV),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a?4:0;var o,r,u,w=l?ca(d,v,l):b,x,y;if(a>=200&&a<300||a===304){if(d.ifModified){if(x=v.getResponseHeader("Last-Modified"))f.lastModified[k]=x;if(y=v.getResponseHeader("Etag"))f.etag[k]=y}if(a===304)c="notmodified",o=!0;else try{r=cb(d,w),c="success",o=!0}catch(z){c="parsererror",u=z}}else{u=c;if(!c||a)c="error",a<0&&(a=0)}v.status=a,v.statusText=c,o?h.resolveWith(e,[r,c,v]):h.rejectWith(e,[v,c,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.resolveWith(e,[v,c]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f._Deferred(),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bI.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.done,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bH,"").replace(bM,bX[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bQ),d.crossDomain==null&&(r=bS.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bX[1]&&r[2]==bX[2]&&(r[3]||(r[1]==="http:"?80:443))==(bX[3]||(bX[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bU,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bL.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bN.test(d.url)?"&":"?")+d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bR,"$1_="+x);d.url=y+(y===d.url?(bN.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", */*; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bV,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){status<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)b_(g,a[g],c,e);return d.join("&").replace(bE,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cc=f.now(),cd=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cc++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(cd.test(b.url)||e&&cd.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(cd,l),b.url===j&&(e&&(k=k.replace(cd,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var ce=a.ActiveXObject?function(){for(var a in cg)cg[a](0,1)}:!1,cf=0,cg;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ch()||ci()}:ch,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,ce&&delete cg[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cf,ce&&(cg||(cg={},f(a).unload(ce)),cg[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cj={},ck,cl,cm=/^(?:toggle|show|hide)$/,cn=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,co,cp=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cq,cr=a.webkitRequestAnimationFrame||a.mozRequestAnimationFrame||a.oRequestAnimationFrame;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cv(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cu("hide",3),a,b,c);for(var d=0,e=this.length;d<e;d++)if(this[d].style){var g=f.css(this[d],"display");g!=="none"&&!f._data(this[d],"olddisplay")&&f._data(this[d],"olddisplay",g)}for(d=0;d<e;d++)this[d].style&&(this[d].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cu("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return this[e.queue===!1?"each":"queue"](function(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(f.support.inlineBlockNeedsLayout?(j=cv(this.nodeName),j==="inline"?this.style.display="inline-block":(this.style.display="inline",this.style.zoom=1)):this.style.display="inline-block"))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)k=new f.fx(this,b,i),h=a[i],cm.test(h)?k[h==="toggle"?d?"show":"hide":h]():(l=cn.exec(h),m=k.cur(),l?(n=parseFloat(l[2]),o=l[3]||(f.cssNumber[i]?"":"px"),o!=="px"&&(f.style(this,i,(n||1)+o),m=(n||1)/k.cur()*m,f.style(this,i,m+o)),l[1]&&(n=(l[1]==="-="?-1:1)*n+m),k.custom(m,n,o)):k.custom(m,h,""));return!0})},stop:function(a,b){a&&this.queue([]),this.each(function(){var a=f.timers,c=a.length;b||f._unmark(!0,this);while(c--)a[c].elem===this&&(b&&a[c](!0),a.splice(c,1))}),b||this.dequeue();return this}}),f.each({slideDown:cu("show",1),slideUp:cu("hide",1),slideToggle:cu("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default,d.old=d.complete,d.complete=function(a){d.queue!==!1?f.dequeue(this):a!==!1&&f._unmark(this),f.isFunction(d.old)&&d.old.call(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,b,c){function h(a){return d.step(a)}var d=this,e=f.fx,g;this.startTime=cq||cs(),this.start=a,this.end=b,this.unit=c||this.unit||(f.cssNumber[this.prop]?"":"px"),this.now=this.start,this.pos=this.state=0,h.elem=this.elem,h()&&f.timers.push(h)&&!co&&(cr?(co=1,g=function(){co&&(cr(g),e.tick())},cr(g)):co=setInterval(e.tick,e.interval))},show:function(){this.options.orig[this.prop]=f.style(this.elem,this.prop),this.options.show=!0,this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b=cq||cs(),c=!0,d=this.elem,e=this.options,g,h;if(a||b>=e.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),e.animatedProperties[this.prop]=!0;for(g in e.animatedProperties)e.animatedProperties[g]!==!0&&(c=!1);if(c){e.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){d.style["overflow"+b]=e.overflow[a]}),e.hide&&f(d).hide();if(e.hide||e.show)for(var i in e.animatedProperties)f.style(d,i,e.orig[i]);e.complete.call(d)}return!1}e.duration==Infinity?this.now=b:(h=b-this.startTime,this.state=h/e.duration,this.pos=f.easing[e.animatedProperties[this.prop]](this.state,h,0,1,e.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){for(var a=f.timers,b=0;b<a.length;++b)a[b]()||a.splice(b--,1);a.length||f.fx.stop()},interval:13,stop:function(){clearInterval(co),co=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit:a.elem[a.prop]=a.now}}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cw=/^t(?:able|d|h)$/i,cx=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cy(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);f.offset.initialize();var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.offset.supportsFixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.offset.doesNotAddBorder&&(!f.offset.doesAddBorderForTableAndCells||!cw.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.offset.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.offset.supportsFixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={initialize:function(){var a=c.body,b=c.createElement("div"),d,e,g,h,i=parseFloat(f.css(a,"marginTop"))||0,j="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";f.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),d=b.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,this.doesNotAddBorder=e.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,e.style.position="fixed",e.style.top="20px",this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),f.offset.initialize=f.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.offset.initialize(),f.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){return this[0]?parseFloat(f.css(this[0],d,"padding")):null},f.fn["outer"+c]=function(a){return this[0]?parseFloat(f.css(this[0],d,a?"margin":"border")):null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c];return e.document.compatMode==="CSS1Compat"&&g||e.document.body["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var h=f.css(e,d),i=parseFloat(h);return f.isNaN(i)?h:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window);jQuery.noConflict();;var htmltooltip={tipclass:'htmltooltip',fadeeffect:[false,0],anchors:[],tooltips:[],positiontip:function($,tipindex,e){var anchor=this.anchors[tipindex]
var tooltip=this.tooltips[tipindex]
var scrollLeft=window.pageXOffset?window.pageXOffset:this.iebody.scrollLeft
var scrollTop=window.pageYOffset?window.pageYOffset:this.iebody.scrollTop
var docwidth=(window.innerWidth)?window.innerWidth-15:htmltooltip.iebody.clientWidth-15
var docheight=(window.innerHeight)?window.innerHeight-18:htmltooltip.iebody.clientHeight-15
var tipx=anchor.dimensions.offsetx
var tipy=anchor.dimensions.offsety+anchor.dimensions.h
tipx=(tipx+tooltip.dimensions.w-scrollLeft>docwidth)?tipx-tooltip.dimensions.w:tipx
tipy=(tipy+tooltip.dimensions.h-scrollTop>docheight)?tipy-tooltip.dimensions.h-anchor.dimensions.h:tipy
$(tooltip).css({left:tipx,top:tipy})},showtip:function($,tipindex,e){var tooltip=this.tooltips[tipindex]
if(this.fadeeffect[0])
$(tooltip).hide().fadeIn(this.fadeeffect[1])
else
$(tooltip).show()},hidetip:function($,tipindex,e){var tooltip=this.tooltips[tipindex]
if(this.fadeeffect[0])
$(tooltip).fadeOut(this.fadeeffect[1])
else
$(tooltip).hide()},updateanchordimensions:function($){var $anchors=$('*[rel="'+htmltooltip.tipclass+'"]')
$anchors.each(function(index){this.dimensions={w:this.offsetWidth,h:this.offsetHeight,offsetx:$(this).offset().left,offsety:$(this).offset().top}})},render:function(){jQuery(document).ready(function($){htmltooltip.iebody=(document.compatMode&&document.compatMode!="BackCompat")?document.documentElement:document.body
var $anchors=$('*[rel="'+htmltooltip.tipclass+'"]')
var $tooltips=$('div[class="'+htmltooltip.tipclass+'"]')
$anchors.each(function(index){this.dimensions={w:this.offsetWidth,h:this.offsetHeight,offsetx:$(this).offset().left,offsety:$(this).offset().top}
this.tippos=index+' pos'
var tooltip=$tooltips.eq(index).get(0)
if(tooltip==null)
return
tooltip.dimensions={w:tooltip.offsetWidth,h:tooltip.offsetHeight}
$(tooltip).remove().appendTo('body')
htmltooltip.tooltips.push(tooltip)
htmltooltip.anchors.push(this)
var $anchor=$(this)
$anchor.hover(function(e){htmltooltip.positiontip($,parseInt(this.tippos),e)
htmltooltip.showtip($,parseInt(this.tippos),e)},function(e){htmltooltip.hidetip($,parseInt(this.tippos),e)})
$(window).bind("resize",function(){htmltooltip.updateanchordimensions($)})})})}}
htmltooltip.render();jQuery(document).ready(function(){hideLoading();var url=jQuery("input.seo-url");var ref=jQuery("input[name=ref]");var seoautorun=jQuery("input[name=seoautorun]").val();var url_form=jQuery("form[id=analyze]");var seoautoresults=jQuery("#seoautoresults");var throbber=jQuery('#throbber');url_form.submit(function(e){showLoading();jQuery("#seoautoresults").empty();jQuery.get(seoautorun,{"url":url.val(),"output":"html","ref":ref.val()},function(results){jQuery("#seoautoresults").append(results);hideLoading();jQuery("#seoautoresults").show();});jQuery(document).bind("ajaxError.seoresults",onError);return false;});function onError(e,xhr){jQuery(document).unbind("ajaxError.seoresults");jQuery("#seoautoresults").empty().append(xhr.responseText).css({"display":"block"});hideLoading();}
function showLoading(){jQuery("#throbber").show();}
function hideLoading(){jQuery("#throbber").hide();}});;(function(a){jQuery.fn.ns_mc_widget=function(b){var e,c,d;e={url:"/",cookie_id:false,cookie_value:""};d=jQuery.extend(e,b);c=jQuery(this);c.submit(function(){var f;f=jQuery("<div></div>");f.css({"background-image":"url("+d.loader_graphic+")","background-position":"center center","background-repeat":"no-repeat",height:"100%",left:"0",position:"absolute",top:"0",width:"100%","z-index":"100"});c.css({height:"100%",position:"relative",width:"100%"});c.children().hide();c.append(f);jQuery.getJSON(d.url,c.serialize(),function(h,k){var j,g,i;if("success"===k){if(true===h.success){i=jQuery("<p>"+h.success_message+"</p>");i.hide();c.fadeTo(400,0,function(){c.html(i);i.show();c.fadeTo(400,1)});if(false!==d.cookie_id){j=new Date();j.setTime(j.getTime()+"3153600000");document.cookie=d.cookie_id+"="+d.cookie_value+"; expires="+j.toGMTString()+";"}}else{g=jQuery(".error",c);if(0===g.length){f.remove();c.children().show();g=jQuery('<div class="error"></div>');g.prependTo(c)}g.html(h.error)}}return false});return false})}}(jQuery));;if(typeof tb_pathToImage!='string'){var tb_pathToImage=thickboxL10n.loadingAnimation;}
if(typeof tb_closeImage!='string'){var tb_closeImage=thickboxL10n.closeImage;}
/*!!!!!!!!!!!!!!!! edit below this line at your own risk !!!!!!!!!!!!!!!!!!!!!!!*/
jQuery(document).ready(function(){tb_init('a.thickbox, area.thickbox, input.thickbox');imgLoader=new Image();imgLoader.src=tb_pathToImage;});function tb_init(domChunk){jQuery(domChunk).live('click',tb_click);}
function tb_click(){var t=this.title||this.name||null;var a=this.href||this.alt;var g=this.rel||false;tb_show(t,a,g);this.blur();return false;}
function tb_show(caption,url,imageGroup){try{if(typeof document.body.style.maxHeight==="undefined"){jQuery("body","html").css({height:"100%",width:"100%"});jQuery("html").css("overflow","hidden");if(document.getElementById("TB_HideSelect")===null){jQuery("body").append("<iframe id='TB_HideSelect'>"+thickboxL10n.noiframes+"</iframe><div id='TB_overlay'></div><div id='TB_window'></div>");jQuery("#TB_overlay").click(tb_remove);}}else{if(document.getElementById("TB_overlay")===null){jQuery("body").append("<div id='TB_overlay'></div><div id='TB_window'></div>");jQuery("#TB_overlay").click(tb_remove);}}
if(tb_detectMacXFF()){jQuery("#TB_overlay").addClass("TB_overlayMacFFBGHack");}else{jQuery("#TB_overlay").addClass("TB_overlayBG");}
if(caption===null){caption="";}
jQuery("body").append("<div id='TB_load'><img src='"+imgLoader.src+"' /></div>");jQuery('#TB_load').show();var baseURL;if(url.indexOf("?")!==-1){baseURL=url.substr(0,url.indexOf("?"));}else{baseURL=url;}
var urlString=/\.jpg$|\.jpeg$|\.png$|\.gif$|\.bmp$/;var urlType=baseURL.toLowerCase().match(urlString);if(urlType=='.jpg'||urlType=='.jpeg'||urlType=='.png'||urlType=='.gif'||urlType=='.bmp'){TB_PrevCaption="";TB_PrevURL="";TB_PrevHTML="";TB_NextCaption="";TB_NextURL="";TB_NextHTML="";TB_imageCount="";TB_FoundURL=false;if(imageGroup){TB_TempArray=jQuery("a[rel="+imageGroup+"]").get();for(TB_Counter=0;((TB_Counter<TB_TempArray.length)&&(TB_NextHTML===""));TB_Counter++){var urlTypeTemp=TB_TempArray[TB_Counter].href.toLowerCase().match(urlString);if(!(TB_TempArray[TB_Counter].href==url)){if(TB_FoundURL){TB_NextCaption=TB_TempArray[TB_Counter].title;TB_NextURL=TB_TempArray[TB_Counter].href;TB_NextHTML="<span id='TB_next'>&nbsp;&nbsp;<a href='#'>"+thickboxL10n.next+"</a></span>";}else{TB_PrevCaption=TB_TempArray[TB_Counter].title;TB_PrevURL=TB_TempArray[TB_Counter].href;TB_PrevHTML="<span id='TB_prev'>&nbsp;&nbsp;<a href='#'>"+thickboxL10n.prev+"</a></span>";}}else{TB_FoundURL=true;TB_imageCount=thickboxL10n.image+' '+(TB_Counter+1)+' '+thickboxL10n.of+' '+(TB_TempArray.length);}}}
imgPreloader=new Image();imgPreloader.onload=function(){imgPreloader.onload=null;var pagesize=tb_getPageSize();var x=pagesize[0]-150;var y=pagesize[1]-150;var imageWidth=imgPreloader.width;var imageHeight=imgPreloader.height;if(imageWidth>x){imageHeight=imageHeight*(x/imageWidth);imageWidth=x;if(imageHeight>y){imageWidth=imageWidth*(y/imageHeight);imageHeight=y;}}else if(imageHeight>y){imageWidth=imageWidth*(y/imageHeight);imageHeight=y;if(imageWidth>x){imageHeight=imageHeight*(x/imageWidth);imageWidth=x;}}
TB_WIDTH=imageWidth+30;TB_HEIGHT=imageHeight+60;jQuery("#TB_window").append("<a href='' id='TB_ImageOff' title='"+thickboxL10n.close+"'><img id='TB_Image' src='"+url+"' width='"+imageWidth+"' height='"+imageHeight+"' alt='"+caption+"'/></a>"+"<div id='TB_caption'>"+caption+"<div id='TB_secondLine'>"+TB_imageCount+TB_PrevHTML+TB_NextHTML+"</div></div><div id='TB_closeWindow'><a href='#' id='TB_closeWindowButton' title='"+thickboxL10n.close+"'><img src='"+tb_closeImage+"' /></a></div>");jQuery("#TB_closeWindowButton").click(tb_remove);if(!(TB_PrevHTML==="")){function goPrev(){if(jQuery(document).unbind("click",goPrev)){jQuery(document).unbind("click",goPrev);}
jQuery("#TB_window").remove();jQuery("body").append("<div id='TB_window'></div>");tb_show(TB_PrevCaption,TB_PrevURL,imageGroup);return false;}
jQuery("#TB_prev").click(goPrev);}
if(!(TB_NextHTML==="")){function goNext(){jQuery("#TB_window").remove();jQuery("body").append("<div id='TB_window'></div>");tb_show(TB_NextCaption,TB_NextURL,imageGroup);return false;}
jQuery("#TB_next").click(goNext);}
jQuery(document).bind('keydown.thickbox',function(e){e.stopImmediatePropagation();if(e.which==27){if(!jQuery(document).triggerHandler('wp_CloseOnEscape',[{event:e,what:'thickbox',cb:tb_remove}]))
tb_remove();}else if(e.which==190){if(!(TB_NextHTML=="")){jQuery(document).unbind('thickbox');goNext();}}else if(e.which==188){if(!(TB_PrevHTML=="")){jQuery(document).unbind('thickbox');goPrev();}}
return false;});tb_position();jQuery("#TB_load").remove();jQuery("#TB_ImageOff").click(tb_remove);jQuery("#TB_window").css({display:"block"});};imgPreloader.src=url;}else{var queryString=url.replace(/^[^\?]+\??/,'');var params=tb_parseQuery(queryString);TB_WIDTH=(params['width']*1)+30||630;TB_HEIGHT=(params['height']*1)+40||440;ajaxContentW=TB_WIDTH-30;ajaxContentH=TB_HEIGHT-45;if(url.indexOf('TB_iframe')!=-1){urlNoQuery=url.split('TB_');jQuery("#TB_iframeContent").remove();if(params['modal']!="true"){jQuery("#TB_window").append("<div id='TB_title'><div id='TB_ajaxWindowTitle'>"+caption+"</div><div id='TB_closeAjaxWindow'><a href='#' id='TB_closeWindowButton' title='"+thickboxL10n.close+"'><img src='"+tb_closeImage+"' /></a></div></div><iframe frameborder='0' hspace='0' src='"+urlNoQuery[0]+"' id='TB_iframeContent' name='TB_iframeContent"+Math.round(Math.random()*1000)+"' onload='tb_showIframe()' style='width:"+(ajaxContentW+29)+"px;height:"+(ajaxContentH+17)+"px;' >"+thickboxL10n.noiframes+"</iframe>");}else{jQuery("#TB_overlay").unbind();jQuery("#TB_window").append("<iframe frameborder='0' hspace='0' src='"+urlNoQuery[0]+"' id='TB_iframeContent' name='TB_iframeContent"+Math.round(Math.random()*1000)+"' onload='tb_showIframe()' style='width:"+(ajaxContentW+29)+"px;height:"+(ajaxContentH+17)+"px;'>"+thickboxL10n.noiframes+"</iframe>");}}else{if(jQuery("#TB_window").css("display")!="block"){if(params['modal']!="true"){jQuery("#TB_window").append("<div id='TB_title'><div id='TB_ajaxWindowTitle'>"+caption+"</div><div id='TB_closeAjaxWindow'><a href='#' id='TB_closeWindowButton'><img src='"+tb_closeImage+"' /></a></div></div><div id='TB_ajaxContent' style='width:"+ajaxContentW+"px;height:"+ajaxContentH+"px'></div>");}else{jQuery("#TB_overlay").unbind();jQuery("#TB_window").append("<div id='TB_ajaxContent' class='TB_modal' style='width:"+ajaxContentW+"px;height:"+ajaxContentH+"px;'></div>");}}else{jQuery("#TB_ajaxContent")[0].style.width=ajaxContentW+"px";jQuery("#TB_ajaxContent")[0].style.height=ajaxContentH+"px";jQuery("#TB_ajaxContent")[0].scrollTop=0;jQuery("#TB_ajaxWindowTitle").html(caption);}}
jQuery("#TB_closeWindowButton").click(tb_remove);if(url.indexOf('TB_inline')!=-1){jQuery("#TB_ajaxContent").append(jQuery('#'+params['inlineId']).children());jQuery("#TB_window").unload(function(){jQuery('#'+params['inlineId']).append(jQuery("#TB_ajaxContent").children());});tb_position();jQuery("#TB_load").remove();jQuery("#TB_window").css({display:"block"});}else if(url.indexOf('TB_iframe')!=-1){tb_position();if(jQuery.browser.safari){jQuery("#TB_load").remove();jQuery("#TB_window").css({display:"block"});}}else{jQuery("#TB_ajaxContent").load(url+="&random="+(new Date().getTime()),function(){tb_position();jQuery("#TB_load").remove();tb_init("#TB_ajaxContent a.thickbox");jQuery("#TB_window").css({display:"block"});});}}
if(!params['modal']){jQuery(document).bind('keyup.thickbox',function(e){if(e.which==27){e.stopImmediatePropagation();if(!jQuery(document).triggerHandler('wp_CloseOnEscape',[{event:e,what:'thickbox',cb:tb_remove}]))
tb_remove();return false;}});}}catch(e){}}
function tb_showIframe(){jQuery("#TB_load").remove();jQuery("#TB_window").css({display:"block"});}
function tb_remove(){jQuery("#TB_imageOff").unbind("click");jQuery("#TB_closeWindowButton").unbind("click");jQuery("#TB_window").fadeOut("fast",function(){jQuery('#TB_window,#TB_overlay,#TB_HideSelect').trigger("unload").unbind().remove();});jQuery("#TB_load").remove();if(typeof document.body.style.maxHeight=="undefined"){jQuery("body","html").css({height:"auto",width:"auto"});jQuery("html").css("overflow","");}
jQuery(document).unbind('.thickbox');return false;}
function tb_position(){var isIE6=typeof document.body.style.maxHeight==="undefined";jQuery("#TB_window").css({marginLeft:'-'+parseInt((TB_WIDTH/2),10)+'px',width:TB_WIDTH+'px'});if(!isIE6){jQuery("#TB_window").css({marginTop:'-'+parseInt((TB_HEIGHT/2),10)+'px'});}}
function tb_parseQuery(query){var Params={};if(!query){return Params;}
var Pairs=query.split(/[;&]/);for(var i=0;i<Pairs.length;i++){var KeyVal=Pairs[i].split('=');if(!KeyVal||KeyVal.length!=2){continue;}
var key=unescape(KeyVal[0]);var val=unescape(KeyVal[1]);val=val.replace(/\+/g,' ');Params[key]=val;}
return Params;}
function tb_getPageSize(){var de=document.documentElement;var w=window.innerWidth||self.innerWidth||(de&&de.clientWidth)||document.body.clientWidth;var h=window.innerHeight||self.innerHeight||(de&&de.clientHeight)||document.body.clientHeight;arrayPageSize=[w,h];return arrayPageSize;}
function tb_detectMacXFF(){var userAgent=navigator.userAgent.toLowerCase();if(userAgent.indexOf('mac')!=-1&&userAgent.indexOf('firefox')!=-1){return true;}};(function(d){var k=d.browser.msie&&parseInt(d.browser.version)===6&&typeof window.XMLHttpRequest!=="object",m=d.browser.msie&&parseInt(d.browser.version)===7,l=null,f=[];d.modal=function(a,b){return d.modal.impl.init(a,b)};d.modal.close=function(){d.modal.impl.close()};d.modal.focus=function(a){d.modal.impl.focus(a)};d.modal.setContainerDimensions=function(){d.modal.impl.setContainerDimensions()};d.modal.setPosition=function(){d.modal.impl.setPosition()};d.modal.update=function(a,b){d.modal.impl.update(a,b)};d.fn.modal=function(a){return d.modal.impl.init(this,a)};d.modal.defaults={appendTo:"body",focus:true,opacity:50,overlayId:"simplemodal-overlay",overlayCss:{},containerId:"simplemodal-container",containerCss:{},dataId:"simplemodal-data",dataCss:{},minHeight:null,minWidth:null,maxHeight:null,maxWidth:null,autoResize:false,autoPosition:true,zIndex:1E3,close:true,closeHTML:'<a class="modalCloseImg" title="Close"></a>',closeClass:"simplemodal-close",escClose:true,overlayClose:false,position:null,persist:false,modal:true,onOpen:null,onShow:null,onClose:null};d.modal.impl={d:{},init:function(a,b){var c=this;if(c.d.data)return false;l=d.browser.msie&&!d.boxModel;c.o=d.extend({},d.modal.defaults,b);c.zIndex=c.o.zIndex;c.occb=false;if(typeof a==="object"){a=a instanceof jQuery?a:d(a);c.d.placeholder=false;if(a.parent().parent().size()>0){a.before(d("<span></span>").attr("id","simplemodal-placeholder").css({display:"none"}));c.d.placeholder=true;c.display=a.css("display");if(!c.o.persist)c.d.orig=a.clone(true)}}else if(typeof a==="string"||typeof a==="number")a=d("<div></div>").html(a);else{alert("SimpleModal Error: Unsupported data type: "+typeof a);return c}c.create(a);c.open();d.isFunction(c.o.onShow)&&c.o.onShow.apply(c,[c.d]);return c},create:function(a){var b=this;f=b.getDimensions();if(b.o.modal&&k)b.d.iframe=d('<iframe src="javascript:false;"></iframe>').css(d.extend(b.o.iframeCss,{display:"none",opacity:0,position:"fixed",height:f[0],width:f[1],zIndex:b.o.zIndex,top:0,left:0})).appendTo(b.o.appendTo);b.d.overlay=d("<div></div>").attr("id",b.o.overlayId).addClass("simplemodal-overlay").css(d.extend(b.o.overlayCss,{display:"none",opacity:b.o.opacity/100,height:b.o.modal?f[0]:0,width:b.o.modal?f[1]:0,position:"fixed",left:0,top:0,zIndex:b.o.zIndex+1})).appendTo(b.o.appendTo);b.d.container=d("<div></div>").attr("id",b.o.containerId).addClass("simplemodal-container").css(d.extend(b.o.containerCss,{display:"none",position:"fixed",zIndex:b.o.zIndex+2})).append(b.o.close&&b.o.closeHTML?d(b.o.closeHTML).addClass(b.o.closeClass):"").appendTo(b.o.appendTo);b.d.wrap=d("<div></div>").attr("tabIndex",-1).addClass("simplemodal-wrap").css({height:"100%",outline:0,width:"100%"}).appendTo(b.d.container);b.d.data=a.attr("id",a.attr("id")||b.o.dataId).addClass("simplemodal-data").css(d.extend(b.o.dataCss,{display:"none"})).appendTo("body");b.setContainerDimensions();b.d.data.appendTo(b.d.wrap);if(k||l)b.fixIE()},bindEvents:function(){var a=this;d("."+a.o.closeClass).bind("click.simplemodal",function(b){b.preventDefault();a.close()});a.o.modal&&a.o.close&&a.o.overlayClose&&a.d.overlay.bind("click.simplemodal",function(b){b.preventDefault();a.close()});d(document).bind("keydown.simplemodal",function(b){if(a.o.modal&&b.keyCode===9)a.watchTab(b);else if(a.o.close&&a.o.escClose&&b.keyCode===27){b.preventDefault();a.close()}});d(window).bind("resize.simplemodal",function(){f=a.getDimensions();a.o.autoResize?a.setContainerDimensions():a.o.autoPosition&&a.setPosition();if(k||l)a.fixIE();else if(a.o.modal){a.d.iframe&&a.d.iframe.css({height:f[0],width:f[1]});a.d.overlay.css({height:f[0],width:f[1]})}})},unbindEvents:function(){d("."+this.o.closeClass).unbind("click.simplemodal");d(document).unbind("keydown.simplemodal");d(window).unbind("resize.simplemodal");this.d.overlay.unbind("click.simplemodal")},fixIE:function(){var a=this,b=a.o.position;d.each([a.d.iframe||null,!a.o.modal?null:a.d.overlay,a.d.container],function(c,h){if(h){var g=h[0].style;g.position="absolute";if(c<2){g.removeExpression("height");g.removeExpression("width");g.setExpression("height",'document.body.scrollHeight > document.body.clientHeight ? document.body.scrollHeight : document.body.clientHeight + "px"');g.setExpression("width",'document.body.scrollWidth > document.body.clientWidth ? document.body.scrollWidth : document.body.clientWidth + "px"')}else{var e;if(b&&b.constructor===Array){c=b[0]?typeof b[0]==="number"?b[0].toString():b[0].replace(/px/,""):h.css("top").replace(/px/,"");c=c.indexOf("%")===-1?c+' + (t = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"':parseInt(c.replace(/%/,""))+' * ((document.documentElement.clientHeight || document.body.clientHeight) / 100) + (t = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"';if(b[1]){e=typeof b[1]==="number"?b[1].toString():b[1].replace(/px/,"");e=e.indexOf("%")===-1?e+' + (t = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft) + "px"':parseInt(e.replace(/%/,""))+' * ((document.documentElement.clientWidth || document.body.clientWidth) / 100) + (t = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft) + "px"'}}else{c='(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (t = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"';e='(document.documentElement.clientWidth || document.body.clientWidth) / 2 - (this.offsetWidth / 2) + (t = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft) + "px"'}g.removeExpression("top");g.removeExpression("left");g.setExpression("top",c);g.setExpression("left",e)}}})},focus:function(a){var b=this;a=a&&d.inArray(a,["first","last"])!==-1?a:"first";var c=d(":input:enabled:visible:"+a,b.d.wrap);setTimeout(function(){c.length>0?c.focus():b.d.wrap.focus()},10)},getDimensions:function(){var a=d(window);return[d.browser.opera&&d.browser.version>"9.5"&&d.fn.jquery<"1.3"||d.browser.opera&&d.browser.version<"9.5"&&d.fn.jquery>"1.2.6"?a[0].innerHeight:a.height(),a.width()]},getVal:function(a,b){return a?typeof a==="number"?a:a==="auto"?0:a.indexOf("%")>0?parseInt(a.replace(/%/,""))/100*(b==="h"?f[0]:f[1]):parseInt(a.replace(/px/,"")):null},update:function(a,b){var c=this;if(!c.d.data)return false;c.d.origHeight=c.getVal(a,"h");c.d.origWidth=c.getVal(b,"w");c.d.data.hide();a&&c.d.container.css("height",a);b&&c.d.container.css("width",b);c.setContainerDimensions();c.d.data.show();c.o.focus&&c.focus();c.unbindEvents();c.bindEvents()},setContainerDimensions:function(){var a=this,b=k||m,c=a.d.origHeight?a.d.origHeight:d.browser.opera?a.d.container.height():a.getVal(b?a.d.container[0].currentStyle.height:a.d.container.css("height"),"h");b=a.d.origWidth?a.d.origWidth:d.browser.opera?a.d.container.width():a.getVal(b?a.d.container[0].currentStyle.width:a.d.container.css("width"),"w");var h=a.d.data.outerHeight(true),g=a.d.data.outerWidth(true);a.d.origHeight=a.d.origHeight||c;a.d.origWidth=a.d.origWidth||b;var e=a.o.maxHeight?a.getVal(a.o.maxHeight,"h"):null,i=a.o.maxWidth?a.getVal(a.o.maxWidth,"w"):null;e=e&&e<f[0]?e:f[0];i=i&&i<f[1]?i:f[1];var j=a.o.minHeight?a.getVal(a.o.minHeight,"h"):"auto";c=c?a.o.autoResize&&c>e?e:c<j?j:c:h?h>e?e:a.o.minHeight&&j!=="auto"&&h<j?j:h:j;e=a.o.minWidth?a.getVal(a.o.minWidth,"w"):"auto";b=b?a.o.autoResize&&b>i?i:b<e?e:b:g?g>i?i:a.o.minWidth&&e!=="auto"&&g<e?e:g:e;a.d.container.css({height:c,width:b});a.d.wrap.css({overflow:h>c||g>b?"auto":"visible"});a.o.autoPosition&&a.setPosition()},setPosition:function(){var a=this,b,c;b=f[0]/2-a.d.container.outerHeight(true)/2;c=f[1]/2-a.d.container.outerWidth(true)/2;if(a.o.position&&Object.prototype.toString.call(a.o.position)==="[object Array]"){b=a.o.position[0]||b;c=a.o.position[1]||c}else{b=b;c=c}a.d.container.css({left:c,top:b})},watchTab:function(a){var b=this;if(d(a.target).parents(".simplemodal-container").length>0){b.inputs=d(":input:enabled:visible:first, :input:enabled:visible:last",b.d.data[0]);if(!a.shiftKey&&a.target===b.inputs[b.inputs.length-1]||a.shiftKey&&a.target===b.inputs[0]||b.inputs.length===0){a.preventDefault();b.focus(a.shiftKey?"last":"first")}}else{a.preventDefault();b.focus()}},open:function(){var a=this;a.d.iframe&&a.d.iframe.show();if(d.isFunction(a.o.onOpen))a.o.onOpen.apply(a,[a.d]);else{a.d.overlay.show();a.d.container.show();a.d.data.show()}a.o.focus&&a.focus();a.bindEvents()},close:function(){var a=this;if(!a.d.data)return false;a.unbindEvents();if(d.isFunction(a.o.onClose)&&!a.occb){a.occb=true;a.o.onClose.apply(a,[a.d])}else{if(a.d.placeholder){var b=d("#simplemodal-placeholder");if(a.o.persist)b.replaceWith(a.d.data.removeClass("simplemodal-data").css("display",a.display));else{a.d.data.hide().remove();b.replaceWith(a.d.orig)}}else a.d.data.hide().remove();a.d.container.hide().remove();a.d.overlay.hide();a.d.iframe&&a.d.iframe.hide().remove();setTimeout(function(){a.d.overlay.remove();a.d={}},10)}}}})(jQuery);;jQuery(function($){var SimpleModalLogin={init:function(){var s=this;s.error=[];$('.simplemodal-login, .simplemodal-register, .simplemodal-forgotpw').live('click.simplemodal-login',function(e){s.login=$('#loginform'),s.lostpw=$('#lostpasswordform'),s.register=$('#registerform');if($(this).hasClass('simplemodal-login')){s.form='#loginform';s.login.show();s.lostpw.hide();s.register.hide();}
else if($(this).hasClass('simplemodal-register')){s.form='#registerform';s.register.show();s.login.hide();s.lostpw.hide();}
else{s.form='#lostpasswordform';s.lostpw.show();s.login.hide();s.register.hide();}
s.url=this.href;if(!$('#simplemodal-login-container').length){$('#simplemodal-login-form').modal({overlayId:'simplemodal-login-overlay',containerId:'simplemodal-login-container',opacity:85,onShow:SimpleModalLogin.show,position:['15%',null]});}
else{SimpleModalLogin.show();}
return false;});if(SimpleModalLoginL10n['shortcut']==="true"){$(document).bind('keydown.simplemodal-login',SimpleModalLogin.keydown);}},show:function(obj){var s=SimpleModalLogin;s.dialog=obj||s.dialog;s.modal=s.modal||this;var form=$(s.form,s.dialog.data[0]),fields=$('.simplemodal-login-fields',form[0]),activity=$('.simplemodal-login-activity',form[0]);s.dialog.container.css({height:'auto'});s.clear(s.dialog.container[0]);form.unbind('submit.simplemodal-login').bind('submit.simplemodal-login',function(e){e.preventDefault();s.clear(s.dialog.container[0]);if(s.isValid(form)){fields.hide();activity.show();if(s.url&&s.url.indexOf('redirect_to')!==-1){var p=s.url.split('=');form.append($('<input type="hidden" name="redirect_to">').val(unescape(p[1])));}
$.ajax({url:form[0].action,data:form.serialize(),type:'POST',cache:false,success:function(resp){var data=$(document.createElement('div')).html(resp),redirect=$('#simplemodal-login-redirect',data[0]);if(redirect.length){var href=location.href;if(redirect.html().length){href=redirect.html();}
window.location=href;}
else{var error=$('#login_error',data[0]),message=$('.message',data[0]),loginform=$(s.form,data[0]);if(error.length){error.find('a').addClass('simplemodal-forgotpw');$('p:first',form[0]).before(error);activity.hide();fields.show();}
else if(message.length){if(s.form==='#lostpasswordform'||s.form==='#registerform'){form=s.login;s.lostpw.hide();s.register.hide();s.login.show();}
$('p:first',form[0]).before(message);activity.hide();fields.show();}
else if(loginform.length){s.showError(form,['empty_both']);activity.hide();fields.show();}}},error:function(xhr){$('p:first',form[0]).before($(document.createElement('div')).html('<strong>ERROR</strong>: '+xhr.statusText).attr('id','login_error'));activity.hide();fields.show();}});}
else{s.showError(form,s.error);}});},clear:function(context){$('#login_error, .message',context).remove();},isValid:function(form){var log=$('.user_login',form[0]),pass=$('.user_pass',form[0]),email=$('.user_email',form[0]),fields=$(':text, :password',form[0]),valid=true;SimpleModalLogin.error=[];if(log.length&&!$.trim(log.val())){SimpleModalLogin.error.push('empty_username');valid=false;}
else if(pass.length&&!$.trim(pass.val())){SimpleModalLogin.error.push('empty_password');valid=false;}
else if(email.length&&!$.trim(email.val())){SimpleModalLogin.error.push('empty_email');valid=false;}
var empty_count=0;fields.each(function(){if(!$.trim(this.value)){empty_count++;}});if(fields.length>1&&empty_count===fields.length){SimpleModalLogin.error=['empty_all'];valid=false;}
return valid;},keydown:function(e){if(e.altKey&&e.ctrlKey&&e.keyCode===76){$('.simplemodal-login').trigger('click.simplemodal-login');}},message:function(key){return SimpleModalLoginL10n[key]?SimpleModalLoginL10n[key].replace(/&gt;/g,'>').replace(/&lt;/g,'<'):key;},showError:function(form,keys){keys=$.map(keys,function(key){return SimpleModalLogin.message(key);});$('p:first',form[0]).before($('<div id="login_error"></div>').html(keys.join('<br/>')));}};SimpleModalLogin.init();});
