var Prototype={Version:'1.6.1',Browser:(function(){var ua=navigator.userAgent;var isOpera=Object.prototype.toString.call(window.opera)=='[object Opera]';return{IE:!!window.attachEvent&&!isOpera,Opera:isOpera,WebKit:ua.indexOf('AppleWebKit/')>-1,Gecko:ua.indexOf('Gecko')>-1&&ua.indexOf('KHTML')===-1,MobileSafari:/Apple.*Mobile.*Safari/.test(ua)}})(),BrowserFeatures:{XPath:!!document.evaluate,SelectorsAPI:!!document.querySelector,ElementExtensions:(function(){var constructor=window.Element||window.HTMLElement;return!!(constructor&&constructor.prototype);})(),SpecificElementExtensions:(function(){if(typeof window.HTMLDivElement!=='undefined')
return true;var div=document.createElement('div');var form=document.createElement('form');var isSupported=false;if(div['__proto__']&&(div['__proto__']!==form['__proto__'])){isSupported=true;}
div=form=null;return isSupported;})()},ScriptFragment:'<script[^>]*>([\\S\\s]*?)<\/script>',JSONFilter:/^\/\*-secure-([\s\S]*)\*\/\s*$/,emptyFunction:function(){},K:function(x){return x}};if(Prototype.Browser.MobileSafari)
Prototype.BrowserFeatures.SpecificElementExtensions=false;var Abstract={};var Try={these:function(){var returnValue;for(var i=0,length=arguments.length;i<length;i++){var lambda=arguments[i];try{returnValue=lambda();break;}catch(e){}}
return returnValue;}};var Class=(function(){function subclass(){};function create(){var parent=null,properties=$A(arguments);if(Object.isFunction(properties[0]))
parent=properties.shift();function klass(){this.initialize.apply(this,arguments);}
Object.extend(klass,Class.Methods);klass.superclass=parent;klass.subclasses=[];if(parent){subclass.prototype=parent.prototype;klass.prototype=new subclass;parent.subclasses.push(klass);}
for(var i=0;i<properties.length;i++)
klass.addMethods(properties[i]);if(!klass.prototype.initialize)
klass.prototype.initialize=Prototype.emptyFunction;klass.prototype.constructor=klass;return klass;}
function addMethods(source){var ancestor=this.superclass&&this.superclass.prototype;var properties=Object.keys(source);if(!Object.keys({toString:true}).length){if(source.toString!=Object.prototype.toString)
properties.push("toString");if(source.valueOf!=Object.prototype.valueOf)
properties.push("valueOf");}
for(var i=0,length=properties.length;i<length;i++){var property=properties[i],value=source[property];if(ancestor&&Object.isFunction(value)&&value.argumentNames().first()=="$super"){var method=value;value=(function(m){return function(){return ancestor[m].apply(this,arguments);};})(property).wrap(method);value.valueOf=method.valueOf.bind(method);value.toString=method.toString.bind(method);}
this.prototype[property]=value;}
return this;}
return{create:create,Methods:{addMethods:addMethods}};})();(function(){var _toString=Object.prototype.toString;function extend(destination,source){for(var property in source)
destination[property]=source[property];return destination;}
function inspect(object){try{if(isUndefined(object))return'undefined';if(object===null)return'null';return object.inspect?object.inspect():String(object);}catch(e){if(e instanceof RangeError)return'...';throw e;}}
function toJSON(object){var type=typeof object;switch(type){case'undefined':case'function':case'unknown':return;case'boolean':return object.toString();}
if(object===null)return'null';if(object.toJSON)return object.toJSON();if(isElement(object))return;var results=[];for(var property in object){var value=toJSON(object[property]);if(!isUndefined(value))
results.push(property.toJSON()+': '+value);}
return'{'+results.join(', ')+'}';}
function toQueryString(object){return $H(object).toQueryString();}
function toHTML(object){return object&&object.toHTML?object.toHTML():String.interpret(object);}
function keys(object){var results=[];for(var property in object)
results.push(property);return results;}
function values(object){var results=[];for(var property in object)
results.push(object[property]);return results;}
function clone(object){return extend({},object);}
function isElement(object){return!!(object&&object.nodeType==1);}
function isArray(object){return _toString.call(object)=="[object Array]";}
function isHash(object){return object instanceof Hash;}
function isFunction(object){return typeof object==="function";}
function isString(object){return _toString.call(object)=="[object String]";}
function isNumber(object){return _toString.call(object)=="[object Number]";}
function isUndefined(object){return typeof object==="undefined";}
extend(Object,{extend:extend,inspect:inspect,toJSON:toJSON,toQueryString:toQueryString,toHTML:toHTML,keys:keys,values:values,clone:clone,isElement:isElement,isArray:isArray,isHash:isHash,isFunction:isFunction,isString:isString,isNumber:isNumber,isUndefined:isUndefined});})();Object.extend(Function.prototype,(function(){var slice=Array.prototype.slice;function update(array,args){var arrayLength=array.length,length=args.length;while(length--)array[arrayLength+length]=args[length];return array;}
function merge(array,args){array=slice.call(array,0);return update(array,args);}
function argumentNames(){var names=this.toString().match(/^[\s\(]*function[^(]*\(([^)]*)\)/)[1].replace(/\/\/.*?[\r\n]|\/\*(?:.|[\r\n])*?\*\//g,'').replace(/\s+/g,'').split(',');return names.length==1&&!names[0]?[]:names;}
function bind(context){if(arguments.length<2&&Object.isUndefined(arguments[0]))return this;var __method=this,args=slice.call(arguments,1);return function(){var a=merge(args,arguments);return __method.apply(context,a);}}
function bindAsEventListener(context){var __method=this,args=slice.call(arguments,1);return function(event){var a=update([event||window.event],args);return __method.apply(context,a);}}
function curry(){if(!arguments.length)return this;var __method=this,args=slice.call(arguments,0);return function(){var a=merge(args,arguments);return __method.apply(this,a);}}
function delay(timeout){var __method=this,args=slice.call(arguments,1);timeout=timeout*1000
return window.setTimeout(function(){return __method.apply(__method,args);},timeout);}
function defer(){var args=update([0.01],arguments);return this.delay.apply(this,args);}
function wrap(wrapper){var __method=this;return function(){var a=update([__method.bind(this)],arguments);return wrapper.apply(this,a);}}
function methodize(){if(this._methodized)return this._methodized;var __method=this;return this._methodized=function(){var a=update([this],arguments);return __method.apply(null,a);};}
return{argumentNames:argumentNames,bind:bind,bindAsEventListener:bindAsEventListener,curry:curry,delay:delay,defer:defer,wrap:wrap,methodize:methodize}})());Date.prototype.toJSON=function(){return'"'+this.getUTCFullYear()+'-'+
(this.getUTCMonth()+1).toPaddedString(2)+'-'+
this.getUTCDate().toPaddedString(2)+'T'+
this.getUTCHours().toPaddedString(2)+':'+
this.getUTCMinutes().toPaddedString(2)+':'+
this.getUTCSeconds().toPaddedString(2)+'Z"';};RegExp.prototype.match=RegExp.prototype.test;RegExp.escape=function(str){return String(str).replace(/([.*+?^=!:${}()|[\]\/\\])/g,'\\$1');};var PeriodicalExecuter=Class.create({initialize:function(callback,frequency){this.callback=callback;this.frequency=frequency;this.currentlyExecuting=false;this.registerCallback();},registerCallback:function(){this.timer=setInterval(this.onTimerEvent.bind(this),this.frequency*1000);},execute:function(){this.callback(this);},stop:function(){if(!this.timer)return;clearInterval(this.timer);this.timer=null;},onTimerEvent:function(){if(!this.currentlyExecuting){try{this.currentlyExecuting=true;this.execute();this.currentlyExecuting=false;}catch(e){this.currentlyExecuting=false;throw e;}}}});Object.extend(String,{interpret:function(value){return value==null?'':String(value);},specialChar:{'\b':'\\b','\t':'\\t','\n':'\\n','\f':'\\f','\r':'\\r','\\':'\\\\'}});Object.extend(String.prototype,(function(){function prepareReplacement(replacement){if(Object.isFunction(replacement))return replacement;var template=new Template(replacement);return function(match){return template.evaluate(match)};}
function gsub(pattern,replacement){var result='',source=this,match;replacement=prepareReplacement(replacement);if(Object.isString(pattern))
pattern=RegExp.escape(pattern);if(!(pattern.length||pattern.source)){replacement=replacement('');return replacement+source.split('').join(replacement)+replacement;}
while(source.length>0){if(match=source.match(pattern)){result+=source.slice(0,match.index);result+=String.interpret(replacement(match));source=source.slice(match.index+match[0].length);}else{result+=source,source='';}}
return result;}
function sub(pattern,replacement,count){replacement=prepareReplacement(replacement);count=Object.isUndefined(count)?1:count;return this.gsub(pattern,function(match){if(--count<0)return match[0];return replacement(match);});}
function scan(pattern,iterator){this.gsub(pattern,iterator);return String(this);}
function truncate(length,truncation){length=length||30;truncation=Object.isUndefined(truncation)?'...':truncation;return this.length>length?this.slice(0,length-truncation.length)+truncation:String(this);}
function strip(){return this.replace(/^\s+/,'').replace(/\s+$/,'');}
function stripTags(){return this.replace(/<\w+(\s+("[^"]*"|'[^']*'|[^>])+)?>|<\/\w+>/gi,'');}
function stripScripts(){return this.replace(new RegExp(Prototype.ScriptFragment,'img'),'');}
function extractScripts(){var matchAll=new RegExp(Prototype.ScriptFragment,'img');var matchOne=new RegExp(Prototype.ScriptFragment,'im');return(this.match(matchAll)||[]).map(function(scriptTag){return(scriptTag.match(matchOne)||['',''])[1];});}
function evalScripts(){return this.extractScripts().map(function(script){return eval(script)});}
function escapeHTML(){return this.replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;');}
function unescapeHTML(){return this.stripTags().replace(/&lt;/g,'<').replace(/&gt;/g,'>').replace(/&amp;/g,'&');}
function toQueryParams(separator){var match=this.strip().match(/([^?#]*)(#.*)?$/);if(!match)return{};return match[1].split(separator||'&').inject({},function(hash,pair){if((pair=pair.split('='))[0]){var key=decodeURIComponent(pair.shift());var value=pair.length>1?pair.join('='):pair[0];if(value!=undefined)value=decodeURIComponent(value);if(key in hash){if(!Object.isArray(hash[key]))hash[key]=[hash[key]];hash[key].push(value);}
else hash[key]=value;}
return hash;});}
function toArray(){return this.split('');}
function succ(){return this.slice(0,this.length-1)+
String.fromCharCode(this.charCodeAt(this.length-1)+1);}
function times(count){return count<1?'':new Array(count+1).join(this);}
function camelize(){var parts=this.split('-'),len=parts.length;if(len==1)return parts[0];var camelized=this.charAt(0)=='-'?parts[0].charAt(0).toUpperCase()+parts[0].substring(1):parts[0];for(var i=1;i<len;i++)
camelized+=parts[i].charAt(0).toUpperCase()+parts[i].substring(1);return camelized;}
function capitalize(){return this.charAt(0).toUpperCase()+this.substring(1).toLowerCase();}
function underscore(){return this.replace(/::/g,'/').replace(/([A-Z]+)([A-Z][a-z])/g,'$1_$2').replace(/([a-z\d])([A-Z])/g,'$1_$2').replace(/-/g,'_').toLowerCase();}
function dasherize(){return this.replace(/_/g,'-');}
function inspect(useDoubleQuotes){var escapedString=this.replace(/[\x00-\x1f\\]/g,function(character){if(character in String.specialChar){return String.specialChar[character];}
return'\\u00'+character.charCodeAt().toPaddedString(2,16);});if(useDoubleQuotes)return'"'+escapedString.replace(/"/g,'\\"')+'"';return"'"+escapedString.replace(/'/g,'\\\'')+"'";}
function toJSON(){return this.inspect(true);}
function unfilterJSON(filter){return this.replace(filter||Prototype.JSONFilter,'$1');}
function isJSON(){var str=this;if(str.blank())return false;str=this.replace(/\\./g,'@').replace(/"[^"\\\n\r]*"/g,'');return(/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(str);}
function evalJSON(sanitize){var json=this.unfilterJSON();try{if(!sanitize||json.isJSON())return eval('('+json+')');}catch(e){}
throw new SyntaxError('Badly formed JSON string: '+this.inspect());}
function include(pattern){return this.indexOf(pattern)>-1;}
function startsWith(pattern){return this.indexOf(pattern)===0;}
function endsWith(pattern){var d=this.length-pattern.length;return d>=0&&this.lastIndexOf(pattern)===d;}
function empty(){return this=='';}
function blank(){return /^\s*$/.test(this);}
function interpolate(object,pattern){return new Template(this,pattern).evaluate(object);}
return{gsub:gsub,sub:sub,scan:scan,truncate:truncate,strip:String.prototype.trim?String.prototype.trim:strip,stripTags:stripTags,stripScripts:stripScripts,extractScripts:extractScripts,evalScripts:evalScripts,escapeHTML:escapeHTML,unescapeHTML:unescapeHTML,toQueryParams:toQueryParams,parseQuery:toQueryParams,toArray:toArray,succ:succ,times:times,camelize:camelize,capitalize:capitalize,underscore:underscore,dasherize:dasherize,inspect:inspect,toJSON:toJSON,unfilterJSON:unfilterJSON,isJSON:isJSON,evalJSON:evalJSON,include:include,startsWith:startsWith,endsWith:endsWith,empty:empty,blank:blank,interpolate:interpolate};})());var Template=Class.create({initialize:function(template,pattern){this.template=template.toString();this.pattern=pattern||Template.Pattern;},evaluate:function(object){if(object&&Object.isFunction(object.toTemplateReplacements))
object=object.toTemplateReplacements();return this.template.gsub(this.pattern,function(match){if(object==null)return(match[1]+'');var before=match[1]||'';if(before=='\\')return match[2];var ctx=object,expr=match[3];var pattern=/^([^.[]+|\[((?:.*?[^\\])?)\])(\.|\[|$)/;match=pattern.exec(expr);if(match==null)return before;while(match!=null){var comp=match[1].startsWith('[')?match[2].replace(/\\\\]/g,']'):match[1];ctx=ctx[comp];if(null==ctx||''==match[3])break;expr=expr.substring('['==match[3]?match[1].length:match[0].length);match=pattern.exec(expr);}
return before+String.interpret(ctx);});}});Template.Pattern=/(^|.|\r|\n)(#\{(.*?)\})/;var $break={};var Enumerable=(function(){function each(iterator,context){var index=0;try{this._each(function(value){iterator.call(context,value,index++);});}catch(e){if(e!=$break)throw e;}
return this;}
function eachSlice(number,iterator,context){var index=-number,slices=[],array=this.toArray();if(number<1)return array;while((index+=number)<array.length)
slices.push(array.slice(index,index+number));return slices.collect(iterator,context);}
function all(iterator,context){iterator=iterator||Prototype.K;var result=true;this.each(function(value,index){result=result&&!!iterator.call(context,value,index);if(!result)throw $break;});return result;}
function any(iterator,context){iterator=iterator||Prototype.K;var result=false;this.each(function(value,index){if(result=!!iterator.call(context,value,index))
throw $break;});return result;}
function collect(iterator,context){iterator=iterator||Prototype.K;var results=[];this.each(function(value,index){results.push(iterator.call(context,value,index));});return results;}
function detect(iterator,context){var result;this.each(function(value,index){if(iterator.call(context,value,index)){result=value;throw $break;}});return result;}
function findAll(iterator,context){var results=[];this.each(function(value,index){if(iterator.call(context,value,index))
results.push(value);});return results;}
function grep(filter,iterator,context){iterator=iterator||Prototype.K;var results=[];if(Object.isString(filter))
filter=new RegExp(RegExp.escape(filter));this.each(function(value,index){if(filter.match(value))
results.push(iterator.call(context,value,index));});return results;}
function include(object){if(Object.isFunction(this.indexOf))
if(this.indexOf(object)!=-1)return true;var found=false;this.each(function(value){if(value==object){found=true;throw $break;}});return found;}
function inGroupsOf(number,fillWith){fillWith=Object.isUndefined(fillWith)?null:fillWith;return this.eachSlice(number,function(slice){while(slice.length<number)slice.push(fillWith);return slice;});}
function inject(memo,iterator,context){this.each(function(value,index){memo=iterator.call(context,memo,value,index);});return memo;}
function invoke(method){var args=$A(arguments).slice(1);return this.map(function(value){return value[method].apply(value,args);});}
function max(iterator,context){iterator=iterator||Prototype.K;var result;this.each(function(value,index){value=iterator.call(context,value,index);if(result==null||value>=result)
result=value;});return result;}
function min(iterator,context){iterator=iterator||Prototype.K;var result;this.each(function(value,index){value=iterator.call(context,value,index);if(result==null||value<result)
result=value;});return result;}
function partition(iterator,context){iterator=iterator||Prototype.K;var trues=[],falses=[];this.each(function(value,index){(iterator.call(context,value,index)?trues:falses).push(value);});return[trues,falses];}
function pluck(property){var results=[];this.each(function(value){results.push(value[property]);});return results;}
function reject(iterator,context){var results=[];this.each(function(value,index){if(!iterator.call(context,value,index))
results.push(value);});return results;}
function sortBy(iterator,context){return this.map(function(value,index){return{value:value,criteria:iterator.call(context,value,index)};}).sort(function(left,right){var a=left.criteria,b=right.criteria;return a<b?-1:a>b?1:0;}).pluck('value');}
function toArray(){return this.map();}
function zip(){var iterator=Prototype.K,args=$A(arguments);if(Object.isFunction(args.last()))
iterator=args.pop();var collections=[this].concat(args).map($A);return this.map(function(value,index){return iterator(collections.pluck(index));});}
function size(){return this.toArray().length;}
function inspect(){return'#<Enumerable:'+this.toArray().inspect()+'>';}
return{each:each,eachSlice:eachSlice,all:all,every:all,any:any,some:any,collect:collect,map:collect,detect:detect,findAll:findAll,select:findAll,filter:findAll,grep:grep,include:include,member:include,inGroupsOf:inGroupsOf,inject:inject,invoke:invoke,max:max,min:min,partition:partition,pluck:pluck,reject:reject,sortBy:sortBy,toArray:toArray,entries:toArray,zip:zip,size:size,inspect:inspect,find:detect};})();function $A(iterable){if(!iterable)return[];if('toArray'in Object(iterable))return iterable.toArray();var length=iterable.length||0,results=new Array(length);while(length--)results[length]=iterable[length];return results;}
function $w(string){if(!Object.isString(string))return[];string=string.strip();return string?string.split(/\s+/):[];}
Array.from=$A;(function(){var arrayProto=Array.prototype,slice=arrayProto.slice,_each=arrayProto.forEach;function each(iterator){for(var i=0,length=this.length;i<length;i++)
iterator(this[i]);}
if(!_each)_each=each;function clear(){this.length=0;return this;}
function first(){return this[0];}
function last(){return this[this.length-1];}
function compact(){return this.select(function(value){return value!=null;});}
function flatten(){return this.inject([],function(array,value){if(Object.isArray(value))
return array.concat(value.flatten());array.push(value);return array;});}
function without(){var values=slice.call(arguments,0);return this.select(function(value){return!values.include(value);});}
function reverse(inline){return(inline!==false?this:this.toArray())._reverse();}
function uniq(sorted){return this.inject([],function(array,value,index){if(0==index||(sorted?array.last()!=value:!array.include(value)))
array.push(value);return array;});}
function intersect(array){return this.uniq().findAll(function(item){return array.detect(function(value){return item===value});});}
function clone(){return slice.call(this,0);}
function size(){return this.length;}
function inspect(){return'['+this.map(Object.inspect).join(', ')+']';}
function toJSON(){var results=[];this.each(function(object){var value=Object.toJSON(object);if(!Object.isUndefined(value))results.push(value);});return'['+results.join(', ')+']';}
function indexOf(item,i){i||(i=0);var length=this.length;if(i<0)i=length+i;for(;i<length;i++)
if(this[i]===item)return i;return-1;}
function lastIndexOf(item,i){i=isNaN(i)?this.length:(i<0?this.length+i:i)+1;var n=this.slice(0,i).reverse().indexOf(item);return(n<0)?n:i-n-1;}
function concat(){var array=slice.call(this,0),item;for(var i=0,length=arguments.length;i<length;i++){item=arguments[i];if(Object.isArray(item)&&!('callee'in item)){for(var j=0,arrayLength=item.length;j<arrayLength;j++)
array.push(item[j]);}else{array.push(item);}}
return array;}
Object.extend(arrayProto,Enumerable);if(!arrayProto._reverse)
arrayProto._reverse=arrayProto.reverse;Object.extend(arrayProto,{_each:_each,clear:clear,first:first,last:last,compact:compact,flatten:flatten,without:without,reverse:reverse,uniq:uniq,intersect:intersect,clone:clone,toArray:clone,size:size,inspect:inspect,toJSON:toJSON});var CONCAT_ARGUMENTS_BUGGY=(function(){return[].concat(arguments)[0][0]!==1;})(1,2)
if(CONCAT_ARGUMENTS_BUGGY)arrayProto.concat=concat;if(!arrayProto.indexOf)arrayProto.indexOf=indexOf;if(!arrayProto.lastIndexOf)arrayProto.lastIndexOf=lastIndexOf;})();function $H(object){return new Hash(object);};var Hash=Class.create(Enumerable,(function(){function initialize(object){this._object=Object.isHash(object)?object.toObject():Object.clone(object);}
function _each(iterator){for(var key in this._object){var value=this._object[key],pair=[key,value];pair.key=key;pair.value=value;iterator(pair);}}
function set(key,value){return this._object[key]=value;}
function get(key){if(this._object[key]!==Object.prototype[key])
return this._object[key];}
function unset(key){var value=this._object[key];delete this._object[key];return value;}
function toObject(){return Object.clone(this._object);}
function keys(){return this.pluck('key');}
function values(){return this.pluck('value');}
function index(value){var match=this.detect(function(pair){return pair.value===value;});return match&&match.key;}
function merge(object){return this.clone().update(object);}
function update(object){return new Hash(object).inject(this,function(result,pair){result.set(pair.key,pair.value);return result;});}
function toQueryPair(key,value){if(Object.isUndefined(value))return key;return key+'='+encodeURIComponent(String.interpret(value));}
function toQueryString(){return this.inject([],function(results,pair){var key=encodeURIComponent(pair.key),values=pair.value;if(values&&typeof values=='object'){if(Object.isArray(values))
return results.concat(values.map(toQueryPair.curry(key)));}else results.push(toQueryPair(key,values));return results;}).join('&');}
function inspect(){return'#<Hash:{'+this.map(function(pair){return pair.map(Object.inspect).join(': ');}).join(', ')+'}>';}
function toJSON(){return Object.toJSON(this.toObject());}
function clone(){return new Hash(this);}
return{initialize:initialize,_each:_each,set:set,get:get,unset:unset,toObject:toObject,toTemplateReplacements:toObject,keys:keys,values:values,index:index,merge:merge,update:update,toQueryString:toQueryString,inspect:inspect,toJSON:toJSON,clone:clone};})());Hash.from=$H;Object.extend(Number.prototype,(function(){function toColorPart(){return this.toPaddedString(2,16);}
function succ(){return this+1;}
function times(iterator,context){$R(0,this,true).each(iterator,context);return this;}
function toPaddedString(length,radix){var string=this.toString(radix||10);return'0'.times(length-string.length)+string;}
function toJSON(){return isFinite(this)?this.toString():'null';}
function abs(){return Math.abs(this);}
function round(){return Math.round(this);}
function ceil(){return Math.ceil(this);}
function floor(){return Math.floor(this);}
return{toColorPart:toColorPart,succ:succ,times:times,toPaddedString:toPaddedString,toJSON:toJSON,abs:abs,round:round,ceil:ceil,floor:floor};})());function $R(start,end,exclusive){return new ObjectRange(start,end,exclusive);}
var ObjectRange=Class.create(Enumerable,(function(){function initialize(start,end,exclusive){this.start=start;this.end=end;this.exclusive=exclusive;}
function _each(iterator){var value=this.start;while(this.include(value)){iterator(value);value=value.succ();}}
function include(value){if(value<this.start)
return false;if(this.exclusive)
return value<this.end;return value<=this.end;}
return{initialize:initialize,_each:_each,include:include};})());var Ajax={getTransport:function(){return Try.these(function(){return new XMLHttpRequest()},function(){return new ActiveXObject('Msxml2.XMLHTTP')},function(){return new ActiveXObject('Microsoft.XMLHTTP')})||false;},activeRequestCount:0};Ajax.Responders={responders:[],_each:function(iterator){this.responders._each(iterator);},register:function(responder){if(!this.include(responder))
this.responders.push(responder);},unregister:function(responder){this.responders=this.responders.without(responder);},dispatch:function(callback,request,transport,json){this.each(function(responder){if(Object.isFunction(responder[callback])){try{responder[callback].apply(responder,[request,transport,json]);}catch(e){}}});}};Object.extend(Ajax.Responders,Enumerable);Ajax.Responders.register({onCreate:function(){Ajax.activeRequestCount++},onComplete:function(){Ajax.activeRequestCount--}});Ajax.Base=Class.create({initialize:function(options){this.options={method:'post',asynchronous:true,contentType:'application/x-www-form-urlencoded',encoding:'UTF-8',parameters:'',evalJSON:true,evalJS:true};Object.extend(this.options,options||{});this.options.method=this.options.method.toLowerCase();if(Object.isString(this.options.parameters))
this.options.parameters=this.options.parameters.toQueryParams();else if(Object.isHash(this.options.parameters))
this.options.parameters=this.options.parameters.toObject();}});Ajax.Request=Class.create(Ajax.Base,{_complete:false,initialize:function($super,url,options){$super(options);this.transport=Ajax.getTransport();this.request(url);},request:function(url){this.url=url;this.method=this.options.method;var params=Object.clone(this.options.parameters);if(!['get','post'].include(this.method)){params['_method']=this.method;this.method='post';}
this.parameters=params;if(params=Object.toQueryString(params)){if(this.method=='get')
this.url+=(this.url.include('?')?'&':'?')+params;else if(/Konqueror|Safari|KHTML/.test(navigator.userAgent))
params+='&_=';}
try{var response=new Ajax.Response(this);if(this.options.onCreate)this.options.onCreate(response);Ajax.Responders.dispatch('onCreate',this,response);this.transport.open(this.method.toUpperCase(),this.url,this.options.asynchronous);if(this.options.asynchronous)this.respondToReadyState.bind(this).defer(1);this.transport.onreadystatechange=this.onStateChange.bind(this);this.setRequestHeaders();this.body=this.method=='post'?(this.options.postBody||params):null;this.transport.send(this.body);if(!this.options.asynchronous&&this.transport.overrideMimeType)
this.onStateChange();}
catch(e){this.dispatchException(e);}},onStateChange:function(){var readyState=this.transport.readyState;if(readyState>1&&!((readyState==4)&&this._complete))
this.respondToReadyState(this.transport.readyState);},setRequestHeaders:function(){var headers={'X-Requested-With':'XMLHttpRequest','X-Prototype-Version':Prototype.Version,'Accept':'text/javascript, text/html, application/xml, text/xml, */*'};if(this.method=='post'){headers['Content-type']=this.options.contentType+
(this.options.encoding?'; charset='+this.options.encoding:'');if(this.transport.overrideMimeType&&(navigator.userAgent.match(/Gecko\/(\d{4})/)||[0,2005])[1]<2005)
headers['Connection']='close';}
if(typeof this.options.requestHeaders=='object'){var extras=this.options.requestHeaders;if(Object.isFunction(extras.push))
for(var i=0,length=extras.length;i<length;i+=2)
headers[extras[i]]=extras[i+1];else
$H(extras).each(function(pair){headers[pair.key]=pair.value});}
for(var name in headers)
this.transport.setRequestHeader(name,headers[name]);},success:function(){var status=this.getStatus();return!status||(status>=200&&status<300);},getStatus:function(){try{return this.transport.status||0;}catch(e){return 0}},respondToReadyState:function(readyState){var state=Ajax.Request.Events[readyState],response=new Ajax.Response(this);if(state=='Complete'){try{this._complete=true;(this.options['on'+response.status]||this.options['on'+(this.success()?'Success':'Failure')]||Prototype.emptyFunction)(response,response.headerJSON);}catch(e){this.dispatchException(e);}
var contentType=response.getHeader('Content-type');if(this.options.evalJS=='force'||(this.options.evalJS&&this.isSameOrigin()&&contentType&&contentType.match(/^\s*(text|application)\/(x-)?(java|ecma)script(;.*)?\s*$/i)))
this.evalResponse();}
try{(this.options['on'+state]||Prototype.emptyFunction)(response,response.headerJSON);Ajax.Responders.dispatch('on'+state,this,response,response.headerJSON);}catch(e){this.dispatchException(e);}
if(state=='Complete'){this.transport.onreadystatechange=Prototype.emptyFunction;}},isSameOrigin:function(){var m=this.url.match(/^\s*https?:\/\/[^\/]*/);return!m||(m[0]=='#{protocol}//#{domain}#{port}'.interpolate({protocol:location.protocol,domain:document.domain,port:location.port?':'+location.port:''}));},getHeader:function(name){try{return this.transport.getResponseHeader(name)||null;}catch(e){return null;}},evalResponse:function(){try{return eval((this.transport.responseText||'').unfilterJSON());}catch(e){this.dispatchException(e);}},dispatchException:function(exception){(this.options.onException||Prototype.emptyFunction)(this,exception);Ajax.Responders.dispatch('onException',this,exception);}});Ajax.Request.Events=['Uninitialized','Loading','Loaded','Interactive','Complete'];Ajax.Response=Class.create({initialize:function(request){this.request=request;var transport=this.transport=request.transport,readyState=this.readyState=transport.readyState;if((readyState>2&&!Prototype.Browser.IE)||readyState==4){this.status=this.getStatus();this.statusText=this.getStatusText();this.responseText=String.interpret(transport.responseText);this.headerJSON=this._getHeaderJSON();}
if(readyState==4){var xml=transport.responseXML;this.responseXML=Object.isUndefined(xml)?null:xml;this.responseJSON=this._getResponseJSON();}},status:0,statusText:'',getStatus:Ajax.Request.prototype.getStatus,getStatusText:function(){try{return this.transport.statusText||'';}catch(e){return''}},getHeader:Ajax.Request.prototype.getHeader,getAllHeaders:function(){try{return this.getAllResponseHeaders();}catch(e){return null}},getResponseHeader:function(name){return this.transport.getResponseHeader(name);},getAllResponseHeaders:function(){return this.transport.getAllResponseHeaders();},_getHeaderJSON:function(){var json=this.getHeader('X-JSON');if(!json)return null;json=decodeURIComponent(escape(json));try{return json.evalJSON(this.request.options.sanitizeJSON||!this.request.isSameOrigin());}catch(e){this.request.dispatchException(e);}},_getResponseJSON:function(){var options=this.request.options;if(!options.evalJSON||(options.evalJSON!='force'&&!(this.getHeader('Content-type')||'').include('application/json'))||this.responseText.blank())
return null;try{return this.responseText.evalJSON(options.sanitizeJSON||!this.request.isSameOrigin());}catch(e){this.request.dispatchException(e);}}});Ajax.Updater=Class.create(Ajax.Request,{initialize:function($super,container,url,options){this.container={success:(container.success||container),failure:(container.failure||(container.success?null:container))};options=Object.clone(options);var onComplete=options.onComplete;options.onComplete=(function(response,json){this.updateContent(response.responseText);if(Object.isFunction(onComplete))onComplete(response,json);}).bind(this);$super(url,options);},updateContent:function(responseText){var receiver=this.container[this.success()?'success':'failure'],options=this.options;if(!options.evalScripts)responseText=responseText.stripScripts();if(receiver=$(receiver)){if(options.insertion){if(Object.isString(options.insertion)){var insertion={};insertion[options.insertion]=responseText;receiver.insert(insertion);}
else options.insertion(receiver,responseText);}
else receiver.update(responseText);}}});Ajax.PeriodicalUpdater=Class.create(Ajax.Base,{initialize:function($super,container,url,options){$super(options);this.onComplete=this.options.onComplete;this.frequency=(this.options.frequency||2);this.decay=(this.options.decay||1);this.updater={};this.container=container;this.url=url;this.start();},start:function(){this.options.onComplete=this.updateComplete.bind(this);this.onTimerEvent();},stop:function(){this.updater.options.onComplete=undefined;clearTimeout(this.timer);(this.onComplete||Prototype.emptyFunction).apply(this,arguments);},updateComplete:function(response){if(this.options.decay){this.decay=(response.responseText==this.lastText?this.decay*this.options.decay:1);this.lastText=response.responseText;}
this.timer=this.onTimerEvent.bind(this).delay(this.decay*this.frequency);},onTimerEvent:function(){this.updater=new Ajax.Updater(this.container,this.url,this.options);}});function $(element){if(arguments.length>1){for(var i=0,elements=[],length=arguments.length;i<length;i++)
elements.push($(arguments[i]));return elements;}
if(Object.isString(element))
element=document.getElementById(element);return Element.extend(element);}
if(Prototype.BrowserFeatures.XPath){document._getElementsByXPath=function(expression,parentElement){var results=[];var query=document.evaluate(expression,$(parentElement)||document,null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,null);for(var i=0,length=query.snapshotLength;i<length;i++)
results.push(Element.extend(query.snapshotItem(i)));return results;};}
if(!window.Node)var Node={};if(!Node.ELEMENT_NODE){Object.extend(Node,{ELEMENT_NODE:1,ATTRIBUTE_NODE:2,TEXT_NODE:3,CDATA_SECTION_NODE:4,ENTITY_REFERENCE_NODE:5,ENTITY_NODE:6,PROCESSING_INSTRUCTION_NODE:7,COMMENT_NODE:8,DOCUMENT_NODE:9,DOCUMENT_TYPE_NODE:10,DOCUMENT_FRAGMENT_NODE:11,NOTATION_NODE:12});}
(function(global){var SETATTRIBUTE_IGNORES_NAME=(function(){var elForm=document.createElement("form");var elInput=document.createElement("input");var root=document.documentElement;elInput.setAttribute("name","test");elForm.appendChild(elInput);root.appendChild(elForm);var isBuggy=elForm.elements?(typeof elForm.elements.test=="undefined"):null;root.removeChild(elForm);elForm=elInput=null;return isBuggy;})();var element=global.Element;global.Element=function(tagName,attributes){attributes=attributes||{};tagName=tagName.toLowerCase();var cache=Element.cache;if(SETATTRIBUTE_IGNORES_NAME&&attributes.name){tagName='<'+tagName+' name="'+attributes.name+'">';delete attributes.name;return Element.writeAttribute(document.createElement(tagName),attributes);}
if(!cache[tagName])cache[tagName]=Element.extend(document.createElement(tagName));return Element.writeAttribute(cache[tagName].cloneNode(false),attributes);};Object.extend(global.Element,element||{});if(element)global.Element.prototype=element.prototype;})(this);Element.cache={};Element.idCounter=1;Element.Methods={visible:function(element){return $(element).style.display!='none';},toggle:function(element){element=$(element);Element[Element.visible(element)?'hide':'show'](element);return element;},hide:function(element){element=$(element);element.style.display='none';return element;},show:function(element){element=$(element);element.style.display='';return element;},remove:function(element){element=$(element);element.parentNode.removeChild(element);return element;},update:(function(){var SELECT_ELEMENT_INNERHTML_BUGGY=(function(){var el=document.createElement("select"),isBuggy=true;el.innerHTML="<option value=\"test\">test</option>";if(el.options&&el.options[0]){isBuggy=el.options[0].nodeName.toUpperCase()!=="OPTION";}
el=null;return isBuggy;})();var TABLE_ELEMENT_INNERHTML_BUGGY=(function(){try{var el=document.createElement("table");if(el&&el.tBodies){el.innerHTML="<tbody><tr><td>test</td></tr></tbody>";var isBuggy=typeof el.tBodies[0]=="undefined";el=null;return isBuggy;}}catch(e){return true;}})();var SCRIPT_ELEMENT_REJECTS_TEXTNODE_APPENDING=(function(){var s=document.createElement("script"),isBuggy=false;try{s.appendChild(document.createTextNode(""));isBuggy=!s.firstChild||s.firstChild&&s.firstChild.nodeType!==3;}catch(e){isBuggy=true;}
s=null;return isBuggy;})();function update(element,content){element=$(element);if(content&&content.toElement)
content=content.toElement();if(Object.isElement(content))
return element.update().insert(content);content=Object.toHTML(content);var tagName=element.tagName.toUpperCase();if(tagName==='SCRIPT'&&SCRIPT_ELEMENT_REJECTS_TEXTNODE_APPENDING){element.text=content;return element;}
if(SELECT_ELEMENT_INNERHTML_BUGGY||TABLE_ELEMENT_INNERHTML_BUGGY){if(tagName in Element._insertionTranslations.tags){while(element.firstChild){element.removeChild(element.firstChild);}
Element._getContentFromAnonymousElement(tagName,content.stripScripts()).each(function(node){element.appendChild(node)});}
else{element.innerHTML=content.stripScripts();}}
else{element.innerHTML=content.stripScripts();}
content.evalScripts.bind(content).defer();return element;}
return update;})(),replace:function(element,content){element=$(element);if(content&&content.toElement)content=content.toElement();else if(!Object.isElement(content)){content=Object.toHTML(content);var range=element.ownerDocument.createRange();range.selectNode(element);content.evalScripts.bind(content).defer();content=range.createContextualFragment(content.stripScripts());}
element.parentNode.replaceChild(content,element);return element;},insert:function(element,insertions){element=$(element);if(Object.isString(insertions)||Object.isNumber(insertions)||Object.isElement(insertions)||(insertions&&(insertions.toElement||insertions.toHTML)))
insertions={bottom:insertions};var content,insert,tagName,childNodes;for(var position in insertions){content=insertions[position];position=position.toLowerCase();insert=Element._insertionTranslations[position];if(content&&content.toElement)content=content.toElement();if(Object.isElement(content)){insert(element,content);continue;}
content=Object.toHTML(content);tagName=((position=='before'||position=='after')?element.parentNode:element).tagName.toUpperCase();childNodes=Element._getContentFromAnonymousElement(tagName,content.stripScripts());if(position=='top'||position=='after')childNodes.reverse();childNodes.each(insert.curry(element));content.evalScripts.bind(content).defer();}
return element;},wrap:function(element,wrapper,attributes){element=$(element);if(Object.isElement(wrapper))
$(wrapper).writeAttribute(attributes||{});else if(Object.isString(wrapper))wrapper=new Element(wrapper,attributes);else wrapper=new Element('div',wrapper);if(element.parentNode)
element.parentNode.replaceChild(wrapper,element);wrapper.appendChild(element);return wrapper;},inspect:function(element){element=$(element);var result='<'+element.tagName.toLowerCase();$H({'id':'id','className':'class'}).each(function(pair){var property=pair.first(),attribute=pair.last();var value=(element[property]||'').toString();if(value)result+=' '+attribute+'='+value.inspect(true);});return result+'>';},recursivelyCollect:function(element,property){element=$(element);var elements=[];while(element=element[property])
if(element.nodeType==1)
elements.push(Element.extend(element));return elements;},ancestors:function(element){return Element.recursivelyCollect(element,'parentNode');},descendants:function(element){return Element.select(element,"*");},firstDescendant:function(element){element=$(element).firstChild;while(element&&element.nodeType!=1)element=element.nextSibling;return $(element);},immediateDescendants:function(element){if(!(element=$(element).firstChild))return[];while(element&&element.nodeType!=1)element=element.nextSibling;if(element)return[element].concat($(element).nextSiblings());return[];},previousSiblings:function(element){return Element.recursivelyCollect(element,'previousSibling');},nextSiblings:function(element){return Element.recursivelyCollect(element,'nextSibling');},siblings:function(element){element=$(element);return Element.previousSiblings(element).reverse().concat(Element.nextSiblings(element));},match:function(element,selector){if(Object.isString(selector))
selector=new Selector(selector);return selector.match($(element));},up:function(element,expression,index){element=$(element);if(arguments.length==1)return $(element.parentNode);var ancestors=Element.ancestors(element);return Object.isNumber(expression)?ancestors[expression]:Selector.findElement(ancestors,expression,index);},down:function(element,expression,index){element=$(element);if(arguments.length==1)return Element.firstDescendant(element);return Object.isNumber(expression)?Element.descendants(element)[expression]:Element.select(element,expression)[index||0];},previous:function(element,expression,index){element=$(element);if(arguments.length==1)return $(Selector.handlers.previousElementSibling(element));var previousSiblings=Element.previousSiblings(element);return Object.isNumber(expression)?previousSiblings[expression]:Selector.findElement(previousSiblings,expression,index);},next:function(element,expression,index){element=$(element);if(arguments.length==1)return $(Selector.handlers.nextElementSibling(element));var nextSiblings=Element.nextSiblings(element);return Object.isNumber(expression)?nextSiblings[expression]:Selector.findElement(nextSiblings,expression,index);},select:function(element){var args=Array.prototype.slice.call(arguments,1);return Selector.findChildElements(element,args);},adjacent:function(element){var args=Array.prototype.slice.call(arguments,1);return Selector.findChildElements(element.parentNode,args).without(element);},identify:function(element){element=$(element);var id=Element.readAttribute(element,'id');if(id)return id;do{id='anonymous_element_'+Element.idCounter++}while($(id));Element.writeAttribute(element,'id',id);return id;},readAttribute:function(element,name){element=$(element);if(Prototype.Browser.IE){var t=Element._attributeTranslations.read;if(t.values[name])return t.values[name](element,name);if(t.names[name])name=t.names[name];if(name.include(':')){return(!element.attributes||!element.attributes[name])?null:element.attributes[name].value;}}
return element.getAttribute(name);},writeAttribute:function(element,name,value){element=$(element);var attributes={},t=Element._attributeTranslations.write;if(typeof name=='object')attributes=name;else attributes[name]=Object.isUndefined(value)?true:value;for(var attr in attributes){name=t.names[attr]||attr;value=attributes[attr];if(t.values[attr])name=t.values[attr](element,value);if(value===false||value===null)
element.removeAttribute(name);else if(value===true)
element.setAttribute(name,name);else element.setAttribute(name,value);}
return element;},getHeight:function(element){return Element.getDimensions(element).height;},getWidth:function(element){return Element.getDimensions(element).width;},classNames:function(element){return new Element.ClassNames(element);},hasClassName:function(element,className){if(!(element=$(element)))return;var elementClassName=element.className;return(elementClassName.length>0&&(elementClassName==className||new RegExp("(^|\\s)"+className+"(\\s|$)").test(elementClassName)));},addClassName:function(element,className){if(!(element=$(element)))return;if(!Element.hasClassName(element,className))
element.className+=(element.className?' ':'')+className;return element;},removeClassName:function(element,className){if(!(element=$(element)))return;element.className=element.className.replace(new RegExp("(^|\\s+)"+className+"(\\s+|$)"),' ').strip();return element;},toggleClassName:function(element,className){if(!(element=$(element)))return;return Element[Element.hasClassName(element,className)?'removeClassName':'addClassName'](element,className);},cleanWhitespace:function(element){element=$(element);var node=element.firstChild;while(node){var nextNode=node.nextSibling;if(node.nodeType==3&&!/\S/.test(node.nodeValue))
element.removeChild(node);node=nextNode;}
return element;},empty:function(element){return $(element).innerHTML.blank();},descendantOf:function(element,ancestor){element=$(element),ancestor=$(ancestor);if(element.compareDocumentPosition)
return(element.compareDocumentPosition(ancestor)&8)===8;if(ancestor.contains)
return ancestor.contains(element)&&ancestor!==element;while(element=element.parentNode)
if(element==ancestor)return true;return false;},scrollTo:function(element){element=$(element);var pos=Element.cumulativeOffset(element);window.scrollTo(pos[0],pos[1]);return element;},getStyle:function(element,style){element=$(element);style=style=='float'?'cssFloat':style.camelize();var value=element.style[style];if(!value||value=='auto'){var css=document.defaultView.getComputedStyle(element,null);value=css?css[style]:null;}
if(style=='opacity')return value?parseFloat(value):1.0;return value=='auto'?null:value;},getOpacity:function(element){return $(element).getStyle('opacity');},setStyle:function(element,styles){element=$(element);var elementStyle=element.style,match;if(Object.isString(styles)){element.style.cssText+=';'+styles;return styles.include('opacity')?element.setOpacity(styles.match(/opacity:\s*(\d?\.?\d*)/)[1]):element;}
for(var property in styles)
if(property=='opacity')element.setOpacity(styles[property]);else
elementStyle[(property=='float'||property=='cssFloat')?(Object.isUndefined(elementStyle.styleFloat)?'cssFloat':'styleFloat'):property]=styles[property];return element;},setOpacity:function(element,value){element=$(element);element.style.opacity=(value==1||value==='')?'':(value<0.00001)?0:value;return element;},getDimensions:function(element){element=$(element);var display=Element.getStyle(element,'display');if(display!='none'&&display!=null)
return{width:element.offsetWidth,height:element.offsetHeight};var els=element.style;var originalVisibility=els.visibility;var originalPosition=els.position;var originalDisplay=els.display;els.visibility='hidden';if(originalPosition!='fixed')
els.position='absolute';els.display='block';var originalWidth=element.clientWidth;var originalHeight=element.clientHeight;els.display=originalDisplay;els.position=originalPosition;els.visibility=originalVisibility;return{width:originalWidth,height:originalHeight};},makePositioned:function(element){element=$(element);var pos=Element.getStyle(element,'position');if(pos=='static'||!pos){element._madePositioned=true;element.style.position='relative';if(Prototype.Browser.Opera){element.style.top=0;element.style.left=0;}}
return element;},undoPositioned:function(element){element=$(element);if(element._madePositioned){element._madePositioned=undefined;element.style.position=element.style.top=element.style.left=element.style.bottom=element.style.right='';}
return element;},makeClipping:function(element){element=$(element);if(element._overflow)return element;element._overflow=Element.getStyle(element,'overflow')||'auto';if(element._overflow!=='hidden')
element.style.overflow='hidden';return element;},undoClipping:function(element){element=$(element);if(!element._overflow)return element;element.style.overflow=element._overflow=='auto'?'':element._overflow;element._overflow=null;return element;},cumulativeOffset:function(element){var valueT=0,valueL=0;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;element=element.offsetParent;}while(element);return Element._returnOffset(valueL,valueT);},positionedOffset:function(element){var valueT=0,valueL=0;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;element=element.offsetParent;if(element){if(element.tagName.toUpperCase()=='BODY')break;var p=Element.getStyle(element,'position');if(p!=='static')break;}}while(element);return Element._returnOffset(valueL,valueT);},absolutize:function(element){element=$(element);if(Element.getStyle(element,'position')=='absolute')return element;var offsets=Element.positionedOffset(element);var top=offsets[1];var left=offsets[0];var width=element.clientWidth;var height=element.clientHeight;element._originalLeft=left-parseFloat(element.style.left||0);element._originalTop=top-parseFloat(element.style.top||0);element._originalWidth=element.style.width;element._originalHeight=element.style.height;element.style.position='absolute';element.style.top=top+'px';element.style.left=left+'px';element.style.width=width+'px';element.style.height=height+'px';return element;},relativize:function(element){element=$(element);if(Element.getStyle(element,'position')=='relative')return element;element.style.position='relative';var top=parseFloat(element.style.top||0)-(element._originalTop||0);var left=parseFloat(element.style.left||0)-(element._originalLeft||0);element.style.top=top+'px';element.style.left=left+'px';element.style.height=element._originalHeight;element.style.width=element._originalWidth;return element;},cumulativeScrollOffset:function(element){var valueT=0,valueL=0;do{valueT+=element.scrollTop||0;valueL+=element.scrollLeft||0;element=element.parentNode;}while(element);return Element._returnOffset(valueL,valueT);},getOffsetParent:function(element){if(element.offsetParent)return $(element.offsetParent);if(element==document.body)return $(element);while((element=element.parentNode)&&element!=document.body)
if(Element.getStyle(element,'position')!='static')
return $(element);return $(document.body);},viewportOffset:function(forElement){var valueT=0,valueL=0;var element=forElement;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;if(element.offsetParent==document.body&&Element.getStyle(element,'position')=='absolute')break;}while(element=element.offsetParent);element=forElement;do{if(!Prototype.Browser.Opera||(element.tagName&&(element.tagName.toUpperCase()=='BODY'))){valueT-=element.scrollTop||0;valueL-=element.scrollLeft||0;}}while(element=element.parentNode);return Element._returnOffset(valueL,valueT);},clonePosition:function(element,source){var options=Object.extend({setLeft:true,setTop:true,setWidth:true,setHeight:true,offsetTop:0,offsetLeft:0},arguments[2]||{});source=$(source);var p=Element.viewportOffset(source);element=$(element);var delta=[0,0];var parent=null;if(Element.getStyle(element,'position')=='absolute'){parent=Element.getOffsetParent(element);delta=Element.viewportOffset(parent);}
if(parent==document.body){delta[0]-=document.body.offsetLeft;delta[1]-=document.body.offsetTop;}
if(options.setLeft)element.style.left=(p[0]-delta[0]+options.offsetLeft)+'px';if(options.setTop)element.style.top=(p[1]-delta[1]+options.offsetTop)+'px';if(options.setWidth)element.style.width=source.offsetWidth+'px';if(options.setHeight)element.style.height=source.offsetHeight+'px';return element;}};Object.extend(Element.Methods,{getElementsBySelector:Element.Methods.select,childElements:Element.Methods.immediateDescendants});Element._attributeTranslations={write:{names:{className:'class',htmlFor:'for'},values:{}}};if(Prototype.Browser.Opera){Element.Methods.getStyle=Element.Methods.getStyle.wrap(function(proceed,element,style){switch(style){case'left':case'top':case'right':case'bottom':if(proceed(element,'position')==='static')return null;case'height':case'width':if(!Element.visible(element))return null;var dim=parseInt(proceed(element,style),10);if(dim!==element['offset'+style.capitalize()])
return dim+'px';var properties;if(style==='height'){properties=['border-top-width','padding-top','padding-bottom','border-bottom-width'];}
else{properties=['border-left-width','padding-left','padding-right','border-right-width'];}
return properties.inject(dim,function(memo,property){var val=proceed(element,property);return val===null?memo:memo-parseInt(val,10);})+'px';default:return proceed(element,style);}});Element.Methods.readAttribute=Element.Methods.readAttribute.wrap(function(proceed,element,attribute){if(attribute==='title')return element.title;return proceed(element,attribute);});}
else if(Prototype.Browser.IE){Element.Methods.getOffsetParent=Element.Methods.getOffsetParent.wrap(function(proceed,element){element=$(element);try{element.offsetParent}
catch(e){return $(document.body)}
var position=element.getStyle('position');if(position!=='static')return proceed(element);element.setStyle({position:'relative'});var value=proceed(element);element.setStyle({position:position});return value;});$w('positionedOffset viewportOffset').each(function(method){Element.Methods[method]=Element.Methods[method].wrap(function(proceed,element){element=$(element);try{element.offsetParent}
catch(e){return Element._returnOffset(0,0)}
var position=element.getStyle('position');if(position!=='static')return proceed(element);var offsetParent=element.getOffsetParent();if(offsetParent&&offsetParent.getStyle('position')==='fixed')
offsetParent.setStyle({zoom:1});element.setStyle({position:'relative'});var value=proceed(element);element.setStyle({position:position});return value;});});Element.Methods.cumulativeOffset=Element.Methods.cumulativeOffset.wrap(function(proceed,element){try{element.offsetParent}
catch(e){return Element._returnOffset(0,0)}
return proceed(element);});Element.Methods.getStyle=function(element,style){element=$(element);style=(style=='float'||style=='cssFloat')?'styleFloat':style.camelize();var value=element.style[style];if(!value&&element.currentStyle)value=element.currentStyle[style];if(style=='opacity'){if(value=(element.getStyle('filter')||'').match(/alpha\(opacity=(.*)\)/))
if(value[1])return parseFloat(value[1])/100;return 1.0;}
if(value=='auto'){if((style=='width'||style=='height')&&(element.getStyle('display')!='none'))
return element['offset'+style.capitalize()]+'px';return null;}
return value;};Element.Methods.setOpacity=function(element,value){function stripAlpha(filter){return filter.replace(/alpha\([^\)]*\)/gi,'');}
element=$(element);var currentStyle=element.currentStyle;if((currentStyle&&!currentStyle.hasLayout)||(!currentStyle&&element.style.zoom=='normal'))
element.style.zoom=1;var filter=element.getStyle('filter'),style=element.style;if(value==1||value===''){(filter=stripAlpha(filter))?style.filter=filter:style.removeAttribute('filter');return element;}else if(value<0.00001)value=0;style.filter=stripAlpha(filter)+'alpha(opacity='+(value*100)+')';return element;};Element._attributeTranslations=(function(){var classProp='className';var forProp='for';var el=document.createElement('div');el.setAttribute(classProp,'x');if(el.className!=='x'){el.setAttribute('class','x');if(el.className==='x'){classProp='class';}}
el=null;el=document.createElement('label');el.setAttribute(forProp,'x');if(el.htmlFor!=='x'){el.setAttribute('htmlFor','x');if(el.htmlFor==='x'){forProp='htmlFor';}}
el=null;return{read:{names:{'class':classProp,'className':classProp,'for':forProp,'htmlFor':forProp},values:{_getAttr:function(element,attribute){return element.getAttribute(attribute);},_getAttr2:function(element,attribute){return element.getAttribute(attribute,2);},_getAttrNode:function(element,attribute){var node=element.getAttributeNode(attribute);return node?node.value:"";},_getEv:(function(){var el=document.createElement('div');el.onclick=Prototype.emptyFunction;var value=el.getAttribute('onclick');var f;if(String(value).indexOf('{')>-1){f=function(element,attribute){attribute=element.getAttribute(attribute);if(!attribute)return null;attribute=attribute.toString();attribute=attribute.split('{')[1];attribute=attribute.split('}')[0];return attribute.strip();};}
else if(value===''){f=function(element,attribute){attribute=element.getAttribute(attribute);if(!attribute)return null;return attribute.strip();};}
el=null;return f;})(),_flag:function(element,attribute){return $(element).hasAttribute(attribute)?attribute:null;},style:function(element){return element.style.cssText.toLowerCase();},title:function(element){return element.title;}}}}})();Element._attributeTranslations.write={names:Object.extend({cellpadding:'cellPadding',cellspacing:'cellSpacing'},Element._attributeTranslations.read.names),values:{checked:function(element,value){element.checked=!!value;},style:function(element,value){element.style.cssText=value?value:'';}}};Element._attributeTranslations.has={};$w('colSpan rowSpan vAlign dateTime accessKey tabIndex '+'encType maxLength readOnly longDesc frameBorder').each(function(attr){Element._attributeTranslations.write.names[attr.toLowerCase()]=attr;Element._attributeTranslations.has[attr.toLowerCase()]=attr;});(function(v){Object.extend(v,{href:v._getAttr2,src:v._getAttr2,type:v._getAttr,action:v._getAttrNode,disabled:v._flag,checked:v._flag,readonly:v._flag,multiple:v._flag,onload:v._getEv,onunload:v._getEv,onclick:v._getEv,ondblclick:v._getEv,onmousedown:v._getEv,onmouseup:v._getEv,onmouseover:v._getEv,onmousemove:v._getEv,onmouseout:v._getEv,onfocus:v._getEv,onblur:v._getEv,onkeypress:v._getEv,onkeydown:v._getEv,onkeyup:v._getEv,onsubmit:v._getEv,onreset:v._getEv,onselect:v._getEv,onchange:v._getEv});})(Element._attributeTranslations.read.values);if(Prototype.BrowserFeatures.ElementExtensions){(function(){function _descendants(element){var nodes=element.getElementsByTagName('*'),results=[];for(var i=0,node;node=nodes[i];i++)
if(node.tagName!=="!")
results.push(node);return results;}
Element.Methods.down=function(element,expression,index){element=$(element);if(arguments.length==1)return element.firstDescendant();return Object.isNumber(expression)?_descendants(element)[expression]:Element.select(element,expression)[index||0];}})();}}
else if(Prototype.Browser.Gecko&&/rv:1\.8\.0/.test(navigator.userAgent)){Element.Methods.setOpacity=function(element,value){element=$(element);element.style.opacity=(value==1)?0.999999:(value==='')?'':(value<0.00001)?0:value;return element;};}
else if(Prototype.Browser.WebKit){Element.Methods.setOpacity=function(element,value){element=$(element);element.style.opacity=(value==1||value==='')?'':(value<0.00001)?0:value;if(value==1)
if(element.tagName.toUpperCase()=='IMG'&&element.width){element.width++;element.width--;}else try{var n=document.createTextNode(' ');element.appendChild(n);element.removeChild(n);}catch(e){}
return element;};Element.Methods.cumulativeOffset=function(element){var valueT=0,valueL=0;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;if(element.offsetParent==document.body)
if(Element.getStyle(element,'position')=='absolute')break;element=element.offsetParent;}while(element);return Element._returnOffset(valueL,valueT);};}
if('outerHTML'in document.documentElement){Element.Methods.replace=function(element,content){element=$(element);if(content&&content.toElement)content=content.toElement();if(Object.isElement(content)){element.parentNode.replaceChild(content,element);return element;}
content=Object.toHTML(content);var parent=element.parentNode,tagName=parent.tagName.toUpperCase();if(Element._insertionTranslations.tags[tagName]){var nextSibling=element.next();var fragments=Element._getContentFromAnonymousElement(tagName,content.stripScripts());parent.removeChild(element);if(nextSibling)
fragments.each(function(node){parent.insertBefore(node,nextSibling)});else
fragments.each(function(node){parent.appendChild(node)});}
else element.outerHTML=content.stripScripts();content.evalScripts.bind(content).defer();return element;};}
Element._returnOffset=function(l,t){var result=[l,t];result.left=l;result.top=t;return result;};Element._getContentFromAnonymousElement=function(tagName,html){var div=new Element('div'),t=Element._insertionTranslations.tags[tagName];if(t){div.innerHTML=t[0]+html+t[1];t[2].times(function(){div=div.firstChild});}else div.innerHTML=html;return $A(div.childNodes);};Element._insertionTranslations={before:function(element,node){element.parentNode.insertBefore(node,element);},top:function(element,node){element.insertBefore(node,element.firstChild);},bottom:function(element,node){element.appendChild(node);},after:function(element,node){element.parentNode.insertBefore(node,element.nextSibling);},tags:{TABLE:['<table>','</table>',1],TBODY:['<table><tbody>','</tbody></table>',2],TR:['<table><tbody><tr>','</tr></tbody></table>',3],TD:['<table><tbody><tr><td>','</td></tr></tbody></table>',4],SELECT:['<select>','</select>',1]}};(function(){var tags=Element._insertionTranslations.tags;Object.extend(tags,{THEAD:tags.TBODY,TFOOT:tags.TBODY,TH:tags.TD});})();Element.Methods.Simulated={hasAttribute:function(element,attribute){attribute=Element._attributeTranslations.has[attribute]||attribute;var node=$(element).getAttributeNode(attribute);return!!(node&&node.specified);}};Element.Methods.ByTag={};Object.extend(Element,Element.Methods);(function(div){if(!Prototype.BrowserFeatures.ElementExtensions&&div['__proto__']){window.HTMLElement={};window.HTMLElement.prototype=div['__proto__'];Prototype.BrowserFeatures.ElementExtensions=true;}
div=null;})(document.createElement('div'))
Element.extend=(function(){function checkDeficiency(tagName){if(typeof window.Element!='undefined'){var proto=window.Element.prototype;if(proto){var id='_'+(Math.random()+'').slice(2);var el=document.createElement(tagName);proto[id]='x';var isBuggy=(el[id]!=='x');delete proto[id];el=null;return isBuggy;}}
return false;}
function extendElementWith(element,methods){for(var property in methods){var value=methods[property];if(Object.isFunction(value)&&!(property in element))
element[property]=value.methodize();}}
var HTMLOBJECTELEMENT_PROTOTYPE_BUGGY=checkDeficiency('object');if(Prototype.BrowserFeatures.SpecificElementExtensions){if(HTMLOBJECTELEMENT_PROTOTYPE_BUGGY){return function(element){if(element&&typeof element._extendedByPrototype=='undefined'){var t=element.tagName;if(t&&(/^(?:object|applet|embed)$/i.test(t))){extendElementWith(element,Element.Methods);extendElementWith(element,Element.Methods.Simulated);extendElementWith(element,Element.Methods.ByTag[t.toUpperCase()]);}}
return element;}}
return Prototype.K;}
var Methods={},ByTag=Element.Methods.ByTag;var extend=Object.extend(function(element){if(!element||typeof element._extendedByPrototype!='undefined'||element.nodeType!=1||element==window)return element;var methods=Object.clone(Methods),tagName=element.tagName.toUpperCase();if(ByTag[tagName])Object.extend(methods,ByTag[tagName]);extendElementWith(element,methods);element._extendedByPrototype=Prototype.emptyFunction;return element;},{refresh:function(){if(!Prototype.BrowserFeatures.ElementExtensions){Object.extend(Methods,Element.Methods);Object.extend(Methods,Element.Methods.Simulated);}}});extend.refresh();return extend;})();Element.hasAttribute=function(element,attribute){if(element.hasAttribute)return element.hasAttribute(attribute);return Element.Methods.Simulated.hasAttribute(element,attribute);};Element.addMethods=function(methods){var F=Prototype.BrowserFeatures,T=Element.Methods.ByTag;if(!methods){Object.extend(Form,Form.Methods);Object.extend(Form.Element,Form.Element.Methods);Object.extend(Element.Methods.ByTag,{"FORM":Object.clone(Form.Methods),"INPUT":Object.clone(Form.Element.Methods),"SELECT":Object.clone(Form.Element.Methods),"TEXTAREA":Object.clone(Form.Element.Methods)});}
if(arguments.length==2){var tagName=methods;methods=arguments[1];}
if(!tagName)Object.extend(Element.Methods,methods||{});else{if(Object.isArray(tagName))tagName.each(extend);else extend(tagName);}
function extend(tagName){tagName=tagName.toUpperCase();if(!Element.Methods.ByTag[tagName])
Element.Methods.ByTag[tagName]={};Object.extend(Element.Methods.ByTag[tagName],methods);}
function copy(methods,destination,onlyIfAbsent){onlyIfAbsent=onlyIfAbsent||false;for(var property in methods){var value=methods[property];if(!Object.isFunction(value))continue;if(!onlyIfAbsent||!(property in destination))
destination[property]=value.methodize();}}
function findDOMClass(tagName){var klass;var trans={"OPTGROUP":"OptGroup","TEXTAREA":"TextArea","P":"Paragraph","FIELDSET":"FieldSet","UL":"UList","OL":"OList","DL":"DList","DIR":"Directory","H1":"Heading","H2":"Heading","H3":"Heading","H4":"Heading","H5":"Heading","H6":"Heading","Q":"Quote","INS":"Mod","DEL":"Mod","A":"Anchor","IMG":"Image","CAPTION":"TableCaption","COL":"TableCol","COLGROUP":"TableCol","THEAD":"TableSection","TFOOT":"TableSection","TBODY":"TableSection","TR":"TableRow","TH":"TableCell","TD":"TableCell","FRAMESET":"FrameSet","IFRAME":"IFrame"};if(trans[tagName])klass='HTML'+trans[tagName]+'Element';if(window[klass])return window[klass];klass='HTML'+tagName+'Element';if(window[klass])return window[klass];klass='HTML'+tagName.capitalize()+'Element';if(window[klass])return window[klass];var element=document.createElement(tagName);var proto=element['__proto__']||element.constructor.prototype;element=null;return proto;}
var elementPrototype=window.HTMLElement?HTMLElement.prototype:Element.prototype;if(F.ElementExtensions){copy(Element.Methods,elementPrototype);copy(Element.Methods.Simulated,elementPrototype,true);}
if(F.SpecificElementExtensions){for(var tag in Element.Methods.ByTag){var klass=findDOMClass(tag);if(Object.isUndefined(klass))continue;copy(T[tag],klass.prototype);}}
Object.extend(Element,Element.Methods);delete Element.ByTag;if(Element.extend.refresh)Element.extend.refresh();Element.cache={};};document.viewport={getDimensions:function(){return{width:this.getWidth(),height:this.getHeight()};},getScrollOffsets:function(){return Element._returnOffset(window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft,window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop);}};(function(viewport){var B=Prototype.Browser,doc=document,element,property={};function getRootElement(){if(B.WebKit&&!doc.evaluate)
return document;if(B.Opera&&window.parseFloat(window.opera.version())<9.5)
return document.body;return document.documentElement;}
function define(D){if(!element)element=getRootElement();property[D]='client'+D;viewport['get'+D]=function(){return element[property[D]]};return viewport['get'+D]();}
viewport.getWidth=define.curry('Width');viewport.getHeight=define.curry('Height');})(document.viewport);Element.Storage={UID:1};Element.addMethods({getStorage:function(element){if(!(element=$(element)))return;var uid;if(element===window){uid=0;}else{if(typeof element._prototypeUID==="undefined")
element._prototypeUID=[Element.Storage.UID++];uid=element._prototypeUID[0];}
if(!Element.Storage[uid])
Element.Storage[uid]=$H();return Element.Storage[uid];},store:function(element,key,value){if(!(element=$(element)))return;if(arguments.length===2){Element.getStorage(element).update(key);}else{Element.getStorage(element).set(key,value);}
return element;},retrieve:function(element,key,defaultValue){if(!(element=$(element)))return;var hash=Element.getStorage(element),value=hash.get(key);if(Object.isUndefined(value)){hash.set(key,defaultValue);value=defaultValue;}
return value;},clone:function(element,deep){if(!(element=$(element)))return;var clone=element.cloneNode(deep);clone._prototypeUID=void 0;if(deep){var descendants=Element.select(clone,'*'),i=descendants.length;while(i--){descendants[i]._prototypeUID=void 0;}}
return Element.extend(clone);}});var Selector=Class.create({initialize:function(expression){this.expression=expression.strip();if(this.shouldUseSelectorsAPI()){this.mode='selectorsAPI';}else if(this.shouldUseXPath()){this.mode='xpath';this.compileXPathMatcher();}else{this.mode="normal";this.compileMatcher();}},shouldUseXPath:(function(){var IS_DESCENDANT_SELECTOR_BUGGY=(function(){var isBuggy=false;if(document.evaluate&&window.XPathResult){var el=document.createElement('div');el.innerHTML='<ul><li></li></ul><div><ul><li></li></ul></div>';var xpath=".//*[local-name()='ul' or local-name()='UL']"+"//*[local-name()='li' or local-name()='LI']";var result=document.evaluate(xpath,el,null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,null);isBuggy=(result.snapshotLength!==2);el=null;}
return isBuggy;})();return function(){if(!Prototype.BrowserFeatures.XPath)return false;var e=this.expression;if(Prototype.Browser.WebKit&&(e.include("-of-type")||e.include(":empty")))
return false;if((/(\[[\w-]*?:|:checked)/).test(e))
return false;if(IS_DESCENDANT_SELECTOR_BUGGY)return false;return true;}})(),shouldUseSelectorsAPI:function(){if(!Prototype.BrowserFeatures.SelectorsAPI)return false;if(Selector.CASE_INSENSITIVE_CLASS_NAMES)return false;if(!Selector._div)Selector._div=new Element('div');try{Selector._div.querySelector(this.expression);}catch(e){return false;}
return true;},compileMatcher:function(){var e=this.expression,ps=Selector.patterns,h=Selector.handlers,c=Selector.criteria,le,p,m,len=ps.length,name;if(Selector._cache[e]){this.matcher=Selector._cache[e];return;}
this.matcher=["this.matcher = function(root) {","var r = root, h = Selector.handlers, c = false, n;"];while(e&&le!=e&&(/\S/).test(e)){le=e;for(var i=0;i<len;i++){p=ps[i].re;name=ps[i].name;if(m=e.match(p)){this.matcher.push(Object.isFunction(c[name])?c[name](m):new Template(c[name]).evaluate(m));e=e.replace(m[0],'');break;}}}
this.matcher.push("return h.unique(n);\n}");eval(this.matcher.join('\n'));Selector._cache[this.expression]=this.matcher;},compileXPathMatcher:function(){var e=this.expression,ps=Selector.patterns,x=Selector.xpath,le,m,len=ps.length,name;if(Selector._cache[e]){this.xpath=Selector._cache[e];return;}
this.matcher=['.//*'];while(e&&le!=e&&(/\S/).test(e)){le=e;for(var i=0;i<len;i++){name=ps[i].name;if(m=e.match(ps[i].re)){this.matcher.push(Object.isFunction(x[name])?x[name](m):new Template(x[name]).evaluate(m));e=e.replace(m[0],'');break;}}}
this.xpath=this.matcher.join('');Selector._cache[this.expression]=this.xpath;},findElements:function(root){root=root||document;var e=this.expression,results;switch(this.mode){case'selectorsAPI':if(root!==document){var oldId=root.id,id=$(root).identify();id=id.replace(/([\.:])/g,"\\$1");e="#"+id+" "+e;}
results=$A(root.querySelectorAll(e)).map(Element.extend);root.id=oldId;return results;case'xpath':return document._getElementsByXPath(this.xpath,root);default:return this.matcher(root);}},match:function(element){this.tokens=[];var e=this.expression,ps=Selector.patterns,as=Selector.assertions;var le,p,m,len=ps.length,name;while(e&&le!==e&&(/\S/).test(e)){le=e;for(var i=0;i<len;i++){p=ps[i].re;name=ps[i].name;if(m=e.match(p)){if(as[name]){this.tokens.push([name,Object.clone(m)]);e=e.replace(m[0],'');}else{return this.findElements(document).include(element);}}}}
var match=true,name,matches;for(var i=0,token;token=this.tokens[i];i++){name=token[0],matches=token[1];if(!Selector.assertions[name](element,matches)){match=false;break;}}
return match;},toString:function(){return this.expression;},inspect:function(){return"#<Selector:"+this.expression.inspect()+">";}});if(Prototype.BrowserFeatures.SelectorsAPI&&document.compatMode==='BackCompat'){Selector.CASE_INSENSITIVE_CLASS_NAMES=(function(){var div=document.createElement('div'),span=document.createElement('span');div.id="prototype_test_id";span.className='Test';div.appendChild(span);var isIgnored=(div.querySelector('#prototype_test_id .test')!==null);div=span=null;return isIgnored;})();}
Object.extend(Selector,{_cache:{},xpath:{descendant:"//*",child:"/*",adjacent:"/following-sibling::*[1]",laterSibling:'/following-sibling::*',tagName:function(m){if(m[1]=='*')return'';return"[local-name()='"+m[1].toLowerCase()+"' or local-name()='"+m[1].toUpperCase()+"']";},className:"[contains(concat(' ', @class, ' '), ' #{1} ')]",id:"[@id='#{1}']",attrPresence:function(m){m[1]=m[1].toLowerCase();return new Template("[@#{1}]").evaluate(m);},attr:function(m){m[1]=m[1].toLowerCase();m[3]=m[5]||m[6];return new Template(Selector.xpath.operators[m[2]]).evaluate(m);},pseudo:function(m){var h=Selector.xpath.pseudos[m[1]];if(!h)return'';if(Object.isFunction(h))return h(m);return new Template(Selector.xpath.pseudos[m[1]]).evaluate(m);},operators:{'=':"[@#{1}='#{3}']",'!=':"[@#{1}!='#{3}']",'^=':"[starts-with(@#{1}, '#{3}')]",'$=':"[substring(@#{1}, (string-length(@#{1}) - string-length('#{3}') + 1))='#{3}']",'*=':"[contains(@#{1}, '#{3}')]",'~=':"[contains(concat(' ', @#{1}, ' '), ' #{3} ')]",'|=':"[contains(concat('-', @#{1}, '-'), '-#{3}-')]"},pseudos:{'first-child':'[not(preceding-sibling::*)]','last-child':'[not(following-sibling::*)]','only-child':'[not(preceding-sibling::* or following-sibling::*)]','empty':"[count(*) = 0 and (count(text()) = 0)]",'checked':"[@checked]",'disabled':"[(@disabled) and (@type!='hidden')]",'enabled':"[not(@disabled) and (@type!='hidden')]",'not':function(m){var e=m[6],p=Selector.patterns,x=Selector.xpath,le,v,len=p.length,name;var exclusion=[];while(e&&le!=e&&(/\S/).test(e)){le=e;for(var i=0;i<len;i++){name=p[i].name
if(m=e.match(p[i].re)){v=Object.isFunction(x[name])?x[name](m):new Template(x[name]).evaluate(m);exclusion.push("("+v.substring(1,v.length-1)+")");e=e.replace(m[0],'');break;}}}
return"[not("+exclusion.join(" and ")+")]";},'nth-child':function(m){return Selector.xpath.pseudos.nth("(count(./preceding-sibling::*) + 1) ",m);},'nth-last-child':function(m){return Selector.xpath.pseudos.nth("(count(./following-sibling::*) + 1) ",m);},'nth-of-type':function(m){return Selector.xpath.pseudos.nth("position() ",m);},'nth-last-of-type':function(m){return Selector.xpath.pseudos.nth("(last() + 1 - position()) ",m);},'first-of-type':function(m){m[6]="1";return Selector.xpath.pseudos['nth-of-type'](m);},'last-of-type':function(m){m[6]="1";return Selector.xpath.pseudos['nth-last-of-type'](m);},'only-of-type':function(m){var p=Selector.xpath.pseudos;return p['first-of-type'](m)+p['last-of-type'](m);},nth:function(fragment,m){var mm,formula=m[6],predicate;if(formula=='even')formula='2n+0';if(formula=='odd')formula='2n+1';if(mm=formula.match(/^(\d+)$/))
return'['+fragment+"= "+mm[1]+']';if(mm=formula.match(/^(-?\d*)?n(([+-])(\d+))?/)){if(mm[1]=="-")mm[1]=-1;var a=mm[1]?Number(mm[1]):1;var b=mm[2]?Number(mm[2]):0;predicate="[((#{fragment} - #{b}) mod #{a} = 0) and "+"((#{fragment} - #{b}) div #{a} >= 0)]";return new Template(predicate).evaluate({fragment:fragment,a:a,b:b});}}}},criteria:{tagName:'n = h.tagName(n, r, "#{1}", c);      c = false;',className:'n = h.className(n, r, "#{1}", c);    c = false;',id:'n = h.id(n, r, "#{1}", c);           c = false;',attrPresence:'n = h.attrPresence(n, r, "#{1}", c); c = false;',attr:function(m){m[3]=(m[5]||m[6]);return new Template('n = h.attr(n, r, "#{1}", "#{3}", "#{2}", c); c = false;').evaluate(m);},pseudo:function(m){if(m[6])m[6]=m[6].replace(/"/g,'\\"');return new Template('n = h.pseudo(n, "#{1}", "#{6}", r, c); c = false;').evaluate(m);},descendant:'c = "descendant";',child:'c = "child";',adjacent:'c = "adjacent";',laterSibling:'c = "laterSibling";'},patterns:[{name:'laterSibling',re:/^\s*~\s*/},{name:'child',re:/^\s*>\s*/},{name:'adjacent',re:/^\s*\+\s*/},{name:'descendant',re:/^\s/},{name:'tagName',re:/^\s*(\*|[\w\-]+)(\b|$)?/},{name:'id',re:/^#([\w\-\*]+)(\b|$)/},{name:'className',re:/^\.([\w\-\*]+)(\b|$)/},{name:'pseudo',re:/^:((first|last|nth|nth-last|only)(-child|-of-type)|empty|checked|(en|dis)abled|not)(\((.*?)\))?(\b|$|(?=\s|[:+~>]))/},{name:'attrPresence',re:/^\[((?:[\w-]+:)?[\w-]+)\]/},{name:'attr',re:/\[((?:[\w-]*:)?[\w-]+)\s*(?:([!^$*~|]?=)\s*((['"])([^\4]*?)\4|([^'"][^\]]*?)))?\]/}],assertions:{tagName:function(element,matches){return matches[1].toUpperCase()==element.tagName.toUpperCase();},className:function(element,matches){return Element.hasClassName(element,matches[1]);},id:function(element,matches){return element.id===matches[1];},attrPresence:function(element,matches){return Element.hasAttribute(element,matches[1]);},attr:function(element,matches){var nodeValue=Element.readAttribute(element,matches[1]);return nodeValue&&Selector.operators[matches[2]](nodeValue,matches[5]||matches[6]);}},handlers:{concat:function(a,b){for(var i=0,node;node=b[i];i++)
a.push(node);return a;},mark:function(nodes){var _true=Prototype.emptyFunction;for(var i=0,node;node=nodes[i];i++)
node._countedByPrototype=_true;return nodes;},unmark:(function(){var PROPERTIES_ATTRIBUTES_MAP=(function(){var el=document.createElement('div'),isBuggy=false,propName='_countedByPrototype',value='x'
el[propName]=value;isBuggy=(el.getAttribute(propName)===value);el=null;return isBuggy;})();return PROPERTIES_ATTRIBUTES_MAP?function(nodes){for(var i=0,node;node=nodes[i];i++)
node.removeAttribute('_countedByPrototype');return nodes;}:function(nodes){for(var i=0,node;node=nodes[i];i++)
node._countedByPrototype=void 0;return nodes;}})(),index:function(parentNode,reverse,ofType){parentNode._countedByPrototype=Prototype.emptyFunction;if(reverse){for(var nodes=parentNode.childNodes,i=nodes.length-1,j=1;i>=0;i--){var node=nodes[i];if(node.nodeType==1&&(!ofType||node._countedByPrototype))node.nodeIndex=j++;}}else{for(var i=0,j=1,nodes=parentNode.childNodes;node=nodes[i];i++)
if(node.nodeType==1&&(!ofType||node._countedByPrototype))node.nodeIndex=j++;}},unique:function(nodes){if(nodes.length==0)return nodes;var results=[],n;for(var i=0,l=nodes.length;i<l;i++)
if(typeof(n=nodes[i])._countedByPrototype=='undefined'){n._countedByPrototype=Prototype.emptyFunction;results.push(Element.extend(n));}
return Selector.handlers.unmark(results);},descendant:function(nodes){var h=Selector.handlers;for(var i=0,results=[],node;node=nodes[i];i++)
h.concat(results,node.getElementsByTagName('*'));return results;},child:function(nodes){var h=Selector.handlers;for(var i=0,results=[],node;node=nodes[i];i++){for(var j=0,child;child=node.childNodes[j];j++)
if(child.nodeType==1&&child.tagName!='!')results.push(child);}
return results;},adjacent:function(nodes){for(var i=0,results=[],node;node=nodes[i];i++){var next=this.nextElementSibling(node);if(next)results.push(next);}
return results;},laterSibling:function(nodes){var h=Selector.handlers;for(var i=0,results=[],node;node=nodes[i];i++)
h.concat(results,Element.nextSiblings(node));return results;},nextElementSibling:function(node){while(node=node.nextSibling)
if(node.nodeType==1)return node;return null;},previousElementSibling:function(node){while(node=node.previousSibling)
if(node.nodeType==1)return node;return null;},tagName:function(nodes,root,tagName,combinator){var uTagName=tagName.toUpperCase();var results=[],h=Selector.handlers;if(nodes){if(combinator){if(combinator=="descendant"){for(var i=0,node;node=nodes[i];i++)
h.concat(results,node.getElementsByTagName(tagName));return results;}else nodes=this[combinator](nodes);if(tagName=="*")return nodes;}
for(var i=0,node;node=nodes[i];i++)
if(node.tagName.toUpperCase()===uTagName)results.push(node);return results;}else return root.getElementsByTagName(tagName);},id:function(nodes,root,id,combinator){var targetNode=$(id),h=Selector.handlers;if(root==document){if(!targetNode)return[];if(!nodes)return[targetNode];}else{if(!root.sourceIndex||root.sourceIndex<1){var nodes=root.getElementsByTagName('*');for(var j=0,node;node=nodes[j];j++){if(node.id===id)return[node];}}}
if(nodes){if(combinator){if(combinator=='child'){for(var i=0,node;node=nodes[i];i++)
if(targetNode.parentNode==node)return[targetNode];}else if(combinator=='descendant'){for(var i=0,node;node=nodes[i];i++)
if(Element.descendantOf(targetNode,node))return[targetNode];}else if(combinator=='adjacent'){for(var i=0,node;node=nodes[i];i++)
if(Selector.handlers.previousElementSibling(targetNode)==node)
return[targetNode];}else nodes=h[combinator](nodes);}
for(var i=0,node;node=nodes[i];i++)
if(node==targetNode)return[targetNode];return[];}
return(targetNode&&Element.descendantOf(targetNode,root))?[targetNode]:[];},className:function(nodes,root,className,combinator){if(nodes&&combinator)nodes=this[combinator](nodes);return Selector.handlers.byClassName(nodes,root,className);},byClassName:function(nodes,root,className){if(!nodes)nodes=Selector.handlers.descendant([root]);var needle=' '+className+' ';for(var i=0,results=[],node,nodeClassName;node=nodes[i];i++){nodeClassName=node.className;if(nodeClassName.length==0)continue;if(nodeClassName==className||(' '+nodeClassName+' ').include(needle))
results.push(node);}
return results;},attrPresence:function(nodes,root,attr,combinator){if(!nodes)nodes=root.getElementsByTagName("*");if(nodes&&combinator)nodes=this[combinator](nodes);var results=[];for(var i=0,node;node=nodes[i];i++)
if(Element.hasAttribute(node,attr))results.push(node);return results;},attr:function(nodes,root,attr,value,operator,combinator){if(!nodes)nodes=root.getElementsByTagName("*");if(nodes&&combinator)nodes=this[combinator](nodes);var handler=Selector.operators[operator],results=[];for(var i=0,node;node=nodes[i];i++){var nodeValue=Element.readAttribute(node,attr);if(nodeValue===null)continue;if(handler(nodeValue,value))results.push(node);}
return results;},pseudo:function(nodes,name,value,root,combinator){if(nodes&&combinator)nodes=this[combinator](nodes);if(!nodes)nodes=root.getElementsByTagName("*");return Selector.pseudos[name](nodes,value,root);}},pseudos:{'first-child':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++){if(Selector.handlers.previousElementSibling(node))continue;results.push(node);}
return results;},'last-child':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++){if(Selector.handlers.nextElementSibling(node))continue;results.push(node);}
return results;},'only-child':function(nodes,value,root){var h=Selector.handlers;for(var i=0,results=[],node;node=nodes[i];i++)
if(!h.previousElementSibling(node)&&!h.nextElementSibling(node))
results.push(node);return results;},'nth-child':function(nodes,formula,root){return Selector.pseudos.nth(nodes,formula,root);},'nth-last-child':function(nodes,formula,root){return Selector.pseudos.nth(nodes,formula,root,true);},'nth-of-type':function(nodes,formula,root){return Selector.pseudos.nth(nodes,formula,root,false,true);},'nth-last-of-type':function(nodes,formula,root){return Selector.pseudos.nth(nodes,formula,root,true,true);},'first-of-type':function(nodes,formula,root){return Selector.pseudos.nth(nodes,"1",root,false,true);},'last-of-type':function(nodes,formula,root){return Selector.pseudos.nth(nodes,"1",root,true,true);},'only-of-type':function(nodes,formula,root){var p=Selector.pseudos;return p['last-of-type'](p['first-of-type'](nodes,formula,root),formula,root);},getIndices:function(a,b,total){if(a==0)return b>0?[b]:[];return $R(1,total).inject([],function(memo,i){if(0==(i-b)%a&&(i-b)/a>=0)memo.push(i);return memo;});},nth:function(nodes,formula,root,reverse,ofType){if(nodes.length==0)return[];if(formula=='even')formula='2n+0';if(formula=='odd')formula='2n+1';var h=Selector.handlers,results=[],indexed=[],m;h.mark(nodes);for(var i=0,node;node=nodes[i];i++){if(!node.parentNode._countedByPrototype){h.index(node.parentNode,reverse,ofType);indexed.push(node.parentNode);}}
if(formula.match(/^\d+$/)){formula=Number(formula);for(var i=0,node;node=nodes[i];i++)
if(node.nodeIndex==formula)results.push(node);}else if(m=formula.match(/^(-?\d*)?n(([+-])(\d+))?/)){if(m[1]=="-")m[1]=-1;var a=m[1]?Number(m[1]):1;var b=m[2]?Number(m[2]):0;var indices=Selector.pseudos.getIndices(a,b,nodes.length);for(var i=0,node,l=indices.length;node=nodes[i];i++){for(var j=0;j<l;j++)
if(node.nodeIndex==indices[j])results.push(node);}}
h.unmark(nodes);h.unmark(indexed);return results;},'empty':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++){if(node.tagName=='!'||node.firstChild)continue;results.push(node);}
return results;},'not':function(nodes,selector,root){var h=Selector.handlers,selectorType,m;var exclusions=new Selector(selector).findElements(root);h.mark(exclusions);for(var i=0,results=[],node;node=nodes[i];i++)
if(!node._countedByPrototype)results.push(node);h.unmark(exclusions);return results;},'enabled':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++)
if(!node.disabled&&(!node.type||node.type!=='hidden'))
results.push(node);return results;},'disabled':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++)
if(node.disabled)results.push(node);return results;},'checked':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++)
if(node.checked)results.push(node);return results;}},operators:{'=':function(nv,v){return nv==v;},'!=':function(nv,v){return nv!=v;},'^=':function(nv,v){return nv==v||nv&&nv.startsWith(v);},'$=':function(nv,v){return nv==v||nv&&nv.endsWith(v);},'*=':function(nv,v){return nv==v||nv&&nv.include(v);},'~=':function(nv,v){return(' '+nv+' ').include(' '+v+' ');},'|=':function(nv,v){return('-'+(nv||"").toUpperCase()+'-').include('-'+(v||"").toUpperCase()+'-');}},split:function(expression){var expressions=[];expression.scan(/(([\w#:.~>+()\s-]+|\*|\[.*?\])+)\s*(,|$)/,function(m){expressions.push(m[1].strip());});return expressions;},matchElements:function(elements,expression){var matches=$$(expression),h=Selector.handlers;h.mark(matches);for(var i=0,results=[],element;element=elements[i];i++)
if(element._countedByPrototype)results.push(element);h.unmark(matches);return results;},findElement:function(elements,expression,index){if(Object.isNumber(expression)){index=expression;expression=false;}
return Selector.matchElements(elements,expression||'*')[index||0];},findChildElements:function(element,expressions){expressions=Selector.split(expressions.join(','));var results=[],h=Selector.handlers;for(var i=0,l=expressions.length,selector;i<l;i++){selector=new Selector(expressions[i].strip());h.concat(results,selector.findElements(element));}
return(l>1)?h.unique(results):results;}});if(Prototype.Browser.IE){Object.extend(Selector.handlers,{concat:function(a,b){for(var i=0,node;node=b[i];i++)
if(node.tagName!=="!")a.push(node);return a;}});}
function $$(){return Selector.findChildElements(document,$A(arguments));}
var Form={reset:function(form){form=$(form);form.reset();return form;},serializeElements:function(elements,options){if(typeof options!='object')options={hash:!!options};else if(Object.isUndefined(options.hash))options.hash=true;var key,value,submitted=false,submit=options.submit;var data=elements.inject({},function(result,element){if(!element.disabled&&element.name){key=element.name;value=$(element).getValue();if(value!=null&&element.type!='file'&&(element.type!='submit'||(!submitted&&submit!==false&&(!submit||key==submit)&&(submitted=true)))){if(key in result){if(!Object.isArray(result[key]))result[key]=[result[key]];result[key].push(value);}
else result[key]=value;}}
return result;});return options.hash?data:Object.toQueryString(data);}};Form.Methods={serialize:function(form,options){return Form.serializeElements(Form.getElements(form),options);},getElements:function(form){var elements=$(form).getElementsByTagName('*'),element,arr=[],serializers=Form.Element.Serializers;for(var i=0;element=elements[i];i++){arr.push(element);}
return arr.inject([],function(elements,child){if(serializers[child.tagName.toLowerCase()])
elements.push(Element.extend(child));return elements;})},getInputs:function(form,typeName,name){form=$(form);var inputs=form.getElementsByTagName('input');if(!typeName&&!name)return $A(inputs).map(Element.extend);for(var i=0,matchingInputs=[],length=inputs.length;i<length;i++){var input=inputs[i];if((typeName&&input.type!=typeName)||(name&&input.name!=name))
continue;matchingInputs.push(Element.extend(input));}
return matchingInputs;},disable:function(form){form=$(form);Form.getElements(form).invoke('disable');return form;},enable:function(form){form=$(form);Form.getElements(form).invoke('enable');return form;},findFirstElement:function(form){var elements=$(form).getElements().findAll(function(element){return'hidden'!=element.type&&!element.disabled;});var firstByIndex=elements.findAll(function(element){return element.hasAttribute('tabIndex')&&element.tabIndex>=0;}).sortBy(function(element){return element.tabIndex}).first();return firstByIndex?firstByIndex:elements.find(function(element){return /^(?:input|select|textarea)$/i.test(element.tagName);});},focusFirstElement:function(form){form=$(form);form.findFirstElement().activate();return form;},request:function(form,options){form=$(form),options=Object.clone(options||{});var params=options.parameters,action=form.readAttribute('action')||'';if(action.blank())action=window.location.href;options.parameters=form.serialize(true);if(params){if(Object.isString(params))params=params.toQueryParams();Object.extend(options.parameters,params);}
if(form.hasAttribute('method')&&!options.method)
options.method=form.method;return new Ajax.Request(action,options);}};Form.Element={focus:function(element){$(element).focus();return element;},select:function(element){$(element).select();return element;}};Form.Element.Methods={serialize:function(element){element=$(element);if(!element.disabled&&element.name){var value=element.getValue();if(value!=undefined){var pair={};pair[element.name]=value;return Object.toQueryString(pair);}}
return'';},getValue:function(element){element=$(element);var method=element.tagName.toLowerCase();return Form.Element.Serializers[method](element);},setValue:function(element,value){element=$(element);var method=element.tagName.toLowerCase();Form.Element.Serializers[method](element,value);return element;},clear:function(element){$(element).value='';return element;},present:function(element){return $(element).value!='';},activate:function(element){element=$(element);try{element.focus();if(element.select&&(element.tagName.toLowerCase()!='input'||!(/^(?:button|reset|submit)$/i.test(element.type))))
element.select();}catch(e){}
return element;},disable:function(element){element=$(element);element.disabled=true;return element;},enable:function(element){element=$(element);element.disabled=false;return element;}};var Field=Form.Element;var $F=Form.Element.Methods.getValue;Form.Element.Serializers={input:function(element,value){switch(element.type.toLowerCase()){case'checkbox':case'radio':return Form.Element.Serializers.inputSelector(element,value);default:return Form.Element.Serializers.textarea(element,value);}},inputSelector:function(element,value){if(Object.isUndefined(value))return element.checked?element.value:null;else element.checked=!!value;},textarea:function(element,value){if(Object.isUndefined(value))return element.value;else element.value=value;},select:function(element,value){if(Object.isUndefined(value))
return this[element.type=='select-one'?'selectOne':'selectMany'](element);else{var opt,currentValue,single=!Object.isArray(value);for(var i=0,length=element.length;i<length;i++){opt=element.options[i];currentValue=this.optionValue(opt);if(single){if(currentValue==value){opt.selected=true;return;}}
else opt.selected=value.include(currentValue);}}},selectOne:function(element){var index=element.selectedIndex;return index>=0?this.optionValue(element.options[index]):null;},selectMany:function(element){var values,length=element.length;if(!length)return null;for(var i=0,values=[];i<length;i++){var opt=element.options[i];if(opt.selected)values.push(this.optionValue(opt));}
return values;},optionValue:function(opt){return Element.extend(opt).hasAttribute('value')?opt.value:opt.text;}};Abstract.TimedObserver=Class.create(PeriodicalExecuter,{initialize:function($super,element,frequency,callback){$super(callback,frequency);this.element=$(element);this.lastValue=this.getValue();},execute:function(){var value=this.getValue();if(Object.isString(this.lastValue)&&Object.isString(value)?this.lastValue!=value:String(this.lastValue)!=String(value)){this.callback(this.element,value);this.lastValue=value;}}});Form.Element.Observer=Class.create(Abstract.TimedObserver,{getValue:function(){return Form.Element.getValue(this.element);}});Form.Observer=Class.create(Abstract.TimedObserver,{getValue:function(){return Form.serialize(this.element);}});Abstract.EventObserver=Class.create({initialize:function(element,callback){this.element=$(element);this.callback=callback;this.lastValue=this.getValue();if(this.element.tagName.toLowerCase()=='form')
this.registerFormCallbacks();else
this.registerCallback(this.element);},onElementEvent:function(){var value=this.getValue();if(this.lastValue!=value){this.callback(this.element,value);this.lastValue=value;}},registerFormCallbacks:function(){Form.getElements(this.element).each(this.registerCallback,this);},registerCallback:function(element){if(element.type){switch(element.type.toLowerCase()){case'checkbox':case'radio':Event.observe(element,'click',this.onElementEvent.bind(this));break;default:Event.observe(element,'change',this.onElementEvent.bind(this));break;}}}});Form.Element.EventObserver=Class.create(Abstract.EventObserver,{getValue:function(){return Form.Element.getValue(this.element);}});Form.EventObserver=Class.create(Abstract.EventObserver,{getValue:function(){return Form.serialize(this.element);}});(function(){var Event={KEY_BACKSPACE:8,KEY_TAB:9,KEY_RETURN:13,KEY_ESC:27,KEY_LEFT:37,KEY_UP:38,KEY_RIGHT:39,KEY_DOWN:40,KEY_DELETE:46,KEY_HOME:36,KEY_END:35,KEY_PAGEUP:33,KEY_PAGEDOWN:34,KEY_INSERT:45,cache:{}};var docEl=document.documentElement;var MOUSEENTER_MOUSELEAVE_EVENTS_SUPPORTED='onmouseenter'in docEl&&'onmouseleave'in docEl;var _isButton;if(Prototype.Browser.IE){var buttonMap={0:1,1:4,2:2};_isButton=function(event,code){return event.button===buttonMap[code];};}else if(Prototype.Browser.WebKit){_isButton=function(event,code){switch(code){case 0:return event.which==1&&!event.metaKey;case 1:return event.which==1&&event.metaKey;default:return false;}};}else{_isButton=function(event,code){return event.which?(event.which===code+1):(event.button===code);};}
function isLeftClick(event){return _isButton(event,0)}
function isMiddleClick(event){return _isButton(event,1)}
function isRightClick(event){return _isButton(event,2)}
function element(event){event=Event.extend(event);var node=event.target,type=event.type,currentTarget=event.currentTarget;if(currentTarget&&currentTarget.tagName){if(type==='load'||type==='error'||(type==='click'&&currentTarget.tagName.toLowerCase()==='input'&&currentTarget.type==='radio'))
node=currentTarget;}
if(node.nodeType==Node.TEXT_NODE)
node=node.parentNode;return Element.extend(node);}
function findElement(event,expression){var element=Event.element(event);if(!expression)return element;var elements=[element].concat(element.ancestors());return Selector.findElement(elements,expression,0);}
function pointer(event){return{x:pointerX(event),y:pointerY(event)};}
function pointerX(event){var docElement=document.documentElement,body=document.body||{scrollLeft:0};return event.pageX||(event.clientX+
(docElement.scrollLeft||body.scrollLeft)-
(docElement.clientLeft||0));}
function pointerY(event){var docElement=document.documentElement,body=document.body||{scrollTop:0};return event.pageY||(event.clientY+
(docElement.scrollTop||body.scrollTop)-
(docElement.clientTop||0));}
function stop(event){Event.extend(event);event.preventDefault();event.stopPropagation();event.stopped=true;}
Event.Methods={isLeftClick:isLeftClick,isMiddleClick:isMiddleClick,isRightClick:isRightClick,element:element,findElement:findElement,pointer:pointer,pointerX:pointerX,pointerY:pointerY,stop:stop};var methods=Object.keys(Event.Methods).inject({},function(m,name){m[name]=Event.Methods[name].methodize();return m;});if(Prototype.Browser.IE){function _relatedTarget(event){var element;switch(event.type){case'mouseover':element=event.fromElement;break;case'mouseout':element=event.toElement;break;default:return null;}
return Element.extend(element);}
Object.extend(methods,{stopPropagation:function(){this.cancelBubble=true},preventDefault:function(){this.returnValue=false},inspect:function(){return'[object Event]'}});Event.extend=function(event,element){if(!event)return false;if(event._extendedByPrototype)return event;event._extendedByPrototype=Prototype.emptyFunction;var pointer=Event.pointer(event);Object.extend(event,{target:event.srcElement||element,relatedTarget:_relatedTarget(event),pageX:pointer.x,pageY:pointer.y});return Object.extend(event,methods);};}else{Event.prototype=window.Event.prototype||document.createEvent('HTMLEvents').__proto__;Object.extend(Event.prototype,methods);Event.extend=Prototype.K;}
function _createResponder(element,eventName,handler){var registry=Element.retrieve(element,'prototype_event_registry');if(Object.isUndefined(registry)){CACHE.push(element);registry=Element.retrieve(element,'prototype_event_registry',$H());}
var respondersForEvent=registry.get(eventName);if(Object.isUndefined(respondersForEvent)){respondersForEvent=[];registry.set(eventName,respondersForEvent);}
if(respondersForEvent.pluck('handler').include(handler))return false;var responder;if(eventName.include(":")){responder=function(event){if(Object.isUndefined(event.eventName))
return false;if(event.eventName!==eventName)
return false;Event.extend(event,element);handler.call(element,event);};}else{if(!MOUSEENTER_MOUSELEAVE_EVENTS_SUPPORTED&&(eventName==="mouseenter"||eventName==="mouseleave")){if(eventName==="mouseenter"||eventName==="mouseleave"){responder=function(event){Event.extend(event,element);var parent=event.relatedTarget;while(parent&&parent!==element){try{parent=parent.parentNode;}
catch(e){parent=element;}}
if(parent===element)return;handler.call(element,event);};}}else{responder=function(event){Event.extend(event,element);handler.call(element,event);};}}
responder.handler=handler;respondersForEvent.push(responder);return responder;}
function _destroyCache(){for(var i=0,length=CACHE.length;i<length;i++){Event.stopObserving(CACHE[i]);CACHE[i]=null;}}
var CACHE=[];if(Prototype.Browser.IE)
window.attachEvent('onunload',_destroyCache);if(Prototype.Browser.WebKit)
window.addEventListener('unload',Prototype.emptyFunction,false);var _getDOMEventName=Prototype.K;if(!MOUSEENTER_MOUSELEAVE_EVENTS_SUPPORTED){_getDOMEventName=function(eventName){var translations={mouseenter:"mouseover",mouseleave:"mouseout"};return eventName in translations?translations[eventName]:eventName;};}
function observe(element,eventName,handler){element=$(element);var responder=_createResponder(element,eventName,handler);if(!responder)return element;if(eventName.include(':')){if(element.addEventListener)
element.addEventListener("dataavailable",responder,false);else{element.attachEvent("ondataavailable",responder);element.attachEvent("onfilterchange",responder);}}else{var actualEventName=_getDOMEventName(eventName);if(element.addEventListener)
element.addEventListener(actualEventName,responder,false);else
element.attachEvent("on"+actualEventName,responder);}
return element;}
function stopObserving(element,eventName,handler){element=$(element);var registry=Element.retrieve(element,'prototype_event_registry');if(Object.isUndefined(registry))return element;if(eventName&&!handler){var responders=registry.get(eventName);if(Object.isUndefined(responders))return element;responders.each(function(r){Element.stopObserving(element,eventName,r.handler);});return element;}else if(!eventName){registry.each(function(pair){var eventName=pair.key,responders=pair.value;responders.each(function(r){Element.stopObserving(element,eventName,r.handler);});});return element;}
var responders=registry.get(eventName);if(!responders)return;var responder=responders.find(function(r){return r.handler===handler;});if(!responder)return element;var actualEventName=_getDOMEventName(eventName);if(eventName.include(':')){if(element.removeEventListener)
element.removeEventListener("dataavailable",responder,false);else{element.detachEvent("ondataavailable",responder);element.detachEvent("onfilterchange",responder);}}else{if(element.removeEventListener)
element.removeEventListener(actualEventName,responder,false);else
element.detachEvent('on'+actualEventName,responder);}
registry.set(eventName,responders.without(responder));return element;}
function fire(element,eventName,memo,bubble){element=$(element);if(Object.isUndefined(bubble))
bubble=true;if(element==document&&document.createEvent&&!element.dispatchEvent)
element=document.documentElement;var event;if(document.createEvent){event=document.createEvent('HTMLEvents');event.initEvent('dataavailable',true,true);}else{event=document.createEventObject();event.eventType=bubble?'ondataavailable':'onfilterchange';}
event.eventName=eventName;event.memo=memo||{};if(document.createEvent)
element.dispatchEvent(event);else
element.fireEvent(event.eventType,event);return Event.extend(event);}
Object.extend(Event,Event.Methods);Object.extend(Event,{fire:fire,observe:observe,stopObserving:stopObserving});Element.addMethods({fire:fire,observe:observe,stopObserving:stopObserving});Object.extend(document,{fire:fire.methodize(),observe:observe.methodize(),stopObserving:stopObserving.methodize(),loaded:false});if(window.Event)Object.extend(window.Event,Event);else window.Event=Event;})();(function(){var timer;function fireContentLoadedEvent(){if(document.loaded)return;if(timer)window.clearTimeout(timer);document.loaded=true;document.fire('dom:loaded');}
function checkReadyState(){if(document.readyState==='complete'){document.stopObserving('readystatechange',checkReadyState);fireContentLoadedEvent();}}
function pollDoScroll(){try{document.documentElement.doScroll('left');}
catch(e){timer=pollDoScroll.defer();return;}
fireContentLoadedEvent();}
if(document.addEventListener){document.addEventListener('DOMContentLoaded',fireContentLoadedEvent,false);}else{document.observe('readystatechange',checkReadyState);if(window==top)
timer=pollDoScroll.defer();}
Event.observe(window,'load',fireContentLoadedEvent);})();Element.addMethods();Hash.toQueryString=Object.toQueryString;var Toggle={display:Element.toggle};Element.Methods.childOf=Element.Methods.descendantOf;var Insertion={Before:function(element,content){return Element.insert(element,{before:content});},Top:function(element,content){return Element.insert(element,{top:content});},Bottom:function(element,content){return Element.insert(element,{bottom:content});},After:function(element,content){return Element.insert(element,{after:content});}};var $continue=new Error('"throw $continue" is deprecated, use "return" instead');var Position={includeScrollOffsets:false,prepare:function(){this.deltaX=window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft||0;this.deltaY=window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0;},within:function(element,x,y){if(this.includeScrollOffsets)
return this.withinIncludingScrolloffsets(element,x,y);this.xcomp=x;this.ycomp=y;this.offset=Element.cumulativeOffset(element);return(y>=this.offset[1]&&y<this.offset[1]+element.offsetHeight&&x>=this.offset[0]&&x<this.offset[0]+element.offsetWidth);},withinIncludingScrolloffsets:function(element,x,y){var offsetcache=Element.cumulativeScrollOffset(element);this.xcomp=x+offsetcache[0]-this.deltaX;this.ycomp=y+offsetcache[1]-this.deltaY;this.offset=Element.cumulativeOffset(element);return(this.ycomp>=this.offset[1]&&this.ycomp<this.offset[1]+element.offsetHeight&&this.xcomp>=this.offset[0]&&this.xcomp<this.offset[0]+element.offsetWidth);},overlap:function(mode,element){if(!mode)return 0;if(mode=='vertical')
return((this.offset[1]+element.offsetHeight)-this.ycomp)/element.offsetHeight;if(mode=='horizontal')
return((this.offset[0]+element.offsetWidth)-this.xcomp)/element.offsetWidth;},cumulativeOffset:Element.Methods.cumulativeOffset,positionedOffset:Element.Methods.positionedOffset,absolutize:function(element){Position.prepare();return Element.absolutize(element);},relativize:function(element){Position.prepare();return Element.relativize(element);},realOffset:Element.Methods.cumulativeScrollOffset,offsetParent:Element.Methods.getOffsetParent,page:Element.Methods.viewportOffset,clone:function(source,target,options){options=options||{};return Element.clonePosition(target,source,options);}};if(!document.getElementsByClassName)document.getElementsByClassName=function(instanceMethods){function iter(name){return name.blank()?null:"[contains(concat(' ', @class, ' '), ' "+name+" ')]";}
instanceMethods.getElementsByClassName=Prototype.BrowserFeatures.XPath?function(element,className){className=className.toString().strip();var cond=/\s/.test(className)?$w(className).map(iter).join(''):iter(className);return cond?document._getElementsByXPath('.//*'+cond,element):[];}:function(element,className){className=className.toString().strip();var elements=[],classNames=(/\s/.test(className)?$w(className):null);if(!classNames&&!className)return elements;var nodes=$(element).getElementsByTagName('*');className=' '+className+' ';for(var i=0,child,cn;child=nodes[i];i++){if(child.className&&(cn=' '+child.className+' ')&&(cn.include(className)||(classNames&&classNames.all(function(name){return!name.toString().blank()&&cn.include(' '+name+' ');}))))
elements.push(Element.extend(child));}
return elements;};return function(className,parentElement){return $(parentElement||document.body).getElementsByClassName(className);};}(Element.Methods);Element.ClassNames=Class.create();Element.ClassNames.prototype={initialize:function(element){this.element=$(element);},_each:function(iterator){this.element.className.split(/\s+/).select(function(name){return name.length>0;})._each(iterator);},set:function(className){this.element.className=className;},add:function(classNameToAdd){if(this.include(classNameToAdd))return;this.set($A(this).concat(classNameToAdd).join(' '));},remove:function(classNameToRemove){if(!this.include(classNameToRemove))return;this.set($A(this).without(classNameToRemove).join(' '));},toString:function(){return $A(this).join(' ');}};Object.extend(Element.ClassNames.prototype,Enumerable);;
/* jQuery v1.7.1 jquery.com | jquery.org/license */
(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function cb(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function ca(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bE.test(a)?d(a,e):ca(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)ca(a+"["+e+"]",b[e],c,d);else d(a,b)}function b_(a,c){var d,e,g=f.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((g[d]?a:e||(e={}))[d]=c[d]);e&&f.extend(!0,a,e)}function b$(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bT,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=b$(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=b$(a,c,d,e,"*",g));return l}function bZ(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bP),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bC(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bx:by,g=0,h=e.length;if(d>0){if(c!=="border")for(;g<h;g++)c||(d-=parseFloat(f.css(a,"padding"+e[g]))||0),c==="margin"?d+=parseFloat(f.css(a,c+e[g]))||0:d-=parseFloat(f.css(a,"border"+e[g]+"Width"))||0;return d+"px"}d=bz(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0;if(c)for(;g<h;g++)d+=parseFloat(f.css(a,"padding"+e[g]))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+e[g]+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+e[g]))||0);return d+"px"}function bp(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bo(a){var b=c.createElement("div");bh.appendChild(b),b.innerHTML=a.outerHTML;return b.firstChild}function bn(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bm(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bm)}function bm(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bl(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bk(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bj(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d<e;d++)f.event.add(b,c+(i[c][d].namespace?".":"")+i[c][d].namespace,i[c][d],i[c][d].data)}h.data&&(h.data=f.extend({},h.data))}}function bi(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function U(a){var b=V.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function T(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(O.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c<d;c++)b[a[c]]=!0;return b}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b,c){var d;if(b){if(H)return H.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g={};f.Callbacks=function(a){a=a?g[a]||h(a):{};var c=[],d=[],e,i,j,k,l,m=function(b){var d,e,g,h,i;for(d=0,e=b.length;d<e;d++)g=b[d],h=f.type(g),h==="array"?m(g):h==="function"&&(!a.unique||!o.has(g))&&c.push(g)},n=function(b,f){f=f||[],e=!a.memory||[b,f],i=!0,l=j||0,j=0,k=c.length;for(;c&&l<k;l++)if(c[l].apply(b,f)===!1&&a.stopOnFalse){e=!0;break}i=!1,c&&(a.once?e===!0?o.disable():c=[]:d&&d.length&&(e=d.shift(),o.fireWith(e[0],e[1])))},o={add:function(){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this},remove:function(){if(c){var b=arguments,d=0,e=b.length;for(;d<e;d++)for(var f=0;f<c.length;f++)if(b[d]===c[f]){i&&f<=k&&(k--,f<=l&&l--),c.splice(f--,1);if(a.unique)break}}return this},has:function(a){if(c){var b=0,d=c.length;for(;b<d;b++)if(a===c[b])return!0}return!1},empty:function(){c=[];return this},disable:function(){c=d=e=b;return this},disabled:function(){return!c},lock:function(){d=b,(!e||e===!0)&&o.disable();return this},locked:function(){return!d},fireWith:function(b,c){d&&(i?a.once||d.push([b,c]):(!a.once||!e)&&n(b,c));return this},fire:function(){o.fireWith(this,arguments);return this},fired:function(){return!!e}};return o};var i=[].slice;f.extend({Deferred:function(a){var b=f.Callbacks("once memory"),c=f.Callbacks("once memory"),d=f.Callbacks("memory"),e="pending",g={resolve:b,reject:c,notify:d},h={done:b.add,fail:c.add,progress:d.add,state:function(){return e},isResolved:b.fired,isRejected:c.fired,then:function(a,b,c){i.done(a).fail(b).progress(c);return this},always:function(){i.done.apply(i,arguments).fail.apply(i,arguments);return this},pipe:function(a,b,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[b,"reject"],progress:[c,"notify"]},function(a,b){var c=b[0],e=b[1],g;f.isFunction(c)?i[a](function(){g=c.apply(this,arguments),g&&f.isFunction(g.promise)?g.promise().then(d.resolve,d.reject,d.notify):d[e+"With"](this===i?d:this,[g])}):i[a](d[e])})}).promise()},promise:function(a){if(a==null)a=h;else for(var b in h)a[b]=h[b];return a}},i=h.promise({}),j;for(j in g)i[j]=g[j].fire,i[j+"With"]=g[j].fireWith;i.done(function(){e="resolved"},c.disable,d.lock).fail(function(){e="rejected"},b.disable,d.lock),a&&a.call(i,i);return i},when:function(a){function m(a){return function(b){e[a]=arguments.length>1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c<d;c++)b[c]&&b[c].promise&&f.isFunction(b[c].promise)?b[c].promise().then(l(c),j.reject,m(c)):--g;g||j.resolveWith(j,b)}else j!==a&&j.resolveWith(j,d?[a]:[]);return k}}),f.support=function(){var b,d,e,g,h,i,j,k,l,m,n,o,p,q=c.createElement("div"),r=c.documentElement;q.setAttribute("className","t"),q.innerHTML="   <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="<div "+n+"><div></div></div>"+"<table "+n+" cellpadding='0' cellspacing='0'>"+"<tr><td></td></tr></table>",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="<div style='width:4px;'></div>",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e<g;e++)delete d[b[e]];if(!(c?m:f.isEmptyObject)(d))return}}if(!c){delete j[k].data;if(!m(j[k]))return}f.support.deleteExpando||!j.setInterval?delete j[k]:j[k]=null,i&&(f.support.deleteExpando?delete a[h]:a.removeAttribute?a.removeAttribute(h):a[h]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d,e,g,h=null;if(typeof a=="undefined"){if(this.length){h=f.data(this[0]);if(this[0].nodeType===1&&!f._data(this[0],"parsedAttrs")){e=this[0].attributes;for(var i=0,j=e.length;i<j;i++)g=e[i].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),l(this[0],g,h[g]));f._data(this[0],"parsedAttrs",!0)}}return h}if(typeof a=="object")return this.each(function(){f.data(this,a)});d=a.split("."),d[1]=d[1]?"."+d[1]:"";if(c===b){h=this.triggerHandler("getData"+d[1]+"!",[d[0]]),h===b&&this.length&&(h=f.data(this[0],a),h=l(this[0],a,h));return h===b&&d[1]?this.data(d[0]):h}return this.each(function(){var b=f(this),e=[d[0],c];b.triggerHandler("setData"+d[1]+"!",e),f.data(this,a,c),b.triggerHandler("changeData"+d[1]+"!",e)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f.Callbacks("once memory"),!0))h++,l.add(m);m();return d.promise()}});var o=/[\n\t\r]/g,p=/\s+/,q=/\r/g,r=/^(?:button|input)$/i,s=/^(?:button|input|object|select|textarea)$/i,t=/^a(?:rea)?$/i,u=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,v=f.support.getSetAttribute,w,x,y;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(p);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(o," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(p);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(o," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c<d;c++){e=i[c];if(e.selected&&(f.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!f.nodeName(e.parentNode,"optgroup"))){b=f(e).val();if(j)return b;h.push(b)}}if(j&&!h.length&&i.length)return f(i[g]).val();return h},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h<g;h++)e=d[h],e&&(c=f.propFix[e]||e,f.attr(a,e,""),a.removeAttribute(v?e:c),u.test(e)&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(r.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(w&&f.nodeName(a,"button"))return w.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(w&&f.nodeName(a,"button"))return w.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,g,h,i=a.nodeType;if(!!a&&i!==3&&i!==8&&i!==2){h=i!==1||!f.isXMLDoc(a),h&&(c=f.propFix[c]||c,g=f.propHooks[c]);return d!==b?g&&"set"in g&&(e=g.set(a,d,c))!==b?e:a[c]=d:g&&"get"in g&&(e=g.get(a,c))!==null?e:a[c]}},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):s.test(a.nodeName)||t.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabindex=f.propHooks.tabIndex,x={get:function(a,c){var d,e=f.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},v||(y={name:!0,id:!0},w=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&(y[c]?d.nodeValue!=="":d.specified)?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.attrHooks.tabindex.set=w.set,f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})}),f.attrHooks.contenteditable={get:w.get,set:function(a,b,c){b===""&&(b="false"),w.set(a,b,c)}}),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.enctype||(f.propFix.enctype="encoding"),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")};f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k<c.length;k++){l=A.exec(c[k])||[],m=l[1],n=(l[2]||"").split(".").sort(),s=f.event.special[m]||{},m=(g?s.delegateType:s.bindType)||m,s=f.event.special[m]||{},o=f.extend({type:m,origType:l[1],data:e,handler:d,guid:d.guid,selector:g,quick:G(g),namespace:n.join(".")},p),r=j[m];if(!r){r=j[m]=[],r.delegateCount=0;if(!s.setup||s.setup.call(a,e,n,i)===!1)a.addEventListener?a.addEventListener(m,i,!1):a.attachEvent&&a.attachEvent("on"+m,i)}s.add&&(s.add.call(a,o),o.handler.guid||(o.handler.guid=d.guid)),g?r.splice(r.delegateCount++,0,o):r.push(o),f.event.global[m]=!0}a=null}},global:{},remove:function(a,b,c,d,e){var g=f.hasData(a)&&f._data(a),h,i,j,k,l,m,n,o,p,q,r,s;if(!!g&&!!(o=g.events)){b=f.trim(I(b||"")).split(" ");for(h=0;h<b.length;h++){i=A.exec(b[h])||[],j=k=i[1],l=i[2];if(!j){for(j in o)f.event.remove(a,j+b[h],c,d,!0);continue}p=f.event.special[j]||{},j=(d?p.delegateType:p.bindType)||j,r=o[j]||[],m=r.length,l=l?new RegExp("(^|\\.)"+l.split(".").sort().join("\\.(?:.*\\.)?")+"(\\.|$)"):null;for(n=0;n<r.length;n++)s=r[n],(e||k===s.origType)&&(!c||c.guid===s.guid)&&(!l||l.test(s.namespace))&&(!d||d===s.selector||d==="**"&&s.selector)&&(r.splice(n--,1),s.selector&&r.delegateCount--,p.remove&&p.remove.call(a,s));r.length===0&&m!==r.length&&((!p.teardown||p.teardown.call(a,l)===!1)&&f.removeEvent(a,j,g.handle),delete o[j])}f.isEmptyObject(o)&&(q=g.handle,q&&(q.elem=null),f.removeData(a,["events","handle"],!0))}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){if(!e||e.nodeType!==3&&e.nodeType!==8){var h=c.type||c,i=[],j,k,l,m,n,o,p,q,r,s;if(E.test(h+f.event.triggered))return;h.indexOf("!")>=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l<r.length&&!c.isPropagationStopped();l++)m=r[l][0],c.type=r[l][1],q=(f._data(m,"events")||{})[c.type]&&f._data(m,"handle"),q&&q.apply(m,d),q=o&&m[o],q&&f.acceptData(m)&&q.apply(m,d)===!1&&c.preventDefault();c.type=h,!g&&!c.isDefaultPrevented()&&(!p._default||p._default.apply(e.ownerDocument,d)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)&&o&&e[h]&&(h!=="focus"&&h!=="blur"||c.target.offsetWidth!==0)&&!f.isWindow(e)&&(n=e[o],n&&(e[o]=null),f.event.triggered=h,e[h](),f.event.triggered=b,n&&(e[o]=n));return c.result}},dispatch:function(c){c=f.event.fix(c||a.event);var d=(f._data(this,"events")||{})[c.type]||[],e=d.delegateCount,g=[].slice.call(arguments,0),h=!c.exclusive&&!c.namespace,i=[],j,k,l,m,n,o,p,q,r,s,t;g[0]=c,c.delegateTarget=this;if(e&&!c.target.disabled&&(!c.button||c.type!=="click")){m=f(this),m.context=this.ownerDocument||this;for(l=c.target;l!=this;l=l.parentNode||this){o={},q=[],m[0]=l;for(j=0;j<e;j++)r=d[j],s=r.selector,o[s]===b&&(o[s]=r.quick?H(l,r.quick):m.is(s)),o[s]&&q.push(r);q.length&&i.push({elem:l,matches:q})}}d.length>e&&i.push({elem:this,matches:d.slice(e)});for(j=0;j<i.length&&!c.isPropagationStopped();j++){p=i[j],c.currentTarget=p.elem;for(k=0;k<p.matches.length&&!c.isImmediatePropagationStopped();k++){r=p.matches[k];if(h||!c.namespace&&!r.namespace||c.namespace_re&&c.namespace_re.test(r.namespace))c.data=r.data,c.handleObj=r,n=((f.event.special[r.origType]||{}).handle||r.handler).apply(p.elem,g),n!==b&&(c.result=n,n===!1&&(c.preventDefault(),c.stopPropagation()))}}return c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode);return a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,d){var e,f,g,h=d.button,i=d.fromElement;a.pageX==null&&d.clientX!=null&&(e=a.target.ownerDocument||c,f=e.documentElement,g=e.body,a.pageX=d.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=d.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?d.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0);return a}},fix:function(a){if(a[f.expando])return a;var d,e,g=a,h=f.event.fixHooks[a.type]||{},i=h.props?this.props.concat(h.props):this.props;a=f.Event(g);for(d=i.length;d;)e=i[--d],a[e]=g[e];a.target||(a.target=g.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey===b&&(a.metaKey=a.ctrlKey);return h.filter?h.filter(a,g):a},special:{ready:{setup:f.bindReady},load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=f.extend(new f.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?f.event.trigger(e,null,b):f.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},f.event.handle=f.event.dispatch,f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!(this instanceof f.Event))return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?K:J):this.type=a,b&&f.extend(this,b),this.timeStamp=a&&a.timeStamp||f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=K;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=K;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=K,this.stopPropagation()},isDefaultPrevented:J,isPropagationStopped:J,isImmediatePropagationStopped:J},f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c=this,d=a.relatedTarget,e=a.handleObj,g=e.selector,h;if(!d||d!==c&&!f.contains(c,d))a.type=e.origType,h=e.handler.apply(this,arguments),a.type=b;return h}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(){if(f.nodeName(this,"form"))return!1;f.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=f.nodeName(c,"input")||f.nodeName(c,"button")?c.form:b;d&&!d._submit_attached&&(f.event.add(d,"submit._submit",function(a){this.parentNode&&!a.isTrigger&&f.event.simulate("submit",this.parentNode,a,!0)}),d._submit_attached=!0)})},teardown:function(){if(f.nodeName(this,"form"))return!1;f.event.remove(this,"._submit")}}),f.support.changeBubbles||(f.event.special.change={setup:function(){if(z.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")f.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),f.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1,f.event.simulate("change",this,a,!0))});return!1}f.event.add(this,"beforeactivate._change",function(a){var b=a.target;z.test(b.nodeName)&&!b._change_attached&&(f.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&f.event.simulate("change",this.parentNode,a,!0)}),b._change_attached=!0)})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){f.event.remove(this,"._change");return z.test(this.nodeName)}}),f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){var d=0,e=function(a){f.event.simulate(b,a.target,f.event.fix(a),!0)};f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.fn.extend({on:function(a,c,d,e,g){var h,i;if(typeof a=="object"){typeof c!="string"&&(d=c,c=b);for(i in a)this.on(i,c,d,a[i],g);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=J;else if(!e)return this;g===1&&(h=e,e=function(a){f().off(a);return h.apply(this,arguments)},e.guid=h.guid||(h.guid=f.guid++));return this.each(function(){f.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on.call(this,a,b,c,d,1)},off:function(a,c,d){if(a&&a.preventDefault&&a.handleObj){var e=a.handleObj;f(a.delegateTarget).off(e.namespace?e.type+"."+e.namespace:e.type,e.selector,e.handler);return this}if(typeof a=="object"){for(var g in a)this.off(g,c,a[g]);return this}if(c===!1||typeof c=="function")d=c,c=b;d===!1&&(d=J);return this.each(function(){f.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){f(this.context).on(a,this.selector,b,c);return this},die:function(a,b){f(this.context).off(a,this.selector||"**",b);return this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length==1?this.off(a,"**"):this.off(b,a,c)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f._data(this,"lastToggle"+a.guid)||0)%d;f._data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}if(j.nodeType===1){g||(j[d]=c,j.sizset=h);if(typeof b!="string"){if(j===b){k=!0;break}}else if(m.filter(b,[j]).length>0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}j.nodeType===1&&!g&&(j[d]=c,j.sizset=h);if(j.nodeName.toLowerCase()===b){k=j;break}j=j[a]}e[h]=k}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},m.matches=function(a,b){return m(a,null,null,b)},m.matchesSelector=function(a,b){return m(b,null,null,[a]).length>0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e<f;e++){h=o.order[e];if(g=o.leftMatch[h].exec(a)){i=g[1],g.splice(1,1);if(i.substr(i.length-1)!=="\\"){g[1]=(g[1]||"").replace(j,""),d=o.find[h](g,b,c);if(d!=null){a=a.replace(o.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},m.filter=function(a,c,d,e){var f,g,h,i,j,k,l,n,p,q=a,r=[],s=c,t=c&&c[0]&&m.isXML(c[0]);while(a&&c.length){for(h in o.filter)if((f=o.leftMatch[h].exec(a))!=null&&f[2]){k=o.filter[h],l=f[1],g=!1,f.splice(1,1);if(l.substr(l.length-1)==="\\")continue;s===r&&(r=[]);if(o.preFilter[h]){f=o.preFilter[h](f,s,d,r,e,t);if(!f)g=i=!0;else if(f===!0)continue}if(f)for(n=0;(j=s[n])!=null;n++)j&&(i=k(j,f,n,s),p=e^i,d&&i!=null?p?g=!0:s[n]=!1:p&&(r.push(j),g=!0));if(i!==b){d||(s=r),a=a.replace(o.match[h],"");if(!g)return[];break}}if(a===q)if(g==null)m.error(a);else break;q=a}return s},m.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)};var n=m.getText=function(a){var b,c,d=a.nodeType,e="";if(d){if(d===1||d===9){if(typeof a.textContent=="string")return a.textContent;if(typeof a.innerText=="string")return a.innerText.replace(k,"");for(a=a.firstChild;a;a=a.nextSibling)e+=n(a)}else if(d===3||d===4)return a.nodeValue}else for(b=0;c=a[b];b++)c.nodeType!==8&&(e+=n(c));return e},o=m.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!l.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&m.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(j,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}m.error(e)},CHILD:function(a,b){var c,e,f,g,h,i,j,k=b[1],l=a;switch(k){case"only":case"first":while(l=l.previousSibling)if(l.nodeType===1)return!1;if(k==="first")return!0;l=a;case"last":while(l=l.nextSibling)if(l.nodeType===1)return!1;return!0;case"nth":c=b[2],e=b[3];if(c===1&&e===0)return!0;f=b[0],g=a.parentNode;if(g&&(g[d]!==f||!a.nodeIndex)){i=0;for(l=g.firstChild;l;l=l.nextSibling)l.nodeType===1&&(l.nodeIndex=++i);g[d]=f}j=a.nodeIndex-e;return c===0?j===0:j%c===0&&j/c>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var u,v;c.documentElement.compareDocumentPosition?u=function(a,b){if(a===b){h=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(u=function(a,b){if(a===b){h=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,i=b.parentNode,j=g;if(g===i)return v(a,b);if(!g)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return v(e[k],f[k]);return k===c?v(a,f[k],-1):v(e[k],b,1)},v=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h<i;h++)m(a,g[h],e,c);return m.filter(f,e)};m.attr=f.attr,m.selectors.attrMap={},f.find=m,f.expr=m.selectors,f.expr[":"]=f.expr.filters,f.unique=m.uniqueSort,f.text=m.getText,f.isXMLDoc=m.isXML,f.contains=m.contains}();var L=/Until$/,M=/^(?:parents|prevUntil|prevAll)/,N=/,/,O=/^.[^:#\[\.,]*$/,P=Array.prototype.slice,Q=f.expr.match.POS,R={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(T(this,a,!1),"not",a)},filter:function(a){return this.pushStack(T(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?Q.test(a)?f(a,this.context).index(this[0])>=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d<a.length;d++)f(g).is(a[d])&&c.push({selector:a[d],elem:g,level:h});g=g.parentNode,h++}return c}var i=Q.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(i?i.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/<tbody/i,_=/<|&#?\w+;/,ba=/<(?:script|style)/i,bb=/<(?:script|object|embed|option|style)/i,bc=new RegExp("<(?:"+V+")","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*<!(?:\[CDATA\[|\-\-)/,bg={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function()
{for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bd.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bi(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bp)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i,j=a[0];b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof j=="string"&&j.length<512&&i===c&&j.charAt(0)==="<"&&!bb.test(j)&&(f.support.checkClone||!bd.test(j))&&(f.support.html5Clone||!bc.test(j))&&(g=!0,h=f.fragments[j],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[j]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1></$2>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof(r=k.length)=="number")for(i=0;i<r;i++)bn(k[i]);else bn(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||be.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.event.special,g=f.support.deleteExpando;for(var h=0,i;(i=a[h])!=null;h++){if(i.nodeName&&f.noData[i.nodeName.toLowerCase()])continue;c=i[f.expando];if(c){b=d[c];if(b&&b.events){for(var j in b.events)e[j]?f.event.remove(i,j):f.removeEvent(i,j,b.handle);b.handle&&(b.handle.elem=null)}g?delete i[f.expando]:i.removeAttribute&&i.removeAttribute(f.expando),delete d[c]}}}});var bq=/alpha\([^)]*\)/i,br=/opacity=([^)]*)/,bs=/([A-Z]|^ms)/g,bt=/^-?\d+(?:px)?$/i,bu=/^-?\d/,bv=/^([\-+])=([\-+.\de]+)/,bw={position:"absolute",visibility:"hidden",display:"block"},bx=["Left","Right"],by=["Top","Bottom"],bz,bA,bB;f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bz(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bv.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bz)return bz(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){if(a.offsetWidth!==0)return bC(a,b,d);f.swap(a,bw,function(){e=bC(a,b,d)});return e}},set:function(a,b){if(!bt.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cv(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cu("hide",3),a,b,c);var d,e,g=0,h=this.length;for(;g<h;g++)d=this[g],d.style&&(e=f.css(d,"display"),e!=="none"&&!f._data(d,"olddisplay")&&f._data(d,"olddisplay",e));for(g=0;g<h;g++)this[g].style&&(this[g].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cu("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){function g(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(!f.support.inlineBlockNeedsLayout||cv(this.nodeName)==="inline"?this.style.display="inline-block":this.style.zoom=1))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)j=new f.fx(this,b,i),h=a[i],cn.test(h)?(o=f._data(this,"toggle"+i)||(h==="toggle"?d?"show":"hide":0),o?(f._data(this,"toggle"+i,o==="show"?"hide":"show"),j[o]()):j[h]()):(k=co.exec(h),l=j.cur(),k?(m=parseFloat(k[2]),n=k[3]||(f.cssNumber[i]?"":"px"),n!=="px"&&(f.style(this,i,(m||1)+n),l=(m||1)/j.cur()*l,f.style(this,i,l+n)),k[1]&&(m=(k[1]==="-="?-1:1)*m+l),j.custom(l,m,n)):j.custom(l,h,""));return!0}var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return e.queue===!1?this.each(g):this.queue(e.queue,g)},stop:function(a,c,d){typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]);return this.each(function(){function h(a,b,c){var e=b[c];f.removeData(a,c,!0),e.stop(d)}var b,c=!1,e=f.timers,g=f._data(this);d||f._unmark(!0,this);if(a==null)for(b in g)g[b]&&g[b].stop&&b.indexOf(".run")===b.length-4&&h(this,g,b);else g[b=a+".run"]&&g[b].stop&&h(this,g,b);for(b=e.length;b--;)e[b].elem===this&&(a==null||e[b].queue===a)&&(d?e[b](!0):e[b].saveState(),c=!0,e.splice(b,1));(!d||!c)&&f.dequeue(this,a)})}}),f.each({slideDown:cu("show",1),slideUp:cu("hide",1),slideToggle:cu("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue?f.dequeue(this,d.queue):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,c,d){function h(a){return e.step(a)}var e=this,g=f.fx;this.startTime=cr||cs(),this.end=c,this.now=this.start=a,this.pos=this.state=0,this.unit=d||this.unit||(f.cssNumber[this.prop]?"":"px"),h.queue=this.options.queue,h.elem=this.elem,h.saveState=function(){e.options.hide&&f._data(e.elem,"fxshow"+e.prop)===b&&f._data(e.elem,"fxshow"+e.prop,e.start)},h()&&f.timers.push(h)&&!cp&&(cp=setInterval(g.tick,g.interval))},show:function(){var a=f._data(this.elem,"fxshow"+this.prop);this.options.orig[this.prop]=a||f.style(this.elem,this.prop),this.options.show=!0,a!==b?this.custom(this.cur(),a):this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f._data(this.elem,"fxshow"+this.prop)||f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b,c,d,e=cr||cs(),g=!0,h=this.elem,i=this.options;if(a||e>=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||f.fx.stop()},interval:13,stop:function(){clearInterval(cp),cp=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=a.now+a.unit:a.elem[a.prop]=a.now}}}),f.each(["width","height"],function(a,b){f.fx.step[b]=function(a){f.style(a.elem,b,Math.max(0,a.now)+a.unit)}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cw=/^t(?:able|d|h)$/i,cx=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cy(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.support.fixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.support.doesNotAddBorder&&(!f.support.doesAddBorderForTableAndCells||!cw.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.support.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.support.fixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window);jQuery.noConflict();;(function($){$.fn.dcSlick=function(options){var defaults={classWrapper:'dc-slick',classContent:'dc-slick-content',idWrapper:'dc-slick-'+$(this).index(),location:'left',align:'top',offset:'100px',speed:'slow',tabText:'Click',classTab:'tab',classOpen:'slick-open',classClose:'slick-close',classToggle:'slick-toggle',autoClose:true,loadOpen:false,onLoad:function(){},beforeOpen:function(){},beforeClose:function(){}};var options=$.extend(defaults,options);var $dcSlickObj=this;return $dcSlickObj.each(function(options){var clWrap=defaults.classWrapper;var slickHtml=$dcSlickObj.html();$dcSlickObj.css('float','left');var objWidth=$dcSlickObj.width();$dcSlickObj.empty();var slickTab='<div class="'+defaults.classTab+'"><span>'+defaults.tabText+'</span></div>';$(this).hide();var idWrapper=defaults.idWrapper;var slider='<div id="'+idWrapper+'" class="'+clWrap+'">'+slickTab+'<div class="'+defaults.classContent+'">'+slickHtml+'</div></div>';$('body').append(slider);var $slider=$('#'+idWrapper);var $tab=$('.'+defaults.classTab,$slider);$tab.css({position:'absolute'});var linkOpen=$('.'+defaults.classOpen);var linkClose=$('.'+defaults.classClose);var linkToggle=$('.'+defaults.classToggle);var height=$slider.height();$slider.css('float','left');var outerW=$slider.outerWidth();var widthPx=outerW+'px';$slider.css('float','none');var outerH=$slider.outerHeight();var padH=outerH-height;var heightPx=outerH+'px';var bodyHeight=$(window).height();slickSetup($slider);if(defaults.autoClose==true){$('body').mouseup(function(e){if($slider.hasClass('active')){if(!$(e.target).parents('#'+defaults.idWrapper).length){if(!($(e.target).hasClass(defaults.classOpen)||$(e.target).hasClass(defaults.classToggle))){slickClose();}}}});}
$tab.click(function(){if($slider.hasClass('active')){slickClose();}else{slickOpen();}});$(linkOpen).click(function(e){slickOpen();e.preventDefault();});$(linkClose).click(function(e){if($slider.hasClass('active')){slickClose();}
e.preventDefault();});$(linkToggle).click(function(e){if($slider.hasClass('active')){slickClose();}else{slickOpen();}
e.preventDefault();});if(defaults.loadOpen==true){slickOpen();}
function slickOpen(){$('.'+clWrap).css({zIndex:10000});$slider.css({zIndex:10001});if(defaults.location=='bottom'){$slider.animate({marginBottom:"-=5px"},"fast").animate({marginBottom:0},defaults.speed);}
if(defaults.location=='top'){$slider.animate({marginTop:"-=5px"},"fast").animate({marginTop:0},defaults.speed);}
if(defaults.location=='left'){$slider.animate({marginLeft:"-=5px"},"fast").animate({marginLeft:0},defaults.speed);}
if(defaults.location=='right'){$slider.animate({marginRight:"-=5px"},"fast").animate({marginRight:0},defaults.speed);}
$slider.addClass('active');defaults.beforeOpen.call(this);}
function slickClose(){$slider.css({zIndex:10000});if($slider.hasClass('active')){var params={"marginBottom":"-"+heightPx};switch(defaults.location){case'top':params={"marginTop":"-"+heightPx};break;case'left':params={"marginLeft":"-"+widthPx};break;case'right':params={"marginRight":"-"+widthPx};break;}
$slider.removeClass('active').animate(params,defaults.speed);}
defaults.beforeClose.call(this);}
function slickSetup(obj){var $container=$('.'+defaults.classContent,obj);$(obj).addClass(defaults.location).addClass('align-'+defaults.align).css({position:'fixed',zIndex:10000});var bdrTop=$slider.css('border-top-width');var bdrRight=$slider.css('border-right-width');var bdrBottom=$slider.css('border-bottom-width');var bdrLeft=$slider.css('border-left-width');var $tab=$('.'+defaults.classTab,$slider);var tabWidth=$tab.outerWidth(true);var tabWidthPx=tabWidth+'px';var tabHeight=$tab.outerHeight(true);var tabHeightPx=tabHeight+'px';var containerH=$container.height();var containerPad=$container.outerHeight(true)-containerH;var maxHeight=bodyHeight-tabHeight;if(outerH>maxHeight){containerH=maxHeight-padH-containerPad;heightPx=maxHeight+'px';}
$container.css({height:containerH+'px'});var params={marginLeft:'-'+widthPx,top:defaults.offset};var paramsTab={marginRight:'-'+tabWidthPx}
if(defaults.location=='right'){params={marginRight:'-'+widthPx,top:defaults.offset};paramsTab={marginLeft:'-'+tabWidthPx};}
if(defaults.location=='top'){params={marginTop:'-'+heightPx};paramsTab={marginBottom:'-'+tabHeightPx};if(defaults.align=='left'){params={marginTop:'-'+heightPx,left:defaults.offset};paramsTab={marginBottom:'-'+tabHeightPx,left:0};}else{params={marginTop:'-'+heightPx,right:defaults.offset};paramsTab={marginBottom:'-'+tabHeightPx,right:0};}}
if(defaults.location=='bottom'){params={marginBottom:'-'+heightPx};paramsTab={marginTop:'-'+tabHeightPx};if(defaults.align=='left'){params={marginBottom:'-'+heightPx,left:defaults.offset};paramsTab={marginTop:'-'+tabHeightPx,left:0};}else{params={marginBottom:'-'+heightPx,right:defaults.offset};paramsTab={marginTop:'-'+tabHeightPx,right:0};}}
$(obj).css(params);$tab.css(paramsTab);defaults.onLoad.call(this);}});};})(jQuery);;var Scriptaculous={Version:'1.8.3',require:function(libraryName){try{document.write('<script type="text/javascript" src="'+libraryName+'"><\/script>');}catch(e){var script=document.createElement('script');script.type='text/javascript';script.src=libraryName;document.getElementsByTagName('head')[0].appendChild(script);}},REQUIRED_PROTOTYPE:'1.6.0.3',load:function(){function convertVersionString(versionString){var v=versionString.replace(/_.*|\./g,'');v=parseInt(v+'0'.times(4-v.length));return versionString.indexOf('_')>-1?v-1:v;}
if((typeof Prototype=='undefined')||(typeof Element=='undefined')||(typeof Element.Methods=='undefined')||(convertVersionString(Prototype.Version)<convertVersionString(Scriptaculous.REQUIRED_PROTOTYPE)))
throw("script.aculo.us requires the Prototype JavaScript framework >= "+
Scriptaculous.REQUIRED_PROTOTYPE);var js=/scriptaculous\.js(\?.*)?$/;$$('head script[src]').findAll(function(s){return s.src.match(js);}).each(function(s){var path=s.src.replace(js,''),includes=s.src.match(/\?.*load=([a-z,]*)/);if(includes){includes[1].split(',').each(function(include){Scriptaculous.require(path+include+'.js')});}});}};Scriptaculous.load();;String.prototype.parseColor=function(){var color='#';if(this.slice(0,4)=='rgb('){var cols=this.slice(4,this.length-1).split(',');var i=0;do{color+=parseInt(cols[i]).toColorPart()}while(++i<3);}else{if(this.slice(0,1)=='#'){if(this.length==4)for(var i=1;i<4;i++)color+=(this.charAt(i)+this.charAt(i)).toLowerCase();if(this.length==7)color=this.toLowerCase();}}
return(color.length==7?color:(arguments[0]||this));};Element.collectTextNodes=function(element){return $A($(element).childNodes).collect(function(node){return(node.nodeType==3?node.nodeValue:(node.hasChildNodes()?Element.collectTextNodes(node):''));}).flatten().join('');};Element.collectTextNodesIgnoreClass=function(element,className){return $A($(element).childNodes).collect(function(node){return(node.nodeType==3?node.nodeValue:((node.hasChildNodes()&&!Element.hasClassName(node,className))?Element.collectTextNodesIgnoreClass(node,className):''));}).flatten().join('');};Element.setContentZoom=function(element,percent){element=$(element);element.setStyle({fontSize:(percent/100)+'em'});if(Prototype.Browser.WebKit)window.scrollBy(0,0);return element;};Element.getInlineOpacity=function(element){return $(element).style.opacity||'';};Element.forceRerendering=function(element){try{element=$(element);var n=document.createTextNode(' ');element.appendChild(n);element.removeChild(n);}catch(e){}};var Effect={_elementDoesNotExistError:{name:'ElementDoesNotExistError',message:'The specified DOM element does not exist, but is required for this effect to operate'},Transitions:{linear:Prototype.K,sinoidal:function(pos){return(-Math.cos(pos*Math.PI)/2)+.5;},reverse:function(pos){return 1-pos;},flicker:function(pos){var pos=((-Math.cos(pos*Math.PI)/4)+.75)+Math.random()/4;return pos>1?1:pos;},wobble:function(pos){return(-Math.cos(pos*Math.PI*(9*pos))/2)+.5;},pulse:function(pos,pulses){return(-Math.cos((pos*((pulses||5)-.5)*2)*Math.PI)/2)+.5;},spring:function(pos){return 1-(Math.cos(pos*4.5*Math.PI)*Math.exp(-pos*6));},none:function(pos){return 0;},full:function(pos){return 1;}},DefaultOptions:{duration:1.0,fps:100,sync:false,from:0.0,to:1.0,delay:0.0,queue:'parallel'},tagifyText:function(element){var tagifyStyle='position:relative';if(Prototype.Browser.IE)tagifyStyle+=';zoom:1';element=$(element);$A(element.childNodes).each(function(child){if(child.nodeType==3){child.nodeValue.toArray().each(function(character){element.insertBefore(new Element('span',{style:tagifyStyle}).update(character==' '?String.fromCharCode(160):character),child);});Element.remove(child);}});},multiple:function(element,effect){var elements;if(((typeof element=='object')||Object.isFunction(element))&&(element.length))
elements=element;else
elements=$(element).childNodes;var options=Object.extend({speed:0.1,delay:0.0},arguments[2]||{});var masterDelay=options.delay;$A(elements).each(function(element,index){new effect(element,Object.extend(options,{delay:index*options.speed+masterDelay}));});},PAIRS:{'slide':['SlideDown','SlideUp'],'blind':['BlindDown','BlindUp'],'appear':['Appear','Fade']},toggle:function(element,effect,options){element=$(element);effect=(effect||'appear').toLowerCase();return Effect[Effect.PAIRS[effect][element.visible()?1:0]](element,Object.extend({queue:{position:'end',scope:(element.id||'global'),limit:1}},options||{}));}};Effect.DefaultOptions.transition=Effect.Transitions.sinoidal;Effect.ScopedQueue=Class.create(Enumerable,{initialize:function(){this.effects=[];this.interval=null;},_each:function(iterator){this.effects._each(iterator);},add:function(effect){var timestamp=new Date().getTime();var position=Object.isString(effect.options.queue)?effect.options.queue:effect.options.queue.position;switch(position){case'front':this.effects.findAll(function(e){return e.state=='idle'}).each(function(e){e.startOn+=effect.finishOn;e.finishOn+=effect.finishOn;});break;case'with-last':timestamp=this.effects.pluck('startOn').max()||timestamp;break;case'end':timestamp=this.effects.pluck('finishOn').max()||timestamp;break;}
effect.startOn+=timestamp;effect.finishOn+=timestamp;if(!effect.options.queue.limit||(this.effects.length<effect.options.queue.limit))
this.effects.push(effect);if(!this.interval)
this.interval=setInterval(this.loop.bind(this),15);},remove:function(effect){this.effects=this.effects.reject(function(e){return e==effect});if(this.effects.length==0){clearInterval(this.interval);this.interval=null;}},loop:function(){var timePos=new Date().getTime();for(var i=0,len=this.effects.length;i<len;i++)
this.effects[i]&&this.effects[i].loop(timePos);}});Effect.Queues={instances:$H(),get:function(queueName){if(!Object.isString(queueName))return queueName;return this.instances.get(queueName)||this.instances.set(queueName,new Effect.ScopedQueue());}};Effect.Queue=Effect.Queues.get('global');Effect.Base=Class.create({position:null,start:function(options){if(options&&options.transition===false)options.transition=Effect.Transitions.linear;this.options=Object.extend(Object.extend({},Effect.DefaultOptions),options||{});this.currentFrame=0;this.state='idle';this.startOn=this.options.delay*1000;this.finishOn=this.startOn+(this.options.duration*1000);this.fromToDelta=this.options.to-this.options.from;this.totalTime=this.finishOn-this.startOn;this.totalFrames=this.options.fps*this.options.duration;this.render=(function(){function dispatch(effect,eventName){if(effect.options[eventName+'Internal'])
effect.options[eventName+'Internal'](effect);if(effect.options[eventName])
effect.options[eventName](effect);}
return function(pos){if(this.state==="idle"){this.state="running";dispatch(this,'beforeSetup');if(this.setup)this.setup();dispatch(this,'afterSetup');}
if(this.state==="running"){pos=(this.options.transition(pos)*this.fromToDelta)+this.options.from;this.position=pos;dispatch(this,'beforeUpdate');if(this.update)this.update(pos);dispatch(this,'afterUpdate');}};})();this.event('beforeStart');if(!this.options.sync)
Effect.Queues.get(Object.isString(this.options.queue)?'global':this.options.queue.scope).add(this);},loop:function(timePos){if(timePos>=this.startOn){if(timePos>=this.finishOn){this.render(1.0);this.cancel();this.event('beforeFinish');if(this.finish)this.finish();this.event('afterFinish');return;}
var pos=(timePos-this.startOn)/this.totalTime,frame=(pos*this.totalFrames).round();if(frame>this.currentFrame){this.render(pos);this.currentFrame=frame;}}},cancel:function(){if(!this.options.sync)
Effect.Queues.get(Object.isString(this.options.queue)?'global':this.options.queue.scope).remove(this);this.state='finished';},event:function(eventName){if(this.options[eventName+'Internal'])this.options[eventName+'Internal'](this);if(this.options[eventName])this.options[eventName](this);},inspect:function(){var data=$H();for(property in this)
if(!Object.isFunction(this[property]))data.set(property,this[property]);return'#<Effect:'+data.inspect()+',options:'+$H(this.options).inspect()+'>';}});Effect.Parallel=Class.create(Effect.Base,{initialize:function(effects){this.effects=effects||[];this.start(arguments[1]);},update:function(position){this.effects.invoke('render',position);},finish:function(position){this.effects.each(function(effect){effect.render(1.0);effect.cancel();effect.event('beforeFinish');if(effect.finish)effect.finish(position);effect.event('afterFinish');});}});Effect.Tween=Class.create(Effect.Base,{initialize:function(object,from,to){object=Object.isString(object)?$(object):object;var args=$A(arguments),method=args.last(),options=args.length==5?args[3]:null;this.method=Object.isFunction(method)?method.bind(object):Object.isFunction(object[method])?object[method].bind(object):function(value){object[method]=value};this.start(Object.extend({from:from,to:to},options||{}));},update:function(position){this.method(position);}});Effect.Event=Class.create(Effect.Base,{initialize:function(){this.start(Object.extend({duration:0},arguments[0]||{}));},update:Prototype.emptyFunction});Effect.Opacity=Class.create(Effect.Base,{initialize:function(element){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);if(Prototype.Browser.IE&&(!this.element.currentStyle.hasLayout))
this.element.setStyle({zoom:1});var options=Object.extend({from:this.element.getOpacity()||0.0,to:1.0},arguments[1]||{});this.start(options);},update:function(position){this.element.setOpacity(position);}});Effect.Move=Class.create(Effect.Base,{initialize:function(element){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);var options=Object.extend({x:0,y:0,mode:'relative'},arguments[1]||{});this.start(options);},setup:function(){this.element.makePositioned();this.originalLeft=parseFloat(this.element.getStyle('left')||'0');this.originalTop=parseFloat(this.element.getStyle('top')||'0');if(this.options.mode=='absolute'){this.options.x=this.options.x-this.originalLeft;this.options.y=this.options.y-this.originalTop;}},update:function(position){this.element.setStyle({left:(this.options.x*position+this.originalLeft).round()+'px',top:(this.options.y*position+this.originalTop).round()+'px'});}});Effect.MoveBy=function(element,toTop,toLeft){return new Effect.Move(element,Object.extend({x:toLeft,y:toTop},arguments[3]||{}));};Effect.Scale=Class.create(Effect.Base,{initialize:function(element,percent){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);var options=Object.extend({scaleX:true,scaleY:true,scaleContent:true,scaleFromCenter:false,scaleMode:'box',scaleFrom:100.0,scaleTo:percent},arguments[2]||{});this.start(options);},setup:function(){this.restoreAfterFinish=this.options.restoreAfterFinish||false;this.elementPositioning=this.element.getStyle('position');this.originalStyle={};['top','left','width','height','fontSize'].each(function(k){this.originalStyle[k]=this.element.style[k];}.bind(this));this.originalTop=this.element.offsetTop;this.originalLeft=this.element.offsetLeft;var fontSize=this.element.getStyle('font-size')||'100%';['em','px','%','pt'].each(function(fontSizeType){if(fontSize.indexOf(fontSizeType)>0){this.fontSize=parseFloat(fontSize);this.fontSizeType=fontSizeType;}}.bind(this));this.factor=(this.options.scaleTo-this.options.scaleFrom)/100;this.dims=null;if(this.options.scaleMode=='box')
this.dims=[this.element.offsetHeight,this.element.offsetWidth];if(/^content/.test(this.options.scaleMode))
this.dims=[this.element.scrollHeight,this.element.scrollWidth];if(!this.dims)
this.dims=[this.options.scaleMode.originalHeight,this.options.scaleMode.originalWidth];},update:function(position){var currentScale=(this.options.scaleFrom/100.0)+(this.factor*position);if(this.options.scaleContent&&this.fontSize)
this.element.setStyle({fontSize:this.fontSize*currentScale+this.fontSizeType});this.setDimensions(this.dims[0]*currentScale,this.dims[1]*currentScale);},finish:function(position){if(this.restoreAfterFinish)this.element.setStyle(this.originalStyle);},setDimensions:function(height,width){var d={};if(this.options.scaleX)d.width=width.round()+'px';if(this.options.scaleY)d.height=height.round()+'px';if(this.options.scaleFromCenter){var topd=(height-this.dims[0])/2;var leftd=(width-this.dims[1])/2;if(this.elementPositioning=='absolute'){if(this.options.scaleY)d.top=this.originalTop-topd+'px';if(this.options.scaleX)d.left=this.originalLeft-leftd+'px';}else{if(this.options.scaleY)d.top=-topd+'px';if(this.options.scaleX)d.left=-leftd+'px';}}
this.element.setStyle(d);}});Effect.Highlight=Class.create(Effect.Base,{initialize:function(element){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);var options=Object.extend({startcolor:'#ffff99'},arguments[1]||{});this.start(options);},setup:function(){if(this.element.getStyle('display')=='none'){this.cancel();return;}
this.oldStyle={};if(!this.options.keepBackgroundImage){this.oldStyle.backgroundImage=this.element.getStyle('background-image');this.element.setStyle({backgroundImage:'none'});}
if(!this.options.endcolor)
this.options.endcolor=this.element.getStyle('background-color').parseColor('#ffffff');if(!this.options.restorecolor)
this.options.restorecolor=this.element.getStyle('background-color');this._base=$R(0,2).map(function(i){return parseInt(this.options.startcolor.slice(i*2+1,i*2+3),16)}.bind(this));this._delta=$R(0,2).map(function(i){return parseInt(this.options.endcolor.slice(i*2+1,i*2+3),16)-this._base[i]}.bind(this));},update:function(position){this.element.setStyle({backgroundColor:$R(0,2).inject('#',function(m,v,i){return m+((this._base[i]+(this._delta[i]*position)).round().toColorPart());}.bind(this))});},finish:function(){this.element.setStyle(Object.extend(this.oldStyle,{backgroundColor:this.options.restorecolor}));}});Effect.ScrollTo=function(element){var options=arguments[1]||{},scrollOffsets=document.viewport.getScrollOffsets(),elementOffsets=$(element).cumulativeOffset();if(options.offset)elementOffsets[1]+=options.offset;return new Effect.Tween(null,scrollOffsets.top,elementOffsets[1],options,function(p){scrollTo(scrollOffsets.left,p.round());});};Effect.Fade=function(element){element=$(element);var oldOpacity=element.getInlineOpacity();var options=Object.extend({from:element.getOpacity()||1.0,to:0.0,afterFinishInternal:function(effect){if(effect.options.to!=0)return;effect.element.hide().setStyle({opacity:oldOpacity});}},arguments[1]||{});return new Effect.Opacity(element,options);};Effect.Appear=function(element){element=$(element);var options=Object.extend({from:(element.getStyle('display')=='none'?0.0:element.getOpacity()||0.0),to:1.0,afterFinishInternal:function(effect){effect.element.forceRerendering();},beforeSetup:function(effect){effect.element.setOpacity(effect.options.from).show();}},arguments[1]||{});return new Effect.Opacity(element,options);};Effect.Puff=function(element){element=$(element);var oldStyle={opacity:element.getInlineOpacity(),position:element.getStyle('position'),top:element.style.top,left:element.style.left,width:element.style.width,height:element.style.height};return new Effect.Parallel([new Effect.Scale(element,200,{sync:true,scaleFromCenter:true,scaleContent:true,restoreAfterFinish:true}),new Effect.Opacity(element,{sync:true,to:0.0})],Object.extend({duration:1.0,beforeSetupInternal:function(effect){Position.absolutize(effect.effects[0].element);},afterFinishInternal:function(effect){effect.effects[0].element.hide().setStyle(oldStyle);}},arguments[1]||{}));};Effect.BlindUp=function(element){element=$(element);element.makeClipping();return new Effect.Scale(element,0,Object.extend({scaleContent:false,scaleX:false,restoreAfterFinish:true,afterFinishInternal:function(effect){effect.element.hide().undoClipping();}},arguments[1]||{}));};Effect.BlindDown=function(element){element=$(element);var elementDimensions=element.getDimensions();return new Effect.Scale(element,100,Object.extend({scaleContent:false,scaleX:false,scaleFrom:0,scaleMode:{originalHeight:elementDimensions.height,originalWidth:elementDimensions.width},restoreAfterFinish:true,afterSetup:function(effect){effect.element.makeClipping().setStyle({height:'0px'}).show();},afterFinishInternal:function(effect){effect.element.undoClipping();}},arguments[1]||{}));};Effect.SwitchOff=function(element){element=$(element);var oldOpacity=element.getInlineOpacity();return new Effect.Appear(element,Object.extend({duration:0.4,from:0,transition:Effect.Transitions.flicker,afterFinishInternal:function(effect){new Effect.Scale(effect.element,1,{duration:0.3,scaleFromCenter:true,scaleX:false,scaleContent:false,restoreAfterFinish:true,beforeSetup:function(effect){effect.element.makePositioned().makeClipping();},afterFinishInternal:function(effect){effect.element.hide().undoClipping().undoPositioned().setStyle({opacity:oldOpacity});}});}},arguments[1]||{}));};Effect.DropOut=function(element){element=$(element);var oldStyle={top:element.getStyle('top'),left:element.getStyle('left'),opacity:element.getInlineOpacity()};return new Effect.Parallel([new Effect.Move(element,{x:0,y:100,sync:true}),new Effect.Opacity(element,{sync:true,to:0.0})],Object.extend({duration:0.5,beforeSetup:function(effect){effect.effects[0].element.makePositioned();},afterFinishInternal:function(effect){effect.effects[0].element.hide().undoPositioned().setStyle(oldStyle);}},arguments[1]||{}));};Effect.Shake=function(element){element=$(element);var options=Object.extend({distance:20,duration:0.5},arguments[1]||{});var distance=parseFloat(options.distance);var split=parseFloat(options.duration)/10.0;var oldStyle={top:element.getStyle('top'),left:element.getStyle('left')};return new Effect.Move(element,{x:distance,y:0,duration:split,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:-distance*2,y:0,duration:split*2,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:distance*2,y:0,duration:split*2,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:-distance*2,y:0,duration:split*2,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:distance*2,y:0,duration:split*2,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:-distance,y:0,duration:split,afterFinishInternal:function(effect){effect.element.undoPositioned().setStyle(oldStyle);}});}});}});}});}});}});};Effect.SlideDown=function(element){element=$(element).cleanWhitespace();var oldInnerBottom=element.down().getStyle('bottom');var elementDimensions=element.getDimensions();return new Effect.Scale(element,100,Object.extend({scaleContent:false,scaleX:false,scaleFrom:window.opera?0:1,scaleMode:{originalHeight:elementDimensions.height,originalWidth:elementDimensions.width},restoreAfterFinish:true,afterSetup:function(effect){effect.element.makePositioned();effect.element.down().makePositioned();if(window.opera)effect.element.setStyle({top:''});effect.element.makeClipping().setStyle({height:'0px'}).show();},afterUpdateInternal:function(effect){effect.element.down().setStyle({bottom:(effect.dims[0]-effect.element.clientHeight)+'px'});},afterFinishInternal:function(effect){effect.element.undoClipping().undoPositioned();effect.element.down().undoPositioned().setStyle({bottom:oldInnerBottom});}},arguments[1]||{}));};Effect.SlideUp=function(element){element=$(element).cleanWhitespace();var oldInnerBottom=element.down().getStyle('bottom');var elementDimensions=element.getDimensions();return new Effect.Scale(element,window.opera?0:1,Object.extend({scaleContent:false,scaleX:false,scaleMode:'box',scaleFrom:100,scaleMode:{originalHeight:elementDimensions.height,originalWidth:elementDimensions.width},restoreAfterFinish:true,afterSetup:function(effect){effect.element.makePositioned();effect.element.down().makePositioned();if(window.opera)effect.element.setStyle({top:''});effect.element.makeClipping().show();},afterUpdateInternal:function(effect){effect.element.down().setStyle({bottom:(effect.dims[0]-effect.element.clientHeight)+'px'});},afterFinishInternal:function(effect){effect.element.hide().undoClipping().undoPositioned();effect.element.down().undoPositioned().setStyle({bottom:oldInnerBottom});}},arguments[1]||{}));};Effect.Squish=function(element){return new Effect.Scale(element,window.opera?1:0,{restoreAfterFinish:true,beforeSetup:function(effect){effect.element.makeClipping();},afterFinishInternal:function(effect){effect.element.hide().undoClipping();}});};Effect.Grow=function(element){element=$(element);var options=Object.extend({direction:'center',moveTransition:Effect.Transitions.sinoidal,scaleTransition:Effect.Transitions.sinoidal,opacityTransition:Effect.Transitions.full},arguments[1]||{});var oldStyle={top:element.style.top,left:element.style.left,height:element.style.height,width:element.style.width,opacity:element.getInlineOpacity()};var dims=element.getDimensions();var initialMoveX,initialMoveY;var moveX,moveY;switch(options.direction){case'top-left':initialMoveX=initialMoveY=moveX=moveY=0;break;case'top-right':initialMoveX=dims.width;initialMoveY=moveY=0;moveX=-dims.width;break;case'bottom-left':initialMoveX=moveX=0;initialMoveY=dims.height;moveY=-dims.height;break;case'bottom-right':initialMoveX=dims.width;initialMoveY=dims.height;moveX=-dims.width;moveY=-dims.height;break;case'center':initialMoveX=dims.width/2;initialMoveY=dims.height/2;moveX=-dims.width/2;moveY=-dims.height/2;break;}
return new Effect.Move(element,{x:initialMoveX,y:initialMoveY,duration:0.01,beforeSetup:function(effect){effect.element.hide().makeClipping().makePositioned();},afterFinishInternal:function(effect){new Effect.Parallel([new Effect.Opacity(effect.element,{sync:true,to:1.0,from:0.0,transition:options.opacityTransition}),new Effect.Move(effect.element,{x:moveX,y:moveY,sync:true,transition:options.moveTransition}),new Effect.Scale(effect.element,100,{scaleMode:{originalHeight:dims.height,originalWidth:dims.width},sync:true,scaleFrom:window.opera?1:0,transition:options.scaleTransition,restoreAfterFinish:true})],Object.extend({beforeSetup:function(effect){effect.effects[0].element.setStyle({height:'0px'}).show();},afterFinishInternal:function(effect){effect.effects[0].element.undoClipping().undoPositioned().setStyle(oldStyle);}},options));}});};Effect.Shrink=function(element){element=$(element);var options=Object.extend({direction:'center',moveTransition:Effect.Transitions.sinoidal,scaleTransition:Effect.Transitions.sinoidal,opacityTransition:Effect.Transitions.none},arguments[1]||{});var oldStyle={top:element.style.top,left:element.style.left,height:element.style.height,width:element.style.width,opacity:element.getInlineOpacity()};var dims=element.getDimensions();var moveX,moveY;switch(options.direction){case'top-left':moveX=moveY=0;break;case'top-right':moveX=dims.width;moveY=0;break;case'bottom-left':moveX=0;moveY=dims.height;break;case'bottom-right':moveX=dims.width;moveY=dims.height;break;case'center':moveX=dims.width/2;moveY=dims.height/2;break;}
return new Effect.Parallel([new Effect.Opacity(element,{sync:true,to:0.0,from:1.0,transition:options.opacityTransition}),new Effect.Scale(element,window.opera?1:0,{sync:true,transition:options.scaleTransition,restoreAfterFinish:true}),new Effect.Move(element,{x:moveX,y:moveY,sync:true,transition:options.moveTransition})],Object.extend({beforeStartInternal:function(effect){effect.effects[0].element.makePositioned().makeClipping();},afterFinishInternal:function(effect){effect.effects[0].element.hide().undoClipping().undoPositioned().setStyle(oldStyle);}},options));};Effect.Pulsate=function(element){element=$(element);var options=arguments[1]||{},oldOpacity=element.getInlineOpacity(),transition=options.transition||Effect.Transitions.linear,reverser=function(pos){return 1-transition((-Math.cos((pos*(options.pulses||5)*2)*Math.PI)/2)+.5);};return new Effect.Opacity(element,Object.extend(Object.extend({duration:2.0,from:0,afterFinishInternal:function(effect){effect.element.setStyle({opacity:oldOpacity});}},options),{transition:reverser}));};Effect.Fold=function(element){element=$(element);var oldStyle={top:element.style.top,left:element.style.left,width:element.style.width,height:element.style.height};element.makeClipping();return new Effect.Scale(element,5,Object.extend({scaleContent:false,scaleX:false,afterFinishInternal:function(effect){new Effect.Scale(element,1,{scaleContent:false,scaleY:false,afterFinishInternal:function(effect){effect.element.hide().undoClipping().setStyle(oldStyle);}});}},arguments[1]||{}));};Effect.Morph=Class.create(Effect.Base,{initialize:function(element){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);var options=Object.extend({style:{}},arguments[1]||{});if(!Object.isString(options.style))this.style=$H(options.style);else{if(options.style.include(':'))
this.style=options.style.parseStyle();else{this.element.addClassName(options.style);this.style=$H(this.element.getStyles());this.element.removeClassName(options.style);var css=this.element.getStyles();this.style=this.style.reject(function(style){return style.value==css[style.key];});options.afterFinishInternal=function(effect){effect.element.addClassName(effect.options.style);effect.transforms.each(function(transform){effect.element.style[transform.style]='';});};}}
this.start(options);},setup:function(){function parseColor(color){if(!color||['rgba(0, 0, 0, 0)','transparent'].include(color))color='#ffffff';color=color.parseColor();return $R(0,2).map(function(i){return parseInt(color.slice(i*2+1,i*2+3),16);});}
this.transforms=this.style.map(function(pair){var property=pair[0],value=pair[1],unit=null;if(value.parseColor('#zzzzzz')!='#zzzzzz'){value=value.parseColor();unit='color';}else if(property=='opacity'){value=parseFloat(value);if(Prototype.Browser.IE&&(!this.element.currentStyle.hasLayout))
this.element.setStyle({zoom:1});}else if(Element.CSS_LENGTH.test(value)){var components=value.match(/^([\+\-]?[0-9\.]+)(.*)$/);value=parseFloat(components[1]);unit=(components.length==3)?components[2]:null;}
var originalValue=this.element.getStyle(property);return{style:property.camelize(),originalValue:unit=='color'?parseColor(originalValue):parseFloat(originalValue||0),targetValue:unit=='color'?parseColor(value):value,unit:unit};}.bind(this)).reject(function(transform){return((transform.originalValue==transform.targetValue)||(transform.unit!='color'&&(isNaN(transform.originalValue)||isNaN(transform.targetValue))));});},update:function(position){var style={},transform,i=this.transforms.length;while(i--)
style[(transform=this.transforms[i]).style]=transform.unit=='color'?'#'+
(Math.round(transform.originalValue[0]+
(transform.targetValue[0]-transform.originalValue[0])*position)).toColorPart()+
(Math.round(transform.originalValue[1]+
(transform.targetValue[1]-transform.originalValue[1])*position)).toColorPart()+
(Math.round(transform.originalValue[2]+
(transform.targetValue[2]-transform.originalValue[2])*position)).toColorPart():(transform.originalValue+
(transform.targetValue-transform.originalValue)*position).toFixed(3)+
(transform.unit===null?'':transform.unit);this.element.setStyle(style,true);}});Effect.Transform=Class.create({initialize:function(tracks){this.tracks=[];this.options=arguments[1]||{};this.addTracks(tracks);},addTracks:function(tracks){tracks.each(function(track){track=$H(track);var data=track.values().first();this.tracks.push($H({ids:track.keys().first(),effect:Effect.Morph,options:{style:data}}));}.bind(this));return this;},play:function(){return new Effect.Parallel(this.tracks.map(function(track){var ids=track.get('ids'),effect=track.get('effect'),options=track.get('options');var elements=[$(ids)||$$(ids)].flatten();return elements.map(function(e){return new effect(e,Object.extend({sync:true},options))});}).flatten(),this.options);}});Element.CSS_PROPERTIES=$w('backgroundColor backgroundPosition borderBottomColor borderBottomStyle '+'borderBottomWidth borderLeftColor borderLeftStyle borderLeftWidth '+'borderRightColor borderRightStyle borderRightWidth borderSpacing '+'borderTopColor borderTopStyle borderTopWidth bottom clip color '+'fontSize fontWeight height left letterSpacing lineHeight '+'marginBottom marginLeft marginRight marginTop markerOffset maxHeight '+'maxWidth minHeight minWidth opacity outlineColor outlineOffset '+'outlineWidth paddingBottom paddingLeft paddingRight paddingTop '+'right textIndent top width wordSpacing zIndex');Element.CSS_LENGTH=/^(([\+\-]?[0-9\.]+)(em|ex|px|in|cm|mm|pt|pc|\%))|0$/;String.__parseStyleElement=document.createElement('div');String.prototype.parseStyle=function(){var style,styleRules=$H();if(Prototype.Browser.WebKit)
style=new Element('div',{style:this}).style;else{String.__parseStyleElement.innerHTML='<div style="'+this+'"></div>';style=String.__parseStyleElement.childNodes[0].style;}
Element.CSS_PROPERTIES.each(function(property){if(style[property])styleRules.set(property,style[property]);});if(Prototype.Browser.IE&&this.include('opacity'))
styleRules.set('opacity',this.match(/opacity:\s*((?:0|1)?(?:\.\d*)?)/)[1]);return styleRules;};if(document.defaultView&&document.defaultView.getComputedStyle){Element.getStyles=function(element){var css=document.defaultView.getComputedStyle($(element),null);return Element.CSS_PROPERTIES.inject({},function(styles,property){styles[property]=css[property];return styles;});};}else{Element.getStyles=function(element){element=$(element);var css=element.currentStyle,styles;styles=Element.CSS_PROPERTIES.inject({},function(results,property){results[property]=css[property];return results;});if(!styles.opacity)styles.opacity=element.getOpacity();return styles;};}
Effect.Methods={morph:function(element,style){element=$(element);new Effect.Morph(element,Object.extend({style:style},arguments[2]||{}));return element;},visualEffect:function(element,effect,options){element=$(element);var s=effect.dasherize().camelize(),klass=s.charAt(0).toUpperCase()+s.substring(1);new Effect[klass](element,options);return element;},highlight:function(element,options){element=$(element);new Effect.Highlight(element,options);return element;}};$w('fade appear grow shrink fold blindUp blindDown slideUp slideDown '+'pulsate shake puff squish switchOff dropOut').each(function(effect){Effect.Methods[effect]=function(element,options){element=$(element);Effect[effect.charAt(0).toUpperCase()+effect.substring(1)](element,options);return element;};});$w('getInlineOpacity forceRerendering setContentZoom collectTextNodes collectTextNodesIgnoreClass getStyles').each(function(f){Effect.Methods[f]=Element[f];});Element.addMethods(Effect.Methods);;var overlayOpacity=0.8;var animate=true;var resizeSpeed=9;var borderSize=10;var imageArray=new Array;var activeImage;if(animate==true){overlayDuration=0.2;if(resizeSpeed>10){resizeSpeed=10;}
if(resizeSpeed<1){resizeSpeed=1;}
resizeDuration=(11-resizeSpeed)*0.15;}else{overlayDuration=0;resizeDuration=0;}
Object.extend(Element,{getWidth:function(element){element=$(element);return element.offsetWidth;},setWidth:function(element,w){element=$(element);element.style.width=w+"px";},setHeight:function(element,h){element=$(element);element.style.height=h+"px";},setTop:function(element,t){element=$(element);element.style.top=t+"px";},setLeft:function(element,l){element=$(element);element.style.left=l+"px";},setSrc:function(element,src){element=$(element);element.src=src;},setHref:function(element,href){element=$(element);element.href=href;},setInnerHTML:function(element,content){element=$(element);element.innerHTML=content;}});Array.prototype.removeDuplicates=function(){for(i=0;i<this.length;i++){for(j=this.length-1;j>i;j--){if(this[i][0]==this[j][0]){this.splice(j,1);}}}}
Array.prototype.empty=function(){for(i=0;i<=this.length;i++){this.shift();}}
var Lightbox=Class.create();Lightbox.prototype={initialize:function(){this.updateImageList();var objBody=document.getElementsByTagName("body").item(0);var objOverlay=document.createElement("div");objOverlay.setAttribute('id','stimuli_overlay');objOverlay.style.display='none';objOverlay.onclick=function(){myLightbox.end();}
objBody.appendChild(objOverlay);var objLightbox=document.createElement("div");objLightbox.setAttribute('id','stimuli_lightbox');objLightbox.style.display='none';objLightbox.onclick=function(e){if(!e)var e=window.event;var clickObj=Event.element(e).id;if(clickObj=='stimuli_lightbox'){myLightbox.end();}};objBody.appendChild(objLightbox);var objOuterImageContainer=document.createElement("div");objOuterImageContainer.setAttribute('id','stimuli_outerImageContainer');objLightbox.appendChild(objOuterImageContainer);if(animate){Element.setWidth('stimuli_outerImageContainer',250);Element.setHeight('stimuli_outerImageContainer',250);}else{Element.setWidth('stimuli_outerImageContainer',1);Element.setHeight('stimuli_outerImageContainer',1);}
var objImageContainer=document.createElement("div");objImageContainer.setAttribute('id','stimuli_imageContainer');objOuterImageContainer.appendChild(objImageContainer);var objLightboxImage=document.createElement("img");objLightboxImage.setAttribute('id','stimuli_lightboxImage');objImageContainer.appendChild(objLightboxImage);var objHoverNav=document.createElement("div");objHoverNav.setAttribute('id','stimuli_hoverNav');objImageContainer.appendChild(objHoverNav);var objPrevLink=document.createElement("a");objPrevLink.setAttribute('id','stimuli_prevLink');objPrevLink.setAttribute('href','#');objHoverNav.appendChild(objPrevLink);var objNextLink=document.createElement("a");objNextLink.setAttribute('id','stimuli_nextLink');objNextLink.setAttribute('href','#');objHoverNav.appendChild(objNextLink);var objLoading=document.createElement("div");objLoading.setAttribute('id','stimuli_loading');objImageContainer.appendChild(objLoading);var objLoadingLink=document.createElement("a");objLoadingLink.setAttribute('id','stimuli_loadingLink');objLoadingLink.setAttribute('href','#');objLoadingLink.onclick=function(){myLightbox.end();return false;}
objLoading.appendChild(objLoadingLink);var objImageDataContainer=document.createElement("div");objImageDataContainer.setAttribute('id','stimuli_imageDataContainer');objLightbox.appendChild(objImageDataContainer);var objImageData=document.createElement("div");objImageData.setAttribute('id','stimuli_imageData');objImageDataContainer.appendChild(objImageData);var objImageDetails=document.createElement("div");objImageDetails.setAttribute('id','stimuli_imageDetails');objImageData.appendChild(objImageDetails);var objCaption=document.createElement("span");objCaption.setAttribute('id','stimuli_caption');objImageDetails.appendChild(objCaption);var objNumberDisplay=document.createElement("span");objNumberDisplay.setAttribute('id','stimuli_numberDisplay');objImageDetails.appendChild(objNumberDisplay);var objBottomNav=document.createElement("div");objBottomNav.setAttribute('id','stimuli_bottomNav');objImageData.appendChild(objBottomNav);var objBottomNavCloseLink=document.createElement("a");objBottomNavCloseLink.setAttribute('id','stimuli_bottomNavClose');objBottomNavCloseLink.setAttribute('href','#');objBottomNavCloseLink.onclick=function(){myLightbox.end();return false;}
objBottomNav.appendChild(objBottomNavCloseLink);},updateImageList:function(){if(!document.getElementsByTagName){return;}
var anchors=document.getElementsByTagName('a');var areas=document.getElementsByTagName('area');for(var i=0;i<anchors.length;i++){var anchor=anchors[i];var relAttribute=String(anchor.getAttribute('rel'));if(anchor.getAttribute('href')&&(relAttribute.toLowerCase().match('lightbox'))){anchor.onclick=function(){myLightbox.start(this);return false;}}}
for(var i=0;i<areas.length;i++){var area=areas[i];var relAttribute=String(area.getAttribute('rel'));if(area.getAttribute('href')&&(relAttribute.toLowerCase().match('lightbox'))){area.onclick=function(){myLightbox.start(this);return false;}}}},start:function(imageLink){hideSelectBoxes();hideFlash();var arrayPageSize=getPageSize();Element.setWidth('stimuli_overlay',arrayPageSize[0]);Element.setHeight('stimuli_overlay',arrayPageSize[1]);new Effect.Appear('stimuli_overlay',{duration:overlayDuration,from:0.0,to:overlayOpacity});imageArray=[];imageNum=0;if(!document.getElementsByTagName){return;}
var anchors=document.getElementsByTagName(imageLink.tagName);var stimuli_image_title="";if((imageLink.getAttribute('rel')=='lightbox')){stimuli_image_title="";var possibleLightboxImageTitles=[imageLink.getAttribute('title'),imageLink.childNodes[0]['title'],imageLink.childNodes[0]['alt']," "];var possible_Int=0;while(stimuli_image_title==("")){stimuli_image_title=possibleLightboxImageTitles[possible_Int];possible_Int++;}
imageArray.push(new Array(imageLink.getAttribute('href'),stimuli_image_title));}else{for(var i=0;i<anchors.length;i++){var anchor=anchors[i];if(anchor.getAttribute('href')&&(anchor.getAttribute('rel')==imageLink.getAttribute('rel'))){stimuli_image_title="";var possibleLightboxImageTitles=[anchor['title'],anchor.childNodes[0]['title'],anchor.childNodes[0]['alt']," "];var possible_Int=0;while(stimuli_image_title==("")){stimuli_image_title=possibleLightboxImageTitles[possible_Int];possible_Int++;}
imageArray.push(new Array(anchor.getAttribute('href'),stimuli_image_title));}}
imageArray.removeDuplicates();while(imageArray[imageNum][0]!=imageLink.getAttribute('href')){imageNum++;}}
var arrayPageScroll=getPageScroll();var lightboxTop=arrayPageScroll[1]+(arrayPageSize[3]/10);var lightboxLeft=arrayPageScroll[0];Element.setTop('stimuli_lightbox',lightboxTop);Element.setLeft('stimuli_lightbox',lightboxLeft);Element.show('stimuli_lightbox');this.changeImage(imageNum);},changeImage:function(imageNum){activeImage=imageNum;if(animate){Element.show('stimuli_loading');}
Element.hide('stimuli_lightboxImage');Element.hide('stimuli_hoverNav');Element.hide('stimuli_prevLink');Element.hide('stimuli_nextLink');Element.hide('stimuli_imageDataContainer');Element.hide('stimuli_numberDisplay');imgPreloader=new Image();imgPreloader.onload=function(){Element.setSrc('stimuli_lightboxImage',imageArray[activeImage][0]);Element.setWidth('stimuli_lightboxImage',imgPreloader.width);Element.setHeight('stimuli_lightboxImage',imgPreloader.height);myLightbox.resizeImageContainer(imgPreloader.width,imgPreloader.height);imgPreloader.onload=function(){};}
imgPreloader.src=imageArray[activeImage][0];},resizeImageContainer:function(imgWidth,imgHeight){this.widthCurrent=Element.getWidth('stimuli_outerImageContainer');this.heightCurrent=Element.getHeight('stimuli_outerImageContainer');var widthNew=(imgWidth+(borderSize*2));var heightNew=(imgHeight+(borderSize*2));this.xScale=(widthNew/this.widthCurrent)*100;this.yScale=(heightNew/this.heightCurrent)*100;wDiff=this.widthCurrent-widthNew;hDiff=this.heightCurrent-heightNew;if(!(hDiff==0)){new Effect.Scale('stimuli_outerImageContainer',this.yScale,{scaleX:false,duration:resizeDuration,queue:'front'});}
if(!(wDiff==0)){new Effect.Scale('stimuli_outerImageContainer',this.xScale,{scaleY:false,delay:resizeDuration,duration:resizeDuration});}
if((hDiff==0)&&(wDiff==0)){if(navigator.appVersion.indexOf("MSIE")!=-1){stimuli_pause(250);}else{stimuli_pause(100);}}
Element.setHeight('stimuli_prevLink',imgHeight);Element.setHeight('stimuli_nextLink',imgHeight);Element.setWidth('stimuli_imageDataContainer',widthNew);this.showImage();},showImage:function(){Element.hide('stimuli_loading');new Effect.Appear('stimuli_lightboxImage',{duration:resizeDuration,queue:'end',afterFinish:function(){myLightbox.updateDetails();}});this.preloadNeighborImages();},updateDetails:function(){if(imageArray[activeImage][1]){Element.show('stimuli_caption');Element.setInnerHTML('stimuli_caption',imageArray[activeImage][1]);}
if(imageArray.length>1){Element.show('stimuli_numberDisplay');Element.setInnerHTML('stimuli_numberDisplay',"Image "+eval(activeImage+1)+" of "+imageArray.length);}
new Effect.Parallel([new Effect.SlideDown('stimuli_imageDataContainer',{sync:true,duration:resizeDuration,from:0.0,to:1.0}),new Effect.Appear('stimuli_imageDataContainer',{sync:true,duration:resizeDuration})],{duration:resizeDuration,afterFinish:function(){var arrayPageSize=getPageSize();Element.setHeight('stimuli_overlay',arrayPageSize[1]);myLightbox.updateNav();}});},updateNav:function(){Element.show('stimuli_hoverNav');if(activeImage!=0){Element.show('stimuli_prevLink');document.getElementById('stimuli_prevLink').onclick=function(){myLightbox.changeImage(activeImage-1);return false;}}
if(activeImage!=(imageArray.length-1)){Element.show('stimuli_nextLink');document.getElementById('stimuli_nextLink').onclick=function(){myLightbox.changeImage(activeImage+1);return false;}}
this.enableKeyboardNav();},enableKeyboardNav:function(){document.onkeydown=this.keyboardAction;},disableKeyboardNav:function(){document.onkeydown='';},keyboardAction:function(e){if(e==null){keycode=event.keyCode;escapeKey=27;}else{keycode=e.keyCode;escapeKey=e.DOM_VK_ESCAPE;}
key=String.fromCharCode(keycode).toLowerCase();if((key=='x')||(key=='o')||(key=='c')||(keycode==escapeKey)){myLightbox.end();}else if((key=='p')||(keycode==37)){if(activeImage!=0){myLightbox.disableKeyboardNav();myLightbox.changeImage(activeImage-1);}}else if((key=='n')||(keycode==39)){if(activeImage!=(imageArray.length-1)){myLightbox.disableKeyboardNav();myLightbox.changeImage(activeImage+1);}}},preloadNeighborImages:function(){if((imageArray.length-1)>activeImage){preloadNextImage=new Image();preloadNextImage.src=imageArray[activeImage+1][0];}
if(activeImage>0){preloadPrevImage=new Image();preloadPrevImage.src=imageArray[activeImage-1][0];}},end:function(){this.disableKeyboardNav();Element.hide('stimuli_lightbox');new Effect.Fade('stimuli_overlay',{duration:overlayDuration});showSelectBoxes();showFlash();}}
function getPageScroll(){var xScroll,yScroll;if(self.pageYOffset){yScroll=self.pageYOffset;xScroll=self.pageXOffset;}else if(document.documentElement&&document.documentElement.scrollTop){yScroll=document.documentElement.scrollTop;xScroll=document.documentElement.scrollLeft;}else if(document.body){yScroll=document.body.scrollTop;xScroll=document.body.scrollLeft;}
arrayPageScroll=new Array(xScroll,yScroll)
return arrayPageScroll;}
function getPageSize(){var xScroll,yScroll;if(window.innerHeight&&window.scrollMaxY){xScroll=window.innerWidth+window.scrollMaxX;yScroll=window.innerHeight+window.scrollMaxY;}else if(document.body.scrollHeight>document.body.offsetHeight){xScroll=document.body.scrollWidth;yScroll=document.body.scrollHeight;}else{xScroll=document.body.offsetWidth;yScroll=document.body.offsetHeight;}
var windowWidth,windowHeight;if(self.innerHeight){if(document.documentElement.clientWidth){windowWidth=document.documentElement.clientWidth;}else{windowWidth=self.innerWidth;}
windowHeight=self.innerHeight;}else if(document.documentElement&&document.documentElement.clientHeight){windowWidth=document.documentElement.clientWidth;windowHeight=document.documentElement.clientHeight;}else if(document.body){windowWidth=document.body.clientWidth;windowHeight=document.body.clientHeight;}
if(yScroll<windowHeight){pageHeight=windowHeight;}else{pageHeight=yScroll;}
if(xScroll<windowWidth){pageWidth=xScroll;}else{pageWidth=windowWidth;}
arrayPageSize=new Array(pageWidth,pageHeight,windowWidth,windowHeight)
return arrayPageSize;}
function getKey(e){if(e==null){keycode=event.keyCode;}else{keycode=e.which;}
key=String.fromCharCode(keycode).toLowerCase();if(key=='x'){}}
function listenKey(){document.onkeypress=getKey;}
function showSelectBoxes(){var selects=document.getElementsByTagName("select");for(i=0;i!=selects.length;i++){selects[i].style.visibility="visible";}}
function hideSelectBoxes(){var selects=document.getElementsByTagName("select");for(i=0;i!=selects.length;i++){selects[i].style.visibility="hidden";}}
function showFlash(){var flashObjects=document.getElementsByTagName("object");for(i=0;i<flashObjects.length;i++){flashObjects[i].style.visibility="visible";}
var flashEmbeds=document.getElementsByTagName("embed");for(i=0;i<flashEmbeds.length;i++){flashEmbeds[i].style.visibility="visible";}}
function hideFlash(){var flashObjects=document.getElementsByTagName("object");for(i=0;i<flashObjects.length;i++){flashObjects[i].style.visibility="hidden";}
var flashEmbeds=document.getElementsByTagName("embed");for(i=0;i<flashEmbeds.length;i++){flashEmbeds[i].style.visibility="hidden";}}
function stimuli_pause(ms){var date=new Date();curDate=null;do{var curDate=new Date();}
while(curDate-date<ms);}
function initLightbox(){myLightbox=new Lightbox();}
Event.observe(window,'load',initLightbox,false);;jQuery.easing['jswing']=jQuery.easing['swing'];jQuery.extend(jQuery.easing,{def:'easeOutQuad',swing:function(x,t,b,c,d){return jQuery.easing[jQuery.easing.def](x,t,b,c,d);},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b;},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b;},easeInOutQuad:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*((--t)*(t-2)-1)+b;},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b;},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b;},easeInOutCubic:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t+b;return c/2*((t-=2)*t*t+2)+b;},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b;},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b;},easeInOutQuart:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t+b;return-c/2*((t-=2)*t*t*t-2)+b;},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b;},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b;},easeInOutQuint:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b;},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b;},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b;},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b;},easeInExpo:function(x,t,b,c,d){return(t==0)?b:c*Math.pow(2,10*(t/d-1))+b;},easeOutExpo:function(x,t,b,c,d){return(t==d)?b+c:c*(-Math.pow(2,-10*t/d)+1)+b;},easeInOutExpo:function(x,t,b,c,d){if(t==0)return b;if(t==d)return b+c;if((t/=d/2)<1)return c/2*Math.pow(2,10*(t-1))+b;return c/2*(-Math.pow(2,-10*--t)+2)+b;},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b;},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b;},easeInOutCirc:function(x,t,b,c,d){if((t/=d/2)<1)return-c/2*(Math.sqrt(1-t*t)-1)+b;return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b;},easeInElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;},easeOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b;},easeInOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b;},easeInBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b;},easeOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b;},easeInOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b;},easeInBounce:function(x,t,b,c,d){return c-jQuery.easing.easeOutBounce(x,d-t,0,c,d)+b;},easeOutBounce:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b;}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b;}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b;}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b;}},easeInOutBounce:function(x,t,b,c,d){if(t<d/2)return jQuery.easing.easeInBounce(x,t*2,0,c,d)*.5+b;return jQuery.easing.easeOutBounce(x,t*2-d,0,c,d)*.5+c*.5+b;}});;(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}if(p==this){return false;}var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);;(function($){$.fn.dcSlickContact=function(options){var defaults={classWrapper:'dc-floater',classContent:'dc-floater-content',width:260,idWrapper:'dc-floater-'+$(this).index(),location:'top',align:'left',offsetLocation:10,offsetAlign:10,speedFloat:1500,speedContent:600,tabText:'',event:'click',classTab:'tab',autoClose:true,easing:'easeOutQuint',classForm:'slick-form',method:'stick',linkOpen:'dcscf-open',linkClose:'dcscf-close',linkToggle:'dcscf-link',loadOpen:false,animateError:true,ajaxSubmit:true};var options=$.extend(defaults,options);return this.each(function(options){var width=defaults.width,location=defaults.location,align=defaults.align,speed=defaults.speedContent,tabText=defaults.tabText,autoClose=defaults.autoClose,idWrapper=defaults.idWrapper,linkOpen=defaults.linkOpen,linkClose=defaults.linkClose,linkToggle=defaults.linkToggle,loadOpen=defaults.loadOpen,ajaxSubmit=defaults.ajaxSubmit
if(defaults.method=='stick'){$(this).dcSlickContactStick({width:width,location:location,align:align,offset:defaults.offsetLocation+'px',speed:speed,tabText:tabText,autoClose:autoClose,idWrapper:idWrapper,classOpen:linkOpen,classClose:linkClose,classToggle:linkToggle,loadOpen:loadOpen});var errorAlign=defaults.location;if((defaults.location=='top')||(defaults.location=='bottom')){errorAlign=defaults.align;}}else{$(this).dcSlickContactFloat({width:width,location:location,align:align,offsetLocation:defaults.offsetLocation,offsetAlign:defaults.offsetAlign,speedFloat:defaults.speedFloat,speedContent:speed,tabText:tabText,autoClose:autoClose,easing:defaults.easing,event:defaults.event,idWrapper:idWrapper,classOpen:linkOpen,classClose:linkClose,classToggle:linkToggle,loadOpen:loadOpen});var errorAlign=align;}
$('#'+defaults.idWrapper+' .slick-form').dcSlickForms({align:errorAlign,animateError:defaults.animateError,ajaxSubmit:ajaxSubmit});});};})(jQuery);(function($){$.fn.dcSlickContactStick=function(options){var defaults={classWrapper:'dc-contact-slick',classContent:'dc-contact-content',width:260,idWrapper:'dc-contact-'+$(this).index(),location:'left',align:'top',offset:'100px',speed:'slow',tabText:'',classTab:'tab',classOpen:'dc-open',classClose:'dc-close',classToggle:'dc-toggle',autoClose:true,loadOpen:false};var options=$.extend(defaults,options);var $dcSlickObj=this;return $dcSlickObj.each(function(options){var slickHtml=$dcSlickObj.html();var slickTab='<div class="'+defaults.classTab+'"><span>'+defaults.tabText+'</span></div>';$(this).hide();var idWrapper=defaults.idWrapper;var slider='<div id="'+idWrapper+'" class="'+defaults.classWrapper+'">'+slickTab+'<div class="'+defaults.classContent+'">'+slickHtml+'</div></div>';$('body').append(slider);var $slider=$('#'+idWrapper);$slider.css('width',defaults.width+'px');var $tab=$('.'+defaults.classTab,$slider);$tab.css({position:'absolute'});var linkOpen=$('.'+defaults.classOpen);var linkClose=$('.'+defaults.classClose);var linkToggle=$('.'+defaults.classToggle);var height=$slider.height();var outerW=$slider.outerWidth();var widthPx=outerW+'px';var outerH=$slider.outerHeight();var padH=outerH-height;var heightPx=outerH+'px';var bodyHeight=$(window).height();slickSetup($slider);if(defaults.autoClose==true){$('body').mouseup(function(e){if($slider.hasClass('active')){if(!$(e.target).parents('#'+defaults.idWrapper+'.'+defaults.classWrapper).length){slickClose();}}});}
$tab.click(function(){if($slider.hasClass('active')){slickClose();}else{slickOpen();}});$(linkOpen).click(function(e){slickOpen();e.preventDefault();});$(linkClose).click(function(e){if($slider.hasClass('active')){slickClose();}
e.preventDefault();});$(linkToggle).click(function(e){if($slider.hasClass('active')){slickClose();}else{slickOpen();}
e.preventDefault();});if(defaults.loadOpen==true){slickOpen();}
function slickOpen(){$('.'+defaults.classWrapper).css({zIndex:10000});if(defaults.location=='bottom'){$slider.animate({marginBottom:"-=5px"},"fast").animate({marginBottom:0},defaults.speed);}
if(defaults.location=='top'){$slider.animate({marginTop:"-=5px"},"fast").animate({marginTop:0},defaults.speed);}
if(defaults.location=='left'){$slider.animate({marginLeft:"-=5px"},"fast").animate({marginLeft:0},defaults.speed);}
if(defaults.location=='right'){$slider.animate({marginRight:"-=5px"},"fast").animate({marginRight:0},defaults.speed);}
$slider.addClass('active');$slider.css({zIndex:10001});}
function slickClose(){$slider.css({zIndex:10000});if($slider.hasClass('active')){var param={"marginBottom":"-"+heightPx};if(defaults.location=='top'){var param={"marginTop":"-"+heightPx};}
if(defaults.location=='left'){var param={"marginLeft":"-"+widthPx};}
if(defaults.location=='right'){var param={"marginRight":"-"+widthPx};}
$slider.removeClass('active');}
$slider.animate(param,defaults.speed,function(){$slider.dcFormReset();});}
function slickSetup(obj){var $container=$('.'+defaults.classContent,obj);var bdrTop=$slider.css('border-top-width');var bdrRight=$slider.css('border-right-width');var bdrBottom=$slider.css('border-bottom-width');var bdrLeft=$slider.css('border-left-width');var tabWidth=$tab.outerWidth();var tabWidthPx=tabWidth+'px';var tabHeight=$tab.outerHeight();var tabHeightPx=tabHeight+'px';var containerH=$container.height();var containerPad=$container.outerHeight()-containerH;var maxHeight=bodyHeight-tabHeight;$(obj).addClass(defaults.location).addClass('align-'+defaults.align).css({position:'fixed',zIndex:10000});if(outerH>maxHeight){containerH=maxHeight-padH-containerPad;heightPx=maxHeight+'px';}
$container.css({height:containerH+'px'});if(defaults.location=='left'){$(obj).css({marginLeft:'-'+widthPx,top:defaults.offset});$tab.css({marginRight:'-'+tabWidthPx});}
if(defaults.location=='right'){$(obj).css({marginRight:'-'+widthPx});$tab.css({marginLeft:'-'+tabWidthPx});$(obj).css({top:defaults.offset});}
if(defaults.location=='top'){$(obj).css({marginTop:'-'+heightPx});$tab.css({marginBottom:'-'+tabHeightPx});if(defaults.align=='left'){$(obj).css({left:defaults.offset});$tab.css({left:0});}else{$(obj).css({right:defaults.offset});$tab.css({right:0});}}
if(defaults.location=='bottom'){$(obj).css({marginBottom:'-'+heightPx});$tab.css({marginTop:'-'+tabHeightPx});if(defaults.align=='left'){$(obj).css({left:defaults.offset});$tab.css({left:0});}else{$(obj).css({right:defaults.offset});$tab.css({right:0});}}}});};})(jQuery);(function($){$.fn.dcSlickContactFloat=function(options){var defaults={classWrapper:'dc-contact-float',classContent:'dc-contact-content',width:260,idWrapper:'dc-contact-'+$(this).index(),location:'top',align:'left',offsetLocation:10,offsetAlign:10,speedFloat:1500,speedContent:600,tabText:'',event:'click',classTab:'tab',classOpen:'dc-open',classClose:'dc-close',classToggle:'dc-toggle',autoClose:true,easing:'easeOutQuint',loadOpen:false};var options=$.extend(defaults,options);return this.each(function(options){var floatHtml=$(this).html();var floatTab='<div class="'+defaults.classTab+'"><span>'+defaults.tabText+'</span></div>';$(this).hide();var idWrapper=defaults.idWrapper;if(defaults.location=='bottom'){var objHtml='<div id="'+idWrapper+'" class="'+defaults.classWrapper+' '+defaults.location+' '+defaults.align+'"><div class="'+defaults.classContent+'">'+floatHtml+'</div>'+floatTab+'</div>';}else{var objHtml='<div id="'+idWrapper+'" class="'+defaults.classWrapper+' '+defaults.align+'">'+floatTab+'<div class="'+defaults.classContent+'">'+floatHtml+'</div></div>';}
$('body').append(objHtml);var $floater=$('#'+idWrapper);var $tab=$('.'+defaults.classTab,$floater);var $content=$('.'+defaults.classContent,$floater);var linkOpen=$('.'+defaults.classOpen);var linkClose=$('.'+defaults.classClose);var linkToggle=$('.'+defaults.classToggle);$floater.css({width:defaults.width+'px',position:'absolute',zIndex:10000});var h_c=$content.outerHeight(true);var h_f=$floater.outerHeight();var h_t=$tab.outerHeight();$content.hide();floaterSetup($floater);var start=$('#'+idWrapper).position().top;floatObj();$(window).scroll(function(){floatObj();});if(defaults.event=='hover'){var config={sensitivity:2,interval:100,over:floatOpen,timeout:400,out:floatClose};$floater.hoverIntent(config);}
if(defaults.event=='click'){$tab.click(function(e){if($floater.hasClass('active')){floatClose();}else{floatOpen();}
e.preventDefault();});$(linkOpen).click(function(){floatOpen();});$(linkClose).click(function(){if($floater.hasClass('active')){floatClose();}});$(linkToggle).click(function(e){if($floater.hasClass('active')){floatClose();}else{floatOpen();}
e.preventDefault();});}
if(defaults.autoClose==true){$('body').mouseup(function(e){if($floater.hasClass('active')){if(!$(e.target).parents('#'+defaults.idWrapper+'.'+defaults.classWrapper).length){floatClose();}}});}
if(defaults.loadOpen==true){floatOpen();}
function floatOpen(){$('.'+defaults.classWrapper).css({zIndex:10000});$floater.css({zIndex:10001});var h_fpx=h_c+'px';if(defaults.location=='bottom'){$content.animate({marginTop:'-'+h_fpx},defaults.speed).slideDown(defaults.speedContent);}else{$content.slideDown(defaults.speedContent);}
$floater.addClass('active');}
function floatClose(){$content.slideUp(defaults.speedContent,function(){$floater.removeClass('active').dcFormReset();});}
function floatObj(){var scroll=$(document).scrollTop();var moveTo=start+scroll;var h_b=$('body').height();var h_f=$floater.height();var h_c=$content.height();if(h_b<h_f+h_c){$floater.css("top",start);}else{$floater.stop().animate({top:moveTo},defaults.speedFloat,defaults.easing);}}
function floaterSetup(obj){var location=defaults.location;var align=defaults.align;var offsetL=defaults.offsetLocation;var offsetA=defaults.offsetAlign;if(location=='top'){$(obj).css({top:offsetL});}else{$(obj).css({bottom:offsetL});}
if(align=='left'){$(obj).css({left:offsetA});}else{$(obj).css({right:offsetA});}}});};})(jQuery);(function($){$.fn.dcFormReset=function(){return this.each(function(options){defaulttextFunction();$('li',this).removeClass('error');$('span.error',this).fadeOut().remove();if($('form',this).hasClass('dcscf-submit')){var $input=$('.text-input',this);var $textarea=$('.text-area',this);$('fieldset',this).show();$($input).each(function(){$(this).val('');});$textarea.val('');defaulttextFunction(this);$('.dcscf-submit',this).removeClass('dcscf-submit');$('.slick-response',this).text('').hide();}
function defaulttextFunction(obj){var $defaultText=$(".defaultText",obj);$defaultText.focus(function(srcc){if($(this).val()==$(this)[0].title){$(this).removeClass("defaultTextActive");$(this).val("");}});$defaultText.blur(function(){if($(this).val()==""){$(this).addClass("defaultTextActive");$(this).val($(this)[0].title);}});$defaultText.addClass("defaultTextActive").blur();}});};})(jQuery);(function($){$.fn.dcSlickForms=function(options){var defaults={classError:'error',classForm:'slick-form',align:'left',animateError:true,animateD:10,ajaxSubmit:true};var options=$.extend(defaults,options);return this.each(function(options){var formAction=$(this).attr('action');var emailReg=/^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;var $error=$('<span class="error"></span>');var $formId=this;var $loading=$('<div class="loading">Processing ...</div>');var errorText=$('#v-error').val();var emailText=$('#v-email').val();defaulttextFunction(this);$('.'+defaults.classForm+' label').hide();$(this).submit(function(){formReset($formId);defaulttextRemove($formId);$('.required',$formId).each(function(){var label=$(this).attr('title');var inputVal=$(this).val();var $parentTag=$(this).parent();if(inputVal==''){$parentTag.addClass('error').append($error.clone().text(errorText+' - '+label));}
if($(this).hasClass('email')==true){if(!emailReg.test(inputVal)){$parentTag.addClass('error').append($error.clone().text(emailText));}}});if($('span.error',$formId).length>0){$('span.error',$formId).each(function(){if(defaults.animateError==true){var width=$(this).outerWidth();var start=width+defaults.animateD;if(defaults.align=='left'){$(this).show().css({display:'block',opacity:0,right:-start+'px'}).animate({right:-width+'px',opacity:1},'slow');}else{$(this).show().css({display:'block',opacity:0,left:-start+'px'}).animate({left:-width+'px',opacity:1},'slow');}}});}else{if(defaults.ajaxSubmit==true){var $response=$('.slick-response',this);$(this).addClass('dcscf-submit').prepend($loading.clone());defaulttextRemove($formId);$('fieldset',this).hide();$.post(formAction,$(this).serialize(),function(data){$('.loading').remove();$response.html(data).fadeIn();});}else{$(this).submit();}}
return false;});$('input, textarea').focus(function(){var $parent=$(this).parent();$parent.addClass('focus');$parent.removeClass('error');});$('input, textarea').blur(function(){var $parent=$(this).parent();var checkVal=$(this).attr('title');if(!$(this).val()==checkVal){$(this).removeClass('defaulttextActive');}
$parent.removeClass('error focus');$('span.error',$parent).hide();});function formReset(obj){$('li',obj).removeClass('error');$('span.error',obj).remove();}
function defaulttextFunction(obj){var $defaultText=$(".defaultText",obj);$defaultText.focus(function(srcc){if($(this).val()==$(this)[0].title){$(this).removeClass("defaultTextActive");$(this).val("");}});$defaultText.blur(function(){if($(this).val()==""){$(this).addClass("defaultTextActive");$(this).val($(this)[0].title);}});$defaultText.addClass("defaultTextActive").blur();}
function defaulttextRemove(obj){$('.defaultText',obj).each(function(){var checkVal=$(this).attr('title');if($(this).val()==checkVal){$(this).val('');}});}});};})(jQuery);;var demLoading;function dem_Vote(that)
{inpts=that.getElementsByTagName('input');user_added=false;ans=-1;theSubmit=false;for(i=0;i<inpts.length;i++)
{cur=inpts[i];if(cur.type=='radio'&&cur.checked)
{ans=cur.value;if(ans=='newAnswer')
{user_added=true;ans=inpts[i+1].value;}}
if(cur.name=='dem_poll_id')
poll_id=cur.value;if(cur.name=='dem_cookie_days')
cdays=cur.value;if(cur.type=='submit')
theSubmit=cur;}
if(ans==-1||ans=='')
return false;demLoading=setTimeout(dem_loadingDots.bind(theSubmit),50);path=that.action;if(user_added)
{path+="?dem_action=add_answer";path+="&dem_new_answer="+encodeURIComponent(ans);}else
{path+="?dem_action=vote";path+="&dem_poll_"+poll_id+"="+ans;}
path+="&dem_poll_id="+poll_id;path+="&dem_ajax=true";dem_ajax.open("GET",path,true);dem_ajax.onreadystatechange=dem_displayVotes.bind(that);dem_ajax.send(null);return false;}
function dem_addUncheck()
{oUL=this.parentNode.parentNode;lis=oUL.getElementsByTagName('li');els=lis[lis.length-1].childNodes;for(i=els.length-1;i>=0;i--)
if(els[i].nodeName.toLowerCase()=='a')
els[i].style.display='';else
els[i].parentNode.removeChild(els[i]);Inp=oUL.getElementsByTagName('input');for(i=0;i<Inp.length;i++)
{Inp[i].onclick=function(){return true};}
return true;}
function dem_addAnswer(that)
{allBoxes=that.parentNode.parentNode.getElementsByTagName('input');for(i=0;i<allBoxes.length;i++)
{allBoxes[i].onclick=dem_addUncheck;allBoxes[i].checked=false;}
that.style.display='none';i1=document.createElement('input');i1.type='radio';i1.value='newAnswer';i1.checked=true;i2=document.createElement('input');i2.className='addAnswerText';that.parentNode.appendChild(i1);that.parentNode.appendChild(i2);i2.focus();return false;}
function dem_loadingDots(){isInput=this.nodeName.toLowerCase()=='input';str=(isInput)?this.value:this.innerHTML;if(str.substring(str.length-3)=='...')
if(isInput)
this.value=str.substring(0,str.length-3);else
this.innerHTML=str.substring(0,str.length-3);else
if(isInput)
this.value+='.';else
this.innerHTML+='.';demLoading=setTimeout(dem_loadingDots.bind(this),200);}
function dem_clearDots(){clearTimeout(demLoading);}
function dem_getVotes(path,that)
{that.blur();demLoading=setTimeout(dem_loadingDots.bind(that),50);dem_ajax.open("GET",path,true);dem_ajax.onreadystatechange=dem_displayVotes.bind(that.parentNode);dem_ajax.send(null);return false;}
function dem_displayVotes()
{if(dem_ajax.readyState!=4)
return false;if(dem_ajax.status!=200)
{alert('Error '+dem_ajax.status);return false;}
clearTimeout(demLoading);this.innerHTML=dem_ajax.responseText;}
function dem_getHTTPObject(){var xmlhttp;/*@cc_on
  @if (@_jscript_version >= 5)
    try {
      xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
      try {
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
      } catch (E) {
        xmlhttp = false;
      }
    }
  @else
  xmlhttp = false;
  @end @*/if(!xmlhttp&&typeof XMLHttpRequest!='undefined'){try{xmlhttp=new XMLHttpRequest();}catch(e){xmlhttp=false;}}
return xmlhttp;}
dem_ajax=new dem_getHTTPObject();Function.prototype.bind=function(){var __method=this,args=$A(arguments),object=args.shift();return function(){return __method.apply(object,args.concat($A(arguments)));}}
var $A=Array.from=function(iterable){if(!iterable)return[];if(iterable.toArray){return iterable.toArray();}else{var results=[];for(var i=0;i<iterable.length;i++)
results.push(iterable[i]);return results;}};var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return!!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Digitized data copyright (C) 1993-1997 The Monotype Corporation. All rights
 * reserved.
 * 
 * Trademark:
 * Andale is a trademark of The Monotype Corporation which may be registered in
 * certain jurisdictions.
 * 
 * Description:
 * Andale Monospaced is a highly legible monospaced font.
 * 
 * Manufacturer:
 * Monotype Typography
 * 
 * Designer:
 * Steven R. Matteson
 * 
 * Vendor URL:
 * http://www.monotype.com
 * 
 * License information:
 * http://www.monotype.com/html/type/license.html
 */
Cufon.registerFont({"w":216,"face":{"font-family":"Andale Mono","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 9 0 0 0 0 0 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-0.0469055 -359 216.031 79","underline-thickness":"17.9297","underline-position":"-27.0703","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{},"!":{"d":"121,-248v2,62,-2,118,-8,173r-15,0v-6,-54,-11,-110,-9,-173r32,0xm84,-18v0,-12,9,-23,22,-22v12,0,22,10,22,22v0,11,-10,23,-22,23v-12,0,-22,-12,-22,-23"},"\"":{"d":"153,-248v1,33,-2,63,-6,91r-14,0v-5,-28,-8,-57,-7,-91r27,0xm90,-248v1,34,-2,63,-7,91r-14,0v-4,-28,-7,-57,-6,-91r27,0"},"#":{"d":"202,-70r-56,0r-15,70r-25,0r15,-70r-47,0r-15,70r-25,0r15,-70r-34,0r0,-23r39,0r13,-63r-52,0r0,-23r57,0r15,-69r25,0r-15,69r47,0r15,-69r25,0r-15,69r33,0r0,23r-38,0r-13,63r51,0r0,23xm139,-156r-47,0r-13,63r47,0"},"$":{"d":"40,-188v0,-36,25,-57,59,-63r0,-19r21,0r0,17v16,0,31,3,47,8r-6,24v-14,-5,-28,-7,-41,-7r0,86v36,15,58,32,60,71v2,40,-26,65,-60,73r0,23r-21,0v-1,-6,2,-16,-1,-20v-21,0,-40,-5,-56,-13r6,-25v20,9,35,13,51,13r0,-102v-39,-18,-59,-27,-59,-66xm99,-152r0,-74v-42,12,-41,58,0,74xm120,-23v43,-13,40,-76,0,-89r0,89"},"%":{"d":"8,-194v0,-32,19,-59,50,-59v32,0,50,27,50,59v0,32,-19,59,-50,59v-31,0,-50,-27,-50,-59xm58,-157v16,0,24,-12,24,-37v0,-25,-8,-38,-24,-38v-16,0,-25,13,-25,38v0,25,9,37,25,37xm185,-248r-131,248r-24,0r130,-248r25,0xm108,-54v0,-33,19,-59,50,-59v32,0,49,27,49,59v0,32,-18,59,-49,59v-31,0,-50,-26,-50,-59xm158,-17v16,0,24,-12,24,-37v0,-25,-8,-37,-24,-37v-16,0,-25,12,-25,37v0,25,9,37,25,37"},"&":{"d":"167,-52v17,17,20,32,49,28r0,23v-31,9,-45,-6,-61,-30v-36,61,-141,39,-141,-33v0,-40,22,-51,53,-74v-46,-43,-36,-111,28,-115v30,-2,55,20,53,50v-2,35,-20,45,-48,67r52,64v18,-40,17,-67,63,-72v-1,7,2,18,-1,24v-29,8,-30,27,-47,68xm96,-229v-42,3,-39,49,-9,77v21,-17,34,-23,37,-49v1,-17,-12,-28,-28,-28xm43,-65v0,51,74,60,97,16r-59,-72v-22,17,-38,26,-38,56"},"'":{"d":"122,-248v1,34,-2,63,-7,91r-14,0v-4,-28,-7,-57,-6,-91r27,0"},"(":{"d":"108,-101v0,68,22,102,60,138r-10,15v-65,-43,-108,-148,-60,-236v14,-26,34,-48,60,-68r10,15v-39,36,-60,68,-60,136"},")":{"d":"108,-101v0,-68,-23,-100,-61,-136r11,-15v66,43,108,148,60,235v-14,26,-34,49,-60,69r-11,-15v39,-36,61,-69,61,-138"},"*":{"d":"170,-151r-11,18r-41,-28r0,50r-20,0r0,-50r-42,28r-10,-18r44,-29r-44,-28r10,-18r42,28r0,-50r20,0r0,50r41,-28r11,18r-44,28"},"+":{"d":"191,-115r-71,0r0,71r-23,0r0,-71r-72,0r0,-24r72,0r0,-72r23,0r0,72r71,0r0,24"},",":{"d":"108,-39v42,10,24,68,-14,81r-7,-12v14,-7,21,-16,21,-25v-25,-1,-28,-45,0,-44"},"-":{"d":"158,-86r-104,0r0,-26r104,0r0,26"},".":{"d":"85,-18v0,-12,9,-22,22,-22v12,0,23,9,22,22v0,11,-10,23,-22,23v-12,0,-22,-12,-22,-23"},"\/":{"d":"171,-253r-107,258r-26,0r107,-258r26,0"},"0":{"d":"26,-124v0,-70,21,-129,82,-129v60,0,81,60,81,129v0,69,-20,129,-81,129v-61,0,-82,-58,-82,-129xm57,-124v0,58,5,103,51,103v45,0,51,-46,51,-103v0,-58,-6,-103,-51,-103v-45,0,-51,47,-51,103xm81,-124v0,-16,11,-26,26,-26v14,0,26,11,26,26v0,16,-11,28,-26,28v-14,0,-26,-13,-26,-28"},"1":{"d":"179,0r-130,0r0,-25r52,0r0,-193r-49,25r0,-29v25,-10,40,-30,78,-27r0,224r49,0r0,25"},"2":{"d":"40,-242v55,-26,134,-7,129,58v-6,75,-65,111,-101,159r104,0r0,25r-136,0r0,-21v60,-73,91,-75,102,-162v6,-48,-51,-53,-94,-34"},"3":{"d":"168,-190v0,28,-25,50,-45,57v27,7,50,29,50,61v0,64,-82,98,-138,64r6,-24v41,23,102,10,102,-38v-1,-33,-30,-52,-70,-49r0,-24v34,1,65,-16,65,-47v0,-42,-55,-45,-91,-27r-3,-25v51,-26,124,-4,124,52"},"4":{"d":"189,-57r-31,0r0,57r-29,0r0,-57r-108,0r0,-22r98,-169r39,0r0,166r31,0r0,25xm129,-82r0,-138r-79,138r79,0"},"5":{"d":"145,-76v0,-43,-38,-61,-77,-46r-17,-8r0,-118r114,0r0,25r-89,0r0,75v55,-14,100,21,100,72v0,65,-77,101,-136,70r5,-25v44,21,100,10,100,-45"},"6":{"d":"119,5v-117,-3,-114,-259,4,-258v19,0,36,3,50,9r-4,26v-38,-14,-70,-15,-89,18v-11,18,-16,42,-16,71v45,-42,126,-10,124,53v-2,44,-26,81,-69,81xm157,-73v0,-55,-60,-63,-92,-31v-2,37,19,83,52,83v28,-1,40,-21,40,-52"},"7":{"d":"182,-227r-98,227r-30,0r97,-223r-116,0r0,-25r147,0r0,21"},"8":{"d":"178,-190v0,27,-22,48,-45,54v31,8,52,32,53,67v2,45,-35,74,-78,74v-45,1,-79,-29,-79,-74v0,-36,24,-59,54,-67v-25,-6,-45,-27,-45,-54v0,-34,32,-63,69,-63v38,0,70,29,71,63xm107,-228v-43,0,-54,66,-11,77v27,7,52,-11,53,-38v1,-23,-20,-39,-42,-39xm108,-21v41,1,61,-48,39,-81v-6,-9,-20,-16,-40,-21v-66,9,-60,100,1,102"},"9":{"d":"103,-253v118,6,108,260,-11,257v-19,0,-36,-2,-50,-8r4,-26v38,14,72,14,92,-19v12,-19,17,-42,17,-70v-44,42,-124,10,-124,-53v0,-43,29,-83,72,-81xm62,-175v0,53,62,62,93,31v0,-37,-16,-84,-50,-84v-27,0,-43,24,-43,53"},":":{"d":"86,-165v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21xm86,-18v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21"},";":{"d":"87,-165v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21xm108,-39v42,10,24,68,-14,81r-7,-12v14,-7,21,-16,21,-25v-25,-1,-28,-45,0,-44"},"<":{"d":"171,-38r-131,-79r0,-21r131,-78r0,25r-105,65r105,62r0,26"},"=":{"d":"191,-151r-166,0r0,-23r166,0r0,23xm191,-80r-166,0r0,-23r166,0r0,23"},">":{"d":"178,-117r-131,79r0,-26r105,-62r-105,-65r0,-25r131,78r0,21"},"?":{"d":"118,-153v32,-23,26,-77,-22,-77v-12,0,-28,4,-46,13r-8,-22v52,-26,125,-18,125,45v0,44,-74,62,-68,119r-24,0v-5,-42,20,-61,43,-78xm68,-18v0,-12,10,-22,22,-22v12,0,23,9,22,22v0,12,-10,23,-22,23v-12,0,-22,-12,-22,-23"},"@":{"d":"112,-233v-100,0,-107,243,1,243v19,0,36,-4,53,-12r4,16v-81,44,-153,-21,-153,-114v0,-79,29,-151,95,-151v57,0,89,54,89,118v0,46,-19,93,-58,94v-12,0,-20,-7,-23,-21v-7,14,-16,21,-28,21v-58,0,-32,-137,21,-134v13,4,20,3,41,2v-4,78,-20,94,-3,113v21,-4,31,-43,31,-75v0,-54,-23,-100,-70,-100xm98,-58v34,-5,24,-56,31,-90v-29,-21,-46,20,-46,56v0,17,4,32,15,34"},"A":{"d":"207,0r-31,0r-27,-87r-81,0r-28,87r-30,0r81,-248r35,0xm141,-112r-33,-103r-32,103r65,0"},"B":{"d":"182,-188v0,28,-23,43,-44,52v31,6,53,28,53,62v0,71,-76,80,-154,74r0,-248v68,-1,146,-6,145,60xm152,-187v0,-38,-45,-37,-86,-36r0,74v42,2,86,-2,86,-38xm160,-74v0,-46,-44,-53,-94,-50r0,99v49,3,94,-4,94,-49"},"C":{"d":"121,-227v-54,1,-66,42,-68,103v-3,100,59,124,126,86r9,23v-19,13,-41,20,-67,20v-70,-1,-99,-52,-99,-129v0,-101,75,-160,162,-112r-9,23v-17,-9,-34,-14,-54,-14"},"D":{"d":"193,-124v0,91,-56,136,-156,124r0,-248v100,-11,156,32,156,124xm162,-124v0,-63,-30,-106,-96,-99r0,198v67,6,96,-35,96,-99"},"E":{"d":"175,0r-130,0r0,-248r128,0r0,25r-99,0r0,77r96,0r0,25r-96,0r0,96r101,0r0,25"},"F":{"d":"176,-223r-102,0r0,81r93,0r0,25r-93,0r0,117r-29,0r0,-248r131,0r0,25"},"G":{"d":"121,-227v-54,2,-66,42,-68,103v-3,87,46,122,106,93r0,-61r-45,0r0,-25r74,0r0,99v-20,15,-42,23,-67,23v-70,-1,-99,-52,-99,-129v0,-103,75,-159,162,-112r-9,23v-17,-9,-34,-14,-54,-14"},"H":{"d":"179,0r-29,0r0,-123r-84,0r0,123r-29,0r0,-248r29,0r0,100r84,0r0,-100r29,0r0,248"},"I":{"d":"163,0r-113,0r0,-25r43,0r0,-198r-43,0r0,-25r113,0r0,25r-41,0r0,198r41,0r0,25"},"J":{"d":"36,-31v35,18,87,17,87,-37r0,-180r29,0r0,182v6,69,-73,86,-125,58"},"K":{"d":"212,0r-36,0r-84,-122r-26,29r0,93r-29,0r0,-248r29,0r0,119r110,-119r33,0r-97,105"},"L":{"d":"180,0r-135,0r0,-248r29,0r0,223r106,0r0,25"},"M":{"d":"188,0r-28,0r0,-213r-37,102r-28,0r-37,-102r0,213r-28,0r0,-248r38,0r41,113r41,-113r38,0r0,248"},"N":{"d":"183,0r-32,0r-89,-196r0,196r-29,0r0,-248r32,0r90,194r0,-194r28,0r0,248"},"O":{"d":"22,-124v0,-73,22,-129,86,-129v63,0,85,56,85,129v0,73,-21,129,-85,129v-64,0,-86,-56,-86,-129xm53,-124v0,55,10,103,55,103v37,0,54,-34,54,-103v0,-69,-17,-103,-54,-103v-45,0,-55,49,-55,103"},"P":{"d":"187,-181v-1,55,-49,77,-113,70r0,111r-29,0r0,-248v72,-4,142,0,142,67xm156,-179v-2,-39,-38,-48,-82,-44r0,87v44,3,84,-3,82,-43"},"Q":{"d":"108,-253v109,-7,105,213,39,248v6,26,22,30,47,23r6,23v-39,12,-72,3,-81,-37v-73,7,-97,-52,-97,-128v0,-73,22,-125,86,-129xm53,-124v0,55,10,103,55,103v37,0,54,-34,54,-103v0,-69,-17,-103,-54,-103v-45,0,-55,49,-55,103"},"R":{"d":"183,-183v0,33,-26,58,-56,64r79,119r-36,0r-72,-113r-32,0r0,113r-29,0r0,-248v71,-2,149,-5,146,65xm66,-138v45,3,85,-2,87,-43v2,-42,-42,-44,-87,-42r0,85"},"S":{"d":"40,-188v0,-61,72,-77,127,-57r-6,24v-38,-14,-93,-10,-93,32v0,54,112,46,112,118v0,68,-82,94,-138,63r6,-25v43,24,104,16,104,-35v0,-68,-112,-46,-112,-120"},"T":{"d":"199,-225r-76,0r0,225r-29,0r0,-225r-77,0r0,-23r182,0r0,23"},"U":{"d":"109,-21v32,0,41,-22,41,-59r0,-168r29,0r0,170v1,55,-19,83,-70,83v-48,0,-72,-27,-72,-82r0,-171r29,0r0,168v0,40,14,59,43,59"},"V":{"d":"206,-248r-81,248r-35,0r-81,-248r31,0r68,215r68,-215r30,0"},"W":{"d":"208,-248r-31,248r-27,0r-42,-140r-42,140r-28,0r-30,-248r28,0r21,202r37,-122r28,0r37,122r21,-202r28,0"},"X":{"d":"204,0r-32,0r-62,-102r-63,102r-32,0r79,-126r-79,-122r34,0r61,98r61,-98r32,0r-78,122"},"Y":{"d":"200,-248r-77,142r0,106r-29,0r0,-106r-77,-142r32,0r59,112r60,-112r32,0"},"Z":{"d":"183,-227r-118,202r116,0r0,25r-149,0r0,-20r117,-203r-112,0r0,-25r146,0r0,21"},"[":{"d":"160,47r-68,0r0,-295r68,0r0,24r-41,0r0,248r41,0r0,23"},"\\":{"d":"171,5r-26,0r-108,-258r27,0"},"]":{"d":"119,47r-70,0r0,-24r43,0r0,-247r-43,0r0,-24r70,0r0,295"},"^":{"d":"198,-139r-26,0r-64,-105r-63,105r-25,0r78,-131r22,0"},"_":{"d":"216,78r-216,0r0,-23r216,0r0,23"},"`":{"d":"136,-205r-20,0r-55,-53r40,0"},"a":{"d":"152,-108v9,-65,-61,-63,-98,-41r-7,-19v54,-33,132,-30,132,47v0,41,-3,88,5,121r-28,0v-2,-7,-3,-18,-3,-30v-26,49,-114,47,-115,-17v0,-56,61,-56,114,-61xm67,-49v4,47,74,23,85,-5r0,-34v-48,6,-76,2,-85,39"},"b":{"d":"121,5v-24,0,-46,-15,-56,-31r0,26r-27,0r0,-248r27,0r0,89v11,-15,33,-29,58,-29v46,0,67,43,67,94v0,50,-24,98,-69,99xm162,-93v0,-37,-14,-70,-48,-71v-19,0,-36,11,-49,32r0,76v8,17,26,36,48,36v33,0,50,-36,49,-73"},"c":{"d":"60,-91v0,59,57,89,113,63r5,22v-69,32,-147,-8,-147,-85v0,-77,75,-117,147,-87r-8,23v-57,-24,-110,2,-110,64"},"d":{"d":"94,5v-93,-1,-91,-194,1,-193v23,0,42,10,56,29r0,-89r27,0r0,248r-27,0r0,-26v-11,16,-31,31,-57,31xm101,-20v23,2,43,-22,50,-36r0,-76v-13,-21,-29,-32,-48,-32v-65,0,-65,142,-2,144"},"e":{"d":"110,-188v47,0,78,42,74,97r-125,0v-2,61,56,88,113,63r5,22v-69,31,-147,-5,-147,-86v0,-54,30,-96,80,-96xm155,-113v2,-41,-50,-69,-79,-37v-9,9,-15,22,-16,37r95,0"},"f":{"d":"85,-183v-9,-67,42,-80,96,-62r-8,22v-36,-12,-67,-9,-60,40r61,0r0,24r-61,0r0,159r-28,0r0,-159r-46,0r0,-24r46,0"},"g":{"d":"153,-161v23,45,-8,99,-64,92v-17,8,-26,16,-26,22v21,34,130,-21,130,51v0,44,-48,68,-93,68v-58,0,-99,-57,-39,-82v-38,-19,-30,-47,7,-65v-49,-24,-34,-112,31,-112v13,0,25,3,35,8r54,-9r0,27r-35,0xm65,-128v0,21,15,38,34,38v22,1,35,-17,35,-38v0,-22,-13,-38,-35,-38v-19,0,-34,17,-34,38xm57,25v0,46,111,28,109,-16v-1,-28,-51,-16,-80,-16v-12,4,-29,16,-29,32"},"h":{"d":"152,-117v2,-63,-57,-56,-87,-16r0,133r-27,0r0,-248r27,0r0,92v37,-47,114,-46,114,31r0,125r-27,0r0,-117"},"i":{"d":"102,-234v-1,-9,9,-19,18,-18v10,-1,19,9,19,18v0,9,-9,20,-19,19v-10,1,-19,-9,-18,-19xm133,0r-27,0r0,-159r-54,0r0,-24r81,0r0,183"},"j":{"d":"102,-234v-1,-9,9,-19,18,-18v10,-1,19,9,19,18v0,9,-9,20,-19,19v-10,1,-19,-9,-18,-19xm45,43v34,11,61,11,61,-36r0,-166r-54,0r0,-24r81,0r0,192v7,63,-44,73,-95,56"},"k":{"d":"197,0r-36,0r-78,-91r-18,15r0,76r-27,0r0,-248r27,0r0,142r86,-77r35,0r-83,75"},"l":{"d":"166,0r-75,0r0,-224r-48,0r0,-24r75,0r0,224r48,0r0,24"},"m":{"d":"121,-156v8,-15,21,-32,39,-32v22,0,33,20,33,60r0,128r-27,0r0,-120v0,-29,-5,-44,-16,-44v-8,-4,-28,29,-28,32r0,132r-28,0r0,-120v0,-29,-5,-44,-16,-44v-7,-4,-28,29,-28,32r0,132r-27,0r0,-183r26,0r0,27v8,-16,21,-32,40,-32v16,0,29,16,32,32"},"n":{"d":"152,-117v2,-63,-57,-56,-87,-16r0,133r-27,0r0,-183r27,0r0,27v37,-47,114,-46,114,31r0,125r-27,0r0,-117"},"o":{"d":"25,-92v0,-54,32,-96,83,-96v51,0,82,42,82,96v0,54,-30,97,-82,97v-52,0,-83,-43,-83,-97xm54,-91v1,36,18,72,54,72v35,0,54,-36,54,-72v-1,-37,-18,-73,-54,-73v-37,0,-54,34,-54,73"},"p":{"d":"121,5v-24,0,-46,-15,-56,-31r0,98r-27,0r0,-255r27,0r0,24v11,-15,33,-29,58,-29v45,2,67,44,67,94v0,49,-23,99,-69,99xm162,-92v0,-37,-14,-71,-48,-72v-19,0,-36,11,-49,32r0,76v8,17,26,36,48,36v32,0,50,-36,49,-72"},"q":{"d":"94,5v-92,-1,-92,-195,1,-193v23,0,42,10,56,29r0,-24r27,0r0,255r-27,0r0,-98v-11,16,-31,31,-57,31xm101,-20v24,1,43,-22,50,-36r0,-76v-13,-21,-29,-32,-48,-32v-64,1,-66,141,-2,144"},"r":{"d":"171,-152v-38,-23,-75,8,-86,34r0,118r-28,0r0,-183r28,0r0,37v22,-43,55,-52,97,-32"},"s":{"d":"41,-136v2,-52,74,-61,125,-44r-6,23v-35,-17,-111,-7,-86,34v31,23,102,14,102,71v0,58,-85,68,-133,47r5,-24v31,16,97,18,101,-20v-9,-51,-111,-24,-108,-87"},"t":{"d":"104,-159v7,48,-21,139,27,139v15,0,30,-3,45,-10r5,22v-42,19,-104,21,-104,-39r0,-112r-35,0r0,-24r35,0r0,-50r27,0r0,50r62,0r0,24r-62,0"},"u":{"d":"65,-66v-3,63,57,54,86,15r0,-132r28,0r0,183r-28,0r0,-27v-37,45,-114,46,-114,-31r0,-125r28,0r0,117"},"v":{"d":"187,-183r-69,183r-25,0r-69,-183r30,0r51,146r52,-146r30,0"},"w":{"d":"201,-183r-27,183r-21,0r-43,-104r-43,104r-21,0r-26,-183r27,0v10,86,16,130,16,134r33,-79r28,0r34,79r14,-134r29,0"},"x":{"d":"185,0r-30,0r-50,-72r-50,72r-30,0r66,-92r-66,-91r32,0r49,71r50,-71r29,0r-64,90"},"y":{"d":"187,-183v-32,76,-55,177,-99,239v-15,21,-41,19,-67,10r4,-22v41,16,56,-11,67,-44r-68,-183r30,0r51,146r52,-146r30,0"},"z":{"d":"176,0r-140,0r0,-15r104,-144r-102,0r0,-24r138,0r0,13r-104,146r104,0r0,24"},"{":{"d":"126,-15v0,34,0,56,35,52r0,23v-55,5,-64,-24,-62,-81v1,-37,-5,-58,-36,-59r0,-28v37,1,36,-35,36,-76v0,-50,14,-66,62,-64r0,23v-34,-3,-35,17,-35,52v1,46,-8,65,-37,79v29,14,38,33,37,79"},"|":{"d":"121,67r-27,0r0,-315r27,0r0,315"},"}":{"d":"116,-184v0,39,-1,76,36,76r0,28v-36,0,-36,36,-36,76v0,51,-14,66,-62,64r0,-23v35,3,36,-16,35,-52v-1,-46,8,-65,37,-79v-32,-14,-39,-40,-37,-90v0,-34,-4,-42,-35,-41r0,-23v48,-2,63,14,62,64"},"~":{"d":"64,-118v18,0,74,27,89,27v14,0,30,-8,50,-24r0,25v-18,15,-36,23,-53,23v-16,0,-72,-27,-88,-27v-14,0,-32,8,-52,24r0,-25v19,-15,37,-23,54,-23"},"\u00c4":{"d":"207,0r-31,0r-27,-87r-81,0r-28,87r-30,0r81,-248r35,0xm141,-112r-33,-103r-32,103r65,0xm124,-290v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm54,-290v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u00c5":{"d":"108,-301v30,0,48,43,20,60r79,241r-31,0r-27,-87r-81,0r-28,87r-30,0r79,-240v-26,-18,-12,-61,19,-61xm88,-268v0,10,10,20,20,20v10,0,20,-10,20,-20v0,-10,-10,-20,-20,-20v-10,0,-20,10,-20,20xm141,-112r-33,-103r-32,103r65,0"},"\u00c7":{"d":"121,-227v-54,1,-66,42,-68,103v-3,100,59,124,126,86r9,23v-17,12,-37,18,-60,19r-2,5v14,3,21,11,21,22v1,26,-27,40,-54,32r0,-17v26,9,51,-24,11,-23r6,-19v-62,-5,-84,-57,-88,-128v-5,-101,75,-160,162,-112r-9,23v-17,-9,-34,-14,-54,-14"},"\u00c9":{"d":"175,0r-130,0r0,-248r128,0r0,25r-99,0r0,77r96,0r0,25r-96,0r0,96r101,0r0,25xm155,-323r-55,53r-19,0r34,-53r40,0"},"\u00d1":{"d":"183,0r-32,0r-89,-196r0,196r-29,0r0,-248r32,0r90,194r0,-194r28,0r0,248xm80,-313v19,0,69,40,74,0r15,0v-4,27,-15,40,-34,40v-19,0,-68,-39,-74,0r-14,0v4,-27,14,-40,33,-40"},"\u00d6":{"d":"22,-124v0,-73,22,-129,86,-129v63,0,85,56,85,129v0,73,-21,129,-85,129v-64,0,-86,-56,-86,-129xm53,-124v0,55,10,103,55,103v37,0,54,-34,54,-103v0,-69,-17,-103,-54,-103v-45,0,-55,49,-55,103xm124,-290v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm54,-290v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u00dc":{"d":"109,-21v32,0,41,-22,41,-59r0,-168r29,0r0,170v1,55,-19,83,-70,83v-48,0,-72,-27,-72,-82r0,-171r29,0r0,168v0,40,14,59,43,59xm124,-290v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm54,-290v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u00e1":{"d":"152,-108v9,-65,-61,-63,-98,-41r-7,-19v54,-33,132,-30,132,47v0,41,-3,88,5,121r-28,0v-2,-7,-3,-18,-3,-30v-26,49,-114,47,-115,-17v0,-56,61,-56,114,-61xm67,-49v4,47,74,23,85,-5r0,-34v-48,6,-76,2,-85,39xm161,-258r-55,53r-19,0r34,-53r40,0"},"\u00e0":{"d":"152,-108v9,-65,-61,-63,-98,-41r-7,-19v54,-33,132,-30,132,47v0,41,-3,88,5,121r-28,0v-2,-7,-3,-18,-3,-30v-26,49,-114,47,-115,-17v0,-56,61,-56,114,-61xm67,-49v4,47,74,23,85,-5r0,-34v-48,6,-76,2,-85,39xm145,-205r-20,0r-55,-53r40,0"},"\u00e2":{"d":"152,-108v9,-65,-61,-63,-98,-41r-7,-19v54,-33,132,-30,132,47v0,41,-3,88,5,121r-28,0v-2,-7,-3,-18,-3,-30v-26,49,-114,47,-115,-17v0,-56,61,-56,114,-61xm67,-49v4,47,74,23,85,-5r0,-34v-48,6,-76,2,-85,39xm169,-205r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u00e4":{"d":"152,-108v9,-65,-61,-63,-98,-41r-7,-19v54,-33,132,-30,132,47v0,41,-3,88,5,121r-28,0v-2,-7,-3,-18,-3,-30v-26,49,-114,47,-115,-17v0,-56,61,-56,114,-61xm67,-49v4,47,74,23,85,-5r0,-34v-48,6,-76,2,-85,39xm128,-225v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm58,-225v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u00e3":{"d":"152,-108v9,-65,-61,-63,-98,-41r-7,-19v54,-33,132,-30,132,47v0,41,-3,88,5,121r-28,0v-2,-7,-3,-18,-3,-30v-26,49,-114,47,-115,-17v0,-56,61,-56,114,-61xm67,-49v4,47,74,23,85,-5r0,-34v-48,6,-76,2,-85,39xm85,-248v19,0,69,40,74,0r15,0v-4,27,-15,40,-34,40v-19,0,-68,-39,-74,0r-14,0v4,-27,14,-40,33,-40"},"\u00e5":{"d":"152,-108v9,-65,-61,-63,-98,-41r-7,-19v54,-33,132,-30,132,47v0,41,-3,88,5,121r-28,0v-2,-7,-3,-18,-3,-30v-26,49,-114,47,-115,-17v0,-56,61,-56,114,-61xm67,-49v4,47,74,23,85,-5r0,-34v-48,6,-76,2,-85,39xm80,-239v0,-18,16,-33,33,-33v17,0,34,16,34,33v0,17,-17,34,-34,34v-17,0,-33,-16,-33,-34xm93,-239v-1,11,10,20,20,20v10,1,21,-10,20,-20v0,-10,-10,-19,-20,-19v-10,0,-20,9,-20,19"},"\u00e7":{"d":"60,-91v0,59,57,89,113,63r5,22v-15,7,-31,11,-50,11r-2,4v14,3,21,11,21,22v1,26,-27,40,-54,32r0,-17v26,9,51,-24,11,-23r6,-19v-48,-6,-79,-43,-79,-95v0,-77,75,-117,147,-87r-8,23v-57,-24,-110,2,-110,64"},"\u00e9":{"d":"110,-188v47,0,78,42,74,97r-125,0v-2,61,56,88,113,63r5,22v-69,31,-147,-5,-147,-86v0,-54,30,-96,80,-96xm155,-113v2,-41,-50,-69,-79,-37v-9,9,-15,22,-16,37r95,0xm154,-258r-55,53r-19,0r34,-53r40,0"},"\u00e8":{"d":"110,-188v47,0,78,42,74,97r-125,0v-2,61,56,88,113,63r5,22v-69,31,-147,-5,-147,-86v0,-54,30,-96,80,-96xm155,-113v2,-41,-50,-69,-79,-37v-9,9,-15,22,-16,37r95,0xm136,-205r-20,0r-55,-53r40,0"},"\u00ea":{"d":"110,-188v47,0,78,42,74,97r-125,0v-2,61,56,88,113,63r5,22v-69,31,-147,-5,-147,-86v0,-54,30,-96,80,-96xm155,-113v2,-41,-50,-69,-79,-37v-9,9,-15,22,-16,37r95,0xm163,-205r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u00eb":{"d":"110,-188v47,0,78,42,74,97r-125,0v-2,61,56,88,113,63r5,22v-69,31,-147,-5,-147,-86v0,-54,30,-96,80,-96xm155,-113v2,-41,-50,-69,-79,-37v-9,9,-15,22,-16,37r95,0xm126,-225v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm56,-225v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u00ed":{"d":"133,0r-27,0r0,-159r-54,0r0,-24r81,0r0,183xm152,-258r-55,53r-19,0r34,-53r40,0"},"\u00ec":{"d":"133,0r-27,0r0,-159r-54,0r0,-24r81,0r0,183xm134,-205r-20,0r-55,-53r40,0"},"\u00ee":{"d":"133,0r-27,0r0,-159r-54,0r0,-24r81,0r0,183xm159,-205r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u00ef":{"d":"133,0r-27,0r0,-159r-54,0r0,-24r81,0r0,183xm123,-225v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm53,-225v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u00f1":{"d":"152,-117v2,-63,-57,-56,-87,-16r0,133r-27,0r0,-183r27,0r0,27v37,-47,114,-46,114,31r0,125r-27,0r0,-117xm80,-248v19,0,69,40,74,0r15,0v-4,27,-15,40,-34,40v-19,0,-68,-39,-74,0r-14,0v4,-27,14,-40,33,-40"},"\u00f3":{"d":"25,-92v0,-54,32,-96,83,-96v51,0,82,42,82,96v0,54,-30,97,-82,97v-52,0,-83,-43,-83,-97xm54,-91v1,36,18,72,54,72v35,0,54,-36,54,-72v-1,-37,-18,-73,-54,-73v-37,0,-54,34,-54,73xm157,-258r-55,53r-19,0r34,-53r40,0"},"\u00f2":{"d":"25,-92v0,-54,32,-96,83,-96v51,0,82,42,82,96v0,54,-30,97,-82,97v-52,0,-83,-43,-83,-97xm54,-91v1,36,18,72,54,72v35,0,54,-36,54,-72v-1,-37,-18,-73,-54,-73v-37,0,-54,34,-54,73xm140,-205r-20,0r-55,-53r40,0"},"\u00f4":{"d":"25,-92v0,-54,32,-96,83,-96v51,0,82,42,82,96v0,54,-30,97,-82,97v-52,0,-83,-43,-83,-97xm54,-91v1,36,18,72,54,72v35,0,54,-36,54,-72v-1,-37,-18,-73,-54,-73v-37,0,-54,34,-54,73xm163,-205r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u00f6":{"d":"25,-92v0,-54,32,-96,83,-96v51,0,82,42,82,96v0,54,-30,97,-82,97v-52,0,-83,-43,-83,-97xm54,-91v1,36,18,72,54,72v35,0,54,-36,54,-72v-1,-37,-18,-73,-54,-73v-37,0,-54,34,-54,73xm124,-225v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm54,-225v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u00f5":{"d":"25,-92v0,-54,32,-96,83,-96v51,0,82,42,82,96v0,54,-30,97,-82,97v-52,0,-83,-43,-83,-97xm54,-91v1,36,18,72,54,72v35,0,54,-36,54,-72v-1,-37,-18,-73,-54,-73v-37,0,-54,34,-54,73xm81,-248v19,0,69,40,74,0r15,0v-4,27,-15,40,-34,40v-19,0,-68,-39,-74,0r-14,0v4,-27,14,-40,33,-40"},"\u00fa":{"d":"65,-66v-3,63,57,54,86,15r0,-132r28,0r0,183r-28,0r0,-27v-37,45,-114,46,-114,-31r0,-125r28,0r0,117xm156,-258r-55,53r-19,0r34,-53r40,0"},"\u00f9":{"d":"65,-66v-3,63,57,54,86,15r0,-132r28,0r0,183r-28,0r0,-27v-37,45,-114,46,-114,-31r0,-125r28,0r0,117xm135,-205r-20,0r-55,-53r40,0"},"\u00fb":{"d":"65,-66v-3,63,57,54,86,15r0,-132r28,0r0,183r-28,0r0,-27v-37,45,-114,46,-114,-31r0,-125r28,0r0,117xm162,-205r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u00fc":{"d":"65,-66v-3,63,57,54,86,15r0,-132r28,0r0,183r-28,0r0,-27v-37,45,-114,46,-114,-31r0,-125r28,0r0,117xm123,-225v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm53,-225v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u2020":{"d":"177,-144v-22,1,-39,-3,-56,-6r0,212r-26,0r0,-212v-18,3,-35,7,-57,6r0,-31v22,-1,39,3,56,7r-2,-80r31,0r-1,80v17,-4,33,-9,55,-7r0,31"},"\u00b0":{"d":"59,-204v0,-27,22,-49,49,-49v26,0,48,23,48,49v0,26,-22,48,-48,48v-26,0,-49,-22,-49,-48xm78,-204v0,15,15,30,30,30v15,0,29,-14,29,-30v0,-16,-14,-30,-29,-30v-15,0,-30,15,-30,30"},"\u00a2":{"d":"35,-91v0,-52,31,-89,77,-96r0,-32r21,0r0,31v17,0,33,4,48,10r-7,23v-14,-5,-28,-8,-41,-9r0,145v15,-1,29,-4,44,-9r5,22v-15,7,-31,11,-49,11r0,31r-21,0r0,-32v-46,-8,-77,-42,-77,-95xm112,-162v-65,9,-63,130,0,141r0,-141"},"\u00a3":{"d":"81,-44v37,2,81,41,114,1r0,29v-13,11,-28,18,-45,18v-16,0,-52,-21,-68,-21v-15,0,-30,7,-45,19r0,-28v31,-18,26,-43,26,-85r-35,0r0,-23r35,0v-2,-67,6,-120,69,-118v17,0,33,3,47,9r-7,23v-45,-18,-86,-1,-80,56r0,30r44,0r0,23r-44,0v0,26,3,54,-11,67"},"\u00a7":{"d":"70,-148v-61,-31,-20,-105,48,-105v17,0,34,2,50,7r-6,24v-36,-11,-93,-13,-93,27v0,51,111,34,111,104v0,21,-10,40,-29,53v53,42,6,113,-58,113v-20,0,-39,-4,-57,-13r6,-24v39,20,103,19,103,-28v0,-65,-112,-40,-112,-108v0,-25,16,-42,37,-50xm99,-135v-23,-1,-52,32,-29,54v14,12,40,19,60,27v15,-7,22,-19,22,-34v0,-31,-30,-40,-53,-47"},"\u2022":{"d":"63,-123v0,-23,22,-44,45,-44v23,0,44,21,44,44v0,23,-21,45,-44,45v-24,0,-45,-21,-45,-45"},"\u00b6":{"d":"7,-170v2,-49,38,-79,90,-78r103,0r0,19r-27,0r0,291r-20,0r0,-291r-42,0r0,291r-21,0r0,-159v-37,1,-84,-33,-83,-73"},"\u00df":{"d":"98,-229v-29,1,-44,21,-43,54r0,175r-28,0r0,-181v0,-45,26,-71,71,-71v43,0,64,17,64,52v0,37,-70,45,-39,79v22,12,85,32,77,72v2,52,-68,66,-112,44r5,-23v29,17,80,14,80,-20v0,-51,-85,-30,-85,-87v0,-32,47,-36,47,-63v0,-22,-14,-31,-37,-31"},"\u00ae":{"d":"2,-147v0,-56,50,-106,106,-106v56,0,106,50,106,106v0,57,-50,107,-106,107v-56,0,-106,-50,-106,-107xm21,-147v0,47,40,87,87,87v47,0,87,-40,87,-87v0,-47,-41,-87,-87,-87v-46,0,-87,40,-87,87xm71,-205v38,-2,78,-1,77,34v0,14,-7,24,-22,30r36,51r-25,0r-30,-45r-14,0r0,45r-22,0r0,-115xm93,-154v17,1,34,-1,34,-16v0,-16,-17,-17,-34,-16r0,32"},"\u00a9":{"d":"2,-147v0,-56,50,-106,106,-106v56,0,106,50,106,106v0,57,-50,107,-106,107v-56,0,-106,-50,-106,-107xm21,-147v0,47,40,87,87,87v47,0,87,-40,87,-87v0,-47,-41,-87,-87,-87v-46,0,-87,40,-87,87xm136,-180v-26,-15,-53,-4,-53,33v0,42,30,47,56,29r6,16v-36,29,-84,3,-84,-45v0,-48,41,-72,82,-50"},"\u2122":{"d":"204,-117r-23,0r0,-97r-24,55r-17,0r-23,-55r0,97r-21,0r0,-131r25,0r27,64r29,-64r27,0r0,131xm86,-229r-31,0r0,112r-22,0r0,-112r-30,0r0,-19r83,0r0,19"},"\u00b4":{"d":"155,-258r-55,53r-19,0r34,-53r40,0"},"\u00a8":{"d":"124,-228v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm54,-228v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u2260":{"d":"191,-80r-92,0r-35,85r-26,0r35,-85r-48,0r0,-23r58,0r20,-48r-78,0r0,-23r87,0r33,-79r26,0r-33,79r53,0r0,23r-63,0r-19,48r82,0r0,23"},"\u00c6":{"d":"208,0r-103,0r0,-89r-46,0r-27,89r-30,0r79,-248r126,0r0,25r-73,0r0,77r69,0r0,25r-69,0r0,96r74,0r0,25xm105,-114r0,-108r-4,0r-34,108r38,0"},"\u00d8":{"d":"22,-124v0,-89,48,-154,125,-119r11,-27r24,0r-17,41v46,56,44,234,-57,234v-15,0,-28,-4,-39,-10r-11,26r-24,0r17,-40v-19,-21,-29,-57,-29,-105xm136,-218v-55,-31,-83,29,-83,94v0,30,4,55,12,73xm80,-30v52,28,84,-11,82,-94v0,-31,-3,-56,-11,-73"},"\u221e":{"d":"10,-127v0,-60,69,-68,94,-20v17,-24,24,-41,51,-41v31,0,52,28,52,61v0,33,-20,60,-51,59v-28,-1,-36,-17,-52,-40v-27,49,-94,41,-94,-19xm182,-128v0,-28,-23,-46,-42,-27v-6,5,-14,14,-23,28v16,19,18,31,39,35v17,-1,26,-16,26,-36xm33,-127v3,39,39,34,57,0v-13,-19,-25,-29,-36,-29v-13,1,-21,13,-21,29"},"\u00b1":{"d":"191,-115r-71,0r0,71r-23,0r0,-71r-72,0r0,-24r72,0r0,-72r23,0r0,72r71,0r0,24xm191,0r-166,0r0,-23r166,0r0,23"},"\u2264":{"d":"171,-38r-131,-79r0,-21r131,-78r0,25r-105,65r105,62r0,26xm171,0r-131,0r0,-23r131,0r0,23"},"\u2265":{"d":"178,-117r-131,79r0,-26r105,-63r-105,-64r0,-25r131,78r0,21xm178,0r-131,0r0,-23r131,0r0,23"},"\u00a5":{"d":"200,-248r-68,126r60,0r0,23r-69,0r0,25r69,0r0,23r-69,0r0,52r-29,0r0,-52r-69,0r0,-23r69,0r0,-25r-69,0r0,-23r60,0r-68,-126r32,0r59,112r60,-112r32,0"},"\u00b5":{"d":"65,-66v-3,63,57,54,86,15r0,-132r28,0r0,183r-28,0r0,-27v-26,27,-50,38,-86,27r0,59r-28,0r0,-242r28,0r0,117"},"\u2202":{"d":"166,-165v6,-59,-31,-95,-82,-68r-7,-21v57,-31,118,8,118,79v0,84,-41,177,-114,179v-39,1,-62,-30,-62,-70v0,-78,86,-159,147,-99xm47,-67v0,55,63,59,86,15v11,-22,24,-48,30,-83v-10,-13,-29,-27,-49,-27v-43,-1,-67,51,-67,95"},"\u2211":{"d":"201,50r-181,0r0,-26r86,-127r-82,-123r0,-22r170,0r0,25r-136,0r81,120r-85,124r147,0r0,29"},"\u220f":{"d":"190,49r-29,0r0,-272r-106,0r0,272r-29,0r0,-297r164,0r0,297"},"\u222b":{"d":"94,-207v-5,-53,39,-68,82,-50r-6,19v-30,-11,-49,-3,-49,35r0,213v4,53,-38,68,-81,49r6,-19v31,12,48,4,48,-35r0,-212"},"\u00aa":{"d":"128,-206v2,-34,-33,-32,-57,-19r-7,-15v37,-20,87,-21,87,28v1,26,-2,49,3,72r-24,0v-1,-4,-1,-10,-1,-15v-16,25,-70,24,-70,-16v0,-22,23,-33,69,-35xm84,-171v2,23,34,17,44,-1r0,-21v-27,2,-42,3,-44,22"},"\u00ba":{"d":"53,-195v0,-33,20,-58,53,-58v32,0,52,25,52,58v0,33,-21,58,-52,58v-33,1,-52,-26,-53,-58xm78,-195v0,20,9,39,28,39v19,0,28,-20,28,-39v0,-26,-9,-39,-28,-39v-20,0,-28,17,-28,39"},"\u2126":{"d":"108,-229v-82,0,-69,182,-12,206r0,23r-69,0r0,-23r37,0v-63,-46,-59,-230,44,-230v101,0,106,182,44,230r36,0r0,23r-67,0r0,-23v56,-25,66,-206,-13,-206"},"\u00e6":{"d":"122,-91v-5,58,32,88,82,63r4,22v-37,18,-81,15,-99,-20v-27,47,-104,40,-101,-21v2,-45,34,-55,87,-61v6,-54,-30,-68,-73,-46r-7,-21v32,-17,81,-21,98,8v11,-14,24,-21,41,-21v43,1,56,45,54,97r-86,0xm178,-113v4,-37,-23,-69,-46,-38v-6,9,-9,22,-10,38r56,0xm63,-22v13,2,31,-15,32,-23r0,-43v-31,2,-56,13,-58,39v-1,16,11,28,26,27"},"\u00f8":{"d":"62,-8v-72,-47,-32,-217,75,-175r11,-26r24,0r-15,37v66,49,29,210,-75,173r-11,25r-24,0xm127,-160v-68,-28,-95,81,-54,126xm92,-22v65,22,89,-80,53,-124"},"\u00bf":{"d":"105,-165v0,-12,10,-23,22,-23v12,0,21,12,21,23v0,12,-9,22,-21,22v-12,0,-23,-9,-22,-22xm99,-30v-32,24,-28,77,22,77v12,0,27,-3,45,-12r9,21v-52,26,-121,17,-126,-45v-3,-44,74,-63,69,-119r24,0v4,42,-20,61,-43,78"},"\u00a1":{"d":"88,-165v0,-12,10,-23,22,-23v12,0,21,12,21,23v0,12,-9,22,-21,22v-12,0,-23,-9,-22,-22xm126,65r-32,0v-2,-62,3,-119,9,-173r15,0v5,55,10,111,8,173"},"\u00ac":{"d":"191,-88r-23,0r0,-63r-143,0r0,-23r166,0r0,86"},"\u221a":{"d":"216,-258r-26,0r-76,305r-30,0r-37,-113r-34,13r-8,-23r58,-20r35,111r74,-297r44,0r0,24"},"\u0192":{"d":"112,-183v8,-54,35,-81,89,-65r-6,22v-38,-9,-49,2,-56,43r42,0r0,22r-46,0v-18,62,-23,147,-54,194v-18,18,-38,20,-67,11r8,-23v36,12,48,-7,54,-41r31,-141r-31,0r0,-22r36,0"},"\u2248":{"d":"66,-188v17,0,72,28,88,28v14,0,30,-8,50,-24r0,25v-18,15,-35,23,-52,23v-16,0,-73,-27,-89,-27v-14,0,-31,8,-51,24r0,-26v18,-15,37,-23,54,-23xm66,-118v17,0,73,27,88,27v14,0,30,-8,50,-24r0,25v-18,15,-35,23,-52,23v-16,0,-73,-27,-89,-27v-14,0,-31,8,-51,24r0,-25v18,-15,37,-23,54,-23"},"\u2206":{"d":"207,0r-197,0r81,-248r35,0xm169,-23r-61,-194r-61,194r122,0"},"\u00ab":{"d":"185,-24r-17,14r-66,-78r0,-22r66,-77r17,14r-63,74xm114,-24r-16,14r-67,-78r0,-22r67,-77r16,14r-63,74"},"\u00bb":{"d":"185,-88r-67,78r-16,-14r63,-75r-63,-74r16,-14r67,77r0,22xm114,-88r-67,78r-16,-14r63,-75r-63,-74r16,-14r67,77r0,22"},"\u2026":{"d":"158,-18v0,-12,10,-22,22,-22v12,0,23,9,22,22v0,12,-10,23,-22,23v-12,0,-22,-12,-22,-23xm87,-18v0,-12,9,-22,21,-22v12,0,23,9,22,22v0,12,-10,23,-22,23v-12,0,-21,-12,-21,-23xm14,-18v0,-12,9,-23,22,-22v12,0,22,10,22,22v0,11,-10,23,-22,23v-12,0,-22,-11,-22,-23"},"\u00a0":{},"\u00c0":{"d":"207,0r-31,0r-27,-87r-81,0r-28,87r-30,0r81,-248r35,0xm141,-112r-33,-103r-32,103r65,0xm137,-270r-20,0r-55,-53r40,0"},"\u00c3":{"d":"207,0r-31,0r-27,-87r-81,0r-28,87r-30,0r81,-248r35,0xm141,-112r-33,-103r-32,103r65,0xm83,-313v19,0,69,40,74,0r15,0v-4,27,-15,40,-34,40v-19,0,-68,-39,-74,0r-14,0v4,-27,14,-40,33,-40"},"\u00d5":{"d":"22,-124v0,-73,22,-129,86,-129v63,0,85,56,85,129v0,73,-21,129,-85,129v-64,0,-86,-56,-86,-129xm53,-124v0,55,10,103,55,103v37,0,54,-34,54,-103v0,-69,-17,-103,-54,-103v-45,0,-55,49,-55,103xm78,-313v19,0,69,40,74,0r15,0v-4,27,-15,40,-34,40v-19,0,-68,-39,-74,0r-14,0v4,-27,14,-40,33,-40"},"\u0152":{"d":"22,-124v0,-68,25,-123,86,-124r86,0r0,25r-62,0r0,77r58,0r0,25r-58,0r0,96r63,0r0,25r-90,0v-57,-1,-83,-61,-83,-124xm105,-223v-67,-3,-58,125,-39,172v7,17,21,26,39,26r0,-198"},"\u0153":{"d":"122,-91v-5,58,32,88,82,63r4,22v-29,15,-65,16,-87,-5v-52,45,-112,-14,-112,-80v0,-67,55,-123,111,-84v49,-37,98,15,88,84r-86,0xm178,-113v-1,-25,-5,-51,-24,-51v-20,0,-30,17,-32,51r56,0xm38,-91v0,52,29,90,70,63v-17,-30,-19,-92,-3,-126v-38,-27,-67,2,-67,63"},"\u2013":{"d":"176,-86r-144,0r0,-26r144,0r0,26"},"\u2014":{"d":"216,-86r-216,0r0,-26r216,0r0,26"},"\u201c":{"d":"140,-172v-41,-10,-25,-68,14,-81r7,13v-14,7,-22,15,-22,24v25,0,29,45,1,44xm76,-172v-42,-10,-24,-68,14,-81r7,13v-14,7,-22,15,-22,24v25,1,29,44,1,44"},"\u201d":{"d":"138,-253v42,10,24,68,-14,81r-7,-12v14,-7,22,-16,22,-25v-26,0,-30,-45,-1,-44xm73,-253v43,11,24,68,-14,81r-6,-12v14,-7,21,-16,21,-25v-25,-1,-29,-44,-1,-44"},"\u2018":{"d":"108,-172v-41,-10,-24,-68,14,-81r7,13v-14,7,-21,15,-21,24v25,1,28,45,0,44"},"\u2019":{"d":"105,-253v42,10,24,68,-14,81r-7,-12v14,-7,21,-16,21,-25v-25,-1,-28,-45,0,-44"},"\u00f7":{"d":"89,-195v0,-11,8,-20,19,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-10,0,-19,-10,-19,-20xm191,-115r-166,0r0,-24r166,0r0,24xm89,-60v0,-11,8,-20,19,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-10,0,-19,-10,-19,-21"},"\u25ca":{"d":"203,-135r-95,135r-95,-135r95,-134xm176,-135r-68,-94r-68,94r68,98"},"\u00ff":{"d":"187,-183v-32,76,-55,177,-99,239v-15,21,-41,19,-67,10r4,-22v41,16,56,-11,67,-44r-68,-183r30,0r51,146r52,-146r30,0xm122,-225v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm52,-225v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u0178":{"d":"200,-248r-77,142r0,106r-29,0r0,-106r-77,-142r32,0r59,112r60,-112r32,0xm125,-290v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm55,-290v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u2044":{"d":"175,-248r-113,248r-21,0r113,-248r21,0"},"\u2215":{"d":"175,-248r-113,248r-21,0r113,-248r21,0"},"\u20ac":{"d":"188,-15v-66,42,-158,17,-163,-74r-25,0v7,-8,5,-25,23,-23v-1,-4,-1,-21,0,-25r-23,0v7,-9,5,-27,25,-23v6,-88,91,-113,159,-76r-9,23v-51,-28,-115,-16,-120,53r124,0r-13,23r-113,0r0,25r115,0r-12,23r-101,0v8,71,70,84,124,51"},"\u2039":{"d":"150,-24r-16,14r-67,-78r0,-22r67,-77r16,14r-63,74"},"\u203a":{"d":"149,-88r-67,78r-16,-14r63,-75r-63,-74r16,-14r67,77r0,22"},"\ufb01":{"d":"136,-223v-36,-12,-68,-9,-61,40r98,0r0,183r-27,0r0,-159r-71,0r0,159r-28,0r0,-159r-42,0r0,-24r42,0v-9,-67,42,-80,96,-62"},"\ufb02":{"d":"47,-183v-8,-66,40,-77,100,-65r26,0r0,248r-27,0r0,-224v-46,-9,-75,-11,-71,41r49,0r0,24r-49,0r0,159r-28,0r0,-159r-42,0r0,-24r42,0"},"\u2021":{"d":"177,-13v-22,1,-38,-3,-55,-7r1,82r-31,0r2,-82v-17,4,-34,8,-56,7r0,-31v23,-1,40,3,57,7r0,-112v-18,3,-35,7,-57,6r0,-30v21,-1,39,2,56,5r-2,-80r31,0r-1,80v17,-3,34,-6,55,-5r0,30v-22,1,-39,-3,-56,-6r0,112v17,-4,33,-9,56,-7r0,31"},"\u00b7":{"d":"85,-119v0,-12,9,-22,22,-22v12,0,23,9,22,22v0,11,-10,23,-22,23v-12,0,-22,-12,-22,-23"},"\u2219":{"d":"85,-119v0,-12,9,-22,22,-22v12,0,23,9,22,22v0,11,-10,23,-22,23v-12,0,-22,-12,-22,-23"},"\u201a":{"d":"108,-39v42,10,24,68,-14,81r-7,-12v14,-7,21,-16,21,-25v-25,-1,-28,-45,0,-44"},"\u201e":{"d":"138,-39v42,10,23,68,-14,81r-7,-12v14,-7,22,-16,22,-25v-26,0,-30,-45,-1,-44xm73,-39v43,11,23,68,-14,81r-6,-12v14,-7,21,-16,21,-25v-25,-1,-29,-44,-1,-44"},"\u2030":{"d":"0,-200v0,-30,14,-53,44,-53v29,1,45,21,45,53v0,32,-15,54,-45,54v-30,0,-45,-21,-44,-54xm44,-167v13,0,19,-12,19,-33v0,-21,-6,-32,-19,-32v-13,0,-19,11,-19,32v0,21,6,33,19,33xm186,-163r-186,73r0,-23r186,-74r0,24xm127,-49v0,-32,16,-53,45,-53v29,0,44,21,44,53v0,33,-14,54,-44,54v-30,0,-45,-22,-45,-54xm172,-17v13,0,19,-11,19,-32v0,-21,-6,-32,-19,-32v-13,0,-19,11,-19,32v0,21,6,32,19,32xm31,-49v0,-32,15,-53,44,-53v29,0,45,21,45,53v-1,30,-14,54,-45,54v-30,0,-44,-21,-44,-54xm75,-17v13,0,19,-11,19,-32v0,-21,-6,-32,-19,-32v-13,0,-19,11,-19,32v0,21,6,32,19,32"},"\u00c2":{"d":"207,0r-31,0r-27,-87r-81,0r-28,87r-30,0r81,-248r35,0xm141,-112r-33,-103r-32,103r65,0xm164,-270r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u00ca":{"d":"175,0r-130,0r0,-248r128,0r0,25r-99,0r0,77r96,0r0,25r-96,0r0,96r101,0r0,25xm165,-270r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u00c1":{"d":"207,0r-31,0r-27,-87r-81,0r-28,87r-30,0r81,-248r35,0xm141,-112r-33,-103r-32,103r65,0xm154,-323r-55,53r-19,0r34,-53r40,0"},"\u00cb":{"d":"175,0r-130,0r0,-248r128,0r0,25r-99,0r0,77r96,0r0,25r-96,0r0,96r101,0r0,25xm127,-290v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm57,-290v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u00c8":{"d":"175,0r-130,0r0,-248r128,0r0,25r-99,0r0,77r96,0r0,25r-96,0r0,96r101,0r0,25xm137,-270r-20,0r-55,-53r40,0"},"\u00cd":{"d":"163,0r-113,0r0,-25r43,0r0,-198r-43,0r0,-25r113,0r0,25r-41,0r0,198r41,0r0,25xm148,-323r-55,53r-19,0r34,-53r40,0"},"\u00ce":{"d":"163,0r-113,0r0,-25r43,0r0,-198r-43,0r0,-25r113,0r0,25r-41,0r0,198r41,0r0,25xm162,-270r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u00cf":{"d":"163,0r-113,0r0,-25r43,0r0,-198r-43,0r0,-25r113,0r0,25r-41,0r0,198r41,0r0,25xm123,-290v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm53,-290v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u00cc":{"d":"163,0r-113,0r0,-25r43,0r0,-198r-43,0r0,-25r113,0r0,25r-41,0r0,198r41,0r0,25xm131,-270r-20,0r-55,-53r40,0"},"\u00d3":{"d":"22,-124v0,-73,22,-129,86,-129v63,0,85,56,85,129v0,73,-21,129,-85,129v-64,0,-86,-56,-86,-129xm53,-124v0,55,10,103,55,103v37,0,54,-34,54,-103v0,-69,-17,-103,-54,-103v-45,0,-55,49,-55,103xm153,-323r-55,53r-19,0r34,-53r40,0"},"\u00d4":{"d":"22,-124v0,-73,22,-129,86,-129v63,0,85,56,85,129v0,73,-21,129,-85,129v-64,0,-86,-56,-86,-129xm53,-124v0,55,10,103,55,103v37,0,54,-34,54,-103v0,-69,-17,-103,-54,-103v-45,0,-55,49,-55,103xm163,-270r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u00d2":{"d":"22,-124v0,-73,22,-129,86,-129v63,0,85,56,85,129v0,73,-21,129,-85,129v-64,0,-86,-56,-86,-129xm53,-124v0,55,10,103,55,103v37,0,54,-34,54,-103v0,-69,-17,-103,-54,-103v-45,0,-55,49,-55,103xm133,-270r-20,0r-55,-53r40,0"},"\u00da":{"d":"109,-21v32,0,41,-22,41,-59r0,-168r29,0r0,170v1,55,-19,83,-70,83v-48,0,-72,-27,-72,-82r0,-171r29,0r0,168v0,40,14,59,43,59xm155,-323r-55,53r-19,0r34,-53r40,0"},"\u00db":{"d":"109,-21v32,0,41,-22,41,-59r0,-168r29,0r0,170v1,55,-19,83,-70,83v-48,0,-72,-27,-72,-82r0,-171r29,0r0,168v0,40,14,59,43,59xm163,-270r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u00d9":{"d":"109,-21v32,0,41,-22,41,-59r0,-168r29,0r0,170v1,55,-19,83,-70,83v-48,0,-72,-27,-72,-82r0,-171r29,0r0,168v0,40,14,59,43,59xm132,-270r-20,0r-55,-53r40,0"},"\u0131":{"d":"133,0r-27,0r0,-159r-54,0r0,-24r81,0r0,183"},"\u02c6":{"d":"164,-205r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u02dc":{"d":"85,-251v19,0,69,40,74,0r15,0v-4,27,-15,40,-34,40v-19,0,-68,-39,-74,0r-14,0v4,-27,14,-40,33,-40"},"\u02c9":{"d":"168,-225r-119,0r0,-23r119,0r0,23"},"\u02d8":{"d":"158,-251v-4,27,-21,45,-50,46v-28,0,-46,-15,-52,-46r24,0v3,29,51,30,54,0r24,0"},"\u02d9":{"d":"91,-236v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17"},"\u02da":{"d":"75,-237v0,-18,16,-33,33,-33v17,0,34,16,34,33v0,17,-17,34,-34,34v-17,0,-33,-16,-33,-34xm88,-237v-1,11,10,20,20,20v10,1,21,-10,20,-20v0,-10,-10,-19,-20,-19v-10,0,-20,9,-20,19"},"\u00b8":{"d":"79,46v27,9,51,-24,10,-23r8,-23r18,0r-3,9v14,3,21,11,21,22v1,26,-28,40,-54,32r0,-17"},"\u02dd":{"d":"167,-258r-40,53r-20,0r24,-53r36,0xm110,-258r-41,53r-19,0r24,-53r36,0"},"\u02db":{"d":"142,59v-26,14,-62,3,-62,-27v0,-11,4,-21,15,-32r18,0v-26,25,-4,60,29,43r0,16"},"\u02c7":{"d":"163,-258r-35,53r-40,0r-35,-53r20,0r35,34r35,-34r20,0"},"\u0141":{"d":"180,0r-135,0r0,-94r-18,12r-13,-19r31,-20r0,-127r29,0r0,108r49,-31r12,19r-61,40r0,87r106,0r0,25"},"\u0142":{"d":"167,-146r-49,32r0,90r48,0r0,24r-75,0r0,-97r-33,21r-12,-19r45,-29r0,-100r-48,0r0,-24r75,0r0,106r36,-23"},"\u0160":{"d":"40,-188v0,-61,72,-77,127,-57r-6,24v-38,-14,-93,-10,-93,32v0,54,112,46,112,118v0,68,-82,94,-138,63r6,-25v43,24,104,16,104,-35v0,-68,-112,-46,-112,-120xm166,-323r-35,53r-40,0r-35,-53r20,0r35,34r35,-34r20,0"},"\u0161":{"d":"41,-136v2,-52,74,-61,125,-44r-6,23v-35,-17,-111,-7,-86,34v31,23,102,14,102,71v0,58,-85,68,-133,47r5,-24v31,16,97,18,101,-20v-9,-51,-111,-24,-108,-87xm165,-258r-35,53r-40,0r-35,-53r20,0r35,34r35,-34r20,0"},"\u017d":{"d":"183,-227r-118,202r116,0r0,25r-149,0r0,-20r117,-203r-112,0r0,-25r146,0r0,21xm163,-323r-35,53r-40,0r-35,-53r20,0r35,34r35,-34r20,0"},"\u017e":{"d":"176,0r-140,0r0,-15r104,-144r-102,0r0,-24r138,0r0,13r-104,146r104,0r0,24xm163,-258r-35,53r-40,0r-35,-53r20,0r35,34r35,-34r20,0"},"\u00a6":{"d":"121,-114r-27,0r0,-134r27,0r0,134xm121,72r-27,0r0,-133r27,0r0,133"},"\u00d0":{"d":"193,-124v0,91,-56,136,-156,124r0,-114r-26,0r0,-26r26,0r0,-108v100,-11,156,32,156,124xm162,-124v0,-63,-30,-106,-96,-99r0,83r34,0r0,26r-34,0r0,89v67,6,96,-35,96,-99"},"\u00f0":{"d":"25,-92v0,-60,39,-106,102,-94v-9,-14,-18,-24,-26,-31r-20,15r-14,-13r21,-14v-7,-7,-14,-14,-23,-20r13,-15v9,7,19,14,28,22r22,-15r12,12r-21,16v40,38,70,72,71,139v1,53,-31,96,-82,95v-52,0,-83,-43,-83,-97xm54,-91v1,36,18,72,54,72v35,0,54,-36,54,-72v-1,-37,-18,-73,-54,-73v-37,0,-54,34,-54,73"},"\u00dd":{"d":"200,-248r-77,142r0,106r-29,0r0,-106r-77,-142r32,0r59,112r60,-112r32,0xm157,-323r-55,53r-19,0r34,-53r40,0"},"\u00fd":{"d":"187,-183v-32,76,-55,177,-99,239v-15,21,-41,19,-67,10r4,-22v41,16,56,-11,67,-44r-68,-183r30,0r51,146r52,-146r30,0xm154,-258r-55,53r-19,0r34,-53r40,0"},"\u00de":{"d":"187,-130v0,55,-49,77,-113,70r0,60r-29,0r0,-248r29,0r0,51v62,-5,113,11,113,67xm156,-128v-2,-39,-38,-48,-82,-44r0,87v44,3,84,-3,82,-43"},"\u00fe":{"d":"121,5v-24,0,-46,-15,-56,-31r0,98r-27,0r0,-320r27,0r0,89v11,-15,33,-29,58,-29v45,2,67,44,67,94v0,49,-23,99,-69,99xm162,-92v0,-37,-14,-71,-48,-72v-19,0,-36,11,-49,32r0,76v8,17,26,36,48,36v32,0,50,-36,49,-72"},"\u2212":{"d":"191,-115r-166,0r0,-23r166,0r0,23"},"\u00d7":{"d":"181,-71r-17,16r-56,-56r-56,56r-16,-16r56,-56r-56,-56r16,-17r56,56r56,-55r16,16r-55,56"},"\u00b9":{"d":"144,-123r-74,0r0,-19r27,0r0,-82r-25,12r0,-21v15,-6,24,-17,47,-15r0,106r25,0r0,19"},"\u00b2":{"d":"143,-213v-3,33,-18,37,-47,71r49,0r0,19r-76,0r0,-14v33,-40,44,-40,51,-75v-3,-23,-23,-20,-47,-12r-3,-19v31,-13,76,-6,73,30"},"\u00b3":{"d":"115,-189v14,2,27,14,27,29v0,34,-48,52,-77,31r4,-18v20,11,50,10,50,-12v0,-15,-16,-22,-35,-20r0,-18v29,7,48,-32,13,-33v-6,0,-15,2,-25,6r-3,-19v29,-14,70,-4,70,27v1,14,-13,24,-24,27"},"\u00bd":{"d":"84,-123r-74,0r0,-19r27,0r0,-82r-25,12r0,-21v15,-6,24,-17,47,-15r0,106r25,0r0,19xm175,-248r-113,248r-21,0r113,-248r21,0xm206,-90v-3,33,-18,37,-47,71r49,0r0,19r-76,0r0,-14v33,-40,44,-40,51,-75v-3,-23,-23,-20,-47,-12r-3,-19v31,-13,76,-6,73,30"},"\u00bc":{"d":"202,-28r-15,0r0,28r-22,0r0,-28r-54,0r0,-15r50,-82r26,0r0,77r15,0r0,20xm165,-48r0,-49r-31,49r31,0xm84,-123r-74,0r0,-19r27,0r0,-82r-25,12r0,-21v15,-6,24,-17,47,-15r0,106r25,0r0,19xm175,-248r-113,248r-21,0r113,-248r21,0"},"\u00be":{"d":"202,-28r-15,0r0,28r-22,0r0,-28r-54,0r0,-15r50,-82r26,0r0,77r15,0r0,20xm165,-48r0,-49r-31,49r31,0xm61,-189v14,2,27,14,27,29v0,34,-48,52,-77,31r4,-18v20,11,50,10,50,-12v0,-15,-16,-22,-35,-20r0,-18v29,7,48,-32,13,-33v-6,0,-15,2,-25,6r-3,-19v29,-14,70,-4,70,27v1,14,-13,24,-24,27xm175,-248r-113,248r-21,0r113,-248r21,0"},"\u00ad":{"d":"158,-86r-104,0r0,-26r104,0r0,26"},"\u00af":{"d":"216,-303r-216,0r0,-24r216,0r0,24"},"\uf004":{"d":"113,16v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\uf005":{"d":"113,16v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u0100":{"d":"207,0r-31,0r-27,-87r-81,0r-28,87r-30,0r81,-248r35,0xm141,-112r-33,-103r-32,103r65,0xm168,-273r-119,0r0,-23r119,0r0,23"},"\u0101":{"d":"152,-108v9,-65,-61,-63,-98,-41r-7,-19v54,-33,132,-30,132,47v0,41,-3,88,5,121r-28,0v-2,-7,-3,-18,-3,-30v-26,49,-114,47,-115,-17v0,-56,61,-56,114,-61xm67,-49v4,47,74,23,85,-5r0,-34v-48,6,-76,2,-85,39xm174,-214r-119,0r0,-23r119,0r0,23"},"\u0102":{"d":"207,0r-31,0r-27,-87r-81,0r-28,87r-30,0r81,-248r35,0xm141,-112r-33,-103r-32,103r65,0xm158,-317v-4,27,-21,45,-50,46v-28,0,-46,-15,-52,-46r24,0v3,29,51,30,54,0r24,0"},"\u0103":{"d":"152,-108v9,-65,-61,-63,-98,-41r-7,-19v54,-33,132,-30,132,47v0,41,-3,88,5,121r-28,0v-2,-7,-3,-18,-3,-30v-26,49,-114,47,-115,-17v0,-56,61,-56,114,-61xm67,-49v4,47,74,23,85,-5r0,-34v-48,6,-76,2,-85,39xm164,-251v-4,27,-21,45,-50,46v-28,0,-46,-15,-52,-46r24,0v3,29,51,30,54,0r24,0"},"\u0104":{"d":"216,59v-21,14,-56,2,-56,-27v0,-11,5,-21,16,-32r-27,-87r-81,0r-28,87r-30,0r81,-248r35,0r81,248v-31,-3,-34,47,-7,47v5,0,10,-1,16,-4r0,16xm141,-112r-33,-103r-32,103r65,0"},"\u0105":{"d":"152,-108v9,-65,-61,-63,-98,-41r-7,-19v54,-33,132,-30,132,47v0,41,-3,88,5,121v-29,1,-30,49,-1,47v4,0,11,-1,20,-4r0,16v-26,14,-63,2,-63,-27v0,-11,5,-21,16,-32v-2,-7,-3,-18,-3,-30v-26,49,-114,47,-115,-17v0,-56,61,-56,114,-61xm67,-49v4,47,74,23,85,-5r0,-34v-48,6,-76,2,-85,39"},"\u0106":{"d":"121,-227v-54,1,-66,42,-68,103v-3,100,59,124,126,86r9,23v-19,13,-41,20,-67,20v-70,-1,-99,-52,-99,-129v0,-101,75,-160,162,-112r-9,23v-17,-9,-34,-14,-54,-14xm164,-326r-55,53r-19,0r34,-53r40,0"},"\u0107":{"d":"60,-91v0,59,57,89,113,63r5,22v-69,32,-147,-8,-147,-85v0,-77,75,-117,147,-87r-8,23v-57,-24,-110,2,-110,64xm165,-258r-55,53r-19,0r34,-53r40,0"},"\u0108":{"d":"121,-227v-54,1,-66,42,-68,103v-3,100,59,124,126,86r9,23v-19,13,-41,20,-67,20v-70,-1,-99,-52,-99,-129v0,-101,75,-160,162,-112r-9,23v-17,-9,-34,-14,-54,-14xm170,-273r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u0109":{"d":"60,-91v0,59,57,89,113,63r5,22v-69,32,-147,-8,-147,-85v0,-77,75,-117,147,-87r-8,23v-57,-24,-110,2,-110,64xm171,-205r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u010a":{"d":"121,-227v-54,1,-66,42,-68,103v-3,100,59,124,126,86r9,23v-19,13,-41,20,-67,20v-70,-1,-99,-52,-99,-129v0,-101,75,-160,162,-112r-9,23v-17,-9,-34,-14,-54,-14xm99,-289v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17"},"\u010b":{"d":"60,-91v0,59,57,89,113,63r5,22v-69,32,-147,-8,-147,-85v0,-77,75,-117,147,-87r-8,23v-57,-24,-110,2,-110,64xm104,-236v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17"},"\u010c":{"d":"121,-227v-54,1,-66,42,-68,103v-3,100,59,124,126,86r9,23v-19,13,-41,20,-67,20v-70,-1,-99,-52,-99,-129v0,-101,75,-160,162,-112r-9,23v-17,-9,-34,-14,-54,-14xm175,-326r-35,53r-40,0r-35,-53r20,0r35,34r35,-34r20,0"},"\u010d":{"d":"60,-91v0,59,57,89,113,63r5,22v-69,32,-147,-8,-147,-85v0,-77,75,-117,147,-87r-8,23v-57,-24,-110,2,-110,64xm171,-258r-35,53r-40,0r-35,-53r20,0r35,34r35,-34r20,0"},"\u010e":{"d":"193,-124v0,91,-56,136,-156,124r0,-248v100,-11,156,32,156,124xm162,-124v0,-63,-30,-106,-96,-99r0,198v67,6,96,-35,96,-99xm156,-326r-35,53r-40,0r-35,-53r20,0r35,34r35,-34r20,0"},"\u010f":{"d":"76,5v-93,-1,-91,-194,1,-193v23,0,42,10,56,29r0,-89r27,0r0,248r-27,0r0,-26v-11,16,-31,31,-57,31xm83,-20v23,2,43,-22,50,-36r0,-76v-13,-21,-29,-32,-48,-32v-65,0,-65,142,-2,144xm192,-261v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u0110":{"d":"193,-124v0,91,-56,136,-156,124r0,-114r-26,0r0,-26r26,0r0,-108v100,-11,156,32,156,124xm162,-124v0,-63,-30,-106,-96,-99r0,83r34,0r0,26r-34,0r0,89v67,6,96,-35,96,-99"},"\u0111":{"d":"94,5v-93,-1,-91,-194,1,-193v23,0,42,10,56,29r0,-44r-39,0r0,-22r39,0r0,-23r27,0r0,23r29,0r0,22r-29,0r0,203r-27,0r0,-26v-11,16,-31,31,-57,31xm101,-20v23,2,43,-22,50,-36r0,-76v-13,-21,-29,-32,-48,-32v-65,0,-65,142,-2,144"},"\u0112":{"d":"175,0r-130,0r0,-248r128,0r0,25r-99,0r0,77r96,0r0,25r-96,0r0,96r101,0r0,25xm170,-273r-119,0r0,-23r119,0r0,23"},"\u0113":{"d":"110,-188v47,0,78,42,74,97r-125,0v-2,61,56,88,113,63r5,22v-69,31,-147,-5,-147,-86v0,-54,30,-96,80,-96xm155,-113v2,-41,-50,-69,-79,-37v-9,9,-15,22,-16,37r95,0xm169,-214r-119,0r0,-23r119,0r0,23"},"\u0114":{"d":"175,0r-130,0r0,-248r128,0r0,25r-99,0r0,77r96,0r0,25r-96,0r0,96r101,0r0,25xm164,-319v-4,27,-21,45,-50,46v-28,0,-46,-15,-52,-46r24,0v3,29,51,30,54,0r24,0"},"\u0115":{"d":"110,-188v47,0,78,42,74,97r-125,0v-2,61,56,88,113,63r5,22v-69,31,-147,-5,-147,-86v0,-54,30,-96,80,-96xm155,-113v2,-41,-50,-69,-79,-37v-9,9,-15,22,-16,37r95,0xm161,-251v-4,27,-21,45,-50,46v-28,0,-46,-15,-52,-46r24,0v3,29,51,30,54,0r24,0"},"\u0116":{"d":"175,0r-130,0r0,-248r128,0r0,25r-99,0r0,77r96,0r0,25r-96,0r0,96r101,0r0,25xm95,-290v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17"},"\u0117":{"d":"110,-188v47,0,78,42,74,97r-125,0v-2,61,56,88,113,63r5,22v-69,31,-147,-5,-147,-86v0,-54,30,-96,80,-96xm155,-113v2,-41,-50,-69,-79,-37v-9,9,-15,22,-16,37r95,0xm91,-236v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17"},"\u0118":{"d":"154,59v-26,14,-64,3,-63,-27v0,-11,5,-21,16,-32r-62,0r0,-248r128,0r0,25r-99,0r0,77r96,0r0,25r-96,0r0,96r101,0r0,25r-50,0v-28,25,-4,60,29,43r0,16"},"\u0119":{"d":"110,-188v47,0,78,42,74,97r-125,0v-2,61,56,88,113,63r5,22v-13,6,-30,10,-51,11v-23,24,1,54,32,38r0,16v-26,14,-63,2,-63,-27v0,-10,5,-19,13,-28v-48,-5,-78,-42,-78,-96v0,-54,30,-96,80,-96xm155,-113v2,-41,-50,-69,-79,-37v-9,9,-15,22,-16,37r95,0"},"\u011a":{"d":"175,0r-130,0r0,-248r128,0r0,25r-99,0r0,77r96,0r0,25r-96,0r0,96r101,0r0,25xm167,-327r-35,53r-40,0r-35,-53r20,0r35,34r35,-34r20,0"},"\u011b":{"d":"110,-188v47,0,78,42,74,97r-125,0v-2,61,56,88,113,63r5,22v-69,31,-147,-5,-147,-86v0,-54,30,-96,80,-96xm155,-113v2,-41,-50,-69,-79,-37v-9,9,-15,22,-16,37r95,0xm166,-258r-35,53r-40,0r-35,-53r20,0r35,34r35,-34r20,0"},"\u011c":{"d":"121,-227v-54,2,-66,42,-68,103v-3,87,46,122,106,93r0,-61r-45,0r0,-25r74,0r0,99v-20,15,-42,23,-67,23v-70,-1,-99,-52,-99,-129v0,-103,75,-159,162,-112r-9,23v-17,-9,-34,-14,-54,-14xm173,-273r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u011d":{"d":"153,-161v23,45,-8,99,-64,92v-17,8,-26,16,-26,22v21,34,130,-21,130,51v0,44,-48,68,-93,68v-58,0,-99,-57,-39,-82v-38,-19,-30,-47,7,-65v-49,-24,-34,-112,31,-112v13,0,25,3,35,8r54,-9r0,27r-35,0xm65,-128v0,21,15,38,34,38v22,1,35,-17,35,-38v0,-22,-13,-38,-35,-38v-19,0,-34,17,-34,38xm57,25v0,46,111,28,109,-16v-1,-28,-51,-16,-80,-16v-12,4,-29,16,-29,32xm160,-205r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u011e":{"d":"121,-227v-54,2,-66,42,-68,103v-3,87,46,122,106,93r0,-61r-45,0r0,-25r74,0r0,99v-20,15,-42,23,-67,23v-70,-1,-99,-52,-99,-129v0,-103,75,-159,162,-112r-9,23v-17,-9,-34,-14,-54,-14xm166,-319v-4,27,-21,45,-50,46v-28,0,-46,-15,-52,-46r24,0v3,29,51,30,54,0r24,0"},"\u011f":{"d":"153,-161v23,45,-8,99,-64,92v-17,8,-26,16,-26,22v21,34,130,-21,130,51v0,44,-48,68,-93,68v-58,0,-99,-57,-39,-82v-38,-19,-30,-47,7,-65v-49,-24,-34,-112,31,-112v13,0,25,3,35,8r54,-9r0,27r-35,0xm65,-128v0,21,15,38,34,38v22,1,35,-17,35,-38v0,-22,-13,-38,-35,-38v-19,0,-34,17,-34,38xm57,25v0,46,111,28,109,-16v-1,-28,-51,-16,-80,-16v-12,4,-29,16,-29,32xm154,-251v-4,27,-21,45,-50,46v-28,0,-46,-15,-52,-46r24,0v3,29,51,30,54,0r24,0"},"\u0120":{"d":"121,-227v-54,2,-66,42,-68,103v-3,87,46,122,106,93r0,-61r-45,0r0,-25r74,0r0,99v-20,15,-42,23,-67,23v-70,-1,-99,-52,-99,-129v0,-103,75,-159,162,-112r-9,23v-17,-9,-34,-14,-54,-14xm99,-290v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17"},"\u0121":{"d":"153,-161v23,45,-8,99,-64,92v-17,8,-26,16,-26,22v21,34,130,-21,130,51v0,44,-48,68,-93,68v-58,0,-99,-57,-39,-82v-38,-19,-30,-47,7,-65v-49,-24,-34,-112,31,-112v13,0,25,3,35,8r54,-9r0,27r-35,0xm65,-128v0,21,15,38,34,38v22,1,35,-17,35,-38v0,-22,-13,-38,-35,-38v-19,0,-34,17,-34,38xm57,25v0,46,111,28,109,-16v-1,-28,-51,-16,-80,-16v-12,4,-29,16,-29,32xm83,-236v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17"},"\u0122":{"d":"121,-227v-54,2,-66,42,-68,103v-3,87,46,122,106,93r0,-61r-45,0r0,-25r74,0r0,99v-20,15,-42,23,-67,23v-70,-1,-99,-52,-99,-129v0,-103,75,-159,162,-112r-9,23v-17,-9,-34,-14,-54,-14xm113,16v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u0123":{"d":"153,-161v23,45,-8,99,-64,92v-17,8,-26,16,-26,22v20,34,130,-20,130,51v0,44,-48,68,-93,68v-58,0,-99,-57,-39,-82v-38,-19,-30,-47,7,-65v-49,-24,-34,-112,31,-112v13,0,25,3,35,8r54,-9r0,27r-35,0xm65,-128v0,21,15,38,34,38v22,1,35,-17,35,-38v0,-22,-13,-38,-35,-38v-19,0,-34,17,-34,38xm57,25v0,46,111,28,109,-16v-1,-28,-51,-16,-80,-16v-12,4,-29,16,-29,32xm102,-210v-37,-6,-21,-58,12,-69r6,11v-12,6,-18,13,-18,21v21,2,24,41,0,37"},"\u0124":{"d":"179,0r-29,0r0,-123r-84,0r0,123r-29,0r0,-248r29,0r0,100r84,0r0,-100r29,0r0,248xm163,-273r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u0125":{"d":"152,-117v2,-63,-57,-56,-87,-16r0,133r-27,0r0,-248r27,0r0,92v37,-47,114,-46,114,31r0,125r-27,0r0,-117xm165,-273r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u0126":{"d":"204,-184r-25,0r0,184r-29,0r0,-123r-84,0r0,123r-29,0r0,-184r-26,0r0,-25r26,0r0,-39r29,0r0,39r84,0r0,-39r29,0r0,39r25,0r0,25xm150,-148r0,-36r-84,0r0,36r84,0"},"\u0127":{"d":"152,-117v2,-63,-57,-56,-87,-16r0,133r-27,0r0,-203r-29,0r0,-22r29,0r0,-23r27,0r0,23r39,0r0,22r-39,0r0,47v37,-47,114,-46,114,31r0,125r-27,0r0,-117"},"\u0128":{"d":"163,0r-113,0r0,-25r43,0r0,-198r-43,0r0,-25r113,0r0,25r-41,0r0,198r41,0r0,25xm78,-313v19,0,69,40,74,0r15,0v-4,27,-15,40,-34,40v-19,0,-68,-39,-74,0r-14,0v4,-27,14,-40,33,-40"},"\u0129":{"d":"133,0r-27,0r0,-159r-54,0r0,-24r81,0r0,183xm70,-251v19,0,69,40,74,0r15,0v-4,27,-15,40,-34,40v-19,0,-68,-39,-74,0r-14,0v4,-27,14,-40,33,-40"},"\u012a":{"d":"163,0r-113,0r0,-25r43,0r0,-198r-43,0r0,-25r113,0r0,25r-41,0r0,198r41,0r0,25xm167,-273r-119,0r0,-23r119,0r0,23"},"\u012b":{"d":"133,0r-27,0r0,-159r-54,0r0,-24r81,0r0,183xm167,-214r-119,0r0,-23r119,0r0,23"},"\u012c":{"d":"163,0r-113,0r0,-25r43,0r0,-198r-43,0r0,-25r113,0r0,25r-41,0r0,198r41,0r0,25xm158,-319v-4,27,-21,45,-50,46v-28,0,-46,-15,-52,-46r24,0v3,29,51,30,54,0r24,0"},"\u012d":{"d":"133,0r-27,0r0,-159r-54,0r0,-24r81,0r0,183xm165,-251v-4,27,-21,45,-50,46v-28,0,-46,-15,-52,-46r24,0v3,29,51,30,54,0r24,0"},"\u012e":{"d":"142,59v-26,14,-62,3,-62,-27v0,-11,4,-21,15,-32r-45,0r0,-25r43,0r0,-198r-43,0r0,-25r113,0r0,25r-41,0r0,198r41,0r0,25r-50,0v-26,25,-4,60,29,43r0,16"},"\u012f":{"d":"153,59v-26,14,-64,3,-63,-27v0,-11,5,-21,16,-32r0,-159r-54,0r0,-24r81,0r0,183v-29,3,-30,49,0,47v4,0,11,-1,20,-4r0,16xm102,-234v-1,-9,9,-19,18,-18v10,-1,19,9,19,18v0,9,-9,20,-19,19v-10,1,-19,-9,-18,-19"},"\u0130":{"d":"163,0r-113,0r0,-25r43,0r0,-198r-43,0r0,-25r113,0r0,25r-41,0r0,198r41,0r0,25xm91,-290v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17"},"\u0132":{"d":"91,0r-77,0r0,-25r25,0r0,-198r-25,0r0,-25r77,0r0,25r-23,0r0,198r23,0r0,25xm111,-27v34,16,53,0,53,-41r0,-180r29,0r0,182v3,63,-43,85,-91,62"},"\u0133":{"d":"45,-234v0,-9,9,-19,18,-18v10,-1,20,8,19,18v1,10,-9,20,-19,19v-10,1,-18,-10,-18,-19xm144,-234v-1,-9,9,-19,18,-18v10,-1,19,9,19,18v0,9,-9,20,-19,19v-10,1,-19,-9,-18,-19xm77,0r-28,0r0,-159r-39,0r0,-24r67,0r0,183xm94,44v34,11,54,6,54,-37r0,-166r-40,0r0,-24r67,0r0,192v5,59,-38,73,-88,57"},"\u0134":{"d":"36,-31v35,18,87,17,87,-37r0,-180r29,0r0,182v6,69,-73,86,-125,58xm160,-273r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u0135":{"d":"157,-205r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0xm45,43v34,11,61,11,61,-36r0,-166r-54,0r0,-24r81,0r0,192v7,63,-44,73,-95,56"},"\u0136":{"d":"212,0r-36,0r-84,-122r-26,29r0,93r-29,0r0,-248r29,0r0,119r110,-119r33,0r-97,105xm117,16v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u0137":{"d":"197,0r-36,0r-78,-91r-18,15r0,76r-27,0r0,-248r27,0r0,142r86,-77r35,0r-83,75xm110,16v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u0138":{"d":"192,0r-34,0r-69,-89r-24,25r0,64r-27,0r0,-183r27,0r0,86v36,-30,52,-84,111,-89r0,23v-37,4,-29,16,-70,55"},"\u0139":{"d":"180,0r-135,0r0,-248r29,0r0,223r106,0r0,25xm148,-326r-55,53r-19,0r34,-53r40,0"},"\u013a":{"d":"166,0r-75,0r0,-224r-48,0r0,-24r75,0r0,224r48,0r0,24xm155,-326r-55,53r-19,0r34,-53r40,0"},"\u013b":{"d":"180,0r-135,0r0,-248r29,0r0,223r106,0r0,25xm112,16v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u013c":{"d":"166,0r-75,0r0,-224r-48,0r0,-24r75,0r0,224r48,0r0,24xm105,16v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u013d":{"d":"180,0r-135,0r0,-248r29,0r0,223r106,0r0,25xm157,-261v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u013e":{"d":"166,0r-75,0r0,-224r-48,0r0,-24r75,0r0,224r48,0r0,24xm175,-261v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u013f":{"d":"180,0r-135,0r0,-248r29,0r0,223r106,0r0,25xm110,-119v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17"},"\u0140":{"d":"166,0r-75,0r0,-224r-48,0r0,-24r75,0r0,224r48,0r0,24xm149,-119v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17"},"\u0143":{"d":"183,0r-32,0r-89,-196r0,196r-29,0r0,-248r32,0r90,194r0,-194r28,0r0,248xm155,-326r-55,53r-19,0r34,-53r40,0"},"\u0144":{"d":"152,-117v2,-63,-57,-56,-87,-16r0,133r-27,0r0,-183r27,0r0,27v37,-47,114,-46,114,31r0,125r-27,0r0,-117xm155,-258r-55,53r-19,0r34,-53r40,0"},"\u0145":{"d":"183,0r-32,0r-89,-196r0,196r-29,0r0,-248r32,0r90,194r0,-194r28,0r0,248xm110,16v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u0146":{"d":"152,-117v2,-63,-57,-56,-87,-16r0,133r-27,0r0,-183r27,0r0,27v37,-47,114,-46,114,31r0,125r-27,0r0,-117xm108,16v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u0147":{"d":"183,0r-32,0r-89,-196r0,196r-29,0r0,-248r32,0r90,194r0,-194r28,0r0,248xm162,-326r-35,53r-40,0r-35,-53r20,0r35,34r35,-34r20,0"},"\u0148":{"d":"152,-117v2,-63,-57,-56,-87,-16r0,133r-27,0r0,-183r27,0r0,27v37,-47,114,-46,114,31r0,125r-27,0r0,-117xm161,-258r-35,53r-40,0r-35,-53r20,0r35,34r35,-34r20,0"},"\u0149":{"d":"17,-284v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34xm152,-117v2,-63,-57,-56,-87,-16r0,133r-27,0r0,-183r27,0r0,27v37,-47,114,-46,114,31r0,125r-27,0r0,-117"},"\u014a":{"d":"183,9v7,63,-44,73,-95,56r7,-22v37,12,66,8,61,-41r-95,-200r0,198r-28,0r0,-248r32,0r91,191r0,-191r27,0r0,257"},"\u014b":{"d":"152,-117v2,-63,-57,-56,-87,-16r0,133r-27,0r0,-183r27,0r0,27v37,-47,114,-46,114,31r0,134v7,63,-45,72,-96,56r8,-22v34,11,61,11,61,-36r0,-124"},"\u014c":{"d":"22,-124v0,-73,22,-129,86,-129v63,0,85,56,85,129v0,73,-21,129,-85,129v-64,0,-86,-56,-86,-129xm53,-124v0,55,10,103,55,103v37,0,54,-34,54,-103v0,-69,-17,-103,-54,-103v-45,0,-55,49,-55,103xm168,-273r-119,0r0,-23r119,0r0,23"},"\u014d":{"d":"25,-92v0,-54,32,-96,83,-96v51,0,82,42,82,96v0,54,-30,97,-82,97v-52,0,-83,-43,-83,-97xm54,-91v1,36,18,72,54,72v35,0,54,-36,54,-72v-1,-37,-18,-73,-54,-73v-37,0,-54,34,-54,73xm168,-214r-119,0r0,-23r119,0r0,23"},"\u014e":{"d":"22,-124v0,-73,22,-129,86,-129v63,0,85,56,85,129v0,73,-21,129,-85,129v-64,0,-86,-56,-86,-129xm53,-124v0,55,10,103,55,103v37,0,54,-34,54,-103v0,-69,-17,-103,-54,-103v-45,0,-55,49,-55,103xm158,-319v-4,27,-21,45,-50,46v-28,0,-46,-15,-52,-46r24,0v3,29,51,30,54,0r24,0"},"\u014f":{"d":"25,-92v0,-54,32,-96,83,-96v51,0,82,42,82,96v0,54,-30,97,-82,97v-52,0,-83,-43,-83,-97xm54,-91v1,36,18,72,54,72v35,0,54,-36,54,-72v-1,-37,-18,-73,-54,-73v-37,0,-54,34,-54,73xm158,-251v-4,27,-21,45,-50,46v-28,0,-46,-15,-52,-46r24,0v3,29,51,30,54,0r24,0"},"\u0150":{"d":"22,-124v0,-73,22,-129,86,-129v63,0,85,56,85,129v0,73,-21,129,-85,129v-64,0,-86,-56,-86,-129xm53,-124v0,55,10,103,55,103v37,0,54,-34,54,-103v0,-69,-17,-103,-54,-103v-45,0,-55,49,-55,103xm177,-326r-40,53r-20,0r24,-53r36,0xm120,-326r-41,53r-19,0r24,-53r36,0"},"\u0151":{"d":"25,-92v0,-54,32,-96,83,-96v51,0,82,42,82,96v0,54,-30,97,-82,97v-52,0,-83,-43,-83,-97xm54,-91v1,36,18,72,54,72v35,0,54,-36,54,-72v-1,-37,-18,-73,-54,-73v-37,0,-54,34,-54,73xm177,-258r-40,53r-20,0r24,-53r36,0xm120,-258r-41,53r-19,0r24,-53r36,0"},"\u0154":{"d":"183,-183v0,33,-26,58,-56,64r79,119r-36,0r-72,-113r-32,0r0,113r-29,0r0,-248v71,-2,149,-5,146,65xm66,-138v45,3,85,-2,87,-43v2,-42,-42,-44,-87,-42r0,85xm148,-326r-55,53r-19,0r34,-53r40,0"},"\u0155":{"d":"171,-152v-38,-23,-75,8,-86,34r0,118r-28,0r0,-183r28,0r0,37v22,-43,55,-52,97,-32xm159,-258r-55,53r-19,0r34,-53r40,0"},"\u0156":{"d":"183,-183v0,33,-26,58,-56,64r79,119r-36,0r-72,-113r-32,0r0,113r-29,0r0,-248v71,-2,149,-5,146,65xm66,-138v45,3,85,-2,87,-43v2,-42,-42,-44,-87,-42r0,85xm109,16v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u0157":{"d":"171,-152v-38,-23,-75,8,-86,34r0,118r-28,0r0,-183r28,0r0,37v22,-43,55,-52,97,-32xm117,16v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u0158":{"d":"183,-183v0,33,-26,58,-56,64r79,119r-36,0r-72,-113r-32,0r0,113r-29,0r0,-248v71,-2,149,-5,146,65xm66,-138v45,3,85,-2,87,-43v2,-42,-42,-44,-87,-42r0,85xm157,-326r-35,53r-40,0r-35,-53r20,0r35,34r35,-34r20,0"},"\u0159":{"d":"171,-152v-38,-23,-75,8,-86,34r0,118r-28,0r0,-183r28,0r0,37v22,-43,55,-52,97,-32xm171,-258r-35,53r-40,0r-35,-53r20,0r35,34r35,-34r20,0"},"\u015a":{"d":"40,-188v0,-61,72,-77,127,-57r-6,24v-38,-14,-93,-10,-93,32v0,54,112,46,112,118v0,68,-82,94,-138,63r6,-25v43,24,104,16,104,-35v0,-68,-112,-46,-112,-120xm157,-326r-55,53r-19,0r34,-53r40,0"},"\u015b":{"d":"41,-136v2,-52,74,-61,125,-44r-6,23v-35,-17,-111,-7,-86,34v31,23,102,14,102,71v0,58,-85,68,-133,47r5,-24v31,16,97,18,101,-20v-9,-51,-111,-24,-108,-87xm155,-258r-55,53r-19,0r34,-53r40,0"},"\u015c":{"d":"40,-188v0,-61,72,-77,127,-57r-6,24v-38,-14,-93,-10,-93,32v0,54,112,46,112,118v0,68,-82,94,-138,63r6,-25v43,24,104,16,104,-35v0,-68,-112,-46,-112,-120xm164,-273r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u015d":{"d":"41,-136v2,-52,74,-61,125,-44r-6,23v-35,-17,-111,-7,-86,34v31,23,102,14,102,71v0,58,-85,68,-133,47r5,-24v31,16,97,18,101,-20v-9,-51,-111,-24,-108,-87xm164,-205r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u015e":{"d":"40,-188v0,-61,72,-77,127,-57r-6,24v-38,-14,-93,-10,-93,32v0,54,112,46,112,118v0,68,-82,94,-138,63r6,-25v43,24,104,16,104,-35v0,-68,-112,-46,-112,-120xm108,16v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u015f":{"d":"41,-136v2,-52,74,-61,125,-44r-6,23v-35,-17,-111,-7,-86,34v31,23,102,14,102,71v0,58,-85,68,-133,47r5,-24v31,16,97,18,101,-20v-9,-51,-111,-24,-108,-87xm108,16v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u0162":{"d":"199,-225r-76,0r0,225r-29,0r0,-225r-77,0r0,-23r182,0r0,23xm107,16v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u0163":{"d":"104,-159v7,48,-21,139,27,139v15,0,30,-3,45,-10r5,22v-42,19,-104,21,-104,-39r0,-112r-35,0r0,-24r35,0r0,-50r27,0r0,50r62,0r0,24r-62,0xm119,16v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u0164":{"d":"199,-225r-76,0r0,225r-29,0r0,-225r-77,0r0,-23r182,0r0,23xm163,-326r-35,53r-40,0r-35,-53r20,0r35,34r35,-34r20,0"},"\u0165":{"d":"78,-159v7,48,-21,139,27,139v15,0,30,-3,45,-10r5,22v-42,19,-104,21,-104,-39r0,-112r-35,0r0,-24r35,0r0,-50r27,0r0,50r62,0r0,24r-62,0xm192,-261v32,8,19,52,-11,62r-5,-10v11,-5,17,-11,17,-18v-20,0,-21,-34,-1,-34"},"\u0166":{"d":"199,-225r-76,0r0,68r52,0r0,25r-52,0r0,132r-29,0r0,-132r-53,0r0,-25r53,0r0,-68r-77,0r0,-23r182,0r0,23"},"\u0167":{"d":"104,-98v0,34,-7,79,27,78v15,0,30,-3,45,-10r5,22v-42,19,-108,21,-104,-39r0,-51r-33,0r0,-22r33,0r0,-39r-35,0r0,-24r35,0r0,-50r27,0r0,50r62,0r0,24r-62,0r0,39r59,0r0,22r-59,0"},"\u0168":{"d":"109,-21v32,0,41,-22,41,-59r0,-168r29,0r0,170v1,55,-19,83,-70,83v-48,0,-72,-27,-72,-82r0,-171r29,0r0,168v0,40,14,59,43,59xm81,-313v19,0,69,40,74,0r15,0v-4,27,-15,40,-34,40v-19,0,-68,-39,-74,0r-14,0v4,-27,14,-40,33,-40"},"\u0169":{"d":"65,-66v-3,63,57,54,86,15r0,-132r28,0r0,183r-28,0r0,-27v-37,45,-114,46,-114,-31r0,-125r28,0r0,117xm81,-251v19,0,69,40,74,0r15,0v-4,27,-15,40,-34,40v-19,0,-68,-39,-74,0r-14,0v4,-27,14,-40,33,-40"},"\u016a":{"d":"109,-21v32,0,41,-22,41,-59r0,-168r29,0r0,170v1,55,-19,83,-70,83v-48,0,-72,-27,-72,-82r0,-171r29,0r0,168v0,40,14,59,43,59xm168,-273r-119,0r0,-23r119,0r0,23"},"\u016b":{"d":"65,-66v-3,63,57,54,86,15r0,-132r28,0r0,183r-28,0r0,-27v-37,45,-114,46,-114,-31r0,-125r28,0r0,117xm168,-214r-119,0r0,-23r119,0r0,23"},"\u016c":{"d":"109,-21v32,0,41,-22,41,-59r0,-168r29,0r0,170v1,55,-19,83,-70,83v-48,0,-72,-27,-72,-82r0,-171r29,0r0,168v0,40,14,59,43,59xm158,-319v-4,27,-21,45,-50,46v-28,0,-46,-15,-52,-46r24,0v3,29,51,30,54,0r24,0"},"\u016d":{"d":"65,-66v-3,63,57,54,86,15r0,-132r28,0r0,183r-28,0r0,-27v-37,45,-114,46,-114,-31r0,-125r28,0r0,117xm158,-251v-4,27,-21,45,-50,46v-28,0,-46,-15,-52,-46r24,0v3,29,51,30,54,0r24,0"},"\u016e":{"d":"109,-21v32,0,41,-22,41,-59r0,-168r29,0r0,170v1,55,-19,83,-70,83v-48,0,-72,-27,-72,-82r0,-171r29,0r0,168v0,40,14,59,43,59xm75,-307v0,-18,16,-33,33,-33v17,0,34,16,34,33v0,17,-17,34,-34,34v-17,0,-33,-16,-33,-34xm88,-307v-1,11,10,20,20,20v10,1,21,-10,20,-20v0,-10,-10,-19,-20,-19v-10,0,-20,9,-20,19"},"\u016f":{"d":"65,-66v-3,63,57,54,86,15r0,-132r28,0r0,183r-28,0r0,-27v-37,45,-114,46,-114,-31r0,-125r28,0r0,117xm75,-237v0,-18,16,-33,33,-33v17,0,34,16,34,33v0,17,-17,34,-34,34v-17,0,-33,-16,-33,-34xm88,-237v-1,11,10,20,20,20v10,1,21,-10,20,-20v0,-10,-10,-19,-20,-19v-10,0,-20,9,-20,19"},"\u0170":{"d":"109,-21v32,0,41,-22,41,-59r0,-168r29,0r0,170v1,55,-19,83,-70,83v-48,0,-72,-27,-72,-82r0,-171r29,0r0,168v0,40,14,59,43,59xm174,-326r-40,53r-20,0r24,-53r36,0xm117,-326r-41,53r-19,0r24,-53r36,0"},"\u0171":{"d":"65,-66v-3,63,57,54,86,15r0,-132r28,0r0,183r-28,0r0,-27v-37,45,-114,46,-114,-31r0,-125r28,0r0,117xm174,-258r-40,53r-20,0r24,-53r36,0xm117,-258r-41,53r-19,0r24,-53r36,0"},"\u0172":{"d":"109,-21v32,0,41,-22,41,-59r0,-168r29,0v-5,76,16,183,-16,231v-9,14,-28,21,-50,22v-23,25,2,54,33,38r0,16v-25,14,-64,3,-63,-27v0,-10,4,-19,12,-28v-90,-9,-49,-160,-58,-252r29,0r0,168v0,40,14,59,43,59"},"\u0173":{"d":"65,-66v-3,63,57,54,86,15r0,-132r28,0r0,183v-29,1,-30,49,-1,47v4,0,11,-1,20,-4r0,16v-25,14,-64,3,-63,-27v0,-11,5,-21,16,-32r0,-27v-37,45,-114,46,-114,-31r0,-125r28,0r0,117"},"\u0174":{"d":"208,-248r-31,248r-27,0r-42,-140r-42,140r-28,0r-30,-248r28,0r21,202r37,-122r28,0r37,122r21,-202r28,0xm164,-273r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u0175":{"d":"201,-183r-27,183r-21,0r-43,-104r-43,104r-21,0r-26,-183r27,0v10,86,16,130,16,134r33,-79r28,0r34,79r14,-134r29,0xm164,-205r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u0176":{"d":"200,-248r-77,142r0,106r-29,0r0,-106r-77,-142r32,0r59,112r60,-112r32,0xm164,-273r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u0177":{"d":"187,-183v-32,76,-55,177,-99,239v-15,21,-41,19,-67,10r4,-22v41,16,56,-11,67,-44r-68,-183r30,0r51,146r52,-146r30,0xm164,-205r-20,0r-35,-34r-35,34r-20,0r35,-53r40,0"},"\u0179":{"d":"183,-227r-118,202r116,0r0,25r-149,0r0,-20r117,-203r-112,0r0,-25r146,0r0,21xm155,-326r-55,53r-19,0r34,-53r40,0"},"\u017a":{"d":"176,0r-140,0r0,-15r104,-144r-102,0r0,-24r138,0r0,13r-104,146r104,0r0,24xm151,-258r-55,53r-19,0r34,-53r40,0"},"\u017b":{"d":"183,-227r-118,202r116,0r0,25r-149,0r0,-20r117,-203r-112,0r0,-25r146,0r0,21xm91,-290v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17"},"\u017c":{"d":"176,0r-140,0r0,-15r104,-144r-102,0r0,-24r138,0r0,13r-104,146r104,0r0,24xm91,-236v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,10,-7,17,-17,17v-10,0,-17,-7,-17,-17"},"\u017f":{"d":"85,-183v-9,-67,42,-80,96,-62r-8,22v-34,-11,-60,-11,-60,36r0,187r-28,0r0,-159r-21,0r0,-24r21,0"},"\u037e":{"d":"87,-165v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21xm108,-39v42,10,24,68,-14,81r-7,-12v14,-7,21,-16,21,-25v-25,-1,-28,-45,0,-44"},"\u0384":{"d":"125,-263r-10,53r-15,0r-9,-53r34,0"},"\u0385":{"d":"125,-291r-10,53r-15,0r-9,-53r34,0xm49,-228v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,9,-10,19,-19,19v-9,0,-19,-10,-19,-19xm129,-228v0,-10,8,-19,19,-19v11,0,18,9,19,19v0,9,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u0386":{"d":"207,0r-31,0r-27,-87r-81,0r-28,87r-30,0r81,-248r35,0xm141,-112r-33,-103r-32,103r65,0xm57,-248r-10,53r-15,0r-9,-53r34,0"},"\u0387":{"d":"85,-119v0,-12,9,-22,22,-22v12,0,23,9,22,22v0,11,-10,23,-22,23v-12,0,-22,-12,-22,-23"},"\u0388":{"d":"175,0r-130,0r0,-248r128,0r0,25r-99,0r0,77r96,0r0,25r-96,0r0,96r101,0r0,25xm40,-248r-10,53r-15,0r-9,-53r34,0"},"\u0389":{"d":"179,0r-29,0r0,-123r-84,0r0,123r-29,0r0,-248r29,0r0,100r84,0r0,-100r29,0r0,248xm34,-248r-10,53r-15,0r-9,-53r34,0"},"\u038a":{"d":"163,0r-113,0r0,-25r43,0r0,-198r-43,0r0,-25r113,0r0,25r-41,0r0,198r41,0r0,25xm41,-248r-10,53r-15,0r-9,-53r34,0"},"\u038c":{"d":"22,-124v0,-73,22,-129,86,-129v63,0,85,56,85,129v0,73,-21,129,-85,129v-64,0,-86,-56,-86,-129xm53,-124v0,55,10,103,55,103v37,0,54,-34,54,-103v0,-69,-17,-103,-54,-103v-45,0,-55,49,-55,103xm34,-248r-10,53r-15,0r-9,-53r34,0"},"\u038e":{"d":"216,-248r-77,142r0,106r-29,0r0,-106r-77,-142r32,0r59,112r60,-112r32,0xm34,-248r-10,53r-15,0r-9,-53r34,0"},"\u038f":{"d":"108,-229v-82,0,-69,182,-12,206r0,23r-69,0r0,-23r37,0v-63,-46,-59,-230,44,-230v101,0,106,182,44,230r36,0r0,23r-67,0r0,-23v56,-25,66,-206,-13,-206xm34,-248r-10,53r-15,0r-9,-53r34,0"},"\u0390":{"d":"170,-8v-43,21,-93,18,-93,-39r0,-136r27,0r0,128v1,43,28,39,61,26xm109,-291r-10,53r-15,0r-9,-53r34,0xm33,-228v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,9,-10,19,-19,19v-9,0,-19,-10,-19,-19xm113,-228v0,-10,8,-19,19,-19v11,0,18,9,19,19v0,9,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u0391":{"d":"207,0r-31,0r-27,-87r-81,0r-28,87r-30,0r81,-248r35,0xm141,-112r-33,-103r-32,103r65,0"},"\u0392":{"d":"182,-188v0,28,-23,43,-44,52v31,6,53,28,53,62v0,71,-76,80,-154,74r0,-248v68,-1,146,-6,145,60xm152,-187v0,-38,-45,-37,-86,-36r0,74v42,2,86,-2,86,-38xm160,-74v0,-46,-44,-53,-94,-50r0,99v49,3,94,-4,94,-49"},"\u0393":{"d":"180,-223r-106,0r0,223r-29,0r0,-248r135,0r0,25"},"\u0394":{"d":"207,0r-197,0r81,-248r35,0xm168,-25r-60,-190r-60,190r120,0"},"\u0395":{"d":"175,0r-130,0r0,-248r128,0r0,25r-99,0r0,77r96,0r0,25r-96,0r0,96r101,0r0,25"},"\u0396":{"d":"183,-227r-118,202r116,0r0,25r-149,0r0,-20r117,-203r-112,0r0,-25r146,0r0,21"},"\u0397":{"d":"179,0r-29,0r0,-123r-84,0r0,123r-29,0r0,-248r29,0r0,100r84,0r0,-100r29,0r0,248"},"\u0398":{"d":"22,-124v0,-73,22,-129,86,-129v63,0,85,56,85,129v0,73,-21,129,-85,129v-64,0,-86,-56,-86,-129xm53,-124v0,55,10,103,55,103v37,0,54,-34,54,-103v0,-69,-17,-103,-54,-103v-45,0,-55,49,-55,103xm140,-112r-64,0r0,-25r64,0r0,25"},"\u0399":{"d":"163,0r-113,0r0,-25r43,0r0,-198r-43,0r0,-25r113,0r0,25r-41,0r0,198r41,0r0,25"},"\u039a":{"d":"212,0r-36,0r-84,-122r-26,29r0,93r-29,0r0,-248r29,0r0,119r110,-119r33,0r-97,105"},"\u039b":{"d":"206,0r-30,0r-68,-215r-68,215r-31,0r81,-248r35,0"},"\u039c":{"d":"188,0r-28,0r0,-213r-37,102r-28,0r-37,-102r0,213r-28,0r0,-248r38,0r41,113r41,-113r38,0r0,248"},"\u039d":{"d":"183,0r-32,0r-89,-196r0,196r-29,0r0,-248r32,0r90,194r0,-194r28,0r0,248"},"\u039e":{"d":"173,-223r-130,0r0,-25r130,0r0,25xm159,-121r-102,0r0,-25r102,0r0,25xm180,0r-144,0r0,-25r144,0r0,25"},"\u039f":{"d":"22,-124v0,-73,22,-129,86,-129v63,0,85,56,85,129v0,73,-21,129,-85,129v-64,0,-86,-56,-86,-129xm53,-124v0,55,10,103,55,103v37,0,54,-34,54,-103v0,-69,-17,-103,-54,-103v-45,0,-55,49,-55,103"},"\u03a0":{"d":"179,0r-29,0r0,-223r-84,0r0,223r-29,0r0,-248r142,0r0,248"},"\u03a1":{"d":"187,-181v-1,55,-49,77,-113,70r0,111r-29,0r0,-248v72,-4,142,0,142,67xm156,-179v-2,-39,-38,-48,-82,-44r0,87v44,3,84,-3,82,-43"},"\u03a3":{"d":"184,0r-154,0r0,-21r80,-109r-76,-96r0,-22r143,0r0,25r-109,0r72,91r-78,107r122,0r0,25"},"\u03a4":{"d":"199,-225r-76,0r0,225r-29,0r0,-225r-77,0r0,-23r182,0r0,23"},"\u03a5":{"d":"200,-248r-77,142r0,106r-29,0r0,-106r-77,-142r32,0r59,112r60,-112r32,0"},"\u03a6":{"d":"10,-127v0,-53,33,-90,84,-93r0,-28r28,0r0,28v51,4,84,40,84,93v0,52,-34,87,-84,91r0,36r-28,0r0,-36v-51,-3,-84,-39,-84,-91xm94,-59r0,-137v-55,-4,-67,83,-40,119v9,11,23,16,40,18xm122,-59v54,1,68,-75,41,-115v-9,-12,-23,-20,-41,-22r0,137"},"\u03a7":{"d":"204,0r-32,0r-62,-102r-63,102r-32,0r79,-126r-79,-122r34,0r61,98r61,-98r32,0r-78,122"},"\u03a8":{"d":"122,-125v76,4,5,-136,92,-124v-1,7,2,18,-1,23v-26,6,-18,24,-22,58v-6,44,-27,66,-69,66r0,102r-29,0r0,-102v-58,8,-70,-55,-72,-105v-1,-12,-6,-19,-19,-19v1,-7,-3,-20,2,-23v82,-13,15,127,89,124r0,-123r29,0r0,123"},"\u03a9":{"d":"108,-229v-82,0,-69,182,-12,206r0,23r-69,0r0,-23r37,0v-63,-46,-59,-230,44,-230v101,0,106,182,44,230r36,0r0,23r-67,0r0,-23v56,-25,66,-206,-13,-206"},"\u03aa":{"d":"163,0r-113,0r0,-25r43,0r0,-198r-43,0r0,-25r113,0r0,25r-41,0r0,198r41,0r0,25xm124,-290v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm54,-290v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u03ab":{"d":"200,-248r-77,142r0,106r-29,0r0,-106r-77,-142r32,0r59,112r60,-112r32,0xm124,-290v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm54,-290v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u03ac":{"d":"98,-188v37,2,46,32,56,70v13,-36,21,-57,23,-65r27,0r-41,103v11,41,20,67,29,80r-29,0v-5,-7,-10,-22,-16,-44v-14,32,-34,49,-60,49v-93,0,-75,-197,11,-193xm95,-164v-49,0,-60,145,-5,145v17,0,33,-20,48,-60v-11,-43,-8,-50,-24,-74v-5,-7,-11,-11,-19,-11xm119,-263r-10,53r-15,0r-9,-53r34,0"},"\u03ad":{"d":"60,-82v4,53,60,78,113,54r5,22v-69,32,-147,-8,-147,-85v0,-77,75,-117,147,-87r-8,23v-54,-23,-105,0,-110,50r93,0r0,23r-93,0xm137,-263r-10,53r-15,0r-9,-53r34,0"},"\u03ae":{"d":"152,-117v2,-63,-57,-56,-87,-16r0,133r-27,0v-2,-60,6,-134,-6,-183r28,0v3,8,5,16,5,27v37,-47,114,-46,114,31r0,197r-27,0r0,-189xm125,-263r-10,53r-15,0r-9,-53r34,0"},"\u03af":{"d":"170,-8v-43,21,-93,18,-93,-39r0,-136r27,0r0,128v1,43,28,39,61,26xm108,-263r-10,53r-15,0r-9,-53r34,0"},"\u03b0":{"d":"111,-19v70,0,55,-108,33,-164r29,0v31,75,23,186,-62,188v-47,0,-74,-35,-73,-83r0,-105r27,0v4,65,-20,164,46,164xm125,-291r-10,53r-15,0r-9,-53r34,0xm49,-228v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,9,-10,19,-19,19v-9,0,-19,-10,-19,-19xm129,-228v0,-10,8,-19,19,-19v11,0,18,9,19,19v0,9,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u03b1":{"d":"98,-188v37,2,46,32,56,70v13,-36,21,-57,23,-65r27,0r-41,103v11,41,20,67,29,80r-29,0v-5,-7,-10,-22,-16,-44v-14,32,-34,49,-60,49v-93,0,-75,-197,11,-193xm95,-164v-49,0,-60,145,-5,145v17,0,33,-20,48,-60v-11,-43,-8,-50,-24,-74v-5,-7,-11,-11,-19,-11"},"\u03b2":{"d":"171,-195v0,31,-21,56,-49,59v100,5,84,141,-2,140v-14,0,-28,-2,-40,-6r5,-23v40,14,83,-1,80,-43v-3,-40,-33,-49,-80,-55v1,-7,-2,-18,1,-23v30,1,58,-18,57,-47v0,-24,-12,-36,-35,-36v-29,0,-43,19,-43,56r0,245r-27,0r0,-250v-1,-48,26,-75,70,-75v36,0,63,21,63,58"},"\u03b3":{"d":"187,-183r-68,180r0,75r-28,0r0,-76r-67,-179r30,0r51,146r52,-146r30,0"},"\u03b4":{"d":"35,-208v0,-50,84,-53,133,-35r-7,22v-33,-11,-87,-16,-97,14v0,8,18,22,56,43v47,26,70,54,70,84v1,51,-32,85,-82,85v-50,0,-84,-34,-83,-85v1,-38,27,-64,58,-77v-32,-21,-48,-38,-48,-51xm108,-19v31,0,55,-29,54,-60v0,-23,-19,-45,-56,-65v-34,15,-52,37,-52,65v-1,31,23,60,54,60"},"\u03b5":{"d":"60,-82v4,53,60,78,113,54r5,22v-69,32,-147,-8,-147,-85v0,-77,75,-117,147,-87r-8,23v-54,-23,-105,0,-110,50r93,0r0,23r-93,0"},"\u03b6":{"d":"127,-4v-74,0,-113,-58,-75,-117v20,-31,66,-72,95,-102r-70,0r0,-25r101,0r0,22v-39,45,-107,81,-112,149v-3,37,29,50,70,49v36,-1,53,10,54,42v1,43,-43,65,-91,57r0,-24v32,5,66,-2,66,-29v0,-19,-16,-22,-38,-22"},"\u03b7":{"d":"152,-117v2,-63,-57,-56,-87,-16r0,133r-27,0v-2,-60,6,-134,-6,-183r28,0v3,8,5,16,5,27v37,-47,114,-46,114,31r0,197r-27,0r0,-189"},"\u03b8":{"d":"27,-124v1,-70,18,-129,78,-129v61,0,79,59,79,129v1,69,-21,129,-79,129v-57,0,-79,-61,-78,-129xm155,-138v-2,-49,-10,-91,-50,-91v-32,0,-48,30,-50,91r100,0xm55,-115v1,50,11,91,50,96v39,-4,51,-46,51,-96r-101,0"},"\u03b9":{"d":"170,-8v-43,21,-93,18,-93,-39r0,-136r27,0r0,128v1,43,28,39,61,26"},"\u03ba":{"d":"192,0r-34,0r-69,-89r-24,25r0,64r-27,0r0,-183r27,0r0,86v36,-30,52,-84,111,-89r0,23v-37,4,-29,16,-70,55"},"\u03bb":{"d":"207,-23r-9,25v-25,-1,-38,-12,-48,-36r-37,-88r-66,122r-32,0r85,-153v-21,-47,-16,-51,-33,-70v-11,-12,-28,-5,-46,0r-6,-22v33,-16,76,-6,88,23r72,175v7,15,18,23,32,24"},"\u03bc":{"d":"152,-24v-8,34,-74,37,-87,5r0,91r-27,0r0,-255r27,0v5,63,-21,163,43,163v64,0,40,-100,44,-163r27,0v2,60,-5,131,5,183r-28,0v-3,-8,-4,-15,-4,-24"},"\u03bd":{"d":"187,-183r-69,183r-25,0r-69,-183r30,0r51,146r52,-146r30,0"},"\u03be":{"d":"98,-182v1,19,24,26,45,27r0,19v-43,24,-72,32,-76,72v-6,63,124,6,124,77v0,43,-42,66,-91,58r0,-24v30,5,64,-4,66,-29v2,-19,-23,-23,-49,-22v-44,1,-79,-20,-79,-60v0,-43,31,-54,73,-76v-18,-3,-39,-21,-39,-42v0,-20,14,-34,42,-42r-48,0r0,-24r101,0r0,24v-36,1,-64,15,-69,42"},"\u03bf":{"d":"25,-92v0,-54,32,-96,83,-96v51,0,82,42,82,96v0,54,-30,97,-82,97v-52,0,-83,-43,-83,-97xm54,-91v1,36,18,72,54,72v35,0,54,-36,54,-72v-1,-37,-18,-73,-54,-73v-37,0,-54,34,-54,73"},"\u03c0":{"d":"205,-159r-32,0r0,159r-28,0r0,-159r-69,0r0,159r-28,0r0,-159v-14,0,-24,-1,-37,3r0,-24v59,-8,130,-1,194,-3r0,24"},"\u03c1":{"d":"190,-92v0,80,-82,127,-137,76r0,88r-28,0r0,-164v-1,-54,32,-96,83,-96v51,0,82,42,82,96xm53,-91v0,37,20,72,55,72v35,0,54,-36,54,-72v-1,-37,-18,-73,-54,-73v-36,0,-55,35,-55,73"},"\u03c2":{"d":"33,-85v0,-71,70,-131,144,-91r-6,23v-60,-31,-109,5,-109,67v0,40,24,58,70,58v35,0,52,9,53,42v1,44,-42,65,-91,57r0,-24v31,5,65,-2,66,-29v0,-25,-29,-22,-56,-22v-43,1,-71,-38,-71,-81"},"\u03c3":{"d":"25,-90v0,-54,31,-93,83,-93r97,0r0,24r-38,0v45,48,22,170,-59,164v-52,-4,-83,-41,-83,-95xm108,-19v63,2,65,-104,34,-140v-58,-8,-88,17,-88,70v0,38,18,70,54,70"},"\u03c4":{"d":"187,-159r-64,0r0,159r-28,0r0,-159v-23,1,-45,-3,-65,3r0,-24v47,-7,105,-1,157,-3r0,24"},"\u03c5":{"d":"111,-19v70,0,55,-108,33,-164r29,0v31,75,23,186,-62,188v-47,0,-74,-35,-73,-83r0,-105r27,0v4,65,-20,164,46,164"},"\u03c6":{"d":"18,-92v0,-50,30,-91,76,-95r0,-61r27,0r0,61v47,4,76,45,76,95v0,50,-28,92,-76,95r0,69r-27,0r0,-68v-46,-3,-76,-46,-76,-96xm94,-163v-63,5,-63,139,0,143r0,-143xm121,-20v32,-4,47,-33,47,-71v0,-43,-16,-66,-47,-71r0,142"},"\u03c7":{"d":"197,48r-6,25v-51,-8,-60,-71,-85,-107r-58,106r-28,0r72,-132v-19,-30,-32,-68,-56,-93v-5,-4,-10,-6,-17,-6r6,-25v49,6,55,61,80,97r53,-96r30,0r-68,123v20,33,36,73,59,102v5,4,11,6,18,6"},"\u03c8":{"d":"120,-22v65,-2,49,-115,29,-161r29,0v27,66,28,188,-58,185r0,70r-27,0r0,-70v-76,0,-76,-78,-69,-154v0,-10,-3,-21,-9,-31r30,0v26,45,-29,153,48,161r0,-226r27,0r0,226"},"\u03c9":{"d":"148,-19v25,-6,22,-30,24,-70v0,-25,-4,-56,-10,-94r29,0v10,66,31,188,-38,188v-22,0,-37,-14,-45,-43v-9,29,-24,43,-45,43v-70,0,-47,-122,-39,-188r29,0v-6,38,-9,70,-9,95v1,36,-3,65,24,69v30,-10,26,-73,26,-116r28,0v0,44,-4,105,26,116"},"\u03ca":{"d":"170,-8v-43,21,-93,18,-93,-39r0,-136r27,0r0,128v1,43,28,39,61,26xm111,-228v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm41,-228v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u03cb":{"d":"111,-19v70,0,55,-108,33,-164r29,0v31,75,23,186,-62,188v-47,0,-74,-35,-73,-83r0,-105r27,0v4,65,-20,164,46,164xm125,-228v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm55,-228v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u03cc":{"d":"25,-92v0,-54,32,-96,83,-96v51,0,82,42,82,96v0,54,-30,97,-82,97v-52,0,-83,-43,-83,-97xm54,-91v1,36,18,72,54,72v35,0,54,-36,54,-72v-1,-37,-18,-73,-54,-73v-37,0,-54,34,-54,73xm125,-263r-10,53r-15,0r-9,-53r34,0"},"\u03cd":{"d":"111,-19v70,0,55,-108,33,-164r29,0v31,75,23,186,-62,188v-47,0,-74,-35,-73,-83r0,-105r27,0v4,65,-20,164,46,164xm125,-263r-10,53r-15,0r-9,-53r34,0"},"\u03ce":{"d":"148,-19v25,-6,22,-30,24,-70v0,-25,-4,-56,-10,-94r29,0v10,66,31,188,-38,188v-22,0,-37,-14,-45,-43v-9,29,-24,43,-45,43v-70,0,-47,-122,-39,-188r29,0v-6,38,-9,70,-9,95v1,36,-3,65,24,69v30,-10,26,-73,26,-116r28,0v0,44,-4,105,26,116xm125,-263r-10,53r-15,0r-9,-53r34,0"},"\u0401":{"d":"175,0r-130,0r0,-248r128,0r0,25r-99,0r0,77r96,0r0,25r-96,0r0,96r101,0r0,25xm127,-291v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm57,-291v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u0402":{"d":"81,-147v51,-34,115,-4,115,66v0,58,-31,94,-82,77r8,-21v36,10,44,-20,45,-57v2,-61,-48,-66,-86,-40r0,122r-28,0r0,-225r-52,0r0,-23r132,0r0,23r-52,0r0,78"},"\u0403":{"d":"180,-223r-106,0r0,223r-29,0r0,-248r135,0r0,25xm155,-323r-55,53r-19,0r34,-53r40,0"},"\u0404":{"d":"22,-124v0,-101,75,-160,162,-112r-9,23v-60,-31,-125,-11,-122,76r99,0r0,25r-99,0v1,90,63,110,126,74r9,23v-19,13,-41,20,-67,20v-70,-1,-99,-52,-99,-129"},"\u0405":{"d":"40,-188v0,-61,72,-77,127,-57r-6,24v-38,-14,-93,-10,-93,32v0,54,112,46,112,118v0,68,-82,94,-138,63r6,-25v43,24,104,16,104,-35v0,-68,-112,-46,-112,-120"},"\u0406":{"d":"163,0r-113,0r0,-25r43,0r0,-198r-43,0r0,-25r113,0r0,25r-41,0r0,198r41,0r0,25"},"\u0407":{"d":"163,0r-113,0r0,-25r43,0r0,-198r-43,0r0,-25r113,0r0,25r-41,0r0,198r41,0r0,25xm124,-290v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm54,-290v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u0408":{"d":"36,-31v35,18,87,17,87,-37r0,-180r29,0r0,182v6,69,-73,86,-125,58"},"\u0409":{"d":"1,-23v20,-1,21,-10,21,-35r0,-190r107,0r0,100v54,-2,80,23,80,75v0,63,-43,79,-109,73r0,-223r-50,0r0,168v0,46,-7,57,-49,57r0,-25xm179,-73v0,-35,-14,-51,-50,-50r0,98v35,1,50,-13,50,-48"},"\u040a":{"d":"209,-73v0,63,-43,79,-109,73r0,-123r-50,0r0,123r-28,0r0,-248r28,0r0,100r50,0r0,-100r29,0r0,100v54,-2,80,23,80,75xm179,-73v0,-35,-14,-51,-50,-50r0,98v35,2,50,-14,50,-48"},"\u040b":{"d":"81,-147v50,-34,115,-4,115,64r0,83r-29,0v-2,-54,14,-137,-42,-137v-14,0,-29,5,-44,15r0,122r-28,0r0,-225r-52,0r0,-23r132,0r0,23r-52,0r0,78"},"\u040c":{"d":"212,0r-36,0r-84,-122r-26,29r0,93r-29,0r0,-248r29,0r0,119r110,-119r33,0r-97,105xm159,-327r-55,53r-19,0r34,-53r40,0"},"\u040e":{"d":"206,-248r-86,194v-17,39,-38,58,-90,57r0,-27v36,1,48,-13,60,-37r-81,-187r31,0r68,154r68,-154r30,0xm72,-318v6,26,70,29,73,0r26,0v-4,43,-67,56,-103,33v-11,-8,-18,-19,-21,-33r25,0"},"\u040f":{"d":"179,0r-57,0r0,52r-28,0r0,-52r-57,0r0,-248r29,0r0,223r84,0r0,-223r29,0r0,248"},"\u0410":{"d":"207,0r-31,0r-27,-87r-81,0r-28,87r-30,0r81,-248r35,0xm141,-112r-33,-103r-32,103r65,0"},"\u0411":{"d":"191,-74v-1,71,-76,80,-154,74r0,-248r135,0r0,25r-106,0r0,74v69,-5,125,13,125,75xm160,-74v0,-46,-44,-53,-94,-50r0,99v49,3,94,-4,94,-49"},"\u0412":{"d":"182,-188v0,28,-23,43,-44,52v31,6,53,28,53,62v0,71,-76,80,-154,74r0,-248v68,-1,146,-6,145,60xm152,-187v0,-38,-45,-37,-86,-36r0,74v42,2,86,-2,86,-38xm160,-74v0,-46,-44,-53,-94,-50r0,99v49,3,94,-4,94,-49"},"\u0413":{"d":"180,-223r-106,0r0,223r-29,0r0,-248r135,0r0,25"},"\u0414":{"d":"26,-25v47,-40,64,-128,60,-223r97,0r0,223r30,0r0,72r-28,0r0,-47r-154,0r0,47r-29,0r0,-72r24,0xm114,-223v2,81,-19,159,-53,198r94,0r0,-198r-41,0"},"\u0415":{"d":"175,0r-130,0r0,-248r128,0r0,25r-99,0r0,77r96,0r0,25r-96,0r0,96r101,0r0,25"},"\u0416":{"d":"216,0r-30,0r-45,-120r-19,35r0,85r-28,0r0,-85r-19,-35r-44,120r-30,0r59,-148r-52,-100r27,0r59,118r0,-118r28,0r0,119r59,-119r28,0r-54,100"},"\u0417":{"d":"181,-189v1,27,-27,50,-47,57v28,6,54,29,54,59v1,75,-112,102,-165,53r11,-20v43,32,124,24,124,-31v0,-36,-49,-51,-94,-47r0,-25v42,4,85,-12,88,-46v-5,-44,-79,-47,-113,-23r-12,-21v48,-37,153,-22,154,44"},"\u0418":{"d":"183,0r-28,0r0,-201r-90,201r-32,0r0,-248r27,0r0,199r91,-199r32,0r0,248"},"\u0419":{"d":"183,0r-28,0r0,-201r-90,201r-32,0r0,-248r27,0r0,199r91,-199r32,0r0,248xm72,-318v6,26,70,29,73,0r26,0v-4,43,-67,56,-103,33v-11,-8,-18,-19,-21,-33r25,0"},"\u041a":{"d":"212,0r-36,0r-84,-122r-26,29r0,93r-29,0r0,-248r29,0r0,119r110,-119r33,0r-97,105"},"\u041b":{"d":"16,-23v20,-1,21,-10,21,-35r0,-190r142,0r0,248r-29,0r0,-223r-84,0r0,168v-1,46,-8,57,-50,57r0,-25"},"\u041c":{"d":"188,0r-28,0r0,-213r-37,102r-28,0r-37,-102r0,213r-28,0r0,-248r38,0r41,113r41,-113r38,0r0,248"},"\u041d":{"d":"179,0r-29,0r0,-123r-84,0r0,123r-29,0r0,-248r29,0r0,100r84,0r0,-100r29,0r0,248"},"\u041e":{"d":"22,-124v0,-73,22,-129,86,-129v63,0,85,56,85,129v0,73,-21,129,-85,129v-64,0,-86,-56,-86,-129xm53,-124v0,55,10,103,55,103v37,0,54,-34,54,-103v0,-69,-17,-103,-54,-103v-45,0,-55,49,-55,103"},"\u041f":{"d":"179,0r-29,0r0,-223r-84,0r0,223r-29,0r0,-248r142,0r0,248"},"\u0420":{"d":"187,-181v-1,55,-49,77,-113,70r0,111r-29,0r0,-248v72,-4,142,0,142,67xm156,-179v-2,-39,-38,-48,-82,-44r0,87v44,3,84,-3,82,-43"},"\u0421":{"d":"121,-227v-54,1,-66,42,-68,103v-3,100,59,124,126,86r9,23v-19,13,-41,20,-67,20v-70,-1,-99,-52,-99,-129v0,-101,75,-160,162,-112r-9,23v-17,-9,-34,-14,-54,-14"},"\u0422":{"d":"199,-225r-76,0r0,225r-29,0r0,-225r-77,0r0,-23r182,0r0,23"},"\u0423":{"d":"206,-248r-86,194v-17,39,-38,58,-90,57r0,-27v36,1,48,-13,60,-37r-81,-187r31,0r68,154r68,-154r30,0"},"\u0424":{"d":"10,-127v0,-53,33,-90,84,-93r0,-28r28,0r0,28v51,4,84,40,84,93v0,52,-34,87,-84,91r0,36r-28,0r0,-36v-51,-3,-84,-39,-84,-91xm94,-59r0,-137v-55,-4,-67,83,-40,119v9,11,23,16,40,18xm122,-59v54,1,68,-75,41,-115v-9,-12,-23,-20,-41,-22r0,137"},"\u0425":{"d":"204,0r-32,0r-62,-102r-63,102r-32,0r79,-126r-79,-122r34,0r61,98r61,-98r32,0r-78,122"},"\u0426":{"d":"195,52r-28,0r0,-52r-130,0r0,-248r29,0r0,223r84,0r0,-223r29,0r0,223r16,0r0,77"},"\u0427":{"d":"150,-102v-49,36,-113,4,-113,-63r0,-83r29,0v2,54,-14,141,41,137v14,0,28,-5,43,-15r0,-122r29,0r0,248r-29,0r0,-102"},"\u0428":{"d":"200,0r-184,0r0,-248r29,0r0,223r49,0r0,-223r28,0r0,223r49,0r0,-223r29,0r0,248"},"\u0429":{"d":"187,0r-171,0r0,-248r29,0r0,223r49,0r0,-223r28,0r0,223r49,0r0,-223r29,0r0,223r16,0r0,77r-29,0r0,-52"},"\u042a":{"d":"193,-74v0,65,-65,82,-139,74r0,-223r-52,0r0,-25r80,0r0,99v63,-4,111,18,111,75xm163,-74v0,-40,-36,-53,-81,-50r0,99v45,4,81,-10,81,-49"},"\u042b":{"d":"201,0r-29,0r0,-248r29,0r0,248xm156,-74v0,64,-66,82,-140,74r0,-248r29,0r0,99v63,-4,111,18,111,75xm125,-74v0,-39,-35,-53,-80,-50r0,99v44,4,80,-11,80,-49"},"\u042c":{"d":"183,-74v0,65,-66,81,-140,74r0,-248r29,0r0,99v63,-4,111,18,111,75xm153,-74v0,-40,-36,-53,-81,-50r0,99v45,3,81,-10,81,-49"},"\u042d":{"d":"194,-124v0,77,-29,128,-99,129v-26,0,-48,-7,-67,-20r9,-23v63,36,125,16,126,-74r-99,0r0,-25r99,0v2,-87,-61,-108,-122,-76r-9,-23v13,-10,40,-17,63,-17v70,1,99,52,99,129"},"\u042e":{"d":"137,5v-53,0,-63,-53,-65,-117r-27,0r0,112r-29,0r0,-248r29,0r0,111r27,0v2,-77,24,-116,65,-116v56,0,66,59,66,129v0,86,-22,129,-66,129xm137,-227v-51,0,-36,144,-26,184v4,16,14,22,26,22v37,-8,35,-45,35,-103v0,-53,4,-95,-35,-103"},"\u042f":{"d":"33,-183v-1,-69,75,-68,146,-65r0,248r-29,0r0,-113r-32,0r-72,113r-36,0r79,-119v-30,-6,-56,-31,-56,-64xm63,-181v2,40,42,46,87,43r0,-85v-44,-2,-89,0,-87,42"},"\u0430":{"d":"152,-108v9,-65,-61,-63,-98,-41r-7,-19v54,-33,132,-30,132,47v0,41,-3,88,5,121r-28,0v-2,-7,-3,-18,-3,-30v-26,49,-114,47,-115,-17v0,-56,61,-56,114,-61xm67,-49v4,47,74,23,85,-5r0,-34v-48,6,-76,2,-85,39"},"\u0431":{"d":"179,-226v-34,10,-81,-13,-103,13v-8,10,-15,25,-18,46v50,-51,132,-2,132,75v0,54,-30,97,-82,97v-52,0,-84,-43,-83,-98v3,-129,33,-154,134,-154v9,0,15,-1,20,-3r0,24xm54,-91v1,36,18,72,54,72v35,0,54,-36,54,-72v-1,-37,-18,-73,-54,-73v-37,0,-54,34,-54,73"},"\u0432":{"d":"175,-135v0,18,-15,34,-29,38v19,3,37,20,38,40v1,66,-78,58,-146,57r0,-183v60,0,136,-9,137,48xm146,-134v-2,-32,-47,-25,-81,-25r0,51v33,-1,83,7,81,-26xm155,-56v-1,-35,-53,-27,-90,-28r0,60v40,0,91,7,90,-32"},"\u0433":{"d":"162,-159r-72,0r0,159r-27,0r0,-183r99,0r0,24"},"\u0434":{"d":"27,-24v35,-30,52,-89,47,-159r101,0r0,159r20,0r0,60r-27,0r0,-36r-128,0r0,36r-28,0r0,-60r15,0xm102,-159v1,56,-15,106,-40,135r86,0r0,-135r-46,0"},"\u0435":{"d":"110,-188v47,0,78,42,74,97r-125,0v-2,61,56,88,113,63r5,22v-69,31,-147,-5,-147,-86v0,-54,30,-96,80,-96xm155,-113v2,-41,-50,-69,-79,-37v-9,9,-15,22,-16,37r95,0"},"\u0436":{"d":"216,0r-31,0r-46,-90r-17,23r0,67r-28,0r0,-67r-17,-23r-46,90r-31,0r60,-112r-57,-71r29,0r62,79r0,-79r28,0r0,79r62,-79r29,0r-56,71"},"\u0437":{"d":"135,-98v20,3,41,21,41,44v-2,59,-93,75,-141,41r11,-20v33,21,101,21,101,-21v0,-29,-36,-31,-69,-30r0,-25v32,2,62,-3,64,-30v-6,-31,-61,-29,-88,-16r-11,-21v42,-19,130,-19,129,37v0,20,-18,38,-37,41"},"\u0438":{"d":"178,0r-28,0r0,-142r-81,142r-31,0r0,-183r27,0r0,142r82,-142r31,0r0,183"},"\u0439":{"d":"178,0r-28,0r0,-142r-81,142r-31,0r0,-183r27,0r0,142r82,-142r31,0r0,183xm71,-257v6,26,69,28,73,0r25,0v-5,60,-117,56,-123,0r25,0"},"\u043a":{"d":"197,0r-36,0r-78,-91r-18,15r0,76r-27,0r0,-183r27,0r0,77r86,-77r35,0r-83,75"},"\u043b":{"d":"9,-21v24,0,29,-9,29,-33r0,-129r140,0r0,183r-28,0r0,-159r-85,0v-8,66,30,173,-56,162r0,-24"},"\u043c":{"d":"195,0r-28,0r0,-161r-46,161r-28,0r-46,-161r0,161r-26,0r0,-183r47,0r40,146r42,-146r45,0r0,183"},"\u043d":{"d":"178,0r-28,0r0,-90r-85,0r0,90r-27,0r0,-183r27,0r0,69r85,0r0,-69r28,0r0,183"},"\u043e":{"d":"25,-92v0,-54,32,-96,83,-96v51,0,82,42,82,96v0,54,-30,97,-82,97v-52,0,-83,-43,-83,-97xm54,-91v1,36,18,72,54,72v35,0,54,-36,54,-72v-1,-37,-18,-73,-54,-73v-37,0,-54,34,-54,73"},"\u043f":{"d":"178,0r-28,0r0,-159r-85,0r0,159r-27,0r0,-183r140,0r0,183"},"\u0440":{"d":"121,5v-24,0,-46,-15,-56,-31r0,98r-27,0r0,-255r27,0r0,24v11,-15,33,-29,58,-29v45,2,67,44,67,94v0,49,-23,99,-69,99xm162,-92v0,-37,-14,-71,-48,-72v-19,0,-36,11,-49,32r0,76v8,17,26,36,48,36v32,0,50,-36,49,-72"},"\u0441":{"d":"60,-91v0,59,57,89,113,63r5,22v-69,32,-147,-8,-147,-85v0,-77,75,-117,147,-87r-8,23v-57,-24,-110,2,-110,64"},"\u0442":{"d":"182,-159r-60,0r0,159r-28,0r0,-159r-60,0r0,-24r148,0r0,24"},"\u0443":{"d":"187,-183v-32,76,-55,177,-99,239v-15,21,-41,19,-67,10r4,-22v41,16,56,-11,67,-44r-68,-183r30,0r51,146r52,-146r30,0"},"\u0444":{"d":"94,-26v-9,20,-16,31,-39,31v-31,0,-46,-33,-46,-99v0,-62,16,-94,48,-94v17,0,29,10,37,29r0,-89r28,0r0,89v8,-19,20,-29,37,-29v32,0,48,32,48,94v0,66,-15,99,-46,99v-23,0,-30,-11,-39,-31r0,98r-28,0r0,-98xm62,-20v40,-5,32,-65,32,-112v-6,-15,-14,-30,-29,-32v-27,5,-28,29,-28,71v0,37,-2,66,25,73xm151,-164v-11,-3,-29,25,-29,32r0,76v10,23,12,32,32,36v25,-6,25,-32,25,-73v0,-39,1,-65,-28,-71"},"\u0445":{"d":"185,0r-30,0r-50,-72r-50,72r-30,0r66,-92r-66,-91r32,0r49,71r50,-71r29,0r-64,90"},"\u0446":{"d":"199,40r-28,0r0,-40r-143,0r0,-183r27,0r0,159r96,0r0,-159r28,0r0,159r20,0r0,64"},"\u0447":{"d":"57,-183v2,46,-12,109,37,106v17,0,35,-10,56,-30r0,-76r28,0r0,183r-28,0r0,-83v-41,46,-123,41,-120,-33r0,-67r27,0"},"\u0448":{"d":"195,0r-174,0r0,-183r27,0r0,159r46,0r0,-159r28,0r0,159r46,0r0,-159r27,0r0,183"},"\u0449":{"d":"188,0r-167,0r0,-183r27,0r0,159r46,0r0,-159r28,0r0,159r46,0r0,-159r27,0r0,159r21,0r0,64r-28,0r0,-40"},"\u044a":{"d":"184,-57v1,56,-59,60,-120,57r0,-159r-57,0r0,-24r84,0r0,69v52,-3,93,11,93,57xm155,-57v1,-31,-31,-35,-64,-33r0,66v34,2,64,-3,64,-33"},"\u044b":{"d":"194,0r-27,0r0,-183r27,0r0,183xm141,-57v1,56,-59,60,-120,57r0,-183r27,0r0,69v52,-3,92,12,93,57xm112,-57v0,-30,-30,-35,-64,-33r0,66v34,2,64,-3,64,-33"},"\u044c":{"d":"176,-57v0,56,-59,60,-120,57r0,-183r27,0r0,69v52,-3,93,11,93,57xm83,-24v34,2,64,-4,64,-33v0,-28,-29,-35,-64,-33r0,66"},"\u044d":{"d":"156,-104v-5,-53,-57,-73,-110,-51r-8,-23v71,-30,147,10,147,87v0,77,-78,117,-147,85r5,-22v53,24,109,-1,113,-53r-70,0r0,-23r70,0"},"\u044e":{"d":"204,-92v0,52,-19,97,-68,97v-43,0,-66,-29,-68,-86r-20,0r0,81r-27,0r0,-183r27,0r0,79r20,0v3,-55,25,-84,68,-84v48,0,68,43,68,96xm136,-164v-33,0,-40,31,-39,73v0,48,13,72,39,72v26,0,39,-24,39,-72v0,-42,-6,-73,-39,-73"},"\u044f":{"d":"46,-131v-2,-57,64,-54,122,-52r0,183r-27,0r0,-75r-30,0r-52,75r-32,0r58,-82v-21,-6,-38,-25,-39,-49xm74,-131v0,29,33,35,67,32r0,-60v-32,-1,-68,-3,-67,28"},"\u0451":{"d":"110,-188v47,0,78,42,74,97r-125,0v-2,61,56,88,113,63r5,22v-69,31,-147,-5,-147,-86v0,-54,30,-96,80,-96xm155,-113v2,-41,-50,-69,-79,-37v-9,9,-15,22,-16,37r95,0xm127,-228v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm57,-228v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u0452":{"d":"152,-117v2,-63,-57,-56,-87,-16r0,133r-27,0r0,-209r-28,0r0,-24r28,0r0,-15r27,0r0,15r32,0r0,24r-32,0r0,53v37,-47,114,-46,114,31r0,134v7,63,-45,72,-96,56r8,-22v34,11,61,11,61,-36r0,-124"},"\u0453":{"d":"162,-159r-72,0r0,159r-27,0r0,-183r99,0r0,24xm155,-258r-55,53r-19,0r34,-53r40,0"},"\u0454":{"d":"60,-81v5,53,60,76,113,53r5,22v-69,32,-147,-8,-147,-85v0,-77,75,-117,147,-87r-8,23v-54,-23,-107,0,-110,51r70,0r0,23r-70,0"},"\u0455":{"d":"41,-136v2,-52,74,-61,125,-44r-6,23v-35,-17,-111,-7,-86,34v31,23,102,14,102,71v0,58,-85,68,-133,47r5,-24v31,16,97,18,101,-20v-9,-51,-111,-24,-108,-87"},"\u0456":{"d":"102,-234v-1,-9,9,-19,18,-18v10,-1,19,9,19,18v0,9,-9,20,-19,19v-10,1,-19,-9,-18,-19xm133,0r-27,0r0,-159r-54,0r0,-24r81,0r0,183"},"\u0457":{"d":"133,0r-27,0r0,-159r-54,0r0,-24r81,0r0,183xm128,-228v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm58,-228v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u0458":{"d":"102,-234v-1,-9,9,-19,18,-18v10,-1,19,9,19,18v0,9,-9,20,-19,19v-10,1,-19,-9,-18,-19xm45,43v34,11,61,11,61,-36r0,-166r-54,0r0,-24r81,0r0,192v7,63,-44,73,-95,56"},"\u0459":{"d":"52,-159v-9,63,30,169,-50,162r0,-24v16,1,21,-10,22,-33r0,-129r107,0r0,69v45,-1,76,16,76,57v0,49,-46,61,-104,57r0,-159r-51,0xm131,-24v31,1,48,-10,48,-33v0,-23,-17,-34,-48,-33r0,66"},"\u045a":{"d":"207,-57v0,53,-47,60,-104,57r0,-90r-56,0r0,90r-27,0r0,-183r27,0r0,69r56,0r0,-69r28,0r0,69v45,-1,76,16,76,57xm131,-24v27,1,48,-8,48,-33v0,-23,-17,-34,-48,-33r0,66"},"\u045b":{"d":"152,-117v2,-63,-57,-56,-87,-16r0,133r-27,0r0,-209r-28,0r0,-24r28,0r0,-15r27,0r0,15r32,0r0,24r-32,0r0,53v37,-47,114,-46,114,31r0,125r-27,0r0,-117"},"\u045c":{"d":"197,0r-36,0r-78,-91r-18,15r0,76r-27,0r0,-183r27,0r0,77r86,-77r35,0r-83,75xm155,-258r-55,53r-19,0r34,-53r40,0"},"\u045e":{"d":"187,-183v-32,76,-55,177,-99,239v-15,21,-41,19,-67,10r4,-22v41,16,56,-11,67,-44r-68,-183r30,0r51,146r52,-146r30,0xm68,-257v6,26,69,28,73,0r25,0v-5,60,-117,56,-123,0r25,0"},"\u045f":{"d":"179,0r-62,0r0,40r-28,0r0,-40r-61,0r0,-183r27,0r0,159r96,0r0,-159r28,0r0,183"},"\u0490":{"d":"191,-223r-117,0r0,223r-29,0r0,-248r117,0r0,-47r29,0r0,72"},"\u0491":{"d":"173,-159r-90,0r0,159r-27,0r0,-183r90,0r0,-40r27,0r0,64"},"\u1e80":{"d":"208,-248r-31,248r-27,0r-42,-140r-42,140r-28,0r-30,-248r28,0r21,202r37,-122r28,0r37,122r21,-202r28,0xm136,-267r-20,0r-55,-53r40,0"},"\u1e81":{"d":"201,-183r-27,183r-21,0r-43,-104r-43,104r-21,0r-26,-183r27,0v10,86,16,130,16,134r33,-79r28,0r34,79r14,-134r29,0xm136,-205r-20,0r-55,-53r40,0"},"\u1e84":{"d":"208,-248r-31,248r-27,0r-42,-140r-42,140r-28,0r-30,-248r28,0r21,202r37,-122r28,0r37,122r21,-202r28,0xm124,-290v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm54,-290v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u1e85":{"d":"201,-183r-27,183r-21,0r-43,-104r-43,104r-21,0r-26,-183r27,0v10,86,16,130,16,134r33,-79r28,0r34,79r14,-134r29,0xm124,-228v-1,-11,9,-19,19,-19v10,0,19,8,18,19v1,10,-9,19,-18,19v-9,0,-20,-9,-19,-19xm54,-228v0,-10,9,-19,19,-19v10,0,20,8,19,19v1,10,-10,19,-19,19v-9,0,-19,-10,-19,-19"},"\u2500":{"d":"0,-110r0,-28r216,0r0,28r-216,0"},"\u2502":{"d":"94,78r0,-405r28,0r0,405r-28,0"},"\u250c":{"d":"94,78r0,-216r122,0r0,28r-94,0r0,188r-28,0"},"\u2510":{"d":"94,78r0,-188r-94,0r0,-28r122,0r0,216r-28,0"},"\u2514":{"d":"94,-110r0,-217r28,0r0,189r94,0r0,28r-122,0"},"\u2518":{"d":"0,-110r0,-28r94,0r0,-189r28,0r0,217r-122,0"},"\u251c":{"d":"94,78r0,-405r28,0r0,189r94,0r0,28r-94,0r0,188r-28,0"},"\u2524":{"d":"94,78r0,-188r-94,0r0,-28r94,0r0,-189r28,0r0,405r-28,0"},"\u252c":{"d":"94,78r0,-188r-94,0r0,-28r216,0r0,28r-94,0r0,188r-28,0"},"\u2534":{"d":"0,-110r0,-28r94,0r0,-189r28,0r0,189r94,0r0,28r-216,0"},"\u253c":{"d":"94,78r0,-188r-94,0r0,-28r94,0r0,-189r28,0r0,189r94,0r0,28r-94,0r0,188r-28,0"},"\u2550":{"d":"0,-110r216,0r0,27r-216,0r0,-27xm0,-138r0,-27r216,0r0,27r-216,0"},"\u2551":{"d":"94,78r-27,0r0,-405r27,0r0,405xm122,-327r27,0r0,405r-27,0r0,-405"},"\u2552":{"d":"94,78r0,-243r122,0r0,27r-94,0r0,28r94,0r0,27r-94,0r0,161r-28,0"},"\u2553":{"d":"94,78r-27,0r0,-216r149,0r0,28r-67,0r0,188r-27,0r0,-188r-28,0r0,188"},"\u2554":{"d":"94,78r-27,0r0,-243r149,0r0,27r-122,0r0,216xm122,78r0,-188r94,0r0,27r-67,0r0,161r-27,0"},"\u2555":{"d":"94,78r0,-161r-94,0r0,-27r94,0r0,-28r-94,0r0,-27r122,0r0,243r-28,0"},"\u2556":{"d":"94,78r-27,0r0,-188r-67,0r0,-28r149,0r0,216r-27,0r0,-188r-28,0r0,188"},"\u2557":{"d":"94,78r-27,0r0,-161r-67,0r0,-27r94,0r0,188xm122,78r0,-216r-122,0r0,-27r149,0r0,243r-27,0"},"\u2558":{"d":"94,-83r0,-244r28,0r0,162r94,0r0,27r-94,0r0,28r94,0r0,27r-122,0"},"\u2559":{"d":"67,-110r0,-217r27,0r0,189r28,0r0,-189r27,0r0,189r67,0r0,28r-149,0"},"\u255a":{"d":"67,-83r0,-244r27,0r0,217r122,0r0,27r-149,0xm216,-138r-94,0r0,-189r27,0r0,162r67,0r0,27"},"\u255b":{"d":"0,-110r94,0r0,-28r-94,0r0,-27r94,0r0,-162r28,0r0,244r-122,0r0,-27"},"\u255c":{"d":"0,-110r0,-28r67,0r0,-189r27,0r0,189r28,0r0,-189r27,0r0,217r-149,0"},"\u255d":{"d":"0,-110r122,0r0,-217r27,0r0,244r-149,0r0,-27xm0,-138r0,-27r67,0r0,-162r27,0r0,189r-94,0"},"\u255e":{"d":"94,78r0,-405r28,0r0,162r94,0r0,27r-94,0r0,27r94,0r0,28r-94,0r0,161r-28,0"},"\u255f":{"d":"67,78r0,-405r27,0r0,405r-27,0xm122,78r0,-405r27,0r0,189r67,0r0,28r-67,0r0,188r-27,0"},"\u2560":{"d":"67,78r0,-405r27,0r0,405r-27,0xm122,78r0,-188r94,0r0,27r-67,0r0,161r-27,0xm122,-138r0,-189r27,0r0,162r67,0r0,27r-94,0"},"\u2561":{"d":"94,78r0,-161r-94,0r0,-27r94,0r0,-28r-94,0r0,-27r94,0r0,-162r28,0r0,405r-28,0"},"\u2562":{"d":"67,78r0,-188r-67,0r0,-28r67,0r0,-188r27,0r0,405xm122,79r0,-405r27,0r0,405r-27,0"},"\u2563":{"d":"67,78r0,-161r-67,0r0,-27r94,0r0,188r-27,0xm122,78r0,-405r27,0r0,405r-27,0xm0,-138r0,-27r67,0r0,-162r27,0r0,189r-94,0"},"\u2564":{"d":"0,-110r216,0r0,27r-94,0r0,161r-28,0r0,-161r-94,0r0,-27xm0,-138r0,-27r216,0r0,27r-216,0"},"\u2565":{"d":"0,-110r0,-28r216,0r0,28r-67,0r0,188r-27,0r0,-188r-28,0r0,188r-27,0r0,-188r-67,0"},"\u2566":{"d":"0,-110r94,0r0,188r-27,0r0,-161r-67,0r0,-27xm0,-138r0,-27r216,0r0,27r-216,0xm216,-110r0,27r-67,0r0,161r-27,0r0,-188r94,0"},"\u2567":{"d":"0,-110r216,0r0,27r-216,0r0,-27xm0,-138r0,-27r94,0r0,-162r28,0r0,162r94,0r0,27r-216,0"},"\u2568":{"d":"0,-110r0,-28r67,0r0,-189r27,0r0,189r28,0r0,-189r27,0r0,189r67,0r0,28r-216,0"},"\u2569":{"d":"0,-110r216,0r0,27r-216,0r0,-27xm0,-138r0,-27r67,0r0,-162r27,0r0,189r-94,0xm122,-138r0,-189r27,0r0,162r67,0r0,27r-94,0"},"\u256a":{"d":"0,-110r94,0r0,-28r-94,0r0,-27r94,0r0,-162r28,0r0,162r94,0r0,27r-94,0r0,28r94,0r0,27r-94,0r0,161r-28,0r0,-161r-94,0r0,-27"},"\u256b":{"d":"0,-110r0,-28r67,0r0,-189r27,0r0,189r28,0r0,-189r27,0r0,189r67,0r0,28r-67,0r0,188r-27,0r0,-188r-28,0r0,188r-27,0r0,-188r-67,0"},"\u256c":{"d":"0,-110r94,0r0,188r-27,0r0,-161r-67,0r0,-27xm0,-138r0,-27r67,0r0,-162r27,0r0,189r-94,0xm122,-138r0,-189r27,0r0,162r67,0r0,27r-94,0xm216,-110r0,27r-67,0r0,161r-27,0r0,-188r94,0"},"\u20a3":{"d":"45,-73r0,-175r131,0r0,25r-102,0r0,81r93,0r0,25r-93,0r0,44r54,0r0,25r-54,0r0,48r-29,0r0,-48r-31,0r0,-25r31,0"},"\u2017":{"d":"216,32r-216,0r0,-23r216,0r0,23xm216,78r-216,0r0,-23r216,0r0,23"},"\u203c":{"d":"77,-248v2,62,-2,118,-8,173r-15,0v-6,-54,-11,-110,-9,-173r32,0xm40,-18v0,-12,9,-23,22,-22v12,0,22,10,22,22v0,11,-10,23,-22,23v-12,0,-22,-12,-22,-23xm169,-248v2,62,-2,118,-8,173r-15,0v-6,-54,-11,-110,-9,-173r32,0xm132,-18v0,-12,9,-23,22,-22v12,0,22,10,22,22v0,11,-10,23,-22,23v-12,0,-22,-12,-22,-23"},"\u207f":{"d":"130,-162v3,-32,-32,-26,-47,-9r0,79r-23,0r0,-110r23,0r0,16v21,-28,69,-25,69,19r0,75r-22,0r0,-70"},"\u20a7":{"d":"16,-248v58,-4,105,10,104,63v0,23,-8,42,-26,54r12,0r0,26r28,0r0,19r-28,0v2,31,-11,89,32,62r4,17v-24,15,-56,14,-56,-22r0,-57r-18,0r0,-19r18,0r0,-22v-13,7,-28,10,-45,9r0,118r-25,0r0,-248xm93,-184v0,-29,-20,-41,-52,-40v2,26,-4,60,2,82v34,0,50,-14,50,-42xm143,-78v2,-29,32,-39,61,-27r-4,19v-16,-7,-34,-8,-38,7v5,18,52,19,45,47v2,32,-39,44,-63,25r4,-18v13,11,38,12,40,-6v-6,-25,-47,-15,-45,-47"},"\u2229":{"d":"108,-230v-33,0,-55,26,-54,62r0,168r-23,0r0,-175v-2,-42,35,-78,77,-78v42,0,77,36,77,78r0,175r-23,0r0,-168v1,-35,-21,-62,-54,-62"},"\u2261":{"d":"191,-151r-166,0r0,-23r166,0r0,23xm191,-80r-166,0r0,-23r166,0r0,23xm191,-10r-166,0r0,-23r166,0r0,23"},"\u2302":{"d":"188,0r-160,0r0,-118r80,-69r80,69r0,118xm52,-23r113,0r0,-84r-57,-49r-56,49r0,84"},"\u2310":{"d":"191,-151r-143,0r0,63r-23,0r0,-86r166,0r0,23"},"\u2032":{"d":"134,-239v-11,30,-26,57,-42,82r-12,-6v8,-31,18,-60,30,-87"},"\u2033":{"d":"167,-239v-12,30,-26,56,-42,82r-13,-6v8,-31,18,-60,30,-87xm102,-239v-11,30,-26,57,-42,82r-13,-6v8,-31,18,-60,30,-87"},"\u2105":{"d":"82,-223v-27,-14,-53,-4,-53,33v0,41,29,47,56,30r6,16v-37,28,-84,1,-84,-46v0,-48,42,-72,82,-49xm173,-248r-113,248r-20,0r112,-248r21,0xm111,-58v0,-33,17,-57,50,-57v33,0,50,23,50,57v0,33,-19,58,-50,58v-31,0,-50,-26,-50,-58xm161,-97v-23,0,-27,14,-27,39v0,26,8,39,27,39v18,0,28,-13,28,-39v-1,-25,-6,-39,-28,-39"},"\u2113":{"d":"118,-250v28,1,45,45,45,79v0,44,-19,76,-58,97v4,36,14,75,48,45r7,21v-41,39,-77,-8,-83,-55v-7,2,-14,5,-22,7r-8,-21v12,-3,21,-6,27,-8v-8,-64,-4,-154,44,-165xm118,-224v-18,16,-17,85,-15,125v22,-15,33,-39,33,-72v0,-21,-4,-49,-18,-53"},"\u01fa":{"d":"108,-301v30,0,48,43,20,60r79,241r-31,0r-27,-87r-81,0r-28,87r-30,0r79,-240v-26,-18,-12,-61,19,-61xm88,-268v0,10,10,20,20,20v10,0,20,-10,20,-20v0,-10,-10,-20,-20,-20v-10,0,-20,10,-20,20xm141,-112r-33,-103r-32,103r65,0xm155,-359r-55,53r-19,0r34,-53r40,0"},"\u01fb":{"d":"152,-108v9,-65,-61,-63,-98,-41r-7,-19v54,-33,132,-30,132,47v0,41,-3,88,5,121r-28,0v-2,-7,-3,-18,-3,-30v-26,49,-114,47,-115,-17v0,-56,61,-56,114,-61xm67,-49v4,47,74,23,85,-5r0,-34v-48,6,-76,2,-85,39xm157,-326r-55,53r-19,0r34,-53r40,0xm77,-237v0,-18,16,-33,33,-33v17,0,34,16,34,33v0,17,-17,34,-34,34v-17,0,-33,-16,-33,-34xm90,-237v-1,11,10,20,20,20v10,1,21,-10,20,-20v0,-10,-10,-19,-20,-19v-10,0,-20,9,-20,19"},"\u01fc":{"d":"208,0r-103,0r0,-89r-46,0r-27,89r-30,0r79,-248r126,0r0,25r-73,0r0,77r69,0r0,25r-69,0r0,96r74,0r0,25xm105,-114r0,-108r-4,0r-34,108r38,0xm173,-323r-55,53r-19,0r34,-53r40,0"},"\u01fd":{"d":"122,-91v-5,58,32,88,82,63r4,22v-37,18,-81,15,-99,-20v-27,47,-104,40,-101,-21v2,-45,34,-55,87,-61v6,-54,-30,-68,-73,-46r-7,-21v32,-17,81,-21,98,8v11,-14,24,-21,41,-21v43,1,56,45,54,97r-86,0xm178,-113v4,-37,-23,-69,-46,-38v-6,9,-9,22,-10,38r56,0xm63,-22v13,2,31,-15,32,-23r0,-43v-31,2,-56,13,-58,39v-1,16,11,28,26,27xm154,-258r-55,53r-19,0r34,-53r40,0"},"\u01fe":{"d":"22,-124v0,-89,48,-154,125,-119r11,-27r24,0r-17,41v46,56,44,234,-57,234v-15,0,-28,-4,-39,-10r-11,26r-24,0r17,-40v-19,-21,-29,-57,-29,-105xm136,-218v-55,-31,-83,29,-83,94v0,30,4,55,12,73xm80,-30v52,28,84,-11,82,-94v0,-31,-3,-56,-11,-73xm160,-323r-55,53r-19,0r34,-53r40,0"},"\u01ff":{"d":"62,-8v-72,-47,-32,-217,75,-175r11,-26r24,0r-15,37v66,49,29,210,-75,173r-11,25r-24,0xm127,-160v-68,-28,-95,81,-54,126xm92,-22v65,22,89,-80,53,-124xm161,-258r-55,53r-19,0r34,-53r40,0"},"\u1e82":{"d":"208,-248r-31,248r-27,0r-42,-140r-42,140r-28,0r-30,-248r28,0r21,202r37,-122r28,0r37,122r21,-202r28,0xm157,-323r-55,53r-19,0r34,-53r40,0"},"\u1e83":{"d":"201,-183r-27,183r-21,0r-43,-104r-43,104r-21,0r-26,-183r27,0v10,86,16,130,16,134r33,-79r28,0r34,79r14,-134r29,0xm155,-258r-55,53r-19,0r34,-53r40,0"},"\u1ef2":{"d":"200,-248r-77,142r0,106r-29,0r0,-106r-77,-142r32,0r59,112r60,-112r32,0xm146,-270r-20,0r-55,-53r40,0"},"\u1ef3":{"d":"187,-183v-32,76,-55,177,-99,239v-15,21,-41,19,-67,10r4,-22v41,16,56,-11,67,-44r-68,-183r30,0r51,146r52,-146r30,0xm143,-205r-20,0r-55,-53r40,0"},"\u201b":{"d":"107,-253v31,0,24,42,0,44v0,9,7,18,21,25r-7,12v-25,-13,-38,-30,-38,-53v0,-15,11,-28,24,-28"},"\u203e":{"d":"182,-225r-148,0r0,-23r148,0r0,23"},"\u20a4":{"d":"37,-26v25,-18,27,-29,26,-65r-35,0r0,-23r35,0r0,-22r-35,0r0,-23r35,0v-1,-58,16,-93,69,-93v17,0,33,3,47,9r-7,23v-48,-19,-88,1,-80,61r44,0r0,23r-44,0r0,22r44,0r0,23r-44,0v1,20,-1,37,-11,47v37,2,81,41,114,1r0,29v-13,11,-28,18,-45,18v-16,0,-52,-21,-68,-21v-15,0,-30,7,-45,19r0,-28"},"\u215b":{"d":"166,-126v34,0,55,42,22,58v38,16,20,75,-22,70v-42,5,-60,-53,-22,-69v-32,-16,-13,-59,22,-59xm166,-108v-19,0,-22,27,-1,31v23,-3,21,-30,1,-31xm166,-16v27,0,25,-39,0,-43v-26,4,-26,43,0,43xm84,-123r-74,0r0,-19r27,0r0,-82r-25,12r0,-21v15,-6,24,-17,47,-15r0,106r25,0r0,19xm175,-248r-113,248r-21,0r113,-248r21,0"},"\u215c":{"d":"166,-127v34,0,55,42,22,59v38,16,19,70,-22,70v-42,0,-60,-54,-22,-70v-32,-16,-13,-59,22,-59xm182,-94v-1,-19,-31,-19,-32,0v0,7,5,13,15,16v11,-3,17,-9,17,-16xm166,-17v27,0,25,-39,0,-43v-26,4,-26,43,0,43xm61,-189v14,2,27,14,27,29v0,34,-48,52,-77,31r4,-18v20,11,50,10,50,-12v0,-15,-16,-22,-35,-20r0,-18v29,7,48,-32,13,-33v-6,0,-15,2,-25,6r-3,-19v29,-14,70,-4,70,27v1,14,-13,24,-24,27xm175,-248r-113,248r-21,0r113,-248r21,0"},"\u215d":{"d":"165,-126v34,0,55,42,22,58v38,16,20,75,-22,70v-42,5,-60,-53,-22,-69v-31,-16,-13,-59,22,-59xm165,-108v-20,0,-22,28,0,31v23,-4,19,-30,0,-31xm165,-16v27,0,25,-39,0,-43v-26,4,-26,43,0,43xm65,-163v1,-17,-20,-26,-34,-18r-13,-5r0,-62r64,0r0,19r-44,0r0,28v29,-5,49,13,50,38v2,36,-44,53,-76,35r4,-19v22,11,48,11,49,-16xm175,-248r-113,248r-21,0r113,-248r21,0"},"\u215e":{"d":"165,-127v34,0,55,42,22,59v38,16,19,70,-22,70v-42,0,-60,-54,-22,-70v-31,-16,-13,-59,22,-59xm181,-94v-1,-19,-31,-19,-32,0v0,7,6,13,16,16v11,-3,16,-9,16,-16xm165,-17v27,0,25,-39,0,-43v-26,4,-26,43,0,43xm103,-234r-51,110r-21,0r48,-105r-57,0r0,-19r81,0r0,14xm175,-248r-113,248r-21,0r113,-248r21,0"},"\u2015":{"d":"202,-86r-188,0r0,-26r188,0r0,26"},"\u2116":{"d":"115,0r-32,0r-54,-205v7,78,3,128,4,205r-24,0r0,-248r32,0r54,204v-6,-80,-3,-126,-4,-204r24,0r0,248xm125,-125v0,-35,10,-57,42,-57v31,0,43,21,42,57v-1,35,-9,58,-42,58v-32,0,-42,-21,-42,-58xm167,-164v-25,-3,-17,56,-13,71v20,18,32,0,30,-32v-1,-25,0,-36,-17,-39xm203,-29r-72,0r0,-23r72,0r0,23"},"\u2190":{"d":"48,-18v-18,-18,-27,-29,-48,-39r0,-5v14,-6,29,-19,47,-38r9,0v-9,18,-9,20,-22,35r182,0r0,12r-182,0v8,8,15,20,22,35r-8,0"},"\u2191":{"d":"110,-153v10,21,21,30,39,48r0,8v-15,-7,-27,-14,-35,-22r0,168r-12,0r0,-168v-15,13,-17,13,-35,22r0,-8v19,-18,32,-35,38,-48r5,0"},"\u2192":{"d":"216,-57v-21,10,-30,21,-48,39r-8,0v7,-15,14,-27,22,-35r-182,0r0,-12r182,0v-13,-15,-12,-17,-22,-35r9,0v18,19,33,32,47,38r0,5"},"\u2193":{"d":"149,2v-19,17,-29,26,-39,47r-5,0v-6,-14,-19,-30,-38,-47r0,-9v18,9,20,9,35,22r0,-168r12,0r0,168v8,-8,20,-15,35,-22r0,9"},"\u2194":{"d":"169,-100v17,19,27,28,47,38r0,6v-19,9,-30,21,-47,38r-9,0v5,-13,13,-24,22,-35r-148,0v10,11,17,22,22,35r-9,0v-17,-18,-27,-29,-47,-38r0,-6v19,-10,30,-19,47,-38r9,0v-5,13,-13,24,-22,35r148,0v-9,-11,-17,-22,-22,-35r9,0"},"\u2195":{"d":"67,-120v18,-17,29,-27,38,-47r6,0v7,14,19,30,38,47r0,9v-13,-5,-24,-12,-35,-22r0,148v11,-9,22,-17,35,-22r0,9v-19,17,-31,33,-38,47r-6,0v-8,-20,-20,-31,-38,-47r0,-9v13,5,25,13,35,22r0,-148v-11,10,-22,17,-35,22r0,-9"},"\u21a8":{"d":"67,-120v18,-17,29,-27,38,-47r6,0v7,14,19,30,38,47r0,9v-13,-5,-24,-12,-35,-22r0,148v11,-9,22,-17,35,-22r0,9v-19,17,-31,33,-38,47r-6,0v-8,-20,-20,-31,-38,-47r0,-9v13,5,25,13,35,22r0,-148v-11,10,-22,17,-35,22r0,-9xm67,60r82,0r0,11r-82,0r0,-11"},"\u221f":{"d":"0,-215r17,0r0,198r199,0r0,17r-216,0r0,-215"},"\u2320":{"d":"130,-304v-12,2,-8,13,-9,31r0,351r-26,0r0,-323v-1,-40,18,-74,52,-77v25,-2,33,32,9,35v-11,1,-14,-11,-26,-17"},"\u2321":{"d":"86,56v12,-2,8,-13,9,-31r0,-352r26,0r0,324v1,40,-17,74,-52,77v-24,2,-34,-33,-9,-35v13,-1,17,14,26,17"},"\u2580":{"d":"0,-124r0,-203r216,0r0,203r-216,0"},"\u2584":{"d":"0,78r0,-202r216,0r0,202r-216,0"},"\u2588":{"d":"0,78r0,-405r216,0r0,405r-216,0"},"\u258c":{"d":"0,78r0,-405r108,0r0,405r-108,0"},"\u2590":{"d":"216,78r-108,0r0,-405r108,0r0,405"},"\u2591":{"d":"18,-262r18,0r0,17r-18,0r0,-17xm90,-262r18,0r0,17r-18,0r0,-17xm162,-262r18,0r0,17r-18,0r0,-17xm54,-228r18,0r0,17r-18,0r0,-17xm126,-228r18,0r0,17r-18,0r0,-17xm198,-228r18,0r0,17r-18,0r0,-17xm162,-194r18,0r0,17r-18,0r0,-17xm90,-194r18,0r0,17r-18,0r0,-17xm18,-194r18,0r0,17r-18,0r0,-17xm198,-160r18,0r0,17r-18,0r0,-17xm126,-160r18,0r0,17r-18,0r0,-17xm54,-160r18,0r0,17r-18,0r0,-17xm18,-126r18,0r0,17r-18,0r0,-17xm90,-126r18,0r0,17r-18,0r0,-17xm162,-126r18,0r0,17r-18,0r0,-17xm198,-92r18,0r0,17r-18,0r0,-17xm126,-92r18,0r0,17r-18,0r0,-17xm54,-92r18,0r0,17r-18,0r0,-17xm18,-58r18,0r0,17r-18,0r0,-17xm90,-58r18,0r0,17r-18,0r0,-17xm162,-58r18,0r0,17r-18,0r0,-17xm54,-24r18,0r0,17r-18,0r0,-17xm126,-24r18,0r0,17r-18,0r0,-17xm198,-24r18,0r0,17r-18,0r0,-17xm162,10r18,0r0,17r-18,0r0,-17xm90,10r18,0r0,17r-18,0r0,-17xm18,10r18,0r0,17r-18,0r0,-17xm54,44r18,0r0,17r-18,0r0,-17xm126,44r18,0r0,17r-18,0r0,-17xm198,44r18,0r0,17r-18,0r0,-17xm54,-296r18,0r0,17r-18,0r0,-17xm126,-296r18,0r0,17r-18,0r0,-17xm198,-296r18,0r0,17r-18,0r0,-17xm18,-329r18,0r0,16r-18,0r0,-16xm90,-329r18,0r0,16r-18,0r0,-16xm162,-329r18,0r0,16r-18,0r0,-16"},"\u2592":{"d":"18,-262r18,0r0,17r-18,0r0,-17xm54,-262r18,0r0,17r-18,0r0,-17xm90,-262r18,0r0,17r-18,0r0,-17xm126,-262r18,0r0,17r-18,0r0,-17xm162,-262r18,0r0,17r-18,0r0,-17xm198,-262r18,0r0,17r-18,0r0,-17xm0,-228r18,0r0,17r-18,0r0,-17xm36,-228r18,0r0,17r-18,0r0,-17xm72,-228r18,0r0,17r-18,0r0,-17xm108,-228r18,0r0,17r-18,0r0,-17xm144,-228r18,0r0,17r-18,0r0,-17xm180,-228r18,0r0,17r-18,0r0,-17xm18,-194r18,0r0,17r-18,0r0,-17xm54,-194r18,0r0,17r-18,0r0,-17xm90,-194r18,0r0,17r-18,0r0,-17xm126,-194r18,0r0,17r-18,0r0,-17xm162,-194r18,0r0,17r-18,0r0,-17xm198,-194r18,0r0,17r-18,0r0,-17xm0,-160r18,0r0,17r-18,0r0,-17xm36,-160r18,0r0,17r-18,0r0,-17xm72,-160r18,0r0,17r-18,0r0,-17xm108,-160r18,0r0,17r-18,0r0,-17xm144,-160r18,0r0,17r-18,0r0,-17xm180,-160r18,0r0,17r-18,0r0,-17xm18,-126r18,0r0,17r-18,0r0,-17xm54,-126r18,0r0,17r-18,0r0,-17xm90,-126r18,0r0,17r-18,0r0,-17xm126,-126r18,0r0,17r-18,0r0,-17xm162,-126r18,0r0,17r-18,0r0,-17xm198,-126r18,0r0,17r-18,0r0,-17xm0,-92r18,0r0,17r-18,0r0,-17xm72,-92r18,0r0,17r-18,0r0,-17xm108,-92r18,0r0,17r-18,0r0,-17xm144,-92r18,0r0,17r-18,0r0,-17xm180,-92r18,0r0,17r-18,0r0,-17xm36,-92r18,0r0,17r-18,0r0,-17xm198,-58r18,0r0,17r-18,0r0,-17xm162,-58r18,0r0,17r-18,0r0,-17xm126,-58r18,0r0,17r-18,0r0,-17xm90,-58r18,0r0,17r-18,0r0,-17xm54,-58r18,0r0,17r-18,0r0,-17xm18,-58r18,0r0,17r-18,0r0,-17xm0,-24r18,0r0,17r-18,0r0,-17xm36,-24r18,0r0,17r-18,0r0,-17xm72,-24r18,0r0,17r-18,0r0,-17xm108,-24r18,0r0,17r-18,0r0,-17xm144,-24r18,0r0,17r-18,0r0,-17xm180,-24r18,0r0,17r-18,0r0,-17xm198,10r18,0r0,17r-18,0r0,-17xm162,10r18,0r0,17r-18,0r0,-17xm126,10r18,0r0,17r-18,0r0,-17xm90,10r18,0r0,17r-18,0r0,-17xm54,10r18,0r0,17r-18,0r0,-17xm18,10r18,0r0,17r-18,0r0,-17xm0,44r18,0r0,17r-18,0r0,-17xm36,44r18,0r0,17r-18,0r0,-17xm72,44r18,0r0,17r-18,0r0,-17xm108,44r18,0r0,17r-18,0r0,-17xm144,44r18,0r0,17r-18,0r0,-17xm180,44r18,0r0,17r-18,0r0,-17xm0,-296r18,0r0,17r-18,0r0,-17xm36,-296r18,0r0,17r-18,0r0,-17xm72,-296r18,0r0,17r-18,0r0,-17xm108,-296r18,0r0,17r-18,0r0,-17xm144,-296r18,0r0,17r-18,0r0,-17xm180,-296r18,0r0,17r-18,0r0,-17xm18,-329r18,0r0,16r-18,0r0,-16xm54,-329r18,0r0,16r-18,0r0,-16xm90,-329r18,0r0,16r-18,0r0,-16xm126,-329r18,0r0,16r-18,0r0,-16xm162,-329r18,0r0,16r-18,0r0,-16xm198,-329r18,0r0,16r-18,0r0,-16"},"\u2593":{"d":"216,-296r-18,0r0,17r18,0r0,51r-18,0r0,17r18,0r0,51r-18,0r0,17r18,0r0,51r-18,0r0,17r18,0r0,51r-18,0r0,17r18,0r0,51r-18,0r0,17r18,0r0,17r-216,0r0,-51r18,0r0,-17r-18,0r0,-51r18,0r0,-17r-18,0r0,-51r18,0r0,-17r-18,0r0,-51r18,0r0,-17r-18,0r0,-51r18,0r0,-17r-18,0r0,-51r18,0r0,-16r18,0r0,16r18,0r0,-16r18,0r0,16r18,0r0,-16r18,0r0,16r18,0r0,-16r18,0r0,16r18,0r0,-16r18,0r0,16r18,0r0,-16r18,0r0,33xm18,-228r0,17r18,0r0,-17r-18,0xm54,-228r0,17r18,0r0,-17r-18,0xm90,-228r0,17r18,0r0,-17r-18,0xm126,-228r0,17r18,0r0,-17r-18,0xm162,-228r0,17r18,0r0,-17r-18,0xm198,-194r-18,0r0,17r18,0r0,-17xm162,-194r-18,0r0,17r18,0r0,-17xm126,-194r-18,0r0,17r18,0r0,-17xm90,-194r-18,0r0,17r18,0r0,-17xm54,-194r-18,0r0,17r18,0r0,-17xm18,-160r0,17r18,0r0,-17r-18,0xm54,-160r0,17r18,0r0,-17r-18,0xm90,-160r0,17r18,0r0,-17r-18,0xm126,-160r0,17r18,0r0,-17r-18,0xm162,-160r0,17r18,0r0,-17r-18,0xm54,-126r-18,0r0,17r18,0r0,-17xm72,-126r0,17r18,0r0,-17r-18,0xm108,-126r0,17r18,0r0,-17r-18,0xm144,-126r0,17r18,0r0,-17r-18,0xm180,-126r0,17r18,0r0,-17r-18,0xm18,-92r0,17r18,0r0,-17r-18,0xm90,-92r0,17r18,0r0,-17r-18,0xm72,-75r0,-17r-18,0r0,17r18,0xm126,-92r0,17r18,0r0,-17r-18,0xm162,-92r0,17r18,0r0,-17r-18,0xm198,-41r0,-17r-18,0r0,17r18,0xm162,-41r0,-17r-18,0r0,17r18,0xm126,-41r0,-17r-18,0r0,17r18,0xm90,-41r0,-17r-18,0r0,17r18,0xm54,-41r0,-17r-18,0r0,17r18,0xm18,-24r0,17r18,0r0,-17r-18,0xm54,-24r0,17r18,0r0,-17r-18,0xm90,-24r0,17r18,0r0,-17r-18,0xm126,-24r0,17r18,0r0,-17r-18,0xm162,-24r0,17r18,0r0,-17r-18,0xm198,27r0,-17r-18,0r0,17r18,0xm162,27r0,-17r-18,0r0,17r18,0xm126,27r0,-17r-18,0r0,17r18,0xm90,27r0,-17r-18,0r0,17r18,0xm54,27r0,-17r-18,0r0,17r18,0xm18,44r0,17r18,0r0,-17r-18,0xm54,44r0,17r18,0r0,-17r-18,0xm90,44r0,17r18,0r0,-17r-18,0xm126,44r0,17r18,0r0,-17r-18,0xm162,44r0,17r18,0r0,-17r-18,0xm198,-262r-18,0r0,17r18,0r0,-17xm162,-262r-18,0r0,17r18,0r0,-17xm126,-262r-18,0r0,17r18,0r0,-17xm90,-262r-18,0r0,17r18,0r0,-17xm54,-262r-18,0r0,17r18,0r0,-17xm180,-296r-18,0r0,17r18,0r0,-17xm144,-296r-18,0r0,17r18,0r0,-17xm108,-296r-18,0r0,17r18,0r0,-17xm72,-296r-18,0r0,17r18,0r0,-17xm36,-296r-18,0r0,17r18,0r0,-17"},"\u25a0":{"d":"0,-215r216,0r0,215r-216,0r0,-215"},"\u25ac":{"d":"0,-110r216,0r0,41r-216,0r0,-41"},"\u25b2":{"d":"3,0r105,-211r105,211r-210,0"},"\u25ba":{"d":"0,-210r216,107r-216,108r0,-215"},"\u25bc":{"d":"213,-206r-105,211r-105,-211r210,0"},"\u25c4":{"d":"216,-210r0,215r-216,-108"},"\u25cb":{"d":"31,-102v1,-44,33,-77,77,-77v44,0,76,33,77,77v2,42,-36,78,-77,78v-41,0,-79,-36,-77,-78xm172,-102v-1,-36,-28,-64,-64,-64v-36,0,-63,28,-64,64v-1,34,30,65,64,65v35,0,65,-31,64,-65"},"\u25d8":{"d":"22,0r0,-172r172,0r0,172r-172,0xm143,-86v0,-19,-16,-36,-35,-36v-19,0,-36,17,-36,36v0,19,17,35,36,35v19,0,35,-16,35,-35"},"\u25d9":{"d":"7,0r0,-203r203,0r0,203r-203,0xm186,-101v-2,-44,-33,-78,-78,-78v-44,0,-76,33,-77,78v-2,42,36,77,77,77v41,0,79,-36,78,-77xm44,-101v1,-37,28,-65,64,-65v36,0,64,27,64,65v0,36,-29,64,-64,64v-35,0,-64,-29,-64,-64"},"\u263a":{"d":"108,-210v58,0,108,49,108,107v0,58,-50,108,-108,108v-58,0,-107,-50,-107,-108v0,-58,49,-107,107,-107xm108,-11v49,0,92,-43,92,-92v0,-49,-43,-92,-92,-92v-49,0,-92,43,-92,92v0,49,43,92,92,92xm67,-139v19,0,17,28,0,28v-7,1,-14,-7,-14,-14v0,-7,7,-15,14,-14xm149,-139v7,-1,14,7,14,14v0,7,-7,15,-14,14v-7,0,-13,-7,-13,-14v0,-7,6,-14,13,-14xm58,-68r11,-6v16,32,62,32,78,0r11,6v-18,46,-84,40,-100,0"},"\u263b":{"d":"108,-210v58,0,108,49,108,107v0,58,-50,108,-108,108v-58,0,-107,-50,-107,-108v0,-58,49,-107,107,-107xm67,-111v19,0,17,-28,0,-28v-7,-1,-14,7,-14,14v0,7,7,15,14,14xm149,-111v7,1,14,-7,14,-14v0,-7,-7,-15,-14,-14v-7,0,-13,7,-13,14v0,7,6,14,13,14xm58,-68v15,41,84,43,100,0r-11,-6v-16,32,-62,32,-78,0"},"\u263c":{"d":"153,-29v-13,9,-21,13,-39,16r0,38r-12,0r0,-38v-15,-2,-28,-8,-39,-16r-33,31r-8,-7r33,-33v-9,-12,-15,-25,-17,-40r-38,0r0,-10r38,0v1,-15,7,-29,16,-40r-32,-32r8,-9r33,32v13,-9,26,-14,39,-15r0,-38r12,0r0,38v19,2,27,6,39,16r33,-32r8,8r-32,32v10,14,16,27,16,40r38,0r0,11r-38,0v-2,14,-7,27,-16,39r32,33r-9,8xm166,-83v0,-31,-27,-58,-58,-58v-32,0,-59,26,-59,58v0,32,27,59,59,59v32,0,58,-27,58,-59"},"\u2640":{"d":"159,-152v-1,27,-19,47,-44,51r0,29r45,0r0,12r-45,0r0,46r-13,0r0,-46r-46,0r0,-12r46,0r0,-29v-25,-2,-44,-24,-44,-51v-1,-27,23,-51,50,-51v27,0,52,24,51,51xm144,-152v0,-20,-17,-36,-36,-36v-19,0,-36,17,-36,36v0,19,16,36,36,36v20,0,36,-16,36,-36"},"\u2642":{"d":"32,-94v0,-37,43,-66,78,-43r43,-43v-6,-3,-45,-12,-31,-22v17,6,46,4,59,-1v6,12,-7,43,2,64v-11,7,-19,-22,-22,-33r-41,42v32,30,5,86,-37,86v-27,0,-51,-23,-51,-50xm121,-95v0,-20,-18,-37,-38,-37v-20,0,-37,17,-37,37v0,20,17,38,37,38v20,0,39,-17,38,-38"},"\u2660":{"d":"61,-48v-29,1,-50,-35,-33,-62v22,-35,74,-56,80,-106v5,57,80,72,85,128v1,21,-18,41,-38,40v-18,0,-33,-12,-45,-34v0,49,20,72,66,75r2,7r-140,0r2,-7v47,-1,68,-25,67,-75v-9,18,-23,33,-46,34"},"\u2663":{"d":"168,-48v-31,-1,-45,-17,-58,-41v2,55,19,74,71,83r1,6r-148,0r2,-6v51,-8,67,-31,70,-83v-12,23,-29,40,-57,41v-28,1,-49,-21,-49,-49v0,-36,36,-63,71,-39v-27,-30,-4,-79,37,-79v40,0,64,47,36,79v32,-22,72,1,72,39v1,27,-22,50,-48,49"},"\u2665":{"d":"108,-160v5,-50,89,-54,89,0v0,67,-79,103,-89,164v-10,-61,-81,-96,-89,-162v-3,-24,18,-44,42,-43v25,1,40,18,47,41"},"\u2666":{"d":"108,-215v18,31,58,85,80,110v-17,17,-65,82,-80,109v-20,-36,-53,-75,-80,-109v21,-24,62,-77,80,-110"},"\u266a":{"d":"48,-22v-1,-24,28,-42,51,-31r0,-150r13,0v-1,40,32,45,41,78v7,29,6,56,-11,77r-9,0v20,-34,11,-87,-21,-94v-2,57,15,137,-44,137v-13,0,-19,-6,-20,-17"},"\u266b":{"d":"16,-10v-1,-23,27,-41,51,-30r0,-132r123,-32r0,147v1,27,-19,48,-44,48v-13,0,-19,-6,-20,-17v-1,-24,26,-41,51,-31r0,-79r-97,26v0,53,9,119,-44,118v-13,0,-19,-7,-20,-18xm80,-132r97,-26r0,-20r-97,26r0,20"},"\u25a1":{"d":"0,-215r216,0r0,215r-216,0r0,-215xm14,-202r0,189r188,0r0,-189r-188,0"},"\u25aa":{"d":"153,-67r-90,0r0,-89r90,0r0,89"},"\u25ab":{"d":"153,-67r-90,0r0,-89r90,0r0,89xm139,-81r0,-62r-62,0r0,62r62,0"},"\u25cf":{"d":"31,-102v1,-44,33,-77,77,-77v44,0,76,33,77,77v2,42,-36,78,-77,78v-41,0,-79,-36,-77,-78"},"\u25e6":{"d":"108,-155v24,0,44,19,44,43v0,24,-21,44,-44,44v-24,0,-43,-20,-43,-44v0,-24,19,-43,43,-43xm108,-82v15,0,30,-15,30,-30v0,-15,-15,-30,-30,-30v-15,0,-30,15,-30,30v0,15,15,30,30,30"},"\u212e":{"d":"16,-93v0,-84,98,-133,157,-75v18,17,28,42,29,75r-146,0r0,65v39,35,98,25,122,-22r13,7v-22,29,-37,48,-82,49v-56,1,-93,-43,-93,-99xm161,-106r0,-53v-28,-28,-79,-28,-105,1r0,52r105,0"},"\u00a4":{"d":"65,-205v24,-16,62,-15,85,0r33,-38r20,18r-32,37v24,31,24,73,0,104r32,37r-20,17r-33,-36v-26,16,-58,16,-85,0r-32,36r-20,-17r32,-37v-25,-29,-25,-75,0,-104r-32,-37r20,-18xm54,-136v0,29,25,54,54,54v28,0,54,-26,54,-54v0,-28,-26,-54,-54,-54v-29,0,-54,25,-54,54"}}});;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2010, Kimberly Geswein (kimberlygeswein.com)
 * 
 * Manufacturer:
 * Kimberly Geswein
 * 
 * Designer:
 * Kimberly Geswein
 * 
 * License information:
 * Copyright (c) 2010, Kimberly Geswein (kimberlygeswein.com)
 */
Cufon.registerFont({"w":148,"face":{"font-family":"Dawning of a New Day","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","bbox":"-83.0515 -449 569.044 180","underline-thickness":"0","underline-position":"0","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":180},"$":{"d":"49,54v-1,4,-7,5,-11,4v3,-22,10,-38,10,-53v-24,-10,-54,-37,-34,-73v8,-15,12,-32,29,-36v4,25,-53,52,-14,80v8,5,20,10,28,2v6,-25,18,-48,15,-79v-30,-18,-21,-83,19,-80v2,-10,2,-25,12,-27v6,13,-5,46,7,63v5,23,-29,24,-17,42v23,37,4,97,-30,106xm69,-21v20,2,31,-53,14,-65v-6,21,-10,42,-14,65xm86,-161v-12,-8,-23,12,-20,24v2,7,7,11,12,16v2,-13,13,-29,8,-40xm97,-146v0,5,-8,13,0,13v1,-3,2,-11,0,-13","w":117},"&":{"d":"86,-172v25,15,6,60,-9,71v77,4,7,74,35,118r-4,15r-18,-34v-30,26,-83,2,-66,-44v13,-37,43,-53,39,-107v4,-10,10,-22,23,-19xm84,-53v-26,18,-4,-54,-29,-26v-15,16,-42,63,-3,73v27,7,32,-21,32,-47xm88,-82v-5,14,1,34,11,39v8,-15,14,-37,-11,-39xm78,-159v-8,13,-11,24,-4,36v18,-4,19,-28,4,-36","w":120},"'":{"d":"31,-190v-2,15,-10,45,-22,37v5,-19,11,-37,3,-57v10,-1,20,10,19,20","w":36},"(":{"d":"54,47v-48,-36,-25,-163,8,-197v14,-15,23,-44,48,-37v2,1,2,4,0,8v-60,31,-90,140,-53,215v2,4,4,5,6,5v-1,5,-4,7,-9,6","w":109},")":{"d":"7,32v0,-19,16,-6,23,-16v31,-44,44,-117,57,-179v-2,-23,-13,-36,-34,-41v4,-18,33,-8,37,3v26,68,-12,154,-38,209v-8,17,-24,39,-45,24","w":102},"*":{"d":"99,-130v-2,13,-14,11,-21,18r-9,35r-12,-3r-5,-21v-11,1,-24,19,-32,3v-8,-19,18,-12,20,-29v-11,-10,-26,-13,-19,-34v13,4,23,11,30,22v5,-9,23,-35,28,-11r2,15","w":107},"+":{"d":"157,-86v-14,15,-41,11,-69,4r-15,54r-13,0r15,-55v-20,-10,-60,-1,-59,-30r59,16v7,-20,4,-41,15,-56v7,0,14,1,12,10r-12,46v17,7,51,5,67,11","w":161},"-":{"d":"117,-96v0,6,-1,7,-8,7r-86,2v-9,-7,-2,-18,11,-15r77,-1v4,-1,7,3,6,7","w":127},".":{"d":"36,-18v9,2,9,23,-1,21v-6,-1,-12,-8,-9,-15v1,-3,4,-6,10,-6","w":48},"\/":{"d":"91,-111v22,-23,40,-50,65,-71v13,-1,7,11,2,17r-75,78v-23,26,-46,56,-66,84v-16,-7,0,-20,8,-30","w":171},"0":{"d":"140,-41v-17,36,-73,88,-114,46v-42,-70,0,-192,63,-210v63,-18,93,48,72,112v-6,19,-14,37,-21,52xm88,-185v-55,18,-98,152,-31,189v67,-10,105,-83,90,-158v-4,-23,-31,-40,-59,-31","w":180},"1":{"d":"13,-174v7,-27,34,-32,54,-46v-1,70,-41,148,-49,221v-6,3,-16,18,-16,3v0,-69,35,-120,45,-189","w":78},"2":{"d":"117,-58v4,54,-36,99,-74,53v-13,-16,-25,10,-39,10v15,-65,58,-100,89,-147v3,-15,19,-46,1,-55v-24,-1,-29,36,-43,45v-5,-26,19,-67,50,-68v8,2,12,10,12,21v0,83,-58,108,-81,166v18,5,28,22,45,26v35,9,18,-40,24,-63v4,-6,11,10,16,12","w":121},"3":{"d":"128,-164v-27,25,13,33,9,69v-8,63,-35,116,-101,107v-41,-6,-30,-96,2,-102v-1,20,-40,90,27,82v49,-6,82,-94,34,-125v-13,0,-40,2,-24,-17v18,-10,57,-14,51,-42v-14,-7,-34,-10,-54,-6v-13,3,-17,-9,-12,-20v30,-15,64,17,90,8v5,17,-16,34,-22,46","w":154},"4":{"d":"106,-128v12,7,18,-12,21,-21v12,16,-5,43,-25,41v-11,38,-21,78,-24,121v0,9,-14,18,-15,5r22,-126v-23,-8,-46,-30,-77,-20v7,-39,43,-67,63,-96v7,1,5,17,-2,16v-11,20,-25,37,-34,58v19,1,50,42,60,7v7,-24,7,-64,23,-76v8,25,-11,61,-12,91","w":138},"5":{"d":"18,-48v-8,23,1,44,29,38v45,-9,72,-58,60,-110v-6,-27,-38,-24,-67,-24v8,-25,2,-61,14,-80v24,3,56,-1,75,7v4,24,-38,15,-61,11v-8,10,-10,27,-12,41v97,-11,75,136,20,161v-17,13,-44,17,-67,8v-16,-24,-4,-89,28,-80v2,14,-13,19,-19,28","w":135},"6":{"d":"45,-13v11,-37,20,-71,49,-84v41,25,-2,100,-30,108v-71,19,-58,-90,-36,-140v17,-39,37,-76,64,-103v12,16,-10,27,-18,42v-23,43,-61,91,-50,155v2,10,11,20,21,22xm91,-72v-27,0,-27,34,-33,57v20,11,38,-23,39,-48v0,-5,-2,-8,-6,-9","w":114},"7":{"d":"21,13v11,-74,41,-137,58,-208v-15,-5,-55,-19,-61,4v-1,1,-3,1,-6,0r11,-41v16,14,45,13,74,15v-11,81,-49,153,-63,229v-4,4,-15,16,-13,1","w":104},"8":{"d":"80,-142v30,44,7,130,-30,149v-56,13,-48,-61,-29,-101v8,-18,20,-30,32,-45v-21,-39,3,-120,48,-90v7,5,12,25,18,6v3,-3,4,-5,8,-6v3,35,-37,58,-47,87xm65,-127v-24,19,-42,48,-45,85v-2,21,11,29,31,30v25,-19,46,-89,14,-115xm100,-196v-2,-28,-39,-25,-41,3v-11,26,12,45,26,21v5,-7,12,-16,15,-24","w":130},"9":{"d":"26,7r30,-134v-37,11,-49,-13,-39,-54v8,-34,36,-73,59,-40v14,75,-30,158,-41,232v-1,4,-4,6,-7,7xm37,-141v28,6,42,-61,21,-76v-27,-6,-50,64,-21,76","w":91},":":{"d":"32,-32v-3,11,-20,9,-19,-4v1,-7,14,-9,18,-3v2,2,2,4,1,7xm28,-83v-7,-4,0,-13,6,-14v10,1,4,13,0,15v-2,1,-4,0,-6,-1","w":48},";":{"d":"33,57v5,-15,1,-52,19,-39v1,14,-3,41,-19,39xm34,-31v1,-5,4,-7,9,-6v5,1,7,5,6,10v-1,5,-5,6,-10,5v-5,-1,-6,-4,-5,-9","w":63},"<":{"d":"162,44v-39,-51,-83,-100,-134,-135v1,-6,6,-7,10,-10v51,-11,88,-49,129,-65v6,35,-76,53,-108,72v0,3,0,5,2,7r114,119v0,8,-6,13,-13,12","w":186},"=":{"d":"73,-29v-13,11,-65,0,-42,-16v14,5,33,5,42,16xm76,-71v-17,2,-60,-6,-48,-24v18,4,42,8,48,24","w":85},">":{"d":"65,-22v-16,9,-22,34,-38,23r0,-9r112,-89v-29,-25,-65,-58,-82,-94v6,-6,14,-7,19,1v26,35,53,63,86,92v1,20,-35,22,-50,41","w":172},"?":{"d":"44,20v-9,0,-2,-15,0,-19v7,-5,10,2,8,10xm75,-109v-6,20,-4,55,-21,63v-7,-22,12,-52,13,-74v45,-18,76,-74,54,-130v-33,-27,-71,19,-71,61v0,8,-3,8,-6,0v-7,-45,22,-85,68,-86v22,6,30,26,29,55v-4,55,-31,89,-66,111","w":166},"@":{"d":"96,-55v-8,-30,-47,21,-52,-29v-3,-33,13,-58,43,-51v27,6,4,66,27,79v42,-1,49,-94,18,-115v-68,-45,-119,53,-104,134v6,33,53,59,73,23v4,-6,10,-5,10,3v0,4,-1,8,-2,11v-34,24,-67,20,-84,-18v-27,-60,-4,-137,34,-166v63,-48,134,34,94,110v-5,24,-40,47,-57,19xm63,-72v19,0,26,-25,26,-47v-20,-14,-36,18,-35,39v1,4,4,7,9,8","w":169},"A":{"d":"221,-301r10,172v16,-3,24,-13,38,-11v4,13,-22,22,-35,26v-6,50,21,111,10,153v-1,0,-2,0,-4,1v-13,-44,-9,-100,-21,-145v-30,-1,-56,-16,-88,-16v-39,37,-44,113,-124,110v-5,-3,-6,-8,0,-11v63,-1,84,-66,113,-107v-20,-13,-38,-31,-52,-51v-1,-9,8,-8,15,-8v27,0,43,16,70,15v26,-35,35,-102,68,-128xm142,-132v17,5,39,4,53,10v-9,-12,-22,-25,-39,-32v-3,5,-11,14,-14,22xm217,-125r-6,-142r-45,101xm146,-162v-19,-4,-38,-16,-58,-13v2,19,46,53,54,21v1,-2,2,-5,4,-8","w":263},"B":{"d":"345,-126v-7,-62,-76,-71,-144,-63v-6,0,-12,-1,-21,-2v-35,55,-54,126,-101,169v-32,29,-80,-1,-77,-44v25,5,16,46,49,44v73,-36,83,-146,135,-203v34,-37,67,-90,131,-96v18,-1,28,14,28,31v-1,47,-46,63,-70,87v47,11,99,42,76,104v-18,49,-54,90,-113,99v-52,-5,-87,-37,-85,-96v11,-11,33,5,13,11v4,42,30,74,74,74v59,0,99,-55,105,-115xm327,-266v19,-22,7,-58,-25,-45v-55,22,-85,67,-115,110v72,5,108,-28,140,-65","w":367},"C":{"d":"164,-96v-5,48,-41,87,-88,96v-109,-15,-59,-183,-21,-242v15,-23,29,-55,62,-53v19,10,32,33,29,66v0,2,-4,5,-7,4v2,-33,-22,-79,-49,-46v-35,42,-70,103,-70,171v0,41,15,85,56,85v48,0,72,-45,85,-85v2,0,3,2,3,4","w":171},"D":{"d":"158,-316v120,0,98,214,40,276v-20,45,-106,58,-128,4v-6,-14,-25,-25,-35,-7v-11,13,-9,41,-27,45r32,-248r8,0r-23,196v7,-7,13,-15,26,-15v45,4,44,83,101,52v41,-22,74,-64,80,-122v-18,17,-38,30,-72,30v-55,-2,-76,-43,-76,-99v0,-54,20,-112,74,-112xm189,-296v-52,-40,-98,35,-94,94v-18,92,123,121,138,33v9,-55,-12,-102,-44,-127","w":240},"E":{"d":"137,-19v-56,38,-152,13,-128,-65v9,-26,27,-41,41,-62v-11,-66,17,-128,72,-142v25,1,38,24,35,49v-1,4,-3,6,-8,6v-3,-15,-7,-42,-25,-44v-49,8,-75,67,-63,122v30,1,43,-19,75,-16v9,1,21,2,21,13v-2,28,-34,36,-63,36v-17,1,-21,-12,-37,-11v-36,19,-60,107,0,118v59,11,91,-25,131,-43v3,4,8,12,0,15xm146,-152v-13,-14,-46,-3,-63,2v-11,4,-8,14,1,16v26,3,51,-3,62,-18","w":184},"F":{"d":"294,-152v4,22,-31,36,-60,37v-27,58,-60,126,-150,109v-34,-6,-64,-21,-82,-42v4,-8,20,-22,29,-11v-7,2,-17,10,-6,17v23,14,55,28,88,28v65,0,92,-48,107,-103v0,-15,-20,-14,-26,-5v-8,-4,-5,-31,5,-33v14,1,12,20,28,19v10,-33,10,-64,10,-104v-30,13,-56,40,-98,38v-26,-1,-38,-15,-64,-16v-10,1,-9,13,-19,13v-4,-21,6,-65,16,-32v51,41,167,23,176,-41v8,-21,15,-46,42,-47v23,23,-26,52,-37,74v3,42,-14,75,-15,116v-1,5,7,6,11,6v21,0,32,-13,45,-23xm290,-314v-20,1,-28,21,-30,41v11,-10,25,-25,30,-41","w":277},"G":{"d":"216,-4v-68,6,-102,-100,-41,-129v6,-3,13,-4,20,-4v-11,20,-43,25,-42,56v2,40,28,64,67,67v99,-15,69,-169,59,-263v-30,32,-73,50,-115,70v-41,58,-74,123,-128,167v-10,7,-30,13,-34,-1v76,-31,109,-103,152,-170v-8,-17,-24,-33,-19,-63v2,-17,6,-30,24,-29v37,2,21,56,13,78v63,-9,111,-45,114,-115v5,-17,14,-37,33,-40v8,-1,12,9,11,16v-1,30,-24,47,-36,65v-1,114,43,284,-78,295xm161,-292v-23,1,-21,60,0,63v16,-9,23,-57,0,-63xm320,-366v-18,3,-23,23,-23,45v12,-10,22,-24,23,-45","w":306},"H":{"d":"213,-119v-22,65,-61,151,-150,124v-28,-9,-82,-38,-50,-68v6,-5,13,-9,19,-12v-4,16,-17,15,-19,28v14,44,93,61,128,25v25,-26,53,-55,58,-101v-13,-21,-28,-61,10,-70v2,-16,9,-29,7,-47v-20,9,-54,14,-83,17v-22,2,-38,-10,-22,-26v0,13,17,18,30,18v29,0,70,-5,79,-28v8,-24,13,-47,30,-59v29,25,-26,51,-24,87v-2,9,-2,19,-2,30v30,30,76,47,89,93r18,-180r9,1r-20,287v-1,4,-7,4,-13,4v-2,-47,9,-104,-18,-130v-22,11,-49,13,-76,7xm224,-182v-7,10,-9,34,-11,48v13,17,59,10,74,0v-20,-18,-34,-40,-63,-48xm211,-179v-22,-1,-18,25,-10,38v5,-11,10,-23,10,-38xm251,-305v-11,1,-11,16,-12,27v5,-8,12,-15,12,-27","w":349},"I":{"d":"72,-11v-15,9,-58,21,-67,0v0,-15,18,-4,28,-3v110,-18,176,-108,176,-220v0,-36,-14,-57,-50,-54v-53,4,-73,120,-13,133v-28,8,-51,-21,-49,-53v3,-43,18,-91,62,-91v98,0,48,153,15,198v-27,36,-62,69,-102,90","w":213},"J":{"d":"168,-4v-62,-3,-69,-99,-33,-140v20,-23,41,-44,62,-70v11,-26,2,-74,40,-74v26,1,8,34,-1,46v-13,17,-25,26,-29,57r-20,166v13,1,35,-9,40,2v-2,20,-42,4,-48,21v-24,73,-43,166,-130,166v-53,0,-66,-54,-66,-106v0,-41,12,-88,58,-82v3,0,6,3,5,7v-43,-6,-50,39,-52,79v-3,57,32,114,88,83v50,-28,71,-91,86,-155xm194,-192v-32,29,-67,68,-71,124v-2,27,25,58,49,46xm239,-279v-19,2,-23,22,-23,43v13,-9,23,-23,23,-43","w":215},"K":{"d":"70,42v-55,2,-66,-38,-66,-89v-1,-18,12,-50,30,-31v-36,28,-22,116,38,109v77,-9,114,-64,123,-140v-39,4,-88,8,-88,-34v0,-17,23,-19,40,-19v30,0,40,9,56,27v9,-23,17,-57,18,-88v-28,2,-58,8,-87,7v-4,-1,-5,-2,-3,-4v16,-23,98,8,103,-40v6,-16,7,-38,28,-38v24,16,-8,50,-22,59r-22,106v80,-6,123,-65,162,-113r8,0r0,7v-35,60,-92,102,-167,122v40,82,92,167,141,239v32,47,115,36,146,0v28,-15,59,-71,11,-90v-5,-4,-16,-1,-15,-11v29,2,53,15,53,47v0,67,-71,94,-139,103v-90,-30,-120,-133,-170,-204r-37,-62v-35,58,-50,134,-141,137xm146,-147v-9,1,-24,-3,-24,6v-1,28,49,31,66,17v-6,-17,-21,-23,-42,-23xm251,-266v4,-1,10,-11,7,-17v-5,1,-6,12,-7,17","w":310},"L":{"d":"394,175v-81,-49,-86,-177,-157,-236v-46,21,-80,58,-149,56v-39,-2,-76,-13,-76,-53v0,-55,66,-66,118,-66v47,0,83,23,115,41v13,-18,29,-41,37,-60v-58,-1,-107,-22,-136,-54v-12,-8,-10,-46,3,-25v24,41,82,77,143,61v38,-34,68,-78,112,-105v17,-10,51,-9,51,14v-4,85,-95,87,-156,112v-16,22,-27,42,-41,65v51,66,67,176,132,228v11,9,23,12,38,12v70,1,134,-2,130,-75v-2,-30,-19,-50,-42,-60v36,-5,53,26,53,61v2,82,-65,89,-145,89v-11,0,-21,0,-30,-5xm124,-109v-47,-1,-94,9,-98,52v13,69,133,35,166,8v11,-9,26,-12,34,-23v-18,-25,-62,-36,-102,-37xm436,-223v8,-13,12,-40,-11,-37v-9,1,-20,6,-26,11r-81,85v54,-1,95,-25,118,-59","w":374},"N":{"d":"291,42v-133,7,-66,-176,-71,-292r-126,119v-6,58,-10,123,-65,133v-46,-8,-11,-72,4,-90v15,-17,31,-36,46,-51v1,-29,0,-61,-10,-81v-23,3,-33,24,-61,22v-1,-8,4,-11,10,-12v18,-6,35,-19,54,-25v6,1,9,6,11,11r12,77r132,-128v27,67,-17,156,-7,247v6,52,47,72,99,59v-5,8,-15,11,-28,11xm76,-116v-25,24,-57,49,-56,100v38,23,60,-52,60,-100r-4,0","w":246},"O":{"d":"182,-129v-19,59,-41,125,-114,125v-84,0,-60,-142,-48,-215v8,-17,11,-44,34,-45r0,6v-27,42,-31,85,-34,148v-3,61,27,117,83,85v32,-19,55,-57,65,-97v-73,6,-103,-29,-100,-99v2,-61,9,-128,68,-134v75,16,52,133,50,215r26,-12v0,15,-23,13,-30,23xm142,-129v57,4,34,-60,40,-118v5,-48,-16,-113,-64,-90v-44,43,-68,202,24,208","w":198},"P":{"d":"81,-29v-16,33,-79,43,-76,-10v3,-59,45,-77,68,-114v32,-31,65,-65,60,-133v-25,1,-38,13,-63,14r0,-10v37,3,57,-14,74,-33v3,-2,5,-3,8,-3v0,34,-13,56,-12,90v35,-32,64,-73,104,-98v12,-8,46,-13,44,11v-7,71,-41,126,-86,159v-23,17,-55,7,-69,-9v-12,51,-24,101,-52,136xm40,-99v-16,15,-43,78,-5,88v67,-17,76,-103,88,-176v-32,20,-56,63,-83,88xm148,-220v-22,17,-10,66,20,62v65,-8,86,-75,103,-133v3,-11,3,-22,3,-30v-65,9,-85,69,-126,101","w":193},"Q":{"d":"198,-4v-38,1,-48,-25,-63,-47v-18,18,-36,43,-71,43v-42,0,-60,-34,-57,-84v4,-77,12,-161,65,-189r18,0v-4,14,-23,15,-29,26v-30,57,-80,195,5,233v29,4,45,-26,61,-41v-7,-52,-25,-99,-22,-158v2,-48,7,-102,48,-115v38,7,34,63,34,107v0,67,-14,116,-41,163v9,24,20,49,50,52v23,2,42,-15,54,-17v-4,19,-30,26,-52,27xm153,-326v-48,40,-41,156,-22,223v2,6,4,17,11,18v36,-53,50,-165,21,-235v-3,-4,-6,-6,-10,-6","w":241},"M":{"d":"401,117v-172,10,-81,-226,-95,-377v-1,-1,-2,-2,-3,-2v-63,55,-99,141,-128,226v-9,8,-12,-1,-10,-12r25,-165v0,-11,-13,-4,-15,0r-81,103v-15,45,-17,103,-70,111v-21,3,-18,-23,-7,-33v42,-57,85,-90,75,-190v0,-3,-2,-3,-2,-2r-72,30v-10,-3,-3,-11,3,-13v26,-5,42,-25,69,-29v31,10,8,62,12,100r81,-101v15,-10,19,8,18,25v-1,31,-9,74,-15,102r58,-106v17,-27,32,-55,62,-66v69,90,-102,356,95,393v6,-2,10,-3,12,-3v3,4,-8,7,-12,9xm24,-10v34,-7,42,-45,52,-76v-18,23,-45,44,-52,76","w":334},"R":{"d":"255,-39v-2,32,-52,44,-74,22v-32,-31,-40,-91,-76,-119v-8,-6,-18,-7,-29,-5r-32,133v-3,20,-28,29,-35,7v-5,-83,49,-150,60,-224v4,-30,-20,-12,-33,-9v-2,-23,40,-39,44,-9r4,33v25,-30,62,-65,103,-75v26,-6,18,30,10,46v-18,35,-41,74,-83,85v38,36,41,117,99,134v18,0,35,-7,42,-19xm59,-148v-21,33,-37,87,-41,136v2,7,4,10,7,8v22,-32,31,-92,34,-144xm196,-265v-22,-15,-50,20,-68,33v-23,17,-54,33,-51,70v60,10,95,-43,117,-86v3,-7,4,-13,2,-17","w":246},"S":{"d":"284,-334v19,-32,87,-30,74,17v-14,50,-61,87,-86,129v14,102,-14,225,-125,188v-20,-7,-42,-22,-66,-44r-71,34v-3,-2,-7,-7,-6,-14v19,-12,57,-17,74,-34v-20,-64,12,-103,65,-114v-4,3,1,7,0,10v-41,16,-79,42,-54,99r120,-86v22,-16,22,-16,48,-38v7,-52,-2,-116,27,-147xm96,-50v34,37,95,65,134,24v28,-30,39,-89,28,-145xm342,-342v-67,-17,-69,71,-71,135v31,-35,62,-71,78,-120v0,-6,-3,-12,-7,-15","w":312},"T":{"d":"279,-355v38,22,-18,54,-11,96v-14,108,-40,210,-122,247v-61,28,-135,-9,-141,-71v3,-30,16,-64,51,-55v4,1,6,4,6,8v-28,1,-46,17,-46,45v0,60,86,92,137,57v70,-47,100,-144,104,-253v-34,35,-86,42,-158,42v-16,0,-29,-1,-42,3r0,-48v12,-6,11,8,11,19v0,4,-1,8,-1,12v78,11,159,5,193,-46v4,-21,5,-45,19,-56xm282,-336v-1,6,-3,10,-3,19v4,-5,4,-11,3,-19","w":267},"U":{"d":"137,-27v-34,48,-99,12,-85,-54v10,-51,19,-97,22,-152v-13,9,-32,8,-54,8v-5,-1,-14,-3,-13,-11v5,-4,10,-7,19,-8v5,2,-5,11,11,8v23,1,32,-16,55,-16v-6,65,-22,119,-29,183v-6,48,50,74,70,28v30,-42,40,-98,66,-144r19,-73v0,-2,3,-5,6,-4v16,38,-16,91,-14,140v2,52,12,101,67,100v18,4,22,-14,33,-8v-1,16,-17,20,-35,19v-73,-1,-79,-75,-76,-148v-21,44,-35,94,-62,132","w":296},"V":{"d":"199,-325v18,3,2,38,4,55r-53,216v-8,25,-11,42,-28,54v-5,-4,-9,-12,-11,-18v-29,-75,-48,-160,-71,-241v-13,0,-23,6,-37,5v6,-16,32,-17,47,-23v23,79,40,185,76,251v36,-81,62,-179,69,-286v-1,-5,0,-11,4,-13","w":200},"W":{"d":"266,-3v-75,0,-65,-107,-81,-176v-3,-3,-5,1,-6,5v-18,51,-23,112,-52,152v-68,-25,-30,-153,-39,-251v-31,3,-44,22,-74,26v-4,1,-9,-2,-9,-6v0,-8,14,-6,22,-8v22,-6,44,-22,67,-27v6,-1,7,4,8,9v-6,66,-12,135,0,202v2,12,10,50,25,36r55,-170v4,-7,11,3,12,8v16,69,2,166,71,185v48,-25,55,-95,67,-152v15,-68,-15,-144,-81,-130v-6,-10,10,-17,21,-15v118,22,63,237,17,300v-6,9,-15,12,-23,12","w":350},"X":{"d":"149,-126v-46,-32,-61,-82,-84,-137r-52,22v-3,-21,37,-29,61,-33v22,50,36,110,82,137v24,-56,36,-124,71,-169v3,3,8,5,8,10r-65,167v42,35,63,97,126,111v13,3,36,-16,38,1v-66,32,-98,-21,-131,-56v-11,-12,-25,-26,-41,-41r-87,167v-9,11,-15,25,-28,17v38,-60,74,-127,102,-196","w":319},"Z":{"d":"109,-44v86,34,226,126,323,49r2,5v-21,26,-45,42,-85,42v-111,0,-172,-74,-280,-85v-28,-3,-44,25,-64,15v17,-16,34,-25,59,-33v60,-49,128,-89,178,-148r0,-4v-36,6,-82,21,-115,0v-4,5,-7,9,-14,11r0,-42v12,-1,8,10,14,13v33,23,120,21,138,-13v10,-12,17,-31,38,-32v14,-1,9,12,1,21v-66,77,-150,136,-221,197v7,-1,15,0,26,4xm290,-244v2,1,10,-8,6,-7v-3,1,-7,5,-6,7","w":282},"[":{"d":"138,-22v-49,-4,-69,14,-107,18v-10,-66,18,-182,-22,-236r9,-8v56,6,115,28,174,8v-2,34,-48,27,-83,22r-74,-11v6,65,10,132,6,206v52,-16,128,-9,195,-10v0,9,1,18,-7,18v-31,1,-61,-5,-91,-7","w":241},"\\":{"d":"38,-121v-6,-21,-45,-37,-25,-53v42,47,73,105,117,151v4,8,-3,29,-10,19","w":134},"]":{"d":"159,-30v3,9,10,30,-4,30v-42,0,-93,2,-127,-9v-5,-4,-7,-10,-7,-18v28,14,78,8,119,9v6,0,5,-9,4,-15r-22,-170v2,-5,0,-11,-4,-15r-107,-15v-3,-3,-10,-8,-4,-11v41,3,79,17,126,11","w":171},"^":{"d":"74,-270v8,37,21,75,35,106v-6,15,-17,9,-19,-7v-9,-21,-14,-47,-26,-65v-25,15,-24,63,-53,74v-3,0,-5,-1,-6,-4v20,-33,36,-72,59,-102v2,-2,6,-2,10,-2","w":116},"_":{"d":"8,-4v17,-20,103,-5,155,-11v-2,3,0,10,-4,11r-151,0","w":175},"a":{"d":"72,-36v-8,17,-23,37,-48,37v-14,-3,-24,-13,-24,-28v0,-47,48,-91,98,-72v-16,33,-22,101,34,95v24,-2,25,-20,44,-28v-3,27,-21,38,-51,37v-31,-1,-50,-11,-53,-41xm66,-91v-32,4,-53,34,-53,69v0,18,22,13,32,3v16,-15,31,-38,34,-64v-3,-5,-7,-8,-13,-8","w":156},"Y":{"d":"156,-75v60,-13,41,-108,59,-164r8,3v-7,145,-12,298,-80,380v-21,26,-49,15,-72,-8v-18,-18,-55,-56,-57,-100v12,-6,15,18,23,33v19,37,34,61,66,73v44,2,55,-45,69,-81v18,-48,26,-108,28,-170v-7,31,-29,64,-60,44v-32,-21,-37,-77,-32,-136v-16,5,-29,22,-47,23v-3,-15,33,-33,54,-35v16,34,-13,124,41,138","w":233},"b":{"d":"22,-18v34,3,42,-40,39,-69v20,2,36,0,56,0v-1,21,-48,2,-48,33v0,33,-49,77,-65,29v-2,-76,8,-163,34,-216v18,-23,56,-3,50,27v-10,51,-42,90,-69,123v-5,27,-6,43,-4,65v1,5,4,7,7,8xm21,-115v26,-27,60,-65,54,-116v-42,-18,-49,67,-54,116","w":105},"c":{"d":"29,-67v-15,17,-26,56,12,53v34,-3,59,-21,92,-21v2,1,3,4,1,8v-42,17,-70,31,-113,23v-44,-27,3,-104,49,-96v8,1,34,19,17,29v-10,-28,-49,-15,-58,4","w":130},"d":{"d":"22,2v-20,1,-20,-16,-21,-33v14,-47,33,-76,92,-74v9,-33,13,-68,30,-93v14,-10,18,10,18,26v0,49,-40,71,-33,124v1,15,6,29,22,29v17,0,25,-13,44,-12v-7,13,-27,23,-45,23v-26,0,-28,-20,-36,-37v-19,19,-35,46,-71,47xm72,-90v-35,3,-58,33,-56,69v0,7,4,12,10,13v29,-8,56,-34,64,-63v0,-14,-5,-20,-18,-19xm130,-182v-13,19,-24,52,-22,81v11,-20,24,-47,22,-81","w":162},"e":{"d":"46,-11v46,0,65,-26,85,-52v10,38,-70,92,-111,56v-37,-33,-11,-121,39,-119v6,0,11,5,11,11v-2,40,-40,55,-56,82v2,15,15,22,32,22xm60,-111v-28,3,-48,29,-45,60v18,-13,41,-32,45,-60","w":127},"f":{"d":"9,150v-40,-20,-24,-114,-7,-155r56,-137v38,3,8,61,-2,80v-8,15,-20,33,-31,42v21,40,93,9,111,-15v1,-1,3,-1,5,-1v-10,35,-58,40,-93,50v-1,15,7,26,7,40v0,39,-12,85,-46,96xm17,6v-18,17,-18,58,-18,94v0,14,1,33,13,35v30,-21,51,-113,5,-129xm36,-53v12,-18,27,-36,26,-67v-12,19,-19,43,-26,67","w":126},"g":{"d":"70,128v-1,37,-61,45,-81,17v-5,-65,45,-91,82,-122v5,-12,3,-25,3,-41v-23,21,-81,30,-73,-21v5,-34,33,-57,71,-57v39,0,10,58,17,101v29,-12,45,-28,77,-37v3,1,4,3,4,5v-24,17,-64,29,-85,50xm71,38v-29,21,-71,47,-71,92v0,16,17,21,33,22v38,-11,35,-68,38,-114xm78,-62v1,-39,-41,-20,-52,-2v-8,11,-16,27,-11,45v0,8,7,9,14,9v29,-2,47,-23,49,-52","w":154},"h":{"d":"164,-25v-27,33,-98,28,-87,-31v-2,-10,7,-31,-9,-29v-38,6,-37,58,-58,82v-3,4,-6,5,-10,3v6,-76,26,-151,45,-213v3,-9,15,-18,24,-15v28,55,-19,107,-40,145v-2,5,-3,11,-3,17v12,-17,25,-33,56,-30v18,12,-3,66,21,83v23,1,41,-20,61,-17v2,1,2,2,0,5xm37,-118v21,-16,29,-60,27,-97v-1,-5,-2,-7,-4,-5v-9,22,-23,71,-23,102","w":157},"i":{"d":"24,5v-36,-10,-24,-98,-4,-119v5,0,9,3,7,9v-12,30,-32,100,16,103v23,-8,34,-15,51,-13v-11,13,-46,27,-70,20xm46,-169v3,17,-14,20,-16,7v2,-5,7,-8,16,-7","w":80},"j":{"d":"-34,172v-57,-2,-62,-91,-27,-123v22,-20,50,-36,69,-58v1,-24,-4,-62,10,-71v13,10,2,44,5,64v16,-13,28,-34,53,-38v-1,31,-66,34,-57,86v-6,56,-1,130,-53,140xm8,6v-35,21,-85,45,-85,96v0,28,14,56,40,59v51,-14,42,-90,45,-155xm33,-166v4,18,-14,20,-16,7v2,-5,7,-8,16,-7","w":51},"k":{"d":"154,-7v-45,36,-75,-38,-127,-29v-9,12,-4,38,-26,38r23,-120r26,-111v16,-13,25,-8,25,12v0,60,-30,117,-51,162v27,-23,44,-59,92,-62v36,24,-26,59,-48,73v16,19,39,38,75,33v6,1,10,-11,13,-3v0,3,0,5,-2,7xm42,-58v35,10,64,-17,72,-47v-34,3,-52,29,-72,47xm27,-92v17,-35,40,-70,35,-121v-1,-1,-3,-1,-5,0","w":146},"l":{"d":"55,6v-101,-17,-27,-165,-1,-214v9,-16,20,-10,20,7v0,58,-29,103,-56,137v-8,30,8,60,39,59v19,-1,36,-6,41,-22r4,0v-2,23,-24,31,-47,33xm64,-193v-20,30,-33,67,-44,107v24,-22,39,-65,44,-107","w":91},"m":{"d":"286,-26v-16,36,-120,41,-111,-19v-2,-27,13,-42,11,-70v-43,20,-72,67,-92,110v-13,10,-15,1,-11,-13r24,-81v-46,-4,-64,89,-108,98v10,-43,33,-84,45,-127v23,4,-2,44,-5,58v24,-16,43,-43,72,-52v17,13,-2,44,-2,63v26,-24,46,-57,80,-72v5,-1,9,1,12,4v-4,42,-41,116,26,116v22,0,42,-8,59,-15","w":275},"n":{"d":"113,-1v-39,5,-20,-53,-23,-94v-36,19,-54,63,-84,88v-2,0,-3,1,-6,1v6,-36,18,-66,24,-102v3,-7,8,-11,11,-2v1,24,-6,41,-8,63v25,-22,35,-59,76,-64v11,23,-5,52,-3,80v2,34,42,14,53,-1v9,-11,19,-24,29,-32v-3,37,-36,59,-69,63","w":168},"o":{"d":"46,-5v-22,11,-50,1,-45,-30v6,-33,23,-73,59,-67v2,1,4,2,5,6v-28,11,-56,30,-52,70v4,26,45,11,52,-3v-12,-36,7,-112,45,-81v3,33,-8,50,-19,70v33,1,54,-13,75,-22r3,3v-21,17,-55,31,-88,33xm74,-46v18,2,28,-35,25,-58v-1,-2,-2,-3,-4,-3v-14,11,-26,34,-21,61","w":150},"p":{"d":"26,76v-8,26,-11,82,-43,65v-19,-58,10,-111,30,-150v3,-27,-8,-62,8,-89v13,-2,10,23,7,34v14,-25,40,-45,68,-52v46,19,2,97,-27,107v-1,2,-1,3,3,3v31,-10,67,-21,83,-46v1,0,2,2,2,5v-15,43,-72,49,-121,64v-8,15,-4,41,-10,59xm22,1v-22,28,-51,88,-26,130v18,-35,26,-77,26,-130xm100,-96v-39,-12,-71,45,-64,95v33,-16,64,-50,64,-95","w":145},"q":{"d":"62,138v-34,-15,-8,-75,-13,-118v-13,-5,-32,-22,-15,-37v-21,7,-33,-10,-35,-29v10,-36,46,-52,87,-56v8,0,12,6,11,15v-12,21,-21,57,-29,81v8,2,17,4,28,3v23,-16,43,-39,68,-51v-12,27,-43,46,-65,64v11,49,7,118,-37,128xm63,124v35,-7,29,-76,23,-113r-21,-2r-10,95v0,11,2,17,8,20xm57,-1v-1,-8,-13,-6,-12,1v0,3,3,5,8,5v2,0,5,-3,4,-6xm43,-18v12,2,21,0,21,-14xm75,-84v-28,9,-45,31,-63,50v27,19,67,-12,63,-50xm34,-73v-10,4,-21,10,-22,23","w":152},"r":{"d":"104,-43v-10,42,32,21,54,20v3,0,4,2,4,5v-19,11,-78,26,-70,-14v-1,-18,7,-33,7,-50r-48,8v-10,31,-16,62,-47,69v-7,-1,-7,-6,-2,-12v27,-3,23,-37,34,-57v-8,-3,-18,-6,-18,-18v0,-19,14,-31,32,-31v19,0,17,25,5,38r57,-13xm40,-111v-7,3,-12,25,3,26v8,-7,11,-17,5,-25v-2,-2,-5,-3,-8,-1"},"s":{"d":"95,4v-29,0,-40,-17,-62,-25v-11,7,-21,11,-34,9v-6,-9,5,-13,16,-17v-2,-5,-11,-12,-3,-15v37,9,59,-34,81,-54v1,-10,20,-25,22,-9v-11,22,-6,62,-7,95v46,2,48,-25,74,-43v-6,40,-45,59,-87,59xm98,-13v0,-21,-1,-41,-5,-60v-19,10,-31,28,-44,40v7,14,28,19,49,20","w":172},"t":{"d":"51,3v-46,0,-48,-34,-44,-86v-8,1,-23,9,-27,-1v-1,-18,28,-2,33,-20v8,-25,10,-59,26,-77v6,1,4,5,4,11r-19,75v17,7,33,-6,50,-7v1,23,-29,23,-49,19v-14,27,-11,81,27,79v31,-2,30,-23,62,-19v-11,17,-37,26,-63,26","w":98},"u":{"d":"24,-8v44,0,51,-57,66,-93v3,0,6,2,6,5v-7,42,-15,84,27,85v16,-8,27,-12,33,-13v6,-1,7,0,6,2v-21,27,-95,24,-81,-30v-12,27,-21,56,-60,56v-25,0,-23,-29,-13,-53v5,-13,13,-31,25,-53v10,31,-20,54,-22,85v0,10,4,9,13,9"},"v":{"d":"66,-87v6,-15,28,3,41,5v0,10,-22,0,-31,1v-13,27,-22,58,-37,82v-4,0,-10,2,-13,0r-18,-110v0,-3,2,-10,7,-8r18,100v19,-18,23,-44,33,-70","w":100},"w":{"d":"89,-18v23,-8,7,-57,25,-71v0,31,31,28,48,18v-5,15,-26,26,-45,16v-4,21,-8,48,-29,52v-15,-4,-18,-36,-23,-48v-10,19,-23,44,-43,50v-25,-20,-16,-70,-15,-120v24,7,-3,73,15,100v27,-2,38,-46,43,-75r10,0v5,25,3,59,14,78","w":150},"x":{"d":"49,-42r-34,-79v27,-13,22,50,43,63v14,-18,20,-44,41,-56v2,0,3,2,4,4r-37,70v15,12,48,25,63,7v2,-1,4,-3,7,-3v-5,39,-57,16,-78,7v-15,17,-22,47,-37,62v-4,4,-9,5,-14,2","w":118},"y":{"d":"40,167v-14,9,-51,9,-48,-15v7,-60,39,-108,71,-143v4,-11,3,-23,4,-37v-12,18,-56,54,-62,5v-2,-17,0,-44,7,-78v7,-5,12,-2,11,9v-2,26,-9,47,-8,74v2,16,27,8,34,-1v15,-18,24,-49,29,-76v28,9,-8,60,0,93r54,-37v-5,23,-33,38,-47,53v-25,42,-2,126,-45,153xm63,31v-34,19,-51,69,-59,113v-3,18,21,20,31,10v24,-25,23,-79,28,-123","w":123},"z":{"d":"210,-37v3,3,4,5,0,7v-29,11,-55,23,-74,45v-7,46,-26,93,-65,108v-7,1,-13,-2,-20,-8v11,-45,49,-67,70,-102v7,-34,-20,-44,-40,-22v-11,7,-31,-1,-20,-13v19,-8,42,-10,42,-40v0,-11,-4,-16,-13,-16v-41,0,-57,50,-80,75r-8,-3v27,-29,37,-79,93,-79v22,-1,21,28,19,48v12,10,14,23,22,37v20,-14,44,-34,74,-37xm65,116v30,2,54,-50,52,-83v-19,21,-49,46,-52,83xm84,-18v-3,1,-11,1,-9,4v5,0,5,-2,9,-4","w":193},"{":{"d":"43,44v-51,-6,-37,-94,-10,-114v10,-13,24,-24,25,-45v2,-22,-28,-14,-38,-23v2,-18,30,-16,30,-37v0,-33,-37,-40,-37,-78v0,-37,49,-58,79,-38v2,2,3,5,3,8v-25,-7,-64,-10,-64,30v0,36,36,40,38,72v1,13,-9,25,-15,33v10,8,23,14,22,32v-3,43,-45,56,-49,103v-4,52,72,54,93,24v-2,17,-17,24,-26,33r-51,0","w":99},"|":{"d":"28,-288r-4,280v-4,3,-10,5,-16,5r5,-285v3,-3,12,-6,15,0","w":36},"}":{"d":"94,-247v4,-52,-61,-53,-85,-26r-5,0v5,-19,29,-31,49,-33v38,-3,55,20,56,56v2,43,-47,48,-43,85r27,0v-7,20,-31,38,-3,58v22,15,43,31,41,70v-2,47,-30,85,-74,89v-28,2,-39,-22,-37,-52v16,10,14,37,39,37v38,0,54,-40,54,-79v0,-47,-73,-50,-52,-106v-3,-8,-17,-7,-15,-18v5,-34,45,-42,48,-81","w":140},"~":{"d":"94,-199v-27,-3,-55,-36,-74,-5r-4,0v7,-52,56,-7,88,-8v12,-1,18,-6,18,-21v0,-15,-1,-20,-14,-21v-1,-7,5,-6,10,-7v12,0,16,14,16,26v1,26,-14,38,-40,36","w":147},",":{"d":"38,-34v14,-11,21,7,20,24v-1,19,-8,35,-22,42v-9,-9,8,-23,9,-35v1,-12,-9,-20,-7,-31","w":63},"!":{"d":"40,-16v4,12,-9,23,-13,11v0,-5,7,-11,13,-11xm27,-73v-9,7,-11,-1,-12,-13r-4,-126v26,8,13,96,16,139","w":44},"\"":{"d":"17,-201v17,3,18,36,8,48v-8,-7,-21,-42,-8,-48xm53,-207v19,1,17,38,10,52v-4,-15,-32,-42,-10,-52","w":77},"#":{"d":"166,-118v-11,13,-43,14,-52,27r0,55r-7,0r-8,-44v-14,-1,-31,8,-40,15r0,37v-9,4,-10,0,-10,-12v0,-13,-3,-22,-21,-18v-9,-9,16,-15,16,-15r0,-29v-10,4,-19,10,-31,12v0,-19,28,-15,31,-31r-2,-46v20,-1,12,23,17,39v13,-4,37,-6,37,-22v0,-10,-9,-25,-2,-33v13,-3,11,22,17,29v11,1,21,-5,30,-5v-6,19,-39,5,-31,43v6,27,45,-13,56,-2xm59,-80v27,-2,49,-22,36,-52v-15,2,-29,12,-36,22r0,30","w":169},"\u20ac":{"d":"36,-144v-18,5,-45,-9,-23,-15r26,0v12,-56,33,-137,101,-112v10,4,22,14,34,29v0,3,-4,5,-8,4v-17,-25,-52,-39,-74,-14v-20,22,-32,58,-39,94v23,3,54,-1,68,11v-17,8,-48,1,-71,3v-2,12,-2,22,-3,34v27,2,61,-5,82,4v-18,9,-56,9,-83,10v4,38,17,81,56,81v41,0,68,-12,75,-46v6,0,4,9,4,15v-10,32,-38,46,-79,46v-48,0,-67,-44,-70,-95v-13,1,-38,1,-24,-15r25,0v0,-11,1,-22,3,-34","w":191},"\u02c7":{"d":"2,-237v30,-14,30,37,64,29v14,-3,22,-16,28,-32v2,-4,18,-1,14,3v-13,39,-49,57,-80,29v-9,-8,-18,-18,-26,-29","w":116},"\ufb01":{"d":"9,150v-40,-20,-24,-114,-7,-155r56,-137v38,3,8,61,-2,80v-8,15,-20,33,-31,42v21,40,93,9,111,-15v1,-1,3,-1,5,-1v-10,35,-58,40,-93,50v-1,15,7,26,7,40v0,39,-12,85,-46,96xm17,6v-18,17,-18,58,-18,94v0,14,1,33,13,35v30,-21,51,-113,5,-129xm36,-53v12,-18,27,-36,26,-67v-12,19,-19,43,-26,67xm151,5v-36,-10,-24,-98,-4,-119v5,0,9,3,7,9v-12,30,-32,100,16,103v23,-8,34,-15,51,-13v-11,13,-46,27,-70,20xm173,-169v3,17,-14,20,-16,7v2,-5,7,-8,16,-7","w":207},"\ufb02":{"d":"9,150v-40,-20,-24,-114,-7,-155r56,-137v38,3,8,61,-2,80v-8,15,-20,33,-31,42v21,40,93,9,111,-15v1,-1,3,-1,5,-1v-10,35,-58,40,-93,50v-1,15,7,26,7,40v0,39,-12,85,-46,96xm17,6v-18,17,-18,58,-18,94v0,14,1,33,13,35v30,-21,51,-113,5,-129xm36,-53v12,-18,27,-36,26,-67v-12,19,-19,43,-26,67xm181,18v-101,-17,-27,-165,-1,-214v9,-16,20,-10,20,7v0,58,-29,103,-56,137v-8,30,8,60,39,59v19,-1,36,-6,41,-22r4,0v-2,23,-24,31,-47,33xm190,-181v-20,30,-33,67,-44,107v24,-22,39,-65,44,-107","w":217},"\u0141":{"d":"394,175v-81,-49,-86,-177,-157,-236v-46,21,-80,58,-149,56v-39,-2,-76,-13,-76,-53v0,-55,66,-66,118,-66v47,0,83,23,115,41v13,-18,29,-41,37,-60v-58,-1,-107,-22,-136,-54v-12,-8,-10,-46,3,-25v24,41,82,77,143,61v38,-34,68,-78,112,-105v17,-10,51,-9,51,14v-4,85,-95,87,-156,112v-16,22,-27,42,-41,65v51,66,67,176,132,228v11,9,23,12,38,12v70,1,134,-2,130,-75v-2,-30,-19,-50,-42,-60v36,-5,53,26,53,61v2,82,-65,89,-145,89v-11,0,-21,0,-30,-5xm124,-109v-47,-1,-94,9,-98,52v13,69,133,35,166,8v11,-9,26,-12,34,-23v-18,-25,-62,-36,-102,-37xm436,-223v8,-13,12,-40,-11,-37v-9,1,-20,6,-26,11r-81,85v54,-1,95,-25,118,-59xm325,-120v0,6,-1,7,-8,7r-86,2v-9,-7,-2,-18,11,-15r77,-1v4,-1,7,3,6,7","w":374},"\u0142":{"d":"55,6v-101,-17,-27,-165,-1,-214v9,-16,20,-10,20,7v0,58,-29,103,-56,137v-8,30,8,60,39,59v19,-1,36,-6,41,-22r4,0v-2,23,-24,31,-47,33xm64,-193v-20,30,-33,67,-44,107v24,-22,39,-65,44,-107xm118,-96v0,6,-1,7,-8,7r-86,2v-9,-7,-2,-18,11,-15r77,-1v4,-1,7,3,6,7","w":91},"\u017d":{"d":"109,-44v86,34,226,126,323,49r2,5v-21,26,-45,42,-85,42v-111,0,-172,-74,-280,-85v-28,-3,-44,25,-64,15v17,-16,34,-25,59,-33v60,-49,128,-89,178,-148r0,-4v-36,6,-82,21,-115,0v-4,5,-7,9,-14,11r0,-42v12,-1,8,10,14,13v33,23,120,21,138,-13v10,-12,17,-31,38,-32v14,-1,9,12,1,21v-66,77,-150,136,-221,197v7,-1,15,0,26,4xm290,-244v2,1,10,-8,6,-7v-3,1,-7,5,-6,7xm170,-302v30,-14,30,37,64,29v14,-3,22,-16,28,-32v2,-4,18,-1,14,3v-13,39,-49,57,-80,29v-9,-8,-18,-18,-26,-29","w":282},"\u017e":{"d":"210,-37v3,3,4,5,0,7v-29,11,-55,23,-74,45v-7,46,-26,93,-65,108v-7,1,-13,-2,-20,-8v11,-45,49,-67,70,-102v7,-34,-20,-44,-40,-22v-11,7,-31,-1,-20,-13v19,-8,42,-10,42,-40v0,-11,-4,-16,-13,-16v-41,0,-57,50,-80,75r-8,-3v27,-29,37,-79,93,-79v22,-1,21,28,19,48v12,10,14,23,22,37v20,-14,44,-34,74,-37xm65,116v30,2,54,-50,52,-83v-19,21,-49,46,-52,83xm84,-18v-3,1,-11,1,-9,4v5,0,5,-2,9,-4xm20,-157v30,-14,30,37,64,29v14,-3,22,-16,28,-32v2,-4,18,-1,14,3v-13,39,-49,57,-80,29v-9,-8,-18,-18,-26,-29","w":193},"\u02da":{"d":"81,-242v0,34,-49,43,-49,6v0,-16,10,-28,26,-27v12,1,23,6,23,21xm76,-246v-7,-20,-40,-11,-40,10v0,23,38,25,40,3v1,-5,1,-10,0,-13","w":299},"\u02c6":{"d":"88,-179v-13,-11,-14,-39,-26,-51v-18,10,-19,40,-40,47v0,-20,29,-56,48,-68v1,28,18,45,25,67v-1,2,-4,5,-7,5","w":114},"`":{"d":"16,-237v16,7,25,29,33,46v-16,4,-41,-29,-33,-46","w":64},"\u00b4":{"d":"53,-240v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":64},"\u2026":{"d":"42,-15v-4,16,-21,9,-20,-4v0,-6,11,-12,16,-3v3,3,4,5,4,7xm90,-15v-4,16,-20,8,-20,-4v1,-6,11,-12,16,-3v3,3,4,5,4,7xm131,-6v-12,2,-18,-18,-4,-21v9,0,15,20,4,21","w":144},"\u0160":{"d":"284,-334v19,-32,87,-30,74,17v-14,50,-61,87,-86,129v14,102,-14,225,-125,188v-20,-7,-42,-22,-66,-44r-71,34v-3,-2,-7,-7,-6,-14v19,-12,57,-17,74,-34v-20,-64,12,-103,65,-114v-4,3,1,7,0,10v-41,16,-79,42,-54,99r120,-86v22,-16,22,-16,48,-38v7,-52,-2,-116,27,-147xm96,-50v34,37,95,65,134,24v28,-30,39,-89,28,-145xm342,-342v-67,-17,-69,71,-71,135v31,-35,62,-71,78,-120v0,-6,-3,-12,-7,-15xm255,-416v30,-14,30,37,64,29v14,-3,22,-16,28,-32v2,-4,18,-1,14,3v-13,39,-49,57,-80,29v-9,-8,-18,-18,-26,-29","w":312},"\u02dc":{"d":"94,-199v-27,-3,-55,-36,-74,-5r-4,0v7,-52,56,-7,88,-8v12,-1,18,-6,18,-21v0,-15,-1,-20,-14,-21v-1,-7,5,-6,10,-7v12,0,16,14,16,26v1,26,-14,38,-40,36","w":147},"\u2019":{"d":"49,-175v-5,12,-20,39,-30,29v7,-16,19,-32,17,-54v8,1,17,15,13,25","w":53},"\u2018":{"d":"31,-190v-2,15,-10,45,-22,37v5,-19,11,-37,3,-57v10,-1,20,10,19,20","w":36},"\u0161":{"d":"95,4v-29,0,-40,-17,-62,-25v-11,7,-21,11,-34,9v-6,-9,5,-13,16,-17v-2,-5,-11,-12,-3,-15v37,9,59,-34,81,-54v1,-10,20,-25,22,-9v-11,22,-6,62,-7,95v46,2,48,-25,74,-43v-6,40,-45,59,-87,59xm98,-13v0,-21,-1,-41,-5,-60v-19,10,-31,28,-44,40v7,14,28,19,49,20xm32,-174v30,-14,30,37,64,29v14,-3,22,-16,28,-32v2,-4,18,-1,14,3v-13,39,-49,57,-80,29v-9,-8,-18,-18,-26,-29","w":172},"\u201c":{"d":"50,-153v-10,-5,-20,-41,-9,-48v17,4,16,34,9,48xm87,-155v-4,-14,-32,-43,-10,-52v20,-1,17,38,10,52","w":101},"\u201d":{"d":"50,-153v-10,-5,-20,-41,-9,-48v17,4,16,34,9,48xm87,-155v-4,-14,-32,-43,-10,-52v20,-1,17,38,10,52","w":101},"\u00a8":{"d":"42,-223v-4,16,-20,8,-20,-4v0,-4,11,-12,16,-4v3,3,4,6,4,8xm90,-223v-4,17,-19,7,-20,-4v1,-4,11,-12,16,-4v3,3,4,6,4,8","w":118},"\u00b8":{"d":"63,99v-18,2,-23,-9,-24,-22v-3,-11,13,-25,18,-12v-12,6,-14,25,4,25v24,0,48,-10,48,-33v0,-34,-36,-33,-64,-26v-1,-10,-7,-24,-4,-35v2,-8,7,-4,10,3v5,3,-4,22,4,21v33,-6,66,4,64,36v-2,28,-27,40,-56,43","w":151},"\u0178":{"d":"156,-75v60,-13,41,-108,59,-164r8,3v-7,145,-12,298,-80,380v-21,26,-49,15,-72,-8v-18,-18,-55,-56,-57,-100v12,-6,15,18,23,33v19,37,34,61,66,73v44,2,55,-45,69,-81v18,-48,26,-108,28,-170v-7,31,-29,64,-60,44v-32,-21,-37,-77,-32,-136v-16,5,-29,22,-47,23v-3,-15,33,-33,54,-35v16,34,-13,124,41,138xm139,-262v-4,16,-20,8,-20,-4v0,-4,11,-12,16,-4v3,3,4,6,4,8xm187,-262v-4,17,-19,7,-20,-4v1,-4,11,-12,16,-4v3,3,4,6,4,8","w":233},"\u00bf":{"d":"111,-227v9,-0,2,12,0,15v-6,4,-9,-1,-7,-8xm83,-123v5,-16,4,-45,19,-51v7,18,-11,42,-12,60v-41,14,-70,59,-49,104v30,22,65,-15,65,-49v-0,-6,3,-6,5,0v7,36,-20,68,-62,69v-20,-5,-28,-21,-27,-44v4,-44,29,-72,61,-89","w":145},"\u00c0":{"d":"221,-301r10,172v16,-3,24,-13,38,-11v4,13,-22,22,-35,26v-6,50,21,111,10,153v-1,0,-2,0,-4,1v-13,-44,-9,-100,-21,-145v-30,-1,-56,-16,-88,-16v-39,37,-44,113,-124,110v-5,-3,-6,-8,0,-11v63,-1,84,-66,113,-107v-20,-13,-38,-31,-52,-51v-1,-9,8,-8,15,-8v27,0,43,16,70,15v26,-35,35,-102,68,-128xm142,-132v17,5,39,4,53,10v-9,-12,-22,-25,-39,-32v-3,5,-11,14,-14,22xm217,-125r-6,-142r-45,101xm146,-162v-19,-4,-38,-16,-58,-13v2,19,46,53,54,21v1,-2,2,-5,4,-8xm197,-367v16,7,25,29,33,46v-16,4,-41,-29,-33,-46","w":263},"\u00c1":{"d":"221,-301r10,172v16,-3,24,-13,38,-11v4,13,-22,22,-35,26v-6,50,21,111,10,153v-1,0,-2,0,-4,1v-13,-44,-9,-100,-21,-145v-30,-1,-56,-16,-88,-16v-39,37,-44,113,-124,110v-5,-3,-6,-8,0,-11v63,-1,84,-66,113,-107v-20,-13,-38,-31,-52,-51v-1,-9,8,-8,15,-8v27,0,43,16,70,15v26,-35,35,-102,68,-128xm142,-132v17,5,39,4,53,10v-9,-12,-22,-25,-39,-32v-3,5,-11,14,-14,22xm217,-125r-6,-142r-45,101xm146,-162v-19,-4,-38,-16,-58,-13v2,19,46,53,54,21v1,-2,2,-5,4,-8xm244,-374v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":263},"\u00c2":{"d":"221,-301r10,172v16,-3,24,-13,38,-11v4,13,-22,22,-35,26v-6,50,21,111,10,153v-1,0,-2,0,-4,1v-13,-44,-9,-100,-21,-145v-30,-1,-56,-16,-88,-16v-39,37,-44,113,-124,110v-5,-3,-6,-8,0,-11v63,-1,84,-66,113,-107v-20,-13,-38,-31,-52,-51v-1,-9,8,-8,15,-8v27,0,43,16,70,15v26,-35,35,-102,68,-128xm142,-132v17,5,39,4,53,10v-9,-12,-22,-25,-39,-32v-3,5,-11,14,-14,22xm217,-125r-6,-142r-45,101xm146,-162v-19,-4,-38,-16,-58,-13v2,19,46,53,54,21v1,-2,2,-5,4,-8xm249,-309v-13,-11,-14,-39,-26,-51v-18,10,-19,40,-40,47v0,-20,29,-56,48,-68v1,28,18,45,25,67v-1,2,-4,5,-7,5","w":263},"\u00c3":{"d":"221,-301r10,172v16,-3,24,-13,38,-11v4,13,-22,22,-35,26v-6,50,21,111,10,153v-1,0,-2,0,-4,1v-13,-44,-9,-100,-21,-145v-30,-1,-56,-16,-88,-16v-39,37,-44,113,-124,110v-5,-3,-6,-8,0,-11v63,-1,84,-66,113,-107v-20,-13,-38,-31,-52,-51v-1,-9,8,-8,15,-8v27,0,43,16,70,15v26,-35,35,-102,68,-128xm142,-132v17,5,39,4,53,10v-9,-12,-22,-25,-39,-32v-3,5,-11,14,-14,22xm217,-125r-6,-142r-45,101xm146,-162v-19,-4,-38,-16,-58,-13v2,19,46,53,54,21v1,-2,2,-5,4,-8xm236,-333v-27,-3,-55,-36,-74,-5r-4,0v7,-52,56,-7,88,-8v12,-1,18,-6,18,-21v0,-15,-1,-20,-14,-21v-1,-7,5,-6,10,-7v12,0,16,14,16,26v1,26,-14,38,-40,36","w":263},"\u00c4":{"d":"221,-301r10,172v16,-3,24,-13,38,-11v4,13,-22,22,-35,26v-6,50,21,111,10,153v-1,0,-2,0,-4,1v-13,-44,-9,-100,-21,-145v-30,-1,-56,-16,-88,-16v-39,37,-44,113,-124,110v-5,-3,-6,-8,0,-11v63,-1,84,-66,113,-107v-20,-13,-38,-31,-52,-51v-1,-9,8,-8,15,-8v27,0,43,16,70,15v26,-35,35,-102,68,-128xm142,-132v17,5,39,4,53,10v-9,-12,-22,-25,-39,-32v-3,5,-11,14,-14,22xm217,-125r-6,-142r-45,101xm146,-162v-19,-4,-38,-16,-58,-13v2,19,46,53,54,21v1,-2,2,-5,4,-8xm210,-346v-4,16,-20,8,-20,-4v0,-4,11,-12,16,-4v3,3,4,6,4,8xm258,-346v-4,17,-19,7,-20,-4v1,-4,11,-12,16,-4v3,3,4,6,4,8","w":263},"\u00c5":{"d":"221,-301r10,172v16,-3,24,-13,38,-11v4,13,-22,22,-35,26v-6,50,21,111,10,153v-1,0,-2,0,-4,1v-13,-44,-9,-100,-21,-145v-30,-1,-56,-16,-88,-16v-39,37,-44,113,-124,110v-5,-3,-6,-8,0,-11v63,-1,84,-66,113,-107v-20,-13,-38,-31,-52,-51v-1,-9,8,-8,15,-8v27,0,43,16,70,15v26,-35,35,-102,68,-128xm142,-132v17,5,39,4,53,10v-9,-12,-22,-25,-39,-32v-3,5,-11,14,-14,22xm217,-125r-6,-142r-45,101xm146,-162v-19,-4,-38,-16,-58,-13v2,19,46,53,54,21v1,-2,2,-5,4,-8xm240,-328v0,34,-49,43,-49,6v0,-16,10,-28,26,-27v12,1,23,6,23,21xm235,-332v-7,-20,-40,-11,-40,10v0,23,38,25,40,3v1,-5,1,-10,0,-13","w":263},"\u00c7":{"d":"164,-96v-5,48,-41,87,-88,96v-109,-15,-59,-183,-21,-242v15,-23,29,-55,62,-53v19,10,32,33,29,66v0,2,-4,5,-7,4v2,-33,-22,-79,-49,-46v-35,42,-70,103,-70,171v0,41,15,85,56,85v48,0,72,-45,85,-85v2,0,3,2,3,4xm91,97v-18,2,-23,-9,-24,-22v-3,-11,13,-25,18,-12v-12,6,-14,25,4,25v24,0,48,-10,48,-33v0,-34,-36,-33,-64,-26v-1,-10,-7,-24,-4,-35v2,-8,7,-4,10,3v5,3,-4,22,4,21v33,-6,66,4,64,36v-2,28,-27,40,-56,43","w":171},"\u00c8":{"d":"137,-19v-56,38,-152,13,-128,-65v9,-26,27,-41,41,-62v-11,-66,17,-128,72,-142v25,1,38,24,35,49v-1,4,-3,6,-8,6v-3,-15,-7,-42,-25,-44v-49,8,-75,67,-63,122v30,1,43,-19,75,-16v9,1,21,2,21,13v-2,28,-34,36,-63,36v-17,1,-21,-12,-37,-11v-36,19,-60,107,0,118v59,11,91,-25,131,-43v3,4,8,12,0,15xm146,-152v-13,-14,-46,-3,-63,2v-11,4,-8,14,1,16v26,3,51,-3,62,-18xm92,-348v16,7,25,29,33,46v-16,4,-41,-29,-33,-46","w":184},"\u00c9":{"d":"137,-19v-56,38,-152,13,-128,-65v9,-26,27,-41,41,-62v-11,-66,17,-128,72,-142v25,1,38,24,35,49v-1,4,-3,6,-8,6v-3,-15,-7,-42,-25,-44v-49,8,-75,67,-63,122v30,1,43,-19,75,-16v9,1,21,2,21,13v-2,28,-34,36,-63,36v-17,1,-21,-12,-37,-11v-36,19,-60,107,0,118v59,11,91,-25,131,-43v3,4,8,12,0,15xm146,-152v-13,-14,-46,-3,-63,2v-11,4,-8,14,1,16v26,3,51,-3,62,-18xm136,-355v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":184},"\u00ca":{"d":"137,-19v-56,38,-152,13,-128,-65v9,-26,27,-41,41,-62v-11,-66,17,-128,72,-142v25,1,38,24,35,49v-1,4,-3,6,-8,6v-3,-15,-7,-42,-25,-44v-49,8,-75,67,-63,122v30,1,43,-19,75,-16v9,1,21,2,21,13v-2,28,-34,36,-63,36v-17,1,-21,-12,-37,-11v-36,19,-60,107,0,118v59,11,91,-25,131,-43v3,4,8,12,0,15xm146,-152v-13,-14,-46,-3,-63,2v-11,4,-8,14,1,16v26,3,51,-3,62,-18xm152,-301v-13,-11,-14,-39,-26,-51v-18,10,-19,40,-40,47v0,-20,29,-56,48,-68v1,28,18,45,25,67v-1,2,-4,5,-7,5","w":184},"\u00cb":{"d":"137,-19v-56,38,-152,13,-128,-65v9,-26,27,-41,41,-62v-11,-66,17,-128,72,-142v25,1,38,24,35,49v-1,4,-3,6,-8,6v-3,-15,-7,-42,-25,-44v-49,8,-75,67,-63,122v30,1,43,-19,75,-16v9,1,21,2,21,13v-2,28,-34,36,-63,36v-17,1,-21,-12,-37,-11v-36,19,-60,107,0,118v59,11,91,-25,131,-43v3,4,8,12,0,15xm146,-152v-13,-14,-46,-3,-63,2v-11,4,-8,14,1,16v26,3,51,-3,62,-18xm108,-309v-4,16,-20,8,-20,-4v0,-4,11,-12,16,-4v3,3,4,6,4,8xm156,-309v-4,17,-19,7,-20,-4v1,-4,11,-12,16,-4v3,3,4,6,4,8","w":184},"\u00cc":{"d":"75,-8v-15,9,-58,21,-67,0v0,-15,18,-4,28,-3v110,-18,176,-108,176,-220v0,-36,-14,-57,-50,-54v-53,4,-73,120,-13,133v-28,8,-51,-21,-49,-53v3,-43,18,-91,62,-91v98,0,48,153,15,198v-27,36,-62,69,-102,90xm126,-355v16,7,25,29,33,46v-16,4,-41,-29,-33,-46","w":213},"\u00cd":{"d":"72,-11v-15,9,-58,21,-67,0v0,-15,18,-4,28,-3v110,-18,176,-108,176,-220v0,-36,-14,-57,-50,-54v-53,4,-73,120,-13,133v-28,8,-51,-21,-49,-53v3,-43,18,-91,62,-91v98,0,48,153,15,198v-27,36,-62,69,-102,90xm173,-360v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":213},"\u00ce":{"d":"72,-11v-15,9,-58,21,-67,0v0,-15,18,-4,28,-3v110,-18,176,-108,176,-220v0,-36,-14,-57,-50,-54v-53,4,-73,120,-13,133v-28,8,-51,-21,-49,-53v3,-43,18,-91,62,-91v98,0,48,153,15,198v-27,36,-62,69,-102,90xm192,-319v-13,-11,-14,-39,-26,-51v-18,10,-19,40,-40,47v0,-20,29,-56,48,-68v1,28,18,45,25,67v-1,2,-4,5,-7,5","w":213},"\u00cf":{"d":"72,-11v-15,9,-58,21,-67,0v0,-15,18,-4,28,-3v110,-18,176,-108,176,-220v0,-36,-14,-57,-50,-54v-53,4,-73,120,-13,133v-28,8,-51,-21,-49,-53v3,-43,18,-91,62,-91v98,0,48,153,15,198v-27,36,-62,69,-102,90xm136,-326v-4,16,-20,8,-20,-4v0,-4,11,-12,16,-4v3,3,4,6,4,8xm184,-326v-4,17,-19,7,-20,-4v1,-4,11,-12,16,-4v3,3,4,6,4,8","w":213},"\u00d0":{"d":"170,-316v119,0,100,215,40,276v-20,45,-106,58,-128,4v-6,-14,-25,-25,-35,-7v-12,13,-8,41,-27,45r14,-107v-11,-2,-31,6,-32,-7v-1,-15,19,-6,34,-8r16,-126r8,0r-15,125r57,-1v7,2,8,15,-3,15r-55,1r-7,56v9,-6,13,-15,26,-15v44,0,47,83,102,52v41,-23,73,-64,79,-122v-18,18,-37,30,-72,30v-55,0,-76,-43,-76,-99v0,-54,20,-112,74,-112xm202,-296v-53,-42,-97,35,-95,94v-17,91,122,121,138,33v10,-54,-12,-102,-43,-127","w":252},"\u00d1":{"d":"291,42v-133,7,-66,-176,-71,-292r-126,119v-6,58,-10,123,-65,133v-46,-8,-11,-72,4,-90v15,-17,31,-36,46,-51v1,-29,0,-61,-10,-81v-23,3,-33,24,-61,22v-1,-8,4,-11,10,-12v18,-6,35,-19,54,-25v6,1,9,6,11,11r12,77r132,-128v27,67,-17,156,-7,247v6,52,47,72,99,59v-5,8,-15,11,-28,11xm76,-116v-25,24,-57,49,-56,100v38,23,60,-52,60,-100r-4,0xm165,-276v-27,-3,-55,-36,-74,-5r-4,0v7,-52,56,-7,88,-8v12,-1,18,-6,18,-21v0,-15,-1,-20,-14,-21v-1,-7,5,-6,10,-7v12,0,16,14,16,26v1,26,-14,38,-40,36","w":246},"\u00d2":{"d":"182,-129v-19,59,-41,125,-114,125v-84,0,-60,-142,-48,-215v8,-17,11,-44,34,-45r0,6v-27,42,-31,85,-34,148v-3,61,27,117,83,85v32,-19,55,-57,65,-97v-73,6,-103,-29,-100,-99v2,-61,9,-128,68,-134v75,16,52,133,50,215r26,-12v0,15,-23,13,-30,23xm142,-129v57,4,34,-60,40,-118v5,-48,-16,-113,-64,-90v-44,43,-68,202,24,208xm99,-410v16,7,25,29,33,46v-16,4,-41,-29,-33,-46","w":198},"\u00d3":{"d":"182,-129v-19,59,-41,125,-114,125v-84,0,-60,-142,-48,-215v8,-17,11,-44,34,-45r0,6v-27,42,-31,85,-34,148v-3,61,27,117,83,85v32,-19,55,-57,65,-97v-73,6,-103,-29,-100,-99v2,-61,9,-128,68,-134v75,16,52,133,50,215r26,-12v0,15,-23,13,-30,23xm142,-129v57,4,34,-60,40,-118v5,-48,-16,-113,-64,-90v-44,43,-68,202,24,208xm119,-407v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":198},"\u00d4":{"d":"182,-129v-19,59,-41,125,-114,125v-84,0,-60,-142,-48,-215v8,-17,11,-44,34,-45r0,6v-27,42,-31,85,-34,148v-3,61,27,117,83,85v32,-19,55,-57,65,-97v-73,6,-103,-29,-100,-99v2,-61,9,-128,68,-134v75,16,52,133,50,215r26,-12v0,15,-23,13,-30,23xm142,-129v57,4,34,-60,40,-118v5,-48,-16,-113,-64,-90v-44,43,-68,202,24,208xm142,-377v-13,-11,-14,-39,-26,-51v-18,10,-19,40,-40,47v0,-20,29,-56,48,-68v1,28,18,45,25,67v-1,2,-4,5,-7,5","w":198},"\u00d5":{"d":"182,-129v-19,59,-41,125,-114,125v-84,0,-60,-142,-48,-215v8,-17,11,-44,34,-45r0,6v-27,42,-31,85,-34,148v-3,61,27,117,83,85v32,-19,55,-57,65,-97v-73,6,-103,-29,-100,-99v2,-61,9,-128,68,-134v75,16,52,133,50,215r26,-12v0,15,-23,13,-30,23xm142,-129v57,4,34,-60,40,-118v5,-48,-16,-113,-64,-90v-44,43,-68,202,24,208xm135,-365v-27,-3,-55,-36,-74,-5r-4,0v7,-52,56,-7,88,-8v12,-1,18,-6,18,-21v0,-15,-1,-20,-14,-21v-1,-7,5,-6,10,-7v12,0,16,14,16,26v1,26,-14,38,-40,36","w":198},"\u00d6":{"d":"182,-129v-19,59,-41,125,-114,125v-84,0,-60,-142,-48,-215v8,-17,11,-44,34,-45r0,6v-27,42,-31,85,-34,148v-3,61,27,117,83,85v32,-19,55,-57,65,-97v-73,6,-103,-29,-100,-99v2,-61,9,-128,68,-134v75,16,52,133,50,215r26,-12v0,15,-23,13,-30,23xm142,-129v57,4,34,-60,40,-118v5,-48,-16,-113,-64,-90v-44,43,-68,202,24,208xm108,-389v-4,16,-20,8,-20,-4v0,-4,11,-12,16,-4v3,3,4,6,4,8xm156,-389v-4,17,-19,7,-20,-4v1,-4,11,-12,16,-4v3,3,4,6,4,8","w":198},"\u00d8":{"d":"182,-129v-19,59,-42,120,-114,125v-21,1,-34,-8,-42,-21v-5,7,-5,19,-11,25v-11,-9,-3,-32,2,-43v-17,-69,-10,-168,21,-214v4,-5,10,-7,16,-7r0,6v-33,49,-41,126,-29,198r50,-108v-14,-68,-10,-181,61,-187v12,-1,19,6,26,11v7,-9,9,-23,18,-30v18,6,2,39,-5,48v28,44,12,124,11,186r26,-12v0,15,-23,13,-30,23xm33,-42v8,9,14,27,33,27v61,0,87,-57,102,-107v-43,3,-70,-6,-86,-31xm142,-129v59,0,31,-69,40,-133v-1,-20,-5,-40,-13,-54r-81,150v9,21,26,37,54,37xm157,-334v-58,-33,-75,59,-78,122v0,10,1,20,3,29","w":198},"\u00d9":{"d":"137,-27v-34,48,-99,12,-85,-54v10,-51,19,-97,22,-152v-13,9,-32,8,-54,8v-5,-1,-14,-3,-13,-11v5,-4,10,-7,19,-8v5,2,-5,11,11,8v23,1,32,-16,55,-16v-6,65,-22,119,-29,183v-6,48,50,74,70,28v30,-42,40,-98,66,-144r19,-73v0,-2,3,-5,6,-4v16,38,-16,91,-14,140v2,52,12,101,67,100v18,4,22,-14,33,-8v-1,16,-17,20,-35,19v-73,-1,-79,-75,-76,-148v-21,44,-35,94,-62,132xm139,-327v16,7,25,29,33,46v-16,4,-41,-29,-33,-46","w":296},"\u00da":{"d":"137,-27v-34,48,-99,12,-85,-54v10,-51,19,-97,22,-152v-13,9,-32,8,-54,8v-5,-1,-14,-3,-13,-11v5,-4,10,-7,19,-8v5,2,-5,11,11,8v23,1,32,-16,55,-16v-6,65,-22,119,-29,183v-6,48,50,74,70,28v30,-42,40,-98,66,-144r19,-73v0,-2,3,-5,6,-4v16,38,-16,91,-14,140v2,52,12,101,67,100v18,4,22,-14,33,-8v-1,16,-17,20,-35,19v-73,-1,-79,-75,-76,-148v-21,44,-35,94,-62,132xm176,-335v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":296},"\u00db":{"d":"137,-27v-34,48,-99,12,-85,-54v10,-51,19,-97,22,-152v-13,9,-32,8,-54,8v-5,-1,-14,-3,-13,-11v5,-4,10,-7,19,-8v5,2,-5,11,11,8v23,1,32,-16,55,-16v-6,65,-22,119,-29,183v-6,48,50,74,70,28v30,-42,40,-98,66,-144r19,-73v0,-2,3,-5,6,-4v16,38,-16,91,-14,140v2,52,12,101,67,100v18,4,22,-14,33,-8v-1,16,-17,20,-35,19v-73,-1,-79,-75,-76,-148v-21,44,-35,94,-62,132xm185,-280v-13,-11,-14,-39,-26,-51v-18,10,-19,40,-40,47v0,-20,29,-56,48,-68v1,28,18,45,25,67v-1,2,-4,5,-7,5","w":296},"\u00dc":{"d":"137,-27v-34,48,-99,12,-85,-54v10,-51,19,-97,22,-152v-13,9,-32,8,-54,8v-5,-1,-14,-3,-13,-11v5,-4,10,-7,19,-8v5,2,-5,11,11,8v23,1,32,-16,55,-16v-6,65,-22,119,-29,183v-6,48,50,74,70,28v30,-42,40,-98,66,-144r19,-73v0,-2,3,-5,6,-4v16,38,-16,91,-14,140v2,52,12,101,67,100v18,4,22,-14,33,-8v-1,16,-17,20,-35,19v-73,-1,-79,-75,-76,-148v-21,44,-35,94,-62,132xm149,-294v-4,16,-20,8,-20,-4v0,-4,11,-12,16,-4v3,3,4,6,4,8xm197,-294v-4,17,-19,7,-20,-4v1,-4,11,-12,16,-4v3,3,4,6,4,8","w":296},"\u00dd":{"d":"156,-75v60,-13,41,-108,59,-164r8,3v-7,145,-12,298,-80,380v-21,26,-49,15,-72,-8v-18,-18,-55,-56,-57,-100v12,-6,15,18,23,33v19,37,34,61,66,73v44,2,55,-45,69,-81v18,-48,26,-108,28,-170v-7,31,-29,64,-60,44v-32,-21,-37,-77,-32,-136v-16,5,-29,22,-47,23v-3,-15,33,-33,54,-35v16,34,-13,124,41,138xm179,-312v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":233},"\u00e0":{"d":"72,-36v-8,17,-23,37,-48,37v-14,-3,-24,-13,-24,-28v0,-47,48,-91,98,-72v-16,33,-22,101,34,95v24,-2,25,-20,44,-28v-3,27,-21,38,-51,37v-31,-1,-50,-11,-53,-41xm66,-91v-32,4,-53,34,-53,69v0,18,22,13,32,3v16,-15,31,-38,34,-64v-3,-5,-7,-8,-13,-8xm48,-178v16,7,25,29,33,46v-16,4,-41,-29,-33,-46","w":156},"\u00e1":{"d":"81,-172v11,16,-18,55,-37,50v8,-19,20,-42,37,-50xm72,-36v-8,17,-23,37,-48,37v-14,-3,-24,-13,-24,-28v0,-47,48,-91,98,-72v-16,33,-22,101,34,95v24,-2,25,-20,44,-28v-3,27,-21,38,-51,37v-31,-1,-50,-11,-53,-41xm66,-91v-32,4,-53,34,-53,69v0,18,22,13,32,3v16,-15,31,-38,34,-64v-3,-5,-7,-8,-13,-8","w":156},"\u00e2":{"d":"72,-36v-8,17,-23,37,-48,37v-14,-3,-24,-13,-24,-28v0,-47,48,-91,98,-72v-16,33,-22,101,34,95v24,-2,25,-20,44,-28v-3,27,-21,38,-51,37v-31,-1,-50,-11,-53,-41xm66,-91v-32,4,-53,34,-53,69v0,18,22,13,32,3v16,-15,31,-38,34,-64v-3,-5,-7,-8,-13,-8xm99,-116v-13,-11,-14,-39,-26,-51v-18,10,-19,40,-40,47v0,-20,29,-56,48,-68v1,28,18,45,25,67v-1,2,-4,5,-7,5","w":156},"\u00e3":{"d":"72,-36v-8,17,-23,37,-48,37v-14,-3,-24,-13,-24,-28v0,-47,48,-91,98,-72v-16,33,-22,101,34,95v24,-2,25,-20,44,-28v-3,27,-21,38,-51,37v-31,-1,-50,-11,-53,-41xm66,-91v-32,4,-53,34,-53,69v0,18,22,13,32,3v16,-15,31,-38,34,-64v-3,-5,-7,-8,-13,-8xm95,-120v-27,-3,-55,-36,-74,-5r-4,0v7,-52,56,-7,88,-8v12,-1,18,-6,18,-21v0,-15,-1,-20,-14,-21v-1,-7,5,-6,10,-7v12,0,16,14,16,26v1,26,-14,38,-40,36","w":156},"\u00e4":{"d":"72,-36v-8,17,-23,37,-48,37v-14,-3,-24,-13,-24,-28v0,-47,48,-91,98,-72v-16,33,-22,101,34,95v24,-2,25,-20,44,-28v-3,27,-21,38,-51,37v-31,-1,-50,-11,-53,-41xm66,-91v-32,4,-53,34,-53,69v0,18,22,13,32,3v16,-15,31,-38,34,-64v-3,-5,-7,-8,-13,-8xm56,-139v-4,16,-20,8,-20,-4v0,-4,11,-12,16,-4v3,3,4,6,4,8xm104,-139v-4,17,-19,7,-20,-4v1,-4,11,-12,16,-4v3,3,4,6,4,8","w":156},"\u00e5":{"d":"72,-36v-8,17,-23,37,-48,37v-14,-3,-24,-13,-24,-28v0,-47,48,-91,98,-72v-16,33,-22,101,34,95v24,-2,25,-20,44,-28v-3,27,-21,38,-51,37v-31,-1,-50,-11,-53,-41xm66,-91v-32,4,-53,34,-53,69v0,18,22,13,32,3v16,-15,31,-38,34,-64v-3,-5,-7,-8,-13,-8xm99,-132v0,34,-49,43,-49,6v0,-16,10,-28,26,-27v12,1,23,6,23,21xm94,-136v-7,-20,-40,-11,-40,10v0,23,38,25,40,3v1,-5,1,-10,0,-13","w":156},"\u00e7":{"d":"29,-67v-15,17,-26,56,12,53v34,-3,59,-21,92,-21v2,1,3,4,1,8v-42,17,-70,31,-113,23v-44,-27,3,-104,49,-96v8,1,34,19,17,29v-10,-28,-49,-15,-58,4xm64,99v-18,2,-23,-9,-24,-22v-3,-11,13,-25,18,-12v-12,6,-14,25,4,25v24,0,48,-10,48,-33v0,-34,-36,-33,-64,-26v-1,-10,-7,-24,-4,-35v2,-8,7,-4,10,3v5,3,-4,22,4,21v33,-6,66,4,64,36v-2,28,-27,40,-56,43","w":130},"\u00e8":{"d":"46,-11v46,0,65,-26,85,-52v10,38,-70,92,-111,56v-37,-33,-11,-121,39,-119v6,0,11,5,11,11v-2,40,-40,55,-56,82v2,15,15,22,32,22xm60,-111v-28,3,-48,29,-45,60v18,-13,41,-32,45,-60xm18,-210v16,7,25,29,33,46v-16,4,-41,-29,-33,-46","w":127},"\u00e9":{"d":"46,-11v46,0,65,-26,85,-52v10,38,-70,92,-111,56v-37,-33,-11,-121,39,-119v6,0,11,5,11,11v-2,40,-40,55,-56,82v2,15,15,22,32,22xm60,-111v-28,3,-48,29,-45,60v18,-13,41,-32,45,-60xm70,-194v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":127},"\u00ea":{"d":"46,-11v46,0,65,-26,85,-52v10,38,-70,92,-111,56v-37,-33,-11,-121,39,-119v6,0,11,5,11,11v-2,40,-40,55,-56,82v2,15,15,22,32,22xm60,-111v-28,3,-48,29,-45,60v18,-13,41,-32,45,-60xm83,-143v-13,-11,-14,-39,-26,-51v-18,10,-19,40,-40,47v0,-20,29,-56,48,-68v1,28,18,45,25,67v-1,2,-4,5,-7,5","w":127},"\u00eb":{"d":"46,-11v46,0,65,-26,85,-52v10,38,-70,92,-111,56v-37,-33,-11,-121,39,-119v6,0,11,5,11,11v-2,40,-40,55,-56,82v2,15,15,22,32,22xm60,-111v-28,3,-48,29,-45,60v18,-13,41,-32,45,-60xm38,-161v-4,16,-20,8,-20,-4v0,-4,11,-12,16,-4v3,3,4,6,4,8xm86,-161v-4,17,-19,7,-20,-4v1,-4,11,-12,16,-4v3,3,4,6,4,8","w":127},"\u00ec":{"d":"20,-114v-25,27,-34,136,26,121v18,-4,41,-11,48,-22v-17,-3,-28,5,-51,13v-48,-2,-27,-74,-16,-103v2,-6,-2,-9,-7,-9xm49,-144v-17,-6,-38,-30,-31,-48v15,7,29,30,31,48","w":80},"\u00ed":{"d":"24,5v-36,-10,-24,-98,-4,-119v5,0,9,3,7,9v-12,30,-32,100,16,103v23,-8,34,-15,51,-13v-11,13,-46,27,-70,20xm47,-205v11,17,-18,55,-37,50v8,-19,20,-41,37,-50","w":80},"\u00ee":{"d":"24,5v-36,-10,-24,-98,-4,-119v5,0,9,3,7,9v-12,30,-32,100,16,103v23,-8,34,-15,51,-13v-11,13,-46,27,-70,20xm64,-152v-12,-11,-14,-37,-25,-50v-18,10,-20,39,-40,46v-3,-17,30,-60,48,-67v2,28,16,47,25,66v0,2,-5,6,-8,5","w":80},"\u00ef":{"d":"24,5v-36,-10,-24,-98,-4,-119v5,0,9,3,7,9v-12,30,-32,100,16,103v23,-8,34,-15,51,-13v-11,13,-46,27,-70,20xm21,-163v-4,17,-19,7,-20,-4v0,-4,11,-12,16,-4v3,3,4,6,4,8xm62,-154v-11,0,-20,-18,-4,-21v10,-1,15,20,4,21","w":80},"\u00f1":{"d":"113,-1v-39,5,-20,-53,-23,-94v-36,19,-54,63,-84,88v-2,0,-3,1,-6,1v6,-36,18,-66,24,-102v3,-7,8,-11,11,-2v1,24,-6,41,-8,63v25,-22,35,-59,76,-64v11,23,-5,52,-3,80v2,34,42,14,53,-1v9,-11,19,-24,29,-32v-3,37,-36,59,-69,63xm102,-152v-27,-3,-55,-36,-74,-5r-4,0v7,-52,56,-7,88,-8v12,-1,18,-6,18,-21v0,-15,-1,-20,-14,-21v-1,-7,5,-6,10,-7v12,0,16,14,16,26v1,26,-14,38,-40,36","w":168},"\u00f2":{"d":"46,-5v-22,11,-50,1,-45,-30v6,-33,23,-73,59,-67v2,1,4,2,5,6v-28,11,-56,30,-52,70v4,26,45,11,52,-3v-12,-36,7,-112,45,-81v3,33,-8,50,-19,70v33,1,54,-13,75,-22r3,3v-21,17,-55,31,-88,33xm74,-46v18,2,28,-35,25,-58v-1,-2,-2,-3,-4,-3v-14,11,-26,34,-21,61xm59,-196v16,7,25,29,33,46v-16,4,-41,-29,-33,-46","w":150},"\u00f3":{"d":"46,-5v-22,11,-50,1,-45,-30v6,-33,23,-73,59,-67v2,1,4,2,5,6v-28,11,-56,30,-52,70v4,26,45,11,52,-3v-12,-36,7,-112,45,-81v3,33,-8,50,-19,70v33,1,54,-13,75,-22r3,3v-21,17,-55,31,-88,33xm74,-46v18,2,28,-35,25,-58v-1,-2,-2,-3,-4,-3v-14,11,-26,34,-21,61xm83,-183v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":150},"\u00f4":{"d":"46,-5v-22,11,-50,1,-45,-30v6,-33,23,-73,59,-67v2,1,4,2,5,6v-28,11,-56,30,-52,70v4,26,45,11,52,-3v-12,-36,7,-112,45,-81v3,33,-8,50,-19,70v33,1,54,-13,75,-22r3,3v-21,17,-55,31,-88,33xm74,-46v18,2,28,-35,25,-58v-1,-2,-2,-3,-4,-3v-14,11,-26,34,-21,61xm101,-141v-13,-11,-14,-39,-26,-51v-18,10,-19,40,-40,47v0,-20,29,-56,48,-68v1,28,18,45,25,67v-1,2,-4,5,-7,5","w":150},"\u00f5":{"d":"46,-5v-22,11,-50,1,-45,-30v6,-33,23,-73,59,-67v2,1,4,2,5,6v-28,11,-56,30,-52,70v4,26,45,11,52,-3v-12,-36,7,-112,45,-81v3,33,-8,50,-19,70v33,1,54,-13,75,-22r3,3v-21,17,-55,31,-88,33xm74,-46v18,2,28,-35,25,-58v-1,-2,-2,-3,-4,-3v-14,11,-26,34,-21,61xm95,-143v-27,-3,-55,-36,-74,-5r-4,0v7,-52,56,-7,88,-8v12,-1,18,-6,18,-21v0,-15,-1,-20,-14,-21v-1,-7,5,-6,10,-7v12,0,16,14,16,26v1,26,-14,38,-40,36","w":150},"\u00f6":{"d":"46,-5v-22,11,-50,1,-45,-30v6,-33,23,-73,59,-67v2,1,4,2,5,6v-28,11,-56,30,-52,70v4,26,45,11,52,-3v-12,-36,7,-112,45,-81v3,33,-8,50,-19,70v33,1,54,-13,75,-22r3,3v-21,17,-55,31,-88,33xm74,-46v18,2,28,-35,25,-58v-1,-2,-2,-3,-4,-3v-14,11,-26,34,-21,61xm63,-154v-4,16,-20,8,-20,-4v0,-4,11,-12,16,-4v3,3,4,6,4,8xm111,-154v-4,17,-19,7,-20,-4v1,-4,11,-12,16,-4v3,3,4,6,4,8","w":150},"\u00f8":{"d":"46,-5v-22,11,-50,1,-45,-30v6,-33,23,-73,59,-67v2,1,4,2,5,6v-28,11,-56,30,-52,70v4,26,45,11,52,-3v-12,-36,7,-112,45,-81v3,33,-8,50,-19,70v33,1,54,-13,75,-22r3,3v-21,17,-55,31,-88,33xm74,-46v18,2,28,-35,25,-58v-1,-2,-2,-3,-4,-3v-14,11,-26,34,-21,61xm66,-92v22,-23,40,-50,65,-71v13,-1,7,11,2,17r-75,78v-23,26,-46,56,-66,84v-16,-7,0,-20,8,-30","w":150},"\u00f9":{"d":"24,-8v44,0,51,-57,66,-93v3,0,6,2,6,5v-7,42,-15,84,27,85v16,-8,27,-12,33,-13v6,-1,7,0,6,2v-21,27,-95,24,-81,-30v-12,27,-21,56,-60,56v-25,0,-23,-29,-13,-53v5,-13,13,-31,25,-53v10,31,-20,54,-22,85v0,10,4,9,13,9xm43,-185v16,7,25,29,33,46v-16,4,-41,-29,-33,-46"},"\u00fa":{"d":"24,-8v44,0,51,-57,66,-93v3,0,6,2,6,5v-7,42,-15,84,27,85v16,-8,27,-12,33,-13v6,-1,7,0,6,2v-21,27,-95,24,-81,-30v-12,27,-21,56,-60,56v-25,0,-23,-29,-13,-53v5,-13,13,-31,25,-53v10,31,-20,54,-22,85v0,10,4,9,13,9xm94,-182v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46"},"\u00fb":{"d":"24,-8v44,0,51,-57,66,-93v3,0,6,2,6,5v-7,42,-15,84,27,85v16,-8,27,-12,33,-13v6,-1,7,0,6,2v-21,27,-95,24,-81,-30v-12,27,-21,56,-60,56v-25,0,-23,-29,-13,-53v5,-13,13,-31,25,-53v10,31,-20,54,-22,85v0,10,4,9,13,9xm101,-122v-13,-11,-14,-39,-26,-51v-18,10,-19,40,-40,47v0,-20,29,-56,48,-68v1,28,18,45,25,67v-1,2,-4,5,-7,5"},"\u00fc":{"d":"24,-8v44,0,51,-57,66,-93v3,0,6,2,6,5v-7,42,-15,84,27,85v16,-8,27,-12,33,-13v6,-1,7,0,6,2v-21,27,-95,24,-81,-30v-12,27,-21,56,-60,56v-25,0,-23,-29,-13,-53v5,-13,13,-31,25,-53v10,31,-20,54,-22,85v0,10,4,9,13,9xm54,-143v-4,16,-20,8,-20,-4v0,-4,11,-12,16,-4v3,3,4,6,4,8xm102,-143v-4,17,-19,7,-20,-4v1,-4,11,-12,16,-4v3,3,4,6,4,8"},"\u00fd":{"d":"40,167v-14,9,-51,9,-48,-15v7,-60,39,-108,71,-143v4,-11,3,-23,4,-37v-12,18,-56,54,-62,5v-2,-17,0,-44,7,-78v7,-5,12,-2,11,9v-2,26,-9,47,-8,74v2,16,27,8,34,-1v15,-18,24,-49,29,-76v28,9,-8,60,0,93r54,-37v-5,23,-33,38,-47,53v-25,42,-2,126,-45,153xm63,31v-34,19,-51,69,-59,113v-3,18,21,20,31,10v24,-25,23,-79,28,-123xm77,-178v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":123},"\u00ff":{"d":"40,167v-14,9,-51,9,-48,-15v7,-60,39,-108,71,-143v4,-11,3,-23,4,-37v-12,18,-56,54,-62,5v-2,-17,0,-44,7,-78v7,-5,12,-2,11,9v-2,26,-9,47,-8,74v2,16,27,8,34,-1v15,-18,24,-49,29,-76v28,9,-8,60,0,93r54,-37v-5,23,-33,38,-47,53v-25,42,-2,126,-45,153xm63,31v-34,19,-51,69,-59,113v-3,18,21,20,31,10v24,-25,23,-79,28,-123xm40,-142v-4,16,-20,8,-20,-4v0,-4,11,-12,16,-4v3,3,4,6,4,8xm88,-142v-4,17,-19,7,-20,-4v1,-4,11,-12,16,-4v3,3,4,6,4,8","w":123},"\u00b9":{"d":"62,-181v3,-11,16,-13,25,-18v-1,27,-19,57,-23,84v-2,2,-7,7,-7,2v-0,-27,16,-46,21,-73","w":46},"\u2122":{"d":"133,-24v-35,36,-122,21,-122,-32v0,-21,12,-43,36,-38v2,1,4,3,4,6v-17,0,-34,10,-32,30v3,41,59,62,95,39v48,-31,69,-97,72,-171v-26,27,-68,35,-124,28v-5,0,-10,1,-15,2r0,-33v11,-3,8,12,7,21v54,9,110,4,134,-30v2,-14,3,-31,13,-38v26,13,-10,35,-7,58v-7,66,-25,121,-61,158xm204,-226v-2,1,-4,6,-3,11v4,-2,3,-6,3,-11xm202,-136v17,-8,35,-18,54,-24v22,7,5,42,8,68v17,-21,39,-52,57,-68v10,-10,11,1,12,12v2,25,-7,50,-10,73v24,-36,40,-99,83,-116v15,3,12,26,12,42v0,82,-47,212,53,225v7,-2,10,-4,10,-3v-53,27,-84,-30,-84,-95v0,-51,18,-106,7,-155v-45,36,-69,94,-89,153v-3,1,-6,3,-8,0r19,-120v-25,-3,-47,53,-67,69v-11,31,-12,71,-49,76v-11,2,-15,-16,-5,-23v26,-35,62,-64,52,-129v-14,0,-34,15,-51,19v-3,0,-4,-1,-4,-4xm210,-6v23,-6,29,-30,36,-52v-12,16,-32,29,-36,52","w":459},"\u0153":{"d":"46,-5v-22,11,-50,1,-45,-30v6,-33,23,-73,59,-67v2,1,4,2,5,6v-28,11,-56,30,-52,70v4,26,45,11,52,-3v-13,-35,8,-114,45,-80v8,-8,34,-16,37,2v-4,37,-36,58,-56,78v-1,19,14,25,31,26v46,0,66,-26,85,-53v4,1,3,5,4,8v-13,31,-42,62,-84,62v-24,0,-38,-17,-48,-39xm136,-104v-29,4,-41,34,-45,60v20,-12,41,-33,45,-60xm95,-107v-15,12,-24,32,-22,61v0,1,2,2,3,2v0,-21,27,-45,19,-63","w":212},"\u00a1":{"d":"42,-151v4,-9,-9,-17,-13,-8v0,3,7,8,13,8xm29,-109v-8,-5,-10,1,-11,9r-4,93v25,-6,12,-71,15,-102","w":44},"\u00a2":{"d":"71,-100v10,3,32,19,16,29v-4,-9,-9,-14,-16,-16r0,68v20,-5,39,-16,61,-16v3,1,4,4,2,8v-22,10,-40,17,-62,22v0,14,3,29,-15,26r0,-23v-67,16,-63,-62,-24,-87v8,-5,14,-9,22,-11v-1,-13,2,-32,16,-20r0,20xm55,-86v-23,9,-39,30,-41,60v5,15,24,14,42,10v-1,-25,-3,-44,-1,-70","w":130},"\u00a3":{"d":"117,-110v-4,-80,77,-132,133,-76v5,9,8,14,8,16v-23,-9,-61,-44,-93,-21v-22,16,-33,44,-39,84v31,1,61,1,71,16v-21,7,-50,-6,-74,-6v-8,12,-12,41,-21,53v61,0,101,22,146,35v17,4,13,-19,25,-24v2,35,-12,51,-41,36v-42,-22,-121,-44,-180,-22v-24,8,-47,12,-46,-21v2,-45,69,-28,87,-9v8,-16,15,-35,20,-52v-20,-7,-49,-5,-64,-17v-1,-7,6,-5,11,-5v19,1,43,7,57,13xm90,-39v-10,-18,-55,-28,-72,-10v-12,12,4,30,21,19v14,-4,30,-11,51,-9","w":280},"\u0152":{"d":"68,-4v-84,-5,-60,-142,-48,-215v8,-17,11,-44,34,-45r0,6v-27,42,-33,85,-34,148v-1,54,17,110,72,90v42,-16,63,-59,76,-102v-73,6,-103,-29,-100,-99v2,-61,9,-128,68,-134v57,10,57,83,54,151v14,-36,33,-78,75,-85v26,1,37,21,36,49v0,4,-3,7,-8,7v-5,-16,-7,-42,-25,-45v-50,8,-76,68,-64,123v30,0,41,-19,75,-16v10,0,21,2,22,12v-3,28,-35,37,-63,37v-16,0,-22,-12,-38,-12v-36,20,-59,107,0,119v60,12,90,-26,132,-43v2,4,4,5,3,12v-39,21,-72,37,-116,45v-37,-2,-64,-19,-70,-52v-19,24,-39,52,-81,49xm142,-129v57,4,34,-60,40,-118v5,-48,-16,-113,-64,-90v-44,43,-68,202,24,208xm289,-152v-14,-17,-60,-5,-70,9v12,20,61,5,70,-9xm186,-140v13,-3,4,-21,1,-28","w":326},"\u2013":{"d":"157,-98v1,6,-2,8,-8,8r-126,3v-9,-7,-2,-18,11,-15r118,-3v4,-1,5,4,5,7","w":169},"\u2014":{"d":"225,-101v0,6,-1,8,-8,8r-194,6v-9,-7,-2,-18,11,-15r185,-6v4,-1,7,3,6,7","w":248},"\u201e":{"d":"28,24v-7,-8,-12,-28,-13,-42v-1,-4,2,-8,6,-7v18,3,16,37,7,49xm57,-31v19,2,13,30,13,48v-4,6,-5,2,-8,-5v-4,-13,-27,-37,-5,-43","w":85},"\u201a":{"d":"20,20v-9,-6,7,-26,4,-37v1,-10,-5,-13,-4,-23v30,3,17,50,0,60","w":48},"\u00f0":{"d":"73,-128v-5,5,-15,12,-20,8v0,-9,7,-13,11,-19v-10,-7,-30,-43,-3,-28r13,10v6,-7,9,-14,18,-12v6,8,-2,18,-7,26v28,26,28,92,-6,113v-15,15,-29,31,-57,32v-20,1,-20,-16,-21,-33v14,-47,33,-76,92,-74xm72,-90v-35,3,-58,33,-56,69v0,7,4,12,10,13v29,-8,56,-34,64,-63v0,-14,-5,-20,-18,-19","w":113},"\u2022":{"d":"34,-69v-20,-4,-11,-33,4,-36v28,-5,22,30,6,35v-3,1,-6,2,-10,1","w":73},"\u203a":{"d":"14,-146v-7,-5,1,-7,4,-10r96,51v-28,22,-55,51,-75,78v-3,8,-16,5,-13,-3r67,-75v-27,-11,-57,-26,-79,-41","w":120},"\u00bb":{"d":"14,-146v-7,-5,1,-7,4,-10r96,51v-28,22,-55,51,-75,78v-3,8,-16,5,-13,-3r67,-75v-27,-11,-57,-26,-79,-41xm87,-163v28,21,65,30,92,51v-30,22,-54,50,-75,78v-3,7,-15,4,-13,-3r68,-75v-28,-12,-64,-26,-83,-47v3,-2,5,-5,11,-4","w":198},"\u00ba":{"d":"42,-160v-14,9,-33,1,-29,-24v4,-25,15,-57,39,-52v1,1,2,1,3,4v-19,9,-37,24,-34,56v2,20,29,8,34,-3v-8,-28,4,-88,30,-64v2,26,-6,40,-13,56v22,0,36,-11,49,-18r2,3v-13,13,-36,24,-58,26xm61,-192v12,1,18,-28,16,-46v-0,-1,-1,-2,-2,-2v-10,8,-17,27,-14,48","w":104},"\u00b2":{"d":"138,-119v3,28,-22,51,-46,27v-8,-8,-16,6,-25,6v10,-34,37,-52,56,-77v2,-8,12,-24,1,-28v-15,-1,-18,18,-27,23v-3,-13,12,-35,31,-35v5,1,8,5,8,11v-0,43,-37,56,-51,86v11,2,18,11,28,13v22,5,11,-20,15,-32v3,-3,7,5,10,6","w":110},"\u00b3":{"d":"124,-184v-13,12,6,15,5,32v-4,28,-17,53,-49,48v-19,-2,-14,-43,1,-46v-0,9,-19,41,13,37v24,-2,39,-42,16,-57v-6,0,-19,1,-11,-7v8,-5,27,-7,24,-19v-6,-4,-16,-5,-26,-3v-6,1,-8,-4,-5,-9v14,-7,30,8,43,3v2,8,-8,16,-11,21","w":92},"\u00b6":{"d":"146,-179r6,148v3,36,-18,41,-19,11r-6,-143v-8,3,-17,5,-25,5r11,143v-1,6,-11,32,-14,16v-7,-36,-2,-80,-12,-112v-27,20,-87,13,-82,-32v-6,-49,59,-62,86,-34v16,-2,32,-6,52,-6v1,0,2,2,3,4","w":156},"\u2020":{"d":"90,-144v1,24,-29,22,-50,20v-1,39,17,87,11,125v-20,3,-13,-39,-17,-65v-3,-17,-3,-38,-6,-62v-9,2,-26,10,-33,1v-1,-20,34,-2,34,-21r1,-73v4,-7,11,-9,11,4r-1,79v17,6,34,-7,50,-8","w":98},"\u2021":{"d":"44,-75v1,25,12,53,7,76v-15,6,-12,-16,-14,-33v-2,-16,-2,-16,-4,-43v-22,6,-47,-2,-23,-9v6,-2,13,-3,22,-3r-4,-39v-9,2,-26,10,-33,1v-1,-20,34,-2,34,-21r1,-73v5,-2,11,-7,11,4r-1,79v17,-2,32,-7,50,-8v4,21,-31,16,-50,20r2,33v20,-1,38,-4,46,3v-7,8,-25,9,-44,13","w":98},"\u0192":{"d":"4,-79v3,-7,17,-3,23,-1v-3,-47,-3,-80,36,-80v20,0,38,7,45,20v-13,8,-30,-6,-44,-13v-30,0,-34,43,-25,69v20,-3,43,2,44,22v-13,1,-32,-17,-42,-5v12,42,19,89,23,138v-17,3,-35,-2,-42,-7v-1,-9,13,-5,29,-5r-19,-119v-1,-16,-29,-3,-28,-19","w":104},"\u00a6":{"d":"30,-144r-3,152v-3,3,-9,5,-15,5r1,-156xm13,-257v0,-14,-2,-45,16,-31r0,118r-20,2","w":38},"\u00a4":{"d":"143,-145v13,18,7,57,-5,73v14,7,33,29,26,45v-17,-3,-21,-27,-31,-38v-12,14,-44,30,-63,13v-10,9,-17,29,-30,32v0,-17,11,-29,18,-39v-17,-15,-20,-58,-5,-80v-13,-6,-38,-24,-28,-37v14,2,25,24,37,27v17,-16,54,-20,74,-4v11,-7,14,-29,30,-30v8,13,-12,32,-23,38xm139,-124v-14,-45,-95,-27,-87,23v-3,56,83,53,87,5v1,-12,2,-21,0,-28","w":187},"\u00a7":{"d":"146,-102v7,13,1,20,-7,32v19,41,-30,79,-75,79v-14,0,-21,-37,-2,-41v-13,28,11,35,32,24v17,-9,41,-21,34,-48v-45,-4,-105,-15,-84,-59v3,-4,8,-8,13,-12v-44,-12,-44,-59,-7,-78v30,-16,88,-11,76,33r-9,3v0,-54,-72,-31,-86,-3v-3,24,23,27,41,36v30,-16,81,-11,74,34xm50,-102v14,26,70,39,86,12v11,-44,-53,-54,-76,-23v-4,3,-7,7,-10,11","w":165},"\u2039":{"d":"124,-145v-19,20,-53,35,-81,47r67,78v0,7,-10,10,-14,2v-19,-31,-48,-56,-73,-81r95,-50","w":144},"\u00b7":{"d":"38,-96v-3,15,-19,8,-20,-3v0,-6,10,-13,16,-5v3,3,4,6,4,8","w":48},"\u00a9":{"d":"189,-95v0,59,-41,95,-101,95v-45,0,-77,-29,-77,-77v0,-105,178,-116,178,-18xm173,-119v-38,-54,-159,-36,-156,42v2,62,83,85,126,46v13,-12,31,-25,33,-44v-40,21,-78,47,-124,30v-33,-31,2,-106,53,-91v10,2,30,19,15,27v-18,-37,-62,-1,-69,23v-3,12,-8,30,9,30v46,1,81,-22,118,-29v2,-14,1,-26,-5,-34","w":204},"\u00ae":{"d":"189,-95v0,58,-41,95,-101,95v-45,0,-79,-29,-77,-77v3,-57,33,-101,92,-101v51,0,86,30,86,83xm166,-50v-12,13,-38,26,-48,2v-7,-18,-10,-44,-32,-47v-3,29,0,50,-13,63v-19,8,-24,-12,-19,-33v6,-26,21,-44,26,-70v-3,-2,-4,5,-9,5v-5,-13,14,-23,17,-9v1,7,-1,21,5,10v11,-10,38,-41,50,-17v3,24,-12,49,-37,49v14,22,23,65,64,40v22,-52,-7,-113,-65,-108v-50,4,-83,37,-85,88v-3,73,120,84,146,27xm128,-144v-13,10,-42,17,-42,40v23,4,38,-18,45,-36v0,-3,0,-4,-3,-4xm79,-98v-7,14,-20,43,-14,61v10,-13,12,-39,14,-61","w":195},"\u2212":{"d":"150,-98v-1,5,-1,7,-8,7r-119,4v-9,-7,-2,-18,11,-15r110,-4v4,-1,7,4,6,8","w":165},"\u00ac":{"d":"21,-136v38,0,80,-7,115,-3v2,28,13,60,10,85v-3,1,-11,2,-11,-3r-9,-69v-36,0,-78,7,-110,2v0,-6,-1,-12,5,-12","w":158},"\u00bc":{"d":"78,-192v5,-15,23,-17,36,-25v-1,37,-27,78,-32,117v-4,1,-11,9,-11,1v0,-36,23,-63,30,-99xm118,-147v22,-23,40,-50,65,-71v13,-1,7,11,2,17r-75,78v-23,26,-46,56,-66,84v-16,-7,0,-20,8,-30xm272,-65v7,3,10,-5,11,-9v6,7,-2,18,-13,17v-5,16,-10,33,-12,50v0,4,-7,8,-8,2r12,-52v-12,-3,-24,-12,-40,-8v4,-16,22,-28,32,-39v4,-0,3,7,-1,6v-5,8,-12,15,-17,24v10,0,26,17,31,3v3,-10,3,-26,12,-31v4,10,-6,25,-7,37","w":247},"\u00bd":{"d":"63,-179v4,-15,21,-18,33,-26v-1,39,-25,82,-30,123v-4,1,-10,9,-10,1v0,-38,22,-66,28,-104xm100,-131v22,-23,40,-50,65,-71v13,-1,7,11,2,17r-75,78v-23,26,-46,56,-66,84v-16,-7,0,-20,8,-30xm249,-41v2,30,-19,54,-39,29v-7,-8,-13,6,-21,6v8,-36,31,-55,48,-80v1,-8,10,-25,0,-30v-13,-1,-15,20,-23,24v-2,-14,10,-36,27,-36v4,1,6,5,6,11v0,45,-31,59,-43,90v10,3,15,12,24,14v19,5,10,-22,13,-34v2,-3,6,5,8,6","w":235},"\u00be":{"d":"136,-179v-16,15,7,19,5,40v-5,37,-20,67,-58,62v-24,-4,-18,-56,1,-59v-1,12,-23,52,15,47v29,-3,48,-54,20,-72v-8,0,-23,1,-14,-10v11,-5,33,-8,30,-24v-9,-4,-20,-6,-32,-3v-7,1,-9,-6,-6,-12v17,-9,36,10,51,5v3,10,-9,19,-12,26xm125,-139v22,-23,40,-50,65,-71v13,-1,7,11,2,17r-75,78v-23,26,-46,56,-66,84v-16,-7,0,-20,8,-30xm285,-67v7,4,11,-6,12,-11v8,8,-3,23,-14,22v-7,19,-13,40,-15,63v0,5,-8,9,-9,2r13,-65v-13,-5,-27,-16,-45,-11v4,-20,25,-35,37,-50v4,0,3,9,-1,8v-7,11,-15,20,-20,31v11,0,29,22,35,3v5,-12,5,-33,14,-39v5,13,-6,31,-7,47","w":257},"\u00aa":{"d":"47,-117v-4,10,-12,21,-24,21v-7,-2,-12,-8,-12,-16v0,-26,24,-50,49,-39v-8,18,-11,55,17,52v11,-1,12,-11,21,-16v-1,15,-10,21,-25,21v-15,-1,-25,-6,-26,-23xm44,-147v-16,2,-27,19,-27,38v0,10,11,7,16,2v8,-9,16,-21,17,-35v-1,-3,-3,-5,-6,-5","w":101},"\u00ab":{"d":"124,-145v-19,20,-53,35,-81,47r67,78v0,7,-10,10,-14,2v-19,-31,-48,-56,-73,-81r95,-50xm179,-142v-19,22,-53,33,-81,47v21,27,50,51,67,80v-18,11,-24,-25,-40,-34v-14,-19,-31,-31,-47,-47v30,-19,62,-34,95,-51v2,0,6,3,6,5","w":192},"\u00b5":{"d":"114,-41v-43,10,-61,-21,-73,-50v3,39,4,67,3,85v-1,18,-3,25,-6,22v-11,-31,-10,-88,-11,-149v6,-10,9,-1,14,7v17,28,25,76,66,76v9,-24,-14,-60,-7,-88v1,-4,4,-6,9,-5v12,35,20,55,15,88v-1,7,-5,12,-10,14"},"\u00c6":{"d":"417,-34v-51,28,-130,72,-175,17v-2,18,16,51,-2,57v-13,-44,-9,-100,-21,-145v-30,-1,-56,-16,-88,-16v-39,37,-44,113,-124,110v-5,-3,-6,-8,0,-11v63,-1,84,-66,113,-107v-20,-13,-38,-31,-52,-51v-1,-9,8,-8,15,-8v27,0,43,16,70,15v26,-35,35,-102,68,-128r10,172r44,-8v-11,-65,20,-125,72,-140v26,1,37,21,36,49v0,4,-3,7,-8,7v-3,-15,-7,-43,-25,-45v-49,7,-75,68,-63,122v30,1,42,-19,74,-16v9,1,23,1,22,13v-5,42,-69,42,-100,25v-27,17,-54,67,-29,101v27,36,104,12,131,-10v9,-7,19,-11,29,-15v2,3,6,7,3,12xm217,-125r-6,-142r-45,101xm372,-140v-12,-16,-47,-4,-64,1v-12,4,-6,14,2,16v25,3,50,-3,62,-17xm146,-162v-19,-4,-38,-16,-58,-13v2,19,46,53,54,21v1,-2,2,-5,4,-8xm142,-132v17,5,39,4,53,10v-9,-12,-22,-25,-39,-32v-3,5,-11,14,-14,22xm235,-73v6,-19,19,-35,30,-49v-9,4,-20,6,-31,8v-2,13,-1,28,1,41","w":418},"\u00b0":{"d":"48,-135v0,12,-10,18,-22,18v-8,0,-17,-8,-17,-16v0,-12,9,-18,21,-17v10,0,18,4,18,15xm34,-146v-12,0,-21,2,-21,13v0,16,30,14,30,1v0,-8,-2,-13,-9,-14","w":52},"\u00f7":{"d":"27,-98v16,-18,108,-10,155,-9v-2,3,0,9,-4,9r-151,0xm114,-68v2,15,-26,21,-27,3v-1,-15,26,-15,27,-3xm88,-157v3,-7,21,-7,19,4v1,7,-9,13,-16,12v-8,-1,-10,-9,-3,-16","w":197},"\u00e6":{"d":"213,-56v-4,46,-84,94,-121,45v-5,17,-16,16,-18,-2v-1,-6,-2,-14,-2,-23v-8,17,-23,37,-48,37v-14,-3,-24,-13,-24,-28v0,-47,48,-91,98,-72v9,-12,22,-22,40,-23v7,0,11,4,11,11v-3,39,-28,63,-55,78v-1,19,14,25,31,26v47,2,64,-27,85,-52v2,1,3,2,3,3xm66,-91v-32,4,-53,34,-53,69v0,18,22,13,32,3v16,-15,31,-38,34,-64v-3,-5,-7,-8,-13,-8xm139,-108v-27,4,-54,27,-45,61v20,-13,41,-33,45,-61","w":200},"\u00d7":{"d":"41,-135v22,-20,27,20,40,31v14,-11,17,-33,35,-40v2,0,3,1,4,3r-30,56v14,13,43,12,59,21v-11,17,-61,4,-67,-11v-15,12,-17,44,-42,32r33,-45","w":161},"\u00de":{"d":"51,-64v7,50,12,151,-32,135v-14,-53,-12,-121,11,-165v7,-57,-8,-142,11,-193v13,31,8,97,5,138v14,-25,39,-45,68,-52v28,5,14,45,4,64v-14,28,-33,58,-64,68xm40,-84v-26,29,-27,110,-8,145v23,-36,6,-94,8,-145xm118,-182v-39,-12,-70,46,-64,96v32,-16,63,-52,64,-96","w":145},"\u00fe":{"d":"129,-170v-3,54,-36,88,-88,94v1,42,4,79,-1,108v-2,7,-4,8,-7,2v-22,-59,-15,-166,-15,-245v0,-23,1,-46,9,-62v14,21,9,79,6,112v14,-24,41,-44,68,-52v17,5,28,22,28,43xm112,-165v10,-36,-27,-38,-43,-18v-16,19,-32,51,-25,85v42,9,59,-32,68,-67","w":145},"\u00df":{"d":"338,-291v-30,-59,-99,21,-122,47v-77,89,-101,228,-127,364v-6,29,-37,17,-47,1v-6,-9,-11,-24,-11,-37v22,5,8,42,40,38v16,-52,29,-118,42,-175v27,-117,76,-206,166,-258v27,-15,67,-14,66,21v-1,47,-46,63,-70,87v47,11,99,42,76,104v-18,49,-54,90,-113,99v-52,-5,-87,-37,-85,-96v11,-11,33,5,13,11v4,42,30,74,74,74v59,0,105,-55,105,-115v0,-58,-67,-66,-126,-70v-5,-2,-14,-4,-7,-8v12,-2,28,-3,48,-3v29,-20,68,-45,78,-84","w":367},"\u00a5":{"d":"112,-105v-15,0,-36,3,-39,-9v3,-12,25,-4,40,-5r1,-15r-74,-125v-13,0,-23,6,-37,5v6,-16,32,-17,47,-23v4,1,6,2,6,7r71,114v16,-46,45,-80,53,-134v-2,-9,15,-19,13,-5v-10,61,-48,115,-59,177v12,2,41,4,33,13r-33,0v1,5,-5,16,4,14v14,-2,41,3,17,9v-6,1,-14,3,-22,4r-4,81v-2,8,-4,11,-6,9v-9,-19,-10,-60,-11,-89v-14,1,-47,5,-32,-14r32,0r0,-14","w":200},"\u02d9":{"d":"27,-204v-21,-3,-10,-33,4,-36v22,-4,23,17,16,29v-5,5,-12,8,-20,7xm27,-204v-21,-3,-10,-33,4,-36v22,-4,23,17,16,29v-5,5,-12,8,-20,7","w":63},"\u02dd":{"d":"44,-242v11,17,-19,54,-38,50v10,-19,20,-41,38,-50xm82,-240v11,18,-16,47,-36,52r-1,-6v12,-14,19,-40,37,-46","w":94},"\u02d8":{"d":"2,-237v26,-12,40,42,75,15v9,-3,18,-29,32,-16v-12,37,-67,58,-95,20v-5,-6,-9,-12,-12,-19","w":116},"\u013d":{"d":"349,-296v14,-7,30,-40,47,-24r-45,46v-23,-11,-44,-29,-61,-46v4,-2,8,-4,13,-5xm88,-5v70,4,104,-38,153,-56v64,66,75,186,153,236v9,5,19,5,30,5v80,0,147,-7,145,-89v0,-35,-17,-66,-53,-61v23,10,40,30,42,60v4,72,-60,80,-130,75v-77,-5,-90,-89,-120,-146v-16,-31,-30,-69,-50,-94r41,-65v64,-25,156,-28,156,-112v0,-32,-54,-17,-67,-4r-96,95v-65,17,-124,-23,-149,-68v-16,54,74,83,139,86v-8,19,-24,42,-37,60v-35,-18,-69,-41,-122,-41v-47,10,-111,12,-111,66v0,40,37,51,76,53xm170,-37v-35,25,-138,39,-144,-20v11,-77,166,-59,200,-15v-13,17,-37,23,-56,35xm399,-249v9,-9,43,-21,43,3v0,57,-63,77,-124,82","w":374},"\u015a":{"d":"284,-334v19,-32,87,-30,74,17v-14,50,-61,87,-86,129v14,102,-14,225,-125,188v-20,-7,-42,-22,-66,-44r-71,34v-3,-2,-7,-7,-6,-14v19,-12,57,-17,74,-34v-20,-64,12,-103,65,-114v-4,3,1,7,0,10v-41,16,-79,42,-54,99r120,-86v22,-16,22,-16,48,-38v7,-52,-2,-116,27,-147xm96,-50v34,37,95,65,134,24v28,-30,39,-89,28,-145xm342,-342v-67,-17,-69,71,-71,135v31,-35,62,-71,78,-120v0,-6,-3,-12,-7,-15xm334,-437v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":312},"\u0164":{"d":"279,-355v38,22,-18,54,-11,96v-14,108,-40,210,-122,247v-61,28,-135,-9,-141,-71v3,-30,16,-64,51,-55v4,1,6,4,6,8v-28,1,-46,17,-46,45v0,60,86,92,137,57v70,-47,100,-144,104,-253v-34,35,-86,42,-158,42v-16,0,-29,-1,-42,3r0,-48v12,-6,11,8,11,19v0,4,-1,8,-1,12v78,11,159,5,193,-46v4,-21,5,-45,19,-56xm282,-336v-1,6,-3,10,-3,19v4,-5,4,-11,3,-19xm164,-416v30,-14,30,37,64,29v14,-3,22,-16,28,-32v2,-4,18,-1,14,3v-13,39,-49,57,-80,29v-9,-8,-18,-18,-26,-29","w":267},"\u0179":{"d":"109,-44v86,34,226,126,323,49r2,5v-21,26,-45,42,-85,42v-111,0,-172,-74,-280,-85v-28,-3,-44,25,-64,15v17,-16,34,-25,59,-33v60,-49,128,-89,178,-148r0,-4v-36,6,-82,21,-115,0v-4,5,-7,9,-14,11r0,-42v12,-1,8,10,14,13v33,23,120,21,138,-13v10,-12,17,-31,38,-32v14,-1,9,12,1,21v-66,77,-150,136,-221,197v7,-1,15,0,26,4xm290,-244v2,1,10,-8,6,-7v-3,1,-7,5,-6,7xm232,-310v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":282},"\u017b":{"d":"109,-44v86,34,226,126,323,49r2,5v-21,26,-45,42,-85,42v-111,0,-172,-74,-280,-85v-28,-3,-44,25,-64,15v17,-16,34,-25,59,-33v60,-49,128,-89,178,-148r0,-4v-36,6,-82,21,-115,0v-4,5,-7,9,-14,11r0,-42v12,-1,8,10,14,13v33,23,120,21,138,-13v10,-12,17,-31,38,-32v14,-1,9,12,1,21v-66,77,-150,136,-221,197v7,-1,15,0,26,4xm290,-244v2,1,10,-8,6,-7v-3,1,-7,5,-6,7xm192,-235v-21,-3,-10,-33,4,-36v22,-4,23,17,16,29v-5,5,-12,8,-20,7xm192,-235v-21,-3,-10,-33,4,-36v22,-4,23,17,16,29v-5,5,-12,8,-20,7","w":282},"\u015b":{"d":"95,4v-29,0,-40,-17,-62,-25v-11,7,-21,11,-34,9v-6,-9,5,-13,16,-17v-2,-5,-11,-12,-3,-15v37,9,59,-34,81,-54v1,-10,20,-25,22,-9v-11,22,-6,62,-7,95v46,2,48,-25,74,-43v-6,40,-45,59,-87,59xm98,-13v0,-21,-1,-41,-5,-60v-19,10,-31,28,-44,40v7,14,28,19,49,20xm110,-191v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":172},"\u017a":{"d":"210,-37v3,3,4,5,0,7v-29,11,-55,23,-74,45v-7,46,-26,93,-65,108v-7,1,-13,-2,-20,-8v11,-45,49,-67,70,-102v7,-34,-20,-44,-40,-22v-11,7,-31,-1,-20,-13v19,-8,42,-10,42,-40v0,-11,-4,-16,-13,-16v-41,0,-57,50,-80,75r-8,-3v27,-29,37,-79,93,-79v22,-1,21,28,19,48v12,10,14,23,22,37v20,-14,44,-34,74,-37xm65,116v30,2,54,-50,52,-83v-19,21,-49,46,-52,83xm84,-18v-3,1,-11,1,-9,4v5,0,5,-2,9,-4xm107,-170v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":193},"\u017c":{"d":"210,-37v3,3,4,5,0,7v-29,11,-55,23,-74,45v-7,46,-26,93,-65,108v-7,1,-13,-2,-20,-8v11,-45,49,-67,70,-102v7,-34,-20,-44,-40,-22v-11,7,-31,-1,-20,-13v19,-8,42,-10,42,-40v0,-11,-4,-16,-13,-16v-41,0,-57,50,-80,75r-8,-3v27,-29,37,-79,93,-79v22,-1,21,28,19,48v12,10,14,23,22,37v20,-14,44,-34,74,-37xm65,116v30,2,54,-50,52,-83v-19,21,-49,46,-52,83xm84,-18v-3,1,-11,1,-9,4v5,0,5,-2,9,-4xm79,-114v-21,-3,-10,-33,4,-36v22,-4,23,17,16,29v-5,5,-12,8,-20,7xm79,-114v-21,-3,-10,-33,4,-36v22,-4,23,17,16,29v-5,5,-12,8,-20,7","w":193},"\u0154":{"d":"255,-39v-2,32,-52,44,-74,22v-32,-31,-40,-91,-76,-119v-8,-6,-18,-7,-29,-5r-32,133v-3,20,-28,29,-35,7v-5,-83,49,-150,60,-224v4,-30,-20,-12,-33,-9v-2,-23,40,-39,44,-9r4,33v25,-30,62,-65,103,-75v26,-6,18,30,10,46v-18,35,-41,74,-83,85v38,36,41,117,99,134v18,0,35,-7,42,-19xm59,-148v-21,33,-37,87,-41,136v2,7,4,10,7,8v22,-32,31,-92,34,-144xm196,-265v-22,-15,-50,20,-68,33v-23,17,-54,33,-51,70v60,10,95,-43,117,-86v3,-7,4,-13,2,-17xm149,-330v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":246},"\u0102":{"d":"221,-301r10,172v16,-3,24,-13,38,-11v4,13,-22,22,-35,26v-6,50,21,111,10,153v-1,0,-2,0,-4,1v-13,-44,-9,-100,-21,-145v-30,-1,-56,-16,-88,-16v-39,37,-44,113,-124,110v-5,-3,-6,-8,0,-11v63,-1,84,-66,113,-107v-20,-13,-38,-31,-52,-51v-1,-9,8,-8,15,-8v27,0,43,16,70,15v26,-35,35,-102,68,-128xm142,-132v17,5,39,4,53,10v-9,-12,-22,-25,-39,-32v-3,5,-11,14,-14,22xm217,-125r-6,-142r-45,101xm146,-162v-19,-4,-38,-16,-58,-13v2,19,46,53,54,21v1,-2,2,-5,4,-8xm165,-362v26,-12,40,42,75,15v9,-3,18,-29,32,-16v-12,37,-67,58,-95,20v-5,-6,-9,-12,-12,-19","w":263},"\u0139":{"d":"394,175v-81,-49,-86,-177,-157,-236v-46,21,-80,58,-149,56v-39,-2,-76,-13,-76,-53v0,-55,66,-66,118,-66v47,0,83,23,115,41v13,-18,29,-41,37,-60v-58,-1,-107,-22,-136,-54v-12,-8,-10,-46,3,-25v24,41,82,77,143,61v38,-34,68,-78,112,-105v17,-10,51,-9,51,14v-4,85,-95,87,-156,112v-16,22,-27,42,-41,65v51,66,67,176,132,228v11,9,23,12,38,12v70,1,134,-2,130,-75v-2,-30,-19,-50,-42,-60v36,-5,53,26,53,61v2,82,-65,89,-145,89v-11,0,-21,0,-30,-5xm124,-109v-47,-1,-94,9,-98,52v13,69,133,35,166,8v11,-9,26,-12,34,-23v-18,-25,-62,-36,-102,-37xm436,-223v8,-13,12,-40,-11,-37v-9,1,-20,6,-26,11r-81,85v54,-1,95,-25,118,-59xm431,-335v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":374},"\u0106":{"d":"164,-96v-5,48,-41,87,-88,96v-109,-15,-59,-183,-21,-242v15,-23,29,-55,62,-53v19,10,32,33,29,66v0,2,-4,5,-7,4v2,-33,-22,-79,-49,-46v-35,42,-70,103,-70,171v0,41,15,85,56,85v48,0,72,-45,85,-85v2,0,3,2,3,4xm130,-362v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":171},"\u010c":{"d":"164,-96v-5,48,-41,87,-88,96v-109,-15,-59,-183,-21,-242v15,-23,29,-55,62,-53v19,10,32,33,29,66v0,2,-4,5,-7,4v2,-33,-22,-79,-49,-46v-35,42,-70,103,-70,171v0,41,15,85,56,85v48,0,72,-45,85,-85v2,0,3,2,3,4xm56,-363v30,-14,30,37,64,29v14,-3,22,-16,28,-32v2,-4,18,-1,14,3v-13,39,-49,57,-80,29v-9,-8,-18,-18,-26,-29","w":171},"\u011a":{"d":"137,-19v-56,38,-152,13,-128,-65v9,-26,27,-41,41,-62v-11,-66,17,-128,72,-142v25,1,38,24,35,49v-1,4,-3,6,-8,6v-3,-15,-7,-42,-25,-44v-49,8,-75,67,-63,122v30,1,43,-19,75,-16v9,1,21,2,21,13v-2,28,-34,36,-63,36v-17,1,-21,-12,-37,-11v-36,19,-60,107,0,118v59,11,91,-25,131,-43v3,4,8,12,0,15xm146,-152v-13,-14,-46,-3,-63,2v-11,4,-8,14,1,16v26,3,51,-3,62,-18xm64,-350v30,-14,30,37,64,29v14,-3,22,-16,28,-32v2,-4,18,-1,14,3v-13,39,-49,57,-80,29v-9,-8,-18,-18,-26,-29","w":184},"\u010e":{"d":"158,-316v120,0,98,214,40,276v-20,45,-106,58,-128,4v-6,-14,-25,-25,-35,-7v-11,13,-9,41,-27,45r32,-248r8,0r-23,196v7,-7,13,-15,26,-15v45,4,44,83,101,52v41,-22,74,-64,80,-122v-18,17,-38,30,-72,30v-55,-2,-76,-43,-76,-99v0,-54,20,-112,74,-112xm189,-296v-52,-40,-98,35,-94,94v-18,92,123,121,138,33v9,-55,-12,-102,-44,-127xm111,-377v30,-14,30,37,64,29v14,-3,22,-16,28,-32v2,-4,18,-1,14,3v-13,39,-49,57,-80,29v-9,-8,-18,-18,-26,-29","w":240},"\u0143":{"d":"291,42v-133,7,-66,-176,-71,-292r-126,119v-6,58,-10,123,-65,133v-46,-8,-11,-72,4,-90v15,-17,31,-36,46,-51v1,-29,0,-61,-10,-81v-23,3,-33,24,-61,22v-1,-8,4,-11,10,-12v18,-6,35,-19,54,-25v6,1,9,6,11,11r12,77r132,-128v27,67,-17,156,-7,247v6,52,47,72,99,59v-5,8,-15,11,-28,11xm76,-116v-25,24,-57,49,-56,100v38,23,60,-52,60,-100r-4,0xm216,-346v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":246},"\u0147":{"d":"291,42v-133,7,-66,-176,-71,-292r-126,119v-6,58,-10,123,-65,133v-46,-8,-11,-72,4,-90v15,-17,31,-36,46,-51v1,-29,0,-61,-10,-81v-23,3,-33,24,-61,22v-1,-8,4,-11,10,-12v18,-6,35,-19,54,-25v6,1,9,6,11,11r12,77r132,-128v27,67,-17,156,-7,247v6,52,47,72,99,59v-5,8,-15,11,-28,11xm76,-116v-25,24,-57,49,-56,100v38,23,60,-52,60,-100r-4,0xm125,-333v30,-14,30,37,64,29v14,-3,22,-16,28,-32v2,-4,18,-1,14,3v-13,39,-49,57,-80,29v-9,-8,-18,-18,-26,-29","w":246},"\u0150":{"d":"182,-129v-19,59,-41,125,-114,125v-84,0,-60,-142,-48,-215v8,-17,11,-44,34,-45r0,6v-27,42,-31,85,-34,148v-3,61,27,117,83,85v32,-19,55,-57,65,-97v-73,6,-103,-29,-100,-99v2,-61,9,-128,68,-134v75,16,52,133,50,215r26,-12v0,15,-23,13,-30,23xm142,-129v57,4,34,-60,40,-118v5,-48,-16,-113,-64,-90v-44,43,-68,202,24,208xm125,-437v11,17,-19,54,-38,50v10,-19,20,-41,38,-50xm163,-435v11,18,-16,47,-36,52r-1,-6v12,-14,19,-40,37,-46","w":198},"\u0158":{"d":"255,-39v-2,32,-52,44,-74,22v-32,-31,-40,-91,-76,-119v-8,-6,-18,-7,-29,-5r-32,133v-3,20,-28,29,-35,7v-5,-83,49,-150,60,-224v4,-30,-20,-12,-33,-9v-2,-23,40,-39,44,-9r4,33v25,-30,62,-65,103,-75v26,-6,18,30,10,46v-18,35,-41,74,-83,85v38,36,41,117,99,134v18,0,35,-7,42,-19xm59,-148v-21,33,-37,87,-41,136v2,7,4,10,7,8v22,-32,31,-92,34,-144xm196,-265v-22,-15,-50,20,-68,33v-23,17,-54,33,-51,70v60,10,95,-43,117,-86v3,-7,4,-13,2,-17xm77,-330v30,-14,30,37,64,29v14,-3,22,-16,28,-32v2,-4,18,-1,14,3v-13,39,-49,57,-80,29v-9,-8,-18,-18,-26,-29","w":246},"\u016e":{"d":"137,-27v-34,48,-99,12,-85,-54v10,-51,19,-97,22,-152v-13,9,-32,8,-54,8v-5,-1,-14,-3,-13,-11v5,-4,10,-7,19,-8v5,2,-5,11,11,8v23,1,32,-16,55,-16v-6,65,-22,119,-29,183v-6,48,50,74,70,28v30,-42,40,-98,66,-144r19,-73v0,-2,3,-5,6,-4v16,38,-16,91,-14,140v2,52,12,101,67,100v18,4,22,-14,33,-8v-1,16,-17,20,-35,19v-73,-1,-79,-75,-76,-148v-21,44,-35,94,-62,132xm174,-308v0,34,-49,43,-49,6v0,-16,10,-28,26,-27v12,1,23,6,23,21xm169,-312v-7,-20,-40,-11,-40,10v0,23,38,25,40,3v1,-5,1,-10,0,-13","w":296},"\u0170":{"d":"137,-27v-34,48,-99,12,-85,-54v10,-51,19,-97,22,-152v-13,9,-32,8,-54,8v-5,-1,-14,-3,-13,-11v5,-4,10,-7,19,-8v5,2,-5,11,11,8v23,1,32,-16,55,-16v-6,65,-22,119,-29,183v-6,48,50,74,70,28v30,-42,40,-98,66,-144r19,-73v0,-2,3,-5,6,-4v16,38,-16,91,-14,140v2,52,12,101,67,100v18,4,22,-14,33,-8v-1,16,-17,20,-35,19v-73,-1,-79,-75,-76,-148v-21,44,-35,94,-62,132xm162,-336v11,17,-19,54,-38,50v10,-19,20,-41,38,-50xm200,-334v11,18,-16,47,-36,52r-1,-6v12,-14,19,-40,37,-46","w":296},"\u0155":{"d":"104,-43v-10,42,32,21,54,20v3,0,4,2,4,5v-19,11,-78,26,-70,-14v-1,-18,7,-33,7,-50r-48,8v-10,31,-16,62,-47,69v-7,-1,-7,-6,-2,-12v27,-3,23,-37,34,-57v-8,-3,-18,-6,-18,-18v0,-19,14,-31,32,-31v19,0,17,25,5,38r57,-13xm40,-111v-7,3,-12,25,3,26v8,-7,11,-17,5,-25v-2,-2,-5,-3,-8,-1xm86,-240v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46"},"\u0103":{"d":"72,-36v-8,17,-23,37,-48,37v-14,-3,-24,-13,-24,-28v0,-47,48,-91,98,-72v-16,33,-22,101,34,95v24,-2,25,-20,44,-28v-3,27,-21,38,-51,37v-31,-1,-50,-11,-53,-41xm66,-91v-32,4,-53,34,-53,69v0,18,22,13,32,3v16,-15,31,-38,34,-64v-3,-5,-7,-8,-13,-8xm22,-181v26,-12,40,42,75,15v9,-3,18,-29,32,-16v-12,37,-67,58,-95,20v-5,-6,-9,-12,-12,-19","w":156},"\u0107":{"d":"29,-67v-15,17,-26,56,12,53v34,-3,59,-21,92,-21v2,1,3,4,1,8v-42,17,-70,31,-113,23v-44,-27,3,-104,49,-96v8,1,34,19,17,29v-10,-28,-49,-15,-58,4xm69,-169v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":130},"\u013a":{"d":"55,6v-101,-17,-27,-165,-1,-214v9,-16,20,-10,20,7v0,58,-29,103,-56,137v-8,30,8,60,39,59v19,-1,36,-6,41,-22r4,0v-2,23,-24,31,-47,33xm64,-193v-20,30,-33,67,-44,107v24,-22,39,-65,44,-107xm74,-284v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":91},"\u010d":{"d":"29,-67v-15,17,-26,56,12,53v34,-3,59,-21,92,-21v2,1,3,4,1,8v-42,17,-70,31,-113,23v-44,-27,3,-104,49,-96v8,1,34,19,17,29v-10,-28,-49,-15,-58,4xm4,-170v30,-14,30,37,64,29v14,-3,22,-16,28,-32v2,-4,18,-1,14,3v-13,39,-49,57,-80,29v-9,-8,-18,-18,-26,-29","w":130},"\u011b":{"d":"46,-11v46,0,65,-26,85,-52v10,38,-70,92,-111,56v-37,-33,-11,-121,39,-119v6,0,11,5,11,11v-2,40,-40,55,-56,82v2,15,15,22,32,22xm60,-111v-28,3,-48,29,-45,60v18,-13,41,-32,45,-60xm-5,-201v30,-14,30,37,64,29v14,-3,22,-16,28,-32v2,-4,18,-1,14,3v-13,39,-49,57,-80,29v-9,-8,-18,-18,-26,-29","w":127},"\u0144":{"d":"113,-1v-39,5,-20,-53,-23,-94v-36,19,-54,63,-84,88v-2,0,-3,1,-6,1v6,-36,18,-66,24,-102v3,-7,8,-11,11,-2v1,24,-6,41,-8,63v25,-22,35,-59,76,-64v11,23,-5,52,-3,80v2,34,42,14,53,-1v9,-11,19,-24,29,-32v-3,37,-36,59,-69,63xm104,-184v8,20,-17,47,-36,52v-2,0,-2,-3,-2,-6v12,-14,20,-40,38,-46","w":168},"\u0148":{"d":"113,-1v-39,5,-20,-53,-23,-94v-36,19,-54,63,-84,88v-2,0,-3,1,-6,1v6,-36,18,-66,24,-102v3,-7,8,-11,11,-2v1,24,-6,41,-8,63v25,-22,35,-59,76,-64v11,23,-5,52,-3,80v2,34,42,14,53,-1v9,-11,19,-24,29,-32v-3,37,-36,59,-69,63xm31,-185v30,-14,30,37,64,29v14,-3,22,-16,28,-32v2,-4,18,-1,14,3v-13,39,-49,57,-80,29v-9,-8,-18,-18,-26,-29","w":168},"\u0151":{"d":"46,-5v-22,11,-50,1,-45,-30v6,-33,23,-73,59,-67v2,1,4,2,5,6v-28,11,-56,30,-52,70v4,26,45,11,52,-3v-12,-36,7,-112,45,-81v3,33,-8,50,-19,70v33,1,54,-13,75,-22r3,3v-21,17,-55,31,-88,33xm74,-46v18,2,28,-35,25,-58v-1,-2,-2,-3,-4,-3v-14,11,-26,34,-21,61xm80,-199v11,17,-19,54,-38,50v10,-19,20,-41,38,-50xm118,-197v11,18,-16,47,-36,52r-1,-6v12,-14,19,-40,37,-46","w":150},"\u0159":{"d":"104,-43v-10,42,32,21,54,20v3,0,4,2,4,5v-19,11,-78,26,-70,-14v-1,-18,7,-33,7,-50r-48,8v-10,31,-16,62,-47,69v-7,-1,-7,-6,-2,-12v27,-3,23,-37,34,-57v-8,-3,-18,-6,-18,-18v0,-19,14,-31,32,-31v19,0,17,25,5,38r57,-13xm40,-111v-7,3,-12,25,3,26v8,-7,11,-17,5,-25v-2,-2,-5,-3,-8,-1xm23,-194v30,-14,30,37,64,29v14,-3,22,-16,28,-32v2,-4,18,-1,14,3v-13,39,-49,57,-80,29v-9,-8,-18,-18,-26,-29"},"\u016f":{"d":"24,-8v44,0,51,-57,66,-93v3,0,6,2,6,5v-7,42,-15,84,27,85v16,-8,27,-12,33,-13v6,-1,7,0,6,2v-21,27,-95,24,-81,-30v-12,27,-21,56,-60,56v-25,0,-23,-29,-13,-53v5,-13,13,-31,25,-53v10,31,-20,54,-22,85v0,10,4,9,13,9xm100,-159v0,34,-49,43,-49,6v0,-16,10,-28,26,-27v12,1,23,6,23,21xm95,-163v-7,-20,-40,-11,-40,10v0,23,38,25,40,3v1,-5,1,-10,0,-13"},"\u0171":{"d":"24,-8v44,0,51,-57,66,-93v3,0,6,2,6,5v-7,42,-15,84,27,85v16,-8,27,-12,33,-13v6,-1,7,0,6,2v-21,27,-95,24,-81,-30v-12,27,-21,56,-60,56v-25,0,-23,-29,-13,-53v5,-13,13,-31,25,-53v10,31,-20,54,-22,85v0,10,4,9,13,9xm73,-181v11,17,-19,54,-38,50v10,-19,20,-41,38,-50xm111,-179v11,18,-16,47,-36,52r-1,-6v12,-14,19,-40,37,-46"},"\u2215":{"d":"13,0v-10,1,-10,-9,-3,-15r165,-137v17,-3,9,13,3,17v-60,38,-118,84,-165,135","w":190},"%":{"d":"75,-119v-30,10,-79,-17,-42,-43v14,-9,46,3,29,15v-8,-1,-22,-8,-26,3v7,28,51,3,63,-2v4,2,8,5,5,11r-87,144v-4,2,-9,2,-9,-3v14,-53,38,-75,67,-125xm58,-27v13,-36,64,-38,64,7v0,30,-55,46,-66,19v-3,-7,-1,-16,2,-26xm99,-43v-19,-7,-38,31,-21,44v30,4,43,-31,21,-44","w":133},"\u00ad":{"d":"27,-92v25,8,67,14,89,24v0,8,-1,13,-10,11r-83,-21v-6,-2,-2,-16,4,-14","w":131},"\u00b1":{"d":"145,-46v-1,5,-1,7,-8,7r-119,4v-9,-7,-2,-18,11,-15r39,-1r0,-53v-23,-3,-62,12,-65,-14r61,0r-2,-53v-1,-4,4,-7,8,-6v5,0,9,1,9,8r0,47v22,3,49,-8,67,-6v-10,17,-34,21,-65,22v2,17,-4,41,2,54r56,-2v4,-1,7,4,6,8","w":153},"\u00a0":{"w":180}}});;
/*
 * jQuery Form Plugin
 * version: 2.83 (11-JUL-2011)
 * @requires jQuery v1.3.2 or later
 *
 * Examples and documentation at: http://malsup.com/jquery/form/
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
;(function($){$.fn.ajaxSubmit=function(options){if(!this.length){log('ajaxSubmit: skipping submit process - no element selected');return this;}
var method,action,url,$form=this;if(typeof options=='function'){options={success:options};}
method=this.attr('method');action=this.attr('action');url=(typeof action==='string')?$.trim(action):'';url=url||window.location.href||'';if(url){url=(url.match(/^([^#]+)/)||[])[1];}
options=$.extend(true,{url:url,success:$.ajaxSettings.success,type:method||'GET',iframeSrc:/^https/i.test(window.location.href||'')?'javascript:false':'about:blank'},options);var veto={};this.trigger('form-pre-serialize',[this,options,veto]);if(veto.veto){log('ajaxSubmit: submit vetoed via form-pre-serialize trigger');return this;}
if(options.beforeSerialize&&options.beforeSerialize(this,options)===false){log('ajaxSubmit: submit aborted via beforeSerialize callback');return this;}
var n,v,a=this.formToArray(options.semantic);if(options.data){options.extraData=options.data;for(n in options.data){if(options.data[n]instanceof Array){for(var k in options.data[n]){a.push({name:n,value:options.data[n][k]});}}
else{v=options.data[n];v=$.isFunction(v)?v():v;a.push({name:n,value:v});}}}
if(options.beforeSubmit&&options.beforeSubmit(a,this,options)===false){log('ajaxSubmit: submit aborted via beforeSubmit callback');return this;}
this.trigger('form-submit-validate',[a,this,options,veto]);if(veto.veto){log('ajaxSubmit: submit vetoed via form-submit-validate trigger');return this;}
var q=$.param(a);if(options.type.toUpperCase()=='GET'){options.url+=(options.url.indexOf('?')>=0?'&':'?')+q;options.data=null;}
else{options.data=q;}
var callbacks=[];if(options.resetForm){callbacks.push(function(){$form.resetForm();});}
if(options.clearForm){callbacks.push(function(){$form.clearForm();});}
if(!options.dataType&&options.target){var oldSuccess=options.success||function(){};callbacks.push(function(data){var fn=options.replaceTarget?'replaceWith':'html';$(options.target)[fn](data).each(oldSuccess,arguments);});}
else if(options.success){callbacks.push(options.success);}
options.success=function(data,status,xhr){var context=options.context||options;for(var i=0,max=callbacks.length;i<max;i++){callbacks[i].apply(context,[data,status,xhr||$form,$form]);}};var fileInputs=$('input:file',this).length>0;var mp='multipart/form-data';var multipart=($form.attr('enctype')==mp||$form.attr('encoding')==mp);if(options.iframe!==false&&(fileInputs||options.iframe||multipart)){if(options.closeKeepAlive){$.get(options.closeKeepAlive,function(){fileUpload(a);});}
else{fileUpload(a);}}
else{if($.browser.msie&&method=='get'){var ieMeth=$form[0].getAttribute('method');if(typeof ieMeth==='string')
options.type=ieMeth;}
$.ajax(options);}
this.trigger('form-submit-notify',[this,options]);return this;function fileUpload(a){var form=$form[0],el,i,s,g,id,$io,io,xhr,sub,n,timedOut,timeoutHandle;var useProp=!!$.fn.prop;if(a){for(i=0;i<a.length;i++){el=$(form[a[i].name]);el[useProp?'prop':'attr']('disabled',false);}}
if($(':input[name=submit],:input[id=submit]',form).length){alert('Error: Form elements must not have name or id of "submit".');return;}
s=$.extend(true,{},$.ajaxSettings,options);s.context=s.context||s;id='jqFormIO'+(new Date().getTime());if(s.iframeTarget){$io=$(s.iframeTarget);n=$io.attr('name');if(n==null)
$io.attr('name',id);else
id=n;}
else{$io=$('<iframe name="'+id+'" src="'+s.iframeSrc+'" />');$io.css({position:'absolute',top:'-1000px',left:'-1000px'});}
io=$io[0];xhr={aborted:0,responseText:null,responseXML:null,status:0,statusText:'n/a',getAllResponseHeaders:function(){},getResponseHeader:function(){},setRequestHeader:function(){},abort:function(status){var e=(status==='timeout'?'timeout':'aborted');log('aborting upload... '+e);this.aborted=1;$io.attr('src',s.iframeSrc);xhr.error=e;s.error&&s.error.call(s.context,xhr,e,status);g&&$.event.trigger("ajaxError",[xhr,s,e]);s.complete&&s.complete.call(s.context,xhr,e);}};g=s.global;if(g&&!$.active++){$.event.trigger("ajaxStart");}
if(g){$.event.trigger("ajaxSend",[xhr,s]);}
if(s.beforeSend&&s.beforeSend.call(s.context,xhr,s)===false){if(s.global){$.active--;}
return;}
if(xhr.aborted){return;}
sub=form.clk;if(sub){n=sub.name;if(n&&!sub.disabled){s.extraData=s.extraData||{};s.extraData[n]=sub.value;if(sub.type=="image"){s.extraData[n+'.x']=form.clk_x;s.extraData[n+'.y']=form.clk_y;}}}
var CLIENT_TIMEOUT_ABORT=1;var SERVER_ABORT=2;function getDoc(frame){var doc=frame.contentWindow?frame.contentWindow.document:frame.contentDocument?frame.contentDocument:frame.document;return doc;}
function doSubmit(){var t=$form.attr('target'),a=$form.attr('action');form.setAttribute('target',id);if(!method){form.setAttribute('method','POST');}
if(a!=s.url){form.setAttribute('action',s.url);}
if(!s.skipEncodingOverride&&(!method||/post/i.test(method))){$form.attr({encoding:'multipart/form-data',enctype:'multipart/form-data'});}
if(s.timeout){timeoutHandle=setTimeout(function(){timedOut=true;cb(CLIENT_TIMEOUT_ABORT);},s.timeout);}
function checkState(){try{var state=getDoc(io).readyState;log('state = '+state);if(state.toLowerCase()=='uninitialized')
setTimeout(checkState,50);}
catch(e){log('Server abort: ',e,' (',e.name,')');cb(SERVER_ABORT);timeoutHandle&&clearTimeout(timeoutHandle);timeoutHandle=undefined;}}
var extraInputs=[];try{if(s.extraData){for(var n in s.extraData){extraInputs.push($('<input type="hidden" name="'+n+'" />').attr('value',s.extraData[n]).appendTo(form)[0]);}}
if(!s.iframeTarget){$io.appendTo('body');io.attachEvent?io.attachEvent('onload',cb):io.addEventListener('load',cb,false);}
setTimeout(checkState,15);form.submit();}
finally{form.setAttribute('action',a);if(t){form.setAttribute('target',t);}else{$form.removeAttr('target');}
$(extraInputs).remove();}}
if(s.forceSync){doSubmit();}
else{setTimeout(doSubmit,10);}
var data,doc,domCheckCount=50,callbackProcessed;function cb(e){if(xhr.aborted||callbackProcessed){return;}
try{doc=getDoc(io);}
catch(ex){log('cannot access response document: ',ex);e=SERVER_ABORT;}
if(e===CLIENT_TIMEOUT_ABORT&&xhr){xhr.abort('timeout');return;}
else if(e==SERVER_ABORT&&xhr){xhr.abort('server abort');return;}
if(!doc||doc.location.href==s.iframeSrc){if(!timedOut)
return;}
io.detachEvent?io.detachEvent('onload',cb):io.removeEventListener('load',cb,false);var status='success',errMsg;try{if(timedOut){throw'timeout';}
var isXml=s.dataType=='xml'||doc.XMLDocument||$.isXMLDoc(doc);log('isXml='+isXml);if(!isXml&&window.opera&&(doc.body==null||doc.body.innerHTML=='')){if(--domCheckCount){log('requeing onLoad callback, DOM not available');setTimeout(cb,250);return;}}
var docRoot=doc.body?doc.body:doc.documentElement;xhr.responseText=docRoot?docRoot.innerHTML:null;xhr.responseXML=doc.XMLDocument?doc.XMLDocument:doc;if(isXml)
s.dataType='xml';xhr.getResponseHeader=function(header){var headers={'content-type':s.dataType};return headers[header];};if(docRoot){xhr.status=Number(docRoot.getAttribute('status'))||xhr.status;xhr.statusText=docRoot.getAttribute('statusText')||xhr.statusText;}
var dt=s.dataType||'';var scr=/(json|script|text)/.test(dt.toLowerCase());if(scr||s.textarea){var ta=doc.getElementsByTagName('textarea')[0];if(ta){xhr.responseText=ta.value;xhr.status=Number(ta.getAttribute('status'))||xhr.status;xhr.statusText=ta.getAttribute('statusText')||xhr.statusText;}
else if(scr){var pre=doc.getElementsByTagName('pre')[0];var b=doc.getElementsByTagName('body')[0];if(pre){xhr.responseText=pre.textContent?pre.textContent:pre.innerHTML;}
else if(b){xhr.responseText=b.innerHTML;}}}
else if(s.dataType=='xml'&&!xhr.responseXML&&xhr.responseText!=null){xhr.responseXML=toXml(xhr.responseText);}
try{data=httpData(xhr,s.dataType,s);}
catch(e){status='parsererror';xhr.error=errMsg=(e||status);}}
catch(e){log('error caught: ',e);status='error';xhr.error=errMsg=(e||status);}
if(xhr.aborted){log('upload aborted');status=null;}
if(xhr.status){status=(xhr.status>=200&&xhr.status<300||xhr.status===304)?'success':'error';}
if(status==='success'){s.success&&s.success.call(s.context,data,'success',xhr);g&&$.event.trigger("ajaxSuccess",[xhr,s]);}
else if(status){if(errMsg==undefined)
errMsg=xhr.statusText;s.error&&s.error.call(s.context,xhr,status,errMsg);g&&$.event.trigger("ajaxError",[xhr,s,errMsg]);}
g&&$.event.trigger("ajaxComplete",[xhr,s]);if(g&&!--$.active){$.event.trigger("ajaxStop");}
s.complete&&s.complete.call(s.context,xhr,status);callbackProcessed=true;if(s.timeout)
clearTimeout(timeoutHandle);setTimeout(function(){if(!s.iframeTarget)
$io.remove();xhr.responseXML=null;},100);}
var toXml=$.parseXML||function(s,doc){if(window.ActiveXObject){doc=new ActiveXObject('Microsoft.XMLDOM');doc.async='false';doc.loadXML(s);}
else{doc=(new DOMParser()).parseFromString(s,'text/xml');}
return(doc&&doc.documentElement&&doc.documentElement.nodeName!='parsererror')?doc:null;};var parseJSON=$.parseJSON||function(s){return window['eval']('('+s+')');};var httpData=function(xhr,type,s){var ct=xhr.getResponseHeader('content-type')||'',xml=type==='xml'||!type&&ct.indexOf('xml')>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.nodeName==='parsererror'){$.error&&$.error('parsererror');}
if(s&&s.dataFilter){data=s.dataFilter(data,type);}
if(typeof data==='string'){if(type==='json'||!type&&ct.indexOf('json')>=0){data=parseJSON(data);}else if(type==="script"||!type&&ct.indexOf("javascript")>=0){$.globalEval(data);}}
return data;};}};$.fn.ajaxForm=function(options){if(this.length===0){var o={s:this.selector,c:this.context};if(!$.isReady&&o.s){log('DOM not ready, queuing ajaxForm');$(function(){$(o.s,o.c).ajaxForm(options);});return this;}
log('terminating; zero elements found by selector'+($.isReady?'':' (DOM not ready)'));return this;}
return this.ajaxFormUnbind().bind('submit.form-plugin',function(e){if(!e.isDefaultPrevented()){e.preventDefault();$(this).ajaxSubmit(options);}}).bind('click.form-plugin',function(e){var target=e.target;var $el=$(target);if(!($el.is(":submit,input:image"))){var t=$el.closest(':submit');if(t.length==0){return;}
target=t[0];}
var form=this;form.clk=target;if(target.type=='image'){if(e.offsetX!=undefined){form.clk_x=e.offsetX;form.clk_y=e.offsetY;}else if(typeof $.fn.offset=='function'){var offset=$el.offset();form.clk_x=e.pageX-offset.left;form.clk_y=e.pageY-offset.top;}else{form.clk_x=e.pageX-target.offsetLeft;form.clk_y=e.pageY-target.offsetTop;}}
setTimeout(function(){form.clk=form.clk_x=form.clk_y=null;},100);});};$.fn.ajaxFormUnbind=function(){return this.unbind('submit.form-plugin click.form-plugin');};$.fn.formToArray=function(semantic){var a=[];if(this.length===0){return a;}
var form=this[0];var els=semantic?form.getElementsByTagName('*'):form.elements;if(!els){return a;}
var i,j,n,v,el,max,jmax;for(i=0,max=els.length;i<max;i++){el=els[i];n=el.name;if(!n){continue;}
if(semantic&&form.clk&&el.type=="image"){if(!el.disabled&&form.clk==el){a.push({name:n,value:$(el).val()});a.push({name:n+'.x',value:form.clk_x},{name:n+'.y',value:form.clk_y});}
continue;}
v=$.fieldValue(el,true);if(v&&v.constructor==Array){for(j=0,jmax=v.length;j<jmax;j++){a.push({name:n,value:v[j]});}}
else if(v!==null&&typeof v!='undefined'){a.push({name:n,value:v});}}
if(!semantic&&form.clk){var $input=$(form.clk),input=$input[0];n=input.name;if(n&&!input.disabled&&input.type=='image'){a.push({name:n,value:$input.val()});a.push({name:n+'.x',value:form.clk_x},{name:n+'.y',value:form.clk_y});}}
return a;};$.fn.formSerialize=function(semantic){return $.param(this.formToArray(semantic));};$.fn.fieldSerialize=function(successful){var a=[];this.each(function(){var n=this.name;if(!n){return;}
var v=$.fieldValue(this,successful);if(v&&v.constructor==Array){for(var i=0,max=v.length;i<max;i++){a.push({name:n,value:v[i]});}}
else if(v!==null&&typeof v!='undefined'){a.push({name:this.name,value:v});}});return $.param(a);};$.fn.fieldValue=function(successful){for(var val=[],i=0,max=this.length;i<max;i++){var el=this[i];var v=$.fieldValue(el,successful);if(v===null||typeof v=='undefined'||(v.constructor==Array&&!v.length)){continue;}
v.constructor==Array?$.merge(val,v):val.push(v);}
return val;};$.fieldValue=function(el,successful){var n=el.name,t=el.type,tag=el.tagName.toLowerCase();if(successful===undefined){successful=true;}
if(successful&&(!n||el.disabled||t=='reset'||t=='button'||(t=='checkbox'||t=='radio')&&!el.checked||(t=='submit'||t=='image')&&el.form&&el.form.clk!=el||tag=='select'&&el.selectedIndex==-1)){return null;}
if(tag=='select'){var index=el.selectedIndex;if(index<0){return null;}
var a=[],ops=el.options;var one=(t=='select-one');var max=(one?index+1:ops.length);for(var i=(one?index:0);i<max;i++){var op=ops[i];if(op.selected){var v=op.value;if(!v){v=(op.attributes&&op.attributes['value']&&!(op.attributes['value'].specified))?op.text:op.value;}
if(one){return v;}
a.push(v);}}
return a;}
return $(el).val();};$.fn.clearForm=function(){return this.each(function(){$('input,select,textarea',this).clearFields();});};$.fn.clearFields=$.fn.clearInputs=function(){var re=/^(?:color|date|datetime|email|month|number|password|range|search|tel|text|time|url|week)$/i;return this.each(function(){var t=this.type,tag=this.tagName.toLowerCase();if(re.test(t)||tag=='textarea'){this.value='';}
else if(t=='checkbox'||t=='radio'){this.checked=false;}
else if(tag=='select'){this.selectedIndex=-1;}});};$.fn.resetForm=function(){return this.each(function(){if(typeof this.reset=='function'||(typeof this.reset=='object'&&!this.reset.nodeType)){this.reset();}});};$.fn.enable=function(b){if(b===undefined){b=true;}
return this.each(function(){this.disabled=!b;});};$.fn.selected=function(select){if(select===undefined){select=true;}
return this.each(function(){var t=this.type;if(t=='checkbox'||t=='radio'){this.checked=select;}
else if(this.tagName.toLowerCase()=='option'){var $sel=$(this).parent('select');if(select&&$sel[0]&&$sel[0].type=='select-one'){$sel.find('option').selected(false);}
this.selected=select;}});};function log(){var msg='[jquery.form] '+Array.prototype.join.call(arguments,'');if(window.console&&window.console.log){window.console.log(msg);}
else if(window.opera&&window.opera.postError){window.opera.postError(msg);}};})(jQuery);;(function($){$(function(){try{if(typeof _wpcf7=='undefined'||_wpcf7===null)
_wpcf7={};_wpcf7=$.extend({cached:0},_wpcf7);$('div.wpcf7 > form').ajaxForm({beforeSubmit:function(formData,jqForm,options){jqForm.wpcf7ClearResponseOutput();jqForm.find('img.ajax-loader').css({visibility:'visible'});return true;},beforeSerialize:function(jqForm,options){jqForm.find('.wpcf7-use-title-as-watermark.watermark').each(function(i,n){$(n).val('');});return true;},data:{'_wpcf7_is_ajax_call':1},dataType:'json',success:function(data){var ro=$(data.into).find('div.wpcf7-response-output');$(data.into).wpcf7ClearResponseOutput();if(data.invalids){$.each(data.invalids,function(i,n){$(data.into).find(n.into).wpcf7NotValidTip(n.message);});ro.addClass('wpcf7-validation-errors');}
if(data.captcha)
$(data.into).wpcf7RefillCaptcha(data.captcha);if(data.quiz)
$(data.into).wpcf7RefillQuiz(data.quiz);if(1==data.spam)
ro.addClass('wpcf7-spam-blocked');if(1==data.mailSent){$(data.into).find('form').resetForm().clearForm();ro.addClass('wpcf7-mail-sent-ok');if(data.onSentOk)
$.each(data.onSentOk,function(i,n){eval(n)});}else{ro.addClass('wpcf7-mail-sent-ng');}
if(data.onSubmit)
$.each(data.onSubmit,function(i,n){eval(n)});$(data.into).find('.wpcf7-use-title-as-watermark.watermark').each(function(i,n){$(n).val($(n).attr('title'));});ro.append(data.message).slideDown('fast');}});$('div.wpcf7 > form').each(function(i,n){if(_wpcf7.cached)
$(n).wpcf7OnloadRefill();$(n).wpcf7ToggleSubmit();$(n).find('.wpcf7-acceptance').click(function(){$(n).wpcf7ToggleSubmit();});$(n).find('.wpcf7-exclusive-checkbox').each(function(i,n){$(n).find('input:checkbox').click(function(){$(n).find('input:checkbox').not(this).removeAttr('checked');});});$(n).find('.wpcf7-use-title-as-watermark').each(function(i,n){var input=$(n);input.val(input.attr('title'));input.addClass('watermark');input.focus(function(){if($(this).hasClass('watermark'))
$(this).val('').removeClass('watermark');});input.blur(function(){if(''==$(this).val())
$(this).val($(this).attr('title')).addClass('watermark');});});});}catch(e){}});$.fn.wpcf7ToggleSubmit=function(){return this.each(function(){var form=$(this);if(this.tagName.toLowerCase()!='form')
form=$(this).find('form').first();if(form.hasClass('wpcf7-acceptance-as-validation'))
return;var submit=form.find('input:submit');if(!submit.length)return;var acceptances=form.find('input:checkbox.wpcf7-acceptance');if(!acceptances.length)return;submit.removeAttr('disabled');acceptances.each(function(i,n){n=$(n);if(n.hasClass('wpcf7-invert')&&n.is(':checked')||!n.hasClass('wpcf7-invert')&&!n.is(':checked'))
submit.attr('disabled','disabled');});});};$.fn.wpcf7NotValidTip=function(message){return this.each(function(){var into=$(this);into.append('<span class="wpcf7-not-valid-tip">'+message+'</span>');$('span.wpcf7-not-valid-tip').mouseover(function(){$(this).fadeOut('fast');});into.find(':input').mouseover(function(){into.find('.wpcf7-not-valid-tip').not(':hidden').fadeOut('fast');});into.find(':input').focus(function(){into.find('.wpcf7-not-valid-tip').not(':hidden').fadeOut('fast');});});};$.fn.wpcf7OnloadRefill=function(){return this.each(function(){var url=$(this).attr('action');if(0<url.indexOf('#'))
url=url.substr(0,url.indexOf('#'));var id=$(this).find('input[name="_wpcf7"]').val();var unitTag=$(this).find('input[name="_wpcf7_unit_tag"]').val();$.getJSON(url,{_wpcf7_is_ajax_call:1,_wpcf7:id},function(data){if(data&&data.captcha)
$('#'+unitTag).wpcf7RefillCaptcha(data.captcha);if(data&&data.quiz)
$('#'+unitTag).wpcf7RefillQuiz(data.quiz);});});};$.fn.wpcf7RefillCaptcha=function(captcha){return this.each(function(){var form=$(this);$.each(captcha,function(i,n){form.find(':input[name="'+i+'"]').clearFields();form.find('img.wpcf7-captcha-'+i).attr('src',n);var match=/([0-9]+)\.(png|gif|jpeg)$/.exec(n);form.find('input:hidden[name="_wpcf7_captcha_challenge_'+i+'"]').attr('value',match[1]);});});};$.fn.wpcf7RefillQuiz=function(quiz){return this.each(function(){var form=$(this);$.each(quiz,function(i,n){form.find(':input[name="'+i+'"]').clearFields();form.find(':input[name="'+i+'"]').siblings('span.wpcf7-quiz-label').text(n[0]);form.find('input:hidden[name="_wpcf7_quiz_answer_'+i+'"]').attr('value',n[1]);});});};$.fn.wpcf7ClearResponseOutput=function(){return this.each(function(){$(this).find('div.wpcf7-response-output').hide().empty().removeClass('wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked');$(this).find('span.wpcf7-not-valid-tip').remove();$(this).find('img.ajax-loader').css({visibility:'hidden'});});};})(jQuery);;var poll_id=0,poll_answer_id="",is_being_voted=false;pollsL10n.show_loading=parseInt(pollsL10n.show_loading);pollsL10n.show_fading=parseInt(pollsL10n.show_fading);function poll_vote(a){if(is_being_voted)alert(pollsL10n.text_wait);else{set_is_being_voted(true);poll_id=a;poll_answer_id="";poll_multiple_ans_count=poll_multiple_ans=0;if(jQuery("#poll_multiple_ans_"+poll_id).length)poll_multiple_ans=parseInt(jQuery("#poll_multiple_ans_"+poll_id).val());jQuery("#polls_form_"+poll_id+" input:checkbox, #polls_form_"+poll_id+" input:radio").each(function(){if(jQuery(this).is(":checked"))if(poll_multiple_ans>0){poll_answer_id=jQuery(this).val()+","+poll_answer_id;poll_multiple_ans_count++}else poll_answer_id=parseInt(jQuery(this).val())});if(poll_multiple_ans>0)if(poll_multiple_ans_count>0&&poll_multiple_ans_count<=poll_multiple_ans){poll_answer_id=poll_answer_id.substring(0,poll_answer_id.length-1);poll_process()}else if(poll_multiple_ans_count==0){set_is_being_voted(false);alert(pollsL10n.text_valid)}else{set_is_being_voted(false);alert(pollsL10n.text_multiple+" "+poll_multiple_ans)}else if(poll_answer_id>0)poll_process();else{set_is_being_voted(false);alert(pollsL10n.text_valid)}}}
function poll_process(){if(pollsL10n.show_fading)jQuery("#polls-"+poll_id).fadeTo("def",0,function(){pollsL10n.show_loading&&jQuery("#polls-"+poll_id+"-loading").show();jQuery.ajax({type:"POST",url:pollsL10n.ajax_url,data:"vote=true&poll_id="+poll_id+"&poll_"+poll_id+"="+poll_answer_id,cache:false,success:poll_process_success})});else{pollsL10n.show_loading&&jQuery("#polls-"+poll_id+"-loading").show();jQuery.ajax({type:"POST",url:pollsL10n.ajax_url,data:"vote=true&poll_id="+poll_id+"&poll_"+poll_id+"="+poll_answer_id,cache:false,success:poll_process_success})}}
function poll_result(a){if(is_being_voted)alert(pollsL10n.text_wait);else{set_is_being_voted(true);poll_id=a;if(pollsL10n.show_fading)jQuery("#polls-"+poll_id).fadeTo("def",0,function(){pollsL10n.show_loading&&jQuery("#polls-"+poll_id+"-loading").show();jQuery.ajax({type:"GET",url:pollsL10n.ajax_url,data:"pollresult="+poll_id,cache:false,success:poll_process_success})});else{pollsL10n.show_loading&&jQuery("#polls-"+poll_id+"-loading").show();jQuery.ajax({type:"GET",url:pollsL10n.ajax_url,data:"pollresult="+
poll_id,cache:false,success:poll_process_success})}}}
function poll_booth(a){if(is_being_voted)alert(pollsL10n.text_wait);else{set_is_being_voted(true);poll_id=a;if(pollsL10n.show_fading)jQuery("#polls-"+poll_id).fadeTo("def",0,function(){pollsL10n.show_loading&&jQuery("#polls-"+poll_id+"-loading").show();jQuery.ajax({type:"GET",url:pollsL10n.ajax_url,data:"pollbooth="+poll_id,cache:false,success:poll_process_success})});else{pollsL10n.show_loading&&jQuery("#polls-"+poll_id+"-loading").show();jQuery.ajax({type:"GET",url:pollsL10n.ajax_url,data:"pollbooth="+
poll_id,cache:false,success:poll_process_success})}}}function poll_process_success(a){jQuery("#polls-"+poll_id).replaceWith(a);pollsL10n.show_loading&&jQuery("#polls-"+poll_id+"-loading").hide();pollsL10n.show_fading?jQuery("#polls-"+poll_id).fadeTo("def",1,function(){set_is_being_voted(false)}):set_is_being_voted(false)}function set_is_being_voted(a){is_being_voted=a};
