﻿
(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);});}});(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.sortList=function(options){var defaults=$.extend({$list:null},options);var links=[];var $items=defaults.$list.children('li').each(function(i){links[i]=$(this).clone().css({margin:0,width:'auto'});});return $(this).each(function(){$(this).click(function(){var letter=$(this).text();var $sortedList=$('<ul />');for(var i=0;i<links.length;i++){if(links[i].text().substr(0,1)==letter){$sortedList.append(links[i]);}
var $searchResults=$('<div />').attr({'class':'searchResults'}).html($sortedList);$('div.searchResults').replaceWith($searchResults);$searchResults.multiColumnListSlider({itemsPerColumn:7,columnWidth:283,gutterWidth:4});}
return false;});});};})(jQuery);(function($){$.fn.accordion=function(options){var settings=$.extend({openClass:'open'},options);return $(this).each(function(){$('ul#fields.accordion > li > h3').addClass(settings.openClass);var $accordion=$(this);$accordion.find('li div ul.accordion li div').hide();$accordion.find('h3').css({cursor:'pointer'}).click(function(){if(!$(this).hasClass('open')){var $container=$(this).next('div').eq(0).slideDown('fast',function(){$(this).prev('h3').eq(0).addClass(settings.openClass);});}else{var $container=$(this).next('div').eq(0).slideUp('fast',function(){$(this).prev('h3').eq(0).removeClass(settings.openClass);});}
return false;});});};})(jQuery);(function($){$.fn.clearText=function(){return this.each(function(){$(this).focus(function(){$(this).val('');});});};})(jQuery);(function($){$.fn.expander=function(options){var defaults=$.extend({moreText:'En savoir plus'},options);return this.each(function(){var $expandable=$(this);var startHeight=120;var endHeight=$expandable.height();if(endHeight>startHeight){$expandable.css({height:startHeight,overflow:'hidden'});var $more=$('<p />').attr({'class':'more'}).insertAfter($(this)).append('<a href="#" title="'+defaults.moreText+'">'+defaults.moreText+'</a>');$more.children('a').click(function(){var $a=$(this);if($expandable.height()==endHeight){$expandable.animate({height:startHeight},'fast',function(){$a.text(defaults.moreText);});}else{$expandable.animate({height:endHeight},'fast',function(){$a.text('[^]');});}
return false;});}});};})(jQuery);(function($){$.fn.dropDownMenu=function(options){var defaults=$.extend({duration:1000},options);return $(this).each(function(){var timer;var $menu=$(this).children('ul').hide();$(this).mouseover(function(){clearTimeout(timer);$(this).siblings('li').removeClass('active').children('ul').stop(true,true).hide();$(this).addClass('active').children('ul').slideDown({duration:'normal'});}).mouseout(function(){timer=setTimeout(function(){$menu.slideUp({duration:'fast'}).parent('li').removeClass('active');},defaults.duration);});});};})(jQuery);function createColumns($list,itemsPerColumn,columnWidth,gutterWidth){var currentColumnId=0;$list.children('li').css().each(function(i){if(i>(itemsPerColumn-1)+(itemsPerColumn*currentColumnId)){$(this).css({marginTop:-itemsPerColumn*($(this).height()+1)});currentColumnId++;}
$(this).css({marginLeft:(columnWidth+gutterWidth)*currentColumnId,width:columnWidth});});};(function($){$.fn.viewer=function(options){var defaults=$.extend({currentImageClass:'currentImage',maxButtonNum:10,nextButtonClass:'nextButton',nextButtonContent:'Next',nextButtonTitle:'Next',previousButtonClass:'previousButton',previousButtonContent:'Previous',previousButtonTitle:'Previous'},options);return $(this).each(function(){var $viewer=$(this);var $nav=$viewer.children('div.nav');var buttonWidth=parseFloat($nav.find('ul li').css('width').replace('px',''));var buttonMargin=parseFloat($nav.find('ul li').css('margin-right').replace('px',''));$nav.css({float:'left',marginLeft:buttonMargin,overflow:'hidden',width:defaults.maxButtonNum*(buttonWidth+buttonMargin)}).children('ul').css({width:$nav.find('ul li').length*(buttonWidth+buttonMargin)});var $img=$('<img />').css({height:'100%',width:0}).prependTo($viewer.children('div.image'));if($nav.find('ul li').length>defaults.maxButtonNum){var currentXPos=0;var maxXPos=-($nav.find('ul li').length*(buttonWidth+buttonMargin))+parseFloat($nav.css('width').replace('px',''));var $previousButton=$('<div />').attr({'class':defaults.previousButtonClass,'title':defaults.previousButtonTitle}).css({cursor:'pointer',float:'left'}).html(defaults.previousButtonContent).insertBefore($nav).click(function(){if(currentXPos<0){currentXPos+=buttonWidth+buttonMargin;slide($nav.children('ul'),currentXPos);}});var $nextButton=$('<div />').attr({'class':defaults.nextButtonClass,'title':defaults.nextButtonTitle}).css({cursor:'pointer',float:'left'}).html(defaults.nextButtonContent).insertAfter($nav).click(function(){if(currentXPos>maxXPos){currentXPos-=buttonWidth+buttonMargin;slide($nav.children('ul'),currentXPos);}});}
$nav.find('ul li a').click(function(){var href=$(this).attr('href');var title=$(this).attr('title');$nav.find('ul li a').removeClass(defaults.currentImageClass);$(this).addClass(defaults.currentImageClass);$viewer.find('div.image img').fadeOut('normal',function(){$(this).attr('src',href).fadeIn('normal');});$viewer.find('p.caption small').html(title);return false;});});};function slide($list,xPos){$list.animate({marginLeft:xPos},'fast');}})(jQuery);(function($){var ids={container:"#jMonthCalendar",head:"#CalendarHead",body:"#CalendarBody"};var _selectedDate;var _beginDate;var _endDate;var calendarEvents;var defaults={height:650,width:980,navHeight:25,labelHeight:25,firstDayOfWeek:0,calendarStartDate:new Date(),dragableEvents:false,activeDroppableClass:false,hoverDroppableClass:false,navLinks:{enableToday:true,enableNextYear:true,enablePrevYear:true,p:'&lsaquo; Prev',n:'Next &rsaquo;',t:'Today'},onMonthChanging:function(dateIn){return true;},onMonthChanged:function(dateIn){return true;},onEventLinkClick:function(event){return true;},onEventBlockClick:function(event){return true;},onEventBlockOver:function(event){return true;},onEventBlockOut:function(event){return true;},onDayLinkClick:function(date){return true;},onDayCellClick:function(date){return true;},onDayCellDblClick:function(dateIn){return true;},onEventDropped:function(event,newDate){return true;},locale:{days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat","Sun"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa","Su"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],weekMin:'wk'}};var getDateFromId=function(dateIdString){return new Date(dateIdString.substring(6,10),dateIdString.substring(2,4)-1,dateIdString.substring(4,6));};var getDateId=function(date){var month=((date.getMonth()+1)<10)?"0"+(date.getMonth()+1):(date.getMonth()+1);var day=(date.getDate()<10)?"0"+date.getDate():date.getDate();return"c_"+month+day+date.getFullYear();};var GetJSONDate=function(jsonDateString){var tDt,k;if(typeof jsonDateString=="string"){var isoRegPlus=/^([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2}).([0-9]{7})$/;var isoReg=/^([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})$/;var yyyyMMdd=/^([0-9]{4})-([0-9]{2})-([0-9]{2})$/;var newReg=/^new/;var stdReg=/^\\\/Date\(([0-9]{13})-([0-9]{4})\)\\\/$/;if(k=jsonDateString.match(isoRegPlus)){return new Date(k[1],k[2]-1,k[3]);}else if(k=jsonDateString.match(isoReg)){return new Date(k[1],k[2]-1,k[3]);}else if(k=jsonDateString.match(yyyyMMdd)){return new Date(k[1],k[2]-1,k[3]);}
if(k=jsonDateString.match(stdReg)){return new Date(k[1]);}
if(k=jsonDateString.match(newReg)){return eval('('+jsonDateString+')');}
return tdt;}};jQuery.jMonthCalendar=jQuery.J=function(){};jQuery.J.DrawCalendar=function(dateIn){var today=defaults.calendarStartDate;var d;if(dateIn==undefined){d=new Date(today.getFullYear(),today.getMonth(),1);}else{d=dateIn;d.setDate(1);}
var prevMonth=d.getMonth()==0?new Date(d.getFullYear()-1,11,1):new Date(d.getFullYear(),d.getMonth()-1,1);var prevMLink=jQuery('<div class="MonthNavPrev"><a href="" class="link-prev">'+defaults.navLinks.p+'</a></div>').click(function(){jQuery.J.ChangeMonth(prevMonth);return false;});var nextMonth=d.getMonth()==11?new Date(d.getFullYear()+1,0,1):new Date(d.getFullYear(),d.getMonth()+1,1);var nextMLink=jQuery('<div class="MonthNavNext"><a href="" class="link-next">'+defaults.navLinks.n+'</a></div>').click(function(){jQuery.J.ChangeMonth(nextMonth);return false;});var prevYear=new Date(d.getFullYear()-1,d.getMonth(),d.getDate());var prevYLink;if(defaults.navLinks.enablePrevYear){prevYLink=jQuery('<div class="YearNavPrev"><a href="">'+prevYear.getFullYear()+'</a></div>').click(function(){jQuery.J.ChangeMonth(prevYear);return false;});}
var nextYear=new Date(d.getFullYear()+1,d.getMonth(),d.getDate());var nextYLink;if(defaults.navLinks.enableNextYear){nextYLink=jQuery('<div class="YearNavNext"><a href="">'+nextYear.getFullYear()+'</a></div>').click(function(){jQuery.J.ChangeMonth(nextYear);return false;});}
var todayLink;if(defaults.navLinks.enableToday){todayLink=jQuery('<div class="TodayLink"><a href="" class="link-today">'+defaults.navLinks.t+'</a></div>').click(function(){jQuery.J.ChangeMonth(new Date());return false;});}
var navRow=jQuery('<tr><td colspan="7"><div class="FormHeader MonthNavigation"></div></td></tr>').css({"height":defaults.navHeight});var monthNavHead=jQuery('.MonthNavigation',navRow);var $currentMonthName=jQuery('<div class="MonthName"></div>').html(defaults.locale.months[d.getMonth()]+" "+d.getFullYear());monthNavHead.append(prevMLink,$currentMonthName,nextMLink);if(defaults.navLinks.enableToday){monthNavHead.append(todayLink);}
if(defaults.navLinks.enableNextYear){monthNavHead.append(nextYLink);}
if(defaults.navLinks.enablePrevYear){monthNavHead.append(prevYLink);}
var headRow=jQuery("<tr></tr>").css({"height":defaults.labelHeight});for(var i=defaults.firstDayOfWeek;i<defaults.firstDayOfWeek+7;i++){var weekday=i%7;var wordday=defaults.locale.daysMin[weekday];headRow.append('<th title="'+wordday+'" class="DateHeader'+(weekday==0||weekday==6?' Weekend':'')+'"><span>'+wordday+'</span></th>');}
headRow=jQuery("<thead id=\"CalendarHead\"></thead>").append(headRow);headRow=headRow.prepend(navRow);var tBody=jQuery('<tbody id="CalendarBody"></tbody>');var isCurrentMonth=(d.getMonth()==today.getMonth()&&d.getFullYear()==today.getFullYear());var maxDays=Date.getDaysInMonth(d.getFullYear(),d.getMonth());var curDay=defaults.firstDayOfWeek-d.getDay();if(curDay>0)curDay-=7
var t=(maxDays+Math.abs(curDay));_beginDate=new Date(d.getFullYear(),d.getMonth(),curDay+1);_endDate=new Date(d.getFullYear(),d.getMonth()+1,(7-(t%=7))==7?0:(7-(t%=7)));var _currentDate=new Date(_beginDate.getFullYear(),_beginDate.getMonth(),_beginDate.getDate());var rowCount=0;var rowHeight=(defaults.height-defaults.labelHeight-defaults.navHeight)/Math.ceil((maxDays+Math.abs(curDay))/7);do{var thisRow=jQuery("<tr></tr>");thisRow.css({"height":rowHeight+"px"});for(var i=0;i<7;i++){var weekday=(defaults.firstDayOfWeek+i)%7;var atts={'class':"DateBox"+(weekday==0||weekday==6?' Weekend ':''),'date':_currentDate.toString("M/d/yyyy"),'id':getDateId(_currentDate)};if(curDay<0||curDay>=maxDays){atts['class']+=' Inactive';}else{d.setDate(curDay+1);}
if(isCurrentMonth&&curDay+1==today.getDate()){dayStr=curDay+1;atts['class']+=' Today';}
var dateLink=jQuery('<div class="DateLabel">'+_currentDate.getDate()+'</div>').click(function(e){defaults.onDayLinkClick(new Date($(this).parent().attr("date")));e.stopPropagation();});var dateBox=jQuery("<td></td>").attr(atts).append(dateLink).dblclick(function(e){defaults.onDayCellDblClick(new Date($(this).attr("date")));e.stopPropagation();}).click(function(e){defaults.onDayCellClick(new Date($(this).attr("date")));e.stopPropagation();});if(defaults.dragableEvents){dateBox.droppable({hoverClass:defaults.hoverDroppableClass,activeClass:defaults.activeDroppableClass,drop:function(e,ui){ui.draggable.attr("style","position: relative; display: block;");$(this).append(ui.draggable);var event;$.each(calendarEvents,function(){if(this.EventID==ui.draggable.attr("id")){event=this;}});defaults.onEventDropped(event,$(this).attr("date"));return false;}});}
thisRow.append(dateBox);curDay++;_currentDate.addDays(1);}
rowCount++;tBody.append(thisRow);}while(curDay<maxDays);var a=jQuery(ids.container).css({"width":defaults.width+"px","height":defaults.height+"px"});var cal=jQuery('<table class="MonthlyCalendar" cellpadding="0" tablespacing="0"></table>').append(headRow,tBody);a.hide();a.html(cal);a.fadeIn("normal");DrawEventsOnCalendar();}
var DrawEventsOnCalendar=function(){if(calendarEvents&&calendarEvents.length>0){var headHeight=defaults.labelHeight+defaults.navHeight;var dtLabelHeight=jQuery(".DateLabel:first",ids.container).outerHeight();jQuery.each(calendarEvents,function(){var ev=this;var sDt,eDt;if(ev.StartDateTime){if(typeof ev.StartDateTime=='object'&&ev.StartDateTime.getDate){sDt=ev.StartDateTime;}
if(typeof ev.StartDateTime=='string'&&ev.StartDateTime.split){sDt=GetJSONDate(ev.StartDateTime);}}else if(ev.Date){if(typeof ev.Date=='object'&&ev.Date.getDate){sDt=ev.Date;}
if(typeof ev.Date=='string'&&ev.Date.split){sDt=GetJSONDate(ev.Date);}}else{return;}
if(ev.EndDateTime){if(typeof ev.EndDateTime=='object'&&ev.EndDateTime.getDate){eDt=ev.EndDateTime;}
if(typeof ev.EndDateTime=='string'&&ev.EndDateTime.split){eDt=GetJSONDate(ev.EndDateTime);}}
if(sDt){if((sDt>=_beginDate)&&(sDt<=_endDate)){var cell=jQuery("#"+getDateId(sDt),jQuery(ids.container));var label=jQuery(".DateLabel",cell);var currentDate=cell.attr('id').substr(4,2);var link=jQuery('<a />').attr({'class':'tooltip','href':ev.URL,'title':ev.Description}).text(currentDate);link.click(function(e){defaults.onEventLinkClick(ev);e.stopPropagation();});var event=jQuery('<div />').html(link);if(ev.CssClass){event.addClass(ev.CssClass)}
event.click(function(e){defaults.onEventBlockClick(ev);e.stopPropagation();});event.hover(function(){defaults.onEventBlockOver(ev);},function(){defaults.onEventBlockOut(ev);})
if(defaults.dragableEvents){event.draggable({containment:'#CalendarBody'});}
event.hide();cell.find('*').replaceWith(event);event.fadeIn("normal");}}});}}
var ClearEventsOnCalendar=function(){jQuery(".Event",jQuery(ids.container)).remove();}
jQuery.J.AddEvents=function(eventCollection){if(eventCollection){if(eventCollection.length>1){jQuery.each(eventCollection,function(){calendarEvents.push(this);});}else{calendarEvents.push(eventCollection);}
ClearEventsOnCalendar();DrawEventsOnCalendar();}}
jQuery.J.ReplaceEventCollection=function(eventCollection){if(eventCollection){calendarEvents=eventCollection;}}
jQuery.J.ChangeMonth=function(dateIn){defaults.onMonthChanging(dateIn);jQuery.J.DrawCalendar(dateIn);defaults.onMonthChanged(dateIn);}
jQuery.J.Initialize=function(options,events){var today=new Date();options=jQuery.extend(defaults,options);jQuery.J.DrawCalendar();if(events)
{calendarEvents=events;DrawEventsOnCalendar();}};})(jQuery);Date.CultureInfo={name:"en-US",englishName:"English (United States)",nativeName:"English (United States)",dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],abbreviatedDayNames:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],shortestDayNames:["Su","Mo","Tu","We","Th","Fr","Sa"],firstLetterDayNames:["S","M","T","W","T","F","S"],monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],abbreviatedMonthNames:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],amDesignator:"AM",pmDesignator:"PM",firstDayOfWeek:0,twoDigitYearMax:2029,dateElementOrder:"mdy",formatPatterns:{shortDate:"M/d/yyyy",longDate:"dddd, MMMM dd, yyyy",shortTime:"h:mm tt",longTime:"h:mm:ss tt",fullDateTime:"dddd, MMMM dd, yyyy h:mm:ss tt",sortableDateTime:"yyyy-MM-ddTHH:mm:ss",universalSortableDateTime:"yyyy-MM-dd HH:mm:ssZ",rfc1123:"ddd, dd MMM yyyy HH:mm:ss GMT",monthDay:"MMMM dd",yearMonth:"MMMM, yyyy"},regexPatterns:{jan:/^jan(uary)?/i,feb:/^feb(ruary)?/i,mar:/^mar(ch)?/i,apr:/^apr(il)?/i,may:/^may/i,jun:/^jun(e)?/i,jul:/^jul(y)?/i,aug:/^aug(ust)?/i,sep:/^sep(t(ember)?)?/i,oct:/^oct(ober)?/i,nov:/^nov(ember)?/i,dec:/^dec(ember)?/i,sun:/^su(n(day)?)?/i,mon:/^mo(n(day)?)?/i,tue:/^tu(e(s(day)?)?)?/i,wed:/^we(d(nesday)?)?/i,thu:/^th(u(r(s(day)?)?)?)?/i,fri:/^fr(i(day)?)?/i,sat:/^sa(t(urday)?)?/i,future:/^next/i,past:/^last|past|prev(ious)?/i,add:/^(\+|after|from)/i,subtract:/^(\-|before|ago)/i,yesterday:/^yesterday/i,today:/^t(oday)?/i,tomorrow:/^tomorrow/i,now:/^n(ow)?/i,millisecond:/^ms|milli(second)?s?/i,second:/^sec(ond)?s?/i,minute:/^min(ute)?s?/i,hour:/^h(ou)?rs?/i,week:/^w(ee)?k/i,month:/^m(o(nth)?s?)?/i,day:/^d(ays?)?/i,year:/^y((ea)?rs?)?/i,shortMeridian:/^(a|p)/i,longMeridian:/^(a\.?m?\.?|p\.?m?\.?)/i,timezone:/^((e(s|d)t|c(s|d)t|m(s|d)t|p(s|d)t)|((gmt)?\s*(\+|\-)\s*\d\d\d\d?)|gmt)/i,ordinalSuffix:/^\s*(st|nd|rd|th)/i,timeContext:/^\s*(\:|a|p)/i},abbreviatedTimeZoneStandard:{GMT:"-000",EST:"-0400",CST:"-0500",MST:"-0600",PST:"-0700"},abbreviatedTimeZoneDST:{GMT:"-000",EDT:"-0500",CDT:"-0600",MDT:"-0700",PDT:"-0800"}};Date.getMonthNumberFromName=function(name){var n=Date.CultureInfo.monthNames,m=Date.CultureInfo.abbreviatedMonthNames,s=name.toLowerCase();for(var i=0;i<n.length;i++){if(n[i].toLowerCase()==s||m[i].toLowerCase()==s){return i;}}
return-1;};Date.getDayNumberFromName=function(name){var n=Date.CultureInfo.dayNames,m=Date.CultureInfo.abbreviatedDayNames,o=Date.CultureInfo.shortestDayNames,s=name.toLowerCase();for(var i=0;i<n.length;i++){if(n[i].toLowerCase()==s||m[i].toLowerCase()==s){return i;}}
return-1;};Date.isLeapYear=function(year){return(((year%4===0)&&(year%100!==0))||(year%400===0));};Date.getDaysInMonth=function(year,month){return[31,(Date.isLeapYear(year)?29:28),31,30,31,30,31,31,30,31,30,31][month];};Date.getTimezoneOffset=function(s,dst){return(dst||false)?Date.CultureInfo.abbreviatedTimeZoneDST[s.toUpperCase()]:Date.CultureInfo.abbreviatedTimeZoneStandard[s.toUpperCase()];};Date.getTimezoneAbbreviation=function(offset,dst){var n=(dst||false)?Date.CultureInfo.abbreviatedTimeZoneDST:Date.CultureInfo.abbreviatedTimeZoneStandard,p;for(p in n){if(n[p]===offset){return p;}}
return null;};Date.prototype.clone=function(){return new Date(this.getTime());};Date.prototype.compareTo=function(date){if(isNaN(this)){throw new Error(this);}
if(date instanceof Date&&!isNaN(date)){return(this>date)?1:(this<date)?-1:0;}else{throw new TypeError(date);}};Date.prototype.equals=function(date){return(this.compareTo(date)===0);};Date.prototype.between=function(start,end){var t=this.getTime();return t>=start.getTime()&&t<=end.getTime();};Date.prototype.addMilliseconds=function(value){this.setMilliseconds(this.getMilliseconds()+value);return this;};Date.prototype.addSeconds=function(value){return this.addMilliseconds(value*1000);};Date.prototype.addMinutes=function(value){return this.addMilliseconds(value*60000);};Date.prototype.addHours=function(value){return this.addMilliseconds(value*3600000);};Date.prototype.addDays=function(value){return this.addMilliseconds(value*86400000);};Date.prototype.addWeeks=function(value){return this.addMilliseconds(value*604800000);};Date.prototype.addMonths=function(value){var n=this.getDate();this.setDate(1);this.setMonth(this.getMonth()+value);this.setDate(Math.min(n,this.getDaysInMonth()));return this;};Date.prototype.addYears=function(value){return this.addMonths(value*12);};Date.prototype.add=function(config){if(typeof config=="number"){this._orient=config;return this;}
var x=config;if(x.millisecond||x.milliseconds){this.addMilliseconds(x.millisecond||x.milliseconds);}
if(x.second||x.seconds){this.addSeconds(x.second||x.seconds);}
if(x.minute||x.minutes){this.addMinutes(x.minute||x.minutes);}
if(x.hour||x.hours){this.addHours(x.hour||x.hours);}
if(x.month||x.months){this.addMonths(x.month||x.months);}
if(x.year||x.years){this.addYears(x.year||x.years);}
if(x.day||x.days){this.addDays(x.day||x.days);}
return this;};Date._validate=function(value,min,max,name){if(typeof value!="number"){throw new TypeError(value+" is not a Number.");}else if(value<min||value>max){throw new RangeError(value+" is not a valid value for "+name+".");}
return true;};Date.validateMillisecond=function(n){return Date._validate(n,0,999,"milliseconds");};Date.validateSecond=function(n){return Date._validate(n,0,59,"seconds");};Date.validateMinute=function(n){return Date._validate(n,0,59,"minutes");};Date.validateHour=function(n){return Date._validate(n,0,23,"hours");};Date.validateDay=function(n,year,month){return Date._validate(n,1,Date.getDaysInMonth(year,month),"days");};Date.validateMonth=function(n){return Date._validate(n,0,11,"months");};Date.validateYear=function(n){return Date._validate(n,1,9999,"seconds");};Date.prototype.set=function(config){var x=config;if(!x.millisecond&&x.millisecond!==0){x.millisecond=-1;}
if(!x.second&&x.second!==0){x.second=-1;}
if(!x.minute&&x.minute!==0){x.minute=-1;}
if(!x.hour&&x.hour!==0){x.hour=-1;}
if(!x.day&&x.day!==0){x.day=-1;}
if(!x.month&&x.month!==0){x.month=-1;}
if(!x.year&&x.year!==0){x.year=-1;}
if(x.millisecond!=-1&&Date.validateMillisecond(x.millisecond)){this.addMilliseconds(x.millisecond-this.getMilliseconds());}
if(x.second!=-1&&Date.validateSecond(x.second)){this.addSeconds(x.second-this.getSeconds());}
if(x.minute!=-1&&Date.validateMinute(x.minute)){this.addMinutes(x.minute-this.getMinutes());}
if(x.hour!=-1&&Date.validateHour(x.hour)){this.addHours(x.hour-this.getHours());}
if(x.month!==-1&&Date.validateMonth(x.month)){this.addMonths(x.month-this.getMonth());}
if(x.year!=-1&&Date.validateYear(x.year)){this.addYears(x.year-this.getFullYear());}
if(x.day!=-1&&Date.validateDay(x.day,this.getFullYear(),this.getMonth())){this.addDays(x.day-this.getDate());}
if(x.timezone){this.setTimezone(x.timezone);}
if(x.timezoneOffset){this.setTimezoneOffset(x.timezoneOffset);}
return this;};Date.prototype.clearTime=function(){this.setHours(0);this.setMinutes(0);this.setSeconds(0);this.setMilliseconds(0);return this;};Date.prototype.isLeapYear=function(){var y=this.getFullYear();return(((y%4===0)&&(y%100!==0))||(y%400===0));};Date.prototype.isWeekday=function(){return!(this.is().sat()||this.is().sun());};Date.prototype.getDaysInMonth=function(){return Date.getDaysInMonth(this.getFullYear(),this.getMonth());};Date.prototype.moveToFirstDayOfMonth=function(){return this.set({day:1});};Date.prototype.moveToLastDayOfMonth=function(){return this.set({day:this.getDaysInMonth()});};Date.prototype.moveToDayOfWeek=function(day,orient){var diff=(day-this.getDay()+7*(orient||+1))%7;return this.addDays((diff===0)?diff+=7*(orient||+1):diff);};Date.prototype.moveToMonth=function(month,orient){var diff=(month-this.getMonth()+12*(orient||+1))%12;return this.addMonths((diff===0)?diff+=12*(orient||+1):diff);};Date.prototype.getDayOfYear=function(){return Math.floor((this-new Date(this.getFullYear(),0,1))/86400000);};Date.prototype.getWeekOfYear=function(firstDayOfWeek){var y=this.getFullYear(),m=this.getMonth(),d=this.getDate();var dow=firstDayOfWeek||Date.CultureInfo.firstDayOfWeek;var offset=7+1-new Date(y,0,1).getDay();if(offset==8){offset=1;}
var daynum=((Date.UTC(y,m,d,0,0,0)-Date.UTC(y,0,1,0,0,0))/86400000)+1;var w=Math.floor((daynum-offset+7)/7);if(w===dow){y--;var prevOffset=7+1-new Date(y,0,1).getDay();if(prevOffset==2||prevOffset==8){w=53;}else{w=52;}}
return w;};Date.prototype.isDST=function(){console.log('isDST');return this.toString().match(/(E|C|M|P)(S|D)T/)[2]=="D";};Date.prototype.getTimezone=function(){return Date.getTimezoneAbbreviation(this.getUTCOffset,this.isDST());};Date.prototype.setTimezoneOffset=function(s){var here=this.getTimezoneOffset(),there=Number(s)*-6/10;this.addMinutes(there-here);return this;};Date.prototype.setTimezone=function(s){return this.setTimezoneOffset(Date.getTimezoneOffset(s));};Date.prototype.getUTCOffset=function(){var n=this.getTimezoneOffset()*-10/6,r;if(n<0){r=(n-10000).toString();return r[0]+r.substr(2);}else{r=(n+10000).toString();return"+"+r.substr(1);}};Date.prototype.getDayName=function(abbrev){return abbrev?Date.CultureInfo.abbreviatedDayNames[this.getDay()]:Date.CultureInfo.dayNames[this.getDay()];};Date.prototype.getMonthName=function(abbrev){return abbrev?Date.CultureInfo.abbreviatedMonthNames[this.getMonth()]:Date.CultureInfo.monthNames[this.getMonth()];};Date.prototype._toString=Date.prototype.toString;Date.prototype.toString=function(format){var self=this;var p=function p(s){return(s.toString().length==1)?"0"+s:s;};return format?format.replace(/dd?d?d?|MM?M?M?|yy?y?y?|hh?|HH?|mm?|ss?|tt?|zz?z?/g,function(format){switch(format){case"hh":return p(self.getHours()<13?self.getHours():(self.getHours()-12));case"h":return self.getHours()<13?self.getHours():(self.getHours()-12);case"HH":return p(self.getHours());case"H":return self.getHours();case"mm":return p(self.getMinutes());case"m":return self.getMinutes();case"ss":return p(self.getSeconds());case"s":return self.getSeconds();case"yyyy":return self.getFullYear();case"yy":return self.getFullYear().toString().substring(2,4);case"dddd":return self.getDayName();case"ddd":return self.getDayName(true);case"dd":return p(self.getDate());case"d":return self.getDate().toString();case"MMMM":return self.getMonthName();case"MMM":return self.getMonthName(true);case"MM":return p((self.getMonth()+1));case"M":return self.getMonth()+1;case"t":return self.getHours()<12?Date.CultureInfo.amDesignator.substring(0,1):Date.CultureInfo.pmDesignator.substring(0,1);case"tt":return self.getHours()<12?Date.CultureInfo.amDesignator:Date.CultureInfo.pmDesignator;case"zzz":case"zz":case"z":return"";}}):this._toString();};Date.now=function(){return new Date();};Date.today=function(){return Date.now().clearTime();};Date.prototype._orient=+1;Date.prototype.next=function(){this._orient=+1;return this;};Date.prototype.last=Date.prototype.prev=Date.prototype.previous=function(){this._orient=-1;return this;};Date.prototype._is=false;Date.prototype.is=function(){this._is=true;return this;};Number.prototype._dateElement="day";Number.prototype.fromNow=function(){var c={};c[this._dateElement]=this;return Date.now().add(c);};Number.prototype.ago=function(){var c={};c[this._dateElement]=this*-1;return Date.now().add(c);};(function(){var $D=Date.prototype,$N=Number.prototype;var dx=("sunday monday tuesday wednesday thursday friday saturday").split(/\s/),mx=("january february march april may june july august september october november december").split(/\s/),px=("Millisecond Second Minute Hour Day Week Month Year").split(/\s/),de;var df=function(n){return function(){if(this._is){this._is=false;return this.getDay()==n;}
return this.moveToDayOfWeek(n,this._orient);};};for(var i=0;i<dx.length;i++){$D[dx[i]]=$D[dx[i].substring(0,3)]=df(i);}
var mf=function(n){return function(){if(this._is){this._is=false;return this.getMonth()===n;}
return this.moveToMonth(n,this._orient);};};for(var j=0;j<mx.length;j++){$D[mx[j]]=$D[mx[j].substring(0,3)]=mf(j);}
var ef=function(j){return function(){if(j.substring(j.length-1)!="s"){j+="s";}
return this["add"+j](this._orient);};};var nf=function(n){return function(){this._dateElement=n;return this;};};for(var k=0;k<px.length;k++){de=px[k].toLowerCase();$D[de]=$D[de+"s"]=ef(px[k]);$N[de]=$N[de+"s"]=nf(de);}}());Date.prototype.toJSONString=function(){return this.toString("yyyy-MM-ddThh:mm:ssZ");};Date.prototype.toShortDateString=function(){return this.toString(Date.CultureInfo.formatPatterns.shortDatePattern);};Date.prototype.toLongDateString=function(){return this.toString(Date.CultureInfo.formatPatterns.longDatePattern);};Date.prototype.toShortTimeString=function(){return this.toString(Date.CultureInfo.formatPatterns.shortTimePattern);};Date.prototype.toLongTimeString=function(){return this.toString(Date.CultureInfo.formatPatterns.longTimePattern);};Date.prototype.getOrdinal=function(){switch(this.getDate()){case 1:case 21:case 31:return"st";case 2:case 22:return"nd";case 3:case 23:return"rd";default:return"th";}};(function(){Date.Parsing={Exception:function(s){this.message="Parse error at '"+s.substring(0,10)+" ...'";}};var $P=Date.Parsing;var _=$P.Operators={rtoken:function(r){return function(s){var mx=s.match(r);if(mx){return([mx[0],s.substring(mx[0].length)]);}else{throw new $P.Exception(s);}};},token:function(s){return function(s){return _.rtoken(new RegExp("^\s*"+s+"\s*"))(s);};},stoken:function(s){return _.rtoken(new RegExp("^"+s));},until:function(p){return function(s){var qx=[],rx=null;while(s.length){try{rx=p.call(this,s);}catch(e){qx.push(rx[0]);s=rx[1];continue;}
break;}
return[qx,s];};},many:function(p){return function(s){var rx=[],r=null;while(s.length){try{r=p.call(this,s);}catch(e){return[rx,s];}
rx.push(r[0]);s=r[1];}
return[rx,s];};},optional:function(p){return function(s){var r=null;try{r=p.call(this,s);}catch(e){return[null,s];}
return[r[0],r[1]];};},not:function(p){return function(s){try{p.call(this,s);}catch(e){return[null,s];}
throw new $P.Exception(s);};},ignore:function(p){return p?function(s){var r=null;r=p.call(this,s);return[null,r[1]];}:null;},product:function(){var px=arguments[0],qx=Array.prototype.slice.call(arguments,1),rx=[];for(var i=0;i<px.length;i++){rx.push(_.each(px[i],qx));}
return rx;},cache:function(rule){var cache={},r=null;return function(s){try{r=cache[s]=(cache[s]||rule.call(this,s));}catch(e){r=cache[s]=e;}
if(r instanceof $P.Exception){throw r;}else{return r;}};},any:function(){var px=arguments;return function(s){var r=null;for(var i=0;i<px.length;i++){if(px[i]==null){continue;}
try{r=(px[i].call(this,s));}catch(e){r=null;}
if(r){return r;}}
throw new $P.Exception(s);};},each:function(){var px=arguments;return function(s){var rx=[],r=null;for(var i=0;i<px.length;i++){if(px[i]==null){continue;}
try{r=(px[i].call(this,s));}catch(e){throw new $P.Exception(s);}
rx.push(r[0]);s=r[1];}
return[rx,s];};},all:function(){var px=arguments,_=_;return _.each(_.optional(px));},sequence:function(px,d,c){d=d||_.rtoken(/^\s*/);c=c||null;if(px.length==1){return px[0];}
return function(s){var r=null,q=null;var rx=[];for(var i=0;i<px.length;i++){try{r=px[i].call(this,s);}catch(e){break;}
rx.push(r[0]);try{q=d.call(this,r[1]);}catch(ex){q=null;break;}
s=q[1];}
if(!r){throw new $P.Exception(s);}
if(q){throw new $P.Exception(q[1]);}
if(c){try{r=c.call(this,r[1]);}catch(ey){throw new $P.Exception(r[1]);}}
return[rx,(r?r[1]:s)];};},between:function(d1,p,d2){d2=d2||d1;var _fn=_.each(_.ignore(d1),p,_.ignore(d2));return function(s){var rx=_fn.call(this,s);return[[rx[0][0],r[0][2]],rx[1]];};},list:function(p,d,c){d=d||_.rtoken(/^\s*/);c=c||null;return(p instanceof Array?_.each(_.product(p.slice(0,-1),_.ignore(d)),p.slice(-1),_.ignore(c)):_.each(_.many(_.each(p,_.ignore(d))),px,_.ignore(c)));},set:function(px,d,c){d=d||_.rtoken(/^\s*/);c=c||null;return function(s){var r=null,p=null,q=null,rx=null,best=[[],s],last=false;for(var i=0;i<px.length;i++){q=null;p=null;r=null;last=(px.length==1);try{r=px[i].call(this,s);}catch(e){continue;}
rx=[[r[0]],r[1]];if(r[1].length>0&&!last){try{q=d.call(this,r[1]);}catch(ex){last=true;}}else{last=true;}
if(!last&&q[1].length===0){last=true;}
if(!last){var qx=[];for(var j=0;j<px.length;j++){if(i!=j){qx.push(px[j]);}}
p=_.set(qx,d).call(this,q[1]);if(p[0].length>0){rx[0]=rx[0].concat(p[0]);rx[1]=p[1];}}
if(rx[1].length<best[1].length){best=rx;}
if(best[1].length===0){break;}}
if(best[0].length===0){return best;}
if(c){try{q=c.call(this,best[1]);}catch(ey){throw new $P.Exception(best[1]);}
best[1]=q[1];}
return best;};},forward:function(gr,fname){return function(s){return gr[fname].call(this,s);};},replace:function(rule,repl){return function(s){var r=rule.call(this,s);return[repl,r[1]];};},process:function(rule,fn){return function(s){var r=rule.call(this,s);return[fn.call(this,r[0]),r[1]];};},min:function(min,rule){return function(s){var rx=rule.call(this,s);if(rx[0].length<min){throw new $P.Exception(s);}
return rx;};}};var _generator=function(op){return function(){var args=null,rx=[];if(arguments.length>1){args=Array.prototype.slice.call(arguments);}else if(arguments[0]instanceof Array){args=arguments[0];}
if(args){for(var i=0,px=args.shift();i<px.length;i++){args.unshift(px[i]);rx.push(op.apply(null,args));args.shift();return rx;}}else{return op.apply(null,arguments);}};};var gx="optional not ignore cache".split(/\s/);for(var i=0;i<gx.length;i++){_[gx[i]]=_generator(_[gx[i]]);}
var _vector=function(op){return function(){if(arguments[0]instanceof Array){return op.apply(null,arguments[0]);}else{return op.apply(null,arguments);}};};var vx="each any all".split(/\s/);for(var j=0;j<vx.length;j++){_[vx[j]]=_vector(_[vx[j]]);}}());(function(){var flattenAndCompact=function(ax){var rx=[];for(var i=0;i<ax.length;i++){if(ax[i]instanceof Array){rx=rx.concat(flattenAndCompact(ax[i]));}else{if(ax[i]){rx.push(ax[i]);}}}
return rx;};Date.Grammar={};Date.Translator={hour:function(s){return function(){this.hour=Number(s);};},minute:function(s){return function(){this.minute=Number(s);};},second:function(s){return function(){this.second=Number(s);};},meridian:function(s){return function(){this.meridian=s.slice(0,1).toLowerCase();};},timezone:function(s){return function(){var n=s.replace(/[^\d\+\-]/g,"");if(n.length){this.timezoneOffset=Number(n);}else{this.timezone=s.toLowerCase();}};},day:function(x){var s=x[0];return function(){this.day=Number(s.match(/\d+/)[0]);};},month:function(s){return function(){this.month=((s.length==3)?Date.getMonthNumberFromName(s):(Number(s)-1));};},year:function(s){return function(){var n=Number(s);this.year=((s.length>2)?n:(n+(((n+2000)<Date.CultureInfo.twoDigitYearMax)?2000:1900)));};},rday:function(s){return function(){switch(s){case"yesterday":this.days=-1;break;case"tomorrow":this.days=1;break;case"today":this.days=0;break;case"now":this.days=0;this.now=true;break;}};},finishExact:function(x){x=(x instanceof Array)?x:[x];var now=new Date();this.year=now.getFullYear();this.month=now.getMonth();this.day=1;this.hour=0;this.minute=0;this.second=0;for(var i=0;i<x.length;i++){if(x[i]){x[i].call(this);}}
this.hour=(this.meridian=="p"&&this.hour<13)?this.hour+12:this.hour;if(this.day>Date.getDaysInMonth(this.year,this.month)){throw new RangeError(this.day+" is not a valid value for days.");}
var r=new Date(this.year,this.month,this.day,this.hour,this.minute,this.second);if(this.timezone){r.set({timezone:this.timezone});}else if(this.timezoneOffset){r.set({timezoneOffset:this.timezoneOffset});}
return r;},finish:function(x){x=(x instanceof Array)?flattenAndCompact(x):[x];if(x.length===0){return null;}
for(var i=0;i<x.length;i++){if(typeof x[i]=="function"){x[i].call(this);}}
if(this.now){return new Date();}
var today=Date.today();var method=null;var expression=!!(this.days!=null||this.orient||this.operator);if(expression){var gap,mod,orient;orient=((this.orient=="past"||this.operator=="subtract")?-1:1);if(this.weekday){this.unit="day";gap=(Date.getDayNumberFromName(this.weekday)-today.getDay());mod=7;this.days=gap?((gap+(orient*mod))%mod):(orient*mod);}
if(this.month){this.unit="month";gap=(this.month-today.getMonth());mod=12;this.months=gap?((gap+(orient*mod))%mod):(orient*mod);this.month=null;}
if(!this.unit){this.unit="day";}
if(this[this.unit+"s"]==null||this.operator!=null){if(!this.value){this.value=1;}
if(this.unit=="week"){this.unit="day";this.value=this.value*7;}
this[this.unit+"s"]=this.value*orient;}
return today.add(this);}else{if(this.meridian&&this.hour){this.hour=(this.hour<13&&this.meridian=="p")?this.hour+12:this.hour;}
if(this.weekday&&!this.day){this.day=(today.addDays((Date.getDayNumberFromName(this.weekday)-today.getDay()))).getDate();}
if(this.month&&!this.day){this.day=1;}
return today.set(this);}}};var _=Date.Parsing.Operators,g=Date.Grammar,t=Date.Translator,_fn;g.datePartDelimiter=_.rtoken(/^([\s\-\.\,\/\x27]+)/);g.timePartDelimiter=_.stoken(":");g.whiteSpace=_.rtoken(/^\s*/);g.generalDelimiter=_.rtoken(/^(([\s\,]|at|on)+)/);var _C={};g.ctoken=function(keys){var fn=_C[keys];if(!fn){var c=Date.CultureInfo.regexPatterns;var kx=keys.split(/\s+/),px=[];for(var i=0;i<kx.length;i++){px.push(_.replace(_.rtoken(c[kx[i]]),kx[i]));}
fn=_C[keys]=_.any.apply(null,px);}
return fn;};g.ctoken2=function(key){return _.rtoken(Date.CultureInfo.regexPatterns[key]);};g.h=_.cache(_.process(_.rtoken(/^(0[0-9]|1[0-2]|[1-9])/),t.hour));g.hh=_.cache(_.process(_.rtoken(/^(0[0-9]|1[0-2])/),t.hour));g.H=_.cache(_.process(_.rtoken(/^([0-1][0-9]|2[0-3]|[0-9])/),t.hour));g.HH=_.cache(_.process(_.rtoken(/^([0-1][0-9]|2[0-3])/),t.hour));g.m=_.cache(_.process(_.rtoken(/^([0-5][0-9]|[0-9])/),t.minute));g.mm=_.cache(_.process(_.rtoken(/^[0-5][0-9]/),t.minute));g.s=_.cache(_.process(_.rtoken(/^([0-5][0-9]|[0-9])/),t.second));g.ss=_.cache(_.process(_.rtoken(/^[0-5][0-9]/),t.second));g.hms=_.cache(_.sequence([g.H,g.mm,g.ss],g.timePartDelimiter));g.t=_.cache(_.process(g.ctoken2("shortMeridian"),t.meridian));g.tt=_.cache(_.process(g.ctoken2("longMeridian"),t.meridian));g.z=_.cache(_.process(_.rtoken(/^(\+|\-)?\s*\d\d\d\d?/),t.timezone));g.zz=_.cache(_.process(_.rtoken(/^(\+|\-)\s*\d\d\d\d/),t.timezone));g.zzz=_.cache(_.process(g.ctoken2("timezone"),t.timezone));g.timeSuffix=_.each(_.ignore(g.whiteSpace),_.set([g.tt,g.zzz]));g.time=_.each(_.optional(_.ignore(_.stoken("T"))),g.hms,g.timeSuffix);g.d=_.cache(_.process(_.each(_.rtoken(/^([0-2]\d|3[0-1]|\d)/),_.optional(g.ctoken2("ordinalSuffix"))),t.day));g.dd=_.cache(_.process(_.each(_.rtoken(/^([0-2]\d|3[0-1])/),_.optional(g.ctoken2("ordinalSuffix"))),t.day));g.ddd=g.dddd=_.cache(_.process(g.ctoken("sun mon tue wed thu fri sat"),function(s){return function(){this.weekday=s;};}));g.M=_.cache(_.process(_.rtoken(/^(1[0-2]|0\d|\d)/),t.month));g.MM=_.cache(_.process(_.rtoken(/^(1[0-2]|0\d)/),t.month));g.MMM=g.MMMM=_.cache(_.process(g.ctoken("jan feb mar apr may jun jul aug sep oct nov dec"),t.month));g.y=_.cache(_.process(_.rtoken(/^(\d\d?)/),t.year));g.yy=_.cache(_.process(_.rtoken(/^(\d\d)/),t.year));g.yyy=_.cache(_.process(_.rtoken(/^(\d\d?\d?\d?)/),t.year));g.yyyy=_.cache(_.process(_.rtoken(/^(\d\d\d\d)/),t.year));_fn=function(){return _.each(_.any.apply(null,arguments),_.not(g.ctoken2("timeContext")));};g.day=_fn(g.d,g.dd);g.month=_fn(g.M,g.MMM);g.year=_fn(g.yyyy,g.yy);g.orientation=_.process(g.ctoken("past future"),function(s){return function(){this.orient=s;};});g.operator=_.process(g.ctoken("add subtract"),function(s){return function(){this.operator=s;};});g.rday=_.process(g.ctoken("yesterday tomorrow today now"),t.rday);g.unit=_.process(g.ctoken("minute hour day week month year"),function(s){return function(){this.unit=s;};});g.value=_.process(_.rtoken(/^\d\d?(st|nd|rd|th)?/),function(s){return function(){this.value=s.replace(/\D/g,"");};});g.expression=_.set([g.rday,g.operator,g.value,g.unit,g.orientation,g.ddd,g.MMM]);_fn=function(){return _.set(arguments,g.datePartDelimiter);};g.mdy=_fn(g.ddd,g.month,g.day,g.year);g.ymd=_fn(g.ddd,g.year,g.month,g.day);g.dmy=_fn(g.ddd,g.day,g.month,g.year);g.date=function(s){return((g[Date.CultureInfo.dateElementOrder]||g.mdy).call(this,s));};g.format=_.process(_.many(_.any(_.process(_.rtoken(/^(dd?d?d?|MM?M?M?|yy?y?y?|hh?|HH?|mm?|ss?|tt?|zz?z?)/),function(fmt){if(g[fmt]){return g[fmt];}else{throw Date.Parsing.Exception(fmt);}}),_.process(_.rtoken(/^[^dMyhHmstz]+/),function(s){return _.ignore(_.stoken(s));}))),function(rules){return _.process(_.each.apply(null,rules),t.finishExact);});var _F={};var _get=function(f){return _F[f]=(_F[f]||g.format(f)[0]);};g.formats=function(fx){if(fx instanceof Array){var rx=[];for(var i=0;i<fx.length;i++){rx.push(_get(fx[i]));}
return _.any.apply(null,rx);}else{return _get(fx);}};g._formats=g.formats(["yyyy-MM-ddTHH:mm:ss","ddd, MMM dd, yyyy H:mm:ss tt","ddd MMM d yyyy HH:mm:ss zzz","d"]);g._start=_.process(_.set([g.date,g.time,g.expression],g.generalDelimiter,g.whiteSpace),t.finish);g.start=function(s){try{var r=g._formats.call({},s);if(r[1].length===0){return r;}}catch(e){}
return g._start.call({},s);};}());Date._parse=Date.parse;Date.parse=function(s){var r=null;if(!s){return null;}
try{r=Date.Grammar.start.call({},s);}catch(e){return null;}
return((r[1].length===0)?r[0]:null);};Date.getParseFunction=function(fx){var fn=Date.Grammar.formats(fx);return function(s){var r=null;try{r=fn.call({},s);}catch(e){return null;}
return((r[1].length===0)?r[0]:null);};};Date.parseExact=function(s,fx){return Date.getParseFunction(fx)(s);};(function($){$.fn.slideForm=function(options){var defaults=$.extend({duration:1000},options);return $(this).each(function(){var timer;var $form=$(this).parent('li').children('form').hide();});};})(jQuery);(function($){$.fn.tabs=function(options){var settings=$.extend({currentTabId:null,tabsNavClass:'tabsNav',currentTabClass:'currentTab',cufon:false},options);return $(this).each(function(){var tabs=$(this);if(settings.currentTabId==null)settings.currentTabId=0;tabs.prepend('<ul class="'+settings.tabsNavClass+'"></ul>');tabs.find('h2').each(function(i){if(i==settings.currentTabId)$('.'+settings.tabsNavClass).append('<li class="'+settings.currentTabClass+'">'+$(this).text()+'</li>');else $('.'+settings.tabsNavClass).append('<li>'+$(this).text()+'</li>');$(this).hide();});$('.'+settings.tabsNavClass+' li').click(function(){tabs.children('div').hide();var currentTabIndex=$('.'+settings.tabsNavClass+' li').index(this);$(this).addClass(settings.currentTabClass).siblings('li').removeClass(settings.currentTabClass);if(settings.cufon){Cufon.replace('.'+settings.tabsNavClass+' li');Cufon.now();}
$('div.tab'+currentTabIndex).show().siblings('div').hide();return false;});tabs.children('div').hide();$('.tab'+settings.currentTabId).show();});};})(jQuery);(function($){$.fn.tooltip=function(options){var settings=$.extend({speed:200},options);return $(this).each(function(){var $tip=$('<div />').attr({'class':'tip'}).text($(this).attr('title')).appendTo('body').hide();$(this).hover(function(){$tip.css({left:$(this).position().left-($('.tip').innerWidth()-$(this).width())/2,top:$(this).position().top-$('.tip').innerHeight()-20}).animate({'top':'+=20px','opacity':'show'},settings.speed);},function(){$tip.hide();});});};})(jQuery);jQuery.fn.quickpaginate=function(settings){settings=jQuery.extend({perpage:6,pager:null,showcounter:true,prev:"qp_next",next:"qp_prev",prevLabel:'Previous',nextLabel:'Next',pagenumber:"qp_pagenumber",totalnumber:"qp_totalnumber",counter:"qp_counter"},settings);var cm;var total;var last=false;var first=true;var items=jQuery(this);var nextbut;var prevbut;var init=function()
{items.show();total=items.size();if(items.size()>settings.perpage)
{items.filter(":gt("+(settings.perpage-1)+")").hide();cm=settings.perpage;setNav();}};var goNext=function()
{if(!last)
{var nm=cm+settings.perpage;items.hide();items.slice(cm,nm).show();cm=nm;if(cm>=total)
{last=true;nextbut.addClass("qp_disabled");}
if(settings.showcounter)settings.pager.find("."+settings.pagenumber).text(cm/settings.perpage);prevbut.removeClass("qp_disabled");first=false;}};var goPrev=function()
{if(!first)
{var nm=cm-settings.perpage;items.hide();items.slice((nm-settings.perpage),nm).show();cm=nm;if(cm==settings.perpage)
{first=true;prevbut.addClass("qp_disabled");}
if(settings.showcounter)settings.pager.find("."+settings.pagenumber).text(cm/settings.perpage);nextbut.removeClass("qp_disabled");last=false;}};var setNav=function()
{if(settings.pager===null)
{settings.pager=jQuery('<div class="qc_pager"></div>');items.eq(items.size()-1).after(settings.pager);}
var pagerNav=$('<a class="'+settings.prev+'" href="#"><img src="'+settings.prevLabel+'" /></a><a class="'+settings.next+'" href="#"><img src="'+settings.nextLabel+'" /></a>');jQuery(settings.pager).append(pagerNav);if(settings.showcounter)
{var counter='&nbsp;&nbsp;<span class="'+settings.counter+'">Page <span class="'+settings.pagenumber+'"></span> sur <span class="'+settings.totalnumber+'"></span></span>&nbsp;&nbsp;';settings.pager.find("."+settings.prev).after(counter);settings.pager.find("."+settings.pagenumber).text(1);settings.pager.find("."+settings.totalnumber).text(Math.ceil(total/settings.perpage));}
nextbut=settings.pager.find("."+settings.next);prevbut=settings.pager.find("."+settings.prev);prevbut.addClass("qp_disabled");nextbut.click(function(){goNext();return false;});prevbut.click(function(){goPrev();return false;});};init();};var Cufon=(function(){var api=function(){return api.replace.apply(null,arguments);};var DOM=api.DOM={ready:(function(){var complete=false,readyStatus={loaded:1,complete:1};var queue=[],perform=function(){if(complete)return;complete=true;for(var fn;fn=queue.shift();fn());};if(document.addEventListener){document.addEventListener('DOMContentLoaded',perform,false);window.addEventListener('pageshow',perform,false);}
if(!window.opera&&document.readyState)(function(){readyStatus[document.readyState]?perform():setTimeout(arguments.callee,10);})();if(document.readyState&&document.createStyleSheet)(function(){try{document.body.doScroll('left');perform();}
catch(e){setTimeout(arguments.callee,1);}})();addEvent(window,'load',perform);return function(listener){if(!arguments.length)perform();else complete?listener():queue.push(listener);};})()};var CSS=api.CSS={Size:function(value,base){this.value=parseFloat(value);this.unit=String(value).match(/[a-z%]*$/)[0]||'px';this.convert=function(value){return value/base*this.value;};this.convertFrom=function(value){return value/this.value*base;};this.toString=function(){return this.value+this.unit;};},color:cached(function(value){var parsed={};parsed.color=value.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function($0,$1,$2){parsed.opacity=parseFloat($2);return'rgb('+$1+')';});return parsed;}),getStyle:function(el){var view=document.defaultView;if(view&&view.getComputedStyle)return new Style(view.getComputedStyle(el,null));if(el.currentStyle)return new Style(el.currentStyle);return new Style(el.style);},gradient:cached(function(value){var gradient={id:value,type:value.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},colors=value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var i=0,l=colors.length,stop;i<l;++i){stop=colors[i].split('=',2).reverse();gradient.stops.push([stop[1]||i/(l-1),stop[0]]);}
return gradient;}),quotedList:cached(function(value){var list=[],re=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,match;while(match=re.exec(value))list.push(match[3]||match[1]);return list;}),recognizesMedia:cached(function(media){var el=document.createElement('style'),container,supported;el.type='text/css';el.media=media;container=elementsByTagName('head')[0];container.insertBefore(el,container.firstChild);supported=!!(el.sheet||el.styleSheet);container.removeChild(el);return supported;}),supports:function(property,value){var checker=document.createElement('span').style;if(checker[property]===undefined)return false;checker[property]=value;return checker[property]===value;},textAlign:function(word,style,position,wordCount){if(style.get('textAlign')=='right'){if(position>0)word=' '+word;}
else if(position<wordCount-1)word+=' ';return word;},textDecoration:function(el,style){if(!style)style=this.getStyle(el);var types={underline:null,overline:null,'line-through':null};for(var search=el;search.parentNode&&search.parentNode.nodeType==1;){var foundAll=true;for(var type in types){if(!hasOwnProperty(types,type)||types[type])continue;if(style.get('textDecoration').indexOf(type)!=-1)types[type]=style.get('color');foundAll=false;}
if(foundAll)break;style=this.getStyle(search=search.parentNode);}
return types;},textShadow:cached(function(value){if(value=='none')return null;var shadows=[],currentShadow={},result,offCount=0;var re=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(result=re.exec(value)){if(result[0]==','){shadows.push(currentShadow);currentShadow={},offCount=0;}
else if(result[1]){currentShadow.color=result[1];}
else{currentShadow[['offX','offY','blur'][offCount++]]=result[2];}}
shadows.push(currentShadow);return shadows;}),textTransform:function(text,style){return text[{uppercase:'toUpperCase',lowercase:'toLowerCase'}[style.get('textTransform')]||'toString']();},whiteSpace:(function(){var ignore={inline:1,'inline-block':1,'run-in':1};return function(text,style,node){if(ignore[style.get('display')])return text;if(!node.previousSibling)text=text.replace(/^\s+/,'');if(!node.nextSibling)text=text.replace(/\s+$/,'');return text;};})()};CSS.ready=(function(){var complete=!CSS.recognizesMedia('all'),hasLayout=false;var queue=[],perform=function(){complete=true;for(var fn;fn=queue.shift();fn());};var linkElements=elementsByTagName('link'),watch={stylesheet:1};function allStylesLoaded(){var sheet,i,link;for(i=0;link=linkElements[i];++i){if(link.disabled||!watch[link.rel.toLowerCase()]||!CSS.recognizesMedia(link.media||'screen'))continue;sheet=link.sheet||link.styleSheet;if(!sheet||sheet.disabled)return false;}
return true;}
DOM.ready(function(){if(!hasLayout)hasLayout=CSS.getStyle(document.body).isUsable();if(complete||(hasLayout&&allStylesLoaded()))perform();else setTimeout(arguments.callee,10);});return function(listener){if(complete)listener();else queue.push(listener);};})();function Font(data){var face=this.face=data.face;this.glyphs=data.glyphs;this.w=data.w;this.baseSize=parseInt(face['units-per-em'],10);this.family=face['font-family'].toLowerCase();this.weight=face['font-weight'];this.style=face['font-style']||'normal';this.viewBox=(function(){var parts=face.bbox.split(/\s+/);var box={minX:parseInt(parts[0],10),minY:parseInt(parts[1],10),maxX:parseInt(parts[2],10),maxY:parseInt(parts[3],10)};box.width=box.maxX-box.minX,box.height=box.maxY-box.minY;box.toString=function(){return[this.minX,this.minY,this.width,this.height].join(' ');};return box;})();this.ascent=-parseInt(face.ascent,10);this.descent=-parseInt(face.descent,10);this.height=-this.ascent+this.descent;}
function FontFamily(){var styles={},mapping={oblique:'italic',italic:'oblique'};this.add=function(font){(styles[font.style]||(styles[font.style]={}))[font.weight]=font;};this.get=function(style,weight){var weights=styles[style]||styles[mapping[style]]||styles.normal||styles.italic||styles.oblique;if(!weights)return null;weight={normal:400,bold:700}[weight]||parseInt(weight,10);if(weights[weight])return weights[weight];var up={1:1,99:0}[weight%100],alts=[],min,max;if(up===undefined)up=weight>400;if(weight==500)weight=400;for(var alt in weights){if(!hasOwnProperty(weights,alt))continue;alt=parseInt(alt,10);if(!min||alt<min)min=alt;if(!max||alt>max)max=alt;alts.push(alt);}
if(weight<min)weight=min;if(weight>max)weight=max;alts.sort(function(a,b){return(up?(a>weight&&b>weight)?a<b:a>b:(a<weight&&b<weight)?a>b:a<b)?-1:1;});return weights[alts[0]];};}
function HoverHandler(){function contains(node,anotherNode){if(node.contains)return node.contains(anotherNode);return node.compareDocumentPosition(anotherNode)&16;}
function onOverOut(e){var related=e.relatedTarget;if(!related||contains(this,related))return;trigger(this);}
function onEnterLeave(e){trigger(this);}
function trigger(el){setTimeout(function(){api.replace(el,sharedStorage.get(el).options,true);},10);}
this.attach=function(el){if(el.onmouseenter===undefined){addEvent(el,'mouseover',onOverOut);addEvent(el,'mouseout',onOverOut);}
else{addEvent(el,'mouseenter',onEnterLeave);addEvent(el,'mouseleave',onEnterLeave);}};}
function ReplaceHistory(){var list=[],map={};function filter(keys){var values=[],key;for(var i=0;key=keys[i];++i)values[i]=list[map[key]];return values;}
this.add=function(key,args){map[key]=list.push(args)-1;};this.repeat=function(){var snapshot=arguments.length?filter(arguments):list,args;for(var i=0;args=snapshot[i++];)api.replace(args[0],args[1],true);};}
function Storage(){var map={},at=0;function identify(el){return el.cufid||(el.cufid=++at);}
this.get=function(el){var id=identify(el);return map[id]||(map[id]={});};}
function Style(style){var custom={},sizes={};this.extend=function(styles){for(var property in styles){if(hasOwnProperty(styles,property))custom[property]=styles[property];}
return this;};this.get=function(property){return custom[property]!=undefined?custom[property]:style[property];};this.getSize=function(property,base){return sizes[property]||(sizes[property]=new CSS.Size(this.get(property),base));};this.isUsable=function(){return!!style;};}
function addEvent(el,type,listener){if(el.addEventListener){el.addEventListener(type,listener,false);}
else if(el.attachEvent){el.attachEvent('on'+type,function(){return listener.call(el,window.event);});}}
function attach(el,options){var storage=sharedStorage.get(el);if(storage.options)return el;if(options.hover&&options.hoverables[el.nodeName.toLowerCase()]){hoverHandler.attach(el);}
storage.options=options;return el;}
function cached(fun){var cache={};return function(key){if(!hasOwnProperty(cache,key))cache[key]=fun.apply(null,arguments);return cache[key];};}
function getFont(el,style){if(!style)style=CSS.getStyle(el);var families=CSS.quotedList(style.get('fontFamily').toLowerCase()),family;for(var i=0,l=families.length;i<l;++i){family=families[i];if(fonts[family])return fonts[family].get(style.get('fontStyle'),style.get('fontWeight'));}
return null;}
function elementsByTagName(query){return document.getElementsByTagName(query);}
function hasOwnProperty(obj,property){return obj.hasOwnProperty(property);}
function merge(){var merged={},args,key;for(var i=0,l=arguments.length;args=arguments[i],i<l;++i){for(key in args){if(hasOwnProperty(args,key))merged[key]=args[key];}}
return merged;}
function process(font,text,style,options,node,el){var separate=options.separate;if(separate=='none')return engines[options.engine].apply(null,arguments);var fragment=document.createDocumentFragment(),processed;var parts=text.split(separators[separate]),needsAligning=(separate=='words');if(needsAligning&&HAS_BROKEN_REGEXP){if(/^\s/.test(text))parts.unshift('');if(/\s$/.test(text))parts.push('');}
for(var i=0,l=parts.length;i<l;++i){processed=engines[options.engine](font,needsAligning?CSS.textAlign(parts[i],style,i,l):parts[i],style,options,node,el,i<l-1);if(processed)fragment.appendChild(processed);}
return fragment;}
function replaceElement(el,options){var font,style,node,nodeType,nextNode,redraw;for(node=attach(el,options).firstChild;node;node=nextNode){nodeType=node.nodeType;nextNode=node.nextSibling;redraw=false;if(nodeType==1){if(!node.firstChild)continue;if(!/cufon/.test(node.className)){arguments.callee(node,options);continue;}
else redraw=true;}
else if(nodeType!=3)continue;if(!style)style=CSS.getStyle(el).extend(options);if(!font)font=getFont(el,style);if(!font)continue;if(redraw){engines[options.engine](font,null,style,options,node,el);continue;}
var text=CSS.whiteSpace(node.data,style,node);if(text==='')continue;var processed=process(font,text,style,options,node,el);if(processed)node.parentNode.replaceChild(processed,node);else node.parentNode.removeChild(node);}}
var HAS_BROKEN_REGEXP=' '.split(/\s+/).length==0;var sharedStorage=new Storage();var hoverHandler=new HoverHandler();var replaceHistory=new ReplaceHistory();var engines={},fonts={},defaultOptions={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(query){return jQuery(query);})||(window.dojo&&dojo.query)||(window.$$&&function(query){return $$(query);})||(window.$&&function(query){return $(query);})||(document.querySelectorAll&&function(query){return document.querySelectorAll(query);})||elementsByTagName),separate:'words',textShadow:'none'};var separators={words:/[^\S\u00a0]+/,characters:''};api.now=function(){DOM.ready();return api;};api.refresh=function(){replaceHistory.repeat.apply(replaceHistory,arguments);return api;};api.registerEngine=function(id,engine){if(!engine)return api;engines[id]=engine;return api.set('engine',id);};api.registerFont=function(data){var font=new Font(data),family=font.family;if(!fonts[family])fonts[family]=new FontFamily();fonts[family].add(font);return api.set('fontFamily','"'+family+'"');};api.replace=function(elements,options,ignoreHistory){options=merge(defaultOptions,options);if(!options.engine)return api;if(typeof options.textShadow=='string')
options.textShadow=CSS.textShadow(options.textShadow);if(typeof options.color=='string'&&/^-/.test(options.color))
options.textGradient=CSS.gradient(options.color);if(!ignoreHistory)replaceHistory.add(elements,arguments);if(elements.nodeType||typeof elements=='string')elements=[elements];CSS.ready(function(){for(var i=0,l=elements.length;i<l;++i){var el=elements[i];if(typeof el=='string')api.replace(options.selector(el),options,true);else replaceElement(el,options);}});return api;};api.set=function(option,value){defaultOptions[option]=value;return api;};return api;})();Cufon.registerEngine('canvas',(function(){var check=document.createElement('canvas');if(!check||!check.getContext||!check.getContext.apply)return;check=null;var HAS_INLINE_BLOCK=Cufon.CSS.supports('display','inline-block');var HAS_BROKEN_LINEHEIGHT=!HAS_INLINE_BLOCK&&(document.compatMode=='BackCompat'||/frameset|transitional/i.test(document.doctype.publicId));var styleSheet=document.createElement('style');styleSheet.type='text/css';styleSheet.appendChild(document.createTextNode(('.cufon-canvas{text-indent:0;}'+'@media screen,projection{'+'.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;'+
(HAS_BROKEN_LINEHEIGHT?'':'font-size:1px;line-height:1px;')+'}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;}'+
(HAS_INLINE_BLOCK?'.cufon-canvas canvas{position:relative;}':'.cufon-canvas canvas{position:absolute;}')+'}'+'@media print{'+'.cufon-canvas{padding:0;}'+'.cufon-canvas canvas{display:none;}'+'.cufon-canvas .cufon-alt{display:inline;}'+'}').replace(/;/g,'!important;')));document.getElementsByTagName('head')[0].appendChild(styleSheet);function generateFromVML(path,context){var atX=0,atY=0;var code=[],re=/([mrvxe])([^a-z]*)/g,match;generate:for(var i=0;match=re.exec(path);++i){var c=match[2].split(',');switch(match[1]){case'v':code[i]={m:'bezierCurveTo',a:[atX+~~c[0],atY+~~c[1],atX+~~c[2],atY+~~c[3],atX+=~~c[4],atY+=~~c[5]]};break;case'r':code[i]={m:'lineTo',a:[atX+=~~c[0],atY+=~~c[1]]};break;case'm':code[i]={m:'moveTo',a:[atX=~~c[0],atY=~~c[1]]};break;case'x':code[i]={m:'closePath'};break;case'e':break generate;}
context[code[i].m].apply(context,code[i].a);}
return code;}
function interpret(code,context){for(var i=0,l=code.length;i<l;++i){var line=code[i];context[line.m].apply(context,line.a);}}
return function(font,text,style,options,node,el){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.getSize('fontSize',font.baseSize);var letterSpacing=style.get('letterSpacing');letterSpacing=(letterSpacing=='normal')?0:size.convertFrom(parseInt(letterSpacing,10));var expandTop=0,expandRight=0,expandBottom=0,expandLeft=0;var shadows=options.textShadow,shadowOffsets=[];if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];var x=size.convertFrom(parseFloat(shadow.offX));var y=size.convertFrom(parseFloat(shadow.offY));shadowOffsets[i]=[x,y];if(y<expandTop)expandTop=y;if(x>expandRight)expandRight=x;if(y>expandBottom)expandBottom=y;if(x<expandLeft)expandLeft=x;}}
var chars=Cufon.CSS.textTransform(text,style).split(''),chr;var glyphs=font.glyphs,glyph,kerning,k;var width=0,advance,jumps=[];for(var i=0,j=0,l=chars.length;i<l;++i){glyph=glyphs[chr=chars[i]]||font.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j-1]-=k;}
width+=advance=jumps[j++]=~~(glyph.w||font.w)+letterSpacing;kerning=glyph.k;}
if(advance===undefined)return null;expandRight+=viewBox.width-advance;expandLeft+=viewBox.minX;var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('span');wrapper.className='cufon cufon-canvas';wrapper.alt=text;canvas=document.createElement('canvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('span');print.className='cufon-alt';print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height);var roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;canvas.width=Math.ceil(size.convert(width*roundingFactor+expandRight-expandLeft));canvas.height=Math.ceil(size.convert(viewBox.height-expandTop+expandBottom));expandTop+=viewBox.minY;cStyle.top=Math.round(size.convert(expandTop-font.ascent))+'px';cStyle.left=Math.round(size.convert(expandLeft))+'px';var wrapperWidth=Math.ceil(size.convert(width*roundingFactor))+'px';if(HAS_INLINE_BLOCK){wStyle.width=wrapperWidth;wStyle.height=size.convert(font.height)+'px';}
else{wStyle.paddingLeft=wrapperWidth;wStyle.paddingBottom=(size.convert(font.height)-1)+'px';}
var g=canvas.getContext('2d'),scale=height/viewBox.height;g.scale(scale,scale*roundingFactor);g.translate(-expandLeft,-expandTop);g.lineWidth=font.face['underline-thickness'];g.save();function line(y,color){g.strokeStyle=color;g.beginPath();g.moveTo(0,y);g.lineTo(width,y);g.stroke();}
var textDecoration=options.enableTextDecoration?Cufon.CSS.textDecoration(el,style):{};if(textDecoration.underline)line(-font.face['underline-position'],textDecoration.underline);if(textDecoration.overline)line(font.ascent,textDecoration.overline);function renderText(){g.scale(roundingFactor,1);for(var i=0,j=0,l=chars.length;i<l;++i){var glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(glyph.d){g.beginPath();if(glyph.code)interpret(glyph.code,g);else glyph.code=generateFromVML('m'+glyph.d,g);g.fill();}
g.translate(jumps[j++],0);}
g.restore();}
if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];g.save();g.fillStyle=shadow.color;g.translate.apply(g,shadowOffsets[i]);renderText();}}
var gradient=options.textGradient;if(gradient){var stops=gradient.stops,fill=g.createLinearGradient(0,viewBox.minY,0,viewBox.maxY);for(var i=0,l=stops.length;i<l;++i){fill.addColorStop.apply(fill,stops[i]);}
g.fillStyle=fill;}
else g.fillStyle=style.get('color');renderText();if(textDecoration['line-through'])line(-font.descent,textDecoration['line-through']);return wrapper;};})());Cufon.registerEngine('vml',(function(){if(!document.namespaces)return;if(document.namespaces.cvml==null){document.namespaces.add('cvml','urn:schemas-microsoft-com:vml');}
var check=document.createElement('cvml:shape');check.style.behavior='url(#default#VML)';if(!check.coordsize)return;check=null;document.write(('<style type="text/css">'+'.cufon-vml-canvas{text-indent:0;}'+'@media screen{'+'cvml\\:shape,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}'+'.cufon-vml-canvas{position:absolute;text-align:left;}'+'.cufon-vml{display:inline-block;position:relative;vertical-align:middle;}'+'.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}'+'a .cufon-vml{cursor:pointer}'+'}'+'@media print{'+'.cufon-vml *{display:none;}'+'.cufon-vml .cufon-alt{display:inline;}'+'}'+'</style>').replace(/;/g,'!important;'));function getFontSizeInPixels(el,value){return getSizeInPixels(el,/(?:em|ex|%)$/i.test(value)?'1em':value);}
function getSizeInPixels(el,value){if(/px$/i.test(value))return parseFloat(value);var style=el.style.left,runtimeStyle=el.runtimeStyle.left;el.runtimeStyle.left=el.currentStyle.left;el.style.left=value;var result=el.style.pixelLeft;el.style.left=style;el.runtimeStyle.left=runtimeStyle;return result;}
var fills={};function gradientFill(gradient){var id=gradient.id;if(!fills[id]){var stops=gradient.stops,fill=document.createElement('cvml:fill'),colors=[];fill.type='gradient';fill.angle=180;fill.focus='0';fill.method='sigma';fill.color=stops[0][1];for(var j=1,k=stops.length-1;j<k;++j){colors.push(stops[j][0]*100+'% '+stops[j][1]);}
fill.colors=colors.join(',');fill.color2=stops[k][1];fills[id]=fill;}
return fills[id];}
return function(font,text,style,options,node,el,hasNext){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.computedFontSize||(style.computedFontSize=new Cufon.CSS.Size(getFontSizeInPixels(el,style.get('fontSize'))+'px',font.baseSize));var letterSpacing=style.computedLSpacing;if(letterSpacing==undefined){letterSpacing=style.get('letterSpacing');style.computedLSpacing=letterSpacing=(letterSpacing=='normal')?0:~~size.convertFrom(getSizeInPixels(el,letterSpacing));}
var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('span');wrapper.className='cufon cufon-vml';wrapper.alt=text;canvas=document.createElement('span');canvas.className='cufon-vml-canvas';wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('span');print.className='cufon-alt';print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}
if(!hasNext)wrapper.appendChild(document.createElement('cvml:shape'));}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height),roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var minX=viewBox.minX,minY=viewBox.minY;cStyle.height=roundedHeight;cStyle.top=Math.round(size.convert(minY-font.ascent));cStyle.left=Math.round(size.convert(minX));wStyle.height=size.convert(font.height)+'px';var textDecoration=options.enableTextDecoration?Cufon.CSS.textDecoration(el,style):{};var color=style.get('color');var chars=Cufon.CSS.textTransform(text,style).split(''),chr;var glyphs=font.glyphs,glyph,kerning,k;var width=0,jumps=[],offsetX=0,advance;var shape,shadows=options.textShadow;for(var i=0,j=0,l=chars.length;i<l;++i){glyph=glyphs[chr=chars[i]]||font.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j-1]-=k;}
width+=advance=jumps[j++]=~~(glyph.w||font.w)+letterSpacing;kerning=glyph.k;}
if(advance===undefined)return null;var fullWidth=-minX+width+(viewBox.width-advance);var shapeWidth=size.convert(fullWidth*roundingFactor),roundedShapeWidth=Math.round(shapeWidth);var coordSize=fullWidth+','+viewBox.height,coordOrigin;var stretch='r'+coordSize+'ns';var fill=options.textGradient&&gradientFill(options.textGradient);for(i=0,j=0;i<l;++i){glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(redraw){shape=canvas.childNodes[j];while(shape.firstChild)shape.removeChild(shape.firstChild);}
else{shape=document.createElement('cvml:shape');canvas.appendChild(shape);}
shape.stroked='f';shape.coordsize=coordSize;shape.coordorigin=coordOrigin=(minX-offsetX)+','+minY;shape.path=(glyph.d?'m'+glyph.d+'xe':'')+'m'+coordOrigin+stretch;shape.fillcolor=color;if(fill)shape.appendChild(fill.cloneNode(false));var sStyle=shape.style;sStyle.width=roundedShapeWidth;sStyle.height=roundedHeight;if(shadows){var shadow1=shadows[0],shadow2=shadows[1];var color1=Cufon.CSS.color(shadow1.color),color2;var shadow=document.createElement('cvml:shadow');shadow.on='t';shadow.color=color1.color;shadow.offset=shadow1.offX+','+shadow1.offY;if(shadow2){color2=Cufon.CSS.color(shadow2.color);shadow.type='double';shadow.color2=color2.color;shadow.offset2=shadow2.offX+','+shadow2.offY;}
shadow.opacity=color1.opacity||(color2&&color2.opacity)||1;shape.appendChild(shadow);}
offsetX+=jumps[j++];}
wStyle.width=Math.max(Math.ceil(size.convert(width*roundingFactor)),0);return wrapper;};})());Cufon.registerFont({"w":198,"face":{"font-family":"Trixie-Plain","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"11","cap-height":"7","bbox":"-45.7899 -341.314 248.823 110.25","underline-thickness":"7.2","underline-position":"-44.28","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{},"\u00a0":{},"#":{"d":"164,-78v-12,16,33,14,19,43v-12,6,-38,13,-47,7v3,11,-11,9,-7,18v-14,21,-24,47,-37,70v-10,5,-25,14,-35,9v-6,-21,6,-39,17,-51v2,-19,17,-30,24,-46v-23,2,-34,-5,-52,-3v3,13,-11,12,-7,21v-14,21,-24,47,-37,70v-10,5,-25,14,-35,9v-6,-21,6,-39,17,-51v2,-25,32,-41,29,-65v8,-14,16,-14,18,-30v10,0,15,-15,7,-19r-14,0v2,0,3,-4,0,-4r-3,0v0,-18,26,-28,37,-18v9,-12,12,-30,24,-39v-1,-10,7,-12,8,-20v17,-16,16,-38,31,-50v1,-15,19,-13,20,-28v17,-8,18,14,18,28v-10,11,-16,21,-22,35v-13,-3,-4,27,-17,29v-9,15,-15,33,-26,46v21,-2,46,-5,61,-10v0,-18,17,-21,18,-38v6,-10,18,-21,19,-32v10,1,1,-19,10,-18v9,-12,15,-27,29,-35v-1,-8,4,-7,11,-6v11,10,8,37,-4,41v-3,9,-10,24,-19,27v2,21,-12,26,-17,41v-11,7,-9,26,-20,31v3,6,-1,23,-12,23v-1,6,-7,7,-6,15xm74,-84v-9,17,1,25,19,18v-1,-6,7,-1,11,-2v5,12,15,1,17,-6v-1,-4,3,-4,6,-4r4,-9v-12,-5,-22,7,-32,-1v-6,8,-19,-7,-25,4"},"$":{"d":"95,-26v-2,-21,3,-42,-2,-55v4,-3,-3,-13,2,-20v-13,-5,-29,-2,-33,-15v-11,0,-10,-13,-21,-14v0,-12,-13,-31,-6,-42v10,-3,3,-13,15,-16v0,-14,15,-4,20,-13v16,1,29,-11,26,-34v6,-7,6,4,11,6v-2,9,-4,18,-2,28v12,0,17,6,28,7v2,6,6,10,12,12r3,-19v19,-3,18,16,8,25v5,8,10,30,0,38v-9,-5,-11,-14,-15,-25r-2,1v-1,-15,-14,-9,-20,-17v-3,3,-7,-4,-11,-7r1,64v15,8,37,0,42,23v18,3,23,33,17,46v7,11,-9,31,-10,41v-11,11,-29,12,-45,17v0,8,-13,14,-15,5v-3,-16,-24,-6,-34,-19v-3,3,-9,3,-9,9v-42,3,-13,-39,-21,-75v4,-12,18,3,24,4v1,9,-1,21,8,22v0,11,15,7,15,19xm93,-124v6,-15,-9,-25,3,-32v-6,-10,-4,-18,-3,-32v-6,0,-14,4,-8,8v-8,5,-20,4,-26,-2v4,13,-12,23,-1,33v-8,8,6,20,15,22v2,-4,5,1,8,3v1,7,9,-3,12,0xm111,-101v-2,21,1,54,5,73v13,1,12,-11,22,-13v1,-10,13,-17,5,-25v22,-21,-14,-29,-32,-35"},"%":{"d":"152,-241v5,-11,23,-2,23,10v-11,7,-10,27,-23,32v-3,15,-6,30,-16,38v0,16,-11,20,-16,31v-3,7,-7,24,0,30v16,-2,28,-19,44,-8v27,1,26,29,25,57v-2,-1,-3,-3,-4,0r0,4r-1,-1v-3,16,-17,21,-26,31v-20,6,-33,1,-49,-5v-10,-11,-16,-31,-5,-47v-11,-11,-14,16,-26,18v-2,12,-8,20,-11,32v-13,6,-7,32,-26,38v0,19,-5,37,-28,34r-4,-22v16,-7,10,-31,25,-38v1,-13,12,-17,11,-32v12,-1,9,-23,21,-22v3,-10,0,-30,14,-30v12,-36,29,-61,45,-92v8,-3,5,-13,-2,-14v-6,6,-9,15,-20,17v-1,12,-31,-3,-25,17v0,14,6,20,8,33v-1,-1,-2,-1,-3,0r0,5v-14,1,-15,34,-29,29v-7,6,-17,10,-29,12v-8,-13,-27,-19,-25,-42v-6,-11,4,-24,13,-29v3,-14,12,-25,28,-22v12,-10,31,1,39,-12v15,4,17,-11,33,-10v8,-4,5,-19,18,-19v5,-4,17,-13,8,-19v4,-2,7,-5,13,-4xm104,-91v5,2,12,-6,5,-6xm153,-54v16,-6,11,-46,-7,-30v1,13,-30,15,-14,45v4,-12,16,-3,21,-15xm141,-204v-3,-2,-6,-3,-5,3v4,1,2,-2,5,-3xm48,-160v2,-3,-2,-6,-7,-5v-5,9,-6,10,-12,18v-4,-4,3,2,-3,1v1,13,-10,23,-1,30v19,8,25,-10,37,-14v1,-9,7,-22,0,-27v-3,4,-9,-2,-14,-3"},"&":{"d":"124,-191v13,1,16,47,0,51v2,16,-10,20,-19,28r2,1v-9,5,-2,20,9,18v3,-4,3,-8,0,-12v8,-2,12,-6,14,-14v12,-6,23,-13,38,-16v8,11,24,15,23,35v-8,11,-25,27,-35,7v-8,0,-4,10,-7,13v0,-5,-3,-13,-8,-6v1,17,-11,29,0,42v-2,5,12,23,20,16v8,-7,13,-27,28,-17v8,-4,12,10,11,23v-5,4,-5,15,-15,15v-6,5,-14,17,-24,10v-13,8,-28,-4,-34,-13v-16,-1,-33,25,-47,17v-8,6,-17,-4,-25,3v-8,-5,-18,-16,-31,-18v-5,-11,-3,-29,-15,-34v-2,-7,6,-24,3,-32v9,-8,11,-25,30,-25v14,-8,23,-29,8,-44v-1,-16,6,-25,7,-41v18,-17,52,-26,67,-7xm92,-138v22,-9,29,-39,-5,-39v-6,4,-11,10,-14,17v6,8,6,21,19,22xm63,-89v-16,11,-20,23,-23,38v10,2,2,30,17,24v11,11,32,2,36,-9r2,1v7,-33,-21,-36,-32,-54"},"\u2019":{"d":"77,-237v-16,-24,7,-61,40,-47v21,9,17,31,14,60r-1,-2v-16,21,-18,44,-51,45v-10,-10,-8,-27,3,-33v-4,-1,2,-4,0,-7v7,1,8,-4,9,-9v-8,2,-7,-7,-14,-7"},"(":{"d":"116,-229v11,-15,35,-15,28,11v-11,5,-12,19,-21,25r2,1v-17,7,-20,27,-26,45v14,18,-19,32,-6,62v-8,18,10,13,3,35v3,16,11,35,20,50v11,9,37,39,17,54v-15,3,-20,-16,-33,-21v-9,-26,-28,-40,-28,-71v-12,-10,0,-43,-11,-55v2,-17,6,-33,6,-52r2,2v4,-20,16,-33,21,-52v10,-5,9,-20,20,-24r0,-3v3,0,1,-10,6,-7"},")":{"d":"55,-231v9,-17,31,-2,32,13v-1,-1,-1,-2,0,-3v6,16,25,16,21,38v18,19,17,65,22,101v-5,18,-5,27,-8,40v-6,13,-9,44,-22,55r3,1v-18,6,-8,36,-36,32r-9,4v-4,-5,-13,-17,-7,-31v6,3,5,-13,13,-13v11,-14,25,-25,29,-46v13,-21,12,-57,14,-91v-13,-16,-11,-50,-26,-66v1,2,-1,2,-3,2v0,-14,-19,-21,-23,-36"},"*":{"d":"123,-245v11,-1,35,-5,34,11v1,7,9,5,6,12v-9,2,-7,15,-19,14v-1,10,-18,14,-11,20v9,-4,9,0,21,0v-1,4,6,8,7,4v3,5,15,9,13,15r-2,-3v0,12,2,17,5,26v-15,4,-19,8,-32,0v-2,-10,-8,-1,-14,-7v0,14,5,30,-8,38v2,9,-13,1,-9,12v-23,-2,-16,-23,-18,-41v5,-3,1,-5,-2,-8v-5,5,-10,-5,-12,2v3,2,4,4,-2,3v-3,9,-23,-2,-28,6v-6,-6,-14,-10,-19,-18v-2,2,-4,2,-3,-3v2,-4,4,-8,3,-15v12,-7,49,-3,40,-15v-2,1,-4,6,-5,2v7,1,5,-4,1,-5v-4,5,-16,-2,-11,-7v-13,-1,-6,-15,-8,-29v-1,2,-2,0,-3,-1v8,0,1,-13,17,-10v-1,14,29,1,16,9v3,8,17,12,14,18v13,7,20,-8,22,-20v1,-1,11,-6,7,-10"},"+":{"d":"90,-152v14,-19,34,-1,30,20v-6,31,12,48,38,36v32,-5,43,28,14,37v-17,0,-40,-5,-52,5v2,6,7,54,-8,58v-5,4,-14,10,-19,2v3,-6,-9,-10,-3,-16v-9,-8,-2,-33,-2,-49v-18,-7,-48,0,-67,-10v2,-2,4,-9,-2,-9v6,-26,41,-12,67,-18v8,-14,-4,-30,0,-49r2,2v1,-3,4,-6,2,-9"},",":{"d":"96,-73v7,1,10,5,18,1v3,6,12,10,21,13v11,17,4,39,4,66r-2,-2v-19,25,-22,55,-64,55v-7,-10,-12,-20,-5,-33v8,-3,7,-7,9,-16v8,3,15,-13,5,-12v-17,-10,-26,-37,-11,-53v5,-13,18,-10,25,-19"},"-":{"d":"8,-82v17,-39,68,-17,118,-23v17,5,46,-4,58,8v1,-2,7,-4,3,-1v10,9,6,52,-17,48v-9,8,-27,-7,-38,0v-17,-5,-35,6,-54,-2v-21,3,-72,6,-67,-27"},".":{"d":"97,-80v22,5,45,26,32,49v1,7,-4,8,-3,17v-11,3,-23,18,-33,11v-12,10,-15,-5,-27,-3v-14,-18,-18,-61,9,-66v5,-5,13,-8,21,-5"},"\/":{"d":"174,-255v13,-7,23,11,15,25v7,12,-17,14,-15,31v-3,6,-8,7,-13,11v2,21,-11,27,-16,41v-11,6,-10,25,-20,31v0,15,-19,20,-18,38v-10,14,-17,31,-29,43v0,26,-18,28,-19,51v-10,12,-18,27,-24,44v-10,4,-25,15,-35,9v-7,-20,5,-40,16,-51v4,-25,25,-39,32,-63v7,-3,2,-17,11,-17v-2,-4,5,-8,4,-15v16,-3,14,-25,25,-35v-3,-8,14,-14,12,-28v9,-10,18,-22,22,-37v8,-1,4,-15,13,-16v9,-26,20,-42,39,-57r0,-5"},"0":{"d":"75,-199v17,-21,62,-7,71,11v8,0,12,16,15,25v16,9,11,41,20,59v-5,10,-4,26,-6,43v-6,-2,-5,8,-4,14v-7,6,-9,10,-10,18v-9,8,-17,17,-23,28v-17,2,-31,18,-43,4v-18,0,-34,-2,-38,-18v-9,2,-4,-8,-14,-8v-26,-27,-30,-95,-7,-133v-8,-5,7,-11,7,-20v6,-1,8,-6,9,-12v9,-2,17,-10,23,-11xm131,-176v-12,-1,-15,-7,-25,-15v-8,8,-37,3,-40,19v-14,2,7,24,-12,23v-10,8,0,20,-6,28v9,13,-4,50,15,60v-2,23,16,23,23,34v8,4,17,-2,22,5v7,-8,13,-11,21,-15v-4,-4,11,-7,6,-16v23,-20,12,-60,12,-88v-7,-6,3,-15,-4,-20v-4,-5,-16,-7,-12,-15"},"1":{"d":"39,-207v25,-8,47,4,68,-1v19,3,14,24,16,43v-11,21,3,57,-6,85v8,5,-3,24,5,30v-4,12,4,29,18,21v3,12,23,10,32,5v4,5,13,7,11,18v-15,10,-33,9,-49,14v-12,-15,-52,2,-70,-6v-21,10,-38,-15,-17,-26v12,-6,27,-3,37,-7v8,-7,3,-28,12,-33v-8,-12,-8,-30,3,-39v-5,-8,-2,-24,5,-32v-9,-9,-3,-21,-8,-27v8,-2,1,-15,1,-22v-17,-3,-30,-5,-44,2v-9,-4,-14,-12,-14,-25"},"2":{"d":"154,-194v11,5,4,25,14,26v12,19,6,49,-8,57r0,4v-15,8,-25,29,-49,30v-5,12,-28,7,-32,22v-2,9,-11,20,1,23v13,3,24,-6,33,3v14,-9,78,-5,58,21v4,15,-13,8,-19,10v-16,6,-59,-3,-84,4v-4,-8,-16,3,-21,-6v-8,6,-15,-8,-17,-17v3,-13,6,-26,12,-40v4,-1,9,-1,8,-7v15,-1,14,-16,25,-18v10,-13,28,-22,48,-26v4,-8,13,-6,13,-14v17,-12,19,-51,0,-63v-19,3,-24,-7,-40,-8v-12,15,-39,8,-33,40v-9,1,-9,24,-23,11v-3,-11,3,-13,5,-30v5,4,5,-10,14,-8v5,-13,13,-28,34,-22v19,-12,38,8,61,8"},"3":{"d":"80,-207v29,3,80,-18,82,18v-4,10,-20,9,-22,21v-12,0,-22,21,-31,29v12,6,24,8,35,13v-1,4,6,6,11,4v5,11,18,27,12,41v9,9,-8,20,-1,32v-8,12,-15,27,-22,41v-17,4,-26,16,-38,25v-9,-5,-11,11,-25,5v-5,15,-38,16,-49,7r-1,-15v6,-2,17,-11,29,-11v3,-8,7,-19,14,-8v5,-2,17,-7,13,-12v15,-5,32,-14,45,-24r0,-8v0,1,1,2,3,2v6,-19,15,-49,-6,-58v3,-4,-3,-11,-11,-11r2,-2v-21,-10,-35,11,-52,18v-19,-2,-5,-28,1,-35v14,0,16,-12,26,-16v-6,-14,26,-12,20,-23v8,-4,-1,-8,-5,-10v-22,7,-47,-4,-58,12v-6,4,-11,9,-21,6v-7,-24,3,-42,28,-41r-2,-1v8,-1,15,5,18,0v0,6,3,5,5,1"},"4":{"d":"100,-174v-3,-20,21,-32,32,-13v4,41,-7,69,4,101r2,-1v-1,12,-6,20,-6,35r35,0v-1,5,3,6,5,3r-2,-1v14,21,-9,31,-32,26v-3,2,-3,3,-2,7r-1,-2v-4,27,10,64,-26,60v-11,-14,-8,-52,-1,-62v-8,-10,-29,3,-39,-7v-9,0,-23,12,-30,0v-7,2,-19,-4,-16,-18v5,-6,10,-13,11,-23v20,-11,21,-44,38,-57r2,2v-1,-22,17,-26,18,-46xm111,-116v0,-13,-2,-24,-6,-33v-4,11,-14,18,-13,36v-10,14,-12,26,-23,36v-1,8,2,11,3,18r-10,4v14,4,36,5,46,0v3,-14,-6,-22,3,-26v-7,-6,1,-21,-2,-37"},"5":{"d":"37,-95v3,-25,-3,-39,0,-58v-9,-6,1,-24,0,-36v12,-15,48,-1,64,-13v18,8,74,-9,61,25v-7,7,-20,8,-33,9v-12,-11,-59,-1,-62,19v2,1,6,1,5,5v-11,4,-11,13,-5,18v12,12,28,-13,40,0v14,2,25,-5,34,8v10,1,14,8,15,18v23,10,5,54,5,74v-8,6,-7,12,-16,18v-7,15,-38,24,-50,37v-9,-5,-34,19,-46,9v-17,0,-13,-23,-1,-24v20,-8,47,-8,61,-22r-2,-1v12,0,13,-9,23,-12v-2,-5,4,-11,3,-19v25,-1,13,-43,0,-50v-1,-15,-29,-17,-42,-8v-24,-8,-42,38,-54,3"},"6":{"d":"162,-210v25,31,-25,21,-42,34v-17,0,-28,11,-30,20v-16,-3,-6,20,-21,26v1,14,-7,12,-7,23v13,2,34,-25,51,-11v15,-2,23,3,33,7v-5,6,9,8,10,16v21,12,25,73,0,81v-4,6,-5,16,-13,18v-16,18,-47,11,-65,8r2,-1v-11,-3,-12,-16,-23,-19r2,-1v-6,-4,-6,-15,-16,-15v-9,-28,-6,-86,6,-107v-1,-15,1,-33,11,-34v3,-17,19,-22,30,-34v17,-8,44,-9,66,-13v2,1,5,6,6,2xm146,-66v1,-25,-17,-27,-33,-35v-9,8,-33,-2,-36,15v-14,-2,-11,22,-20,27v11,5,0,31,17,31v1,23,28,16,50,17v16,-9,32,-33,22,-55xm71,-32v3,0,5,1,3,3v-2,0,-4,0,-3,-3"},"7":{"d":"154,-202v8,-1,2,9,7,14v26,-5,22,27,8,35v-1,-1,-2,-1,-3,0v-4,16,-13,24,-18,38v-12,15,-24,47,-26,72v-5,2,-7,20,0,22v-20,12,10,63,-19,76r-18,-6v-4,-11,-9,-27,-1,-38v0,-34,15,-69,18,-92v11,-2,12,-26,16,-40v7,0,4,-9,5,-17v9,-8,17,-15,3,-23r-13,0r1,-1v-24,-2,-36,8,-54,1v-11,2,-6,57,-34,30v4,-11,1,-32,-3,-43v5,-3,9,-8,8,-13v20,-7,56,5,72,-4v15,7,38,-6,51,-11"},"8":{"d":"53,-216v17,-15,57,-19,82,-8v2,4,8,14,17,14v5,16,13,31,10,56v-7,2,-7,22,-16,28v6,5,5,16,13,17v13,21,25,61,10,81v-7,2,-12,8,-14,18v-12,5,-17,17,-35,17v-7,13,-37,4,-43,4v-8,-11,-37,-10,-33,-24v-12,-5,-11,-20,-14,-32v-13,-11,-2,-52,9,-55v-2,-8,20,-16,10,-20v21,-17,-27,-39,-10,-71v6,-11,12,-15,14,-25xm137,-157v15,-18,-9,-59,-32,-46v-15,1,-31,1,-38,11v-1,12,-1,22,-5,27v6,13,19,28,36,22v8,7,22,8,27,0v4,4,9,-9,14,-12xm132,-108v-19,5,-40,-13,-53,0v-8,-2,-6,7,-14,5v-1,6,-8,7,-11,12v3,5,-14,24,0,36v-5,3,-7,5,-6,10v10,1,5,17,20,14v11,9,21,17,40,18v5,-14,34,-6,31,-29v5,-9,19,-24,7,-35v3,-7,-6,-22,-14,-31"},"9":{"d":"117,-45v0,-1,-3,-2,-1,-2xm115,-216r-2,1v13,5,31,6,32,23v14,18,17,49,25,73v-13,12,5,37,-11,51v-4,17,-2,43,-15,55v-3,17,-24,15,-29,26v-7,1,-8,8,-17,8r2,1v-15,2,-25,8,-44,5v-11,7,-30,-9,-17,-21v8,-12,39,-4,48,-13v15,2,32,-19,40,-31r-2,-1v15,-9,21,-40,15,-50v-5,4,-5,18,-16,11v-12,5,-31,7,-37,16v-8,-6,-25,-8,-31,-18v-25,-8,-19,-21,-33,-37v-1,-13,1,-21,1,-41v7,-4,3,-21,13,-25r-2,-1v4,-3,6,-8,8,-13v-1,1,-2,1,-3,0v25,-14,44,-25,75,-19xm81,-189v0,11,-17,5,-22,11v-10,20,-15,49,-1,62v-6,16,28,10,34,22v13,1,18,-9,32,-9v3,-8,6,-16,12,-19v-3,-14,7,-39,-6,-43v-5,-29,-34,-11,-49,-24"},":":{"d":"77,-51v10,3,24,-20,29,-3v29,4,34,63,0,64v-14,10,-33,2,-35,-10v-11,-4,-21,-17,-12,-24v-4,-10,15,-17,18,-27xm62,-99v-11,-43,46,-62,62,-26v9,5,4,26,0,34v-10,13,-42,24,-51,3v-8,1,-7,-8,-11,-11"},";":{"d":"72,-62v10,-13,14,16,20,1v11,8,5,12,25,14v13,16,8,49,1,61v-7,0,-6,8,-5,14v-16,16,-19,40,-51,37v-12,-8,-6,-34,5,-38v3,-9,4,-27,-13,-24v0,0,-7,-34,6,-42v2,-10,25,-11,12,-23xm59,-123v3,-29,48,-25,59,-4v5,8,4,15,2,25v-6,2,-6,10,-8,18v-9,-2,-23,0,-15,8v-6,11,-7,-6,-20,-2v-17,-6,-34,-31,-18,-45"},"=":{"d":"140,-78v4,0,7,4,3,7v-5,0,1,-3,-3,-7xm104,-68v9,17,24,-13,34,0v12,6,25,-11,33,6v13,-1,15,14,12,27v-14,5,-38,17,-49,5r-21,3r1,-1v-37,0,-62,0,-90,-7r-1,2v-10,-10,-11,-22,4,-29v-1,-2,4,-4,5,-6v11,11,35,-7,46,5v11,1,13,-7,26,-5xm119,-120v26,-4,70,-11,62,21v-10,4,-19,21,-31,11v-8,8,-28,-7,-36,3v-15,-3,-38,1,-48,-8v-10,4,-23,7,-28,-3r-14,0v2,0,3,-4,0,-4r-3,0v-1,-18,28,-29,38,-17v18,-8,43,6,60,-5r0,2"},"?":{"d":"121,-36v8,4,16,25,5,33v-17,-3,-33,16,-46,0v-8,4,-19,-2,-16,-15r2,2v7,-22,37,-40,55,-20xm44,-186v21,-18,67,-29,94,-9v21,-1,18,24,30,34v1,5,-6,16,2,16v-12,25,-35,40,-58,54v1,13,7,24,-1,35v-17,-1,-39,-1,-30,-21v-8,-5,-4,-16,0,-22v11,1,11,-16,23,-18v5,-12,31,-6,23,-29v2,-29,-27,-29,-52,-33v-4,6,-11,8,-16,13v8,3,24,11,16,20v6,15,-14,14,-25,20v-3,-6,-7,-5,-11,-1v-23,-11,-3,-44,5,-59"},"A":{"d":"99,-199v31,-5,23,51,37,72v2,10,2,23,10,28v6,25,8,62,25,76v16,0,31,3,27,21v-12,10,-32,10,-54,7v-9,7,-51,-9,-29,-19v-2,-2,5,-3,3,-8r14,-4v5,-12,-4,-18,-10,-24r-45,2v-5,9,0,23,11,23v-3,14,18,11,9,23r2,2v-9,-1,-11,6,-19,8v-15,0,-36,-8,-43,4v-15,-4,-44,-15,-24,-35v11,0,14,-6,24,-3v15,-13,14,-46,27,-57v0,-17,5,-27,7,-39v13,1,5,-32,17,-41v2,-8,4,-19,15,-11v4,-2,2,-6,0,-9v-7,1,-5,-9,-4,-16xm109,-119v10,-9,-2,-36,-1,-49v-4,5,-4,11,-11,15v0,11,6,26,-6,28v1,17,-7,27,-6,45v11,4,18,3,28,-3v3,6,8,-1,10,-4v1,-16,-10,-20,-14,-32"},"B":{"d":"46,-208v22,10,39,-2,61,4v11,-8,42,2,51,12v2,-6,7,1,11,3v10,18,27,54,0,70v-6,23,19,18,15,43v14,14,1,31,1,49v-6,7,-18,8,-19,19v-7,4,-23,12,-31,5v-26,11,-64,-9,-99,2v-1,-4,-3,0,-5,1v-6,-6,-12,-12,-3,-18v24,1,49,3,38,-33v11,-21,-6,-56,3,-79v-12,-9,1,-31,-7,-42v3,-2,4,-7,0,-9v-18,19,-64,-13,-26,-23v4,1,9,1,10,-4xm126,-176v-14,10,-34,-10,-35,8v-7,9,-10,44,-2,54v17,-1,29,-7,49,-3v13,-6,28,-28,12,-44v1,-1,3,-1,1,-2v-7,8,-8,-17,-17,-6v-4,-1,-10,0,-8,-7xm161,-75v-13,-23,-56,-22,-76,-22v-7,22,0,49,3,74v21,-2,48,2,66,-4v-3,-15,14,-12,14,-23v0,-10,2,-28,-7,-25"},"C":{"d":"66,-205v20,1,42,-17,55,-1v12,2,22,15,29,1v15,-10,20,7,15,20v-7,19,-9,37,3,51v0,8,-2,13,-3,21v-11,-1,-12,-12,-23,-12v8,-5,-9,-15,0,-20v-9,-4,-2,-26,-10,-23v0,-5,-6,-4,-8,-3v1,4,-2,3,-5,3v7,-12,-10,-17,-21,-18v-5,6,-19,-5,-17,12v-34,6,-32,52,-33,84v12,11,7,40,23,48v1,6,8,5,7,13v25,9,44,-9,58,-23v-6,-15,19,-8,8,-28v4,-8,16,-8,24,-3v4,16,-1,30,0,41v-6,2,-16,5,-12,13v-6,9,-17,13,-18,27v-14,0,-29,14,-43,3v-9,3,-14,-1,-24,-1v0,-19,-27,-14,-25,-35v-5,-1,-2,-10,-9,-9v-8,-15,-13,-35,-5,-51v-14,-12,4,-50,0,-62v9,-9,16,-16,18,-33v7,-4,13,-8,16,-15"},"D":{"d":"23,-203v20,-6,61,-3,84,0v16,9,28,1,47,12v4,7,6,8,14,11v3,25,23,33,21,64v5,4,3,9,0,14v1,11,2,20,0,30v-6,11,-6,33,-18,40v2,8,-8,5,-6,14v-15,2,-15,18,-32,18v-10,8,-31,0,-38,8v-10,-14,-39,5,-54,-2r1,-1v-27,8,-42,-22,-16,-30v11,-1,30,6,35,-2r4,-129v11,-8,-9,-11,-6,-24v-13,2,-31,1,-42,-6v0,-7,3,-12,6,-17xm137,-35v4,-14,24,-11,14,-29v13,-11,14,-28,19,-49v-13,-2,2,-30,-11,-34v-5,-20,-25,-38,-46,-29v-3,-3,-8,-4,-12,-6v-1,7,-3,19,-8,8v-1,-3,2,-7,3,-3v0,-5,-2,-5,-5,-2v0,13,-3,22,-7,30v13,2,-4,21,6,30v-3,21,-6,60,0,84r-3,6v19,1,38,9,47,-6r3,0xm110,-94r3,13v-8,2,-14,4,-20,0v4,-3,3,-8,5,-14"},"E":{"d":"13,-189v19,-30,69,1,102,-12v10,-4,15,12,25,3v11,1,41,-4,38,24v-2,16,12,40,0,48v-24,-7,-4,-46,-29,-51v-1,-10,-15,-7,-14,-15r-58,14v3,24,-7,47,4,61v8,1,21,7,23,-5v18,5,8,-39,30,-19r1,-2v5,26,-5,47,2,74r-17,7v-8,-9,0,-35,-14,-37v-17,-2,-42,-2,-30,15v3,14,-8,34,4,44v-6,32,40,10,60,21v1,-7,11,-5,10,-14v10,-4,4,-23,14,-28v-1,-17,11,-20,19,-15v4,11,0,17,-4,26v1,14,3,27,-1,38r-2,-1v2,26,-23,4,-33,16v-25,-2,-64,-1,-89,3v-5,-9,-18,-1,-34,-2v-14,-9,-5,-37,13,-26v7,-2,26,-1,21,-8v8,-10,11,-45,4,-56v0,-31,5,-65,-1,-92r-26,1r2,-1v-9,-1,-21,0,-20,-11"},"F":{"d":"79,-203v13,-8,33,-1,48,0v-2,-1,0,-2,1,-3v2,2,-2,4,2,5v6,-8,28,3,35,0v9,13,14,23,9,38v10,11,1,28,11,36v-1,14,-10,22,-22,13v1,-15,-9,-27,2,-35v-12,-2,-2,-26,-22,-23v-5,-17,-18,-2,-38,-8v0,11,-14,12,-16,3v-3,17,1,42,-7,55v10,6,10,9,18,4v1,5,3,4,5,0v0,-6,7,-14,16,-14v2,-14,-1,-21,3,-30r3,0v-2,-1,0,-2,1,-3v9,27,5,71,7,105v-3,-2,-6,4,-12,2v-1,-6,-5,-6,-7,-13v4,-1,6,-26,-6,-25v-7,1,-21,10,-25,2v-11,15,2,28,-6,44v7,6,-1,27,11,28r31,3v-1,-2,-1,-4,2,-3v-4,5,6,6,6,11v0,18,-28,9,-43,14v-13,-7,-39,0,-62,-2v-4,-7,0,-13,-1,-19r12,-4v0,7,13,4,16,0v0,2,0,3,1,4v26,-16,5,-59,12,-91v-6,-11,4,-39,-7,-48v0,0,4,-20,-6,-20v-26,7,-45,-9,-27,-25r53,-4"},"G":{"d":"99,-213v15,3,34,16,49,5v28,8,1,45,9,74v-3,7,-12,3,-18,1r2,-1v-11,-9,-9,-37,-28,-40v-6,-8,-18,-13,-23,-3v-22,-9,-40,17,-35,39v-17,24,2,56,0,86v4,2,7,12,11,8v9,34,44,14,59,2r0,-4r2,2v2,-10,14,-31,0,-36v-4,8,-16,-3,-28,0v2,0,3,-4,0,-4v-8,-26,33,-21,63,-20v21,0,36,4,29,23r-34,5v-6,24,4,52,-4,70v2,1,3,2,-1,2v-8,3,-19,0,-20,-8v-11,17,-58,19,-68,1v-18,-17,-29,-43,-32,-75v4,-2,3,-16,-1,-18v0,-21,-1,-52,11,-56v0,-13,19,-27,22,-41v13,-2,18,-13,34,-9"},"H":{"d":"156,-90v11,7,-2,21,6,32v-8,10,-1,26,-1,40v8,2,15,1,19,-4v9,4,13,19,1,23v-14,-3,-51,5,-68,-5v-3,-8,4,-16,9,-11r13,-10v1,3,0,7,4,6v6,-22,3,-44,3,-67r-1,2v1,-8,-13,-1,-11,-11v-7,-6,-22,-2,-25,6v-1,-2,-6,-5,-2,-6v-10,-4,-27,-3,-31,6v-4,-2,-2,-13,-9,-6v-2,33,-5,45,-2,76v12,11,32,-10,29,16v-17,9,-43,-4,-63,6v-7,-3,-15,-7,-12,-20v13,-3,20,4,31,2v-1,-17,-7,-31,-2,-45v-8,-5,6,-21,-3,-27r-1,1v-2,-16,12,-22,-2,-27v12,-11,-9,-26,5,-32v-1,-5,-3,-9,-7,-11v11,-16,-7,-24,-23,-26v-6,-11,4,-24,18,-19v7,-4,43,0,61,0v-4,3,2,5,4,7v3,0,8,-8,9,-1v14,-16,53,-1,75,-8v11,2,11,15,13,26v-10,5,-18,4,-28,6v5,6,5,11,-1,16v-3,21,-1,48,-8,65xm127,-176v-10,9,-23,-7,-32,-12v4,20,-16,6,-22,16v-11,-3,-4,11,-9,17v8,8,-11,34,14,33v11,8,26,-7,35,4v12,4,16,-11,22,-7v9,-9,-7,-21,3,-28v-8,-3,-9,-12,-3,-19xm72,-141v0,2,0,4,-2,3r0,-4xm73,-170v-3,6,-1,6,0,13v-5,-1,-4,-11,0,-13"},"I":{"d":"91,-203v28,3,58,-9,79,6v1,17,-14,17,-25,22v-6,-10,-19,5,-23,-5v-17,1,-2,20,-9,30v4,41,2,87,11,122v18,-3,48,0,55,15v-7,27,-50,17,-83,20v-2,-6,-8,1,-13,0v-6,-10,-33,8,-39,-7r-12,0v1,-9,-7,-10,-3,-17v14,-3,34,-15,47,-8v3,-3,13,3,8,-5v7,-12,0,-38,6,-56v-5,-21,3,-69,-1,-89v-6,-1,-24,-4,-18,3v-16,-5,-42,2,-38,-23v9,-6,23,-8,38,-8r-2,2v8,0,19,5,22,-2"},"J":{"d":"82,-201v18,-1,35,-9,50,0v12,-7,35,0,50,2v6,9,2,15,-1,25v-13,2,-24,10,-34,6v-7,28,3,59,-8,84v6,15,-3,34,0,57v-14,3,-12,21,-27,25v-10,17,-53,10,-64,-2r-5,0v-8,-13,-23,-34,-13,-49v-7,-30,40,-41,46,-14v4,23,-14,16,-27,19v-1,17,10,27,19,36v17,-7,32,3,44,-10v-6,-4,13,-11,6,-16v8,-9,-2,-18,4,-33v-1,2,-1,2,-2,0v7,-12,-6,-40,1,-59v-4,-5,-11,-23,-3,-27v-2,-29,-46,2,-43,-34v4,-1,4,-7,7,-10"},"K":{"d":"84,-206v-1,2,-4,1,-4,3v4,0,12,6,14,2v3,5,8,7,8,15r-2,-2v-1,6,-8,4,-14,3v-32,3,-27,65,-17,91v13,-7,18,-28,31,-36v0,-12,16,-8,14,-22v9,-3,12,-21,8,-30v-11,2,-16,-4,-10,-12v17,-14,46,-11,71,-8v-2,5,3,22,-3,28v-3,-7,-8,-11,-18,-8v1,8,-16,3,-12,12v-8,4,-7,18,-19,18v-15,16,-23,31,-27,50v21,16,27,43,45,60v5,15,21,18,34,24v0,9,1,29,-7,21v-27,-3,-49,3,-73,-7v-14,7,-25,11,-38,2v-8,4,-40,5,-52,0v-3,-17,7,-22,22,-17v8,-11,9,-29,9,-47v-6,-10,6,-28,-2,-43v8,-17,1,-45,2,-70v-7,-9,-39,8,-32,-16v6,-5,13,-7,20,-2v14,-8,35,1,45,-9r7,0xm112,-50v-21,-6,-3,-29,-13,-40v-4,11,-15,9,-21,21r-1,-2v-6,9,-11,15,-8,33v-6,4,2,10,2,16v12,-1,32,-6,36,7v9,2,10,-13,24,-7v10,-12,-12,-20,-19,-28"},"L":{"d":"9,-203v25,3,64,-7,87,4v10,-10,48,-8,45,13v-15,12,-28,4,-49,3v0,42,14,96,-2,126v9,6,0,25,9,32v27,0,48,5,62,-12v2,-25,-9,-61,19,-64v6,5,13,17,6,25v9,9,0,21,4,36r-2,-1v-1,10,3,16,3,26v-6,12,-13,22,-36,18v-12,3,-38,3,-54,-2v-9,14,-35,-7,-41,4v-6,-8,-31,9,-38,-4v-7,3,-23,8,-19,-5v-5,-3,1,-12,1,-19v15,-1,35,3,45,-3v3,5,13,1,17,-1v-7,-32,6,-71,0,-97v12,-9,-2,-25,0,-41v9,-2,10,-21,-3,-18v-20,4,-44,-4,-57,4v-9,-9,-3,-28,3,-24"},"M":{"d":"34,-165v12,-25,-42,-11,-25,-35v15,-3,28,8,34,-3v4,7,22,-1,23,10v18,4,7,33,16,46v-7,11,7,22,4,42v5,10,8,23,16,30v6,-9,24,-19,13,-32v7,-10,-1,-37,16,-40v-3,24,-2,32,-10,43v7,25,-5,31,-1,49v-10,6,0,25,0,32v9,4,15,-4,26,0v11,-13,-4,-39,6,-52v-8,-11,9,-32,-2,-46v8,-3,11,-56,-3,-65v-5,4,-5,15,-6,23r-1,-2v-1,13,-8,2,-16,2v-2,-11,10,-16,7,-30v1,2,1,2,2,0v6,-15,29,-6,41,-10v3,13,16,-1,18,9v-24,-1,-24,22,-31,38v18,16,-1,50,13,74v-3,13,-9,39,1,49v-3,18,24,2,24,23v0,11,-40,15,-49,7v-10,7,-27,8,-30,-6v-8,4,-8,12,-23,11v-3,-16,-15,2,-25,0v-26,4,-39,-3,-59,-6v-3,-3,-4,-9,-5,-14v4,4,6,-12,9,-6v4,-7,9,3,15,-5v0,-29,7,-67,-1,-92v9,-11,10,-32,3,-44xm69,-161v-9,0,-8,-9,-17,-9v-2,21,-11,60,2,76v-6,4,-3,13,5,13v-7,9,-4,24,0,35v6,-3,4,11,9,13v-6,1,-2,4,1,7v11,-4,13,4,18,9v-5,-25,-3,-58,-19,-73v17,-8,-5,-28,4,-41v-1,1,-3,1,-3,-1v7,-5,-4,-15,2,-24v-2,0,-2,-2,-2,-5xm115,-18v0,0,7,-3,3,-2xm55,-131v0,-2,0,-4,3,-3v0,2,0,4,-3,3"},"N":{"d":"34,-203v21,7,49,0,60,15v6,-3,5,3,6,9v-6,-2,-12,7,-8,14v20,10,7,54,30,64v-8,24,9,40,29,36v-2,-13,-13,-29,-3,-34v-9,-11,4,-42,-8,-53v7,-21,-12,-23,-31,-22v-3,-6,-4,-15,0,-21v-1,2,-1,0,-2,-1v22,-7,68,-13,91,-2v0,3,1,5,3,3r0,-3v-4,10,-11,17,-15,27v-11,0,-27,-6,-23,12v12,9,-8,18,1,26v-6,20,-1,36,-4,61v-8,5,7,17,0,28v8,14,12,39,1,49v-21,2,-30,-4,-31,-22r-15,-2v1,-10,-8,-12,-1,-21v5,4,8,-2,12,-4v-4,-6,-13,-12,-15,-1v-10,1,-5,-15,-11,-23v8,-2,15,0,14,10v14,-10,-4,-27,-14,-33v-4,-18,-4,-26,-14,-34v-5,11,-6,9,-14,3v-8,20,2,38,-3,59v2,4,10,10,3,14v5,1,3,10,-1,11r4,16v11,2,24,3,33,4v-6,5,5,35,-20,24r-32,0r1,-1v-22,0,-35,4,-49,-3v-2,-9,7,-7,5,-17v21,-3,29,-21,21,-43v10,-9,2,-28,0,-43v18,-2,-7,-23,5,-35v0,5,7,6,9,2v-7,-9,-13,-19,-12,-36v-12,-2,-26,-6,-32,-16v13,-9,19,-13,30,-19r0,2xm129,-159v3,1,3,4,1,5xm136,-126v4,11,6,27,-2,33v-10,-9,-2,-21,2,-33xm84,-125v1,-15,-3,-10,-15,-8v2,14,11,-1,15,8"},"O":{"d":"57,-193v13,9,28,-24,43,-6v13,-2,16,12,29,8v12,11,31,16,32,38v7,12,16,19,15,39v8,10,-1,16,4,31v-15,9,-2,38,-20,50v-4,-3,-9,25,-15,19v-5,11,-20,12,-17,20v-17,8,-50,16,-64,-3v-11,0,-20,-6,-15,-14v-21,-7,-17,-30,-30,-47v1,-25,-7,-81,16,-98v0,-11,11,-14,11,-27v4,-3,9,-5,11,-10xm118,-163v-3,-24,-49,-15,-59,-2v-18,22,-15,73,-5,107v12,8,12,22,25,29v7,20,42,14,47,0v9,-21,23,-61,17,-85v3,-4,4,-8,-2,-10v4,-16,-13,-22,-12,-35v-3,-2,-5,-5,-11,-4"},"P":{"d":"182,-177v1,13,25,42,5,61v-3,13,-15,10,-20,24v-21,7,-53,11,-73,11v-5,9,5,14,-2,21v-3,13,1,48,23,38v6,12,25,-10,25,15v-6,2,-3,18,-14,13v-17,-8,-37,7,-54,-2v-19,5,-38,0,-53,-3v-5,-6,-6,-17,4,-20r-1,-1v13,2,26,-13,33,-3v18,2,13,-36,14,-60v2,-31,-1,-66,4,-94v-10,-14,-18,8,-25,-6v-16,13,-37,-13,-15,-18r-2,-1v21,4,52,-6,68,6v15,-11,35,1,54,1v6,11,17,-2,22,14xm164,-126v15,-15,-3,-45,-23,-42v-5,-16,-26,2,-29,-13v-3,4,-11,5,-18,5v-2,20,-3,51,4,68v11,7,36,-4,43,4v5,-13,23,-3,23,-22"},"Q":{"d":"70,-189v28,-29,77,5,88,31v13,13,16,40,16,67v4,13,-3,44,-11,56v2,4,-5,14,-4,23v-11,-3,-10,13,-17,11v-7,7,1,18,11,14r1,-10v24,-12,35,14,23,34v-7,12,-34,21,-44,4v-18,-3,-17,-29,-46,-23v-14,-7,-35,-10,-39,-28v-18,-18,-28,-43,-25,-66v-10,-41,3,-100,41,-109v-2,-4,2,-4,6,-4xm108,-169v-8,-13,-34,-4,-36,8v-10,6,-5,18,-17,24v1,18,-17,29,-5,40v-8,13,3,27,-5,35v6,7,4,20,19,18v13,14,20,-17,37,-7v10,-2,27,29,36,11v-1,-23,22,-33,11,-53v5,-10,-4,-20,2,-34v-5,-9,-22,-6,-19,-23v-2,-2,-2,-6,-7,-5v0,-10,-7,-22,-16,-14xm96,-10v7,1,12,-9,5,-11v-3,3,-6,5,-5,11"},"R":{"d":"140,-102v-14,15,18,36,8,58v-3,19,12,34,24,23r-1,-1v11,-1,21,6,15,15v0,0,-9,-1,-8,5v-16,-2,-22,0,-37,-5v-8,-15,-11,-38,-7,-62v-6,-6,-2,-9,-11,-9v-2,-13,-19,-20,-31,-16v-7,-4,-27,-8,-27,6v0,24,-3,52,7,69v0,0,10,-5,9,2v14,-3,31,7,14,17v-22,-11,-59,8,-84,-5v-2,-13,20,-17,34,-19v10,-12,0,-34,8,-49v-14,-9,3,-39,-10,-57v5,-13,6,-24,-6,-30v-1,-9,8,-9,0,-14v-7,8,-20,-6,-26,-1v-5,-6,-7,-14,-3,-23v30,-5,62,-4,91,-5v6,11,28,-2,41,10v22,1,15,15,27,27v1,11,8,24,1,32v3,14,-17,25,-27,34xm132,-174v-14,-10,-34,8,-43,-3v-4,4,-8,7,-15,8r-2,50v19,-9,21,20,37,2v13,-3,30,-4,31,-20v11,-1,-3,-21,6,-26v-3,-8,-14,1,-14,-11"},"S":{"d":"58,-197v14,4,26,-20,46,-4v12,0,18,6,29,7v2,6,6,10,12,12r3,-19v19,-3,18,16,8,25v5,8,10,30,0,38v-9,-5,-11,-14,-15,-25r-2,1v-1,-15,-14,-9,-20,-17v-6,-1,-28,-17,-37,-4r3,3v-8,5,-20,4,-26,-2v4,13,-12,23,-1,33v-8,8,6,20,15,22v2,-4,5,1,8,3v2,6,12,-1,15,-3v13,5,25,14,42,9v9,6,9,21,23,22v5,12,15,30,7,43v7,11,-9,31,-10,41v-12,14,-39,10,-55,20v-10,-10,-28,-7,-39,-17v-3,3,-9,3,-9,9v-42,3,-13,-39,-21,-75v4,-12,18,3,24,4v1,9,-1,21,8,22v0,11,15,7,15,19v18,8,42,7,50,-8v10,-5,19,-20,12,-28v23,-22,-16,-29,-33,-36v-16,4,-30,-4,-43,-5v-6,-10,-15,-18,-26,-23v0,-12,-13,-31,-6,-42v10,-3,3,-13,15,-16v-1,-7,5,-7,8,-9"},"T":{"d":"126,-145v-5,0,-4,-6,-6,-9v4,1,7,3,6,9xm68,-207v6,-12,29,8,38,-3v27,8,57,-9,66,19r1,-1v-1,5,0,8,5,8v-12,25,6,58,-7,76r-14,-1v-2,-19,-9,-38,-5,-56v-7,-3,-6,-16,-17,-12r-3,-3v-3,5,-5,20,-11,11v-2,-9,6,-10,2,-15v-12,2,-13,25,-8,35v-9,9,3,31,-6,41v10,9,-8,22,0,30v-6,9,1,23,-2,42v10,5,22,16,30,5v11,9,29,0,27,23v-23,10,-50,0,-77,0v-10,12,-22,-7,-34,4v-15,2,-19,-13,-11,-24v14,-5,22,4,37,-3v5,6,15,3,12,-8v3,-19,3,-29,-2,-43v12,-18,-10,-46,6,-56v-5,-18,1,-61,-35,-43v-5,8,5,10,2,18v-27,0,0,37,-16,46v1,7,-11,11,-18,5v-13,-11,5,-26,-3,-40v7,-7,7,-32,2,-45v9,-10,29,-16,41,-10"},"U":{"d":"123,-74v8,1,12,7,2,9xm130,-38v-9,-6,20,-8,9,-17v7,-9,-6,-20,-4,-33r3,2v7,-19,-3,-39,2,-52v-3,-4,-6,-9,-2,-14v-2,1,-4,1,-3,-2v4,4,5,-3,7,-6v-2,-17,-15,-22,-35,-21v-5,-8,0,-20,13,-18v7,-8,13,3,25,-4v7,21,47,-18,47,22v-14,5,-25,-3,-34,7v0,18,10,41,-1,52v6,22,5,47,1,69v13,13,-10,26,-10,43v-13,7,-28,27,-41,16v-10,3,-24,0,-33,-3v0,-6,-11,-2,-15,-7v-8,-23,-25,-37,-20,-73v15,-8,-7,-21,3,-31r-3,-22v10,-5,-6,-20,2,-27v-4,-5,-2,-36,-14,-23v-8,-5,-18,-1,-17,-17v5,-5,12,1,15,-6v9,12,23,-5,31,4v2,-1,2,-3,0,-4v9,5,41,-5,30,22v-15,1,-37,1,-24,21v-2,11,-14,16,-3,23v-7,26,0,40,-4,64v7,6,-4,20,8,19v-1,1,-1,2,0,3v9,5,1,22,22,24v13,8,41,1,45,-11"},"V":{"d":"85,-214v8,4,11,26,0,28v-6,0,-17,-4,-20,0v4,16,7,26,9,47v24,2,0,46,17,63v4,11,13,2,15,-4v3,-10,3,-19,0,-29v8,0,6,-9,6,-16v7,1,6,-16,14,-19v-6,-7,0,-23,5,-27v-10,0,2,-21,-16,-17v-11,-3,-15,-25,2,-25v25,0,51,-4,70,5v3,6,10,16,3,23v-12,5,-24,-4,-28,6v-16,6,-13,30,-21,45r2,1v-11,12,-4,35,-16,43r2,1v-5,8,-6,25,-11,36v6,4,0,4,2,16v-12,5,-4,38,-29,38v-6,-9,-21,-18,-11,-28v-9,-13,-4,-35,-11,-44r2,-1v-10,-7,-3,-23,-11,-30v-1,-17,-8,-60,-17,-70v5,-4,-2,-4,0,-7r2,2v3,-25,-25,0,-32,-13v-4,2,-9,-5,-8,-13v2,-22,53,-9,80,-11"},"W":{"d":"100,-192v8,-8,16,0,26,1r-2,10v-14,3,-20,-1,-20,-11r-4,0xm96,-188v8,4,0,43,-7,23xm115,-152v-5,0,-7,0,-3,-3xm6,-191v10,-12,21,-2,33,-6r-2,2v4,0,11,2,11,-3v5,4,12,5,12,13r2,-3v-5,7,-19,-4,-22,3v5,10,1,31,10,35r-2,1v8,4,-2,24,7,27v-1,4,1,6,4,6v-5,16,11,29,10,16v10,-7,-1,-26,13,-30v4,-6,2,-13,7,-15v-5,17,9,26,20,15r4,-13v6,14,19,22,16,46v7,-1,-3,18,7,11v-1,-10,7,-13,0,-21v17,2,0,-21,13,-25v-1,-14,5,-20,-2,-31v5,-7,22,-12,10,-21r-8,0v-3,-14,24,3,29,-14v10,0,6,14,2,18v-3,-1,-5,-5,-8,-3v-8,26,1,57,-11,74v-1,20,-8,38,-7,62v-12,11,-1,36,-16,46v-7,14,-10,1,-20,1v-17,-19,5,-66,-15,-82v7,-11,3,-30,-5,-37v-4,9,-12,19,-5,30v-11,14,-5,48,-4,61r-1,-2v-2,7,-4,14,-2,22v-10,7,-32,11,-36,-5v-1,-16,5,-38,-5,-46v-1,-28,-11,-44,-5,-72v-2,-7,-6,-14,-1,-24v-8,-6,-8,-18,-9,-29v-3,6,-10,0,-17,1v2,-3,-5,-6,-7,-8xm62,-86v2,-2,0,-5,0,-8r0,8xm60,-84v1,0,3,1,3,-1v-1,0,-3,-1,-3,1"},"X":{"d":"139,-205v20,6,54,-8,53,19v-10,5,-27,2,-39,7v1,14,-24,35,-22,46v-19,10,-13,47,0,58v0,4,1,7,7,6v-2,4,6,5,8,8v4,10,5,35,15,32v2,18,27,-3,34,11v10,4,5,21,-6,21v-13,0,-35,5,-39,-5v-14,4,-24,5,-35,2v-5,-10,-5,-27,12,-22v6,-15,0,-28,-9,-31v-1,-16,-2,-32,-15,-36v-5,6,-1,20,-12,20v-5,8,-7,22,-10,31r-1,-2v-4,11,-8,18,8,18v4,1,6,4,12,4v3,8,3,12,-1,18v-30,3,-48,1,-80,1v-10,-4,-20,-18,-6,-26v13,0,48,2,42,-23v11,-1,14,-9,16,-21v14,-1,5,-18,18,-22v-3,-6,13,-11,6,-18v11,-6,-5,-16,-10,-18r1,-15v15,-2,19,25,31,4v-1,-23,26,-35,1,-48v-14,-1,-8,-13,0,-16v7,-1,19,3,21,-3xm21,-197v10,-19,49,0,79,-4v4,20,-8,18,-23,16v3,12,16,26,7,38v-20,-1,-14,-27,-29,-29v-2,-17,-37,9,-39,-18"},"Y":{"d":"10,-205v27,1,66,-21,76,6v5,5,17,7,12,16v-25,-4,-22,22,-12,36v5,4,10,7,16,9v4,-8,23,-11,18,-21v6,-14,15,-32,-7,-32v-5,-5,-6,-15,1,-19v26,2,60,-8,75,8v3,17,-20,9,-24,22v-8,0,-8,5,-7,13v-11,-1,-18,19,-10,23v-4,2,-10,3,-9,10v-19,-6,-6,33,-23,39v-7,26,-8,74,34,63v9,6,13,13,10,24v-16,10,-58,4,-69,9v-19,-4,-74,-2,-43,-33v12,0,25,1,36,-1v-3,-18,12,-30,2,-40v7,-16,5,-42,-13,-45r2,-1v-9,-21,-15,-39,-30,-57v-12,-2,-19,-9,-32,-10v1,-5,-7,-9,-3,-19"},"Z":{"d":"73,-204v25,-9,53,2,74,-3v7,5,26,6,19,19v3,-1,2,3,2,5v-17,7,-8,25,-21,28v-7,11,-4,27,-21,23v-8,10,-8,21,-9,27v-7,5,-16,7,-15,20v-20,-3,-11,23,-28,26v-12,8,-15,25,-23,37v6,8,11,2,12,-6v9,6,27,9,36,0v16,14,52,2,48,-25v4,-16,-4,-38,21,-32v5,22,-11,42,-5,61v-3,3,-2,10,-3,16v-15,8,-26,-4,-33,6r3,1v-13,-2,-24,-6,-31,4v-4,-15,-26,0,-34,-10v-18,3,-41,8,-32,-14v7,-7,14,-15,18,-26v6,3,9,-9,9,-18v15,-12,17,-39,33,-49v2,-10,7,-19,16,-23v-3,-21,22,-23,13,-43v-21,3,-29,3,-45,-4v-3,10,-19,11,-11,24v-12,0,-2,22,-12,25v-1,8,-10,4,-14,0v-1,-21,0,-48,8,-64v4,1,19,-14,25,-5"},"\\":{"d":"173,30v0,10,19,22,6,27v-15,-6,-12,-28,-29,-32v-6,-8,-1,-18,-11,-20v-1,-19,-18,-22,-18,-43v-15,-2,-12,-22,-21,-30v-10,-16,-12,-39,-31,-46v-9,-32,-25,-57,-43,-81v0,-17,-13,-22,-18,-34r-2,2v0,-11,0,-30,12,-17v21,4,20,29,33,41r11,34v13,3,6,22,15,29v8,14,23,27,23,46v23,21,31,51,46,77v13,7,8,25,20,38v-4,3,-4,6,0,9v1,-4,4,0,7,0"},"^":{"d":"85,-289v24,1,41,12,47,33v3,3,9,3,8,10r17,13v4,31,-26,26,-37,9v-7,-11,-16,-20,-31,-22v-4,-18,-23,5,-30,-7v0,21,-9,45,-28,38v-10,-19,10,-30,17,-44v14,-8,23,-21,37,-30"},"_":{"d":"45,30v4,-13,19,9,22,-2v9,4,27,0,31,7v9,-7,39,2,52,-7v3,4,6,6,9,0v8,4,18,6,22,-3v4,8,18,-4,20,5v-2,-1,-2,-2,0,-3v6,9,12,20,5,33v-49,13,-130,0,-181,10v-4,-2,-8,-4,-10,0v-6,-7,-18,-9,-18,-23r2,1v-2,-24,25,-21,46,-18"},"\u2018":{"d":"113,-188v-7,9,-19,5,-28,3v-3,-5,-15,-8,-17,-19r-1,1v1,-14,3,-27,3,-42v19,-16,19,-44,53,-43v8,10,8,27,-3,32r2,1v-3,5,-18,16,-3,17v16,16,12,43,-5,52"},"a":{"d":"134,-150r-2,1v31,5,23,66,20,99v4,22,26,-2,35,11v-1,16,-5,29,-12,39v-9,1,-21,7,-26,0v-11,7,-14,-21,-32,-8v-8,11,-34,4,-43,12v-9,-5,-16,-4,-32,-5v-13,-11,-33,-29,-21,-46v-7,-6,-3,-18,6,-18v4,-11,14,-16,24,-21v-19,0,-28,-36,-16,-48r-3,-1v5,-2,4,-15,14,-11v14,-14,62,-14,88,-4xm113,-130v-16,2,-28,-10,-39,-1v-14,0,-7,15,-1,24v-6,5,-10,12,-21,11v2,8,27,11,28,0v10,8,18,-13,35,-6v2,-7,8,-11,14,-6v5,-17,-14,-11,-16,-22xm121,-66v-6,-9,-34,6,-53,1v-4,8,-22,0,-16,14v-10,28,20,21,43,23v2,-8,24,-9,20,-17v2,-4,9,-4,11,-9v-12,0,-11,-7,-6,-14"},"b":{"d":"60,-206v14,11,12,51,3,66v2,7,8,13,15,2v3,2,3,-4,5,-7v13,-11,36,2,48,-9v13,-1,9,25,18,21v10,8,10,31,18,43v-1,48,-20,81,-55,94v-3,-7,-17,4,-17,-4v-11,-1,-17,-8,-23,-14v-8,4,-12,12,-25,11v-9,-19,7,-48,-4,-62v2,-40,6,-72,-3,-107v-8,-11,-33,-1,-34,-23v7,-17,29,-11,54,-11xm131,-111v-9,0,-14,-21,-20,-11r-15,0v0,-6,-5,-2,-7,0v-8,12,-14,26,-23,37v2,13,-5,42,15,49v9,14,32,19,43,3v10,-14,23,-34,9,-52v6,-8,-5,-14,-2,-26"},"c":{"d":"59,-139v15,-2,41,-17,65,-5v10,-6,13,14,20,8v17,15,26,30,17,49r2,2v-11,2,-17,15,-30,5v-5,7,-8,-4,-11,-7v-2,-17,21,-22,0,-30v-17,-22,-57,-2,-63,17v-11,15,1,46,7,62v13,-1,10,13,21,14v13,10,37,3,39,-9v6,-1,14,-10,12,-12v10,-4,19,-9,30,-4v0,15,4,23,-9,28v1,17,-28,17,-35,28v-14,-2,-23,10,-29,2r-1,2v-24,-7,-53,-20,-60,-46r-1,2v-8,-7,-6,-26,-8,-42v6,-12,6,-37,21,-44v-3,-7,19,-13,13,-20"},"d":{"d":"90,-199v5,-15,28,7,32,-4v40,-3,17,50,25,78v-4,12,4,27,-2,40v7,9,4,34,6,55v10,9,37,4,36,26v-13,12,-30,10,-49,11v-5,-7,-14,0,-19,-11v-3,3,-5,7,-12,6v-4,8,-12,15,-20,6v-2,4,-8,3,-14,3v3,-2,1,-3,-1,-4v-15,5,-15,-10,-22,-10v-10,-8,-10,-22,-21,-32v-1,-17,-11,-45,3,-61v3,-34,24,-39,49,-50r20,2v0,7,12,0,14,11v6,-1,13,0,12,-8v1,1,2,1,3,0v-1,-8,-12,-17,-3,-24v-4,-12,-18,-9,-35,-10r-11,-13r1,2v3,-3,6,-19,8,-13xm116,-107v-17,-5,-42,-27,-52,0v-18,9,-13,44,-6,63v18,-1,17,41,35,14v18,-7,39,-29,25,-49v0,-10,3,-22,-2,-28"},"e":{"d":"84,-146v21,0,36,3,51,8v11,9,19,29,29,41r-3,29v-13,0,-22,-5,-31,5v-10,-13,-24,-3,-34,2v-2,-18,-30,4,-39,-5v-9,22,10,40,30,45v10,12,42,7,44,-9v10,-5,21,-23,30,-8v-6,20,-18,35,-43,37v-14,14,-44,2,-57,-6v0,-9,-13,-8,-12,-20v-18,-5,-10,-38,-21,-50v-1,-11,10,-10,7,-26v8,-11,13,-25,29,-29v2,-15,18,-6,20,-14xm95,-125v-24,-9,-10,26,-29,32v4,23,31,1,37,13v5,-6,8,-7,18,-6v2,-17,0,-31,-8,-40v0,3,-3,3,-5,1v-3,-5,-13,7,-13,0"},"f":{"d":"151,-203v10,10,22,16,32,26v0,16,-10,28,-26,20v-1,-15,10,-22,0,-34v-17,6,-22,-6,-6,-12xm134,-194v-17,7,-57,29,-30,50v8,17,21,-5,39,4v0,6,6,4,4,12v-17,6,-40,-5,-48,6r6,98v15,-5,21,2,40,-3v9,4,14,11,12,26v-24,13,-55,5,-79,8v-11,-7,-34,11,-41,-2v-12,1,-16,-13,-8,-19v-1,-1,-2,0,-2,-2v8,-3,13,-8,23,-8v7,-2,31,14,31,-18r1,-77v-11,-16,-50,10,-53,-19v4,-13,21,6,31,-6v13,-3,18,12,24,0v-1,-19,1,-33,12,-40v2,-14,26,-21,38,-10"},"g":{"d":"72,-140v7,-20,33,-6,46,-6v6,5,19,21,23,5v5,-7,29,-14,30,1v10,2,9,17,7,27v-9,3,-16,9,-22,-1v1,-6,-3,-15,-12,-14v-8,13,7,33,-2,46r2,2v-7,2,-11,7,-12,15v-16,12,-46,23,-63,4v-9,4,-19,9,-26,19v8,7,27,18,37,4v12,1,25,4,32,-3v14,15,42,1,55,17v12,5,9,27,15,41v-5,6,-9,16,-11,26v-4,-1,-3,7,-12,3v-5,10,-19,5,-27,16v-3,-3,-6,-5,-11,-2v-4,11,-28,-1,-41,5v-4,-6,-10,-8,-20,-8r1,-2v-15,-1,-18,-8,-29,-9v-9,-13,-16,-21,-14,-41v18,-23,-5,-56,14,-73v27,5,12,-24,11,-42v7,-12,15,-23,28,-29v-1,-1,-3,-2,0,-2xm104,-133v-14,3,-39,-7,-36,25v5,13,2,27,7,39v26,1,66,-1,52,-36v8,-17,-15,-20,-23,-28xm142,0v-10,-15,-30,3,-33,-12v-12,-2,-26,15,-31,2v-11,4,-29,3,-30,19v15,3,2,20,25,19v1,8,16,-1,17,8v30,-9,55,1,63,-28v-3,-5,-3,-10,-11,-8xm109,4v0,2,-2,1,-3,1"},"h":{"d":"9,-198v12,-13,30,3,50,0v12,9,-5,26,5,33v-3,18,-9,35,-1,49v22,-6,40,-46,64,-30v11,1,24,-1,22,13v25,23,6,73,15,111v15,0,38,-1,30,18r-5,12v-22,2,-52,-6,-68,3v-3,-1,-7,-8,-9,-4v-1,-10,-14,-21,-17,-5v-14,5,-35,13,-45,3v-10,8,-51,4,-39,-12r0,-11v17,1,38,2,28,-21v7,-34,-8,-62,4,-86v-8,-10,2,-35,-2,-49v-16,-4,-43,-3,-30,-23xm127,-121v-9,3,-31,-7,-32,10v-7,1,-11,4,-11,12v-14,9,-24,23,-25,45v9,5,-2,42,18,32v10,4,16,-3,19,10v14,-2,24,-16,39,-9v-4,-14,4,-27,-4,-35v12,-13,7,-43,0,-60v-4,1,-4,-1,-4,-5"},"i":{"d":"97,-148v8,-8,20,2,21,11v3,37,-8,85,8,110v15,-2,55,-12,50,13v9,12,-8,21,-24,19v-18,-8,-51,-2,-69,3v-12,-13,-63,7,-52,-30v13,-10,36,-6,59,-6v-1,-6,2,-16,-5,-16v20,-13,0,-58,12,-82v-8,-13,-18,14,-22,1v-8,-10,-30,7,-30,-12v-4,-3,-3,-9,-2,-15v12,-5,37,1,54,4xm96,-204v16,-12,30,6,29,26v-9,9,-24,8,-40,6r-1,-22v-1,1,-2,3,-3,0v6,0,10,-15,15,-10"},"j":{"d":"57,-140v18,-2,50,9,70,0v22,13,8,44,14,73v-6,8,-2,25,-6,37v8,23,-3,61,-8,84v-6,6,-19,15,-28,18v0,7,-8,2,-19,2v-8,0,-19,-7,-21,2v-5,-7,-11,-24,-17,-19v-10,-14,-9,-50,4,-60v5,3,8,-5,14,-5v12,7,21,16,22,33r-2,-2v1,15,-30,8,-14,22v9,3,23,-1,33,-2v-1,-14,18,-9,12,-27v8,-7,-5,-15,0,-22r0,-12r1,2v0,-34,-8,-65,2,-87v-5,-24,-27,-10,-51,-11v-12,-6,-24,-12,-6,-23r0,-3xm103,-192v6,-18,20,-3,31,1v0,5,3,7,6,8v4,32,-41,33,-47,11v-2,1,-2,-1,-2,-3v5,-3,4,-14,12,-17xm94,11v12,-5,14,5,5,11v-7,2,-5,-6,-5,-11"},"k":{"d":"102,-136v10,-3,25,-7,25,6v12,-3,17,-14,33,-8r-1,-2v1,18,-15,18,-34,19v0,3,-4,6,-3,4v4,-5,3,-10,-4,-11v-5,2,-12,1,-14,5xm167,-136v6,-4,15,0,9,8v-4,-1,-9,-2,-9,-8xm15,-188v1,-18,46,-9,47,-9v-1,5,1,10,4,6v-6,20,-3,42,-4,69v10,3,-8,16,0,24v6,1,8,32,23,16v11,-5,17,-14,23,-23v9,-1,9,-2,10,7r-13,13v0,16,16,16,24,24v-1,21,14,25,19,40v17,7,36,-7,40,15v-2,2,-3,3,-2,6v-15,8,-52,-6,-64,8v-13,-1,-18,-10,-20,-22v20,4,21,-20,8,-27v1,-7,-1,-10,-6,-11v4,-19,-12,-31,-17,-12v-11,-3,-10,18,-18,12v-6,10,-1,21,0,33v12,2,33,-1,26,19v-5,15,-18,-6,-23,4v-14,5,-33,2,-50,5v-5,-7,-15,-18,-4,-25v5,-1,36,-7,24,-13v10,-23,3,-45,4,-73v12,0,-1,-20,7,-24v-7,-13,0,-39,-7,-54v-12,0,-21,-4,-31,-8"},"l":{"d":"113,-195v11,30,-7,60,4,90v-6,10,-7,35,-1,44v-7,13,1,36,7,45v18,-7,23,8,43,0v16,4,10,21,-3,24v-39,8,-62,-10,-92,3v-8,-6,-44,0,-35,-15v-5,-25,63,-2,49,-38v1,-9,7,-13,10,-20v-21,-15,12,-32,-1,-57v15,-7,-3,-16,3,-32r-2,-31v-11,5,-29,-5,-40,5v1,-2,1,-4,-2,-3v-8,1,-20,-5,-17,-18v18,-9,51,-1,77,3"},"m":{"d":"10,1v-5,-7,-5,-13,0,-20v8,9,10,-11,25,-3v8,-12,5,-43,8,-66v-10,-13,10,-29,-8,-38v-8,7,-12,-6,-21,-6v-6,-9,6,-17,17,-18v7,5,24,5,27,15v5,-1,15,0,15,-10v4,5,14,-11,20,-2v12,-8,14,23,26,12v6,1,14,1,14,-6v13,-7,30,-6,42,1v-1,3,3,16,8,20v-8,31,-8,69,0,101v12,-1,24,2,15,18v-15,7,-40,-2,-65,0v0,8,-16,-7,-20,4v-16,-7,-34,7,-32,-16v17,-5,27,-14,19,-31v5,-5,3,-14,-2,-21v12,-16,-3,-31,10,-44v-12,-16,-45,-17,-44,10v-15,10,1,44,-4,68v2,2,5,7,1,9v15,0,13,9,11,22v-13,1,-25,5,-40,4r0,-4xm158,-116v-7,5,-10,-16,-23,-9v0,19,-18,16,-16,36v-6,14,8,33,-6,50v6,6,9,10,9,20v13,-7,24,10,34,-5v-8,-17,8,-31,0,-50v8,-15,9,-29,2,-42"},"n":{"d":"59,-157v2,7,6,13,17,13v2,9,24,8,28,-1v12,-2,16,-10,27,-7r0,-2v11,2,16,6,26,10v12,14,10,32,17,50r-7,7r2,66v3,1,7,7,9,3v4,9,15,19,2,23v-9,-15,-41,7,-51,-5v-14,3,-17,-5,-13,-16v6,-3,36,1,35,-8r-2,0v7,-7,-11,-25,3,-34v-11,-10,3,-36,-8,-45v0,-23,-26,-22,-38,-10v-7,-2,-11,5,-7,8v-3,6,-9,9,-9,18v-6,-3,-9,3,-7,8v-9,7,-11,28,-6,43v-7,2,-3,13,0,17r31,0v-12,4,-9,31,-26,21v-11,7,-37,-3,-45,3v-9,-7,-16,7,-23,-6r-2,1v-3,-17,20,-24,32,-22v1,-10,9,-20,4,-27r2,2v-1,-22,-7,-47,-2,-66v-6,-1,-15,1,-13,-8v-13,-4,-27,-23,-10,-31v13,4,31,10,34,-5"},"o":{"d":"48,-119v10,-28,64,-43,91,-24v8,-3,5,11,12,8v10,14,17,25,24,39v-2,15,7,54,-10,68v-2,16,-18,19,-24,31v-11,1,-17,6,-27,8r2,-1v-6,-9,-32,6,-38,-7v-21,-6,-28,-26,-45,-36v-4,-28,2,-65,12,-86r3,0xm137,-97v1,-21,-19,-20,-30,-29v-15,9,-45,2,-44,29v-10,10,4,27,1,44v6,17,28,44,52,25v7,2,14,2,10,-3v10,-5,8,-19,18,-24v0,-15,8,-25,-4,-33v1,-4,2,-9,-3,-9"},"p":{"d":"159,-127v28,4,26,43,24,74v2,2,4,5,5,8v-12,0,-12,11,-16,23v-12,0,-10,20,-20,17v-10,10,-16,20,-37,11v-8,7,-5,14,-15,4v1,-1,3,-2,0,-3v-7,-4,-11,-11,-19,0v2,8,-3,23,10,21v5,9,17,-2,24,9r5,-1v1,8,-1,13,-2,20r-1,-2v-5,11,-25,-2,-28,8v-10,-8,-15,1,-24,-2v-9,6,-16,2,-32,2v-9,-4,-33,-19,-13,-32v18,0,37,4,34,-20v-2,-20,3,-34,2,-48v-16,-8,9,-33,1,-56v6,-8,1,-26,1,-33v-18,5,-41,5,-35,-19v15,-10,34,-4,50,-1v10,19,36,4,44,-5v20,4,35,4,47,14xm148,-99v10,-8,-9,-14,-14,-20v-15,7,-38,0,-40,25v-7,7,0,11,-11,12v-6,18,17,21,8,40v11,10,27,35,41,15v16,2,20,-16,12,-26v2,-3,5,-8,11,-5v2,-11,-17,-11,-6,-20v6,-9,0,-12,-1,-21"},"q":{"d":"94,-137v15,-5,22,15,35,2v23,-7,24,25,17,38v4,6,5,13,6,23r-2,-2v0,25,3,39,-1,61v10,13,1,34,7,48v16,0,46,4,27,27v-6,16,-24,-5,-38,8v-19,-4,-69,8,-54,-24v-2,1,-2,-1,-2,-3v13,5,19,-12,34,-2v0,-12,11,-24,0,-31v1,-1,2,0,2,-2v-10,-8,-31,3,-28,10v-28,-5,-55,-14,-61,-43v-13,-9,-8,-39,-10,-62r1,1v7,-27,33,-58,67,-49xm111,-102v-17,5,-11,-22,-22,-14v-12,-5,-9,10,-20,9v-15,2,-5,29,-16,36v-4,23,11,29,13,44v9,1,24,13,36,5v-7,-8,12,-8,10,-18v9,-5,23,-31,5,-36v-2,3,-3,1,-5,-1v3,-6,-1,-16,-1,-25"},"r":{"d":"34,-149v26,3,69,-2,58,35v2,9,8,6,11,0v-2,-7,15,-5,11,-18v18,-5,44,-25,61,-11v10,8,15,16,9,40v-11,12,-30,1,-25,-14v-11,-22,-44,6,-45,20v-8,4,-17,12,-12,23v-13,14,-2,38,5,52v14,-10,28,6,39,5v4,20,-11,20,-25,24r2,1v-34,-8,-67,10,-89,-4r-1,2v-7,-7,-18,-19,-5,-27v18,-7,30,1,41,-3v-6,-10,13,-23,3,-41v4,-5,10,-23,0,-26v1,-9,9,-21,0,-26v4,-3,-1,-5,-3,-8v-13,-4,-27,10,-32,0v-10,1,-8,-18,-3,-24"},"s":{"d":"48,-146v22,-9,52,-17,69,-1v15,5,20,6,27,-7v4,1,6,3,10,4v-1,-1,-3,-2,0,-3v1,8,8,23,0,31v3,5,7,24,-7,20v2,-5,-12,-11,-12,-21v-17,-20,-62,-25,-78,-2v1,2,8,7,3,9v-6,3,-1,15,6,19v19,0,39,-1,49,9v15,-9,27,6,40,8v9,13,21,43,0,56r0,3v-9,8,-26,18,-43,20v-18,8,-42,-17,-67,-1v-26,-4,-5,-42,-13,-59v4,-8,15,-11,20,-1v4,9,10,12,22,14v-3,11,8,16,15,9v7,1,5,22,11,9v10,-2,15,6,20,-1v-6,-16,9,8,12,-8v-2,-12,14,-13,6,-23v-15,-11,-30,-21,-50,-14v-17,0,-30,-14,-40,-13v-15,-13,-14,-44,0,-57"},"t":{"d":"63,-203v3,-12,30,-11,27,5v14,5,-9,20,4,30v-3,5,-7,11,0,14v12,-2,31,4,38,-3v10,4,24,8,15,25v-12,8,-52,-11,-52,13v-16,4,-2,19,-5,34v17,7,-10,17,5,22r6,0v-2,9,-10,18,0,24v18,2,3,-24,12,-29v-3,12,7,21,11,7v11,-4,13,-18,29,-10v5,15,1,34,-9,40v3,6,-15,19,-10,24v-16,-3,-22,21,-30,7v-13,1,-29,11,-26,-7v-36,-22,-7,-74,-12,-123v-9,-4,-21,2,-35,0v-4,8,-9,-4,-17,-2v0,-10,1,-30,17,-23v8,-11,25,9,32,-2r0,-46"},"u":{"d":"47,-145r-2,2v19,7,5,22,6,41r2,69v8,3,18,13,27,6v13,3,29,-15,29,-34v22,-7,5,-44,23,-58v-4,-16,-48,4,-39,-22v16,-10,33,1,50,-2v12,16,0,60,8,89r-2,-1v2,11,0,26,15,24v4,7,12,8,22,10v4,16,-1,29,-19,25v-26,9,-59,-24,-81,-1v-18,8,-25,-1,-41,-4v1,-8,-13,1,-13,-9v-9,-36,8,-86,-10,-117v-20,9,-32,-17,-15,-26v7,-1,18,4,17,6v-1,-1,-1,-1,0,-2r1,2v4,-7,12,5,22,2"},"v":{"d":"6,-137v-3,-30,38,-9,72,-15r12,4v4,18,-11,21,-23,27v1,15,13,18,13,33v20,-6,7,12,16,19r2,-3v-1,6,-2,12,-7,14r7,6v3,-8,10,-16,4,-24v10,1,1,-13,11,-12v5,-10,8,-21,10,-34v-6,-7,-23,-4,-20,-19v6,-4,14,-17,22,-8v14,-1,48,-3,61,4v13,28,-36,7,-37,34v-7,10,-6,32,-15,42v2,15,-18,27,-11,48v-5,0,-6,-5,-9,0v9,23,-25,40,-35,17v0,-12,-5,-20,-8,-29r-1,2v-3,-17,-14,-28,-13,-46v-7,-14,-12,-37,-22,-51v-10,4,-36,0,-29,-9"},"w":{"d":"6,-135v6,-15,36,-5,42,-5v2,9,-4,11,-8,15v6,6,10,18,2,25v15,10,-6,32,12,38v5,4,8,12,15,7v11,-12,0,-28,8,-38v12,-2,16,16,6,20v-2,11,4,33,-6,38v7,10,3,38,-10,41r0,4v-2,-4,-5,1,-9,0v-5,-7,-8,-14,-14,-20v4,-26,-12,-40,-4,-66v-10,0,2,-21,-10,-21v0,-19,-14,-28,-24,-38xm121,-140v2,11,-6,10,-13,14v-1,5,4,15,-3,15r-2,-14v-4,2,-6,6,-12,6v2,-13,-16,-7,-16,-19v18,2,30,-4,46,-2xm181,-145v-1,5,3,4,5,7v-21,11,-11,50,-31,64v1,3,2,6,2,11r-2,-2v-6,21,1,52,-11,69v-36,6,-19,-37,-33,-63v3,-2,8,-17,0,-15v-1,-7,-9,-23,1,-25v5,18,14,33,20,51v18,6,10,-21,23,-26v-11,-20,6,-45,-6,-56v-2,4,-4,4,-5,-1v2,-12,19,-14,37,-14"},"x":{"d":"118,-141v17,-10,40,11,66,-3v5,2,5,10,8,14v-11,9,-31,-3,-36,9v-6,4,-15,4,-13,16v-7,4,-7,12,-16,15v5,6,-17,22,0,28v9,9,21,12,22,31v13,18,59,3,45,33v-23,3,-36,3,-61,3v-10,0,-21,-2,-16,-23r18,-1v-16,-10,-17,-25,-25,-39v-8,0,-9,7,-8,16v-9,-1,-8,13,-12,21v12,3,15,19,4,26v-6,-4,-12,-3,-16,2v-8,-14,-40,7,-54,-5r-6,0v5,-4,-7,-16,7,-21v12,-4,28,-2,32,-14v12,0,7,-18,20,-17v7,-5,12,-13,20,-17v-3,-2,5,-18,-8,-17v-9,-13,-19,-26,-27,-41v-18,2,-47,6,-37,-15v25,-6,49,3,69,-4v4,4,10,5,8,14v-12,-3,-23,5,-12,14v7,-3,5,6,7,11v-1,1,-3,2,0,3v6,0,4,7,6,12v9,0,18,-10,15,-15v11,-4,18,-12,25,-20v-6,-10,-15,-1,-22,2v-2,-5,-4,-10,-3,-18"},"y":{"d":"94,-140v-2,9,-10,-2,-17,0v6,-5,12,-5,17,0xm118,-136v-5,-19,11,-7,25,-8v1,12,47,-5,33,16v-1,-3,-5,-3,-9,-3v2,-1,2,-3,-1,-3v-19,3,-12,37,-25,46v7,12,-11,22,-6,32v-4,8,-13,10,-9,21v-11,14,-2,34,-13,46v0,16,-14,17,-13,31v-9,0,0,13,-10,9v-12,18,-48,13,-60,3v1,-9,-9,-1,-4,-8v-12,-12,-10,-42,6,-47v-1,1,-1,1,-2,0v4,-7,27,-4,24,5v9,11,8,18,-3,26v-1,9,11,5,13,12v5,-4,8,-11,16,-12v4,-16,16,-20,18,-37v-3,-2,1,-23,-11,-24v2,-19,-15,-27,-9,-36v-8,-7,-6,-24,-10,-36v-12,-2,-7,-28,-20,-30v-8,-2,-25,4,-24,-7r-2,0v15,-8,38,-3,50,-4v-1,20,3,24,0,39v13,7,6,33,21,36v2,11,4,19,7,28v6,-1,0,6,4,8v22,-7,9,-44,28,-58v-1,-20,16,-30,3,-43v0,0,-15,3,-17,-2"},"z":{"d":"62,-152v25,10,66,1,95,7v7,23,-17,19,-19,37v-2,0,-4,2,-3,5v-20,-3,-1,18,-17,19v-3,4,-7,8,-7,15v-13,2,-14,16,-28,18v-11,9,-2,31,11,21v4,12,8,-7,17,2v0,-7,4,0,4,-8v3,5,7,10,17,8v5,-15,10,-33,20,-45v17,0,14,22,14,40v-12,3,6,15,-5,18v1,10,-5,13,-8,19v-14,-11,-27,12,-36,-1v-17,-2,-23,6,-28,16v-5,0,-2,-8,-3,-13v-14,0,-27,0,-31,10v-3,-18,-19,-6,-33,-16v-5,-17,6,-27,14,-36r-2,-2v16,0,17,-14,28,-20r-2,-1v14,-2,7,-15,20,-17v11,-12,19,-26,35,-33v2,-8,13,-9,16,-18v-19,-4,-44,4,-69,2v-9,7,-1,32,-8,43v-7,0,-4,12,-14,11v4,-4,-5,-7,-6,-11v-3,-22,8,-43,6,-58v6,-8,16,-7,22,-12"},"|":{"d":"91,-168v9,38,-1,97,11,139v-8,13,8,40,-15,44v-14,-27,-1,-53,-8,-75v4,-25,-3,-51,2,-76v-11,-12,7,-20,-4,-26v5,-24,-6,-62,10,-76v11,17,-4,37,9,54v-3,6,-1,12,-5,16"},"~":{"d":"44,-86v-4,-32,31,-47,54,-35v1,12,17,6,23,19v6,-4,6,-31,22,-21v4,8,6,17,-3,21v1,1,8,2,4,2v-4,5,-13,5,-14,13v-23,6,-47,-1,-52,-20r-14,2v1,17,-8,24,-20,19"},"\u00a1":{"d":"106,-157v-6,4,-36,11,-34,-10v-11,-8,2,-22,-4,-31v20,-18,67,5,43,28v2,7,-7,9,-5,13xm82,-2v-11,-15,-14,-41,-2,-60v-5,-16,-2,-35,1,-52v-7,-7,0,-27,15,-20v14,6,9,32,13,51v-13,10,9,31,2,43v6,18,-4,47,-29,38"},"\u00a2":{"d":"59,-186v15,-1,42,-18,65,-4v9,-8,13,13,20,7v16,16,27,30,17,49r2,2v-11,2,-17,15,-30,5v-5,7,-9,-3,-11,-7v-2,-17,21,-22,0,-30v-18,-21,-56,-2,-63,17v-11,15,1,46,7,62v13,-1,10,13,21,14v12,10,37,4,39,-9v6,-1,14,-10,12,-12v10,-4,20,-9,30,-3v-1,14,4,22,-9,27v1,11,-19,21,-32,23v-38,24,-80,-5,-93,-36v-2,2,-4,-3,-6,-4v-2,-25,-3,-69,18,-81v-1,-7,19,-13,13,-20xm100,-177v9,38,-1,97,11,139v-8,13,8,40,-15,44v-14,-27,-1,-53,-8,-75v4,-25,-3,-51,2,-76v-11,-12,7,-20,-4,-26v5,-24,-6,-62,10,-76v11,17,-4,37,9,54v-3,6,-1,12,-5,16"},"\u2044":{"d":"174,-255v13,-7,23,11,15,25v7,12,-17,14,-15,31v-3,6,-8,7,-13,11v2,21,-11,27,-16,41v-11,6,-10,25,-20,31v0,15,-19,20,-18,38v-10,14,-17,31,-29,43v0,26,-18,28,-19,51v-10,12,-18,27,-24,44v-10,4,-25,15,-35,9v-7,-20,5,-40,16,-51v4,-25,25,-39,32,-63v7,-3,2,-17,11,-17v-2,-4,5,-8,4,-15v16,-3,14,-25,25,-35v-3,-8,14,-14,12,-28v9,-10,18,-22,22,-37v8,-1,4,-15,13,-16v9,-26,20,-42,39,-57r0,-5"},"\u00a7":{"d":"61,-235v17,-19,61,-23,71,5v10,5,0,12,2,24v-7,3,-10,9,-20,8v-10,-6,-14,-28,3,-33v0,-6,-8,-10,-12,-6v4,2,-1,5,-3,7v-12,-13,-24,10,-26,24v10,18,16,30,32,38v7,14,19,22,26,36v10,0,11,16,19,15v1,11,18,30,4,41v8,7,-11,18,-12,29v-18,13,5,42,-7,57v0,22,-22,22,-31,35v-17,0,-31,-2,-45,-6r2,-2v-7,-5,-24,-5,-22,-16v9,-8,-5,-20,9,-26v-1,-6,8,-6,4,-12v15,-5,26,-2,29,7r1,-2v6,6,6,18,17,20v15,-6,7,-35,-4,-33v-5,-8,-3,-23,-14,-25v-6,-17,-21,-15,-28,-28v-10,5,-2,-13,-12,-13v3,-9,-11,-9,-6,-14v-11,-9,-9,-45,4,-50v4,-11,10,-21,19,-28v-2,-7,-11,-16,-6,-23v-10,-4,3,-14,1,-23v2,3,3,1,5,-1r0,-5xm98,-145v-9,-2,-18,-2,-19,-10v-14,-3,-25,25,-9,38v4,17,24,21,28,39v7,3,9,11,10,20v5,-4,8,10,14,3v0,-13,19,-35,1,-47v5,-11,-15,-19,-18,-30v-8,2,-7,-6,-7,-13"},"'":{"d":"128,-185v6,19,-17,54,-4,80v-6,15,-16,26,-33,23v-10,-18,-14,-54,-12,-81v-11,-17,-2,-32,3,-45v18,-15,54,-2,46,23"},"\u201c":{"d":"147,-188v-7,9,-19,6,-28,3v-3,-5,-15,-8,-17,-19r-2,1v-1,-13,6,-24,4,-42v18,-16,19,-45,53,-43v8,10,8,27,-3,32r2,1v-2,5,-18,14,-6,17v22,11,14,44,-2,52xm69,-188v-7,10,-19,5,-28,3v-21,-10,-17,-31,-14,-60r1,1v16,-20,18,-44,51,-44v9,9,9,27,-3,32v4,1,-2,4,0,8v-7,-2,-13,9,-4,9v21,12,16,44,-1,53"},"\ufb01":{"d":"108,-203v10,10,22,16,32,26v0,16,-10,28,-26,20v-1,-14,8,-23,0,-34v-17,6,-22,-6,-6,-12xm69,-198v7,-9,26,2,19,9v-17,0,-21,9,-33,15v-3,13,-6,25,5,30v8,17,22,-5,40,4v0,5,4,5,3,12v-17,6,-39,-5,-48,6v6,36,4,65,7,98v15,-5,21,2,40,-3v9,4,14,11,12,26v-15,9,-27,6,-46,8v-19,-3,-46,-2,-63,4v-8,-4,-34,-11,-19,-25v-1,-1,-2,0,-2,-2v8,-3,13,-8,23,-8v0,0,31,12,31,-18r1,-77v-11,-16,-50,10,-53,-19v4,-13,21,6,31,-6v13,-4,18,12,23,0v0,-21,0,-32,13,-40v-3,-11,10,-10,18,-13xm150,-144v18,31,-8,92,14,123v15,-2,55,-12,50,12v9,12,-10,21,-25,20v-3,-11,-30,4,-38,-5v-25,9,-52,2,-66,2v-3,-5,-18,-1,-18,-14v1,-25,35,-15,61,-17v-1,-7,2,-17,-6,-16v22,-13,0,-56,13,-82v-10,-11,-18,16,-27,-3v-21,6,-31,-4,-27,-23v18,-5,49,7,69,3"},"\ufb02":{"d":"140,-177v-10,-10,-22,-16,-32,-26v-4,4,-14,5,-11,12v6,2,23,-3,21,12v-1,6,-8,17,-2,23v17,6,24,-6,24,-21xm69,-198v7,-9,26,2,19,9v-17,0,-21,9,-33,15v-3,13,-6,25,5,30v8,17,22,-5,40,4v0,5,4,5,3,12v-17,6,-39,-5,-48,6v6,36,4,65,7,98v15,-5,21,2,40,-3v9,4,14,11,12,26v-15,9,-27,6,-46,8v-19,-3,-46,-2,-63,4v-8,-4,-34,-11,-19,-25v-1,-1,-2,0,-2,-2v8,-3,13,-8,23,-8v0,0,31,12,31,-18r1,-77v-11,-16,-50,10,-53,-19v4,-13,21,6,31,-6v13,-4,18,12,23,0v0,-21,0,-32,13,-40v-3,-11,10,-10,18,-13xm172,-195v11,30,-7,60,4,90v-6,10,-7,35,-1,44v-8,14,2,58,20,40v7,18,45,-8,39,21v-32,24,-69,-5,-103,11v-14,-4,-54,-4,-32,-23v3,-11,22,-1,30,-10v25,6,10,-25,23,-34v6,-11,-16,-18,0,-29v5,-9,7,-25,1,-34v16,-5,-2,-16,4,-32r-2,-31v-11,5,-30,-5,-41,5v1,-2,1,-4,-2,-3v-7,0,-20,-5,-17,-18v18,-9,51,-1,77,3"},"\u2013":{"d":"8,-82v17,-39,68,-17,118,-23v17,5,46,-4,58,8v1,-2,7,-4,3,-1v10,9,6,52,-17,48v-9,8,-27,-7,-38,0v-17,-5,-35,6,-54,-2v-21,3,-72,6,-67,-27"},"\u2020":{"d":"66,-205v20,1,42,-17,55,-1v12,2,22,15,29,1v15,-10,20,7,15,20v-7,19,-9,37,3,51v0,8,-2,13,-3,21v-11,-1,-12,-12,-23,-12v8,-5,-9,-15,0,-20v-9,-4,-2,-26,-10,-23v0,-5,-6,-4,-8,-3v1,4,-2,3,-5,3v7,-12,-10,-17,-21,-18v-5,6,-19,-5,-17,12v-34,6,-32,52,-33,84v12,11,7,40,23,48v1,6,8,5,7,13v25,9,44,-9,58,-23v-6,-15,19,-8,8,-28v4,-8,16,-8,24,-3v4,16,-1,30,0,41v-6,2,-16,5,-12,13v-6,9,-17,13,-18,27v-14,0,-29,14,-43,3v-9,3,-14,-1,-24,-1v0,-19,-27,-14,-25,-35v-5,-1,-2,-10,-9,-9v-8,-15,-13,-35,-5,-51v-14,-12,4,-50,0,-62v9,-9,16,-16,18,-33v7,-4,13,-8,16,-15xm106,-22r5,42v5,2,13,0,12,8v14,2,9,23,14,36v-9,6,-1,31,-23,25v-3,8,-23,17,-32,10v0,5,-8,5,-10,1v0,-12,-12,-16,-7,-31v5,-7,16,-9,31,-9v-1,9,4,10,10,6v0,-9,16,-12,5,-17v-6,5,-3,-9,-12,-7v-10,10,-14,-10,-21,-2v-6,-3,-5,-9,-9,-13v7,-3,21,-6,12,-14v14,-5,-3,-39,25,-35"},"\u00b7":{"d":"97,-118v21,6,45,25,32,49v1,7,-4,9,-3,18v-19,8,-42,24,-53,6v-19,3,-24,-45,-11,-57v11,-5,20,-18,34,-13"},"\u2022":{"d":"97,-118v21,6,45,25,32,49v1,7,-4,9,-3,18v-19,8,-42,24,-53,6v-19,3,-24,-45,-11,-57v11,-5,20,-18,34,-13"},"\u201a":{"d":"70,-10v-15,-24,4,-61,39,-48v19,7,20,31,15,61r-1,-2v-16,19,-17,45,-51,44v-10,-9,-8,-26,3,-32v-4,-1,2,-4,0,-7v7,2,12,-11,4,-10v-4,0,-3,-7,-9,-6"},"\u201e":{"d":"31,-10v-17,-23,4,-61,39,-48v20,7,18,32,15,61r-1,-2v-17,19,-17,45,-52,44v-6,-8,-10,-16,-4,-27v10,-2,4,-11,15,-15v2,-8,-6,-8,-12,-13xm147,-58v19,7,20,31,15,61r-1,-2v-16,18,-17,46,-52,44v-13,-14,2,-28,4,-39v7,2,12,-11,4,-10v-31,-18,-9,-69,30,-54"},"\u201d":{"d":"44,-230v-27,-6,-22,-45,-3,-53v7,-3,20,-5,29,-1v20,10,18,31,15,60r-1,-2v-17,20,-18,44,-52,45v-6,-8,-10,-16,-4,-27v9,-3,4,-12,15,-16xm122,-230v-29,-6,-22,-45,-4,-53v7,-4,21,-5,29,-1r-1,1v25,8,18,31,16,59r-1,-2v-16,19,-18,45,-52,45v-13,-15,2,-28,4,-40v7,2,6,-6,9,-9"},"\u00bf":{"d":"121,-163v-10,22,-38,39,-56,20v-1,0,-2,2,-2,0v-3,-9,-16,-24,-2,-34v13,4,33,-14,46,0v8,-4,18,3,15,16xm143,7v-18,12,-51,28,-76,15v-12,1,-15,-6,-27,-6v-9,-10,-11,-26,-22,-34v0,-6,5,-15,-1,-17v12,-25,35,-39,58,-53v-3,-12,-6,-25,1,-35v15,-2,40,5,29,15v-2,10,8,8,7,17v-5,1,-1,12,-10,11v0,3,-3,3,-6,3v-6,12,-15,23,-32,24v-16,24,4,58,41,50v10,5,15,-5,22,-10v-8,-3,-23,-11,-15,-20v-8,-14,20,-24,28,-16v27,-8,15,20,13,41v-3,5,-9,7,-10,15"},"`":{"d":"44,-216v-6,-35,32,-31,52,-23v0,14,15,19,18,32v10,3,10,15,19,18v3,22,-3,36,-25,28v-1,-13,-20,-5,-19,-20v-4,-3,-4,-9,-12,-8v-1,-7,-5,-10,-13,-8v-8,-5,-13,-13,-20,-19"},"\u00b4":{"d":"88,-225v3,-25,48,-40,60,-11v-9,1,5,6,-5,6v1,19,-33,20,-34,35v-10,5,-5,16,-15,22v0,17,-26,9,-32,0v-2,-17,10,-36,24,-48v1,2,3,2,4,0v-1,-1,-6,-4,-2,-4"},"\u02c6":{"d":"82,-266v4,4,11,1,15,0v0,8,9,5,15,3v8,4,15,8,17,19v7,-1,1,11,10,10v-1,0,-2,1,-2,3v15,7,19,26,26,41v-7,4,3,13,-8,14v-4,2,0,11,-3,6v-18,2,-21,-10,-35,-12v-3,-17,-26,-26,-40,-35v-10,1,-8,20,-17,14v-4,3,-2,4,-1,9v-8,0,-14,11,-10,17v-7,0,-4,7,-10,10v-19,0,-26,-8,-28,-24v8,-5,8,-18,16,-23r-2,-3v5,0,12,-5,7,-9v10,0,13,-15,19,-25v6,1,8,-2,9,-6v11,1,23,-1,22,-9"},"\u02dc":{"d":"34,-239v22,-2,46,-19,63,-4v3,17,23,11,34,27v13,-6,3,-41,31,-30v8,11,9,25,-4,31v2,1,12,2,6,2v-6,4,-8,11,-18,11v-20,27,-73,6,-78,-20r-19,2v0,10,-2,19,-4,28v-9,5,-18,-1,-24,0v0,-20,3,-36,13,-47"},"\u02d8":{"d":"56,-247v8,-15,13,11,19,6v14,12,18,33,37,40v2,-12,11,-18,19,-25v2,-8,20,-9,29,-11v9,6,16,12,10,27v-10,9,-23,19,-30,32v-9,2,-12,10,-12,21v-14,10,-37,9,-43,-3v-12,-2,-9,-20,-25,-18v-8,-11,-16,-29,-33,-23v-4,-5,-8,-24,-1,-30v7,-6,10,-21,30,-16"},"\u02d9":{"d":"80,-204v15,-11,30,5,28,26v-8,9,-24,8,-39,6r-1,-22v-1,1,-2,3,-3,0v6,0,9,-15,15,-10"},"\u00a8":{"d":"45,-219v10,-20,52,-4,32,12v-1,5,-7,9,-2,12v-4,2,-12,0,-11,7v-3,-7,-15,-4,-13,-16v-6,-1,-6,-8,-6,-15xm138,-227v16,-12,32,4,29,26v-11,19,-38,6,-38,-15v6,-1,2,-16,9,-11"},"\u02da":{"d":"112,-234v-1,0,-2,1,-2,3v15,1,15,16,26,21v0,4,-6,16,3,15v-6,9,-1,29,-12,31v-7,8,-19,21,-31,14v-17,8,-24,-24,-36,-34v-2,-18,13,-19,11,-35v11,1,5,-13,18,-11v5,-5,16,-5,23,-4xm98,-206v1,-1,0,-4,-3,-4xm90,-192v2,2,7,7,0,7v6,7,11,10,17,2v2,-11,-13,-16,-17,-9xm95,-183v-1,-2,1,-2,3,-2v1,2,-1,2,-3,2"},"\u00b8":{"d":"106,-41r5,41v5,2,13,0,12,8v13,2,9,23,14,36v-9,6,-2,33,-23,25v-3,8,-23,17,-32,10v0,6,-8,5,-10,1v-1,-11,-12,-16,-7,-31v5,-7,16,-9,31,-9v-2,10,5,12,10,6v0,-9,16,-12,5,-17v-5,3,-10,-13,-21,-3v-4,-12,-20,-2,-18,-17r-3,-2v7,-3,21,-6,12,-14v14,-5,-3,-38,25,-34"},"\u02dd":{"d":"61,-225v3,-25,48,-40,60,-11v-9,1,5,6,-5,6v1,19,-33,20,-34,35v-10,5,-5,16,-15,22v0,17,-26,9,-32,0v-2,-17,10,-36,24,-48v1,2,3,2,4,0v-1,-1,-6,-4,-2,-4xm144,-225v5,-22,35,-37,56,-19v6,14,-4,16,-3,26v-15,-2,-14,12,-27,14v-11,10,-10,22,-20,31v-1,18,-26,9,-33,0v5,-7,-3,-18,8,-29v5,-10,24,-16,17,-23r2,0"},"\u02c7":{"d":"88,-242v-1,-5,-3,-4,-5,0v4,-13,-22,-5,-25,-15v-11,2,-7,-12,-16,-14v-1,-6,-3,-16,-10,-11v9,-7,-8,-7,-5,-12v-11,-12,-18,-28,-8,-43v6,0,19,-9,25,-1v1,9,8,6,6,19v12,1,6,17,16,11v0,7,11,23,15,12v15,-1,22,-11,32,-18v3,-17,25,-21,42,-26v-5,8,12,9,5,18v11,16,-22,39,-19,47v-6,0,-8,4,-8,11v-7,-1,-3,9,-8,11v-7,7,-17,5,-27,7v-2,7,-6,-4,-10,4"},"\u2014":{"d":"-19,-64v0,-50,59,-20,100,-29v30,0,61,-1,87,3v12,-7,39,-1,45,6v5,-6,2,3,8,1v-3,15,-3,34,-22,33v-13,7,-33,-7,-52,0v-8,-2,-24,-4,-30,3v-43,-5,-95,1,-131,-11"},"\u00c6":{"d":"58,-119v10,-9,-3,-50,-13,-34v0,11,6,26,-6,28v0,16,-5,29,-6,45v11,4,18,3,28,-3v3,6,9,-1,10,-4v2,-16,-11,-19,-13,-32xm24,-30v13,6,44,12,57,2v2,-10,-5,-17,-11,-22r-45,2v-3,4,-1,12,-1,18xm196,3v-28,-13,-73,18,-107,-2r-43,3v-4,-9,-12,4,-18,4v-15,0,-36,-8,-42,4v-16,-3,-45,-15,-25,-35v11,0,15,-6,25,-3v13,-11,10,-39,23,-50v0,-12,9,-35,10,-46v14,1,5,-31,17,-41v3,-8,3,-13,10,-17v-10,1,-8,-12,-3,-17v9,4,22,4,23,16r10,-4v-3,-5,-6,-10,-3,-17v22,2,50,8,75,1v19,16,62,-18,56,41v5,6,-2,23,6,28v-7,12,-17,0,-19,-9v-5,-18,-2,-32,-17,-36v-8,-16,-19,-14,-38,-11v-5,10,-26,4,-34,10v5,25,-14,59,14,62v7,8,16,-8,25,-10v-2,-9,4,-11,4,-20v33,0,6,46,17,77r-17,7v-7,-10,0,-35,-13,-37v-16,-2,-42,-4,-31,15v5,33,-1,70,52,60v15,12,32,-11,29,-29v7,-5,9,-14,11,-24r9,0v-1,-1,-1,-2,0,-3v3,3,-2,4,6,4v4,10,1,18,-3,26v1,13,2,26,-1,38r-2,-1v0,7,-2,12,-6,16"},"\u00d8":{"d":"57,-193v13,9,28,-24,43,-6v13,-2,16,12,29,8v12,11,31,16,32,38v7,12,16,19,15,39v8,10,-1,16,4,31v-15,9,-2,38,-20,50v-4,-3,-9,25,-15,19v-5,11,-20,12,-17,20v-17,8,-50,16,-64,-3v-11,0,-20,-6,-15,-14v-21,-7,-17,-30,-30,-47v1,-25,-7,-81,16,-98v0,-11,11,-14,11,-27v4,-3,9,-5,11,-10xm118,-163v-3,-24,-49,-15,-59,-2v-18,22,-15,73,-5,107v12,8,12,22,25,29v7,20,42,14,47,0v9,-21,23,-61,17,-85v3,-4,4,-8,-2,-10v4,-16,-13,-22,-12,-35v-3,-2,-5,-5,-11,-4xm172,-255v13,-7,23,11,15,25v6,11,-17,15,-15,31v-3,6,-8,7,-13,11v2,21,-11,27,-16,41v-11,6,-10,25,-20,31v1,12,-20,21,-18,38v-9,20,-28,31,-29,59v-3,-4,-5,4,-8,6v-8,25,-26,48,-35,73v-10,5,-25,14,-35,9v-6,-20,5,-39,16,-51v5,-25,26,-38,32,-63v8,-4,2,-16,11,-17v-2,-5,6,-8,5,-15v18,-9,19,-38,33,-50v5,-20,20,-30,25,-50v9,0,4,-16,14,-16v-2,-5,0,-3,4,-6v-5,-19,13,-16,14,-32v5,-9,18,-12,20,-24"},"\u0152":{"d":"160,0v-41,6,-84,3,-120,3v-14,-3,-22,-15,-35,-21v2,-9,-9,-7,-7,-14v-10,-9,-14,-24,-16,-41r-2,1v0,-25,-6,-62,9,-75v10,-9,4,-33,20,-36r-2,-2v6,1,6,-3,8,-6v13,-2,21,-13,32,-6r0,-2v38,-6,68,6,104,-2v17,16,61,-18,55,41v7,4,-1,22,6,28v-7,12,-17,0,-19,-9v-4,-18,0,-32,-16,-36v-1,-10,-15,-7,-14,-15r-58,14v3,24,-7,47,4,61v8,1,21,7,23,-5v18,6,8,-39,30,-19r1,-2v5,26,-5,47,2,74r-17,7v-9,-9,0,-35,-14,-37v-17,-2,-42,-2,-30,15v3,14,-8,34,4,44v-6,32,40,10,60,21v1,-7,11,-5,10,-14v10,-4,4,-23,14,-28v-1,-17,11,-20,19,-15v4,11,0,17,-4,26v1,14,3,27,-1,38r-2,-1v2,26,-23,4,-33,16v-5,2,-8,0,-11,-3xm84,-28v8,-46,4,-99,1,-150v-16,0,-30,4,-42,-2v-18,6,-28,20,-36,36r-1,-1v-3,29,-7,55,6,74r-2,2v18,0,-6,25,16,23v7,18,37,30,58,18"},"\u00e6":{"d":"136,-42v31,-7,-5,23,13,29v9,-6,28,-1,29,-17v10,-4,21,-24,29,-8v-5,22,-18,34,-42,37v-5,6,-22,11,-26,2v-5,-3,-22,8,-26,-1v-11,7,-14,-21,-32,-8v-8,11,-34,4,-43,12v-9,-5,-16,-4,-32,-5v-13,-11,-33,-29,-21,-46v-7,-6,-3,-18,6,-18v4,-11,14,-16,24,-21v-19,0,-28,-36,-16,-48r-3,-1v5,-2,4,-15,14,-11v5,-2,12,-12,16,-6v19,-8,55,-6,72,2r-2,1v15,3,19,18,29,4v2,5,4,3,6,-1v19,0,36,3,50,8v0,6,11,3,10,12v11,5,10,23,20,29v-1,6,-2,22,-4,29v-13,-1,-21,-5,-30,5v-10,-13,-24,-3,-34,2v1,-12,-17,-5,-27,-6v2,16,1,35,20,25xm77,-130v-16,2,-28,-10,-39,-1v-14,0,-7,15,-1,24v-6,5,-10,12,-21,11v2,8,27,11,28,0v10,8,18,-13,35,-6v2,-7,8,-11,14,-6v5,-17,-14,-11,-16,-22xm142,-125v-24,-9,-11,25,-29,32v3,23,31,1,36,13v6,-6,8,-8,19,-6v2,-17,0,-31,-8,-40v-3,2,-16,3,-18,1xm81,-68v-17,6,-48,-4,-55,9v-3,-4,-13,-1,-12,5v4,6,-6,25,10,24v7,5,22,-4,35,2v5,-10,23,-6,23,-23"},"\u0131":{"d":"84,-148v24,-12,22,22,22,46v0,26,-7,56,7,75v16,-2,56,-12,51,13v8,12,-9,21,-25,19v-18,-8,-51,-2,-69,3v-10,-14,-61,9,-52,-30v13,-11,37,-6,60,-6v0,-7,2,-16,-6,-16v21,-14,1,-55,12,-82v-7,-13,-17,14,-21,1v-6,-10,-34,6,-29,-11v-6,-2,-4,-10,-3,-16v12,-5,37,1,53,4"},"\u00f8":{"d":"48,-119v10,-28,64,-43,91,-24v8,-3,5,11,12,8v10,14,17,25,24,39v-2,15,7,54,-10,68v-2,16,-18,19,-24,31v-11,1,-17,6,-27,8r2,-1v-6,-9,-32,6,-38,-7v-21,-6,-28,-26,-45,-36v-4,-28,2,-65,12,-86r3,0xm137,-97v1,-21,-19,-20,-30,-29v-15,9,-45,2,-44,29v-10,10,4,27,1,44v6,17,28,44,52,25v7,2,14,2,10,-3v10,-5,8,-19,18,-24v0,-15,8,-25,-4,-33v1,-4,2,-9,-3,-9xm195,-255v17,-8,18,14,18,28v-10,11,-16,21,-22,35v-13,-3,-4,27,-17,29v-10,15,-15,35,-28,47v-3,16,-25,41,-29,57r2,-2v-7,14,-21,21,-20,42v-2,-3,-5,3,-8,6v-5,23,-26,50,-35,73v-10,5,-25,14,-35,9v-6,-21,6,-39,17,-51v4,-25,25,-38,31,-63v9,-1,2,-17,12,-17v-5,-3,5,-8,4,-15v16,-4,13,-27,25,-35v-3,-8,14,-14,12,-28v13,-16,27,-39,34,-57v10,1,1,-19,10,-18v9,-12,15,-27,29,-35r0,-5"},"\u0153":{"d":"138,-65v-6,-6,-11,-2,-9,6v-6,9,-5,25,-13,33v17,11,48,19,57,-4v9,-5,21,-23,29,-8v-6,21,-18,35,-43,37v-13,13,-45,3,-56,-7v-4,3,-9,5,-10,11v-11,1,-17,6,-27,8r2,-1v-7,-9,-33,6,-39,-7v-20,-6,-28,-25,-44,-36v-9,-49,8,-92,38,-112v25,-6,55,-11,67,2v8,-2,6,11,13,8v1,1,1,3,3,3v2,-16,17,-6,20,-14v20,0,35,4,50,8v0,6,11,3,9,12v11,5,11,21,20,29r-2,1v7,8,-4,15,-1,28v-13,-1,-22,-5,-31,5v-9,-13,-24,-3,-33,2r0,-4xm75,-25v13,-14,-4,-41,-6,-59v12,-1,6,-20,13,-28v-17,-16,-31,-11,-55,-7v-20,14,-16,38,-12,66v9,16,27,44,53,25v4,-1,5,1,7,3xm136,-125v-20,-6,-19,17,-10,28v-3,4,1,8,1,16v6,-4,14,-7,17,1v5,-6,9,-7,19,-6v3,-18,-1,-30,-8,-40v-3,6,-12,-5,-17,4v-1,0,-2,-1,-2,-3xm103,-67v9,-9,-9,-22,-4,-7v1,5,0,13,4,7"},"\u00df":{"d":"62,-180v10,-18,48,-22,71,-17v7,7,26,11,24,25v17,18,2,43,-4,58v-6,0,-7,4,-7,12v15,9,20,20,28,34v-4,16,4,45,-14,56v-10,24,-37,24,-60,25v-2,-5,-3,-7,-5,-14v-13,17,-40,14,-62,8v-13,-20,24,-17,16,-35v-5,-23,2,-40,4,-66v-15,-12,1,-31,-8,-55v4,-2,4,-5,2,-9v5,-6,10,-12,12,-22r3,0xm96,-177v-5,5,-16,14,-20,12v-4,14,-9,34,-8,56v8,-2,12,5,6,9v-20,-2,5,25,-9,31v8,7,2,27,11,36v-13,8,-1,16,9,20v0,-19,20,-45,38,-25v3,11,2,20,-7,23v4,6,12,8,17,3v1,-11,9,-2,13,-4v-3,-1,-5,-9,2,-8v12,-15,-3,-30,2,-47v-9,-3,-16,-22,-25,-15v-8,0,-59,-5,-38,-25v35,5,75,-19,52,-55v-5,3,-5,-7,-8,-2r2,0v-10,-10,-26,0,-37,-9"},"\u00c4":{"d":"99,-199v31,-5,23,51,37,72v2,10,2,23,10,28v6,25,8,62,25,76v16,0,31,3,27,21v-12,10,-32,10,-54,7v-9,7,-51,-9,-29,-19v-2,-2,5,-3,3,-8r14,-4v5,-12,-4,-18,-10,-24r-45,2v-5,9,0,23,11,23v-3,14,18,11,9,23r2,2v-9,-1,-11,6,-19,8v-15,0,-36,-8,-43,4v-15,-4,-44,-15,-24,-35v11,0,14,-6,24,-3v15,-13,14,-46,27,-57v0,-17,5,-27,7,-39v13,1,5,-32,17,-41v2,-8,4,-19,15,-11v4,-2,2,-6,0,-9v-7,1,-5,-9,-4,-16xm109,-119v10,-9,-2,-36,-1,-49v-4,5,-4,11,-11,15v0,11,6,26,-6,28v1,17,-7,27,-6,45v11,4,18,3,28,-3v3,6,8,-1,10,-4v1,-16,-10,-20,-14,-32xm43,-246v7,-15,47,-12,35,8r2,1v-5,2,-12,12,-7,15v-4,2,-11,0,-10,7v-4,-6,-16,-4,-14,-16v-5,-2,-5,-9,-6,-15xm136,-254v16,-12,33,4,29,26v-11,19,-38,6,-38,-15v6,-1,3,-16,9,-11"},"\u00c5":{"d":"99,-199v31,-5,23,51,37,72v2,10,2,23,10,28v6,25,8,62,25,76v16,0,31,3,27,21v-12,10,-32,10,-54,7v-9,7,-51,-9,-29,-19v-2,-2,5,-3,3,-8r14,-4v5,-12,-4,-18,-10,-24r-45,2v-5,9,0,23,11,23v-3,14,18,11,9,23r2,2v-9,-1,-11,6,-19,8v-15,0,-36,-8,-43,4v-15,-4,-44,-15,-24,-35v11,0,14,-6,24,-3v15,-13,14,-46,27,-57v0,-17,5,-27,7,-39v13,1,5,-32,17,-41v2,-8,4,-19,15,-11v4,-2,2,-6,0,-9v-7,1,-5,-9,-4,-16xm109,-119v10,-9,-2,-36,-1,-49v-4,5,-4,11,-11,15v0,11,6,26,-6,28v1,17,-7,27,-6,45v11,4,18,3,28,-3v3,6,8,-1,10,-4v1,-16,-10,-20,-14,-32xm121,-258r-2,3v14,2,15,17,26,21v0,6,-6,17,3,16v-6,8,0,29,-12,30v-6,9,-20,22,-31,14v-16,11,-24,-24,-36,-33v-1,-18,12,-20,11,-35v11,1,5,-13,18,-11v6,-5,15,-6,23,-5xm107,-229v2,-1,-1,-4,-3,-5xm115,-215v-8,0,-12,-9,-16,0v2,2,6,6,0,6v5,6,11,11,17,3xm104,-206v-1,-2,1,-2,3,-2v1,2,-1,2,-3,2"},"\u00c7":{"d":"66,-205v20,1,42,-17,55,-1v12,2,22,15,29,1v15,-10,20,7,15,20v-7,19,-9,37,3,51v0,8,-2,13,-3,21v-11,-1,-12,-12,-23,-12v8,-5,-9,-15,0,-20v-9,-4,-2,-26,-10,-23v0,-5,-6,-4,-8,-3v1,4,-2,3,-5,3v7,-12,-10,-17,-21,-18v-5,6,-19,-5,-17,12v-34,6,-32,52,-33,84v12,11,7,40,23,48v1,6,8,5,7,13v25,9,44,-9,58,-23v-6,-15,19,-8,8,-28v4,-8,16,-8,24,-3v4,16,-1,30,0,41v-6,2,-16,5,-12,13v-6,9,-17,13,-18,27v-14,0,-29,14,-43,3v-9,3,-14,-1,-24,-1v0,-19,-27,-14,-25,-35v-5,-1,-2,-10,-9,-9v-8,-15,-13,-35,-5,-51v-14,-12,4,-50,0,-62v9,-9,16,-16,18,-33v7,-4,13,-8,16,-15xm96,-55v7,1,10,5,18,1v3,6,12,10,21,13v11,17,4,39,4,66r-2,-2v-19,25,-22,55,-64,55v-7,-10,-12,-20,-5,-33v8,-3,7,-7,9,-16v8,3,15,-13,5,-12v-17,-10,-26,-37,-11,-53v5,-13,18,-10,25,-19"},"\u00c9":{"d":"13,-189v19,-30,69,1,102,-12v10,-4,15,12,25,3v11,1,41,-4,38,24v-2,16,12,40,0,48v-24,-7,-4,-46,-29,-51v-1,-10,-15,-7,-14,-15r-58,14v3,24,-7,47,4,61v8,1,21,7,23,-5v18,5,8,-39,30,-19r1,-2v5,26,-5,47,2,74r-17,7v-8,-9,0,-35,-14,-37v-17,-2,-42,-2,-30,15v3,14,-8,34,4,44v-6,32,40,10,60,21v1,-7,11,-5,10,-14v10,-4,4,-23,14,-28v-1,-17,11,-20,19,-15v4,11,0,17,-4,26v1,14,3,27,-1,38r-2,-1v2,26,-23,4,-33,16v-25,-2,-64,-1,-89,3v-5,-9,-18,-1,-34,-2v-14,-9,-5,-37,13,-26v7,-2,26,-1,21,-8v8,-10,11,-45,4,-56v0,-31,5,-65,-1,-92r-26,1r2,-1v-9,-1,-21,0,-20,-11"},"\u00d1":{"d":"35,-257v22,-2,46,-19,63,-4v3,17,23,11,34,27v12,-6,4,-41,31,-30v8,11,9,25,-4,31v2,1,12,2,6,2v-6,4,-8,11,-18,11v-19,27,-73,6,-78,-20r-19,2v0,10,-2,19,-4,28v-9,5,-18,-1,-24,0v0,-20,3,-36,13,-47xm34,-203v21,7,49,0,60,15v6,-3,5,3,6,9v-6,-2,-12,7,-8,14v20,10,7,54,30,64v-8,24,9,40,29,36v-2,-13,-13,-29,-3,-34v-9,-11,4,-42,-8,-53v7,-21,-12,-23,-31,-22v-3,-6,-4,-15,0,-21v-1,2,-1,0,-2,-1v22,-7,68,-13,91,-2v0,3,1,5,3,3r0,-3v-4,10,-11,17,-15,27v-11,0,-27,-6,-23,12v12,9,-8,18,1,26v-6,20,-1,36,-4,61v-8,5,7,17,0,28v8,14,12,39,1,49v-21,2,-30,-4,-31,-22r-15,-2v1,-10,-8,-12,-1,-21v5,4,8,-2,12,-4v-4,-6,-13,-12,-15,-1v-10,1,-5,-15,-11,-23v8,-2,15,0,14,10v14,-10,-4,-27,-14,-33v-4,-18,-4,-26,-14,-34v-5,11,-6,9,-14,3v-8,20,2,38,-3,59v2,4,10,10,3,14v5,1,3,10,-1,11r4,16v11,2,24,3,33,4v-6,5,5,35,-20,24r-32,0r1,-1v-22,0,-35,4,-49,-3v-2,-9,7,-7,5,-17v21,-3,29,-21,21,-43v10,-9,2,-28,0,-43v18,-2,-7,-23,5,-35v0,5,7,6,9,2v-7,-9,-13,-19,-12,-36v-12,-2,-26,-6,-32,-16v13,-9,19,-13,30,-19r0,2xm129,-159v3,1,3,4,1,5xm136,-126v4,11,6,27,-2,33v-10,-9,-2,-21,2,-33xm84,-125v1,-15,-3,-10,-15,-8v2,14,11,-1,15,8"},"\u00d6":{"d":"57,-193v13,9,28,-24,43,-6v13,-2,16,12,29,8v12,11,31,16,32,38v7,12,16,19,15,39v8,10,-1,16,4,31v-15,9,-2,38,-20,50v-4,-3,-9,25,-15,19v-5,11,-20,12,-17,20v-17,8,-50,16,-64,-3v-11,0,-20,-6,-15,-14v-21,-7,-17,-30,-30,-47v1,-25,-7,-81,16,-98v0,-11,11,-14,11,-27v4,-3,9,-5,11,-10xm118,-163v-3,-24,-49,-15,-59,-2v-18,22,-15,73,-5,107v12,8,12,22,25,29v7,20,42,14,47,0v9,-21,23,-61,17,-85v3,-4,4,-8,-2,-10v4,-16,-13,-22,-12,-35v-3,-2,-5,-5,-11,-4xm32,-239v7,-15,48,-11,35,8r2,1v-5,3,-13,12,-6,15v-4,2,-12,0,-11,7v-4,-6,-16,-4,-14,-16v-5,-2,-5,-9,-6,-15xm119,-245v10,-5,29,-9,34,6r1,19v-12,18,-37,5,-38,-16v4,-2,6,-4,3,-9"},"\u00dc":{"d":"123,-74v8,1,12,7,2,9xm130,-38v-9,-6,20,-8,9,-17v7,-9,-6,-20,-4,-33r3,2v7,-19,-3,-39,2,-52v-3,-4,-6,-9,-2,-14v-2,1,-4,1,-3,-2v4,4,5,-3,7,-6v-2,-17,-15,-22,-35,-21v-5,-8,0,-20,13,-18v7,-8,13,3,25,-4v7,21,47,-18,47,22v-14,5,-25,-3,-34,7v0,18,10,41,-1,52v6,22,5,47,1,69v13,13,-10,26,-10,43v-13,7,-28,27,-41,16v-10,3,-24,0,-33,-3v0,-6,-11,-2,-15,-7v-8,-23,-25,-37,-20,-73v15,-8,-7,-21,3,-31r-3,-22v10,-5,-6,-20,2,-27v-4,-5,-2,-36,-14,-23v-8,-5,-18,-1,-17,-17v5,-5,12,1,15,-6v9,12,23,-5,31,4v2,-1,2,-3,0,-4v9,5,41,-5,30,22v-15,1,-37,1,-24,21v-2,11,-14,16,-3,23v-7,26,0,40,-4,64v7,6,-4,20,8,19v-1,1,-1,2,0,3v9,5,1,22,22,24v13,8,41,1,45,-11xm37,-237v8,-15,49,-12,35,8r2,1v-4,3,-11,12,-6,15v-4,2,-12,0,-11,7v-4,-6,-15,-4,-13,-16v-6,-1,-6,-9,-7,-15xm131,-245v16,-12,32,5,28,26v-10,19,-38,5,-38,-15v7,-1,3,-16,10,-11"},"\u00e1":{"d":"134,-150r-2,1v31,5,23,66,20,99v4,22,26,-2,35,11v-1,16,-5,29,-12,39v-9,1,-21,7,-26,0v-11,7,-14,-21,-32,-8v-8,11,-34,4,-43,12v-9,-5,-16,-4,-32,-5v-13,-11,-33,-29,-21,-46v-7,-6,-3,-18,6,-18v4,-11,14,-16,24,-21v-19,0,-28,-36,-16,-48r-3,-1v5,-2,4,-15,14,-11v14,-14,62,-14,88,-4xm113,-130v-16,2,-28,-10,-39,-1v-14,0,-7,15,-1,24v-6,5,-10,12,-21,11v2,8,27,11,28,0v10,8,18,-13,35,-6v2,-7,8,-11,14,-6v5,-17,-14,-11,-16,-22xm121,-66v-6,-9,-34,6,-53,1v-4,8,-22,0,-16,14v-10,28,20,21,43,23v2,-8,24,-9,20,-17v2,-4,9,-4,11,-9v-12,0,-11,-7,-6,-14xm104,-238v0,-26,49,-32,56,-7v-6,4,-1,21,-14,18v-5,9,-26,14,-24,23v-11,5,-6,15,-15,22v-1,18,-26,9,-33,0v-1,-17,11,-36,25,-48v1,2,2,2,3,0v-4,-3,-1,-5,2,-8"},"\u00e0":{"d":"134,-150r-2,1v31,5,23,66,20,99v4,22,26,-2,35,11v-1,16,-5,29,-12,39v-9,1,-21,7,-26,0v-11,7,-14,-21,-32,-8v-8,11,-34,4,-43,12v-9,-5,-16,-4,-32,-5v-13,-11,-33,-29,-21,-46v-7,-6,-3,-18,6,-18v4,-11,14,-16,24,-21v-19,0,-28,-36,-16,-48r-3,-1v5,-2,4,-15,14,-11v14,-14,62,-14,88,-4xm113,-130v-16,2,-28,-10,-39,-1v-14,0,-7,15,-1,24v-6,5,-10,12,-21,11v2,8,27,11,28,0v10,8,18,-13,35,-6v2,-7,8,-11,14,-6v5,-17,-14,-11,-16,-22xm121,-66v-6,-9,-34,6,-53,1v-4,8,-22,0,-16,14v-10,28,20,21,43,23v2,-8,24,-9,20,-17v2,-4,9,-4,11,-9v-12,0,-11,-7,-6,-14xm19,-223v-6,-35,33,-31,53,-23v1,14,14,19,18,31v9,4,10,15,19,19v3,22,-3,36,-25,28v-2,-11,-20,-6,-19,-20v-4,-3,-4,-9,-12,-8v-1,-7,-6,-12,-13,-8v-8,-5,-13,-14,-21,-19"},"\u00e2":{"d":"134,-150r-2,1v31,5,23,66,20,99v4,22,26,-2,35,11v-1,16,-5,29,-12,39v-9,1,-21,7,-26,0v-11,7,-14,-21,-32,-8v-8,11,-34,4,-43,12v-9,-5,-16,-4,-32,-5v-13,-11,-33,-29,-21,-46v-7,-6,-3,-18,6,-18v4,-11,14,-16,24,-21v-19,0,-28,-36,-16,-48r-3,-1v5,-2,4,-15,14,-11v14,-14,62,-14,88,-4xm113,-130v-16,2,-28,-10,-39,-1v-14,0,-7,15,-1,24v-6,5,-10,12,-21,11v2,8,27,11,28,0v10,8,18,-13,35,-6v2,-7,8,-11,14,-6v5,-17,-14,-11,-16,-22xm121,-66v-6,-9,-34,6,-53,1v-4,8,-22,0,-16,14v-10,28,20,21,43,23v2,-8,24,-9,20,-17v2,-4,9,-4,11,-9v-12,0,-11,-7,-6,-14xm85,-261v3,7,5,-3,11,4v0,-2,0,-5,4,-4v4,13,31,-2,32,22v7,0,1,12,11,11v-1,1,-3,0,-3,2v15,8,19,26,26,42v-5,6,-1,12,-11,18v2,-1,2,1,2,3v-10,-4,-26,-4,-31,-14v-7,1,-10,-4,-11,-12v-9,-10,-25,-14,-35,-23v-3,4,-14,7,-9,13v-5,6,-13,-2,-9,10v-7,1,-14,10,-10,17v-7,0,-6,8,-10,11v-34,0,-30,-34,-12,-47r-2,-4v7,1,12,-4,7,-9v12,5,9,-25,25,-25v3,-10,28,-1,25,-15"},"\u00e4":{"d":"30,-143v22,-12,72,-20,100,-7r-3,1v39,3,12,79,25,107v8,9,24,-10,31,3v-1,16,-5,30,-13,39v-9,0,-21,8,-25,0v-12,7,-14,-21,-33,-8v-7,12,-34,4,-43,12v-8,-6,-15,-4,-31,-5v-13,-11,-32,-27,-22,-46v-8,-16,13,-23,19,-35v5,0,11,1,12,-4v-19,-1,-27,-34,-17,-48r-2,-1v3,-2,3,-4,2,-8xm109,-130v-16,2,-29,-10,-40,-1v-15,0,-5,16,-1,24v-5,5,-9,12,-20,11v2,8,27,11,28,0v9,8,18,-13,35,-6v2,-6,8,-12,13,-6v5,-17,-13,-11,-15,-22xm117,-66v-6,-9,-33,6,-54,1v-3,8,-23,2,-15,14v-11,26,19,22,43,23v8,-8,21,-12,25,-22v5,1,9,-6,1,-4v-7,-3,-5,-8,-1,-14xm20,-199v5,-16,48,-12,35,7v5,4,-13,12,-4,17v-4,2,-12,0,-11,7v-4,-6,-16,-4,-14,-16v-5,-2,-5,-9,-6,-15xm114,-207v16,-12,32,5,28,26v-11,17,-38,6,-38,-15v8,-1,1,-16,10,-11"},"\u00e3":{"d":"134,-150r-2,1v31,5,23,66,20,99v4,22,26,-2,35,11v-1,16,-5,29,-12,39v-9,1,-21,7,-26,0v-11,7,-14,-21,-32,-8v-8,11,-34,4,-43,12v-9,-5,-16,-4,-32,-5v-13,-11,-33,-29,-21,-46v-7,-6,-3,-18,6,-18v4,-11,14,-16,24,-21v-19,0,-28,-36,-16,-48r-3,-1v5,-2,4,-15,14,-11v14,-14,62,-14,88,-4xm113,-130v-16,2,-28,-10,-39,-1v-14,0,-7,15,-1,24v-6,5,-10,12,-21,11v2,8,27,11,28,0v10,8,18,-13,35,-6v2,-7,8,-11,14,-6v5,-17,-14,-11,-16,-22xm121,-66v-6,-9,-34,6,-53,1v-4,8,-22,0,-16,14v-10,28,20,21,43,23v2,-8,24,-9,20,-17v2,-4,9,-4,11,-9v-12,0,-11,-7,-6,-14xm28,-226v23,-2,46,-20,64,-5v-1,21,25,8,33,28v13,-7,5,-41,31,-31v10,10,7,25,-3,32v3,-1,10,2,6,2v-6,4,-9,10,-18,10v-19,28,-72,6,-78,-19r-19,1r-5,29v-8,6,-18,-3,-24,-1v1,-19,4,-35,13,-46"},"\u00e5":{"d":"134,-150r-2,1v31,5,23,66,20,99v4,22,26,-2,35,11v-1,16,-5,29,-12,39v-9,1,-21,7,-26,0v-11,7,-14,-21,-32,-8v-8,11,-34,4,-43,12v-9,-5,-16,-4,-32,-5v-13,-11,-33,-29,-21,-46v-7,-6,-3,-18,6,-18v4,-11,14,-16,24,-21v-19,0,-28,-36,-16,-48r-3,-1v5,-2,4,-15,14,-11v14,-14,62,-14,88,-4xm113,-130v-16,2,-28,-10,-39,-1v-14,0,-7,15,-1,24v-6,5,-10,12,-21,11v2,8,27,11,28,0v10,8,18,-13,35,-6v2,-7,8,-11,14,-6v5,-17,-14,-11,-16,-22xm121,-66v-6,-9,-34,6,-53,1v-4,8,-22,0,-16,14v-10,28,20,21,43,23v2,-8,24,-9,20,-17v2,-4,9,-4,11,-9v-12,0,-11,-7,-6,-14xm100,-267r-2,3v15,1,14,18,27,21v-1,5,-7,16,2,16v-5,5,2,22,-7,23v-3,11,-23,30,-36,21v-16,11,-24,-24,-36,-33v-1,-18,12,-19,11,-35v11,1,5,-13,18,-11v6,-5,15,-6,23,-5xm86,-238v2,-1,-1,-4,-3,-5xm94,-224v-8,0,-12,-9,-16,0v2,2,6,6,0,6v5,6,11,11,17,3xm83,-215v-1,-2,1,-2,3,-2v1,2,-1,2,-3,2"},"\u00e7":{"d":"59,-139v15,-2,41,-17,65,-5v10,-6,13,14,20,8v17,15,26,30,17,49r2,2v-11,2,-17,15,-30,5v-5,7,-8,-4,-11,-7v-2,-17,21,-22,0,-30v-17,-22,-57,-2,-63,17v-11,15,1,46,7,62v13,-1,10,13,21,14v13,10,37,3,39,-9v6,-1,14,-10,12,-12v10,-4,19,-9,30,-4v0,15,4,23,-9,28v1,17,-28,17,-35,28v-14,-2,-23,10,-29,2r-1,2v-24,-7,-53,-20,-60,-46r-1,2v-8,-7,-6,-26,-8,-42v6,-12,6,-37,21,-44v-3,-7,19,-13,13,-20xm85,-36v9,-10,24,-7,35,-4v-2,5,8,8,15,9v11,18,4,39,4,67r-2,-2v-20,24,-22,55,-64,55v-8,-10,-12,-21,-5,-34v8,-3,7,-6,9,-15v8,3,15,-13,5,-12v-27,-14,-21,-56,2,-66"},"\u00e9":{"d":"84,-146v21,0,36,3,51,8v11,9,19,29,29,41r-3,29v-13,0,-22,-5,-31,5v-10,-13,-24,-3,-34,2v-2,-18,-30,4,-39,-5v-9,22,10,40,30,45v10,12,42,7,44,-9v10,-5,21,-23,30,-8v-6,20,-18,35,-43,37v-14,14,-44,2,-57,-6v0,-9,-13,-8,-12,-20v-18,-5,-10,-38,-21,-50v-1,-11,10,-10,7,-26v8,-11,13,-25,29,-29v2,-15,18,-6,20,-14xm95,-125v-24,-9,-10,26,-29,32v4,23,31,1,37,13v5,-6,8,-7,18,-6v2,-17,0,-31,-8,-40v0,3,-3,3,-5,1v-3,-5,-13,7,-13,0xm181,-244v6,14,-4,16,-3,26v-16,-2,-14,13,-28,14v-3,10,-17,13,-11,23v-9,9,-13,28,-28,14v-31,-10,2,-43,12,-54v1,1,2,3,3,0v-6,-19,33,-45,55,-23"},"\u00e8":{"d":"84,-146v21,0,36,3,51,8v11,9,19,29,29,41r-3,29v-13,0,-22,-5,-31,5v-10,-13,-24,-3,-34,2v-2,-18,-30,4,-39,-5v-9,22,10,40,30,45v10,12,42,7,44,-9v10,-5,21,-23,30,-8v-6,20,-18,35,-43,37v-14,14,-44,2,-57,-6v0,-9,-13,-8,-12,-20v-18,-5,-10,-38,-21,-50v-1,-11,10,-10,7,-26v8,-11,13,-25,29,-29v2,-15,18,-6,20,-14xm95,-125v-24,-9,-10,26,-29,32v4,23,31,1,37,13v5,-6,8,-7,18,-6v2,-17,0,-31,-8,-40v0,3,-3,3,-5,1v-3,-5,-13,7,-13,0xm11,-216v-6,-35,33,-31,52,-23v1,14,16,19,19,32v9,3,9,15,18,18v2,21,-3,36,-24,28v-1,-12,-20,-5,-19,-20v-11,-12,-23,-18,-38,-25v-2,-4,-4,-8,-8,-10"},"\u00ea":{"d":"84,-146v21,0,36,3,51,8v11,9,19,29,29,41r-3,29v-13,0,-22,-5,-31,5v-10,-13,-24,-3,-34,2v-2,-18,-30,4,-39,-5v-9,22,10,40,30,45v10,12,42,7,44,-9v10,-5,21,-23,30,-8v-6,20,-18,35,-43,37v-14,14,-44,2,-57,-6v0,-9,-13,-8,-12,-20v-18,-5,-10,-38,-21,-50v-1,-11,10,-10,7,-26v8,-11,13,-25,29,-29v2,-15,18,-6,20,-14xm95,-125v-24,-9,-10,26,-29,32v4,23,31,1,37,13v5,-6,8,-7,18,-6v2,-17,0,-31,-8,-40v0,3,-3,3,-5,1v-3,-5,-13,7,-13,0xm95,-241v4,4,10,1,15,0v0,8,9,5,15,3v7,5,16,8,16,19v8,-1,1,12,12,11v-1,1,-4,0,-4,2v15,8,20,25,26,41v-3,7,-1,13,-10,19v2,-1,2,1,2,3v-10,-4,-26,-4,-31,-14v-7,1,-10,-5,-11,-12v-10,-10,-24,-15,-35,-23v-11,2,-9,21,-17,14v-5,3,-2,4,-1,9v-8,0,-16,12,-10,17v-6,1,-7,7,-10,11v-19,-1,-26,-9,-28,-25v6,-7,12,-18,14,-26v7,1,12,-6,6,-9v13,6,8,-24,25,-25v4,-9,28,-2,26,-15"},"\u00eb":{"d":"84,-146v21,0,36,3,51,8v11,9,19,29,29,41r-3,29v-13,0,-22,-5,-31,5v-10,-13,-24,-3,-34,2v-2,-18,-30,4,-39,-5v-9,22,10,40,30,45v10,12,42,7,44,-9v10,-5,21,-23,30,-8v-6,20,-18,35,-43,37v-14,14,-44,2,-57,-6v0,-9,-13,-8,-12,-20v-18,-5,-10,-38,-21,-50v-1,-11,10,-10,7,-26v8,-11,13,-25,29,-29v2,-15,18,-6,20,-14xm95,-125v-24,-9,-10,26,-29,32v4,23,31,1,37,13v5,-6,8,-7,18,-6v2,-17,0,-31,-8,-40v0,3,-3,3,-5,1v-3,-5,-13,7,-13,0xm37,-185v7,-15,48,-11,35,8r2,1v-5,3,-13,12,-6,15v-4,2,-12,0,-11,7v-4,-6,-16,-4,-14,-16v-5,-2,-5,-9,-6,-15xm124,-191v10,-5,29,-9,34,6r1,19v-12,18,-37,5,-38,-16v4,-2,6,-4,3,-9"},"\u00ed":{"d":"84,-148v24,-12,22,22,22,46v0,26,-7,56,7,75v16,-2,56,-12,51,13v8,12,-9,21,-25,19v-18,-8,-51,-2,-69,3v-10,-14,-61,9,-52,-30v13,-11,37,-6,60,-6v0,-7,2,-16,-6,-16v21,-14,1,-55,12,-82v-7,-13,-17,14,-21,1v-6,-10,-34,6,-29,-11v-6,-2,-4,-10,-3,-16v12,-5,37,1,53,4xm134,-256v10,7,30,1,31,18v-5,5,-2,20,-14,18v-4,10,-26,14,-24,23v-11,5,-6,15,-16,22v4,13,-13,14,-19,6v-5,6,-10,-3,-13,-6v4,-8,-4,-20,7,-29v24,-20,19,-42,48,-52"},"\u00ec":{"d":"84,-148v24,-12,22,22,22,46v0,26,-7,56,7,75v16,-2,56,-12,51,13v8,12,-9,21,-25,19v-18,-8,-51,-2,-69,3v-10,-14,-61,9,-52,-30v13,-11,37,-6,60,-6v0,-7,2,-16,-6,-16v21,-14,1,-55,12,-82v-7,-13,-17,14,-21,1v-6,-10,-34,6,-29,-11v-6,-2,-4,-10,-3,-16v12,-5,37,1,53,4xm15,-214v-6,-35,33,-31,52,-23v5,19,23,30,32,47v13,8,3,46,-15,31v-8,0,-6,-11,-18,-9v-6,-6,-5,-19,-17,-19v-1,-7,-6,-12,-13,-8v-8,-5,-13,-14,-21,-19"},"\u00ee":{"d":"42,-155v24,4,46,5,65,6v19,30,-9,93,14,122v15,-2,56,-12,50,13v8,12,-9,21,-25,19v-18,-8,-51,-2,-69,3v-10,-14,-62,8,-51,-30v12,-11,37,-6,59,-6v0,-7,2,-16,-6,-16v22,-13,1,-55,12,-82v-7,-13,-17,14,-21,1v-6,-10,-34,6,-29,-11v-6,-2,-4,-10,-3,-16v3,0,5,0,4,-3xm71,-250v4,4,11,1,15,0v0,8,10,5,16,3v8,4,14,9,16,19v7,0,1,11,10,11v-1,1,-2,0,-2,2v14,8,20,25,26,41v-3,8,-2,13,-11,19v2,-1,2,1,2,3v-10,-4,-26,-3,-30,-14v-7,1,-10,-4,-11,-12v-10,-10,-24,-14,-35,-23v-11,1,-9,22,-18,14v-4,3,-2,4,-1,9v-7,1,-14,13,-9,17v-7,1,-7,8,-11,11v-18,-1,-26,-9,-28,-25v8,-5,8,-18,16,-23r-2,-3v7,1,12,-4,7,-9v13,5,9,-24,25,-25v3,-10,28,-2,25,-15"},"\u00ef":{"d":"84,-148v24,-12,22,22,22,46v0,26,-7,56,7,75v16,-2,56,-12,51,13v8,12,-9,21,-25,19v-18,-8,-51,-2,-69,3v-10,-14,-61,9,-52,-30v13,-11,37,-6,60,-6v0,-7,2,-16,-6,-16v21,-14,1,-55,12,-82v-7,-13,-17,14,-21,1v-6,-10,-34,6,-29,-11v-6,-2,-4,-10,-3,-16v12,-5,37,1,53,4xm23,-201v10,-20,52,-4,32,12v-1,5,-7,9,-2,12v-4,2,-12,0,-11,7v-3,-7,-15,-4,-13,-16v-6,-1,-6,-8,-6,-15xm116,-209v16,-12,32,4,29,26v-11,19,-38,6,-38,-15v6,-1,2,-16,9,-11"},"\u00f1":{"d":"59,-157v2,7,6,13,17,13v2,9,24,8,28,-1v12,-2,16,-10,27,-7r0,-2v11,2,16,6,26,10v12,14,10,32,17,50r-7,7r2,66v3,1,7,7,9,3v4,9,15,19,2,23v-9,-15,-41,7,-51,-5v-14,3,-17,-5,-13,-16v6,-3,36,1,35,-8r-2,0v7,-7,-11,-25,3,-34v-11,-10,3,-36,-8,-45v0,-23,-26,-22,-38,-10v-7,-2,-11,5,-7,8v-3,6,-9,9,-9,18v-6,-3,-9,3,-7,8v-9,7,-11,28,-6,43v-7,2,-3,13,0,17r31,0v-12,4,-9,31,-26,21v-11,7,-37,-3,-45,3v-9,-7,-16,7,-23,-6r-2,1v-3,-17,20,-24,32,-22v1,-10,9,-20,4,-27r2,2v-1,-22,-7,-47,-2,-66v-6,-1,-15,1,-13,-8v-13,-4,-27,-23,-10,-31v13,4,31,10,34,-5xm36,-216v23,-2,46,-19,63,-4v1,20,25,10,34,28v12,-7,3,-42,31,-31v8,11,9,25,-4,31v3,-1,12,4,6,3v-5,4,-8,10,-18,10v-18,28,-72,6,-77,-19r-20,1v0,11,-2,20,-4,29v-9,5,-19,-3,-24,-1v0,-20,3,-36,13,-47"},"\u00f3":{"d":"48,-119v10,-28,64,-43,91,-24v8,-3,5,11,12,8v10,14,17,25,24,39v-2,15,7,54,-10,68v-2,16,-18,19,-24,31v-11,1,-17,6,-27,8r2,-1v-6,-9,-32,6,-38,-7v-21,-6,-28,-26,-45,-36v-4,-28,2,-65,12,-86r3,0xm137,-97v1,-21,-19,-20,-30,-29v-15,9,-45,2,-44,29v-10,10,4,27,1,44v6,17,28,44,52,25v7,2,14,2,10,-3v10,-5,8,-19,18,-24v0,-15,8,-25,-4,-33v1,-4,2,-9,-3,-9xm126,-225v5,-22,35,-37,56,-19v6,14,-4,16,-3,26v-15,-2,-14,12,-27,14v-11,10,-10,22,-20,31v-1,18,-26,9,-33,0v5,-7,-3,-18,8,-29v5,-10,24,-16,17,-23r2,0"},"\u00f2":{"d":"48,-119v10,-28,64,-43,91,-24v8,-3,5,11,12,8v10,14,17,25,24,39v-2,15,7,54,-10,68v-2,16,-18,19,-24,31v-11,1,-17,6,-27,8r2,-1v-6,-9,-32,6,-38,-7v-21,-6,-28,-26,-45,-36v-4,-28,2,-65,12,-86r3,0xm137,-97v1,-21,-19,-20,-30,-29v-15,9,-45,2,-44,29v-10,10,4,27,1,44v6,17,28,44,52,25v7,2,14,2,10,-3v10,-5,8,-19,18,-24v0,-15,8,-25,-4,-33v1,-4,2,-9,-3,-9xm22,-216v-6,-35,33,-31,52,-23v0,14,15,19,19,32v9,3,9,15,18,18v2,22,-3,36,-25,28v0,-12,-20,-5,-18,-20v-9,-5,-13,-18,-26,-16v-7,-6,-13,-13,-20,-19"},"\u00f4":{"d":"48,-119v10,-28,64,-43,91,-24v8,-3,5,11,12,8v10,14,17,25,24,39v-2,15,7,54,-10,68v-2,16,-18,19,-24,31v-11,1,-17,6,-27,8r2,-1v-6,-9,-32,6,-38,-7v-21,-6,-28,-26,-45,-36v-4,-28,2,-65,12,-86r3,0xm137,-97v1,-21,-19,-20,-30,-29v-15,9,-45,2,-44,29v-10,10,4,27,1,44v6,17,28,44,52,25v7,2,14,2,10,-3v10,-5,8,-19,18,-24v0,-15,8,-25,-4,-33v1,-4,2,-9,-3,-9xm101,-241v4,4,11,1,15,0v0,8,9,5,15,3v8,4,15,8,17,19v7,0,1,11,10,11v-1,1,-2,0,-2,2v14,8,20,25,26,41v-3,8,-2,13,-11,19v2,-1,2,1,2,3v-10,-4,-26,-3,-30,-14v-7,1,-11,-4,-12,-12v-10,-10,-23,-15,-35,-23v-10,1,-9,22,-17,14v-4,3,-2,4,-1,9v-14,0,-7,17,-15,19v1,10,-11,9,-20,7v-3,-4,-21,-20,-8,-27v0,-11,13,-14,9,-22v7,1,12,-4,7,-9v13,5,9,-24,25,-25v3,-10,27,-2,25,-15"},"\u00f6":{"d":"48,-119v10,-28,64,-43,91,-24v8,-3,5,11,12,8v10,14,17,25,24,39v-2,15,7,54,-10,68v-2,16,-18,19,-24,31v-11,1,-17,6,-27,8r2,-1v-6,-9,-32,6,-38,-7v-21,-6,-28,-26,-45,-36v-4,-28,2,-65,12,-86r3,0xm137,-97v1,-21,-19,-20,-30,-29v-15,9,-45,2,-44,29v-10,10,4,27,1,44v6,17,28,44,52,25v7,2,14,2,10,-3v10,-5,8,-19,18,-24v0,-15,8,-25,-4,-33v1,-4,2,-9,-3,-9xm51,-190v6,-16,50,-11,35,7v5,4,-12,13,-4,17v-4,2,-12,0,-11,7v-3,-7,-15,-4,-13,-16v-6,-1,-6,-9,-7,-15xm145,-198v17,-12,31,6,29,26v-12,18,-38,5,-39,-15v7,0,2,-17,10,-11"},"\u00f5":{"d":"48,-119v10,-28,64,-43,91,-24v8,-3,5,11,12,8v10,14,17,25,24,39v-2,15,7,54,-10,68v-2,16,-18,19,-24,31v-11,1,-17,6,-27,8r2,-1v-6,-9,-32,6,-38,-7v-21,-6,-28,-26,-45,-36v-4,-28,2,-65,12,-86r3,0xm137,-97v1,-21,-19,-20,-30,-29v-15,9,-45,2,-44,29v-10,10,4,27,1,44v6,17,28,44,52,25v7,2,14,2,10,-3v10,-5,8,-19,18,-24v0,-15,8,-25,-4,-33v1,-4,2,-9,-3,-9xm47,-207v23,-2,46,-19,63,-4v1,20,25,10,34,28v13,-7,3,-42,31,-31v9,11,7,24,-4,31v3,-1,12,4,6,3v-6,4,-9,10,-18,10v-19,28,-72,5,-78,-19r-19,1r-4,29v-10,5,-19,-3,-25,-1v1,-20,4,-36,14,-47"},"\u00fa":{"d":"47,-145r-2,2v19,7,5,22,6,41r2,69v8,3,18,13,27,6v13,3,29,-15,29,-34v22,-7,5,-44,23,-58v-4,-16,-48,4,-39,-22v16,-10,33,1,50,-2v12,16,0,60,8,89r-2,-1v2,11,0,26,15,24v4,7,12,8,22,10v4,16,-1,29,-19,25v-26,9,-59,-24,-81,-1v-18,8,-25,-1,-41,-4v1,-8,-13,1,-13,-9v-9,-36,8,-86,-10,-117v-20,9,-32,-17,-15,-26v7,-1,18,4,17,6v-1,-1,-1,-1,0,-2r1,2v4,-7,12,5,22,2xm124,-256v10,7,30,1,31,18v-6,7,-2,20,-14,18v-5,9,-26,15,-24,23v-11,5,-6,15,-16,22v4,13,-13,14,-19,6v-5,6,-10,-3,-13,-6v4,-8,-4,-20,7,-29v24,-20,19,-42,48,-52"},"\u00f9":{"d":"47,-145r-2,2v19,7,5,22,6,41r2,69v8,3,18,13,27,6v13,3,29,-15,29,-34v22,-7,5,-44,23,-58v-4,-16,-48,4,-39,-22v16,-10,33,1,50,-2v12,16,0,60,8,89r-2,-1v2,11,0,26,15,24v4,7,12,8,22,10v4,16,-1,29,-19,25v-26,9,-59,-24,-81,-1v-18,8,-25,-1,-41,-4v1,-8,-13,1,-13,-9v-9,-36,8,-86,-10,-117v-20,9,-32,-17,-15,-26v7,-1,18,4,17,6v-1,-1,-1,-1,0,-2r1,2v4,-7,12,5,22,2xm18,-216v-6,-35,33,-31,52,-23v1,13,15,19,19,32v9,3,9,15,18,18v2,22,-3,36,-25,28v0,-12,-20,-5,-18,-20v-11,-11,-23,-18,-38,-25v-2,-4,-4,-8,-8,-10"},"\u00fb":{"d":"47,-145r-2,2v19,7,5,22,6,41r2,69v8,3,18,13,27,6v13,3,29,-15,29,-34v22,-7,5,-44,23,-58v-4,-16,-48,4,-39,-22v16,-10,33,1,50,-2v12,16,0,60,8,89r-2,-1v2,11,0,26,15,24v4,7,12,8,22,10v4,16,-1,29,-19,25v-26,9,-59,-24,-81,-1v-18,8,-25,-1,-41,-4v1,-8,-13,1,-13,-9v-9,-36,8,-86,-10,-117v-20,9,-32,-17,-15,-26v7,-1,18,4,17,6v-1,-1,-1,-1,0,-2r1,2v4,-7,12,5,22,2xm87,-253v4,4,11,0,15,0v0,8,9,5,15,3v8,3,15,7,17,18v7,0,1,11,10,11v-1,1,-2,0,-2,2v14,8,20,26,26,42v-3,7,-2,13,-11,18v2,-1,2,1,2,3v-11,-3,-25,-4,-30,-14v-7,1,-11,-3,-12,-11v-9,-11,-23,-15,-35,-23v-10,1,-8,20,-17,14v-4,3,-1,4,-1,9v-7,0,-15,10,-10,16v-6,1,-4,8,-10,11v-34,0,-30,-34,-12,-47r-2,-3v5,0,12,-5,7,-9v12,2,10,-24,25,-25v1,-11,27,-2,25,-15"},"\u00fc":{"d":"47,-145r-2,2v19,7,5,22,6,41r2,69v8,3,18,13,27,6v13,3,29,-15,29,-34v22,-7,5,-44,23,-58v-4,-16,-48,4,-39,-22v16,-10,33,1,50,-2v12,16,0,60,8,89r-2,-1v2,11,0,26,15,24v4,7,12,8,22,10v4,16,-1,29,-19,25v-26,9,-59,-24,-81,-1v-18,8,-25,-1,-41,-4v1,-8,-13,1,-13,-9v-9,-36,8,-86,-10,-117v-20,9,-32,-17,-15,-26v7,-1,18,4,17,6v-1,-1,-1,-1,0,-2r1,2v4,-7,12,5,22,2xm30,-199v5,-17,49,-10,34,7v5,4,-12,13,-4,17v-4,2,-12,0,-11,7v-3,-7,-15,-4,-13,-16v-6,-1,-6,-8,-6,-15xm123,-207v17,-12,31,6,29,26v-12,18,-38,5,-39,-15v7,0,2,-17,10,-11"},"\u00b0":{"d":"59,-139v15,-2,41,-17,65,-5v10,-6,13,14,20,8v17,15,26,30,17,49r2,2v-11,2,-17,15,-30,5v-5,7,-8,-4,-11,-7v-2,-17,21,-22,0,-30v-17,-22,-57,-2,-63,17v-11,15,1,46,7,62v13,-1,10,13,21,14v13,10,37,3,39,-9v6,-1,14,-10,12,-12v10,-4,19,-9,30,-4v0,15,4,23,-9,28v1,17,-28,17,-35,28v-14,-2,-23,10,-29,2r-1,2v-24,-7,-53,-20,-60,-46r-1,2v-8,-7,-6,-26,-8,-42v6,-12,6,-37,21,-44v-3,-7,19,-13,13,-20xm106,-14r5,41v5,2,13,0,12,8v13,2,9,23,14,36v-9,6,-2,33,-23,25v-3,8,-23,17,-32,10v0,6,-8,5,-10,1v-1,-11,-12,-16,-7,-31v5,-7,16,-9,31,-9v-2,10,5,12,10,6v0,-9,16,-12,5,-17v-5,3,-10,-13,-21,-3v-4,-12,-20,-2,-18,-17r-3,-2v7,-3,21,-6,12,-14v14,-5,-3,-38,25,-34"},"\u00c0":{"d":"99,-199v31,-5,23,51,37,72v2,10,2,23,10,28v6,25,8,62,25,76v16,0,31,3,27,21v-12,10,-32,10,-54,7v-9,7,-51,-9,-29,-19v-2,-2,5,-3,3,-8r14,-4v5,-12,-4,-18,-10,-24r-45,2v-5,9,0,23,11,23v-3,14,18,11,9,23r2,2v-9,-1,-11,6,-19,8v-15,0,-36,-8,-43,4v-15,-4,-44,-15,-24,-35v11,0,14,-6,24,-3v15,-13,14,-46,27,-57v0,-17,5,-27,7,-39v13,1,5,-32,17,-41v2,-8,4,-19,15,-11v4,-2,2,-6,0,-9v-7,1,-5,-9,-4,-16xm109,-119v10,-9,-2,-36,-1,-49v-4,5,-4,11,-11,15v0,11,6,26,-6,28v1,17,-7,27,-6,45v11,4,18,3,28,-3v3,6,8,-1,10,-4v1,-16,-10,-20,-14,-32xm17,-274v-6,-34,33,-30,52,-23v0,14,15,19,18,32v10,3,10,16,19,19v3,22,-4,35,-25,27v0,-13,-21,-4,-19,-20v-4,-3,-5,-8,-12,-7v-1,-8,-6,-12,-13,-8v-7,-6,-13,-14,-20,-20"},"\u00c3":{"d":"99,-199v31,-5,23,51,37,72v2,10,2,23,10,28v6,25,8,62,25,76v16,0,31,3,27,21v-12,10,-32,10,-54,7v-9,7,-51,-9,-29,-19v-2,-2,5,-3,3,-8r14,-4v5,-12,-4,-18,-10,-24r-45,2v-5,9,0,23,11,23v-3,14,18,11,9,23r2,2v-9,-1,-11,6,-19,8v-15,0,-36,-8,-43,4v-15,-4,-44,-15,-24,-35v11,0,14,-6,24,-3v15,-13,14,-46,27,-57v0,-17,5,-27,7,-39v13,1,5,-32,17,-41v2,-8,4,-19,15,-11v4,-2,2,-6,0,-9v-7,1,-5,-9,-4,-16xm109,-119v10,-9,-2,-36,-1,-49v-4,5,-4,11,-11,15v0,11,6,26,-6,28v1,17,-7,27,-6,45v11,4,18,3,28,-3v3,6,8,-1,10,-4v1,-16,-10,-20,-14,-32xm48,-253v23,-3,46,-20,63,-5v-1,21,25,8,33,28v2,0,4,0,3,2v6,-14,5,-42,28,-33v10,10,7,25,-3,32v3,-1,10,2,6,2v-6,4,-9,10,-18,10v-20,28,-71,6,-78,-19r-19,1r-5,29v-8,6,-18,-4,-24,-1v1,-19,3,-36,14,-46"},"\u00d5":{"d":"57,-193v13,9,28,-24,43,-6v13,-2,16,12,29,8v12,11,31,16,32,38v7,12,16,19,15,39v8,10,-1,16,4,31v-15,9,-2,38,-20,50v-4,-3,-9,25,-15,19v-5,11,-20,12,-17,20v-17,8,-50,16,-64,-3v-11,0,-20,-6,-15,-14v-21,-7,-17,-30,-30,-47v1,-25,-7,-81,16,-98v0,-11,11,-14,11,-27v4,-3,9,-5,11,-10xm118,-163v-3,-24,-49,-15,-59,-2v-18,22,-15,73,-5,107v12,8,12,22,25,29v7,20,42,14,47,0v9,-21,23,-61,17,-85v3,-4,4,-8,-2,-10v4,-16,-13,-22,-12,-35v-3,-2,-5,-5,-11,-4xm40,-257v22,-2,46,-19,63,-4v3,17,23,11,34,27v12,-6,4,-41,31,-30v8,11,9,25,-4,31v2,1,12,2,6,2v-6,4,-8,11,-18,11v-19,27,-73,7,-77,-20r-20,2v0,10,-2,19,-4,28v-9,6,-18,-2,-24,0v0,-20,3,-36,13,-47"},"\u00ff":{"d":"94,-140v-2,9,-10,-2,-17,0v6,-5,12,-5,17,0xm118,-136v-5,-19,11,-7,25,-8v1,12,47,-5,33,16v-1,-3,-5,-3,-9,-3v2,-1,2,-3,-1,-3v-19,3,-12,37,-25,46v7,12,-11,22,-6,32v-4,8,-13,10,-9,21v-11,14,-2,34,-13,46v0,16,-14,17,-13,31v-9,0,0,13,-10,9v-12,18,-48,13,-60,3v1,-9,-9,-1,-4,-8v-12,-12,-10,-42,6,-47v-1,1,-1,1,-2,0v4,-7,27,-4,24,5v9,11,8,18,-3,26v-1,9,11,5,13,12v5,-4,8,-11,16,-12v4,-16,16,-20,18,-37v-3,-2,1,-23,-11,-24v2,-19,-15,-27,-9,-36v-8,-7,-6,-24,-10,-36v-12,-2,-7,-28,-20,-30v-8,-2,-25,4,-24,-7r-2,0v15,-8,38,-3,50,-4v-1,20,3,24,0,39v13,7,6,33,21,36v2,11,4,19,7,28v6,-1,0,6,4,8v22,-7,9,-44,28,-58v-1,-20,16,-30,3,-43v0,0,-15,3,-17,-2xm41,-192v10,-20,52,-4,32,12v-1,5,-7,9,-2,12v-4,2,-12,0,-11,7v-3,-7,-15,-4,-13,-16v-6,-1,-6,-8,-6,-15xm134,-200v16,-12,32,4,29,26v-11,19,-38,6,-38,-15v6,-1,2,-16,9,-11"},"\u0178":{"d":"39,-257v7,-15,48,-11,35,8r2,1v-5,2,-12,12,-7,15v-4,2,-11,0,-10,7v-4,-6,-16,-4,-14,-16v-5,-2,-5,-9,-6,-15xm126,-263v9,-6,29,-9,34,6r1,19v-12,18,-37,5,-38,-16v3,-2,5,-4,3,-9xm10,-205v27,1,66,-21,76,6v5,5,17,7,12,16v-25,-4,-22,22,-12,36v5,4,10,7,16,9v4,-8,23,-11,18,-21v6,-14,15,-32,-7,-32v-5,-5,-6,-15,1,-19v26,2,60,-8,75,8v3,17,-20,9,-24,22v-8,0,-8,5,-7,13v-11,-1,-18,19,-10,23v-4,2,-10,3,-9,10v-19,-6,-6,33,-23,39v-7,26,-8,74,34,63v9,6,13,13,10,24v-16,10,-58,4,-69,9v-19,-4,-74,-2,-43,-33v12,0,25,1,36,-1v-3,-18,12,-30,2,-40v7,-16,5,-42,-13,-45r2,-1v-9,-21,-15,-39,-30,-57v-12,-2,-19,-9,-32,-10v1,-5,-7,-9,-3,-19"},"\u00c2":{"d":"99,-199v31,-5,23,51,37,72v2,10,2,23,10,28v6,25,8,62,25,76v16,0,31,3,27,21v-12,10,-32,10,-54,7v-9,7,-51,-9,-29,-19v-2,-2,5,-3,3,-8r14,-4v5,-12,-4,-18,-10,-24r-45,2v-5,9,0,23,11,23v-3,14,18,11,9,23r2,2v-9,-1,-11,6,-19,8v-15,0,-36,-8,-43,4v-15,-4,-44,-15,-24,-35v11,0,14,-6,24,-3v15,-13,14,-46,27,-57v0,-17,5,-27,7,-39v13,1,5,-32,17,-41v2,-8,4,-19,15,-11v4,-2,2,-6,0,-9v-7,1,-5,-9,-4,-16xm109,-119v10,-9,-2,-36,-1,-49v-4,5,-4,11,-11,15v0,11,6,26,-6,28v1,17,-7,27,-6,45v11,4,18,3,28,-3v3,6,8,-1,10,-4v1,-16,-10,-20,-14,-32xm102,-270v3,7,5,-3,11,4v0,-2,0,-5,4,-4v4,13,31,-2,32,22v7,0,1,12,11,11v-1,1,-3,0,-3,2v15,7,18,27,26,42v-5,5,-2,13,-11,18v2,-1,2,1,2,3v-10,-4,-26,-4,-31,-14v-7,1,-10,-4,-11,-12v-9,-10,-25,-14,-35,-23v-3,4,-14,7,-9,13v-5,6,-13,-2,-9,10v-7,1,-14,10,-10,17v-7,0,-6,8,-10,11v-19,1,-35,-17,-23,-29v-1,-12,11,-12,9,-22v7,1,12,-5,6,-9v14,6,10,-24,26,-25v3,-10,28,-1,25,-15"},"\u00ca":{"d":"13,-189v19,-30,69,1,102,-12v10,-4,15,12,25,3v11,1,41,-4,38,24v-2,16,12,40,0,48v-24,-7,-4,-46,-29,-51v-1,-10,-15,-7,-14,-15r-58,14v3,24,-7,47,4,61v8,1,21,7,23,-5v18,5,8,-39,30,-19r1,-2v5,26,-5,47,2,74r-17,7v-8,-9,0,-35,-14,-37v-17,-2,-42,-2,-30,15v3,14,-8,34,4,44v-6,32,40,10,60,21v1,-7,11,-5,10,-14v10,-4,4,-23,14,-28v-1,-17,11,-20,19,-15v4,11,0,17,-4,26v1,14,3,27,-1,38r-2,-1v2,26,-23,4,-33,16v-25,-2,-64,-1,-89,3v-5,-9,-18,-1,-34,-2v-14,-9,-5,-37,13,-26v7,-2,26,-1,21,-8v8,-10,11,-45,4,-56v0,-31,5,-65,-1,-92r-26,1r2,-1v-9,-1,-21,0,-20,-11xm96,-304v4,5,11,0,16,0v0,8,9,5,15,3v8,4,14,9,16,19v8,-2,1,11,10,11v-1,1,-2,0,-2,2v15,8,20,25,26,41v-3,7,-1,14,-11,19v2,-1,2,1,2,3v-10,-4,-26,-3,-30,-14v-7,1,-10,-4,-11,-12v-9,-10,-24,-14,-35,-23v-11,1,-10,21,-17,14v-4,3,-3,4,-2,9v-7,1,-14,13,-9,17v-6,1,-7,7,-10,11v-19,-1,-26,-9,-28,-25v6,-7,12,-18,14,-26v7,1,12,-6,6,-9v13,6,8,-24,25,-25v3,-9,30,-3,25,-15"},"\u00c1":{"d":"99,-199v31,-5,23,51,37,72v2,10,2,23,10,28v6,25,8,62,25,76v16,0,31,3,27,21v-12,10,-32,10,-54,7v-9,7,-51,-9,-29,-19v-2,-2,5,-3,3,-8r14,-4v5,-12,-4,-18,-10,-24r-45,2v-5,9,0,23,11,23v-3,14,18,11,9,23r2,2v-9,-1,-11,6,-19,8v-15,0,-36,-8,-43,4v-15,-4,-44,-15,-24,-35v11,0,14,-6,24,-3v15,-13,14,-46,27,-57v0,-17,5,-27,7,-39v13,1,5,-32,17,-41v2,-8,4,-19,15,-11v4,-2,2,-6,0,-9v-7,1,-5,-9,-4,-16xm109,-119v10,-9,-2,-36,-1,-49v-4,5,-4,11,-11,15v0,11,6,26,-6,28v1,17,-7,27,-6,45v11,4,18,3,28,-3v3,6,8,-1,10,-4v1,-16,-10,-20,-14,-32xm151,-305v10,6,29,2,31,18v-7,7,-1,20,-14,19v-6,8,-26,14,-24,23v-12,4,-6,16,-16,21v4,13,-12,14,-19,6v-5,6,-10,-3,-13,-6v-1,-17,10,-37,25,-47v1,2,2,2,3,0v-5,-14,13,-29,27,-34"},"\u00cb":{"d":"13,-189v19,-30,69,1,102,-12v10,-4,15,12,25,3v11,1,41,-4,38,24v-2,16,12,40,0,48v-24,-7,-4,-46,-29,-51v-1,-10,-15,-7,-14,-15r-58,14v3,24,-7,47,4,61v8,1,21,7,23,-5v18,5,8,-39,30,-19r1,-2v5,26,-5,47,2,74r-17,7v-8,-9,0,-35,-14,-37v-17,-2,-42,-2,-30,15v3,14,-8,34,4,44v-6,32,40,10,60,21v1,-7,11,-5,10,-14v10,-4,4,-23,14,-28v-1,-17,11,-20,19,-15v4,11,0,17,-4,26v1,14,3,27,-1,38r-2,-1v2,26,-23,4,-33,16v-25,-2,-64,-1,-89,3v-5,-9,-18,-1,-34,-2v-14,-9,-5,-37,13,-26v7,-2,26,-1,21,-8v8,-10,11,-45,4,-56v0,-31,5,-65,-1,-92r-26,1r2,-1v-9,-1,-21,0,-20,-11xm43,-239v7,-15,48,-11,35,8r2,1v-5,2,-12,12,-7,15v-4,2,-11,0,-10,7v-4,-6,-16,-4,-14,-16v-5,-2,-5,-9,-6,-15xm130,-245v9,-6,29,-9,34,6r1,19v-12,18,-37,5,-38,-16v3,-2,5,-4,3,-9"},"\u00c8":{"d":"13,-189v19,-30,69,1,102,-12v10,-4,15,12,25,3v11,1,41,-4,38,24v-2,16,12,40,0,48v-24,-7,-4,-46,-29,-51v-1,-10,-15,-7,-14,-15r-58,14v3,24,-7,47,4,61v8,1,21,7,23,-5v18,5,8,-39,30,-19r1,-2v5,26,-5,47,2,74r-17,7v-8,-9,0,-35,-14,-37v-17,-2,-42,-2,-30,15v3,14,-8,34,4,44v-6,32,40,10,60,21v1,-7,11,-5,10,-14v10,-4,4,-23,14,-28v-1,-17,11,-20,19,-15v4,11,0,17,-4,26v1,14,3,27,-1,38r-2,-1v2,26,-23,4,-33,16v-25,-2,-64,-1,-89,3v-5,-9,-18,-1,-34,-2v-14,-9,-5,-37,13,-26v7,-2,26,-1,21,-8v8,-10,11,-45,4,-56v0,-31,5,-65,-1,-92r-26,1r2,-1v-9,-1,-21,0,-20,-11xm29,-270v-6,-35,33,-31,52,-23v1,14,16,19,19,32v9,3,9,15,18,18v2,21,-3,36,-24,28v-1,-12,-20,-5,-19,-20v-11,-12,-23,-18,-38,-25v-2,-4,-4,-8,-8,-10"},"\u00cd":{"d":"91,-203v28,3,58,-9,79,6v1,17,-14,17,-25,22v-6,-10,-19,5,-23,-5v-17,1,-2,20,-9,30v4,41,2,87,11,122v18,-3,48,0,55,15v-7,27,-50,17,-83,20v-2,-6,-8,1,-13,0v-6,-10,-33,8,-39,-7r-12,0v1,-9,-7,-10,-3,-17v14,-3,34,-15,47,-8v3,-3,13,3,8,-5v7,-12,0,-38,6,-56v-5,-21,3,-69,-1,-89v-6,-1,-24,-4,-18,3v-16,-5,-42,2,-38,-23v9,-6,23,-8,38,-8r-2,2v8,0,19,5,22,-2xm140,-310v10,7,30,1,31,18v-5,3,0,12,-8,14v2,0,2,2,2,4v-16,-2,-13,14,-28,14v-9,11,-11,21,-20,31v4,7,-5,14,-12,11v-7,-6,-15,-2,-20,-11v-1,-17,11,-36,25,-48v1,2,2,2,3,0v-5,-13,14,-28,27,-33"},"\u00ce":{"d":"91,-203v28,3,58,-9,79,6v1,17,-14,17,-25,22v-6,-10,-19,5,-23,-5v-17,1,-2,20,-9,30v4,41,2,87,11,122v18,-3,48,0,55,15v-7,27,-50,17,-83,20v-2,-6,-8,1,-13,0v-6,-10,-33,8,-39,-7r-12,0v1,-9,-7,-10,-3,-17v14,-3,34,-15,47,-8v3,-3,13,3,8,-5v7,-12,0,-38,6,-56v-5,-21,3,-69,-1,-89v-6,-1,-24,-4,-18,3v-16,-5,-42,2,-38,-23v9,-6,23,-8,38,-8r-2,2v8,0,19,5,22,-2xm95,-311v4,4,10,1,15,0v0,8,9,5,15,3v7,5,16,8,16,19v8,-2,0,11,10,10v-1,0,-2,1,-2,3v15,7,20,25,26,41v-3,8,-2,12,-10,19v2,-1,2,1,2,3v-10,-4,-26,-4,-31,-14v-7,1,-10,-5,-11,-12v-10,-10,-24,-15,-35,-23v-11,2,-8,19,-17,14v-5,3,-2,4,-1,9v-8,0,-16,12,-10,17v-7,-1,-5,7,-10,10v-19,1,-26,-8,-28,-24v10,-8,8,-26,21,-28v1,-3,3,-6,-1,-7v14,3,9,-23,25,-25v2,-11,28,-3,26,-15"},"\u00cf":{"d":"91,-203v28,3,58,-9,79,6v1,17,-14,17,-25,22v-6,-10,-19,5,-23,-5v-17,1,-2,20,-9,30v4,41,2,87,11,122v18,-3,48,0,55,15v-7,27,-50,17,-83,20v-2,-6,-8,1,-13,0v-6,-10,-33,8,-39,-7r-12,0v1,-9,-7,-10,-3,-17v14,-3,34,-15,47,-8v3,-3,13,3,8,-5v7,-12,0,-38,6,-56v-5,-21,3,-69,-1,-89v-6,-1,-24,-4,-18,3v-16,-5,-42,2,-38,-23v9,-6,23,-8,38,-8r-2,2v8,0,19,5,22,-2xm41,-248v7,-15,48,-11,35,8r2,1v-5,3,-13,12,-6,15v-4,2,-12,0,-11,7v-4,-6,-16,-4,-14,-16v-5,-2,-5,-9,-6,-15xm128,-254v10,-5,29,-9,34,6r1,19v-12,18,-37,5,-38,-16v4,-2,6,-4,3,-9"},"\u00cc":{"d":"91,-203v28,3,58,-9,79,6v1,17,-14,17,-25,22v-6,-10,-19,5,-23,-5v-17,1,-2,20,-9,30v4,41,2,87,11,122v18,-3,48,0,55,15v-7,27,-50,17,-83,20v-2,-6,-8,1,-13,0v-6,-10,-33,8,-39,-7r-12,0v1,-9,-7,-10,-3,-17v14,-3,34,-15,47,-8v3,-3,13,3,8,-5v7,-12,0,-38,6,-56v-5,-21,3,-69,-1,-89v-6,-1,-24,-4,-18,3v-16,-5,-42,2,-38,-23v9,-6,23,-8,38,-8r-2,2v8,0,19,5,22,-2xm26,-274v-6,-34,33,-30,52,-23v0,14,15,19,18,32v10,3,10,16,19,19v3,22,-4,35,-25,27v0,-13,-21,-4,-19,-20v-4,-3,-5,-8,-12,-7v-1,-8,-6,-12,-13,-8v-7,-6,-13,-14,-20,-20"},"\u00d3":{"d":"57,-193v13,9,28,-24,43,-6v13,-2,16,12,29,8v12,11,31,16,32,38v7,12,16,19,15,39v8,10,-1,16,4,31v-15,9,-2,38,-20,50v-4,-3,-9,25,-15,19v-5,11,-20,12,-17,20v-17,8,-50,16,-64,-3v-11,0,-20,-6,-15,-14v-21,-7,-17,-30,-30,-47v1,-25,-7,-81,16,-98v0,-11,11,-14,11,-27v4,-3,9,-5,11,-10xm118,-163v-3,-24,-49,-15,-59,-2v-18,22,-15,73,-5,107v12,8,12,22,25,29v7,20,42,14,47,0v9,-21,23,-61,17,-85v3,-4,4,-8,-2,-10v4,-16,-13,-22,-12,-35v-3,-2,-5,-5,-11,-4xm101,-279v7,-20,34,-38,58,-19v7,15,-6,17,-3,26v-16,-2,-14,13,-28,14v-9,11,-11,21,-20,31v3,18,-14,7,-24,7v-21,-22,7,-42,17,-55v1,2,2,2,3,0"},"\u00d4":{"d":"57,-193v13,9,28,-24,43,-6v13,-2,16,12,29,8v12,11,31,16,32,38v7,12,16,19,15,39v8,10,-1,16,4,31v-15,9,-2,38,-20,50v-4,-3,-9,25,-15,19v-5,11,-20,12,-17,20v-17,8,-50,16,-64,-3v-11,0,-20,-6,-15,-14v-21,-7,-17,-30,-30,-47v1,-25,-7,-81,16,-98v0,-11,11,-14,11,-27v4,-3,9,-5,11,-10xm118,-163v-3,-24,-49,-15,-59,-2v-18,22,-15,73,-5,107v12,8,12,22,25,29v7,20,42,14,47,0v9,-21,23,-61,17,-85v3,-4,4,-8,-2,-10v4,-16,-13,-22,-12,-35v-3,-2,-5,-5,-11,-4xm91,-286v4,4,11,1,15,0v0,8,9,5,15,3v8,4,15,8,17,19v7,0,1,11,10,11v-1,1,-2,0,-2,2v15,8,19,26,26,41v-5,7,-1,13,-11,19v2,-1,2,1,2,3v-10,-4,-26,-4,-31,-14v-7,1,-10,-5,-11,-12v-10,-10,-23,-15,-35,-23v-10,1,-9,22,-17,14v-4,3,-2,4,-1,9v-14,0,-7,17,-15,19v1,10,-11,9,-20,7v-3,-4,-21,-20,-8,-27v0,-11,13,-14,9,-22v7,1,12,-4,7,-9v12,5,9,-25,25,-25v3,-10,27,-2,25,-15"},"\uf8ff":{"d":"-17,-279v35,-23,95,-3,157,-10v25,6,58,-6,73,9v1,-1,2,-5,4,-3v-2,3,1,5,4,4v-3,15,-3,34,-22,33v-13,7,-33,-7,-52,0v-8,-2,-24,-4,-30,3v-43,-5,-95,1,-131,-11v-7,-4,-4,-15,-3,-25xm-17,-211v38,-22,95,-2,157,-9v24,6,57,-6,73,8v5,-6,2,3,8,1v1,32,-26,43,-54,31v-20,3,-27,3,-45,0v-33,12,-80,-1,-123,-1v-16,0,-21,-13,-16,-30xm-17,-144v35,-23,95,-3,157,-10v25,6,58,-6,73,9v1,-1,2,-5,4,-3v-2,3,1,5,4,4v-3,15,-3,34,-22,33v-13,7,-33,-7,-52,0v-8,-2,-24,-4,-30,3v-43,-5,-95,1,-131,-11v-7,-4,-4,-15,-3,-25xm-17,-80v36,-21,95,-2,157,-9v25,5,57,-5,73,8v5,-6,2,3,8,1v-3,16,-2,35,-22,34v-13,7,-33,-7,-52,0v-8,-2,-24,-4,-30,3v-43,-5,-95,1,-131,-11v-7,-5,-4,-16,-3,-26xm-19,8v0,-50,59,-20,100,-29v30,0,61,-1,87,3v12,-7,39,-1,45,6v5,-6,2,3,8,1v-3,15,-3,34,-22,33v-13,7,-33,-7,-52,0v-8,-2,-24,-4,-30,3v-43,-5,-95,1,-131,-11xm-17,57v37,-22,95,-2,157,-9v25,5,57,-5,73,8v5,-6,2,3,8,1v-3,16,-3,34,-22,34v-13,7,-33,-7,-52,0v-3,-4,-6,-4,-9,0v-8,-1,-18,-4,-21,3v-43,-4,-93,-2,-131,-11v-7,-5,-4,-16,-3,-26"},"\u00d2":{"d":"57,-193v13,9,28,-24,43,-6v13,-2,16,12,29,8v12,11,31,16,32,38v7,12,16,19,15,39v8,10,-1,16,4,31v-15,9,-2,38,-20,50v-4,-3,-9,25,-15,19v-5,11,-20,12,-17,20v-17,8,-50,16,-64,-3v-11,0,-20,-6,-15,-14v-21,-7,-17,-30,-30,-47v1,-25,-7,-81,16,-98v0,-11,11,-14,11,-27v4,-3,9,-5,11,-10xm118,-163v-3,-24,-49,-15,-59,-2v-18,22,-15,73,-5,107v12,8,12,22,25,29v7,20,42,14,47,0v9,-21,23,-61,17,-85v3,-4,4,-8,-2,-10v4,-16,-13,-22,-12,-35v-3,-2,-5,-5,-11,-4xm22,-274v-7,-34,34,-30,52,-23v0,14,15,19,19,32v9,3,9,16,18,19v3,21,-3,35,-25,27v0,-13,-20,-4,-18,-20v-10,-4,-14,-20,-26,-15v-7,-7,-13,-14,-20,-20"},"\u00da":{"d":"123,-74v8,1,12,7,2,9xm130,-38v-9,-6,20,-8,9,-17v7,-9,-6,-20,-4,-33r3,2v7,-19,-3,-39,2,-52v-3,-4,-6,-9,-2,-14v-2,1,-4,1,-3,-2v4,4,5,-3,7,-6v-2,-17,-15,-22,-35,-21v-5,-8,0,-20,13,-18v7,-8,13,3,25,-4v7,21,47,-18,47,22v-14,5,-25,-3,-34,7v0,18,10,41,-1,52v6,22,5,47,1,69v13,13,-10,26,-10,43v-13,7,-28,27,-41,16v-10,3,-24,0,-33,-3v0,-6,-11,-2,-15,-7v-8,-23,-25,-37,-20,-73v15,-8,-7,-21,3,-31r-3,-22v10,-5,-6,-20,2,-27v-4,-5,-2,-36,-14,-23v-8,-5,-18,-1,-17,-17v5,-5,12,1,15,-6v9,12,23,-5,31,4v2,-1,2,-3,0,-4v9,5,41,-5,30,22v-15,1,-37,1,-24,21v-2,11,-14,16,-3,23v-7,26,0,40,-4,64v7,6,-4,20,8,19v-1,1,-1,2,0,3v9,5,1,22,22,24v13,8,41,1,45,-11xm113,-283v0,-26,49,-32,56,-7v-6,4,-1,21,-14,18v-5,9,-26,14,-24,23v-11,5,-6,15,-15,22v-1,18,-26,9,-33,0v-1,-17,11,-36,25,-48v1,2,2,2,3,0v-4,-3,-1,-5,2,-8"},"\u00db":{"d":"123,-74v8,1,12,7,2,9xm130,-38v-9,-6,20,-8,9,-17v7,-9,-6,-20,-4,-33r3,2v7,-19,-3,-39,2,-52v-3,-4,-6,-9,-2,-14v-2,1,-4,1,-3,-2v4,4,5,-3,7,-6v-2,-17,-15,-22,-35,-21v-5,-8,0,-20,13,-18v7,-8,13,3,25,-4v7,21,47,-18,47,22v-14,5,-25,-3,-34,7v0,18,10,41,-1,52v6,22,5,47,1,69v13,13,-10,26,-10,43v-13,7,-28,27,-41,16v-10,3,-24,0,-33,-3v0,-6,-11,-2,-15,-7v-8,-23,-25,-37,-20,-73v15,-8,-7,-21,3,-31r-3,-22v10,-5,-6,-20,2,-27v-4,-5,-2,-36,-14,-23v-8,-5,-18,-1,-17,-17v5,-5,12,1,15,-6v9,12,23,-5,31,4v2,-1,2,-3,0,-4v9,5,41,-5,30,22v-15,1,-37,1,-24,21v-2,11,-14,16,-3,23v-7,26,0,40,-4,64v7,6,-4,20,8,19v-1,1,-1,2,0,3v9,5,1,22,22,24v13,8,41,1,45,-11xm93,-311v4,4,11,1,15,0v0,8,9,5,15,3v7,5,15,9,17,19v7,-1,0,11,9,10v-2,8,15,8,13,20v4,7,16,22,8,28v6,7,-5,9,-7,15v2,-1,2,1,2,3v-10,-4,-26,-4,-31,-14v-7,1,-10,-5,-11,-12v-10,-10,-23,-15,-35,-23v-11,2,-8,19,-17,14v-4,3,-2,4,-1,9v-8,0,-14,11,-10,17v-8,-1,-5,8,-10,10v-19,0,-26,-8,-28,-24v10,-8,8,-27,22,-28v1,-3,1,-6,-2,-7v14,3,9,-24,26,-25v1,-11,27,-2,25,-15"},"\u00d9":{"d":"123,-74v8,1,12,7,2,9xm130,-38v-9,-6,20,-8,9,-17v7,-9,-6,-20,-4,-33r3,2v7,-19,-3,-39,2,-52v-3,-4,-6,-9,-2,-14v-2,1,-4,1,-3,-2v4,4,5,-3,7,-6v-2,-17,-15,-22,-35,-21v-5,-8,0,-20,13,-18v7,-8,13,3,25,-4v7,21,47,-18,47,22v-14,5,-25,-3,-34,7v0,18,10,41,-1,52v6,22,5,47,1,69v13,13,-10,26,-10,43v-13,7,-28,27,-41,16v-10,3,-24,0,-33,-3v0,-6,-11,-2,-15,-7v-8,-23,-25,-37,-20,-73v15,-8,-7,-21,3,-31r-3,-22v10,-5,-6,-20,2,-27v-4,-5,-2,-36,-14,-23v-8,-5,-18,-1,-17,-17v5,-5,12,1,15,-6v9,12,23,-5,31,4v2,-1,2,-3,0,-4v9,5,41,-5,30,22v-15,1,-37,1,-24,21v-2,11,-14,16,-3,23v-7,26,0,40,-4,64v7,6,-4,20,8,19v-1,1,-1,2,0,3v9,5,1,22,22,24v13,8,41,1,45,-11xm22,-274v-7,-34,34,-30,52,-23v0,14,15,19,19,32v9,3,9,16,18,19v3,21,-3,35,-25,27v0,-13,-20,-4,-18,-20v-10,-4,-14,-20,-26,-15v-7,-7,-13,-14,-20,-20"},"@":{"d":"161,-121v15,13,-2,38,-8,51v-17,7,-34,-3,-44,7v-4,-1,-8,-10,-13,-7v-1,6,-1,-1,-4,0v-6,11,-18,12,-27,3v-10,-19,-24,-93,17,-88v0,0,-1,-1,-1,-2v9,-4,4,9,9,13v-16,9,-11,31,-8,43v5,2,8,6,17,1v-1,-11,9,-29,-2,-38v-7,-14,4,-27,15,-23r0,3v4,-1,4,-4,10,-2v13,16,-1,45,14,58v4,-6,5,-15,7,-23v11,-2,1,-32,-5,-38v2,-12,-10,-12,-16,-16v-14,-1,-19,-13,-35,-11v-10,1,-14,15,-25,8v-3,1,-1,7,-6,6v1,12,-9,16,-5,27v-14,18,1,43,-6,60v11,21,4,45,28,51v7,19,18,0,27,7r0,-2v8,3,13,6,21,1v0,-20,23,-33,36,-17v4,10,11,15,9,30v-17,4,-21,23,-43,22v-15,9,-26,0,-40,6v-6,-7,-22,0,-24,-10v-8,-1,-21,-6,-15,-14v-8,-3,-13,-13,-12,-20v-20,-27,-8,-81,-5,-98v3,1,3,-1,2,-3v7,-15,1,-38,12,-47v3,0,2,4,5,1v-4,-10,9,-6,8,-17v8,-8,18,-10,35,-8v11,-14,40,5,52,11v1,9,0,16,11,17v1,9,5,15,11,19v1,13,6,31,-2,39xm145,-195v6,1,4,7,3,11v-3,0,-3,-3,-3,-6v0,-1,2,-1,2,-1v-2,0,-2,-1,-2,-4xm42,-189r0,3v-1,0,-2,0,-2,-1v0,-1,1,-2,2,-2xm86,-161v-3,-1,-3,-7,2,-6v3,3,-4,2,-2,6","w":185},"\"":{"d":"107,-201v9,-5,31,-11,41,-2v3,19,0,43,-4,62v5,9,5,39,-10,38v-17,11,-11,-19,-20,-27v4,-6,8,-9,4,-17v-3,2,-6,-11,-10,-5v0,-3,-2,-9,0,-11r2,2v16,-11,-5,-22,-3,-40xm67,-208v8,-11,17,10,28,10v-2,13,12,38,-5,30v-17,9,-1,35,-10,48v7,10,-7,18,-18,13v-9,-23,2,-48,-10,-63v-1,-10,4,-34,-8,-25v-6,-1,-21,-9,-9,-9v6,-5,20,5,26,-6v3,0,6,0,6,2"},"!":{"d":"79,-53v7,-3,36,-11,34,11v11,7,-2,22,4,30v-19,18,-67,-5,-43,-28v0,-6,3,-9,7,-12r-1,2xm103,-208v10,16,15,41,2,60v5,16,3,35,-1,52v7,8,0,26,-15,20v-14,-6,-9,-31,-13,-50v13,-11,-9,-32,-2,-44v-5,-18,3,-45,29,-38"}}});if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return"";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;