(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','disableSelection'];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;var textLength=text.length;for(var i=0;i<textLength;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{var pixelAmount;var leftInlineStyle=element.style.left;var leftRuntimeStyle=element.runtimeStyle.left;element.runtimeStyle.left=element.currentStyle.left;if(!cssAmount.match(/\d(px|pt)$/)){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');containerSpan.className='typeface-js-vector-container';var wordsLength=words.length
for(var i=0;i<wordsLength;i++){var word=words[i];var vector=this.renderWord(face,style,word);if(vector){containerSpan.appendChild(vector.element);if(!this.disableSelection){var selectableSpan=document.createElement('span');selectableSpan.className='typeface-js-selected-text';var wordNode=document.createTextNode(word);selectableSpan.appendChild(wordNode);if(this.vectorBackend!='vml'){selectableSpan.style.marginLeft=-1*(vector.width+1)+'px';}
selectableSpan.targetWidth=vector.width;if(this.vectorBackend=='vml'){vector.element.appendChild(selectableSpan);}else{containerSpan.appendChild(selectableSpan);}}}}
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]);}}}
if(this.vectorBackend=='vml'){var dummyShape=document.createElement('v:shape');dummyShape.style.display='none';document.body.appendChild(dummyShape);}},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;if(parentNode.className=='typeface-js-selected-text'){return;}
var renderedText=this.getRenderedText(e);if(parentNode.tagName=='A'&&this.vectorBackend=='vml'&&this.getElementStyle(parentNode).display=='inline'){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;}
var childNodesLength=renderedText.childNodes.length
for(var i;i<childNodesLength;i++){var e=renderedText.childNodes[i];if(e.hasChildNodes()&&!e.targetWidth){e=e.childNodes[0];}
if(e&&e.targetWidth){var letterSpacingCount=e.innerHTML.length;var wordSpaceDelta=e.targetWidth-e.offsetWidth;var letterSpacing=wordSpaceDelta/(letterSpacingCount||1);if(this.vectorBackend=='vml'){letterSpacing=Math.ceil(letterSpacing);}
e.style.letterSpacing=letterSpacing+'px';e.style.width=e.targetWidth+'px';}}}}},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');if(this.disableSelection){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){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;}
var outlineLength=outline.length;for(var i=0;i<outlineLength;){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('');var charsLength=chars.length;for(var i=0;i<charsLength;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{element:ctx.canvas,width:Math.floor(canvas.width)};}},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';shape.style.marginLeft='-1px';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;}
shape.path+=vmlSegments.join('')+'m '+offsetX+' 0 l '+offsetX+' '+face.ascender;return{element:shape,width:Math.floor(this.pixelsFromPoints(face,style,offsetX,'horizontal'))};}}},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];}},initialize:function(){if(arguments.callee.done)return;arguments.callee.done=true;if(window._typefaceTimer)clearInterval(_typefaceTimer);this.renderDocument(function(e){e.style.visibility='visible'});}};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');}
styleSheet.addRule('.typeface-js-selected-text','-ms-filter: \
   "Chroma(color=black) \
   progid:DXImageTransform.Microsoft.MaskFilter(Color=white) \
   progid:DXImageTransform.Microsoft.MaskFilter(Color=blue) \
   alpha(opacity=30)" !important; \
  color: black; \
  font-family: Modern; \
  position: absolute; \
  white-space: pre; \
  filter: alpha(opacity=0);');styleSheet.addRule('.typeface-js-vector-container','position: relative');}else if(document.styleSheets&&document.styleSheets.length){var styleSheet=document.styleSheets[0];document.styleSheets[0].insertRule(typefaceSelectors.join(',')+' { visibility: hidden; }',styleSheet.cssRules.length);document.styleSheets[0].insertRule('.typeface-js-selected-text { \
   color: rgba(128, 128, 128, 0); \
   opacity: 0.30; \
   position: absolute; \
   font-family: Arial, sans-serif; \
   white-space: pre \
  }',styleSheet.cssRules.length);try{document.styleSheets[0].insertRule('.typeface-js-selected-text::-moz-selection { background: blue; }',styleSheet.cssRules.length);}catch(e){};try{document.styleSheets[0].insertRule('.typeface-js-selected-text::selection { background: blue; }',styleSheet.cssRules.length);}catch(e){};if(/WebKit/i.test(navigator.userAgent)){document.styleSheets[0].insertRule('.typeface-js-vector-container { position: relative }',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;if(/WebKit/i.test(navigator.userAgent)){var _typefaceTimer=setInterval(function(){if(/loaded|complete/.test(document.readyState)){_typeface_js.initialize();}},10);}
if(document.addEventListener){window.addEventListener('DOMContentLoaded',function(){_typeface_js.initialize()},false);}/*@cc_on @*//*@if (@_win32)
document.write("<script id=__ie_onload_typeface defer src=//:><\/script>");
var script = document.getElementById("__ie_onload_typeface");
script.onreadystatechange = function() {
 if (this.readyState == "complete") {
  _typeface_js.initialize(); 
 }
};
/*@end @*/try{console.log('initializing typeface.js')}catch(e){};})();;;(function($){$.fn.superfish=function(op){var sf=$.fn.superfish,c=sf.c,$arrow=$(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),over=function(){var $$=$(this),menu=getMenu($$);clearTimeout(menu.sfTimer);$$.showSuperfishUl().siblings().hideSuperfishUl();},out=function(){var $$=$(this),menu=getMenu($$),o=sf.op;clearTimeout(menu.sfTimer);menu.sfTimer=setTimeout(function(){o.retainPath=($.inArray($$[0],o.$path)>-1);$$.hideSuperfishUl();if(o.$path.length&&$$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}},o.delay);},getMenu=function($menu){var menu=$menu.parents(['ul.',c.menuClass,':first'].join(''))[0];sf.op=sf.o[menu.serial];return menu;},addArrow=function($a){$a.addClass(c.anchorClass).append($arrow.clone());};return this.each(function(){var s=this.serial=sf.o.length;var o=$.extend({},sf.defaults,op);o.$path=$('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){$(this).addClass([o.hoverClass,c.bcClass].join(' ')).filter('li:has(ul)').removeClass(o.pathClass);});sf.o[s]=sf.op=o;$('li:has(ul)',this)[($.fn.hoverIntent&&!o.disableHI)?'hoverIntent':'hover'](over,out).each(function(){if(o.autoArrows)addArrow($('>a:first-child',this));}).not('.'+c.bcClass).hideSuperfishUl();var $a=$('a',this);$a.each(function(i){var $li=$a.eq(i).parents('li');$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});});o.onInit.call(this);}).each(function(){var menuClasses=[c.menuClass];if(sf.op.dropShadows&&!($.browser.msie&&$.browser.version<7))menuClasses.push(c.shadowClass);$(this).addClass(menuClasses.join(' '));});};var sf=$.fn.superfish;sf.o=[];sf.op={};sf.IE7fix=function(){var o=sf.op;if($.browser.msie&&$.browser.version>6&&o.dropShadows&&o.animation.opacity!=undefined)
this.toggleClass(sf.c.shadowClass+'-off');};sf.c={bcClass:'sf-breadcrumb',menuClass:'sf-js-enabled',anchorClass:'sf-with-ul',arrowClass:'sf-sub-indicator',shadowClass:'sf-shadow'};sf.defaults={hoverClass:'sfHover',pathClass:'overideThisToUse',pathLevels:1,delay:500,animation:{opacity:'show'},speed:'normal',autoArrows:false,dropShadows:false,disableHI:false,onInit:function(){},onBeforeShow:function(){},onShow:function(){},onHide:function(){}};$.fn.extend({hideSuperfishUl:function(){var o=sf.op,not=(o.retainPath===true)?o.$path:'';o.retainPath=false;var $ul=$(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass).find('>ul').hide().css('visibility','hidden');o.onHide.call($ul);return this;},showSuperfishUl:function(){var o=sf.op,sh=sf.c.shadowClass+'-off',$ul=this.addClass(o.hoverClass).find('>ul:hidden').css('visibility','visible');sf.IE7fix.call($ul);o.onBeforeShow.call($ul);$ul.animate(o.animation,o.speed,function(){sf.IE7fix.call($ul);o.onShow.call($ul);});return this;}});})(jQuery);;;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}(';(p($){$.q.1Q=p(){J O.2n(p(){n b=$(O).u(\'2o\');8(b.1d(/^3i\\(["\']?(.*\\.2p)["\']?\\)$/i)){b=3j.$1;$(O).u({\'2o\':\'3k\',\'1e\':"3l:3m.3n.3o(3p=D, 3q="+($(O).u(\'3r\')==\'2q-3s\'?\'3t\':\'3u\')+", 13=\'"+b+"\')"}).2n(p(){n a=$(O).u(\'1u\');8(a!=\'2r\'&&a!=\'2s\')$(O).u(\'1u\',\'2s\')})}})};n l,4,1f=F,X=1v 1w,1x,1y=1,1z=/\\.(3v|3w|2p|3x|3y)(.*)?$/i;n m=1A,18=$.14.1g&&$.14.2t.1R(0,1)==6&&!19.3z,1S=18||($.14.1g&&$.14.2t.1R(0,1)==7);$.q.r=p(o){n j=$.2u({},$.q.r.2v,o);n k=O;p 2w(){l=O;4=$.2u({},j);2x();J F};p 2x(){8(1f)J;8($.1T(4.1U)){4.1U()}4.v=[];4.t=0;8(j.v.Y>0){4.v=j.v}C{n a={};8(!l.1B||l.1B==\'\'){n a={K:l.K,G:l.G};8($(l).1C("1l:1D").Y){a.S=$(l).1C("1l:1D")}C{a.S=$(l)}8(a.G==\'\'||1V a.G==\'1m\'){a.G=a.S.2y(\'1W\')}4.v.2z(a)}C{n b=$(k).1e("a[1B="+l.1B+"]");n a={};3A(n i=0;i<b.Y;i++){a={K:b[i].K,G:b[i].G};8($(b[i]).1C("1l:1D").Y){a.S=$(b[i]).1C("1l:1D")}C{a.S=$(b[i])}8(a.G==\'\'||1V a.G==\'1m\'){a.G=a.S.2y(\'1W\')}4.v.2z(a)}}}3B(4.v[4.t].K!=l.K){4.t++}8(4.1E){8(18){$(\'1X, 1Y, 1Z\').u(\'21\',\'3C\');$("#T").u(\'A\',$(U).A())}$("#T").u({\'3D-3E\':4.2A,\'22\':4.2B}).Z()}$(19).11("23.L 24.L",$.q.r.2C);1h()};p 1h(){$("#1n, #1o, #1i, #H").1a();n b=4.v[4.t].K;8(b.1d("1j")||l.3F.2D("1j")>=0){$.q.r.1F();1p(\'<1j s="2E" 3G="2F.q.r.2G()" 3H="3I\'+P.1b(P.3J()*3K)+\'" 2H="0" 3L="0" 13="\'+b+\'"></1j>\',4.1G,4.1H)}C 8(b.1d(/#/)){n c=19.3M.K.3N(\'#\')[0];c=b.3O(c,\'\');c=c.1R(c.2D(\'#\'));1p(\'<9 s="3P">\'+$(c).2I()+\'</9>\',4.1G,4.1H)}C 8(b.1d(1z)){X=1v 1w;X.13=b;8(X.3Q){25()}C{$.q.r.1F();$(X).Q().11(\'3R\',p(){$("#M").1a();25()})}}C{$.q.r.1F();$.3S(b,p(a){$("#M").1a();1p(\'<9 s="3T">\'+a+\'</9>\',4.1G,4.1H)})}};p 25(){n a=X.E;n b=X.A;n c=(4.N*2)+40;n d=(4.N*2)+26;n w=$.q.r.1q();8(4.2J&&(a>(w[0]-c)||b>(w[1]-d))){n e=P.28(P.28(w[0]-c,a)/a,P.28(w[1]-d,b)/b);a=P.1b(e*a);b=P.1b(e*b)}1p(\'<1l 1W="" s="3U" 13="\'+X.13+\'" />\',a,b)};p 2K(){8((4.v.Y-1)>4.t){n a=4.v[4.t+1].K||F;8(a&&a.1d(1z)){1I=1v 1w();1I.13=a}}8(4.t>0){n a=4.v[4.t-1].K||F;8(a&&a.1d(1z)){1I=1v 1w();1I.13=a}}};p 1p(a,b,c){1f=D;n d=4.N;8(1S||m){$("#y")[0].15.2L("A");$("#y")[0].15.2L("E")}8(d>0){b+=d*2;c+=d*2;$("#y").u({\'z\':d+\'R\',\'2M\':d+\'R\',\'2N\':d+\'R\',\'B\':d+\'R\',\'E\':\'2O\',\'A\':\'2O\'});8(1S||m){$("#y")[0].15.2P(\'A\',\'(O.2Q.3V - \'+d*2+\')\');$("#y")[0].15.2P(\'E\',\'(O.2Q.3W - \'+d*2+\')\')}}C{$("#y").u({\'z\':0,\'2M\':0,\'2N\':0,\'B\':0,\'E\':\'2R%\',\'A\':\'2R%\'})}8($("#x").16(":V")&&b==$("#x").E()&&c==$("#x").A()){$("#y").1J(\'29\',p(){$("#y").1r().1K($(a)).2a("1L",p(){1s()})});J}n w=$.q.r.1q();n e=(c+26)>w[1]?w[3]:(w[3]+P.1b((w[1]-c-26)*0.5));n f=(b+40)>w[0]?w[2]:(w[2]+P.1b((w[0]-b-40)*0.5));n g={\'B\':f,\'z\':e,\'E\':b+\'R\',\'A\':c+\'R\'};8($("#x").16(":V")){$("#y").1J("1L",p(){$("#y").1r();$("#x").2b(g,4.2S,4.2T,p(){$("#y").1K($(a)).2a("1L",p(){1s()})})})}C{8(4.2c>0&&4.v[4.t].S!==1m){$("#y").1r().1K($(a));n h=4.v[4.t].S;n i=$.q.r.2d(h);$("#x").u({\'B\':(i.B-20-4.N)+\'R\',\'z\':(i.z-20-4.N)+\'R\',\'E\':$(h).E()+(4.N*2),\'A\':$(h).A()+(4.N*2)});8(4.2e){g.22=\'Z\'}$("#x").2b(g,4.2c,4.2U,p(){1s()})}C{$("#y").1a().1r().1K($(a)).Z();$("#x").u(g).2a("1L",p(){1s()})}}};p 2V(){8(4.t!==0){$("#1o, #2W").Q().11("17",p(e){e.2X();4.t--;1h();J F});$("#1o").Z()}8(4.t!=(4.v.Y-1)){$("#1n, #2Y").Q().11("17",p(e){e.2X();4.t++;1h();J F});$("#1n").Z()}};p 1s(){8($.14.1g){$("#y")[0].15.1M(\'1e\');$("#x")[0].15.1M(\'1e\')}2V();2K();$(U).11("1N.L",p(e){8(e.2f==27&&4.2Z){$.q.r.1c()}C 8(e.2f==37&&4.t!==0){$(U).Q("1N.L");4.t--;1h()}C 8(e.2f==39&&4.t!=(4.v.Y-1)){$(U).Q("1N.L");4.t++;1h()}});8(4.30){$("#y").17($.q.r.1c)}8(4.1E&&4.31){$("#T").11("17",$.q.r.1c)}8(4.33){$("#1i").11("17",$.q.r.1c).Z()}8(1V 4.v[4.t].G!==\'1m\'&&4.v[4.t].G.Y>0){n a=$("#x").1u();$(\'#H 9\').3X(4.v[4.t].G).2I();$(\'#H\').u({\'z\':a.z+$("#x").34()-32,\'B\':a.B+(($("#x").35()*0.5)-($(\'#H\').E()*0.5))}).Z()}8(4.1E&&18){$(\'1X, 1Y, 1Z\',$(\'#y\')).u(\'21\',\'V\')}8($.1T(4.2g)){4.2g(4.v[4.t])}8($.14.1g){$("#x")[0].15.1M(\'1e\');$("#y")[0].15.1M(\'1e\')}1f=F};J O.Q(\'17.L\').11(\'17.L\',2w)};$.q.r.2C=p(){n w=$.q.r.1q();8(4.2h&&$("#x").16(\':V\')){n a=$("#x").35();n b=$("#x").34();n c={\'z\':(b>w[1]?w[3]:w[3]+P.1b((w[1]-b)*0.5)),\'B\':(a>w[0]?w[2]:w[2]+P.1b((w[0]-a)*0.5))};$("#x").u(c);$(\'#H\').u({\'z\':c.z+b-32,\'B\':c.B+((a*0.5)-($(\'#H\').E()*0.5))})}8(18&&$("#T").16(\':V\')){$("#T").u({\'A\':$(U).A()})}8($("#M").16(\':V\')){$("#M").u({\'B\':((w[0]-40)*0.5+w[2]),\'z\':((w[1]-40)*0.5+w[3])})}};$.q.r.1t=p(a,b){J 3Y($.3Z(a.41?a[0]:a,b,D))||0};$.q.r.2d=p(a){n b=a.42();b.z+=$.q.r.1t(a,\'43\');b.z+=$.q.r.1t(a,\'44\');b.B+=$.q.r.1t(a,\'45\');b.B+=$.q.r.1t(a,\'46\');J b};$.q.r.2G=p(){$("#M").1a();$("#2E").Z()};$.q.r.1q=p(){J[$(19).E(),$(19).A(),$(U).47(),$(U).48()]};$.q.r.36=p(){8(!$("#M").16(\':V\')){38(1x);J}$("#M > 9").u(\'z\',(1y*-40)+\'R\');1y=(1y+1)%12};$.q.r.1F=p(){38(1x);n w=$.q.r.1q();$("#M").u({\'B\':((w[0]-40)*0.5+w[2]),\'z\':((w[1]-40)*0.5+w[3])}).Z();$("#M").11(\'17\',$.q.r.1c);1x=49($.q.r.36,4a)};$.q.r.1c=p(){1f=D;$(X).Q();$(U).Q("1N.L");$(19).Q("23.L 24.L");$("#T, #y, #1i").Q();$("#1i, #M, #1o, #1n, #H").1a();1O=p(){8($("#T").16(\':V\')){$("#T").1J("29")}$("#y").1r();8(4.2h){$(19).Q("23.L 24.L")}8(18){$(\'1X, 1Y, 1Z\').u(\'21\',\'V\')}8($.1T(4.2i)){4.2i()}1f=F};8($("#x").16(":V")!==F){8(4.2j>0&&4.v[4.t].S!==1m){n a=4.v[4.t].S;n b=$.q.r.2d(a);n c={\'B\':(b.B-20-4.N)+\'R\',\'z\':(b.z-20-4.N)+\'R\',\'E\':$(a).E()+(4.N*2),\'A\':$(a).A()+(4.N*2)};8(4.2e){c.22=\'1a\'}$("#x").3a(F,D).2b(c,4.2j,4.3b,1O)}C{$("#x").3a(F,D).1J(\'29\',1O)}}C{1O()}J F};$.q.r.3c=p(){n a=\'\';a+=\'<9 s="T"></9>\';a+=\'<9 s="M"><9></9></9>\';a+=\'<9 s="x">\';a+=\'<9 s="3d">\';a+=\'<9 s="1i"></9>\';a+=\'<9 s="W"><9 I="W" s="4b"></9><9 I="W" s="4c"></9><9 I="W" s="4d"></9><9 I="W" s="4e"></9><9 I="W" s="4f"></9><9 I="W" s="4g"></9><9 I="W" s="4h"></9><9 I="W" s="4i"></9></9>\';a+=\'<a K="2k:;" s="1o"><1P I="2l" s="2W"></1P></a><a K="2k:;" s="1n"><1P I="2l" s="2Y"></1P></a>\';a+=\'<9 s="y"></9>\';a+=\'</9>\';a+=\'</9>\';a+=\'<9 s="H"></9>\';$(a).3e("4j");$(\'<3f 4k="0" 4l="0" 4m="0"><3g><1k I="H" s="4n"></1k><1k I="H" s="4o"><9></9></1k><1k I="H" s="4p"></1k></3g></3f>\').3e(\'#H\');8($.14.1g){$(".W").1Q()}8(18){$("9#T").u("1u","2r");$("#M 9, #1i, .H, .2l").1Q();$("#3d").4q(\'<1j s="3h" 13="2k:F;" 4r="2q" 2H="0"></1j>\');n b=$(\'#3h\')[0].4s.U;b.4t();b.1c()}};$.q.r.2v={N:10,2J:D,2e:D,2c:0,2j:0,2S:4u,2U:\'2m\',3b:\'2m\',2T:\'2m\',1G:4v,1H:4w,1E:D,2B:0.3,2A:\'#4x\',2Z:D,33:D,31:D,30:D,2h:D,v:[],1U:1A,2g:1A,2i:1A};$(U).4y(p(){m=$.14.1g&&!$.4z;8($("#x").Y<1){$.q.r.3c()}})})(2F);',62,284,'||||opts||||if|div||||||||||||||var||function|fn|fancybox|id|itemCurrent|css|itemArray||fancy_outer|fancy_content|top|height|left|else|true|width|false|title|fancy_title|class|return|href|fb|fancy_loading|padding|this|Math|unbind|px|orig|fancy_overlay|document|visible|fancy_bg|imagePreloader|length|show||bind||src|browser|style|is|click|IE6|window|hide|round|close|match|filter|busy|msie|_change_item|fancy_close|iframe|td|img|undefined|fancy_right|fancy_left|_set_content|getViewport|empty|_finish|getNumeric|position|new|Image|loadingTimer|loadingFrame|imageRegExp|null|rel|children|first|overlayShow|showLoading|frameWidth|frameHeight|objNext|fadeOut|append|normal|removeAttribute|keydown|__cleanup|span|fixPNG|substr|oldIE|isFunction|callbackOnStart|typeof|alt|embed|object|select||visibility|opacity|resize|scroll|_proceed_image|60||min|fast|fadeIn|animate|zoomSpeedIn|getPosition|zoomOpacity|keyCode|callbackOnShow|centerOnScroll|callbackOnClose|zoomSpeedOut|javascript|fancy_ico|swing|each|backgroundImage|png|no|absolute|relative|version|extend|defaults|_initialize|_start|attr|push|overlayColor|overlayOpacity|scrollBox|indexOf|fancy_frame|jQuery|showIframe|frameborder|html|imageScale|_preload_neighbor_images|removeExpression|right|bottom|auto|setExpression|parentNode|100|zoomSpeedChange|easingChange|easingIn|_set_navigation|fancy_left_ico|stopPropagation|fancy_right_ico|enableEscapeButton|hideOnContentClick|hideOnOverlayClick||showCloseButton|outerHeight|outerWidth|animateLoading||clearInterval||stop|easingOut|build|fancy_inner|appendTo|table|tr|fancy_bigIframe|url|RegExp|none|progid|DXImageTransform|Microsoft|AlphaImageLoader|enabled|sizingMethod|backgroundRepeat|repeat|crop|scale|jpg|gif|bmp|jpeg|XMLHttpRequest|for|while|hidden|background|color|className|onload|name|fancy_iframe|random|1000|hspace|location|split|replace|fancy_div|complete|load|get|fancy_ajax|fancy_img|clientHeight|clientWidth|text|parseInt|curCSS||jquery|offset|paddingTop|borderTopWidth|paddingLeft|borderLeftWidth|scrollLeft|scrollTop|setInterval|66|fancy_bg_n|fancy_bg_ne|fancy_bg_e|fancy_bg_se|fancy_bg_s|fancy_bg_sw|fancy_bg_w|fancy_bg_nw|body|cellspacing|cellpadding|border|fancy_title_left|fancy_title_main|fancy_title_right|prepend|scrolling|contentWindow|open|300|560|340|666|ready|boxModel'.split('|'),0,{}));;$(document).ready(function(){$(".zoom a").append("<span></span>");$(".zoom a").hover(function(){$(this).children("span").fadeIn(600);},function(){$(this).children("span").fadeOut(200);});});;eval(function(p,a,c,k,e,d){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--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[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}('(9($){$.1f.1q=9(1X){b 3=$.2i({},$.1f.1q.2c,1X);I g.E(9(){b 4={f:0,t:\'\',U:0,o:\'\',N:m,1k:m,1N:m};b 5=$(g);5.1S(\'7:4\',4);5.e(\'2h\',\'2g\');5.1n(\'1q\');b d=5.2j();d.E(9(){b j=$(g);b 1p=\'\';6(!j.K(\'B\')){6(j.K(\'a\')){j.1n(\'7-2k\');1p=j}j=j.1g(\'B:1s\')}b 1c=j.w();6(1c==0)1c=j.s(\'w\');b 1d=j.x();6(1d==0)1d=j.s(\'x\');6(1c>5.w()){5.w(1c)}6(1d>5.x()){5.x(1d)}6(1p!=\'\'){1p.e(\'P\',\'1h\')}j.e(\'P\',\'1h\');4.U++});6(3.1a>0){6(3.1a>=4.U)3.1a=4.U-1;4.f=3.1a}6($(d[4.f]).K(\'B\')){4.t=$(d[4.f])}n{4.t=$(d[4.f]).1g(\'B:1s\')}6($(d[4.f]).K(\'a\')){$(d[4.f]).e(\'P\',\'1w\')}5.e(\'W\',\'V(\'+4.t.s(\'D\')+\') R-Y\');2b(b i=0;i<3.h;i++){b G=X.27(5.w()/3.h);6(i==3.h-1){5.J($(\'<C z="7-c"></C>\').e({21:(G*i)+\'13\',w:(5.w()-(G*i))+\'13\'}))}n{5.J($(\'<C z="7-c"></C>\').e({21:(G*i)+\'13\',w:G+\'13\'}))}}5.J($(\'<C z="7-H"><p></p></C>\').e({P:\'1h\',y:3.1Y}));6(4.t.s(\'16\')!=\'\'){$(\'.7-H p\',5).1y(4.t.s(\'16\'));$(\'.7-H\',5).1x(3.q)}b l=0;6(!3.1i&&d.1j>1){l=1v(9(){F(5,d,3,m)},3.1m)}6(3.T){5.J(\'<C z="7-T"><a z="7-2a">2f</a><a z="7-29">2m</a></C>\');6(3.2d){$(\'.7-T\',5).24();5.25(9(){$(\'.7-T\',5).2l()},9(){$(\'.7-T\',5).24()})}$(\'a.7-2a\',5).1J(\'1I\',9(){6(4.N)I m;S(l);l=\'\';4.f-=2;F(5,d,3,\'1C\')});$(\'a.7-29\',5).1J(\'1I\',9(){6(4.N)I m;S(l);l=\'\';F(5,d,3,\'1A\')})}6(3.M){b 1b=$(\'<C z="7-M"></C>\');5.J(1b);2b(b i=0;i<d.1j;i++){6(3.20){b j=d.1B(i);6(!j.K(\'B\')){j=j.1g(\'B:1s\')}6(3.1Q){1b.J(\'<a z="7-1l" 11="\'+i+\'"><B D="\'+j.s(\'11\')+\'" 28="" /></a>\')}n{1b.J(\'<a z="7-1l" 11="\'+i+\'"><B D="\'+j.s(\'D\').2n(3.1R,3.1P)+\'" 28="" /></a>\')}}n{1b.J(\'<a z="7-1l" 11="\'+i+\'">\'+i+\'</a>\')}}$(\'.7-M a:1B(\'+4.f+\')\',5).1n(\'1o\');$(\'.7-M a\',5).1J(\'1I\',9(){6(4.N)I m;6($(g).2e(\'1o\'))I m;S(l);l=\'\';5.e(\'W\',\'V(\'+4.t.s(\'D\')+\') R-Y\');4.f=$(g).s(\'11\')-1;F(5,d,3,\'1l\')})}6(3.1M){$(2q).2A(9(1L){6(1L.1Z==\'2C\'){6(4.N)I m;S(l);l=\'\';4.f-=2;F(5,d,3,\'1C\')}6(1L.1Z==\'2D\'){6(4.N)I m;S(l);l=\'\';F(5,d,3,\'1A\')}})}6(3.1T){5.25(9(){4.1k=Q;S(l);l=\'\'},9(){4.1k=m;6(l==\'\'&&!3.1i){l=1v(9(){F(5,d,3,m)},3.1m)}})}5.2E(\'7:Z\',9(){4.N=m;$(d).E(9(){6($(g).K(\'a\')){$(g).e(\'P\',\'1h\')}});6($(d[4.f]).K(\'a\')){$(d[4.f]).e(\'P\',\'1w\')}6(l==\'\'&&!4.1k&&!3.1i){l=1v(9(){F(5,d,3,m)},3.1m)}3.1U.1z(g)})});9 F(5,d,3,19){b 4=5.1S(\'7:4\');6((!4||4.1N)&&!19)I m;3.1W.1z(g);6(!19){5.e(\'W\',\'V(\'+4.t.s(\'D\')+\') R-Y\')}n{6(19==\'1C\'){5.e(\'W\',\'V(\'+4.t.s(\'D\')+\') R-Y\')}6(19==\'1A\'){5.e(\'W\',\'V(\'+4.t.s(\'D\')+\') R-Y\')}}4.f++;6(4.f==4.U){4.f=0;3.1V.1z(g)}6(4.f<0)4.f=(4.U-1);6($(d[4.f]).K(\'B\')){4.t=$(d[4.f])}n{4.t=$(d[4.f]).1g(\'B:1s\')}6(3.M){$(\'.7-M a\',5).2F(\'1o\');$(\'.7-M a:1B(\'+4.f+\')\',5).1n(\'1o\')}6(4.t.s(\'16\')!=\'\'){6($(\'.7-H\',5).e(\'P\')==\'1w\'){$(\'.7-H p\',5).22(3.q,9(){$(g).1y(4.t.s(\'16\'));$(g).1x(3.q)})}n{$(\'.7-H p\',5).1y(4.t.s(\'16\'))}$(\'.7-H\',5).1x(3.q)}n{$(\'.7-H\',5).22(3.q)}b i=0;$(\'.7-c\',5).E(9(){b G=X.27(5.w()/3.h);$(g).e({x:\'O\',y:\'0\',W:\'V(\'+4.t.s(\'D\')+\') R-Y -\'+((G+(i*G))-G)+\'13 0%\'});i++});6(3.k==\'1t\'){b 10=2G 2B("1K","14","1F","17","1E","12","1D","1r");4.o=10[X.26(X.1t()*(10.1j+1))];6(4.o==2y)4.o=\'1r\'}6(3.k.2o(\',\')!=-1){b 10=3.k.2r(\',\');4.o=$.2z(10[X.26(X.1t()*10.1j)])}4.N=Q;6(3.k==\'2p\'||3.k==\'1K\'||4.o==\'1K\'||3.k==\'14\'||4.o==\'14\'){b u=0;b i=0;b h=$(\'.7-c\',5);6(3.k==\'14\'||4.o==\'14\')h=$(\'.7-c\',5).1e();h.E(9(){b c=$(g);c.e(\'1G\',\'O\');6(i==3.h-1){L(9(){c.A({x:\'r%\',y:\'1.0\'},3.q,\'\',9(){5.18(\'7:Z\')})},(r+u))}n{L(9(){c.A({x:\'r%\',y:\'1.0\'},3.q)},(r+u))}u+=1u;i++})}n 6(3.k==\'2t\'||3.k==\'1F\'||4.o==\'1F\'||3.k==\'17\'||4.o==\'17\'){b u=0;b i=0;b h=$(\'.7-c\',5);6(3.k==\'17\'||4.o==\'17\')h=$(\'.7-c\',5).1e();h.E(9(){b c=$(g);c.e(\'23\',\'O\');6(i==3.h-1){L(9(){c.A({x:\'r%\',y:\'1.0\'},3.q,\'\',9(){5.18(\'7:Z\')})},(r+u))}n{L(9(){c.A({x:\'r%\',y:\'1.0\'},3.q)},(r+u))}u+=1u;i++})}n 6(3.k==\'1E\'||3.k==\'2u\'||4.o==\'1E\'||3.k==\'12\'||4.o==\'12\'){b u=0;b i=0;b v=0;b h=$(\'.7-c\',5);6(3.k==\'12\'||4.o==\'12\')h=$(\'.7-c\',5).1e();h.E(9(){b c=$(g);6(i==0){c.e(\'1G\',\'O\');i++}n{c.e(\'23\',\'O\');i=0}6(v==3.h-1){L(9(){c.A({x:\'r%\',y:\'1.0\'},3.q,\'\',9(){5.18(\'7:Z\')})},(r+u))}n{L(9(){c.A({x:\'r%\',y:\'1.0\'},3.q)},(r+u))}u+=1u;v++})}n 6(3.k==\'1D\'||4.o==\'1D\'){b u=0;b i=0;$(\'.7-c\',5).E(9(){b c=$(g);b 1H=c.w();c.e({1G:\'O\',x:\'r%\',w:\'O\'});6(i==3.h-1){L(9(){c.A({w:1H,y:\'1.0\'},3.q,\'\',9(){5.18(\'7:Z\')})},(r+u))}n{L(9(){c.A({w:1H,y:\'1.0\'},3.q)},(r+u))}u+=1u;i++})}n 6(3.k==\'1r\'||4.o==\'1r\'){b i=0;$(\'.7-c\',5).E(9(){$(g).e(\'x\',\'r%\');6(i==3.h-1){$(g).A({y:\'1.0\'},(3.q*2),\'\',9(){5.18(\'7:Z\')})}n{$(g).A({y:\'1.0\'},(3.q*2))}i++})}}};$.1f.1q.2c={k:\'1t\',h:15,q:2x,1m:2w,1a:0,T:Q,2d:Q,M:Q,20:m,1Q:m,1R:\'.1O\',1P:\'2v.1O\',1M:Q,1T:Q,1i:m,1Y:0.8,1W:9(){},1U:9(){},1V:9(){}};$.1f.1e=[].1e})(2s);',62,167,'|||settings|vars|slider|if|nivo||function||var|slice|kids|css|currentSlide|this|slices||child|effect|timer|false|else|randAnim||animSpeed|100|attr|currentImage|timeBuff||width|height|opacity|class|animate|img|div|src|each|nivoRun|sliceWidth|caption|return|append|is|setTimeout|controlNav|running|0px|display|true|no|clearInterval|directionNav|totalSlides|url|background|Math|repeat|animFinished|anims|rel|sliceUpDownLeft|px|sliceDownLeft||title|sliceUpLeft|trigger|nudge|startSlide|nivoControl|childWidth|childHeight|reverse|fn|find|none|manualAdvance|length|paused|control|pauseTime|addClass|active|link|nivoSlider|fade|first|random|50|setInterval|block|fadeIn|html|call|next|eq|prev|fold|sliceUpDown|sliceUpRight|top|origWidth|click|live|sliceDownRight|event|keyboardNav|stop|jpg|controlNavThumbsReplace|controlNavThumbsFromRel|controlNavThumbsSearch|data|pauseOnHover|afterChange|slideshowEnd|beforeChange|options|captionOpacity|keyCode|controlNavThumbs|left|fadeOut|bottom|hide|hover|floor|round|alt|nextNav|prevNav|for|defaults|directionNavHide|hasClass|Prev|relative|position|extend|children|imageLink|show|Next|replace|indexOf|sliceDown|window|split|jQuery|sliceUp|sliceUpDownRight|_thumb|3000|500|undefined|trim|keypress|Array|37|39|bind|removeClass|new'.split('|'),0,{}));
/*
 * jQuery JavaScript Library v1.4.2
 * http://jquery.com/
 *
 * Copyright 2010, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 * Copyright 2010, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Sat Feb 13 22:33:48 2010 -0500
 */
(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o<i;o++)e(a[o],b,f?d.call(a[o],o,e(a[o],b)):d,j);return a}return i?e(a[0],b):w}function J(){return(new Date).getTime()}function Y(){return false}function Z(){return true}function na(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function oa(a){var b,d=[],f=[],e=arguments,j,i,o,k,n,r;i=c.data(this,"events");if(!(a.liveFired===this||!i||!i.live||a.button&&a.type==="click")){a.liveFired=this;var u=i.live.slice(0);for(k=0;k<u.length;k++){i=u[k];i.origType.replace(O,"")===a.type?f.push(i.selector):u.splice(k--,1)}j=c(a.target).closest(f,a.currentTarget);n=0;for(r=j.length;n<r;n++)for(k=0;k<u.length;k++){i=u[k];if(j[n].selector===i.selector){o=j[n].elem;f=null;if(i.preType==="mouseenter"||i.preType==="mouseleave")f=c(a.relatedTarget).closest(i.selector)[0];if(!f||f!==o)d.push({elem:o,handleObj:i})}}n=0;for(r=d.length;n<r;n++){j=d[n];a.currentTarget=j.elem;a.data=j.handleObj.data;a.handleObj=j.handleObj;if(j.handleObj.origHandler.apply(j.elem,e)===false){b=false;break}}return b}}function pa(a,b){return"live."+(a&&a!=="*"?a+".":"")+b.replace(/\./g,"`").replace(/ /g,"&")}function qa(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function ra(a,b){var d=0;b.each(function(){if(this.nodeName===(a[d]&&a[d].nodeName)){var f=c.data(a[d++]),e=c.data(this,f);if(f=f&&f.events){delete e.handle;e.events={};for(var j in f)for(var i in f[j])c.event.add(this,j,f[j][i],f[j][i].data)}}})}function sa(a,b,d){var f,e,j;b=b&&b[0]?b[0].ownerDocument||b[0]:s;if(a.length===1&&typeof a[0]==="string"&&a[0].length<512&&b===s&&!ta.test(a[0])&&(c.support.checkClone||!ua.test(a[0]))){e=true;if(j=c.fragments[a[0]])if(j!==1)f=j}if(!f){f=b.createDocumentFragment();c.clean(a,b,f,d)}if(e)c.fragments[a[0]]=j?f:1;return{fragment:f,cacheable:e}}function K(a,b){var d={};c.each(va.concat.apply([],va.slice(0,b)),function(){d[this]=a});return d}function wa(a){return"scrollTo"in a&&a.document?a:a.nodeType===9?a.defaultView||a.parentWindow:false}var c=function(a,b){return new c.fn.init(a,b)},Ra=A.jQuery,Sa=A.$,s=A.document,T,Ta=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/,Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&&(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this,a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b==="find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this,function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b<d;b++)if((e=arguments[b])!=null)for(j in e){i=a[j];o=e[j];if(a!==o)if(f&&o&&(c.isPlainObject(o)||c.isArray(o))){i=i&&(c.isPlainObject(i)||c.isArray(i))?i:c.isArray(o)?[]:{};a[j]=c.extend(f,i,o)}else if(o!==w)a[j]=o}return a};c.extend({noConflict:function(a){A.$=Sa;if(a)A.jQuery=Ra;return c},isReady:false,ready:function(){if(!c.isReady){if(!s.body)return setTimeout(c.ready,13);c.isReady=true;if(Q){for(var a,b=0;a=Q[b++];)a.call(s,c);Q=null}c.fn.triggerHandler&&c(s).triggerHandler("ready")}},bindReady:function(){if(!xa){xa=true;if(s.readyState==="complete")return c.ready();if(s.addEventListener){s.addEventListener("DOMContentLoaded",L,false);A.addEventListener("load",c.ready,false)}else if(s.attachEvent){s.attachEvent("onreadystatechange",L);A.attachEvent("onload",c.ready);var a=false;try{a=A.frameElement==null}catch(b){}s.documentElement.doScroll&&a&&ma()}}},isFunction:function(a){return $.call(a)==="[object Function]"},isArray:function(a){return $.call(a)==="[object Array]"},isPlainObject:function(a){if(!a||$.call(a)!=="[object Object]"||a.nodeType||a.setInterval)return false;if(a.constructor&&!aa.call(a,"constructor")&&!aa.call(a.constructor.prototype,"isPrototypeOf"))return false;var b;for(b in a);return b===w||aa.call(a,b)},isEmptyObject:function(a){for(var b in a)return false;return true},error:function(a){throw a;},parseJSON:function(a){if(typeof a!=="string"||!a)return null;a=c.trim(a);if(/^[\],:{}\s]*$/.test(a.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return A.JSON&&A.JSON.parse?A.JSON.parse(a):(new Function("return "+
a))();else c.error("Invalid JSON: "+a)},noop:function(){},globalEval:function(a){if(a&&Va.test(a)){var b=s.getElementsByTagName("head")[0]||s.documentElement,d=s.createElement("script");d.type="text/javascript";if(c.support.scriptEval)d.appendChild(s.createTextNode(a));else d.text=a;b.insertBefore(d,b.firstChild);b.removeChild(d)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,b,d){var f,e=0,j=a.length,i=j===w||c.isFunction(a);if(d)if(i)for(f in a){if(b.apply(a[f],d)===false)break}else for(;e<j;){if(b.apply(a[e++],d)===false)break}else if(i)for(f in a){if(b.call(a[f],f,a[f])===false)break}else for(d=a[0];e<j&&b.call(d,e,d)!==false;d=a[++e]);return a},trim:function(a){return(a||"").replace(Wa,"")},makeArray:function(a,b){b=b||[];if(a!=null)a.length==null||typeof a==="string"||c.isFunction(a)||typeof a!=="function"&&a.setInterval?ba.call(b,a):c.merge(b,a);return b},inArray:function(a,b){if(b.indexOf)return b.indexOf(a);for(var d=0,f=b.length;d<f;d++)if(b[d]===a)return d;return-1},merge:function(a,b){var d=a.length,f=0;if(typeof b.length==="number")for(var e=b.length;f<e;f++)a[d++]=b[f];else for(;b[f]!==w;)a[d++]=b[f++];a.length=d;return a},grep:function(a,b,d){for(var f=[],e=0,j=a.length;e<j;e++)!d!==!b(a[e],e)&&f.push(a[e]);return f},map:function(a,b,d){for(var f=[],e,j=0,i=a.length;j<i;j++){e=b(a[j],j,d);if(e!=null)f[f.length]=e}return f.concat.apply([],f)},guid:1,proxy:function(a,b,d){if(arguments.length===2)if(typeof b==="string"){d=a;a=d[b];b=w}else if(b&&!c.isFunction(b)){d=b;b=w}if(!b&&a)b=function(){return a.apply(d||this,arguments)};if(a)b.guid=a.guid=a.guid||b.guid||c.guid++;return b},uaMatch:function(a){a=a.toLowerCase();a=/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version)?[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||!/compatible/.test(a)&&/(mozilla)(?:.*? rv:([\w.]+))?/.exec(a)||[];return{browser:a[1]||"",version:a[2]||"0"}},browser:{}});P=c.uaMatch(P);if(P.browser){c.browser[P.browser]=true;c.browser.version=P.version}if(c.browser.webkit)c.browser.safari=true;if(ya)c.inArray=function(a,b){return ya.call(b,a)};T=c(s);if(s.addEventListener)L=function(){s.removeEventListener("DOMContentLoaded",L,false);c.ready()};else if(s.attachEvent)L=function(){if(s.readyState==="complete"){s.detachEvent("onreadystatechange",L);c.ready()}};(function(){c.support={};var a=s.documentElement,b=s.createElement("script"),d=s.createElement("div"),f="script"+J();d.style.display="none";d.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected,parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent=false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n=s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true,applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando];else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this,a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b===w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i,cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1)if(e.className){for(var j=" "+e.className+" ",i=e.className,o=0,k=b.length;o<k;o++)if(j.indexOf(" "+b[o]+" ")<0)i+=" "+b[o];e.className=c.trim(i)}else e.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(k){var n=c(this);n.removeClass(a.call(this,k,n.attr("class")))});if(a&&typeof a==="string"||a===w)for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1&&e.className)if(a){for(var j=(" "+e.className+" ").replace(Aa," "),i=0,o=b.length;i<o;i++)j=j.replace(" "+b[i]+" "," ");e.className=c.trim(j)}else e.className=""}return this},toggleClass:function(a,b){var d=typeof a,f=typeof b==="boolean";if(c.isFunction(a))return this.each(function(e){var j=c(this);j.toggleClass(a.call(this,e,j.attr("class"),b),b)});return this.each(function(){if(d==="string")for(var e,j=0,i=c(this),o=b,k=a.split(ca);e=k[j++];){o=f?o:!i.hasClass(e);i[o?"addClass":"removeClass"](e)}else if(d==="undefined"||d==="boolean"){this.className&&c.data(this,"__className__",this.className);this.className=this.className||a===false?"":c.data(this,"__className__")||""}})},hasClass:function(a){a=" "+a+" ";for(var b=0,d=this.length;b<d;b++)if((" "+this[b].className+" ").replace(Aa," ").indexOf(a)>-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j<d;j++){var i=e[j];if(i.selected){a=c(i).val();if(b)return a;f.push(a)}}return f}if(Ba.test(b.type)&&!c.support.checkOn)return b.getAttribute("value")===null?"on":b.value;return(b.value||"").replace(Za,"")}return w}var o=c.isFunction(a);return this.each(function(k){var n=c(this),r=a;if(this.nodeType===1){if(o)r=a.call(this,k,n.val());if(typeof r==="number")r+="";if(c.isArray(r)&&Ba.test(this.type))this.checked=c.inArray(n.val(),r)>=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected=c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed");a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g,function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split(".");k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a),C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B<r.length;B++){u=r[B];if(d.guid===u.guid){if(i||k.test(u.namespace)){f==null&&r.splice(B--,1);n.remove&&n.remove.call(a,u)}if(f!=null)break}}if(r.length===0||f!=null&&r.length===1){if(!n.teardown||n.teardown.call(a,o)===false)Ca(a,e,z.handle);delete C[e]}}else for(var B=0;B<r.length;B++){u=r[B];if(i||k.test(u.namespace)){c.event.remove(a,n,u.handler,B);r.splice(B--,1)}}}if(c.isEmptyObject(C)){if(b=z.handle)b.elem=null;delete z.events;delete z.handle;c.isEmptyObject(z)&&c.removeData(a)}}}}},trigger:function(a,b,d,f){var e=a.type||a;if(!f){a=typeof a==="object"?a[G]?a:c.extend(c.Event(e),a):c.Event(e);if(e.indexOf("!")>=0){a.type=e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&&f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive;if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e<j;e++){var i=d[e];if(b||f.test(i.namespace)){a.handler=i.handler;a.data=i.data;a.handleObj=i;i=i.handler.apply(this,arguments);if(i!==w){a.result=i;if(i===false){a.preventDefault();a.stopPropagation()}}if(a.isImmediatePropagationStopped())break}}}return a.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(a){if(a[G])return a;var b=a;a=c.Event(b);for(var d=this.props.length,f;d;){f=this.props[--d];a[f]=b[f]}if(!a.target)a.target=a.srcElement||s;if(a.target.nodeType===3)a.target=a.target.parentNode;if(!a.relatedTarget&&a.fromElement)a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement;if(a.pageX==null&&a.clientX!=null){b=s.documentElement;d=s.body;a.pageX=a.clientX+(b&&b.scrollLeft||d&&d.scrollLeft||0)-(b&&b.clientLeft||d&&d.clientLeft||0);a.pageY=a.clientY+(b&&b.scrollTop||d&&d.scrollTop||0)-(b&&b.clientTop||d&&d.clientTop||0)}if(!a.which&&(a.charCode||a.charCode===0?a.charCode:a.keyCode))a.which=a.charCode||a.keyCode;if(!a.metaKey&&a.ctrlKey)a.metaKey=a.ctrlKey;if(!a.which&&a.button!==w)a.which=a.button&1?1:a.button&2?3:a.button&4?2:0;return a},guid:1E8,proxy:c.proxy,special:{ready:{setup:c.bindReady,teardown:c.noop},live:{add:function(a){c.event.add(this,a.origType,c.extend({},a,{handler:oa}))},remove:function(a){var b=true,d=a.origType.replace(O,"");c.each(c.data(this,"events").live||[],function(){if(d===this.origType.replace(O,""))return b=false});b&&c.event.remove(this,a.origType,oa)}},beforeunload:{setup:function(a,b,d){if(this.setInterval)this.onbeforeunload=d;return false},teardown:function(a,b){if(this.onbeforeunload===b)this.onbeforeunload=null}}}};var Ca=s.removeEventListener?function(a,b,d){a.removeEventListener(b,d,false)}:function(a,b,d){a.detachEvent("on"+b,d)};c.Event=function(a){if(!this.preventDefault)return new c.Event(a);if(a&&a.type){this.originalEvent=a;this.type=a.type}else this.type=a;this.timeStamp=J();this[G]=true};c.Event.prototype={preventDefault:function(){this.isDefaultPrevented=Z;var a=this.originalEvent;if(a){a.preventDefault&&a.preventDefault();a.returnValue=false}},stopPropagation:function(){this.isPropagationStopped=Z;var a=this.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.cancelBubble=true}},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=Z;this.stopPropagation()},isDefaultPrevented:Y,isPropagationStopped:Y,isImmediatePropagationStopped:Y};var Da=function(a){var b=a.relatedTarget;try{for(;b&&b!==this;)b=b.parentNode;if(b!==this){a.type=a.data;c.event.handle.apply(this,arguments)}}catch(d){}},Ea=function(a){a.type=a.data;c.event.handle.apply(this,arguments)};c.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){c.event.special[a]={setup:function(d){c.event.add(this,b,d&&d.selector?Ea:Da,a)},teardown:function(d){c.event.remove(this,b,d&&d.selector?Ea:Da)}}});if(!c.support.submitBubbles)c.event.special.submit={setup:function(){if(this.nodeName.toLowerCase()!=="form"){c.event.add(this,"click.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="submit"||d==="image")&&c(b).closest("form").length)return na("submit",this,arguments)});c.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="text"||d==="password")&&c(b).closest("form").length&&a.keyCode===13)return na("submit",this,arguments)})}else return false},teardown:function(){c.event.remove(this,".specialSubmit")}};if(!c.support.changeBubbles){var da=/textarea|input|select/i,ea,Fa=function(a){var b=a.type,d=a.value;if(b==="radio"||b==="checkbox")d=a.checked;else if(b==="select-multiple")d=a.selectedIndex>-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data",e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a,"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a,d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j<o;j++)c.event.add(this[j],d,i,f)}return this}});c.fn.extend({unbind:function(a,b){if(typeof a==="object"&&!a.preventDefault)for(var d in a)this.unbind(d,a[d]);else{d=0;for(var f=this.length;d<f;d++)c.event.remove(this[d],a,b)}return this},delegate:function(a,b,d,f){return this.live(b,d,f,a)},undelegate:function(a,b,d){return arguments.length===0?this.unbind("live"):this.die(b,null,d,a)},trigger:function(a,b){return this.each(function(){c.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){a=c.Event(a);a.preventDefault();a.stopPropagation();c.event.trigger(a,b,this[0]);return a.result}},toggle:function(a){for(var b=arguments,d=1;d<b.length;)c.proxy(a,b[d++]);return this.click(c.proxy(a,function(f){var e=(c.data(this,"lastToggle"+a.guid)||0)%d;c.data(this,"lastToggle"+a.guid,e+1);f.preventDefault();return b[e].apply(this,arguments)||false}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var Ga={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};c.each(["live","die"],function(a,b){c.fn[b]=function(d,f,e,j){var i,o=0,k,n,r=j||this.selector,u=j?this:c(this.context);if(c.isFunction(f)){e=f;f=w}for(d=(d||"").split(" ");(i=d[o++])!=null;){j=O.exec(i);k="";if(j){k=j[0];i=i.replace(O,"")}if(i==="hover")d.push("mouseenter"+k,"mouseleave"+k);else{n=i;if(i==="focus"||i==="blur"){d.push(Ga[i]+k);i+=k}else i=(Ga[i]||i)+k;b==="live"?u.each(function(){c.event.add(this,pa(i,r),{data:f,selector:r,handler:e,origType:i,origHandler:e,preType:n})}):u.unbind(pa(i,r),e)}}return this}});c.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){c.fn[b]=function(d){return d?this.bind(b,d):this.trigger(b)};if(c.attrFn)c.attrFn[b]=true});A.attachEvent&&!A.addEventListener&&A.attachEvent("onunload",function(){for(var a in c.cache)if(c.cache[a].handle)try{c.event.remove(c.cache[a].handle.elem)}catch(b){}});(function(){function a(g){for(var h="",l,m=0;g[m];m++){l=g[m];if(l.nodeType===3||l.nodeType===4)h+=l.nodeValue;else if(l.nodeType!==8)h+=a(l.childNodes)}return h}function b(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q];if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1&&!p){t.sizcache=l;t.sizset=q}if(t.nodeName.toLowerCase()===h){y=t;break}t=t[g]}m[q]=y}}}function d(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q];if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1){if(!p){t.sizcache=l;t.sizset=q}if(typeof h!=="string"){if(t===h){y=true;break}}else if(k.filter(h,[t]).length>0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift();t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D||g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h<g.length;h++)g[h]===g[h-1]&&g.splice(h--,1)}return g};k.matches=function(g,h){return k(g,null,null,h)};k.find=function(g,h,l){var m,q;if(!g)return[];for(var p=0,v=n.order.length;p<v;p++){var t=n.order[p];if(q=n.leftMatch[t].exec(g)){var y=q[1];q.splice(1,1);if(y.substr(y.length-1)!=="\\"){q[1]=(q[1]||"").replace(/\\/g,"");m=n.find[t](q,h,l);if(m!=null){g=g.replace(n.match[t],"");break}}}}m||(m=h.getElementsByTagName("*"));return{set:m,expr:g}};k.filter=function(g,h,l,m){for(var q=g,p=[],v=h,t,y,S=h&&h[0]&&x(h[0]);g&&h.length;){for(var H in n.filter)if((t=n.leftMatch[H].exec(g))!=null&&t[2]){var M=n.filter[H],I,D;D=t[1];y=false;t.splice(1,1);if(D.substr(D.length-
1)!=="\\"){if(v===p)p=[];if(n.preFilter[H])if(t=n.preFilter[H](t,v,l,p,m,S)){if(t===true)continue}else y=I=true;if(t)for(var U=0;(D=v[U])!=null;U++)if(D){I=M(D,t,U,v);var Ha=m^!!I;if(l&&I!=null)if(Ha)y=true;else v[U]=false;else if(Ha){p.push(D);y=true}}if(I!==w){l||(v=p);g=g.replace(n.match[H],"");if(!y)return[];break}}}if(g===q)if(y==null)k.error(g);else break;q=g}return v};k.error=function(g){throw"Syntax error, unrecognized expression: "+g;};var n=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\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\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(g){return g.getAttribute("href")}},relative:{"+":function(g,h){var l=typeof h==="string",m=l&&!/\W/.test(h);l=l&&!m;if(m)h=h.toLowerCase();m=0;for(var q=g.length,p;m<q;m++)if(p=g[m]){for(;(p=p.previousSibling)&&p.nodeType!==1;);g[m]=l||p&&p.nodeName.toLowerCase()===h?p||false:p===h}l&&k.filter(h,g,true)},">":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m<q;m++){var p=g[m];if(p){l=p.parentNode;g[m]=l.nodeName.toLowerCase()===h?l:false}}}else{m=0;for(q=g.length;m<q;m++)if(p=g[m])g[m]=l?p.parentNode:p.parentNode===h;l&&k.filter(h,g,true)}},"":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("parentNode",h,m,g,p,l)},"~":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("previousSibling",h,m,g,p,l)}},find:{ID:function(g,h,l){if(typeof h.getElementById!=="undefined"&&!l)return(g=h.getElementById(g[1]))?[g]:[]},NAME:function(g,h){if(typeof h.getElementsByName!=="undefined"){var l=[];h=h.getElementsByName(g[1]);for(var m=0,q=h.length;m<q;m++)h[m].getAttribute("name")===g[1]&&l.push(h[m]);return l.length===0?null:l}},TAG:function(g,h){return h.getElementsByTagName(g[1])}},preFilter:{CLASS:function(g,h,l,m,q,p){g=" "+g[1].replace(/\\/g,"")+" ";if(p)return g;p=0;for(var v;(v=h[p])!=null;p++)if(v)if(q^(v.className&&(" "+v.className+" ").replace(/[\t\n]/g," ").indexOf(g)>=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()},CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m,g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)},text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}},setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return h<l[3]-0},gt:function(g,h,l){return h>l[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h=h[3];l=0;for(m=h.length;l<m;l++)if(h[l]===g)return false;return true}else k.error("Syntax error, unrecognized expression: "+q)},CHILD:function(g,h){var l=h[1],m=g;switch(l){case"only":case"first":for(;m=m.previousSibling;)if(m.nodeType===1)return false;if(l==="first")return true;m=g;case"last":for(;m=m.nextSibling;)if(m.nodeType===1)return false;return true;case"nth":l=h[2];var q=h[3];if(l===1&&q===0)return true;h=h[0];var p=g.parentNode;if(p&&(p.sizcache!==h||!g.nodeIndex)){var v=0;for(m=p.firstChild;m;m=m.nextSibling)if(m.nodeType===1)m.nodeIndex=++v;p.sizcache=h}g=g.nodeIndex-q;return l===0?g===0:g%l===0&&g/l>=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m==="="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g,h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l<m;l++)h.push(g[l]);else for(l=0;g[l];l++)h.push(g[l]);return h}}var B;if(s.documentElement.compareDocumentPosition)B=function(g,h){if(!g.compareDocumentPosition||!h.compareDocumentPosition){if(g==h)i=true;return g.compareDocumentPosition?-1:1}g=g.compareDocumentPosition(h)&4?-1:g===h?0:1;if(g===0)i=true;return g};else if("sourceIndex"in s.documentElement)B=function(g,h){if(!g.sourceIndex||!h.sourceIndex){if(g==h)i=true;return g.sourceIndex?-1:1}g=g.sourceIndex-h.sourceIndex;if(g===0)i=true;return g};else if(s.createRange)B=function(g,h){if(!g.ownerDocument||!h.ownerDocument){if(g==h)i=true;return g.ownerDocument?-1:1}var l=g.ownerDocument.createRange(),m=h.ownerDocument.createRange();l.setStart(g,0);l.setEnd(g,0);m.setStart(h,0);m.setEnd(h,0);g=l.compareBoundaryPoints(Range.START_TO_END,m);if(g===0)i=true;return g};(function(){var g=s.createElement("div"),h="script"+(new Date).getTime();g.innerHTML="<a name='"+h+"'/>";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&&q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML="<a href='#'></a>";if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="<p class='TEST'></p>";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}();(function(){var g=s.createElement("div");g.innerHTML="<div class='test e'></div><div class='test'></div>";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}:function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q<p;q++)k(g,h[q],l);return k.filter(m,l)};c.find=k;c.expr=k.selectors;c.expr[":"]=c.expr.filters;c.unique=k.uniqueSort;c.text=a;c.isXMLDoc=x;c.contains=E})();var eb=/Until$/,fb=/^(?:parents|prevUntil|prevAll)/,gb=/,/;R=Array.prototype.slice;var Ia=function(a,b,d){if(c.isFunction(b))return c.grep(a,function(e,j){return!!b.call(e,j,e)===d});else if(b.nodeType)return c.grep(a,function(e){return e===b===d});else if(typeof b==="string"){var f=c.grep(a,function(e){return e.nodeType===1});if(Ua.test(b))return c.filter(b,f,!d);else b=c.filter(b,f)}return c.grep(a,function(e){return c.inArray(e,b)>=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f<e;f++){d=b.length;c.find(a,this[f],b);if(f>0)for(var j=d;j<b.length;j++)for(var i=0;i<d;i++)if(b[i]===b[j]){b.splice(j--,1);break}}return b},has:function(a){var b=c(a);return this.filter(function(){for(var d=0,f=b.length;d<f;d++)if(c.contains(this,b[d]))return true})},not:function(a){return this.pushStack(Ia(this,a,false),"not",a)},filter:function(a){return this.pushStack(Ia(this,a,true),"filter",a)},is:function(a){return!!a&&c.filter(a,this).length>0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j={},i;if(f&&a.length){e=0;for(var o=a.length;e<o;e++){i=a[e];j[i]||(j[i]=c.expr.match.POS.test(i)?c(i,b||this.context):i)}for(;f&&f.ownerDocument&&f!==b;){for(i in j){e=j[i];if(e.jquery?e.index(f)>-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a==="string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode",d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType===1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/<tbody/i,jb=/<|&#?\w+;/,ta=/<script|<object|<embed|<option|<style/i,ua=/checked\s*(?:[^=]|=\s*.checked.)/i,Ma=function(a,b,d){return hb.test(d)?a:b+"></"+d+">"},F={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div<div>","</div>"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d=c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this},wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild);return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja,""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b<d;b++)if(this[b].nodeType===1){c.cleanData(this[b].getElementsByTagName("*"));this[b].innerHTML=a}}catch(f){this.empty().append(a)}}else c.isFunction(a)?this.each(function(e){var j=c(this),i=j.html();j.empty().append(function(){return a.call(this,e,i)})}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(c.isFunction(a))return this.each(function(b){var d=c(this),f=d.html();d.replaceWith(a.call(this,b,f))});if(typeof a!=="string")a=c(a).detach();return this.each(function(){var b=this.nextSibling,d=this.parentNode;c(this).remove();b?c(b).before(a):c(d).append(a)})}else return this.pushStack(c(c.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,true)},domManip:function(a,b,d){function f(u){return c.nodeName(u,"table")?u.getElementsByTagName("tbody")[0]||u.appendChild(u.ownerDocument.createElement("tbody")):u}var e,j,i=a[0],o=[],k;if(!c.support.checkClone&&arguments.length===3&&typeof i==="string"&&ua.test(i))return this.each(function(){c(this).domManip(a,b,d,true)});if(c.isFunction(i))return this.each(function(u){var z=c(this);a[0]=i.call(this,u,b?z.html():w);z.domManip(a,b,d)});if(this[0]){e=i&&i.parentNode;e=c.support.parentNode&&e&&e.nodeType===11&&e.childNodes.length===this.length?{fragment:e}:sa(a,this,o);k=e.fragment;if(j=k.childNodes.length===1?(k=k.firstChild):k.firstChild){b=b&&c.nodeName(j,"tr");for(var n=0,r=this.length;n<r;n++)d.call(b?f(this[n],j):this[n],n>0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]);return this}else{e=0;for(var j=d.length;e<j;e++){var i=(e>0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["",""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]==="<table>"&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e=c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]?c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja=function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter=Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a,"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f=a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b=a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=/<script(.|\s)*?\/script>/gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!=="string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("<div />").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});return this},serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&&e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)?"&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache===false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B=false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since",c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E||d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x);g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status===1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b==="json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional;if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");this[a].style.display=d||"";if(c.css(this[a],"display")==="none"){d=this[a].nodeName;var f;if(la[d])f=la[d];else{var e=c("<"+d+" />").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a<b;a++)this[a].style.display=c.data(this[a],"olddisplay")||"";return this}},hide:function(a,b){if(a||a===0)return this.animate(K("hide",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");!d&&d!=="none"&&c.data(this[a],"olddisplay",c.css(this[a],"display"))}a=0;for(b=this.length;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b){var d=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||d?this.each(function(){var f=d?a:c(this).is(":hidden");c(this)[f?"show":"hide"]()}):this.animate(K("toggle",3),a,b);return this},fadeTo:function(a,b,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,d)},animate:function(a,b,d,f){var e=c.speed(b,d,f);if(c.isEmptyObject(a))return this.each(e.complete);return this[e.queue===false?"each":"queue"](function(){var j=c.extend({},e),i,o=this.nodeType===1&&c(this).is(":hidden"),k=this;for(i in a){var n=i.replace(ia,ja);if(i!==n){a[n]=a[i];delete a[i];i=n}if(a[i]==="hide"&&o||a[i]==="show"&&!o)return j.complete.call(this);if((i==="height"||i==="width")&&this.style){j.display=c.css(this,"display");j.overflow=this.style.overflow}if(c.isArray(a[i])){(j.specialEasing=j.specialEasing||{})[i]=a[i][1];a[i]=a[i][0]}}if(j.overflow!=null)this.style.overflow="hidden";j.curAnim=c.extend({},a);c.each(a,function(r,u){var z=new c.fx(k,j,r);if(Ab.test(u))z[u==="toggle"?o?"show":"hide":u](a);else{var C=Bb.exec(u),B=z.cur(true)||0;if(C){u=parseFloat(C[2]);var E=C[3]||"px";if(E!=="px"){k.style[r]=(u||1)+E;B=(u||1)/z.cur(true)*B;k.style[r]=B+E}if(C[1])u=(C[1]==="-="?-1:1)*u+B;z.custom(B,u,E)}else z.custom(B,u,"")}});return true})},stop:function(a,b){var d=c.timers;a&&this.queue([]);this.each(function(){for(var f=d.length-1;f>=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration==="number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]||c.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start;this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J(),d=true;if(a||b>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem,e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||c.fx.stop()},stop:function(){clearInterval(W);W=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){c.style(a.elem,"opacity",a.now)},_default:function(a){if(a.elem.style&&a.elem.style[a.prop]!=null)a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit;else a.elem[a.prop]=a.now}}});if(c.expr&&c.expr.filters)c.expr.filters.animated=function(a){return c.grep(c.timers,function(b){return a===b.elem}).length};c.fn.offset="getBoundingClientRect"in s.documentElement?function(a){var b=this[0];if(a)return this.each(function(e){c.offset.setOffset(this,a,e)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);var d=b.getBoundingClientRect(),f=b.ownerDocument;b=f.body;f=f.documentElement;return{top:d.top+(self.pageYOffset||c.support.boxModel&&f.scrollTop||b.scrollTop)-(f.clientTop||b.clientTop||0),left:d.left+(self.pageXOffset||c.support.boxModel&&f.scrollLeft||b.scrollLeft)-(f.clientLeft||b.clientLeft||0)}}:function(a){var b=this[0];if(a)return this.each(function(r){c.offset.setOffset(this,a,r)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);c.offset.initialize();var d=b.offsetParent,f=b,e=b.ownerDocument,j,i=e.documentElement,o=e.body;f=(e=e.defaultView)?e.getComputedStyle(b,null):b.currentStyle;for(var k=b.offsetTop,n=b.offsetLeft;(b=b.parentNode)&&b!==o&&b!==i;){if(c.offset.supportsFixedPosition&&f.position==="fixed")break;j=e?e.getComputedStyle(b,null):b.currentStyle;k-=b.scrollTop;n-=b.scrollLeft;if(b===d){k+=b.offsetTop;n+=b.offsetLeft;if(c.offset.doesNotAddBorder&&!(c.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(b.nodeName))){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=d;d=b.offsetParent}if(c.offset.subtractsBorderForOverflowNotVisible&&j.overflow!=="visible"){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=j}if(f.position==="relative"||f.position==="static"){k+=o.offsetTop;n+=o.offsetLeft}if(c.offset.supportsFixedPosition&&f.position==="fixed"){k+=Math.max(i.scrollTop,o.scrollTop);n+=Math.max(i.scrollLeft,o.scrollLeft)}return{top:k,left:n}};c.offset={initialize:function(){var a=s.body,b=s.createElement("div"),d,f,e,j=parseFloat(c.curCSS(a,"marginTop",true))||0;c.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});b.innerHTML="<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>";a.insertBefore(b,a.firstChild);d=b.firstChild;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;a.removeChild(b);c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a,d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top-
f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset":"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in
e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window);jQuery.noConflict();;(function($){$.fn.ajaxSubmit=function(options){if(typeof options=="function"){options={success:options}}options=$.extend({url:this.attr("action")||window.location.toString(),type:this.attr("method")||"GET"},options||{});var veto={};$.event.trigger("form.pre.serialize",[this,options,veto]);if(veto.veto){return this}var a=this.formToArray(options.semantic);if(options.data){for(var n in options.data){a.push({name:n,value:options.data[n]})}}if(options.beforeSubmit&&options.beforeSubmit(a,this,options)===false){return this}$.event.trigger("form.submit.validate",[a,this,options,veto]);if(veto.veto){return this}var q=$.param(a);if(options.type.toUpperCase()=="GET"){options.url+=(options.url.indexOf("?")>=0?"&":"?")+q;options.data=null}else{options.data=q}var $form=this,callbacks=[];if(options.resetForm){callbacks.push(function(){$form.resetForm()})}if(options.clearForm){callbacks.push(function(){$form.clearForm()})}if(!options.dataType&&options.target){var oldSuccess=options.success||function(){};callbacks.push(function(data){if(this.evalScripts){$(options.target).attr("innerHTML",data).evalScripts().each(oldSuccess,arguments)}else{$(options.target).html(data).each(oldSuccess,arguments)}})}else{if(options.success){callbacks.push(options.success)}}options.success=function(data,status){for(var i=0,max=callbacks.length;i<max;i++){callbacks[i](data,status,$form)}};var files=$("input:file",this).fieldValue();var found=false;for(var j=0;j<files.length;j++){if(files[j]){found=true}}if(options.iframe||found){if($.browser.safari&&options.closeKeepAlive){$.get(options.closeKeepAlive,fileUpload)}else{fileUpload()}}else{$.ajax(options)}$.event.trigger("form.submit.notify",[this,options]);return this;function fileUpload(){var form=$form[0];var opts=$.extend({},$.ajaxSettings,options);var id="jqFormIO"+$.fn.ajaxSubmit.counter++;var $io=$('<iframe id="'+id+'" name="'+id+'" />');var io=$io[0];var op8=$.browser.opera&&window.opera.version()<9;if($.browser.msie||op8){io.src='javascript:false;document.write("");'}$io.css({position:"absolute",top:"-1000px",left:"-1000px"});var xhr={responseText:null,responseXML:null,status:0,statusText:"n/a",getAllResponseHeaders:function(){},getResponseHeader:function(){},setRequestHeader:function(){}};var g=opts.global;if(g&&!$.active++){$.event.trigger("ajaxStart")}if(g){$.event.trigger("ajaxSend",[xhr,opts])}var cbInvoked=0;var timedOut=0;setTimeout(function(){var encAttr=form.encoding?"encoding":"enctype";var t=$form.attr("target");$form.attr({target:id,method:"POST",action:opts.url});form[encAttr]="multipart/form-data";if(opts.timeout){setTimeout(function(){timedOut=true;cb()},opts.timeout)}$io.appendTo("body");io.attachEvent?io.attachEvent("onload",cb):io.addEventListener("load",cb,false);form.submit();$form.attr("target",t)},10);function cb(){if(cbInvoked++){return}io.detachEvent?io.detachEvent("onload",cb):io.removeEventListener("load",cb,false);var ok=true;try{if(timedOut){throw"timeout"}var data,doc;doc=io.contentWindow?io.contentWindow.document:io.contentDocument?io.contentDocument:io.document;xhr.responseText=doc.body?doc.body.innerHTML:null;xhr.responseXML=doc.XMLDocument?doc.XMLDocument:doc;if(opts.dataType=="json"||opts.dataType=="script"){var ta=doc.getElementsByTagName("textarea")[0];data=ta?ta.value:xhr.responseText;if(opts.dataType=="json"){eval("data = "+data)}else{$.globalEval(data)}}else{if(opts.dataType=="xml"){data=xhr.responseXML;if(!data&&xhr.responseText!=null){data=toXml(xhr.responseText)}}else{data=xhr.responseText}}}catch(e){ok=false;$.handleError(opts,xhr,"error",e)}if(ok){opts.success(data,"success");if(g){$.event.trigger("ajaxSuccess",[xhr,opts])}}if(g){$.event.trigger("ajaxComplete",[xhr,opts])}if(g&&!--$.active){$.event.trigger("ajaxStop")}if(opts.complete){opts.complete(xhr,ok?"success":"error")}setTimeout(function(){$io.remove();xhr.responseXML=null},100)}function toXml(s,doc){if(window.ActiveXObject){doc=new ActiveXObject("Microsoft.XMLDOM");doc.async="false";doc.loadXML(s)}else{doc=(new DOMParser()).parseFromString(s,"text/xml")}return(doc&&doc.documentElement&&doc.documentElement.tagName!="parsererror")?doc:null}}};$.fn.ajaxSubmit.counter=0;$.fn.ajaxForm=function(options){return this.ajaxFormUnbind().submit(submitHandler).each(function(){this.formPluginId=$.fn.ajaxForm.counter++;$.fn.ajaxForm.optionHash[this.formPluginId]=options;$(":submit,input:image",this).click(clickHandler)})};$.fn.ajaxForm.counter=1;$.fn.ajaxForm.optionHash={};function clickHandler(e){var $form=this.form;$form.clk=this;if(this.type=="image"){if(e.offsetX!=undefined){$form.clk_x=e.offsetX;$form.clk_y=e.offsetY}else{if(typeof $.fn.offset=="function"){var offset=$(this).offset();$form.clk_x=e.pageX-offset.left;$form.clk_y=e.pageY-offset.top}else{$form.clk_x=e.pageX-this.offsetLeft;$form.clk_y=e.pageY-this.offsetTop}}}setTimeout(function(){$form.clk=$form.clk_x=$form.clk_y=null},10)}function submitHandler(){var id=this.formPluginId;var options=$.fn.ajaxForm.optionHash[id];$(this).ajaxSubmit(options);return false}$.fn.ajaxFormUnbind=function(){this.unbind("submit",submitHandler);return this.each(function(){$(":submit,input:image",this).unbind("click",clickHandler)})};$.fn.formToArray=function(semantic){var a=[];if(this.length==0){return a}var form=this[0];var els=semantic?form.getElementsByTagName("*"):form.elements;if(!els){return a}for(var i=0,max=els.length;i<max;i++){var el=els[i];var n=el.name;if(!n){continue}if(semantic&&form.clk&&el.type=="image"){if(!el.disabled&&form.clk==el){a.push({name:n+".x",value:form.clk_x},{name:n+".y",value:form.clk_y})}continue}var v=$.fieldValue(el,true);if(v&&v.constructor==Array){for(var j=0,jmax=v.length;j<jmax;j++){a.push({name:n,value:v[j]})}}else{if(v!==null&&typeof v!="undefined"){a.push({name:n,value:v})}}}if(!semantic&&form.clk){var inputs=form.getElementsByTagName("input");for(var i=0,max=inputs.length;i<max;i++){var input=inputs[i];var n=input.name;if(n&&!input.disabled&&input.type=="image"&&form.clk==input){a.push({name:n+".x",value:form.clk_x},{name:n+".y",value:form.clk_y})}}}return a};$.fn.formSerialize=function(semantic){return $.param(this.formToArray(semantic))};$.fn.fieldSerialize=function(successful){var a=[];this.each(function(){var n=this.name;if(!n){return}var v=$.fieldValue(this,successful);if(v&&v.constructor==Array){for(var i=0,max=v.length;i<max;i++){a.push({name:n,value:v[i]})}}else{if(v!==null&&typeof v!="undefined"){a.push({name:this.name,value:v})}}});return $.param(a)};$.fn.fieldValue=function(successful){for(var val=[],i=0,max=this.length;i<max;i++){var el=this[i];var v=$.fieldValue(el,successful);if(v===null||typeof v=="undefined"||(v.constructor==Array&&!v.length)){continue}v.constructor==Array?$.merge(val,v):val.push(v)}return val};$.fieldValue=function(el,successful){var n=el.name,t=el.type,tag=el.tagName.toLowerCase();if(typeof successful=="undefined"){successful=true}if(successful&&(!n||el.disabled||t=="reset"||t=="button"||(t=="checkbox"||t=="radio")&&!el.checked||(t=="submit"||t=="image")&&el.form&&el.form.clk!=el||tag=="select"&&el.selectedIndex==-1)){return null}if(tag=="select"){var index=el.selectedIndex;if(index<0){return null}var a=[],ops=el.options;var one=(t=="select-one");var max=(one?index+1:ops.length);for(var i=(one?index:0);i<max;i++){var op=ops[i];if(op.selected){var v=$.browser.msie&&!(op.attributes.value.specified)?op.text:op.value;if(one){return v}a.push(v)}}return a}return el.value};$.fn.clearForm=function(){return this.each(function(){$("input,select,textarea",this).clearFields()})};$.fn.clearFields=$.fn.clearInputs=function(){return this.each(function(){var t=this.type,tag=this.tagName.toLowerCase();if(t=="text"||t=="password"||tag=="textarea"){this.value=""}else{if(t=="checkbox"||t=="radio"){this.checked=false}else{if(tag=="select"){this.selectedIndex=-1}}}})};$.fn.resetForm=function(){return this.each(function(){if(typeof this.reset=="function"||(typeof this.reset=="object"&&!this.reset.nodeType)){this.reset()}})};$.fn.enable=function(b){if(b==undefined){b=true}return this.each(function(){this.disabled=!b})};$.fn.select=function(select){if(select==undefined){select=true}return this.each(function(){var t=this.type;if(t=="checkbox"||t=="radio"){this.checked=select}else{if(this.tagName.toLowerCase()=="option"){var $sel=$(this).parent("select");if(select&&$sel[0]&&$sel[0].type=="select-one"){$sel.find("option").select(false)}this.selected=select}}})}})(jQuery);;shutterOnload=function(){shutterReloaded.init('sh');}
if(typeof shutterOnload=='function'){if('undefined'!=typeof jQuery)jQuery(document).ready(function(){shutterOnload();});else if(typeof window.onload!='function')window.onload=shutterOnload;else{oldonld=window.onload;window.onload=function(){if(oldonld){oldonld();};shutterOnload();}};}
shutterReloaded={I:function(a){return document.getElementById(a);},settings:function(){var t=this,s=shutterSettings;t.imageCount=s.imageCount||0;t.msgLoading=s.msgLoading||'L O A D I N G';t.msgClose=s.msgClose||'Click to Close';},init:function(a){var t=this,L,T,ext,i,m,setid,inset,shfile,shMenuPre,k,img;shutterLinks={},shutterSets={};if('object'!=typeof shutterSettings)shutterSettings={};for(i=0;i<document.links.length;i++){L=document.links[i];ext=(L.href.indexOf('?')==-1)?L.href.slice(-4).toLowerCase():L.href.substring(0,L.href.indexOf('?')).slice(-4).toLowerCase();if(ext!='.jpg'&&ext!='.png'&&ext!='.gif'&&ext!='jpeg')continue;if(a=='sh'&&L.className.toLowerCase().indexOf('shutter')==-1)continue;if(a=='lb'&&L.rel.toLowerCase().indexOf('lightbox')==-1)continue;if(L.className.toLowerCase().indexOf('shutterset')!=-1)
setid=L.className.replace(/\s/g,'_');else if(L.rel.toLowerCase().indexOf('lightbox[')!=-1)
setid=L.rel.replace(/\s/g,'_');else setid=0,inset=-1;if(setid){if(!shutterSets[setid])shutterSets[setid]=[];inset=shutterSets[setid].push(i);}
shfile=L.href.slice(L.href.lastIndexOf('/')+1);T=(L.title&&L.title!=shfile)?L.title:'';shutterLinks[i]={link:L.href,num:inset,set:setid,title:T}
L.onclick=new Function('shutterReloaded.make("'+i+'");return false;');}
t.settings();},make:function(ln,fs){var t=this,prev,next,prevlink='',nextlink='',previmg,nextimg,D,S,W,fsarg=-1,imgNum,NavBar;if(!t.Top){if(typeof window.pageYOffset!='undefined')t.Top=window.pageYOffset;else t.Top=(document.documentElement.scrollTop>0)?document.documentElement.scrollTop:document.body.scrollTop;}
if(typeof t.pgHeight=='undefined')
t.pgHeight=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight);if(fs)t.FS=(fs>0)?1:0;else t.FS=shutterSettings.FS||0;if(t.resizing)t.resizing=null;window.onresize=new Function('shutterReloaded.resize("'+ln+'");');document.documentElement.style.overflowX='hidden';if(!t.VP){t._viewPort();t.VP=true;}
if(!(S=t.I('shShutter'))){S=document.createElement('div');S.setAttribute('id','shShutter');document.getElementsByTagName('body')[0].appendChild(S);t.hideTags();}
if(!(D=t.I('shDisplay'))){D=document.createElement('div');D.setAttribute('id','shDisplay');D.style.top=t.Top+'px';document.getElementsByTagName('body')[0].appendChild(D);}
S.style.height=t.pgHeight+'px';var dv=t.textBtns?' | ':'';if(shutterLinks[ln].num>1){prev=shutterSets[shutterLinks[ln].set][shutterLinks[ln].num-2];prevlink='<a href="#" onclick="shutterReloaded.make('+prev+');return false">&lt;&lt;</a>'+dv;previmg=new Image();previmg.src=shutterLinks[prev].link;}else{prevlink='';}
if(shutterLinks[ln].num!=-1&&shutterLinks[ln].num<(shutterSets[shutterLinks[ln].set].length)){next=shutterSets[shutterLinks[ln].set][shutterLinks[ln].num];nextlink='<a href="#" onclick="shutterReloaded.make('+next+');return false">&gt;&gt;</a>'+dv;nextimg=new Image();nextimg.src=shutterLinks[next].link;}else{nextlink='';}
imgNum=((shutterLinks[ln].num>0)&&t.imageCount)?'<div id="shCount">&nbsp;(&nbsp;'+shutterLinks[ln].num+'&nbsp;/&nbsp;'+shutterSets[shutterLinks[ln].set].length+'&nbsp;)&nbsp;</div>':'';NavBar='<div id="shTitle"><div id="shPrev">'+prevlink+'</div><div id="shNext">'+nextlink+'</div><div id="shName">'+shutterLinks[ln].title+'</div>'+imgNum+'</div>';D.innerHTML='<div id="shWrap"><img src="" id="shTopImg" title="'+t.msgClose+'" onload="shutterReloaded.showImg();" onclick="shutterReloaded.hideShutter();" />'+NavBar+'</div>';document.getElementById('shTopImg').src=shutterLinks[ln].link;window.setTimeout(function(){shutterReloaded.loading();},2000);},loading:function(){var t=this,S,WB,W;if((W=t.I('shWrap'))&&W.style.visibility=='visible')return;if(!(S=t.I('shShutter')))return;if(t.I('shWaitBar'))return;WB=document.createElement('div');WB.setAttribute('id','shWaitBar');WB.style.top=t.Top+'px';WB.innerHTML=t.msgLoading;S.appendChild(WB);},hideShutter:function(){var t=this,D,S;if(D=t.I('shDisplay'))D.parentNode.removeChild(D);if(S=t.I('shShutter'))S.parentNode.removeChild(S);t.hideTags(true);window.scrollTo(0,t.Top);window.onresize=t.FS=t.Top=t.VP=null;document.documentElement.style.overflowX='';},resize:function(ln){var t=this;if(t.resizing)return;if(!t.I('shShutter'))return;var W=t.I('shWrap');if(W)W.style.visibility='hidden';window.setTimeout(function(){shutterReloaded.resizing=null},500);window.setTimeout(new Function('shutterReloaded.VP = null;shutterReloaded.make("'+ln+'");'),100);t.resizing=true;},_viewPort:function(){var t=this;var wiH=window.innerHeight?window.innerHeight:0;var dbH=document.body.clientHeight?document.body.clientHeight:0;var deH=document.documentElement?document.documentElement.clientHeight:0;if(wiH>0){t.wHeight=((wiH-dbH)>1&&(wiH-dbH)<30)?dbH:wiH;t.wHeight=((t.wHeight-deH)>1&&(t.wHeight-deH)<30)?deH:t.wHeight;}else t.wHeight=(deH>0)?deH:dbH;var deW=document.documentElement?document.documentElement.clientWidth:0;var dbW=window.innerWidth?window.innerWidth:document.body.clientWidth;t.wWidth=(deW>1)?deW:dbW;},showImg:function(){var t=this,S=t.I('shShutter'),D=t.I('shDisplay'),TI=t.I('shTopImg'),T=t.I('shTitle'),NB=t.I('shNavBar'),W,WB,wHeight,wWidth,shHeight,maxHeight,itop,mtop,resized=0;if(!S)return;if((W=t.I('shWrap'))&&W.style.visibility=='visible')return;if(WB=t.I('shWaitBar'))WB.parentNode.removeChild(WB);S.style.width=D.style.width='';T.style.width=(TI.width-4)+'px';shHeight=t.wHeight-50;if(t.FS){if(TI.width>(t.wWidth-10))
S.style.width=D.style.width=TI.width+10+'px';document.documentElement.style.overflowX='';}else{window.scrollTo(0,t.Top);if(TI.height>shHeight){TI.width=TI.width*(shHeight/TI.height);TI.height=shHeight;resized=1;}
if(TI.width>(t.wWidth-16)){TI.height=TI.height*((t.wWidth-16)/TI.width);TI.width=t.wWidth-16;resized=1;}
T.style.width=(TI.width-4)+'px';}
maxHeight=t.Top+TI.height+10;if(maxHeight>t.pgHeight)S.style.height=maxHeight+'px';window.scrollTo(0,t.Top);itop=(shHeight-TI.height)*0.45;mtop=(itop>3)?Math.floor(itop):3;D.style.top=t.Top+mtop+'px';W.style.visibility='visible';},hideTags:function(arg){var sel=document.getElementsByTagName('select');var obj=document.getElementsByTagName('object');var emb=document.getElementsByTagName('embed');var ifr=document.getElementsByTagName('iframe');var vis=(arg)?'visible':'hidden';for(i=0;i<sel.length;i++)sel[i].style.visibility=vis;for(i=0;i<obj.length;i++)obj[i].style.visibility=vis;for(i=0;i<emb.length;i++)emb[i].style.visibility=vis;for(i=0;i<ifr.length;i++)ifr[i].style.visibility=vis;}};(function($){var ver="2.88";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,(!opts2.rev&&!opts.backwards));},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,(!opts.rev&&!opts.backwards));}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(jQuery);(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);;jQuery.fn.nggSlideshow=function(args){var defaults={id:1,width:320,height:240,fx:'fade',domain:'',timeout:5000};var s=jQuery.extend({},defaults,args);var obj=this.selector;var stack=[];var url=s.domain+'index.php?callback=json&api_key=true&format=json&method=gallery&id='+s.id;jQuery.getJSON(url,function(r){if(r.stat=="ok"){for(img in r.images){var photo=r.images[img];stack.push(decodeURI(photo['imageURL']));}
var i=1;while(stack.length&&i<=3){var img=new Image();img.src=stack.shift();jQuery(img).hide();jQuery(obj).append(imageResize(img,s.width,s.height));i++;if(i==3||stack.length==0)
startSlideshow();}}});function startSlideshow(){jQuery(obj+'-loader').empty().remove();jQuery(obj+' img:first').fadeIn(1000,function(){jQuery(obj).cycle({fx:s.fx,containerResize:1,fit:1,timeout:s.timeout,next:obj,before:jCycle_onBefore});});}
function imageResize(img,maxWidth,maxHeight){if(!img.complete)
jQuery(img).bind('load',function(){imageResize(img,maxWidth,maxHeight)});if(img.height==0||img.width==0)
return img;var height=(img.height<maxHeight)?img.height:maxHeight;var width=(img.width<maxWidth)?img.width:maxWidth;if(img.height>=img.width)
width=Math.floor(Math.ceil(img.width/img.height*maxHeight));else
height=Math.floor(Math.ceil(img.height/img.width*maxWidth));jQuery(img).css({'height':height,'width':width});return img;};function jCycle_onBefore(curr,next,opts){if(opts.addSlide)
if(stack.length){var img=new Image();img.src=stack.shift();jQuery(img).bind('load',function(){opts.addSlide(imageResize(this,s.width,s.height));});}};};;function faq_showQuestion(id){if(document.getElementById('faq-question-'+id).style.display=="none"){document.getElementById('faq-question-'+id).style.display="block";}else{document.getElementById('faq-question-'+id).style.display="none";}};if(_typeface_js&&_typeface_js.loadFace)_typeface_js.loadFace({"glyphs":{"S":{"x_min":74.640625,"x_max":640,"ha":715,"o":"m 526 845 q 471 870 504 858 q 376 882 438 882 q 309 872 341 882 q 253 845 277 863 q 214 799 228 826 q 200 734 200 772 q 232 644 200 679 q 314 583 265 609 q 419 532 363 557 q 525 474 476 508 q 607 389 574 440 q 640 258 640 337 q 616 144 640 194 q 553 57 593 93 q 458 3 513 22 q 340 -15 402 -15 q 240 -7 283 -15 q 165 12 197 0 q 111 36 133 23 q 74 59 89 48 l 74 277 l 110 277 l 166 116 q 227 91 189 101 q 330 82 266 82 q 394 91 361 82 q 454 118 427 100 q 499 168 481 137 q 517 241 517 198 q 484 337 517 300 q 403 401 451 373 q 297 452 355 428 q 192 511 240 476 q 111 597 144 546 q 79 730 79 648 q 103 837 79 791 q 168 914 127 883 q 259 960 208 945 q 367 976 311 976 q 464 969 423 976 q 534 953 504 963 q 584 932 563 944 q 621 909 605 920 l 621 689 l 586 689 l 526 845 "},"¦":{"x_min":244,"x_max":350,"ha":592,"o":"m 244 -124 l 244 223 l 350 223 l 350 -124 l 244 -124 m 246 570 l 246 917 l 349 917 l 349 570 l 246 570 "},"/":{"x_min":2.71875,"x_max":519.9375,"ha":520,"o":"m 99 -36 l 2 -8 l 423 997 l 519 969 l 99 -36 "},"y":{"x_min":-14,"x_max":744,"ha":724,"o":"m 195 637 l 348 238 q 358 203 352 223 q 370 164 364 182 q 379 130 375 145 q 385 113 383 116 q 388 129 385 114 q 397 163 391 144 q 408 203 402 182 q 421 239 414 224 l 551 627 l 458 675 l 458 712 l 744 712 l 744 675 l 660 627 l 522 228 q 420 -51 458 52 q 368 -187 382 -154 q 304 -294 341 -257 q 256 -333 281 -319 q 205 -353 232 -347 q 148 -360 179 -360 q 80 -360 116 -360 l 80 -275 q 157 -275 120 -275 q 220 -248 194 -275 q 253 -194 237 -230 q 282 -121 269 -159 q 304 -50 295 -83 q 320 1 314 -17 l 73 637 l -14 675 l -14 712 l 295 712 l 295 675 l 195 637 "},"≈":{"x_min":38.109375,"x_max":758.140625,"ha":795,"o":"m 758 577 q 742 501 754 538 q 709 436 730 464 q 656 391 687 408 q 581 374 624 374 q 485 389 534 374 q 387 423 435 404 q 294 456 338 441 q 212 472 249 472 q 142 438 168 472 q 108 366 115 405 l 39 366 q 55 440 43 403 q 87 505 66 476 q 140 552 108 534 q 215 571 171 571 q 309 555 261 571 q 405 522 357 540 q 499 488 453 503 q 588 473 545 473 q 658 504 634 473 q 690 577 681 535 l 758 577 l 758 577 m 756 325 q 741 250 752 286 q 708 185 729 214 q 656 140 687 157 q 581 124 624 124 q 485 139 534 124 q 386 173 435 154 q 292 208 337 192 q 210 224 247 224 q 140 190 167 224 q 108 116 114 156 l 38 116 q 53 190 42 153 q 86 255 65 226 q 138 302 107 284 q 213 321 170 321 q 309 305 261 321 q 405 271 357 290 q 498 238 453 253 q 586 223 544 223 q 656 253 632 223 q 688 325 680 283 l 756 325 l 756 325 "},"Ž":{"x_min":40.765625,"x_max":807.078125,"ha":757,"o":"m 498 1043 l 394 1043 l 277 1258 l 345 1280 l 449 1123 l 562 1279 l 627 1258 l 498 1043 m 117 961 l 807 961 l 322 216 q 294 176 310 196 q 265 139 278 156 q 234 101 250 120 l 296 101 q 347 101 322 101 q 387 101 372 101 l 643 101 l 733 275 l 770 275 l 745 0 l 40 0 l 528 751 q 557 795 543 774 q 583 830 572 815 q 609 861 597 848 q 559 861 583 861 q 510 861 536 861 q 460 861 484 861 l 219 861 l 155 686 l 117 686 l 117 961 "},"Á":{"x_min":-37,"x_max":993,"ha":935,"o":"m 496 1023 l 429 1052 l 569 1278 l 678 1224 l 496 1023 m 69 88 l 433 960 l 545 960 l 885 90 l 993 36 l 993 0 l 646 0 l 646 36 l 754 90 l 670 319 l 282 319 l 281 316 l 198 90 l 307 36 l 307 0 l -37 0 l -37 36 l 69 88 m 525 696 q 510 734 518 712 q 496 780 503 757 q 485 821 489 803 q 479 842 480 838 q 474 826 479 841 q 463 790 469 812 q 448 743 457 768 q 432 698 440 718 l 322 419 l 631 419 l 525 696 "},"g":{"x_min":30,"x_max":651,"ha":651,"o":"m 202 51 q 157 61 183 56 q 107 77 132 67 q 66 104 83 88 q 49 146 49 120 q 63 193 49 171 q 99 233 78 215 q 143 264 119 250 q 182 288 166 278 q 121 364 144 318 q 98 474 98 410 q 116 572 98 528 q 167 649 134 617 q 243 698 200 680 q 335 717 286 717 q 381 713 355 717 q 435 700 406 710 l 651 721 l 651 674 l 537 621 q 570 563 556 597 q 584 476 584 529 q 565 378 584 422 q 515 303 547 335 q 438 255 482 272 q 344 238 394 238 q 281 244 309 238 q 232 258 252 251 q 215 247 225 254 q 196 230 205 239 q 179 209 186 221 q 173 183 173 197 q 181 159 173 168 q 210 144 189 150 q 269 131 232 138 q 367 115 307 125 q 464 94 416 107 q 549 58 511 82 q 612 0 587 35 q 637 -92 637 -36 q 607 -216 637 -164 q 531 -299 578 -267 q 427 -346 484 -331 q 315 -362 370 -362 q 221 -355 270 -362 q 129 -327 171 -349 q 58 -265 87 -306 q 30 -153 30 -224 q 51 -72 30 -107 q 101 -11 72 -36 q 159 29 130 13 q 202 51 187 45 m 521 -114 q 489 -37 512 -64 q 435 2 466 -10 q 364 22 404 15 q 284 38 325 28 q 232 6 258 24 q 185 -33 206 -10 q 151 -84 164 -56 q 139 -150 139 -113 q 154 -218 139 -192 q 194 -259 170 -245 q 248 -279 219 -274 q 307 -284 277 -284 q 379 -274 341 -284 q 449 -244 417 -264 q 501 -192 481 -224 q 521 -114 521 -160 m 475 477 q 468 530 475 501 q 447 582 462 558 q 407 622 432 606 q 341 638 382 638 q 283 624 308 638 q 241 588 258 611 q 216 535 224 565 q 208 470 208 504 q 216 413 208 440 q 242 363 225 385 q 283 329 259 342 q 338 316 306 316 q 442 361 409 316 q 475 477 475 407 "},"²":{"x_min":33.96875,"x_max":1002,"ha":1016,"o":"m 154 86 l 154 873 l 33 925 l 33 960 l 287 960 l 687 316 q 720 259 703 288 q 748 203 736 229 q 769 159 760 177 q 776 137 777 141 q 776 163 776 138 q 776 221 776 188 q 776 287 776 254 q 776 338 776 320 l 776 873 l 656 925 l 656 961 l 1002 961 l 1002 925 l 882 873 l 882 -231 l 346 644 q 314 702 330 672 q 285 757 298 732 q 264 800 272 782 q 254 821 256 818 q 256 802 256 821 q 256 758 256 783 q 256 706 256 733 q 256 662 256 679 l 256 87 l 378 36 l 378 0 l 34 0 l 34 36 l 154 86 "},"–":{"x_min":0,"x_max":681,"ha":681,"o":"m 0 310 l 0 396 l 681 396 l 681 310 l 0 310 "},"ë":{"x_min":48,"x_max":620,"ha":674,"o":"m 158 347 q 166 243 158 291 q 196 157 175 194 q 254 99 217 120 q 343 78 290 78 q 452 99 400 78 q 543 161 504 120 l 603 101 q 490 16 550 47 q 352 -15 430 -15 q 212 13 269 -15 q 117 90 154 41 q 64 204 80 139 q 48 344 48 269 q 67 477 48 412 q 124 593 86 541 q 216 675 162 644 q 343 707 271 707 q 470 680 418 707 q 556 610 523 654 q 605 510 590 566 q 620 395 620 454 l 620 347 l 158 347 m 515 429 q 504 501 515 467 q 472 560 494 535 q 416 600 449 585 q 339 615 383 615 q 265 599 296 615 q 215 557 235 583 q 183 497 194 531 q 164 429 171 463 l 515 429 l 515 429 m 263 869 q 178 792 263 792 q 93 866 93 792 q 178 943 93 943 q 263 869 263 943 m 580 866 q 495 789 580 789 q 410 863 410 789 q 495 940 410 940 q 580 866 580 940 "},"ƒ":{"x_min":-78.9375,"x_max":794.890625,"ha":795,"o":"m 774 968 l 759 968 q 745 969 752 968 q 730 970 737 970 q 649 950 687 970 q 580 897 611 931 q 527 817 549 863 q 494 721 504 772 l 455 538 l 626 538 l 605 442 l 436 442 l 341 -2 q 291 -149 323 -82 q 211 -264 258 -216 q 104 -338 164 -312 q -31 -365 43 -365 l -62 -365 q -78 -363 -70 -365 l -58 -274 q -43 -276 -50 -276 l -14 -276 q 66 -256 27 -276 q 135 -203 104 -237 q 188 -123 166 -169 q 221 -27 210 -78 l 321 442 l 191 442 l 213 496 l 341 538 l 374 696 q 423 843 390 776 q 502 956 455 909 q 611 1030 549 1004 q 747 1057 672 1057 q 762 1057 754 1057 q 778 1057 771 1057 l 794 1057 l 774 968 "},"Î":{"x_min":34,"x_max":395,"ha":433,"o":"m 321 1021 l 217 1178 l 104 1022 l 39 1043 l 168 1258 l 272 1258 l 389 1043 l 321 1021 m 275 87 l 395 36 l 395 0 l 34 0 l 34 36 l 155 87 l 155 873 l 34 923 l 34 960 l 395 960 l 395 923 l 275 873 l 275 87 "},"e":{"x_min":48,"x_max":620,"ha":674,"o":"m 158 347 q 166 243 158 291 q 196 157 175 194 q 254 99 217 120 q 343 78 290 78 q 452 99 400 78 q 543 161 504 120 l 603 101 q 490 16 550 47 q 353 -15 430 -15 q 212 13 269 -15 q 117 90 154 41 q 64 204 80 139 q 48 344 48 269 q 67 477 48 412 q 124 593 86 541 q 216 675 162 644 q 343 707 271 707 q 470 680 418 707 q 556 610 523 654 q 605 510 590 566 q 620 395 620 454 l 620 347 l 158 347 m 515 429 q 504 501 515 467 q 472 560 494 535 q 416 600 449 585 q 339 615 383 615 q 265 599 296 615 q 215 557 235 583 q 183 497 194 531 q 164 429 171 463 l 515 429 l 515 429 "},"Ã":{"x_min":-37,"x_max":993,"ha":935,"o":"m 708 1167 q 688 1114 700 1139 q 661 1069 677 1089 q 622 1038 644 1050 q 568 1027 599 1027 q 506 1036 530 1027 q 461 1059 481 1046 q 425 1081 442 1071 q 384 1091 408 1091 q 338 1067 357 1091 q 315 1018 319 1043 l 248 1035 q 266 1086 255 1061 q 295 1131 278 1111 q 335 1162 312 1150 q 389 1174 358 1174 q 453 1164 427 1174 q 500 1142 480 1154 q 538 1119 521 1129 q 575 1110 556 1110 q 620 1130 605 1110 q 646 1183 636 1151 l 708 1167 l 708 1167 m 69 88 l 433 960 l 545 960 l 885 90 l 993 36 l 993 0 l 646 0 l 646 36 l 754 90 l 670 319 l 282 319 l 281 316 l 198 90 l 307 36 l 307 0 l -37 0 l -37 36 l 69 88 m 525 696 q 510 734 518 712 q 496 780 503 757 q 485 821 489 803 q 479 842 480 838 q 474 826 479 841 q 463 790 469 812 q 448 743 457 768 q 432 698 440 718 l 322 419 l 631 419 l 525 696 "},"J":{"x_min":-131,"x_max":376,"ha":383,"o":"m 258 -49 q 238 -181 258 -125 q 182 -273 218 -236 q 95 -329 146 -309 q -19 -349 44 -349 l -131 -349 l -131 -284 l -83 -284 q 27 -257 -21 -284 q 68 -228 48 -246 q 104 -184 89 -210 q 128 -123 118 -158 q 138 -41 138 -87 l 138 872 l 17 922 l 17 958 l 376 958 l 376 922 l 258 872 l 258 -49 "},"»":{"x_min":69.421875,"x_max":577.109375,"ha":626,"o":"m 353 109 l 300 141 l 462 380 l 314 605 l 367 637 l 577 380 l 353 109 m 122 109 l 69 141 l 231 380 l 83 605 l 136 637 l 345 380 l 122 109 "},"∆":{"x_min":17.6875,"x_max":901.0625,"ha":917,"o":"m 17 0 l 402 988 l 515 988 l 901 0 l 17 0 m 458 872 l 163 100 l 748 100 l 458 872 "},"©":{"x_min":88,"x_max":1068,"ha":1156,"o":"m 1068 481 q 1029 286 1068 376 q 924 129 990 196 q 769 23 858 62 q 578 -15 680 -15 q 382 21 471 -15 q 226 123 292 57 q 124 280 161 189 q 88 481 88 371 q 126 675 88 585 q 231 832 165 765 q 386 938 297 899 q 578 977 475 977 q 771 940 681 977 q 927 838 861 903 q 1030 681 993 772 q 1068 481 1068 589 m 993 482 q 961 651 993 572 q 874 787 930 729 q 743 879 818 846 q 578 913 667 913 q 412 879 488 913 q 281 787 337 846 q 194 651 225 729 q 163 482 163 572 q 194 312 163 392 q 280 175 225 233 q 412 83 335 117 q 578 49 488 49 q 744 83 667 49 q 875 175 820 117 q 961 312 930 233 q 993 482 993 392 m 790 600 l 755 600 l 709 712 q 650 738 681 730 q 588 746 619 746 q 501 722 538 746 q 441 661 464 698 q 406 575 418 623 q 395 479 395 528 q 407 390 395 435 q 446 310 420 346 q 509 253 471 275 q 596 231 547 231 q 674 249 640 231 q 740 300 709 268 l 800 246 q 711 177 764 205 q 580 149 657 149 q 436 181 493 149 q 345 263 378 214 q 298 370 312 312 q 285 479 285 428 q 306 607 285 544 q 366 718 327 669 q 460 795 406 766 q 583 825 515 825 q 632 822 607 825 q 682 813 656 820 q 734 793 708 806 q 790 757 761 780 l 790 600 "},"˘":{"x_min":-22,"x_max":391.71875,"ha":363,"o":"m 389 991 q 328 851 389 903 q 178 800 268 800 q 31 847 84 800 q -22 991 -22 894 l 39 999 q 88 910 48 937 q 183 883 129 883 q 278 907 240 883 q 327 999 316 931 l 391 991 l 389 991 "},"≥":{"x_min":54,"x_max":744,"ha":794,"o":"m 54 113 l 54 220 l 609 421 l 54 624 l 54 732 l 744 473 l 744 369 l 54 113 m 54 -42 l 54 58 l 744 58 l 744 -42 l 54 -42 "},"ò":{"x_min":48,"x_max":690.421875,"ha":795,"o":"m 410 804 l 222 1005 l 331 1059 l 476 833 l 410 804 m 690 346 q 668 207 690 272 q 606 92 646 141 q 506 14 565 43 q 373 -15 448 -15 q 231 12 293 -15 q 129 89 170 40 q 68 203 88 137 q 48 346 48 269 q 71 483 48 418 q 137 598 94 548 q 240 677 180 648 q 376 707 301 707 q 515 679 456 707 q 613 602 574 651 q 671 488 652 554 q 690 346 690 422 m 572 346 q 562 442 572 393 q 529 532 552 491 q 468 597 506 572 q 374 622 430 622 q 280 597 318 622 q 215 532 241 572 q 177 442 189 491 q 166 346 166 393 q 177 248 166 297 q 214 159 189 198 q 278 94 238 119 q 374 69 317 69 q 466 94 429 69 q 527 159 503 119 q 561 248 551 198 q 572 346 572 297 "},"^":{"x_min":73.0625,"x_max":722.3125,"ha":794,"o":"m 617 384 l 435 755 q 421 783 428 767 q 409 811 414 798 q 400 834 403 824 q 397 845 397 844 q 392 835 397 844 q 382 813 388 826 q 369 783 376 799 q 354 754 361 767 l 164 384 l 73 418 l 357 961 l 441 961 l 722 423 l 617 384 "},"«":{"x_min":49,"x_max":556.6875,"ha":626,"o":"m 394 365 l 543 140 l 490 108 l 280 365 l 503 636 l 556 604 l 394 365 m 163 365 l 311 140 l 258 108 l 49 365 l 272 636 l 325 604 l 163 365 "},"D":{"x_min":34,"x_max":935,"ha":989,"o":"m 34 969 l 431 969 q 635 944 543 969 q 794 866 728 920 q 898 728 861 813 q 935 523 935 644 q 895 303 935 399 q 784 138 856 206 q 615 35 713 70 q 400 0 517 0 q 217 0 313 0 q 34 0 121 0 l 34 37 l 155 88 l 155 881 l 34 932 l 34 969 m 810 515 q 780 683 810 615 q 698 792 751 751 q 569 853 645 834 q 400 872 494 872 q 360 872 382 872 q 319 872 338 872 l 275 872 l 275 93 q 336 93 299 93 q 396 93 373 93 q 567 120 491 93 q 697 200 643 147 q 780 332 751 253 q 810 515 810 411 "},"∙":{"x_min":112,"x_max":282,"ha":398,"o":"m 282 373 q 262 308 282 327 q 199 290 243 290 q 131 309 151 290 q 112 373 112 328 q 131 437 112 418 q 197 457 151 457 q 262 437 242 457 q 282 373 282 418 "},"ł":{"x_min":-41.046875,"x_max":424.171875,"ha":360,"o":"m -2 987 l 239 1044 l 239 641 l 240 642 l 384 722 l 424 647 l 239 545 l 239 87 l 367 36 l 367 0 l 5 0 l 5 36 l 125 87 l 125 481 l -1 412 l -41 488 l 125 579 l 125 917 l -2 955 l -2 987 "},"ÿ":{"x_min":-14,"x_max":744,"ha":662,"o":"m 195 637 l 347 238 q 358 203 352 223 q 369 164 364 182 q 379 130 375 145 q 385 113 383 116 q 388 129 385 114 q 397 163 391 144 q 408 203 402 182 q 421 239 415 224 l 552 627 l 458 675 l 458 712 l 744 712 l 744 675 l 661 627 l 522 228 q 420 -51 458 52 q 368 -187 382 -154 q 304 -294 341 -257 q 256 -333 281 -319 q 205 -353 232 -347 q 148 -360 179 -360 q 80 -360 116 -360 l 80 -275 q 157 -275 120 -275 q 220 -248 194 -275 q 253 -194 237 -230 q 282 -121 269 -159 q 304 -50 295 -83 q 320 1 313 -17 l 73 637 l -14 675 l -14 712 l 295 712 l 295 675 l 195 637 m 304 899 q 219 822 304 822 q 134 896 134 822 q 219 973 134 973 q 304 899 304 973 m 622 896 q 537 819 622 819 q 452 893 452 819 q 537 970 452 970 q 622 896 622 970 "},"Ł":{"x_min":6.640625,"x_max":678.15625,"ha":701,"o":"m 678 0 l 33 0 l 33 35 l 155 87 l 155 438 l 47 380 l 6 457 l 155 539 l 155 873 l 34 924 l 34 960 l 397 960 l 397 924 l 278 873 l 278 607 l 484 721 l 525 645 l 278 507 l 278 101 l 563 101 l 653 280 l 678 280 l 678 0 "},"í":{"x_min":34.0625,"x_max":388,"ha":364,"o":"m 178 802 l 111 831 l 251 1058 l 360 1004 l 178 802 m 34 667 l 275 724 l 275 87 l 388 36 l 388 0 l 42 0 l 42 36 l 162 87 l 162 598 l 34 636 l 34 667 "},"ˆ":{"x_min":8.171875,"x_max":357.96875,"ha":363,"o":"m 289 788 l 186 945 l 73 789 l 8 810 l 137 1026 l 240 1026 l 357 810 l 289 788 "},"w":{"x_min":-14,"x_max":1146,"ha":1126,"o":"m 191 633 l 305 247 q 317 198 312 222 q 325 156 321 175 q 331 124 329 137 q 334 108 334 111 q 337 124 334 111 q 345 157 340 137 q 357 200 350 177 q 372 247 364 223 l 516 711 l 630 711 l 769 251 q 783 196 777 223 q 793 150 789 169 q 803 105 799 125 q 805 118 803 105 q 811 151 807 130 q 823 199 816 172 q 839 255 830 226 l 952 626 l 859 673 l 859 710 l 1146 710 l 1146 673 l 1064 628 l 849 0 l 733 0 l 593 465 q 583 499 587 479 q 574 539 578 519 q 568 576 571 559 q 566 600 566 593 q 561 577 564 593 q 553 540 557 561 q 542 498 548 519 q 531 461 537 476 l 384 0 l 268 0 l 71 633 l -14 673 l -14 710 l 292 710 l 292 673 l 191 633 "},"$":{"x_min":74.640625,"x_max":640,"ha":715,"o":"m 526 845 q 489 863 511 854 q 435 877 468 872 l 385 548 q 475 505 429 528 q 557 449 521 482 q 616 371 593 416 q 640 258 640 325 q 616 144 640 194 q 553 57 593 93 q 458 3 513 22 q 340 -15 402 -15 q 318 -15 329 -15 q 296 -15 307 -15 l 280 -123 l 220 -123 l 238 -6 q 134 24 172 4 q 74 59 96 44 l 74 277 l 110 277 l 166 116 q 202 99 180 107 q 253 86 223 91 l 310 446 q 225 489 266 465 q 151 544 183 512 q 98 621 118 576 q 79 730 79 666 q 103 837 79 791 q 168 914 127 883 q 259 960 208 945 q 367 976 311 976 l 393 976 l 408 1072 l 466 1072 l 450 971 q 557 944 519 963 q 621 909 596 926 l 621 689 l 586 689 l 526 845 m 517 241 q 504 303 517 276 q 472 350 492 329 q 423 387 451 371 q 364 419 395 404 l 311 82 l 330 82 q 394 91 361 82 q 454 118 427 100 q 499 168 481 137 q 517 241 517 198 m 200 734 q 210 680 200 704 q 238 638 220 657 q 279 604 255 619 q 330 575 303 589 l 378 882 l 376 882 q 309 872 341 882 q 253 845 277 863 q 214 799 228 826 q 200 734 200 772 "},"∫":{"x_min":178,"x_max":616,"ha":794,"o":"m 616 1013 q 599 974 616 988 q 558 961 582 961 q 531 970 542 961 q 512 991 520 979 q 497 1011 504 1002 q 481 1021 490 1021 q 451 989 460 1021 q 442 916 442 958 q 442 833 442 874 q 442 770 442 791 l 442 5 q 442 -103 442 -42 q 426 -220 442 -164 q 375 -313 411 -276 q 272 -351 340 -351 q 240 -346 257 -351 q 209 -333 223 -342 q 186 -311 195 -324 q 178 -278 178 -298 q 193 -244 178 -259 q 228 -229 209 -229 q 254 -237 244 -229 q 272 -258 264 -246 q 286 -278 279 -269 q 300 -287 293 -287 q 328 -259 319 -287 q 337 -197 337 -232 q 337 -127 337 -162 q 337 -77 337 -92 l 337 695 q 337 773 337 730 q 337 860 337 816 q 345 945 337 904 q 372 1020 353 987 q 424 1072 392 1053 q 506 1092 457 1092 q 544 1087 524 1092 q 579 1074 563 1083 q 605 1050 595 1065 q 616 1013 616 1034 "},"\\":{"x_min":2.71875,"x_max":519.9375,"ha":523,"o":"m 423 -36 l 2 969 l 99 997 l 519 -8 l 423 -36 "},"Ì":{"x_min":34,"x_max":395,"ha":433,"o":"m 242 1023 l 59 1225 l 168 1279 l 309 1053 l 242 1023 m 275 87 l 395 36 l 395 0 l 34 0 l 34 36 l 155 87 l 155 873 l 34 923 l 34 960 l 395 960 l 395 923 l 275 873 l 275 87 "},"µ":{"x_min":-27,"x_max":1487,"ha":1453,"o":"m 208 874 l 374 314 q 392 246 383 280 q 405 186 400 213 q 414 141 411 159 q 418 121 418 124 q 422 141 418 123 q 434 188 427 160 q 450 250 441 216 q 469 316 460 284 l 724 1145 l 995 310 q 1011 250 1003 281 q 1026 191 1019 219 q 1037 144 1033 163 q 1043 121 1041 126 q 1046 141 1043 123 q 1055 186 1049 159 q 1070 246 1062 213 q 1089 310 1078 278 l 1258 874 l 1149 925 l 1149 962 l 1487 962 l 1487 925 l 1376 874 l 1043 -183 l 772 650 q 752 714 761 682 q 738 773 744 746 q 729 817 732 799 q 724 841 725 835 q 718 818 723 837 q 708 774 714 800 q 694 715 702 748 q 676 652 686 682 q 569 303 619 467 q 524 162 547 234 q 482 25 502 89 q 444 -93 461 -39 q 416 -180 427 -147 l 83 874 l -27 925 l -27 962 l 317 962 l 317 925 l 208 874 "},"č":{"x_min":48,"x_max":599.25,"ha":633,"o":"m 587 467 l 551 467 l 501 587 q 437 614 469 607 q 371 622 404 622 q 280 597 318 622 q 216 532 241 572 q 178 441 190 491 q 166 337 166 390 q 180 242 166 289 q 220 157 193 195 q 288 96 248 120 q 381 73 328 73 q 465 92 429 73 q 535 147 501 111 l 599 89 q 503 15 559 46 q 363 -15 446 -15 q 209 19 271 -15 q 112 107 148 54 q 62 221 76 159 q 48 337 48 283 q 70 474 48 408 q 135 592 92 540 q 235 675 177 644 q 366 707 294 707 q 472 695 419 707 q 587 634 525 684 l 587 467 m 416 802 l 313 802 l 196 1017 l 264 1039 l 367 882 l 480 1038 l 546 1017 l 416 802 "},"Ç":{"x_min":54,"x_max":782,"ha":851,"o":"m 781 57 q 759 50 767 53 q 649 3 702 21 q 531 -15 597 -15 q 347 18 433 -15 q 195 113 260 51 q 92 265 130 176 q 54 466 54 355 q 89 667 54 574 q 188 828 124 760 q 339 936 251 897 q 533 975 428 975 q 602 975 572 975 q 659 969 632 975 q 715 954 687 963 q 781 929 744 945 l 779 927 l 782 927 l 782 686 l 744 686 l 678 863 q 610 875 648 872 q 529 879 572 879 q 381 846 445 879 q 271 758 316 813 q 202 630 226 704 q 179 475 179 557 q 204 317 179 389 q 278 194 230 246 q 393 113 326 142 q 545 84 460 84 q 612 91 586 84 q 669 110 638 99 l 755 287 l 781 287 l 781 57 m 600 -182 q 576 -263 600 -232 q 517 -313 552 -294 q 442 -338 482 -332 q 371 -345 402 -345 q 373 -335 371 -346 q 377 -310 375 -324 q 382 -285 380 -297 q 384 -274 384 -274 q 415 -270 396 -272 q 453 -260 435 -268 q 485 -238 471 -253 q 499 -197 499 -222 q 489 -164 499 -177 q 465 -146 479 -152 q 436 -138 451 -139 q 410 -137 421 -137 q 401 -137 406 -137 q 392 -138 396 -138 l 381 -138 l 391 -59 q 410 -61 402 -61 q 430 -61 418 -61 q 477 -61 448 -61 q 533 -72 505 -61 q 580 -109 560 -84 q 600 -182 600 -134 "},"’":{"x_min":144,"x_max":280.109375,"ha":397,"o":"m 212 625 l 144 625 l 144 961 l 280 961 l 212 625 "},"-":{"x_min":72,"x_max":459,"ha":531,"o":"m 72 301 l 72 402 l 459 402 l 459 301 l 72 301 "},"Q":{"x_min":54,"x_max":1051.5625,"ha":1012,"o":"m 959 479 q 906 227 959 338 q 755 54 853 117 l 916 -48 l 1021 25 l 1051 5 l 926 -194 l 616 -2 q 566 -12 590 -9 q 515 -15 542 -15 q 333 20 417 -15 q 186 120 248 55 q 89 276 124 185 q 54 479 54 368 q 91 678 54 587 q 192 836 128 770 q 339 940 255 903 q 515 977 422 977 q 694 941 613 977 q 835 840 776 906 q 926 683 893 775 q 959 479 959 592 m 834 477 q 812 633 834 560 q 749 760 790 706 q 648 845 708 814 q 511 877 589 877 q 382 849 442 877 q 277 770 322 821 q 206 645 232 718 q 181 482 181 572 q 205 323 181 396 q 273 197 229 250 q 378 114 317 145 q 515 84 440 84 q 648 114 589 84 q 748 198 707 145 q 812 323 790 252 q 834 477 834 395 "},"M":{"x_min":34,"x_max":1225,"ha":1259,"o":"m 1105 87 l 1225 36 l 1225 0 l 864 0 l 864 36 l 985 87 l 985 778 l 681 0 l 570 0 l 276 776 l 275 776 l 275 87 l 395 36 l 395 0 l 34 0 l 34 36 l 155 87 l 155 873 l 34 923 l 34 960 l 315 960 l 590 265 q 619 180 608 220 q 634 124 630 140 q 651 187 639 148 q 679 263 664 226 l 951 960 l 1225 960 l 1225 923 l 1105 873 l 1105 87 "},"C":{"x_min":54,"x_max":782,"ha":838,"o":"m 781 57 q 759 50 767 53 q 649 3 702 21 q 531 -15 597 -15 q 347 18 433 -15 q 195 113 260 51 q 92 265 130 176 q 54 466 54 355 q 89 667 54 574 q 188 828 124 760 q 339 936 251 897 q 533 975 428 975 q 602 975 572 975 q 659 969 632 975 q 715 954 687 963 q 781 929 744 945 l 779 927 l 782 927 l 782 686 l 744 686 l 678 863 q 610 875 648 872 q 529 879 572 879 q 381 846 445 879 q 271 758 316 813 q 202 630 226 704 q 179 475 179 557 q 204 317 179 389 q 278 194 230 246 q 393 113 326 142 q 545 84 460 84 q 612 91 586 84 q 669 110 637 99 l 755 286 l 781 286 l 781 57 "},"œ":{"x_min":48,"x_max":1148,"ha":1202,"o":"m 689 345 q 689 324 689 334 q 689 302 689 313 q 700 214 689 255 q 732 143 710 173 q 788 95 754 112 q 870 78 823 78 q 980 99 928 78 q 1071 161 1032 120 l 1131 101 q 1018 16 1078 47 q 881 -15 958 -15 q 723 21 785 -15 q 625 119 660 57 q 520 21 584 57 q 373 -15 457 -15 q 231 12 292 -15 q 129 89 170 40 q 68 203 88 137 q 48 346 48 269 q 71 483 48 418 q 137 598 94 548 q 240 677 180 648 q 376 707 301 707 q 533 669 469 707 q 635 567 597 632 q 731 668 672 630 q 871 707 791 707 q 998 680 946 707 q 1084 610 1051 654 q 1133 510 1118 566 q 1148 395 1148 454 l 1148 347 l 690 347 l 690 345 l 689 345 m 572 346 q 562 442 572 393 q 529 532 552 491 q 468 597 506 572 q 374 622 430 622 q 280 597 318 622 q 215 532 241 572 q 177 442 189 491 q 166 346 166 393 q 177 248 166 297 q 214 159 189 198 q 278 94 238 119 q 374 69 317 69 q 466 94 429 69 q 527 159 503 119 q 561 248 551 198 q 572 346 572 297 m 1043 429 q 1032 501 1043 467 q 1000 560 1022 535 q 944 600 977 585 q 867 615 911 615 q 793 599 824 615 q 742 557 763 583 q 711 497 722 531 q 692 429 699 463 l 1043 429 l 1043 429 "},"!":{"x_min":140,"x_max":310,"ha":452,"o":"m 282 530 q 282 449 282 494 q 282 363 282 404 q 282 268 282 316 l 174 268 q 174 365 174 318 q 174 450 174 405 q 174 529 174 495 l 174 961 l 282 961 l 282 530 m 310 69 q 290 4 310 23 q 227 -14 271 -14 q 159 5 179 -14 q 140 69 140 24 q 159 133 140 114 q 225 153 179 153 q 290 133 270 153 q 310 69 310 114 "},"ç":{"x_min":48,"x_max":599.25,"ha":641,"o":"m 458 -182 q 434 -263 458 -232 q 375 -313 410 -294 q 300 -338 340 -332 q 229 -345 260 -345 q 231 -335 229 -346 q 235 -310 233 -324 q 240 -285 238 -297 q 242 -274 242 -274 q 273 -270 254 -272 q 311 -260 293 -268 q 343 -238 329 -253 q 357 -197 357 -222 q 347 -164 357 -177 q 323 -146 337 -152 q 294 -138 309 -139 q 268 -137 279 -137 q 259 -137 264 -137 q 250 -138 254 -138 l 239 -138 l 249 -59 q 268 -61 260 -61 q 288 -61 276 -61 q 335 -61 306 -61 q 391 -72 363 -61 q 438 -109 418 -84 q 458 -182 458 -134 m 587 467 l 551 467 l 501 587 q 437 614 470 607 q 372 622 404 622 q 280 597 318 622 q 216 532 241 572 q 178 441 190 491 q 166 337 166 390 q 180 242 166 289 q 220 157 193 195 q 288 96 248 120 q 381 73 328 73 q 465 92 429 73 q 535 147 501 111 l 599 89 q 503 15 559 46 q 363 -15 446 -15 q 209 19 271 -15 q 112 107 148 54 q 62 221 76 159 q 48 337 48 283 q 70 474 48 408 q 135 592 92 540 q 235 675 177 644 q 366 707 294 707 q 472 695 419 707 q 587 634 525 684 l 587 467 "},"È":{"x_min":34,"x_max":695.859375,"ha":753,"o":"m 441 1023 l 253 1224 l 362 1279 l 508 1052 l 441 1023 m 674 0 l 34 0 l 34 36 l 155 87 l 155 873 l 34 925 l 34 961 l 664 961 l 664 701 l 630 701 l 563 860 l 279 860 l 279 537 l 478 537 l 525 668 l 555 668 l 555 308 l 525 308 l 478 436 l 278 436 l 278 103 l 576 103 l 661 261 l 695 261 l 674 0 "},"ﬁ":{"x_min":35.390625,"x_max":814,"ha":834,"o":"m 157 87 l 157 597 l 35 597 l 35 649 l 158 691 l 158 764 q 171 882 158 828 q 215 975 185 936 q 297 1036 246 1014 q 421 1058 347 1058 l 511 1058 l 511 852 l 474 852 l 424 974 q 392 973 408 977 q 355 962 376 969 q 311 929 328 951 q 285 880 295 907 q 273 818 276 852 q 271 750 271 785 l 271 691 l 559 691 l 701 724 l 701 87 l 814 35 l 814 0 l 468 0 l 468 35 l 588 87 l 588 597 l 270 597 l 270 87 l 419 35 l 419 0 l 37 0 l 37 35 l 157 87 m 732 945 q 647 868 732 868 q 562 942 562 868 q 647 1019 562 1019 q 732 945 732 1019 "},"{":{"x_min":68,"x_max":465,"ha":487,"o":"m 388 928 q 321 898 336 928 q 307 829 307 869 l 307 598 q 276 486 307 526 q 189 431 246 447 q 276 383 248 418 q 304 276 304 348 l 304 53 q 304 12 304 34 q 310 -27 304 -8 q 332 -58 316 -46 q 377 -70 347 -70 l 459 -70 l 459 -153 l 335 -153 q 264 -138 292 -153 q 220 -100 236 -123 q 200 -47 205 -76 q 195 12 195 -18 l 195 245 q 191 295 195 270 q 174 339 188 320 q 135 370 160 358 q 68 382 110 382 l 68 472 q 133 486 108 472 q 173 522 158 500 q 192 571 187 545 q 198 623 198 598 l 198 852 q 206 911 198 883 q 234 962 215 940 q 280 997 252 984 q 347 1011 308 1011 l 465 1011 l 465 928 l 388 928 "},"X":{"x_min":-7,"x_max":934,"ha":927,"o":"m 262 872 l 391 682 q 420 637 408 657 q 442 604 432 618 q 459 575 451 589 q 480 609 467 591 q 504 645 491 625 q 533 689 516 665 l 662 872 l 566 923 l 566 960 l 908 960 l 908 923 l 799 872 l 526 500 l 829 86 l 934 36 l 934 0 l 573 0 l 573 36 l 683 87 l 526 305 q 493 353 507 332 q 472 390 480 375 q 455 420 461 407 q 437 393 448 408 q 414 357 428 379 q 379 307 399 336 l 230 87 l 337 36 l 337 0 l -7 0 l -7 36 l 94 84 l 383 493 l 115 873 l 12 923 l 12 960 l 359 960 l 359 923 l 262 872 "},"ô":{"x_min":48,"x_max":690.421875,"ha":795,"o":"m 480 801 l 377 958 l 264 802 l 199 823 l 328 1038 l 431 1038 l 548 823 l 480 801 m 690 346 q 668 207 690 272 q 606 92 646 141 q 506 14 565 43 q 373 -15 448 -15 q 231 12 293 -15 q 129 89 170 40 q 68 203 88 137 q 48 346 48 269 q 71 483 48 418 q 137 598 94 548 q 240 677 180 648 q 376 707 301 707 q 515 679 456 707 q 613 602 574 651 q 671 488 652 554 q 690 346 690 422 m 572 346 q 562 442 572 393 q 529 532 552 491 q 468 597 506 572 q 374 622 430 622 q 280 597 318 622 q 215 532 241 572 q 177 442 189 491 q 166 346 166 393 q 177 248 166 297 q 214 159 189 198 q 278 94 238 119 q 374 69 317 69 q 466 94 429 69 q 527 159 503 119 q 561 248 551 198 q 572 346 572 297 "},"¼":{"x_min":35,"x_max":1250,"ha":1264,"o":"m 156 87 l 156 597 l 35 597 l 35 649 l 157 691 l 157 764 q 170 882 157 828 q 214 975 184 936 q 296 1036 245 1014 q 420 1058 346 1058 l 510 1058 l 510 852 l 474 852 l 424 974 q 392 973 408 977 q 354 962 376 969 q 311 929 327 950 q 285 880 294 907 q 272 818 275 852 q 270 750 270 785 l 270 691 l 582 691 l 582 764 q 598 882 582 828 q 656 975 614 936 q 769 1035 697 1014 q 953 1057 841 1057 q 1039 1048 995 1057 q 1122 1023 1082 1039 l 1122 87 l 1250 35 l 1250 0 l 888 0 l 888 35 l 1008 87 l 1008 945 q 952 967 983 959 q 891 976 922 976 q 831 972 860 976 q 779 962 802 969 q 735 929 752 950 q 709 880 719 907 q 697 818 700 852 q 695 750 695 785 l 695 691 l 857 691 l 857 597 l 694 597 l 694 87 l 843 35 l 843 0 l 461 0 l 461 35 l 581 87 l 581 597 l 269 597 l 269 87 l 419 35 l 419 0 l 37 0 l 37 35 l 156 87 "},"#":{"x_min":57,"x_max":738,"ha":795,"o":"m 598 590 l 570 379 l 698 379 l 698 304 l 560 304 l 518 0 l 413 0 l 455 304 l 287 304 l 245 0 l 140 0 l 182 304 l 57 304 l 57 379 l 193 379 l 222 590 l 97 590 l 97 665 l 231 665 l 272 960 l 377 960 l 336 665 l 504 665 l 545 960 l 650 960 l 609 665 l 738 665 l 738 590 l 598 590 m 325 590 l 296 379 l 465 379 l 495 590 l 325 590 "},"Ê":{"x_min":34,"x_max":695.859375,"ha":753,"o":"m 510 1022 l 407 1179 l 294 1023 l 228 1044 l 358 1259 l 461 1259 l 578 1044 l 510 1022 m 674 0 l 34 0 l 34 36 l 155 87 l 155 873 l 34 925 l 34 961 l 664 961 l 664 701 l 630 701 l 563 860 l 279 860 l 279 537 l 478 537 l 525 668 l 555 668 l 555 308 l 525 308 l 478 436 l 278 436 l 278 103 l 576 103 l 661 261 l 695 261 l 674 0 "},")":{"x_min":8.421875,"x_max":342,"ha":443,"o":"m 342 445 q 324 268 342 351 q 273 109 306 184 q 193 -34 241 34 q 86 -172 145 -104 l 8 -124 q 103 -3 61 -70 q 173 138 144 63 q 218 293 203 213 q 233 448 233 372 q 215 593 233 522 q 169 731 198 665 q 100 860 140 798 q 16 977 61 923 l 94 1026 q 192 897 147 965 q 270 758 237 830 q 322 607 303 686 q 342 445 342 529 "},"Å":{"x_min":-37,"x_max":993,"ha":935,"o":"m 626 1152 q 585 1051 626 1091 q 480 1011 545 1011 q 375 1047 417 1011 q 333 1152 333 1084 q 374 1253 333 1213 q 481 1294 416 1294 q 586 1257 546 1294 q 626 1152 626 1220 m 558 1152 q 536 1216 558 1195 q 480 1237 514 1237 q 424 1214 447 1237 q 401 1152 401 1192 q 423 1088 401 1109 q 480 1068 446 1068 q 536 1092 515 1068 q 558 1152 558 1116 m 69 88 l 433 960 l 545 960 l 885 90 l 993 36 l 993 0 l 646 0 l 646 36 l 754 90 l 670 319 l 282 319 l 281 316 l 198 90 l 307 36 l 307 0 l -37 0 l -37 36 l 69 88 m 525 696 q 511 734 518 712 q 496 780 503 757 q 485 821 489 803 q 479 842 480 838 q 474 826 479 841 q 463 790 469 812 q 448 743 457 768 q 432 698 440 718 l 322 419 l 631 419 l 525 696 "},"Δ":{"x_min":17.6875,"x_max":901.0625,"ha":917,"o":"m 17 0 l 402 988 l 515 988 l 901 0 l 17 0 m 458 872 l 163 100 l 748 100 l 458 872 "},"ø":{"x_min":65.109375,"x_max":729.890625,"ha":795,"o":"m 637 607 q 697 493 676 558 q 719 351 719 427 q 696 211 719 277 q 632 94 674 145 q 530 14 589 44 q 395 -15 470 -15 q 198 43 276 -15 l 115 -64 l 65 -33 l 156 84 q 96 198 116 133 q 76 340 76 263 q 98 479 76 413 q 162 596 120 545 q 264 677 203 647 q 399 707 324 707 q 593 648 515 707 l 676 756 l 729 725 l 637 607 m 599 348 q 591 433 599 390 q 564 514 584 476 l 263 123 q 319 84 287 99 q 396 69 352 69 q 488 95 450 69 q 552 160 527 121 q 588 250 577 200 q 599 348 599 299 m 529 568 q 474 607 506 592 q 398 622 442 622 q 304 596 342 622 q 240 530 265 570 q 205 440 216 489 q 194 343 194 391 q 201 258 194 300 q 228 178 208 215 l 529 568 l 529 568 "},"â":{"x_min":41,"x_max":643,"ha":682,"o":"m 398 802 l 295 959 l 182 804 l 117 825 l 246 1040 l 349 1040 l 467 825 l 398 802 m 422 82 q 339 11 383 37 q 234 -15 295 -15 q 92 39 144 -15 q 41 186 41 93 q 79 305 41 260 q 176 375 118 350 q 300 410 234 400 q 423 427 367 421 q 422 439 422 427 q 422 468 422 452 l 422 510 q 410 555 422 535 q 380 592 398 576 q 338 617 362 608 q 290 627 314 627 q 213 620 247 627 q 145 587 180 613 l 96 468 l 61 468 l 61 627 l 62 627 q 121 667 93 650 q 177 693 148 683 q 239 709 206 704 q 316 714 273 714 q 396 700 357 714 q 464 663 434 687 q 512 605 494 639 q 530 530 530 571 l 530 111 l 643 73 l 643 41 l 422 -16 l 422 82 m 422 350 q 332 343 379 350 q 244 320 284 337 q 177 272 204 304 q 151 188 151 241 q 181 98 151 129 q 268 67 212 67 q 314 76 292 67 q 355 98 336 85 q 390 130 374 112 q 422 166 407 148 l 422 351 l 422 350 "},"}":{"x_min":52,"x_max":451,"ha":486,"o":"m 451 380 q 384 366 409 380 q 344 330 358 352 q 324 281 329 308 q 319 230 319 254 l 319 5 q 310 -53 319 -25 q 283 -104 301 -82 q 237 -139 266 -126 q 171 -153 209 -153 l 52 -153 l 52 -70 l 130 -70 q 196 -40 182 -70 q 211 28 211 -11 l 211 255 q 241 366 211 327 q 329 421 272 406 q 241 470 270 435 q 212 577 212 504 l 212 804 q 212 844 212 823 q 205 885 212 866 q 184 916 199 904 q 140 928 170 928 l 57 928 l 57 1011 l 180 1011 q 251 996 224 1011 q 294 958 278 981 q 315 905 310 934 q 321 845 321 876 l 321 607 q 325 557 321 582 q 342 513 329 532 q 381 481 355 493 q 451 470 407 470 l 451 380 l 451 380 "},"‰":{"x_min":80,"x_max":1617,"ha":1699,"o":"m 1112 287 q 1100 186 1112 239 q 1063 89 1088 133 q 996 17 1038 45 q 895 -11 955 -11 q 789 16 831 -11 q 722 86 747 43 q 688 182 698 129 q 679 287 679 236 q 689 388 679 336 q 725 484 700 440 q 791 556 749 528 q 894 585 832 585 q 1000 557 958 585 q 1067 487 1042 530 q 1101 391 1091 444 q 1112 287 1112 339 m 1617 283 q 1605 182 1617 235 q 1568 85 1593 129 q 1501 13 1543 41 q 1400 -15 1460 -15 q 1294 12 1336 -15 q 1227 82 1252 39 q 1193 178 1203 125 q 1184 283 1184 232 q 1194 384 1184 332 q 1230 480 1205 436 q 1296 552 1254 524 q 1399 581 1337 581 q 1505 553 1463 581 q 1572 483 1547 526 q 1606 387 1596 440 q 1617 283 1617 335 m 513 675 q 502 573 513 626 q 465 476 491 520 q 398 404 439 433 q 297 376 357 376 q 191 403 233 376 q 124 473 149 430 q 90 570 100 516 q 80 675 80 623 q 90 776 80 723 q 126 872 101 828 q 193 944 152 915 q 296 973 235 973 q 402 945 360 973 q 468 875 443 918 q 502 779 492 832 q 513 675 513 726 m 423 675 q 418 746 423 705 q 401 821 414 786 q 362 881 387 857 q 296 906 337 906 q 230 881 255 906 q 192 821 205 857 q 174 746 179 786 q 170 675 170 705 q 174 603 170 643 q 193 525 179 562 q 231 464 206 489 q 297 439 257 439 q 363 464 338 439 q 401 525 388 489 q 418 603 414 562 q 423 675 423 643 m 1022 287 q 1017 358 1022 317 q 998 433 1012 398 q 960 493 985 469 q 894 518 934 518 q 828 493 853 518 q 790 433 804 469 q 773 358 777 398 q 769 287 769 317 q 773 215 769 255 q 791 137 778 174 q 829 76 804 101 q 895 51 854 51 q 961 76 936 51 q 1000 137 986 101 q 1017 215 1013 174 q 1022 287 1022 255 m 1527 283 q 1522 354 1527 314 q 1503 430 1517 394 q 1465 489 1490 465 q 1399 514 1439 514 q 1333 489 1358 514 q 1295 430 1309 465 q 1278 354 1282 394 q 1274 283 1274 314 q 1278 211 1274 251 q 1296 134 1283 171 q 1334 72 1309 97 q 1400 48 1359 48 q 1466 72 1441 48 q 1505 134 1491 97 q 1522 211 1518 171 q 1527 283 1527 251 m 323 -38 l 261 -13 l 865 999 l 930 973 l 323 -38 "},"Ä":{"x_min":-37,"x_max":993,"ha":935,"o":"m 69 88 l 433 960 l 545 960 l 885 90 l 993 36 l 993 0 l 646 0 l 646 36 l 754 90 l 670 319 l 282 319 l 281 316 l 198 90 l 307 36 l 307 0 l -37 0 l -37 36 l 69 88 m 525 696 q 510 734 518 712 q 496 780 503 757 q 485 821 489 803 q 479 842 480 838 q 474 826 479 841 q 463 790 469 812 q 448 743 457 768 q 432 698 440 718 l 321 419 l 631 419 l 525 696 m 401 1134 q 316 1057 401 1057 q 231 1131 231 1057 q 316 1208 231 1208 q 401 1134 401 1208 m 718 1131 q 633 1054 718 1054 q 548 1128 548 1054 q 633 1205 548 1205 q 718 1131 718 1205 "},"¸":{"x_min":68,"x_max":297,"ha":364,"o":"m 297 -182 q 273 -264 297 -232 q 214 -314 249 -295 q 139 -339 179 -333 q 68 -346 99 -346 q 70 -336 68 -347 q 74 -311 72 -325 q 79 -286 77 -298 q 81 -275 81 -275 q 112 -271 93 -273 q 150 -261 132 -269 q 182 -239 168 -254 q 196 -198 196 -223 q 186 -165 196 -178 q 162 -147 176 -153 q 133 -139 148 -140 q 107 -138 118 -138 q 98 -138 103 -138 q 89 -139 93 -139 l 78 -139 l 88 -59 q 107 -61 99 -61 q 127 -61 115 -61 q 174 -61 145 -61 q 230 -72 202 -61 q 277 -109 257 -84 q 297 -182 297 -135 "},"a":{"x_min":41,"x_max":643,"ha":657,"o":"m 422 82 q 339 11 383 37 q 234 -15 295 -15 q 92 39 144 -15 q 41 186 41 93 q 79 305 41 260 q 176 375 118 350 q 300 410 234 400 q 423 427 367 421 q 422 439 422 427 q 422 468 422 452 l 422 510 q 410 555 422 535 q 380 592 398 576 q 338 617 362 608 q 290 627 314 627 q 213 620 247 627 q 145 587 180 613 l 96 468 l 61 468 l 61 627 l 62 627 q 121 667 93 650 q 177 693 148 683 q 239 709 206 704 q 316 714 273 714 q 396 700 357 714 q 464 663 434 687 q 512 605 494 639 q 530 530 530 571 l 530 111 l 643 73 l 643 41 l 422 -16 l 422 82 m 422 350 q 332 343 379 350 q 244 320 284 337 q 177 272 204 304 q 151 188 151 241 q 181 98 151 129 q 268 67 212 67 q 314 76 292 67 q 355 98 336 85 q 390 130 374 112 q 422 166 407 148 l 422 351 l 422 350 "},"—":{"x_min":177,"x_max":1184,"ha":1361,"o":"m 177 310 l 177 396 l 1184 396 l 1184 310 l 177 310 "},"=":{"x_min":76,"x_max":718,"ha":794,"o":"m 76 168 l 76 269 l 718 269 l 718 168 l 76 168 m 77 438 l 77 539 l 718 539 l 718 438 l 77 438 "},"N":{"x_min":33.96875,"x_max":1002,"ha":1016,"o":"m 154 86 l 154 873 l 33 925 l 33 960 l 287 960 l 687 316 q 720 259 703 288 q 748 203 736 229 q 769 159 760 177 q 776 137 777 141 q 776 163 776 138 q 776 221 776 188 q 776 287 776 254 q 776 338 776 320 l 776 873 l 656 925 l 656 961 l 1002 961 l 1002 925 l 881 873 l 881 0 l 741 0 l 347 644 q 313 702 329 672 q 285 757 298 732 q 264 800 272 782 q 254 821 256 818 q 256 802 256 821 q 256 758 256 783 q 256 706 256 733 q 256 662 256 679 l 256 87 l 378 36 l 378 0 l 34 0 l 34 36 l 154 86 "},"˚":{"x_min":37,"x_max":330,"ha":364,"o":"m 330 906 q 289 805 330 845 q 184 765 249 765 q 79 801 121 765 q 37 906 37 838 q 78 1007 37 967 q 185 1048 120 1048 q 290 1011 250 1048 q 330 906 330 974 m 262 906 q 240 970 262 949 q 184 991 218 991 q 128 968 151 991 q 105 906 105 946 q 127 842 105 863 q 184 822 150 822 q 240 846 219 822 q 262 906 262 870 "},"ú":{"x_min":6.953125,"x_max":777,"ha":785,"o":"m 393 803 l 326 832 l 466 1058 l 575 1004 l 393 803 m 240 190 q 251 136 240 157 q 280 104 263 115 q 319 88 298 92 q 358 84 340 84 q 417 95 390 84 q 469 126 445 107 q 514 168 493 145 q 555 215 536 192 l 555 595 l 435 631 l 435 664 l 664 720 l 664 114 l 777 77 l 777 44 l 555 -13 l 555 106 q 510 59 534 81 q 458 21 485 38 q 400 -5 431 4 q 340 -15 370 -15 q 180 33 236 -15 q 124 186 124 81 l 124 595 l 6 631 l 6 664 l 240 720 l 240 190 "},"⁄":{"x_min":2.71875,"x_max":519.9375,"ha":520,"o":"m 99 -36 l 2 -8 l 423 997 l 519 969 l 99 -36 "},"2":{"x_min":49.1875,"x_max":675,"ha":762,"o":"m 91 668 l 91 888 q 220 952 148 928 q 363 976 291 976 q 485 961 429 976 q 581 914 540 946 q 645 829 622 881 q 669 703 669 777 q 652 603 669 652 q 609 508 636 554 q 549 420 583 462 q 478 338 515 377 q 403 262 441 300 q 329 192 365 225 q 260 133 292 159 q 204 91 228 107 q 227 94 213 93 q 253 96 238 96 q 288 96 269 96 l 589 96 l 640 219 l 675 219 l 675 0 l 79 0 l 49 83 q 190 203 107 132 q 351 355 272 275 q 428 439 392 397 q 490 524 464 481 q 531 610 516 566 q 546 701 546 655 q 494 834 546 788 q 352 880 442 880 q 277 872 313 880 q 209 850 242 864 q 198 845 202 843 q 190 839 194 846 l 126 668 l 91 668 "},"ü":{"x_min":6.953125,"x_max":777,"ha":785,"o":"m 240 190 q 251 136 240 157 q 280 104 263 115 q 319 88 298 92 q 358 84 340 84 q 417 95 390 84 q 469 126 445 107 q 514 168 493 145 q 555 215 536 192 l 555 594 l 435 630 l 435 664 l 664 719 l 664 114 l 777 77 l 777 44 l 555 -13 l 555 106 q 510 59 534 81 q 458 21 485 38 q 400 -5 431 4 q 340 -15 370 -15 q 180 33 236 -15 q 124 186 124 81 l 124 594 l 6 630 l 6 664 l 240 719 l 240 190 m 300 912 q 215 835 300 835 q 130 909 130 835 q 215 986 130 986 q 300 912 300 986 m 617 909 q 532 832 617 832 q 447 906 447 832 q 532 983 447 983 q 617 909 617 983 "},"¯":{"x_min":-3,"x_max":370,"ha":363,"o":"m -3 839 l -3 922 l 370 922 l 370 839 l -3 839 "},"Z":{"x_min":40.765625,"x_max":807.078125,"ha":848,"o":"m 117 961 l 807 961 l 322 216 q 294 176 310 196 q 265 139 278 156 q 234 101 250 120 l 296 101 q 347 101 322 101 q 387 101 372 101 l 643 101 l 733 275 l 770 275 l 745 0 l 40 0 l 528 751 q 557 795 543 774 q 583 830 572 815 q 609 861 597 848 q 559 861 583 861 q 510 861 536 861 q 460 861 484 861 l 219 861 l 155 686 l 117 686 l 117 961 "},"u":{"x_min":6.953125,"x_max":777,"ha":797,"o":"m 240 190 q 251 136 240 157 q 280 104 263 115 q 319 88 298 92 q 358 84 340 84 q 417 95 390 84 q 469 126 445 107 q 514 168 493 145 q 555 215 536 192 l 555 595 l 435 631 l 435 664 l 664 720 l 664 114 l 777 77 l 777 44 l 555 -13 l 555 106 q 510 59 534 81 q 458 21 485 38 q 400 -5 431 4 q 340 -15 370 -15 q 180 33 236 -15 q 124 186 124 81 l 124 595 l 6 631 l 6 664 l 240 720 l 240 190 "},"˜":{"x_min":-46.28125,"x_max":413.78125,"ha":363,"o":"m 413 944 q 394 891 405 916 q 366 846 382 866 q 327 815 349 827 q 273 804 304 804 q 210 813 235 804 q 166 836 186 823 q 129 858 147 848 q 89 868 112 868 q 43 844 62 868 q 20 795 24 820 l -46 812 q -27 863 -39 838 q 0 908 -16 888 q 40 939 17 927 q 93 951 63 951 q 158 941 132 951 q 205 919 185 931 q 243 896 225 906 q 280 887 261 887 q 325 907 310 887 q 351 960 341 928 l 413 944 l 413 944 "},"Ó":{"x_min":54,"x_max":959,"ha":1095,"o":"m 530 1024 l 463 1053 l 603 1280 l 712 1225 l 530 1024 m 959 479 q 924 280 959 370 q 831 124 890 190 q 690 21 772 58 q 515 -15 609 -15 q 332 20 417 -15 q 186 120 248 55 q 89 276 124 184 q 54 479 54 368 q 91 678 54 587 q 192 835 128 769 q 339 939 255 902 q 515 976 422 976 q 694 940 613 976 q 835 839 776 905 q 926 683 893 774 q 959 479 959 591 m 834 476 q 812 633 834 559 q 749 760 790 706 q 648 847 708 815 q 511 879 588 879 q 381 850 441 879 q 275 770 320 822 q 204 645 230 717 q 179 481 179 572 q 203 322 179 395 q 272 196 228 250 q 378 112 316 143 q 515 82 440 82 q 648 113 588 82 q 748 197 707 144 q 812 322 790 251 q 834 476 834 394 "},"k":{"x_min":34.0625,"x_max":771.5,"ha":765,"o":"m 34 986 l 276 1043 l 276 87 l 404 36 l 404 0 l 42 0 l 42 36 l 162 87 l 162 917 l 34 955 l 34 986 m 409 390 l 666 77 l 771 36 l 771 0 l 578 0 l 282 360 l 538 639 l 445 678 l 445 712 l 770 712 l 770 678 l 631 632 l 409 390 "},"ˇ":{"x_min":8.171875,"x_max":357.96875,"ha":363,"o":"m 228 801 l 125 801 l 8 1016 l 76 1038 l 179 881 l 292 1037 l 357 1016 l 228 801 "},"Ù":{"x_min":-7,"x_max":937,"ha":987,"o":"m 496 1022 l 308 1223 l 417 1277 l 563 1051 l 496 1022 m 230 334 q 283 145 230 209 q 462 82 336 82 q 578 102 531 82 q 652 161 624 123 q 693 252 681 200 q 706 369 706 305 l 706 873 l 589 924 l 589 961 l 937 961 l 937 924 l 816 873 l 816 549 q 816 380 816 463 q 795 213 816 286 q 732 89 775 140 q 622 11 689 37 q 460 -15 555 -15 q 194 77 278 -15 q 110 351 110 169 l 110 873 l -7 924 l -7 961 l 352 961 l 352 924 l 230 873 l 230 334 "},"Ÿ":{"x_min":-27,"x_max":924,"ha":883,"o":"m 819 872 l 505 448 l 505 87 l 659 36 l 659 0 l 234 0 l 234 36 l 386 87 l 386 439 l 79 872 l -27 923 l -27 960 l 324 960 l 324 923 l 224 872 l 376 654 q 427 575 407 607 q 450 536 447 543 q 477 580 453 541 q 534 662 502 618 l 680 866 l 683 872 l 584 923 l 584 960 l 924 960 l 924 923 l 819 872 m 383 1146 q 298 1069 383 1069 q 213 1143 213 1069 q 298 1220 213 1220 q 383 1146 383 1220 m 700 1144 q 615 1067 700 1067 q 530 1141 530 1067 q 615 1218 530 1218 q 700 1144 700 1218 "},"€":{"x_min":41,"x_max":870,"ha":926,"o":"m 869 57 q 847 50 855 53 q 737 3 789 21 q 619 -15 685 -15 q 459 9 535 -15 q 320 82 382 34 q 214 197 259 129 q 152 351 170 265 l 41 351 l 41 429 l 143 429 q 142 447 142 438 q 142 466 142 456 q 146 535 142 501 l 42 535 l 42 613 l 159 613 q 222 759 180 692 q 324 873 264 825 q 459 948 384 921 q 621 975 534 975 q 690 975 660 975 q 747 969 720 975 q 803 954 775 963 q 869 929 832 945 l 867 927 l 870 927 l 870 686 l 818 686 l 753 863 q 691 875 723 872 q 616 879 660 879 q 497 858 551 879 q 402 803 443 838 q 330 718 360 768 q 284 613 301 669 l 588 613 l 588 535 l 269 535 q 267 505 267 519 q 267 475 267 490 q 267 451 267 463 q 268 429 267 440 l 587 429 l 587 351 l 281 351 q 405 156 313 229 q 633 84 497 84 q 667 86 653 84 q 692 91 680 88 q 715 99 703 95 q 743 110 727 104 l 829 286 l 869 286 l 869 57 "},"¢":{"x_min":48,"x_max":599.25,"ha":633,"o":"m 587 467 l 551 467 l 501 587 q 423 616 464 609 l 339 77 q 381 73 359 73 q 465 92 429 73 q 535 147 501 111 l 599 89 q 503 15 559 46 q 363 -15 446 -15 q 343 -15 352 -15 q 325 -13 335 -15 l 307 -123 l 248 -123 l 267 -2 q 160 52 203 14 q 93 138 118 90 q 58 239 68 186 q 48 337 48 291 q 70 474 48 408 q 135 592 92 540 q 235 675 177 644 q 366 707 294 707 l 380 707 l 396 811 l 454 811 l 437 702 q 509 682 472 697 q 587 634 546 668 l 587 467 m 166 337 q 195 200 166 267 q 283 99 224 134 l 366 621 q 276 595 314 621 q 214 530 238 569 q 177 439 189 490 q 166 337 166 389 "},"Ω":{"x_min":58.421875,"x_max":953.578125,"ha":1012,"o":"m 58 273 l 82 273 l 172 94 l 330 94 l 330 93 l 332 93 l 332 192 q 219 248 267 210 q 136 335 171 285 q 85 446 102 385 q 69 573 69 507 q 103 745 69 666 q 196 880 137 824 q 334 969 255 937 q 503 1001 413 1001 q 673 969 593 1001 q 812 882 752 938 q 907 747 872 825 q 942 575 942 669 q 924 448 942 509 q 875 336 907 387 q 793 248 842 285 q 680 192 744 210 l 680 93 l 682 93 l 682 94 l 839 94 l 929 273 l 953 273 l 953 0 l 593 0 l 593 253 q 772 362 711 277 q 833 569 833 448 q 807 701 833 641 q 738 806 782 762 q 634 876 694 851 q 503 901 574 901 q 374 876 434 901 q 270 806 314 851 q 202 700 227 762 q 178 569 178 639 q 193 457 178 510 q 239 362 209 403 q 314 291 269 320 q 419 253 359 263 l 419 0 l 58 0 l 58 273 "},"é":{"x_min":48,"x_max":620,"ha":718,"o":"m 371 802 l 305 831 l 445 1058 l 554 1004 l 371 802 m 158 347 q 166 243 158 291 q 196 157 175 194 q 254 99 217 120 q 343 78 290 78 q 452 99 400 78 q 543 161 504 120 l 603 101 q 490 16 550 47 q 353 -15 430 -15 q 212 13 269 -15 q 117 90 154 41 q 64 204 80 139 q 48 344 48 269 q 67 477 48 412 q 124 593 86 541 q 216 675 162 644 q 343 707 271 707 q 470 680 418 707 q 556 610 523 654 q 605 510 590 566 q 620 395 620 454 l 620 347 l 158 347 m 515 429 q 504 501 515 467 q 472 560 494 535 q 416 600 449 585 q 339 615 383 615 q 265 599 296 615 q 215 557 235 583 q 183 497 194 531 q 164 429 171 463 l 515 429 l 515 429 "},"s":{"x_min":67.703125,"x_max":510,"ha":578,"o":"m 495 484 l 459 484 l 409 602 q 319 622 364 622 q 271 618 295 622 q 228 602 247 613 q 197 570 209 590 q 185 518 185 550 q 208 461 185 482 q 269 424 232 440 q 347 392 306 407 q 425 352 388 377 q 486 288 462 326 q 510 190 510 250 q 488 99 510 137 q 433 35 467 60 q 357 -2 399 10 q 273 -15 315 -15 q 163 0 213 -15 q 67 43 113 14 l 67 220 l 103 220 l 152 98 q 203 77 176 84 q 269 71 231 71 q 355 95 318 71 q 393 175 393 119 q 369 243 393 218 q 309 285 345 268 q 231 317 273 303 q 152 353 189 331 q 92 410 116 375 q 69 504 69 446 q 91 598 69 560 q 149 661 113 637 q 227 696 184 686 q 311 707 270 707 q 406 694 355 707 q 495 659 458 682 l 495 484 "},"B":{"x_min":34,"x_max":720,"ha":781,"o":"m 34 967 l 392 967 q 443 967 412 967 q 507 960 473 967 q 576 940 542 954 q 638 899 611 926 q 682 830 665 872 q 700 727 700 789 q 652 586 700 641 q 526 509 604 531 q 583 493 551 505 q 647 454 616 481 q 698 382 677 427 q 720 266 720 337 q 690 141 720 192 q 613 58 660 90 q 507 12 566 26 q 391 -1 448 -1 q 259 -1 348 -1 q 34 -1 171 -1 l 34 36 l 155 87 l 155 879 l 34 930 l 34 967 m 596 278 q 577 369 596 333 q 528 423 559 404 q 457 450 497 443 q 371 457 416 457 l 269 457 l 269 85 q 337 85 308 85 q 388 85 365 85 q 538 132 480 85 q 596 278 596 180 m 577 720 q 559 801 577 770 q 514 849 542 832 q 447 872 485 866 q 367 878 409 878 l 270 878 l 270 547 l 358 547 q 446 556 406 547 q 515 585 487 565 q 560 640 544 606 q 577 720 577 673 "},"…":{"x_min":146,"x_max":1221,"ha":1361,"o":"m 1221 69 q 1201 4 1221 23 q 1138 -14 1182 -14 q 1070 5 1090 -14 q 1051 69 1051 24 q 1070 133 1051 114 q 1136 153 1090 153 q 1201 133 1181 153 q 1221 69 1221 114 m 316 69 q 296 4 316 23 q 233 -14 277 -14 q 165 5 185 -14 q 146 69 146 24 q 165 133 146 114 q 231 153 185 153 q 296 133 276 153 q 316 69 316 114 m 772 69 q 752 4 772 23 q 689 -14 733 -14 q 621 5 641 -14 q 602 69 602 24 q 621 133 602 114 q 687 153 641 153 q 752 133 732 153 q 772 69 772 114 "},"?":{"x_min":67.734375,"x_max":574,"ha":609,"o":"m 574 733 q 555 631 574 673 q 508 559 537 590 q 448 504 480 529 q 387 455 415 480 q 340 400 358 430 q 322 327 322 370 l 322 248 l 205 248 l 205 320 q 223 414 205 376 q 270 481 241 452 q 330 533 298 509 q 391 584 362 557 q 438 645 420 611 q 457 731 457 680 q 442 799 457 770 q 401 848 427 829 q 343 876 376 867 q 277 886 311 886 q 189 873 232 886 q 170 866 176 867 l 105 689 l 67 689 l 67 923 q 124 944 97 934 q 176 960 150 953 q 229 971 202 967 q 286 976 255 976 q 394 964 342 976 q 486 926 446 953 q 550 851 526 898 q 574 733 574 803 m 349 69 q 329 4 349 23 q 266 -14 310 -14 q 198 5 218 -14 q 179 69 179 24 q 198 133 179 114 q 264 153 218 153 q 329 133 309 153 q 349 69 349 114 "},"H":{"x_min":34,"x_max":954,"ha":988,"o":"m 275 538 l 716 538 l 716 874 l 596 924 l 596 960 l 954 960 l 954 924 l 834 874 l 834 87 l 954 36 l 954 0 l 596 0 l 596 36 l 716 86 l 716 435 l 275 435 l 275 87 l 395 36 l 395 0 l 34 0 l 34 36 l 155 87 l 155 874 l 34 924 l 34 960 l 395 960 l 395 924 l 275 874 l 275 538 "},"î":{"x_min":34.0625,"x_max":388,"ha":364,"o":"m 319 801 l 216 958 l 103 802 l 38 823 l 167 1039 l 270 1039 l 388 823 l 319 801 m 34 668 l 275 725 l 275 87 l 388 36 l 388 0 l 42 0 l 42 36 l 162 87 l 162 598 l 34 636 l 34 668 "},"c":{"x_min":48,"x_max":599.25,"ha":633,"o":"m 587 467 l 551 467 l 501 587 q 437 614 469 607 q 371 622 404 622 q 280 597 318 622 q 216 532 241 572 q 178 441 190 491 q 166 337 166 390 q 180 242 166 289 q 220 157 193 195 q 288 96 248 120 q 381 73 328 73 q 465 92 429 73 q 535 147 501 111 l 599 89 q 503 15 559 46 q 363 -15 446 -15 q 209 19 271 -15 q 112 107 148 54 q 62 221 76 159 q 48 337 48 283 q 70 474 48 408 q 135 592 92 540 q 235 675 177 644 q 366 707 294 707 q 472 695 419 707 q 587 634 525 684 l 587 467 "},"¶":{"x_min":79.15625,"x_max":678,"ha":795,"o":"m 678 -127 l 581 -127 l 581 886 l 463 886 l 463 -127 l 365 -127 l 365 444 q 258 457 310 444 q 167 500 207 470 q 103 579 128 530 q 79 698 79 627 q 103 820 79 770 q 170 901 128 870 q 269 947 212 933 q 389 961 325 961 l 678 961 l 678 -127 "},"−":{"x_min":75,"x_max":722,"ha":796,"o":"m 75 301 l 75 400 l 722 400 l 722 301 l 75 301 "},"≠":{"x_min":53,"x_max":743,"ha":795,"o":"m 352 158 l 248 -44 l 164 0 l 244 158 l 53 158 l 53 258 l 295 258 l 386 434 l 53 434 l 53 533 l 438 533 l 542 738 l 627 694 l 544 533 l 743 533 l 743 434 l 493 434 l 402 258 l 743 258 l 743 158 l 352 158 "},"•":{"x_min":105,"x_max":576,"ha":681,"o":"m 576 480 q 557 386 576 430 q 507 310 539 342 q 432 258 475 277 q 340 240 389 240 q 248 258 291 240 q 173 310 205 277 q 123 386 141 342 q 105 480 105 430 q 123 573 105 529 q 173 649 141 617 q 248 701 205 682 q 340 720 291 720 q 432 701 389 720 q 507 649 475 682 q 557 573 539 617 q 576 480 576 529 "},"¥":{"x_min":-80,"x_max":871,"ha":795,"o":"m 766 872 l 511 529 l 671 529 l 671 454 l 452 454 l 452 335 l 671 335 l 671 260 l 452 260 l 452 87 l 606 36 l 606 0 l 181 0 l 181 36 l 333 87 l 333 260 l 124 260 l 124 335 l 331 335 l 331 440 l 322 454 l 124 454 l 124 529 l 269 529 l 26 872 l -80 923 l -80 959 l 271 959 l 271 923 l 171 872 l 322 653 q 375 572 355 605 q 398 535 395 540 q 405 549 398 537 q 424 578 412 560 q 450 617 435 595 q 480 662 464 640 l 627 866 l 630 872 l 531 923 l 531 959 l 871 959 l 871 923 l 766 872 "},"(":{"x_min":101,"x_max":434.578125,"ha":443,"o":"m 434 979 q 339 857 381 924 q 269 715 298 790 q 224 561 239 640 q 210 405 210 481 q 227 260 210 331 q 273 122 244 188 q 342 -6 302 55 q 426 -123 381 -69 l 348 -172 q 250 -43 295 -111 q 172 95 205 23 q 120 246 139 168 q 101 408 101 324 q 118 586 101 502 q 169 744 136 669 q 249 888 201 819 q 357 1026 297 958 l 434 979 l 434 979 "},"U":{"x_min":-7,"x_max":937,"ha":930,"o":"m 230 334 q 283 145 230 209 q 462 82 336 82 q 578 102 531 82 q 652 161 624 123 q 693 252 681 200 q 706 369 706 305 l 706 873 l 589 924 l 589 961 l 937 961 l 937 924 l 816 873 l 816 549 q 816 380 816 463 q 795 213 816 286 q 732 89 775 140 q 622 11 689 37 q 460 -15 555 -15 q 194 77 278 -15 q 110 351 110 169 l 110 873 l -7 924 l -7 961 l 352 961 l 352 924 l 230 873 l 230 334 "},"◊":{"x_min":115.6875,"x_max":680.5625,"ha":795,"o":"m 446 -49 l 348 -49 l 115 494 l 348 1037 l 446 1037 l 680 494 l 446 -49 m 397 931 l 219 494 l 397 56 l 577 494 l 397 931 "},"Ñ":{"x_min":33.96875,"x_max":1002,"ha":1047,"o":"m 773 1180 q 753 1127 765 1152 q 725 1082 741 1102 q 686 1051 709 1063 q 632 1040 664 1040 q 570 1049 594 1040 q 525 1072 545 1059 q 489 1094 506 1084 q 448 1104 472 1104 q 402 1080 421 1104 q 379 1031 383 1056 l 312 1048 q 331 1099 319 1074 q 359 1144 342 1124 q 400 1175 376 1163 q 453 1187 423 1187 q 517 1177 491 1187 q 564 1155 544 1167 q 602 1132 585 1142 q 639 1123 620 1123 q 685 1143 669 1123 q 710 1196 701 1164 l 773 1180 l 773 1180 m 154 86 l 154 873 l 33 925 l 33 960 l 287 960 l 687 316 q 720 259 703 288 q 748 203 736 229 q 769 159 760 177 q 776 137 777 141 q 776 163 776 138 q 776 221 776 188 q 776 287 776 254 q 776 338 776 320 l 776 873 l 656 925 l 656 961 l 1002 961 l 1002 925 l 881 873 l 881 0 l 741 0 l 347 644 q 313 702 329 672 q 285 757 298 732 q 264 800 272 782 q 254 821 256 818 q 256 802 256 821 q 256 758 256 783 q 256 706 256 733 q 256 662 256 679 l 256 87 l 378 36 l 378 0 l 34 0 l 34 36 l 154 86 "},"F":{"x_min":33.859375,"x_max":664.546875,"ha":678,"o":"m 156 87 l 155 87 l 155 873 l 33 925 l 33 961 l 664 961 l 664 701 l 630 701 l 563 860 l 279 860 l 279 537 l 478 537 l 525 668 l 555 668 l 555 308 l 525 308 l 478 436 l 278 436 l 278 87 l 428 35 l 428 0 l 37 0 l 37 35 l 156 87 "},"­":{"x_min":72,"x_max":459,"ha":531,"o":"m 72 301 l 72 402 l 459 402 l 459 301 l 72 301 "},":":{"x_min":113,"x_max":284,"ha":397,"o":"m 284 69 q 264 4 284 23 q 201 -14 245 -14 q 133 5 153 -14 q 114 69 114 24 q 133 133 114 114 q 199 153 153 153 q 264 133 244 153 q 284 69 284 114 m 283 623 q 263 558 283 577 q 200 540 244 540 q 132 559 152 540 q 113 623 113 578 q 132 687 113 668 q 198 707 152 707 q 263 687 243 707 q 283 623 283 668 "},"Û":{"x_min":-7,"x_max":937,"ha":987,"o":"m 583 1020 l 480 1177 l 366 1022 l 301 1042 l 431 1258 l 534 1258 l 651 1042 l 583 1020 m 230 334 q 283 145 230 209 q 462 82 336 82 q 578 102 531 82 q 652 161 624 123 q 693 252 681 200 q 706 369 706 305 l 706 873 l 589 924 l 589 961 l 937 961 l 937 924 l 816 873 l 816 549 q 816 380 816 463 q 795 213 816 286 q 732 89 775 140 q 622 11 689 37 q 460 -15 555 -15 q 194 77 278 -15 q 110 351 110 169 l 110 873 l -7 924 l -7 961 l 352 961 l 352 924 l 230 873 l 230 334 "},"*":{"x_min":54,"x_max":524,"ha":576,"o":"m 342 710 l 447 553 l 375 514 l 288 684 l 197 514 l 124 549 l 236 708 l 54 708 l 54 773 l 235 773 l 130 930 l 202 969 l 289 800 l 380 969 l 453 934 l 341 775 l 524 775 l 524 710 l 342 710 "},"†":{"x_min":80,"x_max":714,"ha":794,"o":"m 450 600 l 450 0 l 342 0 l 342 600 l 80 600 l 80 692 l 346 692 l 346 961 l 456 961 l 456 692 l 714 692 l 714 600 l 450 600 "},"∕":{"x_min":2.71875,"x_max":519.9375,"ha":520,"o":"m 99 -36 l 2 -8 l 423 997 l 519 969 l 99 -36 "},"°":{"x_min":41,"x_max":441,"ha":504,"o":"m 441 777 q 428 702 441 738 q 390 639 415 666 q 330 595 366 612 q 251 579 295 579 q 165 594 204 579 q 98 636 126 609 q 55 699 70 663 q 41 777 41 735 q 55 855 41 819 q 98 918 70 891 q 161 960 125 945 q 241 976 197 976 q 311 965 275 976 q 375 932 347 955 q 422 871 404 909 q 441 777 441 833 m 362 777 q 331 872 362 832 q 241 912 300 912 q 190 900 212 912 q 151 869 167 888 q 128 826 136 851 q 120 777 120 802 q 130 728 120 752 q 157 685 140 704 q 198 654 174 666 q 251 643 223 643 q 300 654 280 643 q 334 685 321 666 q 355 728 348 704 q 362 777 362 752 "},"V":{"x_min":-27,"x_max":1002,"ha":968,"o":"m 897 873 l 539 0 l 427 0 l 79 873 l -27 923 l -27 960 l 319 960 l 319 923 l 211 872 l 212 868 l 448 265 q 476 180 465 220 q 491 125 487 140 q 509 187 496 148 q 536 263 521 226 l 771 872 l 664 923 l 664 960 l 1002 960 l 1002 923 l 897 873 "},"å":{"x_min":41,"x_max":643,"ha":682,"o":"m 422 82 q 339 11 384 37 q 234 -15 295 -15 q 92 39 144 -15 q 41 186 41 93 q 79 305 41 260 q 176 375 118 350 q 301 410 234 400 q 423 427 368 421 q 422 439 422 427 q 422 468 422 452 l 422 510 q 410 555 422 535 q 380 592 398 576 q 338 617 362 608 q 290 627 314 627 q 214 620 247 627 q 145 587 180 613 l 96 468 l 61 468 l 61 627 l 62 627 q 121 667 93 650 q 177 693 148 683 q 240 709 206 704 q 316 714 273 714 q 396 700 357 714 q 464 663 434 687 q 512 605 494 639 q 530 530 530 571 l 530 111 l 643 73 l 643 41 l 422 -16 l 422 82 m 436 903 q 395 801 436 841 q 290 761 355 761 q 185 797 227 761 q 143 903 143 834 q 184 1004 143 964 q 291 1045 226 1045 q 396 1008 356 1045 q 436 903 436 971 m 422 350 q 332 343 379 350 q 244 320 284 337 q 177 272 204 304 q 151 188 151 241 q 181 98 151 129 q 268 67 212 67 q 314 76 292 67 q 355 98 336 85 q 390 130 374 112 q 422 166 407 148 l 422 351 l 422 350 m 368 903 q 346 967 368 946 q 290 988 324 988 q 234 965 257 988 q 211 903 211 943 q 233 838 211 859 q 290 818 256 818 q 346 842 325 818 q 368 903 368 866 "}," ":{"x_min":0,"x_max":0,"ha":282},"0":{"x_min":56,"x_max":739.421875,"ha":794,"o":"m 739 483 q 721 316 739 404 q 664 155 704 229 q 560 32 625 80 q 401 -15 495 -15 q 236 31 302 -15 q 130 150 170 78 q 73 311 90 222 q 56 483 56 400 q 74 649 56 562 q 132 808 92 735 q 238 928 173 881 q 397 976 303 976 q 562 930 497 976 q 667 812 627 884 q 723 654 706 741 q 739 483 739 566 m 621 483 q 613 609 621 539 q 581 741 605 679 q 513 846 557 804 q 395 889 468 889 q 311 868 347 889 q 251 816 275 848 q 210 741 226 783 q 185 653 194 698 q 177 564 177 608 q 177 483 177 519 q 185 358 177 429 q 218 223 194 286 q 287 116 243 160 q 403 73 331 73 q 518 116 474 73 q 584 223 561 160 q 614 357 607 286 q 621 483 621 428 "},"”":{"x_min":144,"x_max":502.109375,"ha":619,"o":"m 434 626 l 366 626 l 366 962 l 502 962 l 434 626 m 212 626 l 144 626 l 144 962 l 280 962 l 212 626 "},"¾":{"x_min":35.1875,"x_max":1249,"ha":1269,"o":"m 157 87 l 157 597 l 35 597 l 35 649 l 158 691 l 158 764 q 171 882 158 828 q 215 975 185 936 q 297 1036 246 1014 q 421 1058 347 1058 l 511 1058 l 511 852 l 475 852 l 424 974 q 392 973 408 977 q 355 962 376 969 q 311 929 328 951 q 285 880 295 907 q 273 818 276 852 q 271 750 271 785 l 271 691 l 592 691 l 592 764 q 605 882 592 828 q 649 975 619 936 q 731 1036 680 1014 q 855 1058 781 1058 l 945 1058 l 945 852 l 909 852 l 858 974 q 826 973 842 977 q 789 962 810 969 q 745 929 762 951 q 719 880 729 907 q 707 818 710 852 q 705 750 705 785 l 705 691 l 994 691 l 1135 724 l 1135 87 l 1249 35 l 1249 0 l 903 0 l 903 35 l 1022 87 l 1022 597 l 704 597 l 704 87 l 853 35 l 853 0 l 471 0 l 471 35 l 591 87 l 591 597 l 270 597 l 270 87 l 419 35 l 419 0 l 37 0 l 37 35 l 157 87 m 1167 945 q 1082 868 1167 868 q 997 942 997 868 q 1082 1019 997 1019 q 1167 945 1167 1019 "},"@":{"x_min":122,"x_max":1370,"ha":1493,"o":"m 1370 439 q 1338 248 1370 334 q 1252 100 1306 162 q 1129 5 1198 39 q 984 -29 1059 -29 q 893 -3 926 -29 q 861 84 861 21 q 780 15 824 41 q 676 -11 735 -11 q 534 43 586 -11 q 483 190 483 97 q 521 309 483 264 q 618 379 560 354 q 742 415 676 404 q 865 431 809 425 q 864 443 864 431 q 864 472 864 456 l 864 513 q 852 559 864 538 q 822 596 840 580 q 780 621 804 612 q 732 630 756 630 q 655 623 689 630 q 587 591 622 616 l 538 472 l 503 472 l 503 631 l 504 631 q 563 671 535 654 q 619 697 590 687 q 682 713 648 708 q 759 718 715 718 q 838 704 799 718 q 907 667 877 691 q 955 608 937 642 q 974 534 974 574 l 974 164 q 974 127 974 146 q 980 94 974 109 q 997 69 986 79 q 1027 60 1009 60 q 1115 91 1073 60 q 1191 174 1158 122 q 1242 294 1223 226 q 1262 432 1262 361 q 1223 634 1262 548 q 1119 778 1184 721 q 968 864 1053 836 q 789 893 883 893 q 561 853 664 893 q 385 743 459 814 q 272 574 312 672 q 232 359 232 476 q 266 125 232 229 q 365 -52 300 21 q 526 -165 430 -126 q 745 -205 621 -205 q 811 -199 775 -205 q 882 -184 847 -194 q 951 -160 918 -174 q 1010 -130 984 -147 l 1051 -201 q 977 -235 1018 -219 q 891 -263 935 -251 q 803 -283 847 -276 q 724 -290 760 -290 q 474 -245 586 -290 q 284 -118 362 -201 q 164 82 206 -35 q 122 351 122 201 q 173 598 122 484 q 315 797 224 712 q 532 930 406 882 q 806 978 658 978 q 1018 943 916 978 q 1199 841 1120 908 q 1323 673 1277 773 q 1370 439 1370 572 m 864 354 q 774 348 821 354 q 686 325 726 341 q 619 276 646 308 q 593 192 593 245 q 623 102 593 133 q 710 71 654 71 q 796 101 759 71 q 864 168 834 132 q 864 182 864 173 q 864 209 864 191 q 864 262 864 228 q 864 354 864 296 "},"ö":{"x_min":48,"x_max":690.421875,"ha":738,"o":"m 690 346 q 668 207 690 272 q 606 92 646 141 q 506 14 565 43 q 373 -15 448 -15 q 231 12 293 -15 q 129 89 170 40 q 68 203 88 137 q 48 346 48 269 q 71 483 48 418 q 137 598 94 548 q 240 677 180 648 q 376 707 301 707 q 515 679 456 707 q 613 602 574 651 q 671 488 652 554 q 690 346 690 422 m 572 346 q 562 442 572 393 q 529 532 552 491 q 468 597 506 572 q 374 622 430 622 q 280 597 318 622 q 215 532 241 572 q 177 442 189 491 q 166 346 166 393 q 177 248 166 297 q 214 159 189 198 q 278 94 238 119 q 374 69 317 69 q 466 94 429 69 q 527 159 503 119 q 561 248 551 198 q 572 346 572 297 m 296 886 q 211 809 296 809 q 126 883 126 809 q 211 960 126 960 q 296 886 296 960 m 613 883 q 528 806 613 806 q 443 880 443 806 q 528 957 443 957 q 613 883 613 957 "},"i":{"x_min":34.0625,"x_max":388,"ha":408,"o":"m 34 668 l 275 724 l 275 87 l 388 36 l 388 0 l 42 0 l 42 36 l 162 87 l 162 598 l 34 636 l 34 668 m 306 945 q 221 868 306 868 q 136 942 136 868 q 221 1019 136 1019 q 306 945 306 1019 "},"≤":{"x_min":50,"x_max":740,"ha":794,"o":"m 50 369 l 50 473 l 740 732 l 740 624 l 184 421 l 740 220 l 740 113 l 50 369 m 50 -42 l 50 58 l 740 58 l 740 -42 l 50 -42 "},"Õ":{"x_min":54,"x_max":959,"ha":1095,"o":"m 782 1169 q 762 1116 774 1141 q 734 1071 750 1091 q 695 1040 718 1052 q 642 1029 673 1029 q 579 1038 603 1029 q 535 1061 554 1048 q 498 1083 515 1073 q 458 1093 481 1093 q 411 1069 430 1093 q 388 1020 392 1045 l 321 1037 q 340 1088 328 1063 q 368 1133 351 1113 q 409 1164 386 1152 q 462 1176 432 1176 q 526 1166 500 1176 q 573 1144 553 1156 q 612 1121 594 1131 q 648 1112 629 1112 q 694 1132 678 1112 q 719 1185 710 1153 l 782 1169 l 782 1169 m 959 479 q 924 280 959 370 q 831 124 890 190 q 690 21 772 58 q 515 -15 609 -15 q 332 20 417 -15 q 186 120 248 55 q 89 276 124 184 q 54 479 54 368 q 91 678 54 587 q 192 835 128 769 q 339 939 255 902 q 515 976 422 976 q 694 940 613 976 q 835 839 776 905 q 926 683 893 774 q 959 479 959 591 m 834 476 q 812 633 834 559 q 749 760 790 706 q 648 847 708 815 q 511 879 588 879 q 381 850 441 879 q 275 770 320 822 q 204 645 230 717 q 179 481 179 572 q 203 322 179 395 q 272 196 228 250 q 378 112 316 143 q 515 82 440 82 q 648 113 588 82 q 748 197 707 144 q 812 322 790 251 q 834 476 834 394 "},"þ":{"x_min":27,"x_max":744.421875,"ha":792,"o":"m 256 604 q 343 677 295 648 q 458 707 391 707 q 589 679 534 707 q 678 604 643 651 q 728 497 713 558 q 744 369 744 436 q 726 230 744 298 q 672 107 709 161 q 578 19 635 53 q 440 -15 521 -15 q 334 0 376 -15 q 256 48 291 14 l 256 -269 l 405 -314 l 405 -351 l 27 -351 l 27 -314 l 147 -269 l 147 918 l 27 955 l 27 988 l 256 1045 l 256 604 m 626 366 q 614 459 626 414 q 579 541 602 505 q 519 600 556 577 q 434 622 483 622 q 331 582 374 622 q 260 491 288 543 l 260 158 q 335 91 288 112 q 432 69 382 69 q 528 99 490 69 q 587 174 565 129 q 617 271 609 219 q 626 366 626 322 "},"]":{"x_min":6.703125,"x_max":294,"ha":442,"o":"m 294 -153 l 9 -153 l 9 -70 l 185 -70 l 185 928 l 6 928 l 6 1011 l 294 1011 l 294 -153 "},"m":{"x_min":29,"x_max":1208,"ha":1222,"o":"m 266 588 q 362 671 308 636 q 482 706 417 706 q 598 674 544 706 q 664 577 651 642 q 711 624 686 600 q 765 665 736 647 q 824 694 793 683 q 888 706 855 706 q 1037 651 989 706 q 1086 496 1086 596 l 1086 87 l 1208 36 l 1208 0 l 861 0 l 861 36 l 972 86 l 972 502 q 942 582 972 553 q 863 612 912 612 q 809 600 834 612 q 761 568 784 588 q 718 525 739 549 q 677 477 697 502 l 677 87 l 791 36 l 791 0 l 460 0 l 460 36 l 564 86 l 564 500 q 531 582 564 552 q 449 612 498 612 q 393 600 418 612 q 345 568 368 588 q 304 525 323 549 q 266 480 285 502 l 266 87 l 379 36 l 379 0 l 37 0 l 37 36 l 156 86 l 156 587 l 29 624 l 29 656 l 266 712 l 266 588 "},"8":{"x_min":69,"x_max":709,"ha":778,"o":"m 709 247 q 681 126 709 176 q 608 45 653 76 q 504 0 563 14 q 384 -15 446 -15 q 273 -2 330 -15 q 171 39 217 10 q 97 116 126 68 q 69 234 69 164 q 128 393 69 332 q 281 486 187 454 q 130 584 179 522 q 82 724 82 645 q 109 834 82 787 q 182 912 137 881 q 283 960 227 944 q 394 976 339 976 q 499 966 444 976 q 598 930 553 956 q 672 858 643 903 q 701 742 701 813 q 684 655 701 695 q 640 583 668 615 q 576 528 613 551 q 496 491 538 505 q 652 397 596 459 q 709 247 709 334 m 592 239 q 574 317 592 286 q 527 370 556 348 q 461 409 499 393 q 383 443 424 426 q 305 409 342 426 q 240 368 268 391 q 195 314 211 345 q 179 239 179 283 q 197 164 179 195 q 245 111 215 132 q 311 80 274 90 q 386 71 348 71 q 459 81 422 71 q 525 112 496 91 q 573 164 555 133 q 592 239 592 195 m 589 730 q 572 802 589 772 q 529 853 556 833 q 467 883 501 873 q 398 893 433 893 q 325 881 361 893 q 261 849 289 870 q 215 797 233 827 q 198 727 198 766 q 217 657 198 687 q 266 604 236 627 q 330 565 296 581 q 396 534 365 548 q 467 564 432 548 q 529 603 501 580 q 572 656 556 626 q 589 730 589 687 "},"ž":{"x_min":54.578125,"x_max":705.140625,"ha":603,"o":"m 435 801 l 332 801 l 215 1016 l 283 1038 l 386 881 l 499 1037 l 564 1016 l 435 801 m 309 165 q 287 138 298 151 q 266 114 276 125 q 245 89 256 100 q 281 89 264 89 q 313 92 296 92 q 344 92 330 92 l 596 92 l 646 215 l 682 215 l 682 0 l 54 0 l 453 551 q 473 577 464 565 q 492 601 483 590 q 513 622 502 613 q 476 622 494 622 q 444 618 461 618 q 413 618 427 618 l 160 618 l 110 495 l 75 495 l 75 712 l 705 712 l 309 165 "},"R":{"x_min":34,"x_max":822.390625,"ha":802,"o":"m 735 706 q 719 598 735 641 q 677 526 704 556 q 613 480 650 497 q 534 452 576 463 l 713 87 l 822 36 l 822 0 l 628 0 l 403 437 l 275 437 l 275 87 l 395 36 l 395 0 l 34 0 l 34 36 l 154 87 l 154 872 l 34 922 l 34 960 l 436 960 q 483 960 454 960 q 546 955 513 960 q 613 937 579 950 q 673 896 646 924 q 717 822 700 868 q 735 706 735 775 m 275 527 l 391 527 q 473 530 433 527 q 543 551 512 533 q 592 603 573 568 q 612 704 612 639 q 593 800 612 766 q 546 852 575 835 q 482 872 518 868 q 412 877 446 877 q 332 877 372 877 q 275 875 291 877 l 275 527 "},"á":{"x_min":41,"x_max":643,"ha":682,"o":"m 295 802 l 228 832 l 368 1058 l 478 1004 l 295 802 m 422 82 q 339 11 383 37 q 234 -15 295 -15 q 92 39 144 -15 q 41 186 41 93 q 79 305 41 260 q 176 375 118 350 q 300 410 234 400 q 423 427 367 421 q 422 439 422 427 q 422 468 422 452 l 422 510 q 410 555 422 535 q 380 592 398 576 q 338 617 362 608 q 290 627 314 627 q 213 620 247 627 q 145 587 180 613 l 96 468 l 61 468 l 61 627 l 62 627 q 121 667 93 650 q 177 693 148 683 q 239 709 206 704 q 316 714 273 714 q 396 700 357 714 q 464 663 434 687 q 512 605 494 639 q 530 530 530 571 l 530 111 l 643 73 l 643 41 l 422 -16 l 422 82 m 422 350 q 332 343 379 350 q 244 320 284 337 q 177 272 204 304 q 151 188 151 241 q 181 98 151 129 q 268 67 212 67 q 314 76 292 67 q 355 98 336 85 q 390 130 374 112 q 422 166 407 148 l 422 351 l 422 350 "},"×":{"x_min":78.9375,"x_max":717.3125,"ha":795,"o":"m 638 29 l 394 279 l 151 29 l 78 97 l 330 348 l 83 598 l 161 669 l 402 423 l 645 672 l 717 606 l 470 354 l 717 102 l 638 29 "},"o":{"x_min":48,"x_max":690.421875,"ha":738,"o":"m 690 346 q 668 207 690 272 q 606 92 646 141 q 506 14 565 43 q 373 -15 448 -15 q 231 12 293 -15 q 129 89 170 40 q 68 203 88 137 q 48 346 48 269 q 71 483 48 418 q 137 598 94 548 q 240 677 180 648 q 376 707 301 707 q 515 679 456 707 q 613 602 574 651 q 671 488 652 554 q 690 346 690 422 m 572 346 q 562 442 572 393 q 529 532 552 491 q 468 597 506 572 q 374 622 430 622 q 280 597 318 622 q 215 532 241 572 q 177 442 189 491 q 166 346 166 393 q 177 248 166 297 q 214 159 189 198 q 278 94 238 119 q 374 69 317 69 q 466 94 429 69 q 527 159 503 119 q 561 248 551 198 q 572 346 572 297 "},"5":{"x_min":88.828125,"x_max":723,"ha":802,"o":"m 291 861 l 250 666 q 240 628 246 644 q 231 605 234 612 q 318 635 268 625 q 415 646 367 646 q 538 625 482 646 q 635 567 595 605 q 699 475 676 529 q 723 354 723 421 q 689 200 723 269 q 601 84 656 132 q 472 10 546 36 q 320 -15 399 -15 q 219 -5 273 -15 q 120 20 165 3 l 118 20 q 97 26 105 22 l 97 261 l 124 261 l 205 93 q 261 84 233 84 q 316 84 288 84 q 424 101 373 84 q 514 152 475 118 q 575 234 553 186 q 598 345 598 283 q 581 429 598 391 q 537 493 565 467 q 471 534 509 519 q 388 549 433 549 q 268 523 322 549 q 186 454 214 498 l 88 454 l 195 961 l 696 961 l 696 861 l 291 861 "},"õ":{"x_min":48,"x_max":690.421875,"ha":795,"o":"m 600 954 q 580 901 592 926 q 552 856 569 876 q 514 825 536 837 q 460 814 491 814 q 397 823 422 814 q 353 846 373 833 q 316 868 333 858 q 276 878 299 878 q 230 854 249 878 q 207 805 211 830 l 140 822 q 158 873 147 848 q 187 918 170 898 q 227 949 204 937 q 280 961 250 961 q 345 951 318 961 q 392 929 371 941 q 430 906 412 916 q 467 897 448 897 q 512 917 497 897 q 537 970 528 938 l 600 954 l 600 954 m 690 346 q 668 207 690 272 q 606 92 646 141 q 506 14 565 43 q 373 -15 448 -15 q 231 12 293 -15 q 129 89 170 40 q 68 203 88 137 q 48 346 48 269 q 71 483 48 418 q 137 598 94 548 q 240 677 180 648 q 376 707 301 707 q 515 679 456 707 q 613 602 574 651 q 671 488 652 554 q 690 346 690 422 m 572 346 q 562 442 572 393 q 529 532 552 491 q 468 597 506 572 q 374 622 430 622 q 280 597 318 622 q 215 532 241 572 q 177 442 189 491 q 166 346 166 393 q 177 248 166 297 q 214 159 189 198 q 278 94 238 119 q 374 69 317 69 q 466 94 429 69 q 527 159 503 119 q 561 248 551 198 q 572 346 572 297 "},"7":{"x_min":87,"x_max":757.671875,"ha":803,"o":"m 256 0 l 137 0 l 530 770 q 572 841 553 812 q 591 869 582 856 q 552 864 584 867 q 485 861 520 861 l 165 861 l 115 738 l 87 738 l 87 960 l 88 960 l 88 960 l 757 960 l 256 0 "},"K":{"x_min":34,"x_max":931.28125,"ha":925,"o":"m 735 -1 l 296 488 l 658 877 l 559 920 l 559 957 l 906 957 l 906 920 l 805 872 l 450 497 l 821 86 l 931 34 l 931 -1 l 735 -1 m 275 87 l 395 36 l 395 0 l 34 0 l 34 36 l 155 87 l 155 873 l 34 923 l 34 960 l 395 960 l 395 923 l 275 873 l 275 87 "},",":{"x_min":93.921875,"x_max":286,"ha":380,"o":"m 286 50 q 220 -106 286 -54 q 125 -156 183 -138 l 107 -110 q 176 -62 157 -88 q 196 14 196 -36 l 179 14 q 93 87 93 14 q 117 145 93 123 q 179 167 140 167 q 286 50 286 167 "},"d":{"x_min":48,"x_max":761,"ha":775,"o":"m 538 -20 q 538 22 538 -8 q 538 89 538 53 q 450 14 499 43 q 333 -15 400 -15 q 203 12 257 -15 q 113 86 148 40 q 63 193 79 132 q 48 321 48 254 q 65 460 48 391 q 118 584 82 529 q 210 672 154 638 q 347 707 267 707 q 457 691 411 707 q 539 641 503 676 l 539 915 l 411 954 l 411 984 l 646 1041 l 648 1043 l 648 103 l 761 66 l 761 36 l 539 -20 l 538 -20 m 539 533 q 457 600 510 579 q 355 622 404 622 q 260 591 296 622 q 202 516 223 561 q 173 419 181 472 q 166 323 166 366 q 177 231 166 276 q 212 150 189 186 q 272 91 235 114 q 358 69 309 69 q 414 80 388 69 q 464 109 441 91 q 505 152 487 128 q 539 201 524 176 l 539 533 l 539 533 "},"¨":{"x_min":68,"x_max":555,"ha":618,"o":"m 238 1209 q 153 1132 238 1132 q 68 1206 68 1132 q 153 1283 68 1283 q 238 1209 238 1283 m 555 1206 q 470 1129 555 1129 q 385 1203 385 1129 q 470 1280 385 1280 q 555 1206 555 1280 "},"Ô":{"x_min":54,"x_max":959,"ha":1095,"o":"m 629 1023 l 526 1180 l 413 1024 l 347 1045 l 477 1260 l 580 1260 l 697 1045 l 629 1023 m 959 479 q 924 280 959 370 q 831 124 890 190 q 690 21 772 58 q 515 -15 609 -15 q 332 20 417 -15 q 186 120 248 55 q 89 276 124 184 q 54 479 54 368 q 91 678 54 587 q 192 835 128 769 q 339 939 255 902 q 515 976 422 976 q 694 940 613 976 q 835 839 776 905 q 926 683 893 774 q 959 479 959 591 m 834 476 q 812 633 834 559 q 749 760 790 706 q 648 847 708 815 q 511 879 588 879 q 381 850 441 879 q 275 770 320 822 q 204 645 230 717 q 179 481 179 572 q 203 322 179 395 q 272 196 228 250 q 378 112 316 143 q 515 82 440 82 q 648 113 588 82 q 748 197 707 144 q 812 322 790 251 q 834 476 834 394 "},"E":{"x_min":34,"x_max":695.859375,"ha":757,"o":"m 674 0 l 34 0 l 34 36 l 155 87 l 155 873 l 34 925 l 34 961 l 664 961 l 664 701 l 630 701 l 563 860 l 279 860 l 279 537 l 478 537 l 525 668 l 555 668 l 555 308 l 525 308 l 478 436 l 278 436 l 278 103 l 576 103 l 661 261 l 695 261 l 674 0 "},"Y":{"x_min":-27,"x_max":924,"ha":883,"o":"m 819 872 l 505 448 l 505 87 l 659 36 l 659 0 l 234 0 l 234 36 l 386 87 l 386 439 l 79 872 l -27 923 l -27 960 l 324 960 l 324 923 l 224 872 l 375 654 q 427 575 406 607 q 450 536 447 543 q 477 580 453 541 q 533 662 502 618 l 680 866 l 683 872 l 584 923 l 584 960 l 924 960 l 924 923 l 819 872 "},"\"":{"x_min":150,"x_max":470,"ha":620,"o":"m 470 624 l 372 624 l 372 961 l 470 961 l 470 624 m 248 624 l 150 624 l 150 961 l 248 961 l 248 624 "},"‹":{"x_min":50.359375,"x_max":326.671875,"ha":397,"o":"m 164 365 l 313 140 l 259 108 l 50 365 l 273 636 l 326 604 l 164 365 "},"˙":{"x_min":103,"x_max":273,"ha":363,"o":"m 273 891 q 253 826 273 845 q 190 808 234 808 q 122 827 142 808 q 103 891 103 846 q 122 955 103 936 q 188 975 142 975 q 253 955 233 975 q 273 891 273 936 "},"ê":{"x_min":48,"x_max":620,"ha":718,"o":"m 452 801 l 348 958 l 235 802 l 170 823 l 299 1038 l 403 1038 l 520 823 l 452 801 m 158 347 q 166 243 158 291 q 196 157 175 194 q 254 99 217 120 q 343 78 290 78 q 452 99 400 78 q 543 161 504 120 l 603 101 q 490 16 550 47 q 353 -15 430 -15 q 212 13 269 -15 q 117 90 154 41 q 64 204 80 139 q 48 344 48 269 q 67 477 48 412 q 124 593 86 541 q 216 675 162 644 q 343 707 271 707 q 470 680 418 707 q 556 610 523 654 q 605 510 590 566 q 620 395 620 454 l 620 347 l 158 347 m 515 429 q 504 501 515 467 q 472 560 494 535 q 416 600 449 585 q 339 615 383 615 q 265 599 296 615 q 215 557 235 583 q 183 497 194 531 q 164 429 171 463 l 515 429 l 515 429 "},"Ï":{"x_min":-27,"x_max":460,"ha":429,"o":"m 275 87 l 395 36 l 395 0 l 34 0 l 34 36 l 155 87 l 155 873 l 34 923 l 34 960 l 395 960 l 395 923 l 275 873 l 275 87 m 143 1152 q 58 1075 143 1075 q -27 1149 -27 1075 q 58 1226 -27 1226 q 143 1152 143 1226 m 460 1149 q 375 1072 460 1072 q 290 1146 290 1072 q 375 1223 290 1223 q 460 1149 460 1223 "},"„":{"x_min":144,"x_max":502.109375,"ha":619,"o":"m 434 -203 l 366 -203 l 366 133 l 502 133 l 434 -203 m 212 -203 l 144 -203 l 144 133 l 280 133 l 212 -203 "},"Â":{"x_min":-37,"x_max":993,"ha":935,"o":"m 586 1023 l 483 1180 l 369 1024 l 304 1045 l 433 1260 l 537 1260 l 654 1045 l 586 1023 m 69 88 l 433 960 l 545 960 l 885 90 l 993 36 l 993 0 l 646 0 l 646 36 l 754 90 l 670 319 l 282 319 l 281 316 l 198 90 l 307 36 l 307 0 l -37 0 l -37 36 l 69 88 m 525 696 q 510 734 518 712 q 496 780 503 757 q 485 821 489 803 q 479 842 480 838 q 474 826 479 841 q 463 790 469 812 q 448 743 457 768 q 432 698 440 718 l 322 419 l 631 419 l 525 696 "},"Í":{"x_min":34,"x_max":399.09375,"ha":433,"o":"m 210 1023 l 144 1053 l 290 1279 l 399 1225 l 210 1023 m 275 87 l 395 36 l 395 0 l 34 0 l 34 36 l 155 87 l 155 873 l 34 923 l 34 960 l 395 960 l 395 923 l 275 873 l 275 87 "},"´":{"x_min":98,"x_max":352.53125,"ha":363,"o":"m 164 801 l 98 830 l 243 1056 l 352 1002 l 164 801 "},"ì":{"x_min":-4.046875,"x_max":388,"ha":364,"o":"m 183 802 l -4 1004 l 104 1058 l 250 831 l 183 802 m 34 667 l 275 724 l 275 87 l 388 36 l 388 0 l 42 0 l 42 36 l 162 87 l 162 598 l 34 636 l 34 667 "},"±":{"x_min":72,"x_max":723,"ha":795,"o":"m 450 367 l 450 135 l 341 135 l 341 367 l 76 367 l 76 468 l 344 468 l 344 695 l 452 695 l 452 468 l 723 468 l 723 367 l 450 367 m 72 0 l 72 101 l 719 101 l 719 0 l 72 0 "},"Ú":{"x_min":-7,"x_max":937,"ha":987,"o":"m 490 1022 l 424 1051 l 564 1277 l 673 1223 l 490 1022 m 230 334 q 283 145 230 209 q 462 82 336 82 q 578 102 531 82 q 652 161 624 123 q 693 252 681 200 q 706 369 706 305 l 706 873 l 589 924 l 589 961 l 937 961 l 937 924 l 816 873 l 816 549 q 816 380 816 463 q 795 213 816 286 q 732 89 775 140 q 622 11 689 37 q 460 -15 555 -15 q 194 77 278 -15 q 110 351 110 169 l 110 873 l -7 924 l -7 961 l 352 961 l 352 924 l 230 873 l 230 334 "},"|":{"x_min":244,"x_max":349,"ha":593,"o":"m 244 -351 l 244 1043 l 349 1043 l 349 -351 l 244 -351 "},"§":{"x_min":95,"x_max":679,"ha":774,"o":"m 653 739 l 618 739 l 569 854 q 503 879 533 871 q 432 887 473 887 q 310 861 357 887 q 264 776 264 835 q 294 698 264 726 q 371 653 325 671 q 471 623 417 636 q 571 589 525 609 q 648 537 617 569 q 679 446 679 504 q 664 385 679 411 q 626 337 650 358 q 573 299 602 317 q 515 268 544 282 q 568 241 544 257 q 610 205 593 226 q 637 156 627 184 q 648 88 648 127 q 621 -14 648 28 q 552 -86 594 -57 q 456 -129 510 -114 q 348 -144 402 -144 q 223 -125 281 -144 q 108 -70 164 -106 l 108 106 l 144 106 l 191 -10 q 338 -52 258 -52 q 404 -46 371 -52 q 465 -26 438 -40 q 510 14 492 -11 q 528 81 528 40 q 496 151 528 125 q 415 194 464 176 q 311 225 367 211 q 207 260 255 239 q 127 316 159 282 q 95 410 95 351 q 109 473 95 446 q 148 522 124 501 q 201 559 171 543 q 261 590 231 576 q 176 658 209 618 q 144 757 144 698 q 169 859 144 817 q 235 927 194 901 q 327 965 276 953 q 432 977 379 977 q 551 962 498 977 q 653 917 604 947 l 653 739 m 569 415 q 557 462 569 444 q 528 491 545 480 q 489 509 511 503 q 447 523 468 516 l 330 559 q 289 539 311 551 q 248 512 268 528 q 216 479 229 497 q 204 439 204 461 q 233 372 204 394 q 298 339 262 350 l 444 294 q 483 315 461 303 q 524 342 504 328 q 556 376 543 357 q 569 415 569 394 "},"Ý":{"x_min":-27,"x_max":924,"ha":833,"o":"m 473 1028 l 407 1057 l 547 1283 l 656 1229 l 473 1028 m 819 872 l 505 448 l 505 87 l 659 36 l 659 0 l 234 0 l 234 36 l 386 87 l 386 439 l 79 872 l -27 923 l -27 960 l 324 960 l 324 923 l 224 872 l 375 654 q 427 575 406 607 q 450 536 447 543 q 477 580 453 541 q 533 662 502 618 l 680 866 l 683 872 l 584 923 l 584 960 l 924 960 l 924 923 l 819 872 "},"b":{"x_min":0,"x_max":728.421875,"ha":776,"o":"m 240 1038 l 240 605 q 325 679 279 652 q 433 707 371 707 q 565 679 509 707 q 656 605 620 651 q 710 498 693 559 q 728 371 728 437 q 710 231 728 300 q 654 107 693 162 q 559 19 616 53 q 420 -15 501 -15 q 313 0 357 -15 q 234 50 269 15 l 128 0 l 128 915 l 0 954 l 0 984 l 240 1038 m 610 367 q 597 460 610 415 q 558 540 584 505 q 495 597 533 576 q 408 619 457 619 q 308 581 348 619 q 240 492 268 544 l 240 161 q 316 92 268 115 q 412 69 363 69 q 509 100 471 69 q 569 175 547 130 q 601 271 592 219 q 610 367 610 323 "},"q":{"x_min":48,"x_max":769,"ha":770,"o":"m 539 87 q 443 13 499 41 q 326 -15 387 -15 q 197 12 250 -15 q 111 87 144 40 q 62 194 77 133 q 48 322 48 255 q 66 459 48 390 q 123 583 84 527 q 222 672 162 638 q 366 707 281 707 q 421 702 397 707 q 466 690 446 698 q 505 669 487 682 q 543 640 524 657 l 651 691 l 651 -267 l 769 -314 l 769 -351 l 419 -351 l 419 -314 l 539 -267 l 539 87 m 537 532 q 466 600 509 577 q 374 622 423 622 q 275 592 316 622 q 211 517 235 562 q 176 420 186 472 q 166 325 166 368 q 176 232 166 277 q 209 150 186 186 q 267 91 231 114 q 351 69 302 69 q 409 80 381 69 q 460 109 437 91 q 503 152 484 128 q 537 201 522 176 l 537 532 l 537 532 "},"Ω":{"x_min":58.421875,"x_max":953.578125,"ha":1012,"o":"m 58 273 l 82 273 l 172 94 l 330 94 l 330 93 l 332 93 l 332 192 q 219 248 267 210 q 136 335 171 285 q 85 446 102 385 q 69 573 69 507 q 103 745 69 666 q 196 880 137 824 q 334 969 255 937 q 503 1001 413 1001 q 673 969 593 1001 q 812 882 752 938 q 907 747 872 825 q 942 575 942 669 q 924 448 942 509 q 875 336 907 387 q 793 248 842 285 q 680 192 744 210 l 680 93 l 682 93 l 682 94 l 839 94 l 929 273 l 953 273 l 953 0 l 593 0 l 593 253 q 772 362 711 277 q 833 569 833 448 q 807 701 833 641 q 738 806 782 762 q 634 876 694 851 q 503 901 574 901 q 374 876 434 901 q 270 806 314 851 q 202 700 227 762 q 178 569 178 639 q 193 457 178 510 q 239 362 209 403 q 314 291 269 320 q 419 253 359 263 l 419 0 l 58 0 l 58 273 "},"Ö":{"x_min":54,"x_max":959,"ha":1095,"o":"m 959 479 q 924 280 959 370 q 831 124 890 190 q 690 21 772 58 q 515 -15 609 -15 q 332 20 417 -15 q 186 120 248 55 q 89 276 124 184 q 54 479 54 368 q 91 678 54 587 q 192 835 128 769 q 339 939 255 902 q 515 976 422 976 q 694 940 613 976 q 835 839 776 905 q 926 683 893 774 q 959 479 959 591 m 834 476 q 812 633 834 559 q 749 760 790 706 q 648 847 708 815 q 511 879 588 879 q 381 850 441 879 q 275 770 320 822 q 204 645 230 717 q 179 481 179 572 q 203 322 179 395 q 272 196 228 250 q 378 112 316 143 q 515 82 440 82 q 648 113 588 82 q 748 197 707 144 q 812 322 790 251 q 834 476 834 394 m 434 1161 q 349 1084 434 1084 q 264 1158 264 1084 q 349 1235 264 1235 q 434 1161 434 1235 m 751 1158 q 666 1081 751 1081 q 581 1155 581 1081 q 666 1232 581 1232 q 751 1158 751 1232 "},"ﬂ":{"x_min":35,"x_max":826,"ha":840,"o":"m 156 87 l 156 597 l 35 597 l 35 649 l 157 691 l 157 764 q 173 882 157 828 q 231 975 189 936 q 345 1035 272 1014 q 529 1057 417 1057 q 614 1048 571 1057 q 698 1023 658 1039 l 698 87 l 826 35 l 826 0 l 464 0 l 464 35 l 584 87 l 584 945 q 528 967 559 959 q 467 976 498 976 q 407 972 436 976 q 354 962 377 969 q 311 929 327 950 q 285 880 294 907 q 272 818 275 852 q 270 750 270 785 l 270 691 l 432 691 l 432 597 l 269 597 l 269 87 l 419 35 l 419 0 l 37 0 l 37 35 l 156 87 "},"z":{"x_min":54.578125,"x_max":705.140625,"ha":766,"o":"m 309 165 q 287 138 298 151 q 266 114 276 125 q 245 89 256 100 q 281 89 264 89 q 313 92 296 92 q 344 92 330 92 l 596 92 l 646 215 l 682 215 l 682 0 l 54 0 l 453 551 q 473 577 464 565 q 492 601 483 590 q 513 622 502 613 q 476 622 494 622 q 444 618 461 618 q 413 618 427 618 l 160 618 l 110 495 l 75 495 l 75 712 l 705 712 l 309 165 "},"™":{"x_min":47.359375,"x_max":1311,"ha":1359,"o":"m 1232 473 l 1311 440 l 1311 417 l 1074 417 l 1074 440 l 1153 473 l 1153 925 l 956 417 l 882 417 l 691 924 l 690 924 l 690 473 l 769 440 l 769 417 l 532 417 l 532 440 l 611 473 l 611 986 l 532 1020 l 532 1043 l 715 1043 l 896 590 q 914 534 907 561 q 924 498 921 507 q 936 539 928 514 q 952 589 944 565 l 1131 1043 l 1311 1043 l 1311 1020 l 1232 986 l 1232 473 m 489 864 l 446 978 l 322 978 l 322 473 l 418 440 l 418 417 l 147 417 l 147 440 l 242 473 l 242 978 l 115 978 l 73 864 l 47 864 l 47 1045 l 512 1045 l 512 864 l 489 864 "},"ã":{"x_min":41,"x_max":643,"ha":682,"o":"m 517 949 q 497 896 509 921 q 469 851 486 871 q 431 820 453 832 q 377 809 408 809 q 314 818 339 809 q 270 841 289 828 q 233 863 250 853 q 193 873 216 873 q 146 849 166 873 q 123 800 127 825 l 57 817 q 75 868 64 843 q 104 913 87 893 q 144 944 121 932 q 197 956 167 956 q 262 946 235 956 q 308 924 288 936 q 347 901 329 911 q 383 892 364 892 q 429 912 413 892 q 454 965 445 933 l 517 949 l 517 949 m 422 82 q 339 11 383 37 q 234 -15 295 -15 q 92 39 144 -15 q 41 186 41 93 q 79 305 41 260 q 176 375 118 350 q 300 411 234 400 q 423 427 367 421 q 422 439 422 427 q 422 468 422 452 l 422 510 q 410 555 422 535 q 380 592 398 576 q 338 617 362 608 q 290 627 314 627 q 213 620 247 627 q 145 587 180 613 l 96 468 l 61 468 l 61 627 l 62 627 q 121 667 93 650 q 177 693 148 683 q 239 709 206 704 q 316 714 273 714 q 396 700 357 714 q 464 663 434 687 q 512 605 494 639 q 530 530 530 571 l 530 111 l 643 73 l 643 41 l 422 -16 l 422 82 m 422 350 q 332 344 379 350 q 244 321 284 338 q 177 273 204 304 q 151 188 151 241 q 181 98 151 129 q 268 67 212 67 q 314 76 292 67 q 355 98 336 85 q 390 130 374 112 q 422 167 407 149 l 422 352 l 422 350 "},"æ":{"x_min":41,"x_max":991,"ha":1045,"o":"m 530 347 q 538 243 530 291 q 568 157 547 194 q 625 99 589 120 q 714 78 661 78 q 823 99 771 78 q 914 161 875 120 l 974 101 q 861 16 921 47 q 724 -15 801 -15 q 562 23 625 -15 q 464 127 499 61 q 421 69 447 96 q 362 24 394 43 q 297 -4 330 5 q 234 -15 264 -15 q 92 39 144 -15 q 41 186 41 93 q 79 305 41 260 q 176 375 118 350 q 301 410 234 400 q 423 427 367 421 q 421 439 421 427 q 421 468 421 452 l 421 509 q 410 555 421 534 q 380 592 398 576 q 338 617 362 608 q 290 627 314 627 q 213 619 247 627 q 145 587 180 612 l 96 468 l 61 468 l 61 627 l 62 627 q 120 667 93 650 q 177 693 148 683 q 240 709 206 704 q 317 714 273 714 q 429 686 377 714 q 509 610 482 658 q 597 681 546 655 q 714 707 649 707 q 842 680 789 707 q 927 610 894 654 q 976 510 961 566 q 991 395 991 454 l 991 347 l 530 347 m 267 67 q 313 76 292 67 q 354 98 335 85 q 389 130 373 112 q 421 166 406 148 l 421 350 q 331 343 378 350 q 243 319 283 336 q 177 271 204 302 q 151 188 151 239 q 181 98 151 129 q 267 67 212 67 m 886 429 q 875 501 886 467 q 843 560 865 535 q 787 600 821 585 q 711 615 754 615 q 637 599 668 615 q 586 557 607 583 q 555 497 566 531 q 536 429 543 463 l 886 429 l 886 429 "},"®":{"x_min":48,"x_max":690,"ha":738,"o":"m 690 721 q 664 593 690 652 q 596 491 639 534 q 494 421 552 447 q 369 396 435 396 q 240 419 299 396 q 138 486 181 443 q 71 589 95 529 q 48 721 48 648 q 73 848 48 789 q 141 950 98 907 q 243 1020 185 994 q 369 1046 302 1046 q 496 1021 437 1046 q 598 954 555 997 q 665 851 641 911 q 690 721 690 791 m 529 828 q 501 742 529 766 q 430 704 473 717 l 516 527 l 554 509 q 617 603 593 549 q 641 721 641 657 q 620 832 641 780 q 563 921 600 883 q 477 981 526 959 q 369 1004 427 1004 q 283 990 323 1004 q 211 953 244 976 l 382 953 q 419 953 394 953 q 468 942 444 953 q 511 906 493 932 q 529 828 529 879 m 97 721 q 122 599 97 654 q 191 504 147 543 l 243 527 l 243 911 l 188 935 q 120 840 144 894 q 97 721 97 786 m 369 438 q 452 450 413 438 q 522 484 490 463 l 475 484 l 364 698 l 303 698 l 303 527 l 362 502 l 362 484 l 217 484 q 287 450 249 463 q 369 438 326 438 m 303 742 l 360 742 q 400 744 380 742 q 434 754 420 746 q 459 780 449 763 q 469 830 469 798 q 459 878 469 861 q 435 904 449 896 q 403 913 421 913 q 370 913 386 913 q 330 913 351 913 q 303 913 309 913 l 303 742 "},"É":{"x_min":34,"x_max":695.859375,"ha":753,"o":"m 426 1023 l 359 1052 l 499 1279 l 608 1224 l 426 1023 m 674 0 l 34 0 l 34 36 l 155 87 l 155 873 l 34 925 l 34 961 l 664 961 l 664 701 l 630 701 l 563 860 l 279 860 l 279 537 l 478 537 l 525 668 l 555 668 l 555 308 l 525 308 l 478 436 l 278 436 l 278 103 l 576 103 l 661 261 l 695 261 l 674 0 "},"~":{"x_min":51.71875,"x_max":743.171875,"ha":795,"o":"m 743 691 q 712 606 730 648 q 667 531 694 565 q 604 478 641 498 q 517 458 567 458 q 445 470 473 458 q 398 501 417 483 q 366 542 379 520 q 338 584 352 565 q 306 615 325 602 q 261 628 288 628 q 213 610 234 628 q 178 567 193 593 q 153 513 163 541 q 136 464 142 485 q 94 478 115 471 q 51 488 73 484 q 82 573 63 531 q 127 648 100 615 q 190 701 153 681 q 277 722 227 722 q 349 709 321 722 q 396 678 377 697 q 428 638 415 659 q 455 597 442 616 q 487 566 469 579 q 533 554 504 554 q 580 571 560 554 q 615 613 600 588 q 640 666 630 638 q 657 715 650 694 q 700 701 679 708 q 743 691 721 695 "},"³":{"x_min":-37,"x_max":993,"ha":975,"o":"m 69 88 l 477 1089 l 885 90 l 993 36 l 993 0 l 646 0 l 646 36 l 754 90 l 670 319 l 282 319 l 281 316 l 198 90 l 307 36 l 307 0 l -37 0 l -37 36 l 69 88 m 525 696 q 510 734 518 712 q 496 780 503 757 q 485 821 489 803 q 479 842 480 838 q 474 826 479 841 q 463 790 469 812 q 448 743 457 768 q 432 698 440 718 l 322 419 l 631 419 l 525 696 "},"¡":{"x_min":140,"x_max":310,"ha":452,"o":"m 169 163 q 169 244 169 198 q 169 330 169 289 q 169 426 169 377 l 275 426 q 275 328 275 376 q 275 243 275 288 q 275 164 275 198 l 275 -267 l 169 -267 l 169 163 m 140 624 q 159 689 140 670 q 222 708 178 708 q 290 688 270 708 q 310 624 310 669 q 290 560 310 579 q 224 541 270 541 q 159 560 179 541 q 140 624 140 579 "},"[":{"x_min":139,"x_max":426.3125,"ha":443,"o":"m 248 928 l 248 -70 l 426 -70 l 426 -153 l 139 -153 l 139 1011 l 426 1011 l 426 928 l 248 928 "},"L":{"x_min":33.859375,"x_max":678.15625,"ha":696,"o":"m 678 0 l 33 0 l 33 35 l 155 87 l 155 873 l 34 924 l 34 960 l 397 960 l 397 924 l 278 873 l 278 101 l 563 101 l 653 280 l 678 280 l 678 0 "},";":{"x_min":104.921875,"x_max":297,"ha":398,"o":"m 297 50 q 231 -106 297 -54 q 136 -156 194 -138 l 118 -110 q 187 -62 168 -88 q 207 14 207 -36 l 190 14 q 104 87 104 14 q 128 145 104 123 q 190 167 151 167 q 297 50 297 167 m 283 623 q 263 558 283 577 q 200 540 244 540 q 132 559 152 540 q 113 623 113 578 q 132 687 113 668 q 198 707 152 707 q 263 687 243 707 q 283 623 283 668 "}," ":{"x_min":0,"x_max":0,"ha":374},"∑":{"x_min":40.546875,"x_max":756.5,"ha":800,"o":"m 40 0 l 353 481 l 41 961 l 732 961 l 732 686 l 693 686 l 629 861 l 389 861 q 337 861 364 861 q 289 861 311 861 q 239 861 263 861 q 265 830 251 848 q 291 795 276 815 q 320 751 305 774 l 496 481 l 322 216 q 294 176 310 196 q 265 139 278 156 q 233 101 250 120 l 296 101 q 347 101 322 101 q 387 101 372 101 l 629 101 l 719 275 l 756 275 l 732 0 l 40 0 "},"%":{"x_min":80,"x_max":1112,"ha":1194,"o":"m 1112 287 q 1100 186 1112 239 q 1063 89 1088 133 q 996 17 1038 45 q 895 -11 955 -11 q 789 16 831 -11 q 722 86 747 43 q 688 182 698 129 q 679 287 679 236 q 689 388 679 336 q 725 484 700 440 q 791 556 749 528 q 894 585 832 585 q 1000 557 958 585 q 1067 487 1042 530 q 1101 391 1091 444 q 1112 287 1112 339 m 513 674 q 502 573 513 626 q 465 476 491 520 q 398 404 439 432 q 297 376 357 376 q 191 403 233 376 q 124 473 149 430 q 90 569 100 516 q 80 674 80 623 q 90 775 80 723 q 126 871 101 827 q 193 943 152 915 q 296 972 235 972 q 402 944 360 972 q 468 874 443 917 q 502 778 492 831 q 513 674 513 726 m 423 674 q 418 745 423 705 q 401 821 414 785 q 362 880 387 856 q 296 905 337 905 q 230 880 255 905 q 192 821 205 856 q 174 745 179 785 q 170 674 170 705 q 174 602 170 642 q 193 525 179 562 q 231 463 206 488 q 297 439 257 439 q 363 463 338 439 q 401 525 388 488 q 418 602 414 562 q 423 674 423 642 m 1022 287 q 1017 358 1022 317 q 998 433 1012 398 q 960 493 985 469 q 894 518 934 518 q 828 493 853 518 q 790 433 804 469 q 773 358 777 398 q 769 287 769 317 q 773 215 769 255 q 791 137 778 174 q 829 76 804 101 q 895 51 854 51 q 961 76 936 51 q 1000 137 986 101 q 1017 215 1013 174 q 1022 287 1022 255 m 323 -38 l 261 -13 l 865 998 l 930 972 l 323 -38 "},"P":{"x_min":33,"x_max":744,"ha":764,"o":"m 744 696 q 713 550 744 607 q 634 459 682 492 q 525 413 585 426 q 404 400 464 400 l 275 400 l 275 87 l 395 36 l 395 0 l 33 0 l 33 36 l 154 87 l 154 873 l 34 923 l 34 960 l 437 960 q 485 960 455 960 q 549 953 515 960 q 617 932 583 947 q 680 889 652 918 q 726 813 708 860 q 744 696 744 765 m 275 490 l 392 490 q 475 497 434 490 q 548 527 516 505 q 601 589 581 549 q 621 693 621 628 q 601 792 621 756 q 551 847 581 828 q 484 872 521 866 q 412 878 446 878 q 332 878 373 878 q 275 876 291 878 l 275 490 "},"∏":{"x_min":34,"x_max":954,"ha":988,"o":"m 34 960 l 954 960 l 954 923 l 834 873 l 834 87 l 954 36 l 954 0 l 596 0 l 596 36 l 716 86 l 716 857 l 275 857 l 275 87 l 395 36 l 395 0 l 34 0 l 34 36 l 155 87 l 155 873 l 34 923 l 34 960 "},"À":{"x_min":-37,"x_max":993,"ha":935,"o":"m 477 1021 l 289 1223 l 398 1277 l 544 1050 l 477 1021 m 69 88 l 433 960 l 545 960 l 885 90 l 993 36 l 993 0 l 646 0 l 646 36 l 754 90 l 670 319 l 282 319 l 281 316 l 198 90 l 307 36 l 307 0 l -37 0 l -37 36 l 69 88 m 525 696 q 510 734 518 712 q 496 780 503 757 q 485 821 489 803 q 479 842 480 838 q 474 826 479 841 q 463 790 469 812 q 448 743 457 768 q 432 698 440 718 l 322 419 l 631 419 l 525 696 "},"_":{"x_min":0,"x_max":681,"ha":681,"o":"m 0 -174 l 0 -105 l 681 -105 l 681 -174 l 0 -174 "},"ñ":{"x_min":29,"x_max":818,"ha":785,"o":"m 643 948 q 623 895 635 920 q 595 850 611 870 q 556 819 579 831 q 502 808 534 808 q 439 817 464 808 q 395 840 415 827 q 359 862 376 852 q 318 872 342 872 q 272 848 291 872 q 249 799 253 824 l 183 816 q 201 867 189 842 q 229 912 213 892 q 270 943 246 931 q 323 955 293 955 q 387 945 361 955 q 434 923 414 935 q 472 900 454 910 q 509 891 490 891 q 555 911 539 891 q 580 964 571 932 l 643 948 l 643 948 m 29 656 l 270 713 l 270 587 q 363 671 309 635 q 477 707 416 707 q 639 658 580 707 q 699 505 699 610 l 699 87 l 818 36 l 818 0 l 471 0 l 471 36 l 585 87 l 585 501 q 572 555 585 534 q 540 587 559 576 q 500 603 522 599 q 460 608 478 608 q 401 596 428 608 q 352 565 375 584 q 309 523 330 546 q 270 476 289 499 l 270 87 l 376 36 l 376 0 l 36 0 l 36 36 l 156 87 l 156 587 l 29 624 l 29 656 "},"+":{"x_min":75,"x_max":722,"ha":796,"o":"m 453 316 l 453 14 l 343 14 l 343 316 l 75 316 l 75 417 l 343 417 l 343 706 l 453 706 l 453 417 l 722 417 l 722 316 l 453 316 "},"‚":{"x_min":133,"x_max":269.109375,"ha":397,"o":"m 198 -203 l 133 -203 l 133 133 l 269 133 l 198 -203 "},"½":{"x_min":35,"x_max":940,"ha":898,"o":"m 156 87 l 156 597 l 35 597 l 35 649 l 157 691 l 157 764 q 170 882 157 828 q 214 975 184 936 q 296 1036 245 1014 q 420 1058 346 1058 l 510 1058 l 510 852 l 475 852 l 424 974 q 392 973 408 977 q 354 961 376 968 q 311 929 327 950 q 285 879 294 907 q 272 818 275 852 q 270 750 270 785 l 270 691 l 588 691 l 588 764 q 601 882 588 828 q 645 975 615 936 q 726 1036 676 1014 q 850 1058 776 1058 l 940 1058 l 940 852 l 904 852 l 854 974 q 822 973 838 977 q 785 961 806 968 q 741 929 758 950 q 715 879 725 907 q 703 818 706 852 q 701 750 701 785 l 701 691 l 863 691 l 863 597 l 699 597 l 699 87 l 849 35 l 849 0 l 467 0 l 467 35 l 586 87 l 586 597 l 269 597 l 269 87 l 419 35 l 419 0 l 37 0 l 37 35 l 156 87 "},"Æ":{"x_min":-37,"x_max":1049.5,"ha":1111,"o":"m 69 89 l 434 961 l 1018 961 l 1018 701 l 984 701 l 917 860 l 633 860 l 633 537 l 831 537 l 879 668 l 909 668 l 909 308 l 879 308 l 831 436 l 632 436 l 632 103 l 929 103 l 1015 261 l 1049 261 l 1027 0 l 388 0 l 388 36 l 509 87 l 509 437 l 331 437 l 330 434 l 198 90 l 307 36 l 307 0 l -37 0 l -37 36 l 69 89 m 507 873 l 370 537 l 509 537 l 509 873 l 507 873 "},"Ë":{"x_min":34,"x_max":695.859375,"ha":757,"o":"m 674 0 l 34 0 l 34 36 l 155 87 l 155 873 l 34 925 l 34 961 l 664 961 l 664 701 l 630 701 l 563 860 l 279 860 l 279 537 l 477 537 l 525 668 l 555 668 l 555 308 l 525 308 l 477 436 l 278 436 l 278 103 l 575 103 l 661 261 l 695 261 l 674 0 m 320 1141 q 235 1064 320 1064 q 150 1138 150 1064 q 235 1215 150 1215 q 320 1141 320 1215 m 637 1138 q 552 1061 637 1061 q 467 1135 467 1061 q 552 1212 467 1212 q 637 1138 637 1212 "},"'":{"x_min":150,"x_max":248,"ha":398,"o":"m 248 624 l 150 624 l 150 961 l 248 961 l 248 624 "},"Š":{"x_min":74.640625,"x_max":640,"ha":697,"o":"m 420 1045 l 317 1045 l 200 1260 l 268 1282 l 371 1125 l 484 1281 l 549 1260 l 420 1045 m 526 845 q 471 870 504 858 q 376 882 438 882 q 309 872 341 882 q 253 845 277 863 q 214 799 228 826 q 200 734 200 772 q 232 644 200 679 q 314 583 265 609 q 419 532 363 557 q 525 474 476 508 q 607 389 574 440 q 640 258 640 337 q 616 144 640 194 q 553 57 593 93 q 458 3 513 22 q 340 -15 402 -15 q 240 -7 283 -15 q 165 12 197 0 q 111 36 133 23 q 74 59 89 48 l 74 277 l 110 277 l 166 116 q 227 91 189 101 q 330 82 266 82 q 394 91 361 82 q 454 118 427 100 q 499 168 481 137 q 517 241 517 198 q 484 337 517 300 q 403 401 451 373 q 297 452 355 428 q 192 511 240 476 q 111 597 144 546 q 79 730 79 648 q 103 837 79 791 q 168 914 127 883 q 259 960 208 945 q 367 976 311 976 q 464 969 423 976 q 534 953 504 963 q 584 932 563 944 q 621 909 605 920 l 621 689 l 586 689 l 526 845 "},"ª":{"x_min":-27,"x_max":1002,"ha":968,"o":"m 897 873 l 491 -139 l 79 873 l -27 923 l -27 960 l 319 960 l 319 923 l 211 872 l 212 868 l 448 265 q 476 180 465 221 q 491 125 487 140 q 509 187 496 149 q 536 264 521 226 l 771 872 l 664 923 l 664 960 l 1002 960 l 1002 923 l 897 873 "},"Œ":{"x_min":54,"x_max":1127.859375,"ha":1189,"o":"m 987 308 l 957 308 l 910 437 l 710 437 l 710 103 l 1008 103 l 1093 261 l 1127 261 l 1106 0 l 587 0 l 514 -8 q 332 26 417 -8 q 186 123 248 60 q 89 278 124 187 q 54 479 54 368 q 90 677 54 587 q 189 833 127 768 q 335 934 252 898 q 510 971 418 971 q 549 971 529 971 q 587 961 569 971 l 1096 961 l 1096 701 l 1062 701 l 995 860 l 711 860 l 711 538 l 910 538 l 957 668 l 987 668 l 987 308 m 514 88 q 551 88 533 88 q 587 90 569 88 l 587 869 q 548 874 567 874 q 510 874 531 874 q 380 846 441 874 q 275 768 320 819 q 204 644 230 716 q 179 481 179 572 q 203 323 179 395 q 272 199 227 252 q 378 117 316 146 q 514 88 440 88 "},"˛":{"x_min":68,"x_max":358.03125,"ha":363,"o":"m 358 -1 q 319 -23 348 -7 q 257 -64 289 -39 q 201 -122 226 -89 q 177 -194 177 -155 q 246 -267 177 -267 q 278 -267 260 -267 q 310 -262 296 -267 l 317 -322 q 269 -329 294 -326 q 223 -332 245 -332 q 165 -325 193 -332 q 115 -302 137 -318 q 80 -263 93 -287 q 68 -202 68 -239 q 97 -128 68 -164 q 167 -62 126 -91 q 252 -8 208 -32 q 328 28 296 14 l 358 -1 l 358 -1 "},"ð":{"x_min":76,"x_max":720,"ha":796,"o":"m 720 393 q 696 219 720 294 q 630 91 673 143 q 526 12 587 39 q 390 -15 465 -15 q 250 12 310 -15 q 152 89 191 40 q 95 203 114 137 q 76 346 76 269 q 99 482 76 417 q 164 596 122 547 q 267 676 206 646 q 402 706 327 706 q 576 642 508 706 q 451 860 536 776 l 278 764 l 244 829 l 391 910 q 312 955 355 935 q 218 990 269 975 l 263 1065 q 481 960 389 1030 l 675 1067 l 710 1003 l 540 908 q 677 678 634 811 q 720 393 720 546 m 600 346 q 590 443 600 393 q 557 532 580 493 q 496 598 534 572 q 402 624 458 624 q 308 598 346 624 q 243 532 269 572 q 205 443 217 493 q 194 346 194 393 q 203 248 194 297 q 236 158 213 198 q 297 93 259 118 q 391 68 334 68 q 485 93 446 68 q 550 158 525 118 q 587 248 575 198 q 600 346 600 297 "},"T":{"x_min":-0.078125,"x_max":711.640625,"ha":712,"o":"m 675 686 l 610 860 l 419 860 l 419 87 l 568 36 l 568 0 l 151 0 l 151 36 l 298 86 l 298 860 l 103 860 l 38 686 l 0 686 l 0 961 l 711 961 l 711 686 l 675 686 "},"š":{"x_min":67.703125,"x_max":510,"ha":554,"o":"m 349 802 l 246 802 l 129 1017 l 197 1039 l 300 882 l 413 1038 l 478 1017 l 349 802 m 495 484 l 459 484 l 409 602 q 319 622 364 622 q 271 618 295 622 q 228 602 247 613 q 197 570 209 590 q 185 518 185 550 q 208 461 185 482 q 269 424 232 440 q 347 392 306 407 q 425 352 388 377 q 486 288 462 326 q 510 190 510 250 q 488 99 510 137 q 433 35 467 60 q 357 -2 399 10 q 273 -15 315 -15 q 163 0 213 -15 q 67 43 113 14 l 67 220 l 103 220 l 152 98 q 203 77 176 84 q 269 71 231 71 q 355 95 318 71 q 393 175 393 119 q 369 243 393 218 q 309 285 345 268 q 231 317 273 303 q 152 353 189 331 q 92 410 116 375 q 69 504 69 446 q 91 598 69 560 q 149 661 113 637 q 227 696 184 686 q 311 707 270 707 q 406 694 355 707 q 495 659 458 682 l 495 484 "},"Þ":{"x_min":34,"x_max":743,"ha":429,"o":"m 743 500 q 712 354 743 411 q 633 263 681 296 q 524 217 585 230 q 404 204 464 204 l 275 204 l 275 87 l 395 35 l 395 0 l 34 0 l 34 35 l 155 87 l 155 873 l 34 923 l 34 959 l 395 959 l 395 923 l 275 873 l 275 764 l 437 764 q 484 764 454 764 q 548 757 514 764 q 617 736 582 751 q 679 693 651 722 q 725 617 707 664 q 743 500 743 569 m 275 294 l 391 294 q 474 301 433 294 q 548 331 515 309 q 600 393 580 353 q 620 497 620 432 q 600 596 620 560 q 550 651 580 632 q 483 676 520 670 q 412 682 446 682 q 332 682 372 682 q 275 680 291 682 l 275 294 "},"j":{"x_min":-41,"x_max":288,"ha":390,"o":"m 272 -57 q 258 -179 272 -122 q 214 -278 244 -236 q 132 -343 183 -319 q 5 -367 81 -367 l -41 -367 l -41 -282 l 4 -282 q 83 -264 53 -282 q 129 -215 113 -246 q 151 -144 145 -185 q 158 -60 158 -104 l 158 590 l 38 625 l 38 658 l 272 714 l 272 -57 m 288 948 q 202 870 288 870 q 118 944 118 870 q 202 1021 118 1021 q 288 948 288 1021 "},"1":{"x_min":92.453125,"x_max":629,"ha":753,"o":"m 401 86 l 401 752 q 401 786 401 767 q 405 821 401 805 q 405 859 405 839 q 383 833 395 846 q 360 808 372 821 q 335 785 348 795 l 156 642 l 92 716 l 428 976 l 518 976 l 518 86 l 629 36 l 629 0 l 283 0 l 283 36 l 401 86 "},"›":{"x_min":70.78125,"x_max":347.078125,"ha":397,"o":"m 123 108 l 70 140 l 232 379 l 84 604 l 137 636 l 347 379 l 123 108 "},"ı":{"x_min":34.0625,"x_max":388,"ha":408,"o":"m 34 667 l 275 724 l 275 87 l 388 36 l 388 0 l 42 0 l 42 36 l 162 87 l 162 598 l 34 636 l 34 667 "},"ä":{"x_min":41,"x_max":643,"ha":657,"o":"m 422 82 q 339 11 384 37 q 234 -15 295 -15 q 92 39 144 -15 q 41 186 41 93 q 79 305 41 260 q 176 375 118 350 q 301 411 234 400 q 423 427 367 421 q 422 440 422 427 q 422 468 422 453 l 422 510 q 410 556 422 535 q 380 592 398 577 q 338 617 362 608 q 290 627 314 627 q 213 620 247 627 q 145 588 180 613 l 96 468 l 61 468 l 61 627 l 62 627 q 121 667 93 650 q 177 693 148 683 q 239 709 206 704 q 316 714 273 714 q 396 700 357 714 q 464 663 434 687 q 512 605 494 639 q 530 531 530 571 l 530 111 l 643 73 l 643 41 l 422 -16 l 422 82 m 422 350 q 332 344 379 350 q 244 321 284 337 q 177 272 204 304 q 151 188 151 241 q 181 98 151 129 q 268 67 212 67 q 314 76 292 67 q 355 98 336 85 q 390 130 374 112 q 422 167 407 148 l 422 351 l 422 350 m 225 879 q 140 802 225 802 q 55 876 55 802 q 140 953 55 953 q 225 879 225 953 m 542 876 q 457 799 542 799 q 372 873 372 799 q 457 950 372 950 q 542 876 542 950 "},"<":{"x_min":75,"x_max":710.640625,"ha":795,"o":"m 657 -14 l 75 299 l 75 385 l 665 706 l 709 617 l 277 385 q 249 370 264 377 q 220 357 234 363 q 197 348 207 352 q 186 344 187 344 q 197 340 187 344 q 219 332 207 337 q 247 321 232 327 q 276 307 262 314 l 710 81 l 657 -14 "},"£":{"x_min":46,"x_max":690.15625,"ha":753,"o":"m 290 301 l 290 102 l 575 102 l 665 281 l 690 281 l 690 1 l 46 1 l 46 36 l 167 88 l 167 301 l 73 301 l 73 346 l 167 388 l 167 525 l 72 525 l 72 569 l 167 611 l 167 612 q 184 763 167 697 q 243 876 202 830 q 351 947 284 923 q 516 972 418 972 q 542 970 527 972 q 568 967 556 969 q 596 965 583 966 l 596 876 q 574 877 585 876 q 554 879 564 879 q 534 879 543 879 q 351 825 411 879 q 291 674 291 771 l 291 611 l 540 611 l 540 525 l 290 525 l 290 388 l 541 388 l 541 301 l 290 301 "},"¹":{"x_min":34,"x_max":1225,"ha":1259,"o":"m 1105 87 l 1225 36 l 1225 0 l 864 0 l 864 36 l 985 87 l 985 778 l 628 -143 l 276 776 l 275 776 l 275 87 l 395 36 l 395 0 l 34 0 l 34 36 l 155 87 l 155 873 l 34 923 l 34 960 l 315 960 l 590 265 q 619 180 608 220 q 634 124 630 140 q 651 187 639 148 q 679 263 664 226 l 951 960 l 1225 960 l 1225 923 l 1105 873 l 1105 87 "},"t":{"x_min":5,"x_max":458.5,"ha":465,"o":"m 458 47 q 373 3 419 22 q 284 -15 327 -15 q 161 31 201 -15 q 121 161 121 77 l 121 599 l 5 599 l 5 650 l 123 692 l 123 873 l 236 915 l 236 692 l 434 692 l 434 599 l 235 599 l 235 173 q 250 104 235 132 q 309 77 266 77 q 368 90 337 77 q 418 118 399 103 l 458 47 l 458 47 "},"¬":{"x_min":84.671875,"x_max":697,"ha":795,"o":"m 697 149 l 591 149 l 591 437 l 84 437 l 84 538 l 697 538 l 697 149 "},"ù":{"x_min":6.953125,"x_max":777,"ha":785,"o":"m 409 803 l 222 1004 l 330 1058 l 476 832 l 409 803 m 240 190 q 251 136 240 157 q 280 104 263 115 q 319 88 298 92 q 358 84 340 84 q 417 95 390 84 q 469 126 445 107 q 514 168 493 145 q 555 215 536 192 l 555 595 l 435 631 l 435 664 l 664 720 l 664 114 l 777 77 l 777 44 l 555 -13 l 555 106 q 510 59 534 81 q 458 21 485 38 q 400 -5 431 4 q 340 -15 370 -15 q 180 33 236 -15 q 124 186 124 81 l 124 595 l 6 631 l 6 664 l 240 720 l 240 190 "},"W":{"x_min":-27,"x_max":1487,"ha":1453,"o":"m 208 874 l 374 315 q 392 247 383 280 q 405 186 400 213 q 414 142 411 159 q 418 122 418 124 q 422 142 418 123 q 434 188 427 161 q 449 250 441 216 q 469 316 458 284 l 667 961 l 797 961 l 995 311 q 1011 250 1003 281 q 1026 191 1019 219 q 1037 145 1033 163 q 1043 122 1041 126 q 1046 141 1043 123 q 1055 186 1049 159 q 1070 246 1062 213 q 1089 311 1078 279 l 1258 874 l 1149 926 l 1149 962 l 1487 962 l 1487 926 l 1376 874 l 1100 0 l 969 0 l 772 651 q 754 715 762 683 q 740 773 746 747 q 729 817 733 799 q 724 841 725 836 q 718 819 723 837 q 708 774 714 801 q 694 715 702 748 q 676 652 686 683 q 577 326 622 469 q 540 206 558 265 q 508 101 522 147 q 486 27 494 55 q 477 0 477 0 l 348 0 l 83 874 l -27 926 l -27 962 l 317 962 l 317 926 l 208 874 "},"ï":{"x_min":-45,"x_max":442,"ha":363,"o":"m 34 668 l 275 724 l 275 87 l 388 36 l 388 0 l 42 0 l 42 36 l 162 87 l 162 598 l 34 636 l 34 668 m 125 873 q 40 796 125 796 q -45 870 -45 796 q 40 947 -45 947 q 125 873 125 947 m 442 870 q 357 793 442 793 q 272 867 272 793 q 357 944 272 944 q 442 870 442 944 "},">":{"x_min":84.359375,"x_max":720,"ha":795,"o":"m 129 -8 l 85 80 l 517 312 q 545 326 530 319 q 573 339 560 333 q 596 349 586 345 q 607 354 605 352 q 596 357 605 354 q 573 365 586 360 q 545 376 560 370 q 518 390 530 383 l 84 616 l 137 712 l 720 398 l 720 312 l 129 -8 "},"v":{"x_min":-14,"x_max":741,"ha":721,"o":"m 192 637 l 335 241 q 358 161 350 200 q 369 113 366 123 q 373 131 370 118 q 381 163 376 145 q 393 203 387 181 q 407 244 399 225 l 550 630 l 454 677 l 454 714 l 741 714 l 741 677 l 660 632 l 417 0 l 308 0 l 71 637 l -14 677 l -14 714 l 292 714 l 292 677 l 192 637 "},"û":{"x_min":6.953125,"x_max":777,"ha":785,"o":"m 489 801 l 386 958 l 273 803 l 208 824 l 337 1039 l 440 1039 l 557 824 l 489 801 m 240 190 q 251 136 240 157 q 280 104 263 115 q 319 88 298 92 q 358 84 340 84 q 417 95 390 84 q 469 126 445 107 q 514 168 493 145 q 555 215 536 192 l 555 595 l 435 631 l 435 664 l 664 720 l 664 114 l 777 77 l 777 44 l 555 -13 l 555 106 q 510 59 534 81 q 458 21 485 38 q 400 -5 431 4 q 340 -15 370 -15 q 180 33 236 -15 q 124 186 124 81 l 124 595 l 6 631 l 6 664 l 240 720 l 240 190 "},"Ò":{"x_min":54,"x_max":959,"ha":1095,"o":"m 554 1024 l 366 1225 l 475 1280 l 621 1053 l 554 1024 m 959 479 q 924 280 959 370 q 831 124 890 190 q 690 21 772 58 q 515 -15 609 -15 q 332 20 417 -15 q 186 120 248 55 q 89 276 124 184 q 54 479 54 368 q 91 678 54 587 q 192 835 128 769 q 339 939 255 902 q 515 976 422 976 q 694 940 613 976 q 835 839 776 905 q 926 683 893 774 q 959 479 959 591 m 834 476 q 812 633 834 559 q 749 760 790 706 q 648 847 708 815 q 511 879 588 879 q 381 850 441 879 q 275 770 320 822 q 204 645 230 717 q 179 481 179 572 q 203 322 179 395 q 272 196 228 250 q 378 112 316 143 q 515 82 440 82 q 648 113 588 82 q 748 197 707 144 q 812 322 790 251 q 834 476 834 394 "},"&":{"x_min":95,"x_max":1018,"ha":1019,"o":"m 851 478 q 847 411 851 446 q 836 341 844 376 q 818 275 829 307 q 790 216 807 243 l 909 87 l 1018 36 l 1018 0 l 840 0 l 730 119 q 592 17 672 50 q 423 -15 512 -15 q 293 1 353 -15 q 189 53 233 18 q 120 144 145 89 q 95 276 95 200 q 112 380 95 334 q 160 463 130 426 q 230 530 190 500 q 313 590 270 561 q 278 630 296 608 q 245 675 260 651 q 221 725 231 700 q 212 778 212 750 q 229 867 212 829 q 275 929 246 904 q 344 965 304 953 q 431 977 384 977 q 510 967 473 977 q 576 936 548 957 q 621 882 605 915 q 638 801 638 849 q 622 729 638 761 q 581 672 606 697 q 525 625 556 647 q 466 584 495 604 l 722 297 q 743 387 737 343 q 750 478 750 432 l 750 478 l 629 527 l 629 564 l 972 564 l 972 527 l 852 478 l 851 478 m 444 75 q 570 106 514 75 q 670 186 625 137 l 371 522 q 307 470 335 494 q 259 419 278 447 q 229 357 239 391 q 219 273 219 322 q 237 186 219 223 q 287 125 255 150 q 359 87 318 100 q 444 75 399 75 m 536 792 q 504 867 536 840 q 425 895 473 895 q 352 863 379 895 q 326 783 326 831 q 334 745 326 764 q 354 710 342 726 q 381 678 366 693 q 407 648 395 662 q 449 673 426 659 q 491 705 471 687 q 523 744 510 723 q 536 792 536 765 "},"˝":{"x_min":-12.25,"x_max":442.359375,"ha":363,"o":"m 270 816 l 191 838 l 329 1055 l 442 1012 l 270 816 m 66 816 l -12 838 l 125 1055 l 238 1012 l 66 816 "},"Ð":{"x_min":34,"x_max":935,"ha":989,"o":"m 34 969 l 431 969 q 635 944 543 969 q 794 866 728 920 q 898 728 861 813 q 935 523 935 644 q 895 303 935 399 q 784 138 856 206 q 615 35 713 70 q 400 0 517 0 q 217 0 313 0 q 34 0 121 0 l 34 37 l 155 88 l 155 442 l 41 442 l 41 543 l 155 543 l 155 881 l 34 932 l 34 969 m 275 442 l 275 93 q 336 93 299 93 q 396 93 373 93 q 567 120 491 93 q 697 200 643 147 q 780 332 751 253 q 810 515 810 411 q 780 683 810 615 q 698 792 751 751 q 569 853 645 834 q 400 872 494 872 q 360 872 382 872 q 319 872 339 872 l 275 872 l 275 543 l 482 543 l 482 442 l 275 442 "},"I":{"x_min":34,"x_max":395,"ha":429,"o":"m 275 87 l 395 36 l 395 0 l 34 0 l 34 36 l 155 87 l 155 873 l 34 923 l 34 960 l 395 960 l 395 923 l 275 873 l 275 87 "},"G":{"x_min":54,"x_max":910,"ha":924,"o":"m 789 51 q 664 6 727 28 q 531 -15 601 -15 q 347 18 433 -15 q 195 113 260 51 q 92 265 130 176 q 54 466 54 355 q 89 667 54 574 q 188 828 124 760 q 339 936 251 897 q 532 975 428 975 q 602 975 572 975 q 659 969 632 975 q 715 954 686 963 q 780 929 743 945 l 779 927 l 782 927 l 782 686 l 730 686 l 665 863 q 603 875 635 872 q 528 879 572 879 q 381 846 445 879 q 271 758 316 813 q 202 630 226 704 q 179 475 179 557 q 204 317 179 389 q 278 194 230 246 q 393 113 326 142 q 545 84 460 84 q 568 84 557 84 q 592 88 579 84 q 623 100 605 92 q 670 122 641 108 l 670 374 l 551 422 l 551 458 l 910 458 l 910 422 l 789 374 l 789 51 "},"`":{"x_min":13.609375,"x_max":262.6875,"ha":363,"o":"m 196 801 l 13 1002 l 122 1056 l 262 830 l 196 801 "},"·":{"x_min":112,"x_max":282,"ha":398,"o":"m 282 373 q 262 308 282 327 q 199 290 243 290 q 131 309 151 290 q 112 373 112 328 q 131 437 112 418 q 197 457 151 457 q 262 437 242 457 q 282 373 282 418 "},"r":{"x_min":29,"x_max":516.078125,"ha":549,"o":"m 267 570 q 302 622 281 597 q 347 666 322 647 q 399 695 371 684 q 457 707 427 707 q 486 702 472 707 q 516 693 501 698 l 516 483 l 480 483 l 430 603 q 373 591 402 603 q 320 559 344 580 q 281 507 296 537 q 267 436 267 476 l 267 87 l 411 36 l 411 0 l 34 0 l 34 36 l 154 86 l 154 589 l 29 626 l 29 658 l 267 715 l 267 570 "},"¿":{"x_min":68,"x_max":574.28125,"ha":610,"o":"m 68 -50 q 86 51 68 9 q 133 123 104 92 q 193 178 161 153 q 254 227 226 202 q 301 282 283 252 q 320 355 320 312 l 320 434 l 437 434 l 437 362 q 418 268 437 306 q 371 201 400 230 q 311 149 343 173 q 250 98 279 125 q 203 36 221 71 q 185 -48 185 1 q 199 -117 185 -89 q 240 -165 214 -146 q 297 -193 265 -184 q 364 -203 329 -203 q 452 -190 408 -203 q 471 -183 465 -184 l 536 -6 l 574 -6 l 574 -240 q 517 -261 544 -251 q 465 -277 491 -270 q 413 -288 439 -284 q 355 -293 386 -293 q 246 -281 299 -293 q 155 -243 194 -270 q 91 -168 115 -215 q 68 -50 68 -120 m 293 613 q 312 678 293 659 q 375 697 331 697 q 443 677 423 697 q 463 613 463 658 q 443 549 463 568 q 377 530 423 530 q 312 549 332 530 q 293 613 293 568 "},"Č":{"x_min":54,"x_max":782,"ha":838,"o":"m 781 57 q 759 50 767 53 q 649 3 702 21 q 531 -15 597 -15 q 347 18 433 -15 q 195 113 260 51 q 92 265 130 176 q 54 466 54 355 q 89 667 54 574 q 188 828 124 760 q 339 936 251 897 q 533 975 428 975 q 602 975 572 975 q 659 969 632 975 q 715 954 687 963 q 781 929 744 945 l 779 927 l 782 927 l 782 686 l 744 686 l 678 863 q 610 875 648 872 q 529 879 572 879 q 381 846 445 879 q 271 758 316 813 q 202 630 226 704 q 179 475 179 557 q 204 317 179 389 q 278 194 230 246 q 393 113 326 142 q 545 84 460 84 q 612 91 586 84 q 669 110 637 99 l 755 286 l 781 286 l 781 57 m 545 1052 l 441 1052 l 324 1267 l 392 1289 l 496 1132 l 609 1288 l 674 1267 l 545 1052 "},"ý":{"x_min":-14,"x_max":744,"ha":662,"o":"m 390 803 l 323 832 l 463 1059 l 572 1005 l 390 803 m 195 637 l 348 238 q 358 203 352 223 q 370 164 364 182 q 379 130 375 145 q 385 113 383 116 q 388 129 385 114 q 397 163 391 144 q 408 203 402 182 q 421 239 414 224 l 551 627 l 458 675 l 458 712 l 744 712 l 744 675 l 660 627 l 522 228 q 420 -51 458 52 q 368 -187 382 -154 q 304 -294 341 -257 q 256 -333 281 -319 q 205 -353 232 -347 q 148 -360 179 -360 q 80 -360 116 -360 l 80 -275 q 157 -275 120 -275 q 220 -248 194 -275 q 253 -194 237 -230 q 282 -121 269 -159 q 304 -50 295 -83 q 320 1 314 -17 l 73 637 l -14 675 l -14 712 l 295 712 l 295 675 l 195 637 "},"x":{"x_min":8,"x_max":762,"ha":769,"o":"m 138 81 l 141 84 l 320 348 l 103 640 l 8 674 l 8 711 l 316 711 l 316 674 l 245 638 l 353 486 q 377 445 368 465 q 389 423 386 426 q 399 446 389 426 q 427 491 410 466 l 523 637 l 458 681 l 458 718 l 736 718 l 736 681 l 647 637 l 453 359 l 666 73 l 762 36 l 762 0 l 456 0 l 456 36 l 524 74 l 420 222 q 396 260 406 241 q 384 281 386 279 q 373 260 383 280 q 349 218 363 240 l 258 80 l 322 36 l 322 0 l 38 0 l 38 36 l 138 81 "},"è":{"x_min":48,"x_max":620,"ha":718,"o":"m 399 802 l 211 1004 l 320 1058 l 465 831 l 399 802 m 158 347 q 166 243 158 291 q 196 157 175 194 q 254 99 217 120 q 343 78 290 78 q 452 99 400 78 q 543 161 504 120 l 603 101 q 490 16 550 47 q 353 -15 430 -15 q 212 13 269 -15 q 117 90 154 41 q 64 204 80 139 q 48 344 48 269 q 67 477 48 412 q 124 593 86 541 q 216 675 162 644 q 343 707 271 707 q 470 680 418 707 q 556 610 523 654 q 605 510 590 566 q 620 395 620 454 l 620 347 l 158 347 m 515 429 q 504 501 515 467 q 472 560 494 535 q 416 600 449 585 q 339 615 383 615 q 265 599 296 615 q 215 557 235 583 q 183 497 194 531 q 164 429 171 463 l 515 429 l 515 429 "},"º":{"x_min":35,"x_max":424,"ha":477,"o":"m 424 593 q 411 510 424 549 q 374 441 398 471 q 315 393 350 410 q 234 376 279 376 q 149 392 185 376 q 86 439 112 409 q 47 508 60 468 q 35 593 35 548 q 49 676 35 636 q 89 746 63 715 q 151 794 115 776 q 233 813 188 813 q 317 795 281 813 q 377 749 353 778 q 412 679 400 720 q 424 593 424 639 m 349 594 q 343 650 349 621 q 324 704 338 679 q 288 743 310 728 q 233 759 266 759 q 177 743 200 759 q 139 704 154 728 q 116 650 123 679 q 110 594 110 621 q 116 535 110 564 q 139 483 123 506 q 178 444 154 459 q 236 429 202 429 q 289 444 268 429 q 324 483 310 459 q 343 535 338 506 q 349 594 349 564 "},"Ø":{"x_min":95,"x_max":1000,"ha":1095,"o":"m 1000 484 q 965 284 1000 375 q 869 126 930 193 q 725 22 808 60 q 549 -15 642 -15 q 394 8 466 -15 q 266 79 323 32 l 154 -64 l 100 -33 l 221 120 q 128 274 162 184 q 95 474 95 364 q 131 674 95 582 q 230 832 168 766 q 376 937 293 899 q 551 976 459 976 q 696 954 628 976 q 819 890 764 933 l 921 1021 l 978 989 l 868 848 q 964 691 929 783 q 1000 484 1000 599 m 875 479 q 854 630 875 560 q 794 754 833 701 l 335 165 q 429 103 376 125 q 547 82 482 82 q 682 113 621 82 q 786 198 743 144 q 851 325 828 253 q 875 479 875 397 m 751 804 q 661 859 711 839 q 548 879 611 879 q 419 849 479 879 q 315 768 359 820 q 245 642 270 716 q 220 478 220 568 q 293 215 220 321 l 751 804 l 751 804 "},"∞":{"x_min":57,"x_max":976,"ha":1033,"o":"m 976 353 q 962 268 976 308 q 922 199 948 228 q 859 152 897 169 q 775 136 822 136 q 700 149 736 136 q 633 184 665 162 q 572 232 601 206 q 517 286 543 259 q 459 233 488 260 q 399 184 431 206 q 333 150 368 163 q 257 137 297 137 q 174 152 212 137 q 111 197 137 168 q 71 264 85 225 q 57 349 57 303 q 70 433 57 393 q 109 502 84 472 q 171 548 134 531 q 254 566 208 566 q 331 552 295 566 q 400 515 367 538 q 461 463 432 492 q 517 407 489 435 q 572 464 544 435 q 631 516 600 492 q 698 554 662 539 q 774 569 733 569 q 857 552 820 569 q 920 506 894 535 q 961 438 947 477 q 976 353 976 399 m 888 349 q 859 438 888 402 q 776 475 830 475 q 720 462 747 475 q 667 430 693 449 q 618 388 641 410 q 575 348 594 366 q 620 306 597 327 q 667 268 642 285 q 720 241 693 252 q 780 230 748 230 q 860 264 832 230 q 888 349 888 299 m 458 348 q 415 387 439 366 q 365 427 391 409 q 309 459 338 446 q 254 473 281 473 q 173 435 202 473 q 145 349 145 398 q 174 263 145 296 q 258 230 204 230 q 313 241 285 230 q 367 270 341 252 q 416 308 393 288 q 458 348 439 328 "},"μ":{"x_min":-27,"x_max":1487,"ha":1453,"o":"m 208 874 l 374 314 q 392 246 383 280 q 405 186 400 213 q 414 141 411 159 q 418 121 418 124 q 422 141 418 123 q 434 188 427 160 q 450 250 441 216 q 469 316 460 284 l 724 1145 l 995 310 q 1011 250 1003 281 q 1026 191 1019 219 q 1037 144 1033 163 q 1043 121 1041 126 q 1046 141 1043 123 q 1055 186 1049 159 q 1070 246 1062 213 q 1089 310 1078 278 l 1258 874 l 1149 925 l 1149 962 l 1487 962 l 1487 925 l 1376 874 l 1043 -183 l 772 650 q 752 714 761 682 q 738 773 744 746 q 729 817 732 799 q 724 841 725 835 q 718 818 723 837 q 708 774 714 800 q 694 715 702 748 q 676 652 686 682 q 569 303 619 467 q 524 162 547 234 q 482 25 502 89 q 444 -93 461 -39 q 416 -180 427 -147 l 83 874 l -27 925 l -27 962 l 317 962 l 317 925 l 208 874 "},"÷":{"x_min":75,"x_max":722,"ha":796,"o":"m 75 301 l 75 400 l 722 400 l 722 301 l 75 301 m 334 0 l 334 133 l 459 133 l 459 0 l 334 0 m 338 558 l 338 691 l 463 691 l 463 558 l 338 558 "},"h":{"x_min":34,"x_max":824,"ha":838,"o":"m 34 990 l 275 1047 l 275 587 q 368 671 314 635 q 484 707 423 707 q 645 658 587 707 q 704 505 704 610 l 704 87 l 824 36 l 824 0 l 477 0 l 477 36 l 590 87 l 590 501 q 577 555 590 534 q 547 587 565 576 q 506 603 528 599 q 467 608 485 608 q 407 596 434 608 q 358 565 381 584 q 314 523 335 546 q 275 476 294 499 l 275 87 l 381 36 l 381 0 l 41 0 l 41 36 l 161 87 l 161 920 l 34 958 l 34 990 "},".":{"x_min":84,"x_max":254,"ha":340,"o":"m 254 69 q 234 4 254 23 q 171 -14 215 -14 q 103 5 123 -14 q 84 69 84 24 q 103 133 84 114 q 169 153 123 153 q 234 133 214 153 q 254 69 254 114 "},";":{"x_min":104.921875,"x_max":297,"ha":398,"o":"m 297 50 q 231 -106 297 -54 q 136 -156 194 -138 l 118 -110 q 187 -62 168 -88 q 207 14 207 -36 l 190 14 q 104 87 104 14 q 128 145 104 123 q 190 167 151 167 q 297 50 297 167 m 283 623 q 263 558 283 577 q 200 540 244 540 q 132 559 152 540 q 113 623 113 578 q 132 687 113 668 q 198 707 152 707 q 263 687 243 707 q 283 623 283 668 "},"f":{"x_min":35,"x_max":510,"ha":468,"o":"m 156 87 l 156 597 l 35 597 l 35 649 l 157 691 l 157 764 q 170 882 157 828 q 214 975 184 936 q 296 1036 245 1014 q 420 1058 346 1058 l 510 1058 l 510 852 l 474 852 l 424 974 q 392 973 407 977 q 354 961 376 968 q 311 929 327 950 q 285 879 294 907 q 272 818 275 852 q 270 750 270 785 l 270 691 l 432 691 l 432 597 l 269 597 l 269 87 l 419 35 l 419 0 l 37 0 l 37 35 l 156 87 "},"“":{"x_min":113.890625,"x_max":472,"ha":619,"o":"m 472 626 l 335 626 l 403 962 l 472 962 l 472 626 m 250 626 l 113 626 l 181 962 l 250 962 l 250 626 "},"A":{"x_min":-37,"x_max":993,"ha":975,"o":"m 69 88 l 433 960 l 545 960 l 885 90 l 993 36 l 993 0 l 646 0 l 646 36 l 754 90 l 670 319 l 282 319 l 281 316 l 198 90 l 307 36 l 307 0 l -37 0 l -37 36 l 69 88 m 525 696 q 510 734 518 712 q 496 780 503 757 q 485 821 489 803 q 479 842 480 838 q 474 826 479 841 q 463 790 469 812 q 448 743 457 768 q 432 698 440 718 l 322 419 l 631 419 l 525 696 "},"6":{"x_min":45,"x_max":698,"ha":740,"o":"m 690 886 l 651 886 q 466 858 552 886 q 315 777 380 831 q 209 637 250 722 q 168 437 168 552 q 203 488 177 462 q 263 536 229 514 q 338 572 297 558 q 426 586 380 586 q 530 570 480 586 q 617 520 579 554 q 676 436 654 487 q 698 313 698 384 q 673 181 698 241 q 606 77 649 121 q 505 9 563 33 q 381 -15 447 -15 q 234 16 298 -15 q 129 100 171 47 q 66 224 87 152 q 45 376 45 295 q 89 629 45 517 q 215 817 134 740 q 408 935 295 894 q 657 976 521 976 l 690 976 l 690 886 m 581 294 q 538 437 581 383 q 408 492 495 492 q 261 437 321 492 q 169 301 200 382 q 193 216 176 256 q 237 145 210 176 q 302 97 264 115 q 389 79 340 79 q 466 96 431 79 q 528 143 502 113 q 567 212 553 173 q 581 294 581 251 "},"‘":{"x_min":113.890625,"x_max":250,"ha":397,"o":"m 250 626 l 113 626 l 181 962 l 250 962 l 250 626 "},"O":{"x_min":54,"x_max":959,"ha":1013,"o":"m 959 479 q 924 280 959 370 q 831 124 890 190 q 690 21 772 58 q 515 -15 609 -15 q 332 20 417 -15 q 186 120 248 55 q 89 276 124 184 q 54 479 54 368 q 91 678 54 587 q 192 835 128 769 q 339 939 255 902 q 515 976 422 976 q 694 940 613 976 q 835 839 776 905 q 926 683 893 774 q 959 479 959 591 m 834 476 q 812 633 834 559 q 749 760 790 706 q 648 847 708 815 q 511 879 588 879 q 381 850 441 879 q 275 770 320 822 q 204 645 230 717 q 179 481 179 572 q 203 322 179 395 q 272 196 228 250 q 378 112 316 143 q 515 82 440 82 q 648 113 588 82 q 748 197 707 144 q 812 322 790 251 q 834 476 834 394 "},"n":{"x_min":29,"x_max":818,"ha":832,"o":"m 29 656 l 270 713 l 270 587 q 363 671 309 635 q 477 707 416 707 q 639 658 580 707 q 699 505 699 610 l 699 87 l 818 36 l 818 0 l 471 0 l 471 36 l 585 87 l 585 501 q 572 555 585 534 q 540 587 559 576 q 500 603 522 599 q 460 608 478 608 q 401 596 428 608 q 352 565 375 584 q 309 523 330 546 q 270 476 289 499 l 270 87 l 376 36 l 376 0 l 36 0 l 36 36 l 156 87 l 156 587 l 29 624 l 29 656 "},"3":{"x_min":94.3125,"x_max":678,"ha":745,"o":"m 121 264 l 203 95 q 269 80 238 83 q 339 77 300 77 q 415 90 377 77 q 484 128 453 103 q 533 188 514 153 q 553 267 553 223 q 525 368 553 333 q 453 421 497 404 q 355 438 408 438 q 248 438 301 438 l 239 438 l 239 532 l 253 532 q 345 538 296 532 q 436 566 395 545 q 506 625 478 587 q 534 723 534 662 q 518 798 534 768 q 475 848 502 829 q 412 876 448 868 q 338 885 377 885 q 214 865 274 885 l 140 675 l 102 675 l 102 915 q 228 962 161 947 q 353 977 295 977 q 466 965 411 977 q 564 927 522 954 q 631 852 606 900 q 657 732 657 804 q 641 646 657 685 q 599 580 625 608 q 539 531 573 551 q 468 498 505 511 q 563 468 523 490 q 628 415 603 446 q 665 348 653 384 q 678 276 678 311 q 650 153 678 207 q 576 61 622 98 q 470 4 529 23 q 346 -15 410 -15 q 257 -10 294 -15 q 176 7 219 -5 q 136 17 158 10 q 94 35 115 25 l 94 264 l 121 264 "},"9":{"x_min":52,"x_max":703,"ha":751,"o":"m 703 584 q 660 331 703 443 q 540 143 618 220 q 350 25 461 66 q 103 -15 239 -15 l 71 -15 l 71 75 l 109 75 q 448 190 321 75 q 575 530 575 306 q 547 480 570 506 q 492 432 524 454 q 421 395 460 410 q 336 381 381 381 q 231 396 282 381 q 139 446 180 412 q 75 530 99 479 q 52 651 52 580 q 77 781 52 722 q 148 884 103 841 q 252 951 193 927 q 377 976 312 976 q 523 944 461 976 q 624 860 584 913 q 683 736 664 808 q 703 584 703 665 m 579 665 q 557 747 572 708 q 517 817 542 787 q 456 864 491 847 q 372 882 421 882 q 293 865 329 882 q 228 820 256 848 q 186 753 201 791 q 170 672 170 715 q 219 529 170 584 q 354 475 268 475 q 431 489 396 475 q 493 530 466 504 q 541 590 520 556 q 579 665 562 625 "},"l":{"x_min":34.0625,"x_max":404,"ha":418,"o":"m 34 987 l 276 1044 l 276 87 l 404 36 l 404 0 l 42 0 l 42 36 l 162 87 l 162 917 l 34 955 l 34 987 "},"¤":{"x_min":41,"x_max":870,"ha":926,"o":"m 869 57 q 847 50 855 53 q 737 3 789 21 q 619 -15 685 -15 q 459 9 535 -15 q 320 82 382 34 q 214 197 259 129 q 152 351 170 265 l 41 351 l 41 387 l 143 429 q 142 447 142 438 q 142 466 142 456 q 146 535 142 501 l 42 535 l 42 571 l 159 613 q 222 759 180 692 q 324 873 264 825 q 459 948 384 921 q 621 975 534 975 q 690 975 660 975 q 747 969 720 975 q 803 954 775 963 q 869 929 832 945 l 867 927 l 870 927 l 870 686 l 818 686 l 753 863 q 691 875 723 872 q 616 879 660 879 q 497 858 551 879 q 402 803 443 838 q 330 718 360 768 q 284 613 301 669 l 588 613 l 588 535 l 269 535 q 267 505 267 519 q 267 475 267 490 q 267 451 267 463 q 268 429 267 440 l 587 429 l 587 351 l 281 351 q 405 156 313 229 q 633 84 497 84 q 667 86 653 84 q 692 91 680 88 q 715 99 703 95 q 743 110 727 104 l 829 286 l 869 286 l 869 57 "},"∂":{"x_min":90,"x_max":684,"ha":796,"o":"m 684 502 q 677 371 684 441 q 653 234 671 301 q 599 110 634 167 q 506 19 564 53 q 440 -8 475 0 q 367 -17 404 -17 q 252 8 303 -17 q 164 76 200 34 q 109 176 128 119 q 90 295 90 233 q 108 410 90 356 q 162 505 126 465 q 247 569 197 545 q 361 593 297 593 q 482 564 425 593 q 579 487 539 536 q 579 575 579 527 q 570 669 579 622 q 546 760 562 716 q 504 838 530 804 q 439 893 477 872 q 347 914 400 914 q 263 895 300 914 q 191 848 226 876 l 133 918 q 230 979 179 958 q 342 1001 280 1001 q 506 955 441 1001 q 611 837 572 909 q 667 676 651 764 q 684 502 684 587 m 575 388 q 487 472 539 437 q 373 507 434 507 q 293 488 328 507 q 236 440 259 470 q 202 372 214 411 q 191 291 191 333 q 202 209 191 249 q 236 136 214 168 q 292 85 259 104 q 370 66 325 66 q 466 98 427 66 q 529 180 505 131 q 564 286 553 230 q 575 388 575 342 "},"4":{"x_min":10,"x_max":738,"ha":783,"o":"m 455 87 l 455 257 l 10 257 l 10 342 l 457 973 l 568 973 l 568 353 l 738 353 l 738 257 l 567 257 l 567 86 l 678 36 l 678 0 l 335 0 l 335 36 l 455 87 m 456 748 q 460 811 456 780 q 465 853 464 842 q 448 815 461 842 q 416 762 434 788 l 188 414 q 170 389 180 401 q 152 368 160 377 q 135 348 143 357 q 158 349 145 348 q 182 351 169 351 q 211 351 196 351 l 455 351 l 455 748 l 456 748 "},"p":{"x_min":27,"x_max":744.421875,"ha":792,"o":"m 256 604 q 343 677 295 648 q 458 707 391 707 q 589 679 534 707 q 678 604 643 651 q 728 497 713 558 q 744 369 744 436 q 726 230 744 298 q 672 107 709 161 q 578 19 635 53 q 440 -15 521 -15 q 334 0 376 -15 q 256 48 291 14 l 256 -269 l 405 -314 l 405 -351 l 27 -351 l 27 -314 l 147 -269 l 147 583 l 27 620 l 27 654 l 256 711 l 256 604 m 626 366 q 614 459 626 414 q 579 541 602 505 q 519 600 556 577 q 434 622 483 622 q 331 582 374 622 q 260 491 288 543 l 260 158 q 335 91 288 112 q 432 69 382 69 q 528 99 490 69 q 587 174 565 129 q 617 271 609 219 q 626 366 626 322 "},"‡":{"x_min":82,"x_max":716,"ha":795,"o":"m 455 599 l 455 370 l 716 370 l 716 277 l 454 277 l 454 -1 l 346 -1 l 346 278 l 82 278 l 82 368 l 349 368 l 349 599 l 82 599 l 82 691 l 353 691 l 353 960 l 458 960 l 458 691 l 716 691 l 716 599 l 455 599 "},"à":{"x_min":41,"x_max":643,"ha":682,"o":"m 321 804 l 138 1005 l 247 1059 l 387 833 l 321 804 m 422 82 q 339 11 383 37 q 234 -15 295 -15 q 92 39 144 -15 q 41 186 41 93 q 79 305 41 260 q 176 375 118 350 q 300 410 234 400 q 423 427 367 421 q 422 439 422 427 q 422 468 422 452 l 422 510 q 410 555 422 535 q 380 592 398 576 q 338 617 362 608 q 290 627 314 627 q 213 620 247 627 q 145 587 180 613 l 96 468 l 61 468 l 61 627 l 62 627 q 121 667 93 650 q 177 693 148 683 q 239 709 206 704 q 316 714 273 714 q 396 700 357 714 q 464 663 434 687 q 512 605 494 639 q 530 530 530 571 l 530 111 l 643 73 l 643 41 l 422 -16 l 422 82 m 422 350 q 332 343 379 350 q 244 320 284 337 q 177 272 204 304 q 151 188 151 241 q 181 98 151 129 q 268 67 212 67 q 314 76 292 67 q 355 98 336 85 q 390 130 374 112 q 422 166 407 148 l 422 351 l 422 350 "},"Ü":{"x_min":-7,"x_max":937,"ha":930,"o":"m 230 334 q 283 145 230 209 q 462 82 336 82 q 578 102 531 82 q 652 161 624 123 q 693 252 681 200 q 706 369 706 305 l 706 873 l 589 924 l 589 961 l 937 961 l 937 924 l 816 873 l 816 549 q 816 380 816 463 q 795 213 816 286 q 732 89 775 140 q 622 11 689 37 q 460 -15 555 -15 q 194 77 278 -15 q 110 351 110 169 l 110 873 l -7 924 l -7 961 l 352 961 l 352 924 l 230 873 l 230 334 m 396 1162 q 311 1085 396 1085 q 226 1159 226 1085 q 311 1236 226 1236 q 396 1162 396 1236 m 713 1159 q 628 1082 713 1082 q 543 1156 543 1082 q 628 1233 543 1233 q 713 1159 713 1233 "},"ó":{"x_min":48,"x_max":690.421875,"ha":795,"o":"m 407 804 l 340 833 l 480 1059 l 589 1005 l 407 804 m 690 346 q 668 207 690 272 q 606 92 646 141 q 506 14 565 43 q 373 -15 448 -15 q 231 12 293 -15 q 129 89 170 40 q 68 203 88 137 q 48 346 48 269 q 71 483 48 418 q 137 598 94 548 q 240 677 180 648 q 376 707 301 707 q 515 679 456 707 q 613 602 574 651 q 671 488 652 554 q 690 346 690 422 m 572 346 q 562 442 572 393 q 529 532 552 491 q 468 597 506 572 q 374 622 430 622 q 280 597 318 622 q 215 532 241 572 q 177 442 189 491 q 166 346 166 393 q 177 248 166 297 q 214 159 189 198 q 278 94 238 119 q 374 69 317 69 q 466 94 429 69 q 527 159 503 119 q 561 248 551 198 q 572 346 572 297 "},"√":{"x_min":-1,"x_max":614.21875,"ha":618,"o":"m 386 3 l 284 3 l 64 467 l -1 467 l -1 520 l 150 520 l 320 151 l 510 1092 l 614 1092 l 386 3 "}},"cssFontWeight":"normal","ascender":1295,"underlinePosition":-75,"cssFontStyle":"normal","boundingBox":{"yMin":-367,"xMin":-131,"yMax":1294,"xMax":1617},"resolution":1000,"original_font_information":{"postscript_name":"Contra","version_string":"0.7","vendor_url":"www.apostrophiclab.com","full_font_name":"Contra","font_family_name":"Contra","copyright":"Copyright (c) Fredrick Nader, 2003. All rights reserved.","description":"","trademark":"Contra is a trademark of Fredrick Nader.","designer":"Fredrick Nader","designer_url":"www.apostrophiclab.com","unique_font_identifier":"FredrickNader: Contra: 2003","license_url":"","license_description":"","manufacturer_name":"Fredrick Nader","font_sub_family_name":"Regular"},"descender":-367,"familyName":"Contra","lineHeight":1696,"underlineThickness":50});
