/*
 * 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")}})})();;

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>';
  }
};
;
Drupal.locale = { 'pluralFormula': function($n) { return Number(($n!=1)); }, 'strings': { "Unspecified error": "Ospecificerat fel", "An error occurred. \n@uri\n@text": "Ett fel inträffade. \n@uri\n@text", "An error occurred. \n@uri\n(no information available).": "Ett fel inträffade. \n@uri\n(ingen information tillgänglig).", "An HTTP error @status occurred. \n@uri": "Ett HTTP-fel inträffade: @status. \n@uri", "Drag to re-order": "Drag för att ordna om", "Changes made in this table will not be saved until the form is submitted.": "Ändringar som görs i denna tabell sparas inte förrän formuläret skickas.", "Select all rows in this table": "Markera alla rader i tabellen", "Deselect all rows in this table": "Avmarkera alla rader i tabellen", "Split summary at cursor": "Avdela sammanfattning vid markören", "Join summary": "Lägg ihop sammanfattning", "Your server has been successfully tested to support this feature.": "Din server har testats och har stöd för denna funktion.", "Testing clean URLs...": "Testar rena URL:er...", "Your system configuration does not currently support this feature. The \x3ca href=\"http://drupal.org/node/15365\"\x3ehandbook page on Clean URLs\x3c/a\x3e has additional troubleshooting information.": "Dina systeminställningar stöder för närvarande inte denna funktion. På \x3ca href=\"http://drupal.org/node/15365\"\x3ehandbokssidan om rena URL:er\x3c/a\x3e finns mer information om fellösning.", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "Ändringarna i dessa block kommer inte att sparas tills \x3cem\x3eSpara block\x3c/em\x3e knappen klickats.", "The selected file %filename cannot not be uploaded. Only files with the following extensions are allowed: %extensions.": "Den valda filen %filename kan inte laddas upp. Endast filer med följande ändelser är tillåtna: %extensions." } };;

$(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) {
          if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});
;
(function ($) {

/**
 * Open Mollom privacy policy link in a new window.
 *
 * Required for valid XHTML Strict markup.
 */
Drupal.behaviors.mollomPrivacy = function (context) {
  $('.mollom-privacy a', context).click(function () {
    this.target = '_blank';
  });
};

/**
 * Attach click event handlers for CAPTCHA links.
 */
Drupal.behaviors.mollomCaptcha = function (context) {
  $('a.mollom-switch-captcha', context).click(getMollomCaptcha);
};

/**
 * Fetch a Mollom CAPTCHA and output the image or audio into the form.
 */
function getMollomCaptcha() {
  // Get the current requested CAPTCHA type from the clicked link.
  var newCaptchaType = $(this).hasClass('mollom-audio-captcha') ? 'audio' : 'image';

  var context = $(this).parents('form');

  // Extract the Mollom session id from the form.
  var mollomSessionId = $('input.mollom-session-id', context).val();

  // Retrieve a CAPTCHA:
  $.getJSON(Drupal.settings.basePath + 'mollom/captcha/' + newCaptchaType + '/' + mollomSessionId,
    function (data) {
      if (!(data && data.content)) {
        return;
      }
      // Inject new CAPTCHA.
      $('.mollom-captcha-content', context).parent().html(data.content);
      // Update session id.
      $('input.mollom-session-id', context).val(data.session_id);
      // Add an onclick-event handler for the new link.
      Drupal.attachBehaviors(context);
      // Focus on the CATPCHA input.
      $('input[name="mollom[captcha]"]', context).focus();
    }
  );
  return false;
}

})(jQuery);
;
/**
 * @file base.js
 *
 * Some basic behaviors and utility functions for Views.
 */

Drupal.Views = {};

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

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

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

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

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

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

/**
 * Return the Drupal path portion of an href.
 */
Drupal.Views.getPath = function (href) {
  href = Drupal.Views.pathPortion(href);
  href = href.substring(Drupal.settings.basePath.length, href.length);
  // 3 is the length of the '?q=' added to the url without clean urls.
  if (href.substring(0, 3) == '?q=') {
    href = href.substring(3, href.length);
  }
  var chars = ['#', '?', '&'];
  for (i in chars) {
    if (href.indexOf(chars[i]) > -1) {
      href = href.substr(0, href.indexOf(chars[i]));
    }
  }
  return href;
};
;
/**
 * @file dependent.js
 *
 * Written by dmitrig01 (Dmitri Gaskin) for Views; this provides dependent
 * visibility for form items in Views' ajax forms.
 *
 * To your $form item definition add:
 * - '#process' => array('views_process_dependency'),
 * - Add '#dependency' => array('id-of-form-item' => array(list, of, values, that,
     make, this, item, show),
 *
 * Special considerations:
 * - radios are harder. Because Drupal doesn't give radio groups individual ids,
 *   use 'radio:name-of-radio'
 *
 * - Checkboxes don't have their own id, so you need to add one in a div
 *   around the checkboxes via #prefix and #suffix. You actually need to add TWO
 *   divs because it's the parent that gets hidden. Also be sure to retain the
 *   'expand_checkboxes' in the #process array, because the views process will
 *   override it.
 */

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

Drupal.Views.dependent = { bindings: {}, activeBindings: {}, activeTriggers: [] };

Drupal.Views.dependent.inArray = function(array, search_term) {
  var i = array.length;
  if (i > 0) {
   do {
    if (array[i] == search_term) {
       return true;
    }
   } while (i--);
  }
  return false;
}


Drupal.Views.dependent.autoAttach = function() {
  // Clear active bindings and triggers.
  for (i in Drupal.Views.dependent.activeTriggers) {
    jQuery(Drupal.Views.dependent.activeTriggers[i]).unbind('change');
  }
  Drupal.Views.dependent.activeTriggers = [];
  Drupal.Views.dependent.activeBindings = {};
  Drupal.Views.dependent.bindings = {};

  if (!Drupal.settings.viewsAjax) {
    return;
  }

  // Iterate through all relationships
  for (id in Drupal.settings.viewsAjax.formRelationships) {

    // Drupal.Views.dependent.activeBindings[id] is a boolean,
    // whether the binding is active or not.  Defaults to no.
    Drupal.Views.dependent.activeBindings[id] = 0;
    // Iterate through all possible values
    for(bind_id in Drupal.settings.viewsAjax.formRelationships[id].values) {
      // This creates a backward relationship.  The bind_id is the ID
      // of the element which needs to change in order for the id to hide or become shown.
      // The id is the ID of the item which will be conditionally hidden or shown.
      // Here we're setting the bindings for the bind
      // id to be an empty array if it doesn't already have bindings to it
      if (!Drupal.Views.dependent.bindings[bind_id]) {
        Drupal.Views.dependent.bindings[bind_id] = [];
      }
      // Add this ID
      Drupal.Views.dependent.bindings[bind_id].push(id);
      // Big long if statement.
      // Drupal.settings.viewsAjax.formRelationships[id].values[bind_id] holds the possible values

      if (bind_id.substring(0, 6) == 'radio:') {
        var trigger_id = "input[name='" + bind_id.substring(6) + "']";
      }
      else {
        var trigger_id = '#' + bind_id;
      }

      Drupal.Views.dependent.activeTriggers.push(trigger_id);

      if (jQuery(trigger_id).attr('type') == 'checkbox') {
        $(trigger_id).parent().addClass('hidden-options');
      }

      var getValue = function(item, trigger) {
        if (item.substring(0, 6) == 'radio:') {
          var val = jQuery(trigger + ':checked').val();
        }
        else {
          switch (jQuery(trigger).attr('type')) {
            case 'checkbox':
              var val = jQuery(trigger).attr('checked') || 0;

              if (val) {
                $(trigger).parent().removeClass('hidden-options').addClass('expanded-options');
              }
              else {
                $(trigger).parent().removeClass('expanded-options').addClass('hidden-options');
              }

              break;
            default:
              var val = jQuery(trigger).val();
          }
        }
        return val;
      }

      var setChangeTrigger = function(trigger_id, bind_id) {
        // Triggered when change() is clicked.
        var changeTrigger = function() {
          var val = getValue(bind_id, trigger_id);

          for (i in Drupal.Views.dependent.bindings[bind_id]) {
            var id = Drupal.Views.dependent.bindings[bind_id][i];

            // Fix numerous errors
            if (typeof id != 'string') {
              continue;
            }

            // This bit had to be rewritten a bit because two properties on the
            // same set caused the counter to go up and up and up.
            if (!Drupal.Views.dependent.activeBindings[id]) {
              Drupal.Views.dependent.activeBindings[id] = {};
            }

            if (Drupal.Views.dependent.inArray(Drupal.settings.viewsAjax.formRelationships[id].values[bind_id], val)) {
              Drupal.Views.dependent.activeBindings[id][bind_id] = 'bind';
            }
            else {
              delete Drupal.Views.dependent.activeBindings[id][bind_id];
            }

            var len = 0;
            for (i in Drupal.Views.dependent.activeBindings[id]) {
              len++;
            }

            var object = jQuery('#' + id + '-wrapper');
            if (!object.size()) {
              object = jQuery('#' + id).parent();
            }

            var rel_num = Drupal.settings.viewsAjax.formRelationships[id].num;
            if (typeof rel_num === 'object') {
              rel_num = Drupal.settings.viewsAjax.formRelationships[id].num[0];
            }

            if (rel_num <= len) {
              // Show if the element if criteria is matched
              object.show(0);
              object.addClass('dependent-options');
            }
            else {
              // Otherwise hide
              object.hide(0);
            }
          }
        }

        jQuery(trigger_id).change(function() {
          // Trigger the internal change function
          // the attr('id') is used because closures are more confusing
          changeTrigger(trigger_id, bind_id);
        });
        // Trigger initial reaction
        changeTrigger(trigger_id, bind_id);
      }
      setChangeTrigger(trigger_id, bind_id);
    }
  }
}

Drupal.behaviors.viewsDependent = function (context) {
  Drupal.Views.dependent.autoAttach();

  // Really large sets of fields are too slow with the above method, so this
  // is a sort of hacked one that's faster but much less flexible.
  $("select.views-master-dependent:not(.views-processed)")
    .addClass('views-processed')
    .change(function() {
      var val = $(this).val();
      if (val == 'all') {
        $('.views-dependent-all').show(0);
      }
      else {
        $('.views-dependent-all').hide(0);
        $('.views-dependent-' + val).show(0);
      }
    })
    .trigger('change');
}
;
$(document).ready(function() {
    // How to make this cleaner?
    try {
      if (Drupal.settings.admin_menu.tweak_tabs == 1) {
        $('ul.tabs.primary').remove()
      }
    }
    catch(e) {
      // NULL
    }
});
;
/*
 * jQuery Media Plugin for converting elements into rich media content.
 *
 * Examples and documentation at: http://malsup.com/jquery/media/
 * Copyright (c) 2007-2008 M. Alsup
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 * @author: M. Alsup
 * @version: 0.90 (10-MAY-2009)
 * @requires jQuery v1.1.2 or later
 * $Id: jquery.media.js 2460 2007-07-23 02:53:15Z malsup $
 *
 * Supported Media Players:
 *    - Flash
 *    - Quicktime
 *    - Real Player
 *    - Silverlight
 *    - Windows Media Player
 *    - iframe
 *
 * Supported Media Formats:
 *   Any types supported by the above players, such as:
 *     Video: asf, avi, flv, mov, mpg, mpeg, mp4, qt, smil, swf, wmv, 3g2, 3gp
 *     Audio: aif, aac, au, gsm, mid, midi, mov, mp3, m4a, snd, rm, wav, wma
 *     Other: bmp, html, pdf, psd, qif, qtif, qti, tif, tiff, xaml
 *
 * Thanks to Mark Hicken and Brent Pedersen for helping me debug this on the Mac!
 * Thanks to Dan Rossi for numerous bug reports and code bits!
 * Thanks to Skye Giordano for several great suggestions!
 */
;(function($) {

/**
 * Chainable method for converting elements into rich media.
 *
 * @param options
 * @param callback fn invoked for each matched element before conversion
 * @param callback fn invoked for each matched element after conversion
 */
$.fn.media = function(options, f1, f2) {
    return this.each(function() {
        if (typeof options == 'function') {
            f2 = f1;
            f1 = options;
            options = {};
        }
        var o = getSettings(this, options);
        // pre-conversion callback, passes original element and fully populated options
        if (typeof f1 == 'function') f1(this, o);

        var r = getTypesRegExp();
        var m = r.exec(o.src.toLowerCase()) || [''];

        o.type ? m[0] = o.type : m.shift();
        for (var i=0; i < m.length; i++) {
            fn = m[i].toLowerCase();
            if (isDigit(fn[0])) fn = 'fn' + fn; // fns can't begin with numbers
            if (!$.fn.media[fn])
                continue;  // unrecognized media type
            // normalize autoplay settings
            var player = $.fn.media[fn+'_player'];
            if (!o.params) o.params = {};
            if (player) {
                var num = player.autoplayAttr == 'autostart';
                o.params[player.autoplayAttr || 'autoplay'] = num ? (o.autoplay ? 1 : 0) : o.autoplay ? true : false;
            }
            var $div = $.fn.media[fn](this, o);

            $div.css('backgroundColor', o.bgColor).width(o.width);
            // post-conversion callback, passes original element, new div element and fully populated options
            if (typeof f2 == 'function') f2(this, $div[0], o, player.name);
            break;
        }
    });
};

/**
 * Non-chainable method for adding or changing file format / player mapping
 * @name mapFormat
 * @param String format File format extension (ie: mov, wav, mp3)
 * @param String player Player name to use for the format (one of: flash, quicktime, realplayer, winmedia, silverlight or iframe
 */
$.fn.media.mapFormat = function(format, player) {
    if (!format || !player || !$.fn.media.defaults.players[player]) return; // invalid
    format = format.toLowerCase();
    if (isDigit(format[0])) format = 'fn' + format;
    $.fn.media[format] = $.fn.media[player];
    $.fn.media[format+'_player'] = $.fn.media.defaults.players[player];
};

// global defautls; override as needed
$.fn.media.defaults = {
    width:         400,
    height:        400,
    autoplay:      0,         // normalized cross-player setting
    bgColor:       '#ffffff', // background color
    params:        { wmode: 'transparent'},  // added to object element as param elements; added to embed element as attrs
    attrs:         {},        // added to object and embed elements as attrs
    flvKeyName:    'file',    // key used for object src param (thanks to Andrea Ercolino)
    flashvars:     {},        // added to flash content as flashvars param/attr
    flashVersion:  '7',       // required flash version
    expressInstaller: null,   // src for express installer

    // default flash video and mp3 player (@see: http://jeroenwijering.com/?item=Flash_Media_Player)
    flvPlayer:     'mediaplayer.swf',
    mp3Player:     'mediaplayer.swf',

    // @see http://msdn2.microsoft.com/en-us/library/bb412401.aspx
    silverlight: {
        inplaceInstallPrompt: 'true', // display in-place install prompt?
        isWindowless:         'true', // windowless mode (false for wrapping markup)
        framerate:            '24',   // maximum framerate
        version:              '0.9',  // Silverlight version
        onError:              null,   // onError callback
        onLoad:               null,   // onLoad callback
        initParams:           null,   // object init params
        userContext:          null    // callback arg passed to the load callback
    }
};

// Media Players; think twice before overriding
$.fn.media.defaults.players = {
    flash: {
        name:         'flash',
        types:        'flv,mp3,swf',
        oAttrs:   {
            classid:  'clsid:d27cdb6e-ae6d-11cf-96b8-444553540000',
            type:     'application/x-oleobject',
            codebase: 'http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=' + $.fn.media.defaults.flashVersion
        },
        eAttrs: {
            type:         'application/x-shockwave-flash',
            pluginspage:  'http://www.adobe.com/go/getflashplayer'
        }
    },
    quicktime: {
        name:         'quicktime',
        types:        'aif,aiff,aac,au,bmp,gsm,mov,mid,midi,mpg,mpeg,mp4,m4a,psd,qt,qtif,qif,qti,snd,tif,tiff,wav,3g2,3gp',
        oAttrs:   {
            classid:  'clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B',
            codebase: 'http://www.apple.com/qtactivex/qtplugin.cab'
        },
        eAttrs: {
            pluginspage:  'http://www.apple.com/quicktime/download/'
        }
    },
    realplayer: {
        name:         'real',
        types:        'ra,ram,rm,rpm,rv,smi,smil',
        autoplayAttr: 'autostart',
        oAttrs:   {
            classid:  'clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA'
        },
        eAttrs: {
            type:         'audio/x-pn-realaudio-plugin',
            pluginspage:  'http://www.real.com/player/'
        }
    },
    winmedia: {
        name:         'winmedia',
        types:        'asx,asf,avi,wma,wmv',
        autoplayAttr: 'autostart',
        oUrl:         'url',
        oAttrs:   {
            classid:  'clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6',
            type:     'application/x-oleobject'
        },
        eAttrs: {
            type:         $.browser.mozilla && isFirefoxWMPPluginInstalled() ? 'application/x-ms-wmp' : 'application/x-mplayer2',
            pluginspage:  'http://www.microsoft.com/Windows/MediaPlayer/'
        }
    },
    // special cases
    iframe: {
        name:  'iframe',
        types: 'html,pdf'
    },
    silverlight: {
        name:  'silverlight',
        types: 'xaml'
    }
};

//
//  everything below here is private
//


// detection script for FF WMP plugin (http://www.therossman.org/experiments/wmp_play.html)
// (hat tip to Mark Ross for this script)
function isFirefoxWMPPluginInstalled() {
    var plugs = navigator.plugins;
    for (i = 0; i < plugs.length; i++) {
        var plugin = plugs[i];
        if (plugin['filename'] == 'np-mswmp.dll')
            return true;
    }
    return false;
}

var counter = 1;

for (var player in $.fn.media.defaults.players) {
    var types = $.fn.media.defaults.players[player].types;
    $.each(types.split(','), function(i,o) {
        if (isDigit(o[0])) o = 'fn' + o;
        $.fn.media[o] = $.fn.media[player] = getGenerator(player);
        $.fn.media[o+'_player'] = $.fn.media.defaults.players[player];
    });
};

function getTypesRegExp() {
    var types = '';
    for (var player in $.fn.media.defaults.players) {
        if (types.length) types += ',';
        types += $.fn.media.defaults.players[player].types;
    };
    return new RegExp('\\.(' + types.replace(/,/ig,'|') + ')\\b');
};

function getGenerator(player) {
    return function(el, options) {
        return generate(el, options, player);
    };
};

function isDigit(c) {
    return '0123456789'.indexOf(c) > -1;
};

// flatten all possible options: global defaults, meta, option obj
function getSettings(el, options) {
    options = options || {};
    var $el = $(el);
    var cls = el.className || '';
    // support metadata plugin (v1.0 and v2.0)
    var meta = $.metadata ? $el.metadata() : $.meta ? $el.data() : {};
    meta = meta || {};
    var w = meta.width  || parseInt(((cls.match(/w:(\d+)/)||[])[1]||0));
    var h = meta.height || parseInt(((cls.match(/h:(\d+)/)||[])[1]||0));

    if (w) meta.width  = w;
    if (h) meta.height = h;
    if (cls) meta.cls = cls;

    var a = $.fn.media.defaults;
    var b = options;
    var c = meta;

    var p = { params: { bgColor: options.bgColor || $.fn.media.defaults.bgColor } };
    var opts = $.extend({}, a, b, c);
    $.each(['attrs','params','flashvars','silverlight'], function(i,o) {
        opts[o] = $.extend({}, p[o] || {}, a[o] || {}, b[o] || {}, c[o] || {});
    });

    if (typeof opts.caption == 'undefined') opts.caption = $el.text();

    // make sure we have a source!
    opts.src = opts.src || $el.attr('href') || $el.attr('src') || 'unknown';
    return opts;
};

//
//  Flash Player
//

// generate flash using SWFObject library if possible
$.fn.media.swf = function(el, opts) {
    if (!window.SWFObject && !window.swfobject) {
        // roll our own
        if (opts.flashvars) {
            var a = [];
            for (var f in opts.flashvars)
                a.push(f + '=' + opts.flashvars[f]);
            if (!opts.params) opts.params = {};
            opts.params.flashvars = a.join('&');
        }
        return generate(el, opts, 'flash');
    }

    var id = el.id ? (' id="'+el.id+'"') : '';
    var cls = opts.cls ? (' class="' + opts.cls + '"') : '';
    var $div = $('<div' + id + cls + '>');

    // swfobject v2+
    if (window.swfobject) {
        $(el).after($div).appendTo($div);
        if (!el.id) el.id = 'movie_player_' + counter++;

        // replace el with swfobject content
        swfobject.embedSWF(opts.src, el.id, opts.width, opts.height, opts.flashVersion,
            opts.expressInstaller, opts.flashvars, opts.params, opts.attrs);
    }
    // swfobject < v2
    else {
        $(el).after($div).remove();
        var so = new SWFObject(opts.src, 'movie_player_' + counter++, opts.width, opts.height, opts.flashVersion, opts.bgColor);
        if (opts.expressInstaller) so.useExpressInstall(opts.expressInstaller);

        for (var p in opts.params)
            if (p != 'bgColor') so.addParam(p, opts.params[p]);
        for (var f in opts.flashvars)
            so.addVariable(f, opts.flashvars[f]);
        so.write($div[0]);
    }

    if (opts.caption) $('<div>').appendTo($div).html(opts.caption);
    return $div;
};

// map flv and mp3 files to the swf player by default
$.fn.media.flv = $.fn.media.mp3 = function(el, opts) {
    var src = opts.src;
    var player = /\.mp3\b/i.test(src) ? $.fn.media.defaults.mp3Player : $.fn.media.defaults.flvPlayer;
    var key = opts.flvKeyName;
    src = encodeURIComponent(src);
    opts.src = player;
    opts.src = opts.src + '?'+key+'=' + (src);
    var srcObj = {};
    srcObj[key] = src;
    opts.flashvars = $.extend({}, srcObj, opts.flashvars );
    return $.fn.media.swf(el, opts);
};

//
//  Silverlight
//
$.fn.media.xaml = function(el, opts) {
    if (!window.Sys || !window.Sys.Silverlight) {
        if ($.fn.media.xaml.warning) return;
        $.fn.media.xaml.warning = 1;
        alert('You must include the Silverlight.js script.');
        return;
    }

    var props = {
        width: opts.width,
        height: opts.height,
        background: opts.bgColor,
        inplaceInstallPrompt: opts.silverlight.inplaceInstallPrompt,
        isWindowless: opts.silverlight.isWindowless,
        framerate: opts.silverlight.framerate,
        version: opts.silverlight.version
    };
    var events = {
        onError: opts.silverlight.onError,
        onLoad: opts.silverlight.onLoad
    };

    var id1 = el.id ? (' id="'+el.id+'"') : '';
    var id2 = opts.id || 'AG' + counter++;
    // convert element to div
    var cls = opts.cls ? (' class="' + opts.cls + '"') : '';
    var $div = $('<div' + id1 + cls + '>');
    $(el).after($div).remove();

    Sys.Silverlight.createObjectEx({
        source: opts.src,
        initParams: opts.silverlight.initParams,
        userContext: opts.silverlight.userContext,
        id: id2,
        parentElement: $div[0],
        properties: props,
        events: events
    });

    if (opts.caption) $('<div>').appendTo($div).html(opts.caption);
    return $div;
};

//
// generate object/embed markup
//
function generate(el, opts, player) {
    var $el = $(el);
    var o = $.fn.media.defaults.players[player];

    if (player == 'iframe') {
        var o = $('<iframe' + ' width="' + opts.width + '" height="' + opts.height + '" >');
        o.attr('src', opts.src);
        o.css('backgroundColor', o.bgColor);
    }
    else if ($.browser.msie) {
        var a = ['<object width="' + opts.width + '" height="' + opts.height + '" '];
        for (var key in opts.attrs)
            a.push(key + '="'+opts.attrs[key]+'" ');
        for (var key in o.oAttrs || {}) {
            var v = o.oAttrs[key];
            if (key == 'codebase' && window.location.protocol == 'https:')
                v = v.replace('http','https');
            a.push(key + '="'+v+'" ');
        }
        a.push('></ob'+'ject'+'>');
        var p = ['<param name="' + (o.oUrl || 'src') +'" value="' + opts.src + '">'];
        for (var key in opts.params)
            p.push('<param name="'+ key +'" value="' + opts.params[key] + '">');
        var o = document.createElement(a.join(''));
        for (var i=0; i < p.length; i++)
            o.appendChild(document.createElement(p[i]));
    }
    else {
        var a = ['<embed width="' + opts.width + '" height="' + opts.height + '" style="display:block"'];
        if (opts.src) a.push(' src="' + opts.src + '" ');
        for (var key in opts.attrs)
            a.push(key + '="'+opts.attrs[key]+'" ');
        for (var key in o.eAttrs || {})
            a.push(key + '="'+o.eAttrs[key]+'" ');
        for (var key in opts.params) {
            if (key == 'wmode' && player != 'flash') // FF3/Quicktime borks on wmode
            	continue;
            a.push(key + '="'+opts.params[key]+'" ');
        }
        a.push('></em'+'bed'+'>');
    }
    // convert element to div
    var id = el.id ? (' id="'+el.id+'"') : '';
    var cls = opts.cls ? (' class="' + opts.cls + '"') : '';
    var $div = $('<div' + id + cls + '>');
    $el.after($div).remove();
    ($.browser.msie || player == 'iframe') ? $div.append(o) : $div.html(a.join(''));
    if (opts.caption) $('<div>').appendTo($div).html(opts.caption);
    return $div;
};


})(jQuery);
;
/*
 * jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2008 M. Alsup
 * Version: 2.32 (21-DEC-2008)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
;eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}(';(4($){8 u=\'2.32\';8 x=$.28.29&&/3e 6.0/.1x(3f.3g);4 1l(){7(2a.2b&&2a.2b.1l)2a.2b.1l(\'[D] \'+3h.3i.3j.3k(2C,\'\'))};$.G.D=4(q){7(A.M==0){1l(\'2D; 3l 1I 2c 3m 3n\'+($.3o?\'\':\' (3p 1m 3q)\'));O A}8 r=2C[1];O A.1u(4(){7(q===3r||q===R)q={};7(q.2d==2E){3s(q){2e\'3t\':7(A.U)1y(A.U);A.U=0;$(A).1J(\'D.1R\',\'\');O;2e\'2f\':A.1i=1;O;2e\'2F\':A.1i=0;7(r===2g){q=$(A).1J(\'D.1R\');7(!q){1l(\'2G 1m 2c, 2H 1m 2F\');O}7(A.U){1y(A.U);A.U=0}1n(q.1I,q,1,1)}O;3u:q={1r:q}}}S 7(q.2d==3v){8 d=q;q=$(A).1J(\'D.1R\');7(!q){1l(\'2G 1m 2c, 2H 1m 1S 2I\');O}7(d<0||d>=q.1I.M){1l(\'3w 2I 1K: \'+d);O}q.Q=d;7(A.U){1y(A.U);A.U=0}1n(q.1I,q,1,d>=q.1d);O}7(A.U)1y(A.U);A.U=0;A.1i=0;8 e=$(A);8 f=q.2h?$(q.2h,A):e.3x();8 g=f.3y();7(g.M<2){1l(\'2D; 3z 3A 3B: \'+g.M);O}8 j=$.3C({},$.G.D.2J,q||{},$.2K?e.2K():$.3D?e.1J():{});7(j.2i)j.2j=j.2k||g.M;e.1J(\'D.1R\',j);j.1z=A;j.1I=g;j.J=j.J?[j.J]:[];j.1o=j.1o?[j.1o]:[];j.1o.1T(4(){j.2l=0});7(j.1A)j.1o.L(4(){1n(g,j,0,!j.1B)});7(x&&j.1U&&!j.2L)2m(f);8 k=A.3E;j.F=V((k.1L(/w:(\\d+)/)||[])[1])||j.F;j.E=V((k.1L(/h:(\\d+)/)||[])[1])||j.E;j.Y=V((k.1L(/t:(\\d+)/)||[])[1])||j.Y;7(e.9(\'1V\')==\'3F\')e.9(\'1V\',\'3G\');7(j.F)e.F(j.F);7(j.E&&j.E!=\'1W\')e.E(j.E);7(j.1b)j.1b=V(j.1b);7(j.1p){j.1s=[];1C(8 i=0;i<g.M;i++)j.1s.L(i);j.1s.3H(4(a,b){O 3I.1p()-0.5});j.14=0;j.1b=j.1s[0]}S 7(j.1b>=g.M)j.1b=0;8 l=j.1b||0;f.9({1V:\'2M\',B:0,y:0}).W().1u(4(i){8 z=l?i>=l?g.M-(i-l):l-i:g.M-i;$(A).9(\'z-1K\',z)});$(g[l]).9(\'1j\',1).X();7($.28.29)g[l].2N.2O(\'2n\');7(j.1q&&j.F)f.F(j.F);7(j.1q&&j.E&&j.E!=\'1W\')f.E(j.E);7(j.2P){8 m=0,1M=0;1C(8 i=0;i<g.M;i++){8 n=$(g[i]),w=n.3J(),h=n.3K();m=w>m?w:m;1M=h>1M?h:1M}e.9({F:m+\'Z\',E:1M+\'Z\'})}7(j.2f)e.2Q(4(){A.1i++},4(){A.1i--});8 o=$.G.D.P[j.1r];7($.2R(o))o(e,f,j);S 7(j.1r!=\'2o\')1l(\'3L 3M: \'+j.1r);f.1u(4(){8 a=$(A);A.17=(j.1q&&j.E)?j.E:a.E();A.18=(j.1q&&j.F)?j.F:a.F()});j.C=j.C||{};j.K=j.K||{};j.I=j.I||{};f.1m(\':2p(\'+l+\')\').9(j.C);7(j.1h)$(f[l]).9(j.1h);7(j.Y){j.Y=V(j.Y);7(j.1c.2d==2E)j.1c=$.1r.3N[j.1c]||V(j.1c);7(!j.1X)j.1c=j.1c/2;3O((j.Y-j.1c)<3P)j.Y+=j.1c}7(j.2q)j.1Y=j.1Z=j.2q;7(!j.1D)j.1D=j.1c;7(!j.1N)j.1N=j.1c;j.2S=g.M;j.1d=l;7(j.1p){j.Q=j.1d;7(++j.14==g.M)j.14=0;j.Q=j.1s[j.14]}S j.Q=j.1b>=(g.M-1)?0:j.1b+1;8 p=f[l];7(j.J.M)j.J[0].20(p,[p,p,j,2g]);7(j.1o.M>1)j.1o[1].20(p,[p,p,j,2g]);7(j.1O&&!j.19)j.19=j.1O;7(j.19)$(j.19).2r(\'1O\',4(){O 1S(g,j,j.1B?-1:1)});7(j.2s)$(j.2s).2r(\'1O\',4(){O 1S(g,j,j.1B?1:-1)});7(j.1t)2T(g,j);j.3Q=4(a,b){8 c=$(a),s=c[0];7(!j.2k)j.2j++;g[b?\'1T\':\'L\'](s);7(j.1e)j.1e[b?\'1T\':\'L\'](s);j.2S=g.M;c.9(\'1V\',\'2M\');c[b?\'3R\':\'2U\'](e);7(b){j.1d++;j.Q++}7(x&&j.1U&&!j.2L)2m(c);7(j.1q&&j.F)c.F(j.F);7(j.1q&&j.E&&j.E!=\'1W\')f.E(j.E);s.17=(j.1q&&j.E)?j.E:c.E();s.18=(j.1q&&j.F)?j.F:c.F();c.9(j.C);7(j.1t)$.G.D.2t(g.M-1,s,$(j.1t),g,j);7(21 j.11==\'4\')j.11(c)};7(j.Y||j.1A)A.U=22(4(){1n(g,j,0,!j.1B)},j.1A?10:j.Y+(j.2V||0))})};4 1n(a,b,c,d){7(b.2l)O;8 p=b.1z,1v=a[b.1d],19=a[b.Q];7(p.U===0&&!c)O;7(!c&&!p.1i&&((b.2i&&(--b.2j<=0))||(b.23&&!b.1p&&b.Q<b.1d))){7(b.2u)b.2u(b);O}7(c||!p.1i){7(b.J.M)$.1u(b.J,4(i,o){o.20(19,[1v,19,b,d])});8 e=4(){7($.28.29&&b.1U)A.2N.2O(\'2n\');$.1u(b.1o,4(i,o){o.20(19,[1v,19,b,d])})};7(b.Q!=b.1d){b.2l=1;7(b.24)b.24(1v,19,b,e,d);S 7($.2R($.G.D[b.1r]))$.G.D[b.1r](1v,19,b,e);S $.G.D.2o(1v,19,b,e,c&&b.2W)}7(b.1p){b.1d=b.Q;7(++b.14==a.M)b.14=0;b.Q=b.1s[b.14]}S{8 f=(b.Q+1)==a.M;b.Q=f?0:b.Q+1;b.1d=f?a.M-1:b.Q-1}7(b.1t)$.G.D.2v(b.1t,b.1d)}7(b.Y&&!b.1A)p.U=22(4(){1n(a,b,0,!b.1B)},2X(1v,19,b,d));S 7(b.1A&&p.1i)p.U=22(4(){1n(a,b,0,!b.1B)},10)};$.G.D.2v=4(a,b){$(a).3S(\'a\').3T(\'2Y\').2n(\'a:2p(\'+b+\')\').3U(\'2Y\')};4 2X(a,b,c,d){7(c.2w){8 t=c.2w(a,b,c,d);7(t!==1P)O t}O c.Y};4 1S(a,b,c){8 p=b.1z,Y=p.U;7(Y){1y(Y);p.U=0}7(b.1p&&c<0){b.14--;7(--b.14==-2)b.14=a.M-2;S 7(b.14==-1)b.14=a.M-1;b.Q=b.1s[b.14]}S 7(b.1p){7(++b.14==a.M)b.14=0;b.Q=b.1s[b.14]}S{b.Q=b.1d+c;7(b.Q<0){7(b.23)O 1P;b.Q=a.M-1}S 7(b.Q>=a.M){7(b.23)O 1P;b.Q=0}}7(b.25&&21 b.25==\'4\')b.25(c>0,b.Q,a[b.Q]);1n(a,b,1,c>=0);O 1P};4 2T(a,b){8 c=$(b.1t);$.1u(a,4(i,o){$.G.D.2t(i,o,c,a,b)});$.G.D.2v(b.1t,b.1b)};$.G.D.2t=4(i,b,c,d,e){8 a=(21 e.2x==\'4\')?e.2x(i,b):\'<a 3V="#">\'+(i+1)+\'</a>\';7(!a)O;8 f=$(a);7(f.3W(\'3X\').M==0)f.2U(c);f.2r(e.2Z,4(){e.Q=i;8 p=e.1z,Y=p.U;7(Y){1y(Y);p.U=0}7(21 e.2y==\'4\')e.2y(e.Q,d[e.Q]);1n(d,e,1,e.1d<i);O 1P});7(e.30)f.2Q(4(){e.1z.1i++},4(){e.1z.1i--})};4 2m(b){4 26(s){8 s=V(s).3Y(16);O s.M<2?\'0\'+s:s};4 31(e){1C(;e&&e.3Z.40()!=\'41\';e=e.42){8 v=$.9(e,\'33-34\');7(v.43(\'44\')>=0){8 a=v.1L(/\\d+/g);O\'#\'+26(a[0])+26(a[1])+26(a[2])}7(v&&v!=\'45\')O v}O\'#46\'};b.1u(4(){$(A).9(\'33-34\',31(A))})};$.G.D.2o=4(a,b,c,d,e){8 f=$(a),$n=$(b);$n.9(c.C);8 g=e?1:c.1D;8 h=e?1:c.1N;8 i=e?R:c.1Y;8 j=e?R:c.1Z;8 k=4(){$n.27(c.K,g,i,d)};f.27(c.I,h,j,4(){7(c.N)f.9(c.N);7(!c.1X)k()});7(c.1X)k()};$.G.D.P={35:4(b,c,d){c.1m(\':2p(\'+d.1b+\')\').9(\'1j\',0);d.J.L(4(){$(A).X()});d.K={1j:1};d.I={1j:0};d.C={1j:0};d.N={T:\'12\'};d.11=4(a){a.W()}}};$.G.D.47=4(){O u};$.G.D.2J={1r:\'35\',Y:48,2w:R,1A:0,1c:49,1D:R,1N:R,19:R,2s:R,25:R,1t:R,2y:R,2Z:\'1O\',2x:R,J:R,1o:R,2u:R,2q:R,1Y:R,1Z:R,1Q:R,K:R,I:R,C:R,N:R,24:R,E:\'1W\',1b:0,1X:1,1p:0,1q:0,2P:1,2f:0,30:0,2i:0,2k:0,2V:0,2h:R,1U:0,23:0,2W:0}})(36);(4($){$.G.D.P.4a=4(d,e,f){d.9(\'1a\',\'1f\');f.J.L(4(a,b,c){$(A).X();c.C.B=b.1E;c.I.B=0-a.1E});f.1h={B:0};f.K={B:0};f.N={T:\'12\'}};$.G.D.P.4b=4(d,e,f){d.9(\'1a\',\'1f\');f.J.L(4(a,b,c){$(A).X();c.C.B=0-b.1E;c.I.B=a.1E});f.1h={B:0};f.K={B:0};f.N={T:\'12\'}};$.G.D.P.4c=4(d,e,f){d.9(\'1a\',\'1f\');f.J.L(4(a,b,c){$(A).X();c.C.y=b.1F;c.I.y=0-a.1F});f.1h={y:0};f.K={y:0}};$.G.D.P.4d=4(d,e,f){d.9(\'1a\',\'1f\');f.J.L(4(a,b,c){$(A).X();c.C.y=0-b.1F;c.I.y=a.1F});f.1h={y:0};f.K={y:0}};$.G.D.P.4e=4(f,g,h){f.9(\'1a\',\'1f\').F();h.J.L(4(a,b,c,d){$(A).X();8 e=a.1F,2z=b.1F;c.C=d?{y:2z}:{y:-2z};c.K.y=0;c.I.y=d?-e:e;g.1m(a).9(c.C)});h.1h={y:0};h.N={T:\'12\'}};$.G.D.P.4f=4(f,g,h){f.9(\'1a\',\'1f\');h.J.L(4(a,b,c,d){$(A).X();8 e=a.1E,2A=b.1E;c.C=d?{B:-2A}:{B:2A};c.K.B=0;c.I.B=d?e:-e;g.1m(a).9(c.C)});h.1h={B:0};h.N={T:\'12\'}};$.G.D.P.4g=4(d,e,f){f.J.L(4(a,b,c){$(a).9(\'H\',1)});f.11=4(a){a.W()};f.C={H:2};f.K={F:\'X\'};f.I={F:\'W\'}};$.G.D.P.4h=4(d,e,f){f.J.L(4(a,b,c){$(a).9(\'H\',1)});f.11=4(a){a.W()};f.C={H:2};f.K={E:\'X\'};f.I={E:\'W\'}};$.G.D.P.1Q=4(g,h,j){8 w=g.9(\'1a\',\'37\').F();h.9({y:0,B:0});j.J.L(4(){$(A).X()});j.1c=j.1c/2;j.1p=0;j.1Q=j.1Q||{y:-w,B:15};j.1e=[];1C(8 i=0;i<h.M;i++)j.1e.L(h[i]);1C(8 i=0;i<j.1b;i++)j.1e.L(j.1e.38());j.24=4(a,b,c,d,e){8 f=e?$(a):$(b);f.27(c.1Q,c.1D,c.1Y,4(){e?c.1e.L(c.1e.38()):c.1e.1T(c.1e.4i());7(e)1C(8 i=0,2B=c.1e.M;i<2B;i++)$(c.1e[i]).9(\'z-1K\',2B-i);S{8 z=$(a).9(\'z-1K\');f.9(\'z-1K\',V(z)+1)}f.27({y:0,B:0},c.1N,c.1Z,4(){$(e?A:a).W();7(d)d()})})};j.11=4(a){a.W()}};$.G.D.P.4j=4(d,e,f){f.J.L(4(a,b,c){$(A).X();c.C.B=b.17;c.K.E=b.17});f.11=4(a){a.W()};f.1h={B:0};f.C={E:0};f.K={B:0};f.I={E:0};f.N={T:\'12\'}};$.G.D.P.4k=4(d,e,f){f.J.L(4(a,b,c){$(A).X();c.K.E=b.17;c.I.B=a.17});f.11=4(a){a.W()};f.1h={B:0};f.C={B:0,E:0};f.I={E:0};f.N={T:\'12\'}};$.G.D.P.4l=4(d,e,f){f.J.L(4(a,b,c){$(A).X();c.C.y=b.18;c.K.F=b.18});f.11=4(a){a.W()};f.C={F:0};f.K={y:0};f.I={F:0};f.N={T:\'12\'}};$.G.D.P.4m=4(d,e,f){f.J.L(4(a,b,c){$(A).X();c.K.F=b.18;c.I.y=a.18});f.11=4(a){a.W()};f.C={y:0,F:0};f.K={y:0};f.I={F:0};f.N={T:\'12\'}};$.G.D.P.39=4(d,e,f){f.1h={B:0,y:0};f.N={T:\'12\'};f.J.L(4(a,b,c){$(A).X();c.C={F:0,E:0,B:b.17/2,y:b.18/2};c.N={T:\'12\'};c.K={B:0,y:0,F:b.18,E:b.17};c.I={F:0,E:0,B:a.17/2,y:a.18/2};$(a).9(\'H\',2);$(b).9(\'H\',1)});f.11=4(a){a.W()}};$.G.D.P.4n=4(d,e,f){f.J.L(4(a,b,c){c.C={F:0,E:0,1j:1,y:b.18/2,B:b.17/2,H:1};c.K={B:0,y:0,F:b.18,E:b.17}});f.I={1j:0};f.N={H:0}};$.G.D.P.4o=4(d,e,f){8 w=d.9(\'1a\',\'1f\').F();e.X();f.J.L(4(a,b,c){$(a).9(\'H\',1)});f.C={y:w,H:2};f.N={H:1};f.K={y:0};f.I={y:w}};$.G.D.P.4p=4(d,e,f){8 h=d.9(\'1a\',\'1f\').E();e.X();f.J.L(4(a,b,c){$(a).9(\'H\',1)});f.C={B:h,H:2};f.N={H:1};f.K={B:0};f.I={B:h}};$.G.D.P.4q=4(d,e,f){8 h=d.9(\'1a\',\'1f\').E();8 w=d.F();e.X();f.J.L(4(a,b,c){$(a).9(\'H\',1)});f.C={B:h,y:w,H:2};f.N={H:1};f.K={B:0,y:0};f.I={B:h,y:w}};$.G.D.P.4r=4(d,e,f){f.J.L(4(a,b,c){c.C={y:A.18/2,F:0,H:2};c.K={y:0,F:A.18};c.I={y:0};$(a).9(\'H\',1)});f.11=4(a){a.W().9(\'H\',1)}};$.G.D.P.4s=4(d,e,f){f.J.L(4(a,b,c){c.C={B:A.17/2,E:0,H:2};c.K={B:0,E:A.17};c.I={B:0};$(a).9(\'H\',1)});f.11=4(a){a.W().9(\'H\',1)}};$.G.D.P.4t=4(d,e,f){f.J.L(4(a,b,c){c.C={y:b.18/2,F:0,H:1,T:\'1G\'};c.K={y:0,F:A.18};c.I={y:a.18/2,F:0};$(a).9(\'H\',2)});f.11=4(a){a.W()};f.N={H:1,T:\'12\'}};$.G.D.P.4u=4(d,e,f){f.J.L(4(a,b,c){c.C={B:b.17/2,E:0,H:1,T:\'1G\'};c.K={B:0,E:A.17};c.I={B:a.17/2,E:0};$(a).9(\'H\',2)});f.11=4(a){a.W()};f.N={H:1,T:\'12\'}};$.G.D.P.4v=4(e,f,g){8 d=g.3a||\'y\';8 w=e.9(\'1a\',\'1f\').F();8 h=e.E();g.J.L(4(a,b,c){c.C=c.C||{};c.C.H=2;c.C.T=\'1G\';7(d==\'3b\')c.C.y=-w;S 7(d==\'3c\')c.C.B=h;S 7(d==\'3d\')c.C.B=-h;S c.C.y=w;$(a).9(\'H\',1)});7(!g.K)g.K={y:0,B:0};7(!g.I)g.I={y:0,B:0};g.N=g.N||{};g.N.H=2;g.N.T=\'12\'};$.G.D.P.4w=4(e,f,g){8 d=g.3a||\'y\';8 w=e.9(\'1a\',\'1f\').F();8 h=e.E();g.J.L(4(a,b,c){c.C.T=\'1G\';7(d==\'3b\')c.I.y=w;S 7(d==\'3c\')c.I.B=-h;S 7(d==\'3d\')c.I.B=h;S c.I.y=-w;$(a).9(\'H\',2);$(b).9(\'H\',1)});g.11=4(a){a.W()};7(!g.K)g.K={y:0,B:0};g.C=g.C||{};g.C.B=0;g.C.y=0;g.N=g.N||{};g.N.H=1;g.N.T=\'12\'};$.G.D.P.4x=4(d,e,f){8 w=d.9(\'1a\',\'37\').F();8 h=d.E();f.J.L(4(a,b,c){$(a).9(\'H\',2);c.C.T=\'1G\';7(!c.I.y&&!c.I.B)c.I={y:w*2,B:-h/2,1j:0};S c.I.1j=0});f.11=4(a){a.W()};f.C={y:0,B:0,H:1,1j:1};f.K={y:0};f.N={H:2,T:\'12\'}};$.G.D.P.4y=4(o,p,q){8 w=o.9(\'1a\',\'1f\').F();8 h=o.E();q.C=q.C||{};8 s;7(q.1k){7(/4z/.1x(q.1k))s=\'1w(1g 1g \'+h+\'Z 1g)\';S 7(/4A/.1x(q.1k))s=\'1w(1g \'+w+\'Z \'+h+\'Z \'+w+\'Z)\';S 7(/4B/.1x(q.1k))s=\'1w(1g \'+w+\'Z 1g 1g)\';S 7(/4C/.1x(q.1k))s=\'1w(\'+h+\'Z \'+w+\'Z \'+h+\'Z 1g)\';S 7(/39/.1x(q.1k)){8 t=V(h/2);8 l=V(w/2);s=\'1w(\'+t+\'Z \'+l+\'Z \'+t+\'Z \'+l+\'Z)\'}}q.C.1k=q.C.1k||s||\'1w(1g 1g 1g 1g)\';8 d=q.C.1k.1L(/(\\d+)/g);8 t=V(d[0]),r=V(d[1]),b=V(d[2]),l=V(d[3]);q.J.L(4(g,i,j){7(g==i)O;8 k=$(g).9(\'H\',2);8 m=$(i).9({H:3,T:\'1G\'});8 n=1,1H=V((j.1D/13))-1;4 f(){8 a=t?t-V(n*(t/1H)):0;8 c=l?l-V(n*(l/1H)):0;8 d=b<h?b+V(n*((h-b)/1H||1)):h;8 e=r<w?r+V(n*((w-r)/1H||1)):w;m.9({1k:\'1w(\'+a+\'Z \'+e+\'Z \'+d+\'Z \'+c+\'Z)\'});(n++<=1H)?22(f,13):k.9(\'T\',\'12\')}f()});q.N={};q.K={y:0};q.I={y:0}}})(36);',62,287,'||||function|||if|var|css|||||||||||||||||||||||||left||this|top|cssBefore|cycle|height|width|fn|zIndex|animOut|before|animIn|push|length|cssAfter|return|transitions|nextSlide|null|else|display|cycleTimeout|parseInt|hide|show|timeout|px||onAddSlide|none||randomIndex|||cycleH|cycleW|next|overflow|startingSlide|speed|currSlide|els|hidden|0px|cssFirst|cyclePause|opacity|clip|log|not|go|after|random|fit|fx|randomMap|pager|each|curr|rect|test|clearTimeout|container|continuous|rev|for|speedIn|offsetHeight|offsetWidth|block|count|elements|data|index|match|maxh|speedOut|click|false|shuffle|opts|advance|unshift|cleartype|position|auto|sync|easeIn|easeOut|apply|typeof|setTimeout|nowrap|fxFn|prevNextClick|hex|animate|browser|msie|window|console|found|constructor|case|pause|true|slideExpr|autostop|countdown|autostopCount|busy|clearTypeFix|filter|custom|eq|easing|bind|prev|createPagerAnchor|end|updateActivePagerLink|timeoutFn|pagerAnchorBuilder|pagerClick|nextW|nextH|len|arguments|terminating|String|resume|options|can|slide|defaults|metadata|cleartypeNoBg|absolute|style|removeAttribute|containerResize|hover|isFunction|slideCount|buildPager|appendTo|delay|fastOnEvent|getTimeout|activeSlide|pagerEvent|pauseOnPagerHover|getBg||background|color|fade|jQuery|visible|shift|zoom|direction|right|up|down|MSIE|navigator|userAgent|Array|prototype|join|call|zero|by|selector|isReady|DOM|ready|undefined|switch|stop|default|Number|invalid|children|get|too|few|slides|extend|meta|className|static|relative|sort|Math|outerWidth|outerHeight|unknown|transition|speeds|while|250|addSlide|prependTo|find|removeClass|addClass|href|parents|body|toString|nodeName|toLowerCase|html|parentNode|indexOf|rgb|transparent|ffffff|ver|4000|1000|scrollUp|scrollDown|scrollLeft|scrollRight|scrollHorz|scrollVert|slideX|slideY|pop|turnUp|turnDown|turnLeft|turnRight|fadeZoom|blindX|blindY|blindZ|growX|growY|curtainX|curtainY|cover|uncover|toss|wipe|l2r|r2l|t2b|b2t'.split('|'),0,{}));

;
/**
 * jQuery lightBox plugin
 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name jquery-lightbox-0.5.js
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @version 0.5
 * @date April 11, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
 */
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(6($){$.2N.3g=6(4){4=23.2H({2B:\'#34\',2g:0.8,1d:F,1M:\'18/5-33-Y.16\',1v:\'18/5-1u-2Q.16\',1E:\'18/5-1u-2L.16\',1W:\'18/5-1u-2I.16\',19:\'18/5-2F.16\',1f:10,2A:3d,2s:\'1j\',2o:\'32\',2j:\'c\',2f:\'p\',2d:\'n\',h:[],9:0},4);f I=N;6 20(){1X(N,I);u F}6 1X(1e,I){$(\'1U, 1S, 1R\').l({\'1Q\':\'2E\'});1O();4.h.B=0;4.9=0;7(I.B==1){4.h.1J(v 1m(1e.17(\'J\'),1e.17(\'2v\')))}j{36(f i=0;i<I.B;i++){4.h.1J(v 1m(I[i].17(\'J\'),I[i].17(\'2v\')))}}2n(4.h[4.9][0]!=1e.17(\'J\')){4.9++}D()}6 1O(){$(\'m\').31(\'<e g="q-13"></e><e g="q-5"><e g="5-s-b-w"><e g="5-s-b"><1w g="5-b"><e 2V="" g="5-k"><a J="#" g="5-k-V"></a><a J="#" g="5-k-X"></a></e><e g="5-Y"><a J="#" g="5-Y-29"><1w W="\'+4.1M+\'"></a></e></e></e><e g="5-s-b-T-w"><e g="5-s-b-T"><e g="5-b-A"><1i g="5-b-A-1t"></1i><1i g="5-b-A-1g"></1i></e><e g="5-1s"><a J="#" g="5-1s-22"><1w W="\'+4.1W+\'"></a></e></e></e></e>\');f z=1D();$(\'#q-13\').l({2K:4.2B,2J:4.2g,S:z[0],P:z[1]}).1V();f R=1p();$(\'#q-5\').l({1T:R[1]+(z[3]/10),1c:R[0]}).E();$(\'#q-13,#q-5\').C(6(){1a()});$(\'#5-Y-29,#5-1s-22\').C(6(){1a();u F});$(G).2G(6(){f z=1D();$(\'#q-13\').l({S:z[0],P:z[1]});f R=1p();$(\'#q-5\').l({1T:R[1]+(z[3]/10),1c:R[0]})})}6 D(){$(\'#5-Y\').E();7(4.1d){$(\'#5-b,#5-s-b-T-w,#5-b-A-1g\').1b()}j{$(\'#5-b,#5-k,#5-k-V,#5-k-X,#5-s-b-T-w,#5-b-A-1g\').1b()}f Q=v 1j();Q.1P=6(){$(\'#5-b\').2D(\'W\',4.h[4.9][0]);1N(Q.S,Q.P);Q.1P=6(){}};Q.W=4.h[4.9][0]};6 1N(1o,1r){f 1L=$(\'#5-s-b-w\').S();f 1K=$(\'#5-s-b-w\').P();f 1n=(1o+(4.1f*2));f 1y=(1r+(4.1f*2));f 1I=1L-1n;f 2z=1K-1y;$(\'#5-s-b-w\').3f({S:1n,P:1y},4.2A,6(){2y()});7((1I==0)&&(2z==0)){7($.3e.3c){1H(3b)}j{1H(3a)}}$(\'#5-s-b-T-w\').l({S:1o});$(\'#5-k-V,#5-k-X\').l({P:1r+(4.1f*2)})};6 2y(){$(\'#5-Y\').1b();$(\'#5-b\').1V(6(){2u();2t()});2r()};6 2u(){$(\'#5-s-b-T-w\').38(\'35\');$(\'#5-b-A-1t\').1b();7(4.h[4.9][1]){$(\'#5-b-A-1t\').2p(4.h[4.9][1]).E()}7(4.h.B>1){$(\'#5-b-A-1g\').2p(4.2s+\' \'+(4.9+1)+\' \'+4.2o+\' \'+4.h.B).E()}}6 2t(){$(\'#5-k\').E();$(\'#5-k-V,#5-k-X\').l({\'K\':\'1C M(\'+4.19+\') L-O\'});7(4.9!=0){7(4.1d){$(\'#5-k-V\').l({\'K\':\'M(\'+4.1v+\') 1c 15% L-O\'}).11().1k(\'C\',6(){4.9=4.9-1;D();u F})}j{$(\'#5-k-V\').11().2m(6(){$(N).l({\'K\':\'M(\'+4.1v+\') 1c 15% L-O\'})},6(){$(N).l({\'K\':\'1C M(\'+4.19+\') L-O\'})}).E().1k(\'C\',6(){4.9=4.9-1;D();u F})}}7(4.9!=(4.h.B-1)){7(4.1d){$(\'#5-k-X\').l({\'K\':\'M(\'+4.1E+\') 2l 15% L-O\'}).11().1k(\'C\',6(){4.9=4.9+1;D();u F})}j{$(\'#5-k-X\').11().2m(6(){$(N).l({\'K\':\'M(\'+4.1E+\') 2l 15% L-O\'})},6(){$(N).l({\'K\':\'1C M(\'+4.19+\') L-O\'})}).E().1k(\'C\',6(){4.9=4.9+1;D();u F})}}2k()}6 2k(){$(d).30(6(12){2i(12)})}6 1G(){$(d).11()}6 2i(12){7(12==2h){U=2Z.2e;1x=27}j{U=12.2e;1x=12.2Y}14=2X.2W(U).2U();7((14==4.2j)||(14==\'x\')||(U==1x)){1a()}7((14==4.2f)||(U==37)){7(4.9!=0){4.9=4.9-1;D();1G()}}7((14==4.2d)||(U==39)){7(4.9!=(4.h.B-1)){4.9=4.9+1;D();1G()}}}6 2r(){7((4.h.B-1)>4.9){2c=v 1j();2c.W=4.h[4.9+1][0]}7(4.9>0){2b=v 1j();2b.W=4.h[4.9-1][0]}}6 1a(){$(\'#q-5\').2a();$(\'#q-13\').2T(6(){$(\'#q-13\').2a()});$(\'1U, 1S, 1R\').l({\'1Q\':\'2S\'})}6 1D(){f o,r;7(G.1h&&G.28){o=G.26+G.2R;r=G.1h+G.28}j 7(d.m.25>d.m.24){o=d.m.2P;r=d.m.25}j{o=d.m.2O;r=d.m.24}f y,H;7(Z.1h){7(d.t.1l){y=d.t.1l}j{y=Z.26}H=Z.1h}j 7(d.t&&d.t.1A){y=d.t.1l;H=d.t.1A}j 7(d.m){y=d.m.1l;H=d.m.1A}7(r<H){1z=H}j{1z=r}7(o<y){1B=o}j{1B=y}21=v 1m(1B,1z,y,H);u 21};6 1p(){f o,r;7(Z.1Z){r=Z.1Z;o=Z.2M}j 7(d.t&&d.t.1F){r=d.t.1F;o=d.t.1Y}j 7(d.m){r=d.m.1F;o=d.m.1Y}2q=v 1m(o,r);u 2q};6 1H(2C){f 2x=v 2w();1q=2h;3h{f 1q=v 2w()}2n(1q-2x<2C)};u N.11(\'C\').C(20)}})(23);',62,204,'||||settings|lightbox|function|if||activeImage||image||document|div|var|id|imageArray||else|nav|css|body||xScroll||jquery|yScroll|container|documentElement|return|new|box||windowWidth|arrPageSizes|details|length|click|_set_image_to_view|show|false|window|windowHeight|jQueryMatchedObj|href|background|no|url|this|repeat|height|objImagePreloader|arrPageScroll|width|data|keycode|btnPrev|src|btnNext|loading|self||unbind|objEvent|overlay|key||gif|getAttribute|images|imageBlank|_finish|hide|left|fixedNavigation|objClicked|containerBorderSize|currentNumber|innerHeight|span|Image|bind|clientWidth|Array|intWidth|intImageWidth|___getPageScroll|curDate|intImageHeight|secNav|caption|btn|imageBtnPrev|img|escapeKey|intHeight|pageHeight|clientHeight|pageWidth|transparent|___getPageSize|imageBtnNext|scrollTop|_disable_keyboard_navigation|___pause|intDiffW|push|intCurrentHeight|intCurrentWidth|imageLoading|_resize_container_image_box|_set_interface|onload|visibility|select|object|top|embed|fadeIn|imageBtnClose|_start|scrollLeft|pageYOffset|_initialize|arrayPageSize|btnClose|jQuery|offsetHeight|scrollHeight|innerWidth||scrollMaxY|link|remove|objPrev|objNext|keyToNext|keyCode|keyToPrev|overlayOpacity|null|_keyboard_action|keyToClose|_enable_keyboard_navigation|right|hover|while|txtOf|html|arrayPageScroll|_preload_neighbor_images|txtImage|_set_navigation|_show_image_data|title|Date|date|_show_image|intDiffH|containerResizeSpeed|overlayBgColor|ms|attr|hidden|blank|resize|extend|close|opacity|backgroundColor|next|pageXOffset|fn|offsetWidth|scrollWidth|prev|scrollMaxX|visible|fadeOut|toLowerCase|style|fromCharCode|String|DOM_VK_ESCAPE|event|keydown|append|of|ico|000|fast|for||slideDown||100|250|msie|400|browser|animate|lightBox|do'.split('|'),0,{}));
/*****************************************************************

typeface.js, version 0.12 | typefacejs.neocracy.org

Copyright (c) 2008 - 2009, David Chester davidchester@gmx.net 

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

*****************************************************************/

(function() {

var _typeface_js = {

	faces: {},

	loadFace: function(typefaceData) {

		var familyName = typefaceData.familyName.toLowerCase();
		
		if (!this.faces[familyName]) {
			this.faces[familyName] = {};
		}
		if (!this.faces[familyName][typefaceData.cssFontWeight]) {
			this.faces[familyName][typefaceData.cssFontWeight] = {};
		}

		var face = this.faces[familyName][typefaceData.cssFontWeight][typefaceData.cssFontStyle] = typefaceData;
		face.loaded = true;
	},

	log: function(message) {
		
		if (this.quiet) {
			return;
		}
		
		message = "typeface.js: " + message;
		
		if (this.customLogFn) {
			this.customLogFn(message);

		} else if (window.console && window.console.log) {
			window.console.log(message);
		}
		
	},
	
	pixelsFromPoints: function(face, style, points, dimension) {
		var pixels = points * parseInt(style.fontSize) * 72 / (face.resolution * 100);
		if (dimension == 'horizontal' && style.fontStretchPercent) {
			pixels *= style.fontStretchPercent;
		}
		return pixels;
	},

	pointsFromPixels: function(face, style, pixels, dimension) {
		var points = pixels * face.resolution / (parseInt(style.fontSize) * 72 / 100);
		if (dimension == 'horizontal' && style.fontStretchPrecent) {
			points *= style.fontStretchPercent;
		}
		return points;
	},

	cssFontWeightMap: {
		normal: 'normal',
		bold: 'bold',
		400: 'normal',
		700: 'bold'
	},

	cssFontStretchMap: {
		'ultra-condensed': 0.55,
		'extra-condensed': 0.77,
		'condensed': 0.85,
		'semi-condensed': 0.93,
		'normal': 1,
		'semi-expanded': 1.07,
		'expanded': 1.15,
		'extra-expanded': 1.23,
		'ultra-expanded': 1.45,
		'default': 1
	},
	
	fallbackCharacter: '.',

	configure: function(args) {
		var configurableOptionNames = [ 'customLogFn',  'customClassNameRegex', 'customTypefaceElementsList', 'quiet', 'verbose' ];
		
		for (var i = 0; i < configurableOptionNames.length; i++) {
			var optionName = configurableOptionNames[i];
			if (args[optionName]) {
				if (optionName == 'customLogFn') {
					if (typeof args[optionName] != 'function') {
						throw "customLogFn is not a function";
					} else {
						this.customLogFn = args.customLogFn;
					}
				} else {
					this[optionName] = args[optionName];
				}
			}
		}
	},

	getTextExtents: function(face, style, text) {
		var extentX = 0;
		var extentY = 0;
		var horizontalAdvance;
	
		for (var i = 0; i < text.length; i++) {
			var glyph = face.glyphs[text.charAt(i)] ? face.glyphs[text.charAt(i)] : face.glyphs[this.fallbackCharacter];
			var letterSpacingAdjustment = this.pointsFromPixels(face, style, style.letterSpacing);
			extentX += Math.max(glyph.ha, glyph.x_max) + letterSpacingAdjustment;
			horizontalAdvance += glyph.ha + letterSpacingAdjustment;
		}
		return { 
			x: extentX, 
			y: extentY,
			ha: horizontalAdvance
			
		};
	},

	pixelsFromCssAmount: function(cssAmount, defaultValue, element) {

		var matches = undefined;

		if (cssAmount == 'normal') {
			return defaultValue;

		} else if (matches = cssAmount.match(/([\-\d+\.]+)px/)) {
			return matches[1];

		} else {
			// thanks to Dean Edwards for this very sneaky way to get IE to convert 
			// relative values to pixel values
			
			var pixelAmount;
			
			var leftInlineStyle = element.style.left;
			var leftRuntimeStyle = element.runtimeStyle.left;

			element.runtimeStyle.left = element.currentStyle.left;
			if (cssAmount.match(/\d(em|%)$/)) {
				element.style.left = '1em';
			} else {
				element.style.left = cssAmount || 0;
			}

			pixelAmount = element.style.pixelLeft;
		
			element.style.left = leftInlineStyle;
			element.runtimeStyle.left = leftRuntimeStyle;
			
			return pixelAmount || defaultValue;
		}
	},

	capitalizeText: function(text) {
		return text.replace(/(^|\s)[a-z]/g, function(match) { return match.toUpperCase() } ); 
	},

	getElementStyle: function(e) {
		if (window.getComputedStyle) {
			return window.getComputedStyle(e, '');
		
		} else if (e.currentStyle) {
			return e.currentStyle;
		}
	},

	getRenderedText: function(e) {

		var browserStyle = this.getElementStyle(e.parentNode);

		var inlineStyleAttribute = e.parentNode.getAttribute('style');
		if (inlineStyleAttribute && typeof(inlineStyleAttribute) == 'object') {
			inlineStyleAttribute = inlineStyleAttribute.cssText;
		}

		if (inlineStyleAttribute) {

			var inlineStyleDeclarations = inlineStyleAttribute.split(/\s*\;\s*/);

			var inlineStyle = {};
			for (var i = 0; i < inlineStyleDeclarations.length; i++) {
				var declaration = inlineStyleDeclarations[i];
				var declarationOperands = declaration.split(/\s*\:\s*/);
				inlineStyle[declarationOperands[0]] = declarationOperands[1];
			}
		}

		var style = { 
			color: browserStyle.color, 
			fontFamily: browserStyle.fontFamily.split(/\s*,\s*/)[0].replace(/(^"|^'|'$|"$)/g, '').toLowerCase(), 
			fontSize: this.pixelsFromCssAmount(browserStyle.fontSize, 12, e.parentNode),
			fontWeight: this.cssFontWeightMap[browserStyle.fontWeight],
			fontStyle: browserStyle.fontStyle ? browserStyle.fontStyle : 'normal',
			fontStretchPercent: this.cssFontStretchMap[inlineStyle && inlineStyle['font-stretch'] ? inlineStyle['font-stretch'] : 'default'],
			textDecoration: browserStyle.textDecoration,
			lineHeight: this.pixelsFromCssAmount(browserStyle.lineHeight, 'normal', e.parentNode),
			letterSpacing: this.pixelsFromCssAmount(browserStyle.letterSpacing, 0, e.parentNode),
			textTransform: browserStyle.textTransform
		};

		var face;
		if (
			this.faces[style.fontFamily]  
			&& this.faces[style.fontFamily][style.fontWeight]
		) {
			face = this.faces[style.fontFamily][style.fontWeight][style.fontStyle];
		}

		var text = e.nodeValue;
		
		if (
			e.previousSibling 
			&& e.previousSibling.nodeType == 1 
			&& e.previousSibling.tagName != 'BR' 
			&& this.getElementStyle(e.previousSibling).display.match(/inline/)
		) {
			text = text.replace(/^\s+/, ' ');
		} else {
			text = text.replace(/^\s+/, '');
		}
		
		if (
			e.nextSibling 
			&& e.nextSibling.nodeType == 1 
			&& e.nextSibling.tagName != 'BR' 
			&& this.getElementStyle(e.nextSibling).display.match(/inline/)
		) {
			text = text.replace(/\s+$/, ' ');
		} else {
			text = text.replace(/\s+$/, '');
		}
		
		text = text.replace(/\s+/g, ' ');
	
		if (style.textTransform && style.textTransform != 'none') {
			switch (style.textTransform) {
				case 'capitalize':
					text = this.capitalizeText(text);
					break;
				case 'uppercase':
					text = text.toUpperCase();
					break;
				case 'lowercase':
					text = text.toLowerCase();
					break;
			}
		}

		if (!face) {
			var excerptLength = 12;
			var textExcerpt = text.substring(0, excerptLength);
			if (text.length > excerptLength) {
				textExcerpt += '...';
			}
		
			var fontDescription = style.fontFamily;
			if (style.fontWeight != 'normal') fontDescription += ' ' + style.fontWeight;
			if (style.fontStyle != 'normal') fontDescription += ' ' + style.fontStyle;
		
			this.log("couldn't find typeface font: " + fontDescription + ' for text "' + textExcerpt + '"');
			return;
		}
	
		var words = text.split(/\b(?=\w)/);

		var containerSpan = document.createElement('span');
		
		for (var i = 0; i < words.length; i++) {
			var word = words[i];
			var vectorElement = this.renderWord(face, style, word);
			if (vectorElement)
				containerSpan.appendChild(vectorElement);
		}

		return containerSpan;
	},

	renderDocument: function(callback) { 
		
		if (!callback)
			callback = function(e) { e.style.visibility = 'visible' };

		var elements = document.getElementsByTagName('*');
		
		var elementsLength = elements.length;
		for (var i = 0; i < elements.length; i++) {
			if (elements[i].className.match(/(^|\s)typeface-js(\s|$)/) || elements[i].tagName.match(/^(H1|H2|H3|H4|H5|H6)$/)) {
				this.replaceText(elements[i]);
				if (typeof callback == 'function') {
					callback(elements[i]);
				}
			}
		}
	},

	replaceText: function(e) {

		var childNodes = [];
		var childNodesLength = e.childNodes.length;

		for (var i = 0; i < childNodesLength; i++) {
			this.replaceText(e.childNodes[i]);
		}

		if (e.nodeType == 3 && e.nodeValue.match(/\S/)) {
			var parentNode = e.parentNode;
		
			var renderedText = this.getRenderedText(e);
			
			if (
				parentNode.tagName == 'A' 
				&& this.vectorBackend == 'vml'
				&& this.getElementStyle(parentNode).display == 'inline'
			) {
				// something of a hack, use inline-block to get IE to accept clicks in whitespace regions
				parentNode.style.display = 'inline-block';
				parentNode.style.cursor = 'pointer';
			}

			if (this.getElementStyle(parentNode).display == 'inline') {
				parentNode.style.display = 'inline-block';
			}

			if (renderedText) {	
				if (parentNode.replaceChild) {
					parentNode.replaceChild(renderedText, e);
				} else {
					parentNode.insertBefore(renderedText, e);
					parentNode.removeChild(e);
				}
				if (this.vectorBackend == 'vml') {
					renderedText.innerHTML = renderedText.innerHTML;
				}
			}
		}
	},

	applyElementVerticalMetrics: function(face, style, e) {

		if (style.lineHeight == 'normal') {
			style.lineHeight = this.pixelsFromPoints(face, style, face.lineHeight);
		}

		var cssLineHeightAdjustment = style.lineHeight - this.pixelsFromPoints(face, style, face.lineHeight);

		e.style.marginTop = Math.round( cssLineHeightAdjustment / 2 ) + 'px';
		e.style.marginBottom = Math.round( cssLineHeightAdjustment / 2) + 'px';
	
	},

	vectorBackends: {

		canvas: {

			_initializeSurface: function(face, style, text) {

				var extents = this.getTextExtents(face, style, text);

				var canvas = document.createElement('canvas');
				canvas.innerHTML = text;

				canvas.height = Math.round(this.pixelsFromPoints(face, style, face.lineHeight));

				canvas.width = Math.round(this.pixelsFromPoints(face, style, extents.x, 'horizontal'));
	
				this.applyElementVerticalMetrics(face, style, canvas);

				if (extents.x > extents.ha) 
					canvas.style.marginRight = Math.round(this.pixelsFromPoints(face, style, extents.x - extents.ha, 'horizontal')) + 'px';

				var ctx = canvas.getContext('2d');

				var pointScale = this.pixelsFromPoints(face, style, 1);
				ctx.scale(pointScale * style.fontStretchPercent, -1 * pointScale);
				ctx.translate(0, -1 * face.ascender);
				ctx.fillStyle = style.color;

				return { context: ctx, canvas: canvas };
			},

			_renderGlyph: function(ctx, face, char, style) {

				var glyph = face.glyphs[char];

				if (!glyph) {
					//this.log.error("glyph not defined: " + char);
					return this.renderGlyph(ctx, face, this.fallbackCharacter, style);
				}

				if (glyph.o) {

					var outline;
					if (glyph.cached_outline) {
						outline = glyph.cached_outline;
					} else {
						outline = glyph.o.split(' ');
						glyph.cached_outline = outline;
					}

					for (var i = 0; i < outline.length; ) {

						var action = outline[i++];

						switch(action) {
							case 'm':
								ctx.moveTo(outline[i++], outline[i++]);
								break;
							case 'l':
								ctx.lineTo(outline[i++], outline[i++]);
								break;

							case 'q':
								var cpx = outline[i++];
								var cpy = outline[i++];
								ctx.quadraticCurveTo(outline[i++], outline[i++], cpx, cpy);
								break;
						}
					}					
				}
				if (glyph.ha) {
					var letterSpacingPoints = 
						style.letterSpacing && style.letterSpacing != 'normal' ? 
							this.pointsFromPixels(face, style, style.letterSpacing) : 
							0;

					ctx.translate(glyph.ha + letterSpacingPoints, 0);
				}
			},

			_renderWord: function(face, style, text) {
				var surface = this.initializeSurface(face, style, text);
				var ctx = surface.context;
				var canvas = surface.canvas;
				ctx.beginPath();
				ctx.save();

				var chars = text.split('');
				for (var i = 0; i < chars.length; i++) {
					this.renderGlyph(ctx, face, chars[i], style);
				}

				ctx.fill();

				if (style.textDecoration == 'underline') {

					ctx.beginPath();
					ctx.moveTo(0, face.underlinePosition);
					ctx.restore();
					ctx.lineTo(0, face.underlinePosition);
					ctx.strokeStyle = style.color;
					ctx.lineWidth = face.underlineThickness;
					ctx.stroke();
				}

				return ctx.canvas;
			}
		},

		vml: {

			_initializeSurface: function(face, style, text) {

				var shape = document.createElement('v:shape');

				var extents = this.getTextExtents(face, style, text);
				
				shape.style.width = shape.style.height = style.fontSize + 'px'; 

				if (extents.x > extents.ha) {
					shape.style.marginRight = this.pixelsFromPoints(face, style, extents.x - extents.ha, 'horizontal') + 'px';
				}

				this.applyElementVerticalMetrics(face, style, shape);

				var resolutionScale = face.resolution * 100 / 72;
				shape.coordsize = (resolutionScale / style.fontStretchPercent) + "," + resolutionScale;
				
				shape.coordorigin = '0,' + face.ascender;
				shape.style.flip = 'y';

				shape.fillColor = style.color;
				shape.stroked = false;

				shape.path = 'hh m 0,' + face.ascender + ' l 0,' + face.descender + ' ';

				return shape;
			},

			_renderGlyph: function(shape, face, char, offsetX, style, vmlSegments) {

				var glyph = face.glyphs[char];

				if (!glyph) {
					this.log("glyph not defined: " + char);
					this.renderGlyph(shape, face, this.fallbackCharacter, offsetX, style);
					return;
				}
				
				vmlSegments.push('m');

				if (glyph.o) {
					
					var outline, outlineLength;
					
					if (glyph.cached_outline) {
						outline = glyph.cached_outline;
						outlineLength = outline.length;
					} else {
						outline = glyph.o.split(' ');
						outlineLength = outline.length;

						for (var i = 0; i < outlineLength;) {

							switch(outline[i++]) {
								case 'q':
									outline[i] = Math.round(outline[i++]);
									outline[i] = Math.round(outline[i++]);
								case 'm':
								case 'l':
									outline[i] = Math.round(outline[i++]);
									outline[i] = Math.round(outline[i++]);
									break;
							} 
						}	

						glyph.cached_outline = outline;
					}

					var prevX, prevY;
					
					for (var i = 0; i < outlineLength;) {

						var action = outline[i++];

						var x = outline[i++] + offsetX;
						var y = outline[i++];
	
						switch(action) {
							case 'm':
								vmlSegments.push('xm ', x, ',', y);
								break;
	
							case 'l':
								vmlSegments.push('l ', x, ',', y);
								break;

							case 'q':
								var cpx = outline[i++] + offsetX;
								var cpy = outline[i++];

								var cp1x = Math.round(prevX + 2.0 / 3.0 * (cpx - prevX));
								var cp1y = Math.round(prevY + 2.0 / 3.0 * (cpy - prevY));

								var cp2x = Math.round(cp1x + (x - prevX) / 3.0);
								var cp2y = Math.round(cp1y + (y - prevY) / 3.0);
								
								vmlSegments.push('c ', cp1x, ',', cp1y, ',', cp2x, ',', cp2y, ',', x, ',', y);
								break;
						}

						prevX = x;
						prevY = y;
					}					
				}

				vmlSegments.push('x e');
				return vmlSegments;
			},

			_renderWord: function(face, style, text) {
				var offsetX = 0;
				var shape = this.initializeSurface(face, style, text);
		
				var letterSpacingPoints = 
					style.letterSpacing && style.letterSpacing != 'normal' ? 
						this.pointsFromPixels(face, style, style.letterSpacing) : 
						0;

				letterSpacingPoints = Math.round(letterSpacingPoints);
				var chars = text.split('');
				var vmlSegments = [];
				for (var i = 0; i < chars.length; i++) {
					var char = chars[i];
					vmlSegments = this.renderGlyph(shape, face, char, offsetX, style, vmlSegments);
					offsetX += face.glyphs[char].ha + letterSpacingPoints ;	
				}

				// make sure to preserve trailing whitespace
				shape.path += vmlSegments.join('') + 'm ' + offsetX + ' 0 l ' + offsetX + ' ' + face.ascender;
				
				return shape;
			}

		}

	},

	setVectorBackend: function(backend) {

		this.vectorBackend = backend;
		var backendFunctions = ['renderWord', 'initializeSurface', 'renderGlyph'];

		for (var i = 0; i < backendFunctions.length; i++) {
			var backendFunction = backendFunctions[i];
			this[backendFunction] = this.vectorBackends[backend]['_' + backendFunction];
		}
	}
};

// IE won't accept real selectors...
var typefaceSelectors = ['.typeface-js', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'];

if (document.createStyleSheet) { 
	var styleSheet = document.createStyleSheet();
	for (var i = 0; i < typefaceSelectors.length; i++) {
		var selector = typefaceSelectors[i];
		styleSheet.addRule(selector, 'visibility: hidden');
	}

} else if (document.styleSheets && document.styleSheets.length) {
	var styleSheet = document.styleSheets[0];
	document.styleSheets[0].insertRule(typefaceSelectors.join(',') + ' { visibility: hidden; }', styleSheet.cssRules.length); 
}

var backend = !!(window.attachEvent && !window.opera) ? 'vml' : window.CanvasRenderingContext2D || document.createElement('canvas').getContext ? 'canvas' : null;

if (backend == 'vml') {

	document.namespaces.add("v","urn:schemas-microsoft-com:vml","#default#VML");

	var styleSheet = document.createStyleSheet();
	styleSheet.addRule('v\\:shape', "display: inline-block;");
}

_typeface_js.setVectorBackend(backend);

window._typeface_js = _typeface_js;
	
// based on code by Dean Edwards / Matthias Miller / John Resig

function typefaceInit() {

	// quit if this function has already been called
	if (arguments.callee.done) return;
	
	// flag this function so we don't do the same thing twice
	arguments.callee.done = true;

	// kill the timer
	if (window._typefaceTimer) clearInterval(_typefaceTimer);

	_typeface_js.renderDocument( function(e) { e.style.visibility = 'visible' } );
};

if (/WebKit/i.test(navigator.userAgent)) {

	var _typefaceTimer = setInterval(function() {
		if (/loaded|complete/.test(document.readyState)) {
			typefaceInit(); 
		}
	}, 10);
}

if (document.addEventListener) {
	window.addEventListener('DOMContentLoaded', function() { typefaceInit() }, false);
} 

/*@cc_on @*/
/*@if (@_win32)

document.write("<script id=__ie_onload_typeface defer src=javascript:void(0)><\/script>");
var script = document.getElementById("__ie_onload_typeface");
script.onreadystatechange = function() {
	if (this.readyState == "complete") {
		typefaceInit(); 
	}
};

/*@end @*/

try { console.log('initializing typeface.js') } catch(e) {};

})();
;
if (_typeface_js && _typeface_js.loadFace) _typeface_js.loadFace({"glyphs":{"S":{"x_min":72,"x_max":758,"ha":841,"o":"m 758 270 q 683 460 758 384 q 468 593 609 536 q 382 631 418 613 q 322 669 346 649 q 287 713 298 689 q 276 768 276 737 q 319 865 276 830 q 474 901 362 901 q 584 890 530 901 q 670 870 639 880 q 692 886 681 867 q 708 929 702 905 q 715 974 715 954 q 703 1001 715 997 q 677 1010 692 1005 q 635 1020 662 1015 q 566 1028 608 1025 q 460 1032 524 1032 q 303 1011 370 1032 q 191 954 235 990 q 125 871 147 919 q 104 769 104 823 q 126 652 104 701 q 188 568 149 603 q 278 506 227 532 q 384 457 328 479 q 477 415 439 435 q 537 372 514 395 q 570 322 560 349 q 580 263 580 296 q 561 195 580 222 q 513 151 543 168 q 440 127 482 135 q 351 120 398 120 q 258 126 298 120 q 189 140 219 132 q 137 157 159 149 q 102 171 116 165 q 87 154 94 172 q 76 110 80 135 q 72 63 72 85 q 77 36 72 41 q 178 -1 105 17 q 373 -20 251 -20 q 512 -6 444 -20 q 635 39 581 6 q 723 129 689 73 q 758 270 758 185 "},"¦":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"/":{"x_min":24.265625,"x_max":557,"ha":569,"o":"m 548 985 q 557 1017 557 1008 q 538 1027 557 1027 l 447 1027 q 411 1019 420 1027 q 394 988 402 1011 l 32 44 q 25 8 20 16 q 52 0 30 0 l 141 0 q 166 6 158 0 q 184 38 173 13 l 548 985 "},"y":{"x_min":28.640625,"x_max":701.71875,"ha":735,"o":"m 695 710 q 700 739 704 731 q 675 747 697 747 l 591 747 q 569 735 579 747 q 555 713 559 724 l 373 202 l 194 713 q 181 737 190 727 q 158 747 173 747 l 59 747 q 32 740 40 747 q 31 716 25 734 l 288 0 l 201 -246 q 200 -270 194 -262 q 222 -278 206 -278 l 295 -278 q 322 -270 312 -278 q 341 -243 333 -262 l 695 710 "},"≈":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"Ž":{"x_min":60,"x_max":775,"ha":832,"o":"m 775 26 l 775 107 q 764 126 775 122 q 725 131 754 131 l 279 131 l 736 894 q 754 925 742 904 q 766 958 766 947 l 766 1000 q 755 1013 766 1010 q 733 1017 745 1017 l 111 1017 q 82 1010 86 1017 q 77 991 78 1004 l 77 919 q 85 892 72 899 q 128 886 99 886 l 546 886 l 85 117 q 68 86 76 101 q 60 58 60 71 l 60 16 q 83 0 60 0 l 737 0 q 768 5 762 0 q 775 26 775 11 m 634 1287 q 627 1323 660 1323 l 574 1323 q 555 1321 563 1323 q 538 1306 547 1319 l 439 1175 l 340 1306 q 323 1321 329 1320 q 304 1323 317 1323 l 253 1323 q 245 1287 217 1323 l 371 1109 q 388 1089 381 1098 q 413 1080 395 1080 l 468 1080 q 491 1089 484 1080 q 507 1109 499 1098 l 634 1287 "},"Á":{"x_min":48.390625,"x_max":841.84375,"ha":888,"o":"m 836 45 l 554 972 q 536 1006 545 995 q 502 1016 526 1016 l 388 1016 q 354 1006 365 1016 q 337 972 344 995 l 55 45 q 49 6 45 13 q 65 0 52 0 l 165 0 q 187 6 181 0 q 200 36 193 13 l 258 230 l 604 230 l 663 36 q 674 6 670 13 q 697 0 677 0 l 806 0 q 836 6 826 0 q 836 45 847 12 m 566 354 l 295 354 l 431 818 l 566 354 m 662 1283 q 680 1312 681 1303 q 650 1322 679 1322 l 552 1322 q 528 1315 534 1322 q 511 1293 522 1308 l 383 1116 q 391 1080 359 1080 l 445 1080 q 470 1086 459 1080 q 490 1104 480 1093 l 662 1283 "},"g":{"x_min":71,"x_max":697,"ha":790,"o":"m 697 107 l 697 698 q 693 734 697 721 q 662 748 690 748 l 577 748 q 550 733 556 748 q 544 668 544 719 q 440 745 502 724 q 311 767 379 767 q 208 739 252 767 q 133 660 163 711 q 86 537 102 608 q 71 376 71 465 q 89 195 71 269 q 141 73 108 121 q 220 5 175 26 q 319 -15 265 -15 q 452 10 398 -15 q 544 86 506 35 q 544 61 544 79 q 544 36 544 43 q 507 -135 544 -84 q 393 -187 470 -187 q 290 -177 338 -187 q 205 -157 243 -167 q 162 -152 172 -149 q 152 -168 152 -155 l 152 -239 q 162 -264 152 -258 q 192 -275 172 -270 q 221 -282 204 -278 q 264 -290 239 -286 q 325 -295 290 -295 q 409 -295 361 -295 q 536 -273 482 -295 q 626 -204 590 -252 q 679 -80 662 -156 q 697 107 697 -3 m 533 221 q 523 183 533 205 q 494 141 513 161 q 447 106 474 121 q 383 91 419 91 q 271 150 308 91 q 235 309 235 208 l 235 426 q 273 595 235 530 q 381 661 311 661 q 451 643 422 661 q 498 600 480 626 q 524 544 516 574 q 533 487 533 513 l 533 221 "},"²":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"–":{"x_min":72,"x_max":894,"ha":959,"o":"m 894 391 l 894 459 q 882 482 894 479 q 842 486 870 486 l 113 486 q 81 482 90 486 q 72 454 72 479 l 72 386 q 80 363 72 369 q 109 357 88 357 l 842 357 q 884 363 874 357 q 894 391 894 369 "},"ë":{"x_min":71,"x_max":699,"ha":771,"o":"m 699 387 l 699 473 q 619 690 699 614 q 393 767 539 767 q 152 667 233 767 q 71 366 71 568 q 93 191 71 264 q 161 72 116 118 q 274 5 207 26 q 432 -15 341 -15 q 495 -12 462 -15 q 558 -5 529 -9 q 609 1 587 -2 q 637 8 630 5 q 674 23 665 17 q 684 50 684 30 l 684 119 q 674 135 684 131 q 644 132 664 139 q 575 113 625 125 q 438 102 525 102 q 284 154 340 102 q 229 328 229 207 l 641 328 q 690 342 681 328 q 699 387 699 357 m 546 460 q 543 439 546 445 q 530 434 541 434 l 251 434 q 234 440 236 434 q 233 461 233 446 q 242 540 233 503 q 270 605 251 578 q 319 650 289 633 q 391 667 349 667 q 511 613 477 667 q 546 460 546 560 m 625 908 l 625 994 q 618 1020 625 1013 q 586 1027 612 1027 l 499 1027 q 469 992 469 1027 l 469 910 q 476 882 469 893 q 513 871 484 871 l 594 871 q 619 882 613 871 q 625 908 625 893 m 327 905 l 327 988 q 320 1015 327 1004 q 290 1027 313 1027 l 201 1027 q 175 1015 180 1027 q 171 988 171 1004 l 171 898 q 177 876 171 882 q 208 871 184 871 l 294 871 q 320 880 314 871 q 327 905 327 890 "},"ƒ":{"x_min":18,"x_max":460,"ha":524,"o":"m 460 649 l 460 698 q 454 719 460 712 q 426 726 448 726 l 335 726 q 307 770 318 744 q 296 833 296 796 q 315 897 296 876 q 362 918 334 918 q 397 915 386 918 q 430 908 408 913 q 440 923 434 908 q 449 958 446 938 q 453 994 453 977 q 448 1013 453 1011 q 398 1026 430 1020 q 322 1032 366 1032 q 237 1016 272 1032 q 180 975 202 1001 q 148 917 158 949 q 139 851 139 884 q 148 769 139 798 q 165 725 157 741 l 96 725 q 74 695 74 725 l 74 648 q 79 625 74 631 q 104 619 85 619 l 177 619 l 177 26 q 156 -37 177 -15 q 108 -60 136 -60 q 74 -57 85 -60 q 40 -50 64 -55 q 28 -64 33 -48 q 20 -99 23 -79 q 18 -135 18 -118 q 23 -154 18 -153 q 72 -167 40 -161 q 148 -173 104 -173 q 293 -123 249 -173 q 338 9 338 -73 l 338 619 l 426 619 q 453 628 447 619 q 460 649 460 637 "},"Î":{"x_min":-10,"x_max":402.890625,"ha":390,"o":"m 279 31 l 279 978 q 274 1009 279 1001 q 251 1017 270 1017 l 148 1017 q 117 1011 124 1017 q 111 986 111 1005 l 111 38 q 117 7 111 15 q 142 0 123 0 l 249 0 q 274 6 269 0 q 279 31 279 13 m 391 1116 l 265 1293 q 248 1313 255 1304 q 223 1322 241 1322 l 167 1322 q 144 1313 152 1322 q 128 1293 137 1304 l 2 1116 q -10 1089 -10 1099 q 8 1080 -10 1080 l 61 1080 q 80 1082 73 1080 q 98 1096 87 1084 l 197 1227 l 295 1096 q 312 1082 305 1084 q 331 1080 319 1080 l 383 1080 q 391 1116 417 1080 "},"e":{"x_min":71,"x_max":699,"ha":771,"o":"m 699 387 l 699 473 q 619 690 699 614 q 393 767 539 767 q 152 667 233 767 q 71 366 71 568 q 93 191 71 264 q 162 72 116 118 q 274 5 207 26 q 432 -15 341 -15 q 496 -12 462 -15 q 558 -5 529 -9 q 609 1 587 -2 q 638 8 631 5 q 674 23 665 17 q 684 50 684 30 l 684 119 q 674 135 684 131 q 644 132 664 139 q 575 113 625 125 q 439 102 525 102 q 284 154 340 102 q 229 328 229 207 l 642 328 q 690 342 681 328 q 699 387 699 357 m 546 460 q 543 439 546 445 q 530 434 541 434 l 251 434 q 234 440 236 434 q 233 461 233 446 q 242 540 233 503 q 270 605 251 578 q 319 650 289 633 q 391 667 349 667 q 511 613 477 667 q 546 460 546 560 "},"Ã":{"x_min":48.390625,"x_max":841.84375,"ha":888,"o":"m 836 45 l 554 972 q 536 1006 545 995 q 502 1016 526 1016 l 388 1016 q 354 1006 365 1016 q 337 972 344 995 l 55 45 q 49 6 45 13 q 65 0 52 0 l 165 0 q 187 6 181 0 q 200 36 193 13 l 258 230 l 604 230 l 663 36 q 674 6 670 13 q 697 0 677 0 l 806 0 q 836 6 826 0 q 836 45 847 12 m 566 354 l 295 354 l 431 818 l 566 354 m 701 1248 q 695 1268 708 1263 l 640 1286 q 620 1278 627 1293 q 588 1239 609 1257 q 538 1222 568 1222 q 496 1234 519 1222 q 448 1261 473 1246 q 398 1287 423 1275 q 350 1300 373 1300 q 298 1286 322 1300 q 255 1253 275 1273 q 221 1210 236 1233 q 198 1168 206 1187 q 204 1150 193 1156 l 255 1124 q 266 1122 262 1121 q 276 1132 270 1122 q 309 1168 287 1151 q 355 1185 331 1185 q 396 1173 375 1185 q 440 1147 418 1161 q 488 1120 463 1132 q 536 1109 512 1109 q 631 1147 591 1109 q 701 1248 670 1186 "},"J":{"x_min":26.296875,"x_max":372,"ha":483,"o":"m 372 224 l 372 971 q 364 1007 372 998 q 332 1017 356 1017 l 227 1017 q 205 1008 210 1017 q 201 980 201 1000 l 201 286 q 201 226 201 252 q 194 179 201 199 q 175 144 188 159 q 141 115 162 129 q 52 67 110 95 q 28 50 34 61 q 30 20 23 40 l 60 -65 q 95 -82 70 -91 q 154 -59 116 -73 q 230 -23 192 -44 q 338 70 305 15 q 372 224 372 126 "},"»":{"x_min":96.46875,"x_max":738.890625,"ha":785,"o":"m 427 446 l 225 746 q 205 767 213 761 q 183 764 197 773 l 115 722 q 115 685 95 711 l 283 446 l 105 200 q 96 177 95 184 q 111 163 97 170 l 180 126 q 200 124 193 119 q 216 140 208 129 l 427 446 m 738 446 l 536 746 q 516 767 525 761 q 494 764 508 773 l 426 722 q 426 685 406 711 l 594 446 l 416 200 q 407 177 406 184 q 422 163 408 170 l 491 126 q 511 124 504 119 q 527 140 519 129 l 738 446 "},"∆":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"©":{"x_min":35,"x_max":1021,"ha":1056,"o":"m 1021 496 q 982 690 1021 600 q 877 847 944 780 q 721 953 811 914 q 528 992 630 992 q 334 953 425 992 q 178 847 244 914 q 73 690 111 780 q 35 496 35 600 q 73 301 35 391 q 178 144 111 211 q 334 38 244 77 q 528 0 425 0 q 721 38 630 0 q 877 144 811 77 q 982 301 944 211 q 1021 496 1021 391 m 946 496 q 913 327 946 405 q 823 192 880 249 q 690 101 766 134 q 528 69 614 69 q 365 101 441 69 q 232 192 289 134 q 142 327 175 249 q 110 496 110 405 q 142 664 110 586 q 232 799 175 742 q 365 890 289 857 q 528 923 441 923 q 690 890 614 923 q 823 799 766 857 q 913 664 880 742 q 946 496 946 586 m 677 727 q 643 745 669 733 q 555 757 616 757 q 453 743 493 757 q 389 704 412 729 q 358 648 367 680 q 349 580 349 616 l 349 386 q 398 272 349 314 q 540 231 447 231 q 623 239 589 231 q 673 257 658 247 q 675 270 675 258 q 672 294 675 282 q 665 317 669 307 q 658 326 661 328 q 620 312 645 322 q 547 302 594 302 q 442 394 442 302 l 442 573 q 471 657 442 631 q 562 683 501 683 q 621 674 601 683 q 654 660 641 666 q 660 669 655 659 q 670 691 665 678 q 677 714 675 704 q 677 727 679 724 "},"˘":{"x_min":140,"x_max":540.09375,"ha":658,"o":"m 535 1038 q 540 1061 538 1049 q 521 1073 541 1073 l 471 1073 q 444 1054 451 1073 q 406 971 428 1006 q 340 937 384 937 q 273 971 296 937 q 235 1054 249 1005 q 207 1073 230 1073 l 159 1073 q 140 1062 140 1073 q 142 1041 140 1052 q 169 966 153 1002 q 210 904 185 931 q 266 863 234 878 q 340 848 298 848 q 463 900 416 848 q 535 1038 510 953 "},"≥":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"ò":{"x_min":71,"x_max":742,"ha":813,"o":"m 742 371 q 720 553 742 478 q 657 676 698 628 q 555 745 615 723 q 418 767 494 767 q 275 745 339 767 q 166 676 211 723 q 96 553 121 629 q 71 369 71 478 q 93 185 71 258 q 160 66 116 111 q 267 3 204 22 q 411 -15 330 -15 q 654 83 566 -15 q 742 371 742 182 m 583 321 q 538 154 583 216 q 414 91 493 91 q 344 103 376 91 q 288 141 312 115 q 249 207 263 166 q 236 304 236 247 l 236 440 q 286 607 236 554 q 412 660 336 660 q 492 644 459 660 q 545 599 525 628 q 574 532 565 571 q 583 447 583 493 l 583 321 m 526 866 l 400 1043 q 382 1065 388 1058 q 356 1072 375 1072 l 259 1072 q 230 1062 231 1072 q 248 1033 229 1053 l 420 854 q 441 836 430 843 q 465 830 451 830 l 519 830 q 526 866 552 830 "},"^":{"x_min":85.953125,"x_max":651.546875,"ha":731,"o":"m 641 538 l 447 977 q 428 1009 436 999 q 400 1019 420 1019 l 327 1019 q 304 1006 312 1019 q 287 973 297 994 l 95 538 q 86 500 84 510 q 108 490 87 490 l 175 490 q 204 503 197 490 q 222 541 212 516 l 368 881 l 513 541 q 531 503 525 516 q 562 490 538 490 l 629 490 q 651 500 650 490 q 641 538 652 510 "},"«":{"x_min":47,"x_max":687.625,"ha":784,"o":"m 369 200 l 192 444 l 360 685 q 372 708 372 700 q 360 725 372 716 l 291 764 q 270 767 278 772 q 252 747 262 762 l 47 444 l 258 143 q 274 124 266 129 q 295 126 283 119 l 365 165 q 369 200 385 175 m 680 200 l 503 444 l 671 685 q 683 708 683 700 q 671 725 683 716 l 602 764 q 581 767 589 772 q 563 747 573 762 l 358 444 l 569 143 q 585 124 577 129 q 606 126 594 119 l 676 165 q 680 200 696 175 "},"D":{"x_min":111,"x_max":819,"ha":922,"o":"m 819 316 l 819 689 q 786 853 819 789 q 698 953 753 916 q 571 1003 642 989 q 421 1017 499 1017 l 140 1017 q 115 1004 120 1017 q 111 971 111 991 l 111 48 q 121 10 111 20 q 145 0 131 0 l 467 0 q 578 9 517 0 q 693 52 639 19 q 782 148 746 86 q 819 316 819 211 m 651 335 q 630 228 651 269 q 578 167 610 188 q 505 139 545 145 q 424 133 464 133 l 312 133 q 282 141 288 133 q 276 164 276 149 l 276 855 q 280 878 276 871 q 307 885 285 885 l 423 885 q 589 837 527 885 q 651 677 651 790 l 651 335 "},"ł":{"x_min":-42.421875,"x_max":385.53125,"ha":338,"o":"m 379 597 l 343 655 q 323 669 334 673 q 287 651 311 665 l 246 627 l 246 990 q 241 1022 246 1013 q 212 1032 237 1032 l 125 1032 q 98 1022 104 1032 q 92 994 92 1013 l 92 542 l -12 484 q -39 462 -33 470 q -34 433 -46 455 l 0 374 q 19 358 8 358 q 47 369 29 358 l 92 394 l 92 45 q 98 8 92 16 q 126 0 104 0 l 218 0 q 241 10 237 0 q 246 48 246 20 l 246 480 q 261 490 246 480 q 298 510 277 499 q 334 531 318 521 q 350 540 350 540 q 383 567 377 556 q 379 597 389 577 "},"ÿ":{"x_min":28.203125,"x_max":701.109375,"ha":734,"o":"m 695 710 q 700 739 703 731 q 674 747 696 747 l 590 747 q 568 735 578 747 q 554 713 559 724 l 373 202 l 194 713 q 181 737 189 727 q 157 747 173 747 l 59 747 q 32 740 39 747 q 31 716 24 734 l 288 0 l 201 -246 q 200 -270 194 -262 q 221 -278 206 -278 l 295 -278 q 322 -270 312 -278 q 341 -243 333 -262 l 695 710 m 598 908 l 598 994 q 591 1020 598 1013 q 559 1027 585 1027 l 472 1027 q 442 992 442 1027 l 442 910 q 449 882 442 893 q 486 871 457 871 l 567 871 q 592 882 586 871 q 598 908 598 893 m 300 905 l 300 988 q 293 1015 300 1004 q 263 1027 286 1027 l 174 1027 q 148 1015 153 1027 q 144 988 144 1004 l 144 898 q 150 876 144 882 q 181 871 157 871 l 267 871 q 293 880 287 871 q 300 905 300 890 "},"Ł":{"x_min":2.796875,"x_max":684.390625,"ha":711,"o":"m 684 26 l 684 98 q 681 119 684 113 q 658 126 678 126 l 314 126 q 290 130 298 126 q 283 152 283 135 l 283 478 l 414 555 q 448 582 442 572 q 444 612 453 592 l 408 670 q 387 684 399 688 q 352 666 376 680 l 283 627 l 283 970 q 276 1007 283 998 q 245 1016 269 1016 l 145 1016 q 120 1008 126 1016 q 115 980 115 1000 l 115 530 q 102 523 115 530 q 74 508 90 516 q 45 492 58 499 q 33 484 33 484 q 5 462 12 470 q 10 433 -1 455 l 45 374 q 64 358 53 358 q 92 369 74 358 l 115 381 l 115 48 q 119 10 115 20 q 144 0 124 0 l 651 0 q 677 3 670 0 q 684 26 684 6 "},"í":{"x_min":92,"x_max":415.546875,"ha":338,"o":"m 246 48 l 246 706 q 241 738 246 729 q 212 748 237 748 l 125 748 q 98 737 104 748 q 92 706 92 727 l 92 48 q 96 10 92 20 q 121 0 101 0 l 218 0 q 241 10 237 0 q 246 48 246 20 m 397 1034 q 415 1063 416 1053 q 384 1073 414 1073 l 287 1073 q 263 1066 269 1073 q 246 1043 257 1059 l 118 866 q 126 830 94 830 l 180 830 q 205 836 194 830 q 225 855 215 843 l 397 1034 "},"ˆ":{"x_min":132,"x_max":544.78125,"ha":658,"o":"m 533 866 l 407 1043 q 390 1063 397 1054 q 365 1073 383 1073 l 309 1073 q 286 1063 294 1073 q 270 1043 279 1054 l 144 866 q 132 839 132 849 q 150 830 132 830 l 203 830 q 222 832 215 830 q 240 846 229 834 l 338 977 l 437 846 q 454 832 447 834 q 473 830 461 830 l 525 830 q 533 866 559 830 "},"w":{"x_min":21.84375,"x_max":946.625,"ha":964,"o":"m 941 711 q 945 740 948 732 q 920 748 943 748 l 844 748 q 822 736 831 748 q 808 714 812 725 l 661 171 l 520 714 q 506 738 515 728 q 483 748 498 748 l 391 748 q 365 741 373 748 q 363 717 356 735 l 416 528 l 322 171 l 180 714 q 168 738 176 728 q 144 748 159 748 l 52 748 q 26 741 34 748 q 25 717 18 735 l 213 38 q 231 11 220 23 q 262 0 243 0 l 333 0 q 362 6 352 0 q 383 41 372 13 l 475 351 l 558 38 q 575 11 563 23 q 606 0 586 0 l 693 0 q 722 6 712 0 q 743 41 731 13 l 941 711 "},"$":{"x_min":69,"x_max":755,"ha":834,"o":"m 755 272 q 680 462 755 386 q 466 596 606 539 q 319 671 366 635 q 273 769 273 708 q 316 869 273 832 q 472 906 360 906 q 587 894 532 906 q 668 875 642 882 q 689 891 679 872 q 706 932 700 910 q 712 976 712 955 q 700 1001 712 997 q 679 1008 692 1004 q 648 1017 667 1013 q 601 1025 629 1022 q 532 1029 572 1029 l 532 1123 q 529 1157 532 1147 q 506 1167 526 1167 l 408 1167 q 373 1158 381 1167 q 365 1126 365 1150 l 365 1023 q 245 990 295 1015 q 163 932 195 966 q 116 856 131 898 q 101 769 101 813 q 123 652 101 701 q 185 568 146 604 q 275 506 224 532 q 381 458 326 480 q 474 416 437 436 q 534 373 511 396 q 567 323 557 350 q 577 264 577 297 q 558 196 577 223 q 510 152 540 169 q 437 128 479 136 q 348 121 395 121 q 255 127 295 121 q 186 141 216 133 q 134 159 156 150 q 99 172 113 168 q 84 154 91 173 q 73 110 77 135 q 69 62 69 85 q 74 37 69 41 q 162 1 99 19 q 333 -17 225 -17 l 333 -97 q 341 -134 333 -125 q 371 -143 349 -143 l 470 -143 q 493 -135 488 -143 q 498 -104 498 -128 l 498 -5 q 598 24 552 3 q 680 78 645 44 q 734 160 714 112 q 755 272 755 208 "},"∫":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"\\":{"x_min":14,"x_max":548.125,"ha":569,"o":"m 540 44 l 177 988 q 159 1019 168 1011 q 124 1027 151 1027 l 32 1027 q 14 1017 14 1027 q 23 985 14 1008 l 387 38 q 405 6 397 13 q 430 0 414 0 l 519 0 q 546 8 541 0 q 540 44 551 16 "},"Ì":{"x_min":-30.75,"x_max":279,"ha":390,"o":"m 279 31 l 279 978 q 274 1009 279 1001 q 251 1017 270 1017 l 148 1017 q 117 1011 124 1017 q 111 986 111 1005 l 111 38 q 117 7 111 15 q 142 0 123 0 l 249 0 q 274 6 269 0 q 279 31 279 13 m 265 1116 l 138 1293 q 120 1316 127 1309 q 95 1323 113 1323 l -1 1323 q -30 1313 -29 1323 q -12 1284 -32 1303 l 159 1105 q 179 1086 169 1093 q 204 1080 190 1080 l 258 1080 q 265 1116 291 1080 "},"µ":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"Ç":{"x_min":103,"x_max":764.125,"ha":833,"o":"m 761 973 q 736 989 752 979 q 691 1009 720 999 q 620 1025 662 1018 q 518 1032 577 1032 q 312 1004 393 1032 q 185 927 232 976 q 121 815 139 879 q 103 677 103 750 l 103 284 q 188 68 103 149 q 433 -11 273 -11 l 433 -108 q 436 -116 433 -115 q 446 -115 439 -117 q 470 -112 460 -112 q 523 -123 504 -112 q 542 -165 542 -133 q 519 -205 542 -193 q 462 -217 497 -217 q 417 -208 437 -217 q 388 -187 398 -200 q 376 -187 385 -183 q 359 -200 367 -192 q 346 -218 351 -208 q 348 -235 342 -228 q 397 -273 372 -263 q 468 -284 423 -284 q 584 -254 537 -284 q 631 -165 631 -224 q 598 -84 631 -111 q 514 -57 565 -57 l 514 -17 q 664 0 600 -17 q 754 32 727 15 q 757 57 757 36 q 751 101 757 78 q 737 141 745 124 q 722 158 729 159 q 691 145 709 153 q 645 128 672 137 q 582 114 618 120 q 500 108 547 108 q 417 117 458 108 q 344 150 376 127 q 292 210 312 173 q 272 305 272 248 l 272 666 q 331 842 272 784 q 532 901 391 901 q 598 896 569 901 q 649 885 628 891 q 687 871 671 878 q 715 859 703 864 q 730 873 721 857 q 748 910 740 889 q 761 950 757 931 q 761 973 766 969 "},"’":{"x_min":58.046875,"x_max":283.90625,"ha":346,"o":"m 282 993 q 280 1016 285 1008 q 252 1024 275 1024 l 145 1024 q 125 1015 130 1024 q 119 990 120 1007 q 113 937 119 967 q 99 876 107 907 q 80 816 91 846 q 59 761 70 786 q 59 746 56 754 q 70 732 63 738 q 87 727 77 727 q 106 733 96 727 q 216 842 167 775 q 282 993 264 910 "},"-":{"x_min":111,"x_max":604,"ha":712,"o":"m 604 391 l 604 459 q 592 482 604 479 q 552 486 580 486 l 154 486 q 120 482 130 486 q 111 454 111 479 l 111 386 q 120 363 111 369 q 149 357 129 357 l 552 357 q 594 363 584 357 q 604 391 604 369 "},"Q":{"x_min":103,"x_max":887.71875,"ha":960,"o":"m 883 -119 q 886 -87 890 -98 q 863 -70 882 -77 q 818 -46 840 -60 q 778 -17 797 -32 q 745 11 759 -2 q 723 36 732 25 q 774 75 750 52 q 817 132 798 97 q 846 211 836 166 q 857 316 857 256 l 857 687 q 827 853 857 787 q 745 959 797 919 q 624 1015 693 998 q 479 1032 555 1032 q 195 950 287 1032 q 103 683 103 869 l 103 272 q 143 116 103 174 q 241 28 183 58 q 366 -10 300 -2 q 483 -19 432 -19 q 568 -14 519 -19 q 634 -89 598 -55 q 705 -151 670 -124 q 769 -194 740 -177 q 816 -217 798 -212 q 855 -201 844 -228 l 883 -119 m 689 335 q 673 225 689 267 q 628 159 657 182 q 562 127 600 135 q 483 119 525 119 q 406 128 444 119 q 337 160 368 138 q 286 219 305 182 q 267 309 267 256 l 267 672 q 278 768 267 726 q 314 839 289 811 q 382 881 340 866 q 486 896 425 896 q 637 843 586 896 q 689 677 689 791 l 689 335 "},"M":{"x_min":111,"x_max":998,"ha":1109,"o":"m 998 37 l 998 969 q 995 1005 998 993 q 968 1017 992 1017 l 856 1017 q 812 987 829 1017 l 566 574 q 547 575 556 560 l 297 990 q 276 1012 285 1008 q 251 1017 266 1017 l 145 1017 q 119 1008 127 1017 q 111 972 111 1000 l 111 45 q 124 6 111 12 q 155 0 137 0 l 245 0 q 274 9 269 0 q 279 36 279 18 l 279 745 q 301 747 279 784 l 497 394 q 515 362 510 369 q 535 356 520 356 l 566 356 q 583 362 577 356 q 602 393 588 369 l 809 754 q 824 773 820 773 q 829 753 829 773 l 829 45 q 837 9 829 18 q 873 0 845 0 l 966 0 q 992 9 986 0 q 998 37 998 18 "},"⋅":{"x_min":78,"x_max":263,"ha":341,"o":"m 263 400 l 263 475 q 256 498 263 490 q 219 507 250 507 l 105 507 q 84 495 91 507 q 78 469 78 483 l 78 394 q 87 363 78 376 q 122 350 96 350 l 229 350 q 259 365 256 350 q 263 400 263 381 "},"C":{"x_min":103,"x_max":764.125,"ha":833,"o":"m 761 973 q 736 989 752 979 q 691 1009 720 999 q 620 1025 662 1018 q 518 1032 577 1032 q 312 1004 393 1032 q 185 928 232 976 q 121 816 139 880 q 103 680 103 752 l 103 289 q 202 63 103 145 q 487 -19 301 -19 q 654 -2 582 -19 q 754 32 726 14 q 757 57 757 36 q 751 100 757 78 q 737 141 745 123 q 722 157 729 158 q 690 144 709 152 q 645 127 672 136 q 582 113 618 119 q 499 107 547 107 q 417 116 458 107 q 344 149 376 126 q 292 209 312 172 q 272 304 272 247 l 272 666 q 331 842 272 784 q 531 901 391 901 q 598 896 569 901 q 649 885 627 891 q 686 871 670 878 q 715 859 702 864 q 730 873 720 857 q 748 910 740 889 q 761 950 757 931 q 761 973 766 969 "},"œ":{"x_min":71,"x_max":1209,"ha":1280,"o":"m 1209 390 l 1209 474 q 1129 694 1209 621 q 903 767 1049 767 q 663 636 735 767 q 570 736 631 705 q 418 767 510 767 q 275 745 339 767 q 166 676 211 723 q 96 553 121 629 q 71 369 71 478 q 93 185 71 258 q 160 66 116 111 q 267 3 204 22 q 411 -15 330 -15 q 560 20 496 -15 q 660 125 624 55 q 708 57 679 85 q 772 14 736 30 q 851 -8 808 -1 q 942 -15 893 -15 q 1005 -12 972 -15 q 1067 -5 1039 -9 q 1117 1 1096 -2 q 1147 8 1139 5 q 1184 23 1175 16 q 1193 50 1193 30 l 1193 119 q 1183 135 1193 131 q 1154 132 1173 139 q 1084 113 1134 125 q 948 102 1034 102 q 859 115 900 102 q 789 156 818 128 q 743 226 760 183 q 727 331 727 269 l 1151 331 q 1199 345 1190 331 q 1209 390 1209 360 m 1056 456 q 1053 435 1056 441 q 1040 430 1051 430 l 751 430 q 735 436 736 430 q 733 457 733 442 q 744 538 733 500 q 775 605 754 576 q 827 650 796 633 q 900 667 858 667 q 1020 612 985 667 q 1056 456 1056 558 m 584 321 q 538 154 584 216 q 414 91 493 91 q 344 103 376 91 q 288 141 312 115 q 249 207 263 166 q 236 304 236 247 l 236 440 q 286 607 236 554 q 412 660 336 660 q 492 644 460 660 q 545 599 525 628 q 574 532 565 571 q 584 447 584 493 l 584 321 "},"!":{"x_min":104,"x_max":289,"ha":382,"o":"m 264 969 q 258 1005 264 993 q 232 1017 253 1017 l 159 1017 q 132 1003 136 1017 q 129 967 129 990 l 129 344 q 135 306 129 314 q 171 299 142 299 l 236 299 q 258 308 252 299 q 264 343 264 318 l 264 969 m 289 42 l 289 119 q 282 145 289 139 q 248 151 275 151 l 134 151 q 109 141 115 151 q 104 116 104 131 l 104 38 q 109 11 104 22 q 142 0 115 0 l 252 0 q 282 11 276 0 q 289 42 289 23 "},"ç":{"x_min":69,"x_max":674.5,"ha":713,"o":"m 673 129 q 662 152 677 139 q 625 175 647 165 q 584 187 604 185 q 558 179 563 190 q 499 117 534 142 q 416 92 463 92 q 346 103 378 92 q 290 141 314 115 q 251 207 265 167 q 238 304 238 247 l 238 440 q 288 607 238 554 q 416 660 338 660 q 504 637 470 660 q 559 582 538 615 q 586 580 565 572 q 628 602 606 587 q 664 634 650 616 q 672 662 679 651 q 569 742 631 718 q 417 767 506 767 q 274 745 338 767 q 164 676 210 723 q 94 553 119 629 q 69 369 69 478 q 87 199 69 269 q 143 84 106 129 q 232 16 179 39 q 352 -12 285 -6 l 352 -107 q 355 -115 352 -114 q 365 -114 358 -116 q 389 -112 379 -112 q 442 -122 423 -112 q 461 -165 461 -133 q 438 -205 461 -193 q 381 -217 416 -217 q 336 -208 356 -217 q 307 -187 317 -200 q 295 -187 304 -183 q 278 -200 286 -191 q 265 -218 269 -208 q 267 -235 261 -228 q 316 -273 290 -263 q 387 -284 342 -284 q 503 -254 456 -284 q 550 -165 550 -224 q 517 -84 550 -111 q 433 -57 484 -57 l 433 -12 q 579 26 520 -12 q 673 129 638 64 "},"È":{"x_min":111,"x_max":699.78125,"ha":765,"o":"m 699 25 l 699 105 q 687 127 699 122 q 648 132 676 132 l 312 132 q 283 135 294 132 q 272 162 272 138 l 272 435 q 280 460 272 453 q 310 467 288 467 l 541 467 q 582 469 560 467 q 606 493 603 471 l 616 571 q 611 590 619 584 q 574 596 603 596 l 299 596 q 276 602 283 596 q 269 628 269 608 l 269 868 q 275 884 269 877 q 305 891 281 891 l 613 891 q 660 893 642 891 q 677 913 677 896 l 677 994 q 671 1013 677 1010 q 640 1017 665 1017 l 137 1017 q 114 1003 117 1017 q 111 971 111 990 l 111 40 q 120 8 111 16 q 142 0 129 0 l 670 0 q 690 4 681 0 q 699 25 699 9 m 510 1116 l 384 1293 q 366 1315 373 1308 q 341 1322 359 1322 l 244 1322 q 215 1312 216 1322 q 233 1283 213 1303 l 405 1104 q 425 1086 415 1093 q 449 1080 435 1080 l 503 1080 q 510 1116 537 1080 "},"ﬁ":{"x_min":57.109375,"x_max":724,"ha":816,"o":"m 724 922 l 724 969 q 721 1005 724 993 q 696 1017 718 1017 l 608 1017 q 577 1008 584 1017 q 571 976 571 1000 l 571 926 q 577 889 571 897 q 604 881 583 881 l 696 881 q 719 889 714 881 q 724 922 724 897 m 724 48 l 724 706 q 719 738 724 729 q 690 747 715 747 l 313 747 q 285 786 297 765 q 274 841 274 806 q 294 902 274 886 q 343 918 315 918 q 376 916 367 918 q 408 909 386 914 q 418 924 412 909 q 427 958 424 939 q 431 994 431 978 q 426 1014 431 1011 q 379 1026 410 1021 q 303 1032 348 1032 q 218 1018 253 1032 q 162 980 183 1004 q 130 926 140 957 q 121 860 121 895 q 129 785 121 807 q 146 747 137 763 l 79 747 q 57 717 57 747 l 57 668 q 62 646 57 652 q 87 641 68 641 l 160 641 l 160 36 q 171 8 160 16 q 199 0 183 0 l 283 0 q 316 45 316 0 l 316 641 l 571 641 l 571 48 q 575 10 571 20 q 598 0 579 0 l 696 0 q 720 10 717 0 q 724 48 724 20 "},"{":{"x_min":56,"x_max":458,"ha":544,"o":"m 457 -119 l 457 -38 q 453 -25 457 -31 q 437 -19 449 -19 l 396 -19 q 351 3 364 -19 q 338 78 338 25 l 338 300 q 327 364 338 333 q 297 420 316 395 q 253 460 278 444 q 200 482 228 476 q 255 500 228 486 q 303 535 281 513 q 336 584 324 556 q 349 644 349 612 l 327 858 q 349 920 327 901 q 403 940 371 940 l 433 940 q 458 959 458 940 l 458 1034 q 453 1051 458 1045 q 432 1057 448 1057 l 367 1057 q 226 1004 268 1057 q 192 863 184 951 l 210 672 q 202 621 213 644 q 173 581 192 598 q 129 552 154 563 q 75 537 104 541 q 56 520 56 534 l 56 439 q 75 418 56 420 q 128 401 106 414 q 166 370 150 389 q 190 327 182 351 q 198 278 198 304 l 198 55 q 241 -92 198 -45 q 358 -139 284 -139 l 431 -139 q 457 -119 457 -139 "},"X":{"x_min":58.796875,"x_max":891.109375,"ha":944,"o":"m 877 44 l 568 521 l 861 975 q 872 1006 875 996 q 848 1017 870 1017 l 762 1017 q 725 1007 736 1017 q 697 971 715 998 l 483 636 l 268 971 q 236 1007 250 998 q 202 1017 223 1017 l 84 1017 q 60 1006 62 1017 q 70 975 58 996 l 375 505 q 352 471 375 505 q 297 386 330 437 q 225 275 263 334 q 152 163 186 215 q 97 78 119 112 q 75 44 75 44 q 59 9 56 18 q 88 0 61 0 l 187 0 q 211 6 202 0 q 238 44 219 13 q 261 80 240 47 q 316 166 283 113 q 381 268 350 218 q 437 354 413 318 q 461 390 461 390 l 680 44 q 708 11 695 22 q 740 0 720 0 l 863 0 q 890 10 886 0 q 877 44 894 20 "},"ô":{"x_min":71,"x_max":742,"ha":813,"o":"m 742 371 q 720 553 742 478 q 657 676 698 628 q 555 745 615 723 q 418 767 494 767 q 275 745 339 767 q 166 676 211 723 q 96 553 121 629 q 71 369 71 478 q 93 185 71 258 q 160 66 116 111 q 267 3 204 22 q 411 -15 330 -15 q 654 83 566 -15 q 742 371 742 182 m 583 321 q 538 154 583 216 q 414 91 493 91 q 344 103 376 91 q 288 141 312 115 q 249 207 263 166 q 236 304 236 247 l 236 440 q 286 607 236 554 q 412 660 336 660 q 492 644 459 660 q 545 599 525 628 q 574 532 565 571 q 583 447 583 493 l 583 321 m 611 866 l 484 1043 q 468 1063 475 1054 q 443 1072 461 1072 l 387 1072 q 364 1063 372 1072 q 348 1043 357 1054 l 222 866 q 210 839 210 849 q 228 830 210 830 l 281 830 q 299 832 292 830 q 318 846 306 834 l 416 977 l 515 846 q 532 832 525 834 q 551 830 539 830 l 603 830 q 611 866 637 830 "},"¼":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"#":{"x_min":45.359375,"x_max":842.171875,"ha":883,"o":"m 840 682 q 838 707 844 701 q 804 713 832 713 l 705 713 l 764 975 q 764 1008 769 1000 q 736 1017 759 1017 l 679 1017 q 648 1008 655 1017 q 636 979 640 1000 l 576 713 l 393 713 q 399 740 393 713 q 414 805 405 767 q 432 883 423 843 q 447 947 441 922 q 453 975 453 972 q 455 1008 457 999 q 436 1017 454 1017 l 372 1017 q 337 1008 344 1017 q 325 977 330 1000 l 265 713 l 164 713 q 130 709 139 713 q 118 685 122 706 l 109 649 q 113 619 105 625 q 140 613 121 613 l 247 613 l 203 421 l 101 421 q 67 417 78 421 q 54 396 57 414 l 48 359 q 48 327 41 333 q 79 321 55 321 l 184 321 l 122 44 q 122 8 115 16 q 151 0 129 0 l 212 0 q 236 6 229 0 q 248 38 243 13 l 312 321 l 496 321 l 433 45 q 430 9 426 19 q 453 0 433 0 l 519 0 q 546 6 539 0 q 559 41 553 13 l 623 321 l 719 321 q 757 329 747 321 q 772 361 766 337 l 778 394 q 775 416 782 411 q 744 421 769 421 l 641 421 l 686 613 l 782 613 q 818 618 808 613 q 833 643 829 624 l 840 682 m 558 613 l 514 421 l 332 421 l 375 613 l 558 613 "},"":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"Ê":{"x_min":111,"x_max":699.78125,"ha":765,"o":"m 699 25 l 699 105 q 687 127 699 122 q 648 132 676 132 l 312 132 q 283 135 294 132 q 272 162 272 138 l 272 435 q 280 460 272 453 q 310 467 288 467 l 541 467 q 582 469 560 467 q 606 493 603 471 l 616 571 q 611 590 619 584 q 574 596 603 596 l 299 596 q 276 602 283 596 q 269 628 269 608 l 269 868 q 275 884 269 877 q 305 891 281 891 l 613 891 q 660 893 642 891 q 677 913 677 896 l 677 994 q 671 1013 677 1010 q 640 1017 665 1017 l 137 1017 q 114 1003 117 1017 q 111 971 111 990 l 111 40 q 120 8 111 16 q 142 0 129 0 l 670 0 q 690 4 681 0 q 699 25 699 9 m 594 1116 l 467 1293 q 451 1313 458 1304 q 426 1322 444 1322 l 370 1322 q 347 1313 355 1322 q 331 1293 340 1304 l 205 1116 q 193 1089 193 1099 q 211 1080 193 1080 l 264 1080 q 282 1082 275 1080 q 301 1096 289 1084 l 399 1227 l 498 1096 q 515 1082 508 1084 q 534 1080 522 1080 l 585 1080 q 594 1116 620 1080 "},")":{"x_min":68.96875,"x_max":390,"ha":504,"o":"m 390 457 q 371 652 390 558 q 324 824 353 746 q 260 962 295 903 q 192 1054 226 1021 q 161 1058 184 1062 q 115 1042 138 1053 q 78 1017 92 1031 q 72 993 63 1003 q 131 906 99 964 q 187 776 162 848 q 230 620 213 703 q 247 457 247 537 q 230 284 247 369 q 188 128 213 200 q 134 2 163 56 q 81 -77 105 -51 q 87 -102 73 -87 q 125 -128 102 -116 q 171 -146 148 -140 q 201 -144 194 -152 q 262 -54 230 -112 q 324 81 295 2 q 371 254 352 159 q 390 457 390 350 "},"Å":{"x_min":48.453125,"x_max":841.953125,"ha":888,"o":"m 836 45 l 553 972 q 535 1006 545 995 q 502 1016 526 1016 l 388 1016 q 354 1006 365 1016 q 337 972 344 995 l 55 45 q 49 6 45 13 q 65 0 52 0 l 165 0 q 187 6 182 0 q 200 36 193 13 l 258 230 l 604 230 l 664 36 q 674 6 670 13 q 697 0 677 0 l 807 0 q 836 6 826 0 q 836 45 847 12 m 566 354 l 295 354 l 432 818 l 566 354 m 614 1234 q 600 1296 614 1267 q 564 1347 587 1325 q 511 1382 541 1370 q 447 1395 480 1395 q 384 1382 413 1395 q 331 1347 354 1370 q 295 1296 308 1325 q 282 1234 282 1267 q 295 1171 282 1200 q 331 1120 308 1142 q 384 1085 354 1097 q 447 1073 413 1073 q 511 1085 480 1073 q 564 1120 541 1097 q 600 1171 587 1142 q 614 1234 614 1200 m 533 1234 q 508 1172 533 1200 q 447 1144 483 1144 q 386 1172 409 1144 q 363 1234 363 1200 q 387 1295 363 1267 q 447 1324 411 1324 q 508 1295 484 1324 q 533 1234 533 1267 "},"ø":{"x_min":67.90625,"x_max":762.921875,"ha":813,"o":"m 746 771 l 682 771 q 644 763 655 771 q 617 732 633 755 l 607 719 q 418 767 533 767 q 275 745 339 767 q 166 676 211 723 q 96 553 121 629 q 71 369 71 478 q 86 212 71 278 q 132 101 101 146 l 87 44 q 68 8 65 16 q 93 0 70 0 l 154 0 q 179 5 169 0 q 204 32 188 11 q 296 -4 244 6 q 411 -15 348 -15 q 654 83 566 -15 q 742 371 742 182 q 678 647 742 551 l 742 729 q 762 762 761 753 q 746 771 764 771 m 529 618 l 240 243 q 236 304 236 272 l 236 440 q 286 607 236 554 q 412 660 336 660 q 529 618 487 660 m 583 321 q 538 154 583 216 q 414 91 493 91 q 343 103 376 91 q 287 141 311 115 q 309 169 287 141 q 363 239 330 197 q 433 329 395 280 q 503 419 471 378 q 556 489 534 461 q 578 516 578 516 q 582 483 580 500 q 583 447 583 466 l 583 321 "},"â":{"x_min":71,"x_max":699,"ha":791,"o":"m 699 54 l 699 706 q 693 738 699 728 q 658 748 687 748 l 570 748 q 545 712 545 748 l 545 651 q 461 735 514 704 q 317 767 407 767 q 211 739 257 767 q 134 660 165 711 q 86 535 102 608 q 71 369 71 461 q 90 192 71 265 q 144 73 109 119 q 223 6 178 28 q 319 -15 268 -15 q 396 -5 360 -15 q 462 19 432 4 q 513 56 492 35 q 545 99 534 77 l 545 40 q 554 6 545 12 q 578 0 563 0 l 665 0 q 694 13 689 0 q 699 54 699 26 m 534 231 q 523 192 534 215 q 494 146 513 168 q 447 107 475 124 q 383 91 418 91 q 271 151 308 91 q 235 314 235 211 l 235 430 q 272 607 235 554 q 381 661 310 661 q 451 642 422 661 q 498 595 479 623 q 525 537 517 568 q 534 484 534 507 l 534 231 m 608 866 l 482 1043 q 465 1063 472 1054 q 440 1072 458 1072 l 385 1072 q 362 1063 369 1072 q 346 1043 354 1054 l 219 866 q 207 839 207 849 q 225 830 207 830 l 278 830 q 297 832 290 830 q 315 846 304 834 l 414 977 l 513 846 q 529 832 522 834 q 549 830 536 830 l 600 830 q 608 866 635 830 "},"}":{"x_min":92,"x_max":492,"ha":543,"o":"m 492 439 l 492 520 q 472 537 492 534 q 417 552 443 541 q 372 581 391 563 q 344 621 354 598 q 337 672 334 644 l 356 863 q 322 1004 365 951 q 180 1057 279 1057 l 115 1057 q 96 1051 100 1057 q 92 1034 92 1045 l 92 959 q 114 940 92 940 l 146 940 q 199 920 178 940 q 221 858 221 901 l 198 644 q 209 584 196 612 q 243 535 222 556 q 292 500 265 513 q 347 482 319 486 q 292 460 319 476 q 243 420 265 444 q 209 364 222 395 q 210 300 196 333 l 210 78 q 197 3 210 25 q 153 -19 185 -19 l 110 -19 q 95 -25 98 -19 q 92 -38 92 -31 l 92 -119 q 97 -134 92 -130 q 117 -139 102 -139 l 193 -139 q 315 -92 269 -139 q 361 55 361 -45 l 337 278 q 344 327 334 304 q 372 370 354 351 q 416 401 390 389 q 472 418 441 414 q 492 439 492 420 "},"‰":{"x_min":60,"x_max":1467,"ha":1527,"o":"m 1467 158 l 1467 329 q 1450 419 1467 383 q 1406 476 1433 454 q 1345 506 1379 497 q 1278 515 1311 515 q 1132 467 1186 515 q 1078 319 1078 418 l 1078 157 q 1132 27 1078 69 q 1278 -15 1186 -15 q 1346 -6 1312 -15 q 1406 21 1379 1 q 1450 75 1433 41 q 1467 158 1467 108 m 997 158 l 997 329 q 980 419 997 383 q 936 476 963 454 q 875 506 909 497 q 808 515 841 515 q 661 467 716 515 q 607 319 607 418 l 607 157 q 661 27 607 69 q 808 -15 716 -15 q 876 -6 842 -15 q 936 21 909 1 q 980 75 963 41 q 997 158 997 108 m 840 985 q 852 1018 852 1009 q 833 1027 852 1027 l 769 1027 q 734 1018 743 1027 q 714 988 726 1010 l 229 44 q 220 9 215 18 q 248 0 225 0 l 309 0 q 333 7 326 0 q 353 38 341 15 l 840 985 m 450 674 l 450 845 q 433 934 450 899 q 389 991 416 969 q 328 1021 362 1012 q 259 1031 294 1031 q 114 982 169 1031 q 60 836 60 933 l 60 674 q 114 543 60 585 q 259 501 169 501 q 328 509 294 501 q 389 537 362 517 q 433 591 416 557 q 450 674 450 624 m 1359 166 q 1340 112 1359 138 q 1278 86 1321 86 q 1212 109 1234 86 q 1191 169 1191 133 l 1191 299 q 1209 378 1191 347 q 1281 409 1227 409 q 1341 377 1324 409 q 1359 304 1359 346 l 1359 166 m 889 166 q 870 112 889 138 q 808 86 851 86 q 742 109 764 86 q 721 169 721 133 l 721 299 q 739 378 721 347 q 811 409 757 409 q 871 377 854 409 q 889 304 889 346 l 889 166 m 340 682 q 322 628 340 654 q 259 602 304 602 q 194 625 215 602 q 173 685 173 649 l 173 814 q 190 893 173 862 q 262 925 208 925 q 322 893 305 925 q 340 819 340 862 l 340 682 "},"Ä":{"x_min":48.28125,"x_max":841.5625,"ha":887,"o":"m 835 45 l 553 972 q 535 1006 545 995 q 502 1016 525 1016 l 388 1016 q 354 1006 364 1016 q 337 972 344 995 l 55 45 q 49 6 45 13 q 65 0 52 0 l 165 0 q 187 6 181 0 q 199 36 192 13 l 258 230 l 603 230 l 663 36 q 674 6 670 13 q 696 0 677 0 l 806 0 q 836 6 826 0 q 835 45 846 12 m 566 354 l 295 354 l 431 818 l 566 354 m 665 1158 l 665 1244 q 658 1270 665 1263 q 626 1277 652 1277 l 539 1277 q 509 1242 509 1277 l 509 1160 q 516 1132 509 1143 q 553 1121 524 1121 l 634 1121 q 659 1132 653 1121 q 665 1158 665 1143 m 367 1155 l 367 1238 q 360 1265 367 1254 q 330 1277 353 1277 l 241 1277 q 215 1265 220 1277 q 211 1238 211 1254 l 211 1148 q 217 1126 211 1132 q 248 1121 224 1121 l 334 1121 q 360 1130 354 1121 q 367 1155 367 1140 "},"¸":{"x_min":193.09375,"x_max":478,"ha":659,"o":"m 478 -164 q 445 -83 478 -110 q 362 -56 412 -56 l 362 23 l 281 23 l 281 -107 q 284 -115 281 -114 q 294 -114 287 -116 q 318 -112 308 -112 q 370 -122 351 -112 q 389 -164 389 -132 q 366 -204 389 -192 q 310 -216 344 -216 q 265 -207 285 -216 q 236 -186 246 -199 q 224 -186 233 -182 q 207 -199 215 -191 q 194 -217 199 -207 q 196 -234 190 -227 q 245 -272 219 -262 q 315 -283 271 -283 q 431 -253 385 -283 q 478 -164 478 -223 "},"a":{"x_min":71,"x_max":699,"ha":791,"o":"m 699 54 l 699 706 q 693 738 699 728 q 658 748 687 748 l 570 748 q 545 712 545 748 l 545 651 q 461 735 514 704 q 317 767 407 767 q 211 739 257 767 q 134 660 165 711 q 86 535 102 608 q 71 369 71 461 q 90 192 71 265 q 144 73 109 119 q 223 6 178 28 q 319 -15 268 -15 q 396 -5 360 -15 q 462 19 432 4 q 513 56 492 35 q 545 99 534 77 l 545 40 q 554 6 545 12 q 578 0 563 0 l 665 0 q 694 13 689 0 q 699 54 699 26 m 534 231 q 523 192 534 215 q 494 146 513 168 q 447 107 475 124 q 383 91 418 91 q 271 151 308 91 q 235 314 235 211 l 235 430 q 272 607 235 554 q 381 661 310 661 q 451 642 422 661 q 498 595 479 623 q 525 537 517 568 q 534 484 534 507 l 534 231 "},"—":{"x_min":72,"x_max":1407,"ha":1475,"o":"m 1407 391 l 1407 459 q 1394 482 1407 479 q 1354 486 1382 486 l 113 486 q 81 482 90 486 q 72 454 72 479 l 72 386 q 80 363 72 369 q 109 357 88 357 l 1354 357 q 1396 363 1386 357 q 1407 391 1407 369 "},"=":{"x_min":85,"x_max":659,"ha":731,"o":"m 659 430 l 659 484 q 649 503 659 498 q 615 508 640 508 l 135 508 q 99 505 110 508 q 88 478 88 502 l 88 428 q 96 401 88 405 q 128 397 104 397 l 613 397 q 649 401 639 397 q 659 430 659 406 m 656 206 l 656 255 q 647 282 656 278 q 615 287 639 287 l 130 287 q 94 282 104 287 q 85 253 85 277 l 85 199 q 94 180 85 185 q 128 176 103 176 l 608 176 q 644 179 633 176 q 656 206 656 182 "},"N":{"x_min":111,"x_max":885,"ha":999,"o":"m 885 49 l 885 971 q 880 1005 885 994 q 857 1017 875 1017 l 750 1017 q 732 1003 736 1018 q 728 972 728 987 l 728 319 q 721 275 728 279 q 698 298 714 272 l 292 987 q 282 1001 286 996 q 274 1010 279 1007 q 259 1015 269 1014 q 233 1017 249 1017 l 136 1017 q 121 1010 126 1017 q 114 996 116 1004 q 111 982 112 989 q 111 972 111 975 l 111 41 q 124 4 111 8 q 148 0 137 0 l 238 0 q 263 10 258 0 q 269 48 269 20 l 269 709 q 276 741 269 743 q 299 711 283 739 l 704 33 q 725 5 715 13 q 754 -3 734 -3 l 854 -3 q 879 9 873 -3 q 885 49 885 21 "},"˚":{"x_min":182,"x_max":514,"ha":658,"o":"m 514 984 q 500 1046 514 1017 q 464 1097 487 1075 q 411 1132 441 1120 q 347 1145 380 1145 q 284 1132 313 1145 q 231 1097 254 1120 q 195 1046 208 1075 q 182 984 182 1017 q 195 921 182 950 q 231 870 208 892 q 284 835 254 847 q 347 823 313 823 q 411 835 380 823 q 464 870 441 847 q 500 921 487 892 q 514 984 514 950 m 433 984 q 408 922 433 950 q 347 894 383 894 q 286 922 309 894 q 263 984 263 950 q 287 1045 263 1017 q 347 1074 311 1074 q 408 1045 384 1074 q 433 984 433 1017 "},"ú":{"x_min":92,"x_max":688,"ha":781,"o":"m 688 43 l 688 696 q 681 736 688 724 q 650 748 674 748 l 562 748 q 539 735 543 748 q 535 695 535 722 l 535 276 q 525 223 535 251 q 496 171 515 194 q 447 133 476 148 q 379 118 418 118 q 319 129 343 118 q 279 159 294 140 q 257 202 264 177 q 250 255 250 227 l 250 697 q 214 748 250 748 l 123 748 q 98 736 104 748 q 92 699 92 725 l 92 222 q 110 112 92 157 q 160 39 129 68 q 230 -1 191 11 q 311 -14 269 -14 q 436 9 385 -14 q 533 86 487 33 q 541 18 533 37 q 567 0 548 0 l 656 0 q 682 11 676 0 q 688 43 688 22 m 590 1034 q 608 1063 610 1053 q 578 1073 607 1073 l 480 1073 q 456 1066 462 1073 q 439 1043 450 1059 l 311 866 q 319 830 287 830 l 373 830 q 398 836 387 830 q 418 855 408 843 l 590 1034 "},"⁄":{"x_min":28.046875,"x_max":533,"ha":524,"o":"m 524 985 q 533 1017 533 1008 q 514 1027 533 1027 l 451 1027 q 415 1019 424 1027 q 398 988 406 1011 l 35 44 q 29 8 24 16 q 56 0 34 0 l 117 0 q 142 6 134 0 q 160 38 149 13 l 524 985 "},"2":{"x_min":82,"x_max":739,"ha":835,"o":"m 739 23 l 739 113 q 729 134 739 129 q 695 139 719 139 l 303 139 q 272 144 281 139 q 263 169 263 150 q 279 257 263 218 q 319 327 295 295 q 376 382 344 358 q 442 427 408 407 q 546 493 493 458 q 642 570 600 527 q 711 663 684 612 q 739 779 739 715 q 653 969 739 906 q 422 1032 568 1032 q 309 1024 357 1032 q 226 1005 261 1016 q 168 982 191 994 q 127 961 144 970 q 120 931 118 955 q 130 883 122 908 q 150 840 139 858 q 169 827 161 822 q 205 848 185 836 q 253 872 226 861 q 315 892 280 884 q 393 900 350 900 q 530 863 483 900 q 578 756 578 827 q 558 697 578 726 q 507 639 539 668 q 435 584 476 611 q 353 533 394 558 q 260 467 308 507 q 173 373 212 427 q 107 251 133 319 q 82 100 82 183 l 82 33 q 91 6 82 13 q 109 0 100 0 l 715 0 q 739 23 739 0 "},"ü":{"x_min":92,"x_max":688,"ha":781,"o":"m 688 43 l 688 696 q 681 736 688 724 q 650 748 674 748 l 562 748 q 539 735 543 748 q 535 695 535 722 l 535 276 q 525 223 535 251 q 496 171 515 194 q 447 133 476 148 q 379 118 418 118 q 319 129 343 118 q 279 159 294 140 q 257 202 264 177 q 250 255 250 227 l 250 697 q 214 748 250 748 l 123 748 q 98 736 104 748 q 92 699 92 725 l 92 222 q 110 112 92 157 q 160 39 129 68 q 230 -1 192 11 q 311 -14 269 -14 q 436 9 385 -14 q 533 86 487 33 q 541 18 533 37 q 567 0 548 0 l 656 0 q 682 11 676 0 q 688 43 688 22 m 619 908 l 619 994 q 612 1020 619 1013 q 580 1027 606 1027 l 493 1027 q 463 992 463 1027 l 463 910 q 470 882 463 893 q 507 871 478 871 l 588 871 q 613 882 607 871 q 619 908 619 893 m 320 905 l 320 988 q 313 1015 320 1004 q 283 1027 306 1027 l 194 1027 q 168 1015 173 1027 q 164 988 164 1004 l 164 898 q 170 876 164 882 q 201 871 177 871 l 287 871 q 313 880 307 871 q 320 905 320 890 "},"¯":{"x_min":110,"x_max":575,"ha":658,"o":"m 575 939 l 575 980 q 562 1003 575 1000 q 522 1007 550 1007 l 151 1007 q 119 1003 128 1007 q 110 975 110 1000 l 110 932 q 119 909 110 915 q 148 903 128 903 l 523 903 q 565 909 555 903 q 575 939 575 915 "},"Z":{"x_min":60,"x_max":775,"ha":832,"o":"m 775 26 l 775 107 q 764 126 775 122 q 725 131 754 131 l 279 131 l 736 894 q 754 925 742 904 q 766 958 766 947 l 766 1000 q 755 1013 766 1010 q 733 1017 745 1017 l 111 1017 q 82 1010 86 1017 q 77 991 78 1004 l 77 919 q 85 892 72 899 q 128 886 99 886 l 546 886 l 85 117 q 68 86 76 101 q 60 58 60 71 l 60 16 q 83 0 60 0 l 737 0 q 768 5 762 0 q 775 26 775 11 "},"u":{"x_min":92,"x_max":688,"ha":781,"o":"m 688 43 l 688 696 q 681 736 688 724 q 650 748 674 748 l 562 748 q 539 735 543 748 q 535 695 535 722 l 535 276 q 525 223 535 251 q 496 171 515 194 q 447 133 476 148 q 379 118 418 118 q 319 129 343 118 q 279 159 294 140 q 257 202 264 177 q 250 255 250 227 l 250 697 q 214 748 250 748 l 123 748 q 98 736 104 748 q 92 699 92 725 l 92 222 q 110 112 92 157 q 160 39 129 68 q 230 -1 191 11 q 311 -14 269 -14 q 436 9 385 -14 q 533 86 487 33 q 541 18 533 37 q 567 0 548 0 l 656 0 q 682 11 676 0 q 688 43 688 22 "},"˜":{"x_min":80.09375,"x_max":587.203125,"ha":658,"o":"m 584 998 q 579 1019 591 1013 l 523 1037 q 504 1028 511 1044 q 472 990 493 1008 q 422 972 451 972 q 379 984 402 972 q 331 1011 356 996 q 281 1038 306 1026 q 233 1051 256 1051 q 181 1037 205 1051 q 138 1004 158 1024 q 104 961 119 984 q 81 918 90 938 q 87 900 76 906 l 138 874 q 150 872 145 871 q 159 882 154 873 q 193 919 170 902 q 238 936 215 936 q 279 924 258 936 q 324 897 301 912 q 371 870 347 882 q 419 859 395 859 q 514 898 475 859 q 584 998 554 937 "},"Ó":{"x_min":103,"x_max":857,"ha":960,"o":"m 857 314 l 857 686 q 827 852 857 786 q 745 958 797 919 q 624 1015 693 998 q 479 1032 555 1032 q 195 950 287 1032 q 103 683 103 869 l 103 274 q 143 118 103 175 q 241 30 183 60 q 366 -8 300 0 q 483 -17 432 -17 q 552 -17 512 -17 q 633 -7 591 -17 q 715 23 675 2 q 786 81 755 44 q 837 175 818 119 q 857 314 857 232 m 689 335 q 673 225 689 267 q 628 159 657 182 q 562 127 600 135 q 483 119 525 119 q 406 128 444 119 q 337 160 368 138 q 286 219 305 182 q 267 309 267 256 l 267 672 q 278 768 267 726 q 314 839 289 811 q 382 881 340 866 q 486 896 425 896 q 637 843 586 896 q 689 677 689 791 l 689 335 m 673 1283 q 691 1312 693 1302 q 661 1322 690 1322 l 564 1322 q 539 1315 546 1322 q 522 1293 533 1308 l 394 1115 q 403 1079 371 1079 l 457 1079 q 481 1085 471 1079 q 501 1104 491 1092 l 673 1283 "},"k":{"x_min":92,"x_max":674.75,"ha":688,"o":"m 664 29 l 368 387 l 642 710 q 657 738 657 729 q 632 748 657 748 l 510 748 q 487 738 497 748 q 470 716 478 728 l 245 451 l 245 990 q 240 1022 245 1013 q 211 1032 236 1032 l 125 1032 q 98 1021 104 1032 q 92 990 92 1011 l 92 51 q 99 11 92 23 q 130 0 107 0 l 217 0 q 240 12 236 0 q 245 52 245 25 l 245 321 l 476 37 q 503 9 492 19 q 528 -1 514 -1 l 649 -1 q 673 5 668 -1 q 664 29 678 11 "},"ˇ":{"x_min":133.765625,"x_max":546.375,"ha":658,"o":"m 534 1036 q 527 1073 561 1073 l 475 1073 q 456 1070 463 1073 q 438 1056 448 1068 l 340 925 l 241 1056 q 224 1071 230 1070 q 205 1073 218 1073 l 154 1073 q 145 1036 118 1073 l 272 859 q 288 839 281 848 q 313 830 295 830 l 369 830 q 392 839 384 830 q 408 859 400 848 l 534 1036 "},"Ù":{"x_min":108,"x_max":819,"ha":927,"o":"m 819 315 l 819 971 q 810 1007 819 998 q 784 1017 802 1017 l 675 1017 q 656 1007 661 1015 q 652 980 652 1000 l 652 347 q 643 252 652 294 q 613 182 635 211 q 555 136 592 152 q 460 121 518 121 q 324 178 377 121 q 272 344 272 236 l 272 971 q 263 1007 272 998 q 237 1017 255 1017 l 131 1017 q 112 1007 117 1015 q 108 980 108 1000 l 108 291 q 141 141 108 201 q 226 46 174 82 q 339 -3 277 11 q 460 -18 402 -18 q 579 -6 516 -18 q 696 39 642 4 q 784 140 749 75 q 819 315 819 205 m 585 1116 l 459 1293 q 441 1315 448 1309 q 416 1322 434 1322 l 319 1322 q 290 1313 291 1322 q 308 1284 288 1303 l 480 1104 q 500 1086 489 1093 q 524 1080 510 1080 l 578 1080 q 585 1116 611 1080 "},"Ÿ":{"x_min":37.203125,"x_max":834.734375,"ha":873,"o":"m 824 980 q 833 1010 838 1004 q 806 1017 828 1017 l 720 1017 q 693 1010 699 1017 q 678 989 688 1004 q 661 957 678 989 q 620 878 645 926 q 565 775 595 830 q 510 673 535 721 q 469 593 485 625 q 452 561 452 561 l 223 987 q 205 1011 212 1005 q 184 1017 199 1017 l 63 1017 q 39 1012 46 1017 q 44 989 32 1008 l 354 419 l 354 27 q 359 6 354 12 q 380 0 365 0 l 490 0 q 515 6 508 0 q 522 30 522 12 l 522 418 q 544 459 522 418 q 599 564 566 501 q 672 699 632 626 q 745 834 711 772 q 802 939 780 897 q 824 980 824 980 m 680 1158 l 680 1244 q 673 1270 680 1263 q 641 1277 667 1277 l 554 1277 q 524 1242 524 1277 l 524 1160 q 531 1132 524 1143 q 568 1121 539 1121 l 649 1121 q 674 1132 668 1121 q 680 1158 680 1143 m 382 1155 l 382 1238 q 375 1265 382 1254 q 345 1277 368 1277 l 256 1277 q 230 1265 235 1277 q 226 1238 226 1254 l 226 1148 q 232 1126 226 1132 q 263 1121 239 1121 l 349 1121 q 375 1130 369 1121 q 382 1155 382 1140 "},"€":{"x_min":86,"x_max":771.125,"ha":840,"o":"m 155 540 l 155 452 l 127 452 q 94 447 103 452 q 86 418 86 443 l 86 366 q 94 343 86 349 q 124 337 103 337 l 155 337 l 155 289 q 188 133 155 193 q 272 39 221 72 q 385 -6 323 6 q 504 -19 446 -19 q 588 -14 548 -19 q 662 -2 629 -9 q 721 14 695 4 q 761 32 747 23 q 764 57 764 36 q 758 100 764 78 q 744 141 752 123 q 729 157 736 158 q 697 144 716 153 q 652 127 677 136 q 592 113 626 119 q 516 107 558 107 q 375 149 428 107 q 323 289 323 192 l 323 337 l 527 337 q 569 343 559 337 q 579 371 579 349 l 579 425 q 566 448 579 445 q 526 452 553 452 l 323 452 l 323 540 l 527 540 q 569 546 559 540 q 579 574 579 552 l 579 628 q 566 651 579 648 q 526 655 553 655 l 323 655 l 323 666 q 329 770 323 725 q 357 844 336 814 q 416 887 378 873 q 516 901 455 901 q 587 897 558 901 q 638 888 616 894 q 679 875 659 882 q 722 859 698 867 q 736 872 726 856 q 754 909 745 888 q 768 949 763 930 q 768 973 773 969 q 741 991 758 981 q 693 1010 723 1001 q 620 1025 663 1019 q 515 1032 577 1032 q 371 1016 437 1032 q 257 962 305 1001 q 182 856 209 923 q 155 686 155 789 l 155 655 l 127 655 q 94 650 103 655 q 86 621 86 646 l 86 569 q 94 546 86 552 q 124 540 103 540 l 155 540 "},"¢":{"x_min":93,"x_max":698.171875,"ha":790,"o":"m 697 129 q 686 152 701 139 q 649 175 670 165 q 607 187 627 185 q 582 179 587 190 q 522 117 558 142 q 440 92 487 92 q 370 103 402 92 q 314 141 338 115 q 275 207 289 166 q 262 304 262 247 l 262 440 q 312 607 262 554 q 438 660 362 660 q 528 637 494 660 q 583 582 562 615 q 609 580 588 572 q 652 602 630 587 q 688 634 673 616 q 695 662 702 651 q 507 762 633 747 l 507 837 q 502 871 507 861 q 473 881 498 881 l 386 881 q 359 870 365 881 q 353 839 353 860 l 353 758 q 247 721 295 748 q 165 647 199 694 q 111 531 130 600 q 93 369 93 462 q 111 204 93 272 q 163 91 129 136 q 244 23 197 46 q 353 -8 292 0 l 353 -81 q 359 -121 353 -109 q 389 -133 365 -133 l 479 -133 q 502 -122 498 -133 q 507 -84 507 -112 l 507 -8 q 619 39 572 4 q 697 129 666 75 "},"Ω":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"ß":{"x_min":57.21875,"x_max":934,"ha":987,"o":"m 934 196 q 918 279 934 241 q 873 348 902 317 q 805 405 844 379 q 721 455 767 432 q 630 515 668 483 q 593 585 593 547 q 608 646 593 620 q 641 699 623 673 q 673 755 658 726 q 689 824 689 784 q 616 979 689 926 q 425 1032 543 1032 q 298 1012 350 1032 q 214 961 246 993 q 168 892 182 930 q 154 817 154 854 l 154 726 l 79 726 q 57 696 57 726 l 57 649 q 62 626 57 632 q 87 620 68 620 l 160 620 l 160 36 q 171 8 160 16 q 198 0 183 0 l 288 0 q 320 45 320 0 l 320 793 q 346 882 320 846 q 427 918 373 918 q 508 891 476 918 q 540 810 540 864 q 523 747 540 775 q 486 690 506 719 q 449 633 466 661 q 433 570 433 604 q 449 495 433 528 q 493 437 466 462 q 556 389 520 411 q 633 347 593 368 q 737 275 700 311 q 774 200 774 240 q 737 125 774 151 q 632 100 700 100 q 563 104 591 100 q 514 113 534 108 q 480 125 494 119 q 456 134 466 130 q 440 123 446 138 q 432 88 434 108 q 431 50 431 68 q 437 29 431 31 q 464 16 446 23 q 510 1 483 8 q 577 -10 538 -5 q 668 -15 616 -15 q 761 -3 714 -15 q 847 32 808 7 q 909 97 885 57 q 934 196 934 137 "},"é":{"x_min":71,"x_max":699,"ha":771,"o":"m 699 387 l 699 473 q 619 690 699 614 q 393 767 539 767 q 152 667 233 767 q 71 366 71 568 q 93 191 71 264 q 162 72 116 118 q 274 5 207 26 q 432 -15 341 -15 q 496 -12 462 -15 q 558 -5 529 -9 q 609 1 587 -2 q 638 8 631 5 q 674 23 665 17 q 684 50 684 30 l 684 119 q 674 135 684 131 q 644 132 664 139 q 575 113 625 125 q 439 102 525 102 q 284 154 340 102 q 229 328 229 207 l 642 328 q 690 342 681 328 q 699 387 699 357 m 546 460 q 543 439 546 445 q 530 434 541 434 l 251 434 q 234 440 236 434 q 233 461 233 446 q 242 540 233 503 q 270 605 251 578 q 319 650 289 633 q 391 667 349 667 q 511 613 477 667 q 546 460 546 560 m 580 1033 q 598 1062 600 1053 q 568 1072 597 1072 l 471 1072 q 446 1065 453 1072 q 429 1043 440 1058 l 301 866 q 309 830 277 830 l 364 830 q 388 836 377 830 q 408 854 398 843 l 580 1033 "},"s":{"x_min":64,"x_max":576,"ha":641,"o":"m 576 192 q 561 278 576 240 q 519 346 546 315 q 451 403 491 377 q 363 456 412 429 q 270 514 309 485 q 232 574 232 542 q 263 642 232 619 q 356 665 295 665 q 398 662 377 665 q 439 655 420 659 q 475 649 459 652 q 500 642 492 645 q 518 655 509 641 q 532 689 527 670 q 538 725 536 709 q 534 745 539 742 q 472 760 520 752 q 346 769 424 769 q 245 757 293 769 q 159 720 196 745 q 98 657 121 695 q 76 570 76 620 q 92 495 76 528 q 136 436 109 463 q 199 389 163 410 q 276 347 236 368 q 381 276 346 311 q 416 197 416 240 q 379 122 416 144 q 274 100 342 100 q 203 104 234 100 q 151 113 173 108 q 114 125 130 119 q 89 134 99 130 q 73 123 79 138 q 65 88 67 108 q 64 50 64 68 q 70 29 64 32 q 148 1 91 18 q 309 -15 206 -15 q 403 -6 356 -15 q 489 24 451 1 q 551 87 527 47 q 576 192 576 128 "},"B":{"x_min":111,"x_max":797,"ha":875,"o":"m 797 266 q 783 367 797 325 q 744 439 769 410 q 688 487 720 468 q 620 517 656 506 q 735 602 691 540 q 780 760 780 664 q 755 879 780 830 q 684 958 731 928 q 567 1003 637 989 q 409 1017 498 1017 l 138 1017 q 114 1004 117 1017 q 111 968 111 991 l 111 36 q 115 8 111 16 q 140 0 120 0 l 451 0 q 715 70 634 0 q 797 266 797 141 m 615 739 q 567 619 615 657 q 411 581 520 581 l 298 581 q 276 586 282 581 q 271 607 271 592 l 271 875 q 275 890 271 883 q 295 900 280 898 l 405 900 q 561 864 508 900 q 615 739 615 829 m 632 278 q 575 151 632 184 q 408 118 519 118 l 298 118 q 278 126 283 118 q 273 143 273 134 l 273 425 q 279 446 273 440 q 301 452 284 452 l 414 452 q 574 408 516 452 q 632 278 632 365 "},"…":{"x_min":79,"x_max":939,"ha":1008,"o":"m 264 50 l 264 125 q 257 148 264 140 q 220 157 251 157 l 106 157 q 85 145 92 157 q 79 119 79 133 l 79 44 q 88 13 79 26 q 123 0 97 0 l 230 0 q 260 15 257 0 q 264 50 264 31 m 604 50 l 604 125 q 597 148 604 140 q 560 157 591 157 l 446 157 q 425 145 432 157 q 419 119 419 133 l 419 44 q 428 13 419 26 q 463 0 437 0 l 570 0 q 600 15 597 0 q 604 50 604 31 m 939 50 l 939 125 q 932 148 939 140 q 895 157 926 157 l 781 157 q 760 145 767 157 q 754 119 754 133 l 754 44 q 763 13 754 26 q 798 0 772 0 l 905 0 q 935 15 932 0 q 939 50 939 31 "},"?":{"x_min":63.921875,"x_max":557,"ha":617,"o":"m 557 806 q 485 971 557 911 q 290 1032 413 1032 q 215 1023 249 1032 q 152 1003 180 1015 q 104 979 124 991 q 73 959 84 968 q 64 931 62 951 q 73 890 66 911 q 92 856 81 870 q 110 848 102 842 q 141 869 123 858 q 181 889 159 880 q 226 904 202 898 q 270 911 249 911 q 403 772 403 911 q 376 683 403 723 q 315 605 349 642 q 249 529 281 567 q 205 446 216 491 q 200 401 200 427 q 200 357 200 374 q 200 338 200 341 q 206 312 200 319 q 231 305 213 305 l 320 305 q 351 339 351 305 l 351 413 q 383 494 351 455 q 454 579 415 534 q 525 678 493 624 q 557 806 557 733 m 369 49 l 369 120 q 361 143 369 135 q 330 151 353 151 l 212 151 q 189 139 196 151 q 183 113 183 128 l 183 44 q 192 13 183 26 q 228 0 201 0 l 335 0 q 365 15 362 0 q 369 49 369 31 "},"H":{"x_min":111,"x_max":857,"ha":968,"o":"m 857 44 l 857 982 q 852 1008 857 1000 q 825 1017 848 1017 l 727 1017 q 697 1007 705 1017 q 689 979 689 998 l 689 619 q 665 596 689 596 l 310 596 q 286 600 294 596 q 279 622 279 605 l 279 971 q 272 1007 279 998 q 241 1017 265 1017 l 141 1017 q 116 1008 122 1017 q 111 980 111 1000 l 111 51 q 116 11 111 23 q 140 0 122 0 l 237 0 q 270 8 262 0 q 279 44 279 16 l 279 440 q 283 460 279 457 q 301 464 288 464 l 662 464 q 684 459 679 464 q 689 436 689 455 l 689 40 q 697 8 689 16 q 722 0 705 0 l 826 0 q 852 8 847 0 q 857 44 857 16 "},"î":{"x_min":-36,"x_max":376.84375,"ha":338,"o":"m 246 48 l 246 706 q 241 738 246 729 q 212 748 237 748 l 125 748 q 98 737 104 748 q 92 706 92 727 l 92 48 q 96 10 92 20 q 121 0 101 0 l 218 0 q 241 10 237 0 q 246 48 246 20 m 365 866 l 239 1043 q 222 1064 229 1055 q 197 1073 215 1073 l 141 1073 q 118 1064 126 1073 q 102 1043 111 1055 l -23 866 q -36 839 -36 849 q -17 830 -36 830 l 35 830 q 54 832 47 830 q 72 846 61 834 l 171 977 l 269 846 q 286 832 279 834 q 305 830 293 830 l 357 830 q 365 866 391 830 "},"c":{"x_min":69,"x_max":673.609375,"ha":712,"o":"m 672 129 q 661 152 676 139 q 624 175 646 165 q 583 187 603 185 q 557 179 563 190 q 498 116 533 141 q 415 91 463 91 q 346 103 378 91 q 290 141 314 115 q 251 207 265 166 q 238 304 238 247 l 238 440 q 288 607 238 554 q 415 660 338 660 q 503 637 469 660 q 558 582 538 615 q 585 580 564 572 q 627 602 606 587 q 663 634 649 616 q 671 662 678 651 q 568 742 631 718 q 417 767 506 767 q 274 745 338 767 q 164 676 210 723 q 93 553 118 629 q 69 369 69 478 q 91 185 69 258 q 158 66 114 111 q 266 3 202 22 q 410 -15 329 -15 q 571 23 506 -15 q 672 129 636 61 "},"¶":{"x_min":87.171875,"x_max":690,"ha":800,"o":"m 690 -198 l 690 980 q 679 1008 690 1000 q 640 1017 669 1017 l 516 1017 q 342 995 421 1017 q 206 930 263 973 q 118 821 149 886 q 87 668 87 755 q 114 521 87 582 q 185 423 142 461 q 278 367 227 385 q 374 349 328 349 q 398 341 388 349 q 408 311 408 333 l 408 -218 q 414 -241 408 -236 q 441 -247 421 -247 l 493 -247 q 512 -232 512 -247 l 512 905 q 527 924 512 924 l 571 924 q 583 918 582 924 q 584 905 584 912 l 584 -232 q 602 -247 584 -247 l 663 -247 q 687 -234 684 -247 q 690 -198 690 -222 "},"−":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"≠":{"x_min":57,"x_max":849,"ha":887,"o":"m 849 650 l 849 699 q 844 720 849 713 q 817 726 839 726 l 724 726 q 696 771 708 744 q 685 833 685 797 q 705 897 685 876 q 754 918 726 918 q 787 916 778 918 q 819 909 797 914 q 829 924 823 909 q 838 958 835 939 q 842 994 842 978 q 837 1013 842 1011 q 790 1026 821 1020 q 714 1032 759 1032 q 629 1016 664 1032 q 573 975 594 1001 q 541 917 551 950 q 532 852 532 885 q 541 771 532 799 q 559 726 551 743 l 313 726 q 285 771 297 744 q 274 833 274 797 q 294 897 274 876 q 343 918 315 918 q 376 916 367 918 q 408 909 386 914 q 418 924 412 909 q 427 958 424 939 q 431 994 431 978 q 426 1013 431 1011 q 379 1026 410 1020 q 303 1032 348 1032 q 218 1016 253 1032 q 162 975 183 1001 q 130 917 140 950 q 121 852 121 885 q 130 770 121 799 q 148 725 140 742 l 79 725 q 57 695 57 725 l 57 648 q 62 625 57 631 q 87 619 68 619 l 160 619 l 160 36 q 171 8 160 16 q 199 0 183 0 l 283 0 q 316 45 316 0 l 316 620 l 571 620 l 571 36 q 582 8 571 16 q 610 0 594 0 l 694 0 q 727 45 727 0 l 727 620 l 817 620 q 843 629 837 620 q 849 650 849 638 "},"•":{"x_min":89,"x_max":542,"ha":620,"o":"m 542 447 q 523 535 542 493 q 475 607 505 576 q 403 655 444 637 q 315 674 361 674 q 227 655 269 674 q 155 607 186 637 q 107 535 125 576 q 89 447 89 493 q 107 359 89 401 q 155 287 125 318 q 227 239 186 257 q 315 221 269 221 q 403 239 361 221 q 475 287 444 257 q 523 359 505 318 q 542 447 542 401 "},"¥":{"x_min":44.609375,"x_max":803.828125,"ha":821,"o":"m 794 980 q 802 1010 806 1004 q 776 1017 798 1017 l 695 1017 q 668 1010 675 1017 q 654 989 662 1004 q 638 957 654 989 q 599 877 622 925 q 548 773 576 829 q 498 670 521 718 q 459 589 475 622 q 443 556 443 556 l 230 987 q 213 1011 220 1005 q 191 1017 206 1017 l 70 1017 q 47 1012 54 1017 q 51 989 40 1008 l 343 419 l 343 315 l 223 315 q 191 310 200 315 q 182 281 182 306 l 182 229 q 191 206 182 212 q 220 200 200 200 l 343 200 l 343 27 q 347 6 343 12 q 369 0 352 0 l 478 0 q 503 6 496 0 q 510 30 510 12 l 510 200 l 623 200 q 665 206 655 200 q 675 234 675 212 l 675 288 q 662 311 675 308 q 622 315 650 315 l 510 315 l 510 417 l 794 980 "},"(":{"x_min":101,"x_max":423.953125,"ha":504,"o":"m 419 986 q 416 1011 430 996 q 380 1039 402 1026 q 336 1058 359 1051 q 306 1057 313 1065 q 233 958 270 1019 q 167 819 196 897 q 119 650 138 741 q 101 462 101 559 q 119 252 101 350 q 165 75 138 154 q 224 -58 192 -2 q 281 -141 256 -113 q 312 -145 289 -150 q 359 -131 335 -141 q 398 -107 382 -120 q 407 -84 414 -94 q 354 2 382 -54 q 301 132 325 58 q 260 290 277 205 q 244 461 244 375 q 260 625 244 543 q 303 780 277 708 q 360 905 330 851 q 419 986 391 960 "},"U":{"x_min":108,"x_max":819,"ha":927,"o":"m 819 315 l 819 971 q 810 1007 819 998 q 784 1017 802 1017 l 675 1017 q 656 1007 661 1015 q 652 980 652 1000 l 652 347 q 643 252 652 294 q 613 182 635 211 q 555 136 592 152 q 460 121 518 121 q 324 178 377 121 q 272 344 272 236 l 272 971 q 263 1007 272 998 q 237 1017 255 1017 l 131 1017 q 112 1007 117 1015 q 108 980 108 1000 l 108 291 q 141 141 108 201 q 226 46 174 82 q 339 -3 277 11 q 460 -18 402 -18 q 579 -6 516 -18 q 696 39 642 4 q 784 140 749 75 q 819 315 819 205 "},"◊":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"Ñ":{"x_min":111,"x_max":885,"ha":999,"o":"m 885 49 l 885 971 q 880 1005 885 994 q 857 1017 875 1017 l 750 1017 q 732 1003 736 1018 q 728 972 728 987 l 728 319 q 721 275 728 279 q 698 298 714 272 l 292 987 q 282 1001 286 996 q 274 1010 279 1007 q 259 1015 269 1014 q 233 1017 249 1017 l 136 1017 q 121 1010 126 1017 q 114 996 116 1004 q 111 982 112 989 q 111 972 111 975 l 111 41 q 124 4 111 8 q 148 0 137 0 l 238 0 q 263 10 258 0 q 269 48 269 20 l 269 709 q 276 741 269 743 q 299 711 283 739 l 704 33 q 725 5 715 13 q 754 -3 734 -3 l 854 -3 q 879 9 873 -3 q 885 49 885 21 m 758 1248 q 753 1268 765 1263 l 697 1286 q 677 1278 684 1293 q 645 1239 666 1257 q 595 1222 625 1222 q 553 1234 576 1222 q 505 1261 530 1246 q 455 1287 480 1275 q 406 1300 430 1300 q 355 1286 379 1300 q 312 1253 331 1273 q 278 1210 292 1233 q 255 1168 263 1187 q 261 1150 249 1156 l 312 1124 q 323 1122 319 1121 q 333 1132 327 1122 q 366 1168 344 1151 q 412 1185 388 1185 q 453 1173 431 1185 q 497 1147 475 1161 q 545 1120 520 1132 q 593 1109 569 1109 q 688 1147 648 1109 q 758 1248 728 1186 "},"F":{"x_min":111,"x_max":661.5,"ha":714,"o":"m 661 918 l 661 994 q 655 1011 661 1005 q 623 1017 648 1017 l 137 1017 q 114 1003 117 1017 q 111 971 111 990 l 111 40 q 118 8 111 16 q 140 0 126 0 l 251 0 q 268 4 262 0 q 274 25 274 9 l 274 400 q 280 426 274 418 q 305 434 286 434 l 539 434 q 581 436 560 434 q 607 458 602 438 l 607 538 q 605 556 612 550 q 568 563 597 563 l 301 563 q 278 569 285 563 q 271 594 271 575 l 271 866 q 277 882 271 875 q 307 889 283 889 l 614 889 q 650 893 639 889 q 661 918 661 898 "},"­":{"x_min":111,"x_max":604,"ha":712,"o":"m 604 391 l 604 459 q 592 482 604 479 q 552 486 580 486 l 154 486 q 120 482 130 486 q 111 454 111 479 l 111 386 q 120 363 111 369 q 149 357 129 357 l 552 357 q 594 363 584 357 q 604 391 604 369 "},":":{"x_min":78,"x_max":263,"ha":341,"o":"m 261 636 l 261 707 q 220 748 261 748 l 115 748 q 88 736 94 748 q 82 700 82 724 l 82 624 q 90 601 82 608 q 122 595 98 595 l 226 595 q 254 605 247 595 q 261 636 261 615 m 263 50 l 263 125 q 257 148 263 140 q 221 157 251 157 l 105 157 q 84 145 91 157 q 78 119 78 133 l 78 44 q 87 13 78 26 q 123 0 96 0 l 229 0 q 259 15 256 0 q 263 50 263 31 "},"Û":{"x_min":108,"x_max":819,"ha":927,"o":"m 819 315 l 819 971 q 810 1007 819 998 q 784 1017 802 1017 l 675 1017 q 656 1007 661 1015 q 652 980 652 1000 l 652 347 q 643 252 652 294 q 613 182 635 211 q 555 136 592 152 q 460 121 518 121 q 324 178 377 121 q 272 344 272 236 l 272 971 q 263 1007 272 998 q 237 1017 255 1017 l 131 1017 q 112 1007 117 1015 q 108 980 108 1000 l 108 291 q 141 141 108 201 q 226 46 174 82 q 339 -3 277 11 q 460 -18 402 -18 q 579 -6 516 -18 q 696 39 642 4 q 784 140 749 75 q 819 315 819 205 m 656 1116 l 529 1293 q 513 1313 520 1304 q 488 1322 506 1322 l 432 1322 q 409 1313 417 1322 q 393 1293 402 1304 l 267 1116 q 255 1089 255 1099 q 273 1080 255 1080 l 326 1080 q 345 1082 338 1080 q 363 1096 352 1084 l 462 1227 l 560 1096 q 577 1082 570 1084 q 596 1080 584 1080 l 647 1080 q 656 1116 682 1080 "},"*":{"x_min":40.421875,"x_max":528.4375,"ha":558,"o":"m 526 825 l 505 889 q 492 903 501 903 q 466 896 484 904 l 329 837 l 341 983 q 339 1014 344 1004 q 315 1024 334 1024 l 249 1024 q 231 1015 234 1024 q 229 987 229 1007 l 242 840 l 109 897 q 79 904 90 905 q 62 885 69 903 l 42 822 q 44 803 37 808 q 70 793 51 797 l 215 760 l 119 648 q 103 623 105 633 q 116 601 101 612 l 170 562 q 188 558 181 554 q 206 580 195 562 l 283 707 l 358 582 q 378 558 369 564 q 402 564 387 552 l 455 604 q 466 621 467 612 q 451 644 465 629 l 354 754 l 495 789 q 523 800 515 793 q 526 825 531 807 "},"†":{"x_min":111,"x_max":628,"ha":731,"o":"m 628 709 l 628 767 q 617 790 628 787 q 579 794 607 794 l 432 794 l 432 976 q 428 1008 432 999 q 404 1018 425 1018 l 336 1018 q 309 1007 315 1018 q 303 976 303 997 l 303 794 l 154 794 q 120 790 130 794 q 111 762 111 787 l 111 706 q 118 684 111 690 q 147 679 126 679 l 303 679 l 303 313 q 310 277 303 285 q 337 270 318 270 l 405 270 q 427 276 422 270 q 432 310 432 282 l 432 679 l 576 679 q 616 683 604 679 q 628 709 628 687 "},"°":{"x_min":99,"x_max":492,"ha":582,"o":"m 492 825 q 476 902 492 865 q 434 965 461 938 q 371 1007 407 992 q 296 1023 336 1023 q 219 1007 255 1023 q 156 965 183 992 q 114 902 129 938 q 99 825 99 865 q 114 746 99 782 q 156 683 129 710 q 219 642 183 657 q 296 628 255 628 q 371 643 336 628 q 434 687 407 659 q 476 749 461 714 q 492 825 492 785 m 398 825 q 368 746 398 776 q 296 717 338 717 q 224 746 253 717 q 195 825 195 776 q 224 902 195 869 q 296 935 253 935 q 368 902 338 935 q 398 825 398 869 "},"V":{"x_min":42,"x_max":838.078125,"ha":885,"o":"m 835 987 q 832 1011 842 1005 q 804 1017 823 1017 l 717 1017 q 697 1010 701 1017 q 686 980 693 1003 l 453 198 l 219 980 q 207 1010 212 1003 q 183 1017 203 1017 l 74 1017 q 58 1016 65 1017 q 46 1010 50 1015 q 42 996 42 1005 q 47 971 42 987 l 333 33 q 346 8 339 16 q 376 0 354 0 l 504 0 q 532 6 525 0 q 544 30 539 13 l 835 987 "},"å":{"x_min":71,"x_max":699,"ha":791,"o":"m 699 54 l 699 706 q 693 738 699 728 q 658 748 687 748 l 570 748 q 545 712 545 748 l 545 651 q 460 735 514 704 q 316 767 407 767 q 211 739 257 767 q 134 660 165 711 q 86 535 102 608 q 71 369 71 461 q 90 192 71 265 q 144 73 109 119 q 223 6 178 28 q 319 -15 268 -15 q 396 -5 360 -15 q 462 19 432 4 q 513 56 492 35 q 545 99 534 77 l 545 40 q 554 6 545 12 q 578 0 563 0 l 665 0 q 694 13 689 0 q 699 54 699 26 m 534 231 q 523 192 534 215 q 494 146 513 168 q 447 107 475 124 q 383 91 418 91 q 271 151 308 91 q 235 314 235 211 l 235 430 q 272 607 235 554 q 381 661 310 661 q 451 642 422 661 q 498 595 479 623 q 525 537 517 568 q 534 484 534 507 l 534 231 m 578 984 q 564 1046 578 1017 q 528 1097 551 1075 q 475 1132 505 1120 q 411 1145 444 1145 q 348 1132 377 1145 q 295 1097 318 1120 q 259 1046 272 1075 q 246 984 246 1017 q 259 921 246 950 q 295 870 272 892 q 348 835 318 847 q 411 823 377 823 q 475 835 444 823 q 528 870 505 847 q 564 921 551 892 q 578 984 578 950 m 497 984 q 472 922 497 950 q 411 894 447 894 q 350 922 373 894 q 327 984 327 950 q 351 1045 327 1017 q 411 1074 375 1074 q 472 1045 448 1074 q 497 984 497 1017 "}," ":{"x_min":0,"x_max":0,"ha":157},"0":{"x_min":99,"x_max":798,"ha":897,"o":"m 798 320 l 798 703 q 769 867 798 804 q 694 968 741 931 q 586 1018 647 1005 q 458 1032 525 1032 q 315 1016 381 1032 q 201 962 249 1001 q 126 856 153 923 q 99 687 99 790 l 99 289 q 131 133 99 193 q 216 38 164 72 q 332 -7 268 4 q 458 -19 396 -19 q 582 -7 521 -19 q 691 39 643 3 q 768 142 739 75 q 798 320 798 209 m 634 323 q 622 220 634 260 q 587 156 610 179 q 531 125 564 134 q 456 116 499 116 q 380 126 415 116 q 321 158 346 136 q 281 214 296 179 q 267 297 267 249 l 267 659 q 273 763 267 718 q 301 837 280 807 q 360 880 322 866 q 460 894 399 894 q 595 841 556 894 q 634 667 634 789 l 634 323 "},"”":{"x_min":72.046875,"x_max":569.890625,"ha":613,"o":"m 568 993 q 566 1016 571 1008 q 538 1024 561 1024 l 431 1024 q 411 1015 416 1024 q 405 990 406 1007 q 399 937 405 967 q 385 876 393 907 q 366 816 377 846 q 345 761 356 786 q 346 746 342 754 q 356 732 349 738 q 373 727 363 727 q 392 733 382 727 q 502 842 453 775 q 568 993 550 910 m 296 993 q 294 1016 299 1008 q 265 1024 289 1024 l 159 1024 q 139 1015 144 1024 q 133 990 134 1007 q 127 937 133 967 q 113 876 121 907 q 94 816 105 846 q 73 761 84 786 q 73 746 70 754 q 84 732 77 738 q 101 727 91 727 q 120 733 110 727 q 230 842 181 775 q 296 993 278 910 "},"¾":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"@":{"x_min":58,"x_max":1054,"ha":1104,"o":"m 1054 462 q 1017 676 1054 579 q 915 841 980 772 q 758 948 849 910 q 558 987 666 987 q 358 946 449 987 q 199 834 266 905 q 95 667 133 763 q 58 463 58 571 q 91 251 58 347 q 188 86 124 155 q 345 -22 252 16 q 557 -61 438 -61 q 726 -40 644 -61 q 859 4 807 -20 q 869 22 869 8 q 863 52 869 37 q 849 76 857 66 q 832 82 841 86 q 787 62 816 73 q 722 42 759 51 q 644 26 685 32 q 559 20 602 20 q 395 50 469 20 q 268 138 320 81 q 186 277 215 194 q 157 464 157 360 q 185 639 157 558 q 265 779 213 719 q 391 872 318 839 q 555 906 465 906 q 722 873 647 906 q 852 781 798 840 q 935 641 906 722 q 965 464 965 560 q 936 299 965 350 q 862 249 908 249 q 802 277 821 249 q 783 337 783 305 l 783 718 q 778 742 783 734 q 752 750 774 750 l 684 750 q 664 723 664 750 l 664 675 q 603 740 642 715 q 495 765 563 765 q 355 682 403 765 q 308 460 308 600 q 323 324 308 380 q 364 232 338 268 q 424 181 389 197 q 498 165 459 165 q 606 194 559 165 q 676 264 653 223 q 735 195 692 219 q 837 171 778 171 q 924 188 884 171 q 992 241 963 205 q 1038 332 1022 278 q 1054 462 1054 387 m 658 361 q 650 332 658 350 q 628 296 642 314 q 592 265 613 278 q 544 253 571 253 q 460 300 485 253 q 436 418 436 347 l 436 506 q 460 633 436 589 q 541 677 485 677 q 596 662 574 677 q 632 626 619 647 q 651 581 645 604 q 658 539 658 557 l 658 361 "},"ö":{"x_min":71,"x_max":742,"ha":813,"o":"m 742 371 q 720 553 742 478 q 657 676 698 628 q 555 745 615 723 q 418 767 494 767 q 275 745 339 767 q 166 676 211 723 q 96 553 121 629 q 71 369 71 478 q 93 185 71 258 q 160 66 116 111 q 267 3 204 22 q 411 -15 330 -15 q 654 83 566 -15 q 742 371 742 182 m 583 321 q 538 154 583 216 q 414 91 493 91 q 344 103 376 91 q 288 141 312 115 q 249 207 263 166 q 236 304 236 247 l 236 440 q 286 607 236 554 q 412 660 336 660 q 492 644 459 660 q 545 599 525 628 q 574 532 565 571 q 583 447 583 493 l 583 321 m 642 908 l 642 994 q 635 1020 642 1013 q 603 1027 629 1027 l 516 1027 q 486 992 486 1027 l 486 910 q 493 882 486 893 q 530 871 501 871 l 611 871 q 636 882 630 871 q 642 908 642 893 m 343 905 l 343 988 q 336 1015 343 1004 q 306 1027 329 1027 l 217 1027 q 191 1015 196 1027 q 187 988 187 1004 l 187 898 q 193 876 187 882 q 224 871 200 871 l 310 871 q 336 880 330 871 q 343 905 343 890 "},"i":{"x_min":92,"x_max":246,"ha":338,"o":"m 246 922 l 246 969 q 243 1005 246 993 q 216 1017 240 1017 l 129 1017 q 98 1008 105 1017 q 92 976 92 1000 l 92 926 q 98 889 92 897 q 126 881 105 881 l 218 881 q 240 889 234 881 q 246 922 246 897 m 246 48 l 246 706 q 241 738 246 729 q 212 748 237 748 l 125 748 q 98 737 104 748 q 92 706 92 727 l 92 48 q 96 10 92 20 q 121 0 101 0 l 218 0 q 241 10 237 0 q 246 48 246 20 "},"≤":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"Õ":{"x_min":103,"x_max":857,"ha":960,"o":"m 857 314 l 857 686 q 827 852 857 786 q 745 958 797 919 q 624 1015 693 998 q 479 1032 555 1032 q 195 950 287 1032 q 103 683 103 869 l 103 274 q 143 118 103 175 q 241 30 183 60 q 366 -8 300 0 q 483 -17 432 -17 q 552 -17 512 -17 q 633 -7 591 -17 q 715 23 675 2 q 786 81 755 44 q 837 175 818 119 q 857 314 857 232 m 689 335 q 673 225 689 267 q 628 159 657 182 q 562 127 600 135 q 483 119 525 119 q 406 128 444 119 q 337 160 368 138 q 286 219 305 182 q 267 309 267 256 l 267 672 q 278 768 267 726 q 314 839 289 811 q 382 881 340 866 q 486 896 425 896 q 637 843 586 896 q 689 677 689 791 l 689 335 m 736 1247 q 730 1268 743 1262 l 675 1286 q 655 1277 662 1293 q 623 1239 644 1257 q 573 1221 602 1221 q 531 1233 554 1221 q 483 1260 508 1245 q 433 1287 458 1275 q 384 1300 408 1300 q 333 1286 357 1300 q 290 1253 310 1273 q 256 1210 271 1233 q 233 1167 241 1187 q 239 1149 228 1155 l 290 1123 q 301 1121 297 1120 q 311 1131 305 1122 q 344 1168 322 1151 q 390 1185 366 1185 q 431 1173 409 1185 q 475 1146 453 1161 q 523 1119 498 1131 q 571 1108 547 1108 q 666 1147 626 1108 q 736 1247 705 1186 "},"þ":{"x_min":94,"x_max":722,"ha":793,"o":"m 722 376 q 706 537 722 465 q 659 660 690 608 q 584 739 628 711 q 481 767 539 767 q 347 740 406 767 q 248 656 288 714 l 248 993 q 238 1023 248 1015 q 214 1032 229 1032 l 130 1032 q 98 1018 102 1032 q 94 982 94 1005 l 94 -244 q 100 -280 94 -270 q 131 -290 106 -290 l 223 -290 q 243 -279 238 -290 q 248 -244 248 -269 l 248 78 q 339 7 285 30 q 473 -15 393 -15 q 572 5 527 -15 q 651 73 617 26 q 703 195 684 121 q 722 376 722 269 m 558 309 q 521 150 558 208 q 409 91 484 91 q 345 106 373 91 q 298 141 317 121 q 269 182 279 161 q 259 218 259 204 l 259 487 q 267 544 259 513 q 293 600 275 574 q 341 643 311 626 q 410 661 370 661 q 519 595 481 661 q 558 426 558 530 l 558 309 "},"]":{"x_min":58.046875,"x_max":368,"ha":474,"o":"m 368 -105 l 368 1027 q 361 1052 368 1047 q 333 1057 355 1057 l 91 1057 q 63 1051 69 1057 q 58 1033 58 1045 l 58 965 q 91 940 58 940 l 187 940 q 209 934 203 940 q 215 913 215 928 l 215 5 q 208 -14 215 -9 q 187 -19 202 -19 l 84 -19 q 62 -26 67 -19 q 58 -46 58 -34 l 58 -115 q 65 -134 58 -130 q 90 -139 71 -139 l 330 -139 q 360 -132 352 -139 q 368 -105 368 -125 "},"m":{"x_min":92,"x_max":1074,"ha":1167,"o":"m 1074 63 l 1074 525 q 1056 637 1074 591 q 1010 711 1039 683 q 941 751 980 738 q 859 764 902 764 q 731 730 783 764 q 638 639 679 697 q 561 736 608 709 q 447 764 513 764 q 328 741 373 764 q 247 670 283 718 q 239 733 247 718 q 214 748 232 748 l 125 748 q 98 736 104 748 q 92 704 92 725 l 92 51 q 99 11 92 23 q 130 0 107 0 l 218 0 q 241 12 237 0 q 246 52 246 25 l 246 471 q 252 524 246 496 q 276 576 259 553 q 320 615 293 600 q 387 631 347 631 q 446 619 423 631 q 481 589 469 608 q 499 544 494 569 q 504 492 504 519 l 504 50 q 534 0 504 0 l 629 0 q 654 14 648 0 q 661 63 661 29 l 661 492 q 676 542 666 517 q 702 587 686 567 q 743 619 719 607 q 801 631 768 631 q 859 619 837 631 q 894 589 882 608 q 912 544 907 569 q 917 492 917 519 l 917 50 q 922 11 917 23 q 951 0 928 0 l 1043 0 q 1068 14 1062 0 q 1074 63 1074 29 "},"8":{"x_min":86,"x_max":787,"ha":866,"o":"m 787 248 q 740 408 787 340 q 616 504 694 476 q 667 532 640 512 q 717 583 694 552 q 755 653 740 613 q 771 738 771 693 q 749 854 771 801 q 684 947 727 908 q 577 1009 641 987 q 424 1032 512 1032 q 290 1009 349 1032 q 188 946 230 986 q 123 853 146 906 q 101 737 101 800 q 113 655 101 693 q 144 588 126 618 q 187 536 163 558 q 235 504 211 515 q 184 473 211 495 q 136 418 158 451 q 99 343 113 386 q 86 251 86 301 q 174 53 86 125 q 439 -18 262 -18 q 577 0 513 -18 q 687 50 641 16 q 760 133 734 83 q 787 248 787 183 m 610 715 q 562 611 610 651 q 429 571 514 571 q 308 610 355 571 q 261 716 261 650 q 306 853 261 808 q 430 899 352 899 q 560 854 511 899 q 610 715 610 810 m 622 276 q 574 157 622 197 q 440 117 526 117 q 301 157 353 117 q 249 276 249 197 q 259 343 249 311 q 291 400 269 376 q 347 439 312 424 q 430 454 382 454 q 512 440 476 454 q 572 401 548 426 q 609 345 597 377 q 622 276 622 313 "},"ž":{"x_min":40.84375,"x_max":614,"ha":658,"o":"m 614 29 l 614 75 q 605 102 614 99 q 577 106 597 106 l 244 106 l 598 699 q 606 737 615 727 q 559 748 597 748 l 85 748 q 62 743 69 748 q 56 720 56 738 l 56 671 q 62 645 56 648 q 89 642 68 642 l 396 642 l 56 66 q 41 19 37 39 q 93 0 44 0 l 580 0 q 607 4 600 0 q 614 29 614 9 m 543 1036 q 536 1073 569 1073 l 483 1073 q 464 1071 472 1073 q 447 1056 457 1068 l 348 925 l 250 1056 q 232 1071 239 1070 q 214 1073 226 1073 l 162 1073 q 154 1036 126 1073 l 280 859 q 297 839 290 848 q 322 830 304 830 l 378 830 q 400 839 393 830 q 416 859 408 848 l 543 1036 "},"R":{"x_min":111,"x_max":828.46875,"ha":916,"o":"m 822 721 q 725 939 822 862 q 441 1017 628 1017 l 144 1017 q 116 1008 122 1017 q 111 980 111 1000 l 111 48 q 113 12 111 25 q 138 0 115 0 l 246 0 q 273 8 266 0 q 280 44 280 16 l 280 401 q 282 419 280 415 q 295 424 284 424 l 438 424 q 462 410 455 424 l 640 37 q 655 9 648 18 q 680 0 661 0 l 804 0 q 828 10 825 0 q 816 48 830 20 l 625 442 q 619 456 618 454 q 636 462 620 458 q 698 490 665 469 q 758 544 730 511 q 803 622 785 578 q 822 721 822 667 m 653 721 q 603 596 653 636 q 479 556 554 556 l 307 556 q 285 559 291 556 q 280 582 280 562 l 280 865 q 284 881 280 874 q 305 891 289 889 l 434 891 q 518 881 479 891 q 588 853 558 872 q 635 801 618 834 q 653 721 653 768 "},"á":{"x_min":71,"x_max":699,"ha":791,"o":"m 699 54 l 699 706 q 693 738 699 728 q 658 748 687 748 l 570 748 q 545 712 545 748 l 545 651 q 461 735 514 704 q 317 767 407 767 q 211 739 257 767 q 134 660 165 711 q 86 535 102 608 q 71 369 71 461 q 90 192 71 265 q 144 73 109 119 q 223 6 178 28 q 319 -15 268 -15 q 396 -5 360 -15 q 462 19 432 4 q 513 56 492 35 q 545 99 534 77 l 545 40 q 554 6 545 12 q 578 0 563 0 l 665 0 q 694 13 689 0 q 699 54 699 26 m 534 231 q 523 192 534 215 q 494 146 513 168 q 447 107 475 124 q 383 91 418 91 q 271 151 308 91 q 235 314 235 211 l 235 430 q 272 607 235 554 q 381 661 310 661 q 451 642 422 661 q 498 595 479 623 q 525 537 517 568 q 534 484 534 507 l 534 231 m 603 1034 q 621 1063 622 1053 q 590 1073 619 1073 l 493 1073 q 469 1066 475 1073 q 451 1043 462 1059 l 324 866 q 332 830 300 830 l 386 830 q 410 836 400 830 q 431 855 421 843 l 603 1034 "},"×":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"o":{"x_min":71,"x_max":742,"ha":813,"o":"m 742 371 q 720 553 742 478 q 657 676 698 628 q 555 745 615 723 q 418 767 494 767 q 275 745 339 767 q 166 676 211 723 q 96 553 121 629 q 71 369 71 478 q 93 185 71 258 q 160 66 116 111 q 267 3 204 22 q 411 -15 330 -15 q 654 83 566 -15 q 742 371 742 182 m 583 321 q 538 154 583 216 q 414 91 493 91 q 344 103 376 91 q 288 141 312 115 q 249 207 263 166 q 236 304 236 247 l 236 440 q 286 607 236 554 q 412 660 336 660 q 492 644 459 660 q 545 599 525 628 q 574 532 565 571 q 583 447 583 493 l 583 321 "},"5":{"x_min":81,"x_max":713,"ha":803,"o":"m 713 294 q 699 399 713 352 q 660 482 685 445 q 601 547 635 519 q 526 594 567 575 q 425 632 482 615 q 314 658 369 650 q 282 683 282 664 l 282 847 q 290 872 282 866 q 320 878 298 878 l 648 878 q 682 882 672 878 q 693 903 693 887 l 693 993 q 686 1012 693 1007 q 668 1017 679 1017 l 161 1017 q 141 1010 150 1017 q 132 983 132 1003 l 132 604 q 146 559 132 575 q 184 540 161 543 q 245 532 212 537 q 309 518 277 526 q 370 502 341 511 q 418 483 398 493 q 512 407 480 452 q 545 296 545 362 q 533 228 545 259 q 499 173 522 197 q 442 134 476 148 q 362 121 408 121 q 286 127 321 121 q 222 144 251 134 q 170 164 193 154 q 132 183 147 175 q 107 171 119 189 q 88 129 95 154 q 81 82 81 105 q 86 54 81 59 q 114 36 94 48 q 168 12 133 24 q 254 -7 203 1 q 379 -17 306 -17 q 515 7 454 -17 q 620 73 576 31 q 688 172 664 115 q 713 294 713 229 "},"õ":{"x_min":71,"x_max":742,"ha":813,"o":"m 742 371 q 720 553 742 478 q 657 676 698 628 q 555 745 615 723 q 418 767 494 767 q 275 745 339 767 q 166 676 211 723 q 96 553 121 629 q 71 369 71 478 q 93 185 71 258 q 160 66 116 111 q 267 3 204 22 q 411 -15 330 -15 q 654 83 566 -15 q 742 371 742 182 m 583 321 q 538 154 583 216 q 414 91 493 91 q 344 103 376 91 q 288 141 312 115 q 249 207 263 166 q 236 304 236 247 l 236 440 q 286 607 236 554 q 412 660 336 660 q 492 644 459 660 q 545 599 525 628 q 574 532 565 571 q 583 447 583 493 l 583 321 m 664 998 q 658 1019 671 1013 l 603 1037 q 583 1028 590 1044 q 551 990 572 1008 q 501 972 530 972 q 459 984 482 972 q 411 1011 436 996 q 361 1038 386 1026 q 312 1051 336 1051 q 261 1037 284 1051 q 217 1004 237 1024 q 183 961 198 984 q 161 918 169 938 q 166 900 155 906 l 217 874 q 229 872 224 871 q 238 882 233 873 q 272 919 249 902 q 318 936 294 936 q 359 924 337 936 q 403 897 380 912 q 450 870 426 882 q 498 859 475 859 q 594 898 554 859 q 664 998 633 937 "},"7":{"x_min":39,"x_max":699.09375,"ha":781,"o":"m 695 968 q 694 1004 702 991 q 654 1017 686 1017 l 68 1017 q 43 1009 48 1017 q 39 983 39 1001 l 39 904 q 43 886 39 897 q 65 875 48 875 l 455 875 q 487 843 495 875 l 216 33 q 216 5 208 11 q 247 0 225 0 l 354 0 q 375 9 368 0 q 387 36 382 18 l 695 968 "},"K":{"x_min":111,"x_max":830.578125,"ha":858,"o":"m 820 33 l 424 561 l 792 986 q 803 1011 812 1005 q 766 1017 794 1017 l 656 1017 q 635 1012 641 1017 q 613 991 629 1008 l 279 604 l 279 978 q 274 1009 279 1001 q 249 1017 270 1017 l 148 1017 q 119 1008 127 1017 q 111 972 111 1000 l 111 45 q 117 9 111 18 q 148 0 124 0 l 251 0 q 274 8 270 0 q 279 36 279 16 l 279 411 l 316 454 l 633 31 q 653 6 647 12 q 677 0 660 0 l 802 0 q 828 6 823 0 q 820 33 834 13 "},",":{"x_min":43.03125,"x_max":268.890625,"ha":340,"o":"m 267 126 q 265 149 270 141 q 237 157 260 157 l 130 157 q 110 148 115 157 q 104 123 105 140 q 98 70 104 100 q 84 9 92 40 q 65 -50 76 -20 q 44 -105 55 -80 q 44 -120 41 -112 q 55 -134 48 -128 q 72 -140 62 -140 q 91 -133 81 -140 q 201 -24 152 -91 q 267 126 249 43 "},"d":{"x_min":71,"x_max":699,"ha":791,"o":"m 699 54 l 699 990 q 693 1022 699 1012 q 658 1032 687 1032 l 569 1032 q 545 986 545 1032 l 545 658 q 451 741 504 716 q 317 767 397 767 q 211 739 257 767 q 134 660 165 711 q 86 535 102 608 q 71 369 71 461 q 89 192 71 265 q 141 73 108 119 q 218 6 173 28 q 314 -15 262 -15 q 450 7 394 -15 q 545 79 506 30 l 545 40 q 554 5 545 11 q 578 0 563 0 l 665 0 q 694 13 689 0 q 699 54 699 26 m 533 216 q 524 181 533 203 q 494 140 514 160 q 447 106 475 121 q 385 91 419 91 q 272 151 310 91 q 235 314 235 211 l 235 430 q 272 597 235 534 q 380 661 310 661 q 451 644 422 661 q 498 602 479 627 q 525 547 517 577 q 533 491 533 518 l 533 216 "},"¨":{"x_min":74,"x_max":528,"ha":659,"o":"m 528 908 l 528 994 q 521 1020 528 1013 q 489 1027 515 1027 l 402 1027 q 372 992 372 1027 l 372 910 q 379 882 372 893 q 416 871 387 871 l 497 871 q 522 882 516 871 q 528 908 528 893 m 230 905 l 230 988 q 223 1015 230 1004 q 193 1027 216 1027 l 104 1027 q 78 1015 83 1027 q 74 988 74 1004 l 74 898 q 80 876 74 882 q 111 871 87 871 l 197 871 q 223 880 217 871 q 230 905 230 890 "},"Ô":{"x_min":103,"x_max":857,"ha":960,"o":"m 857 314 l 857 686 q 827 852 857 786 q 745 958 797 919 q 624 1015 693 998 q 479 1032 555 1032 q 195 950 287 1032 q 103 683 103 869 l 103 274 q 143 118 103 175 q 241 30 183 60 q 366 -8 300 0 q 483 -17 432 -17 q 552 -17 512 -17 q 633 -7 591 -17 q 715 23 675 2 q 786 81 755 44 q 837 175 818 119 q 857 314 857 232 m 689 335 q 673 225 689 267 q 628 159 657 182 q 562 127 600 135 q 483 119 525 119 q 406 128 444 119 q 337 160 368 138 q 286 219 305 182 q 267 309 267 256 l 267 672 q 278 768 267 726 q 314 839 289 811 q 382 881 340 866 q 486 896 425 896 q 637 843 586 896 q 689 677 689 791 l 689 335 m 682 1115 l 555 1293 q 539 1313 546 1304 q 514 1322 532 1322 l 458 1322 q 435 1313 443 1322 q 419 1293 428 1304 l 293 1115 q 281 1088 281 1098 q 299 1079 281 1079 l 352 1079 q 370 1081 363 1079 q 389 1095 378 1083 l 487 1226 l 586 1095 q 602 1081 596 1083 q 622 1079 609 1079 l 673 1079 q 682 1115 708 1079 "},"E":{"x_min":111,"x_max":699.78125,"ha":765,"o":"m 699 25 l 699 105 q 687 127 699 122 q 648 132 676 132 l 312 132 q 283 135 294 132 q 272 162 272 138 l 272 435 q 280 460 272 453 q 310 467 288 467 l 541 467 q 582 469 560 467 q 606 493 603 471 l 616 571 q 611 590 619 584 q 574 596 603 596 l 299 596 q 276 602 283 596 q 269 628 269 608 l 269 868 q 275 884 269 877 q 305 891 281 891 l 613 891 q 660 893 642 891 q 677 913 677 896 l 677 994 q 671 1013 677 1010 q 640 1017 665 1017 l 137 1017 q 114 1003 117 1017 q 111 971 111 990 l 111 40 q 120 8 111 16 q 142 0 129 0 l 670 0 q 690 4 681 0 q 699 25 699 9 "},"Y":{"x_min":37.421875,"x_max":835.078125,"ha":873,"o":"m 824 980 q 833 1010 838 1004 q 806 1017 828 1017 l 720 1017 q 694 1010 699 1017 q 678 989 688 1004 q 662 957 678 989 q 620 878 645 926 q 565 775 595 830 q 510 673 535 721 q 469 593 485 625 q 452 561 452 561 l 223 987 q 206 1011 212 1005 q 184 1017 199 1017 l 63 1017 q 40 1012 47 1017 q 44 989 33 1008 l 354 419 l 354 27 q 359 6 354 12 q 380 0 365 0 l 490 0 q 515 6 508 0 q 522 30 522 12 l 522 418 q 544 459 522 418 q 599 564 566 501 q 672 699 633 626 q 746 834 712 772 q 802 939 780 897 q 824 980 824 980 "},"\"":{"x_min":83.71875,"x_max":456.21875,"ha":524,"o":"m 445 971 q 454 1006 460 996 q 429 1017 449 1017 l 343 1017 q 317 1005 323 1017 q 326 969 312 994 l 326 659 q 338 628 329 636 q 367 621 348 621 l 410 621 q 434 628 424 621 q 445 664 445 636 l 445 971 m 215 968 q 223 1005 228 993 q 194 1017 217 1017 l 107 1017 q 84 1007 89 1017 q 94 972 80 997 l 94 666 q 106 630 97 639 q 130 621 114 621 l 175 621 q 202 627 192 621 q 215 657 211 633 l 215 968 "},"‹":{"x_min":63,"x_max":392.625,"ha":485,"o":"m 385 200 l 208 444 l 376 685 q 388 708 388 700 q 376 725 388 716 l 307 764 q 286 767 294 772 q 268 747 278 762 l 63 444 l 274 143 q 290 124 282 129 q 311 126 299 119 l 381 165 q 385 200 401 175 "},"˙":{"x_min":264,"x_max":421,"ha":659,"o":"m 421 920 l 421 993 q 414 1019 421 1013 q 384 1025 408 1025 l 294 1025 q 264 984 264 1025 l 264 923 q 275 897 264 908 q 305 886 286 886 l 391 886 q 416 896 411 886 q 421 920 421 906 "},"ê":{"x_min":71,"x_max":699,"ha":771,"o":"m 699 387 l 699 473 q 619 690 699 614 q 393 767 539 767 q 152 667 233 767 q 71 366 71 568 q 93 191 71 264 q 162 72 116 118 q 274 5 207 26 q 432 -15 341 -15 q 496 -12 462 -15 q 558 -5 529 -9 q 609 1 587 -2 q 638 8 631 5 q 674 23 665 17 q 684 50 684 30 l 684 119 q 674 135 684 131 q 644 132 664 139 q 575 113 625 125 q 439 102 525 102 q 284 154 340 102 q 229 328 229 207 l 642 328 q 690 342 681 328 q 699 387 699 357 m 546 460 q 543 439 546 445 q 530 434 541 434 l 251 434 q 234 440 236 434 q 233 461 233 446 q 242 540 233 503 q 270 605 251 578 q 319 650 289 633 q 391 667 349 667 q 511 613 477 667 q 546 460 546 560 m 594 866 l 468 1043 q 451 1063 458 1054 q 426 1072 444 1072 l 370 1072 q 348 1063 355 1072 q 332 1043 340 1054 l 205 866 q 193 839 193 849 q 211 830 193 830 l 264 830 q 283 832 276 830 q 301 846 290 834 l 400 977 l 498 846 q 515 832 508 834 q 534 830 522 830 l 586 830 q 594 866 621 830 "},"Ï":{"x_min":-35,"x_max":419,"ha":390,"o":"m 279 31 l 279 978 q 274 1009 279 1001 q 251 1017 270 1017 l 148 1017 q 117 1011 124 1017 q 111 986 111 1005 l 111 38 q 117 7 111 15 q 142 0 123 0 l 249 0 q 274 6 269 0 q 279 31 279 13 m 419 1158 l 419 1244 q 412 1270 419 1263 q 380 1277 406 1277 l 293 1277 q 263 1242 263 1277 l 263 1160 q 270 1132 263 1143 q 307 1121 278 1121 l 388 1121 q 413 1132 407 1121 q 419 1158 419 1143 m 121 1155 l 121 1238 q 114 1265 121 1254 q 84 1277 107 1277 l -4 1277 q -30 1265 -25 1277 q -35 1238 -35 1254 l -35 1148 q -28 1126 -35 1132 q 2 1121 -21 1121 l 88 1121 q 114 1130 108 1121 q 121 1155 121 1140 "},"„":{"x_min":57.03125,"x_max":553.890625,"ha":614,"o":"m 552 123 q 550 146 555 138 q 522 154 545 154 l 415 154 q 395 145 400 154 q 389 120 390 137 q 383 67 389 97 q 369 6 377 37 q 350 -53 361 -23 q 329 -108 340 -83 q 329 -123 326 -115 q 340 -137 333 -131 q 357 -143 347 -143 q 376 -136 366 -143 q 486 -27 437 -94 q 552 123 534 40 m 281 123 q 279 146 284 138 q 251 154 274 154 l 144 154 q 124 145 129 154 q 118 120 119 137 q 112 67 118 97 q 98 6 106 37 q 79 -53 90 -23 q 58 -108 69 -83 q 58 -123 55 -115 q 69 -137 62 -131 q 86 -143 76 -143 q 105 -136 95 -143 q 215 -27 166 -94 q 281 123 263 40 "},"Â":{"x_min":48.890625,"x_max":842.34375,"ha":888,"o":"m 836 45 l 554 972 q 536 1006 546 995 q 503 1016 526 1016 l 389 1016 q 355 1006 365 1016 q 338 972 344 995 l 56 45 q 49 6 46 13 q 65 0 53 0 l 165 0 q 188 6 182 0 q 200 36 193 13 l 258 230 l 604 230 l 664 36 q 674 6 671 13 q 697 0 678 0 l 807 0 q 837 6 826 0 q 836 45 847 12 m 567 354 l 296 354 l 432 818 l 567 354 m 639 1116 l 513 1293 q 496 1313 503 1304 q 471 1322 489 1322 l 415 1322 q 392 1313 400 1322 q 376 1293 385 1304 l 250 1116 q 238 1089 238 1099 q 256 1080 238 1080 l 309 1080 q 328 1082 321 1080 q 346 1096 335 1084 l 444 1226 l 543 1096 q 560 1082 553 1084 q 579 1080 567 1080 l 631 1080 q 639 1116 665 1080 "},"Í":{"x_min":111,"x_max":426.3125,"ha":390,"o":"m 279 31 l 279 978 q 274 1009 279 1001 q 251 1017 270 1017 l 148 1017 q 117 1011 124 1017 q 111 986 111 1005 l 111 38 q 117 7 111 15 q 142 0 123 0 l 249 0 q 274 6 269 0 q 279 31 279 13 m 408 1284 q 426 1313 427 1303 q 395 1323 424 1323 l 298 1323 q 274 1316 280 1323 q 256 1293 267 1309 l 129 1116 q 137 1080 105 1080 l 191 1080 q 215 1086 205 1080 q 235 1105 226 1093 l 408 1284 "},"´":{"x_min":183.015625,"x_max":490.375,"ha":658,"o":"m 472 1034 q 490 1063 491 1053 q 459 1073 488 1073 l 362 1073 q 338 1066 344 1073 q 320 1043 331 1059 l 193 866 q 201 830 169 830 l 255 830 q 279 836 269 830 q 300 855 290 843 l 472 1034 "},"ì":{"x_min":-76.15625,"x_max":246,"ha":338,"o":"m 246 48 l 246 706 q 241 738 246 729 q 212 748 237 748 l 125 748 q 98 737 104 748 q 92 706 92 727 l 92 48 q 96 10 92 20 q 121 0 101 0 l 218 0 q 241 10 237 0 q 246 48 246 20 m 219 866 l 93 1043 q 75 1066 82 1059 q 50 1073 68 1073 l -46 1073 q -76 1063 -74 1073 q -58 1034 -77 1053 l 114 855 q 134 836 123 843 q 158 830 144 830 l 212 830 q 219 866 246 830 "},"±":{"x_min":57,"x_max":1135,"ha":1227,"o":"m 1135 48 l 1135 990 q 1130 1022 1135 1013 q 1101 1032 1126 1032 l 1014 1032 q 987 1022 993 1032 q 981 994 981 1013 l 981 45 q 987 8 981 16 q 1015 0 993 0 l 1107 0 q 1130 10 1126 0 q 1135 48 1135 20 m 849 650 l 849 699 q 844 720 849 713 q 817 726 839 726 l 724 726 q 696 771 708 744 q 685 833 685 797 q 705 897 685 876 q 754 918 726 918 q 787 916 778 918 q 819 909 797 914 q 829 924 823 909 q 838 958 835 939 q 842 994 842 978 q 837 1013 842 1011 q 790 1026 821 1020 q 714 1032 759 1032 q 629 1016 664 1032 q 573 975 594 1001 q 541 917 551 950 q 532 852 532 885 q 541 771 532 799 q 559 726 551 743 l 313 726 q 285 771 297 744 q 274 833 274 797 q 294 897 274 876 q 343 918 315 918 q 376 916 367 918 q 408 909 386 914 q 418 924 412 909 q 427 958 424 939 q 431 994 431 978 q 426 1013 431 1011 q 379 1026 410 1020 q 303 1032 348 1032 q 218 1016 253 1032 q 162 975 183 1001 q 130 917 140 950 q 121 852 121 885 q 130 770 121 799 q 148 725 140 742 l 79 725 q 57 695 57 725 l 57 648 q 62 625 57 631 q 87 619 68 619 l 160 619 l 160 36 q 171 8 160 16 q 199 0 183 0 l 283 0 q 316 45 316 0 l 316 620 l 571 620 l 571 36 q 582 8 571 16 q 610 0 594 0 l 694 0 q 727 45 727 0 l 727 620 l 817 620 q 843 629 837 620 q 849 650 849 638 "},"Ú":{"x_min":108,"x_max":819,"ha":927,"o":"m 819 315 l 819 971 q 810 1007 819 998 q 784 1017 802 1017 l 675 1017 q 656 1007 661 1015 q 652 980 652 1000 l 652 347 q 643 252 652 294 q 613 182 635 211 q 555 136 592 152 q 460 121 518 121 q 324 178 377 121 q 272 344 272 236 l 272 971 q 263 1007 272 998 q 237 1017 255 1017 l 131 1017 q 112 1007 117 1015 q 108 980 108 1000 l 108 291 q 141 141 108 201 q 226 46 174 82 q 339 -3 277 11 q 460 -18 402 -18 q 579 -6 516 -18 q 696 39 642 4 q 784 140 749 75 q 819 315 819 205 m 647 1284 q 665 1313 667 1303 q 635 1323 664 1323 l 538 1323 q 514 1316 520 1323 q 496 1293 507 1309 l 369 1116 q 377 1080 345 1080 l 431 1080 q 455 1086 445 1080 q 475 1105 466 1093 l 647 1284 "},"|":{"x_min":115,"x_max":253,"ha":364,"o":"m 253 -231 l 253 1061 q 250 1093 253 1084 q 227 1103 247 1103 l 154 1103 q 121 1094 127 1103 q 115 1062 115 1086 l 115 -225 q 123 -261 115 -253 q 155 -270 131 -270 l 226 -270 q 248 -263 243 -270 q 253 -231 253 -256 "},"§":{"x_min":99,"x_max":598,"ha":684,"o":"m 598 455 q 580 541 598 504 q 533 608 563 577 q 465 664 504 639 q 384 712 426 689 q 333 743 358 728 q 289 774 308 758 q 260 805 271 790 q 249 837 249 821 q 280 905 249 882 q 374 928 312 928 q 456 918 414 928 q 532 900 499 909 q 549 913 540 897 q 564 950 558 929 q 570 988 570 970 q 564 1008 570 1005 q 502 1023 550 1015 q 377 1032 453 1032 q 276 1020 324 1032 q 192 983 228 1008 q 133 920 155 958 q 111 833 111 883 q 124 774 111 802 q 161 721 138 746 q 212 675 184 696 q 269 636 240 654 q 204 623 235 636 q 150 586 174 609 q 112 532 126 563 q 99 463 99 501 q 115 388 99 421 q 160 328 132 354 q 224 280 187 301 q 301 238 261 258 q 409 168 372 204 q 447 90 447 133 q 412 20 447 47 q 305 -7 377 -7 q 193 6 234 -7 q 130 27 151 20 q 114 16 119 31 q 106 -18 108 1 q 105 -56 105 -38 q 111 -77 105 -74 q 185 -105 132 -88 q 327 -122 239 -122 q 421 -110 375 -122 q 504 -74 468 -99 q 562 -10 540 -49 q 585 84 585 29 q 551 190 585 143 q 468 273 517 237 q 516 295 493 280 q 557 333 539 311 q 586 386 575 355 q 598 455 598 416 m 474 449 q 443 369 474 393 q 365 345 413 345 q 307 357 333 345 q 262 387 281 369 q 233 425 243 405 q 223 463 223 445 q 253 534 223 505 q 341 563 283 563 q 399 553 375 563 q 440 526 423 542 q 465 490 457 510 q 474 449 474 470 "},"Ý":{"x_min":37.421875,"x_max":835.078125,"ha":873,"o":"m 824 980 q 833 1010 838 1004 q 806 1017 828 1017 l 720 1017 q 694 1010 699 1017 q 678 989 688 1004 q 662 957 678 989 q 620 878 645 926 q 565 775 595 830 q 510 673 535 721 q 469 593 485 625 q 452 561 452 561 l 223 987 q 206 1011 212 1005 q 184 1017 199 1017 l 63 1017 q 40 1012 47 1017 q 44 989 33 1008 l 354 419 l 354 27 q 359 6 354 12 q 380 0 365 0 l 490 0 q 515 6 508 0 q 522 30 522 12 l 522 418 q 544 459 522 418 q 599 564 566 501 q 672 699 633 626 q 746 834 712 772 q 802 939 780 897 q 824 980 824 980 m 685 1284 q 703 1313 705 1303 q 673 1323 702 1323 l 576 1323 q 551 1316 558 1323 q 534 1293 545 1309 l 406 1116 q 415 1080 383 1080 l 469 1080 q 493 1086 483 1080 q 513 1105 503 1093 l 685 1284 "},"b":{"x_min":94,"x_max":722,"ha":793,"o":"m 722 369 q 706 535 722 461 q 658 660 690 608 q 581 739 627 711 q 475 767 535 767 q 337 740 392 767 q 248 658 282 714 l 248 986 q 243 1020 248 1008 q 223 1032 238 1032 l 134 1032 q 99 1022 105 1032 q 94 990 94 1012 l 94 54 q 98 13 94 26 q 127 0 103 0 l 214 0 q 238 5 229 0 q 248 39 248 11 l 248 79 q 341 7 285 29 q 478 -15 398 -15 q 574 6 530 -15 q 651 73 619 28 q 703 192 684 119 q 722 369 722 265 m 558 314 q 520 151 558 211 q 407 91 482 91 q 344 106 371 91 q 298 140 317 121 q 268 181 278 160 q 259 216 259 203 l 259 491 q 267 547 259 518 q 294 602 275 577 q 341 644 313 627 q 412 661 370 661 q 520 597 482 661 q 558 430 558 534 l 558 314 "},"q":{"x_min":71,"x_max":699,"ha":791,"o":"m 699 -252 l 699 704 q 694 738 699 728 q 662 748 690 748 l 575 748 q 550 738 556 748 q 545 708 545 728 l 545 656 q 442 741 499 715 q 311 767 385 767 q 208 739 253 767 q 133 660 164 711 q 86 537 102 608 q 71 376 71 465 q 89 195 71 269 q 141 73 108 121 q 220 5 175 26 q 319 -15 265 -15 q 449 6 392 -15 q 545 78 506 28 l 545 -259 q 550 -284 545 -278 q 569 -290 556 -290 l 661 -290 q 692 -281 686 -290 q 699 -252 699 -273 m 533 212 q 524 178 533 198 q 494 138 514 157 q 447 105 475 119 q 383 91 419 91 q 271 150 308 91 q 235 309 235 208 l 235 426 q 273 595 235 530 q 382 661 311 661 q 451 643 422 661 q 499 600 481 626 q 525 544 517 574 q 533 487 533 513 l 533 212 "},"Ö":{"x_min":103,"x_max":857,"ha":960,"o":"m 857 314 l 857 686 q 827 852 857 786 q 745 958 797 919 q 624 1015 693 998 q 479 1032 555 1032 q 195 950 287 1032 q 103 683 103 869 l 103 274 q 143 118 103 175 q 241 30 183 60 q 366 -8 300 0 q 483 -17 432 -17 q 552 -17 512 -17 q 633 -7 591 -17 q 715 23 675 2 q 786 81 755 44 q 837 175 818 119 q 857 314 857 232 m 689 335 q 673 225 689 267 q 628 159 657 182 q 562 127 600 135 q 483 119 525 119 q 406 128 444 119 q 337 160 368 138 q 286 219 305 182 q 267 309 267 256 l 267 672 q 278 768 267 726 q 314 839 289 811 q 382 881 340 866 q 486 896 425 896 q 637 843 586 896 q 689 677 689 791 l 689 335 m 709 1158 l 709 1244 q 702 1270 709 1263 q 670 1277 696 1277 l 583 1277 q 553 1242 553 1277 l 553 1160 q 560 1132 553 1143 q 597 1121 568 1121 l 678 1121 q 703 1132 697 1121 q 709 1158 709 1143 m 410 1155 l 410 1238 q 403 1265 410 1254 q 373 1277 396 1277 l 284 1277 q 258 1265 263 1277 q 254 1238 254 1254 l 254 1148 q 260 1126 254 1132 q 291 1121 267 1121 l 377 1121 q 403 1130 397 1121 q 410 1155 410 1140 "},"ﬂ":{"x_min":57,"x_max":724,"ha":816,"o":"m 724 48 l 724 990 q 720 1022 724 1013 q 692 1032 717 1032 l 604 1032 q 577 1022 583 1032 q 571 994 571 1013 l 571 45 q 577 8 571 16 q 605 0 583 0 l 697 0 q 720 10 717 0 q 724 48 724 20 m 438 650 l 438 699 q 433 720 438 713 q 406 726 428 726 l 313 726 q 285 771 297 744 q 274 833 274 797 q 294 897 274 876 q 343 918 315 918 q 376 916 367 918 q 408 909 386 914 q 418 924 412 909 q 427 958 424 939 q 431 994 431 978 q 426 1013 431 1011 q 379 1026 410 1020 q 303 1032 348 1032 q 218 1016 253 1032 q 162 975 183 1001 q 130 917 140 950 q 121 852 121 885 q 130 770 121 799 q 148 725 140 742 l 79 725 q 57 695 57 725 l 57 648 q 62 625 57 631 q 87 619 68 619 l 160 619 l 160 36 q 171 8 160 16 q 199 0 183 0 l 283 0 q 316 45 316 0 l 316 620 l 406 620 q 432 629 426 620 q 438 650 438 638 "},"z":{"x_min":40.84375,"x_max":614,"ha":658,"o":"m 614 29 l 614 75 q 605 102 614 99 q 577 106 597 106 l 244 106 l 598 699 q 606 737 615 727 q 559 748 597 748 l 85 748 q 62 743 69 748 q 56 720 56 738 l 56 671 q 62 645 56 648 q 89 642 68 642 l 396 642 l 56 66 q 41 19 37 39 q 93 0 44 0 l 580 0 q 607 4 600 0 q 614 29 614 9 "},"™":{"x_min":14,"x_max":810,"ha":860,"o":"m 810 620 l 810 993 q 807 1011 810 1005 q 794 1017 805 1017 l 729 1017 q 707 1004 714 1017 l 607 811 q 597 814 601 805 l 495 1005 q 484 1015 490 1014 q 472 1017 479 1017 l 411 1017 q 397 1012 401 1017 q 393 994 393 1008 l 393 625 q 399 603 393 606 q 415 600 406 600 l 465 600 q 479 606 476 600 q 482 619 482 612 l 482 878 q 493 879 482 894 l 572 716 q 582 700 579 703 q 591 697 585 697 l 607 697 q 616 699 614 697 q 625 713 618 702 l 710 880 q 718 892 717 892 q 720 882 720 892 l 720 625 q 724 605 720 611 q 742 600 728 600 l 793 600 q 807 604 804 600 q 810 620 810 609 m 340 958 l 340 1010 q 320 1017 340 1017 l 33 1017 q 14 1007 14 1017 l 14 958 q 16 951 14 953 q 27 949 18 949 l 121 949 q 135 945 132 949 q 138 933 138 942 l 138 625 q 141 604 138 608 q 156 600 144 600 l 212 600 q 227 605 224 600 q 231 625 231 611 l 231 933 q 233 945 231 942 q 246 949 235 949 l 326 949 q 337 951 335 949 q 340 958 340 954 "},"ã":{"x_min":71,"x_max":699,"ha":791,"o":"m 699 54 l 699 706 q 693 738 699 728 q 658 748 687 748 l 570 748 q 545 712 545 748 l 545 651 q 461 735 514 704 q 317 767 407 767 q 211 739 257 767 q 134 660 165 711 q 86 535 102 608 q 71 369 71 461 q 90 192 71 265 q 144 73 109 119 q 223 6 178 28 q 319 -15 268 -15 q 396 -5 360 -15 q 462 19 432 4 q 513 56 492 35 q 545 99 534 77 l 545 40 q 554 6 545 12 q 578 0 563 0 l 665 0 q 694 13 689 0 q 699 54 699 26 m 534 231 q 523 192 534 215 q 494 146 513 168 q 447 107 475 124 q 383 91 418 91 q 271 151 308 91 q 235 314 235 211 l 235 430 q 272 607 235 554 q 381 661 310 661 q 451 642 422 661 q 498 595 479 623 q 525 537 517 568 q 534 484 534 507 l 534 231 m 654 998 q 649 1019 661 1013 l 593 1037 q 574 1028 581 1044 q 542 990 563 1008 q 492 972 521 972 q 449 984 472 972 q 401 1011 426 996 q 351 1038 376 1026 q 303 1051 326 1051 q 251 1037 275 1051 q 208 1004 228 1024 q 174 961 189 984 q 151 918 159 938 q 157 900 146 906 l 208 874 q 219 872 215 871 q 229 882 223 873 q 262 919 240 902 q 308 936 285 936 q 349 924 328 936 q 394 897 371 912 q 441 870 417 882 q 489 859 465 859 q 584 898 544 859 q 654 998 624 937 "},"æ":{"x_min":71,"x_max":1160,"ha":1234,"o":"m 1160 390 l 1160 474 q 1080 694 1160 621 q 854 767 1000 767 q 683 728 752 767 q 672 743 680 739 q 644 748 665 748 l 569 748 q 545 713 545 748 l 545 651 q 460 735 513 704 q 316 767 406 767 q 211 739 256 767 q 134 660 165 711 q 86 535 102 608 q 71 369 71 461 q 90 192 71 265 q 143 73 109 119 q 222 6 177 28 q 319 -15 268 -15 q 395 -5 359 -15 q 461 19 431 4 q 512 56 491 35 q 545 99 533 77 l 545 40 q 553 6 545 12 q 578 0 562 0 l 651 0 q 674 7 667 0 q 683 28 680 14 q 893 -15 765 -15 q 957 -12 923 -15 q 1019 -6 990 -9 q 1070 1 1048 -2 q 1099 8 1092 5 q 1135 23 1126 16 q 1145 50 1145 30 l 1145 119 q 1135 135 1145 131 q 1105 132 1125 139 q 1036 113 1086 125 q 900 102 986 102 q 745 156 801 102 q 690 331 690 210 l 1103 331 q 1151 345 1142 331 q 1160 390 1160 360 m 1007 456 q 1004 435 1007 441 q 991 430 1002 430 l 712 430 q 695 436 696 430 q 694 457 694 442 q 703 538 694 500 q 731 605 712 576 q 780 650 750 633 q 851 667 810 667 q 972 612 938 667 q 1007 456 1007 558 m 533 231 q 522 192 533 215 q 493 146 512 168 q 446 107 474 124 q 383 91 417 91 q 271 151 308 91 q 235 314 235 211 l 235 430 q 272 607 235 554 q 380 661 309 661 q 450 642 422 661 q 497 595 478 623 q 524 537 516 568 q 533 484 533 507 l 533 231 "},"®":{"x_min":35,"x_max":1021,"ha":1056,"o":"m 1021 496 q 982 690 1021 600 q 877 847 944 780 q 721 953 811 914 q 528 992 630 992 q 334 953 425 992 q 178 847 244 914 q 73 690 111 780 q 35 496 35 600 q 73 301 35 391 q 178 144 111 211 q 334 38 244 77 q 528 0 425 0 q 721 38 630 0 q 877 144 811 77 q 982 301 944 211 q 1021 496 1021 391 m 946 496 q 913 327 946 405 q 823 192 880 249 q 690 101 766 134 q 528 69 614 69 q 365 101 441 69 q 232 192 289 134 q 142 327 175 249 q 110 496 110 405 q 142 664 110 586 q 232 799 175 742 q 365 890 289 857 q 528 923 441 923 q 690 890 614 923 q 823 799 766 857 q 913 664 880 742 q 946 496 946 586 m 735 267 l 619 455 q 618 461 617 461 q 625 465 619 462 q 651 477 635 468 q 683 503 668 487 q 708 543 697 519 q 720 598 720 566 q 675 710 720 668 q 537 752 631 752 l 380 752 q 366 748 369 752 q 364 733 364 745 l 364 270 q 364 249 364 256 q 376 243 365 243 l 440 243 q 453 247 450 243 q 457 265 457 252 l 457 433 q 457 443 457 441 q 465 446 458 446 l 512 446 q 525 440 522 446 l 637 261 q 645 247 642 253 q 657 242 649 242 l 729 242 q 735 267 750 242 m 624 601 q 603 540 624 558 q 550 522 582 522 l 470 522 q 459 524 462 522 q 457 534 457 526 l 457 667 q 459 676 457 671 q 469 680 461 681 l 533 680 q 624 601 624 680 "},"É":{"x_min":111,"x_max":699.78125,"ha":765,"o":"m 699 25 l 699 105 q 687 127 699 122 q 648 132 676 132 l 312 132 q 283 135 294 132 q 272 162 272 138 l 272 435 q 280 460 272 453 q 310 467 288 467 l 541 467 q 582 469 560 467 q 606 493 603 471 l 616 571 q 611 590 619 584 q 574 596 603 596 l 299 596 q 276 602 283 596 q 269 628 269 608 l 269 868 q 275 884 269 877 q 305 891 281 891 l 613 891 q 660 893 642 891 q 677 913 677 896 l 677 994 q 671 1013 677 1010 q 640 1017 665 1017 l 137 1017 q 114 1003 117 1017 q 111 971 111 990 l 111 40 q 120 8 111 16 q 142 0 129 0 l 670 0 q 690 4 681 0 q 699 25 699 9 m 605 1283 q 623 1312 624 1303 q 592 1322 622 1322 l 495 1322 q 471 1315 477 1322 q 453 1293 465 1308 l 326 1116 q 334 1080 302 1080 l 388 1080 q 412 1086 402 1080 q 433 1104 423 1093 l 605 1283 "},"~":{"x_min":107.40625,"x_max":634.25,"ha":731,"o":"m 631 440 q 625 462 638 457 l 563 484 q 543 476 551 491 q 511 435 531 454 q 462 416 491 416 q 419 428 443 416 q 370 456 395 440 q 318 483 344 471 q 268 496 291 496 q 215 482 240 496 q 169 447 190 468 q 133 402 148 426 q 109 356 118 377 q 116 339 102 343 l 170 311 q 181 309 177 309 q 193 319 187 309 q 227 355 204 339 q 273 372 250 372 q 315 359 293 372 q 362 332 338 347 q 411 304 386 317 q 461 292 436 292 q 559 335 519 292 q 631 440 600 378 "},"³":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"¡":{"x_min":100,"x_max":285,"ha":382,"o":"m 125 47 q 130 11 125 23 q 156 0 135 0 l 229 0 q 256 13 252 0 q 260 49 260 26 l 260 672 q 253 710 260 702 q 217 718 246 718 l 152 718 q 130 708 136 718 q 125 673 125 698 l 125 47 m 100 974 l 100 897 q 106 871 100 877 q 140 866 113 866 l 254 866 q 279 875 273 866 q 285 900 285 885 l 285 978 q 279 1005 285 994 q 246 1017 273 1017 l 136 1017 q 106 1005 112 1017 q 100 974 100 993 "},"[":{"x_min":104,"x_max":413.953125,"ha":474,"o":"m 413 -115 l 413 -46 q 409 -26 413 -34 q 387 -19 404 -19 l 284 -19 q 263 -14 269 -19 q 257 5 257 -9 l 257 913 q 262 934 257 928 q 284 940 268 940 l 380 940 q 413 965 413 940 l 413 1033 q 408 1051 413 1045 q 380 1057 402 1057 l 138 1057 q 109 1052 115 1057 q 104 1027 104 1047 l 104 -105 q 111 -132 104 -125 q 141 -139 119 -139 l 381 -139 q 406 -134 398 -139 q 413 -115 413 -130 "},"L":{"x_min":111,"x_max":680.390625,"ha":711,"o":"m 680 26 l 680 98 q 677 119 680 113 q 654 126 674 126 l 310 126 q 286 130 294 126 q 279 152 279 135 l 279 970 q 272 1007 279 998 q 241 1016 265 1016 l 141 1016 q 116 1008 122 1016 q 111 980 111 999 l 111 48 q 115 10 111 20 q 140 0 120 0 l 647 0 q 673 3 666 0 q 680 26 680 6 "},";":{"x_min":35.3125,"x_max":266,"ha":341,"o":"m 266 635 l 266 709 q 260 736 266 725 q 228 748 254 748 l 111 748 q 86 734 92 748 q 81 704 81 720 l 81 628 q 88 601 81 611 q 125 591 96 591 l 235 591 q 260 605 254 591 q 266 635 266 620 m 260 126 q 258 149 263 141 q 229 157 253 157 l 122 157 q 102 148 107 157 q 96 123 97 140 q 90 70 96 100 q 76 9 84 40 q 58 -50 68 -20 q 36 -105 47 -80 q 37 -120 33 -112 q 47 -134 40 -128 q 64 -140 54 -140 q 83 -133 74 -140 q 193 -24 144 -91 q 260 126 242 43 "}," ":{"x_min":0,"x_max":0,"ha":315},"∑":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"%":{"x_min":60,"x_max":999,"ha":1048,"o":"m 999 158 l 999 329 q 982 419 999 383 q 938 476 965 454 q 877 506 911 497 q 809 515 843 515 q 662 467 717 515 q 608 319 608 418 l 608 157 q 662 27 608 69 q 809 -15 717 -15 q 877 -6 844 -15 q 938 21 911 1 q 982 75 965 41 q 999 158 999 108 m 841 985 q 853 1018 853 1009 q 833 1027 853 1027 l 769 1027 q 734 1018 743 1027 q 715 988 726 1010 l 230 44 q 221 9 217 18 q 250 0 226 0 l 310 0 q 335 7 326 0 q 355 38 343 15 l 841 985 m 450 674 l 450 845 q 433 934 450 899 q 389 991 416 969 q 328 1021 362 1012 q 261 1031 294 1031 q 114 982 169 1031 q 60 836 60 933 l 60 674 q 114 543 60 585 q 261 501 169 501 q 329 509 295 501 q 389 537 362 517 q 433 591 416 557 q 450 674 450 624 m 891 166 q 872 112 891 138 q 808 86 853 86 q 743 109 765 86 q 721 169 721 133 l 721 299 q 739 378 721 347 q 811 409 758 409 q 873 377 856 409 q 891 304 891 346 l 891 166 m 342 682 q 323 628 342 654 q 261 602 304 602 q 195 625 217 602 q 174 685 174 649 l 174 814 q 192 893 174 862 q 264 925 210 925 q 324 893 307 925 q 342 819 342 862 l 342 682 "},"P":{"x_min":111,"x_max":822,"ha":880,"o":"m 822 694 q 441 1017 822 1017 l 144 1017 q 116 1008 122 1017 q 111 980 111 1000 l 111 48 q 113 12 111 25 q 138 0 115 0 l 246 0 q 273 8 266 0 q 280 44 280 16 l 280 336 q 283 359 280 354 q 302 364 286 364 l 460 364 q 732 448 642 364 q 822 694 822 533 m 651 701 q 600 543 651 591 q 475 496 550 496 l 307 496 q 285 500 291 496 q 280 522 280 504 l 280 865 q 284 881 280 874 q 305 891 289 889 l 434 891 q 518 880 478 891 q 587 847 557 870 q 633 788 616 824 q 651 701 651 751 "},"∏":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"À":{"x_min":48.390625,"x_max":841.84375,"ha":888,"o":"m 836 45 l 554 972 q 536 1006 545 995 q 502 1016 526 1016 l 388 1016 q 354 1006 365 1016 q 337 972 344 995 l 55 45 q 49 6 45 13 q 65 0 52 0 l 165 0 q 187 6 181 0 q 200 36 193 13 l 258 230 l 604 230 l 663 36 q 674 6 670 13 q 697 0 677 0 l 806 0 q 836 6 826 0 q 836 45 847 12 m 566 354 l 295 354 l 431 818 l 566 354 m 519 1116 l 393 1293 q 375 1315 381 1308 q 350 1322 368 1322 l 252 1322 q 223 1312 225 1322 q 241 1283 222 1303 l 413 1104 q 434 1086 423 1093 q 458 1080 444 1080 l 512 1080 q 519 1116 545 1080 "},"_":{"x_min":14,"x_max":613,"ha":620,"o":"m 613 -116 l 613 -57 q 600 -34 613 -38 q 560 -30 587 -30 l 55 -30 q 23 -34 32 -30 q 14 -63 14 -38 l 14 -123 q 22 -145 14 -139 q 51 -151 30 -151 l 561 -151 q 603 -145 593 -151 q 613 -116 613 -139 "},"ñ":{"x_min":92,"x_max":688,"ha":781,"o":"m 688 63 l 688 525 q 670 637 688 591 q 622 711 653 683 q 552 751 592 738 q 468 764 512 764 q 336 736 389 764 q 247 659 283 708 q 239 728 247 708 q 214 748 232 748 l 125 748 q 98 736 104 748 q 92 704 92 725 l 92 51 q 99 11 92 23 q 130 0 107 0 l 218 0 q 241 12 237 0 q 246 52 246 25 l 246 470 q 255 524 246 495 q 282 575 264 552 q 330 613 301 598 q 400 629 360 629 q 461 617 436 629 q 501 588 486 606 q 524 544 517 569 q 531 491 531 519 l 531 49 q 567 0 531 0 l 657 0 q 682 14 676 0 q 688 63 688 29 m 647 997 q 642 1018 654 1012 l 586 1036 q 567 1027 574 1043 q 535 989 556 1007 q 485 971 514 971 q 442 983 465 971 q 394 1010 419 995 q 344 1037 369 1025 q 296 1050 319 1050 q 244 1036 268 1050 q 201 1003 221 1023 q 167 960 182 983 q 144 917 153 937 q 150 899 139 905 l 201 873 q 212 871 208 870 q 222 881 216 872 q 255 918 233 901 q 301 935 278 935 q 342 923 321 935 q 387 896 364 911 q 434 869 410 881 q 482 858 458 858 q 577 897 537 858 q 647 997 617 936 "},"+":{"x_min":29,"x_max":700,"ha":731,"o":"m 700 307 l 700 375 q 689 398 700 395 q 651 402 679 402 l 428 402 l 428 629 q 423 661 428 652 q 394 671 419 671 l 330 671 q 303 661 309 671 q 297 630 297 651 l 297 402 l 70 402 q 38 397 47 402 q 29 368 29 393 l 29 304 q 35 282 29 288 q 63 277 42 277 l 297 277 l 297 51 q 303 11 297 23 q 333 0 309 0 l 400 0 q 423 10 419 0 q 428 48 428 20 l 428 277 l 648 277 q 688 281 676 277 q 700 307 700 285 "},"‚":{"x_min":52.046875,"x_max":277.890625,"ha":346,"o":"m 276 123 q 274 146 279 138 q 246 154 269 154 l 139 154 q 119 145 124 154 q 113 120 114 137 q 107 67 113 97 q 93 6 101 37 q 74 -53 85 -23 q 53 -108 64 -83 q 53 -123 50 -115 q 64 -137 57 -131 q 81 -143 71 -143 q 100 -136 90 -143 q 210 -27 161 -94 q 276 123 258 40 "},"½":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"Æ":{"x_min":46.890625,"x_max":1166.390625,"ha":1234,"o":"m 1166 25 l 1166 105 q 1155 127 1166 122 q 1116 132 1144 132 l 778 132 q 750 135 760 132 q 740 162 740 138 l 740 435 q 748 460 740 453 q 778 467 756 467 l 1008 467 q 1050 469 1029 467 q 1073 493 1070 471 l 1083 571 q 1078 590 1086 584 q 1041 596 1070 596 l 767 596 q 744 602 751 596 q 737 628 737 608 l 737 868 q 743 884 737 877 q 773 891 749 891 l 1082 891 q 1128 893 1111 891 q 1146 913 1146 896 l 1146 994 q 1139 1013 1146 1010 q 1108 1017 1133 1017 l 543 1017 q 511 1006 519 1017 q 493 972 504 996 l 52 38 q 67 0 35 0 l 160 0 q 185 7 176 0 q 202 36 194 15 l 294 231 l 554 231 q 579 204 579 231 l 579 40 q 588 8 579 16 q 610 0 597 0 l 1137 0 q 1157 4 1148 0 q 1166 25 1166 9 m 579 379 q 574 360 579 368 q 554 353 569 353 l 344 353 l 579 867 l 579 379 "},"Ë":{"x_min":111,"x_max":699.78125,"ha":765,"o":"m 699 25 l 699 105 q 687 127 699 122 q 648 132 676 132 l 312 132 q 283 135 294 132 q 272 162 272 138 l 272 435 q 280 460 272 453 q 310 467 288 467 l 541 467 q 582 469 561 467 q 607 493 604 471 l 616 571 q 611 590 619 584 q 575 596 604 596 l 299 596 q 276 602 283 596 q 269 628 269 608 l 269 868 q 275 884 269 877 q 305 891 281 891 l 614 891 q 660 893 643 891 q 677 913 677 896 l 677 994 q 671 1013 677 1010 q 640 1017 665 1017 l 137 1017 q 114 1003 117 1017 q 111 971 111 990 l 111 40 q 120 8 111 16 q 142 0 129 0 l 670 0 q 690 4 681 0 q 699 25 699 9 m 621 1158 l 621 1244 q 614 1270 621 1263 q 582 1277 608 1277 l 495 1277 q 465 1242 465 1277 l 465 1160 q 472 1132 465 1143 q 509 1121 480 1121 l 590 1121 q 615 1132 609 1121 q 621 1158 621 1143 m 322 1155 l 322 1238 q 315 1265 322 1254 q 285 1277 308 1277 l 196 1277 q 170 1265 175 1277 q 166 1238 166 1254 l 166 1148 q 172 1126 166 1132 q 203 1121 179 1121 l 289 1121 q 315 1130 309 1121 q 322 1155 322 1140 "},"'":{"x_min":103,"x_max":225,"ha":311,"o":"m 225 968 q 220 1005 225 993 q 196 1017 215 1017 l 124 1017 q 106 1007 109 1017 q 103 972 103 997 l 103 666 q 116 630 106 639 q 141 621 125 621 l 184 621 q 212 627 204 621 q 225 657 221 633 l 225 968 "},"Š":{"x_min":72,"x_max":758,"ha":841,"o":"m 758 270 q 683 460 758 384 q 468 593 609 536 q 382 631 418 613 q 322 669 346 649 q 287 713 298 689 q 276 768 276 737 q 319 865 276 830 q 474 901 362 901 q 584 890 530 901 q 670 870 639 880 q 692 886 681 867 q 708 929 702 905 q 715 974 715 954 q 703 1001 715 997 q 677 1010 692 1005 q 635 1020 662 1015 q 566 1028 608 1025 q 460 1032 524 1032 q 303 1011 370 1032 q 191 954 235 990 q 125 871 147 919 q 104 769 104 823 q 126 652 104 701 q 188 568 149 603 q 278 506 227 532 q 384 457 328 479 q 477 415 439 435 q 537 372 514 395 q 570 322 560 349 q 580 263 580 296 q 561 195 580 222 q 513 151 543 168 q 440 127 482 135 q 351 120 398 120 q 258 126 298 120 q 189 140 219 132 q 137 157 159 149 q 102 171 116 165 q 87 154 94 172 q 76 110 80 135 q 72 63 72 85 q 77 36 72 41 q 178 -1 105 17 q 373 -20 251 -20 q 512 -6 444 -20 q 635 39 581 6 q 723 129 689 73 q 758 270 758 185 m 628 1285 q 621 1322 655 1322 l 568 1322 q 550 1319 557 1322 q 532 1305 542 1317 l 434 1174 l 335 1305 q 318 1320 324 1319 q 299 1322 312 1322 l 248 1322 q 239 1285 212 1322 l 366 1108 q 382 1088 375 1097 q 407 1079 389 1079 l 463 1079 q 486 1088 478 1079 q 502 1108 493 1097 l 628 1285 "},"ª":{"x_min":72,"x_max":515,"ha":612,"o":"m 515 530 l 515 986 q 511 1009 515 1002 q 487 1016 508 1016 l 420 1016 q 402 992 402 1016 l 402 947 q 344 1007 382 985 q 244 1029 306 1029 q 115 954 159 1029 q 72 749 72 880 q 85 627 72 677 q 123 543 99 576 q 178 496 147 511 q 245 482 209 482 q 345 505 302 482 q 404 561 389 529 l 404 520 q 409 496 404 501 q 426 492 415 492 l 494 492 q 512 501 509 492 q 515 530 515 511 m 396 676 q 388 636 396 656 q 366 599 380 616 q 331 572 351 583 q 290 561 312 561 q 216 605 241 561 q 191 711 191 649 l 191 794 q 288 950 191 950 q 334 936 315 950 q 368 904 354 923 q 389 864 382 886 q 396 826 396 843 l 396 676 "},"Œ":{"x_min":103,"x_max":1274,"ha":1339,"o":"m 1274 25 l 1274 105 q 1261 127 1274 122 q 1221 132 1249 132 l 886 132 q 857 135 868 132 q 846 162 846 138 l 846 435 q 854 460 846 453 q 884 467 862 467 l 1115 467 q 1155 469 1134 467 q 1180 493 1177 471 l 1189 571 q 1185 590 1192 584 q 1148 596 1177 596 l 873 596 q 850 602 857 596 q 843 628 843 608 l 843 868 q 849 884 843 877 q 879 891 855 891 l 1187 891 q 1233 893 1216 891 q 1251 913 1251 896 l 1251 994 q 1244 1013 1251 1010 q 1213 1017 1238 1017 l 710 1017 q 686 976 686 1017 q 594 1017 650 1003 q 479 1032 537 1032 q 195 950 287 1032 q 103 683 103 869 l 103 273 q 143 117 103 175 q 241 29 183 59 q 366 -9 300 -1 q 483 -18 432 -18 q 532 -14 504 -18 q 589 -2 559 -11 q 644 18 618 5 q 689 53 671 32 q 693 16 689 32 q 716 0 697 0 l 1244 0 q 1264 4 1255 0 q 1274 25 1274 9 m 685 275 q 659 196 678 226 q 614 149 640 165 q 554 126 587 132 q 483 120 521 120 q 406 129 444 120 q 337 161 368 139 q 286 220 305 183 q 267 310 267 257 l 267 672 q 278 768 267 726 q 314 839 289 811 q 382 881 340 866 q 486 896 425 896 q 622 858 572 896 q 685 737 672 821 l 685 275 "},"˛":{"x_min":193,"x_max":462.03125,"ha":659,"o":"m 458 -234 q 460 -217 464 -227 q 449 -199 457 -207 q 433 -186 441 -191 q 421 -186 425 -182 q 391 -205 411 -198 q 353 -212 372 -212 q 303 -199 321 -212 q 285 -159 285 -186 q 298 -111 285 -136 q 334 -60 312 -85 q 380 -13 355 -35 q 426 22 405 7 l 346 22 q 289 -16 316 4 q 239 -62 261 -38 q 205 -111 218 -86 q 193 -160 193 -135 q 206 -220 193 -196 q 243 -257 220 -244 q 292 -277 265 -271 q 347 -283 319 -283 q 407 -270 376 -283 q 458 -234 437 -257 "},"ð":{"x_min":71,"x_max":742,"ha":813,"o":"m 742 371 q 731 549 742 468 q 698 700 721 630 q 641 830 676 769 q 555 948 605 891 l 586 978 q 610 1005 605 997 q 604 1022 614 1012 l 557 1071 q 543 1075 550 1078 q 516 1053 536 1072 l 484 1021 q 459 1044 472 1032 q 430 1068 446 1057 q 411 1085 420 1076 q 390 1083 401 1094 l 331 1015 q 324 989 316 1000 q 340 971 331 978 q 367 951 354 961 q 393 929 380 940 l 355 890 q 332 868 337 873 q 338 851 327 862 l 383 807 q 399 796 394 796 q 419 812 404 797 l 464 857 q 519 784 493 823 q 565 698 546 744 q 498 739 539 726 q 418 753 457 753 q 275 729 339 753 q 166 657 211 705 q 96 538 121 609 q 71 369 71 466 q 93 184 71 258 q 160 66 116 111 q 267 3 204 22 q 411 -15 330 -15 q 654 83 566 -15 q 742 371 742 182 m 583 321 q 538 154 583 216 q 414 91 493 91 q 344 103 376 91 q 288 141 312 115 q 249 207 263 166 q 236 304 236 247 l 236 440 q 286 592 236 539 q 412 646 336 646 q 545 592 507 646 q 583 447 583 539 l 583 321 "},"T":{"x_min":17,"x_max":753,"ha":770,"o":"m 753 908 l 753 997 q 743 1014 753 1011 q 712 1017 733 1017 l 55 1017 q 25 1013 33 1017 q 17 994 17 1010 l 17 908 q 21 892 17 897 q 46 888 26 888 l 268 888 q 294 883 288 888 q 300 861 300 878 l 300 45 q 306 7 300 15 q 336 0 312 0 l 432 0 q 461 9 455 0 q 467 45 467 18 l 467 861 q 472 883 467 878 q 498 888 478 888 l 723 888 q 748 893 743 888 q 753 908 753 899 "},"š":{"x_min":64,"x_max":576,"ha":641,"o":"m 576 192 q 561 278 576 240 q 519 346 546 315 q 451 403 491 377 q 363 456 412 429 q 270 514 309 485 q 232 574 232 542 q 263 642 232 619 q 356 665 295 665 q 398 662 377 665 q 439 655 420 659 q 475 649 459 652 q 500 642 492 645 q 518 655 509 641 q 532 689 527 670 q 538 725 536 709 q 534 745 539 742 q 472 760 520 752 q 346 769 424 769 q 245 757 293 769 q 159 720 196 745 q 98 657 121 695 q 76 570 76 620 q 92 495 76 528 q 136 436 109 463 q 199 389 163 410 q 276 347 236 368 q 381 276 346 311 q 416 197 416 240 q 379 122 416 144 q 274 100 342 100 q 203 104 234 100 q 151 113 173 108 q 114 125 130 119 q 89 134 99 130 q 73 123 79 138 q 65 88 67 108 q 64 50 64 68 q 70 29 64 32 q 148 1 91 18 q 309 -15 206 -15 q 403 -6 356 -15 q 489 24 451 1 q 551 87 527 47 q 576 192 576 128 m 510 1036 q 503 1073 536 1073 l 450 1073 q 431 1070 439 1073 q 414 1056 424 1068 l 316 925 l 218 1056 q 200 1071 206 1070 q 181 1073 194 1073 l 130 1073 q 121 1036 94 1073 l 248 859 q 265 839 258 848 q 290 830 272 830 l 345 830 q 368 839 360 830 q 384 859 375 848 l 510 1036 "},"Þ":{"x_min":111,"x_max":822,"ha":880,"o":"m 822 529 q 441 852 822 852 l 307 852 q 282 859 285 852 q 278 878 278 867 l 278 978 q 274 1009 278 1001 q 250 1017 270 1017 l 148 1017 q 117 1011 124 1017 q 111 986 111 1005 l 111 38 q 117 7 111 15 q 142 0 123 0 l 249 0 q 274 6 268 0 q 280 32 280 13 l 280 171 q 283 194 280 189 q 302 199 286 199 l 460 199 q 732 283 642 199 q 822 529 822 368 m 651 536 q 600 378 651 426 q 475 331 550 331 l 307 331 q 285 335 291 331 q 280 357 280 339 l 280 700 q 284 716 280 709 q 305 726 289 724 l 434 726 q 518 715 478 726 q 587 682 557 705 q 633 623 616 659 q 651 536 651 586 "},"j":{"x_min":-29,"x_max":267,"ha":359,"o":"m 260 922 l 260 975 q 257 1007 260 998 q 230 1017 255 1017 l 147 1017 q 116 1007 123 1017 q 110 973 110 997 l 110 926 q 116 887 110 894 q 144 881 123 881 l 232 881 q 255 889 251 881 q 260 922 260 897 m 267 -116 l 267 701 q 259 737 267 727 q 232 747 251 747 l 144 747 q 113 736 120 747 q 107 700 107 724 l 107 -94 q 98 -147 107 -122 q 62 -172 90 -172 q 26 -169 43 -172 q -4 -164 9 -166 q -16 -179 -10 -164 q -25 -215 -22 -195 q -29 -252 -29 -234 q -23 -272 -29 -270 q 27 -286 -5 -279 q 103 -293 61 -293 q 178 -279 147 -293 q 229 -241 210 -265 q 257 -185 248 -217 q 267 -116 267 -152 "},"1":{"x_min":69.046875,"x_max":394,"ha":545,"o":"m 394 41 l 394 968 q 391 1005 394 994 q 366 1017 388 1017 l 269 1017 q 242 1013 252 1017 q 206 1003 232 1010 l 116 966 q 78 950 88 958 q 69 925 69 941 l 69 865 q 74 852 69 865 q 99 839 80 839 l 199 839 q 221 832 216 839 q 226 809 226 825 l 226 47 q 232 11 226 22 q 257 0 238 0 l 364 0 q 389 8 384 0 q 394 41 394 16 "},"›":{"x_min":86.75,"x_max":418.0625,"ha":485,"o":"m 418 446 l 215 746 q 195 767 204 761 q 173 764 187 773 l 105 722 q 105 685 86 711 l 273 446 l 95 200 q 86 177 86 184 q 101 163 87 170 l 170 126 q 190 124 183 119 q 206 140 198 129 l 418 446 "},"ı":{"x_min":92,"x_max":246,"ha":338,"o":"m 246 48 l 246 706 q 241 738 246 729 q 212 748 237 748 l 125 748 q 98 737 104 748 q 92 706 92 727 l 92 48 q 96 10 92 20 q 121 0 101 0 l 218 0 q 241 10 237 0 q 246 48 246 20 "},"ä":{"x_min":71,"x_max":699,"ha":791,"o":"m 699 54 l 699 706 q 693 738 699 728 q 658 748 687 748 l 570 748 q 545 712 545 748 l 545 651 q 460 735 514 704 q 317 767 407 767 q 211 739 257 767 q 134 660 165 711 q 86 535 102 608 q 71 369 71 461 q 90 192 71 265 q 144 73 109 119 q 223 6 178 28 q 319 -15 268 -15 q 396 -5 360 -15 q 462 19 432 4 q 513 56 492 35 q 545 99 534 77 l 545 40 q 554 6 545 12 q 578 0 563 0 l 665 0 q 694 13 689 0 q 699 54 699 26 m 534 231 q 523 192 534 215 q 494 146 513 168 q 447 107 475 124 q 383 91 418 91 q 271 151 308 91 q 235 314 235 211 l 235 430 q 272 607 235 554 q 381 661 310 661 q 451 642 422 661 q 498 595 479 623 q 525 537 517 568 q 534 484 534 507 l 534 231 m 630 908 l 630 994 q 623 1020 630 1013 q 591 1027 617 1027 l 504 1027 q 474 992 474 1027 l 474 910 q 481 882 474 893 q 518 871 489 871 l 599 871 q 624 882 618 871 q 630 908 630 893 m 331 905 l 331 988 q 324 1015 331 1004 q 294 1027 317 1027 l 205 1027 q 179 1015 184 1027 q 175 988 175 1004 l 175 898 q 181 876 175 882 q 212 871 188 871 l 298 871 q 324 880 318 871 q 331 905 331 890 "},"<":{"x_min":104,"x_max":633,"ha":730,"o":"m 633 118 l 633 186 q 621 216 633 208 q 581 233 609 223 l 245 351 l 581 471 q 621 488 609 480 q 633 518 633 496 l 633 586 q 622 607 633 605 q 584 597 612 608 l 145 430 q 113 414 122 421 q 104 383 104 407 l 104 311 q 115 286 104 294 q 151 270 127 279 l 584 106 q 622 97 612 95 q 633 118 633 98 "},"£":{"x_min":71,"x_max":722,"ha":797,"o":"m 718 19 l 718 117 q 713 139 718 132 q 690 141 709 146 q 666 133 683 138 q 625 124 648 128 q 575 121 601 121 q 522 121 548 121 q 412 125 461 121 q 317 130 364 130 q 297 149 290 130 q 331 268 316 202 q 347 430 347 334 l 482 430 q 524 436 514 430 q 534 464 534 442 l 534 520 q 521 543 534 539 q 481 548 508 548 l 344 548 q 331 630 340 585 q 323 714 323 676 q 368 853 323 806 q 493 900 413 900 q 596 883 550 900 q 679 838 643 866 q 697 848 687 833 q 714 886 707 863 q 722 931 722 909 q 713 961 722 954 q 677 986 698 973 q 625 1009 655 998 q 555 1025 594 1019 q 466 1032 517 1032 q 334 1010 391 1032 q 239 949 277 988 q 182 856 201 911 q 163 738 163 802 q 171 641 163 689 q 184 548 180 593 l 112 548 q 80 543 89 548 q 71 514 71 539 l 71 459 q 79 436 71 442 q 108 430 87 430 l 189 430 q 167 227 189 321 q 110 34 146 134 q 107 -4 100 7 q 136 -11 115 -17 q 197 -1 167 -4 q 275 1 228 1 q 328 -2 293 1 q 404 -11 364 -5 q 488 -17 445 -17 q 565 -17 530 -17 q 614 -17 587 -17 q 664 -12 641 -17 q 702 -1 687 -8 q 718 19 718 6 "},"¹":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"t":{"x_min":54,"x_max":468,"ha":517,"o":"m 468 648 l 468 701 q 461 723 468 715 q 435 732 455 732 l 302 732 l 302 885 q 294 915 302 906 q 264 920 286 924 l 189 906 q 162 897 173 903 q 151 871 151 891 l 151 733 l 84 733 q 59 727 65 733 q 54 705 54 721 l 54 652 q 58 630 54 638 q 76 623 62 623 l 146 623 l 146 167 q 154 99 146 132 q 182 41 162 67 q 236 0 202 15 q 319 -15 269 -15 q 395 -10 358 -15 q 449 1 433 -5 q 454 20 454 3 q 452 57 454 38 q 445 92 450 77 q 435 106 441 107 q 401 99 415 100 q 366 98 387 98 q 322 117 338 98 q 307 171 307 136 l 307 621 l 434 621 q 462 627 456 621 q 468 648 468 634 "},"¬":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"ù":{"x_min":92,"x_max":688,"ha":781,"o":"m 688 43 l 688 696 q 681 736 688 724 q 650 748 674 748 l 562 748 q 539 735 543 748 q 535 695 535 722 l 535 276 q 525 223 535 251 q 496 171 515 194 q 447 133 476 148 q 379 118 418 118 q 319 129 343 118 q 279 159 294 140 q 257 202 264 177 q 250 255 250 227 l 250 697 q 214 748 250 748 l 123 748 q 98 736 104 748 q 92 699 92 725 l 92 222 q 110 112 92 157 q 160 39 129 68 q 230 -1 191 11 q 311 -14 269 -14 q 436 9 385 -14 q 533 86 487 33 q 541 18 533 37 q 567 0 548 0 l 656 0 q 682 11 676 0 q 688 43 688 22 m 491 866 l 365 1043 q 347 1065 354 1058 q 322 1072 340 1072 l 225 1072 q 196 1062 197 1072 q 214 1033 194 1053 l 386 854 q 406 836 396 843 q 430 830 416 830 l 485 830 q 491 866 518 830 "},"W":{"x_min":46,"x_max":1273.125,"ha":1310,"o":"m 1271 987 q 1267 1011 1276 1005 q 1239 1017 1258 1017 l 1151 1017 q 1132 1010 1136 1017 q 1122 980 1129 1003 l 887 197 l 654 980 q 643 1010 647 1003 q 619 1017 639 1017 l 509 1017 q 482 1010 493 1017 q 483 971 472 1004 l 586 632 l 457 198 l 223 980 q 211 1010 216 1003 q 187 1017 207 1017 l 78 1017 q 62 1016 69 1017 q 50 1010 54 1015 q 46 996 46 1005 q 51 971 46 987 l 337 33 q 350 8 343 16 q 380 0 358 0 l 494 0 q 522 6 515 0 q 534 30 529 12 l 654 423 l 773 33 q 786 7 779 15 q 816 0 794 0 l 939 0 q 966 6 959 0 q 979 29 973 12 l 1271 987 "},"ï":{"x_min":-60,"x_max":394,"ha":337,"o":"m 245 48 l 245 706 q 240 738 245 729 q 211 748 236 748 l 124 748 q 97 737 103 748 q 91 706 91 727 l 91 48 q 95 10 91 20 q 120 0 100 0 l 217 0 q 240 10 236 0 q 245 48 245 20 m 394 908 l 394 994 q 387 1020 394 1013 q 355 1027 381 1027 l 268 1027 q 238 992 238 1027 l 238 910 q 245 882 238 893 q 282 871 253 871 l 363 871 q 388 882 382 871 q 394 908 394 893 m 96 905 l 96 988 q 89 1015 96 1004 q 59 1027 82 1027 l -29 1027 q -55 1015 -50 1027 q -60 988 -60 1004 l -60 898 q -53 876 -60 882 q -22 871 -46 871 l 63 871 q 89 880 83 871 q 96 905 96 890 "},">":{"x_min":115,"x_max":644,"ha":730,"o":"m 644 311 l 644 383 q 634 414 644 407 q 602 430 625 421 l 163 597 q 126 607 137 608 q 115 586 115 605 l 115 518 q 126 488 115 496 q 166 471 138 480 l 503 351 l 166 233 q 126 216 138 223 q 115 186 115 208 l 115 118 q 126 97 115 98 q 163 106 137 95 l 598 270 q 632 286 621 279 q 644 311 644 294 "},"v":{"x_min":25.859375,"x_max":703.109375,"ha":725,"o":"m 697 711 q 702 740 705 732 q 677 748 698 748 l 598 748 q 576 736 586 748 q 562 714 566 725 l 370 175 l 187 714 q 174 738 183 728 q 150 748 165 748 l 56 748 q 29 741 37 748 q 29 717 22 734 l 254 38 q 271 11 261 23 q 302 0 281 0 l 404 0 q 432 6 422 0 q 452 41 443 13 l 697 711 "},"û":{"x_min":92,"x_max":688,"ha":781,"o":"m 688 43 l 688 696 q 681 736 688 724 q 650 748 674 748 l 562 748 q 539 735 543 748 q 535 695 535 722 l 535 276 q 525 223 535 251 q 496 171 515 194 q 447 133 476 148 q 379 118 418 118 q 319 129 343 118 q 279 159 294 140 q 257 202 264 177 q 250 255 250 227 l 250 697 q 214 748 250 748 l 123 748 q 98 736 104 748 q 92 699 92 725 l 92 222 q 110 112 92 157 q 160 39 129 68 q 230 -1 191 11 q 311 -14 269 -14 q 436 9 385 -14 q 533 86 487 33 q 541 18 533 37 q 567 0 548 0 l 656 0 q 682 11 676 0 q 688 43 688 22 m 586 866 l 460 1043 q 443 1063 450 1054 q 418 1072 436 1072 l 362 1072 q 339 1063 347 1072 q 323 1043 332 1054 l 197 866 q 185 839 185 849 q 203 830 185 830 l 256 830 q 275 832 268 830 q 293 846 282 834 l 391 976 l 490 846 q 507 832 500 834 q 526 830 514 830 l 578 830 q 586 866 612 830 "},"Ò":{"x_min":103,"x_max":857,"ha":960,"o":"m 857 314 l 857 686 q 827 852 857 786 q 745 958 797 919 q 624 1015 693 998 q 479 1032 555 1032 q 195 950 287 1032 q 103 683 103 869 l 103 274 q 143 118 103 175 q 241 30 183 60 q 366 -8 300 0 q 483 -17 432 -17 q 552 -17 512 -17 q 633 -7 591 -17 q 715 23 675 2 q 786 81 755 44 q 837 175 818 119 q 857 314 857 232 m 689 335 q 673 225 689 267 q 628 159 657 182 q 562 127 600 135 q 483 119 525 119 q 406 128 444 119 q 337 160 368 138 q 286 219 305 182 q 267 309 267 256 l 267 672 q 278 768 267 726 q 314 839 289 811 q 382 881 340 866 q 486 896 425 896 q 637 843 586 896 q 689 677 689 791 l 689 335 m 591 1115 l 465 1293 q 447 1315 454 1308 q 422 1322 440 1322 l 325 1322 q 296 1312 297 1322 q 314 1283 294 1302 l 486 1104 q 506 1085 496 1092 q 530 1079 516 1079 l 584 1079 q 591 1115 618 1079 "},"&":{"x_min":93,"x_max":702.453125,"ha":769,"o":"m 694 46 q 702 74 704 52 q 692 120 700 96 q 674 160 684 143 q 655 173 663 177 q 616 151 640 161 q 565 133 593 141 q 507 120 537 125 q 447 116 476 116 q 298 157 348 116 q 249 265 249 198 q 264 343 249 310 q 309 400 280 377 q 378 435 338 423 q 463 447 417 447 q 493 451 482 447 q 504 475 504 455 l 504 546 q 491 570 504 567 q 457 573 478 573 q 304 617 362 573 q 247 738 247 662 q 299 859 247 815 q 438 903 352 903 q 545 887 498 903 q 633 851 593 871 q 653 863 643 847 q 669 902 663 879 q 675 946 675 925 q 665 972 675 967 q 594 1006 633 992 q 498 1028 555 1021 l 498 1124 q 495 1156 498 1147 q 473 1166 492 1166 l 371 1166 q 339 1157 345 1166 q 333 1125 333 1149 l 333 1024 q 239 994 283 1015 q 163 940 195 974 q 111 861 130 907 q 93 759 93 815 q 147 591 93 653 q 288 505 202 528 q 147 413 201 481 q 93 245 93 345 q 155 71 93 138 q 340 -10 217 4 l 340 -98 q 348 -134 340 -125 q 380 -144 356 -144 l 479 -144 q 501 -136 495 -144 q 507 -105 507 -128 l 507 -11 q 620 10 573 -6 q 694 46 668 27 "},"˝":{"x_min":84.5625,"x_max":607.03125,"ha":658,"o":"m 588 1034 q 606 1063 608 1053 q 576 1073 605 1073 l 493 1073 q 467 1065 475 1073 q 451 1043 459 1057 l 333 866 q 323 839 322 848 q 341 830 325 830 l 381 830 q 406 837 395 830 q 426 855 416 845 l 588 1034 m 350 1034 q 368 1063 369 1053 q 337 1073 366 1073 l 255 1073 q 229 1065 237 1073 q 212 1043 220 1057 l 94 866 q 84 839 83 848 q 102 830 86 830 l 143 830 q 168 837 156 830 q 187 855 179 845 l 350 1034 "},"Ð":{"x_min":29,"x_max":819,"ha":922,"o":"m 819 316 l 819 689 q 786 853 819 789 q 698 953 753 916 q 571 1003 642 989 q 421 1017 499 1017 l 140 1017 q 115 1004 120 1017 q 111 971 111 991 l 111 583 l 72 583 q 38 579 48 583 q 29 551 29 576 l 29 483 q 38 460 29 466 q 67 454 47 454 l 111 454 l 111 48 q 121 10 111 20 q 145 0 131 0 l 467 0 q 578 9 517 0 q 693 52 639 19 q 782 148 746 86 q 819 316 819 211 m 651 335 q 630 228 651 269 q 578 167 610 188 q 505 139 545 145 q 424 133 464 133 l 312 133 q 282 141 288 133 q 276 164 276 149 l 276 454 l 385 454 q 427 460 417 454 q 437 488 437 466 l 437 556 q 425 579 437 576 q 385 583 413 583 l 276 583 l 276 855 q 280 878 276 871 q 307 885 285 885 l 423 885 q 589 837 527 885 q 651 677 651 790 l 651 335 "},"I":{"x_min":111,"x_max":279,"ha":390,"o":"m 279 31 l 279 978 q 274 1009 279 1001 q 251 1017 270 1017 l 148 1017 q 117 1011 124 1017 q 111 986 111 1005 l 111 38 q 117 7 111 15 q 142 0 123 0 l 249 0 q 274 6 269 0 q 279 31 279 13 "},"ˉ":{"x_min":110,"x_max":575,"ha":658,"o":"m 575 939 l 575 980 q 562 1003 575 1000 q 522 1007 550 1007 l 151 1007 q 119 1003 128 1007 q 110 975 110 1000 l 110 932 q 119 909 110 915 q 148 903 128 903 l 523 903 q 565 909 555 903 q 575 939 575 915 "},"G":{"x_min":103,"x_max":839,"ha":938,"o":"m 839 306 l 839 502 q 828 548 839 538 q 776 559 818 559 l 548 559 q 531 551 533 559 q 529 533 529 544 l 529 463 q 535 442 529 446 q 557 439 541 439 l 651 439 q 674 429 671 439 q 678 409 678 420 l 678 279 q 666 193 678 227 q 630 139 654 159 q 572 111 607 119 q 490 103 537 103 q 323 157 372 103 q 275 339 275 212 l 275 636 q 289 765 275 714 q 335 846 304 816 q 413 889 366 877 q 525 901 459 901 q 607 895 572 901 q 669 880 643 889 q 714 861 696 871 q 746 841 733 850 q 764 851 752 837 q 786 887 776 866 q 802 928 797 908 q 802 954 808 948 q 775 974 796 960 q 720 999 755 987 q 634 1022 684 1012 q 515 1032 583 1032 q 301 1000 382 1032 q 176 915 221 969 q 117 792 132 862 q 103 642 103 721 l 103 324 q 120 189 103 252 q 182 80 137 126 q 302 7 226 33 q 493 -19 377 -19 q 678 10 609 -19 q 782 86 747 39 q 828 191 818 133 q 839 306 839 249 "},"`":{"x_min":166.578125,"x_max":474.15625,"ha":658,"o":"m 462 866 l 336 1043 q 318 1066 325 1059 q 293 1073 311 1073 l 195 1073 q 166 1063 168 1073 q 184 1034 165 1053 l 356 855 q 377 836 366 843 q 401 830 387 830 l 455 830 q 462 866 488 830 "},"·":{"x_min":78,"x_max":263,"ha":341,"o":"m 263 400 l 263 475 q 256 498 263 490 q 219 507 250 507 l 105 507 q 84 495 91 507 q 78 469 78 483 l 78 394 q 87 363 78 376 q 122 350 96 350 l 229 350 q 259 365 256 350 q 263 400 263 381 "},"r":{"x_min":92,"x_max":487.75,"ha":514,"o":"m 486 742 q 482 755 490 753 q 466 757 475 757 q 346 728 402 757 q 247 640 289 700 l 247 711 q 237 740 247 732 q 214 748 227 748 l 125 748 q 98 736 104 748 q 92 704 92 725 l 92 51 q 99 11 92 23 q 130 0 107 0 l 218 0 q 241 12 237 0 q 246 52 246 24 l 246 470 q 274 539 246 503 q 351 603 302 576 q 405 626 375 619 q 464 633 436 633 q 486 654 480 633 l 486 742 "},"¿":{"x_min":65,"x_max":557,"ha":617,"o":"m 65 210 q 136 45 65 105 q 331 -15 208 -15 q 406 -6 372 -15 q 469 13 441 1 q 517 37 497 25 q 548 57 537 48 q 557 85 557 65 q 549 126 557 105 q 530 160 541 146 q 511 168 519 174 q 480 147 498 158 q 440 127 462 136 q 395 112 419 118 q 351 106 372 106 q 219 244 219 106 q 245 333 219 293 q 306 411 272 374 q 372 487 340 449 q 416 570 405 525 q 422 615 422 589 q 422 659 422 642 q 422 678 422 675 q 415 704 422 697 q 390 711 408 711 l 301 711 q 271 677 271 711 l 271 603 q 238 522 271 561 q 167 437 206 482 q 96 337 128 392 q 65 210 65 282 m 253 967 l 253 896 q 260 873 253 881 q 291 866 268 866 l 409 866 q 432 877 425 866 q 439 903 439 888 l 439 972 q 429 1003 439 990 q 393 1017 420 1017 l 286 1017 q 256 1001 259 1017 q 253 967 253 985 "},"ý":{"x_min":28.640625,"x_max":701.71875,"ha":735,"o":"m 695 710 q 700 739 704 731 q 675 747 697 747 l 591 747 q 569 735 579 747 q 555 713 559 724 l 373 202 l 194 713 q 181 737 190 727 q 158 747 173 747 l 59 747 q 32 740 40 747 q 31 716 25 734 l 288 0 l 201 -246 q 200 -270 194 -262 q 222 -278 206 -278 l 295 -278 q 322 -270 312 -278 q 341 -243 333 -262 l 695 710 m 593 1033 q 611 1063 612 1053 q 580 1073 609 1073 l 483 1073 q 459 1066 465 1073 q 441 1043 452 1059 l 313 865 q 322 829 290 829 l 376 829 q 400 835 390 829 q 420 854 411 842 l 593 1033 "},"x":{"x_min":31,"x_max":620.359375,"ha":649,"o":"m 607 48 l 405 386 l 600 706 q 613 738 613 728 q 583 748 613 748 l 508 748 q 481 737 492 748 q 457 703 471 727 l 335 496 l 215 703 q 192 737 203 727 q 165 748 182 748 l 58 748 q 31 738 31 748 q 43 706 31 728 l 244 368 l 51 48 q 35 10 35 20 q 56 0 35 0 l 134 0 q 162 8 152 0 q 190 47 172 16 l 315 258 l 437 47 q 464 9 454 19 q 497 0 474 0 l 597 0 q 619 10 617 0 q 607 48 622 20 "},"è":{"x_min":71,"x_max":699,"ha":771,"o":"m 699 387 l 699 473 q 619 690 699 614 q 393 767 539 767 q 152 667 233 767 q 71 366 71 568 q 93 191 71 264 q 162 72 116 118 q 274 5 207 26 q 432 -15 341 -15 q 496 -12 462 -15 q 558 -5 529 -9 q 609 1 587 -2 q 638 8 631 5 q 674 23 665 17 q 684 50 684 30 l 684 119 q 674 135 684 131 q 644 132 664 139 q 575 113 625 125 q 439 102 525 102 q 284 154 340 102 q 229 328 229 207 l 642 328 q 690 342 681 328 q 699 387 699 357 m 546 460 q 543 439 546 445 q 530 434 541 434 l 251 434 q 234 440 236 434 q 233 461 233 446 q 242 540 233 503 q 270 605 251 578 q 319 650 289 633 q 391 667 349 667 q 511 613 477 667 q 546 460 546 560 m 501 866 l 375 1043 q 357 1066 364 1059 q 332 1073 350 1073 l 234 1073 q 205 1063 207 1073 q 223 1034 204 1053 l 396 855 q 416 836 405 843 q 440 830 426 830 l 494 830 q 501 866 527 830 "},"º":{"x_min":83,"x_max":551,"ha":625,"o":"m 551 747 q 491 962 551 898 q 326 1026 432 1026 q 226 1011 270 1026 q 149 963 181 996 q 100 877 117 930 q 83 747 83 824 q 98 618 83 669 q 144 535 114 567 q 219 491 174 504 q 320 478 263 478 q 490 544 430 478 q 551 747 551 610 m 436 713 q 407 603 436 647 q 323 559 379 559 q 237 593 270 559 q 204 702 204 628 l 204 796 q 236 908 204 871 q 322 945 269 945 q 408 905 381 945 q 436 801 436 865 l 436 713 "},"Ø":{"x_min":42.40625,"x_max":905.125,"ha":960,"o":"m 888 1027 l 825 1027 q 787 1019 798 1027 q 759 987 776 1011 l 741 962 q 622 1016 689 1001 q 479 1032 555 1032 q 195 950 287 1032 q 103 683 103 869 l 103 274 q 110 199 103 232 q 132 138 118 165 l 62 44 q 42 8 40 16 q 66 0 44 0 l 128 0 q 155 6 144 0 q 185 38 165 13 q 191 47 185 38 q 197 57 198 57 q 265 17 228 32 q 341 -6 303 2 q 416 -15 379 -15 q 483 -15 452 -15 q 552 -15 512 -15 q 633 -5 591 -15 q 715 25 675 4 q 786 83 755 46 q 837 177 818 121 q 857 316 857 233 l 857 687 q 845 798 857 750 q 811 884 833 847 q 863 955 841 925 q 884 985 884 985 q 904 1017 902 1008 q 888 1027 907 1027 m 645 833 l 267 321 l 267 672 q 278 768 267 726 q 314 839 289 811 q 382 881 340 866 q 486 896 425 896 q 645 833 597 896 m 689 336 q 673 226 689 268 q 628 160 657 183 q 562 128 600 136 q 483 120 525 120 q 382 137 432 120 q 301 196 333 154 q 330 235 301 196 q 401 331 358 274 q 494 457 444 389 q 587 582 544 525 q 659 678 630 640 q 687 716 687 716 q 689 697 689 707 q 689 678 689 689 l 689 336 "},"∞":{"x_min":57.375,"x_max":1134,"ha":1226,"o":"m 1134 922 l 1134 969 q 1131 1005 1134 993 q 1106 1017 1128 1017 l 1018 1017 q 987 1008 994 1017 q 981 976 981 1000 l 981 926 q 987 889 981 897 q 1014 881 993 881 l 1106 881 q 1129 889 1124 881 q 1134 922 1134 897 m 1134 48 l 1134 706 q 1129 738 1134 729 q 1100 747 1125 747 l 724 747 q 696 786 708 765 q 685 841 685 806 q 705 902 685 886 q 754 918 726 918 q 787 916 778 918 q 819 909 797 914 q 829 924 823 909 q 838 958 835 939 q 842 994 842 978 q 837 1014 842 1011 q 790 1026 821 1021 q 714 1032 759 1032 q 629 1018 664 1032 q 573 980 594 1004 q 541 926 551 957 q 532 860 532 895 q 540 785 532 807 q 557 747 548 763 l 313 747 q 283 787 293 768 q 274 841 274 806 q 294 902 274 886 q 343 918 315 918 q 376 916 367 918 q 408 909 386 914 q 418 924 412 909 q 427 958 424 939 q 431 994 431 978 q 426 1014 431 1011 q 379 1026 410 1021 q 303 1032 348 1032 q 218 1018 253 1032 q 162 980 183 1004 q 130 926 140 957 q 121 860 121 895 q 129 785 121 807 q 146 747 137 763 l 79 747 q 57 717 57 747 l 57 668 q 62 646 57 652 q 87 641 68 641 l 160 641 l 160 36 q 171 8 160 16 q 199 0 183 0 l 283 0 q 316 45 316 0 l 316 641 l 571 641 l 571 36 q 582 8 571 16 q 610 0 594 0 l 694 0 q 727 45 727 0 l 727 641 l 981 641 l 981 48 q 985 10 981 20 q 1008 0 989 0 l 1106 0 q 1130 10 1127 0 q 1134 48 1134 20 "},"μ":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"÷":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"h":{"x_min":92,"x_max":688,"ha":781,"o":"m 688 63 l 688 525 q 670 637 688 591 q 622 711 653 683 q 552 751 592 738 q 468 764 512 764 q 393 757 425 764 q 334 736 361 750 q 287 703 308 722 q 247 660 266 685 l 247 973 q 241 1009 247 1001 q 221 1017 236 1017 l 125 1017 q 98 1005 104 1017 q 92 973 92 994 l 92 48 q 98 10 92 20 q 125 0 104 0 l 221 0 q 241 10 236 0 q 246 48 246 20 l 246 471 q 255 524 246 496 q 284 576 265 553 q 333 615 304 600 q 400 631 362 631 q 461 619 436 631 q 501 589 486 608 q 524 544 517 569 q 531 492 531 519 l 531 50 q 561 0 531 0 l 660 0 q 683 14 679 0 q 688 63 688 29 "},".":{"x_min":79,"x_max":264,"ha":340,"o":"m 264 50 l 264 125 q 257 148 264 140 q 220 157 251 157 l 106 157 q 85 145 92 157 q 79 119 79 133 l 79 44 q 88 13 79 26 q 123 0 97 0 l 230 0 q 260 15 257 0 q 264 50 264 31 "},";":{"x_min":35.3125,"x_max":266,"ha":341,"o":"m 266 635 l 266 709 q 260 736 266 725 q 228 748 254 748 l 111 748 q 86 734 92 748 q 81 704 81 720 l 81 628 q 88 601 81 611 q 125 591 96 591 l 235 591 q 260 605 254 591 q 266 635 266 620 m 260 126 q 258 149 263 141 q 229 157 253 157 l 122 157 q 102 148 107 157 q 96 123 97 140 q 90 70 96 100 q 76 9 84 40 q 58 -50 68 -20 q 36 -105 47 -80 q 37 -120 33 -112 q 47 -134 40 -128 q 64 -140 54 -140 q 83 -133 74 -140 q 193 -24 144 -91 q 260 126 242 43 "},"f":{"x_min":57,"x_max":438,"ha":476,"o":"m 438 650 l 438 699 q 433 720 438 713 q 406 726 428 726 l 313 726 q 285 771 297 744 q 274 833 274 797 q 294 897 274 876 q 343 918 315 918 q 376 916 367 918 q 408 909 386 914 q 418 924 412 909 q 427 958 424 939 q 431 994 431 978 q 426 1013 431 1011 q 379 1026 410 1020 q 303 1032 348 1032 q 218 1016 253 1032 q 162 975 183 1001 q 130 917 140 950 q 121 852 121 885 q 130 770 121 799 q 148 725 140 742 l 79 725 q 57 695 57 725 l 57 648 q 62 625 57 631 q 87 619 68 619 l 160 619 l 160 36 q 171 8 160 16 q 199 0 183 0 l 283 0 q 316 45 316 0 l 316 620 l 406 620 q 432 629 426 620 q 438 650 438 638 "},"“":{"x_min":44.5,"x_max":541.34375,"ha":614,"o":"m 316 765 q 318 742 313 750 q 346 735 323 735 l 452 735 q 472 743 467 735 q 479 768 477 751 q 484 821 479 791 q 498 882 490 851 q 518 942 507 912 q 540 997 529 972 q 539 1012 542 1004 q 528 1024 535 1019 q 512 1030 522 1029 q 492 1025 502 1032 q 383 916 431 983 q 316 765 334 848 m 45 765 q 47 742 42 750 q 76 735 52 735 l 181 735 q 201 743 196 735 q 208 768 206 751 q 213 821 208 791 q 228 882 219 851 q 247 942 236 912 q 269 997 258 972 q 268 1012 271 1004 q 258 1024 265 1019 q 241 1030 251 1029 q 221 1025 231 1032 q 112 916 160 983 q 45 765 63 848 "},"A":{"x_min":48.390625,"x_max":841.84375,"ha":888,"o":"m 836 45 l 554 972 q 536 1006 545 995 q 502 1016 526 1016 l 388 1016 q 354 1006 365 1016 q 337 972 344 995 l 55 45 q 49 6 45 13 q 65 0 52 0 l 165 0 q 187 6 181 0 q 200 36 193 13 l 258 230 l 604 230 l 663 36 q 674 6 670 13 q 697 0 677 0 l 806 0 q 836 6 826 0 q 836 45 847 12 m 566 354 l 295 354 l 431 818 l 566 354 "},"6":{"x_min":99,"x_max":782,"ha":851,"o":"m 782 339 q 758 496 782 431 q 692 603 734 561 q 592 664 650 645 q 466 684 534 684 q 365 666 408 684 q 286 625 322 649 q 272 623 278 618 q 267 643 267 628 l 267 684 q 272 766 267 728 q 298 833 278 805 q 359 878 319 862 q 465 894 398 894 q 529 888 497 894 q 587 875 561 882 q 632 860 614 867 q 659 850 651 853 q 678 867 669 848 q 693 913 688 887 q 699 963 699 940 q 689 991 699 987 q 649 1004 676 997 q 588 1017 621 1011 q 522 1027 555 1023 q 465 1032 489 1032 q 301 1012 371 1032 q 187 950 232 993 q 120 842 142 908 q 99 683 99 776 l 99 263 q 126 136 99 189 q 202 48 154 82 q 314 -2 250 14 q 450 -19 378 -19 q 605 6 541 -19 q 708 77 669 31 q 764 190 747 124 q 782 339 782 256 m 614 339 q 570 167 614 216 q 447 119 527 119 q 313 161 359 119 q 267 296 267 203 l 267 452 q 286 488 267 470 q 356 530 315 513 q 465 548 397 548 q 524 537 497 548 q 571 502 551 527 q 602 438 591 478 q 614 339 614 398 "},"‘":{"x_min":69.5,"x_max":295.34375,"ha":346,"o":"m 70 765 q 72 742 67 750 q 101 735 77 735 l 206 735 q 226 743 221 735 q 233 768 231 751 q 238 821 233 791 q 253 882 244 851 q 272 942 261 912 q 294 997 283 972 q 293 1012 296 1004 q 283 1024 289 1019 q 266 1030 276 1029 q 246 1025 256 1032 q 137 916 185 983 q 70 765 88 848 "},"π":{"x_min":35,"x_max":1021,"ha":1056,"o":"m 1021 496 q 982 690 1021 600 q 877 847 944 780 q 721 953 811 914 q 528 992 630 992 q 334 953 425 992 q 178 847 244 914 q 73 690 111 780 q 35 496 35 600 q 73 301 35 391 q 178 144 111 211 q 334 38 244 77 q 528 0 425 0 q 721 38 630 0 q 877 144 811 77 q 982 301 944 211 q 1021 496 1021 391 m 946 496 q 913 327 946 405 q 823 192 880 249 q 690 101 766 134 q 528 69 614 69 q 365 101 441 69 q 232 192 289 134 q 142 327 175 249 q 110 496 110 405 q 142 664 110 586 q 232 799 175 742 q 365 890 289 857 q 528 923 441 923 q 690 890 614 923 q 823 799 766 857 q 913 664 880 742 q 946 496 946 586 m 734 593 q 689 709 734 667 q 551 752 645 752 l 394 752 q 380 748 383 752 q 378 733 378 745 l 378 270 q 378 249 378 256 q 390 243 379 243 l 454 243 q 467 247 464 243 q 471 265 471 252 l 471 422 q 471 432 471 430 q 479 435 472 435 l 562 435 q 686 473 638 435 q 734 593 734 512 m 638 596 q 617 529 638 548 q 564 511 596 511 l 484 511 q 473 513 476 511 q 471 523 471 515 l 471 667 q 473 676 471 671 q 483 680 475 681 l 547 680 q 615 660 592 680 q 638 596 638 640 "},"O":{"x_min":103,"x_max":857,"ha":960,"o":"m 857 314 l 857 686 q 827 852 857 786 q 745 958 797 919 q 624 1015 693 998 q 479 1032 555 1032 q 195 950 287 1032 q 103 683 103 869 l 103 274 q 143 118 103 175 q 241 30 183 60 q 366 -8 300 0 q 483 -17 432 -17 q 552 -17 512 -17 q 633 -7 591 -17 q 715 23 675 2 q 786 81 755 44 q 837 175 818 119 q 857 314 857 232 m 689 335 q 673 225 689 267 q 628 159 657 182 q 562 127 600 135 q 483 119 525 119 q 406 128 444 119 q 337 160 368 138 q 286 219 305 182 q 267 309 267 256 l 267 672 q 278 768 267 726 q 314 839 289 811 q 382 881 340 866 q 486 896 425 896 q 637 843 586 896 q 689 677 689 791 l 689 335 "},"n":{"x_min":92,"x_max":688,"ha":781,"o":"m 688 63 l 688 525 q 670 637 688 591 q 622 711 653 683 q 552 751 592 738 q 468 764 512 764 q 336 736 389 764 q 247 659 283 708 q 239 728 247 708 q 214 748 232 748 l 125 748 q 98 736 104 748 q 92 704 92 725 l 92 51 q 99 11 92 23 q 130 0 107 0 l 218 0 q 241 12 237 0 q 246 52 246 25 l 246 470 q 255 524 246 495 q 282 575 264 552 q 330 613 301 598 q 400 629 360 629 q 461 617 436 629 q 501 588 486 606 q 524 544 517 569 q 531 491 531 519 l 531 49 q 567 0 531 0 l 657 0 q 682 14 676 0 q 688 63 688 29 "},"3":{"x_min":62,"x_max":683,"ha":768,"o":"m 683 258 q 628 421 683 359 q 487 509 573 483 q 562 541 526 519 q 624 598 598 563 q 667 677 651 632 q 683 776 683 722 q 595 964 683 897 q 352 1032 508 1032 q 253 1025 295 1032 q 182 1009 212 1019 q 131 986 152 998 q 95 961 110 973 q 90 932 90 954 q 96 888 90 911 q 112 849 102 865 q 131 839 122 833 q 218 884 167 866 q 324 903 269 903 q 474 860 423 903 q 526 751 526 818 q 469 616 526 662 q 317 571 413 571 q 285 566 298 571 q 273 541 273 562 l 273 476 q 282 452 273 455 q 311 450 292 450 q 396 437 356 450 q 464 402 435 424 q 511 348 494 380 q 529 276 529 317 q 477 157 529 199 q 340 116 426 116 q 209 134 269 116 q 105 174 149 153 q 86 161 96 178 q 68 119 75 143 q 62 73 62 95 q 69 46 62 50 q 185 2 106 24 q 367 -20 264 -20 q 487 -2 430 -20 q 587 49 544 14 q 657 136 631 84 q 683 258 683 188 "},"9":{"x_min":71,"x_max":754,"ha":851,"o":"m 754 329 l 754 749 q 726 876 754 823 q 650 964 698 930 q 538 1015 602 998 q 402 1032 474 1032 q 247 1006 311 1032 q 144 935 183 981 q 88 822 105 888 q 71 673 71 756 q 94 516 71 581 q 160 409 118 451 q 260 348 202 367 q 386 329 318 329 q 487 346 444 329 q 566 387 530 363 q 586 369 586 401 l 586 328 q 580 245 586 284 q 554 178 575 206 q 493 134 533 150 q 387 119 454 119 q 317 124 355 119 q 245 137 279 130 q 185 152 211 145 q 151 162 159 159 q 131 145 141 164 q 116 99 122 125 q 111 49 111 72 q 122 21 111 25 q 168 8 134 15 q 242 -4 202 1 q 323 -14 283 -10 q 387 -19 363 -19 q 665 62 576 -19 q 754 329 754 143 m 586 560 q 566 524 586 542 q 496 482 537 499 q 387 465 455 465 q 328 475 355 465 q 281 510 301 485 q 250 574 261 534 q 239 673 239 614 q 282 845 239 796 q 405 894 325 894 q 539 851 493 894 q 586 716 586 809 l 586 560 "},"l":{"x_min":92,"x_max":246,"ha":338,"o":"m 246 48 l 246 990 q 241 1022 246 1013 q 212 1032 237 1032 l 125 1032 q 98 1022 104 1032 q 92 994 92 1013 l 92 45 q 98 8 92 16 q 126 0 104 0 l 218 0 q 241 10 237 0 q 246 48 246 20 "},"¤":{"x_min":86,"x_max":771.125,"ha":840,"o":"m 155 540 l 155 452 l 127 452 q 94 447 103 452 q 86 418 86 443 l 86 366 q 94 343 86 349 q 124 337 103 337 l 155 337 l 155 289 q 188 133 155 193 q 272 39 221 72 q 385 -6 323 6 q 504 -19 446 -19 q 588 -14 548 -19 q 662 -2 629 -9 q 721 14 695 4 q 761 32 747 23 q 764 57 764 36 q 758 100 764 78 q 744 141 752 123 q 729 157 736 158 q 697 144 716 153 q 652 127 677 136 q 592 113 626 119 q 516 107 558 107 q 375 149 428 107 q 323 289 323 192 l 323 337 l 527 337 q 569 343 559 337 q 579 371 579 349 l 579 425 q 566 448 579 445 q 526 452 553 452 l 323 452 l 323 540 l 527 540 q 569 546 559 540 q 579 574 579 552 l 579 628 q 566 651 579 648 q 526 655 553 655 l 323 655 l 323 666 q 329 770 323 725 q 357 844 336 814 q 416 887 378 873 q 516 901 455 901 q 587 897 558 901 q 638 888 616 894 q 679 875 659 882 q 722 859 698 867 q 736 872 726 856 q 754 909 745 888 q 768 949 763 930 q 768 973 773 969 q 741 991 758 981 q 693 1010 723 1001 q 620 1025 663 1019 q 515 1032 577 1032 q 371 1016 437 1032 q 257 962 305 1001 q 182 856 209 923 q 155 686 155 789 l 155 655 l 127 655 q 94 650 103 655 q 86 621 86 646 l 86 569 q 94 546 86 552 q 124 540 103 540 l 155 540 "},"∂":{"x_min":11,"x_max":999,"ha":1012,"o":"m 999 100 l 999 884 l 11 884 l 11 100 l 999 100 m 879 733 l 736 265 q 730 253 733 256 q 716 250 728 250 l 654 250 q 639 254 643 250 q 633 266 636 258 l 493 726 q 493 745 487 742 q 507 749 498 749 l 559 749 q 571 745 569 749 q 576 730 573 742 l 691 347 l 805 730 q 812 745 810 742 q 821 749 814 749 l 864 749 q 879 733 885 749 m 504 272 q 505 252 509 255 q 490 250 500 250 l 436 250 q 425 253 426 250 q 420 268 423 256 l 388 372 l 223 372 l 193 268 q 187 253 190 256 q 174 250 184 250 l 126 250 q 119 253 120 250 q 122 272 118 256 l 259 726 q 268 743 263 737 q 284 749 273 749 l 340 749 q 357 743 352 749 q 365 726 362 737 l 504 272 m 372 423 l 306 651 l 238 423 l 372 423 "},"4":{"x_min":60,"x_max":736,"ha":833,"o":"m 736 233 l 736 299 q 731 319 736 314 q 715 324 727 324 l 656 324 l 656 982 q 653 1008 656 1000 q 632 1017 651 1017 l 528 1017 q 499 1000 511 1017 q 480 971 486 983 l 73 339 q 63 314 66 326 q 60 286 60 303 l 60 221 q 66 203 60 207 q 89 199 73 199 l 512 199 l 512 27 q 520 5 512 11 q 548 0 528 0 l 628 0 q 650 4 644 0 q 656 23 656 9 l 656 199 l 712 199 q 731 207 727 199 q 736 233 736 215 m 512 324 l 214 324 l 512 790 l 512 324 "},"p":{"x_min":94,"x_max":722,"ha":793,"o":"m 722 376 q 706 537 722 465 q 659 660 690 608 q 584 739 628 711 q 481 767 539 767 q 347 740 406 767 q 248 656 288 714 l 248 708 q 238 739 248 731 q 214 748 229 748 l 130 748 q 98 734 102 748 q 94 697 94 721 l 94 -244 q 100 -280 94 -270 q 131 -290 106 -290 l 223 -290 q 243 -279 238 -290 q 248 -244 248 -269 l 248 78 q 339 7 285 30 q 473 -15 393 -15 q 572 5 527 -15 q 651 73 617 26 q 703 195 684 121 q 722 376 722 269 m 558 309 q 521 150 558 208 q 409 91 484 91 q 345 106 373 91 q 298 141 317 121 q 269 182 279 161 q 259 218 259 204 l 259 487 q 267 544 259 513 q 293 600 275 574 q 341 643 311 626 q 410 661 370 661 q 519 595 481 661 q 558 426 558 530 l 558 309 "},"‡":{"x_min":108,"x_max":628,"ha":731,"o":"m 628 728 l 628 785 q 617 808 628 804 q 578 813 606 813 l 432 813 l 432 976 q 428 1008 432 999 q 404 1018 425 1018 l 336 1018 q 309 1007 315 1018 q 303 976 303 997 l 303 813 l 154 813 q 120 808 130 813 q 111 779 111 804 l 111 725 q 118 702 111 708 q 147 696 126 696 l 303 696 l 303 598 l 154 598 q 117 593 127 598 q 108 564 108 588 l 108 506 q 117 487 108 492 q 151 483 126 483 l 303 483 l 303 313 q 310 277 303 285 q 337 270 318 270 l 405 270 q 427 276 422 270 q 432 310 432 282 l 432 483 l 575 483 q 611 486 600 483 q 623 513 623 489 l 623 567 q 614 593 623 589 q 582 598 606 598 l 432 598 l 432 696 l 575 696 q 615 700 603 696 q 628 728 628 704 "},"à":{"x_min":71,"x_max":699,"ha":791,"o":"m 699 54 l 699 706 q 693 738 699 728 q 658 748 687 748 l 570 748 q 545 712 545 748 l 545 651 q 461 735 514 704 q 317 767 407 767 q 211 739 257 767 q 134 660 165 711 q 86 535 102 608 q 71 369 71 461 q 90 192 71 265 q 144 73 109 119 q 223 6 178 28 q 319 -15 268 -15 q 396 -5 360 -15 q 462 19 432 4 q 513 56 492 35 q 545 99 534 77 l 545 40 q 554 6 545 12 q 578 0 563 0 l 665 0 q 694 13 689 0 q 699 54 699 26 m 534 231 q 523 192 534 215 q 494 146 513 168 q 447 107 475 124 q 383 91 418 91 q 271 151 308 91 q 235 314 235 211 l 235 430 q 272 607 235 554 q 381 661 310 661 q 451 642 422 661 q 498 595 479 623 q 525 537 517 568 q 534 484 534 507 l 534 231 m 519 866 l 393 1043 q 375 1065 382 1058 q 350 1072 368 1072 l 253 1072 q 223 1062 225 1072 q 241 1033 222 1053 l 414 854 q 434 836 424 843 q 458 830 444 830 l 513 830 q 519 866 546 830 "},"Ü":{"x_min":108,"x_max":819,"ha":927,"o":"m 819 315 l 819 971 q 810 1007 819 998 q 784 1017 802 1017 l 676 1017 q 656 1007 661 1015 q 652 980 652 1000 l 652 347 q 643 252 652 294 q 613 182 635 211 q 555 136 592 152 q 460 121 518 121 q 324 178 377 121 q 272 344 272 236 l 272 971 q 263 1007 272 998 q 237 1017 255 1017 l 131 1017 q 112 1007 117 1015 q 108 980 108 1000 l 108 291 q 141 141 108 201 q 226 46 174 82 q 339 -3 277 11 q 460 -18 402 -18 q 579 -6 516 -18 q 696 39 642 4 q 784 140 749 75 q 819 315 819 205 m 693 1158 l 693 1244 q 686 1270 693 1263 q 654 1277 680 1277 l 567 1277 q 537 1242 537 1277 l 537 1160 q 544 1132 537 1143 q 581 1121 552 1121 l 662 1121 q 687 1132 681 1121 q 693 1158 693 1143 m 394 1155 l 394 1238 q 387 1265 394 1254 q 357 1277 380 1277 l 268 1277 q 242 1265 247 1277 q 238 1238 238 1254 l 238 1148 q 244 1126 238 1132 q 275 1121 251 1121 l 361 1121 q 387 1130 381 1121 q 394 1155 394 1140 "},"ó":{"x_min":71,"x_max":742,"ha":813,"o":"m 742 371 q 720 553 742 478 q 657 676 698 628 q 555 745 615 723 q 418 767 494 767 q 275 745 339 767 q 166 676 211 723 q 96 553 121 629 q 71 369 71 478 q 93 185 71 258 q 160 66 116 111 q 267 3 204 22 q 411 -15 330 -15 q 654 83 566 -15 q 742 371 742 182 m 583 321 q 538 154 583 216 q 414 91 493 91 q 344 103 376 91 q 288 141 312 115 q 249 207 263 166 q 236 304 236 247 l 236 440 q 286 607 236 554 q 412 660 336 660 q 492 644 459 660 q 545 599 525 628 q 574 532 565 571 q 583 447 583 493 l 583 321 m 601 1034 q 619 1063 621 1053 q 589 1072 618 1072 l 491 1072 q 467 1066 473 1072 q 450 1043 461 1059 l 322 866 q 330 830 298 830 l 384 830 q 409 836 398 830 q 429 854 419 843 l 601 1034 "},"√":{"x_min":77.25,"x_max":667,"ha":715,"o":"m 661 963 q 665 992 669 984 q 640 1000 662 1000 l 570 1000 q 547 988 558 1000 q 534 965 537 976 l 326 175 l 213 508 q 201 531 209 521 q 177 542 193 542 l 106 542 q 81 535 88 542 q 80 510 73 528 l 237 38 q 255 11 244 23 q 286 0 266 0 l 354 0 q 382 6 372 0 q 404 41 393 13 l 661 963 "}},"cssFontWeight":"normal","ascender":1395,"underlinePosition":-133,"cssFontStyle":"normal","boundingBox":{"yMin":-295,"xMin":-76.15625,"yMax":1395,"xMax":1467},"resolution":1000,"original_font_information":{"postscript_name":"Hermes-Regular","version_string":"Version 1.0; 1995; initial release","vendor_url":"www.fontbureau.com","full_font_name":"Hermes-Regular","font_family_name":"Hermes-Regular","copyright":"Copyright (c) The Font Bureau, Inc, 1995. All rights reserved.","description":"","trademark":"Hermes-Regular is a trademark of the The Font Bureau, Inc.","designer":"Atomic Vision Inc. and Matthew Butterick","designer_url":"","unique_font_identifier":"TheFontBureau,Inc: Hermes-Regular: 1995","license_url":"","license_description":"","manufacturer_name":"","font_sub_family_name":"Regular"},"descender":-298,"familyName":"Hermes-Regular","lineHeight":1692,"underlineThickness":25});;
$(function() {
  $('a.imagecache-imagelink').lightBox({
    imageLoading: '/sites/tillhundra.se/files/lightbox-ico-loading.gif',
    imageBtnClose: '/sites/tillhundra.se/files/lightbox-btn-close.gif',
    imageBtnPrev: '/sites/tillhundra.se/files/lightbox-btn-prev.gif',
    imageBtnNext: '/sites/tillhundra.se/files/lightbox-btn-next.gif',
    overlayBgColor: '#000',
    overlayOpaciy: 0.5
  });

  $('div.block div.view-stories div.content-views').cycle({
    cleartype: 1,
    fx: 'fade',
    speed: 'slow',
    timeout: 5000
  }); 

  $('div.view-slideshow div.content-views-field').cycle({
    cleartype: 1,
    fx: 'fade',
    speed: 'slow',
    timeout: 7000
  }); 

  // Move the alt attribute from an image link to the
  // links's title attribute.
  $('a.imagecache-imagelink img').each(function () {
    var text = $(this).attr('alt');
    $(this).parent().attr('title', text);
    $(this).after('<div class="caption">' + text + '</div>');
  });

  $.fn.media.defaults.mp3Player = '/sites/tillhundra.se/files/player.swf';
  $.fn.media.defaults.flvPlayer = '/sites/tillhundra.se/files/player.swf';
  $.fn.media.defaults.movPlayer = '/sites/tillhundra.se/files/player.swf';

  $('div.views-field-field-videos-fid a').media({
    width: 240,
    height: 240
  });
});
;

