/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();;
// $Id: drupal.js,v 1.41.2.4 2009/07/21 08:59:10 goba Exp $

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
// $Id: panels.js,v 1.2.4.1 2009/10/05 22:40:35 merlinofchaos Exp $

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

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

  $(Drupal.Panels.autoAttach);
})(jQuery);
;
// $Id: googleanalytics.js,v 1.9.2.4 2010/09/19 11:39:20 hass Exp $

$(document).ready(function() {

  // Attach onclick event to document only and catch clicks on all elements.
  $(document.body).click(function(event) {
    // Catch only the first parent link of a clicked element.
    $(event.target).parents("a:first,area:first").andSelf().filter("a,area").each(function() {

      var ga = Drupal.settings.googleanalytics;
      // Expression to check for absolute internal links.
      var isInternal = new RegExp("^(https?):\/\/" + window.location.host, "i");
      // Expression to check for special links like gotwo.module /go/* links.
      var isInternalSpecial = new RegExp("(\/go\/.*)$", "i");
      // Expression to check for download links.
      var isDownload = new RegExp("\\.(" + ga.trackDownloadExtensions + ")$", "i");

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          // External link clicked.
          _gaq.push(["_trackEvent", "Outgoing links", "Click", this.href]);
        }
      }

    });
  });
});
;
/* $Id: lightbox.js,v 1.5.2.6.2.136 2010/09/24 08:39:40 snpower Exp $ */

/**
 * jQuery Lightbox
 * @author
 *   Stella Power, <http://drupal.org/user/66894>
 *
 * Based on Lightbox v2.03.3 by Lokesh Dhakar
 * <http://www.huddletogether.com/projects/lightbox2/>
 * Also partially based on the jQuery Lightbox by Warren Krewenki
 *   <http://warren.mesozen.com>
 *
 * Permission has been granted to Mark Ashmead & other Drupal Lightbox2 module
 * maintainers to distribute this file via Drupal.org
 * Under GPL license.
 *
 * Slideshow, iframe and video functionality added by Stella Power.
 */

var Lightbox = {
  auto_modal : false,
  overlayOpacity : 0.8, // Controls transparency of shadow overlay.
  overlayColor : '000', // Controls colour of shadow overlay.
  disableCloseClick : true,
  // Controls the order of the lightbox resizing animation sequence.
  resizeSequence: 0, // 0: simultaneous, 1: width then height, 2: height then width.
  resizeSpeed: 'normal', // Controls the speed of the lightbox resizing animation.
  fadeInSpeed: 'normal', // Controls the speed of the image appearance.
  slideDownSpeed: 'slow', // Controls the speed of the image details appearance.
  minWidth: 240,
  borderSize : 10,
  boxColor : 'fff',
  fontColor : '000',
  topPosition : '',
  infoHeight: 20,
  alternative_layout : false,
  imageArray : [],
  imageNum : null,
  total : 0,
  activeImage : null,
  inprogress : false,
  disableResize : false,
  disableZoom : false,
  isZoomedIn : false,
  rtl : false,
  loopItems : false,
  keysClose : ['c', 'x', 27],
  keysPrevious : ['p', 37],
  keysNext : ['n', 39],
  keysZoom : ['z'],
  keysPlayPause : [32],

  // Slideshow options.
  slideInterval : 5000, // In milliseconds.
  showPlayPause : true,
  autoStart : true,
  autoExit : true,
  pauseOnNextClick : false, // True to pause the slideshow when the "Next" button is clicked.
  pauseOnPrevClick : true, // True to pause the slideshow when the "Prev" button is clicked.
  slideIdArray : [],
  slideIdCount : 0,
  isSlideshow : false,
  isPaused : false,
  loopSlides : false,

  // Iframe options.
  isLightframe : false,
  iframe_width : 600,
  iframe_height : 400,
  iframe_border : 1,

  // Video and modal options.
  enableVideo : false,
  flvPlayer : '/flvplayer.swf',
  flvFlashvars : '',
  isModal : false,
  isVideo : false,
  videoId : false,
  modalWidth : 400,
  modalHeight : 400,
  modalHTML : null,


  // initialize()
  // Constructor runs on completion of the DOM loading.
  // The function inserts html at the bottom of the page which is used
  // to display the shadow overlay and the image container.
  initialize: function() {

    var s = Drupal.settings.lightbox2;
    Lightbox.overlayOpacity = s.overlay_opacity;
    Lightbox.overlayColor = s.overlay_color;
    Lightbox.disableCloseClick = s.disable_close_click;
    Lightbox.resizeSequence = s.resize_sequence;
    Lightbox.resizeSpeed = s.resize_speed;
    Lightbox.fadeInSpeed = s.fade_in_speed;
    Lightbox.slideDownSpeed = s.slide_down_speed;
    Lightbox.borderSize = s.border_size;
    Lightbox.boxColor = s.box_color;
    Lightbox.fontColor = s.font_color;
    Lightbox.topPosition = s.top_position;
    Lightbox.rtl = s.rtl;
    Lightbox.loopItems = s.loop_items;
    Lightbox.keysClose = s.keys_close.split(" ");
    Lightbox.keysPrevious = s.keys_previous.split(" ");
    Lightbox.keysNext = s.keys_next.split(" ");
    Lightbox.keysZoom = s.keys_zoom.split(" ");
    Lightbox.keysPlayPause = s.keys_play_pause.split(" ");
    Lightbox.disableResize = s.disable_resize;
    Lightbox.disableZoom = s.disable_zoom;
    Lightbox.slideInterval = s.slideshow_interval;
    Lightbox.showPlayPause = s.show_play_pause;
    Lightbox.showCaption = s.show_caption;
    Lightbox.autoStart = s.slideshow_automatic_start;
    Lightbox.autoExit = s.slideshow_automatic_exit;
    Lightbox.pauseOnNextClick = s.pause_on_next_click;
    Lightbox.pauseOnPrevClick = s.pause_on_previous_click;
    Lightbox.loopSlides = s.loop_slides;
    Lightbox.alternative_layout = s.use_alt_layout;
    Lightbox.iframe_width = s.iframe_width;
    Lightbox.iframe_height = s.iframe_height;
    Lightbox.iframe_border = s.iframe_border;
    Lightbox.enableVideo = s.enable_video;
    if (s.enable_video) {
      Lightbox.flvPlayer = s.flvPlayer;
      Lightbox.flvFlashvars = s.flvFlashvars;
    }

    // Make the lightbox divs.
    var layout_class = (s.use_alt_layout ? 'lightbox2-alt-layout' : 'lightbox2-orig-layout');
    var output = '<div id="lightbox2-overlay" style="display: none;"></div>\
      <div id="lightbox" style="display: none;" class="' + layout_class + '">\
        <div id="outerImageContainer"></div>\
        <div id="imageDataContainer" class="clearfix">\
          <div id="imageData"></div>\
        </div>\
      </div>';
    var loading = '<div id="loading"><a href="#" id="loadingLink"></a></div>';
    var modal = '<div id="modalContainer" style="display: none;"></div>';
    var frame = '<div id="frameContainer" style="display: none;"></div>';
    var imageContainer = '<div id="imageContainer" style="display: none;"></div>';
    var details = '<div id="imageDetails"></div>';
    var bottomNav = '<div id="bottomNav"></div>';
    var image = '<img id="lightboxImage" alt="" />';
    var hoverNav = '<div id="hoverNav"><a id="prevLink" href="#"></a><a id="nextLink" href="#"></a></div>';
    var frameNav = '<div id="frameHoverNav"><a id="framePrevLink" href="#"></a><a id="frameNextLink" href="#"></a></div>';
    var hoverNav = '<div id="hoverNav"><a id="prevLink" title="' + Drupal.t('Previous') + '" href="#"></a><a id="nextLink" title="' + Drupal.t('Next') + '" href="#"></a></div>';
    var frameNav = '<div id="frameHoverNav"><a id="framePrevLink" title="' + Drupal.t('Previous') + '" href="#"></a><a id="frameNextLink" title="' + Drupal.t('Next') + '" href="#"></a></div>';
    var caption = '<span id="caption"></span>';
    var numberDisplay = '<span id="numberDisplay"></span>';
    var close = '<a id="bottomNavClose" title="' + Drupal.t('Close') + '" href="#"></a>';
    var zoom = '<a id="bottomNavZoom" href="#"></a>';
    var zoomOut = '<a id="bottomNavZoomOut" href="#"></a>';
    var pause = '<a id="lightshowPause" title="' + Drupal.t('Pause Slideshow') + '" href="#" style="display: none;"></a>';
    var play = '<a id="lightshowPlay" title="' + Drupal.t('Play Slideshow') + '" href="#" style="display: none;"></a>';

    $("body").append(output);
    $('#outerImageContainer').append(modal + frame + imageContainer + loading);
    if (!s.use_alt_layout) {
      $('#imageContainer').append(image + hoverNav);
      $('#imageData').append(details + bottomNav);
      $('#imageDetails').append(caption + numberDisplay);
      $('#bottomNav').append(frameNav + close + zoom + zoomOut + pause + play);
    }
    else {
      $('#outerImageContainer').append(bottomNav);
      $('#imageContainer').append(image);
      $('#bottomNav').append(close + zoom + zoomOut);
      $('#imageData').append(hoverNav + details);
      $('#imageDetails').append(caption + numberDisplay + pause + play);
    }

    // Setup onclick handlers.
    if (Lightbox.disableCloseClick) {
      $('#lightbox2-overlay').click(function() { Lightbox.end(); return false; } ).hide();
    }
    $('#loadingLink, #bottomNavClose').click(function() { Lightbox.end('forceClose'); return false; } );
    $('#prevLink, #framePrevLink').click(function() { Lightbox.changeData(Lightbox.activeImage - 1); return false; } );
    $('#nextLink, #frameNextLink').click(function() { Lightbox.changeData(Lightbox.activeImage + 1); return false; } );
    $('#bottomNavZoom').click(function() { Lightbox.changeData(Lightbox.activeImage, true); return false; } );
    $('#bottomNavZoomOut').click(function() { Lightbox.changeData(Lightbox.activeImage, false); return false; } );
    $('#lightshowPause').click(function() { Lightbox.togglePlayPause("lightshowPause", "lightshowPlay"); return false; } );
    $('#lightshowPlay').click(function() { Lightbox.togglePlayPause("lightshowPlay", "lightshowPause"); return false; } );

    // Fix positioning.
    $('#prevLink, #nextLink, #framePrevLink, #frameNextLink').css({ 'paddingTop': Lightbox.borderSize + 'px'});
    $('#imageContainer, #frameContainer, #modalContainer').css({ 'padding': Lightbox.borderSize + 'px'});
    $('#outerImageContainer, #imageDataContainer, #bottomNavClose').css({'backgroundColor': '#' + Lightbox.boxColor, 'color': '#'+Lightbox.fontColor});
    if (Lightbox.alternative_layout) {
      $('#bottomNavZoom, #bottomNavZoomOut').css({'bottom': Lightbox.borderSize + 'px', 'right': Lightbox.borderSize + 'px'});
    }
    else if (Lightbox.rtl == 1 && $.browser.msie) {
      $('#bottomNavZoom, #bottomNavZoomOut').css({'left': '0px'});
    }

    // Force navigation links to always be displayed
    if (s.force_show_nav) {
      $('#prevLink, #nextLink').addClass("force_show_nav");
    }

  },

  // initList()
  // Loops through anchor tags looking for 'lightbox', 'lightshow' and
  // 'lightframe', etc, references and applies onclick events to appropriate
  // links. You can rerun after dynamically adding images w/ajax.
  initList : function(context) {

    if (context == undefined || context == null) {
      context = document;
    }

    // Attach lightbox to any links with rel 'lightbox', 'lightshow' or
    // 'lightframe', etc.
    $("a[rel^='lightbox']:not(.lightbox-processed), area[rel^='lightbox']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, false, false, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("a[rel^='lightshow']:not(.lightbox-processed), area[rel^='lightshow']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, true, false, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("a[rel^='lightframe']:not(.lightbox-processed), area[rel^='lightframe']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, false, true, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    if (Lightbox.enableVideo) {
      $("a[rel^='lightvideo']:not(.lightbox-processed), area[rel^='lightvideo']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
        if (Lightbox.disableCloseClick) {
          $('#lightbox').unbind('click');
          $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
        }
        Lightbox.start(this, false, false, true, false);
        if (e.preventDefault) { e.preventDefault(); }
        return false;
      });
    }
    $("a[rel^='lightmodal']:not(.lightbox-processed), area[rel^='lightmodal']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      $('#lightbox').unbind('click');
      // Add classes from the link to the lightbox div - don't include lightbox-processed
      $('#lightbox').addClass($(this).attr('class'));
      $('#lightbox').removeClass('lightbox-processed');
      Lightbox.start(this, false, false, false, true);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("#lightboxAutoModal:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      Lightbox.auto_modal = true;
      $('#lightbox').unbind('click');
      Lightbox.start(this, false, false, false, true);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
  },

  // start()
  // Display overlay and lightbox. If image is part of a set, add siblings to
  // imageArray.
  start: function(imageLink, slideshow, lightframe, lightvideo, lightmodal) {

    Lightbox.isPaused = !Lightbox.autoStart;

    // Replaces hideSelectBoxes() and hideFlash() calls in original lightbox2.
    Lightbox.toggleSelectsFlash('hide');

    // Stretch overlay to fill page and fade in.
    var arrayPageSize = Lightbox.getPageSize();
    $("#lightbox2-overlay").hide().css({
      'width': '100%',
      'zIndex': '10090',
      'height': arrayPageSize[1] + 'px',
      'backgroundColor' : '#' + Lightbox.overlayColor
    });
    // Detect OS X FF2 opacity + flash issue.
    if (lightvideo && this.detectMacFF2()) {
      $("#lightbox2-overlay").removeClass("overlay_default");
      $("#lightbox2-overlay").addClass("overlay_macff2");
      $("#lightbox2-overlay").css({'opacity' : null});
    }
    else {
      $("#lightbox2-overlay").removeClass("overlay_macff2");
      $("#lightbox2-overlay").addClass("overlay_default");
      $("#lightbox2-overlay").css({'opacity' : Lightbox.overlayOpacity});
    }
    $("#lightbox2-overlay").fadeIn(Lightbox.fadeInSpeed);


    Lightbox.isSlideshow = slideshow;
    Lightbox.isLightframe = lightframe;
    Lightbox.isVideo = lightvideo;
    Lightbox.isModal = lightmodal;
    Lightbox.imageArray = [];
    Lightbox.imageNum = 0;

    var anchors = $(imageLink.tagName);
    var anchor = null;
    var rel_parts = Lightbox.parseRel(imageLink);
    var rel = rel_parts["rel"];
    var rel_group = rel_parts["group"];
    var title = (rel_parts["title"] ? rel_parts["title"] : imageLink.title);
    var rel_style = null;
    var i = 0;

    if (rel_parts["flashvars"]) {
      Lightbox.flvFlashvars = Lightbox.flvFlashvars + '&' + rel_parts["flashvars"];
    }

    // Set the title for image alternative text.
    var alt = imageLink.title;
    if (!alt) {
      var img = $(imageLink).find("img");
      if (img && $(img).attr("alt")) {
        alt = $(img).attr("alt");
      }
      else {
        alt = title;
      }
    }

    if ($(imageLink).attr('id') == 'lightboxAutoModal') {
      rel_style = rel_parts["style"];
      Lightbox.imageArray.push(['#lightboxAutoModal > *', title, alt, rel_style, 1]);
    }
    else {
      // Handle lightbox images with no grouping.
      if ((rel == 'lightbox' || rel == 'lightshow') && !rel_group) {
        Lightbox.imageArray.push([imageLink.href, title, alt]);
      }

      // Handle other items with no grouping.
      else if (!rel_group) {
        rel_style = rel_parts["style"];
        Lightbox.imageArray.push([imageLink.href, title, alt, rel_style]);
      }

      // Handle grouped items.
      else {

        // Loop through anchors and add them to imageArray.
        for (i = 0; i < anchors.length; i++) {
          anchor = anchors[i];
          if (anchor.href && typeof(anchor.href) == "string" && $(anchor).attr('rel')) {
            var rel_data = Lightbox.parseRel(anchor);
            var anchor_title = (rel_data["title"] ? rel_data["title"] : anchor.title);
            img_alt = anchor.title;
            if (!img_alt) {
              var anchor_img = $(anchor).find("img");
              if (anchor_img && $(anchor_img).attr("alt")) {
                img_alt = $(anchor_img).attr("alt");
              }
              else {
                img_alt = title;
              }
            }
            if (rel_data["rel"] == rel) {
              if (rel_data["group"] == rel_group) {
                if (Lightbox.isLightframe || Lightbox.isModal || Lightbox.isVideo) {
                  rel_style = rel_data["style"];
                }
                Lightbox.imageArray.push([anchor.href, anchor_title, img_alt, rel_style]);
              }
            }
          }
        }

        // Remove duplicates.
        for (i = 0; i < Lightbox.imageArray.length; i++) {
          for (j = Lightbox.imageArray.length-1; j > i; j--) {
            if (Lightbox.imageArray[i][0] == Lightbox.imageArray[j][0]) {
              Lightbox.imageArray.splice(j,1);
            }
          }
        }
        while (Lightbox.imageArray[Lightbox.imageNum][0] != imageLink.href) {
          Lightbox.imageNum++;
        }
      }
    }

    if (Lightbox.isSlideshow && Lightbox.showPlayPause && Lightbox.isPaused) {
      $('#lightshowPlay').show();
      $('#lightshowPause').hide();
    }

    // Calculate top and left offset for the lightbox.
    var arrayPageScroll = Lightbox.getPageScroll();
    var lightboxTop = arrayPageScroll[1] + (Lightbox.topPosition == '' ? (arrayPageSize[3] / 10) : Lightbox.topPosition) * 1;
    var lightboxLeft = arrayPageScroll[0];
    $('#frameContainer, #modalContainer, #lightboxImage').hide();
    $('#hoverNav, #prevLink, #nextLink, #frameHoverNav, #framePrevLink, #frameNextLink').hide();
    $('#imageDataContainer, #numberDisplay, #bottomNavZoom, #bottomNavZoomOut').hide();
    $('#outerImageContainer').css({'width': '250px', 'height': '250px'});
    $('#lightbox').css({
      'zIndex': '10500',
      'top': lightboxTop + 'px',
      'left': lightboxLeft + 'px'
    }).show();

    Lightbox.total = Lightbox.imageArray.length;
    Lightbox.changeData(Lightbox.imageNum);
  },

  // changeData()
  // Hide most elements and preload image in preparation for resizing image
  // container.
  changeData: function(imageNum, zoomIn) {

    if (Lightbox.inprogress === false) {
      if (Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) {
        if (imageNum >= Lightbox.total) imageNum = 0;
        if (imageNum < 0) imageNum = Lightbox.total - 1;
      }

      if (Lightbox.isSlideshow) {
        for (var i = 0; i < Lightbox.slideIdCount; i++) {
          window.clearTimeout(Lightbox.slideIdArray[i]);
        }
      }
      Lightbox.inprogress = true;
      Lightbox.activeImage = imageNum;

      if (Lightbox.disableResize && !Lightbox.isSlideshow) {
        zoomIn = true;
      }
      Lightbox.isZoomedIn = zoomIn;


      // Hide elements during transition.
      $('#loading').css({'zIndex': '10500'}).show();
      if (!Lightbox.alternative_layout) {
        $('#imageContainer').hide();
      }
      $('#frameContainer, #modalContainer, #lightboxImage').hide();
      $('#hoverNav, #prevLink, #nextLink, #frameHoverNav, #framePrevLink, #frameNextLink').hide();
      $('#imageDataContainer, #numberDisplay, #bottomNavZoom, #bottomNavZoomOut').hide();

      // Preload image content, but not iframe pages.
      if (!Lightbox.isLightframe && !Lightbox.isVideo && !Lightbox.isModal) {
        $("#lightbox #imageDataContainer").removeClass('lightbox2-alt-layout-data');
        imgPreloader = new Image();
        imgPreloader.onerror = function() { Lightbox.imgNodeLoadingError(this); };

        imgPreloader.onload = function() {
          var photo = document.getElementById('lightboxImage');
          photo.src = Lightbox.imageArray[Lightbox.activeImage][0];
          photo.alt = Lightbox.imageArray[Lightbox.activeImage][2];

          var imageWidth = imgPreloader.width;
          var imageHeight = imgPreloader.height;

          // Resize code.
          var arrayPageSize = Lightbox.getPageSize();
          var targ = { w:arrayPageSize[2] - (Lightbox.borderSize * 2), h:arrayPageSize[3] - (Lightbox.borderSize * 6) - (Lightbox.infoHeight * 4) - (arrayPageSize[3] / 10) };
          var orig = { w:imgPreloader.width, h:imgPreloader.height };

          // Image is very large, so show a smaller version of the larger image
          // with zoom button.
          if (zoomIn !== true) {
            var ratio = 1.0; // Shrink image with the same aspect.
            $('#bottomNavZoomOut, #bottomNavZoom').hide();
            if ((orig.w >= targ.w || orig.h >= targ.h) && orig.h && orig.w) {
              ratio = ((targ.w / orig.w) < (targ.h / orig.h)) ? targ.w / orig.w : targ.h / orig.h;
              if (!Lightbox.disableZoom && !Lightbox.isSlideshow) {
                $('#bottomNavZoom').css({'zIndex': '10500'}).show();
              }
            }

            imageWidth  = Math.floor(orig.w * ratio);
            imageHeight = Math.floor(orig.h * ratio);
          }

          else {
            $('#bottomNavZoom').hide();
            // Only display zoom out button if the image is zoomed in already.
            if ((orig.w >= targ.w || orig.h >= targ.h) && orig.h && orig.w) {
              // Only display zoom out button if not a slideshow and if the
              // buttons aren't disabled.
              if (!Lightbox.disableResize && Lightbox.isSlideshow === false && !Lightbox.disableZoom) {
                $('#bottomNavZoomOut').css({'zIndex': '10500'}).show();
              }
            }
          }

          photo.style.width = (imageWidth) + 'px';
          photo.style.height = (imageHeight) + 'px';
          Lightbox.resizeContainer(imageWidth, imageHeight);

          // Clear onLoad, IE behaves irratically with animated gifs otherwise.
          imgPreloader.onload = function() {};
        };

        imgPreloader.src = Lightbox.imageArray[Lightbox.activeImage][0];
        imgPreloader.alt = Lightbox.imageArray[Lightbox.activeImage][2];
      }

      // Set up frame size, etc.
      else if (Lightbox.isLightframe) {
        $("#lightbox #imageDataContainer").addClass('lightbox2-alt-layout-data');
        var src = Lightbox.imageArray[Lightbox.activeImage][0];
        $('#frameContainer').html('<iframe id="lightboxFrame" style="display: none;" src="'+src+'"></iframe>');

        // Enable swf support in Gecko browsers.
        if ($.browser.mozilla && src.indexOf('.swf') != -1) {
          setTimeout(function () {
            document.getElementById("lightboxFrame").src = Lightbox.imageArray[Lightbox.activeImage][0];
          }, 1000);
        }

        if (!Lightbox.iframe_border) {
          $('#lightboxFrame').css({'border': 'none'});
          $('#lightboxFrame').attr('frameborder', '0');
        }
        var iframe = document.getElementById('lightboxFrame');
        var iframeStyles = Lightbox.imageArray[Lightbox.activeImage][3];
        iframe = Lightbox.setStyles(iframe, iframeStyles);
        Lightbox.resizeContainer(parseInt(iframe.width, 10), parseInt(iframe.height, 10));
      }
      else if (Lightbox.isVideo || Lightbox.isModal) {
        $("#lightbox #imageDataContainer").addClass('lightbox2-alt-layout-data');
        var container = document.getElementById('modalContainer');
        var modalStyles = Lightbox.imageArray[Lightbox.activeImage][3];
        container = Lightbox.setStyles(container, modalStyles);
        if (Lightbox.isVideo) {
          Lightbox.modalHeight =  parseInt(container.height, 10) - 10;
          Lightbox.modalWidth =  parseInt(container.width, 10) - 10;
          Lightvideo.startVideo(Lightbox.imageArray[Lightbox.activeImage][0]);
        }
        Lightbox.resizeContainer(parseInt(container.width, 10), parseInt(container.height, 10));
      }
    }
  },

  // imgNodeLoadingError()
  imgNodeLoadingError: function(image) {
    var s = Drupal.settings.lightbox2;
    var original_image = Lightbox.imageArray[Lightbox.activeImage][0];
    if (s.display_image_size !== "") {
      original_image = original_image.replace(new RegExp("."+s.display_image_size), "");
    }
    Lightbox.imageArray[Lightbox.activeImage][0] = original_image;
    image.onerror = function() { Lightbox.imgLoadingError(image); };
    image.src = original_image;
  },

  // imgLoadingError()
  imgLoadingError: function(image) {
    var s = Drupal.settings.lightbox2;
    Lightbox.imageArray[Lightbox.activeImage][0] = s.default_image;
    image.src = s.default_image;
  },

  // resizeContainer()
  resizeContainer: function(imgWidth, imgHeight) {

    imgWidth = (imgWidth < Lightbox.minWidth ? Lightbox.minWidth : imgWidth);

    this.widthCurrent = $('#outerImageContainer').width();
    this.heightCurrent = $('#outerImageContainer').height();

    var widthNew = (imgWidth  + (Lightbox.borderSize * 2));
    var heightNew = (imgHeight  + (Lightbox.borderSize * 2));

    // Scalars based on change from old to new.
    this.xScale = ( widthNew / this.widthCurrent) * 100;
    this.yScale = ( heightNew / this.heightCurrent) * 100;

    // Calculate size difference between new and old image, and resize if
    // necessary.
    wDiff = this.widthCurrent - widthNew;
    hDiff = this.heightCurrent - heightNew;

    $('#modalContainer').css({'width': imgWidth, 'height': imgHeight});
    // Detect animation sequence.
    if (Lightbox.resizeSequence) {
      var animate1 = {width: widthNew};
      var animate2 = {height: heightNew};
      if (Lightbox.resizeSequence == 2) {
        animate1 = {height: heightNew};
        animate2 = {width: widthNew};
      }
      $('#outerImageContainer').animate(animate1, Lightbox.resizeSpeed).animate(animate2, Lightbox.resizeSpeed, 'linear', function() { Lightbox.showData(); });
    }
    // Simultaneous.
    else {
      $('#outerImageContainer').animate({'width': widthNew, 'height': heightNew}, Lightbox.resizeSpeed, 'linear', function() { Lightbox.showData(); });
    }

    // If new and old image are same size and no scaling transition is necessary
    // do a quick pause to prevent image flicker.
    if ((hDiff === 0) && (wDiff === 0)) {
      if ($.browser.msie) {
        Lightbox.pause(250);
      }
      else {
        Lightbox.pause(100);
      }
    }

    var s = Drupal.settings.lightbox2;
    if (!s.use_alt_layout) {
      $('#prevLink, #nextLink').css({'height': imgHeight + 'px'});
    }
    $('#imageDataContainer').css({'width': widthNew + 'px'});
  },

  // showData()
  // Display image and begin preloading neighbors.
  showData: function() {
    $('#loading').hide();

    if (Lightbox.isLightframe || Lightbox.isVideo || Lightbox.isModal) {
      Lightbox.updateDetails();
      if (Lightbox.isLightframe) {
        $('#frameContainer').show();
        if ($.browser.safari || Lightbox.fadeInSpeed === 0) {
          $('#lightboxFrame').css({'zIndex': '10500'}).show();
        }
        else {
          $('#lightboxFrame').css({'zIndex': '10500'}).fadeIn(Lightbox.fadeInSpeed);
        }
      }
      else {
        if (Lightbox.isVideo) {
          $("#modalContainer").html(Lightbox.modalHTML).click(function(){return false;}).css('zIndex', '10500').show();
        }
        else {
          var src = unescape(Lightbox.imageArray[Lightbox.activeImage][0]);
          if (Lightbox.imageArray[Lightbox.activeImage][4]) {
            $(src).appendTo("#modalContainer");
            $('#modalContainer').css({'zIndex': '10500'}).show();
          }
          else {
            // Use a callback to show the new image, otherwise you get flicker.
            $("#modalContainer").hide().load(src, function () {$('#modalContainer').css({'zIndex': '10500'}).show();});
          }
          $('#modalContainer').unbind('click');
        }
        // This might be needed in the Lightframe section above.
        //$('#modalContainer').css({'zIndex': '10500'}).show();
      }
    }

    // Handle display of image content.
    else {
      $('#imageContainer').show();
      if ($.browser.safari || Lightbox.fadeInSpeed === 0) {
        $('#lightboxImage').css({'zIndex': '10500'}).show();
      }
      else {
        $('#lightboxImage').css({'zIndex': '10500'}).fadeIn(Lightbox.fadeInSpeed);
      }
      Lightbox.updateDetails();
      this.preloadNeighborImages();
    }
    Lightbox.inprogress = false;

    // Slideshow specific stuff.
    if (Lightbox.isSlideshow) {
      if (!Lightbox.loopSlides && Lightbox.activeImage == (Lightbox.total - 1)) {
        if (Lightbox.autoExit) {
          Lightbox.slideIdArray[Lightbox.slideIdCount++] = setTimeout(function () {Lightbox.end('slideshow');}, Lightbox.slideInterval);
        }
      }
      else {
        if (!Lightbox.isPaused && Lightbox.total > 1) {
          Lightbox.slideIdArray[Lightbox.slideIdCount++] = setTimeout(function () {Lightbox.changeData(Lightbox.activeImage + 1);}, Lightbox.slideInterval);
        }
      }
      if (Lightbox.showPlayPause && Lightbox.total > 1 && !Lightbox.isPaused) {
        $('#lightshowPause').show();
        $('#lightshowPlay').hide();
      }
      else if (Lightbox.showPlayPause && Lightbox.total > 1) {
        $('#lightshowPause').hide();
        $('#lightshowPlay').show();
      }
    }

    // Adjust the page overlay size.
    var arrayPageSize = Lightbox.getPageSize();
    var arrayPageScroll = Lightbox.getPageScroll();
    var pageHeight = arrayPageSize[1];
    if (Lightbox.isZoomedIn && arrayPageSize[1] > arrayPageSize[3]) {
      var lightboxTop = (Lightbox.topPosition == '' ? (arrayPageSize[3] / 10) : Lightbox.topPosition) * 1;
      pageHeight = pageHeight + arrayPageScroll[1] + lightboxTop;
    }
    $('#lightbox2-overlay').css({'height': pageHeight + 'px', 'width': arrayPageSize[0] + 'px'});

    // Gecko browsers (e.g. Firefox, SeaMonkey, etc) don't handle pdfs as
    // expected.
    if ($.browser.mozilla) {
      if (Lightbox.imageArray[Lightbox.activeImage][0].indexOf(".pdf") != -1) {
        setTimeout(function () {
          document.getElementById("lightboxFrame").src = Lightbox.imageArray[Lightbox.activeImage][0];
        }, 1000);
      }
    }
  },

  // updateDetails()
  // Display caption, image number, and bottom nav.
  updateDetails: function() {

    $("#imageDataContainer").hide();

    var s = Drupal.settings.lightbox2;

    if (s.show_caption) {
      var caption = Lightbox.filterXSS(Lightbox.imageArray[Lightbox.activeImage][1]);
      if (!caption) caption = '';
      $('#caption').html(caption).css({'zIndex': '10500'}).show();
    }

    // If image is part of set display 'Image x of x'.
    var numberDisplay = null;
    if (s.image_count && Lightbox.total > 1) {
      var currentImage = Lightbox.activeImage + 1;
      if (!Lightbox.isLightframe && !Lightbox.isModal && !Lightbox.isVideo) {
        numberDisplay = s.image_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      else if (Lightbox.isVideo) {
        numberDisplay = s.video_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      else {
        numberDisplay = s.page_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      $('#numberDisplay').html(numberDisplay).css({'zIndex': '10500'}).show();
    }
    else {
      $('#numberDisplay').hide();
    }

    $("#imageDataContainer").hide().slideDown(Lightbox.slideDownSpeed, function() {
      $("#bottomNav").show();
    });
    if (Lightbox.rtl == 1) {
      $("#bottomNav").css({'float': 'left'});
    }
    Lightbox.updateNav();
  },

  // updateNav()
  // Display appropriate previous and next hover navigation.
  updateNav: function() {

    $('#hoverNav').css({'zIndex': '10500'}).show();
    var prevLink = '#prevLink';
    var nextLink = '#nextLink';

    // Slideshow is separated as we need to show play / pause button.
    if (Lightbox.isSlideshow) {
      if ((Lightbox.total > 1 && Lightbox.loopSlides) || Lightbox.activeImage !== 0) {
        $(prevLink).css({'zIndex': '10500'}).show().click(function() {
          if (Lightbox.pauseOnPrevClick) {
            Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
          }
          Lightbox.changeData(Lightbox.activeImage - 1); return false;
        });
      }
      else {
        $(prevLink).hide();
      }

      // If not last image in set, display next image button.
      if ((Lightbox.total > 1 && Lightbox.loopSlides) || Lightbox.activeImage != (Lightbox.total - 1)) {
        $(nextLink).css({'zIndex': '10500'}).show().click(function() {
          if (Lightbox.pauseOnNextClick) {
            Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
          }
          Lightbox.changeData(Lightbox.activeImage + 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(nextLink).hide();
      }
    }

    // All other types of content.
    else {

      if ((Lightbox.isLightframe || Lightbox.isModal || Lightbox.isVideo) && !Lightbox.alternative_layout) {
        $('#frameHoverNav').css({'zIndex': '10500'}).show();
        $('#hoverNav').css({'zIndex': '10500'}).hide();
        prevLink = '#framePrevLink';
        nextLink = '#frameNextLink';
      }

      // If not first image in set, display prev image button.
      if ((Lightbox.total > 1 && Lightbox.loopItems) || Lightbox.activeImage !== 0) {
        // Unbind any other click handlers, otherwise this adds a new click handler
        // each time the arrow is clicked.
        $(prevLink).css({'zIndex': '10500'}).show().unbind().click(function() {
          Lightbox.changeData(Lightbox.activeImage - 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(prevLink).hide();
      }

      // If not last image in set, display next image button.
      if ((Lightbox.total > 1 && Lightbox.loopItems) || Lightbox.activeImage != (Lightbox.total - 1)) {
        // Unbind any other click handlers, otherwise this adds a new click handler
        // each time the arrow is clicked.
        $(nextLink).css({'zIndex': '10500'}).show().unbind().click(function() {
          Lightbox.changeData(Lightbox.activeImage + 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(nextLink).hide();
      }
    }

    // Don't enable keyboard shortcuts so forms will work.
    if (!Lightbox.isModal) {
      this.enableKeyboardNav();
    }
  },


  // enableKeyboardNav()
  enableKeyboardNav: function() {
    $(document).bind("keydown", this.keyboardAction);
  },

  // disableKeyboardNav()
  disableKeyboardNav: function() {
    $(document).unbind("keydown", this.keyboardAction);
  },

  // keyboardAction()
  keyboardAction: function(e) {
    if (e === null) { // IE.
      keycode = event.keyCode;
      escapeKey = 27;
    }
    else { // Mozilla.
      keycode = e.keyCode;
      escapeKey = e.DOM_VK_ESCAPE;
    }

    key = String.fromCharCode(keycode).toLowerCase();

    // Close lightbox.
    if (Lightbox.checkKey(Lightbox.keysClose, key, keycode)) {
      Lightbox.end('forceClose');
    }
    // Display previous image (p, <-).
    else if (Lightbox.checkKey(Lightbox.keysPrevious, key, keycode)) {
      if ((Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) || Lightbox.activeImage !== 0) {
        Lightbox.changeData(Lightbox.activeImage - 1);
      }

    }
    // Display next image (n, ->).
    else if (Lightbox.checkKey(Lightbox.keysNext, key, keycode)) {
      if ((Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) || Lightbox.activeImage != (Lightbox.total - 1)) {
        Lightbox.changeData(Lightbox.activeImage + 1);
      }
    }
    // Zoom in.
    else if (Lightbox.checkKey(Lightbox.keysZoom, key, keycode) && !Lightbox.disableResize && !Lightbox.disableZoom && !Lightbox.isSlideshow && !Lightbox.isLightframe) {
      if (Lightbox.isZoomedIn) {
        Lightbox.changeData(Lightbox.activeImage, false);
      }
      else if (!Lightbox.isZoomedIn) {
        Lightbox.changeData(Lightbox.activeImage, true);
      }
      return false;
    }
    // Toggle play / pause (space).
    else if (Lightbox.checkKey(Lightbox.keysPlayPause, key, keycode) && Lightbox.isSlideshow) {

      if (Lightbox.isPaused) {
        Lightbox.togglePlayPause("lightshowPlay", "lightshowPause");
      }
      else {
        Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
      }
      return false;
    }
  },

  preloadNeighborImages: function() {

    if ((Lightbox.total - 1) > Lightbox.activeImage) {
      preloadNextImage = new Image();
      preloadNextImage.src = Lightbox.imageArray[Lightbox.activeImage + 1][0];
    }
    if (Lightbox.activeImage > 0) {
      preloadPrevImage = new Image();
      preloadPrevImage.src = Lightbox.imageArray[Lightbox.activeImage - 1][0];
    }

  },

  end: function(caller) {
    var closeClick = (caller == 'slideshow' ? false : true);
    if (Lightbox.isSlideshow && Lightbox.isPaused && !closeClick) {
      return;
    }
    // To prevent double clicks on navigation links.
    if (Lightbox.inprogress === true && caller != 'forceClose') {
      return;
    }
    Lightbox.disableKeyboardNav();
    $('#lightbox').hide();
    $("#lightbox2-overlay").fadeOut();
    Lightbox.isPaused = true;
    Lightbox.inprogress = false;
    // Replaces calls to showSelectBoxes() and showFlash() in original
    // lightbox2.
    Lightbox.toggleSelectsFlash('visible');
    if (Lightbox.isSlideshow) {
      for (var i = 0; i < Lightbox.slideIdCount; i++) {
        window.clearTimeout(Lightbox.slideIdArray[i]);
      }
      $('#lightshowPause, #lightshowPlay').hide();
    }
    else if (Lightbox.isLightframe) {
      $('#frameContainer').empty().hide();
    }
    else if (Lightbox.isVideo || Lightbox.isModal) {
      if (!Lightbox.auto_modal) {
        $('#modalContainer').hide().html("");
      }
      Lightbox.auto_modal = false;
    }
  },


  // getPageScroll()
  // Returns array with x,y page scroll values.
  // Core code from - quirksmode.com.
  getPageScroll : function() {

    var xScroll, yScroll;

    if (self.pageYOffset || self.pageXOffset) {
      yScroll = self.pageYOffset;
      xScroll = self.pageXOffset;
    }
    else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {  // Explorer 6 Strict.
      yScroll = document.documentElement.scrollTop;
      xScroll = document.documentElement.scrollLeft;
    }
    else if (document.body) {// All other Explorers.
      yScroll = document.body.scrollTop;
      xScroll = document.body.scrollLeft;
    }

    arrayPageScroll = [xScroll,yScroll];
    return arrayPageScroll;
  },

  // getPageSize()
  // Returns array with page width, height and window width, height.
  // Core code from - quirksmode.com.
  // Edit for Firefox by pHaez.

  getPageSize : function() {

    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) { // All but Explorer Mac.
      xScroll = document.body.scrollWidth;
      yScroll = document.body.scrollHeight;
    }
    else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari.
      xScroll = document.body.offsetWidth;
      yScroll = document.body.offsetHeight;
    }

    var windowWidth, windowHeight;

    if (self.innerHeight) { // All except Explorer.
      if (document.documentElement.clientWidth) {
        windowWidth = document.documentElement.clientWidth;
      }
      else {
        windowWidth = self.innerWidth;
      }
      windowHeight = self.innerHeight;
    }
    else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode.
      windowWidth = document.documentElement.clientWidth;
      windowHeight = document.documentElement.clientHeight;
    }
    else if (document.body) { // Other Explorers.
      windowWidth = document.body.clientWidth;
      windowHeight = document.body.clientHeight;
    }
    // For small pages with total height less than height of the viewport.
    if (yScroll < windowHeight) {
      pageHeight = windowHeight;
    }
    else {
      pageHeight = yScroll;
    }
    // For small pages with total width less than width of the viewport.
    if (xScroll < windowWidth) {
      pageWidth = xScroll;
    }
    else {
      pageWidth = windowWidth;
    }
    arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight);
    return arrayPageSize;
  },


  // pause(numberMillis)
  pause : function(ms) {
    var date = new Date();
    var curDate = null;
    do { curDate = new Date(); }
    while (curDate - date < ms);
  },


  // toggleSelectsFlash()
  // Hide / unhide select lists and flash objects as they appear above the
  // lightbox in some browsers.
  toggleSelectsFlash: function (state) {
    if (state == 'visible') {
      $("select.lightbox_hidden, embed.lightbox_hidden, object.lightbox_hidden").show();
    }
    else if (state == 'hide') {
      $("select:visible, embed:visible, object:visible").not('#lightboxAutoModal select, #lightboxAutoModal embed, #lightboxAutoModal object').addClass("lightbox_hidden");
      $("select.lightbox_hidden, embed.lightbox_hidden, object.lightbox_hidden").hide();
    }
  },


  // parseRel()
  parseRel: function (link) {
    var parts = [];
    parts["rel"] = parts["title"] = parts["group"] = parts["style"] = parts["flashvars"] = null;
    if (!$(link).attr('rel')) return parts;
    parts["rel"] = $(link).attr('rel').match(/\w+/)[0];

    if ($(link).attr('rel').match(/\[(.*)\]/)) {
      var info = $(link).attr('rel').match(/\[(.*?)\]/)[1].split('|');
      parts["group"] = info[0];
      parts["style"] = info[1];
      if (parts["style"] != undefined && parts["style"].match(/flashvars:\s?(.*?);/)) {
        parts["flashvars"] = parts["style"].match(/flashvars:\s?(.*?);/)[1];
      }
    }
    if ($(link).attr('rel').match(/\[.*\]\[(.*)\]/)) {
      parts["title"] = $(link).attr('rel').match(/\[.*\]\[(.*)\]/)[1];
    }
    return parts;
  },

  // setStyles()
  setStyles: function(item, styles) {
    item.width = Lightbox.iframe_width;
    item.height = Lightbox.iframe_height;
    item.scrolling = "auto";

    if (!styles) return item;
    var stylesArray = styles.split(';');
    for (var i = 0; i< stylesArray.length; i++) {
      if (stylesArray[i].indexOf('width:') >= 0) {
        var w = stylesArray[i].replace('width:', '');
        item.width = jQuery.trim(w);
      }
      else if (stylesArray[i].indexOf('height:') >= 0) {
        var h = stylesArray[i].replace('height:', '');
        item.height = jQuery.trim(h);
      }
      else if (stylesArray[i].indexOf('scrolling:') >= 0) {
        var scrolling = stylesArray[i].replace('scrolling:', '');
        item.scrolling = jQuery.trim(scrolling);
      }
      else if (stylesArray[i].indexOf('overflow:') >= 0) {
        var overflow = stylesArray[i].replace('overflow:', '');
        item.overflow = jQuery.trim(overflow);
      }
    }
    return item;
  },


  // togglePlayPause()
  // Hide the pause / play button as appropriate.  If pausing the slideshow also
  // clear the timers, otherwise move onto the next image.
  togglePlayPause: function(hideId, showId) {
    if (Lightbox.isSlideshow && hideId == "lightshowPause") {
      for (var i = 0; i < Lightbox.slideIdCount; i++) {
        window.clearTimeout(Lightbox.slideIdArray[i]);
      }
    }
    $('#' + hideId).hide();
    $('#' + showId).show();

    if (hideId == "lightshowPlay") {
      Lightbox.isPaused = false;
      if (!Lightbox.loopSlides && Lightbox.activeImage == (Lightbox.total - 1)) {
        Lightbox.end();
      }
      else if (Lightbox.total > 1) {
        Lightbox.changeData(Lightbox.activeImage + 1);
      }
    }
    else {
      Lightbox.isPaused = true;
    }
  },

  triggerLightbox: function (rel_type, rel_group) {
    if (rel_type.length) {
      if (rel_group && rel_group.length) {
        $("a[rel^='" + rel_type +"\[" + rel_group + "\]'], area[rel^='" + rel_type +"\[" + rel_group + "\]']").eq(0).trigger("click");
      }
      else {
        $("a[rel^='" + rel_type +"'], area[rel^='" + rel_type +"']").eq(0).trigger("click");
      }
    }
  },

  detectMacFF2: function() {
    var ua = navigator.userAgent.toLowerCase();
    if (/firefox[\/\s](\d+\.\d+)/.test(ua)) {
      var ffversion = new Number(RegExp.$1);
      if (ffversion < 3 && ua.indexOf('mac') != -1) {
        return true;
      }
    }
    return false;
  },

  checkKey: function(keys, key, code) {
    return (jQuery.inArray(key, keys) != -1 || jQuery.inArray(String(code), keys) != -1);
  },

  filterXSS: function(str, allowed_tags) {
    var output = "";
    $.ajax({
      url: Drupal.settings.basePath + 'system/lightbox2/filter-xss',
      data: {
        'string' : str,
        'allowed_tags' : allowed_tags
      },
      type: "POST",
      async: false,
      dataType:  "json",
      success: function(data) {
        output = data;
      }
    });
    return output;
  }

};

// Initialize the lightbox.
Drupal.behaviors.initLightbox = function (context) {
  $('body:not(.lightbox-processed)', context).addClass('lightbox-processed').each(function() {
    Lightbox.initialize();
    return false; // Break the each loop.
  });

  // Attach lightbox to any links with lightbox rels.
  Lightbox.initList(context);
  $('#lightboxAutoModal', context).triggerHandler('click');
};

;
/*	SWFObject v2.2 <http://code.google.com/p/swfobject/> 
	is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/
var audioplayer_swfobject=function(){var d="undefined",R="object",s="Shockwave Flash",w="ShockwaveFlash.ShockwaveFlash",Q="application/x-shockwave-flash",r="SWFObjectExprInst",X="onreadystatechange",o=window,J=document,T=navigator,t=false,u=[H],O=[],n=[],i=[],L,q,e,b,j=false,A=false,N,g,M=true,m=function(){var AA=typeof J.getElementById!=d&&typeof J.getElementsByTagName!=d&&typeof J.createElement!=d,AH=T.userAgent.toLowerCase(),y=T.platform.toLowerCase(),AE=y?/win/.test(y):/win/.test(AH),AC=y?/mac/.test(y):/mac/.test(AH),AF=/webkit/.test(AH)?parseFloat(AH.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,x=!+"\v1",AG=[0,0,0],AB=null;if(typeof T.plugins!=d&&typeof T.plugins[s]==R){AB=T.plugins[s].description;if(AB&&!(typeof T.mimeTypes!=d&&T.mimeTypes[Q]&&!T.mimeTypes[Q].enabledPlugin)){t=true;x=false;AB=AB.replace(/^.*\s+(\S+\s+\S+$)/,"$1");AG[0]=parseInt(AB.replace(/^(.*)\..*$/,"$1"),10);AG[1]=parseInt(AB.replace(/^.*\.(.*)\s.*$/,"$1"),10);AG[2]=/[a-zA-Z]/.test(AB)?parseInt(AB.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof o.ActiveXObject!=d){try{var AD=new ActiveXObject(w);if(AD){AB=AD.GetVariable("$version");if(AB){x=true;AB=AB.split(" ")[1].split(",");AG=[parseInt(AB[0],10),parseInt(AB[1],10),parseInt(AB[2],10)]}}}catch(z){}}}return{w3:AA,pv:AG,wk:AF,ie:x,win:AE,mac:AC}}(),K=function(){if(!m.w3){return }if((typeof J.readyState!=d&&J.readyState=="complete")||(typeof J.readyState==d&&(J.getElementsByTagName("body")[0]||J.body))){F()}if(!j){if(typeof J.addEventListener!=d){J.addEventListener("DOMContentLoaded",F,false)}if(m.ie&&m.win){J.attachEvent(X,function(){if(J.readyState=="complete"){J.detachEvent(X,arguments.callee);F()}});if(o==top){(function(){if(j){return }try{J.documentElement.doScroll("left")}catch(x){setTimeout(arguments.callee,0);return }F()})()}}if(m.wk){(function(){if(j){return }if(!/loaded|complete/.test(J.readyState)){setTimeout(arguments.callee,0);return }F()})()}S(F)}}();function F(){if(j){return }try{var z=J.getElementsByTagName("body")[0].appendChild(c("span"));z.parentNode.removeChild(z)}catch(AA){return }j=true;var x=u.length;for(var y=0;y<x;y++){u[y]()}}function k(x){if(j){x()}else{u[u.length]=x}}function S(y){if(typeof o.addEventListener!=d){o.addEventListener("load",y,false)}else{if(typeof J.addEventListener!=d){J.addEventListener("load",y,false)}else{if(typeof o.attachEvent!=d){I(o,"onload",y)}else{if(typeof o.onload=="function"){var x=o.onload;o.onload=function(){x();y()}}else{o.onload=y}}}}}function H(){if(t){v()}else{h()}}function v(){var x=J.getElementsByTagName("body")[0];var AA=c(R);AA.setAttribute("type",Q);var z=x.appendChild(AA);if(z){var y=0;(function(){if(typeof z.GetVariable!=d){var AB=z.GetVariable("$version");if(AB){AB=AB.split(" ")[1].split(",");m.pv=[parseInt(AB[0],10),parseInt(AB[1],10),parseInt(AB[2],10)]}}else{if(y<10){y++;setTimeout(arguments.callee,10);return }}x.removeChild(AA);z=null;h()})()}else{h()}}function h(){var AG=O.length;if(AG>0){for(var AF=0;AF<AG;AF++){var y=O[AF].id;var AB=O[AF].callbackFn;var AA={success:false,id:y};if(m.pv[0]>0){var AE=C(y);if(AE){if(f(O[AF].swfVersion)&&!(m.wk&&m.wk<312)){W(y,true);if(AB){AA.success=true;AA.ref=Z(y);AB(AA)}}else{if(O[AF].expressInstall&&a()){var AI={};AI.data=O[AF].expressInstall;AI.width=AE.getAttribute("width")||"0";AI.height=AE.getAttribute("height")||"0";if(AE.getAttribute("class")){AI.styleclass=AE.getAttribute("class")}if(AE.getAttribute("align")){AI.align=AE.getAttribute("align")}var AH={};var x=AE.getElementsByTagName("param");var AC=x.length;for(var AD=0;AD<AC;AD++){if(x[AD].getAttribute("name").toLowerCase()!="movie"){AH[x[AD].getAttribute("name")]=x[AD].getAttribute("value")}}p(AI,AH,y,AB)}else{P(AE);if(AB){AB(AA)}}}}}else{W(y,true);if(AB){var z=Z(y);if(z&&typeof z.SetVariable!=d){AA.success=true;AA.ref=z}AB(AA)}}}}}function Z(AA){var x=null;var y=C(AA);if(y&&y.nodeName=="OBJECT"){if(typeof y.SetVariable!=d){x=y}else{var z=y.getElementsByTagName(R)[0];if(z){x=z}}}return x}function a(){return !A&&f("6.0.65")&&(m.win||m.mac)&&!(m.wk&&m.wk<312)}function p(AA,AB,x,z){A=true;e=z||null;b={success:false,id:x};var AE=C(x);if(AE){if(AE.nodeName=="OBJECT"){L=G(AE);q=null}else{L=AE;q=x}AA.id=r;if(typeof AA.width==d||(!/%$/.test(AA.width)&&parseInt(AA.width,10)<310)){AA.width="310"}if(typeof AA.height==d||(!/%$/.test(AA.height)&&parseInt(AA.height,10)<137)){AA.height="137"}J.title=J.title.slice(0,47)+" - Flash Player Installation";var AD=m.ie&&m.win?"ActiveX":"PlugIn",AC="MMredirectURL="+o.location.toString().replace(/&/g,"%26")+"&MMplayerType="+AD+"&MMdoctitle="+J.title;if(typeof AB.flashvars!=d){AB.flashvars+="&"+AC}else{AB.flashvars=AC}if(m.ie&&m.win&&AE.readyState!=4){var y=c("div");x+="SWFObjectNew";y.setAttribute("id",x);AE.parentNode.insertBefore(y,AE);AE.style.display="none";(function(){if(AE.readyState==4){AE.parentNode.removeChild(AE)}else{setTimeout(arguments.callee,10)}})()}U(AA,AB,x)}}function P(y){if(m.ie&&m.win&&y.readyState!=4){var x=c("div");y.parentNode.insertBefore(x,y);x.parentNode.replaceChild(G(y),x);y.style.display="none";(function(){if(y.readyState==4){y.parentNode.removeChild(y)}else{setTimeout(arguments.callee,10)}})()}else{y.parentNode.replaceChild(G(y),y)}}function G(AB){var AA=c("div");if(m.win&&m.ie){AA.innerHTML=AB.innerHTML}else{var y=AB.getElementsByTagName(R)[0];if(y){var AC=y.childNodes;if(AC){var x=AC.length;for(var z=0;z<x;z++){if(!(AC[z].nodeType==1&&AC[z].nodeName=="PARAM")&&!(AC[z].nodeType==8)){AA.appendChild(AC[z].cloneNode(true))}}}}}return AA}function U(AI,AG,y){var x,AA=C(y);if(m.wk&&m.wk<312){return x}if(AA){if(typeof AI.id==d){AI.id=y}if(m.ie&&m.win){var AH="";for(var AE in AI){if(AI[AE]!=Object.prototype[AE]){if(AE.toLowerCase()=="data"){AG.movie=AI[AE]}else{if(AE.toLowerCase()=="styleclass"){AH+=' class="'+AI[AE]+'"'}else{if(AE.toLowerCase()!="classid"){AH+=" "+AE+'="'+AI[AE]+'"'}}}}}var AF="";for(var AD in AG){if(AG[AD]!=Object.prototype[AD]){AF+='<param name="'+AD+'" value="'+AG[AD]+'" />'}}AA.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+AH+">"+AF+"</object>";n[n.length]=AI.id;x=C(AI.id)}else{var z=c(R);z.setAttribute("type",Q);for(var AC in AI){if(AI[AC]!=Object.prototype[AC]){if(AC.toLowerCase()=="styleclass"){z.setAttribute("class",AI[AC])}else{if(AC.toLowerCase()!="classid"){z.setAttribute(AC,AI[AC])}}}}for(var AB in AG){if(AG[AB]!=Object.prototype[AB]&&AB.toLowerCase()!="movie"){E(z,AB,AG[AB])}}AA.parentNode.replaceChild(z,AA);x=z}}return x}function E(z,x,y){var AA=c("param");AA.setAttribute("name",x);AA.setAttribute("value",y);z.appendChild(AA)}function Y(y){var x=C(y);if(x&&x.nodeName=="OBJECT"){if(m.ie&&m.win){x.style.display="none";(function(){if(x.readyState==4){B(y)}else{setTimeout(arguments.callee,10)}})()}else{x.parentNode.removeChild(x)}}}function B(z){var y=C(z);if(y){for(var x in y){if(typeof y[x]=="function"){y[x]=null}}y.parentNode.removeChild(y)}}function C(z){var x=null;try{x=J.getElementById(z)}catch(y){}return x}function c(x){return J.createElement(x)}function I(z,x,y){z.attachEvent(x,y);i[i.length]=[z,x,y]}function f(z){var y=m.pv,x=z.split(".");x[0]=parseInt(x[0],10);x[1]=parseInt(x[1],10)||0;x[2]=parseInt(x[2],10)||0;return(y[0]>x[0]||(y[0]==x[0]&&y[1]>x[1])||(y[0]==x[0]&&y[1]==x[1]&&y[2]>=x[2]))?true:false}function V(AC,y,AD,AB){if(m.ie&&m.mac){return }var AA=J.getElementsByTagName("head")[0];if(!AA){return }var x=(AD&&typeof AD=="string")?AD:"screen";if(AB){N=null;g=null}if(!N||g!=x){var z=c("style");z.setAttribute("type","text/css");z.setAttribute("media",x);N=AA.appendChild(z);if(m.ie&&m.win&&typeof J.styleSheets!=d&&J.styleSheets.length>0){N=J.styleSheets[J.styleSheets.length-1]}g=x}if(m.ie&&m.win){if(N&&typeof N.addRule==R){N.addRule(AC,y)}}else{if(N&&typeof J.createTextNode!=d){N.appendChild(J.createTextNode(AC+" {"+y+"}"))}}}function W(z,x){if(!M){return }var y=x?"visible":"hidden";if(j&&C(z)){C(z).style.visibility=y}else{V("#"+z,"visibility:"+y)}}function l(y){var z=/[\\\"<>\.;]/;var x=z.exec(y)!=null;return x&&typeof encodeURIComponent!=d?encodeURIComponent(y):y}var D=function(){if(m.ie&&m.win){window.attachEvent("onunload",function(){var AC=i.length;for(var AB=0;AB<AC;AB++){i[AB][0].detachEvent(i[AB][1],i[AB][2])}var z=n.length;for(var AA=0;AA<z;AA++){Y(n[AA])}for(var y in m){m[y]=null}m=null;for(var x in audioplayer_swfobject){audioplayer_swfobject[x]=null}audioplayer_swfobject=null})}}();return{registerObject:function(AB,x,AA,z){if(m.w3&&AB&&x){var y={};y.id=AB;y.swfVersion=x;y.expressInstall=AA;y.callbackFn=z;O[O.length]=y;W(AB,false)}else{if(z){z({success:false,id:AB})}}},getObjectById:function(x){if(m.w3){return Z(x)}},embedSWF:function(AB,AH,AE,AG,y,AA,z,AD,AF,AC){var x={success:false,id:AH};if(m.w3&&!(m.wk&&m.wk<312)&&AB&&AH&&AE&&AG&&y){W(AH,false);k(function(){AE+="";AG+="";var AJ={};if(AF&&typeof AF===R){for(var AL in AF){AJ[AL]=AF[AL]}}AJ.data=AB;AJ.width=AE;AJ.height=AG;var AM={};if(AD&&typeof AD===R){for(var AK in AD){AM[AK]=AD[AK]}}if(z&&typeof z===R){for(var AI in z){if(typeof AM.flashvars!=d){AM.flashvars+="&"+AI+"="+z[AI]}else{AM.flashvars=AI+"="+z[AI]}}}if(f(y)){var AN=U(AJ,AM,AH);if(AJ.id==AH){W(AH,true)}x.success=true;x.ref=AN}else{if(AA&&a()){AJ.data=AA;p(AJ,AM,AH,AC);return }else{W(AH,true)}}if(AC){AC(x)}})}else{if(AC){AC(x)}}},switchOffAutoHideShow:function(){M=false},ua:m,getFlashPlayerVersion:function(){return{major:m.pv[0],minor:m.pv[1],release:m.pv[2]}},hasFlashPlayerVersion:f,createSWF:function(z,y,x){if(m.w3){return U(z,y,x)}else{return undefined}},showExpressInstall:function(z,AA,x,y){if(m.w3&&a()){p(z,AA,x,y)}},removeSWF:function(x){if(m.w3){Y(x)}},createCSS:function(AA,z,y,x){if(m.w3){V(AA,z,y,x)}},addDomLoadEvent:k,addLoadEvent:S,getQueryParamValue:function(AA){var z=J.location.search||J.location.hash;if(z){if(/\?/.test(z)){z=z.split("?")[1]}if(AA==null){return l(z)}var y=z.split("&");for(var x=0;x<y.length;x++){if(y[x].substring(0,y[x].indexOf("="))==AA){return l(y[x].substring((y[x].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(A){var x=C(r);if(x&&L){x.parentNode.replaceChild(L,x);if(q){W(q,true);if(m.ie&&m.win){L.style.display="block"}}if(e){e(b)}}A=false}}}}();var AudioPlayer=function(){var H=[];var D;var F="";var A={};var E=-1;var G="9";function B(I){if(document.all&&!window[I]){for(var J=0;J<document.forms.length;J++){if(document.forms[J][I]){return document.forms[J][I];break}}}return document.all?window[I]:document[I]}function C(I,J,K){B(I).addListener(J,K)}return{setup:function(J,I){F=J;A=I;if(audioplayer_swfobject.hasFlashPlayerVersion(G)){audioplayer_swfobject.switchOffAutoHideShow();audioplayer_swfobject.createCSS("p.audioplayer_container span","visibility:hidden;height:24px;overflow:hidden;padding:0;border:none;")}},getPlayer:function(I){return B(I)},addListener:function(I,J,K){C(I,J,K)},embed:function(I,K){var N={};var L;var J={};var O={};var M={};for(L in A){N[L]=A[L]}for(L in K){N[L]=K[L]}if(N.transparentpagebg=="yes"){J.bgcolor="#FFFFFF";J.wmode="transparent"}else{if(N.pagebg){J.bgcolor="#"+N.pagebg}J.wmode="opaque"}J.menu="false";for(L in N){if(L=="pagebg"||L=="width"||L=="transparentpagebg"){continue}O[L]=N[L]}M.name=I;M.style="outline: none";O.playerID=I;audioplayer_swfobject.embedSWF(F,I,N.width.toString(),"24",G,false,O,J,M);H.push(I)},syncVolumes:function(I,K){E=K;for(var J=0;J<H.length;J++){if(H[J]!=I){B(H[J]).setVolume(E)}}},activate:function(I,J){if(D&&D!=I){B(D).close()}D=I},load:function(K,I,L,J){B(K).load(I,L,J)},close:function(I){B(I).close();if(I==D){D=null}},open:function(I,J){if(J==undefined){J=1}B(I).open(J==undefined?0:J-1)},getVolume:function(I){return E}}}();;
// $Id: og.js,v 1.9.2.3 2010/01/24 14:44:56 amitaibu Exp $

// Content type form
Drupal.behaviors.og_content_type = function() {
  // Disable the group limit textarea if the content type is not a standard group post
  $('input[name="og_content_type_usage"]').click(function(){
    if (!$('#edit-og-content-type-usage-group-post-standard').attr('checked')) {
      $('#edit-og-max-groups').attr('disabled','disabled');
    } else {
      $('#edit-og-max-groups').removeAttr('disabled');
    }
  });
  
  // Initial check to see if content type is standard group post
  if (!$('#edit-og-content-type-usage-group-post-standard').attr('checked')) {
    $('#edit-og-max-groups').attr('disabled','disabled');
  };
}


Drupal.verticalTabs = Drupal.verticalTabs || {};

Drupal.verticalTabs.og_nodeapi = function() {
  var values = [];
  $('.vertical-tabs-og_nodeapi #edit-og-groups :selected')
    .each(function (i, selected) {
      values[i] = $(selected).text();
    });

  return values.join(', ');
}

Drupal.verticalTabs.og = function() {
  var type = $('.vertical-tabs-og input[type=radio]:checked').val();
  
  switch (type) {
    case 'group':
      return Drupal.t('Group node');
      break;
      
    case 'omitted':
      return Drupal.t('May not be posted into a group.');
      break;
      
    case 'group_post_standard':
      return Drupal.t('Standard group post');
      break;
      
    case 'group_post_wiki':
      return Drupal.t('Wiki group post');
      break;
  }
}
;
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.88 (08-JUN-2010)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.2.6 or later
 */
(function($){var ver="2.88";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,(!opts2.rev&&!opts.backwards));},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,(!opts.rev&&!opts.backwards));}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version:	 2.72
 * 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.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);;
// $Id: views_slideshow.js,v 1.1.2.1.2.39 2010/07/01 03:29:08 redndahead Exp $

/**
 *  @file
 *  A simple jQuery SingleFrame Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowSingleFrame = function (context) {
  $('.views_slideshow_singleframe_main:not(.viewsSlideshowSingleFrame-processed)', context).addClass('viewsSlideshowSingleFrame-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowSingleFrame[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
    settings.paused = false;

    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_hover==1 || settings.pager_click_to_page),
      prev:(settings.controls > 0)?'#views_slideshow_singleframe_prev_' + settings.vss_id:null,
      next:(settings.controls > 0)?'#views_slideshow_singleframe_next_' + settings.vss_id:null,
      pager:(settings.pager > 0)?'#views_slideshow_singleframe_pager_' + settings.vss_id:null,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder: function(idx, slide) {
        var classes = 'pager-item pager-num-' + (idx+1);
        if (idx == 0) {
          classes += ' first';
        }
        if ($(slide).siblings().length == idx) {
          classes += ' last';
        }

        if (idx % 2) {
          classes += ' odd';
        }
        else {
          classes += ' even';
        }
        
        var theme = 'viewsSlideshowPager' + settings.pager_type;
        return Drupal.theme.prototype[theme] ? Drupal.theme(theme, classes, idx, slide, settings) : '';
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(curr, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.vss_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (settings.fixed_height == 0) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
      },
      cleartype:(settings.ie.cleartype == 'true')? true : false,
      cleartypeNoBg:(settings.ie.cleartypenobg == 'true')? true : false
    }
    
    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.vss_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.pager_hover == 1) {
      settings.opts.pagerEvent = 'mouseover';
      settings.opts.pauseOnPagerHover = true;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (settings.paused == false) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowSingleFramePause(settings);
      });
    }

    // Add additional settings.
		if (settings.advanced != "\n") {
      var advanced = settings.advanced.split("\n");
      for (i=0; i<advanced.length; i++) {
        var prop = '';
        var value = '';
        var property = advanced[i].split(":");
        for (j=0; j<property.length; j++) {
          if (j == 0) {
            prop = property[j];
          }
          else if (j == 1) {
            value = property[j];
          }
          else {
            value += ":" + property[j];
          }
        }

        // Need to evaluate so true, false and numerics aren't a string.
        if (value == 'true' || value == 'false' || IsNumeric(value)) {
          value = eval(value);
        }
        else {
          // Parse strings into functions.
          var func = value.match(/function\s*\((.*?)\)\s*\{(.*)\}/i);
          if (func) {
            value = new Function(func[1].match(/(\w+)/g), func[2]);
          }
        }
	
        // Call both functions if prop was set previously.
        if (typeof(value) == "function" && prop in settings.opts) {
          var callboth = function(before_func, new_func) {
            return function() {
              before_func.apply(null, arguments);
              new_func.apply(null, arguments);
            };
          };
          settings.opts[prop] = callboth(settings.opts[prop], value);
        }
        else {
          settings.opts[prop] = value;
        }
      }
    }
    
    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowSingleFramePause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowSingleFrameIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowSingleFrameResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowSingleFramePause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when the window is resized.
      $(window).resize(function() {
        checkPause(settings);
      });
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_singleframe_image_count_' + settings.vss_id).show();

    if (settings.controls > 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_singleframe_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_singleframe_playpause_' + settings.vss_id).click(function(e) {
      	if (settings.paused) {
      	  viewsSlideshowSingleFrameResume(settings);
      	}
      	else {
      	  viewsSlideshowSingleFramePause(settings);
      	}
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowSingleFramePause = function (settings) {
  //make Resume translatable
  var resume = Drupal.t('Resume');

  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_singleframe_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowSingleFrameResume = function (settings) {
  $(settings.targetId).cycle('resume');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_singleframe_play')
      .removeClass('views_slideshow_play')
      .text('Pause');
  }
  settings.paused = false;
}

Drupal.theme.prototype.viewsSlideshowPagerThumbnails = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '"><img src="' + $(slide).find('img').attr('src') + '" /></a></div>';
}

Drupal.theme.prototype.viewsSlideshowPagerNumbered = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '">' + (idx+1) + '</a></div>';
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (var i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * type = The way to calculate how much is visible.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowSingleFrameIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

  // Find out how much of the slide is missing from the bottom.
  if (elemBottom > docViewBottom) {
    missingBottom = elemBottom - docViewBottom;
  }
  
  // If there is no amountVisible defined then check to see if the whole slide
  // is visible.
  if (type == 'full') {
    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
    && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop)
    && (elemLeft >= docViewLeft) && (elemRight <= docViewRight)
    && (elemLeft <= docViewRight) && (elemRight >= docViewLeft));
  }
  else if(type == 'vertical') {
    var verticalShowing = elemHeight - missingTop - missingBottom;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((verticalShowing/elemHeight)*100) >= parseInt(amountVisible));
    }
    else {
      return (verticalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'horizontal') {
    var horizontalShowing = elemWidth - missingLeft - missingRight;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((horizontalShowing/elemWidth)*100) >= parseInt(amountVisible));
    }
    else {
      return (horizontalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'area') {
    var areaShowing = (elemWidth - missingLeft - missingRight) * (elemHeight - missingTop - missingBottom);
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((areaShowing/elemArea)*100) >= parseInt(amountVisible));
    }
    else {
      return (areaShowing >= parseInt(amountVisible));
    }
  }
}

;
// $Id: views_slideshow.js,v 1.1.2.2.2.35 2010/07/01 03:29:08 redndahead Exp $

/**
 * @file
 * A simple jQuery ThumbnailHover Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowThumbnailHover = function (context) {
  $('.views_slideshow_thumbnailhover_main:not(.viewsSlideshowThumbnailHover-processed)', context).addClass('viewsSlideshowThumbnailHover-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowThumbnailHover[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
		settings.paused = false;
		
    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_event=='click')? false : true,
      pager:(settings.pager_event == 'hoverIntent') ? null : '#views_slideshow_breakout_teasers_' + settings.vss_id,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder:(settings.pager_event == 'hoverIntent') ? null : function(idx, slide) { 
        return '#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + idx; 
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(current, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.view_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (settings.fixed_height == 0) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
        
        var currId = (currId=$(current).attr('id')).substring(currId.lastIndexOf('_')+1)
        var nextId = (nextId=$(next).attr('id')).substring(nextId.lastIndexOf('_')+1)
        $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + currId).removeClass('activeSlide');
        $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + nextId).addClass('activeSlide');
      },
      pagerEvent: (settings.pager_event == 'hoverIntent') ? null : settings.pager_event,
      prev:(settings.controls > 0)?'#views_slideshow_thumbnailhover_prev_' + settings.vss_id:null,
      next:(settings.controls > 0)?'#views_slideshow_thumbnailhover_next_' + settings.vss_id:null,
      cleartype:(settings.ie.cleartype == 'true')? true : false,
      cleartypeNoBg:(settings.ie.cleartypenobg == 'true')? true : false
    };

    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.view_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause == 1) {
      $('#views_slideshow_thumbnailhover_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (settings.paused == false) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click == 1) {
      $('#views_slideshow_thumbnailhover_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowThumbnailHoverPause(settings);
      });
    }
    
    // Add additional settings.
		if (settings.advanced != "\n") {
      var advanced = settings.advanced.split("\n");
      for (i=0; i<advanced.length; i++) {
        var prop = '';
        var value = '';
        var property = advanced[i].split(":");
        for (j=0; j<property.length; j++) {
          if (j == 0) {
            prop = property[j];
          }
          else if (j == 1) {
            value = property[j];
          }
          else {
            value += ":" + property[j];
          }
        }

        // Need to evaluate so true, false and numerics aren't a string.
        if (value == 'true' || value == 'false' || IsNumeric(value)) {
          value = eval(value);
        }
        else {
          // Parse strings into functions.
          var func = value.match(/function\s*\((.*?)\)\s*\{(.*)\}/i);
          if (func) {
            value = new Function(func[1].match(/(\w+)/g), func[2]);
          }
        }
	
        // Call both functions if prop was set previously.
        if (typeof(value) == "function" && prop in settings.opts) {
          var callboth = function(before_func, new_func) {
            return function() {
              before_func.apply(null, arguments);
              new_func.apply(null, arguments);
            };
          };
          settings.opts[prop] = callboth(settings.opts[prop], value);
        }
        else {
          settings.opts[prop] = value;
        }
      }
    }

    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowThumbnailHoverPause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowThumbnailHoverIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowThumbnailHoverResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowThumbnailHoverPause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when window is resized.
      $(window).resize(function() {
        checkPause(settings);
      });
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id).show();
    
    if (settings.pager_event == 'hoverIntent') {
      $('#views_slideshow_thumbnailhover_breakout_teasers_' + settings.vss_id + ' .views_slideshow_thumbnailhover_div_breakout_teaser').each(function(i,obj) {
        $(obj).hoverIntent(
          function() {
            $('.views_slideshow_thumbnailhover_div_breakout_teaser').removeClass('activeSlide');
            var id = $(this).attr('id');
            id = parseInt(id.substring(id.lastIndexOf('_')+1));
            $(settings.targetId).cycle(id);
            $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + id).addClass('activeSlide');
            $(settings.targetId).cycle('stop');
          },
          function() {
            var id = $(this).attr('id');
            settings.opts.startingSlide = parseInt(id.substring(id.lastIndexOf('_')+1));
            $(settings.targetId).cycle(settings.opts);
          }
        );
      });
    }

    if (settings.controls > 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_thumbnailhover_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id).click(function(e) {
        if (settings.paused) {
          viewsSlideshowThumbnailHoverResume(settings);
        }
        else {
          viewsSlideshowThumbnailHoverPause(settings);
        }
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowThumbnailHoverPause = function (settings) {
  //make Resume translatable
  var resume = Drupal.t('Resume');

  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id)
      .addClass('views_slideshow_thumbnailhover_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_thumbnailhover_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowThumbnailHoverResume = function (settings) {
  $(settings.targetId).cycle('resume');
  if (settings.controls > 0) {
    $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id)
      .addClass('views_slideshow_thumbnailhover_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_thumbnailhover_play')
      .removeClass('views_slideshow_play')
      .text('Pause');
  }
  settings.paused = false;
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (var i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowThumbnailHoverIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

  // Find out how much of the slide is missing from the bottom.
  if (elemBottom > docViewBottom) {
    missingBottom = elemBottom - docViewBottom;
  }
  
  // If there is no amountVisible defined then check to see if the whole slide
  // is visible.
  if (type == 'full') {
    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
    && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop)
    && (elemLeft >= docViewLeft) && (elemRight <= docViewRight)
    && (elemLeft <= docViewRight) && (elemRight >= docViewLeft));
  }
  else if(type == 'vertical') {
    var verticalShowing = elemHeight - missingTop - missingBottom;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((verticalShowing/elemHeight)*100) >= parseInt(amountVisible));
    }
    else {
      return (verticalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'horizontal') {
    var horizontalShowing = elemWidth - missingLeft - missingRight;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((horizontalShowing/elemWidth)*100) >= parseInt(amountVisible));
    }
    else {
      return (horizontalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'area') {
    var areaShowing = (elemWidth - missingLeft - missingRight) * (elemHeight - missingTop - missingBottom);
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((areaShowing/elemArea)*100) >= parseInt(amountVisible));
    }
    else {
      return (areaShowing >= parseInt(amountVisible));
    }
  }
}
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.08
 */
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-1]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c)  2-2004-M.Klen
 */
Cufon.registerFont({"w":306,"face":{"font-family":"Sansumi Bold","font-weight":600,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 7 7 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"10","cap-height":"6","bbox":"-111 -314 506 107","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0005-U+E00F"},"glyphs":{" ":{"w":95},"\n":{"d":"168,-258r-27,0r-39,62r17,0xm113,-258r-27,0r-40,62r17,0","w":180},"\r":{"d":"60,6r0,-203r-19,0r0,203r19,0","w":100},"!":{"d":"67,-261r-19,0r1,211r17,0xm67,6r0,-41r-19,0r0,41r19,0","w":115},"\"":{"d":"96,-261r-21,0r3,70r15,0xm52,-261r-21,0r3,70r15,0","w":127},"#":{"d":"251,-167r-62,0r36,-88r-20,0r-35,88r-48,0r36,-88r-19,0r-36,88r-63,0r-6,17r62,0r-19,46r-62,0r-7,17r62,0r-38,93r20,0r38,-93r47,0r-38,93r19,0r38,-93r63,0r6,-17r-62,0r19,-46r62,0xm162,-150r-18,46r-48,0r19,-46r47,0","w":259},"$":{"d":"261,-72v0,-7,-1,-13,-3,-19v-2,-6,-5,-10,-9,-14v-4,-4,-8,-9,-13,-12v-5,-3,-10,-6,-15,-8v-5,-2,-11,-4,-17,-6v-6,-2,-11,-4,-17,-5v-5,-1,-10,-2,-14,-3r-12,-3r0,-89v11,0,20,1,28,3v8,2,14,4,20,7v6,3,11,7,15,11v4,4,7,7,10,12r16,-9v-4,-6,-9,-12,-14,-17v-5,-5,-10,-10,-17,-13v-7,-3,-16,-6,-25,-8v-9,-2,-20,-4,-33,-4r0,-26r-18,0r0,26v-18,0,-34,3,-46,7v-12,4,-21,8,-28,14v-7,6,-12,11,-15,18v-3,7,-5,14,-5,20v0,10,3,18,7,25v4,7,10,13,17,17v7,4,14,7,22,9v8,2,16,5,23,6v4,1,9,2,13,3v4,1,8,1,12,2r0,112v-18,-1,-35,-4,-50,-9v-15,-5,-27,-15,-38,-28r-14,13v6,8,14,15,22,20v8,5,17,9,26,12v9,3,18,6,27,7v9,1,18,2,27,2r0,30r18,0r0,-30v14,-1,27,-3,39,-7v12,-4,23,-9,32,-15v9,-6,16,-14,21,-23v5,-9,8,-18,8,-28xm143,-146v-9,-2,-10,-2,-20,-4v-5,-1,-9,-2,-14,-3v-5,-1,-9,-2,-13,-4v-8,-3,-15,-7,-20,-12v-5,-5,-8,-12,-8,-20v0,-4,1,-8,3,-13v2,-5,5,-9,10,-13v5,-4,12,-8,22,-11v10,-3,24,-4,40,-5r0,85xm242,-70v0,6,-1,13,-5,19v-4,6,-10,11,-17,16v-7,5,-15,10,-25,13v-10,3,-21,5,-34,5r0,-106v4,1,7,1,11,2v6,1,5,2,11,3v5,1,10,2,15,4v5,2,9,3,14,5v9,4,17,9,22,15v5,6,8,14,8,24"},"%":{"d":"341,-60r0,0v0,-10,-2,-19,-5,-28v-3,-9,-8,-16,-14,-22v-6,-6,-13,-11,-22,-15v-9,-4,-19,-6,-29,-6v-10,0,-19,2,-28,6v-9,4,-17,9,-23,15v-6,6,-11,13,-14,22v-3,9,-5,18,-5,28v0,10,2,19,5,28v3,9,8,16,14,22v6,6,14,11,23,15v9,4,18,5,28,5v10,0,20,-1,29,-5v9,-4,16,-9,22,-15v6,-6,11,-13,14,-22v3,-9,5,-18,5,-28xm297,-264r-22,0r-206,274r22,0xm165,-194r0,0v0,-10,-2,-19,-5,-28v-3,-9,-8,-16,-14,-22v-6,-6,-14,-11,-23,-15v-9,-4,-18,-6,-28,-6v-10,0,-19,2,-28,6v-9,4,-17,9,-23,15v-6,6,-11,13,-14,22v-3,9,-5,18,-5,28v0,10,2,19,5,28v3,9,8,16,14,22v6,6,14,11,23,15v9,4,18,6,28,6v10,0,19,-2,28,-6v9,-4,17,-9,23,-15v6,-6,11,-13,14,-22v3,-9,5,-18,5,-28xm322,-60v0,16,-5,29,-14,39v-9,10,-22,14,-37,14r0,0v-16,0,-28,-4,-37,-14v-9,-10,-14,-23,-14,-39v0,-16,5,-28,14,-38v9,-10,21,-15,37,-15v16,0,28,5,37,15v9,10,14,22,14,38xm146,-194v0,16,-5,29,-14,39v-9,10,-22,14,-37,14r0,0v-16,0,-28,-4,-37,-14v-9,-10,-14,-23,-14,-39v0,-16,5,-28,14,-38v9,-10,21,-15,37,-15v16,0,28,5,37,15v9,10,14,22,14,38","w":365},"&":{"d":"337,6r-25,-13v0,0,-11,-5,-20,-10v-9,-5,-9,-5,-17,-10v-8,-5,-7,-5,-16,-10v11,-12,20,-25,28,-40v8,-15,13,-34,16,-55r-18,0v-3,18,-8,35,-15,49v-7,14,-16,27,-26,37v-19,-14,-38,-28,-55,-42v-17,-14,-33,-28,-48,-43v9,-4,19,-8,27,-13v8,-5,16,-10,22,-15v6,-5,11,-11,15,-18v4,-7,6,-14,6,-22v0,-9,-2,-17,-6,-23v-4,-6,-9,-11,-15,-15v-6,-4,-14,-7,-22,-9v-8,-2,-16,-2,-25,-2v-8,0,-16,1,-24,3v-8,2,-14,5,-20,9v-6,4,-11,10,-15,16v-4,6,-5,13,-5,22v0,6,1,11,3,17v2,6,4,12,7,17v3,5,5,9,9,14v4,5,8,10,12,14v-10,4,-19,7,-28,12v-9,5,-17,11,-24,17v-7,6,-12,13,-16,21v-4,8,-6,17,-6,27v0,12,2,22,7,31v5,9,11,16,20,22v9,6,20,10,32,13v12,3,26,4,41,4v13,0,25,-1,36,-3v11,-2,21,-5,30,-8v9,-3,17,-8,24,-12v7,-4,13,-8,18,-12v11,7,21,12,29,17v12,7,12,7,24,13r40,0xm192,-199v0,6,-1,11,-4,16v-3,5,-7,9,-13,14v-6,5,-13,9,-21,13v-8,4,-16,8,-26,12v-9,-10,-16,-19,-22,-27v-6,-8,-8,-17,-8,-27r0,0v0,-9,3,-17,11,-23v8,-6,20,-10,36,-10v14,0,25,3,34,9v9,6,13,14,13,23xm229,-34v-14,10,-28,18,-44,22v-16,4,-31,6,-48,6v-3,0,-8,-1,-13,-1v-5,0,-11,0,-17,-1v-6,-1,-12,-3,-18,-5v-6,-2,-12,-5,-17,-9v-5,-4,-10,-9,-13,-15v-3,-6,-5,-13,-5,-21r0,0v0,-12,5,-24,16,-35v11,-11,29,-21,53,-30v16,16,34,33,52,48v18,15,36,29,54,41","w":336},"'":{"d":"52,-261r-21,0r3,70r15,0","w":82},"(":{"d":"152,-273r-12,-11v-9,8,-9,7,-17,14v-5,5,-11,10,-15,15v-4,5,-8,10,-12,16v-4,6,-7,12,-11,19v-9,17,-16,35,-20,55v-4,20,-6,39,-6,60v0,20,2,41,6,60v4,19,11,37,20,55v3,7,7,13,11,19v4,6,8,11,12,16v4,5,9,9,14,14v5,5,12,10,18,15r12,-12v-12,-9,-22,-18,-30,-28v-8,-10,-16,-21,-22,-33v-5,-10,-8,-19,-11,-29v-3,-10,-5,-20,-7,-29v-2,-9,-4,-18,-4,-26r0,-22v0,0,0,-14,1,-22v1,-8,1,-17,3,-26v2,-9,4,-18,7,-28v3,-10,6,-20,11,-29v6,-13,14,-24,22,-34v8,-10,18,-20,30,-29","w":178},")":{"d":"120,-105v0,-21,-2,-40,-6,-60v-4,-20,-11,-38,-20,-55v-4,-7,-8,-13,-12,-19v-4,-6,-8,-11,-12,-16v-4,-5,-9,-10,-14,-15v-8,-7,-8,-6,-17,-14r-13,11v12,9,23,19,31,29v8,10,16,21,22,34v5,9,8,19,11,29v3,10,5,19,7,28v2,9,2,18,3,26v1,8,1,16,1,22v0,6,0,14,-1,22v-1,8,-1,17,-3,26v-2,9,-4,19,-7,29v-3,10,-7,19,-12,29v-6,12,-13,23,-21,33v-8,10,-19,19,-31,28r13,12v6,-5,12,-10,17,-15v5,-5,11,-9,15,-14v4,-5,8,-10,12,-16v4,-6,8,-12,11,-19v9,-18,16,-36,20,-55v4,-19,6,-40,6,-60","w":178},"*":{"d":"196,-156r-58,-31r57,-31r-9,-17r-55,34r1,-65r-19,0r2,65r-56,-34r-9,17r57,31r-57,31r9,16r56,-34r-2,66r19,0r-1,-66r55,34","w":245},"+":{"d":"242,-82r0,-18r-89,0r0,-66r-18,0r0,66r-89,0r0,18r89,0r0,72r18,0r0,-72r89,0","w":288},",":{"d":"62,-35r-21,0r-14,70r16,0","w":93},"-":{"d":"113,-112r0,-18r-113,0r0,18r113,0","w":143},".":{"d":"30,6r0,-41r-18,0r0,41r18,0","w":93},"\/":{"d":"240,-272r-21,0r-197,282r22,0","w":260},"0":{"d":"285,-125v0,-21,-3,-39,-10,-56v-7,-17,-15,-30,-27,-42v-12,-12,-26,-21,-42,-27v-16,-6,-34,-10,-53,-10v-19,0,-36,4,-52,10v-16,6,-30,15,-42,27v-12,12,-21,25,-28,42v-7,17,-10,35,-10,56r0,0v0,21,3,39,10,56v7,17,16,31,28,43v12,12,26,21,42,27v16,6,33,9,52,9v19,0,37,-3,53,-9v16,-6,30,-15,42,-27v12,-12,20,-26,27,-43v7,-17,10,-35,10,-56xm267,-125v0,19,-3,36,-9,51v-6,15,-15,26,-25,36v-10,10,-22,18,-36,23v-14,5,-29,7,-44,7v-16,0,-30,-2,-44,-7v-14,-5,-26,-13,-36,-23v-10,-10,-18,-21,-24,-36v-6,-15,-9,-32,-9,-51v0,-19,3,-36,9,-51v6,-15,14,-27,24,-37v10,-10,22,-17,36,-22v14,-5,29,-7,44,-7r0,0v15,0,30,2,44,7v14,5,26,13,36,23v10,10,19,21,25,36v6,15,9,32,9,51","k":{"`":55,"_":280,"^":33,"]":53,"\\":61,"[":33,"Z":45,"Y":34,"X":44,"V":20,"T":62,"S":21,"J":17,"I":18,"7":93,"5":31,"4":25,"3":41,"2":39,"1":40}},"1":{"d":"151,6r0,-263r-9,0r-105,41r8,17r87,-35r0,240r19,0","w":254,"k":{"\u00fc":84,"\u00fb":83,"\u00fa":84,"\u00f9":83,"\u00f6":75,"\u00f5":72,"\u00f4":71,"\u00f3":71,"\u00f2":70,"\u00f1":86,"\u00ef":52,"\u00ee":47,"\u00ed":70,"\u00ec":55,"\u00eb":71,"\u00ea":70,"\u00e9":71,"\u00e8":69,"\u00e7":67,"\u00e5":75,"\u00e4":76,"\u00e3":77,"\u00e2":75,"\u00e1":76,"\u00e0":75,"\u00dc":89,"\u00d6":71,"\u00d1":92,"\u00c9":92,"\u00c7":71,"\u00c5":58,"\u00c4":58,"z":75,"y":67,"x":69,"w":60,"v":60,"u":80,"t":60,"s":73,"r":81,"q":67,"p":81,"o":67,"n":81,"m":81,"l":88,"k":81,"j":117,"i":87,"h":84,"g":67,"f":63,"e":67,"d":74,"c":67,"b":81,"a":74,"`":78,"_":210,"^":111,"]":130,"\\":96,"[":111,"Z":85,"Y":67,"X":76,"W":63,"V":65,"U":89,"T":73,"S":83,"R":92,"Q":71,"P":92,"O":71,"N":92,"M":92,"L":92,"K":92,"J":68,"I":96,"H":92,"G":71,"F":92,"E":92,"D":92,"C":71,"B":92,"A":58,"9":86,"8":81,"7":116,"6":81,"5":96,"4":98,"3":105,"2":98,"1":99,"0":69}},"2":{"d":"265,6r0,-19r-205,0v5,-12,10,-22,18,-31v8,-9,17,-18,27,-25v10,-7,20,-12,31,-18v11,-6,22,-11,33,-16v9,-4,9,-4,17,-8v6,-3,12,-5,17,-8r21,-12v0,0,14,-10,19,-16v5,-6,10,-12,13,-19v3,-7,5,-16,5,-25v0,-8,-2,-17,-6,-25v-4,-8,-10,-16,-19,-22v-9,-6,-20,-11,-35,-15v-15,-4,-32,-7,-53,-7v-29,0,-52,6,-69,16v-17,10,-30,26,-37,48r20,3v5,-16,14,-29,28,-37v14,-8,33,-12,57,-12v20,0,37,1,49,5v12,4,22,9,29,14v7,5,12,10,14,16v2,6,3,11,3,16v0,9,-2,17,-6,24v-4,7,-11,12,-19,18v-9,6,-18,11,-28,16v-8,4,-9,4,-17,8v-8,4,-8,4,-17,8r-36,18v0,0,-23,14,-34,23v-11,9,-21,20,-29,32v-8,12,-15,26,-19,43r7,7r221,0","k":{"\u00fc":40,"\u00fb":40,"\u00fa":41,"\u00f9":39,"\u00f6":53,"\u00f5":50,"\u00f4":48,"\u00f3":49,"\u00f2":48,"\u00f1":40,"\u00ef":15,"\u00ed":28,"\u00ec":38,"\u00eb":48,"\u00ea":47,"\u00e9":48,"\u00e8":46,"\u00e7":48,"\u00e5":44,"\u00e4":45,"\u00e3":46,"\u00e2":44,"\u00e1":45,"\u00e0":44,"\u00dc":46,"\u00d6":34,"\u00d1":46,"\u00c9":46,"\u00c7":35,"z":31,"y":27,"x":25,"w":20,"v":20,"u":40,"t":17,"s":43,"r":38,"q":48,"p":38,"o":48,"n":38,"m":38,"l":42,"k":35,"j":39,"i":41,"h":37,"g":48,"f":20,"e":46,"d":53,"c":48,"b":35,"a":46,"`":50,"_":263,"^":82,"]":84,"\\":75,"[":65,"Z":39,"Y":48,"X":30,"W":34,"V":38,"U":46,"T":72,"S":45,"R":46,"Q":34,"P":46,"O":34,"N":46,"M":46,"L":46,"K":46,"J":39,"I":49,"H":46,"G":35,"F":46,"E":46,"D":46,"C":35,"B":46,"9":44,"8":46,"7":102,"6":46,"5":78,"4":116,"3":72,"2":51,"1":58,"0":33}},"3":{"d":"262,-66v0,-9,-2,-19,-6,-27v-4,-8,-10,-16,-18,-22v-8,-6,-17,-11,-28,-15v-11,-4,-22,-6,-35,-6r0,6v11,0,20,-2,29,-6v9,-4,17,-10,24,-16v7,-6,11,-13,15,-20v4,-7,5,-14,5,-20v0,-10,-2,-19,-6,-27v-4,-8,-9,-15,-17,-21v-8,-6,-18,-11,-30,-14v-12,-3,-26,-6,-42,-6v-17,0,-31,2,-43,6v-12,4,-22,8,-30,14v-8,6,-15,13,-19,21v-4,8,-7,15,-9,23r19,4v1,-6,3,-12,6,-18v3,-6,8,-11,14,-16v6,-5,15,-8,25,-11v10,-3,22,-5,37,-5v15,0,27,1,37,4v10,3,17,7,23,12v6,5,10,10,13,16v3,6,4,11,4,17v0,4,-1,9,-3,15v-2,6,-6,12,-13,17v-7,5,-16,10,-29,14v-13,4,-29,6,-51,7r0,16v24,1,42,3,56,7v14,4,26,8,34,13v8,5,13,11,16,18v3,7,4,13,4,20v0,8,-3,16,-6,23v-3,7,-9,14,-16,19v-7,5,-16,9,-27,12v-11,3,-25,4,-40,4v-16,0,-29,-1,-40,-4v-11,-3,-20,-6,-28,-11v-8,-5,-14,-11,-19,-18v-5,-7,-8,-14,-11,-22r-18,6v4,10,9,20,15,28v6,8,14,15,23,21v9,6,21,10,34,13v13,3,27,5,44,5v17,0,33,-2,46,-6v13,-4,25,-8,34,-15v9,-7,15,-15,20,-24v5,-9,7,-20,7,-31","k":{"\u00fc":29,"\u00fb":28,"\u00fa":29,"\u00f9":27,"\u00f6":21,"\u00f5":18,"\u00f4":17,"\u00f3":18,"\u00f2":16,"\u00f1":30,"\u00ed":27,"\u00ec":29,"\u00eb":17,"\u00ea":16,"\u00e9":17,"\u00e8":15,"\u00e5":21,"\u00e4":21,"\u00e3":22,"\u00e2":21,"\u00e1":21,"\u00e0":20,"\u00dc":36,"\u00d6":23,"\u00d1":37,"\u00c9":37,"\u00c7":23,"\u00c5":20,"\u00c4":20,"z":36,"y":23,"x":30,"w":16,"v":16,"u":24,"t":17,"s":26,"r":26,"p":26,"n":26,"m":26,"l":33,"k":26,"j":30,"i":32,"h":28,"f":19,"d":22,"b":27,"a":19,"`":58,"_":261,"^":76,"]":75,"\\":73,"[":56,"Z":49,"Y":46,"X":46,"W":33,"V":37,"U":36,"T":65,"S":32,"R":37,"Q":23,"P":37,"O":23,"N":37,"M":37,"L":37,"K":37,"J":20,"I":41,"H":37,"G":23,"F":37,"E":37,"D":37,"C":23,"B":37,"A":20,"9":41,"8":27,"7":96,"6":29,"5":42,"4":42,"3":51,"2":57,"1":57,"0":20}},"4":{"d":"267,-66r0,-18r-58,0r0,-173r-14,0r-160,178r0,13r155,0r0,72r19,0r0,-72r58,0xm192,-228v-1,10,-2,20,-2,31r0,34r0,79r-126,0r75,-84r27,-30","k":{"\u00fc":31,"\u00fb":31,"\u00fa":32,"\u00f9":30,"\u00f6":23,"\u00f5":20,"\u00f4":19,"\u00f3":20,"\u00f2":18,"\u00f1":33,"\u00ef":32,"\u00ee":32,"\u00ed":32,"\u00ec":32,"\u00eb":19,"\u00ea":18,"\u00e9":19,"\u00e8":18,"\u00e5":25,"\u00e4":26,"\u00e3":26,"\u00e2":25,"\u00e1":26,"\u00e0":24,"\u00dc":37,"\u00d6":25,"\u00d1":39,"\u00c9":39,"\u00c7":25,"\u00c5":29,"\u00c4":29,"z":67,"y":61,"x":62,"w":54,"v":54,"u":27,"t":54,"s":67,"r":28,"q":15,"p":28,"o":15,"n":28,"m":28,"l":36,"k":28,"j":32,"i":35,"h":31,"f":48,"e":15,"d":23,"c":15,"b":28,"a":24,"`":72,"_":266,"^":105,"]":77,"\\":90,"[":58,"Z":68,"Y":61,"X":70,"W":57,"V":59,"U":37,"T":67,"S":77,"R":39,"Q":25,"P":39,"O":25,"N":39,"M":39,"L":39,"K":39,"J":62,"I":43,"H":39,"G":25,"F":39,"E":39,"D":39,"C":25,"B":39,"A":29,"9":80,"8":29,"7":109,"6":30,"5":90,"4":45,"3":69,"2":77,"1":93,"0":22}},"5":{"d":"265,-77v0,-13,-3,-24,-9,-35v-6,-11,-13,-20,-23,-28v-10,-8,-22,-14,-36,-18v-14,-4,-30,-6,-47,-6v-14,0,-26,2,-38,5v-12,3,-22,6,-30,11r18,-88r146,0r0,-19r-161,0r-27,133r12,5v8,-8,19,-15,32,-21v13,-6,29,-9,48,-9v15,0,28,2,40,6v12,4,22,9,30,15v8,6,15,13,19,22v4,9,7,18,7,28v0,10,-3,19,-8,28v-5,9,-12,16,-21,22v-9,6,-19,11,-31,14v-12,3,-24,4,-38,4v-14,0,-27,-1,-37,-4v-10,-3,-19,-7,-26,-12v-7,-5,-14,-10,-19,-17v-5,-7,-9,-14,-13,-21r-18,7v4,9,10,17,16,25v6,8,14,15,23,21v9,6,20,11,32,14v12,3,26,5,42,5v19,0,36,-2,50,-7v14,-5,27,-12,37,-20v10,-8,17,-17,22,-27v5,-10,8,-22,8,-33","k":{"\u00fc":36,"\u00fb":35,"\u00fa":36,"\u00f9":35,"\u00f6":27,"\u00f5":25,"\u00f4":23,"\u00f3":24,"\u00f2":23,"\u00f1":38,"\u00ef":19,"\u00ee":36,"\u00ed":37,"\u00ec":22,"\u00eb":23,"\u00ea":23,"\u00e9":23,"\u00e8":22,"\u00e7":15,"\u00e5":29,"\u00e4":29,"\u00e3":31,"\u00e2":29,"\u00e1":30,"\u00e0":28,"\u00dc":42,"\u00d6":27,"\u00d1":44,"\u00c9":44,"\u00c7":27,"\u00c5":30,"\u00c4":30,"z":50,"y":60,"x":48,"w":48,"v":48,"u":28,"t":60,"s":35,"r":29,"q":15,"p":29,"o":15,"n":29,"m":29,"l":40,"k":33,"j":37,"i":39,"h":35,"g":15,"f":53,"e":15,"d":27,"c":15,"b":33,"a":24,"`":61,"_":264,"^":78,"]":82,"\\":63,"[":63,"Z":62,"Y":34,"X":51,"W":30,"V":32,"U":42,"T":40,"S":44,"R":44,"Q":27,"P":44,"O":27,"N":44,"M":44,"L":44,"K":44,"J":32,"I":48,"H":44,"G":27,"F":44,"E":44,"D":44,"C":27,"B":44,"A":30,"9":50,"8":33,"7":82,"6":34,"5":51,"4":49,"3":59,"2":68,"1":125,"0":24}},"6":{"d":"278,-78v0,-13,-3,-25,-9,-36v-6,-11,-14,-20,-25,-27v-11,-7,-24,-13,-39,-17v-15,-4,-32,-6,-50,-6v-26,0,-47,3,-64,11v-17,8,-30,17,-38,28v2,-38,12,-67,30,-87v18,-20,44,-30,79,-30v24,0,43,4,57,13v14,9,24,22,31,37r17,-7v-9,-19,-21,-34,-38,-45v-17,-11,-39,-16,-67,-16v-24,0,-43,4,-59,12v-16,8,-30,18,-40,32v-10,14,-18,30,-23,49v-5,19,-7,40,-7,62v0,12,3,25,6,39v3,14,10,26,19,37v9,11,22,21,38,28v16,7,37,11,63,11v23,0,43,-3,58,-9v15,-6,27,-14,36,-23v9,-9,15,-18,19,-28v4,-10,6,-20,6,-28xm259,-78v0,7,-2,15,-5,23v-3,8,-8,16,-16,23v-8,7,-17,13,-30,18v-13,5,-30,6,-49,6v-16,0,-29,-1,-40,-4v-11,-3,-20,-8,-28,-13v-8,-5,-14,-10,-19,-16v-5,-6,-8,-11,-11,-17v-3,-6,-4,-12,-5,-16v-1,-4,-1,-7,-1,-9r0,-1v0,-6,2,-12,5,-19v3,-7,9,-15,17,-21v8,-6,19,-12,32,-16v13,-4,29,-7,48,-7v32,0,57,7,75,19v18,12,27,29,27,50","k":{"\u00fc":19,"\u00fb":18,"\u00fa":19,"\u00f9":18,"\u00f1":21,"\u00ed":15,"\u00ec":19,"\u00dc":25,"\u00d1":27,"\u00c9":27,"z":39,"y":48,"x":37,"w":36,"v":36,"u":16,"t":44,"s":23,"r":17,"p":17,"n":17,"m":17,"l":23,"k":17,"j":21,"i":23,"h":19,"f":36,"b":17,"`":48,"_":267,"^":59,"]":66,"\\":65,"[":46,"Z":46,"Y":38,"X":43,"W":22,"V":27,"U":25,"T":60,"S":27,"R":27,"P":27,"N":27,"M":27,"L":27,"K":27,"J":16,"I":31,"H":27,"F":27,"E":27,"D":27,"B":27,"9":34,"8":18,"7":92,"6":18,"5":35,"4":33,"3":43,"2":48,"1":46}},"7":{"d":"255,-243r0,-12r-207,0r0,18r183,0r-124,243r22,0","k":{"\u00fc":64,"\u00fb":63,"\u00fa":64,"\u00f9":63,"\u00f6":82,"\u00f5":80,"\u00f4":78,"\u00f3":80,"\u00f2":72,"\u00f1":66,"\u00ee":19,"\u00ed":45,"\u00ec":15,"\u00eb":73,"\u00ea":77,"\u00e9":78,"\u00e8":63,"\u00e7":77,"\u00e5":90,"\u00e4":76,"\u00e3":77,"\u00e2":82,"\u00e1":96,"\u00e0":66,"\u00dc":49,"\u00d6":62,"\u00d1":52,"\u00c9":52,"\u00c7":63,"\u00c5":103,"\u00c4":103,"z":63,"y":50,"x":57,"w":43,"v":43,"u":62,"t":41,"s":74,"r":64,"q":77,"p":64,"o":77,"n":64,"m":64,"l":48,"k":41,"j":45,"i":48,"h":44,"g":78,"f":42,"e":76,"d":82,"c":77,"b":41,"a":96,"`":28,"_":253,"^":116,"]":90,"\\":56,"[":71,"Z":55,"Y":28,"X":45,"W":23,"V":25,"U":49,"T":33,"S":59,"R":52,"Q":62,"P":52,"O":62,"N":52,"M":52,"L":52,"K":52,"J":114,"I":56,"H":52,"G":62,"F":52,"E":52,"D":52,"C":63,"B":52,"A":103,"9":67,"8":64,"7":76,"6":73,"5":93,"4":124,"3":90,"2":77,"1":72,"0":61}},"8":{"d":"273,-65v0,-9,-2,-17,-5,-24v-3,-7,-7,-14,-13,-20v-6,-6,-12,-11,-19,-15v-7,-4,-16,-7,-24,-10v7,-2,15,-5,21,-8v6,-3,11,-7,16,-12v5,-5,8,-10,11,-16v3,-6,4,-13,4,-21v0,-10,-3,-20,-8,-28v-5,-8,-13,-15,-22,-21v-9,-6,-21,-12,-35,-15v-14,-3,-29,-5,-46,-5v-17,0,-32,2,-46,5v-14,3,-25,9,-34,15v-9,6,-17,13,-22,21v-5,8,-8,18,-8,28v0,7,1,14,4,20v3,6,6,11,11,16v5,5,10,10,16,13v6,3,13,6,20,8v-8,3,-16,7,-23,11v-7,4,-14,9,-20,15v-6,6,-10,12,-13,19v-3,7,-5,15,-5,24v0,12,4,23,10,32v6,9,14,18,25,24v11,6,23,11,38,14v15,3,30,5,47,5v18,0,34,-2,49,-5v15,-3,27,-9,38,-15v11,-6,19,-14,25,-23v6,-9,8,-20,8,-32xm245,-191v0,6,-1,12,-5,18v-4,6,-10,12,-17,16v-7,4,-16,8,-28,11v-12,3,-26,4,-42,4v-16,0,-29,-1,-41,-4v-12,-3,-22,-6,-29,-11v-7,-5,-13,-10,-16,-16v-3,-6,-5,-12,-5,-18r0,0v0,-6,1,-13,5,-19v4,-6,9,-11,17,-16v8,-5,17,-9,29,-12v12,-3,24,-4,40,-4v16,0,29,1,41,4v12,3,21,7,29,12v8,5,13,10,17,16v4,6,5,13,5,19xm255,-64v0,8,-2,16,-7,23v-5,7,-11,13,-20,18v-9,5,-19,8,-32,11v-13,3,-27,4,-43,4v-16,0,-29,-1,-42,-4v-13,-3,-23,-6,-32,-11v-9,-5,-15,-11,-20,-18v-5,-7,-7,-15,-7,-23r0,0v0,-7,2,-15,6,-22v4,-7,10,-14,18,-20v8,-6,18,-10,31,-14v13,-4,28,-6,46,-6v18,0,33,2,46,6v13,4,24,8,32,14v8,6,14,13,18,20v4,7,6,15,6,22","k":{"\u00fc":18,"\u00fb":17,"\u00fa":18,"\u00f9":17,"\u00f1":19,"\u00ec":18,"\u00dc":25,"\u00d1":26,"\u00c9":26,"z":22,"x":15,"s":16,"l":22,"k":15,"j":19,"i":22,"h":18,"b":16,"`":48,"_":267,"^":67,"]":64,"\\":61,"[":45,"Z":40,"Y":33,"X":37,"W":19,"V":23,"U":25,"T":58,"S":22,"R":26,"P":26,"N":26,"M":26,"L":26,"K":26,"I":30,"H":26,"F":26,"E":26,"D":26,"B":26,"9":29,"8":16,"7":88,"6":18,"5":31,"4":32,"3":40,"2":44,"1":43}},"9":{"d":"278,-144v0,-5,-1,-11,-2,-19v-1,-8,-2,-15,-5,-24v-3,-9,-7,-17,-13,-26v-6,-9,-13,-16,-22,-23v-9,-7,-21,-13,-35,-17v-14,-4,-31,-7,-51,-7v-22,0,-40,3,-55,9v-15,6,-27,13,-36,21v-9,8,-16,18,-20,28v-4,10,-6,19,-6,28v0,11,3,21,7,32v4,11,11,21,21,29v10,8,22,15,38,20v16,5,34,8,57,8v26,0,47,-4,64,-12v17,-8,30,-16,38,-28v-1,18,-4,34,-8,48v-4,14,-11,27,-20,37v-9,10,-20,18,-33,24v-13,6,-29,8,-48,8v-12,0,-24,0,-33,-3v-9,-3,-18,-6,-25,-11v-7,-5,-13,-11,-19,-17v-6,-6,-10,-13,-14,-21r-18,7v5,9,11,18,18,26v7,8,14,13,23,19v9,6,19,10,30,13v11,3,24,5,38,5v24,0,44,-4,60,-12v16,-8,30,-19,40,-33v10,-14,18,-30,22,-49v4,-19,7,-39,7,-60xm256,-166v0,7,-2,14,-6,21v-4,7,-10,15,-18,21v-8,6,-18,11,-31,15v-13,4,-29,6,-47,6v-17,0,-31,-2,-44,-5v-13,-3,-23,-9,-32,-15v-9,-6,-15,-13,-19,-22v-4,-9,-7,-19,-7,-29v0,-6,2,-13,5,-21v3,-8,8,-15,15,-22v7,-7,17,-13,30,-18v13,-5,30,-7,50,-7v16,0,29,2,40,5v11,3,20,7,28,12v8,5,14,11,19,17v5,6,8,11,11,17v3,6,4,11,5,15v1,4,1,8,1,10r0,0","k":{"\u00e5":15,"\u00e4":15,"\u00e3":16,"\u00e1":15,"\u00dc":19,"\u00d1":21,"\u00c9":21,"\u00c5":19,"\u00c4":19,"l":18,"i":17,"`":52,"_":267,"^":41,"]":60,"\\":61,"[":41,"Z":51,"Y":34,"X":49,"W":17,"V":22,"U":19,"T":60,"S":24,"R":21,"P":21,"N":21,"M":21,"L":21,"K":21,"J":22,"I":25,"H":21,"F":21,"E":21,"D":21,"B":21,"A":19,"9":18,"8":18,"7":90,"5":39,"4":33,"3":48,"2":41,"1":41}},":":{"d":"56,-141r0,-40r-19,0r0,40r19,0xm56,6r0,-41r-19,0r0,41r19,0","w":93},";":{"d":"56,-141r0,-40r-19,0r0,40r19,0xm62,-35r-21,0r-14,70r16,0","w":93},"<":{"d":"228,-3r0,-19r-156,-69r156,-69r0,-19r-182,81r0,13","w":288},"=":{"d":"242,-105r0,-18r-196,0r0,18r196,0xm242,-59r0,-18r-196,0r0,18r196,0","w":288},">":{"d":"242,-85r0,-13r-182,-81r0,19r156,69r-156,69r0,19","w":288},"?":{"d":"210,-199v0,-12,-2,-23,-8,-31v-6,-8,-14,-15,-23,-20v-9,-5,-21,-8,-33,-10v-12,-2,-25,-3,-38,-3v-17,0,-31,1,-43,4v-12,3,-23,7,-32,12v-9,5,-17,11,-23,18v-6,7,-11,15,-15,24r17,7v3,-7,7,-13,12,-19v5,-6,11,-12,19,-16v8,-4,17,-7,27,-9v10,-2,23,-4,37,-4v12,0,23,1,33,3v10,2,19,4,27,8v8,4,14,8,18,14v4,6,7,14,7,22v0,6,-2,11,-3,16v-1,5,-4,9,-7,13v-3,4,-7,7,-13,11v-6,4,-12,8,-20,12v-13,6,-24,12,-32,18v-8,6,-15,13,-20,20v-5,7,-7,16,-9,25v-2,9,-3,21,-2,34r17,0v0,-10,0,-19,1,-27v1,-8,3,-15,7,-21v4,-6,9,-11,16,-16v7,-5,15,-10,27,-16v10,-5,19,-10,26,-15v7,-5,12,-10,17,-15v5,-5,8,-11,10,-17v2,-6,3,-14,3,-22xm105,6r0,-41r-19,0r0,41r19,0","w":210},"@":{"d":"337,-130v0,-13,-3,-27,-9,-39v-6,-12,-14,-24,-26,-33v-12,-9,-26,-16,-43,-22v-17,-6,-36,-9,-58,-9v-24,0,-48,4,-69,11v-21,7,-40,17,-56,30v-16,13,-28,28,-37,47v-9,19,-14,40,-14,63v0,18,4,35,11,50v7,15,17,29,30,40v13,11,27,20,45,26v18,6,38,10,59,10v17,0,33,-2,51,-5v18,-3,35,-10,52,-22r-12,-12v-14,8,-28,14,-42,17v-14,3,-28,4,-45,4v-19,0,-36,-3,-52,-8v-16,-5,-30,-12,-42,-22v-12,-10,-21,-22,-27,-35v-6,-13,-9,-27,-9,-43v0,-23,5,-43,14,-59v9,-16,21,-30,36,-42v15,-11,31,-20,49,-25v18,-5,37,-7,58,-7v11,0,21,1,30,2v9,1,18,3,25,6v7,3,13,5,19,8v6,3,11,7,16,11v10,8,17,18,21,28v4,10,6,21,6,30v0,8,0,15,-2,23v-2,8,-4,15,-7,22v-3,7,-6,14,-10,20v-4,6,-8,11,-12,15v-2,2,-6,3,-10,3r-4,0r-5,0r0,-92r0,-5r-1,0v0,-4,-1,-10,-3,-17v-2,-7,-6,-13,-11,-20v-5,-7,-11,-12,-19,-17v-8,-5,-19,-7,-32,-7v-7,0,-14,1,-22,1v-8,0,-14,0,-21,1v-10,1,-10,1,-17,2r-7,1r2,18v0,0,1,0,6,-1v4,-1,8,-1,14,-2v6,-1,12,-1,20,-2v8,-1,16,-1,24,-1v12,0,22,3,29,8v7,5,11,12,14,18v3,6,5,12,5,18r0,10r0,3v-26,2,-49,6,-69,9v-20,3,-37,8,-51,14v-14,6,-25,14,-32,23v-7,9,-11,21,-11,35v0,7,2,15,5,22v3,7,7,13,14,19v7,6,16,10,27,13v11,3,25,5,42,5v5,0,12,-1,19,-2v7,-1,14,-3,22,-6v8,-3,15,-6,23,-10v8,-4,14,-10,20,-16r4,-4r8,0v1,0,3,-1,4,-1r4,0v3,0,7,0,10,-1v3,-1,7,-2,10,-5v6,-5,11,-11,16,-19v5,-8,10,-16,13,-25v3,-9,5,-17,7,-26v2,-9,3,-16,3,-24xm249,-41r-1,3v-6,6,-12,11,-19,15v-7,4,-13,7,-20,9v-7,2,-13,3,-19,4v-6,1,-11,1,-15,1v-15,0,-27,-1,-36,-4v-9,-3,-16,-6,-21,-10v-5,-4,-9,-9,-11,-14v-2,-5,-2,-9,-2,-13v0,-10,2,-19,8,-26v6,-7,14,-12,26,-17v12,-5,27,-9,45,-12v18,-3,40,-6,65,-8r0,72","w":358},"A":{"d":"249,6r-119,-267r-12,0r-118,267r21,0r39,-89r128,0r40,89r21,0xm180,-102r-111,0r29,-67v6,-15,7,-15,13,-30r13,-31v7,17,7,17,14,32v7,15,7,16,13,31","w":248,"k":{"\u00dc":20,"y":41,"w":34,"v":34,"t":33,"`":83,"_":240,"^":66,"]":41,"\\":93,"[":22,"Y":64,"W":51,"V":63,"U":20,"T":41,"9":21,"7":76,"6":17,"5":23,"4":32,"3":33,"1":83}},"B":{"d":"267,-70v0,-18,-6,-32,-18,-43v-12,-11,-28,-19,-48,-23v17,-5,30,-13,38,-23v8,-10,12,-22,12,-36v0,-10,-2,-19,-7,-27v-5,-8,-13,-15,-23,-21v-10,-6,-23,-10,-39,-13v-16,-3,-35,-5,-57,-5r-77,0r0,267r75,0v10,0,20,-1,31,-1v11,0,22,-1,33,-3v11,-2,20,-5,30,-8v10,-3,19,-8,26,-14v7,-6,14,-12,18,-20v4,-8,6,-18,6,-30xm231,-195v0,6,-1,12,-3,18v-2,6,-8,11,-15,16v-7,5,-18,9,-32,12v-14,3,-33,5,-57,5r-56,0r0,-99r55,0v21,0,39,1,53,4v14,3,25,7,33,11v8,4,14,9,17,15v3,6,5,12,5,18xm248,-70v0,12,-4,22,-11,30v-7,8,-17,13,-29,17v-12,4,-25,7,-40,8v-15,1,-30,2,-45,2r-55,0r0,-113r61,0v21,0,39,1,54,4v15,3,27,7,37,12v10,5,17,11,21,18v4,7,7,14,7,22","w":288,"k":{"z":15,"`":39,"_":234,"^":51,"]":53,"\\":52,"[":33,"Z":30,"Y":25,"X":27,"V":16,"T":49,"I":18,"9":19,"7":78,"5":20,"4":20,"3":29,"2":36,"1":36}},"C":{"d":"286,-56r-16,-11v-5,6,-10,13,-16,20v-6,7,-14,13,-23,19v-9,6,-17,11,-28,15v-11,4,-23,6,-36,6v-16,0,-31,-3,-46,-8v-15,-5,-28,-12,-40,-22v-12,-10,-21,-22,-28,-37v-7,-15,-11,-33,-11,-53v0,-22,5,-41,12,-56v7,-15,17,-27,29,-37v12,-10,25,-17,40,-21v15,-4,31,-7,46,-7v11,0,21,1,30,4v9,3,17,6,25,11v8,5,15,11,21,17v6,6,11,14,16,21r16,-10v-6,-9,-12,-18,-19,-25v-7,-7,-15,-14,-24,-19v-9,-5,-19,-10,-30,-13v-11,-3,-22,-4,-35,-4v-21,0,-40,4,-58,10v-18,6,-34,15,-47,27v-13,12,-23,27,-30,44v-7,17,-11,36,-11,57v0,21,3,41,11,58v8,17,18,32,32,45v11,10,26,19,43,26v17,7,36,10,58,10v15,0,29,-2,41,-6v12,-4,22,-10,32,-16v10,-6,19,-13,26,-21v7,-8,14,-16,20,-24","w":303,"k":{"\u00fc":29,"\u00fb":28,"\u00fa":29,"\u00f9":28,"\u00f6":25,"\u00f5":23,"\u00f4":21,"\u00f3":22,"\u00f2":21,"\u00f1":32,"\u00ed":22,"\u00ec":30,"\u00eb":21,"\u00ea":21,"\u00e9":22,"\u00e8":20,"\u00e7":22,"\u00e5":20,"\u00e4":21,"\u00e3":22,"\u00e2":20,"\u00e1":21,"\u00e0":20,"\u00dc":37,"\u00d6":31,"\u00d1":37,"\u00c9":37,"\u00c7":31,"\u00c5":21,"\u00c4":21,"z":55,"y":85,"x":52,"w":69,"v":69,"u":30,"t":55,"s":39,"r":32,"q":23,"p":31,"o":23,"n":32,"m":32,"l":32,"k":26,"j":29,"i":32,"h":28,"g":22,"f":45,"e":22,"d":26,"c":22,"b":26,"a":24,"`":32,"_":275,"^":104,"]":74,"\\":69,"[":55,"Z":54,"Y":42,"X":53,"W":27,"V":31,"U":37,"T":59,"S":37,"R":37,"Q":31,"P":37,"O":31,"N":37,"M":37,"L":37,"K":37,"J":26,"I":40,"H":37,"G":31,"F":37,"E":37,"D":37,"C":31,"B":37,"A":21,"9":40,"8":27,"7":95,"6":33,"5":41,"4":139,"3":49,"2":54,"1":51,"0":27}},"D":{"d":"287,-127v0,-20,-3,-39,-9,-55v-6,-16,-17,-30,-29,-42v-12,-12,-28,-21,-47,-27v-19,-6,-42,-10,-67,-10r-87,0r0,267r87,0v25,0,48,-4,67,-10v19,-6,35,-15,47,-27v12,-12,23,-26,29,-42v6,-16,9,-34,9,-54xm267,-127v0,17,-2,32,-7,46v-5,14,-12,26,-23,36v-11,10,-24,18,-41,24v-17,6,-37,8,-60,8r-68,0r0,-230r68,0v23,0,43,3,60,9v17,6,30,13,41,23v11,10,18,23,23,37v5,14,7,30,7,47","w":309,"k":{"\u00d1":16,"\u00c9":16,"`":56,"_":256,"^":35,"]":54,"\\":61,"[":35,"Z":49,"Y":35,"X":48,"W":15,"V":21,"T":66,"S":22,"R":16,"P":16,"N":16,"M":16,"L":16,"K":16,"J":21,"I":20,"H":16,"F":16,"E":16,"D":16,"B":16,"7":95,"5":35,"4":27,"3":44,"2":40,"1":41}},"E":{"d":"232,6r0,-19r-164,0r0,-111r129,0r0,-19r-129,0r0,-100r159,0r0,-18r-179,0r0,267r184,0","w":258,"k":{"\u00fc":50,"\u00fb":50,"\u00fa":51,"\u00f9":50,"\u00f6":59,"\u00f5":57,"\u00f4":55,"\u00f3":57,"\u00f2":55,"\u00f1":39,"\u00ee":37,"\u00ed":38,"\u00ec":38,"\u00eb":55,"\u00ea":54,"\u00e9":55,"\u00e8":54,"\u00e7":51,"\u00e5":43,"\u00e4":44,"\u00e3":45,"\u00e2":44,"\u00e1":45,"\u00e0":43,"\u00dc":45,"\u00d6":51,"\u00d1":44,"\u00c9":44,"\u00c7":51,"z":27,"y":73,"x":21,"w":63,"v":63,"u":46,"t":81,"s":44,"r":34,"q":51,"p":34,"o":51,"n":34,"m":34,"l":40,"k":33,"j":37,"i":39,"h":35,"g":52,"f":53,"e":50,"d":59,"c":51,"b":33,"a":42,"`":165,"_":205,"^":97,"]":82,"\\":48,"[":63,"Z":37,"Y":22,"X":28,"W":18,"V":20,"U":45,"T":28,"S":25,"R":29,"Q":51,"P":44,"O":51,"N":44,"M":44,"L":44,"K":44,"J":37,"I":48,"H":44,"G":51,"F":44,"E":44,"D":44,"C":51,"B":44,"9":73,"8":63,"7":72,"6":62,"5":79,"4":116,"3":86,"2":49,"1":126,"0":50}},"F":{"d":"227,-243r0,-18r-179,0r0,267r20,0r0,-130r129,0r0,-19r-129,0r0,-100r159,0","w":252,"k":{"\u00fc":59,"\u00fb":59,"\u00fa":60,"\u00f9":58,"\u00f6":54,"\u00f5":52,"\u00f4":50,"\u00f3":51,"\u00f2":50,"\u00f1":62,"\u00ee":60,"\u00ed":61,"\u00ec":60,"\u00eb":49,"\u00ea":49,"\u00e9":50,"\u00e8":49,"\u00e7":46,"\u00e5":86,"\u00e4":67,"\u00e3":156,"\u00e2":155,"\u00e1":156,"\u00e0":154,"\u00dc":40,"\u00d6":46,"\u00d1":42,"\u00c9":42,"\u00c7":46,"\u00c5":78,"\u00c4":78,"z":142,"y":68,"x":85,"w":58,"v":58,"u":55,"t":84,"s":55,"r":57,"q":46,"p":57,"o":46,"n":57,"m":57,"l":39,"k":32,"j":36,"i":38,"h":34,"g":47,"f":69,"e":46,"d":53,"c":46,"b":32,"a":153,"`":158,"_":198,"^":90,"]":81,"\\":43,"[":62,"Z":45,"Y":16,"X":33,"U":40,"T":47,"S":65,"R":42,"Q":46,"P":42,"O":46,"N":42,"M":42,"L":42,"K":42,"J":147,"I":46,"H":42,"G":46,"F":42,"E":42,"D":42,"C":46,"B":42,"A":78,"9":67,"8":84,"7":67,"6":57,"5":84,"4":110,"3":105,"2":94,"1":121,"0":44}},"G":{"d":"274,-210v-7,-9,-15,-17,-22,-24v-7,-7,-15,-13,-23,-18v-8,-5,-18,-8,-28,-10v-10,-2,-22,-4,-35,-4v-10,0,-21,1,-32,3v-11,2,-21,5,-32,10v-11,5,-22,11,-31,18v-9,7,-18,17,-25,27v-7,10,-13,22,-17,35v-4,13,-6,29,-6,46v0,22,4,41,12,58v8,17,18,32,31,44v13,12,29,21,46,27v17,6,35,9,54,9v10,0,18,-1,27,-2v9,-1,17,-2,26,-5v9,-3,18,-6,26,-10v8,-4,17,-9,26,-15r0,-96r-124,0r0,18r104,0r0,68v-12,8,-25,14,-40,18v-15,4,-29,6,-43,6v-17,0,-34,-3,-49,-8v-15,-5,-29,-13,-40,-23v-11,-10,-20,-23,-27,-38v-7,-15,-10,-32,-10,-51v0,-15,2,-29,6,-41v4,-12,9,-22,15,-31v6,-9,14,-17,22,-23v8,-6,17,-11,26,-15v9,-4,19,-6,29,-8v10,-2,18,-3,27,-3v11,0,20,1,28,3v8,2,17,5,24,9v7,4,14,9,20,15v6,6,13,13,19,21","w":300,"k":{"\u00fc":27,"\u00fb":27,"\u00fa":28,"\u00f9":26,"\u00f6":18,"\u00f5":15,"\u00f1":30,"\u00ed":15,"\u00ec":22,"\u00e5":18,"\u00e4":19,"\u00e3":20,"\u00e2":18,"\u00e1":19,"\u00e0":18,"\u00dc":32,"\u00d6":15,"\u00d1":36,"\u00c9":36,"\u00c7":16,"z":30,"y":53,"x":28,"w":41,"v":41,"u":26,"t":52,"s":19,"r":27,"p":27,"n":27,"m":27,"l":31,"k":24,"j":28,"i":30,"h":26,"f":44,"d":18,"b":24,"a":20,"`":31,"_":272,"^":107,"]":73,"\\":58,"[":54,"Z":36,"Y":32,"X":33,"W":18,"V":21,"U":32,"T":48,"S":26,"R":35,"Q":15,"P":35,"O":15,"N":35,"M":35,"L":35,"K":35,"I":39,"H":35,"G":15,"F":35,"E":35,"D":35,"C":16,"B":35,"9":37,"8":25,"7":83,"6":24,"5":39,"4":41,"3":48,"2":46,"1":42}},"H":{"d":"281,6r0,-267r-19,0r0,118r-194,0r0,-118r-20,0r0,267r20,0r0,-131r194,0r0,131r19,0","w":329,"k":{"\u00fc":28,"\u00fb":28,"\u00fa":29,"\u00f9":27,"\u00f6":19,"\u00f5":17,"\u00f4":15,"\u00f3":16,"\u00f1":30,"\u00eb":15,"\u00e9":15,"\u00e5":20,"\u00e4":21,"\u00e3":21,"\u00e2":20,"\u00e1":21,"\u00e0":19,"\u00dc":34,"\u00d6":16,"\u00d1":37,"\u00c9":37,"\u00c7":16,"z":19,"u":24,"s":18,"r":26,"p":26,"n":26,"m":26,"l":33,"k":26,"j":30,"i":32,"h":28,"d":19,"b":26,"a":19,"`":22,"_":275,"^":55,"]":75,"\\":37,"[":56,"Z":30,"X":21,"U":34,"T":17,"S":27,"R":37,"Q":16,"P":37,"O":16,"N":37,"M":37,"L":37,"K":37,"I":40,"H":37,"G":16,"F":37,"E":37,"D":37,"C":16,"B":37,"9":31,"8":26,"7":60,"6":26,"5":41,"4":42,"3":50,"2":42,"1":44}},"I":{"d":"71,6r0,-267r-19,0r0,267r19,0","w":123,"k":{"\u00fc":32,"\u00fb":31,"\u00fa":32,"\u00f9":31,"\u00f6":23,"\u00f5":20,"\u00f4":19,"\u00f3":19,"\u00f2":18,"\u00f1":34,"\u00ed":18,"\u00eb":19,"\u00ea":18,"\u00e9":19,"\u00e8":17,"\u00e5":24,"\u00e4":24,"\u00e3":25,"\u00e2":23,"\u00e1":24,"\u00e0":23,"\u00dc":37,"\u00d6":19,"\u00d1":40,"\u00c9":40,"\u00c7":19,"z":23,"y":81,"x":17,"u":28,"s":22,"r":30,"p":30,"o":15,"n":30,"m":30,"l":36,"k":30,"i":36,"h":32,"d":23,"b":30,"a":22,"`":26,"_":66,"^":59,"]":117,"\\":40,"[":59,"Z":33,"X":24,"U":37,"T":21,"S":31,"R":40,"Q":19,"P":40,"O":19,"N":40,"M":40,"L":40,"K":40,"J":17,"I":44,"H":40,"G":19,"F":40,"E":40,"D":40,"C":19,"B":40,"9":35,"8":30,"7":64,"6":30,"5":44,"4":46,"3":53,"2":46,"1":48,"0":18}},"J":{"d":"180,-116r0,-145r-19,0r0,145v0,37,-7,64,-21,82v-14,18,-34,26,-59,26v-15,0,-29,-3,-40,-9v-11,-6,-23,-14,-34,-25r-12,14v6,6,12,11,18,16v6,5,12,9,19,12v7,3,14,6,22,8v8,2,17,3,27,3v31,0,56,-11,73,-32v17,-21,26,-54,26,-95","w":226,"k":{"\u00fc":28,"\u00fb":27,"\u00fa":28,"\u00f9":27,"\u00f6":19,"\u00f5":17,"\u00f4":15,"\u00f3":16,"\u00f1":30,"\u00eb":15,"\u00e9":15,"\u00e5":25,"\u00e4":25,"\u00e3":26,"\u00e2":25,"\u00e1":26,"\u00e0":24,"\u00dc":33,"\u00d6":16,"\u00d1":36,"\u00c9":36,"\u00c7":16,"\u00c5":26,"\u00c4":26,"z":25,"x":19,"u":24,"s":23,"r":26,"p":26,"n":26,"m":26,"l":32,"k":25,"j":29,"i":31,"h":27,"d":19,"b":26,"a":24,"`":21,"_":224,"^":53,"]":74,"\\":37,"[":55,"Z":39,"X":27,"U":33,"T":16,"S":32,"R":36,"Q":16,"P":36,"O":16,"N":36,"M":36,"L":36,"K":36,"J":27,"I":40,"H":36,"G":16,"F":36,"E":36,"D":36,"C":16,"B":36,"A":26,"9":31,"8":29,"7":59,"6":26,"5":47,"4":44,"3":56,"2":46,"1":43}},"K":{"d":"267,6r-138,-155r117,-112r-28,0r-82,78r-34,33r-34,33r0,-62r0,-82r-20,0r0,267r20,0r0,-97r47,-46r126,143r26,0","w":267,"k":{"\u00fc":20,"\u00fb":19,"\u00fa":21,"\u00f9":19,"\u00f6":29,"\u00f5":26,"\u00f4":24,"\u00f3":26,"\u00f2":24,"\u00eb":24,"\u00ea":23,"\u00e9":24,"\u00e8":23,"\u00e7":21,"\u00dc":26,"\u00d6":39,"\u00c7":39,"y":54,"w":47,"v":47,"u":17,"t":46,"q":22,"o":22,"g":22,"f":19,"e":21,"d":29,"c":21,"`":17,"_":214,"^":110,"]":48,"\\":29,"[":29,"U":26,"S":21,"Q":39,"O":39,"G":39,"C":39,"9":41,"8":27,"7":54,"6":37,"5":44,"4":64,"3":51,"2":15,"1":69,"0":34}},"L":{"d":"238,6r0,-19r-170,0r0,-248r-20,0r0,267r190,0","w":248,"k":{"\u00fc":37,"\u00fb":36,"\u00fa":37,"\u00f9":36,"\u00f6":50,"\u00f5":47,"\u00f4":46,"\u00f3":47,"\u00f2":45,"\u00f1":25,"\u00ef":24,"\u00ee":24,"\u00ed":24,"\u00ec":24,"\u00eb":45,"\u00ea":44,"\u00e9":45,"\u00e8":44,"\u00e7":41,"\u00e5":30,"\u00e4":30,"\u00e3":31,"\u00e2":30,"\u00e1":31,"\u00e0":29,"\u00dc":53,"\u00d6":65,"\u00d1":31,"\u00c9":31,"\u00c7":64,"y":97,"w":77,"v":77,"u":32,"t":67,"s":30,"r":20,"q":41,"p":20,"o":42,"n":20,"m":20,"l":27,"k":21,"j":24,"i":27,"h":23,"g":42,"f":40,"e":40,"d":50,"c":41,"b":21,"a":28,"`":154,"_":194,"^":187,"]":69,"\\":167,"[":50,"Z":24,"Y":93,"X":15,"W":78,"V":94,"U":53,"T":96,"S":45,"R":31,"Q":65,"P":31,"O":65,"N":31,"M":31,"L":31,"K":31,"J":24,"I":35,"H":31,"G":65,"F":31,"E":31,"D":31,"C":65,"B":31,"9":63,"8":51,"7":105,"6":60,"5":66,"4":161,"3":73,"2":37,"1":113,"0":58}},"M":{"d":"411,6r0,-267r-19,0r-100,150r-62,93r-62,-93r-100,-150r-20,0r0,267r20,0r0,-142v0,-38,-1,-70,-1,-93r61,92r94,143r15,0r94,-142r61,-93r0,93r0,142r19,0","w":459,"k":{"\u00fc":28,"\u00fb":27,"\u00fa":28,"\u00f9":27,"\u00f6":19,"\u00f5":16,"\u00f3":15,"\u00f1":30,"\u00e5":19,"\u00e4":20,"\u00e3":21,"\u00e2":19,"\u00e1":20,"\u00e0":19,"\u00dc":33,"\u00d6":15,"\u00d1":36,"\u00c9":36,"\u00c7":15,"z":18,"u":24,"s":17,"r":25,"p":25,"n":25,"m":25,"l":32,"k":25,"j":29,"i":31,"h":27,"d":19,"b":25,"a":18,"`":22,"_":341,"^":54,"]":74,"\\":36,"[":55,"Z":29,"X":20,"U":33,"T":16,"S":27,"R":36,"Q":15,"P":36,"O":15,"N":36,"M":36,"L":36,"K":36,"I":40,"H":36,"G":15,"F":36,"E":36,"D":36,"C":15,"B":36,"9":31,"8":25,"7":59,"6":25,"5":40,"4":41,"3":49,"2":41,"1":43}},"N":{"d":"277,6r0,-267r-19,0r0,145r0,92r-74,-92r-117,-145r-19,0r0,267r20,0r0,-145v0,-39,-1,-69,-1,-92r75,92r117,145r18,0","w":325,"k":{"\u00fc":28,"\u00fb":28,"\u00fa":29,"\u00f9":27,"\u00f6":19,"\u00f5":17,"\u00f4":15,"\u00f3":16,"\u00f1":30,"\u00eb":15,"\u00e9":15,"\u00e5":20,"\u00e4":21,"\u00e3":21,"\u00e2":20,"\u00e1":21,"\u00e0":19,"\u00dc":34,"\u00d6":16,"\u00d1":37,"\u00c9":37,"\u00c7":16,"z":19,"u":24,"s":18,"r":26,"p":26,"n":26,"m":26,"l":33,"k":26,"j":30,"i":32,"h":28,"d":19,"b":26,"a":19,"`":22,"_":271,"^":55,"]":75,"\\":37,"[":56,"Z":30,"X":21,"U":34,"T":17,"S":27,"R":37,"Q":16,"P":37,"O":16,"N":37,"M":37,"L":37,"K":37,"I":40,"H":37,"G":16,"F":37,"E":37,"D":37,"C":16,"B":37,"9":31,"8":26,"7":60,"6":26,"5":41,"4":42,"3":50,"2":42,"1":44}},"O":{"d":"315,-127v0,-23,-4,-44,-12,-61v-8,-17,-18,-32,-32,-44v-14,-12,-29,-20,-47,-26v-18,-6,-36,-8,-55,-8v-19,0,-36,2,-54,8v-18,6,-33,14,-47,26v-14,12,-25,26,-33,43v-8,17,-12,38,-12,61r0,1v0,23,4,43,12,60v8,17,19,32,33,44v14,12,29,19,47,25v18,6,35,9,54,9v19,0,37,-3,55,-9v18,-6,33,-13,47,-25v14,-12,24,-27,32,-44v8,-17,12,-37,12,-60xm296,-128v0,20,-4,38,-11,53v-7,15,-15,28,-27,38v-12,10,-26,17,-41,22v-15,5,-31,7,-48,7v-17,0,-33,-2,-48,-7v-15,-5,-28,-12,-40,-22v-12,-10,-21,-23,-28,-38v-7,-15,-11,-33,-11,-53v0,-20,4,-38,11,-53v7,-15,16,-28,28,-38v12,-10,25,-17,40,-22v15,-5,31,-7,48,-7r0,0v17,0,33,2,48,7v15,5,29,12,41,22v12,10,20,23,27,38v7,15,11,33,11,53","w":338,"k":{"\u00d1":17,"\u00c9":17,"\u00c4":15,"`":54,"_":310,"^":35,"]":55,"\\":62,"[":36,"Z":49,"Y":35,"X":48,"W":15,"V":21,"T":57,"S":22,"R":16,"P":16,"N":16,"M":16,"L":16,"K":16,"J":21,"I":19,"H":16,"F":16,"E":16,"D":16,"B":16,"7":90,"5":35,"4":27,"3":44,"2":40,"1":41}},"P":{"d":"276,-181v0,-12,-3,-23,-8,-33v-5,-10,-14,-19,-25,-26v-11,-7,-25,-11,-43,-15v-18,-4,-39,-6,-63,-6r-89,0r0,267r20,0r0,-105r62,0v25,0,48,-2,66,-6v18,-4,33,-9,45,-16v12,-7,20,-16,26,-26v6,-10,9,-21,9,-34xm256,-181v0,9,-1,17,-5,25v-4,8,-11,14,-21,20v-10,6,-23,10,-39,13v-16,3,-37,5,-62,5r-61,0r0,-125r72,0v23,0,41,3,56,6v15,3,27,7,36,13v9,6,15,13,19,20v4,7,5,15,5,23","w":291,"k":{"\u00fc":15,"\u00fb":15,"\u00fa":16,"\u00f6":22,"\u00f5":19,"\u00f4":17,"\u00f3":18,"\u00f2":17,"\u00f1":18,"\u00ec":16,"\u00eb":17,"\u00ea":16,"\u00e9":17,"\u00e8":15,"\u00e7":18,"\u00e5":47,"\u00e4":48,"\u00e3":49,"\u00e2":47,"\u00e1":48,"\u00e0":46,"\u00dc":21,"\u00d1":23,"\u00c9":23,"\u00c5":46,"\u00c4":46,"z":17,"u":15,"s":17,"r":17,"q":18,"p":17,"o":18,"n":17,"m":17,"l":20,"j":17,"i":19,"h":15,"g":18,"e":17,"d":22,"c":18,"a":50,"`":25,"_":238,"^":46,"]":62,"\\":53,"[":42,"Z":76,"Y":26,"X":46,"V":15,"U":21,"T":53,"S":21,"R":23,"P":23,"N":23,"M":23,"L":23,"K":23,"J":131,"I":27,"H":23,"F":23,"E":23,"D":23,"B":23,"A":46,"9":18,"8":21,"7":83,"6":19,"5":52,"4":82,"3":48,"2":35,"1":35}},"Q":{"d":"315,-127v0,-23,-4,-44,-12,-61v-8,-17,-18,-32,-32,-44v-14,-12,-29,-20,-47,-26v-18,-6,-36,-8,-55,-8v-19,0,-36,2,-54,8v-18,6,-33,14,-47,26v-14,12,-25,26,-33,43v-8,17,-12,38,-12,61r0,1v0,23,4,43,12,60v8,17,19,32,33,44v14,12,29,19,47,25v18,6,35,9,54,9v4,0,8,-1,12,-1v4,0,8,-1,12,-1v3,4,7,8,12,12v5,4,10,9,17,14v6,4,12,7,20,9v8,2,15,4,23,4v8,0,14,0,21,-1v7,-1,13,-1,17,-2r-9,-17v-3,1,-8,2,-13,2v-5,0,-11,0,-17,-1r-18,-3v0,0,-11,-4,-15,-7v-5,-3,-10,-8,-17,-14v14,-4,28,-9,40,-16v12,-7,23,-17,32,-28v9,-11,16,-24,21,-39v5,-15,8,-31,8,-49xm296,-128v0,17,-3,33,-8,46v-5,13,-11,25,-20,35v-9,10,-19,18,-31,24v-12,6,-25,11,-38,13r-11,-14v-3,-4,-8,-9,-15,-15v-7,-6,-15,-11,-23,-15v-7,-3,-15,-5,-23,-6v-8,-1,-16,-2,-24,-2v-8,0,-16,2,-23,3v-7,1,-13,2,-17,3v-6,-9,-11,-19,-15,-31v-4,-12,-6,-26,-6,-41v0,-20,4,-38,11,-53v7,-15,16,-28,28,-38v12,-10,25,-17,40,-22v15,-5,31,-7,48,-7r0,0v17,0,33,2,48,7v15,5,29,12,41,22v12,10,20,23,27,38v7,15,11,33,11,53xm177,-8r-3,0r-5,0v-18,0,-34,-3,-50,-8v-16,-5,-30,-13,-42,-24v5,-1,10,-1,16,-2v6,-1,10,-2,16,-2v6,0,12,1,18,2v6,1,10,3,15,5v4,2,8,4,11,6r9,6v0,0,4,5,7,8v4,4,4,4,8,9","w":338,"k":{"\u00d1":17,"\u00c9":17,"\u00c4":15,"`":54,"_":310,"^":35,"]":55,"\\":62,"[":37,"Z":49,"Y":35,"X":48,"W":15,"V":21,"T":57,"S":22,"R":16,"P":16,"N":16,"M":16,"L":16,"K":16,"J":21,"I":19,"H":16,"F":16,"E":16,"D":16,"B":16,"7":90,"5":35,"4":27,"3":44,"2":40,"1":41}},"R":{"d":"299,6r-116,-113v13,-1,24,-4,35,-8v11,-4,21,-10,29,-17v8,-7,14,-15,19,-24v5,-9,7,-18,7,-29v0,-24,-10,-43,-31,-56v-21,-13,-55,-20,-101,-20r-91,0r0,267r19,0r0,-111r89,0r114,111r27,0xm254,-185v0,8,-2,15,-6,22v-4,7,-9,14,-17,20v-8,6,-18,10,-29,14v-11,4,-24,6,-39,6r-94,0r0,-120r70,0v25,0,44,2,59,5v15,3,27,8,35,14v8,6,14,11,17,18v3,7,4,14,4,21","w":291,"k":{"`":26,"_":237,"^":53,"]":38,"\\":41,"[":19,"T":39,"O":11,"7":69,"5":35,"4":61,"3":38,"1":24}},"S":{"d":"262,-69v0,-13,-3,-23,-9,-32v-6,-9,-13,-15,-20,-20v-5,-3,-10,-6,-15,-8v-5,-2,-10,-4,-17,-6v-7,-2,-15,-4,-23,-6v-8,-2,-18,-5,-29,-7v-19,-4,-19,-4,-32,-7v-9,-2,-17,-4,-23,-6v-6,-2,-11,-3,-15,-4v-4,-1,-8,-3,-11,-5v-6,-3,-11,-7,-15,-12v-4,-5,-5,-12,-5,-19v0,-14,6,-26,21,-34v8,-5,19,-8,32,-10v13,-2,26,-3,41,-3v13,0,24,0,34,2v10,2,19,5,26,8v7,3,13,6,18,11v5,5,10,10,13,16r16,-9v-4,-7,-9,-14,-15,-20v-6,-6,-14,-11,-23,-15v-9,-4,-19,-6,-30,-8v-11,-2,-24,-3,-39,-3v-17,0,-32,2,-46,4v-14,2,-26,5,-36,11v-12,6,-20,13,-25,22v-5,9,-7,18,-7,27v0,12,3,22,9,30v6,8,12,14,19,18v3,2,6,2,10,4v4,2,9,3,15,5v6,2,13,4,22,6v9,2,20,5,34,8v13,3,24,6,33,8v9,2,17,3,23,5v6,2,11,4,15,6v4,2,8,2,11,4v6,3,11,8,16,14v5,6,8,14,8,25v0,8,-3,16,-7,23v-4,7,-10,13,-18,18v-9,6,-20,11,-33,15v-13,4,-28,6,-45,6v-27,0,-49,-4,-66,-11v-17,-7,-30,-17,-40,-29r-15,12v12,14,28,26,47,34v19,8,44,12,74,12v18,0,35,-3,50,-7v15,-4,28,-10,39,-17v11,-7,18,-15,24,-25v6,-10,9,-19,9,-31","w":284,"k":{"\u00fc":16,"\u00fb":15,"\u00fa":17,"\u00f9":15,"\u00f1":18,"\u00ed":17,"\u00dc":23,"\u00d1":25,"\u00c9":25,"z":32,"y":50,"x":30,"w":36,"v":37,"t":41,"s":17,"l":21,"j":17,"i":19,"h":16,"f":33,"`":37,"_":257,"^":69,"]":62,"\\":53,"[":43,"Z":40,"Y":26,"X":38,"W":15,"V":18,"U":23,"T":39,"S":22,"R":24,"P":24,"N":24,"M":24,"L":24,"K":24,"I":28,"H":24,"F":24,"E":24,"D":24,"B":24,"9":29,"7":74,"6":15,"5":30,"4":30,"3":39,"2":47,"1":51}},"T":{"d":"240,-243r0,-18r-229,0r0,18r105,0r0,249r19,0r0,-249r105,0","w":246,"k":{"\u00fc":45,"\u00fb":93,"\u00fa":94,"\u00f9":93,"\u00f6":51,"\u00f5":82,"\u00f4":81,"\u00f3":81,"\u00f2":80,"\u00f1":96,"\u00ee":57,"\u00ed":80,"\u00ec":65,"\u00eb":39,"\u00ea":80,"\u00e9":81,"\u00e8":79,"\u00e7":77,"\u00e5":60,"\u00e4":41,"\u00e3":87,"\u00e2":85,"\u00e1":86,"\u00e0":85,"\u00d6":57,"\u00d1":17,"\u00c9":17,"\u00c7":57,"\u00c5":67,"\u00c4":67,"z":85,"y":77,"x":79,"w":71,"v":71,"u":90,"t":71,"s":84,"r":91,"q":77,"p":91,"o":77,"n":91,"m":91,"g":77,"f":44,"e":77,"d":84,"c":77,"a":84,"`":88,"_":233,"^":93,"]":55,"\\":17,"[":36,"Z":20,"S":40,"R":17,"Q":57,"P":17,"O":57,"N":17,"M":17,"L":17,"K":17,"J":77,"I":21,"H":17,"G":57,"F":17,"E":17,"D":17,"C":57,"B":17,"A":67,"9":63,"8":58,"7":41,"6":69,"5":59,"4":107,"3":80,"2":68,"1":95,"0":62}},"U":{"d":"255,-103r0,-158r-19,0r0,157v0,18,-1,33,-4,45v-3,12,-7,22,-13,30v-6,8,-16,14,-27,17v-11,3,-26,5,-43,5v-17,0,-30,-2,-41,-5v-11,-3,-20,-9,-26,-17v-6,-8,-11,-18,-14,-30v-3,-12,-4,-27,-4,-45r0,-157r-19,0r0,158v0,22,2,39,6,54v4,15,10,26,19,35v9,9,19,15,32,19v13,4,29,6,47,6v18,0,35,-2,48,-6v13,-4,24,-10,33,-19v9,-9,15,-20,19,-35v4,-15,6,-32,6,-54","w":299,"k":{"\u00fc":26,"\u00fb":25,"\u00fa":26,"\u00f9":25,"\u00f6":17,"\u00f1":28,"\u00e5":20,"\u00e4":21,"\u00e3":22,"\u00e2":20,"\u00e1":21,"\u00e0":19,"\u00dc":31,"\u00d1":34,"\u00c9":34,"\u00c5":19,"\u00c4":19,"z":23,"x":17,"u":22,"s":21,"r":23,"p":23,"n":23,"m":23,"l":30,"k":23,"j":27,"i":29,"h":25,"d":17,"b":23,"a":19,"`":19,"_":249,"^":51,"]":72,"\\":35,"[":53,"Z":37,"X":25,"U":31,"S":30,"R":34,"P":34,"N":34,"M":34,"L":34,"K":34,"J":20,"I":37,"H":34,"F":34,"E":34,"D":34,"B":34,"A":19,"9":29,"8":25,"7":57,"6":23,"5":42,"4":40,"3":50,"2":44,"1":41}},"V":{"d":"267,-261r-20,0r-59,127r-26,56v0,0,-13,28,-26,57v-13,-29,-12,-29,-25,-57r-26,-56r-59,-127r-21,0r124,267r15,0","w":271,"k":{"\u00fc":21,"\u00fb":20,"\u00fa":21,"\u00f9":19,"\u00f6":38,"\u00f5":35,"\u00f4":34,"\u00f3":35,"\u00f2":30,"\u00f1":23,"\u00eb":29,"\u00ea":32,"\u00e9":33,"\u00e8":21,"\u00e7":32,"\u00e5":49,"\u00e4":31,"\u00e3":36,"\u00e2":40,"\u00e1":53,"\u00e0":24,"\u00d6":19,"\u00c7":19,"\u00c5":57,"\u00c4":61,"z":20,"u":19,"s":30,"r":20,"q":32,"p":20,"o":32,"n":20,"m":20,"g":33,"e":31,"d":37,"c":32,"a":53,"_":257,"^":71,"]":45,"[":26,"S":17,"Q":19,"O":19,"J":65,"G":19,"C":19,"A":61,"9":24,"8":22,"7":31,"6":30,"5":49,"4":77,"3":47,"2":35,"1":30,"0":18}},"W":{"d":"431,-261r-20,0r-50,126r-21,55v0,0,-10,28,-21,57v-10,-29,-10,-29,-21,-57r-22,-55r-50,-126r-15,0r-50,127r-21,54v0,0,-11,28,-22,57v-10,-29,-10,-28,-21,-56v-11,-28,-10,-28,-21,-55r-50,-127r-20,0r105,267r15,0r50,-127r21,-55v0,0,12,-28,22,-56r21,56r22,55r49,127r16,0","w":435,"k":{"\u00fc":15,"\u00fa":16,"\u00f6":30,"\u00f5":27,"\u00f4":26,"\u00f3":27,"\u00f2":25,"\u00f1":18,"\u00eb":25,"\u00ea":24,"\u00e9":25,"\u00e8":19,"\u00e7":24,"\u00e5":46,"\u00e4":30,"\u00e3":32,"\u00e2":36,"\u00e1":48,"\u00e0":22,"\u00c5":50,"\u00c4":50,"s":23,"q":24,"o":24,"g":24,"e":23,"d":30,"c":24,"a":48,"_":301,"^":62,"]":43,"[":24,"J":51,"A":50,"9":19,"8":18,"7":29,"6":25,"5":47,"4":66,"3":43,"2":31,"1":26}},"X":{"d":"276,6r-119,-139r110,-128r-25,0r-97,114r-97,-114r-25,0r110,128r-119,139r25,0r106,-125r107,125r24,0","w":290,"k":{"\u00fc":30,"\u00fb":29,"\u00fa":30,"\u00f9":29,"\u00f6":39,"\u00f5":36,"\u00f4":34,"\u00f3":35,"\u00f2":34,"\u00f1":15,"\u00eb":34,"\u00ea":33,"\u00e9":34,"\u00e8":32,"\u00e7":31,"\u00e5":22,"\u00e4":22,"\u00e3":23,"\u00e2":22,"\u00e1":23,"\u00e0":21,"\u00dc":25,"\u00d6":48,"\u00d1":21,"\u00c9":21,"\u00c7":48,"y":45,"w":38,"v":38,"u":27,"t":37,"s":19,"q":32,"o":32,"l":17,"i":16,"g":32,"f":29,"e":31,"d":39,"c":31,"a":22,"_":264,"^":108,"]":59,"\\":28,"[":40,"U":25,"S":31,"R":21,"Q":48,"P":21,"O":48,"N":21,"M":21,"L":21,"K":21,"I":24,"H":21,"G":48,"F":21,"E":21,"D":21,"C":48,"B":21,"9":51,"8":37,"7":53,"6":47,"5":53,"4":73,"3":61,"2":26,"1":63,"0":44}},"Y":{"d":"251,-261r-23,0r-54,71r-24,32r-24,32r-24,-32r-24,-31r-54,-72r-23,0r115,153r0,114r20,0r0,-114","w":252,"k":{"\u00fc":38,"\u00fb":37,"\u00fa":39,"\u00f9":33,"\u00f6":46,"\u00f5":50,"\u00f4":58,"\u00f3":62,"\u00f2":36,"\u00f1":40,"\u00ed":16,"\u00eb":33,"\u00ea":49,"\u00e9":60,"\u00e8":27,"\u00e7":60,"\u00e5":54,"\u00e4":36,"\u00e3":44,"\u00e2":52,"\u00e1":70,"\u00e0":30,"\u00d6":34,"\u00c7":35,"\u00c5":60,"\u00c4":64,"z":38,"y":24,"x":32,"w":18,"v":18,"u":37,"t":15,"s":53,"r":38,"q":60,"p":38,"o":60,"n":38,"m":38,"g":60,"f":17,"e":59,"d":64,"c":60,"a":71,"_":239,"^":84,"]":49,"[":30,"S":26,"Q":34,"O":34,"J":74,"G":35,"C":35,"A":64,"9":37,"8":33,"7":35,"6":45,"5":53,"4":104,"3":58,"2":46,"1":42,"0":34}},"Z":{"d":"229,6r0,-19r-178,0r172,-234r0,-14r-186,0r0,18r160,0r-172,234r0,15r204,0","w":250,"k":{"\u00fc":32,"\u00fb":32,"\u00fa":33,"\u00f9":31,"\u00f6":45,"\u00f5":43,"\u00f4":41,"\u00f3":42,"\u00f2":41,"\u00f1":21,"\u00ed":20,"\u00eb":40,"\u00ea":40,"\u00e9":41,"\u00e8":39,"\u00e7":40,"\u00e5":25,"\u00e4":26,"\u00e3":27,"\u00e2":25,"\u00e1":26,"\u00e0":25,"\u00dc":28,"\u00d6":50,"\u00d1":26,"\u00c9":26,"\u00c7":51,"y":41,"w":34,"v":34,"u":32,"t":31,"s":29,"r":19,"q":41,"p":19,"o":41,"n":19,"m":19,"l":22,"k":15,"j":19,"i":21,"h":18,"g":41,"f":32,"e":40,"d":45,"c":40,"b":15,"a":27,"_":219,"^":100,"]":64,"\\":32,"[":45,"Z":19,"U":28,"S":40,"R":26,"Q":50,"P":26,"O":50,"N":26,"M":26,"L":26,"K":26,"J":19,"I":30,"H":26,"G":51,"F":26,"E":26,"D":26,"C":51,"B":26,"9":53,"8":45,"7":55,"6":55,"5":61,"4":135,"3":68,"2":31,"1":59,"0":50}},"[":{"d":"134,62r0,-18r-48,0r0,-298r48,0r0,-18r-67,0r0,334r67,0","w":172,"k":{"\u00fc":67,"\u00fb":66,"\u00fa":67,"\u00f9":66,"\u00f6":58,"\u00f5":55,"\u00f4":53,"\u00f3":54,"\u00f2":53,"\u00f1":68,"\u00ef":35,"\u00ee":30,"\u00ed":53,"\u00ec":37,"\u00eb":54,"\u00ea":53,"\u00e9":54,"\u00e8":52,"\u00e7":53,"\u00e5":58,"\u00e4":58,"\u00e3":59,"\u00e2":58,"\u00e1":59,"\u00e0":57,"\u00dc":72,"\u00d6":55,"\u00d1":76,"\u00c9":75,"\u00c7":58,"\u00c5":41,"\u00c4":41,"z":57,"y":117,"x":51,"w":43,"v":43,"u":63,"t":44,"s":56,"r":64,"q":56,"p":25,"o":50,"n":64,"m":64,"l":32,"k":25,"j":24,"i":31,"h":27,"g":25,"f":45,"e":50,"d":58,"c":50,"b":25,"a":57,"`":60,"_":99,"^":93,"]":34,"\\":32,"[":54,"Z":68,"Y":49,"X":59,"W":45,"V":46,"U":72,"T":55,"S":65,"R":75,"Q":59,"P":75,"O":55,"N":75,"M":75,"L":75,"K":75,"J":51,"I":78,"H":75,"G":55,"F":75,"E":75,"D":75,"C":55,"B":75,"A":41,"9":69,"8":64,"7":98,"6":64,"5":79,"4":80,"3":87,"2":80,"1":82,"0":53}},"\\":{"d":"239,10r-197,-282r-21,0r196,282r22,0","w":260,"k":{"\u00fc":44,"\u00fb":42,"\u00fa":43,"\u00f9":42,"\u00f6":50,"\u00f5":46,"\u00f4":45,"\u00f3":46,"\u00f2":45,"\u00f1":29,"\u00ef":28,"\u00ee":28,"\u00ed":28,"\u00ec":28,"\u00eb":45,"\u00ea":44,"\u00e9":45,"\u00e8":44,"\u00e7":37,"\u00e5":35,"\u00e4":35,"\u00e3":35,"\u00e2":34,"\u00e1":35,"\u00e0":33,"\u00dc":59,"\u00d6":60,"\u00d1":39,"\u00c9":38,"\u00c7":60,"y":97,"w":81,"v":81,"u":35,"t":71,"s":26,"r":21,"q":39,"p":18,"o":38,"n":21,"m":21,"l":33,"k":26,"j":27,"i":32,"h":28,"g":38,"f":43,"e":37,"d":51,"c":37,"b":26,"a":30,"`":170,"_":229,"^":126,"]":72,"\\":177,"[":53,"Z":30,"Y":98,"X":20,"W":85,"V":101,"U":58,"T":101,"S":42,"R":36,"Q":59,"P":36,"O":59,"N":36,"M":36,"L":36,"K":36,"J":24,"I":40,"H":36,"G":60,"F":36,"E":36,"D":36,"C":60,"B":36,"9":62,"8":49,"7":109,"6":59,"5":64,"4":79,"3":73,"2":42,"1":117,"0":55}},"]":{"d":"105,62r0,-334r-67,0r0,18r48,0r0,298r-48,0r0,18r67,0","w":172,"k":{"\u00fc":48,"\u00fb":47,"\u00fa":48,"\u00f9":46,"\u00f6":39,"\u00f5":36,"\u00f4":34,"\u00f3":35,"\u00f2":33,"\u00f1":49,"\u00ef":15,"\u00ed":34,"\u00ec":18,"\u00eb":35,"\u00ea":33,"\u00e9":35,"\u00e8":33,"\u00e7":34,"\u00e5":39,"\u00e4":39,"\u00e3":40,"\u00e2":39,"\u00e1":40,"\u00e0":38,"\u00dc":53,"\u00d6":36,"\u00d1":58,"\u00c9":57,"\u00c7":39,"\u00c5":22,"\u00c4":23,"z":38,"y":33,"x":32,"w":24,"v":24,"u":44,"t":24,"s":37,"r":45,"q":37,"p":45,"o":31,"n":45,"m":45,"l":52,"k":45,"j":44,"i":51,"h":47,"g":36,"f":27,"e":31,"d":39,"c":31,"b":45,"a":38,"`":41,"_":129,"^":74,"]":54,"\\":51,"[":75,"Z":49,"Y":30,"X":40,"W":26,"V":27,"U":53,"T":36,"S":46,"R":56,"Q":40,"P":56,"O":36,"N":56,"M":56,"L":56,"K":56,"J":32,"I":59,"H":56,"G":36,"F":56,"E":56,"D":56,"C":36,"B":56,"A":22,"9":50,"8":45,"7":79,"6":45,"5":60,"4":61,"3":68,"2":61,"1":63,"0":33}},"^":{"d":"233,-108r-83,-152r-12,0r-83,152r20,0r69,-128r69,128r20,0","w":288,"k":{"\u00fc":49,"\u00fb":48,"\u00fa":49,"\u00f9":47,"\u00f6":42,"\u00f5":40,"\u00f4":37,"\u00f3":39,"\u00f2":36,"\u00f1":51,"\u00ef":46,"\u00ee":46,"\u00ed":47,"\u00ec":46,"\u00eb":38,"\u00ea":36,"\u00e9":37,"\u00e8":35,"\u00e7":28,"\u00e5":107,"\u00e4":107,"\u00e3":109,"\u00e2":106,"\u00e1":108,"\u00e0":105,"\u00dc":51,"\u00d6":34,"\u00d1":54,"\u00c9":54,"\u00c7":34,"\u00c5":65,"\u00c4":66,"z":76,"y":51,"x":64,"w":45,"v":45,"u":39,"t":49,"s":37,"r":40,"q":28,"p":40,"o":28,"n":40,"m":40,"l":51,"k":44,"j":48,"i":50,"h":46,"g":28,"f":54,"e":27,"d":45,"c":28,"b":44,"a":107,"`":100,"_":223,"^":73,"]":93,"\\":108,"[":73,"Z":117,"Y":83,"X":107,"W":63,"V":72,"U":51,"T":93,"S":72,"R":54,"Q":34,"P":54,"O":34,"N":54,"M":54,"L":54,"K":54,"J":234,"I":58,"H":54,"G":34,"F":54,"E":54,"D":54,"C":34,"B":54,"A":66,"9":58,"8":66,"7":138,"6":45,"5":74,"4":85,"3":114,"2":108,"1":100,"0":32}},"_":{"d":"294,107r0,-22r-300,0r0,22r300,0","w":288,"k":{"\u00fc":216,"\u00fb":216,"\u00fa":216,"\u00f9":216,"\u00f6":244,"\u00f5":241,"\u00f4":241,"\u00f3":241,"\u00f2":241,"\u00f1":218,"\u00ef":95,"\u00ee":101,"\u00ed":91,"\u00ec":73,"\u00eb":225,"\u00ea":225,"\u00e9":225,"\u00e8":225,"\u00e7":221,"\u00e5":205,"\u00e4":205,"\u00e3":205,"\u00e2":205,"\u00e1":205,"\u00e0":205,"\u00dc":249,"\u00d6":310,"\u00d1":271,"\u00c9":226,"\u00c7":278,"\u00c5":240,"\u00c4":240,"z":204,"x":203,"w":301,"v":228,"u":216,"t":233,"s":213,"r":185,"q":143,"o":241,"n":218,"m":331,"l":57,"k":219,"i":56,"h":220,"e":225,"d":221,"c":221,"b":239,"a":205,"`":98,"^":224,"]":99,"\\":228,"[":129,"Z":224,"Y":239,"X":264,"W":302,"V":258,"U":249,"T":233,"S":256,"R":283,"Q":310,"P":270,"O":310,"N":271,"M":342,"L":232,"K":254,"J":174,"I":66,"H":275,"G":265,"F":221,"E":226,"D":281,"C":278,"B":261,"A":240,"9":272,"8":267,"7":249,"6":272,"5":259,"4":261,"3":257,"2":259,"1":145,"0":280}},"`":{"d":"114,-200r-64,-52r-33,0r73,52r24,0","w":180,"k":{"\u00fc":123,"\u00fb":103,"\u00fa":198,"\u00f9":190,"\u00f6":189,"\u00f5":191,"\u00f4":107,"\u00f3":186,"\u00f2":178,"\u00f1":130,"\u00ef":41,"\u00ee":23,"\u00ed":47,"\u00ec":64,"\u00eb":184,"\u00ea":96,"\u00e9":184,"\u00e8":176,"\u00e7":171,"\u00e5":177,"\u00e4":180,"\u00e3":184,"\u00e2":91,"\u00e1":181,"\u00e0":173,"\u00dc":65,"\u00d6":68,"\u00d1":69,"\u00c9":69,"\u00c7":68,"\u00c5":165,"\u00c4":165,"z":168,"y":148,"x":168,"w":158,"v":158,"u":187,"t":84,"s":167,"r":189,"q":171,"p":189,"o":171,"n":189,"m":189,"l":65,"k":58,"j":64,"i":142,"h":60,"g":171,"f":79,"e":171,"d":200,"c":171,"b":58,"a":169,"`":90,"_":145,"^":130,"]":107,"\\":83,"[":88,"Z":199,"Y":59,"X":86,"W":46,"V":49,"U":65,"T":172,"S":50,"R":69,"Q":68,"P":69,"O":68,"N":69,"M":69,"L":69,"K":69,"J":172,"I":72,"H":69,"G":68,"F":69,"E":69,"D":69,"C":68,"B":69,"A":165,"9":64,"8":68,"7":135,"6":79,"5":96,"4":203,"3":77,"2":68,"1":67,"0":68}},"a":{"d":"218,6r-11,-12v-2,-2,-3,-4,-4,-6v-1,-2,-2,-3,-2,-5v0,-2,-1,-4,-1,-7v0,-3,-1,-7,-1,-11r0,-100v0,-22,-6,-39,-19,-50v-13,-11,-35,-17,-65,-17v-7,0,-13,0,-19,1v-6,1,-11,1,-15,2v-4,1,-7,1,-10,2r-4,1r2,18r11,-3v7,-2,19,-3,35,-3v13,0,24,1,32,3v8,2,15,5,20,9v5,4,9,10,11,16v2,6,3,14,3,22r0,4v-26,2,-49,6,-69,9v-20,3,-38,8,-52,14v-14,6,-24,14,-31,23v-7,9,-11,21,-11,35v0,7,1,15,4,22v3,7,8,13,15,19v7,6,16,10,27,13v11,3,25,5,42,5v5,0,10,0,16,-1v6,-1,13,-2,20,-4v7,-2,14,-5,21,-8v7,-3,13,-8,19,-13v1,7,5,14,12,22r24,0xm181,-39v-6,7,-12,13,-19,17v-7,4,-14,7,-21,9v-7,2,-13,3,-19,4v-6,1,-11,1,-15,1v-15,0,-27,-1,-36,-4v-9,-3,-17,-6,-22,-10v-5,-4,-8,-8,-10,-13v-2,-5,-3,-10,-3,-14v0,-10,3,-19,9,-26v6,-7,14,-12,26,-17v12,-5,27,-9,45,-12v18,-3,40,-6,65,-8r0,73","w":235,"k":{"\u00dc":22,"\u00d1":15,"\u00c9":15,"y":15,"`":128,"_":212,"^":41,"]":54,"\\":83,"[":35,"Y":57,"W":28,"V":35,"U":22,"T":81,"S":19,"R":15,"P":15,"N":15,"M":15,"L":15,"K":15,"I":19,"H":15,"F":15,"E":15,"D":15,"B":15,"9":23,"7":87,"5":31,"4":28,"3":42,"2":24,"1":99}},"b":{"d":"245,-96v0,-15,-3,-29,-8,-42v-5,-13,-13,-24,-22,-33v-9,-9,-21,-18,-34,-23v-13,-5,-28,-8,-45,-8v-14,0,-28,3,-42,7v-14,4,-26,11,-38,21r0,-93r-19,0r0,273r19,0r0,-24r3,2v2,2,5,4,8,6r9,6v7,4,16,7,25,10v9,3,21,4,34,4v18,0,34,-3,48,-9v14,-6,25,-14,34,-24v9,-10,16,-21,21,-34v5,-13,7,-26,7,-39xm226,-96v0,12,-2,23,-6,34v-4,11,-9,20,-17,28v-8,8,-18,14,-29,19v-11,5,-24,7,-39,7v-12,0,-21,-1,-30,-4v-9,-3,-17,-6,-23,-10v-3,-2,-6,-3,-9,-5r-8,-6v-2,-1,-4,-3,-5,-4r-4,-4r0,-109v12,-12,25,-22,38,-27v13,-5,27,-7,41,-7v14,0,28,2,39,7v11,5,20,11,28,19v8,8,14,17,18,28v4,11,6,22,6,34","w":264,"k":{"\u00dc":18,"\u00d1":21,"\u00c9":21,"z":25,"y":17,"x":23,"t":21,"l":16,"i":15,"f":27,"`":182,"_":221,"^":46,"]":58,"\\":89,"[":39,"Z":41,"Y":64,"X":39,"W":31,"V":39,"U":17,"T":84,"S":23,"R":19,"P":19,"N":19,"M":19,"L":19,"K":19,"I":23,"H":19,"F":19,"E":19,"D":19,"B":19,"9":26,"7":119,"5":29,"4":26,"3":38,"2":48,"1":100}},"c":{"d":"229,-41r-17,-9v-4,6,-8,12,-13,17v-5,5,-10,9,-16,13v-6,4,-14,7,-22,9v-8,2,-18,3,-29,3v-12,0,-24,-2,-35,-5v-11,-3,-21,-8,-30,-15v-9,-7,-16,-17,-21,-28v-5,-11,-8,-24,-8,-40v0,-15,3,-28,8,-39v5,-11,13,-20,22,-27v9,-7,19,-13,30,-17v11,-4,22,-5,34,-5v10,0,19,0,26,2v7,2,13,4,19,7v6,3,12,7,17,12v5,5,9,9,13,15r17,-9v-6,-7,-12,-13,-18,-19v-6,-6,-13,-10,-20,-14v-7,-4,-15,-7,-24,-9v-9,-2,-19,-3,-30,-3v-14,0,-28,3,-41,7v-13,4,-25,10,-36,19v-11,9,-20,20,-26,33v-6,13,-10,29,-10,47v0,18,4,35,10,48v6,13,15,24,25,33v10,9,22,15,36,19v14,4,28,6,42,6v13,0,25,-1,35,-4v10,-3,18,-6,26,-11v8,-5,14,-10,20,-16v6,-6,11,-13,16,-20","w":242,"k":{"\u00ef":18,"\u00ee":18,"\u00ed":18,"\u00ec":18,"\u00dc":28,"\u00d1":26,"\u00c9":26,"z":27,"y":20,"x":24,"t":16,"l":22,"j":18,"i":21,"h":17,"f":18,"`":120,"_":217,"^":62,"]":63,"\\":88,"[":44,"Z":31,"Y":62,"X":33,"W":32,"V":39,"U":28,"T":91,"S":20,"R":26,"P":26,"N":26,"M":26,"L":26,"K":26,"I":29,"H":26,"F":26,"E":26,"D":26,"B":26,"9":27,"8":18,"7":112,"6":22,"5":35,"4":90,"3":46,"2":44,"1":109}},"d":{"d":"227,6r0,-273r-19,0r0,93v-12,-10,-24,-17,-38,-21v-14,-4,-27,-7,-41,-7v-17,0,-32,3,-45,8v-13,5,-26,14,-35,23v-9,9,-17,20,-22,33v-5,13,-8,27,-8,42v0,13,2,26,7,39v5,13,12,24,21,34v9,10,20,18,34,24v14,6,30,9,48,9v13,0,25,-2,35,-5v10,-3,19,-6,26,-10v8,-5,13,-9,17,-13r2,-1v0,3,-1,7,-1,11r0,9r0,5r19,0xm208,-41v-2,2,-2,2,-5,4v-3,2,-2,2,-5,5r-8,6v-3,2,-6,3,-9,5v-6,4,-14,7,-22,10v-8,3,-19,3,-30,3r0,0v-15,0,-28,-2,-39,-7v-11,-5,-21,-11,-29,-19v-8,-8,-13,-17,-17,-28v-4,-11,-6,-22,-6,-34v0,-12,2,-23,6,-34v4,-11,10,-20,18,-28v8,-8,17,-14,28,-19v11,-5,25,-7,39,-7v14,0,28,2,41,7v13,5,26,15,38,27r0,109","w":264,"k":{"\u00fc":18,"\u00fb":17,"\u00fa":18,"\u00f9":17,"\u00f1":19,"\u00dc":24,"\u00d1":27,"\u00c9":27,"r":15,"p":15,"n":15,"m":15,"l":22,"k":15,"j":19,"i":21,"h":17,"b":15,"_":239,"^":44,"]":25,"\\":23,"[":45,"Z":19,"U":23,"S":17,"R":26,"P":26,"N":26,"M":26,"L":26,"K":26,"I":30,"H":26,"F":26,"E":26,"D":26,"B":26,"9":21,"8":16,"7":49,"6":15,"5":30,"4":31,"3":39,"2":31,"1":33}},"e":{"d":"231,-91v0,-18,-3,-33,-8,-46v-5,-13,-12,-24,-20,-33v-10,-11,-21,-19,-34,-24v-13,-5,-26,-8,-40,-8v-16,0,-30,3,-43,8v-13,5,-24,11,-34,19v-10,9,-18,20,-24,33v-6,13,-9,28,-9,44v0,18,4,33,9,46v5,13,13,24,22,33v11,10,22,17,36,22v14,5,29,7,43,7v10,0,20,-1,32,-3v12,-2,23,-4,33,-7v10,-3,18,-5,25,-7r10,-3r-1,-17v-2,0,-6,2,-13,4v-7,2,-15,5,-25,7v-10,2,-20,4,-31,6v-11,2,-21,2,-31,2v-10,0,-20,-1,-30,-4v-10,-3,-20,-8,-29,-14v-9,-6,-15,-15,-21,-26v-6,-11,-9,-23,-10,-39r193,0xm211,-109r-172,0v1,-10,2,-20,7,-29v5,-9,11,-17,19,-24v8,-7,17,-12,28,-16v11,-4,23,-6,36,-6v12,0,21,2,31,6v10,4,18,10,25,17v7,7,14,15,18,24v4,9,7,18,8,28","w":245,"k":{"\u00dc":16,"\u00d1":19,"\u00c9":19,"y":24,"t":22,"f":24,"`":118,"_":220,"^":24,"]":57,"\\":93,"[":38,"Y":67,"W":33,"V":41,"U":16,"T":84,"S":24,"R":19,"P":19,"N":19,"M":19,"L":19,"K":19,"I":22,"H":19,"F":19,"E":19,"D":19,"B":19,"9":26,"8":15,"7":97,"5":44,"4":36,"3":54,"2":31,"1":103}},"f":{"d":"236,-260v-7,-6,-13,-10,-18,-13v-5,-3,-11,-5,-16,-7v-8,-3,-16,-5,-24,-6v-8,-1,-17,-2,-26,-2v-12,0,-24,2,-34,4v-10,2,-19,5,-27,10v-10,6,-18,14,-23,24v-5,10,-8,21,-8,33r0,20r-47,0r0,18r47,0r0,275r19,0r0,-275r117,0r0,-18r-117,0r0,-20v0,-11,2,-19,6,-26v4,-7,10,-12,17,-16v7,-4,14,-7,22,-9v8,-2,18,-2,28,-2v8,0,16,1,24,2v8,1,14,3,20,5v6,2,11,4,15,7v4,3,9,6,14,12","w":212,"k":{"\u00fc":19,"\u00fb":19,"\u00fa":20,"\u00f9":15,"\u00f6":30,"\u00f5":27,"\u00f4":42,"\u00f3":44,"\u00f2":18,"\u00f1":22,"\u00eb":18,"\u00ea":37,"\u00e9":41,"\u00e7":45,"\u00e5":33,"\u00e4":20,"\u00e3":21,"\u00e2":39,"\u00e1":51,"\u00c7":19,"\u00c5":45,"\u00c4":46,"z":18,"u":17,"t":36,"s":28,"r":18,"q":50,"p":19,"o":41,"n":18,"m":18,"g":46,"f":49,"e":39,"d":45,"c":41,"a":51,"_":71,"^":64,"]":23,"[":15,"Q":18,"J":95,"A":45,"9":17,"7":21,"6":25,"5":36,"4":106,"3":36,"2":24,"1":43}},"g":{"d":"227,-6r0,-191r-19,0r1,22v-11,-9,-23,-16,-35,-20v-12,-4,-26,-7,-42,-7v-15,0,-28,2,-39,5v-11,3,-21,8,-29,14v-8,6,-15,12,-21,19v-6,7,-11,15,-14,23v-3,8,-6,16,-7,24v-1,8,-3,16,-3,23v0,18,4,33,10,46v6,13,15,23,25,32v10,9,22,16,35,20v13,4,27,6,40,6v10,0,18,0,26,-2v8,-2,16,-4,22,-7v6,-3,12,-6,17,-9v5,-3,10,-7,14,-10r0,12v0,16,-1,29,-4,39v-3,10,-9,18,-15,25v-4,4,-8,8,-13,11v-5,3,-11,6,-16,8v-5,2,-11,3,-17,4v-6,1,-11,1,-16,1v-10,0,-19,0,-27,-2v-8,-2,-15,-4,-21,-7v-8,-4,-16,-8,-22,-13v-6,-5,-11,-10,-16,-16r-15,13v8,9,17,16,24,21v7,5,14,9,21,12v8,4,18,5,27,7v9,2,19,3,30,3v15,0,29,-3,42,-8v13,-5,24,-13,33,-22v9,-10,15,-21,19,-33v4,-12,5,-27,5,-43xm208,-41v-4,4,-8,8,-13,12v-5,4,-11,8,-17,11v-6,3,-14,6,-22,8v-8,2,-16,2,-26,2v-12,0,-25,-1,-36,-5v-11,-4,-21,-10,-29,-17v-8,-7,-14,-17,-19,-28v-5,-11,-8,-23,-8,-37r0,-1v0,-7,1,-16,4,-26v3,-10,8,-20,15,-29v7,-9,16,-17,28,-23v12,-6,28,-10,47,-10v18,0,34,3,46,9v12,6,22,14,30,24r0,110","w":262,"k":{"\u00ef":17,"\u00ee":17,"\u00ed":17,"\u00ec":17,"\u00dc":22,"\u00d1":24,"\u00c9":24,"l":20,"i":19,"h":15,"`":139,"^":39,"]":31,"\\":63,"[":43,"Y":36,"V":20,"U":22,"T":90,"S":19,"R":24,"P":24,"N":24,"M":24,"L":24,"K":24,"I":28,"H":24,"F":24,"E":24,"D":24,"B":24,"9":20,"7":96,"5":30,"4":27,"3":41,"2":32,"1":108}},"h":{"d":"226,6r0,-141v0,-11,-1,-20,-4,-27v-3,-7,-6,-14,-12,-20v-12,-13,-32,-20,-56,-20v-8,0,-16,1,-25,3v-9,2,-17,3,-26,7v-7,3,-16,7,-23,11v-7,4,-14,9,-21,14r0,-100r-19,0r0,273r19,0r0,-152v5,-4,4,-4,10,-8v4,-3,9,-5,13,-8v4,-3,10,-6,14,-8v4,-2,8,-4,12,-5v16,-6,31,-9,45,-9v11,0,20,1,27,4v7,3,12,6,16,10v5,5,9,10,10,16v1,6,2,12,2,19r0,141r18,0","w":259,"k":{"\u00fc":22,"\u00fb":20,"\u00fa":21,"\u00f9":20,"\u00f1":22,"\u00ef":22,"\u00ee":21,"\u00ed":22,"\u00ec":22,"\u00dc":28,"\u00d1":32,"\u00c9":31,"l":27,"k":20,"j":24,"i":26,"h":22,"f":15,"b":20,"`":175,"_":214,"^":55,"]":68,"\\":84,"[":50,"Z":23,"Y":59,"W":31,"V":38,"U":27,"T":95,"S":21,"R":30,"P":30,"N":30,"M":30,"L":30,"K":30,"I":34,"H":30,"F":30,"E":30,"D":30,"B":30,"9":28,"8":20,"7":103,"6":19,"5":34,"4":35,"3":43,"2":36,"1":111}},"i":{"d":"62,-227r0,-40r-18,0r0,40r18,0xm62,6r0,-203r-18,0r0,203r18,0","w":100,"k":{"\u00fc":19,"\u00fb":18,"\u00fa":19,"\u00f9":18,"\u00f1":21,"\u00ee":59,"\u00ed":82,"\u00dc":24,"\u00d1":28,"\u00c9":28,"y":67,"r":16,"p":16,"n":16,"m":16,"l":23,"k":16,"i":23,"h":19,"b":16,"_":51,"^":46,"]":27,"\\":24,"[":46,"Z":20,"U":24,"S":18,"R":27,"P":27,"N":27,"M":27,"L":27,"K":27,"I":31,"H":27,"F":27,"E":27,"D":27,"B":27,"9":22,"8":17,"7":51,"6":16,"5":31,"4":33,"3":40,"2":33,"1":112}},"j":{"d":"60,-227r0,-40r-19,0r0,40r19,0xm60,16r0,-213r-19,0r0,214v0,12,-1,21,-3,28v-2,7,-5,12,-9,17v-4,4,-7,7,-12,10v-5,3,-10,5,-15,6r-15,3v0,0,-9,1,-14,1v-5,0,-10,-1,-14,-1v-4,0,-8,0,-11,-1v-3,0,-6,-1,-8,-2v-3,-1,-3,-2,-6,-3v-3,-1,-5,-2,-8,-3v-3,-1,-5,-2,-8,-4v-3,-2,-5,-4,-8,-6v-4,-3,-5,-3,-10,-7r-11,15v8,6,15,11,21,14v6,3,12,7,18,9v6,2,13,4,20,5v7,1,15,2,23,2v32,0,55,-9,71,-26v6,-7,10,-14,13,-23v3,-9,5,-21,5,-35","w":100,"k":{"\u00fc":26,"\u00fb":25,"\u00fa":26,"\u00f9":24,"\u00f6":17,"\u00f1":28,"\u00ed":27,"\u00e5":17,"\u00e4":17,"\u00e3":18,"\u00e2":17,"\u00e1":18,"\u00e0":16,"\u00dc":31,"\u00d1":34,"\u00c9":34,"\u00c7":17,"u":17,"r":19,"p":19,"n":19,"m":19,"l":30,"k":23,"i":29,"h":25,"d":17,"b":23,"`":35,"^":55,"]":32,"\\":31,"[":52,"Z":27,"X":17,"U":31,"S":24,"R":33,"Q":17,"P":33,"N":33,"M":33,"L":33,"K":33,"I":37,"H":33,"F":33,"E":33,"D":33,"B":33,"9":28,"8":23,"7":57,"6":23,"5":38,"4":39,"3":46,"2":39,"1":77}},"k":{"d":"234,6r-129,-119r107,-84r-29,0r-69,54v-14,12,-15,11,-29,23v-14,12,-14,11,-29,23r0,-42r0,-128r-19,0r0,273r19,0r0,-81r34,-26r117,107r27,0","w":227,"k":{"\u00fc":19,"\u00fb":18,"\u00fa":19,"\u00f9":17,"\u00f6":30,"\u00f5":26,"\u00f4":25,"\u00f3":26,"\u00f2":25,"\u00eb":25,"\u00ea":24,"\u00e9":25,"\u00e8":23,"\u00e7":17,"\u00dc":25,"\u00d6":17,"\u00c7":17,"q":17,"o":17,"g":17,"e":16,"d":31,"c":17,"`":146,"_":185,"^":82,"]":47,"\\":62,"[":28,"Y":36,"W":16,"V":21,"U":24,"T":73,"S":24,"Q":17,"O":17,"G":17,"C":17,"9":23,"8":24,"7":82,"6":28,"5":45,"4":72,"3":53,"1":90,"0":15}},"l":{"d":"63,6r0,-273r-19,0r0,273r19,0","w":100,"k":{"\u00fc":18,"\u00fb":17,"\u00fa":18,"\u00f9":17,"\u00f1":20,"\u00dc":23,"\u00d1":27,"\u00c9":27,"y":66,"r":15,"p":15,"n":15,"m":15,"l":22,"k":15,"i":21,"h":18,"b":15,"_":50,"^":45,"]":25,"\\":23,"[":45,"Z":19,"U":23,"S":17,"R":26,"P":26,"N":26,"M":26,"L":26,"K":26,"I":30,"H":26,"F":26,"E":26,"D":26,"B":26,"9":21,"8":15,"7":49,"6":15,"5":30,"4":32,"3":39,"2":31,"1":33}},"m":{"d":"341,6r0,-150v0,-8,-2,-15,-4,-22v-2,-7,-5,-13,-10,-18v-5,-6,-12,-10,-20,-13v-8,-3,-17,-5,-28,-5v-13,0,-26,3,-41,9v-7,3,-14,7,-21,11v-7,4,-14,9,-22,15v-1,-4,-2,-7,-5,-11v-3,-4,-6,-8,-10,-11v-5,-4,-12,-7,-19,-9v-7,-2,-14,-4,-23,-4v-6,0,-13,1,-20,2v-7,1,-14,4,-21,7v-6,3,-12,6,-19,10v-7,4,-14,8,-22,14r0,-28r-19,0r0,203r19,0r0,-153v15,-13,30,-22,44,-28v7,-3,14,-6,20,-7v6,-1,13,-2,18,-2v13,0,23,4,31,10v4,3,6,7,8,11v2,4,3,10,3,16r0,153r18,0r0,-154v8,-7,17,-12,24,-17v7,-5,14,-8,21,-11v7,-3,13,-5,19,-6v6,-1,12,-2,17,-2v9,0,17,1,22,3v5,2,9,6,12,9v4,4,6,9,7,14v1,5,2,10,2,16r0,148r19,0","w":376,"k":{"\u00ef":17,"\u00ee":17,"\u00ed":17,"\u00ec":17,"\u00dc":22,"\u00d1":24,"\u00c9":24,"y":20,"l":21,"j":17,"i":19,"h":16,"`":139,"_":329,"^":40,"]":63,"\\":79,"[":44,"Y":53,"W":26,"V":33,"U":22,"T":90,"S":19,"R":24,"P":24,"N":24,"M":24,"L":24,"K":24,"I":28,"H":24,"F":24,"E":24,"D":24,"B":24,"9":22,"7":97,"5":31,"4":28,"3":42,"2":33,"1":108}},"n":{"d":"224,6r0,-141v0,-11,-1,-20,-4,-27v-3,-7,-7,-14,-13,-20v-12,-13,-30,-20,-55,-20v-8,0,-18,1,-26,3v-8,2,-17,3,-26,7v-15,6,-30,14,-45,25v0,-3,1,-7,1,-12r0,-13r0,-5r-19,0r0,203r19,0r0,-152v5,-4,5,-4,11,-8v4,-3,8,-5,13,-8v5,-3,9,-6,13,-8v4,-2,8,-4,12,-5v16,-6,32,-9,46,-9v12,0,20,1,27,4v7,3,12,6,16,10v5,5,8,10,9,16v1,6,2,12,2,19r0,141r19,0","w":259,"k":{"\u00ef":17,"\u00ee":17,"\u00ed":17,"\u00ec":17,"\u00dc":22,"\u00d1":24,"\u00c9":24,"y":15,"l":21,"j":17,"i":20,"h":16,"`":139,"_":216,"^":41,"]":63,"\\":82,"[":44,"Y":57,"W":28,"V":35,"U":22,"T":90,"S":19,"R":24,"P":24,"N":24,"M":24,"L":24,"K":24,"I":28,"H":24,"F":24,"E":24,"D":24,"B":24,"9":23,"7":97,"5":31,"4":28,"3":42,"2":33,"1":108}},"o":{"d":"247,-95r0,-1v0,-17,-3,-32,-9,-45v-6,-13,-15,-24,-25,-33v-10,-9,-22,-16,-36,-21v-14,-5,-28,-7,-44,-7v-16,0,-30,2,-44,7v-14,5,-26,12,-36,21v-10,9,-19,20,-25,33v-6,13,-9,28,-9,45v0,14,2,28,7,41v5,13,13,23,22,33v9,10,21,17,35,23v14,6,31,9,50,9v20,0,37,-3,51,-9v14,-6,26,-14,35,-24v9,-10,17,-20,21,-33v4,-13,7,-26,7,-39xm228,-95v0,12,-2,22,-6,33v-4,11,-9,20,-17,28v-8,8,-18,14,-30,19v-12,5,-25,8,-41,8r-1,0v-16,0,-30,-3,-42,-8v-12,-5,-22,-11,-30,-19v-8,-8,-13,-17,-17,-28v-4,-11,-6,-21,-6,-33v0,-14,2,-26,7,-37v5,-11,11,-20,20,-28v9,-8,18,-13,30,-17v12,-4,24,-7,38,-7v13,0,26,2,38,6v12,4,21,10,30,18v9,8,15,16,20,27v5,11,7,24,7,38","w":266,"k":{"z":25,"y":17,"x":23,"t":17,"f":19,"`":123,"_":241,"^":29,"]":50,"\\":86,"[":31,"Z":30,"Y":60,"X":32,"W":26,"V":34,"T":77,"S":19,"I":15,"9":19,"7":110,"5":23,"4":16,"3":35,"2":42,"1":95}},"p":{"d":"245,-96v0,-15,-3,-29,-8,-41v-5,-12,-12,-23,-20,-32v-21,-22,-47,-33,-81,-33v-10,0,-20,1,-28,3v-8,2,-17,4,-24,7v-6,3,-10,6,-15,9v-5,3,-9,6,-13,9r0,-23r-19,0r0,292r19,0r0,-113v5,4,10,8,15,11v5,3,11,6,16,8v10,4,19,7,27,8v8,1,16,1,22,1v18,0,33,-3,47,-9v14,-6,25,-14,34,-23v10,-11,17,-23,21,-36v4,-13,7,-25,7,-38xm226,-96v0,14,-2,25,-6,35v-4,10,-10,19,-17,26v-9,10,-19,17,-31,21v-12,4,-23,6,-36,6v-9,0,-17,-1,-24,-2v-7,-1,-13,-3,-19,-6v-5,-2,-11,-5,-17,-9v-6,-4,-13,-9,-20,-16r0,-110v11,-11,23,-18,36,-24v7,-3,15,-6,22,-7v7,-1,15,-2,22,-2v15,0,28,2,39,7v11,5,20,12,28,20v8,8,13,18,17,28v4,10,6,21,6,33","w":264,"k":{"z":25,"y":28,"x":23,"t":15,"f":28,"`":123,"_":143,"^":28,"]":56,"\\":85,"[":37,"Z":30,"Y":60,"X":32,"W":26,"V":34,"T":77,"S":19,"9":19,"7":110,"5":24,"4":16,"3":35,"2":42,"1":95}},"q":{"d":"227,95r0,-292r-19,0r0,23v-4,-3,-7,-6,-12,-9v-5,-3,-10,-6,-16,-9v-7,-3,-16,-5,-24,-7v-8,-2,-17,-3,-27,-3v-34,0,-61,11,-82,33v-8,9,-15,20,-20,32v-5,12,-8,26,-8,41v0,13,3,25,7,38v4,13,12,25,22,36v9,9,19,17,33,23v14,6,30,9,48,9v6,0,13,0,21,-1v8,-1,17,-4,27,-8v5,-2,11,-5,16,-8v5,-3,10,-7,15,-11r0,113r19,0xm208,-41v-7,7,-14,12,-20,16v-6,4,-12,7,-17,9v-6,3,-12,5,-19,6v-7,1,-14,2,-23,2v-13,0,-25,-2,-37,-6v-12,-4,-22,-12,-31,-21v-7,-7,-13,-15,-17,-25v-4,-10,-6,-22,-6,-36v0,-12,2,-23,6,-33v4,-10,9,-20,17,-28v8,-8,17,-15,28,-20v11,-5,25,-7,40,-7v7,0,14,1,21,2v7,1,15,4,22,7v13,6,25,13,36,24r0,110","w":264,"k":{"\u00f1":15,"\u00ef":19,"\u00ee":19,"\u00ed":19,"\u00ec":19,"\u00dc":23,"\u00d1":26,"\u00c9":26,"r":15,"p":15,"n":15,"m":15,"l":22,"k":15,"i":21,"h":17,"b":15,"`":141,"^":41,"]":25,"\\":65,"[":45,"Z":16,"Y":38,"W":17,"V":22,"U":23,"T":91,"S":21,"R":26,"P":26,"N":26,"M":26,"L":26,"K":26,"I":30,"H":26,"F":26,"E":26,"D":26,"B":26,"9":22,"7":98,"5":32,"4":29,"3":43,"2":34,"1":110}},"r":{"d":"193,-178v-5,-5,-9,-8,-12,-11v-3,-3,-7,-4,-11,-6v-6,-2,-11,-4,-17,-5v-6,-1,-11,-2,-17,-2v-9,0,-17,1,-25,3v-8,2,-16,6,-23,9v-6,3,-12,5,-17,8v-5,3,-10,7,-15,11r0,-26r-19,0r0,203r19,0r0,-155v6,-5,12,-10,19,-14v7,-4,14,-9,21,-12v8,-4,14,-6,21,-7v7,-1,13,-2,19,-2v6,0,10,0,14,1v4,1,9,3,12,4v3,1,5,3,8,5v3,2,6,6,11,11","w":202,"k":{"\u00f6":27,"\u00f5":24,"\u00f4":24,"\u00f3":24,"\u00f2":24,"\u00ef":15,"\u00ee":15,"\u00ed":15,"\u00ec":15,"\u00eb":23,"\u00ea":23,"\u00e9":23,"\u00e8":23,"\u00e7":24,"\u00e5":53,"\u00e4":53,"\u00e3":53,"\u00e2":53,"\u00e1":53,"\u00e0":53,"\u00dc":20,"\u00d1":23,"\u00c9":23,"\u00c5":48,"\u00c4":48,"s":35,"q":23,"o":24,"l":19,"j":81,"i":18,"g":23,"e":39,"d":23,"c":24,"a":53,"`":115,"_":159,"^":59,"]":61,"\\":70,"[":42,"Z":110,"Y":44,"X":66,"W":19,"V":25,"U":20,"T":88,"S":27,"R":23,"P":23,"N":23,"M":23,"L":23,"K":23,"J":105,"I":26,"H":23,"F":23,"E":23,"D":23,"B":23,"A":48,"9":18,"8":20,"7":230,"6":18,"5":54,"4":94,"3":148,"2":139,"1":107}},"s":{"d":"219,-53v0,-7,-2,-14,-5,-21v-3,-7,-6,-12,-12,-16v-4,-3,-8,-6,-12,-8v-4,-2,-10,-4,-16,-6v-6,-2,-14,-3,-22,-5v-8,-2,-18,-3,-30,-5v-13,-2,-23,-4,-31,-5v-8,-1,-14,-3,-19,-4v-5,-1,-10,-3,-13,-4v-3,-1,-5,-4,-8,-6v-4,-3,-7,-6,-8,-9v-1,-3,-2,-6,-2,-9v0,-5,1,-9,4,-13v3,-4,6,-7,12,-10v8,-4,17,-7,28,-8v11,-1,21,-2,33,-2v21,0,37,3,50,9v13,6,23,13,29,23r14,-13v-6,-7,-11,-13,-16,-17v-5,-4,-12,-7,-18,-10v-9,-4,-19,-7,-29,-8v-10,-1,-19,-2,-30,-2v-14,0,-27,1,-39,3v-12,2,-22,5,-30,9v-8,4,-14,9,-19,15v-5,6,-8,15,-8,24v0,7,2,13,5,19v3,6,8,10,14,15v4,3,8,5,12,7v4,2,8,4,14,5v6,1,13,3,21,4v8,1,18,3,30,5v12,2,22,4,30,5v8,1,15,3,20,4v5,1,10,3,13,5r9,6v4,3,6,8,8,12v2,4,2,8,2,12v0,12,-5,22,-17,29v-8,5,-18,9,-29,11v-11,2,-23,4,-35,4v-22,0,-41,-3,-56,-9v-15,-6,-28,-14,-36,-23r-14,14v7,7,14,12,21,16v7,4,14,8,23,11v9,3,20,5,30,7v10,2,22,2,34,2v32,0,56,-7,73,-19v8,-6,15,-12,19,-19v4,-7,6,-15,6,-25","w":234,"k":{"`":120,"_":213,"^":68,"]":53,"\\":76,"[":33,"Z":19,"Y":50,"X":21,"W":22,"V":29,"T":80,"I":18,"9":18,"7":101,"5":21,"4":20,"3":31,"2":33,"1":98}},"t":{"d":"243,-14r-9,-16v-9,5,-20,10,-32,15v-12,5,-27,7,-41,7v-9,0,-18,0,-27,-2v-9,-2,-18,-4,-25,-8v-7,-4,-13,-11,-17,-18v-4,-7,-7,-17,-7,-29r0,-114r134,0r0,-18r-134,0r0,-59r-18,0r0,59r-60,0r0,18r60,0r0,114v0,16,3,29,9,39v6,10,15,18,24,23v9,5,19,9,30,11v11,2,22,2,31,2v17,0,32,-3,46,-8v14,-5,26,-10,36,-16","w":243,"k":{"\u00fc":17,"\u00fb":16,"\u00fa":17,"\u00f9":16,"\u00f6":26,"\u00f5":23,"\u00f4":21,"\u00f3":22,"\u00f2":21,"\u00eb":21,"\u00ea":19,"\u00e9":20,"\u00e8":19,"\u00e7":16,"\u00dc":32,"\u00d6":22,"\u00d1":19,"\u00c9":19,"\u00c7":22,"y":19,"t":38,"q":17,"o":17,"l":15,"g":17,"e":16,"d":23,"c":16,"`":147,"_":232,"^":84,"]":57,"\\":73,"[":37,"Y":47,"W":26,"V":31,"U":32,"T":84,"S":20,"R":19,"Q":22,"P":19,"O":22,"N":19,"M":19,"L":19,"K":19,"I":22,"H":19,"G":22,"F":19,"E":19,"D":19,"C":22,"B":19,"9":31,"8":24,"7":98,"6":33,"5":41,"4":115,"3":49,"2":27,"1":100,"0":21}},"u":{"d":"222,6r0,-203r-19,0r0,151v-9,7,-17,13,-26,18v-9,5,-16,8,-23,11v-8,3,-15,5,-23,7v-8,2,-15,2,-22,2v-12,0,-21,-1,-28,-4v-7,-3,-12,-7,-15,-10v-5,-5,-8,-9,-9,-15v-1,-6,-3,-13,-3,-20r0,-140r-18,0r0,140v0,11,1,21,4,28v3,7,6,14,12,20v12,13,31,19,56,19v16,0,33,-3,51,-10v8,-3,16,-7,23,-11v7,-4,14,-9,22,-15r0,10r0,10v0,0,-1,6,-1,8r0,4r19,0","w":259,"k":{"\u00f1":15,"\u00ef":19,"\u00ee":19,"\u00ed":19,"\u00ec":19,"\u00dc":24,"\u00d1":26,"\u00c9":26,"r":15,"p":15,"n":15,"m":15,"l":22,"k":15,"j":19,"i":21,"h":17,"b":16,"`":141,"_":218,"^":41,"]":64,"\\":66,"[":45,"Z":16,"Y":38,"W":17,"V":22,"U":24,"T":91,"S":21,"R":26,"P":26,"N":26,"M":26,"L":26,"K":26,"I":30,"H":26,"F":26,"E":26,"D":26,"B":26,"9":22,"8":15,"7":98,"5":32,"4":29,"3":43,"2":34,"1":110}},"v":{"d":"238,-197r-21,0r-51,95v-12,21,-12,22,-23,43r-23,42r-22,-41r-23,-43r-51,-96r-21,0r110,203r14,0","w":240,"k":{"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00c5":34,"\u00c4":34,"a":27,"`":111,"_":228,"^":45,"]":43,"\\":44,"[":24,"Z":74,"Y":18,"X":38,"T":71,"J":49,"A":34,"7":153,"5":38,"4":57,"3":81,"2":90,"1":89}},"w":{"d":"445,-197r-21,0r-51,95r-23,42r-22,42r-23,-42r-23,-42r-52,-95r-13,0r-49,90r-48,89r-23,-42v0,0,-10,-21,-22,-43r-51,-94r-21,0r110,203r14,0r52,-96v12,-21,11,-21,22,-41r22,-41v12,21,12,20,23,41r23,42r51,95r15,0","w":447,"k":{"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00c5":34,"\u00c4":34,"a":27,"`":111,"_":301,"^":45,"]":43,"\\":44,"[":24,"Z":73,"Y":18,"X":38,"T":71,"J":48,"A":34,"7":153,"5":38,"4":56,"3":81,"2":89,"1":89,".":29}},"x":{"d":"209,6r0,-9r-84,-97r76,-89r0,-8r-16,0r-72,84r-72,-84r-17,0r0,8r77,89r-84,97r0,9r16,0r80,-92r79,92r17,0","w":225,"k":{"\u00f6":26,"\u00f5":23,"\u00f4":23,"\u00f3":23,"\u00f2":23,"\u00eb":22,"\u00ea":22,"\u00e9":22,"\u00e8":22,"\u00e7":22,"\u00dc":17,"q":23,"o":23,"g":23,"e":22,"d":23,"c":22,"`":120,"_":203,"^":65,"]":51,"\\":59,"[":32,"Y":32,"V":16,"U":17,"T":79,"S":20,"I":17,"9":16,"8":16,"7":86,"6":18,"5":48,"4":63,"3":58,"2":22,"1":97}},"y":{"d":"234,-197r-20,0r-39,92r-18,41r-18,42r-55,-88r-54,-87r-22,0r122,194r-17,40v-5,12,-12,23,-20,30v-10,10,-25,15,-43,15v-5,0,-9,0,-13,-1v-4,-1,-7,-1,-10,-2v-4,-1,-8,-3,-11,-5v-3,-2,-7,-3,-11,-6r-10,16r14,7v0,0,7,4,12,5v4,1,8,2,13,3v5,1,10,1,16,1v13,0,24,-2,33,-6v9,-4,16,-8,22,-14v6,-6,12,-12,16,-18v4,-6,7,-12,9,-18","w":237,"k":{"\u00e5":25,"\u00e4":25,"\u00e3":25,"\u00e2":25,"\u00e1":25,"\u00e0":25,"\u00c5":31,"\u00c4":31,"q":15,"a":25,"`":111,"_":71,"^":39,"]":43,"\\":42,"[":24,"Z":55,"Y":15,"X":36,"T":68,"J":32,"A":31,"7":140,"5":36,"4":45,"3":67,"2":73,"1":87}},"z":{"d":"210,6r0,-18r-165,0r159,-170r0,-15r-180,0r0,18r153,0r-160,170r0,15r193,0","w":217,"k":{"\u00f6":24,"\u00f5":21,"\u00f4":21,"\u00f3":21,"\u00f2":21,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e8":20,"\u00e7":21,"q":21,"o":21,"g":21,"e":20,"d":21,"c":21,"`":111,"_":195,"^":51,"]":49,"\\":54,"[":30,"Y":28,"T":76,"S":16,"7":83,"5":47,"4":92,"3":57,"2":19,"1":94}},"{":{"d":"138,62r0,-17v-10,0,-18,-1,-24,-3v-6,-2,-10,-5,-14,-8v-3,-3,-5,-7,-7,-12v-2,-5,-3,-12,-3,-21r0,-57v0,-10,-1,-19,-3,-25v-2,-6,-6,-12,-10,-17v-3,-3,-5,-5,-9,-7v3,-2,6,-4,9,-7v4,-5,8,-11,10,-17v2,-6,3,-15,3,-25r0,-57v0,-9,1,-16,3,-21v2,-5,4,-9,7,-12v3,-3,8,-5,14,-7v6,-2,14,-4,24,-4r0,-17v-12,1,-23,3,-31,5v-8,2,-14,5,-20,11v-10,10,-15,26,-15,46r0,52v0,11,-1,18,-3,23v-2,5,-3,8,-6,11v-3,3,-7,5,-11,7v-4,2,-11,3,-20,4r0,16v9,1,16,2,20,4v4,2,8,4,11,7v3,3,4,6,6,11v2,5,3,12,3,23r0,52v0,20,5,36,15,46v6,6,12,10,20,12v8,2,19,3,31,4","w":167},"|":{"d":"116,96r0,-372r-18,0r0,372r18,0","w":213},"}":{"d":"135,-97r0,-16v-9,-1,-16,-2,-20,-4v-4,-2,-8,-4,-11,-7v-3,-3,-4,-6,-6,-11v-2,-5,-3,-12,-3,-23r0,-52v0,-20,-5,-36,-15,-46v-6,-6,-12,-9,-20,-11v-8,-2,-19,-4,-31,-5r0,17v10,0,18,2,24,4v6,2,11,4,14,7v3,3,5,7,7,12v2,5,3,12,3,21r0,57v0,10,1,19,3,25v2,6,6,12,10,17v3,3,5,5,9,7v-3,2,-6,4,-9,7v-4,5,-8,11,-10,17v-2,6,-3,15,-3,25r0,57v0,9,-1,16,-3,21v-2,5,-4,9,-7,12v-4,3,-8,6,-14,8v-6,2,-14,3,-24,3r0,17v12,-1,23,-2,31,-4v8,-2,14,-6,20,-12v10,-10,15,-26,15,-46r0,-52v0,-11,1,-18,3,-23v2,-5,3,-8,6,-11v3,-3,7,-5,11,-7v4,-2,11,-3,20,-4","w":167},"~":{"d":"251,-101r-17,-9v-4,5,-8,8,-14,11v-6,3,-14,5,-24,5v-5,0,-11,0,-17,-1v-6,-1,-13,-2,-21,-4r-23,-6v-5,-1,-11,-4,-18,-5v-7,-1,-16,-2,-26,-2v-14,0,-25,3,-33,8v-8,5,-15,10,-21,17r17,9v4,-5,8,-8,14,-11v6,-3,14,-5,24,-5v5,0,11,0,17,1v6,1,13,2,21,4r23,7v5,1,11,3,18,4v7,1,16,2,26,2v14,0,25,-3,33,-8v8,-5,15,-10,21,-17","w":288},"\u201a":{"d":"233,-260v-7,-6,-14,-10,-19,-13v-5,-3,-10,-5,-15,-7v-8,-3,-16,-5,-24,-6v-8,-1,-18,-2,-27,-2v-12,0,-23,2,-33,4v-10,2,-19,5,-27,10v-10,6,-18,14,-23,24v-5,10,-8,21,-8,33r0,313r19,0r0,-313v0,-11,2,-19,6,-26v4,-7,9,-12,16,-16v7,-4,15,-7,23,-9v8,-2,17,-2,27,-2v8,0,16,1,24,2v8,1,15,3,21,5v6,2,11,4,15,7v4,3,9,6,14,12","w":212,"k":{"\u201a":60,"t":49,"c":58}},"\u0192":{"d":"315,-245v-11,-5,-19,-9,-28,-11v-9,-2,-19,-4,-30,-4v-11,0,-21,2,-30,5v-9,3,-17,8,-24,15v-6,6,-12,14,-17,23v-5,9,-11,21,-16,35r-6,18r-57,0r-7,17r57,0r-44,122v-6,18,-15,31,-25,40v-12,9,-25,14,-39,14v-8,0,-14,-1,-21,-3v-7,-2,-15,-5,-24,-9r-10,16v13,6,23,9,31,11v8,2,15,3,23,3v11,0,20,-2,29,-5v9,-3,16,-7,23,-13v7,-6,13,-14,18,-22v5,-8,9,-17,13,-27r46,-127r75,0r6,-17r-74,0v2,-5,3,-11,5,-17v2,-6,5,-11,8,-17v3,-6,6,-11,9,-16v3,-5,6,-10,10,-14v5,-5,11,-7,17,-10v6,-3,15,-4,24,-4v10,0,18,1,24,3v6,2,13,5,21,9"},"\u201e":{"d":"108,-33r-21,0r-14,68r16,0xm63,-33r-21,0r-13,68r16,0","w":127},"\u2026":{"d":"369,6r0,-41r-18,0r0,41r18,0xm225,6r0,-41r-18,0r0,41r18,0xm81,6r0,-41r-18,0r0,41r18,0","w":432},"\u2020":{"d":"199,-184r0,-19r-68,1r2,-64r-20,0r1,64r-67,-1r0,19r67,-1v0,12,-1,12,-1,24r0,23v0,29,1,59,1,88v0,29,1,60,1,92r15,0v0,-32,2,-63,2,-92r0,-88r0,-23v0,-12,-1,-12,-1,-24","w":245},"\u2021":{"d":"199,-64r0,-19r-68,1v0,-14,1,-14,1,-28r0,-28r0,-23v0,-12,-1,-12,-1,-24r68,1r0,-19r-68,1r2,-64r-20,0r1,64r-67,-1r0,19r67,-1v0,12,-1,12,-1,24r0,23r0,28v0,14,1,14,1,28r-67,-1r0,19r67,-1r-1,101r20,0r-2,-101","w":245},"\u02c6":{"d":"159,-207r-67,-45r-4,0r-67,45r27,0r42,-23r42,23r27,0","w":180},"\u2030":{"d":"506,-59r0,-1v0,-10,-2,-19,-5,-28v-3,-9,-8,-16,-14,-22v-6,-6,-13,-11,-22,-15v-9,-4,-19,-5,-29,-5v-10,0,-19,1,-28,5v-9,4,-16,9,-22,15v-6,6,-11,13,-14,22v-3,9,-6,18,-6,28v0,10,3,19,6,28v3,9,8,16,14,22v6,6,13,11,22,15v9,4,18,6,28,6v10,0,20,-2,29,-6v9,-4,16,-8,22,-14v6,-6,11,-14,14,-23v3,-9,5,-17,5,-27xm341,-60r0,0v0,-10,-2,-19,-5,-28v-3,-9,-8,-16,-14,-22v-6,-6,-13,-11,-22,-15v-9,-4,-19,-6,-29,-6v-10,0,-19,2,-28,6v-9,4,-17,9,-23,15v-6,6,-11,13,-14,22v-3,9,-5,18,-5,28v0,10,2,19,5,28v3,9,8,16,14,22v6,6,14,11,23,15v9,4,18,5,28,5v10,0,20,-1,29,-5v9,-4,16,-9,22,-15v6,-6,11,-13,14,-22v3,-9,5,-18,5,-28xm297,-264r-22,0r-206,274r22,0xm165,-194r0,0v0,-10,-2,-19,-5,-28v-3,-9,-8,-16,-14,-22v-6,-6,-14,-11,-23,-15v-9,-4,-18,-6,-28,-6v-10,0,-19,2,-28,6v-9,4,-17,9,-23,15v-6,6,-11,13,-14,22v-3,9,-5,18,-5,28v0,10,2,19,5,28v3,9,8,16,14,22v6,6,14,11,23,15v9,4,18,6,28,6v10,0,19,-2,28,-6v9,-4,17,-9,23,-15v6,-6,11,-13,14,-22v3,-9,5,-18,5,-28xm488,-59v0,16,-5,28,-14,38v-9,10,-22,15,-37,15r0,0v-16,0,-29,-5,-38,-15v-9,-10,-13,-22,-13,-38v0,-16,4,-29,13,-39v9,-10,22,-14,38,-14v16,0,28,4,37,14v9,10,14,23,14,39xm322,-59v0,16,-5,28,-14,38v-9,10,-22,15,-37,15r0,0v-16,0,-28,-5,-37,-15v-9,-10,-14,-22,-14,-38v0,-16,5,-29,14,-39v9,-10,21,-14,37,-14v16,0,28,4,37,14v9,10,14,23,14,39xm146,-194v0,16,-5,29,-14,39v-9,10,-22,14,-37,14r0,0v-16,0,-28,-4,-37,-14v-9,-10,-14,-23,-14,-39v0,-16,5,-28,14,-38v9,-10,21,-15,37,-15v16,0,28,5,37,15v9,10,14,22,14,38","w":531},"\u0160":{"d":"223,-302r-34,0r-47,16r-1,0r-5,-2r-16,-5r-24,-9r-35,0r80,36r3,0xm262,-69v0,-13,-3,-23,-9,-32v-6,-9,-13,-15,-20,-20v-5,-3,-10,-6,-15,-8v-5,-2,-10,-4,-17,-6v-7,-2,-15,-4,-23,-6v-8,-2,-18,-5,-29,-7v-19,-4,-19,-4,-32,-7v-9,-2,-17,-4,-23,-6v-6,-2,-11,-3,-15,-4v-4,-1,-8,-3,-11,-5v-6,-3,-11,-7,-15,-12v-4,-5,-5,-12,-5,-19v0,-14,6,-26,21,-34v8,-5,19,-8,32,-10v13,-2,26,-3,41,-3v13,0,24,0,34,2v10,2,19,5,26,8v7,3,13,6,18,11v5,5,10,10,13,16r16,-9v-4,-7,-9,-14,-15,-20v-6,-6,-14,-11,-23,-15v-9,-4,-19,-6,-30,-8v-11,-2,-24,-3,-39,-3v-17,0,-32,2,-46,4v-14,2,-26,5,-36,11v-12,6,-20,13,-25,22v-5,9,-7,18,-7,27v0,12,3,22,9,30v6,8,12,14,19,18v3,2,6,2,10,4v4,2,9,3,15,5v6,2,13,4,22,6v9,2,20,5,34,8v13,3,24,6,33,8v9,2,17,3,23,5v6,2,11,4,15,6v4,2,8,2,11,4v6,3,11,8,16,14v5,6,8,14,8,25v0,8,-3,16,-7,23v-4,7,-10,13,-18,18v-9,6,-20,11,-33,15v-13,4,-28,6,-45,6v-27,0,-49,-4,-66,-11v-17,-7,-30,-17,-40,-29r-15,12v12,14,28,26,47,34v19,8,44,12,74,12v18,0,35,-3,50,-7v15,-4,28,-10,39,-17v11,-7,18,-15,24,-25v6,-10,9,-19,9,-31","w":284},"\u2039":{"d":"105,-8r0,-24r-57,-58r57,-57r0,-24r-81,78r0,6","w":137},"\u0152":{"d":"417,6r0,-19r-165,0r0,-111r130,0r0,-19r-130,0r0,-100r159,0r0,-18r-169,0v-4,-1,-10,-2,-20,-3v-10,-1,-24,-2,-42,-2v-24,0,-46,4,-65,10v-19,6,-35,15,-49,27v-14,12,-25,26,-32,43v-7,17,-11,37,-11,59v0,22,4,41,11,58v7,17,18,31,32,43v14,12,30,21,49,27v19,6,41,10,65,10v19,0,33,-1,43,-2v10,-1,16,-2,19,-3r175,0xm233,-9v0,2,-5,2,-14,2r-39,0v-21,0,-40,-3,-57,-8v-17,-5,-31,-14,-43,-24v-12,-10,-22,-23,-28,-38v-6,-15,-10,-31,-10,-50v0,-19,4,-36,10,-51v6,-15,16,-28,28,-38v12,-10,26,-19,43,-24v17,-5,36,-8,57,-8v16,0,30,-1,39,-1v9,0,14,0,14,2r0,238","w":443},"\u2018":{"d":"54,-193r-14,-68r-21,0r19,68r16,0","w":82},"\u2019":{"d":"63,-261r-21,0r-13,68r16,0","w":82},"\u201c":{"d":"98,-193r-13,-68r-21,0r18,68r16,0xm54,-193r-14,-68r-21,0r19,68r16,0","w":127},"\u201d":{"d":"108,-261r-21,0r-14,68r16,0xm63,-261r-21,0r-13,68r16,0","w":127},"\u2022":{"d":"131,-123v0,-8,-3,-14,-9,-20v-6,-6,-11,-8,-19,-8v-4,0,-8,1,-11,2v-3,1,-6,3,-9,6v-3,3,-4,6,-6,9v-2,3,-2,7,-2,11v0,8,2,14,8,20v6,6,12,8,20,8v8,0,13,-2,19,-8v6,-6,9,-12,9,-20","w":205},"\u2013":{"d":"211,-81r0,-18r-206,0r0,18r206,0","w":216},"\u2014":{"d":"427,-81r0,-18r-422,0r0,18r422,0","w":432},"\u02dc":{"d":"147,-237r-12,-12v-4,5,-8,8,-11,9v-3,1,-7,1,-11,1v-3,0,-6,0,-9,-1v-3,-1,-6,-1,-8,-1r-7,-2v-4,-1,-8,-3,-12,-3v-4,0,-7,-1,-10,-1v-6,0,-11,2,-17,4v-6,2,-11,6,-17,13r13,12v4,-5,8,-8,11,-9v3,-1,6,-2,10,-2v3,0,7,0,10,1v3,1,6,2,8,2r7,2v4,1,8,3,12,3r9,0v6,0,12,-1,18,-3v6,-2,10,-6,16,-13","w":180},"\u2122":{"d":"368,-121r0,-140r-19,0r-45,64r-39,55v-9,-14,-9,-14,-19,-28r-19,-27r-45,-64r-18,0r0,140r17,0r0,-68r0,-44r16,24v0,0,9,11,17,23r45,65r13,0r44,-64v8,-12,9,-12,17,-24v8,-12,9,-11,17,-24r0,44r0,68r18,0xm151,-244r0,-17r-145,0r0,17r64,0r0,123r18,0r0,-123r63,0","w":421},"\u0161":{"d":"187,-250r-27,0r-43,23r-42,-23r-27,0r67,45r5,0xm219,-53v0,-7,-2,-14,-5,-21v-3,-7,-6,-12,-12,-16v-4,-3,-8,-6,-12,-8v-4,-2,-10,-4,-16,-6v-6,-2,-14,-3,-22,-5v-8,-2,-18,-3,-30,-5v-13,-2,-23,-4,-31,-5v-8,-1,-14,-3,-19,-4v-5,-1,-10,-3,-13,-4v-3,-1,-5,-4,-8,-6v-4,-3,-7,-6,-8,-9v-1,-3,-2,-6,-2,-9v0,-5,1,-9,4,-13v3,-4,6,-7,12,-10v8,-4,17,-7,28,-8v11,-1,21,-2,33,-2v21,0,37,3,50,9v13,6,23,13,29,23r14,-13v-6,-7,-11,-13,-16,-17v-5,-4,-12,-7,-18,-10v-9,-4,-19,-7,-29,-8v-10,-1,-19,-2,-30,-2v-14,0,-27,1,-39,3v-12,2,-22,5,-30,9v-8,4,-14,9,-19,15v-5,6,-8,15,-8,24v0,7,2,13,5,19v3,6,8,10,14,15v4,3,8,5,12,7v4,2,8,4,14,5v6,1,13,3,21,4v8,1,18,3,30,5v12,2,22,4,30,5v8,1,15,3,20,4v5,1,10,3,13,5r9,6v4,3,6,8,8,12v2,4,2,8,2,12v0,12,-5,22,-17,29v-8,5,-18,9,-29,11v-11,2,-23,4,-35,4v-22,0,-41,-3,-56,-9v-15,-6,-28,-14,-36,-23r-14,14v7,7,14,12,21,16v7,4,14,8,23,11v9,3,20,5,30,7v10,2,22,2,34,2v32,0,56,-7,73,-19v8,-6,15,-12,19,-19v4,-7,6,-15,6,-25","w":234},"\u203a":{"d":"113,-87r0,-6r-81,-78r0,24r57,57r-57,58r0,24","w":137},"\u0153":{"d":"429,-91v0,-18,-3,-33,-8,-46v-5,-13,-12,-24,-20,-33v-10,-11,-21,-19,-34,-24v-13,-5,-26,-8,-40,-8v-13,0,-26,2,-37,5v-11,3,-21,8,-29,14v-8,6,-15,12,-21,19v-6,7,-11,15,-14,23v-3,-6,-6,-13,-11,-20v-5,-7,-11,-14,-19,-20v-8,-6,-18,-11,-29,-15v-11,-4,-24,-6,-40,-6v-15,0,-29,3,-42,8v-13,5,-24,12,-34,21v-10,9,-17,20,-23,33v-6,13,-9,28,-9,44v0,15,3,30,8,43v5,13,13,24,22,33v9,9,21,17,34,22v13,5,28,8,44,8v14,0,26,-2,37,-5v11,-3,21,-7,29,-12v8,-5,15,-12,21,-19v6,-7,10,-16,13,-24v5,12,12,22,20,30v8,8,16,13,25,18v9,5,19,8,28,10v9,2,19,2,27,2v10,0,20,-1,32,-3v12,-2,23,-4,33,-7v10,-3,19,-5,26,-7r10,-3r-4,-18v-2,0,-5,2,-12,4v-7,2,-15,5,-24,7v-9,2,-20,5,-31,7v-11,2,-21,2,-31,2v-9,0,-20,-1,-30,-4v-10,-3,-19,-8,-28,-14v-9,-6,-16,-15,-22,-26v-6,-11,-9,-23,-10,-39r193,0xm409,-109r-173,0v1,-9,3,-17,7,-26v4,-9,10,-17,17,-24v7,-7,17,-13,28,-18v11,-5,23,-7,38,-7v12,0,22,3,32,7v10,4,18,9,25,16v7,7,13,15,17,24v4,9,8,18,9,28xm217,-96v0,15,-3,28,-7,39v-4,11,-10,21,-18,28v-8,7,-18,12,-29,16v-11,4,-23,5,-36,5v-13,0,-25,-2,-36,-6v-11,-4,-20,-10,-28,-18v-8,-8,-14,-17,-18,-28v-4,-11,-7,-22,-7,-35r0,-1v0,-16,3,-29,8,-40v5,-11,12,-20,21,-27v9,-7,17,-13,28,-16v11,-3,21,-5,32,-5v13,0,25,2,36,6v11,4,21,10,29,18v8,8,14,17,18,28v4,11,7,22,7,36","w":443},"\u0178":{"d":"177,-256r0,-37r-18,0r0,37r18,0xm93,-256r0,-37r-18,0r0,37r18,0xm251,-261r-23,0r-54,71r-24,32r-24,32r-24,-32r-24,-31r-54,-72r-23,0r115,153r0,114r20,0r0,-114","w":252},"\u00a1":{"d":"67,-141r0,-40r-19,0r0,40r19,0xm67,86r-1,-211r-17,0r-1,211r19,0","w":115},"\u00a2":{"d":"252,-67r-16,-10v-9,13,-20,22,-32,29v-12,7,-28,10,-45,11r0,-176v16,1,30,4,43,11v13,7,23,15,30,24r15,-11v-23,-26,-52,-40,-88,-42r0,-24r-18,0r0,25v-16,1,-30,4,-42,10v-12,6,-22,14,-31,23v-9,9,-16,20,-21,32v-5,12,-7,26,-7,40v0,15,3,29,8,41v5,12,11,24,20,33v9,9,20,15,32,21v12,6,26,10,41,11r0,25r18,0r0,-25v21,-1,38,-5,53,-13v15,-8,28,-20,40,-35xm141,-38v-12,-1,-23,-4,-33,-8v-10,-4,-19,-11,-26,-18v-7,-7,-13,-17,-17,-27v-4,-10,-6,-21,-6,-34v0,-24,8,-44,22,-59v14,-15,34,-25,60,-28r0,174"},"\u00a3":{"d":"277,-15r-13,-12v-4,3,-9,6,-13,8v-4,2,-8,4,-13,5v-5,1,-10,2,-16,3v-6,1,-13,1,-20,1v-10,0,-19,0,-26,-1r-22,-3v0,0,-14,-1,-22,-2v-8,-1,-17,-2,-27,-2r-5,0v-1,0,-3,1,-4,1v7,-7,12,-15,15,-24v3,-9,6,-18,6,-29v0,-9,-1,-18,-3,-26v-2,-8,-3,-15,-6,-22r95,0r0,-18r-102,0r-9,-24v0,0,-4,-17,-4,-26v0,-8,1,-15,4,-22v3,-7,6,-13,12,-18v6,-5,13,-8,22,-11v9,-3,20,-4,33,-4v16,0,29,2,39,7v10,5,20,12,27,23r15,-9v-10,-15,-22,-24,-36,-30v-14,-6,-29,-8,-46,-8v-15,0,-28,1,-39,5v-11,4,-20,9,-27,15v-7,6,-13,13,-17,22v-4,9,-5,19,-5,29v0,9,1,18,3,26v2,8,5,17,8,25r-41,0r0,18r48,0v3,7,5,14,7,22v2,8,4,17,4,26v0,14,-4,25,-12,35v-8,10,-19,19,-34,27r7,15v4,-1,8,-3,11,-4v3,-1,8,-1,11,-2v3,-1,7,-1,11,-1r12,0v9,0,17,0,25,1r24,3r24,3v0,0,16,1,24,1v19,0,35,-2,46,-6v11,-4,21,-10,29,-17"},"\u20ac":{"d":"300,-56r-16,-11v-5,6,-10,13,-16,20v-6,7,-13,13,-22,19v-9,6,-18,11,-29,15v-11,4,-22,6,-35,6v-14,0,-28,-2,-41,-6v-13,-4,-26,-9,-37,-17v-11,-8,-20,-17,-28,-28v-8,-11,-14,-25,-17,-41r216,0r0,-17r-218,0r0,-6r0,-5v0,-6,0,-12,1,-18r217,0r0,-17r-214,0v4,-15,10,-28,18,-39v8,-11,18,-20,29,-27v11,-7,23,-12,36,-15v13,-3,27,-5,40,-5v11,0,21,1,30,4v9,3,17,6,25,11v8,5,14,11,20,17v6,6,11,14,16,21r17,-10v-6,-9,-12,-18,-19,-25v-7,-7,-16,-14,-25,-19v-9,-5,-18,-10,-29,-13v-11,-3,-22,-4,-35,-4v-21,0,-41,4,-59,10v-18,6,-33,15,-46,27v-9,9,-18,19,-24,30v-6,11,-11,24,-14,37r-38,0r0,17r36,0v-1,6,-2,11,-2,17r0,6v0,2,1,4,1,6r-35,0r0,17r37,0v3,15,8,29,15,41v7,12,15,23,26,33v11,10,25,19,42,26v17,7,37,10,59,10v15,0,28,-2,40,-6v12,-4,23,-10,33,-16v10,-6,18,-13,25,-21v7,-8,14,-16,20,-24","w":303},"\u00a5":{"d":"272,-255r-23,0r-52,69r-22,30r-23,31r-22,-31r-23,-30r-51,-69r-24,0r111,147r-100,0r0,17r100,0r0,25r-100,0r0,18r100,0r0,54r19,0r0,-54r99,0r0,-18r-99,0r0,-25r99,0r0,-17r-99,0","w":304},"\u00a6":{"d":"116,-111r0,-138r-18,0r0,138r18,0xm116,69r0,-138r-18,0r0,138r18,0","w":213},"\u00a7":{"d":"251,-96v0,-12,-2,-21,-7,-29v-5,-8,-12,-14,-20,-19v-8,-5,-18,-9,-30,-12v-12,-3,-25,-7,-38,-10v-14,-3,-26,-6,-38,-9v-12,-3,-20,-6,-25,-8v-7,-3,-13,-7,-16,-11v-3,-4,-5,-11,-5,-17v0,-7,2,-13,7,-18v5,-5,11,-9,18,-12v7,-3,16,-5,25,-6v9,-1,18,-1,27,-1v7,0,15,0,22,1v7,1,15,2,21,5v6,3,12,7,17,11v5,4,8,9,11,16r17,-8v-4,-9,-10,-15,-16,-21v-6,-6,-13,-11,-21,-14v-8,-3,-16,-5,-25,-6v-9,-1,-17,-2,-26,-2v-12,0,-25,0,-36,2v-11,2,-22,5,-31,10v-7,4,-14,9,-20,16v-6,7,-8,16,-8,27v0,6,1,13,3,19v2,6,6,11,11,16v-3,2,-7,4,-10,6v-3,2,-7,5,-10,9v-3,4,-5,8,-7,13v-2,5,-3,10,-3,16v0,10,2,18,7,25v5,7,12,12,20,16v8,4,18,9,29,12v11,3,24,5,37,8v10,2,10,3,21,5v7,2,14,3,20,5v6,2,12,4,17,6v5,2,10,4,13,7v5,4,9,8,11,12v2,4,3,9,3,15v0,7,-1,15,-5,21v-4,6,-9,11,-16,16v-8,5,-16,10,-26,12v-10,2,-20,3,-32,3v-11,0,-21,0,-30,-2v-9,-2,-16,-4,-23,-7v-7,-3,-12,-7,-17,-11v-5,-4,-9,-8,-13,-13r-15,11v4,4,8,9,13,14v5,5,12,9,20,13v8,4,17,6,28,9v11,3,23,4,37,4v13,0,25,-1,37,-4v12,-3,24,-8,34,-16v8,-6,14,-13,19,-21v5,-8,8,-16,8,-27v0,-8,-1,-15,-3,-20v-2,-5,-4,-9,-7,-12v8,-6,14,-13,19,-21v5,-8,7,-16,7,-24xm232,-97v0,6,-1,13,-5,19v-4,6,-9,11,-15,15v-6,-4,-12,-7,-19,-10v-7,-3,-14,-5,-22,-7r-27,-6r-27,-6v-9,-2,-18,-4,-25,-6v-7,-2,-14,-6,-19,-9v-5,-3,-9,-6,-12,-10v-3,-4,-4,-9,-4,-14r0,0v0,-16,10,-28,30,-34r28,9v0,0,18,4,27,6r25,6v8,2,15,4,22,6v14,4,25,9,32,15v7,6,11,15,11,26","w":280},"\u00a8":{"d":"140,-215r0,-39r-18,0r0,39r18,0xm58,-215r0,-39r-18,0r0,39r18,0","w":180},"\u00a9":{"d":"319,-128v0,-19,-3,-36,-10,-53v-7,-17,-18,-32,-30,-45v-12,-13,-27,-22,-44,-29v-17,-7,-35,-11,-54,-11r0,0v-19,0,-37,4,-54,11v-17,7,-31,16,-44,29v-13,13,-22,28,-29,45v-7,17,-11,34,-11,53v0,19,4,37,11,54v7,17,16,31,29,44v13,13,27,23,44,30v17,7,35,11,54,11v19,0,37,-4,54,-11v17,-7,31,-17,44,-30v13,-13,23,-27,30,-44v7,-17,10,-35,10,-54xm302,-128v0,17,-4,32,-10,47v-6,15,-15,28,-26,39v-11,11,-23,20,-38,26v-15,6,-30,9,-47,9v-17,0,-31,-3,-46,-9v-15,-6,-28,-15,-39,-26v-11,-11,-19,-24,-25,-39v-6,-15,-10,-30,-10,-47v0,-17,4,-32,10,-47v6,-15,14,-27,25,-38v11,-11,23,-20,38,-26v15,-6,30,-9,47,-9r0,0v17,0,32,3,47,9v15,6,27,15,38,26v11,11,20,23,26,38v6,15,10,30,10,47xm249,-66r-12,-13v-8,9,-16,14,-24,17v-3,1,-8,3,-12,4v-4,1,-9,1,-15,1v-8,0,-16,0,-24,-3v-8,-3,-16,-9,-23,-16v-7,-7,-11,-15,-14,-24v-3,-9,-4,-19,-4,-29v0,-13,1,-24,5,-32v4,-8,8,-14,13,-19v7,-7,14,-12,22,-15v8,-3,16,-5,25,-5r8,0v0,0,3,1,5,1v2,0,3,1,5,1v3,1,3,1,7,2v3,1,6,3,10,5v4,2,8,6,13,11r12,-14v-6,-6,-11,-10,-15,-12v-4,-2,-8,-4,-13,-6v-5,-2,-10,-3,-15,-4v-5,-1,-10,-1,-16,-1v-12,0,-24,2,-34,6v-10,4,-19,11,-27,18v-8,8,-14,17,-18,28v-4,11,-6,23,-6,36v0,28,8,50,24,66v8,8,17,14,27,18v10,4,22,6,34,6v6,0,12,-1,18,-2v6,-1,10,-2,14,-4v5,-2,9,-5,14,-8v5,-3,10,-7,16,-13","w":362},"\u00aa":{"d":"145,-132r-3,-6v0,0,-2,-4,-3,-5v-1,-1,-1,-2,-1,-4v0,-2,-1,-4,-1,-6r0,-51r0,-10v0,-3,-1,-7,-1,-10v0,-3,0,-6,-1,-9v-1,-3,-2,-6,-4,-9v-4,-6,-10,-10,-17,-13v-7,-3,-17,-5,-30,-5v-12,0,-23,2,-31,5v-8,3,-14,6,-17,9v-3,3,-5,6,-5,6r4,12r3,-2r10,-5v0,0,10,-4,16,-5v6,-1,13,-2,21,-2v10,0,17,1,21,3v4,2,7,4,9,6v2,2,3,5,3,8v0,3,1,5,1,8v-16,1,-31,3,-43,5v-12,2,-22,6,-30,10v-8,4,-14,8,-18,14v-4,6,-6,14,-6,22v0,8,2,14,6,19v4,5,8,8,14,11v6,3,12,4,18,5v6,1,12,1,16,1v7,0,14,-1,22,-3v8,-2,16,-5,23,-10v1,2,1,3,1,5v0,2,2,4,4,6r19,0xm119,-163v-12,11,-28,16,-46,16v-4,0,-7,0,-11,-1v-4,-1,-8,-1,-11,-3v-3,-2,-6,-4,-8,-7v-2,-3,-3,-5,-3,-9v0,-4,2,-8,4,-11v2,-3,6,-6,12,-9v6,-3,14,-6,24,-8v10,-2,23,-4,39,-5r0,37","w":163},"\u00ab":{"d":"165,-8r0,-24r-58,-58r58,-57r0,-24r-82,78r0,6xm105,-8r0,-24r-57,-58r57,-57r0,-24r-81,78r0,6","w":196},"\u00ac":{"d":"242,-51r0,-72r-196,0r0,18r178,0r0,54r18,0","w":288},"\u00ae":{"d":"320,-128v0,-19,-4,-36,-11,-53v-7,-17,-18,-32,-30,-45v-12,-13,-27,-22,-44,-29v-17,-7,-34,-11,-53,-11r-1,0v-19,0,-36,4,-53,11v-17,7,-31,16,-44,29v-13,13,-23,28,-30,45v-7,17,-11,34,-11,53v0,19,4,37,11,54v7,17,17,31,30,44v13,13,27,23,44,30v17,7,34,11,53,11v19,0,37,-4,54,-11v17,-7,31,-17,44,-30v13,-13,23,-27,30,-44v7,-17,11,-35,11,-54xm302,-128v0,17,-4,32,-10,47v-6,15,-14,28,-25,39v-11,11,-23,20,-38,26v-15,6,-30,9,-47,9v-17,0,-32,-3,-47,-9v-15,-6,-27,-15,-38,-26v-11,-11,-20,-24,-26,-39v-6,-15,-9,-30,-9,-47v0,-17,3,-32,9,-47v6,-15,15,-27,26,-38v11,-11,23,-20,38,-26v15,-6,29,-9,46,-9r1,0v17,0,32,3,47,9v15,6,27,15,38,26v11,11,19,23,25,38v6,15,10,30,10,47xm270,-40r-67,-77v4,-1,9,-3,14,-5v5,-2,9,-6,13,-10v4,-4,8,-8,11,-14v3,-6,4,-14,4,-22v0,-7,-2,-13,-4,-19v-2,-6,-7,-12,-13,-17v-6,-5,-13,-8,-23,-11v-10,-3,-22,-4,-36,-4r-39,0r0,179r18,0r0,-76r33,0r65,76r24,0xm226,-166v0,9,-4,17,-11,23v-7,6,-18,10,-33,10r-34,0r0,-68r21,0v18,0,32,2,42,7v10,5,15,15,15,28","w":362},"\u00af":{"d":"143,-225r0,-18r-106,0r0,18r106,0","w":180},"\u00b0":{"d":"141,-210v0,-7,-1,-13,-4,-19v-3,-6,-6,-12,-10,-16v-4,-4,-10,-8,-16,-11v-6,-3,-13,-4,-20,-4r0,0v-7,0,-14,1,-20,4v-6,3,-11,7,-15,11v-4,4,-8,10,-11,16v-3,6,-4,12,-4,19v0,7,1,14,4,20v3,6,7,12,11,16v4,4,9,8,15,11v6,3,13,4,20,4v7,0,14,-1,20,-4v6,-3,12,-7,16,-11v4,-4,7,-10,10,-16v3,-6,4,-13,4,-20xm123,-210v0,9,-3,17,-9,23v-6,6,-14,9,-23,9v-9,0,-16,-3,-22,-9v-6,-6,-9,-14,-9,-23v0,-4,1,-8,3,-12v2,-4,3,-7,6,-10v3,-3,6,-4,10,-6v4,-2,8,-3,12,-3r0,0v9,0,17,3,23,9v6,6,9,13,9,22","w":182},"\u00b1":{"d":"242,-82r0,-18r-89,0r0,-66r-18,0r0,66r-89,0r0,18r89,0r0,65r18,0r0,-65r89,0xm242,6r0,-18r-196,0r0,18r196,0","w":288},"\u00b2":{"d":"167,-96r0,-18r-119,0v7,-12,16,-21,28,-28v12,-7,23,-13,36,-19v10,-5,10,-4,20,-9v6,-3,12,-7,17,-11v5,-4,9,-9,12,-14v3,-5,5,-12,5,-19v0,-8,-2,-15,-5,-21v-3,-6,-9,-10,-15,-14v-6,-4,-13,-6,-21,-8v-8,-2,-18,-3,-27,-3v-20,0,-35,4,-46,12v-11,8,-18,19,-22,32r18,3v1,-3,2,-7,4,-10v2,-3,5,-7,9,-10v4,-3,8,-4,14,-6v6,-2,13,-3,22,-3v19,0,31,2,39,8v8,6,12,12,12,19v0,5,-1,10,-3,13v-2,3,-6,7,-10,10v-2,2,-5,4,-8,5v-3,1,-6,3,-9,4v-3,2,-6,4,-9,5v-3,1,-7,2,-10,4v-7,3,-14,7,-21,11v-7,4,-14,9,-21,14v-7,5,-13,12,-19,19v-6,7,-10,17,-14,27r9,7r134,0","w":195},"\u00b3":{"d":"165,-140v0,-6,0,-11,-2,-16v-2,-5,-5,-9,-8,-12v-3,-3,-6,-7,-10,-9v-4,-2,-8,-5,-12,-6v8,-3,14,-7,18,-13v4,-6,6,-14,6,-23v0,-4,-1,-8,-2,-13v-1,-5,-5,-9,-9,-13v-4,-4,-10,-7,-18,-10v-8,-3,-18,-5,-31,-5v-17,0,-31,3,-43,9v-12,6,-19,18,-23,34r18,4v3,-11,8,-19,15,-23v7,-4,18,-6,33,-6v10,0,18,1,24,3v6,2,9,4,12,7v3,3,4,5,5,8v1,3,1,6,1,7v0,3,-1,7,-3,10v-2,3,-5,5,-10,8v-5,3,-11,5,-19,7v-8,2,-18,2,-29,2r0,17v24,0,42,3,53,8v11,5,16,13,16,23v0,9,-4,16,-11,22v-7,6,-19,9,-37,9v-8,0,-16,0,-22,-1v-6,-1,-11,-3,-16,-6v-5,-3,-8,-7,-11,-11v-3,-4,-7,-8,-9,-14r-18,4v7,17,17,29,29,36v12,7,27,10,45,10v22,0,39,-4,51,-13v12,-9,17,-19,17,-34","w":195},"\u00b4":{"d":"163,-252r-33,0r-64,52r24,0","w":180},"\u00b5":{"d":"222,6r0,-203r-19,0r0,151v-9,7,-17,13,-26,18v-9,5,-16,8,-23,11v-8,3,-15,5,-23,7v-8,2,-15,2,-22,2v-12,0,-21,-1,-28,-4v-7,-3,-11,-7,-15,-10v-5,-5,-9,-9,-10,-15v-1,-6,-2,-13,-2,-20r0,-140r-18,0r0,292r18,0r0,-103v12,12,31,18,54,18v16,0,33,-3,51,-10v8,-3,16,-7,23,-11v7,-4,14,-9,22,-15r0,10r0,10v0,0,-1,6,-1,8r0,4r19,0","w":259},"\u00b6":{"d":"183,89r0,-350r-82,0v-13,0,-25,1,-36,5v-11,4,-20,9,-28,16v-7,7,-13,15,-17,24v-4,9,-6,20,-6,31v0,14,3,26,8,36v5,10,13,18,22,24v8,6,17,10,27,12v10,2,20,4,31,4r0,198r18,0r0,-332r45,0r0,332r18,0","w":235},"\u00b7":{"d":"59,-91v0,-3,-1,-7,-3,-9v-2,-2,-6,-3,-9,-3r0,0v-3,0,-7,1,-9,3v-2,2,-3,6,-3,9v0,3,1,7,3,9v2,2,6,3,9,3v3,0,6,-1,8,-3v2,-2,4,-6,4,-9","w":93},"\u2219":{"d":"59,-91v0,-3,-1,-7,-3,-9v-2,-2,-6,-3,-9,-3r0,0v-3,0,-7,1,-9,3v-2,2,-3,6,-3,9v0,3,1,7,3,9v2,2,6,3,9,3v3,0,6,-1,8,-3v2,-2,4,-6,4,-9","w":93},"\u00b8":{"d":"131,40v0,-5,-1,-9,-3,-12v-2,-3,-5,-6,-8,-8v-3,-2,-7,-3,-11,-4v-4,-1,-7,-2,-11,-2r15,-20r-22,0r-25,33r12,6v3,-1,6,-1,10,-2v4,-1,8,0,12,0v4,0,6,1,9,2v3,1,4,3,4,7v0,2,0,5,-2,6v-2,1,-4,2,-7,3v-3,1,-5,2,-8,2r-9,0v-6,0,-11,-1,-16,-2v-5,-1,-10,-2,-16,-5r-10,14v6,3,12,6,19,8v7,2,15,3,23,3v6,0,11,-1,16,-2v5,-1,10,-3,14,-5v4,-2,7,-5,10,-9v3,-4,4,-8,4,-13","w":180},"\u00b9":{"d":"114,-96r0,-162r-10,0r-49,22r7,16r34,-16r0,140r18,0","w":195},"\u00ba":{"d":"154,-195v0,-10,-2,-19,-5,-27v-3,-8,-9,-14,-15,-20v-6,-6,-13,-10,-22,-13v-9,-3,-18,-5,-28,-5v-10,0,-19,2,-28,5v-9,3,-16,7,-22,13v-6,6,-12,12,-15,20v-3,8,-5,17,-5,27r0,0v0,10,2,19,5,27v3,8,9,15,15,21v6,6,13,10,22,13v9,3,18,4,28,4v10,0,19,-1,28,-4v9,-3,16,-7,22,-13v6,-6,12,-13,15,-21v3,-8,5,-17,5,-27xm136,-195v0,14,-4,25,-13,34v-9,9,-22,13,-39,13v-16,0,-29,-4,-38,-13v-9,-9,-14,-20,-14,-34v0,-14,5,-26,14,-35v9,-9,22,-13,38,-13r0,0v17,0,30,4,39,13v9,9,13,21,13,35","w":167},"\u00bb":{"d":"172,-87r0,-6r-81,-78r0,24r57,57r-57,58r0,24xm113,-87r0,-6r-81,-78r0,24r57,57r-57,58r0,24","w":196},"\u00bc":{"d":"373,-36r0,-18r-34,0r0,-102r-15,0r-101,108r0,12r98,0r0,42r18,0r0,-42r34,0xm312,-260r-23,0r-230,270r24,0xm114,-96r0,-162r-10,0r-49,22r7,16r34,-16r0,140r18,0xm321,-127r0,34r0,39r-69,0r33,-35v9,-9,9,-9,18,-19v9,-10,9,-9,18,-19","w":417},"\u00bd":{"d":"377,6r0,-18r-120,0v7,-12,16,-21,28,-28v12,-7,24,-13,37,-19r20,-10v6,-3,12,-7,17,-11v5,-4,9,-9,12,-14v3,-5,4,-11,4,-18v0,-8,-2,-15,-5,-21v-3,-6,-8,-10,-14,-14v-6,-4,-14,-6,-22,-8v-8,-2,-17,-3,-26,-3v-20,0,-36,4,-47,12v-11,8,-18,19,-22,32r18,3v1,-3,3,-8,5,-11v2,-3,4,-6,8,-9v4,-3,8,-5,14,-7v6,-2,13,-2,22,-2v19,0,32,2,40,8v8,6,11,12,11,19v0,5,-1,10,-3,13v-2,3,-6,7,-10,10v-2,2,-4,4,-7,5v-3,1,-6,3,-9,4v-3,2,-7,4,-10,5v-3,1,-6,2,-9,4v-7,3,-15,7,-22,11v-7,4,-14,9,-21,14v-7,5,-12,12,-18,19v-6,7,-10,17,-14,27r8,7r135,0xm303,-260r-23,0r-229,270r24,0xm108,-96r0,-162r-10,0r-46,13r5,17r33,-10r0,142r18,0","w":417},"\u00be":{"d":"404,-36r0,-18r-34,0r0,-102r-15,0r-102,108r0,12r99,0r0,42r18,0r0,-42r34,0xm348,-260r-23,0r-229,270r23,0xm165,-140v0,-6,0,-11,-2,-16v-2,-5,-5,-9,-8,-12v-3,-3,-6,-7,-10,-9v-4,-2,-8,-5,-12,-6v8,-3,14,-7,18,-13v4,-6,6,-14,6,-23v0,-4,-1,-8,-2,-13v-1,-5,-5,-9,-9,-13v-4,-4,-10,-7,-18,-10v-8,-3,-18,-5,-31,-5v-17,0,-31,3,-43,9v-12,6,-19,18,-23,34r18,4v3,-11,8,-19,15,-23v7,-4,18,-6,33,-6v10,0,18,1,24,3v6,2,9,4,12,7v3,3,4,5,5,8v1,3,1,6,1,7v0,3,-1,7,-3,10v-2,3,-5,5,-10,8v-5,3,-11,5,-19,7v-8,2,-18,2,-29,2r0,17v24,0,42,3,53,8v11,5,16,13,16,23v0,9,-4,16,-11,22v-7,6,-19,9,-37,9v-8,0,-16,0,-22,-1v-6,-1,-11,-3,-16,-6v-5,-3,-8,-7,-11,-11v-3,-4,-7,-8,-9,-14r-18,4v7,17,17,29,29,36v12,7,27,10,45,10v22,0,39,-4,51,-13v12,-9,17,-19,17,-34xm352,-127r0,34r0,39r-70,0r34,-35v9,-9,9,-9,18,-19v9,-10,9,-9,18,-19","w":448},"\u00bf":{"d":"125,-141r0,-40r-19,0r0,40r19,0xm215,31r-17,-6v-7,14,-18,25,-33,33v-15,8,-35,12,-61,12v-12,0,-24,0,-34,-2v-10,-2,-19,-4,-27,-8v-8,-4,-13,-8,-17,-14v-4,-6,-7,-14,-7,-22v0,-6,1,-11,2,-16v1,-5,4,-9,7,-13v3,-4,7,-8,13,-12v6,-4,13,-7,21,-11v13,-6,24,-12,32,-18v8,-6,14,-13,19,-20v5,-7,8,-16,10,-25v2,-9,2,-21,1,-34r-16,0v0,10,-1,19,-2,27v-1,8,-3,14,-7,20v-4,6,-8,12,-15,17v-7,5,-16,10,-28,16v-10,5,-18,9,-25,14v-7,5,-13,10,-18,15v-5,5,-8,12,-10,18v-2,6,-3,13,-3,21v0,13,3,24,9,32v6,8,14,15,23,20v9,5,20,8,32,10v12,2,25,3,38,3v16,0,31,-1,43,-4v12,-3,23,-6,32,-11v9,-5,17,-11,23,-18v6,-7,11,-15,15,-24","w":211},"\u00c0":{"d":"170,-267r-71,-44r-46,0r87,44r30,0xm249,6r-119,-267r-12,0r-118,267r21,0r39,-89r128,0r40,89r21,0xm180,-102r-111,0r29,-67v6,-15,7,-15,13,-30r13,-31v7,17,7,17,14,32v7,15,7,16,13,31","w":248},"\u00c1":{"d":"197,-314r-45,0r-72,44r31,0xm249,6r-119,-267r-12,0r-118,267r21,0r39,-89r128,0r40,89r21,0xm180,-102r-111,0r29,-67v6,-15,7,-15,13,-30r13,-31v7,17,7,17,14,32v7,15,7,16,13,31","w":248},"\u00c2":{"d":"206,-267r-80,-36r-3,0r-79,36r34,0r47,-16r1,0r5,2r16,5r24,9r35,0xm249,6r-119,-267r-12,0r-118,267r21,0r39,-89r128,0r40,89r21,0xm180,-102r-111,0r29,-67v6,-15,7,-15,13,-30r13,-31v7,17,7,17,14,32v7,15,7,16,13,31","w":248},"\u00c3":{"d":"187,-291r-13,-12v-5,6,-8,9,-12,10v-4,1,-8,2,-13,2v-4,0,-8,0,-11,-1v-3,-1,-5,-1,-7,-1r-8,-3v-5,-1,-9,-3,-13,-3v-4,0,-8,-1,-11,-1v-7,0,-13,2,-19,4v-6,2,-12,7,-18,14r13,13v5,-6,9,-10,12,-11v3,-1,7,-2,12,-2v4,0,8,0,11,1v3,1,5,2,7,2r8,3v5,1,9,2,13,2v4,0,8,1,11,1v7,0,14,-1,20,-4v6,-3,12,-7,18,-14xm249,6r-119,-267r-12,0r-118,267r21,0r39,-89r128,0r40,89r21,0xm180,-102r-111,0r29,-67v6,-15,7,-15,13,-30r13,-31v7,17,7,17,14,32v7,15,7,16,13,31","w":248},"\u00c4":{"d":"175,-263r0,-38r-18,0r0,38r18,0xm92,-263r0,-38r-18,0r0,38r18,0xm249,6r-119,-267r-12,0r-118,267r21,0r39,-89r128,0r40,89r21,0xm180,-102r-111,0r29,-67v6,-15,7,-15,13,-30r13,-31v7,17,7,17,14,32v7,15,7,16,13,31","w":248,"k":{"\u00dc":22,"\u00d6":17,"\u00c7":16,"y":41,"w":34,"v":34,"t":33,"`":83,"_":240,"^":66,"]":41,"\\":55,"[":23,"Y":64,"W":51,"V":63,"U":20,"T":67,"Q":15,"O":15,"G":15,"C":16,"9":21,"7":76,"6":17,"5":23,"4":32,"3":33,"1":83}},"\u00c5":{"d":"249,6r-115,-258v6,-2,12,-5,17,-9v5,-4,7,-10,7,-18v0,-5,-1,-10,-3,-13v-2,-3,-5,-7,-8,-9v-3,-2,-7,-4,-11,-5v-4,-1,-7,-1,-11,-1v-4,0,-8,0,-12,1v-4,1,-8,3,-11,5v-3,2,-6,6,-8,9v-2,3,-3,8,-3,13v0,7,2,13,7,17v5,4,10,8,16,9r-114,259r21,0r39,-89r128,0r40,89r21,0xm139,-279v0,2,-1,5,-3,7v-2,2,-5,3,-11,3r-1,0v-6,0,-10,-2,-12,-4v-2,-2,-3,-4,-3,-6v0,-3,1,-6,4,-8v3,-2,6,-3,11,-3v5,0,9,1,12,3v3,2,3,5,3,8xm180,-102r-111,0r29,-67v6,-15,7,-15,13,-30r13,-31v7,17,7,17,14,32v7,15,7,16,13,31","w":248,"k":{"\u00dc":22,"\u00d6":17,"\u00c7":15,"y":41,"w":34,"v":34,"t":33,"`":83,"_":240,"^":66,"]":41,"\\":71,"[":22,"Y":60,"W":51,"V":58,"U":20,"T":67,"G":15,"C":15,"9":21,"7":76,"6":17,"5":23,"4":32,"3":33,"1":83}},"\u00c6":{"d":"377,6r0,-19r-165,0r0,-111r130,0r0,-19r-130,0r0,-100r160,0r0,-18r-180,0r-207,267r23,0r69,-89r116,0r0,89r184,0xm193,-102r-102,0r53,-67v12,-16,12,-17,24,-32v12,-15,13,-15,25,-32r0,61r0,70","w":403},"\u00c7":{"d":"285,-56r-15,-11v-5,6,-10,13,-16,20v-6,7,-14,13,-23,19v-9,6,-17,11,-28,15v-11,4,-23,6,-36,6v-16,0,-31,-3,-46,-8v-15,-5,-28,-12,-40,-22v-12,-10,-21,-22,-28,-37v-7,-15,-11,-33,-11,-53v0,-22,5,-41,12,-56v7,-15,17,-27,29,-37v12,-10,25,-17,40,-21v15,-4,31,-7,46,-7v11,0,21,1,30,4v9,3,17,6,25,11v8,5,15,11,21,17v6,6,11,14,16,21r16,-10v-6,-9,-12,-18,-19,-25v-7,-7,-15,-14,-24,-19v-9,-5,-19,-10,-30,-13v-11,-3,-22,-4,-35,-4v-21,0,-40,4,-58,10v-18,6,-34,15,-47,27v-13,12,-23,27,-30,44v-7,17,-11,36,-11,57v0,21,3,41,11,58v8,17,18,32,32,45v10,9,22,17,37,23v15,6,31,10,50,12r-15,21r12,7v13,-3,24,-2,30,0v6,2,9,5,9,9v0,1,0,3,-1,4v-1,1,-2,3,-4,4v-2,1,-6,2,-10,3v-4,1,-10,2,-16,2v-6,0,-12,-1,-17,-2v-5,-1,-11,-4,-16,-6r-11,14v7,4,15,7,22,9v7,2,15,2,24,2v15,0,27,-2,35,-8v8,-6,13,-13,13,-22v0,-5,-1,-9,-3,-13v-2,-4,-5,-7,-9,-9v-4,-2,-8,-4,-13,-5v-5,-1,-8,-1,-13,-1r5,-8v14,-1,26,-4,37,-8v11,-4,21,-10,30,-16v9,-6,18,-12,25,-20v7,-8,12,-16,18,-23","w":303,"k":{"\u00fc":29,"\u00fb":28,"\u00fa":29,"\u00f9":28,"\u00f6":25,"\u00f5":23,"\u00f4":21,"\u00f3":22,"\u00f2":21,"\u00f1":32,"\u00ed":22,"\u00ec":30,"\u00eb":21,"\u00ea":21,"\u00e9":22,"\u00e8":20,"\u00e7":23,"\u00e5":20,"\u00e4":21,"\u00e3":22,"\u00e2":20,"\u00e1":21,"\u00e0":20,"\u00dc":37,"\u00d6":31,"\u00d1":37,"\u00c9":37,"\u00c7":33,"\u00c5":21,"\u00c4":21,"z":55,"y":83,"x":52,"w":69,"v":69,"u":30,"t":55,"s":39,"r":32,"q":28,"p":27,"o":23,"n":32,"m":32,"l":32,"k":26,"i":32,"h":28,"g":24,"f":43,"e":22,"d":26,"c":22,"b":26,"a":24,"`":32,"_":275,"^":104,"]":72,"\\":69,"[":54,"Z":54,"Y":42,"X":53,"W":27,"V":31,"U":37,"T":59,"S":37,"R":37,"Q":34,"P":37,"O":31,"N":37,"M":37,"L":37,"K":37,"J":26,"I":40,"H":37,"G":31,"F":37,"E":37,"D":37,"C":31,"B":37,"A":21,"9":40,"8":27,"7":95,"6":33,"5":41,"4":139,"3":49,"2":54,"1":51,"0":27}},"\u00c8":{"d":"161,-270r-72,-44r-45,0r86,44r31,0xm232,6r0,-19r-164,0r0,-111r129,0r0,-19r-129,0r0,-100r159,0r0,-18r-179,0r0,267r184,0","w":258},"\u00c9":{"d":"217,-303r-46,0r-71,43r30,0xm232,6r0,-19r-164,0r0,-111r129,0r0,-19r-129,0r0,-100r159,0r0,-18r-179,0r0,267r184,0","w":258,"k":{"\u00fc":50,"\u00fb":50,"\u00fa":51,"\u00f9":50,"\u00f6":59,"\u00f5":57,"\u00f4":55,"\u00f3":57,"\u00f2":55,"\u00f1":39,"\u00ee":37,"\u00ed":38,"\u00ec":38,"\u00eb":55,"\u00ea":54,"\u00e9":55,"\u00e8":54,"\u00e7":51,"\u00e5":43,"\u00e4":44,"\u00e3":45,"\u00e2":44,"\u00e1":45,"\u00e0":43,"\u00dc":45,"\u00d6":51,"\u00d1":45,"\u00c9":45,"\u00c7":52,"z":27,"y":73,"x":21,"w":63,"v":63,"u":46,"t":81,"s":44,"r":34,"q":51,"p":34,"o":51,"n":34,"m":34,"l":40,"k":33,"j":37,"i":39,"h":36,"g":52,"f":53,"e":50,"d":59,"c":51,"b":33,"a":42,"`":165,"_":205,"^":97,"]":81,"\\":48,"[":63,"Z":37,"Y":22,"X":28,"W":18,"V":20,"U":45,"T":28,"S":58,"R":44,"Q":52,"P":44,"O":52,"N":44,"M":44,"L":44,"K":44,"J":37,"I":48,"H":44,"G":52,"F":44,"E":44,"D":44,"C":52,"B":44,"9":73,"8":63,"7":72,"6":62,"5":79,"4":116,"3":86,"2":49,"1":126,"0":50}},"\u00ca":{"d":"211,-267r-80,-36r-3,0r-79,36r34,0r47,-16r1,0r5,2r16,5r24,9r35,0xm232,6r0,-19r-164,0r0,-111r129,0r0,-19r-129,0r0,-100r159,0r0,-18r-179,0r0,267r184,0","w":258},"\u00cb":{"d":"188,-270r0,-38r-18,0r0,38r18,0xm104,-270r0,-38r-18,0r0,38r18,0xm232,6r0,-19r-164,0r0,-111r129,0r0,-19r-129,0r0,-100r159,0r0,-18r-179,0r0,267r184,0","w":258},"\u00cc":{"d":"107,-270r-71,-44r-46,0r87,44r30,0xm71,6r0,-267r-19,0r0,267r19,0","w":123},"\u00cd":{"d":"134,-314r-45,0r-72,44r31,0xm71,6r0,-267r-19,0r0,267r19,0","w":123},"\u00ce":{"d":"143,-267r-80,-36r-3,0r-79,36r34,0r47,-16r1,0r5,2r16,5r24,9r35,0xm71,6r0,-267r-19,0r0,267r19,0","w":123},"\u00cf":{"d":"112,-263r0,-38r-18,0r0,38r18,0xm29,-263r0,-38r-18,0r0,38r18,0xm71,6r0,-267r-19,0r0,267r19,0","w":123},"\u00d0":{"d":"287,-127v0,-20,-3,-39,-9,-55v-6,-16,-17,-30,-29,-42v-12,-12,-28,-21,-47,-27v-19,-6,-42,-10,-67,-10r-87,0r0,119r-32,0r0,18r32,0r0,130r87,0v25,0,48,-4,67,-10v19,-6,35,-15,47,-27v12,-12,23,-26,29,-42v6,-16,9,-34,9,-54xm267,-127v0,17,-2,32,-7,46v-5,14,-12,26,-23,36v-11,10,-24,18,-41,24v-17,6,-37,8,-60,8r-68,0r0,-111r91,0r0,-18r-91,0r0,-101r68,0v23,0,43,3,60,9v17,6,30,13,41,23v11,10,18,23,23,37v5,14,7,30,7,47","w":317},"\u00d1":{"d":"225,-291r-13,-12v-5,6,-8,9,-12,10v-4,1,-8,2,-13,2v-4,0,-7,0,-10,-1v-3,-1,-6,-1,-8,-1r-8,-3v-5,-1,-9,-3,-13,-3v-4,0,-8,-1,-11,-1v-7,0,-13,2,-19,4v-6,2,-12,7,-18,14r13,13v5,-6,9,-10,12,-11v3,-1,7,-2,12,-2v4,0,8,0,11,1v3,1,6,2,8,2r7,3v5,1,10,2,14,2v4,0,7,1,10,1v7,0,14,-1,20,-4v6,-3,12,-7,18,-14xm277,6r0,-267r-19,0r0,145r0,92r-74,-92r-117,-145r-19,0r0,267r20,0r0,-145v0,-39,-1,-69,-1,-92r75,92r117,145r18,0","w":325,"k":{"\u00fc":28,"\u00fb":28,"\u00fa":29,"\u00f9":27,"\u00f6":19,"\u00f5":17,"\u00f4":15,"\u00f3":16,"\u00f1":30,"\u00eb":15,"\u00e9":15,"\u00e5":20,"\u00e4":21,"\u00e3":21,"\u00e2":20,"\u00e1":21,"\u00e0":19,"\u00dc":38,"\u00d6":21,"\u00d1":43,"\u00c9":42,"\u00c7":17,"z":19,"u":24,"s":18,"r":26,"p":26,"n":26,"m":26,"l":33,"k":27,"j":31,"i":33,"h":29,"d":21,"b":27,"a":19,"`":22,"_":271,"^":55,"]":76,"\\":38,"[":58,"Z":30,"X":21,"U":34,"T":17,"S":28,"R":37,"Q":17,"P":37,"O":17,"N":37,"M":37,"L":37,"K":37,"I":40,"H":37,"G":17,"F":37,"E":37,"D":37,"C":17,"B":37,"9":31,"8":26,"7":60,"6":26,"5":41,"4":42,"3":50,"2":42,"1":44}},"\u00d2":{"d":"315,-127v0,-21,-3,-40,-10,-56v-7,-16,-15,-30,-26,-41v-11,-11,-24,-20,-39,-27v-15,-7,-30,-12,-47,-14r-64,-39r-46,0r75,38v-18,1,-35,5,-51,11v-16,6,-31,14,-43,26v-12,12,-23,26,-30,43v-7,17,-11,36,-11,58r0,1v0,23,4,43,12,60v8,17,19,32,33,44v14,12,29,19,47,25v18,6,35,9,54,9v19,0,37,-3,55,-9v18,-6,33,-13,47,-25v14,-12,24,-27,32,-44v8,-17,12,-37,12,-60xm296,-128v0,20,-4,38,-11,53v-7,15,-15,28,-27,38v-12,10,-26,17,-41,22v-15,5,-31,7,-48,7v-17,0,-33,-2,-48,-7v-15,-5,-28,-12,-40,-22v-12,-10,-21,-23,-28,-38v-7,-15,-11,-33,-11,-53v0,-20,4,-38,11,-53v7,-15,16,-28,28,-38v12,-10,25,-17,40,-22v15,-5,31,-7,48,-7r0,0v17,0,33,2,48,7v15,5,29,12,41,22v12,10,20,23,27,38v7,15,11,33,11,53","w":338},"\u00d3":{"d":"315,-129v0,-22,-4,-41,-11,-58v-7,-17,-17,-30,-29,-42v-12,-12,-27,-21,-43,-27v-16,-6,-33,-10,-51,-11r75,-38r-45,0r-64,39v-17,2,-32,6,-47,13v-15,7,-29,16,-40,27v-11,11,-20,26,-27,42v-7,16,-10,34,-10,55r0,0v0,23,4,44,12,61v8,17,19,32,33,44v14,12,29,19,47,25v18,6,35,9,54,9v19,0,37,-3,55,-9v18,-6,33,-13,47,-25v14,-12,24,-27,32,-44v8,-17,12,-38,12,-61xm296,-128v0,20,-4,38,-11,53v-7,15,-15,28,-27,38v-12,10,-26,17,-41,22v-15,5,-31,7,-48,7v-17,0,-33,-2,-48,-7v-15,-5,-28,-12,-40,-22v-12,-10,-21,-23,-28,-38v-7,-15,-11,-33,-11,-53v0,-20,4,-38,11,-53v7,-15,16,-28,28,-38v12,-10,25,-17,40,-22v15,-5,31,-7,48,-7r0,0v17,0,33,2,48,7v15,5,29,12,41,22v12,10,20,23,27,38v7,15,11,33,11,53","w":338},"\u00d4":{"d":"250,-268r-80,-35r-3,0r-79,35r34,0r47,-16r1,1r5,1r16,6r24,8r35,0xm315,-127v0,-23,-4,-44,-12,-61v-8,-17,-18,-32,-32,-44v-14,-12,-29,-20,-47,-26v-18,-6,-36,-8,-55,-8v-19,0,-36,2,-54,8v-18,6,-33,14,-47,26v-14,12,-25,26,-33,43v-8,17,-12,38,-12,61r0,1v0,23,4,43,12,60v8,17,19,32,33,44v14,12,29,19,47,25v18,6,35,9,54,9v19,0,37,-3,55,-9v18,-6,33,-13,47,-25v14,-12,24,-27,32,-44v8,-17,12,-37,12,-60xm296,-128v0,20,-4,38,-11,53v-7,15,-15,28,-27,38v-12,10,-26,17,-41,22v-15,5,-31,7,-48,7v-17,0,-33,-2,-48,-7v-15,-5,-28,-12,-40,-22v-12,-10,-21,-23,-28,-38v-7,-15,-11,-33,-11,-53v0,-20,4,-38,11,-53v7,-15,16,-28,28,-38v12,-10,25,-17,40,-22v15,-5,31,-7,48,-7r0,0v17,0,33,2,48,7v15,5,29,12,41,22v12,10,20,23,27,38v7,15,11,33,11,53","w":338},"\u00d5":{"d":"231,-291r-12,-13v-5,6,-9,10,-13,11v-4,1,-8,2,-13,2v-4,0,-7,0,-10,-1v-3,-1,-6,-2,-8,-2r-8,-2v-5,-1,-9,-3,-13,-3v-4,0,-8,-1,-11,-1v-7,0,-13,2,-19,4v-6,2,-12,7,-18,14r13,12v5,-6,9,-9,12,-10v3,-1,7,-2,12,-2v4,0,8,0,11,1v3,1,6,2,8,2r8,2v5,1,9,3,13,3v4,0,7,1,10,1v7,0,14,-1,20,-4v6,-3,12,-7,18,-14xm315,-127v0,-23,-4,-44,-12,-61v-8,-17,-18,-32,-32,-44v-14,-12,-29,-20,-47,-26v-18,-6,-36,-8,-55,-8v-19,0,-36,2,-54,8v-18,6,-33,14,-47,26v-14,12,-25,26,-33,43v-8,17,-12,38,-12,61r0,1v0,23,4,43,12,60v8,17,19,32,33,44v14,12,29,19,47,25v18,6,35,9,54,9v19,0,37,-3,55,-9v18,-6,33,-13,47,-25v14,-12,24,-27,32,-44v8,-17,12,-37,12,-60xm296,-128v0,20,-4,38,-11,53v-7,15,-15,28,-27,38v-12,10,-26,17,-41,22v-15,5,-31,7,-48,7v-17,0,-33,-2,-48,-7v-15,-5,-28,-12,-40,-22v-12,-10,-21,-23,-28,-38v-7,-15,-11,-33,-11,-53v0,-20,4,-38,11,-53v7,-15,16,-28,28,-38v12,-10,25,-17,40,-22v15,-5,31,-7,48,-7r0,0v17,0,33,2,48,7v15,5,29,12,41,22v12,10,20,23,27,38v7,15,11,33,11,53","w":338},"\u00d6":{"d":"220,-264r0,-37r-18,0r0,37r18,0xm136,-264r0,-37r-18,0r0,37r18,0xm315,-127v0,-23,-4,-44,-12,-61v-8,-17,-18,-32,-32,-44v-14,-12,-29,-20,-47,-26v-18,-6,-36,-8,-55,-8v-19,0,-36,2,-54,8v-18,6,-33,14,-47,26v-14,12,-25,26,-33,43v-8,17,-12,38,-12,61r0,1v0,23,4,43,12,60v8,17,19,32,33,44v14,12,29,19,47,25v18,6,35,9,54,9v19,0,37,-3,55,-9v18,-6,33,-13,47,-25v14,-12,24,-27,32,-44v8,-17,12,-37,12,-60xm296,-128v0,20,-4,38,-11,53v-7,15,-15,28,-27,38v-12,10,-26,17,-41,22v-15,5,-31,7,-48,7v-17,0,-33,-2,-48,-7v-15,-5,-28,-12,-40,-22v-12,-10,-21,-23,-28,-38v-7,-15,-11,-33,-11,-53v0,-20,4,-38,11,-53v7,-15,16,-28,28,-38v12,-10,25,-17,40,-22v15,-5,31,-7,48,-7r0,0v17,0,33,2,48,7v15,5,29,12,41,22v12,10,20,23,27,38v7,15,11,33,11,53","w":338,"k":{"\u00dc":17,"\u00d1":21,"\u00c9":21,"\u00c5":17,"\u00c4":17,"`":54,"_":310,"^":35,"]":55,"\\":62,"[":36,"Z":49,"Y":35,"X":48,"W":15,"V":21,"T":57,"S":22,"R":16,"P":16,"N":16,"M":16,"L":16,"K":16,"J":21,"I":19,"H":16,"F":16,"E":16,"D":16,"B":16,"7":90,"5":35,"4":27,"3":44,"2":40,"1":41}},"\u00d7":{"d":"236,-12r-80,-79r80,-80r-12,-12r-80,80r-80,-80r-12,12r80,80r-80,79r12,13r80,-80r80,80","w":288},"\u00d8":{"d":"322,-255r-13,-14r-38,37v-13,-11,-29,-19,-46,-25v-17,-6,-36,-9,-56,-9v-19,0,-36,2,-54,8v-18,6,-33,14,-47,26v-14,12,-25,27,-33,44v-8,17,-12,38,-12,61v0,11,1,20,3,29v2,9,4,17,7,25v3,8,6,15,10,21v4,6,8,11,12,16r-39,35r13,14r39,-36v13,11,29,19,46,25v17,6,35,9,55,9v19,0,37,-3,55,-9v18,-6,33,-13,47,-25v14,-12,24,-27,32,-44v8,-17,12,-37,12,-60v0,-11,0,-21,-2,-30v-2,-9,-5,-17,-8,-25v-3,-8,-6,-15,-10,-21v-4,-6,-8,-12,-12,-17xm257,-220r-189,174v-8,-11,-14,-23,-19,-37v-5,-14,-7,-28,-7,-44v0,-20,4,-39,11,-54v7,-15,16,-28,28,-38v12,-10,25,-17,40,-22v15,-5,31,-7,48,-7v12,0,23,1,33,3v10,2,19,5,26,8v6,3,11,5,16,8v5,3,9,6,13,9xm296,-127v0,20,-4,38,-11,53v-7,15,-15,27,-27,37v-12,10,-26,17,-41,22v-15,5,-31,8,-48,8v-12,0,-23,-1,-33,-3v-10,-2,-18,-5,-25,-8v-6,-3,-12,-5,-17,-8v-5,-3,-9,-6,-13,-9r189,-174v8,11,14,23,19,37v5,14,7,29,7,45","w":338},"\u00d9":{"d":"181,-260r-71,-43r-46,0r87,43r30,0xm255,-103r0,-158r-19,0r0,157v0,18,-1,33,-4,45v-3,12,-7,22,-13,30v-6,8,-16,14,-27,17v-11,3,-26,5,-43,5v-17,0,-30,-2,-41,-5v-11,-3,-20,-9,-26,-17v-6,-8,-11,-18,-14,-30v-3,-12,-4,-27,-4,-45r0,-157r-19,0r0,158v0,22,2,39,6,54v4,15,10,26,19,35v9,9,19,15,32,19v13,4,29,6,47,6v18,0,35,-2,48,-6v13,-4,24,-10,33,-19v9,-9,15,-20,19,-35v4,-15,6,-32,6,-54","w":299},"\u00da":{"d":"237,-303r-45,0r-72,43r31,0xm255,-103r0,-158r-19,0r0,157v0,18,-1,33,-4,45v-3,12,-7,22,-13,30v-6,8,-16,14,-27,17v-11,3,-26,5,-43,5v-17,0,-30,-2,-41,-5v-11,-3,-20,-9,-26,-17v-6,-8,-11,-18,-14,-30v-3,-12,-4,-27,-4,-45r0,-157r-19,0r0,158v0,22,2,39,6,54v4,15,10,26,19,35v9,9,19,15,32,19v13,4,29,6,47,6v18,0,35,-2,48,-6v13,-4,24,-10,33,-19v9,-9,15,-20,19,-35v4,-15,6,-32,6,-54","w":299},"\u00db":{"d":"231,-267r-79,-36r-3,0r-80,36r35,0r46,-16r1,0r5,2r16,5r25,9r34,0xm255,-103r0,-158r-19,0r0,157v0,18,-1,33,-4,45v-3,12,-7,22,-13,30v-6,8,-16,14,-27,17v-11,3,-26,5,-43,5v-17,0,-30,-2,-41,-5v-11,-3,-20,-9,-26,-17v-6,-8,-11,-18,-14,-30v-3,-12,-4,-27,-4,-45r0,-157r-19,0r0,158v0,22,2,39,6,54v4,15,10,26,19,35v9,9,19,15,32,19v13,4,29,6,47,6v18,0,35,-2,48,-6v13,-4,24,-10,33,-19v9,-9,15,-20,19,-35v4,-15,6,-32,6,-54","w":299},"\u00dc":{"d":"201,-256r0,-37r-18,0r0,37r18,0xm117,-256r0,-37r-18,0r0,37r18,0xm255,-103r0,-158r-19,0r0,157v0,18,-1,33,-4,45v-3,12,-7,22,-13,30v-6,8,-16,14,-27,17v-11,3,-26,5,-43,5v-17,0,-30,-2,-41,-5v-11,-3,-20,-9,-26,-17v-6,-8,-11,-18,-14,-30v-3,-12,-4,-27,-4,-45r0,-157r-19,0r0,158v0,22,2,39,6,54v4,15,10,26,19,35v9,9,19,15,32,19v13,4,29,6,47,6v18,0,35,-2,48,-6v13,-4,24,-10,33,-19v9,-9,15,-20,19,-35v4,-15,6,-32,6,-54","w":299,"k":{"\u00fc":26,"\u00fb":25,"\u00fa":26,"\u00f9":25,"\u00f6":17,"\u00f1":28,"\u00e5":20,"\u00e4":21,"\u00e3":22,"\u00e2":20,"\u00e1":21,"\u00e0":19,"\u00dc":33,"\u00d6":17,"\u00d1":38,"\u00c9":37,"\u00c5":22,"\u00c4":22,"z":23,"x":17,"u":22,"s":21,"r":23,"p":23,"n":23,"m":23,"l":30,"k":23,"j":27,"i":29,"h":26,"d":18,"b":24,"a":19,"`":19,"_":249,"^":51,"]":72,"\\":34,"[":53,"Z":37,"X":25,"U":31,"S":30,"R":34,"P":34,"N":34,"M":34,"L":34,"K":34,"J":20,"I":37,"H":34,"F":34,"E":34,"D":34,"B":34,"A":19,"9":29,"8":25,"7":57,"6":23,"5":42,"4":40,"3":50,"2":44,"1":41}},"\u00dd":{"d":"213,-303r-45,0r-72,43r31,0xm251,-261r-23,0r-54,71r-24,32r-24,32r-24,-32r-24,-31r-54,-72r-23,0r115,153r0,114r20,0r0,-114","w":252},"\u00de":{"d":"276,-137v0,-12,-3,-23,-8,-33v-5,-10,-14,-19,-25,-26v-11,-7,-25,-12,-43,-16v-18,-4,-39,-5,-63,-5r-69,0r0,-44r-20,0r0,267r20,0r0,-61r62,0v25,0,48,-2,66,-6v18,-4,33,-9,45,-16v12,-7,20,-16,26,-26v6,-10,9,-21,9,-34xm256,-137v0,9,-1,17,-5,25v-4,8,-11,14,-21,20v-10,6,-23,10,-39,13v-16,3,-37,5,-62,5r-61,0r0,-125r72,0v23,0,41,2,56,5v15,3,27,8,36,14v9,6,15,13,19,20v4,7,5,15,5,23","w":291},"\u00df":{"d":"248,-88v0,-13,-2,-25,-6,-34v-4,-9,-10,-18,-16,-24v-6,-6,-14,-11,-22,-15v-8,-4,-17,-7,-26,-9v7,-4,13,-8,18,-13v5,-5,8,-9,11,-13v2,-3,4,-7,5,-12v1,-5,2,-9,2,-13v0,-3,1,-6,1,-8r0,-5v0,-5,-1,-10,-2,-16v-1,-6,-6,-12,-11,-18v-5,-6,-13,-12,-24,-16v-11,-4,-25,-6,-43,-6v-14,0,-26,2,-36,5v-10,3,-19,8,-26,14v-7,6,-13,12,-18,19v-5,7,-8,16,-11,24v-3,8,-4,16,-5,24v-1,8,-2,16,-2,23r0,273r19,0r0,-272v0,-9,1,-19,3,-30v2,-11,5,-21,10,-30v5,-9,14,-17,24,-23v10,-6,24,-9,42,-9v15,0,27,2,35,5v8,3,14,7,18,11v4,4,6,8,7,12v1,4,1,7,1,9v0,7,-1,15,-3,22v-2,7,-8,14,-14,19v-6,5,-15,10,-26,13v-11,3,-25,5,-42,5r-6,0r0,17r7,0v21,0,39,2,54,5v15,3,27,7,36,13v9,6,17,13,21,22v4,9,6,19,6,31v0,11,-2,21,-5,30v-3,9,-8,17,-16,24v-8,7,-18,12,-30,16v-12,4,-28,6,-46,6r-16,0r0,18r16,0v23,0,41,-3,56,-8v15,-5,27,-12,36,-21v9,-9,14,-19,18,-30v4,-11,6,-23,6,-35","w":266},"\u00e0":{"d":"142,-211r-64,-52r-34,0r74,52r24,0xm218,6r-11,-12v-2,-2,-3,-4,-4,-6v-1,-2,-2,-3,-2,-5v0,-2,-1,-4,-1,-7v0,-3,-1,-7,-1,-11r0,-100v0,-22,-6,-39,-19,-50v-13,-11,-35,-17,-65,-17v-7,0,-13,0,-19,1v-6,1,-11,1,-15,2v-4,1,-7,1,-10,2r-4,1r2,18r11,-3v7,-2,19,-3,35,-3v13,0,24,1,32,3v8,2,15,5,20,9v5,4,9,10,11,16v2,6,3,14,3,22r0,4v-26,2,-49,6,-69,9v-20,3,-38,8,-52,14v-14,6,-24,14,-31,23v-7,9,-11,21,-11,35v0,7,1,15,4,22v3,7,8,13,15,19v7,6,16,10,27,13v11,3,25,5,42,5v5,0,10,0,16,-1v6,-1,13,-2,20,-4v7,-2,14,-5,21,-8v7,-3,13,-8,19,-13v1,7,5,14,12,22r24,0xm181,-39v-6,7,-12,13,-19,17v-7,4,-14,7,-21,9v-7,2,-13,3,-19,4v-6,1,-11,1,-15,1v-15,0,-27,-1,-36,-4v-9,-3,-17,-6,-22,-10v-5,-4,-8,-8,-10,-13v-2,-5,-3,-10,-3,-14v0,-10,3,-19,9,-26v6,-7,14,-12,26,-17v12,-5,27,-9,45,-12v18,-3,40,-6,65,-8r0,73","w":235,"k":{"\u00fc":21,"\u00fb":20,"\u00fa":21,"\u00f9":19,"\u00dc":26,"\u00d1":19,"\u00c9":19,"y":15,"l":15,"`":117,"_":212,"^":50,"]":58,"\\":83,"[":39,"Y":58,"W":30,"V":37,"U":26,"T":85,"S":19,"R":19,"P":19,"N":19,"M":19,"L":19,"K":19,"I":23,"H":19,"F":19,"E":19,"D":19,"B":19,"9":26,"8":18,"7":93,"6":17,"5":33,"4":34,"3":42,"2":24,"1":92}},"\u00e1":{"d":"191,-263r-33,0r-64,52r24,0xm218,6r-11,-12v-2,-2,-3,-4,-4,-6v-1,-2,-2,-3,-2,-5v0,-2,-1,-4,-1,-7v0,-3,-1,-7,-1,-11r0,-100v0,-22,-6,-39,-19,-50v-13,-11,-35,-17,-65,-17v-7,0,-13,0,-19,1v-6,1,-11,1,-15,2v-4,1,-7,1,-10,2r-4,1r2,18r11,-3v7,-2,19,-3,35,-3v13,0,24,1,32,3v8,2,15,5,20,9v5,4,9,10,11,16v2,6,3,14,3,22r0,4v-26,2,-49,6,-69,9v-20,3,-38,8,-52,14v-14,6,-24,14,-31,23v-7,9,-11,21,-11,35v0,7,1,15,4,22v3,7,8,13,15,19v7,6,16,10,27,13v11,3,25,5,42,5v5,0,10,0,16,-1v6,-1,13,-2,20,-4v7,-2,14,-5,21,-8v7,-3,13,-8,19,-13v1,7,5,14,12,22r24,0xm181,-39v-6,7,-12,13,-19,17v-7,4,-14,7,-21,9v-7,2,-13,3,-19,4v-6,1,-11,1,-15,1v-15,0,-27,-1,-36,-4v-9,-3,-17,-6,-22,-10v-5,-4,-8,-8,-10,-13v-2,-5,-3,-10,-3,-14v0,-10,3,-19,9,-26v6,-7,14,-12,26,-17v12,-5,27,-9,45,-12v18,-3,40,-6,65,-8r0,73","w":235,"k":{"\u00fc":19,"\u00fb":18,"\u00fa":19,"\u00f9":18,"\u00dc":24,"\u00d1":18,"\u00c9":18,"y":15,"`":36,"_":212,"^":48,"]":56,"\\":51,"[":37,"Y":22,"W":16,"V":18,"U":24,"T":83,"S":18,"R":18,"P":18,"N":18,"M":18,"L":18,"K":18,"I":21,"H":18,"F":18,"E":18,"D":18,"B":18,"9":24,"8":16,"7":67,"6":16,"5":31,"4":32,"3":40,"2":23,"1":84}},"\u00e2":{"d":"187,-207r-67,-45r-4,0r-68,45r27,0r43,-23r42,23r27,0xm218,6r-11,-12v-2,-2,-3,-4,-4,-6v-1,-2,-2,-3,-2,-5v0,-2,-1,-4,-1,-7v0,-3,-1,-7,-1,-11r0,-100v0,-22,-6,-39,-19,-50v-13,-11,-35,-17,-65,-17v-7,0,-13,0,-19,1v-6,1,-11,1,-15,2v-4,1,-7,1,-10,2r-4,1r2,18r11,-3v7,-2,19,-3,35,-3v13,0,24,1,32,3v8,2,15,5,20,9v5,4,9,10,11,16v2,6,3,14,3,22r0,4v-26,2,-49,6,-69,9v-20,3,-38,8,-52,14v-14,6,-24,14,-31,23v-7,9,-11,21,-11,35v0,7,1,15,4,22v3,7,8,13,15,19v7,6,16,10,27,13v11,3,25,5,42,5v5,0,10,0,16,-1v6,-1,13,-2,20,-4v7,-2,14,-5,21,-8v7,-3,13,-8,19,-13v1,7,5,14,12,22r24,0xm181,-39v-6,7,-12,13,-19,17v-7,4,-14,7,-21,9v-7,2,-13,3,-19,4v-6,1,-11,1,-15,1v-15,0,-27,-1,-36,-4v-9,-3,-17,-6,-22,-10v-5,-4,-8,-8,-10,-13v-2,-5,-3,-10,-3,-14v0,-10,3,-19,9,-26v6,-7,14,-12,26,-17v12,-5,27,-9,45,-12v18,-3,40,-6,65,-8r0,73","w":235,"k":{"\u00fc":19,"\u00fb":19,"\u00fa":20,"\u00f9":18,"\u00dc":25,"\u00d1":18,"\u00c9":18,"y":15,"`":74,"_":212,"^":48,"]":57,"\\":73,"[":37,"Y":45,"W":29,"V":35,"U":25,"T":84,"S":18,"R":18,"P":18,"N":18,"M":18,"L":18,"K":18,"I":22,"H":18,"F":18,"E":18,"D":18,"B":18,"9":25,"8":17,"7":92,"6":16,"5":32,"4":33,"3":41,"2":24,"1":55}},"\u00e3":{"d":"175,-237r-12,-12v-4,5,-8,8,-11,9v-3,1,-7,1,-11,1v-3,0,-7,0,-10,-1v-3,-1,-5,-1,-7,-1r-7,-2v-4,-1,-8,-3,-12,-3v-4,0,-7,-1,-10,-1v-6,0,-11,2,-17,4v-6,2,-11,6,-17,13r12,12v4,-5,8,-8,11,-9v3,-1,7,-2,11,-2v3,0,7,0,10,1v3,1,5,2,7,2r8,2v4,1,7,3,11,3r10,0v6,0,11,-1,17,-3v6,-2,11,-6,17,-13xm218,6r-11,-12v-2,-2,-3,-4,-4,-6v-1,-2,-2,-3,-2,-5v0,-2,-1,-4,-1,-7v0,-3,-1,-7,-1,-11r0,-100v0,-22,-6,-39,-19,-50v-13,-11,-35,-17,-65,-17v-7,0,-13,0,-19,1v-6,1,-11,1,-15,2v-4,1,-7,1,-10,2r-4,1r2,18r11,-3v7,-2,19,-3,35,-3v13,0,24,1,32,3v8,2,15,5,20,9v5,4,9,10,11,16v2,6,3,14,3,22r0,4v-26,2,-49,6,-69,9v-20,3,-38,8,-52,14v-14,6,-24,14,-31,23v-7,9,-11,21,-11,35v0,7,1,15,4,22v3,7,8,13,15,19v7,6,16,10,27,13v11,3,25,5,42,5v5,0,10,0,16,-1v6,-1,13,-2,20,-4v7,-2,14,-5,21,-8v7,-3,13,-8,19,-13v1,7,5,14,12,22r24,0xm181,-39v-6,7,-12,13,-19,17v-7,4,-14,7,-21,9v-7,2,-13,3,-19,4v-6,1,-11,1,-15,1v-15,0,-27,-1,-36,-4v-9,-3,-17,-6,-22,-10v-5,-4,-8,-8,-10,-13v-2,-5,-3,-10,-3,-14v0,-10,3,-19,9,-26v6,-7,14,-12,26,-17v12,-5,27,-9,45,-12v18,-3,40,-6,65,-8r0,73","w":235,"k":{"\u00fc":21,"\u00fb":20,"\u00fa":21,"\u00f9":19,"\u00dc":26,"\u00d1":19,"\u00c9":19,"y":15,"l":15,"`":59,"_":212,"^":51,"]":58,"\\":61,"[":39,"Y":33,"W":25,"V":27,"U":26,"T":85,"S":20,"R":19,"P":19,"N":19,"M":19,"L":19,"K":19,"I":23,"H":19,"F":19,"E":19,"D":19,"B":19,"9":26,"8":18,"7":94,"6":18,"5":33,"4":34,"3":42,"2":25,"1":89}},"\u00e4":{"d":"168,-215r0,-39r-18,0r0,39r18,0xm86,-215r0,-39r-18,0r0,39r18,0xm218,6r-11,-12v-2,-2,-3,-4,-4,-6v-1,-2,-2,-3,-2,-5v0,-2,-1,-4,-1,-7v0,-3,-1,-7,-1,-11r0,-100v0,-22,-6,-39,-19,-50v-13,-11,-35,-17,-65,-17v-7,0,-13,0,-19,1v-6,1,-11,1,-15,2v-4,1,-7,1,-10,2r-4,1r2,18r11,-3v7,-2,19,-3,35,-3v13,0,24,1,32,3v8,2,15,5,20,9v5,4,9,10,11,16v2,6,3,14,3,22r0,4v-26,2,-49,6,-69,9v-20,3,-38,8,-52,14v-14,6,-24,14,-31,23v-7,9,-11,21,-11,35v0,7,1,15,4,22v3,7,8,13,15,19v7,6,16,10,27,13v11,3,25,5,42,5v5,0,10,0,16,-1v6,-1,13,-2,20,-4v7,-2,14,-5,21,-8v7,-3,13,-8,19,-13v1,7,5,14,12,22r24,0xm181,-39v-6,7,-12,13,-19,17v-7,4,-14,7,-21,9v-7,2,-13,3,-19,4v-6,1,-11,1,-15,1v-15,0,-27,-1,-36,-4v-9,-3,-17,-6,-22,-10v-5,-4,-8,-8,-10,-13v-2,-5,-3,-10,-3,-14v0,-10,3,-19,9,-26v6,-7,14,-12,26,-17v12,-5,27,-9,45,-12v18,-3,40,-6,65,-8r0,73","w":235,"k":{"\u00fc":21,"\u00fb":19,"\u00fa":21,"\u00f9":19,"\u00dc":26,"\u00d1":19,"\u00c9":19,"y":15,"l":15,"`":52,"_":212,"^":50,"]":57,"\\":58,"[":38,"Y":29,"W":24,"V":26,"U":26,"T":35,"S":19,"R":19,"P":19,"N":19,"M":19,"L":19,"K":19,"I":23,"H":19,"F":19,"E":19,"D":19,"B":19,"9":26,"8":18,"7":77,"6":17,"5":32,"4":34,"3":41,"2":24,"1":75}},"\u00e5":{"d":"151,-231v0,-5,-1,-10,-3,-13v-2,-3,-5,-7,-8,-9v-3,-2,-7,-4,-11,-5v-4,-1,-7,-2,-11,-2v-4,0,-8,1,-12,2v-4,1,-8,3,-11,5v-3,2,-6,6,-8,9v-2,3,-3,8,-3,13v0,5,1,9,3,12v2,3,5,7,8,9v3,2,7,4,11,5v4,1,7,2,11,2r1,0v4,0,7,-1,11,-2v4,-1,8,-3,11,-5v3,-2,6,-6,8,-9v2,-3,3,-7,3,-12xm218,6r-11,-12v-2,-2,-3,-4,-4,-6v-1,-2,-2,-3,-2,-5v0,-2,-1,-4,-1,-7v0,-3,-1,-7,-1,-11r0,-100v0,-22,-6,-39,-19,-50v-13,-11,-35,-17,-65,-17v-7,0,-13,0,-19,1v-6,1,-11,1,-15,2v-4,1,-7,1,-10,2r-4,1r2,18r11,-3v7,-2,19,-3,35,-3v13,0,24,1,32,3v8,2,15,5,20,9v5,4,9,10,11,16v2,6,3,14,3,22r0,4v-26,2,-49,6,-69,9v-20,3,-38,8,-52,14v-14,6,-24,14,-31,23v-7,9,-11,21,-11,35v0,7,1,15,4,22v3,7,8,13,15,19v7,6,16,10,27,13v11,3,25,5,42,5v5,0,10,0,16,-1v6,-1,13,-2,20,-4v7,-2,14,-5,21,-8v7,-3,13,-8,19,-13v1,7,5,14,12,22r24,0xm132,-231v0,2,-1,5,-3,8v-2,3,-5,6,-11,6r-1,0v-3,0,-5,-1,-7,-2v-2,-1,-4,-3,-5,-4v-1,-1,-2,-2,-2,-4v0,-2,-1,-3,-1,-4v0,-3,1,-6,4,-9v3,-3,6,-6,11,-6v5,0,9,3,12,6v3,3,3,6,3,9xm181,-39v-6,7,-12,13,-19,17v-7,4,-14,7,-21,9v-7,2,-13,3,-19,4v-6,1,-11,1,-15,1v-15,0,-27,-1,-36,-4v-9,-3,-17,-6,-22,-10v-5,-4,-8,-8,-10,-13v-2,-5,-3,-10,-3,-14v0,-10,3,-19,9,-26v6,-7,14,-12,26,-17v12,-5,27,-9,45,-12v18,-3,40,-6,65,-8r0,73","w":235,"k":{"\u00fc":20,"\u00fb":19,"\u00fa":20,"\u00f9":18,"\u00dc":26,"\u00d1":19,"\u00c9":19,"y":15,"`":64,"_":212,"^":50,"]":57,"\\":76,"[":38,"Y":48,"W":29,"V":36,"U":26,"T":54,"S":18,"R":19,"P":19,"N":19,"M":19,"L":19,"K":19,"I":22,"H":19,"F":19,"E":19,"D":19,"B":19,"9":26,"8":18,"7":92,"6":18,"5":32,"4":33,"3":41,"2":24,"1":80}},"\u00e6":{"d":"392,-91v0,-17,-2,-32,-7,-45v-5,-13,-12,-24,-21,-34v-10,-10,-21,-17,-34,-23v-13,-6,-26,-9,-40,-9v-11,0,-22,1,-32,4v-10,3,-18,6,-26,10v-8,4,-15,10,-21,16v-6,6,-11,12,-15,19v-1,-7,-4,-14,-7,-20v-3,-6,-9,-11,-15,-15v-6,-4,-14,-8,-24,-10v-10,-2,-21,-4,-35,-4v-13,0,-24,1,-32,2v-8,1,-15,3,-20,4v-5,1,-8,3,-10,4v-3,2,-3,1,-3,1r4,15v0,0,2,-1,5,-2v3,-1,10,-3,19,-4v9,-1,22,-2,37,-2v13,0,24,1,33,3v9,2,15,6,20,10v5,4,8,10,10,16v2,6,3,13,3,21r0,4v-26,2,-49,6,-69,9v-20,3,-38,8,-52,14v-14,6,-24,14,-31,23v-7,9,-11,21,-11,35v0,7,1,15,4,22v3,7,8,13,15,19v7,6,16,10,27,13v11,3,25,5,42,5v19,0,37,-4,53,-11v16,-7,30,-17,42,-29v6,8,13,15,21,20v8,5,16,10,24,13v8,3,16,4,24,5v8,1,15,2,21,2v10,0,20,-1,32,-3v12,-2,23,-4,33,-7v10,-3,19,-5,26,-7r10,-3r-4,-18v-2,0,-6,2,-13,4v-7,2,-15,5,-24,7v-9,2,-19,5,-30,7v-11,2,-22,2,-32,2v-10,0,-20,-1,-30,-4v-10,-3,-19,-8,-28,-14v-9,-6,-16,-15,-22,-26v-6,-11,-9,-23,-10,-39r193,0xm372,-109r-172,0v1,-9,3,-18,7,-27v4,-9,9,-17,17,-24v8,-7,17,-13,28,-17v11,-4,24,-7,38,-7v12,0,21,2,31,6v10,4,19,10,26,17v7,7,13,15,17,24v4,9,7,18,8,28xm192,-45v-5,5,-10,9,-16,14v-6,5,-13,9,-20,12v-7,3,-16,6,-24,8v-8,2,-16,3,-25,3v-15,0,-27,-1,-36,-4v-9,-3,-17,-6,-22,-10v-5,-4,-8,-8,-10,-13v-2,-5,-3,-10,-3,-14v0,-10,3,-19,9,-26v6,-7,14,-12,26,-17v12,-5,27,-9,45,-12v18,-3,40,-6,65,-8r0,14v0,11,1,20,3,29v2,9,5,17,8,24","w":406},"\u00e7":{"d":"229,-41r-17,-9v-4,6,-8,12,-13,17v-5,5,-10,9,-16,13v-6,4,-14,7,-22,9v-8,2,-18,3,-29,3v-12,0,-24,-2,-35,-5v-11,-3,-21,-8,-30,-15v-9,-7,-16,-17,-21,-28v-5,-11,-8,-24,-8,-40v0,-15,3,-28,8,-39v5,-11,13,-20,22,-27v9,-7,19,-13,30,-17v11,-4,22,-5,34,-5v10,0,19,0,26,2v7,2,13,4,19,7v6,3,12,7,17,12v5,5,9,9,13,15r17,-9v-6,-7,-12,-13,-18,-19v-6,-6,-13,-10,-20,-14v-7,-4,-15,-7,-24,-9v-9,-2,-19,-3,-30,-3v-14,0,-28,3,-41,7v-13,4,-25,10,-36,19v-11,9,-20,20,-26,33v-6,13,-10,29,-10,47v0,17,3,32,9,45v6,13,13,23,22,32v9,9,20,15,32,20v12,5,25,8,38,9r-13,17r12,6v3,-1,6,-1,10,-2v4,-1,8,0,12,0v4,0,6,1,9,2v3,1,4,3,4,7v0,2,0,5,-2,6v-2,1,-4,2,-7,3v-3,1,-5,2,-8,2r-9,0v-6,0,-11,-1,-16,-2v-5,-1,-10,-2,-16,-5r-10,14v6,3,12,6,19,8v7,2,15,3,23,3v6,0,11,-1,16,-2v5,-1,10,-3,14,-5v4,-2,7,-5,10,-9v3,-4,4,-8,4,-13v0,-5,-1,-9,-3,-12v-2,-3,-5,-6,-8,-8v-3,-2,-7,-3,-11,-4v-4,-1,-7,-2,-11,-2r3,-4v12,-1,21,-3,30,-6v9,-3,17,-6,24,-11v7,-5,14,-9,19,-15v5,-6,10,-12,14,-19","w":242,"k":{"\u00ef":18,"\u00ee":18,"\u00ed":18,"\u00ec":18,"\u00dc":28,"\u00d1":26,"\u00c9":26,"z":27,"y":20,"x":24,"t":16,"q":17,"l":22,"i":21,"h":17,"f":16,"`":120,"_":217,"^":62,"]":61,"\\":88,"[":43,"Z":31,"Y":62,"X":33,"W":32,"V":39,"U":28,"T":91,"S":20,"R":26,"P":26,"N":26,"M":26,"L":26,"K":26,"I":29,"H":26,"F":26,"E":26,"D":26,"B":26,"9":27,"8":18,"7":112,"6":22,"5":35,"4":90,"3":46,"2":44,"1":109}},"\u00e8":{"d":"147,-211r-64,-52r-34,0r74,52r24,0xm231,-91v0,-18,-3,-33,-8,-46v-5,-13,-12,-24,-20,-33v-10,-11,-21,-19,-34,-24v-13,-5,-26,-8,-40,-8v-16,0,-30,3,-43,8v-13,5,-24,11,-34,19v-10,9,-18,20,-24,33v-6,13,-9,28,-9,44v0,18,4,33,9,46v5,13,13,24,22,33v11,10,22,17,36,22v14,5,29,7,43,7v10,0,20,-1,32,-3v12,-2,23,-4,33,-7v10,-3,19,-5,26,-7r10,-3r-4,-18v-2,0,-5,2,-12,4v-7,2,-15,5,-24,7v-9,2,-20,5,-31,7v-11,2,-21,2,-31,2v-10,0,-20,-1,-30,-4v-10,-3,-20,-8,-29,-14v-9,-6,-15,-15,-21,-26v-6,-11,-9,-23,-10,-39r193,0xm211,-109r-172,0v1,-10,2,-20,7,-29v5,-9,11,-17,19,-24v8,-7,17,-12,28,-16v11,-4,23,-6,36,-6v12,0,21,2,31,6v10,4,18,10,25,17v7,7,14,15,18,24v4,9,7,18,8,28","w":245,"k":{"\u00dc":18,"\u00d1":21,"\u00c9":21,"y":24,"t":23,"l":17,"i":16,"f":26,"`":122,"_":220,"^":34,"]":59,"\\":91,"[":40,"Z":18,"Y":66,"W":33,"V":41,"U":18,"T":86,"S":23,"R":21,"P":21,"N":21,"M":21,"L":21,"K":21,"I":24,"H":21,"F":21,"E":21,"D":21,"B":21,"9":27,"8":17,"7":101,"5":44,"4":39,"3":52,"2":30,"1":102}},"\u00e9":{"d":"196,-263r-33,0r-64,52r24,0xm231,-91v0,-18,-3,-33,-8,-46v-5,-13,-12,-24,-20,-33v-10,-11,-21,-19,-34,-24v-13,-5,-26,-8,-40,-8v-16,0,-30,3,-43,8v-13,5,-24,11,-34,19v-10,9,-18,20,-24,33v-6,13,-9,28,-9,44v0,18,4,33,9,46v5,13,13,24,22,33v11,10,22,17,36,22v14,5,29,7,43,7v10,0,20,-1,32,-3v12,-2,23,-4,33,-7v10,-3,19,-5,26,-7r10,-3r-4,-18v-2,0,-5,2,-12,4v-7,2,-15,5,-24,7v-9,2,-20,5,-31,7v-11,2,-21,2,-31,2v-10,0,-20,-1,-30,-4v-10,-3,-20,-8,-29,-14v-9,-6,-15,-15,-21,-26v-6,-11,-9,-23,-10,-39r193,0xm211,-109r-172,0v1,-10,2,-20,7,-29v5,-9,11,-17,19,-24v8,-7,17,-12,28,-16v11,-4,23,-6,36,-6v12,0,21,2,31,6v10,4,18,10,25,17v7,7,14,15,18,24v4,9,7,18,8,28","w":245,"k":{"\u00dc":17,"\u00d1":19,"\u00c9":19,"y":24,"t":23,"l":15,"f":24,"`":41,"_":220,"^":31,"]":57,"\\":64,"[":38,"Z":17,"Y":36,"W":30,"V":32,"U":17,"T":85,"S":21,"R":19,"P":19,"N":19,"M":19,"L":19,"K":19,"I":23,"H":19,"F":19,"E":19,"D":19,"B":19,"9":26,"8":16,"7":81,"5":43,"4":38,"3":51,"2":28,"1":97}},"\u00ea":{"d":"192,-207r-67,-45r-4,0r-68,45r27,0r43,-23r42,23r27,0xm231,-91v0,-18,-3,-33,-8,-46v-5,-13,-12,-24,-20,-33v-10,-11,-21,-19,-34,-24v-13,-5,-26,-8,-40,-8v-16,0,-30,3,-43,8v-13,5,-24,11,-34,19v-10,9,-18,20,-24,33v-6,13,-9,28,-9,44v0,18,4,33,9,46v5,13,13,24,22,33v11,10,22,17,36,22v14,5,29,7,43,7v10,0,20,-1,32,-3v12,-2,23,-4,33,-7v10,-3,19,-5,26,-7r10,-3r-4,-18v-2,0,-5,2,-12,4v-7,2,-15,5,-24,7v-9,2,-20,5,-31,7v-11,2,-21,2,-31,2v-10,0,-20,-1,-30,-4v-10,-3,-20,-8,-29,-14v-9,-6,-15,-15,-21,-26v-6,-11,-9,-23,-10,-39r193,0xm211,-109r-172,0v1,-10,2,-20,7,-29v5,-9,11,-17,19,-24v8,-7,17,-12,28,-16v11,-4,23,-6,36,-6v12,0,21,2,31,6v10,4,18,10,25,17v7,7,14,15,18,24v4,9,7,18,8,28","w":245,"k":{"\u00dc":17,"\u00d1":19,"\u00c9":19,"y":24,"t":23,"l":16,"i":15,"f":25,"`":80,"_":220,"^":32,"]":58,"\\":86,"[":39,"Z":17,"Y":58,"W":32,"V":40,"U":17,"T":85,"S":22,"R":19,"P":19,"N":19,"M":19,"L":19,"K":19,"I":23,"H":19,"F":19,"E":19,"D":19,"B":19,"9":26,"8":17,"7":100,"5":43,"4":38,"3":51,"2":28,"1":68}},"\u00eb":{"d":"173,-215r0,-39r-18,0r0,39r18,0xm91,-215r0,-39r-18,0r0,39r18,0xm231,-91v0,-18,-3,-33,-8,-46v-5,-13,-12,-24,-20,-33v-10,-11,-21,-19,-34,-24v-13,-5,-26,-8,-40,-8v-16,0,-30,3,-43,8v-13,5,-24,11,-34,19v-10,9,-18,20,-24,33v-6,13,-9,28,-9,44v0,18,4,33,9,46v5,13,13,24,22,33v11,10,22,17,36,22v14,5,29,7,43,7v10,0,20,-1,32,-3v12,-2,23,-4,33,-7v10,-3,19,-5,26,-7r10,-3r-4,-18v-2,0,-5,2,-12,4v-7,2,-15,5,-24,7v-9,2,-20,5,-31,7v-11,2,-21,2,-31,2v-10,0,-20,-1,-30,-4v-10,-3,-20,-8,-29,-14v-9,-6,-15,-15,-21,-26v-6,-11,-9,-23,-10,-39r193,0xm211,-109r-172,0v1,-10,2,-20,7,-29v5,-9,11,-17,19,-24v8,-7,17,-12,28,-16v11,-4,23,-6,36,-6v12,0,21,2,31,6v10,4,18,10,25,17v7,7,14,15,18,24v4,9,7,18,8,28","w":245,"k":{"\u00dc":18,"\u00d1":20,"\u00c9":20,"y":24,"t":24,"l":17,"i":16,"f":26,"`":58,"_":220,"^":34,"]":58,"\\":71,"[":39,"Z":18,"Y":42,"W":32,"V":40,"U":18,"T":48,"S":22,"R":20,"P":20,"N":20,"M":20,"L":20,"K":20,"I":24,"H":20,"F":20,"E":20,"D":20,"B":20,"9":27,"8":17,"7":90,"5":44,"4":39,"3":52,"2":29,"1":88}},"\u00ec":{"d":"89,-207r-64,-53r-34,0r74,53r24,0xm60,6r0,-203r-19,0r0,203r19,0","w":100,"k":{"\u00fc":22,"\u00fb":21,"\u00fa":22,"\u00f9":20,"\u00f1":23,"u":17,"r":19,"p":19,"n":19,"m":19,"i":87,"`":36,"_":91,"^":48,"]":53,"\\":43,"[":34,"Z":23,"Y":16,"T":118,"I":18,"7":74,"6":18,"5":34,"4":35,"3":39,"2":26,"1":23}},"\u00ed":{"d":"109,-260r-33,0r-64,53r24,0xm60,6r0,-203r-19,0r0,203r19,0","w":100,"k":{"\u00fc":21,"\u00fb":20,"\u00fa":21,"\u00f9":16,"\u00f1":23,"u":17,"r":19,"p":19,"n":19,"m":19,"_":73,"^":47,"]":37,"[":18,"Z":23,"T":103,"9":23,"8":18,"7":23,"6":18,"5":33,"4":35,"3":42,"2":35,"1":40}},"\u00ee":{"d":"120,-207r-67,-45r-5,0r-67,45r27,0r42,-23r43,23r27,0xm60,6r0,-203r-19,0r0,203r19,0","w":100,"k":{"\u00fc":21,"\u00fa":21,"\u00f9":20,"\u00f1":23,"u":17,"r":19,"p":19,"n":19,"m":19,"j":17,"i":64,"_":101,"^":47,"]":30,"\\":16,"Z":23,"T":125,"7":51,"5":26,"4":34,"3":17}},"\u00ef":{"d":"100,-215r0,-39r-18,0r0,39r18,0xm18,-215r0,-39r-18,0r0,39r18,0xm60,6r0,-203r-19,0r0,203r19,0","w":100,"k":{"\u00fc":21,"\u00fb":21,"\u00fa":22,"\u00f1":21,"u":17,"r":19,"p":19,"n":19,"m":19,"_":95,"^":47,"]":35,"[":15,"7":20,"5":33,"4":35,"3":27,"1":18}},"\u00f0":{"d":"247,-112v0,-14,-3,-29,-7,-43v-4,-14,-9,-28,-17,-40v-5,-8,-12,-15,-19,-23v-7,-8,-15,-15,-25,-21r53,-17r-17,-13r-57,18v-13,-6,-26,-10,-40,-14v-14,-4,-29,-6,-44,-7r-39,16v13,0,24,1,34,2v10,1,19,2,27,3v8,1,14,3,20,4v6,1,10,3,15,4r-75,23r17,13r83,-26v14,8,25,16,33,24v8,8,13,16,18,23v3,6,7,10,10,16v-11,-12,-24,-19,-39,-24v-15,-5,-30,-8,-45,-8v-16,0,-30,2,-44,7v-14,5,-26,12,-36,21v-10,9,-19,20,-25,33v-6,13,-9,28,-9,45v0,14,2,28,7,41v5,13,13,23,22,33v9,10,21,17,35,23v14,6,31,9,50,9v18,0,34,-3,48,-8v14,-5,26,-13,35,-23v4,-5,8,-11,12,-16v4,-5,7,-11,10,-18v3,-7,4,-16,6,-25v2,-9,3,-19,3,-32xm228,-101v0,11,-2,22,-5,33v-3,11,-9,21,-16,30v-7,9,-17,16,-29,22v-12,6,-26,8,-44,8r-1,0v-16,0,-30,-2,-42,-7v-12,-5,-22,-11,-30,-19v-8,-8,-13,-17,-17,-28v-4,-11,-6,-22,-6,-34v0,-14,2,-26,7,-37v5,-11,11,-19,20,-27v9,-8,18,-14,30,-18v12,-4,24,-6,38,-6v15,0,29,2,41,7v12,5,21,11,29,19v8,8,15,16,19,26v4,10,6,20,6,31","w":266},"\u00f1":{"d":"187,-237r-12,-12v-4,5,-8,8,-11,9v-3,1,-7,1,-11,1v-3,0,-7,0,-10,-1v-3,-1,-5,-1,-7,-1r-7,-2v-4,-1,-8,-3,-12,-3v-4,0,-7,-1,-10,-1v-6,0,-11,2,-17,4v-6,2,-11,6,-17,13r13,12v4,-5,8,-8,11,-9v3,-1,6,-2,10,-2v3,0,7,0,10,1v3,1,6,2,8,2r7,2v4,1,8,3,12,3r9,0v6,0,12,-1,18,-3v6,-2,10,-6,16,-13xm224,6r0,-141v0,-11,-1,-20,-4,-27v-3,-7,-7,-14,-13,-20v-12,-13,-30,-20,-55,-20v-8,0,-18,1,-26,3v-8,2,-17,3,-26,7v-15,6,-30,14,-45,25v0,-3,1,-7,1,-12r0,-13r0,-5r-19,0r0,203r19,0r0,-152v5,-4,5,-4,11,-8v4,-3,8,-5,13,-8v5,-3,9,-6,13,-8v4,-2,8,-4,12,-5v16,-6,32,-9,46,-9v12,0,20,1,27,4v7,3,12,6,16,10v5,5,8,10,9,16v1,6,2,12,2,19r0,141r19,0","w":259,"k":{"\u00fc":21,"\u00fb":20,"\u00fa":21,"\u00f9":20,"\u00f1":23,"\u00ef":20,"\u00ee":22,"\u00ed":22,"\u00ec":22,"\u00dc":26,"\u00d1":29,"\u00c9":29,"y":15,"l":25,"k":18,"j":22,"i":24,"h":21,"b":18,"`":70,"_":216,"^":51,"]":67,"\\":71,"[":48,"Z":22,"Y":43,"W":31,"V":37,"U":26,"T":95,"S":21,"R":29,"P":29,"N":29,"M":29,"L":29,"K":29,"I":33,"H":29,"F":29,"E":29,"D":29,"B":29,"9":26,"8":18,"7":104,"6":17,"5":33,"4":34,"3":42,"2":35,"1":99}},"\u00f2":{"d":"157,-211r-61,-52r-36,0r73,52r24,0xm247,-95r0,-1v0,-17,-3,-32,-9,-45v-6,-13,-15,-24,-25,-33v-10,-9,-22,-16,-36,-21v-14,-5,-28,-7,-44,-7v-16,0,-30,2,-44,7v-14,5,-26,12,-36,21v-10,9,-19,20,-25,33v-6,13,-9,28,-9,45v0,14,2,28,7,41v5,13,13,23,22,33v9,10,21,17,35,23v14,6,31,9,50,9v20,0,37,-3,51,-9v14,-6,26,-14,35,-24v9,-10,17,-20,21,-33v4,-13,7,-26,7,-39xm228,-95v0,12,-2,22,-6,33v-4,11,-9,20,-17,28v-8,8,-18,14,-30,19v-12,5,-25,8,-41,8r-1,0v-16,0,-30,-3,-42,-8v-12,-5,-22,-11,-30,-19v-8,-8,-13,-17,-17,-28v-4,-11,-6,-21,-6,-33v0,-14,2,-26,7,-37v5,-11,11,-20,20,-28v9,-8,18,-13,30,-17v12,-4,24,-7,38,-7v13,0,26,2,38,6v12,4,21,10,30,18v9,8,15,16,20,27v5,11,7,24,7,38","w":266,"k":{"\u00d1":16,"\u00c9":16,"z":25,"y":17,"x":23,"t":21,"f":23,"`":132,"_":241,"^":40,"]":54,"\\":87,"[":35,"Z":38,"Y":62,"X":35,"W":28,"V":36,"T":81,"S":20,"R":16,"P":16,"N":16,"M":16,"L":16,"K":16,"I":19,"H":16,"F":16,"E":16,"D":16,"B":16,"9":22,"7":116,"5":26,"4":22,"3":35,"2":44,"1":98}},"\u00f3":{"d":"207,-263r-34,0r-64,52r24,0xm247,-95r0,-1v0,-17,-3,-32,-9,-45v-6,-13,-15,-24,-25,-33v-10,-9,-22,-16,-36,-21v-14,-5,-28,-7,-44,-7v-16,0,-30,2,-44,7v-14,5,-26,12,-36,21v-10,9,-19,20,-25,33v-6,13,-9,28,-9,45v0,14,2,28,7,41v5,13,13,23,22,33v9,10,21,17,35,23v14,6,31,9,50,9v20,0,37,-3,51,-9v14,-6,26,-14,35,-24v9,-10,17,-20,21,-33v4,-13,7,-26,7,-39xm228,-95v0,12,-2,22,-6,33v-4,11,-9,20,-17,28v-8,8,-18,14,-30,19v-12,5,-25,8,-41,8r-1,0v-16,0,-30,-3,-42,-8v-12,-5,-22,-11,-30,-19v-8,-8,-13,-17,-17,-28v-4,-11,-6,-21,-6,-33v0,-14,2,-26,7,-37v5,-11,11,-20,20,-28v9,-8,18,-13,30,-17v12,-4,24,-7,38,-7v13,0,26,2,38,6v12,4,21,10,30,18v9,8,15,16,20,27v5,11,7,24,7,38","w":266,"k":{"z":25,"y":17,"x":23,"t":20,"f":22,"`":51,"_":241,"^":37,"]":53,"\\":64,"[":33,"Z":36,"Y":35,"X":34,"W":27,"V":31,"T":80,"S":18,"I":18,"9":21,"7":80,"5":25,"4":21,"3":33,"2":42,"1":96}},"\u00f4":{"d":"203,-207r-68,-45r-4,0r-67,45r27,0r42,-23r43,23r27,0xm247,-95r0,-1v0,-17,-3,-32,-9,-45v-6,-13,-15,-24,-25,-33v-10,-9,-22,-16,-36,-21v-14,-5,-28,-7,-44,-7v-16,0,-30,2,-44,7v-14,5,-26,12,-36,21v-10,9,-19,20,-25,33v-6,13,-9,28,-9,45v0,14,2,28,7,41v5,13,13,23,22,33v9,10,21,17,35,23v14,6,31,9,50,9v20,0,37,-3,51,-9v14,-6,26,-14,35,-24v9,-10,17,-20,21,-33v4,-13,7,-26,7,-39xm228,-95v0,12,-2,22,-6,33v-4,11,-9,20,-17,28v-8,8,-18,14,-30,19v-12,5,-25,8,-41,8r-1,0v-16,0,-30,-3,-42,-8v-12,-5,-22,-11,-30,-19v-8,-8,-13,-17,-17,-28v-4,-11,-6,-21,-6,-33v0,-14,2,-26,7,-37v5,-11,11,-20,20,-28v9,-8,18,-13,30,-17v12,-4,24,-7,38,-7v13,0,26,2,38,6v12,4,21,10,30,18v9,8,15,16,20,27v5,11,7,24,7,38","w":266,"k":{"\u00d1":15,"\u00c9":15,"z":25,"y":17,"x":23,"t":20,"f":23,"`":90,"_":241,"^":38,"]":53,"\\":86,"[":34,"Z":37,"Y":58,"X":34,"W":27,"V":35,"T":81,"S":19,"R":15,"P":15,"N":15,"M":15,"L":15,"K":15,"I":19,"H":15,"F":15,"E":15,"D":15,"B":15,"9":22,"7":115,"5":25,"4":21,"3":34,"2":43,"1":68}},"\u00f5":{"d":"190,-237r-12,-12v-4,5,-8,8,-11,9v-3,1,-6,1,-10,1v-3,0,-7,0,-10,-1v-3,-1,-6,-1,-8,-1r-7,-2v-4,-1,-8,-3,-12,-3v-4,0,-6,-1,-9,-1v-6,0,-12,2,-18,4v-6,2,-10,6,-16,13r12,12v4,-5,8,-8,11,-9v3,-1,7,-2,11,-2v3,0,6,0,9,1v3,1,6,2,8,2r7,2v4,1,8,3,12,3r10,0v6,0,11,-1,17,-3v6,-2,10,-6,16,-13xm247,-95r0,-1v0,-17,-3,-32,-9,-45v-6,-13,-15,-24,-25,-33v-10,-9,-22,-16,-36,-21v-14,-5,-28,-7,-44,-7v-16,0,-30,2,-44,7v-14,5,-26,12,-36,21v-10,9,-19,20,-25,33v-6,13,-9,28,-9,45v0,14,2,28,7,41v5,13,13,23,22,33v9,10,21,17,35,23v14,6,31,9,50,9v20,0,37,-3,51,-9v14,-6,26,-14,35,-24v9,-10,17,-20,21,-33v4,-13,7,-26,7,-39xm228,-95v0,12,-2,22,-6,33v-4,11,-9,20,-17,28v-8,8,-18,14,-30,19v-12,5,-25,8,-41,8r-1,0v-16,0,-30,-3,-42,-8v-12,-5,-22,-11,-30,-19v-8,-8,-13,-17,-17,-28v-4,-11,-6,-21,-6,-33v0,-14,2,-26,7,-37v5,-11,11,-20,20,-28v9,-8,18,-13,30,-17v12,-4,24,-7,38,-7v13,0,26,2,38,6v12,4,21,10,30,18v9,8,15,16,20,27v5,11,7,24,7,38","w":266,"k":{"\u00d1":17,"\u00c9":17,"z":25,"y":17,"x":23,"t":22,"f":24,"`":76,"_":241,"^":40,"]":55,"\\":74,"[":36,"Z":38,"Y":46,"X":36,"W":29,"V":37,"T":82,"S":21,"R":17,"P":17,"N":17,"M":17,"L":17,"K":17,"I":20,"H":17,"F":17,"E":17,"D":17,"B":17,"9":23,"7":117,"5":27,"4":23,"3":36,"2":45,"1":98}},"\u00f6":{"d":"186,-215r0,-39r-18,0r0,39r18,0xm104,-215r0,-39r-18,0r0,39r18,0xm250,-95r0,-1v0,-17,-3,-32,-9,-45v-6,-13,-14,-24,-24,-33v-10,-9,-22,-16,-36,-21v-14,-5,-29,-7,-45,-7v-16,0,-30,2,-44,7v-14,5,-26,12,-36,21v-10,9,-18,20,-24,33v-6,13,-9,28,-9,45v0,14,2,28,7,41v5,13,12,23,21,33v9,10,21,17,35,23v14,6,31,9,50,9v20,0,37,-3,51,-9v14,-6,27,-14,36,-24v9,-10,16,-20,20,-33v4,-13,7,-26,7,-39xm231,-95v0,12,-2,22,-6,33v-4,11,-9,20,-17,28v-8,8,-17,14,-29,19v-12,5,-26,8,-42,8r-1,0v-16,0,-30,-3,-42,-8v-12,-5,-21,-11,-29,-19v-8,-8,-14,-17,-18,-28v-4,-11,-6,-21,-6,-33v0,-14,3,-26,8,-37v5,-11,11,-20,20,-28v9,-8,18,-13,30,-17v12,-4,23,-7,37,-7v13,0,26,2,38,6v12,4,21,10,30,18v9,8,15,16,20,27v5,11,7,24,7,38","w":266,"k":{"z":22,"x":19,"t":18,"f":20,"`":65,"_":237,"^":36,"]":51,"\\":68,"[":32,"Z":35,"Y":39,"X":32,"W":25,"V":33,"T":44,"S":16,"I":16,"9":19,"7":87,"5":23,"4":19,"3":31,"2":40,"1":85}},"\u00f7":{"d":"120,-142v0,-3,-1,-7,-3,-9v-2,-2,-6,-3,-9,-3r0,0v-3,0,-7,1,-9,3v-2,2,-3,6,-3,9v0,3,1,6,3,8v2,2,6,4,9,4v3,0,7,-2,9,-4v2,-2,3,-5,3,-8xm206,-83r0,-17r-196,0r0,17r196,0xm121,-41v0,-3,-2,-6,-4,-8v-2,-2,-5,-4,-8,-4r-1,0v-3,0,-6,2,-8,4v-2,2,-4,5,-4,8v0,3,2,7,4,9v2,2,5,4,8,4v3,0,7,-2,9,-4v2,-2,4,-6,4,-9","w":217},"\u00f8":{"d":"261,-190r-11,-14r-37,31v-8,-8,-18,-14,-31,-20v-13,-6,-29,-8,-48,-8v-16,0,-31,2,-45,7v-14,5,-26,11,-36,20v-10,9,-19,21,-25,34v-6,13,-9,28,-9,45v0,12,3,22,6,33v3,11,8,22,16,32r-36,30r11,13r37,-31v3,3,6,7,11,10v5,3,11,6,17,9v6,3,14,5,23,7v9,2,17,2,28,2v20,0,38,-3,52,-9v14,-6,26,-13,35,-23v9,-10,17,-21,21,-34v4,-13,7,-26,7,-39v0,-12,-3,-23,-6,-34v-3,-11,-8,-22,-16,-32xm201,-163r-147,123v-4,-5,-6,-12,-10,-21v-4,-9,-6,-20,-6,-34v0,-14,2,-26,7,-37v5,-11,11,-20,20,-28v9,-8,19,-13,31,-17v12,-4,24,-7,38,-7v8,0,16,1,24,2v8,1,13,4,19,6v6,2,11,4,15,6v4,2,6,5,9,7xm228,-95v0,12,-2,22,-6,33v-4,11,-9,20,-17,28v-8,8,-18,14,-30,19v-12,5,-26,8,-43,8v-8,0,-15,-1,-23,-2v-8,-1,-14,-3,-20,-5v-6,-2,-10,-5,-14,-7v-4,-2,-7,-5,-10,-7r147,-123v4,5,6,12,10,21v4,9,6,21,6,35","w":266},"\u00f9":{"d":"154,-200r-64,-52r-33,0r73,52r24,0xm222,6r0,-203r-19,0r0,151v-9,7,-17,13,-26,18v-9,5,-16,8,-23,11v-8,3,-15,5,-23,7v-8,2,-15,2,-22,2v-12,0,-21,-1,-28,-4v-7,-3,-12,-7,-15,-10v-5,-5,-8,-9,-9,-15v-1,-6,-3,-13,-3,-20r0,-140r-18,0r0,140v0,11,1,21,4,28v3,7,6,14,12,20v12,13,31,19,56,19v16,0,33,-3,51,-10v8,-3,16,-7,23,-11v7,-4,14,-9,22,-15r0,10r0,10v0,0,-1,6,-1,8r0,4r19,0","w":259,"k":{"\u00fc":22,"\u00fb":22,"\u00fa":23,"\u00f9":21,"\u00f1":23,"\u00ef":23,"\u00ee":23,"\u00ed":23,"\u00ec":23,"\u00dc":28,"\u00d1":30,"\u00c9":30,"r":15,"p":15,"n":15,"m":15,"l":26,"k":19,"j":23,"i":26,"h":22,"b":20,"`":129,"_":218,"^":52,"]":68,"\\":66,"[":49,"Z":24,"Y":40,"W":19,"V":24,"U":28,"T":96,"S":21,"R":30,"P":30,"N":30,"M":30,"L":30,"K":30,"I":34,"H":30,"F":30,"E":30,"D":30,"B":30,"9":25,"8":20,"7":104,"6":19,"5":35,"4":36,"3":44,"2":36,"1":102}},"\u00fa":{"d":"203,-252r-33,0r-64,52r24,0xm222,6r0,-203r-19,0r0,151v-9,7,-17,13,-26,18v-9,5,-16,8,-23,11v-8,3,-15,5,-23,7v-8,2,-15,2,-22,2v-12,0,-21,-1,-28,-4v-7,-3,-12,-7,-15,-10v-5,-5,-8,-9,-9,-15v-1,-6,-3,-13,-3,-20r0,-140r-18,0r0,140v0,11,1,21,4,28v3,7,6,14,12,20v12,13,31,19,56,19v16,0,33,-3,51,-10v8,-3,16,-7,23,-11v7,-4,14,-9,22,-15r0,10r0,10v0,0,-1,6,-1,8r0,4r19,0","w":259,"k":{"\u00fc":21,"\u00fb":20,"\u00fa":21,"\u00f9":20,"\u00f1":22,"\u00ee":21,"\u00ed":22,"\u00ec":16,"\u00dc":26,"\u00d1":29,"\u00c9":29,"r":15,"p":15,"n":15,"m":15,"l":25,"k":18,"j":22,"i":24,"h":20,"b":18,"`":48,"_":218,"^":49,"]":67,"\\":62,"[":48,"Z":22,"Y":32,"W":18,"V":23,"U":26,"T":94,"S":20,"R":29,"P":29,"N":29,"M":29,"L":29,"K":29,"I":32,"H":29,"F":29,"E":29,"D":29,"B":29,"9":23,"8":18,"7":77,"6":18,"5":33,"4":34,"3":42,"2":34,"1":94}},"\u00fb":{"d":"199,-207r-67,-45r-4,0r-68,45r27,0r43,-23r42,23r27,0xm222,6r0,-203r-19,0r0,151v-9,7,-17,13,-26,18v-9,5,-16,8,-23,11v-8,3,-15,5,-23,7v-8,2,-15,2,-22,2v-12,0,-21,-1,-28,-4v-7,-3,-12,-7,-15,-10v-5,-5,-8,-9,-9,-15v-1,-6,-3,-13,-3,-20r0,-140r-18,0r0,140v0,11,1,21,4,28v3,7,6,14,12,20v12,13,31,19,56,19v16,0,33,-3,51,-10v8,-3,16,-7,23,-11v7,-4,14,-9,22,-15r0,10r0,10v0,0,-1,6,-1,8r0,4r19,0","w":259,"k":{"\u00fc":21,"\u00fb":21,"\u00fa":22,"\u00f9":20,"\u00f1":23,"\u00ef":22,"\u00ed":22,"\u00ec":22,"\u00dc":27,"\u00d1":29,"\u00c9":29,"r":15,"p":15,"n":15,"m":15,"l":25,"k":18,"j":22,"i":24,"h":21,"b":19,"`":86,"_":218,"^":50,"]":68,"\\":65,"[":49,"Z":23,"Y":39,"W":18,"V":23,"U":27,"T":95,"S":20,"R":29,"P":29,"N":29,"M":29,"L":29,"K":29,"I":33,"H":29,"F":29,"E":29,"D":29,"B":29,"9":24,"8":19,"7":103,"6":18,"5":34,"4":35,"3":42,"2":35,"1":65}},"\u00fc":{"d":"180,-215r0,-39r-18,0r0,39r18,0xm98,-215r0,-39r-18,0r0,39r18,0xm222,6r0,-203r-19,0r0,151v-9,7,-17,13,-26,18v-9,5,-16,8,-23,11v-8,3,-15,5,-23,7v-8,2,-15,2,-22,2v-12,0,-21,-1,-28,-4v-7,-3,-12,-7,-15,-10v-5,-5,-8,-9,-9,-15v-1,-6,-3,-13,-3,-20r0,-140r-18,0r0,140v0,11,1,21,4,28v3,7,6,14,12,20v12,13,31,19,56,19v16,0,33,-3,51,-10v8,-3,16,-7,23,-11v7,-4,14,-9,22,-15r0,10r0,10v0,0,-1,6,-1,8r0,4r19,0","w":259,"k":{"\u00fc":22,"\u00fb":21,"\u00fa":22,"\u00f9":21,"\u00f1":24,"\u00ef":23,"\u00ee":22,"\u00ed":23,"\u00ec":22,"\u00dc":28,"\u00d1":30,"\u00c9":30,"r":15,"p":15,"n":15,"m":15,"l":26,"k":19,"j":23,"i":25,"h":22,"b":20,"`":64,"_":218,"^":52,"]":68,"\\":66,"[":49,"Z":23,"Y":39,"W":19,"V":24,"U":28,"T":45,"S":21,"R":30,"P":30,"N":30,"M":30,"L":30,"K":30,"I":33,"H":30,"F":30,"E":30,"D":30,"B":30,"9":25,"8":20,"7":87,"6":19,"5":35,"4":36,"3":43,"2":35,"1":85}},"\u00fd":{"d":"207,-252r-33,0r-65,52r25,0xm234,-197r-20,0r-39,92r-18,41r-18,42r-55,-88r-54,-87r-22,0r122,194r-17,40v-5,12,-12,23,-20,30v-10,10,-25,15,-43,15v-5,0,-9,0,-13,-1v-4,-1,-7,-1,-10,-2v-4,-1,-8,-3,-11,-5v-3,-2,-7,-3,-11,-6r-10,16r14,7v0,0,7,4,12,5v4,1,8,2,13,3v5,1,10,1,16,1v13,0,24,-2,33,-6v9,-4,16,-8,22,-14v6,-6,12,-12,16,-18v4,-6,7,-12,9,-18","w":237},"\u00fe":{"d":"245,-96v0,-15,-3,-29,-8,-41v-5,-12,-12,-23,-20,-32v-21,-22,-47,-33,-81,-33v-10,0,-20,1,-28,3v-8,2,-17,4,-24,7v-11,6,-21,12,-28,18r0,-93r-19,0r0,362r19,0r0,-113v5,4,10,8,15,11v5,3,11,6,16,8v10,4,19,7,27,8v8,1,16,1,22,1v18,0,33,-3,47,-9v14,-6,25,-14,34,-23v10,-11,17,-23,21,-36v4,-13,7,-25,7,-38xm226,-96v0,14,-2,25,-6,35v-4,10,-10,19,-17,26v-9,10,-19,17,-31,21v-12,4,-23,6,-36,6v-9,0,-17,-1,-24,-2v-7,-1,-13,-3,-19,-6v-5,-2,-11,-5,-17,-9v-6,-4,-13,-9,-20,-16r0,-110v11,-11,23,-18,36,-24v7,-3,15,-6,22,-7v7,-1,15,-2,22,-2v15,0,28,2,39,7v11,5,20,12,28,20v8,8,13,18,17,28v4,10,6,21,6,33","w":266},"\u00ff":{"d":"177,-215r0,-39r-18,0r0,39r18,0xm95,-215r0,-39r-18,0r0,39r18,0xm234,-197r-20,0r-39,92r-18,41r-18,42r-55,-88r-54,-87r-22,0r122,194r-17,40v-5,12,-12,23,-20,30v-10,10,-25,15,-43,15v-5,0,-9,0,-13,-1v-4,-1,-7,-1,-10,-2v-4,-1,-8,-3,-11,-5v-3,-2,-7,-3,-11,-6r-10,16r14,7v0,0,7,4,12,5v4,1,8,2,13,3v5,1,10,1,16,1v13,0,24,-2,33,-6v9,-4,16,-8,22,-14v6,-6,12,-12,16,-18v4,-6,7,-12,9,-18","w":237},"\ue000":{"d":"242,-82r0,-18r-196,0r0,18r196,0","w":288},"\ue001":{"d":"227,-166r-20,0v-5,5,-10,10,-15,13v-5,3,-11,5,-19,5v-8,0,-15,-2,-20,-5v-5,-3,-9,-8,-14,-13r-7,0r0,-9v0,0,-1,-7,-1,-10r68,1r0,-19r-68,1r2,-64r-20,0r1,64r-67,-1r0,19r67,-1r0,11v0,0,-1,7,-1,11r-7,0v-5,5,-9,10,-14,13v-5,3,-12,5,-20,5v-8,0,-15,-2,-20,-5v-5,-3,-9,-8,-14,-13r-20,0v3,5,7,10,10,14v3,4,8,8,12,11v4,3,9,6,14,8v5,2,11,3,18,3v9,0,17,-3,24,-6v7,-3,12,-7,17,-12r0,7r0,56v0,27,1,27,1,55v-5,-1,-9,-3,-12,-6v-3,-3,-7,-7,-10,-11r-20,0v6,9,12,17,18,23v6,6,14,10,24,12v0,8,1,15,1,23r0,28r15,0r0,-27v0,0,1,-16,1,-23v12,-1,22,-4,29,-11v7,-7,14,-16,20,-25r-20,0v-4,5,-9,9,-13,12v-4,3,-9,5,-16,6v0,-19,1,-38,1,-56r0,-56r0,-10v5,5,11,10,17,13v6,3,15,5,24,5v7,0,13,-1,18,-3v5,-2,10,-5,14,-8v4,-3,9,-7,12,-11v3,-4,7,-9,10,-14","w":245},"\ue002":{"d":"137,-252r-20,0v-5,5,-10,9,-15,12v-5,3,-11,5,-19,5v-8,0,-15,-2,-20,-5v-5,-3,-9,-7,-14,-12r-20,0v3,5,7,10,10,14v3,4,7,8,11,11v4,3,10,6,15,8v5,2,11,2,18,2v7,0,13,0,18,-2v5,-2,10,-5,14,-8v4,-3,9,-7,12,-11v3,-4,7,-9,10,-14xm252,-252r-20,0v-5,5,-9,9,-14,12v-5,3,-12,5,-20,5v-8,0,-13,-1,-18,-4v-5,-3,-9,-5,-12,-9r0,-18r-19,0r0,3v0,2,-1,7,-1,15v0,8,-1,20,-1,35v0,15,1,36,1,63v0,27,0,59,1,98v0,12,-1,22,-3,29v-2,7,-5,12,-9,17v-4,4,-7,7,-12,10v-5,3,-10,5,-15,6r-15,3v0,0,-9,1,-14,1v-5,0,-10,-1,-14,-1v-4,0,-8,-1,-11,-2v-3,0,-6,-1,-8,-2r-6,-2v0,0,-5,-2,-8,-3v-3,-1,-5,-3,-8,-5v-3,-2,-5,-3,-8,-5v-4,-3,-5,-3,-10,-7r-11,15v8,6,15,11,21,14v6,3,12,6,18,8v6,2,13,5,20,6v7,1,15,1,23,1v16,0,30,-2,42,-6v12,-4,21,-11,29,-19v6,-7,10,-14,13,-23v3,-9,5,-21,5,-35r0,-173v4,2,8,4,13,6v5,2,11,2,17,2v7,0,13,0,18,-2v5,-2,10,-5,14,-8v4,-3,9,-7,12,-11v3,-4,7,-9,10,-14xm137,61r-20,0v-5,5,-10,9,-15,12v-5,3,-11,5,-19,5v-8,0,-15,-2,-20,-5v-5,-3,-9,-7,-14,-12r-20,0v3,5,7,10,10,14v3,4,7,8,11,11v4,3,10,6,15,8v5,2,11,2,18,2v7,0,13,0,18,-2v5,-2,10,-5,14,-8v4,-3,9,-7,12,-11v3,-4,7,-9,10,-14","w":246},"\ue003":{"d":"218,-252r-20,0v-5,5,-10,9,-15,12v-5,3,-11,5,-19,5v-8,0,-15,-2,-20,-5v-5,-3,-9,-7,-14,-12r-20,0v3,5,7,10,10,14v3,4,7,8,11,11v4,3,10,6,15,8v5,2,11,2,18,2v7,0,13,0,18,-2v5,-2,10,-5,14,-8v4,-3,9,-7,12,-11v3,-4,7,-9,10,-14xm249,2r-11,-15v-7,6,-12,9,-17,12v-5,3,-11,6,-17,8r-6,2v-2,1,-5,2,-8,2v-3,1,-6,2,-10,2v-4,0,-9,1,-14,1v-5,0,-9,0,-14,-1v-5,-1,-11,-2,-16,-3v-5,-1,-9,-3,-14,-6v-5,-3,-8,-6,-12,-10v-4,-5,-7,-10,-9,-17v-2,-7,-3,-17,-3,-29r0,-214r-19,0r0,18v-3,4,-7,6,-12,9v-5,3,-10,4,-18,4v-8,0,-15,-2,-20,-5v-5,-3,-9,-7,-14,-12r-20,0v3,5,6,10,9,14v3,4,8,8,12,11v4,3,10,6,15,8v5,2,11,2,18,2v6,0,12,0,17,-2v5,-2,9,-4,13,-6r0,173v0,14,1,26,4,35v3,9,7,16,13,23v16,17,40,25,72,25v8,0,16,0,23,-1v7,-1,14,-4,20,-6v6,-2,12,-5,18,-8v6,-3,12,-8,20,-14xm218,61r-20,0v-5,5,-10,9,-15,12v-5,3,-11,5,-19,5v-8,0,-15,-2,-20,-5v-5,-3,-9,-7,-14,-12r-20,0v3,5,7,10,10,14v3,4,7,8,11,11v4,3,10,6,15,8v5,2,11,2,18,2v7,0,13,0,18,-2v5,-2,10,-5,14,-8v4,-3,9,-7,12,-11v3,-4,7,-9,10,-14","w":246},"\ue004":{"d":"130,-224r-21,0r-2,3v-5,-6,-11,-11,-18,-15v-7,-4,-15,-6,-23,-6r0,0v-7,0,-14,1,-20,4v-6,3,-12,7,-16,11v-4,4,-7,10,-10,16v-3,6,-4,12,-4,19v0,7,1,14,4,20v3,6,6,12,10,16v4,4,10,8,16,11v6,3,13,4,20,4v7,0,14,-1,20,-4v6,-3,11,-7,15,-11v4,-4,8,-10,11,-16v3,-6,4,-13,4,-20v0,-5,-1,-8,-2,-11v2,-2,5,-4,7,-7xm266,-224r-20,0v-1,1,-2,3,-3,4r-2,2v-4,-7,-10,-13,-17,-17v-7,-4,-16,-7,-25,-7r0,0v-12,0,-22,5,-31,12r0,-39r-19,0r0,77r0,137v0,12,-1,21,-3,28v-2,7,-5,12,-9,17v-4,4,-7,7,-12,10v-5,3,-10,5,-15,6r-15,3v0,0,-9,1,-14,1v-5,0,-10,-1,-14,-1v-4,0,-8,0,-11,-1v-3,0,-6,-1,-8,-2v-3,-1,-3,-2,-6,-3v-3,-1,-5,-2,-8,-3v-3,-1,-5,-2,-8,-4v-3,-2,-5,-4,-8,-6v-4,-3,-5,-3,-10,-7r-11,15v8,6,15,11,21,14v6,3,12,7,18,9v6,2,13,4,20,5v7,1,15,2,23,2v16,0,30,-3,42,-7v12,-4,21,-11,29,-19v6,-7,10,-14,13,-23v3,-9,5,-21,5,-35r0,-97v9,7,19,12,31,12v7,0,14,-1,20,-4v6,-3,12,-7,16,-11v4,-4,7,-10,10,-16v3,-6,4,-13,4,-20r0,-4v0,0,-1,-4,-1,-5v3,-2,5,-5,8,-8v3,-3,6,-9,10,-15xm168,6r-19,2r0,8v0,0,-1,9,-2,14v-1,5,-1,11,-3,16v-2,5,-4,9,-7,13v-4,4,-7,7,-12,10v-5,3,-10,5,-15,6v-5,1,-10,3,-15,3r-14,0r-14,0v0,0,-8,-1,-11,-2v-3,0,-6,-1,-8,-2r-6,-2v0,0,-5,-3,-8,-4v-3,-1,-5,-2,-8,-4v-3,-2,-5,-3,-8,-5v-4,-3,-5,-4,-10,-8r-11,16v8,6,15,11,21,14v6,3,12,6,18,8v6,2,13,4,20,5v7,1,15,2,23,2v8,0,15,-1,21,-1v6,0,13,-1,19,-3v6,-2,11,-5,16,-8v5,-3,10,-8,15,-14v4,-4,7,-10,9,-17v2,-7,5,-14,6,-21v1,-7,2,-13,2,-18xm226,-208v-4,1,-9,2,-14,2v-7,0,-13,-2,-17,-4v-4,-2,-8,-5,-12,-9v5,-3,10,-4,16,-4r0,0v6,0,11,1,16,4v5,3,8,6,11,11xm231,-191v0,4,-1,8,-3,12v-2,4,-4,7,-7,10v-3,3,-5,4,-9,6v-4,2,-9,3,-13,3v-9,0,-16,-3,-22,-9v-6,-6,-9,-14,-9,-23v0,-5,1,-9,3,-13v4,4,9,8,16,12v7,4,15,5,25,5v6,0,13,-1,19,-3xm92,-209v-2,1,-4,1,-7,2v-3,1,-6,1,-9,1v-7,0,-13,-1,-17,-3v-4,-2,-8,-5,-11,-8v5,-4,11,-6,18,-6r0,0v6,0,11,1,15,4v4,3,8,6,11,10xm98,-192v0,9,-4,17,-10,23v-6,6,-13,9,-22,9v-9,0,-16,-3,-22,-9v-6,-6,-9,-14,-9,-23v0,-4,1,-8,2,-11v4,4,10,8,16,11v6,3,14,4,23,4v8,0,16,-1,22,-4r0,0","w":283},"\ue005":{"d":"168,6r-19,2r0,8v0,0,-1,9,-2,14v-1,5,-1,11,-3,16v-2,5,-4,9,-7,13v-4,4,-7,7,-12,10v-5,3,-10,5,-15,6v-5,1,-10,3,-15,3r-14,0r-14,0v0,0,-8,-1,-11,-2v-3,0,-6,-1,-8,-2r-6,-2v0,0,-5,-3,-8,-4v-3,-1,-5,-2,-8,-4v-3,-2,-5,-3,-8,-5v-4,-3,-5,-4,-10,-8r-11,16v8,6,15,11,21,14v6,3,12,6,18,8v6,2,13,4,20,5v7,1,15,2,23,2v8,0,15,-1,21,-1v6,0,13,-1,19,-3v6,-2,11,-5,16,-8v5,-3,10,-8,15,-14v4,-4,7,-10,9,-17v2,-7,5,-14,6,-21v1,-7,2,-13,2,-18","w":283},"\ue006":{"d":"137,-252r-20,0v-5,5,-10,9,-15,12v-5,3,-11,5,-19,5v-8,0,-15,-2,-20,-5v-5,-3,-9,-7,-14,-12r-20,0v3,5,7,10,10,14v3,4,7,8,11,11v4,3,10,6,15,8v5,2,11,2,18,2v7,0,13,0,18,-2v5,-2,10,-5,14,-8v4,-3,9,-7,12,-11v3,-4,7,-9,10,-14xm252,-252r-20,0v-5,5,-9,9,-14,12v-5,3,-12,5,-20,5v-8,0,-13,-1,-18,-4v-5,-3,-9,-5,-12,-9r0,-18r-19,0r0,214v0,12,-1,22,-3,29v-2,7,-5,12,-9,17v-4,4,-7,7,-12,10v-5,3,-10,5,-15,6r-15,3v0,0,-9,1,-14,1v-5,0,-10,-1,-14,-1v-4,0,-8,-1,-11,-2v-3,0,-6,-1,-8,-2r-6,-2v0,0,-5,-2,-8,-3v-3,-1,-5,-3,-8,-5v-3,-2,-5,-3,-8,-5v-4,-3,-5,-3,-10,-7r-11,15v8,6,15,11,21,14v6,3,12,6,18,8v6,2,13,5,20,6v7,1,15,1,23,1v16,0,30,-2,42,-6v12,-4,21,-11,29,-19v6,-7,10,-14,13,-23v3,-9,5,-21,5,-35r0,-173v4,2,8,4,13,6v5,2,11,2,17,2v7,0,13,0,18,-2v5,-2,10,-5,14,-8v4,-3,9,-7,12,-11v3,-4,7,-9,10,-14xm137,61r-20,0v-5,5,-10,9,-15,12v-5,3,-11,5,-19,5v-8,0,-15,-2,-20,-5v-5,-3,-9,-7,-14,-12r-20,0v3,5,7,10,10,14v3,4,7,8,11,11v4,3,10,6,15,8v5,2,11,2,18,2v7,0,13,0,18,-2v5,-2,10,-5,14,-8v4,-3,9,-7,12,-11v3,-4,7,-9,10,-14","w":246},"\ue007":{"d":"247,-192v0,-4,0,-6,-1,-10r-3,-8v-4,-9,-9,-17,-17,-23v-8,-6,-18,-9,-29,-9r0,0v-11,0,-21,3,-29,9v-8,6,-14,14,-18,23r-2,8v-1,3,-1,7,-1,10v0,7,1,14,4,20v3,6,6,12,10,16v4,4,10,8,16,11v6,3,13,4,20,4v7,0,14,-1,20,-4v6,-3,11,-7,15,-11v4,-4,8,-10,11,-16v3,-6,4,-13,4,-20xm266,-2r-11,-15v-7,6,-13,10,-18,13v-5,3,-10,5,-16,7v-3,1,-3,2,-6,3v-2,1,-5,2,-8,2v-3,1,-7,1,-11,1v-4,0,-9,1,-14,1v-5,0,-9,0,-14,-1r-15,-3v0,0,-10,-3,-15,-6v-5,-3,-8,-6,-12,-10v-4,-5,-7,-10,-9,-17v-2,-7,-3,-16,-3,-28r0,-137r0,-77r-19,0r0,39v-9,-7,-19,-12,-31,-12r-1,0v-10,0,-19,4,-27,9v-8,5,-14,12,-18,20r-3,8v-1,5,-1,9,-1,13v0,7,1,14,4,20v3,6,6,12,10,16v4,4,10,8,16,11v6,3,13,4,20,4v12,0,22,-5,31,-12r0,97v0,14,1,26,4,35v3,9,8,16,14,23v16,17,39,26,71,26v8,0,16,-1,23,-2v7,-1,14,-3,20,-5v6,-2,12,-6,18,-9v6,-3,13,-8,21,-14xm266,67r-11,-16v-7,6,-13,10,-18,13v-5,3,-10,6,-16,8r-6,2v-2,1,-5,2,-8,2v-3,1,-7,2,-11,2r-14,0r-14,0v0,0,-10,-2,-15,-3v-5,-1,-10,-3,-15,-6v-5,-3,-8,-6,-12,-10v-3,-4,-5,-8,-7,-13v-2,-5,-2,-11,-3,-16v-1,-5,-2,-10,-2,-14r0,-8r-19,-2v0,0,-1,0,0,8v0,5,2,11,3,18v1,7,4,14,6,21v2,7,5,13,9,17v5,6,10,11,15,14v5,3,10,6,16,8v6,2,12,3,18,3v6,0,14,1,22,1v8,0,16,-1,23,-2v7,-1,14,-3,20,-5v6,-2,12,-5,18,-8v6,-3,13,-8,21,-14xm225,-204v-3,3,-7,6,-11,8v-4,2,-10,4,-17,4v-7,0,-14,-2,-18,-4v-4,-2,-8,-5,-11,-8v3,-6,6,-11,11,-14v5,-3,12,-5,18,-5r0,0v6,0,12,2,17,5v5,3,8,8,11,14xm226,-183v-2,6,-5,13,-11,17v-6,4,-11,6,-18,6v-7,0,-13,-2,-19,-6v-6,-4,-9,-11,-11,-17v4,3,8,6,13,7v5,1,11,2,17,2v6,0,11,-1,16,-2v5,-1,9,-4,13,-7xm91,-205v-3,3,-7,5,-11,7v-4,2,-9,3,-15,3v-7,0,-13,-2,-17,-4v-4,-2,-9,-5,-12,-8v3,-5,6,-9,11,-12v5,-3,10,-4,16,-4r1,0v6,0,11,2,16,5v5,3,8,8,11,13xm94,-185v-1,7,-5,13,-11,18v-6,5,-12,7,-20,7v-8,0,-14,-3,-20,-8v-6,-5,-10,-11,-11,-19v4,3,9,5,14,7v5,2,12,3,19,3v6,0,11,-1,16,-2v5,-1,9,-4,13,-6","w":283},"\ue008":{"d":"108,-224r-20,0v-5,5,-9,10,-14,13v-5,3,-12,5,-20,5v-8,0,-15,-2,-20,-5v-5,-3,-9,-8,-14,-13r-20,0v3,5,7,10,10,14v3,4,8,9,12,12v4,3,9,5,14,7v5,2,11,3,18,3v7,0,13,-1,18,-3v5,-2,10,-4,14,-7v4,-3,9,-8,12,-12v3,-4,7,-9,10,-14xm215,-69r-17,-7v-7,14,-18,25,-33,33v-15,8,-35,12,-61,12v-12,0,-24,0,-34,-2v-10,-2,-19,-4,-27,-8v-8,-4,-13,-8,-17,-14v-4,-6,-7,-14,-7,-22v0,-6,1,-11,2,-16v1,-5,4,-9,7,-13v3,-4,7,-7,13,-11v6,-4,13,-8,21,-12v11,-5,20,-10,27,-15v7,-5,14,-10,19,-15v5,-5,8,-12,11,-18v3,-6,4,-13,5,-21v4,3,9,5,14,7v5,2,12,3,19,3v7,0,13,-1,18,-3v5,-2,10,-4,14,-7v4,-3,9,-8,12,-12v3,-4,7,-9,10,-14r-20,0v-5,5,-9,10,-14,13v-5,3,-12,5,-20,5v-8,0,-14,-1,-19,-4v-5,-3,-9,-7,-13,-12r-2,-4r-15,0r2,13v-1,8,-2,15,-4,21v-2,6,-4,12,-8,17v-4,5,-9,10,-16,15v-7,5,-16,9,-26,14v-10,5,-18,9,-25,14v-7,5,-13,11,-18,16v-5,5,-8,11,-10,17v-2,6,-3,14,-3,22v0,13,3,23,9,31v6,8,14,15,23,20v9,5,20,8,32,10v12,2,25,3,38,3v16,0,31,-1,43,-4v12,-3,23,-6,32,-11v9,-5,17,-11,23,-18v6,-7,11,-14,15,-23xm211,28r-20,0v-5,5,-9,10,-14,13v-5,3,-12,5,-20,5v-8,0,-15,-2,-20,-5v-5,-3,-9,-8,-14,-13r-20,0v3,5,7,10,10,14v3,4,8,9,12,12v4,3,9,5,14,7v5,2,11,3,18,3v7,0,13,-1,18,-3v5,-2,10,-4,14,-7v4,-3,9,-8,12,-12v3,-4,7,-9,10,-14","w":211},"\ue009":{"d":"231,-177v0,-5,0,-8,-1,-11v-1,-3,-3,-7,-5,-11v-5,-9,-11,-16,-18,-21v-7,-5,-16,-7,-26,-7r0,0v-11,0,-21,3,-29,9v-8,6,-14,13,-18,23r-2,9v0,1,-1,2,-1,4r0,5v0,7,1,13,4,19v3,6,7,12,11,16v4,4,9,8,15,11v6,3,13,4,20,4v7,0,14,-1,20,-4v6,-3,11,-7,16,-11v5,-4,8,-10,11,-16v3,-6,3,-12,3,-19xm215,-69r-17,-7v-7,14,-18,25,-33,33v-15,8,-35,12,-61,12v-12,0,-24,0,-34,-2v-10,-2,-19,-4,-27,-8v-8,-4,-13,-8,-17,-14v-4,-6,-7,-14,-7,-22v0,-6,1,-11,2,-16v1,-5,4,-9,7,-13v3,-4,7,-7,13,-11v6,-4,13,-8,21,-12v13,-6,24,-12,32,-18v8,-6,14,-13,19,-20v5,-7,8,-16,10,-25v2,-9,2,-21,1,-34r-16,0v0,10,-1,19,-2,27v-1,8,-3,14,-7,20v-4,6,-8,12,-15,17v-7,5,-16,10,-28,16v-10,5,-18,9,-25,14v-7,5,-13,11,-18,16v-5,5,-8,11,-10,17v-2,6,-3,14,-3,22v0,13,3,23,9,31v6,8,14,15,23,20v9,5,20,8,32,10v12,2,25,3,38,3v16,0,31,-1,43,-4v12,-3,23,-6,32,-11v9,-5,17,-11,23,-18v6,-7,11,-14,15,-23xm220,67r-12,-16v-7,6,-12,10,-17,13v-5,3,-10,6,-16,8r-6,2v-2,1,-5,2,-8,2v-3,1,-7,2,-11,2r-14,0r-14,0v0,0,-10,-2,-15,-3v-5,-1,-9,-3,-14,-6v-5,-3,-9,-6,-13,-10v-3,-4,-5,-8,-7,-13v-2,-5,-2,-11,-3,-16v-1,-5,-2,-10,-2,-14r0,-8r-19,-2v0,0,-1,0,0,8v0,5,2,11,3,18v1,7,3,14,5,21v2,7,6,13,10,17v5,6,10,11,15,14v5,3,10,6,16,8v6,2,12,3,18,3v6,0,14,1,22,1v8,0,16,-1,23,-2v7,-1,14,-3,20,-5v6,-2,12,-5,18,-8v6,-3,13,-8,21,-14xm210,-190v-3,3,-7,6,-12,9v-5,3,-11,4,-18,4v-7,0,-12,-1,-16,-3v-4,-2,-9,-6,-12,-9v2,-6,7,-10,12,-14v5,-4,11,-5,17,-5r0,0v6,0,13,2,18,5v5,3,9,7,11,13xm211,-168v-2,6,-5,12,-11,16v-6,4,-12,6,-19,6v-7,0,-13,-2,-18,-6v-5,-4,-9,-8,-11,-14v4,2,8,4,13,5v5,1,9,2,15,2v6,0,13,-1,18,-3v5,-2,9,-3,13,-6","w":229},"\ue00a":{"d":"231,-215v0,-7,-1,-14,-4,-20v-3,-6,-6,-11,-10,-15v-4,-4,-10,-8,-16,-11v-6,-3,-13,-4,-20,-4r0,0v-7,0,-14,1,-20,4v-6,3,-11,7,-15,11v-4,4,-8,9,-11,15v-3,6,-4,13,-4,20v0,7,1,14,4,20v3,6,7,12,11,16v4,4,9,7,15,10v6,3,13,4,20,4v7,0,14,-1,20,-4v6,-3,12,-6,16,-10v4,-4,7,-10,10,-16v3,-6,4,-13,4,-20xm215,-107r-17,-7v-7,14,-18,26,-33,34v-15,8,-35,12,-61,12v-12,0,-24,-1,-34,-3v-10,-2,-19,-4,-27,-8v-8,-4,-13,-8,-17,-14v-4,-6,-7,-13,-7,-21v0,-6,1,-11,2,-16v1,-5,4,-9,7,-13v3,-4,7,-8,13,-12v6,-4,13,-7,21,-11v13,-6,24,-13,32,-19v8,-6,14,-13,19,-20v5,-7,8,-16,10,-25v2,-9,2,-21,1,-34r-16,0v0,10,-1,19,-2,27v-1,8,-3,15,-7,21v-4,6,-8,11,-15,16v-7,5,-16,10,-28,16v-10,5,-18,10,-25,15v-7,5,-13,10,-18,15v-5,5,-8,11,-10,17v-2,6,-3,14,-3,22v0,13,3,23,9,31v6,8,14,15,23,20v9,5,20,8,32,10v12,2,25,3,38,3v16,0,31,-1,43,-4v12,-3,23,-6,32,-11v9,-5,17,-11,23,-18v6,-7,11,-14,15,-23xm220,29r-12,-15v-3,3,-6,5,-9,7v-3,2,-5,3,-8,5v-3,2,-5,4,-8,5v-3,1,-5,2,-8,3r-6,2v-2,1,-5,2,-8,3v-3,0,-7,1,-11,1v-4,0,-9,1,-14,1v-5,0,-9,-1,-14,-1v-5,0,-10,-2,-15,-3v-5,-1,-9,-3,-14,-6v-5,-3,-9,-6,-13,-10v-3,-4,-5,-8,-7,-13v-2,-5,-2,-11,-3,-16v-1,-5,-2,-10,-2,-14r0,-8r-19,-1v0,0,-1,-1,0,7v0,5,2,11,3,18v1,7,3,14,5,21v2,7,6,13,10,18v5,6,10,10,15,13v5,3,10,6,16,8v6,2,12,4,18,4r22,0v0,0,16,0,23,-1v7,-1,14,-4,20,-6v6,-2,12,-5,18,-8v6,-3,13,-8,21,-14xm200,-246r-4,0r-20,18r-5,6r0,-22v4,-1,7,-2,10,-2r0,0v6,0,13,2,18,5xm213,-215v0,4,-1,8,-2,11v-1,3,-3,6,-5,9r-19,-21r19,-18v2,3,4,6,5,9v1,3,2,6,2,10xm192,-185v-4,1,-8,1,-11,1v-4,0,-8,-1,-11,-2v0,-3,1,-5,1,-8r0,-7r4,-3xm155,-198v-3,-6,-5,-11,-5,-17v0,-6,2,-11,5,-16r0,33","w":229},"\ue00b":{"d":"215,-223r-21,0v-4,5,-8,10,-13,13v-5,3,-12,5,-20,5v-8,0,-15,-2,-20,-5v-5,-3,-10,-8,-14,-13r-19,0r0,-2r-4,0r-11,0r-3,4v-3,4,-8,8,-13,11v-5,3,-11,5,-19,5v-8,0,-15,-2,-20,-5v-5,-3,-10,-8,-14,-13r-20,0v3,5,6,10,10,14v4,4,8,9,12,12v4,3,9,5,14,7v5,2,11,3,18,3v7,0,13,-1,18,-3v5,-2,11,-4,15,-7v1,8,2,15,5,21v3,6,6,13,11,18v5,5,12,10,19,15v7,5,16,10,27,15v8,4,15,8,20,12v5,4,10,7,13,11v3,4,7,8,8,13v1,5,2,10,2,16v0,8,-3,15,-7,21v-4,6,-9,11,-17,15v-8,4,-17,6,-27,8v-10,2,-22,2,-34,2v-26,0,-46,-4,-61,-12v-15,-8,-26,-19,-33,-33r-17,7v4,9,9,16,15,23v6,7,14,13,23,18v9,5,20,8,32,11v12,3,27,4,43,4v13,0,25,-1,37,-3v12,-2,24,-6,33,-11v9,-5,17,-11,23,-19v6,-8,9,-19,9,-32v0,-8,-1,-15,-3,-21v-2,-6,-5,-13,-10,-18v-5,-5,-11,-10,-18,-15v-7,-5,-15,-9,-25,-14v-11,-5,-20,-10,-27,-14v-7,-4,-12,-8,-16,-13v-4,-5,-6,-11,-7,-19v-1,-8,-1,-17,-1,-30v3,5,6,9,9,13v3,4,8,8,12,11v4,3,9,5,14,7v5,2,11,3,18,3v7,0,13,-1,18,-3v5,-2,10,-4,14,-7v4,-3,9,-8,12,-12v3,-4,7,-9,10,-14xm112,29r-21,0v-4,5,-8,10,-13,13v-5,3,-12,5,-20,5v-8,0,-15,-2,-20,-5v-5,-3,-10,-8,-14,-13r-20,0v3,5,6,10,10,14v4,4,8,9,12,12v4,3,9,5,14,7v5,2,11,3,18,3v7,0,13,-1,18,-3v5,-2,10,-4,14,-7v4,-3,9,-8,12,-12v3,-4,7,-9,10,-14","w":211},"\ue00c":{"d":"224,-77v0,-8,-1,-16,-3,-22v-2,-6,-5,-12,-10,-17v-5,-5,-10,-11,-17,-16v-7,-5,-16,-9,-26,-14v-12,-6,-20,-11,-27,-16v-7,-5,-12,-11,-16,-17v-4,-6,-6,-12,-7,-20v-1,-8,-1,-17,-1,-27r-17,0v-1,13,0,25,2,34v2,9,4,18,9,25v5,7,11,14,19,20v8,6,19,12,32,18v8,4,15,8,21,12v6,4,10,7,13,11v3,4,6,8,7,13v1,5,2,10,2,16v0,8,-2,16,-6,22v-4,6,-10,10,-18,14v-8,4,-17,6,-27,8v-10,2,-21,2,-33,2v-26,0,-47,-4,-62,-12v-15,-8,-25,-19,-32,-33r-18,7v4,9,10,16,16,23v6,7,13,13,22,18v9,5,20,8,32,11v12,3,27,4,43,4v13,0,26,-1,38,-3v12,-2,23,-5,32,-10v9,-5,17,-12,23,-20v6,-8,9,-18,9,-31xm100,-177v0,-7,-1,-14,-4,-20v-3,-6,-6,-12,-10,-16v-4,-4,-10,-7,-16,-10v-6,-3,-13,-4,-20,-4r0,0v-12,0,-21,3,-30,10v-9,7,-14,15,-17,26r-2,7v0,1,-1,3,-1,4r0,3v0,7,1,13,4,19v3,6,7,12,11,16v4,4,10,8,16,11v6,3,12,4,19,4v7,0,14,-1,20,-4v6,-3,12,-7,16,-11v4,-4,7,-10,10,-16v3,-6,4,-12,4,-19xm176,6r-19,2v0,1,-1,4,-1,8v0,4,0,9,-1,14v-1,5,-2,11,-4,16v-2,5,-4,9,-7,13v-4,4,-7,7,-12,10v-5,3,-9,5,-14,6v-5,1,-10,3,-15,3r-15,0r-14,0v0,0,-7,-1,-10,-2v-3,0,-6,-1,-8,-2v-3,-1,-4,-1,-7,-2v-6,-2,-11,-5,-16,-8v-5,-3,-10,-7,-17,-13r-12,16v8,6,15,11,21,14v6,3,13,6,19,8v6,2,12,4,19,5v7,1,15,2,23,2v8,0,16,-1,22,-1v6,0,12,-1,18,-3v6,-2,12,-5,17,-8v5,-3,10,-8,15,-14v4,-4,7,-10,9,-17v2,-7,4,-14,5,-21v1,-7,3,-13,3,-18xm80,-187v-3,4,-7,7,-12,10v-5,3,-11,3,-18,3v-7,0,-13,0,-18,-3v-5,-3,-9,-6,-12,-10v2,-6,5,-11,11,-15v6,-4,12,-6,19,-6r0,0v7,0,14,2,19,6v5,4,9,9,11,15xm78,-162v-3,5,-7,9,-12,12v-5,3,-10,4,-16,4v-6,0,-11,-1,-16,-4v-5,-3,-9,-7,-12,-12v4,2,8,3,13,4v5,1,9,2,15,2v6,0,10,-1,15,-2v5,-1,9,-2,13,-4","w":229},"\ue00d":{"d":"288,-125v0,-18,-2,-34,-5,-49v-3,-15,-9,-27,-15,-38v-6,-11,-14,-18,-23,-24v-9,-6,-20,-9,-32,-9v-9,0,-16,2,-23,5v-7,3,-14,7,-20,13v-6,6,-11,13,-15,20v-4,7,-8,15,-11,23v-2,-7,-5,-14,-8,-20v-3,-6,-7,-11,-12,-16v-5,-5,-10,-8,-16,-11v-6,-3,-13,-4,-21,-4v-15,0,-28,5,-39,16v-11,11,-19,27,-24,46r-1,7v-3,13,-4,26,-4,41v0,17,2,32,5,46v3,14,8,26,14,35v6,9,13,17,21,22v8,5,18,8,28,8v7,0,14,-1,20,-4v6,-3,11,-6,16,-11v5,-5,10,-11,13,-17v3,-6,6,-13,8,-20v3,8,7,17,11,24v4,7,9,13,15,19v6,6,13,10,20,13v7,3,14,5,23,5v12,0,24,-3,33,-9v9,-6,17,-15,23,-26v6,-11,11,-23,14,-38v3,-15,5,-30,5,-47xm198,46r-20,0v-5,5,-9,10,-14,13v-5,3,-12,5,-20,5v-8,0,-15,-2,-20,-5v-5,-3,-9,-8,-14,-13r-20,0v3,5,7,10,10,14v3,4,8,9,12,12v4,3,9,5,14,7v5,2,11,3,18,3v7,0,13,-1,18,-3v5,-2,10,-4,14,-7v4,-3,9,-8,12,-12v3,-4,7,-9,10,-14xm271,-125v0,16,-1,30,-4,43v-3,13,-7,23,-12,32v-5,9,-11,14,-18,19v-7,5,-15,7,-23,7r0,0v-7,0,-15,-2,-22,-6v-7,-4,-13,-10,-19,-18v-6,-8,-10,-18,-14,-31v-4,-13,-6,-28,-6,-46v0,-4,1,-9,1,-13v0,-4,1,-7,1,-11v4,3,9,6,15,8v6,2,12,3,20,3v7,0,13,0,18,-2v5,-2,10,-5,14,-8v4,-3,9,-7,12,-11v3,-4,7,-9,10,-14r-20,0v-5,5,-9,9,-14,12v-5,3,-12,5,-20,5v-8,0,-13,-1,-18,-4v-5,-3,-9,-6,-13,-10v5,-19,13,-34,23,-43v10,-9,21,-13,32,-13v8,0,16,2,23,7v7,5,13,11,18,20v5,9,9,18,12,31v3,13,4,27,4,43xm135,-125v0,16,-1,30,-4,42v-3,12,-6,21,-10,28v-4,7,-10,14,-16,17v-6,3,-12,5,-18,5r0,0v-6,0,-13,-2,-19,-6v-6,-4,-11,-9,-16,-17v-5,-8,-8,-16,-11,-28v-3,-12,-5,-25,-5,-41v0,-4,1,-8,1,-12v0,-4,1,-8,1,-12v4,3,8,6,14,8v6,2,13,3,20,3v7,0,13,0,18,-2v5,-2,10,-5,14,-8v4,-3,9,-7,12,-11v3,-4,7,-9,10,-14r-20,0v-5,5,-9,9,-14,12v-5,3,-12,5,-20,5v-7,0,-13,0,-18,-3v-5,-3,-8,-6,-12,-10v4,-16,11,-28,19,-36v8,-8,17,-12,26,-12v6,0,12,2,18,5v6,3,12,10,16,17v4,7,7,17,10,29v3,12,4,25,4,41"},"\ue00e":{"w":95},"\ue00f":{"d":"249,-192v0,-7,-1,-13,-4,-19v-3,-6,-6,-12,-10,-16v-4,-4,-10,-8,-16,-11v-6,-3,-13,-4,-20,-4r0,0v-12,0,-22,5,-31,12r0,-39r-19,0r0,68r-34,0r0,0r5,0r-7,-8v-4,-10,-10,-18,-18,-24v-8,-6,-18,-9,-29,-9r0,0v-4,0,-9,2,-15,4v-6,2,-11,5,-16,9v-5,4,-10,8,-13,13v-3,5,-5,9,-5,14v-1,3,-1,7,-1,10v0,7,1,14,4,20v3,6,6,12,10,16v4,4,10,8,16,11v6,3,13,4,20,4v6,0,12,-2,18,-4v6,-2,10,-5,14,-9v4,-4,8,-8,11,-13v3,-5,5,-10,6,-16r34,0r0,128v0,12,-1,21,-3,28v-2,7,-5,12,-9,17v-4,4,-7,7,-12,10v-5,3,-10,5,-15,6r-15,3v0,0,-9,1,-14,1v-5,0,-10,-1,-14,-1v-4,0,-8,0,-11,-1v-3,0,-6,-1,-8,-2v-3,-1,-3,-2,-6,-3v-3,-1,-5,-2,-8,-3v-3,-1,-5,-2,-8,-4v-3,-2,-5,-4,-8,-6v-4,-3,-5,-3,-10,-7r-11,15v8,6,15,11,21,14v6,3,12,7,18,9v6,2,13,4,20,5v7,1,15,2,23,2v16,0,30,-3,42,-7v12,-4,21,-11,29,-19v6,-7,10,-14,13,-23v3,-9,5,-21,5,-35r0,-97v9,7,19,12,31,12v7,0,14,-1,20,-4v6,-3,12,-7,16,-11v4,-4,7,-10,10,-16v3,-6,4,-13,4,-20xm168,6r-19,2r0,8v0,0,-1,9,-2,14v-1,5,-1,11,-3,16v-2,5,-4,9,-7,13v-4,4,-7,7,-12,10v-5,3,-10,5,-15,6v-5,1,-10,3,-15,3r-14,0r-14,0v0,0,-8,-1,-11,-2v-3,0,-6,-1,-8,-2r-6,-2v0,0,-5,-3,-8,-4v-3,-1,-5,-2,-8,-4v-3,-2,-5,-3,-8,-5v-4,-3,-5,-4,-10,-8r-11,16v8,6,15,11,21,14v6,3,12,6,18,8v6,2,13,4,20,5v7,1,15,2,23,2v8,0,15,-1,21,-1v6,0,13,-1,19,-3v6,-2,11,-5,16,-8v5,-3,10,-8,15,-14v4,-4,7,-10,9,-17v2,-7,5,-14,6,-21v1,-7,2,-13,2,-18xm209,-221r-16,15r-5,4r0,-19v4,-1,7,-2,11,-2r0,0v4,0,7,1,10,2xm231,-192v0,7,-2,14,-7,20r-20,-22r19,-18v5,6,8,12,8,20xm210,-162v-4,1,-7,2,-11,2v-4,0,-7,-1,-11,-2r0,-17r4,-4xm171,-178v-2,-5,-3,-9,-3,-14v0,-5,1,-8,3,-13r0,27xm95,-204v-3,3,-8,7,-12,9v-4,2,-10,3,-17,3v-7,0,-13,-1,-17,-3v-4,-2,-9,-6,-12,-9v2,-6,7,-9,12,-13v5,-4,11,-6,17,-6r0,0v6,0,13,2,18,6v5,4,9,7,11,13xm96,-181v-2,6,-6,11,-11,15v-5,4,-12,6,-19,6v-7,0,-13,-2,-18,-6v-5,-4,-10,-9,-12,-15v4,2,9,4,14,5v5,1,10,2,16,2v6,0,12,-1,17,-2v5,-1,9,-3,13,-5","w":251},"\u00a0":{"w":95}}});
;

