
/* Comment Generated by Combres - Resource '~/js/ResourceHandler.ashx?file=AC_RunActiveContent.js&cache=false' (Mode: Dynamic) */
//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2007 Adobe Systems Incorporated.  All rights reserved.
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;

function ControlVersion()
{
	var version;
	var axo;
	var e;

	// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry

	try {
		// version will be set for 7.X or greater players
		axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
		version = axo.GetVariable("$version");
	} catch (e) {
	}

	if (!version)
	{
		try {
			// version will be set for 6.X players only
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
			
			// installed player is some revision of 6.0
			// GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
			// so we have to be careful. 
			
			// default to the first public version
			version = "WIN 6,0,21,0";

			// throws if AllowScripAccess does not exist (introduced in 6.0r47)		
			axo.AllowScriptAccess = "always";

			// safe to call for 6.0r47 or greater
			version = axo.GetVariable("$version");

		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 4.X or 5.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = axo.GetVariable("$version");
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 3.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = "WIN 3,0,18,0";
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 2.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
			version = "WIN 2,0,0,11";
		} catch (e) {
			version = -1;
		}
	}
	
	return version;
}

// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
	// NS/Opera version >= 3 check for Flash plugin in plugin array
	var flashVer = -1;
	
	if (navigator.plugins != null && navigator.plugins.length > 0) {
		if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
			var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
			var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
			var descArray = flashDescription.split(" ");
			var tempArrayMajor = descArray[2].split(".");			
			var versionMajor = tempArrayMajor[0];
			var versionMinor = tempArrayMajor[1];
			var versionRevision = descArray[3];
			if (versionRevision == "") {
				versionRevision = descArray[4];
			}
			if (versionRevision[0] == "d") {
				versionRevision = versionRevision.substring(1);
			} else if (versionRevision[0] == "r") {
				versionRevision = versionRevision.substring(1);
				if (versionRevision.indexOf("d") > 0) {
					versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
				}
			}
			var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
		}
	}
	// MSN/WebTV 2.6 supports Flash 4
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
	// WebTV 2.5 supports Flash 3
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
	// older WebTV supports Flash 2
	else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
	else if ( isIE && isWin && !isOpera ) {
		flashVer = ControlVersion();
	}	
	return flashVer;
}

// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
	versionStr = GetSwfVer();
	if (versionStr == -1 ) {
		return false;
	} else if (versionStr != 0) {
		if(isIE && isWin && !isOpera) {
			// Given "WIN 2,0,0,11"
			tempArray         = versionStr.split(" "); 	// ["WIN", "2,0,0,11"]
			tempString        = tempArray[1];			// "2,0,0,11"
			versionArray      = tempString.split(",");	// ['2', '0', '0', '11']
		} else {
			versionArray      = versionStr.split(".");
		}
		var versionMajor      = versionArray[0];
		var versionMinor      = versionArray[1];
		var versionRevision   = versionArray[2];

        	// is the major.revision >= requested major.revision AND the minor version >= requested minor
		if (versionMajor > parseFloat(reqMajorVer)) {
			return true;
		} else if (versionMajor == parseFloat(reqMajorVer)) {
			if (versionMinor > parseFloat(reqMinorVer))
				return true;
			else if (versionMinor == parseFloat(reqMinorVer)) {
				if (versionRevision >= parseFloat(reqRevision))
					return true;
			}
		}
		return false;
	}
}

function AC_AddExtension(src, ext)
{
  if (src.indexOf('?') != -1)
    return src.replace(/\?/, ext+'?'); 
  else
    return src + ext;
}

function AC_Generateobj(objAttrs, params, embedAttrs) 
{ 
  var str = '';
  if (isIE && isWin && !isOpera)
  {
    str += '<object ';
    for (var i in objAttrs)
    {
      str += i + '="' + objAttrs[i] + '" ';
    }
    str += '>';
    for (var i in params)
    {
      str += '<param name="' + i + '" value="' + params[i] + '" /> ';
    }
    str += '</object>';
  }
  else
  {
    str += '<embed ';
    for (var i in embedAttrs)
    {
      str += i + '="' + embedAttrs[i] + '" ';
    }
    str += '> </embed>';
  }

  document.write(str);
}

function AC_FL_RunContent_BOSS(){
  var ret = 
    AC_GetArgs
    (  arguments, "", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     , "application/x-shockwave-flash"
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_FL_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     , "application/x-shockwave-flash"
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_SW_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
     , null
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
  var ret = new Object();
  ret.embedAttrs = new Object();
  ret.params = new Object();
  ret.objAttrs = new Object();
  for (var i=0; i < args.length; i=i+2){
    var currArg = args[i].toLowerCase();    

    switch (currArg){	
      case "classid":
        break;
      case "pluginspage":
        ret.embedAttrs[args[i]] = args[i+1];
        break;
      case "src":
      case "movie":	
        args[i+1] = AC_AddExtension(args[i+1], ext);
        ret.embedAttrs["src"] = args[i+1];
        ret.params[srcParamName] = args[i+1];
        break;
      case "onafterupdate":
      case "onbeforeupdate":
      case "onblur":
      case "oncellchange":
      case "onclick":
      case "ondblClick":
      case "ondrag":
      case "ondragend":
      case "ondragenter":
      case "ondragleave":
      case "ondragover":
      case "ondrop":
      case "onfinish":
      case "onfocus":
      case "onhelp":
      case "onmousedown":
      case "onmouseup":
      case "onmouseover":
      case "onmousemove":
      case "onmouseout":
      case "onkeypress":
      case "onkeydown":
      case "onkeyup":
      case "onload":
      case "onlosecapture":
      case "onpropertychange":
      case "onreadystatechange":
      case "onrowsdelete":
      case "onrowenter":
      case "onrowexit":
      case "onrowsinserted":
      case "onstart":
      case "onscroll":
      case "onbeforeeditfocus":
      case "onactivate":
      case "onbeforedeactivate":
      case "ondeactivate":
      case "type":
      case "codebase":
      case "id":
        ret.objAttrs[args[i]] = args[i+1];
        break;
      case "width":
      case "height":
      case "align":
      case "vspace": 
      case "hspace":
      case "class":
      case "title":
      case "accesskey":
      case "name":
      case "tabindex":
        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
        break;
      default:
        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
    }
  }
  ret.objAttrs["classid"] = classid;
  if (mimeType) ret.embedAttrs["type"] = mimeType;
  return ret;
}
;


/* Comment Generated by Combres - Resource '~/js/ResourceHandler.ashx?file=jquery-1.5.1.min.js&cache=false' (Mode: Dynamic) */
/*!
 * jQuery JavaScript Library v1.5.1
 * http://jquery.com/
 *
 * Copyright 2011, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 * Copyright 2011, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Wed Feb 23 13:55:29 2011 -0500
 */
(function(a,b){function cg(a){return d.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cd(a){if(!bZ[a]){var b=d("<"+a+">").appendTo("body"),c=b.css("display");b.remove();if(c==="none"||c==="")c="block";bZ[a]=c}return bZ[a]}function cc(a,b){var c={};d.each(cb.concat.apply([],cb.slice(0,b)),function(){c[this]=a});return c}function bY(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function bX(){try{return new a.XMLHttpRequest}catch(b){}}function bW(){d(a).unload(function(){for(var a in bU)bU[a](0,1)})}function bQ(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var e=a.dataTypes,f={},g,h,i=e.length,j,k=e[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h==="string"&&(f[h.toLowerCase()]=a.converters[h]);l=k,k=e[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=f[m]||f["* "+k];if(!n){p=b;for(o in f){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=f[j[1]+" "+k];if(p){o=f[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&d.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function bP(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function bO(a,b,c,e){if(d.isArray(b)&&b.length)d.each(b,function(b,f){c||bq.test(a)?e(a,f):bO(a+"["+(typeof f==="object"||d.isArray(f)?b:"")+"]",f,c,e)});else if(c||b==null||typeof b!=="object")e(a,b);else if(d.isArray(b)||d.isEmptyObject(b))e(a,"");else for(var f in b)bO(a+"["+f+"]",b[f],c,e)}function bN(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bH,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l==="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=bN(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=bN(a,c,d,e,"*",g));return l}function bM(a){return function(b,c){typeof b!=="string"&&(c=b,b="*");if(d.isFunction(c)){var e=b.toLowerCase().split(bB),f=0,g=e.length,h,i,j;for(;f<g;f++)h=e[f],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bo(a,b,c){var e=b==="width"?bi:bj,f=b==="width"?a.offsetWidth:a.offsetHeight;if(c==="border")return f;d.each(e,function(){c||(f-=parseFloat(d.css(a,"padding"+this))||0),c==="margin"?f+=parseFloat(d.css(a,"margin"+this))||0:f-=parseFloat(d.css(a,"border"+this+"Width"))||0});return f}function ba(a,b){b.src?d.ajax({url:b.src,async:!1,dataType:"script"}):d.globalEval(b.text||b.textContent||b.innerHTML||""),b.parentNode&&b.parentNode.removeChild(b)}function _(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function $(a,b){if(b.nodeType===1){var c=b.nodeName.toLowerCase();b.clearAttributes(),b.mergeAttributes(a);if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(d.expando)}}function Z(a,b){if(b.nodeType===1&&d.hasData(a)){var c=d.expando,e=d.data(a),f=d.data(b,e);if(e=e[c]){var g=e.events;f=f[c]=d.extend({},e);if(g){delete f.handle,f.events={};for(var h in g)for(var i=0,j=g[h].length;i<j;i++)d.event.add(b,h+(g[h][i].namespace?".":"")+g[h][i].namespace,g[h][i],g[h][i].data)}}}}function Y(a,b){return d.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function O(a,b,c){if(d.isFunction(b))return d.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return d.grep(a,function(a,d){return a===b===c});if(typeof b==="string"){var e=d.grep(a,function(a){return a.nodeType===1});if(J.test(b))return d.filter(b,e,!c);b=d.filter(b,e)}return d.grep(a,function(a,e){return d.inArray(a,b)>=0===c})}function N(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function F(a,b){return(a&&a!=="*"?a+".":"")+b.replace(r,"`").replace(s,"&")}function E(a){var b,c,e,f,g,h,i,j,k,l,m,n,o,q=[],r=[],s=d._data(this,"events");if(a.liveFired!==this&&s&&s.live&&!a.target.disabled&&(!a.button||a.type!=="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var t=s.live.slice(0);for(i=0;i<t.length;i++)g=t[i],g.origType.replace(p,"")===a.type?r.push(g.selector):t.splice(i--,1);f=d(a.target).closest(r,a.currentTarget);for(j=0,k=f.length;j<k;j++){m=f[j];for(i=0;i<t.length;i++){g=t[i];if(m.selector===g.selector&&(!n||n.test(g.namespace))&&!m.elem.disabled){h=m.elem,e=null;if(g.preType==="mouseenter"||g.preType==="mouseleave")a.type=g.preType,e=d(a.relatedTarget).closest(g.selector)[0];(!e||e!==h)&&q.push({elem:h,handleObj:g,level:m.level})}}}for(j=0,k=q.length;j<k;j++){f=q[j];if(c&&f.level>c)break;a.currentTarget=f.elem,a.data=f.handleObj.data,a.handleObj=f.handleObj,o=f.handleObj.origHandler.apply(f.elem,arguments);if(o===!1||a.isPropagationStopped()){c=f.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function C(a,c,e){var f=d.extend({},e[0]);f.type=a,f.originalEvent={},f.liveFired=b,d.event.handle.call(c,f),f.isDefaultPrevented()&&e[0].preventDefault()}function w(){return!0}function v(){return!1}function g(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function f(a,c,f){if(f===b&&a.nodeType===1){f=a.getAttribute("data-"+c);if(typeof f==="string"){try{f=f==="true"?!0:f==="false"?!1:f==="null"?null:d.isNaN(f)?e.test(f)?d.parseJSON(f):f:parseFloat(f)}catch(g){}d.data(a,c,f)}else f=b}return f}var c=a.document,d=function(){function I(){if(!d.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(I,1);return}d.ready()}}var d=function(a,b){return new d.fn.init(a,b,g)},e=a.jQuery,f=a.$,g,h=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,i=/\S/,j=/^\s+/,k=/\s+$/,l=/\d/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=navigator.userAgent,w,x=!1,y,z="then done fail isResolved isRejected promise".split(" "),A,B=Object.prototype.toString,C=Object.prototype.hasOwnProperty,D=Array.prototype.push,E=Array.prototype.slice,F=String.prototype.trim,G=Array.prototype.indexOf,H={};d.fn=d.prototype={constructor:d,init:function(a,e,f){var g,i,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!e&&c.body){this.context=c,this[0]=c.body,this.selector="body",this.length=1;return this}if(typeof a==="string"){g=h.exec(a);if(!g||!g[1]&&e)return!e||e.jquery?(e||f).find(a):this.constructor(e).find(a);if(g[1]){e=e instanceof d?e[0]:e,k=e?e.ownerDocument||e:c,j=m.exec(a),j?d.isPlainObject(e)?(a=[c.createElement(j[1])],d.fn.attr.call(a,e,!0)):a=[k.createElement(j[1])]:(j=d.buildFragment([g[1]],[k]),a=(j.cacheable?d.clone(j.fragment):j.fragment).childNodes);return d.merge(this,a)}i=c.getElementById(g[2]);if(i&&i.parentNode){if(i.id!==g[2])return f.find(a);this.length=1,this[0]=i}this.context=c,this.selector=a;return this}if(d.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return d.makeArray(a,this)},selector:"",jquery:"1.5.1",length:0,size:function(){return this.length},toArray:function(){return E.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var e=this.constructor();d.isArray(a)?D.apply(e,a):d.merge(e,a),e.prevObject=this,e.context=this.context,b==="find"?e.selector=this.selector+(this.selector?" ":"")+c:b&&(e.selector=this.selector+"."+b+"("+c+")");return e},each:function(a,b){return d.each(this,a,b)},ready:function(a){d.bindReady(),y.done(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(E.apply(this,arguments),"slice",E.call(arguments).join(","))},map:function(a){return this.pushStack(d.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:D,sort:[].sort,splice:[].splice},d.fn.init.prototype=d.fn,d.extend=d.fn.extend=function(){var a,c,e,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i==="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!=="object"&&!d.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){e=i[c],f=a[c];if(i===f)continue;l&&f&&(d.isPlainObject(f)||(g=d.isArray(f)))?(g?(g=!1,h=e&&d.isArray(e)?e:[]):h=e&&d.isPlainObject(e)?e:{},i[c]=d.extend(l,h,f)):f!==b&&(i[c]=f)}return i},d.extend({noConflict:function(b){a.$=f,b&&(a.jQuery=e);return d},isReady:!1,readyWait:1,ready:function(a){a===!0&&d.readyWait--;if(!d.readyWait||a!==!0&&!d.isReady){if(!c.body)return setTimeout(d.ready,1);d.isReady=!0;if(a!==!0&&--d.readyWait>0)return;y.resolveWith(c,[d]),d.fn.trigger&&d(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!x){x=!0;if(c.readyState==="complete")return setTimeout(d.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",A,!1),a.addEventListener("load",d.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",A),a.attachEvent("onload",d.ready);var b=!1;try{b=a.frameElement==null}catch(e){}c.documentElement.doScroll&&b&&I()}}},isFunction:function(a){return d.type(a)==="function"},isArray:Array.isArray||function(a){return d.type(a)==="array"},isWindow:function(a){return a&&typeof a==="object"&&"setInterval"in a},isNaN:function(a){return a==null||!l.test(a)||isNaN(a)},type:function(a){return a==null?String(a):H[B.call(a)]||"object"},isPlainObject:function(a){if(!a||d.type(a)!=="object"||a.nodeType||d.isWindow(a))return!1;if(a.constructor&&!C.call(a,"constructor")&&!C.call(a.constructor.prototype,"isPrototypeOf"))return!1;var c;for(c in a){}return c===b||C.call(a,c)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!=="string"||!b)return null;b=d.trim(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return a.JSON&&a.JSON.parse?a.JSON.parse(b):(new Function("return "+b))();d.error("Invalid JSON: "+b)},parseXML:function(b,c,e){a.DOMParser?(e=new DOMParser,c=e.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b)),e=c.documentElement,(!e||!e.nodeName||e.nodeName==="parsererror")&&d.error("Invalid XML: "+b);return c},noop:function(){},globalEval:function(a){if(a&&i.test(a)){var b=c.head||c.getElementsByTagName("head")[0]||c.documentElement,e=c.createElement("script");d.support.scriptEval()?e.appendChild(c.createTextNode(a)):e.text=a,b.insertBefore(e,b.firstChild),b.removeChild(e)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,e){var f,g=0,h=a.length,i=h===b||d.isFunction(a);if(e){if(i){for(f in a)if(c.apply(a[f],e)===!1)break}else for(;g<h;)if(c.apply(a[g++],e)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(var j=a[0];g<h&&c.call(j,g,j)!==!1;j=a[++g]){}return a},trim:F?function(a){return a==null?"":F.call(a)}:function(a){return a==null?"":(a+"").replace(j,"").replace(k,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var e=d.type(a);a.length==null||e==="string"||e==="function"||e==="regexp"||d.isWindow(a)?D.call(c,a):d.merge(c,a)}return c},inArray:function(a,b){if(b.indexOf)return b.indexOf(a);for(var c=0,d=b.length;c<d;c++)if(b[c]===a)return c;return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length==="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,b,c){var d=[],e;for(var f=0,g=a.length;f<g;f++)e=b(a[f],f,c),e!=null&&(d[d.length]=e);return d.concat.apply([],d)},guid:1,proxy:function(a,c,e){arguments.length===2&&(typeof c==="string"?(e=a,a=e[c],c=b):c&&!d.isFunction(c)&&(e=c,c=b)),!c&&a&&(c=function(){return a.apply(e||this,arguments)}),a&&(c.guid=a.guid=a.guid||c.guid||d.guid++);return c},access:function(a,c,e,f,g,h){var i=a.length;if(typeof c==="object"){for(var j in c)d.access(a,j,c[j],f,g,e);return a}if(e!==b){f=!h&&f&&d.isFunction(e);for(var k=0;k<i;k++)g(a[k],c,f?e.call(a[k],k,g(a[k],c)):e,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},_Deferred:function(){var a=[],b,c,e,f={done:function(){if(!e){var c=arguments,g,h,i,j,k;b&&(k=b,b=0);for(g=0,h=c.length;g<h;g++)i=c[g],j=d.type(i),j==="array"?f.done.apply(f,i):j==="function"&&a.push(i);k&&f.resolveWith(k[0],k[1])}return this},resolveWith:function(d,f){if(!e&&!b&&!c){c=1;try{while(a[0])a.shift().apply(d,f)}catch(g){throw g}finally{b=[d,f],c=0}}return this},resolve:function(){f.resolveWith(d.isFunction(this.promise)?this.promise():this,arguments);return this},isResolved:function(){return c||b},cancel:function(){e=1,a=[];return this}};return f},Deferred:function(a){var b=d._Deferred(),c=d._Deferred(),e;d.extend(b,{then:function(a,c){b.done(a).fail(c);return this},fail:c.done,rejectWith:c.resolveWith,reject:c.resolve,isRejected:c.isResolved,promise:function(a){if(a==null){if(e)return e;e=a={}}var c=z.length;while(c--)a[z[c]]=b[z[c]];return a}}),b.done(c.cancel).fail(b.cancel),delete b.cancel,a&&a.call(b,b);return b},when:function(a){var b=arguments.length,c=b<=1&&a&&d.isFunction(a.promise)?a:d.Deferred(),e=c.promise();if(b>1){var f=E.call(arguments,0),g=b,h=function(a){return function(b){f[a]=arguments.length>1?E.call(arguments,0):b,--g||c.resolveWith(e,f)}};while(b--)a=f[b],a&&d.isFunction(a.promise)?a.promise().then(h(b),c.reject):--g;g||c.resolveWith(e,f)}else c!==a&&c.resolve(a);return e},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}d.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.subclass=this.subclass,a.fn.init=function b(b,c){c&&c instanceof d&&!(c instanceof a)&&(c=a(c));return d.fn.init.call(this,b,c,e)},a.fn.init.prototype=a.fn;var e=a(c);return a},browser:{}}),y=d._Deferred(),d.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){H["[object "+b+"]"]=b.toLowerCase()}),w=d.uaMatch(v),w.browser&&(d.browser[w.browser]=!0,d.browser.version=w.version),d.browser.webkit&&(d.browser.safari=!0),G&&(d.inArray=function(a,b){return G.call(b,a)}),i.test(" ")&&(j=/^[\s\xA0]+/,k=/[\s\xA0]+$/),g=d(c),c.addEventListener?A=function(){c.removeEventListener("DOMContentLoaded",A,!1),d.ready()}:c.attachEvent&&(A=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",A),d.ready())});return d}();(function(){d.support={};var b=c.createElement("div");b.style.display="none",b.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var e=b.getElementsByTagName("*"),f=b.getElementsByTagName("a")[0],g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=b.getElementsByTagName("input")[0];if(e&&e.length&&f){d.support={leadingWhitespace:b.firstChild.nodeType===3,tbody:!b.getElementsByTagName("tbody").length,htmlSerialize:!!b.getElementsByTagName("link").length,style:/red/.test(f.getAttribute("style")),hrefNormalized:f.getAttribute("href")==="/a",opacity:/^0.55$/.test(f.style.opacity),cssFloat:!!f.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,deleteExpando:!0,optDisabled:!1,checkClone:!1,noCloneEvent:!0,noCloneChecked:!0,boxModel:null,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableHiddenOffsets:!0},i.checked=!0,d.support.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,d.support.optDisabled=!h.disabled;var j=null;d.support.scriptEval=function(){if(j===null){var b=c.documentElement,e=c.createElement("script"),f="script"+d.now();try{e.appendChild(c.createTextNode("window."+f+"=1;"))}catch(g){}b.insertBefore(e,b.firstChild),a[f]?(j=!0,delete a[f]):j=!1,b.removeChild(e),b=e=f=null}return j};try{delete b.test}catch(k){d.support.deleteExpando=!1}!b.addEventListener&&b.attachEvent&&b.fireEvent&&(b.attachEvent("onclick",function l(){d.support.noCloneEvent=!1,b.detachEvent("onclick",l)}),b.cloneNode(!0).fireEvent("onclick")),b=c.createElement("div"),b.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";var m=c.createDocumentFragment();m.appendChild(b.firstChild),d.support.checkClone=m.cloneNode(!0).cloneNode(!0).lastChild.checked,d(function(){var a=c.createElement("div"),b=c.getElementsByTagName("body")[0];if(b){a.style.width=a.style.paddingLeft="1px",b.appendChild(a),d.boxModel=d.support.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,d.support.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="<div style='width:4px;'></div>",d.support.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>";var e=a.getElementsByTagName("td");d.support.reliableHiddenOffsets=e[0].offsetHeight===0,e[0].style.display="",e[1].style.display="none",d.support.reliableHiddenOffsets=d.support.reliableHiddenOffsets&&e[0].offsetHeight===0,a.innerHTML="",b.removeChild(a).style.display="none",a=e=null}});var n=function(a){var b=c.createElement("div");a="on"+a;if(!b.attachEvent)return!0;var d=a in b;d||(b.setAttribute(a,"return;"),d=typeof b[a]==="function"),b=null;return d};d.support.submitBubbles=n("submit"),d.support.changeBubbles=n("change"),b=e=f=null}})();var e=/^(?:\{.*\}|\[.*\])$/;d.extend({cache:{},uuid:0,expando:"jQuery"+(d.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?d.cache[a[d.expando]]:a[d.expando];return!!a&&!g(a)},data:function(a,c,e,f){if(d.acceptData(a)){var g=d.expando,h=typeof c==="string",i,j=a.nodeType,k=j?d.cache:a,l=j?a[d.expando]:a[d.expando]&&d.expando;if((!l||f&&l&&!k[l][g])&&h&&e===b)return;l||(j?a[d.expando]=l=++d.uuid:l=d.expando),k[l]||(k[l]={},j||(k[l].toJSON=d.noop));if(typeof c==="object"||typeof c==="function")f?k[l][g]=d.extend(k[l][g],c):k[l]=d.extend(k[l],c);i=k[l],f&&(i[g]||(i[g]={}),i=i[g]),e!==b&&(i[c]=e);if(c==="events"&&!i[c])return i[g]&&i[g].events;return h?i[c]:i}},removeData:function(b,c,e){if(d.acceptData(b)){var f=d.expando,h=b.nodeType,i=h?d.cache:b,j=h?b[d.expando]:d.expando;if(!i[j])return;if(c){var k=e?i[j][f]:i[j];if(k){delete k[c];if(!g(k))return}}if(e){delete i[j][f];if(!g(i[j]))return}var l=i[j][f];d.support.deleteExpando||i!=a?delete i[j]:i[j]=null,l?(i[j]={},h||(i[j].toJSON=d.noop),i[j][f]=l):h&&(d.support.deleteExpando?delete b[d.expando]:b.removeAttribute?b.removeAttribute(d.expando):b[d.expando]=null)}},_data:function(a,b,c){return d.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=d.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),d.fn.extend({data:function(a,c){var e=null;if(typeof a==="undefined"){if(this.length){e=d.data(this[0]);if(this[0].nodeType===1){var g=this[0].attributes,h;for(var i=0,j=g.length;i<j;i++)h=g[i].name,h.indexOf("data-")===0&&(h=h.substr(5),f(this[0],h,e[h]))}}return e}if(typeof a==="object")return this.each(function(){d.data(this,a)});var k=a.split(".");k[1]=k[1]?"."+k[1]:"";if(c===b){e=this.triggerHandler("getData"+k[1]+"!",[k[0]]),e===b&&this.length&&(e=d.data(this[0],a),e=f(this[0],a,e));return e===b&&k[1]?this.data(k[0]):e}return this.each(function(){var b=d(this),e=[k[0],c];b.triggerHandler("setData"+k[1]+"!",e),d.data(this,a,c),b.triggerHandler("changeData"+k[1]+"!",e)})},removeData:function(a){return this.each(function(){d.removeData(this,a)})}}),d.extend({queue:function(a,b,c){if(a){b=(b||"fx")+"queue";var e=d._data(a,b);if(!c)return e||[];!e||d.isArray(c)?e=d._data(a,b,d.makeArray(c)):e.push(c);return e}},dequeue:function(a,b){b=b||"fx";var c=d.queue(a,b),e=c.shift();e==="inprogress"&&(e=c.shift()),e&&(b==="fx"&&c.unshift("inprogress"),e.call(a,function(){d.dequeue(a,b)})),c.length||d.removeData(a,b+"queue",!0)}}),d.fn.extend({queue:function(a,c){typeof a!=="string"&&(c=a,a="fx");if(c===b)return d.queue(this[0],a);return this.each(function(b){var e=d.queue(this,a,c);a==="fx"&&e[0]!=="inprogress"&&d.dequeue(this,a)})},dequeue:function(a){return this.each(function(){d.dequeue(this,a)})},delay:function(a,b){a=d.fx?d.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(){var c=this;setTimeout(function(){d.dequeue(c,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var h=/[\n\t\r]/g,i=/\s+/,j=/\r/g,k=/^(?:href|src|style)$/,l=/^(?:button|input)$/i,m=/^(?:button|input|object|select|textarea)$/i,n=/^a(?:rea)?$/i,o=/^(?:radio|checkbox)$/i;d.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"},d.fn.extend({attr:function(a,b){return d.access(this,a,b,!0,d.attr)},removeAttr:function(a,b){return this.each(function(){d.attr(this,a,""),this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.addClass(a.call(this,b,c.attr("class")))});if(a&&typeof a==="string"){var b=(a||"").split(i);for(var c=0,e=this.length;c<e;c++){var f=this[c];if(f.nodeType===1)if(f.className){var g=" "+f.className+" ",h=f.className;for(var j=0,k=b.length;j<k;j++)g.indexOf(" "+b[j]+" ")<0&&(h+=" "+b[j]);f.className=d.trim(h)}else f.className=a}}return this},removeClass:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.removeClass(a.call(this,b,c.attr("class")))});if(a&&typeof a==="string"||a===b){var c=(a||"").split(i);for(var e=0,f=this.length;e<f;e++){var g=this[e];if(g.nodeType===1&&g.className)if(a){var j=(" "+g.className+" ").replace(h," ");for(var k=0,l=c.length;k<l;k++)j=j.replace(" "+c[k]+" "," ");g.className=d.trim(j)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,e=typeof b==="boolean";if(d.isFunction(a))return this.each(function(c){var e=d(this);e.toggleClass(a.call(this,c,e.attr("class"),b),b)});return this.each(function(){if(c==="string"){var f,g=0,h=d(this),j=b,k=a.split(i);while(f=k[g++])j=e?j:!h.hasClass(f),h[j?"addClass":"removeClass"](f)}else if(c==="undefined"||c==="boolean")this.className&&d._data(this,"__className__",this.className),this.className=this.className||a===!1?"":d._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ";for(var c=0,d=this.length;c<d;c++)if((" "+this[c].className+" ").replace(h," ").indexOf(b)>-1)return!0;return!1},val:function(a){if(!arguments.length){var c=this[0];if(c){if(d.nodeName(c,"option")){var e=c.attributes.value;return!e||e.specified?c.value:c.text}if(d.nodeName(c,"select")){var f=c.selectedIndex,g=[],h=c.options,i=c.type==="select-one";if(f<0)return null;for(var k=i?f:0,l=i?f+1:h.length;k<l;k++){var m=h[k];if(m.selected&&(d.support.optDisabled?!m.disabled:m.getAttribute("disabled")===null)&&(!m.parentNode.disabled||!d.nodeName(m.parentNode,"optgroup"))){a=d(m).val();if(i)return a;g.push(a)}}if(i&&!g.length&&h.length)return d(h[f]).val();return g}if(o.test(c.type)&&!d.support.checkOn)return c.getAttribute("value")===null?"on":c.value;return(c.value||"").replace(j,"")}return b}var n=d.isFunction(a);return this.each(function(b){var c=d(this),e=a;if(this.nodeType===1){n&&(e=a.call(this,b,c.val())),e==null?e="":typeof e==="number"?e+="":d.isArray(e)&&(e=d.map(e,function(a){return a==null?"":a+""}));if(d.isArray(e)&&o.test(this.type))this.checked=d.inArray(c.val(),e)>=0;else if(d.nodeName(this,"select")){var f=d.makeArray(e);d("option",this).each(function(){this.selected=d.inArray(d(this).val(),f)>=0}),f.length||(this.selectedIndex=-1)}else this.value=e}})}}),d.extend({attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,e,f){if(!a||a.nodeType===3||a.nodeType===8||a.nodeType===2)return b;if(f&&c in d.attrFn)return d(a)[c](e);var g=a.nodeType!==1||!d.isXMLDoc(a),h=e!==b;c=g&&d.props[c]||c;if(a.nodeType===1){var i=k.test(c);if(c==="selected"&&!d.support.optSelected){var j=a.parentNode;j&&(j.selectedIndex,j.parentNode&&j.parentNode.selectedIndex)}if((c in a||a[c]!==b)&&g&&!i){h&&(c==="type"&&l.test(a.nodeName)&&a.parentNode&&d.error("type property can't be changed"),e===null?a.nodeType===1&&a.removeAttribute(c):a[c]=e);if(d.nodeName(a,"form")&&a.getAttributeNode(c))return a.getAttributeNode(c).nodeValue;if(c==="tabIndex"){var o=a.getAttributeNode("tabIndex");return o&&o.specified?o.value:m.test(a.nodeName)||n.test(a.nodeName)&&a.href?0:b}return a[c]}if(!d.support.style&&g&&c==="style"){h&&(a.style.cssText=""+e);return a.style.cssText}h&&a.setAttribute(c,""+e);if(!a.attributes[c]&&(a.hasAttribute&&!a.hasAttribute(c)))return b;var p=!d.support.hrefNormalized&&g&&i?a.getAttribute(c,2):a.getAttribute(c);return p===null?b:p}h&&(a[c]=e);return a[c]}});var p=/\.(.*)$/,q=/^(?:textarea|input|select)$/i,r=/\./g,s=/ /g,t=/[^\w\s.|`]/g,u=function(a){return a.replace(t,"\\$&")};d.event={add:function(c,e,f,g){if(c.nodeType!==3&&c.nodeType!==8){try{d.isWindow(c)&&(c!==a&&!c.frameElement)&&(c=a)}catch(h){}if(f===!1)f=v;else if(!f)return;var i,j;f.handler&&(i=f,f=i.handler),f.guid||(f.guid=d.guid++);var k=d._data(c);if(!k)return;var l=k.events,m=k.handle;l||(k.events=l={}),m||(k.handle=m=function(){return typeof d!=="undefined"&&!d.event.triggered?d.event.handle.apply(m.elem,arguments):b}),m.elem=c,e=e.split(" ");var n,o=0,p;while(n=e[o++]){j=i?d.extend({},i):{handler:f,data:g},n.indexOf(".")>-1?(p=n.split("."),n=p.shift(),j.namespace=p.slice(0).sort().join(".")):(p=[],j.namespace=""),j.type=n,j.guid||(j.guid=f.guid);var q=l[n],r=d.event.special[n]||{};if(!q){q=l[n]=[];if(!r.setup||r.setup.call(c,g,p,m)===!1)c.addEventListener?c.addEventListener(n,m,!1):c.attachEvent&&c.attachEvent("on"+n,m)}r.add&&(r.add.call(c,j),j.handler.guid||(j.handler.guid=f.guid)),q.push(j),d.event.global[n]=!0}c=null}},global:{},remove:function(a,c,e,f){if(a.nodeType!==3&&a.nodeType!==8){e===!1&&(e=v);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=d.hasData(a)&&d._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(e=c.handler,c=c.type);if(!c||typeof c==="string"&&c.charAt(0)==="."){c=c||"";for(h in t)d.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+d.map(m.slice(0).sort(),u).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!e){for(j=0;j<p.length;j++){q=p[j];if(l||n.test(q.namespace))d.event.remove(a,r,q.handler,j),p.splice(j--,1)}continue}o=d.event.special[h]||{};for(j=f||0;j<p.length;j++){q=p[j];if(e.guid===q.guid){if(l||n.test(q.namespace))f==null&&p.splice(j--,1),o.remove&&o.remove.call(a,q);if(f!=null)break}}if(p.length===0||f!=null&&p.length===1)(!o.teardown||o.teardown.call(a,m)===!1)&&d.removeEvent(a,h,s.handle),g=null,delete t[h]}if(d.isEmptyObject(t)){var w=s.handle;w&&(w.elem=null),delete s.events,delete s.handle,d.isEmptyObject(s)&&d.removeData(a,b,!0)}}},trigger:function(a,c,e){var f=a.type||a,g=arguments[3];if(!g){a=typeof a==="object"?a[d.expando]?a:d.extend(d.Event(f),a):d.Event(f),f.indexOf("!")>=0&&(a.type=f=f.slice(0,-1),a.exclusive=!0),e||(a.stopPropagation(),d.event.global[f]&&d.each(d.cache,function(){var b=d.expando,e=this[b];e&&e.events&&e.events[f]&&d.event.trigger(a,c,e.handle.elem)}));if(!e||e.nodeType===3||e.nodeType===8)return b;a.result=b,a.target=e,c=d.makeArray(c),c.unshift(a)}a.currentTarget=e;var h=d._data(e,"handle");h&&h.apply(e,c);var i=e.parentNode||e.ownerDocument;try{e&&e.nodeName&&d.noData[e.nodeName.toLowerCase()]||e["on"+f]&&e["on"+f].apply(e,c)===!1&&(a.result=!1,a.preventDefault())}catch(j){}if(!a.isPropagationStopped()&&i)d.event.trigger(a,c,i,!0);else if(!a.isDefaultPrevented()){var k,l=a.target,m=f.replace(p,""),n=d.nodeName(l,"a")&&m==="click",o=d.event.special[m]||{};if((!o._default||o._default.call(e,a)===!1)&&!n&&!(l&&l.nodeName&&d.noData[l.nodeName.toLowerCase()])){try{l[m]&&(k=l["on"+m],k&&(l["on"+m]=null),d.event.triggered=!0,l[m]())}catch(q){}k&&(l["on"+m]=k),d.event.triggered=!1}}},handle:function(c){var e,f,g,h,i,j=[],k=d.makeArray(arguments);c=k[0]=d.event.fix(c||a.event),c.currentTarget=this,e=c.type.indexOf(".")<0&&!c.exclusive,e||(g=c.type.split("."),c.type=g.shift(),j=g.slice(0).sort(),h=new RegExp("(^|\\.)"+j.join("\\.(?:.*\\.)?")+"(\\.|$)")),c.namespace=c.namespace||j.join("."),i=d._data(this,"events"),f=(i||{})[c.type];if(i&&f){f=f.slice(0);for(var l=0,m=f.length;l<m;l++){var n=f[l];if(e||h.test(n.namespace)){c.handler=n.handler,c.data=n.data,c.handleObj=n;var o=n.handler.apply(this,k);o!==b&&(c.result=o,o===!1&&(c.preventDefault(),c.stopPropagation()));if(c.isImmediatePropagationStopped())break}}}return c.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 pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(a){if(a[d.expando])return a;var e=a;a=d.Event(e);for(var f=this.props.length,g;f;)g=this.props[--f],a[g]=e[g];a.target||(a.target=a.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),!a.relatedTarget&&a.fromElement&&(a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement);if(a.pageX==null&&a.clientX!=null){var h=c.documentElement,i=c.body;a.pageX=a.clientX+(h&&h.scrollLeft||i&&i.scrollLeft||0)-(h&&h.clientLeft||i&&i.clientLeft||0),a.pageY=a.clientY+(h&&h.scrollTop||i&&i.scrollTop||0)-(h&&h.clientTop||i&&i.clientTop||0)}a.which==null&&(a.charCode!=null||a.keyCode!=null)&&(a.which=a.charCode!=null?a.charCode:a.keyCode),!a.metaKey&&a.ctrlKey&&(a.metaKey=a.ctrlKey),!a.which&&a.button!==b&&(a.which=a.button&1?1:a.button&2?3:a.button&4?2:0);return a},guid:1e8,proxy:d.proxy,special:{ready:{setup:d.bindReady,teardown:d.noop},live:{add:function(a){d.event.add(this,F(a.origType,a.selector),d.extend({},a,{handler:E,guid:a.handler.guid}))},remove:function(a){d.event.remove(this,F(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,c){d.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}}},d.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},d.Event=function(a){if(!this.preventDefault)return new d.Event(a);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?w:v):this.type=a,this.timeStamp=d.now(),this[d.expando]=!0},d.Event.prototype={preventDefault:function(){this.isDefaultPrevented=w;var a=this.originalEvent;a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=w;var a=this.originalEvent;a&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=w,this.stopPropagation()},isDefaultPrevented:v,isPropagationStopped:v,isImmediatePropagationStopped:v};var x=function(a){var b=a.relatedTarget;try{if(b!==c&&!b.parentNode)return;while(b&&b!==this)b=b.parentNode;b!==this&&(a.type=a.data,d.event.handle.apply(this,arguments))}catch(e){}},y=function(a){a.type=a.data,d.event.handle.apply(this,arguments)};d.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){d.event.special[a]={setup:function(c){d.event.add(this,b,c&&c.selector?y:x,a)},teardown:function(a){d.event.remove(this,b,a&&a.selector?y:x)}}}),d.support.submitBubbles||(d.event.special.submit={setup:function(a,b){if(this.nodeName&&this.nodeName.toLowerCase()!=="form")d.event.add(this,"click.specialSubmit",function(a){var b=a.target,c=b.type;(c==="submit"||c==="image")&&d(b).closest("form").length&&C("submit",this,arguments)}),d.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,c=b.type;(c==="text"||c==="password")&&d(b).closest("form").length&&a.keyCode===13&&C("submit",this,arguments)});else return!1},teardown:function(a){d.event.remove(this,".specialSubmit")}});if(!d.support.changeBubbles){var z,A=function(a){var b=a.type,c=a.value;b==="radio"||b==="checkbox"?c=a.checked:b==="select-multiple"?c=a.selectedIndex>-1?d.map(a.options,function(a){return a.selected}).join("-"):"":a.nodeName.toLowerCase()==="select"&&(c=a.selectedIndex);return c},B=function B(a){var c=a.target,e,f;if(q.test(c.nodeName)&&!c.readOnly){e=d._data(c,"_change_data"),f=A(c),(a.type!=="focusout"||c.type!=="radio")&&d._data(c,"_change_data",f);if(e===b||f===e)return;if(e!=null||f)a.type="change",a.liveFired=b,d.event.trigger(a,arguments[1],c)}};d.event.special.change={filters:{focusout:B,beforedeactivate:B,click:function(a){var b=a.target,c=b.type;(c==="radio"||c==="checkbox"||b.nodeName.toLowerCase()==="select")&&B.call(this,a)},keydown:function(a){var b=a.target,c=b.type;(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&B.call(this,a)},beforeactivate:function(a){var b=a.target;d._data(b,"_change_data",A(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in z)d.event.add(this,c+".specialChange",z[c]);return q.test(this.nodeName)},teardown:function(a){d.event.remove(this,".specialChange");return q.test(this.nodeName)}},z=d.event.special.change.filters,z.focus=z.beforeactivate}c.addEventListener&&d.each({focus:"focusin",blur:"focusout"},function(a,b){function c(a){a=d.event.fix(a),a.type=b;return d.event.handle.call(this,a)}d.event.special[b]={setup:function(){this.addEventListener(a,c,!0)},teardown:function(){this.removeEventListener(a,c,!0)}}}),d.each(["bind","one"],function(a,c){d.fn[c]=function(a,e,f){if(typeof a==="object"){for(var g in a)this[c](g,e,a[g],f);return this}if(d.isFunction(e)||e===!1)f=e,e=b;var h=c==="one"?d.proxy(f,function(a){d(this).unbind(a,h);return f.apply(this,arguments)}):f;if(a==="unload"&&c!=="one")this.one(a,e,f);else for(var i=0,j=this.length;i<j;i++)d.event.add(this[i],a,h,e);return this}}),d.fn.extend({unbind:function(a,b){if(typeof a!=="object"||a.preventDefault)for(var e=0,f=this.length;e<f;e++)d.event.remove(this[e],a,b);else for(var c in a)this.unbind(c,a[c]);return this},delegate:function(a,b,c,d){return this.live(b,c,d,a)},undelegate:function(a,b,c){return arguments.length===0?this.unbind("live"):this.die(b,null,c,a)},trigger:function(a,b){return this.each(function(){d.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){var c=d.Event(a);c.preventDefault(),c.stopPropagation(),d.event.trigger(c,b,this[0]);return c.result}},toggle:function(a){var b=arguments,c=1;while(c<b.length)d.proxy(a,b[c++]);return this.click(d.proxy(a,function(e){var f=(d._data(this,"lastToggle"+a.guid)||0)%c;d._data(this,"lastToggle"+a.guid,f+1),e.preventDefault();return b[f].apply(this,arguments)||!1}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var D={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};d.each(["live","die"],function(a,c){d.fn[c]=function(a,e,f,g){var h,i=0,j,k,l,m=g||this.selector,n=g?this:d(this.context);if(typeof a==="object"&&!a.preventDefault){for(var o in a)n[c](o,e,a[o],m);return this}d.isFunction(e)&&(f=e,e=b),a=(a||"").split(" ");while((h=a[i++])!=null){j=p.exec(h),k="",j&&(k=j[0],h=h.replace(p,""));if(h==="hover"){a.push("mouseenter"+k,"mouseleave"+k);continue}l=h,h==="focus"||h==="blur"?(a.push(D[h]+k),h=h+k):h=(D[h]||h)+k;if(c==="live")for(var q=0,r=n.length;q<r;q++)d.event.add(n[q],"live."+F(h,m),{data:e,selector:m,handler:f,origType:h,origHandler:f,preType:l});else n.unbind("live."+F(h,m),f)}return this}}),d.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){d.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.bind(b,a,c):this.trigger(b)},d.attrFn&&(d.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}if(i.nodeType===1){f||(i.sizcache=c,i.sizset=g);if(typeof b!=="string"){if(i===b){j=!0;break}}else if(k.filter(b,[i]).length>0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}i.nodeType===1&&!f&&(i.sizcache=c,i.sizset=g);if(i.nodeName.toLowerCase()===b){j=i;break}i=i[a]}d[g]=j}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,f=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,e,g){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!=="string")return e;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(f.call(n)==="[object Array]")if(u)if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&e.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&e.push(j[t]);else e.push.apply(e,n);else p(n,e);o&&(k(o,h,e,g),k.uniqueSort(e));return e};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},k.matches=function(a,b){return k(a,null,null,b)},k.matchesSelector=function(a,b){return k(b,null,null,[a]).length>0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e<f;e++){var g,h=l.order[e];if(g=l.leftMatch[h].exec(a)){var j=g[1];g.splice(1,1);if(j.substr(j.length-1)!=="\\"){g[1]=(g[1]||"").replace(i,""),d=l.find[h](g,b,c);if(d!=null){a=a.replace(l.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!=="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},k.filter=function(a,c,d,e){var f,g,h=a,i=[],j=c,m=c&&c[0]&&k.isXML(c[0]);while(a&&c.length){for(var n in l.filter)if((f=l.leftMatch[n].exec(a))!=null&&f[2]){var o,p,q=l.filter[n],r=f[1];g=!1,f.splice(1,1);if(r.substr(r.length-1)==="\\")continue;j===i&&(i=[]);if(l.preFilter[n]){f=l.preFilter[n](f,j,d,i,e,m);if(f){if(f===!0)continue}else g=o=!0}if(f)for(var s=0;(p=j[s])!=null;s++)if(p){o=q(p,f,s,j);var t=e^!!o;d&&o!=null?t?g=!0:j[s]=!1:t&&(i.push(p),g=!0)}if(o!==b){d||(j=i),a=a.replace(l.match[n],"");if(!g)return[];break}}if(a===h)if(g==null)k.error(a);else break;h=a}return j},k.error=function(a){throw"Syntax error, unrecognized expression: "+a};var l=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|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b==="string",d=c&&!j.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1){}a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&k.filter(b,a,!0)},">":function(a,b){var c,d=typeof b==="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&k.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=u;typeof b==="string"&&!j.test(b)&&(b=b.toLowerCase(),d=b,g=t),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=u;typeof b==="string"&&!j.test(b)&&(b=b.toLowerCase(),d=b,g=t),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!=="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!=="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!=="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(i,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){return"text"===a.getAttribute("type")},radio:function(a){return"radio"===a.type},checkbox:function(a){return"checkbox"===a.type},file:function(a){return"file"===a.type},password:function(a){return"password"===a.type},submit:function(a){return"submit"===a.type},image:function(a){return"image"===a.type},reset:function(a){return"reset"===a.type},button:function(a){return"button"===a.type||a.nodeName.toLowerCase()==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}k.error(e)},CHILD:function(a,b){var c=b[1],d=a;switch(c){case"only":case"first":while(d=d.previousSibling)if(d.nodeType===1)return!1;if(c==="first")return!0;d=a;case"last":while(d=d.nextSibling)if(d.nodeType===1)return!1;return!0;case"nth":var e=b[2],f=b[3];if(e===1&&f===0)return!0;var g=b[0],h=a.parentNode;if(h&&(h.sizcache!==g||!a.nodeIndex)){var i=0;for(d=h.firstChild;d;d=d.nextSibling)d.nodeType===1&&(d.nodeIndex=++i);h.sizcache=g}var j=a.nodeIndex-f;return e===0?j===0:j%e===0&&j/e>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(f.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length==="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var r,s;c.documentElement.compareDocumentPosition?r=function(a,b){if(a===b){g=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(r=function(a,b){var c,d,e=[],f=[],h=a.parentNode,i=b.parentNode,j=h;if(a===b){g=!0;return 0}if(h===i)return s(a,b);if(!h)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return s(e[k],f[k]);return k===c?s(a,f[k],-1):s(e[k],b,1)},s=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),k.getText=function(a){var b="",c;for(var d=0;a[d];d++)c=a[d],c.nodeType===3||c.nodeType===4?b+=c.nodeValue:c.nodeType!==8&&(b+=k.getText(c.childNodes));return b},function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!=="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!=="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!=="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!=="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector,d=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(e){d=!0}b&&(k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(d||!l.match.PSEUDO.test(c)&&!/!=/.test(c))return b.call(a,c)}catch(e){}return k(c,null,null,[a]).length>0})}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!=="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g<h;g++)k(a,f[g],d);return k.filter(e,d)};d.find=k,d.expr=k.selectors,d.expr[":"]=d.expr.filters,d.unique=k.uniqueSort,d.text=k.getText,d.isXMLDoc=k.isXML,d.contains=k.contains}();var G=/Until$/,H=/^(?:parents|prevUntil|prevAll)/,I=/,/,J=/^.[^:#\[\.,]*$/,K=Array.prototype.slice,L=d.expr.match.POS,M={children:!0,contents:!0,next:!0,prev:!0};d.fn.extend({find:function(a){var b=this.pushStack("","find",a),c=0;for(var e=0,f=this.length;e<f;e++){c=b.length,d.find(a,this[e],b);if(e>0)for(var g=c;g<b.length;g++)for(var h=0;h<c;h++)if(b[h]===b[g]){b.splice(g--,1);break}}return b},has:function(a){var b=d(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(d.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(O(this,a,!1),"not",a)},filter:function(a){return this.pushStack(O(this,a,!0),"filter",a)},is:function(a){return!!a&&d.filter(a,this).length>0},closest:function(a,b){var c=[],e,f,g=this[0];if(d.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(e=0,f=a.length;e<f;e++)i=a[e],j[i]||(j[i]=d.expr.match.POS.test(i)?d(i,b||this.context):i);while(g&&g.ownerDocument&&g!==b){for(i in j)h=j[i],(h.jquery?h.index(g)>-1:d(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=L.test(a)?d(a,b||this.context):null;for(e=0,f=this.length;e<f;e++){g=this[e];while(g){if(l?l.index(g)>-1:d.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b)break}}c=c.length>1?d.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a||typeof a==="string")return d.inArray(this[0],a?d(a):this.parent().children());return d.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a==="string"?d(a,b):d.makeArray(a),e=d.merge(this.get(),c);return this.pushStack(N(c[0])||N(e[0])?e:d.unique(e))},andSelf:function(){return this.add(this.prevObject)}}),d.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return d.dir(a,"parentNode")},parentsUntil:function(a,b,c){return d.dir(a,"parentNode",c)},next:function(a){return d.nth(a,2,"nextSibling")},prev:function(a){return d.nth(a,2,"previousSibling")},nextAll:function(a){return d.dir(a,"nextSibling")},prevAll:function(a){return d.dir(a,"previousSibling")},nextUntil:function(a,b,c){return d.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return d.dir(a,"previousSibling",c)},siblings:function(a){return d.sibling(a.parentNode.firstChild,a)},children:function(a){return d.sibling(a.firstChild)},contents:function(a){return d.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:d.makeArray(a.childNodes)}},function(a,b){d.fn[a]=function(c,e){var f=d.map(this,b,c),g=K.call(arguments);G.test(a)||(e=c),e&&typeof e==="string"&&(f=d.filter(e,f)),f=this.length>1&&!M[a]?d.unique(f):f,(this.length>1||I.test(e))&&H.test(a)&&(f=f.reverse());return this.pushStack(f,a,g.join(","))}}),d.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?d.find.matchesSelector(b[0],a)?[b[0]]:[]:d.find.matches(a,b)},dir:function(a,c,e){var f=[],g=a[c];while(g&&g.nodeType!==9&&(e===b||g.nodeType!==1||!d(g).is(e)))g.nodeType===1&&f.push(g),g=g[c];return f},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var P=/ jQuery\d+="(?:\d+|null)"/g,Q=/^\s+/,R=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,S=/<([\w:]+)/,T=/<tbody/i,U=/<|&#?\w+;/,V=/<(?:script|object|embed|option|style)/i,W=/checked\s*(?:[^=]|=\s*.checked.)/i,X={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,"",""]};X.optgroup=X.option,X.tbody=X.tfoot=X.colgroup=X.caption=X.thead,X.th=X.td,d.support.htmlSerialize||(X._default=[1,"div<div>","</div>"]),d.fn.extend({text:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.text(a.call(this,b,c.text()))});if(typeof a!=="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return d.text(this)},wrapAll:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapAll(a.call(this,b))});if(this[0]){var b=d(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapInner(a.call(this,b))});return this.each(function(){var b=d(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){d(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){d.nodeName(this,"body")||d(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=d(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,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,d(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,e;(e=this[c])!=null;c++)if(!a||d.filter(a,[e]).length)!b&&e.nodeType===1&&(d.cleanData(e.getElementsByTagName("*")),d.cleanData([e])),e.parentNode&&e.parentNode.removeChild(e);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&d.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return d.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(P,""):null;if(typeof a!=="string"||V.test(a)||!d.support.leadingWhitespace&&Q.test(a)||X[(S.exec(a)||["",""])[1].toLowerCase()])d.isFunction(a)?this.each(function(b){var c=d(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);else{a=a.replace(R,"<$1></$2>");try{for(var c=0,e=this.length;c<e;c++)this[c].nodeType===1&&(d.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(f){this.empty().append(a)}}return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(d.isFunction(a))return this.each(function(b){var c=d(this),e=c.html();c.replaceWith(a.call(this,b,e))});typeof a!=="string"&&(a=d(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;d(this).remove(),b?d(b).before(a):d(c).append(a)})}return this.pushStack(d(d.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,e){var f,g,h,i,j=a[0],k=[];if(!d.support.checkClone&&arguments.length===3&&typeof j==="string"&&W.test(j))return this.each(function(){d(this).domManip(a,c,e,!0)});if(d.isFunction(j))return this.each(function(f){var g=d(this);a[0]=j.call(this,f,c?g.html():b),g.domManip(a,c,e)});if(this[0]){i=j&&j.parentNode,d.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?f={fragment:i}:f=d.buildFragment(a,this,k),h=f.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&d.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)e.call(c?Y(this[l],g):this[l],f.cacheable||m>1&&l<n?d.clone(h,!0,!0):h)}k.length&&d.each(k,ba)}return this}}),d.buildFragment=function(a,b,e){var f,g,h,i=b&&b[0]?b[0].ownerDocument||b[0]:c;a.length===1&&typeof a[0]==="string"&&a[0].length<512&&i===c&&a[0].charAt(0)==="<"&&!V.test(a[0])&&(d.support.checkClone||!W.test(a[0]))&&(g=!0,h=d.fragments[a[0]],h&&(h!==1&&(f=h))),f||(f=i.createDocumentFragment(),d.clean(a,i,f,e)),g&&(d.fragments[a[0]]=h?f:1);return{fragment:f,cacheable:g}},d.fragments={},d.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){d.fn[a]=function(c){var e=[],f=d(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&f.length===1){f[b](this[0]);return this}for(var h=0,i=f.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();d(f[h])[b](j),e=e.concat(j)}return this.pushStack(e,a,f.selector)}}),d.extend({clone:function(a,b,c){var e=a.cloneNode(!0),f,g,h;if((!d.support.noCloneEvent||!d.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!d.isXMLDoc(a)){$(a,e),f=_(a),g=_(e);for(h=0;f[h];++h)$(f[h],g[h])}if(b){Z(a,e);if(c){f=_(a),g=_(e);for(h=0;f[h];++h)Z(f[h],g[h])}}return e},clean:function(a,b,e,f){b=b||c,typeof b.createElement==="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var g=[];for(var h=0,i;(i=a[h])!=null;h++){typeof i==="number"&&(i+="");if(!i)continue;if(typeof i!=="string"||U.test(i)){if(typeof i==="string"){i=i.replace(R,"<$1></$2>");var j=(S.exec(i)||["",""])[1].toLowerCase(),k=X[j]||X._default,l=k[0],m=b.createElement("div");m.innerHTML=k[1]+i+k[2];while(l--)m=m.lastChild;if(!d.support.tbody){var n=T.test(i),o=j==="table"&&!n?m.firstChild&&m.firstChild.childNodes:k[1]==="<table>"&&!n?m.childNodes:[];for(var p=o.length-1;p>=0;--p)d.nodeName(o[p],"tbody")&&!o[p].childNodes.length&&o[p].parentNode.removeChild(o[p])}!d.support.leadingWhitespace&&Q.test(i)&&m.insertBefore(b.createTextNode(Q.exec(i)[0]),m.firstChild),i=m.childNodes}}else i=b.createTextNode(i);i.nodeType?g.push(i):g=d.merge(g,i)}if(e)for(h=0;g[h];h++)!f||!d.nodeName(g[h],"script")||g[h].type&&g[h].type.toLowerCase()!=="text/javascript"?(g[h].nodeType===1&&g.splice.apply(g,[h+1,0].concat(d.makeArray(g[h].getElementsByTagName("script")))),e.appendChild(g[h])):f.push(g[h].parentNode?g[h].parentNode.removeChild(g[h]):g[h]);return g},cleanData:function(a){var b,c,e=d.cache,f=d.expando,g=d.event.special,h=d.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){if(j.nodeName&&d.noData[j.nodeName.toLowerCase()])continue;c=j[d.expando];if(c){b=e[c]&&e[c][f];if(b&&b.events){for(var k in b.events)g[k]?d.event.remove(j,k):d.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[d.expando]:j.removeAttribute&&j.removeAttribute(d.expando),delete e[c]}}}});var bb=/alpha\([^)]*\)/i,bc=/opacity=([^)]*)/,bd=/-([a-z])/ig,be=/([A-Z])/g,bf=/^-?\d+(?:px)?$/i,bg=/^-?\d/,bh={position:"absolute",visibility:"hidden",display:"block"},bi=["Left","Right"],bj=["Top","Bottom"],bk,bl,bm,bn=function(a,b){return b.toUpperCase()};d.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return d.access(this,a,c,!0,function(a,c,e){return e!==b?d.style(a,c,e):d.css(a,c)})},d.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bk(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{zIndex:!0,fontWeight:!0,opacity:!0,zoom:!0,lineHeight:!0},cssProps:{"float":d.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,e,f){if(a&&a.nodeType!==3&&a.nodeType!==8&&a.style){var g,h=d.camelCase(c),i=a.style,j=d.cssHooks[h];c=d.cssProps[h]||h;if(e===b){if(j&&"get"in j&&(g=j.get(a,!1,f))!==b)return g;return i[c]}if(typeof e==="number"&&isNaN(e)||e==null)return;typeof e==="number"&&!d.cssNumber[h]&&(e+="px");if(!j||!("set"in j)||(e=j.set(a,e))!==b)try{i[c]=e}catch(k){}}},css:function(a,c,e){var f,g=d.camelCase(c),h=d.cssHooks[g];c=d.cssProps[g]||g;if(h&&"get"in h&&(f=h.get(a,!0,e))!==b)return f;if(bk)return bk(a,c,g)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]},camelCase:function(a){return a.replace(bd,bn)}}),d.curCSS=d.css,d.each(["height","width"],function(a,b){d.cssHooks[b]={get:function(a,c,e){var f;if(c){a.offsetWidth!==0?f=bo(a,b,e):d.swap(a,bh,function(){f=bo(a,b,e)});if(f<=0){f=bk(a,b,b),f==="0px"&&bm&&(f=bm(a,b,b));if(f!=null)return f===""||f==="auto"?"0px":f}if(f<0||f==null){f=a.style[b];return f===""||f==="auto"?"0px":f}return typeof f==="string"?f:f+"px"}},set:function(a,b){if(!bf.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),d.support.opacity||(d.cssHooks.opacity={get:function(a,b){return bc.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style;c.zoom=1;var e=d.isNaN(b)?"":"alpha(opacity="+b*100+")",f=c.filter||"";c.filter=bb.test(f)?f.replace(bb,e):c.filter+" "+e}}),c.defaultView&&c.defaultView.getComputedStyle&&(bl=function(a,c,e){var f,g,h;e=e.replace(be,"-$1").toLowerCase();if(!(g=a.ownerDocument.defaultView))return b;if(h=g.getComputedStyle(a,null))f=h.getPropertyValue(e),f===""&&!d.contains(a.ownerDocument.documentElement,a)&&(f=d.style(a,e));return f}),c.documentElement.currentStyle&&(bm=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bf.test(d)&&bg.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bk=bl||bm,d.expr&&d.expr.filters&&(d.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!d.support.reliableHiddenOffsets&&(a.style.display||d.css(a,"display"))==="none"},d.expr.filters.visible=function(a){return!d.expr.filters.hidden(a)});var bp=/%20/g,bq=/\[\]$/,br=/\r?\n/g,bs=/#.*$/,bt=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bu=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bv=/(?:^file|^widget|\-extension):$/,bw=/^(?:GET|HEAD)$/,bx=/^\/\//,by=/\?/,bz=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bA=/^(?:select|textarea)/i,bB=/\s+/,bC=/([?&])_=[^&]*/,bD=/(^|\-)([a-z])/g,bE=function(a,b,c){return b+c.toUpperCase()},bF=/^([\w\+\.\-]+:)\/\/([^\/?#:]*)(?::(\d+))?/,bG=d.fn.load,bH={},bI={},bJ,bK;try{bJ=c.location.href}catch(bL){bJ=c.createElement("a"),bJ.href="",bJ=bJ.href}bK=bF.exec(bJ.toLowerCase()),d.fn.extend({load:function(a,c,e){if(typeof a!=="string"&&bG)return bG.apply(this,arguments);if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var g=a.slice(f,a.length);a=a.slice(0,f)}var h="GET";c&&(d.isFunction(c)?(e=c,c=b):typeof c==="object"&&(c=d.param(c,d.ajaxSettings.traditional),h="POST"));var i=this;d.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?d("<div>").append(c.replace(bz,"")).find(g):c)),e&&i.each(e,[c,b,a])}});return this},serialize:function(){return d.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?d.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bA.test(this.nodeName)||bu.test(this.type))}).map(function(a,b){var c=d(this).val();return c==null?null:d.isArray(c)?d.map(c,function(a,c){return{name:b.name,value:a.replace(br,"\r\n")}}):{name:b.name,value:c.replace(br,"\r\n")}}).get()}}),d.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){d.fn[b]=function(a){return this.bind(b,a)}}),d.each(["get","post"],function(a,c){d[c]=function(a,e,f,g){d.isFunction(e)&&(g=g||f,f=e,e=b);return d.ajax({type:c,url:a,data:e,success:f,dataType:g})}}),d.extend({getScript:function(a,c){return d.get(a,b,c,"script")},getJSON:function(a,b,c){return d.get(a,b,c,"json")},ajaxSetup:function(a,b){b?d.extend(!0,a,d.ajaxSettings,b):(b=a,a=d.extend(!0,d.ajaxSettings,b));for(var c in {context:1,url:1})c in b?a[c]=b[c]:c in d.ajaxSettings&&(a[c]=d.ajaxSettings[c]);return a},ajaxSettings:{url:bJ,isLocal:bv.test(bK[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":d.parseJSON,"text xml":d.parseXML}},ajaxPrefilter:bM(bH),ajaxTransport:bM(bI),ajax:function(a,c){function v(a,c,l,n){if(r!==2){r=2,p&&clearTimeout(p),o=b,m=n||"",u.readyState=a?4:0;var q,t,v,w=l?bP(e,u,l):b,x,y;if(a>=200&&a<300||a===304){if(e.ifModified){if(x=u.getResponseHeader("Last-Modified"))d.lastModified[k]=x;if(y=u.getResponseHeader("Etag"))d.etag[k]=y}if(a===304)c="notmodified",q=!0;else try{t=bQ(e,w),c="success",q=!0}catch(z){c="parsererror",v=z}}else{v=c;if(!c||a)c="error",a<0&&(a=0)}u.status=a,u.statusText=c,q?h.resolveWith(f,[t,c,u]):h.rejectWith(f,[u,c,v]),u.statusCode(j),j=b,s&&g.trigger("ajax"+(q?"Success":"Error"),[u,e,q?t:v]),i.resolveWith(f,[u,c]),s&&(g.trigger("ajaxComplete",[u,e]),--d.active||d.event.trigger("ajaxStop"))}}typeof a==="object"&&(c=a,a=b),c=c||{};var e=d.ajaxSetup({},c),f=e.context||e,g=f!==e&&(f.nodeType||f instanceof d)?d(f):d.event,h=d.Deferred(),i=d._Deferred(),j=e.statusCode||{},k,l={},m,n,o,p,q,r=0,s,t,u={readyState:0,setRequestHeader:function(a,b){r||(l[a.toLowerCase().replace(bD,bE)]=b);return this},getAllResponseHeaders:function(){return r===2?m:null},getResponseHeader:function(a){var c;if(r===2){if(!n){n={};while(c=bt.exec(m))n[c[1].toLowerCase()]=c[2]}c=n[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){r||(e.mimeType=a);return this},abort:function(a){a=a||"abort",o&&o.abort(a),v(0,a);return this}};h.promise(u),u.success=u.done,u.error=u.fail,u.complete=i.done,u.statusCode=function(a){if(a){var b;if(r<2)for(b in a)j[b]=[j[b],a[b]];else b=a[u.status],u.then(b,b)}return this},e.url=((a||e.url)+"").replace(bs,"").replace(bx,bK[1]+"//"),e.dataTypes=d.trim(e.dataType||"*").toLowerCase().split(bB),e.crossDomain||(q=bF.exec(e.url.toLowerCase()),e.crossDomain=q&&(q[1]!=bK[1]||q[2]!=bK[2]||(q[3]||(q[1]==="http:"?80:443))!=(bK[3]||(bK[1]==="http:"?80:443)))),e.data&&e.processData&&typeof e.data!=="string"&&(e.data=d.param(e.data,e.traditional)),bN(bH,e,c,u);if(r===2)return!1;s=e.global,e.type=e.type.toUpperCase(),e.hasContent=!bw.test(e.type),s&&d.active++===0&&d.event.trigger("ajaxStart");if(!e.hasContent){e.data&&(e.url+=(by.test(e.url)?"&":"?")+e.data),k=e.url;if(e.cache===!1){var w=d.now(),x=e.url.replace(bC,"$1_="+w);e.url=x+(x===e.url?(by.test(e.url)?"&":"?")+"_="+w:"")}}if(e.data&&e.hasContent&&e.contentType!==!1||c.contentType)l["Content-Type"]=e.contentType;e.ifModified&&(k=k||e.url,d.lastModified[k]&&(l["If-Modified-Since"]=d.lastModified[k]),d.etag[k]&&(l["If-None-Match"]=d.etag[k])),l.Accept=e.dataTypes[0]&&e.accepts[e.dataTypes[0]]?e.accepts[e.dataTypes[0]]+(e.dataTypes[0]!=="*"?", */*; q=0.01":""):e.accepts["*"];for(t in e.headers)u.setRequestHeader(t,e.headers[t]);if(e.beforeSend&&(e.beforeSend.call(f,u,e)===!1||r===2)){u.abort();return!1}for(t in {success:1,error:1,complete:1})u[t](e[t]);o=bN(bI,e,c,u);if(o){u.readyState=1,s&&g.trigger("ajaxSend",[u,e]),e.async&&e.timeout>0&&(p=setTimeout(function(){u.abort("timeout")},e.timeout));try{r=1,o.send(l,v)}catch(y){status<2?v(-1,y):d.error(y)}}else v(-1,"No Transport");return u},param:function(a,c){var e=[],f=function(a,b){b=d.isFunction(b)?b():b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=d.ajaxSettings.traditional);if(d.isArray(a)||a.jquery&&!d.isPlainObject(a))d.each(a,function(){f(this.name,this.value)});else for(var g in a)bO(g,a[g],c,f);return e.join("&").replace(bp,"+")}}),d.extend({active:0,lastModified:{},etag:{}});var bR=d.now(),bS=/(\=)\?(&|$)|()\?\?()/i;d.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return d.expando+"_"+bR++}}),d.ajaxPrefilter("json jsonp",function(b,c,e){var f=typeof b.data==="string";if(b.dataTypes[0]==="jsonp"||c.jsonpCallback||c.jsonp!=null||b.jsonp!==!1&&(bS.test(b.url)||f&&bS.test(b.data))){var g,h=b.jsonpCallback=d.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2",m=function(){a[h]=i,g&&d.isFunction(i)&&a[h](g[0])};b.jsonp!==!1&&(j=j.replace(bS,l),b.url===j&&(f&&(k=k.replace(bS,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},e.then(m,m),b.converters["script json"]=function(){g||d.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),d.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){d.globalEval(a);return a}}}),d.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),d.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var bT=d.now(),bU,bV;d.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&bX()||bY()}:bX,bV=d.ajaxSettings.xhr(),d.support.ajax=!!bV,d.support.cors=bV&&"withCredentials"in bV,bV=b,d.support.ajax&&d.ajaxTransport(function(a){if(!a.crossDomain||d.support.cors){var c;return{send:function(e,f){var g=a.xhr(),h,i;a.username?g.open(a.type,a.url,a.async,a.username,a.password):g.open(a.type,a.url,a.async);if(a.xhrFields)for(i in a.xhrFields)g[i]=a.xhrFields[i];a.mimeType&&g.overrideMimeType&&g.overrideMimeType(a.mimeType),(!a.crossDomain||a.hasContent)&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(i in e)g.setRequestHeader(i,e[i])}catch(j){}g.send(a.hasContent&&a.data||null),c=function(e,i){var j,k,l,m,n;try{if(c&&(i||g.readyState===4)){c=b,h&&(g.onreadystatechange=d.noop,delete bU[h]);if(i)g.readyState!==4&&g.abort();else{j=g.status,l=g.getAllResponseHeaders(),m={},n=g.responseXML,n&&n.documentElement&&(m.xml=n),m.text=g.responseText;try{k=g.statusText}catch(o){k=""}j||!a.isLocal||a.crossDomain?j===1223&&(j=204):j=m.text?200:404}}}catch(p){i||f(-1,p)}m&&f(j,k,m,l)},a.async&&g.readyState!==4?(bU||(bU={},bW()),h=bT++,g.onreadystatechange=bU[h]=c):c()},abort:function(){c&&c(0,1)}}}});var bZ={},b$=/^(?:toggle|show|hide)$/,b_=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,ca,cb=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];d.fn.extend({show:function(a,b,c){var e,f;if(a||a===0)return this.animate(cc("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)e=this[g],f=e.style.display,!d._data(e,"olddisplay")&&f==="none"&&(f=e.style.display=""),f===""&&d.css(e,"display")==="none"&&d._data(e,"olddisplay",cd(e.nodeName));for(g=0;g<h;g++){e=this[g],f=e.style.display;if(f===""||f==="none")e.style.display=d._data(e,"olddisplay")||""}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cc("hide",3),a,b,c);for(var e=0,f=this.length;e<f;e++){var g=d.css(this[e],"display");g!=="none"&&!d._data(this[e],"olddisplay")&&d._data(this[e],"olddisplay",g)}for(e=0;e<f;e++)this[e].style.display="none";return this},_toggle:d.fn.toggle,toggle:function(a,b,c){var e=typeof a==="boolean";d.isFunction(a)&&d.isFunction(b)?this._toggle.apply(this,arguments):a==null||e?this.each(function(){var b=e?a:d(this).is(":hidden");d(this)[b?"show":"hide"]()}):this.animate(cc("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,e){var f=d.speed(b,c,e);if(d.isEmptyObject(a))return this.each(f.complete);return this[f.queue===!1?"each":"queue"](function(){var b=d.extend({},f),c,e=this.nodeType===1,g=e&&d(this).is(":hidden"),h=this;for(c in a){var i=d.camelCase(c);c!==i&&(a[i]=a[c],delete a[c],c=i);if(a[c]==="hide"&&g||a[c]==="show"&&!g)return b.complete.call(this);if(e&&(c==="height"||c==="width")){b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(d.css(this,"display")==="inline"&&d.css(this,"float")==="none")if(d.support.inlineBlockNeedsLayout){var j=cd(this.nodeName);j==="inline"?this.style.display="inline-block":(this.style.display="inline",this.style.zoom=1)}else this.style.display="inline-block"}d.isArray(a[c])&&((b.specialEasing=b.specialEasing||{})[c]=a[c][1],a[c]=a[c][0])}b.overflow!=null&&(this.style.overflow="hidden"),b.curAnim=d.extend({},a),d.each(a,function(c,e){var f=new d.fx(h,b,c);if(b$.test(e))f[e==="toggle"?g?"show":"hide":e](a);else{var i=b_.exec(e),j=f.cur();if(i){var k=parseFloat(i[2]),l=i[3]||(d.cssNumber[c]?"":"px");l!=="px"&&(d.style(h,c,(k||1)+l),j=(k||1)/f.cur()*j,d.style(h,c,j+l)),i[1]&&(k=(i[1]==="-="?-1:1)*k+j),f.custom(j,k,l)}else f.custom(j,e,"")}});return!0})},stop:function(a,b){var c=d.timers;a&&this.queue([]),this.each(function(){for(var a=c.length-1;a>=0;a--)c[a].elem===this&&(b&&c[a](!0),c.splice(a,1))}),b||this.dequeue();return this}}),d.each({slideDown:cc("show",1),slideUp:cc("hide",1),slideToggle:cc("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){d.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),d.extend({speed:function(a,b,c){var e=a&&typeof a==="object"?d.extend({},a):{complete:c||!c&&b||d.isFunction(a)&&a,duration:a,easing:c&&b||b&&!d.isFunction(b)&&b};e.duration=d.fx.off?0:typeof e.duration==="number"?e.duration:e.duration in d.fx.speeds?d.fx.speeds[e.duration]:d.fx.speeds._default,e.old=e.complete,e.complete=function(){e.queue!==!1&&d(this).dequeue(),d.isFunction(e.old)&&e.old.call(this)};return e},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig||(b.orig={})}}),d.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(d.fx.step[this.prop]||d.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=d.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,b,c){function g(a){return e.step(a)}var e=this,f=d.fx;this.startTime=d.now(),this.start=a,this.end=b,this.unit=c||this.unit||(d.cssNumber[this.prop]?"":"px"),this.now=this.start,this.pos=this.state=0,g.elem=this.elem,g()&&d.timers.push(g)&&!ca&&(ca=setInterval(f.tick,f.interval))},show:function(){this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.show=!0,this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),d(this.elem).show()},hide:function(){this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b=d.now(),c=!0;if(a||b>=this.options.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),this.options.curAnim[this.prop]=!0;for(var e in this.options.curAnim)this.options.curAnim[e]!==!0&&(c=!1);if(c){if(this.options.overflow!=null&&!d.support.shrinkWrapBlocks){var f=this.elem,g=this.options;d.each(["","X","Y"],function(a,b){f.style["overflow"+b]=g.overflow[a]})}this.options.hide&&d(this.elem).hide();if(this.options.hide||this.options.show)for(var h in this.options.curAnim)d.style(this.elem,h,this.options.orig[h]);this.options.complete.call(this.elem)}return!1}var i=b-this.startTime;this.state=i/this.options.duration;var j=this.options.specialEasing&&this.options.specialEasing[this.prop],k=this.options.easing||(d.easing.swing?"swing":"linear");this.pos=d.easing[j||k](this.state,i,0,1,this.options.duration),this.now=this.start+(this.end-this.start)*this.pos,this.update();return!0}},d.extend(d.fx,{tick:function(){var a=d.timers;for(var b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||d.fx.stop()},interval:13,stop:function(){clearInterval(ca),ca=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){d.style(a.elem,"opacity",a.now)},_default:function(a){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:a.elem[a.prop]=a.now}}}),d.expr&&d.expr.filters&&(d.expr.filters.animated=function(a){return d.grep(d.timers,function(b){return a===b.elem}).length});var ce=/^t(?:able|d|h)$/i,cf=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?d.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){d.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return d.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(e){}var f=b.ownerDocument,g=f.documentElement;if(!c||!d.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=f.body,i=cg(f),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||d.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||d.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:d.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){d.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return d.offset.bodyOffset(b);d.offset.initialize();var c,e=b.offsetParent,f=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(d.offset.supportsFixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===e&&(l+=b.offsetTop,m+=b.offsetLeft,d.offset.doesNotAddBorder&&(!d.offset.doesAddBorderForTableAndCells||!ce.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),f=e,e=b.offsetParent),d.offset.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;d.offset.supportsFixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},d.offset={initialize:function(){var a=c.body,b=c.createElement("div"),e,f,g,h,i=parseFloat(d.css(a,"marginTop"))||0,j="<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>";d.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),e=b.firstChild,f=e.firstChild,h=e.nextSibling.firstChild.firstChild,this.doesNotAddBorder=f.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,f.style.position="fixed",f.style.top="20px",this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15,f.style.position=f.style.top="",e.style.overflow="hidden",e.style.position="relative",this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),a=b=e=f=g=h=null,d.offset.initialize=d.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;d.offset.initialize(),d.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(d.css(a,"marginTop"))||0,c+=parseFloat(d.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var e=d.css(a,"position");e==="static"&&(a.style.position="relative");var f=d(a),g=f.offset(),h=d.css(a,"top"),i=d.css(a,"left"),j=e==="absolute"&&d.inArray("auto",[h,i])>-1,k={},l={},m,n;j&&(l=f.position()),m=j?l.top:parseInt(h,10)||0,n=j?l.left:parseInt(i,10)||0,d.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):f.css(k)}},d.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),e=cf.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(d.css(a,"marginTop"))||0,c.left-=parseFloat(d.css(a,"marginLeft"))||0,e.top+=parseFloat(d.css(b[0],"borderTopWidth"))||0,e.left+=parseFloat(d.css(b[0],"borderLeftWidth"))||0;return{top:c.top-e.top,left:c.left-e.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&(!cf.test(a.nodeName)&&d.css(a,"position")==="static"))a=a.offsetParent;return a})}}),d.each(["Left","Top"],function(a,c){var e="scroll"+c;d.fn[e]=function(c){var f=this[0],g;if(!f)return null;if(c!==b)return this.each(function(){g=cg(this),g?g.scrollTo(a?d(g).scrollLeft():c,a?c:d(g).scrollTop()):this[e]=c});g=cg(f);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:d.support.boxModel&&g.document.documentElement[e]||g.document.body[e]:f[e]}}),d.each(["Height","Width"],function(a,c){var e=c.toLowerCase();d.fn["inner"+c]=function(){return this[0]?parseFloat(d.css(this[0],e,"padding")):null},d.fn["outer"+c]=function(a){return this[0]?parseFloat(d.css(this[0],e,a?"margin":"border")):null},d.fn[e]=function(a){var f=this[0];if(!f)return a==null?null:this;if(d.isFunction(a))return this.each(function(b){var c=d(this);c[e](a.call(this,b,c[e]()))});if(d.isWindow(f)){var g=f.document.documentElement["client"+c];return f.document.compatMode==="CSS1Compat"&&g||f.document.body["client"+c]||g}if(f.nodeType===9)return Math.max(f.documentElement["client"+c],f.body["scroll"+c],f.documentElement["scroll"+c],f.body["offset"+c],f.documentElement["offset"+c]);if(a===b){var h=d.css(f,e),i=parseFloat(h);return d.isNaN(i)?h:i}return this.css(e,typeof a==="string"?a:a+"px")}}),a.jQuery=a.$=d})(window);;


/* Comment Generated by Combres - Resource '~/js/ResourceHandler.ashx?file=hoverIntent.js&cache=false' (Mode: Dynamic) */
(function($){
	/* hoverIntent by Brian Cherne */
	$.fn.hoverIntent = function(f,g) {
		// default configuration options
		var cfg = {
			sensitivity: 7,
			interval: 100,
			timeout: 0
		};
		// override configuration options with user supplied object
		cfg = $.extend(cfg, g ? { over: f, out: g } : f );

		// instantiate variables
		// cX, cY = current X and Y position of mouse, updated by mousemove event
		// pX, pY = previous X and Y position of mouse, set by mouseover and polling interval
		var cX, cY, pX, pY;

		// A private function for getting mouse position
		var track = function(ev) {
			cX = ev.pageX;
			cY = ev.pageY;
		};

		// A private function for comparing current and previous mouse position
		var compare = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			// compare mouse positions to see if they've crossed the threshold
			if ( ( Math.abs(pX-cX) + Math.abs(pY-cY) ) < cfg.sensitivity ) {
				$(ob).unbind("mousemove",track);
				// set hoverIntent state to true (so mouseOut can be called)
				ob.hoverIntent_s = 1;
				return cfg.over.apply(ob,[ev]);
			} else {
				// set previous coordinates for next time
				pX = cX; pY = cY;
				// use self-calling timeout, guarantees intervals are spaced out properly (avoids JavaScript timer bugs)
				ob.hoverIntent_t = setTimeout( function(){compare(ev, ob);} , cfg.interval );
			}
		};

		// A private function for delaying the mouseOut function
		var delay = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			ob.hoverIntent_s = 0;
			return cfg.out.apply(ob,[ev]);
		};

		// A private function for handling mouse 'hovering'
		var handleHover = function(e) {
			// next three lines copied from jQuery.hover, ignore children onMouseOver/onMouseOut
			var p = (e.type == "mouseover" ? e.fromElement : e.toElement) || e.relatedTarget;
			while ( p && p != this ) { try { p = p.parentNode; } catch(e) { p = this; } }
			if ( p == this ) { return false; }

			// copy objects to be passed into t (required for event object to be passed in IE)
			var ev = jQuery.extend({},e);
			var ob = this;

			// cancel hoverIntent timer if it exists
			if (ob.hoverIntent_t) { ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t); }

			// else e.type == "onmouseover"
			if (e.type == "mouseover") {
				// set "previous" X and Y position based on initial entry point
				pX = ev.pageX; pY = ev.pageY;
				// update "current" X and Y position based on mousemove
				$(ob).bind("mousemove",track);
				// start polling interval (self-calling timeout) to compare mouse coordinates over time
				if (ob.hoverIntent_s != 1) { ob.hoverIntent_t = setTimeout( function(){compare(ev,ob);} , cfg.interval );}

			// else e.type == "onmouseout"
			} else {
				// unbind expensive mousemove event
				$(ob).unbind("mousemove",track);
				// if hoverIntent state is true, then call the mouseOut function after the specified delay
				if (ob.hoverIntent_s == 1) { ob.hoverIntent_t = setTimeout( function(){delay(ev,ob);} , cfg.timeout );}
			}
		};

		// bind the function to the two event listeners
		return this.mouseover(handleHover).mouseout(handleHover);
	};
	
})(jQuery);;


/* Comment Generated by Combres - Resource '~/js/ResourceHandler.ashx?file=superfish.js&cache=false' (Mode: Dynamic) */

/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

;(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		: 200,
		animation	: {opacity:'show'},
		speed		: 'normal',
		autoArrows	: true,
		dropShadows : false,
		disableHI	: false,		// true disables hoverIntent detection
		onInit		: function(){}, // callback functions
		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);
;


/* Comment Generated by Combres - Resource '~/js/ResourceHandler.ashx?file=jquery.metadata.min.js&cache=false' (Mode: Dynamic) */
/*
 * Metadata - jQuery plugin for parsing metadata from elements
 *
 * Copyright (c) 2006 John Resig, Yehuda Katz, J�örn Zaefferer, Paul McLanahan
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * Revision: $Id: jquery.metadata.js 3620 2007-10-10 20:55:38Z pmclanahan $
 *
 */
(function($){$.extend({metadata:{defaults:{type:'class',name:'metadata',cre:/({.*})/,single:'metadata'},setType:function(type,name){this.defaults.type=type;this.defaults.name=name;},get:function(elem,opts){var settings=$.extend({},this.defaults,opts);if(!settings.single.length)settings.single='metadata';var data=$.data(elem,settings.single);if(data)return data;data="{}";if(settings.type=="class"){var m=settings.cre.exec(elem.className);if(m)data=m[1];}else if(settings.type=="elem"){if(!elem.getElementsByTagName)return;var e=elem.getElementsByTagName(settings.name);if(e.length)data=$.trim(e[0].innerHTML);}else if(elem.getAttribute!=undefined){var attr=elem.getAttribute(settings.name);if(attr)data=attr;}if(data.indexOf('{')<0)data="{"+data+"}";data=eval("("+data+")");$.data(elem,settings.single,data);return data;}}});$.fn.metadata=function(opts){return $.metadata.get(this[0],opts);};})(jQuery);;


/* Comment Generated by Combres - Resource '~/js/ResourceHandler.ashx?file=jquery.swapimage.min.js&cache=false' (Mode: Dynamic) */
/**
 * swapImage - jQuery plugin for swapping image
 *
 * Copyright (c) 2010 tszming (tszming@gmail.com)
 *
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 */
(function(a){a.swapImage=function(c,b,e,f,d){a.swapImage.files={};a.swapImage.data={};a.swapImage.uuid=0;a.swapImage.init=function(){var h=++a.swapImage.uuid;a(this).attr("swapImageId",h);var g=a(this).metadata();a.swapImage.data[h]=a.swapImage.data[h]||{};if(typeof g.src!="undefined"){a.swapImage.data[h]["src"]=g.src;a.swapImage.files[g.src]=false}a.each(a.grep([[g.sin,"sin"],[g.sout,"sout"]],function(i){return(typeof i[0]!="undefined"&&i[0].length>0)}),function(){var k=this[0];var o=this[1];for(var m=0;m<k.length;m++){var j=g[o][m].indexOf(":");var n=g[o][m].substring(0,j);var l=g[o][m].substring(j+1);a.swapImage.data[h][o]=a.swapImage.data[h][o]||[];if(j>1){a.swapImage.data[h][o].push([n,l]);a.swapImage.files[l]=false}else{a.swapImage.data[h][o].push([l])}}})};a.swapImage.preload=function(){a.each(a.swapImage.files,function(i,h){if(h==false){a.swapImage.files[i]=true;var g=new Image();g.src=i}})};a.swapImage.swapIn=function(){a.swapImage.swap(this,"sin")};a.swapImage.swapOut=function(){a.swapImage.swap(this,"sout")};a.swapImage.swap=function(j,g){var k=a(j).attr("swapImageId");if(typeof a.swapImage.data[k][g]!="undefined"){for(var h=0;h<a.swapImage.data[k][g].length;h++){if(a.swapImage.data[k][g][h].length>1){a(a.swapImage.data[k][g][h][0]).attr("src",a.swapImage.data[k][g][h][1])}else{a(a.swapImage.data[k][g][h][0]).each(a.swapImage._swap)}}}else{a.swapImage._swap.call(j)}};a.swapImage._swap=function(i){var j=a(this).attr("swapImageId");var h=a.swapImage.data[j];if(typeof h.src!="undefined"){var g=h.src;h.src=this.src;this.src=g}};a(document).ready(function(){if(typeof e=="undefined"){e=true}if(typeof b=="undefined"){b=true}a(c).each(a.swapImage.init);if(typeof f=="undefined"&&typeof f=="undefined"){f="mouseenter";d="mouseleave"}if(e){if(typeof d!="undefined"){a(c).bind(f,a.swapImage.swapIn).bind(d,a.swapImage.swapOut)}else{a(c).bind(f,a.swapImage.swapIn)}}else{a(c).one(f,a.swapImage.swapIn)}if(b){a(c).each(a.swapImage.preload)}})}})(jQuery);;


/* Comment Generated by Combres - Resource '~/js/ResourceHandler.ashx?file=cufon-yui.js&cache=false' (Mode: Dynamic) */
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;


/* Comment Generated by Combres - Resource '~/js/ResourceHandler.ashx?file=Century_Gothic_400-Century_Gothic_700.font.js&cache=false' (Mode: Dynamic) */
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Typeface � The Monotype Corporation plc. Data � The Monotype Corporation plc /
 * Type Solutions Inc. 1990-91 All Rights Reserved
 * 
 * Trademark:
 * Century Gothic is a trademark of The Monotype Corporation plc.
 * 
 * Description:
 * A design based on Monotype 20th Century, which was drawn by Sol Hess between
 * 1936 and 1947. Century Gothic maintains the basic design of 20th Century but has
 * an enlarged 'x' height and has been modified to ensure satisfactory output from
 * modern digital systems. The design is influenced by the geometric style sans
 * serif faces which were popular during the 1920's and 30's. Useful for headlines
 * and general display work and for small quantities of text, particularly in
 * advertising.
 * 
 * Manufacturer:
 * Monotype Typography, Inc.
 * 
 * Designer:
 * Monotype Type Drawing Office
 * 
 * Vendor URL:
 * http://www.monotype.com/html/mtname/ms_welcome.html
 * 
 * License information:
 * http://www.monotype.com/html/type/license.html
 */
Cufon.registerFont({"w":1460,"face":{"font-family":"Century Gothic","font-weight":400,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 5 2 2 2 2 2 2 4","ascent":"1638","descent":"-410","x-height":"28","bbox":"-347 -2170 2360 628","underline-thickness":"119","underline-position":"-138","unicode-range":"U+0020-U+F108"},"glyphs":{" ":{"w":567},"!":{"d":"373,-1508r0,1140r-145,0r0,-1140r145,0xm179,-96v0,-67,56,-124,123,-124v67,0,123,57,123,124v0,66,-57,124,-123,124v-66,0,-123,-58,-123,-124","w":604},"\"":{"d":"562,-1045r-103,0r-22,-463r148,0xm174,-1045r-104,0r-22,-463r148,0","w":633},"#":{"d":"1233,-602r0,108r-248,0r-72,494r-112,0r72,-494r-333,0r-76,494r-110,0r76,-494r-246,0r0,-108r263,0r51,-334r-253,0r0,-109r269,0r70,-468r107,0r-68,468r332,0r68,-468r112,0r-69,468r224,0r0,109r-240,0r-48,334r231,0xm940,-936r-334,0r-49,334r332,0","w":1475},"$":{"d":"531,-1574r131,0r0,109v147,29,221,90,301,200r-108,87v-51,-79,-116,-127,-193,-144r0,499v175,92,283,167,326,224v97,127,114,310,22,445v-76,110,-172,170,-348,190r0,313r-131,0r0,-313v-166,-14,-242,-46,-341,-126v-47,-39,-87,-85,-118,-136r107,-81v93,123,210,191,352,205r0,-619v-105,-51,-171,-86,-199,-105v-99,-69,-167,-146,-167,-293v0,-214,152,-332,366,-352r0,-103xm531,-1332v-134,10,-220,79,-220,210v0,48,14,89,42,122v37,45,97,86,178,123r0,-455xm662,-106v139,-15,266,-112,266,-247v0,-57,-19,-110,-56,-159v-37,-49,-107,-101,-210,-156r0,562","w":1135},"%":{"d":"793,-1462v197,-6,286,-23,470,-74r118,0r-1072,1638r-132,0r975,-1492v-126,31,-298,46,-476,41v164,221,-21,535,-287,535v-188,0,-346,-158,-343,-345v4,-204,148,-349,343,-349v110,0,267,50,404,46xm612,-1161v0,-118,-102,-220,-220,-220v-118,0,-219,102,-219,220v0,118,101,219,219,219v118,0,220,-101,220,-219xm849,-303v0,-185,161,-346,346,-346v185,0,346,161,346,346v0,185,-161,346,-346,346v-185,0,-346,-161,-346,-346xm1415,-303v0,-118,-102,-219,-220,-219v-118,0,-219,101,-219,219v0,118,101,219,219,219v118,0,220,-101,220,-219","w":1587},"&":{"d":"671,-1418v178,3,324,99,324,269v0,49,-17,101,-52,157v-35,56,-103,127,-205,214r223,234r153,153r178,-153r100,106v-64,57,-122,106,-173,147r147,151v51,51,94,97,131,140r-205,0r-189,-197v-127,96,-228,159,-305,189v-77,30,-158,45,-243,45v-213,0,-377,-140,-376,-341v0,-73,23,-146,69,-220v46,-74,141,-167,284,-280v-81,-97,-133,-170,-156,-216v-23,-46,-34,-90,-34,-132v-1,-164,162,-270,329,-266xm665,-1277v-121,0,-220,95,-156,203v33,57,79,119,138,186v71,-55,125,-110,161,-163v25,-38,38,-72,38,-101v-2,-78,-88,-125,-181,-125xm326,-314v-1,116,120,213,245,213v52,0,103,-11,153,-32v79,-34,172,-89,279,-166r-240,-246r-134,-148v-125,94,-206,169,-245,225v-39,56,-58,107,-58,154","w":1550},"'":{"d":"254,-1045r-103,0r-22,-463r148,0","w":405},"(":{"d":"267,-495v1,-394,78,-757,203,-1041r162,0v-127,259,-216,640,-216,1022v0,348,64,696,167,940r-154,0v-99,-237,-163,-581,-162,-921","w":756},")":{"d":"489,-614v0,393,-78,757,-203,1040r-162,0v128,-258,216,-639,216,-1022v0,-348,-64,-696,-167,-940r154,0v100,236,163,582,162,922","w":756},"*":{"d":"369,-1508r130,0r-29,297r246,-176r66,112r-277,125r277,123r-66,113r-246,-174r29,297r-130,0r31,-297r-246,174r-66,-113r281,-123r-281,-125r66,-112r246,176","w":870},"+":{"d":"552,-804r0,-434r137,0r0,434r438,0r0,137r-438,0r0,434r-137,0r0,-434r-437,0r0,-137r437,0","w":1241},",":{"d":"295,-270r135,64r-203,378r-99,-42","w":567},"-":{"d":"65,-614r550,0r0,122r-550,0r0,-122","w":680},"\u00ad":{"d":"65,-614r550,0r0,122r-550,0r0,-122","w":680},".":{"d":"187,-96v0,-67,56,-124,123,-124v67,0,123,57,123,124v0,66,-57,124,-123,124v-66,0,-123,-58,-123,-124","w":567},"\/":{"d":"836,-1508r-611,1708r-153,0r610,-1708r154,0","w":895},"0":{"d":"128,-286v-79,-192,-78,-707,0,-899v74,-181,209,-323,431,-323v227,0,364,144,443,330v85,201,84,683,0,884v-78,186,-216,331,-443,331v-222,0,-356,-141,-431,-323xm249,-1110v-57,149,-55,604,-1,754v51,141,157,260,316,260v291,0,365,-311,367,-636v1,-262,-52,-465,-185,-570v-112,-89,-253,-87,-366,0v-57,44,-99,108,-131,192","w":1135},"1":{"d":"379,-1471r289,0r0,1471r-146,0r0,-1327r-231,0","w":1135},"2":{"d":"578,-1368v-203,4,-330,152,-341,358r-141,0v1,-277,214,-498,490,-498v256,0,456,199,454,440v0,83,-18,162,-60,234v-120,206,-422,492,-599,692r679,0r0,142r-999,0r562,-607v114,-122,189,-212,223,-271v34,-59,51,-122,51,-187v0,-165,-149,-307,-319,-303","w":1135},"3":{"d":"552,-1365v-161,7,-227,93,-281,235r-150,0v45,-216,194,-378,431,-378v235,0,423,152,423,380v0,127,-63,227,-189,301v147,55,275,209,270,388v-8,280,-208,476,-501,476v-278,0,-440,-174,-483,-431r144,0v45,184,143,279,341,288v257,12,450,-262,305,-482v-78,-118,-176,-148,-382,-160r0,-135v178,-4,338,-76,342,-246v3,-133,-127,-242,-270,-236","w":1135},"4":{"d":"872,-1508r30,0r0,1025r178,0r0,141r-178,0r0,342r-147,0r0,-342r-703,0xm755,-483r0,-613r-433,613r433,0","w":1135},"5":{"d":"894,-485v0,-199,-142,-335,-345,-335v-87,0,-192,26,-315,79r136,-730r637,0r0,140r-524,0r-73,401v345,-113,644,120,635,451v-8,306,-199,513,-513,516v-243,3,-423,-173,-449,-393r151,0v28,157,137,250,307,256v196,7,353,-179,353,-385","w":1135},"6":{"d":"584,37v-325,6,-531,-313,-410,-639v24,-66,68,-147,131,-240r446,-666r121,79r-397,602v302,-110,574,125,569,411v-5,272,-193,448,-460,453xm899,-415v0,-167,-143,-310,-309,-310v-167,0,-309,143,-309,310v0,166,143,309,309,309v166,0,309,-143,309,-309","w":1135},"7":{"d":"147,-1471r933,0r-787,1508r-121,-62r680,-1307r-705,0r0,-139","w":1135},"8":{"d":"997,-1120v0,160,-91,248,-210,313v166,84,278,178,278,385v0,268,-215,459,-500,459v-163,0,-286,-46,-370,-139v-84,-93,-126,-196,-126,-308v0,-210,116,-311,286,-397v-122,-62,-216,-161,-216,-317v0,-228,196,-384,436,-384v237,0,422,158,422,388xm849,-1126v0,-134,-121,-239,-281,-239v-148,0,-280,104,-280,242v0,132,145,262,285,257v154,-5,276,-111,276,-260xm918,-419v2,-166,-167,-314,-343,-314v-189,0,-364,150,-358,328v6,189,148,303,350,303v197,0,349,-138,351,-317","w":1135},"9":{"d":"559,-1508v326,0,532,314,411,640v-24,66,-68,147,-131,240r-446,665r-121,-78r397,-602v-386,141,-707,-282,-510,-641v68,-123,220,-223,400,-224xm244,-1055v0,166,143,309,309,309v167,0,310,-143,310,-309v0,-167,-143,-309,-310,-309v-166,0,-309,143,-309,309","w":1135},":":{"d":"187,-992v0,-66,57,-124,123,-124v67,0,123,57,123,124v0,67,-56,124,-123,124v-67,0,-123,-57,-123,-124xm187,-96v0,-67,56,-124,123,-124v67,0,123,57,123,124v0,66,-57,124,-123,124v-66,0,-123,-58,-123,-124","w":567},";":{"d":"187,-992v0,-66,57,-124,123,-124v67,0,123,57,123,124v0,67,-56,124,-123,124v-67,0,-123,-57,-123,-124xm295,-270r135,64r-203,378r-99,-42","w":567},"\u037e":{"d":"187,-992v0,-66,57,-124,123,-124v67,0,123,57,123,124v0,67,-56,124,-123,124v-67,0,-123,-57,-123,-124xm295,-270r135,64r-203,378r-99,-42","w":567},"<":{"d":"1137,-347r0,146r-1033,-469r0,-130r1033,-471r0,147r-839,390","w":1241},"=":{"d":"1127,-1024r0,137r-1012,0r0,-137r1012,0xm1127,-584r0,137r-1012,0r0,-137r1012,0","w":1241},">":{"d":"104,-347r839,-387r-839,-390r0,-147r1033,471r0,130r-1033,469r0,-146","w":1241},"?":{"d":"610,-1368v-178,4,-293,106,-295,297r-145,0v-1,-264,174,-437,438,-437v237,0,420,132,420,345v0,111,-55,178,-123,237v-62,54,-412,181,-453,224v-104,108,17,252,161,244v143,-8,202,-74,217,-212r146,0v-7,216,-143,352,-363,352v-235,0,-431,-186,-327,-404v52,-108,112,-119,257,-181v143,-61,236,-103,277,-132v40,-29,60,-71,60,-126v-2,-128,-125,-210,-270,-207xm484,-96v0,-67,56,-124,123,-124v67,0,123,57,123,124v0,66,-57,124,-123,124v-66,0,-123,-58,-123,-124","w":1210},"@":{"d":"928,-61v252,0,361,-89,516,-240r106,0v-165,209,-309,328,-617,328v-317,0,-570,-171,-693,-386v-137,-238,-133,-552,2,-791v124,-220,361,-382,678,-390v373,-10,718,293,718,644v0,264,-138,441,-321,533v-75,39,-140,58,-193,58v-72,0,-120,-30,-119,-111v-40,53,-128,101,-217,101v-197,0,-332,-157,-332,-363v0,-236,174,-479,428,-469v140,6,196,52,260,148r26,-138r108,0r-116,654v-13,54,-2,90,45,90v113,0,255,-139,301,-245v32,-73,52,-151,52,-238v0,-330,-301,-582,-645,-576v-285,5,-496,147,-607,342v-121,213,-122,492,0,704v112,195,333,345,620,345xm600,-696v0,154,93,270,238,268v183,-2,256,-205,260,-385v3,-127,-80,-227,-203,-227v-166,0,-295,165,-295,344","w":1776},"A":{"d":"780,-1471r686,1471r-158,0r-231,-484r-634,0r-230,484r-164,0r695,-1471r36,0xm762,-1159r-253,533r503,0","w":1515},"B":{"d":"1030,-584v133,305,-119,584,-443,584r-404,0r0,-1471v188,3,438,-14,559,41v113,51,203,167,203,319v0,149,-80,252,-189,309v139,47,223,101,274,218xm792,-1111v0,-156,-115,-218,-295,-216r-170,0r0,471v111,2,252,-4,309,-28v85,-35,156,-117,156,-227xm327,-708r0,564v138,0,338,3,418,-32v88,-38,166,-128,166,-243v0,-146,-109,-239,-240,-271v-53,-13,-226,-19,-344,-18","w":1176},"C":{"d":"111,-744v0,-428,358,-772,794,-764v294,5,516,129,644,310r-116,89v-114,-150,-284,-254,-526,-254v-253,0,-462,139,-559,311v-54,96,-82,202,-82,321v0,356,289,629,650,629v206,0,378,-81,517,-242r116,88v-135,173,-350,287,-642,293v-457,9,-796,-329,-796,-781","w":1665},"D":{"d":"179,0r0,-1471v257,-1,640,0,784,53v269,99,455,348,455,701v0,297,-150,531,-344,637v-193,105,-586,74,-895,80xm320,-139v199,2,504,-7,593,-38v211,-73,356,-262,356,-538v0,-293,-158,-499,-390,-571v-97,-30,-349,-45,-559,-42r0,1189","w":1524},"E":{"d":"180,-1471r843,0r0,145r-696,0r0,460r690,0r0,144r-690,0r0,577r690,0r0,145r-837,0r0,-1471","w":1098},"F":{"d":"179,-1471r737,0r0,145r-591,0r0,460r591,0r0,145r-591,0r0,721r-146,0r0,-1471","w":993},"G":{"d":"1685,-705v3,446,-293,742,-739,742v-272,0,-485,-95,-646,-278v-207,-237,-243,-598,-78,-884v128,-221,372,-383,702,-383v304,0,494,114,674,284r-114,108v-135,-135,-324,-246,-555,-246v-368,0,-658,256,-658,623v0,376,291,629,679,636v300,5,537,-195,570,-460r-469,0r0,-142r634,0","w":1786},"H":{"d":"177,-1471r148,0r0,617r748,0r0,-617r148,0r0,1471r-148,0r0,-710r-748,0r0,710r-148,0r0,-1471","w":1399},"I":{"d":"158,-1471r147,0r0,1471r-147,0r0,-1471","w":463},"J":{"d":"164,-236v115,73,160,136,289,136v91,0,164,-64,187,-139v13,-42,20,-123,20,-244r0,-988r148,0r0,993v-3,269,-16,365,-154,462v-97,68,-254,69,-376,18v-58,-23,-122,-63,-192,-121","w":987},"K":{"d":"179,-1471r150,0r0,552r587,-552r199,0r-707,660r762,811r-195,0r-646,-686r0,686r-150,0r0,-1471","w":1210},"L":{"d":"179,-1471r148,0r0,1329r565,0r0,142r-713,0r0,-1471","w":946},"M":{"d":"112,0r209,-1471r24,0r598,1207r592,-1207r24,0r211,1471r-145,0r-144,-1052r-520,1052r-37,0r-527,-1060r-143,1060r-142,0","w":1882},"N":{"d":"180,0r0,-1471r32,0r978,1126r0,-1126r145,0r0,1471r-33,0r-970,-1112r0,1112r-152,0","w":1515},"O":{"d":"892,37v-421,0,-784,-350,-777,-766v5,-309,170,-557,382,-677v119,-67,246,-102,383,-102v432,0,784,344,784,772v0,420,-352,773,-772,773xm268,-729v0,338,285,629,619,623v249,-4,446,-139,543,-310v105,-187,106,-450,0,-636v-96,-167,-300,-312,-543,-312v-241,0,-444,145,-537,314v-53,97,-82,203,-82,321","w":1780},"P":{"d":"178,-1471r293,0v168,0,281,7,340,22v161,39,286,172,286,370v0,205,-122,327,-293,371v-67,17,-311,26,-479,24r0,684r-147,0r0,-1471xm325,-1328r0,500v149,0,371,11,470,-24v125,-44,200,-233,110,-362v-67,-96,-140,-114,-320,-114r-260,0","w":1212},"Q":{"d":"1666,-735v-6,265,-101,430,-253,575r218,276r-181,0r-150,-190v-120,74,-255,111,-406,111v-421,0,-784,-350,-777,-766v5,-309,171,-558,383,-677v119,-67,249,-102,390,-102v425,0,785,349,776,773xm270,-729v0,338,283,623,618,623v117,0,223,-28,320,-85r-328,-416r179,0r263,332v204,-185,253,-520,110,-777v-93,-168,-299,-312,-541,-312v-243,0,-445,143,-539,314v-53,97,-82,203,-82,321","w":1784},"R":{"d":"187,-1471r293,0v163,0,274,7,332,20v165,36,301,174,295,371v-9,283,-194,400,-508,396r529,684r-182,0r-528,-684r-84,0r0,684r-147,0r0,-1471xm334,-1327r0,500v150,-1,369,9,470,-26v125,-44,200,-233,110,-361v-67,-96,-140,-113,-321,-113r-259,0","w":1243},"S":{"d":"888,-359v0,213,-198,405,-417,396v-233,-10,-341,-127,-444,-311r125,-75v88,162,190,243,305,243v152,0,272,-99,272,-250v0,-49,-17,-98,-50,-145v-46,-65,-130,-144,-252,-236v-123,-93,-199,-160,-229,-201v-52,-70,-78,-144,-78,-225v0,-208,150,-345,357,-345v197,0,275,95,386,241r-120,91v-92,-113,-124,-171,-269,-180v-146,-9,-254,143,-182,280v62,119,97,120,263,245v126,96,215,178,262,251v47,73,71,147,71,221","w":1020},"T":{"d":"33,-1328r0,-143r807,0r0,143r-328,0r0,1328r-150,0r0,-1328r-329,0","w":872},"U":{"d":"184,-1471r147,0r0,888v1,200,-5,240,57,343v65,106,277,181,430,106v88,-44,150,-115,178,-219v10,-37,15,-114,15,-230r0,-888r147,0r0,888v-3,271,-39,406,-192,530v-151,122,-428,113,-585,5v-84,-58,-141,-132,-170,-225v-18,-57,-27,-161,-27,-310r0,-888","w":1341},"V":{"d":"67,-1471r160,0r487,1137r496,-1137r160,0r-640,1471r-32,0","w":1438},"W":{"d":"96,-1471r151,0r299,1060r422,-1060r30,0r417,1060r305,-1060r150,0r-422,1471r-28,0r-436,-1113r-445,1113r-28,0","w":1966},"X":{"d":"101,-1471r172,0r352,574r355,-574r170,0r-438,713r467,758r-172,0r-382,-617r-384,617r-172,0r469,-758","w":1247},"Y":{"d":"63,-1471r170,0r376,606r370,-606r170,0r-466,768r0,703r-145,0r0,-703","w":1212},"Z":{"d":"122,-1329r0,-142r776,0r-615,1328r584,0r0,143r-811,0r619,-1329r-553,0","w":983},"[":{"d":"290,-1508r336,0r0,142r-196,0r0,1627r196,0r0,137r-336,0r0,-1906","w":719},"\\":{"d":"220,-1508r952,1708r-153,0r-953,-1708r154,0","w":1239},"]":{"d":"429,398r-336,0r0,-142r195,0r0,-1627r-195,0r0,-137r336,0r0,1906","w":719},"^":{"d":"629,-1471r118,0r510,1106r-133,0r-439,-952r-436,952r-129,0","w":1376},"_":{"d":"-12,154r1048,0r0,102r-1048,0r0,-102","w":1024},"`":{"d":"326,-1598r218,308r-138,0r-295,-308r215,0","w":774},"a":{"d":"669,-1116v206,5,337,94,433,228r0,-200r138,0r0,1088r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1111,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438","w":1399},"b":{"d":"736,28v-206,-5,-335,-95,-432,-228r0,200r-139,0r0,-1508r139,0r0,607v103,-126,232,-210,436,-215v303,-7,558,267,558,574v0,304,-260,577,-562,570xm294,-550v-4,243,191,448,431,443v254,-6,432,-188,432,-439v0,-249,-179,-443,-430,-443v-252,0,-428,178,-433,439","w":1397},"c":{"d":"703,28v-327,6,-602,-248,-598,-563v3,-233,134,-416,298,-505v147,-79,344,-100,519,-43v134,44,223,110,290,221r-111,69v-96,-127,-227,-191,-393,-191v-253,0,-469,194,-462,439v7,263,191,445,463,445v160,0,291,-64,392,-191r111,73v-97,147,-274,242,-509,246","w":1325},"d":{"d":"671,-1116v206,5,337,94,433,228r0,-620r138,0r0,1508r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1113,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438","w":1403},"e":{"d":"248,-533v-5,295,272,518,572,404v129,-49,175,-106,252,-232r118,62v-101,193,-244,327,-520,327v-177,0,-316,-58,-416,-174v-100,-116,-150,-248,-150,-395v0,-312,248,-575,558,-575v317,0,567,244,564,583r-978,0xm1072,-654v-37,-147,-101,-230,-223,-287v-158,-74,-343,-46,-460,62v-55,51,-98,125,-127,225r810,0","w":1331},"f":{"d":"604,-1508r0,137v-76,-31,-138,-53,-200,-17v-52,30,-41,49,-41,153r0,147r227,0r0,120r-228,0r0,968r-140,0r0,-968r-143,0r0,-120r143,0v1,-107,-6,-273,22,-337v50,-114,212,-136,360,-83","w":643},"g":{"d":"662,-1116v204,0,321,87,431,217r0,-189r141,0r0,867v0,153,-14,264,-40,335v-70,194,-259,316,-518,312v-301,-5,-467,-115,-562,-340r152,0v79,137,197,210,403,212v180,2,321,-77,382,-188v32,-58,45,-191,42,-317v-92,119,-242,207,-435,207v-322,0,-558,-225,-558,-552v0,-224,125,-401,282,-488v89,-50,182,-76,280,-76xm1100,-553v-3,-256,-172,-428,-420,-428v-256,0,-433,181,-439,436v-5,239,186,413,431,413v252,0,431,-171,428,-421","w":1378},"h":{"d":"296,-893v97,-127,215,-220,408,-223v173,-3,302,100,356,228v29,70,45,179,45,328r0,560r-140,0r0,-519v0,-125,-5,-209,-15,-251v-32,-135,-116,-216,-274,-217v-178,-1,-326,142,-360,292v-31,141,-17,493,-20,695r-140,0r0,-1508r140,0r0,615","w":1249},"i":{"d":"90,-1420v0,-62,54,-116,115,-116v62,0,116,54,116,116v0,61,-54,115,-116,115v-61,0,-115,-54,-115,-115xm135,-1088r141,0r0,1088r-141,0r0,-1088","w":410},"j":{"d":"93,-1420v0,-62,53,-116,115,-116v62,0,115,54,115,116v0,61,-53,115,-115,115v-62,0,-115,-54,-115,-115xm37,295v85,0,102,-55,102,-172r0,-1211r142,0r0,1252v1,159,-50,262,-185,262v-47,0,-101,-11,-160,-34r0,-126v37,19,71,29,101,29","w":416},"k":{"d":"155,-1508r141,0r0,858r503,-438r206,0r-597,519r632,569r-198,0r-546,-489r0,489r-141,0r0,-1508","w":1028},"l":{"d":"135,-1508r140,0r0,1508r-140,0r0,-1508","w":410},"m":{"d":"1011,-855v78,-146,207,-261,401,-261v163,0,278,92,328,216v27,68,42,170,42,306r0,594r-143,0r0,-594v-3,-203,-7,-274,-111,-346v-94,-66,-240,-50,-330,20v-137,106,-163,219,-163,494r0,426r-139,0r0,-557v-4,-224,-2,-300,-110,-381v-92,-69,-233,-53,-326,16v-130,96,-166,213,-166,461r0,461r-139,0r0,-1088r139,0r0,188v86,-128,199,-216,373,-216v190,0,294,100,344,261","w":1921},"n":{"d":"296,-893v96,-128,214,-223,408,-223v173,0,303,101,356,229v29,70,45,179,45,327r0,560r-139,0r0,-519v0,-125,-6,-209,-16,-251v-32,-135,-116,-216,-274,-217v-178,-1,-326,142,-360,292v-32,142,-17,493,-20,695r-140,0r0,-1088r140,0r0,195","w":1249},"o":{"d":"104,-541v0,-311,257,-575,567,-575v311,0,566,264,566,575v0,303,-249,569,-566,569v-318,0,-567,-265,-567,-569xm1095,-538v8,-233,-196,-441,-424,-441v-229,0,-432,208,-424,441v8,250,171,433,424,433v252,0,416,-183,424,-433","w":1341},"p":{"d":"733,28v-202,-4,-334,-91,-436,-215r0,585r-139,0r0,-1486r139,0r0,200v98,-134,226,-223,432,-228v302,-7,562,266,562,569v0,308,-255,582,-558,575xm1150,-542v0,-250,-178,-433,-432,-439v-240,-5,-435,200,-431,443v5,261,181,438,433,438v250,0,430,-193,430,-442","w":1397},"q":{"d":"668,-1116v206,5,337,94,433,228r0,-200r138,0r0,1486r-138,0r0,-585v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1110,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438","w":1397},"r":{"d":"246,-929v83,-130,233,-246,407,-150r-73,118v-85,-38,-142,-17,-209,39v-44,37,-76,97,-99,178v-36,123,-24,531,-26,744r-143,0r0,-1088r143,0r0,159","w":616},"s":{"d":"103,-828v0,-164,132,-288,298,-288v100,0,201,49,302,147r-90,93v-75,-73,-148,-109,-219,-109v-128,0,-220,149,-125,251v29,31,83,71,168,115v104,54,175,106,212,156v37,50,55,108,55,171v0,177,-148,324,-329,320v-139,-3,-256,-68,-321,-154r88,-100v71,81,147,121,227,121v148,0,267,-167,163,-288v-26,-31,-85,-69,-176,-116v-98,-51,-165,-101,-200,-150v-35,-49,-53,-106,-53,-169","w":795},"t":{"d":"278,-1492r141,0r0,404r222,0r0,120r-222,0r0,968r-141,0r0,-968r-191,0r0,-120r191,0r0,-404","w":694},"u":{"d":"138,-1088r141,0v5,233,-22,584,20,764v30,129,156,216,316,216v157,0,279,-85,311,-205v44,-165,15,-549,21,-775r143,0r0,534v0,279,-53,415,-210,518v-132,86,-398,86,-530,0v-159,-104,-212,-243,-212,-528r0,-524","w":1245},"v":{"d":"53,-1088r149,0r364,792r361,-792r150,0r-498,1088r-25,0","w":1135},"w":{"d":"9,-1088r144,0r333,790r349,-790r25,0r348,790r339,-790r146,0r-472,1088r-27,0r-346,-779r-349,779r-26,0","w":1702},"x":{"d":"32,-1088r168,0r288,403r288,-403r168,0r-372,517r419,571r-170,0r-333,-457r-328,457r-167,0r412,-571","w":983},"y":{"d":"39,-1088r148,0r374,838r363,-838r149,0r-649,1486r-148,0r210,-480","w":1098},"z":{"d":"67,-1088r799,0r-616,964r596,0r0,124r-837,0r616,-965r-558,0r0,-123","w":870},"{":{"d":"242,-510v166,78,206,187,209,451v2,197,-11,220,29,310v37,41,71,41,174,43r0,157v-229,14,-334,-56,-362,-246v-11,-74,-7,-433,-30,-495v-30,-81,-86,-135,-187,-138r0,-163v148,-10,195,-95,204,-248v4,-68,6,-391,25,-447v49,-143,146,-197,350,-185r0,157v-166,-2,-203,28,-203,206v0,155,-2,254,-7,297v-20,171,-73,236,-202,301","w":719},"|":{"d":"616,-1508r143,0r0,1906r-143,0r0,-1906","w":1376},"}":{"d":"477,-510v-170,-88,-209,-180,-209,-450v0,-147,-4,-233,-9,-259v-17,-88,-78,-96,-194,-95r0,-157v228,-14,334,57,362,246v11,74,8,433,31,495v30,81,84,136,186,139r0,163v-92,1,-147,41,-174,103v-45,102,-30,164,-34,355v-4,186,-8,267,-83,350v-58,65,-151,75,-288,71r0,-157v166,2,203,-27,203,-205v0,-159,3,-261,8,-304v18,-160,80,-241,201,-295","w":719},"~":{"d":"874,-726v119,0,124,-39,254,-111r0,162v-116,61,-139,96,-252,96v-63,0,-151,-28,-265,-77v-130,-56,-135,-83,-237,-83v-115,0,-147,41,-262,105r0,-160v115,-60,138,-96,254,-96v65,0,153,29,268,81v118,54,137,83,240,83","w":1241},"\u00c4":{"d":"780,-1471r686,1471r-158,0r-231,-484r-634,0r-230,484r-164,0r695,-1471r36,0xm762,-1159r-253,533r503,0xm438,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm846,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1515},"\u00c5":{"d":"780,-1471r686,1471r-158,0r-231,-484r-634,0r-230,484r-164,0r695,-1471r36,0xm762,-1159r-253,533r503,0xm544,-1775v0,-115,98,-214,213,-214v115,0,213,99,213,214v0,115,-98,213,-213,213v-114,0,-213,-99,-213,-213xm865,-1778v0,-58,-51,-110,-109,-110v-59,0,-110,51,-110,110v0,59,51,110,110,110v58,0,109,-52,109,-110","w":1515},"\u00c7":{"d":"111,-744v0,-428,358,-772,794,-764v294,5,516,129,644,310r-116,89v-114,-150,-284,-254,-526,-254v-253,0,-462,139,-559,311v-54,96,-82,202,-82,321v0,356,289,629,650,629v206,0,378,-81,517,-242r116,88v-135,173,-350,287,-642,293v-457,9,-796,-329,-796,-781xm916,236v-10,-51,-71,-48,-132,-34r27,-202r88,0r-17,118v85,-17,153,30,153,104v0,103,-106,158,-229,158v-59,0,-115,-10,-167,-30r22,-69v86,27,242,41,255,-45","w":1665},"\u00c9":{"d":"180,-1471r843,0r0,145r-696,0r0,460r690,0r0,144r-690,0r0,577r690,0r0,145r-837,0r0,-1471xm677,-1895r215,0r-295,308r-138,0","w":1098},"\u00d1":{"d":"180,0r0,-1471r32,0r978,1126r0,-1126r145,0r0,1471r-33,0r-970,-1112r0,1112r-152,0xm616,-1815v74,0,220,79,287,79v37,0,87,-18,151,-53r70,97v-105,85,-233,118,-374,51v-70,-33,-69,-44,-135,-44v-77,0,-93,25,-158,69r-66,-102v61,-65,136,-97,225,-97","w":1515},"\u00d6":{"d":"892,37v-421,0,-784,-350,-777,-766v5,-309,170,-557,382,-677v119,-67,246,-102,383,-102v432,0,784,344,784,772v0,420,-352,773,-772,773xm268,-729v0,338,285,629,619,623v249,-4,446,-139,543,-310v105,-187,106,-450,0,-636v-96,-167,-300,-312,-543,-312v-241,0,-444,145,-537,314v-53,97,-82,203,-82,321xm570,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm978,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1780},"\u00dc":{"d":"184,-1471r147,0r0,888v1,200,-5,240,57,343v65,106,277,181,430,106v88,-44,150,-115,178,-219v10,-37,15,-114,15,-230r0,-888r147,0r0,888v-3,271,-39,406,-192,530v-151,122,-428,113,-585,5v-84,-58,-141,-132,-170,-225v-18,-57,-27,-161,-27,-310r0,-888xm351,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm759,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1341},"\u00e1":{"d":"669,-1116v206,5,337,94,433,228r0,-200r138,0r0,1088r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1111,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438xm767,-1598r215,0r-295,308r-138,0","w":1399},"\u00e0":{"d":"669,-1116v206,5,337,94,433,228r0,-200r138,0r0,1088r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1111,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438xm639,-1598r218,308r-138,0r-295,-308r215,0","w":1399},"\u00e2":{"d":"669,-1116v206,5,337,94,433,228r0,-200r138,0r0,1088r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1111,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438xm633,-1542r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1399},"\u00e4":{"d":"669,-1116v206,5,337,94,433,228r0,-200r138,0r0,1088r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1111,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438xm380,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm788,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1399},"\u00e3":{"d":"669,-1116v206,5,337,94,433,228r0,-200r138,0r0,1088r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1111,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438xm558,-1518v74,0,220,79,287,79v37,0,87,-18,151,-53r70,97v-105,85,-233,118,-374,51v-70,-33,-69,-44,-135,-44v-77,0,-93,25,-158,69r-66,-102v61,-65,136,-97,225,-97","w":1399},"\u00e5":{"d":"669,-1116v206,5,337,94,433,228r0,-200r138,0r0,1088r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1111,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438xm486,-1477v0,-115,98,-214,213,-214v115,0,213,99,213,214v0,115,-98,213,-213,213v-114,0,-213,-99,-213,-213xm807,-1480v0,-58,-51,-110,-109,-110v-59,0,-110,51,-110,110v0,59,51,110,110,110v58,0,109,-52,109,-110","w":1399},"\u00e7":{"d":"703,28v-327,6,-602,-248,-598,-563v3,-233,134,-416,298,-505v147,-79,344,-100,519,-43v134,44,223,110,290,221r-111,69v-96,-127,-227,-191,-393,-191v-253,0,-469,194,-462,439v7,263,191,445,463,445v160,0,291,-64,392,-191r111,73v-97,147,-274,242,-509,246xm747,236v-10,-51,-71,-48,-132,-34r27,-202r88,0r-17,118v85,-17,153,30,153,104v0,103,-106,158,-229,158v-59,0,-115,-10,-167,-30r22,-69v86,27,242,41,255,-45","w":1325},"\u00e9":{"d":"248,-533v-5,295,272,518,572,404v129,-49,175,-106,252,-232r118,62v-101,193,-244,327,-520,327v-177,0,-316,-58,-416,-174v-100,-116,-150,-248,-150,-395v0,-312,248,-575,558,-575v317,0,567,244,564,583r-978,0xm1072,-654v-37,-147,-101,-230,-223,-287v-158,-74,-343,-46,-460,62v-55,51,-98,125,-127,225r810,0xm734,-1598r215,0r-295,308r-138,0","w":1331},"\u00e8":{"d":"248,-533v-5,295,272,518,572,404v129,-49,175,-106,252,-232r118,62v-101,193,-244,327,-520,327v-177,0,-316,-58,-416,-174v-100,-116,-150,-248,-150,-395v0,-312,248,-575,558,-575v317,0,567,244,564,583r-978,0xm1072,-654v-37,-147,-101,-230,-223,-287v-158,-74,-343,-46,-460,62v-55,51,-98,125,-127,225r810,0xm605,-1598r218,308r-138,0r-295,-308r215,0","w":1331},"\u00ea":{"d":"248,-533v-5,295,272,518,572,404v129,-49,175,-106,252,-232r118,62v-101,193,-244,327,-520,327v-177,0,-316,-58,-416,-174v-100,-116,-150,-248,-150,-395v0,-312,248,-575,558,-575v317,0,567,244,564,583r-978,0xm1072,-654v-37,-147,-101,-230,-223,-287v-158,-74,-343,-46,-460,62v-55,51,-98,125,-127,225r810,0xm600,-1542r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1331},"\u00eb":{"d":"248,-533v-5,295,272,518,572,404v129,-49,175,-106,252,-232r118,62v-101,193,-244,327,-520,327v-177,0,-316,-58,-416,-174v-100,-116,-150,-248,-150,-395v0,-312,248,-575,558,-575v317,0,567,244,564,583r-978,0xm1072,-654v-37,-147,-101,-230,-223,-287v-158,-74,-343,-46,-460,62v-55,51,-98,125,-127,225r810,0xm346,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm754,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1331},"\u00ed":{"d":"135,-1088r141,0r0,1088r-141,0r0,-1088xm273,-1598r215,0r-295,308r-138,0","w":410},"\u00ec":{"d":"135,-1088r141,0r0,1088r-141,0r0,-1088xm144,-1598r218,308r-138,0r-295,-308r215,0","w":410},"\u00ee":{"d":"135,-1088r141,0r0,1088r-141,0r0,-1088xm139,-1542r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":410},"\u00ef":{"d":"135,-1088r141,0r0,1088r-141,0r0,-1088xm-115,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm293,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":410},"\u00f1":{"d":"296,-893v96,-128,214,-223,408,-223v173,0,303,101,356,229v29,70,45,179,45,327r0,560r-139,0r0,-519v0,-125,-6,-209,-16,-251v-32,-135,-116,-216,-274,-217v-178,-1,-326,142,-360,292v-32,142,-17,493,-20,695r-140,0r0,-1088r140,0r0,195xm483,-1518v74,0,220,79,287,79v37,0,87,-18,151,-53r70,97v-105,85,-233,118,-374,51v-70,-33,-69,-44,-135,-44v-77,0,-93,25,-158,69r-66,-102v61,-65,136,-97,225,-97","w":1249},"\u00f3":{"d":"104,-541v0,-311,257,-575,567,-575v311,0,566,264,566,575v0,303,-249,569,-566,569v-318,0,-567,-265,-567,-569xm1095,-538v8,-233,-196,-441,-424,-441v-229,0,-432,208,-424,441v8,250,171,433,424,433v252,0,416,-183,424,-433xm739,-1598r215,0r-295,308r-138,0","w":1341},"\u00f2":{"d":"104,-541v0,-311,257,-575,567,-575v311,0,566,264,566,575v0,303,-249,569,-566,569v-318,0,-567,-265,-567,-569xm1095,-538v8,-233,-196,-441,-424,-441v-229,0,-432,208,-424,441v8,250,171,433,424,433v252,0,416,-183,424,-433xm610,-1598r218,308r-138,0r-295,-308r215,0","w":1341},"\u00f4":{"d":"104,-541v0,-311,257,-575,567,-575v311,0,566,264,566,575v0,303,-249,569,-566,569v-318,0,-567,-265,-567,-569xm1095,-538v8,-233,-196,-441,-424,-441v-229,0,-432,208,-424,441v8,250,171,433,424,433v252,0,416,-183,424,-433xm605,-1542r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1341},"\u00f6":{"d":"104,-541v0,-311,257,-575,567,-575v311,0,566,264,566,575v0,303,-249,569,-566,569v-318,0,-567,-265,-567,-569xm1095,-538v8,-233,-196,-441,-424,-441v-229,0,-432,208,-424,441v8,250,171,433,424,433v252,0,416,-183,424,-433xm351,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm759,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1341},"\u00f5":{"d":"104,-541v0,-311,257,-575,567,-575v311,0,566,264,566,575v0,303,-249,569,-566,569v-318,0,-567,-265,-567,-569xm1095,-538v8,-233,-196,-441,-424,-441v-229,0,-432,208,-424,441v8,250,171,433,424,433v252,0,416,-183,424,-433xm529,-1518v74,0,220,79,287,79v37,0,87,-18,151,-53r70,97v-105,85,-233,118,-374,51v-70,-33,-69,-44,-135,-44v-77,0,-93,25,-158,69r-66,-102v61,-65,136,-97,225,-97","w":1341},"\u00fa":{"d":"138,-1088r141,0v5,233,-22,584,20,764v30,129,156,216,316,216v157,0,279,-85,311,-205v44,-165,15,-549,21,-775r143,0r0,534v0,279,-53,415,-210,518v-132,86,-398,86,-530,0v-159,-104,-212,-243,-212,-528r0,-524xm690,-1598r215,0r-295,308r-138,0","w":1245},"\u00f9":{"d":"138,-1088r141,0v5,233,-22,584,20,764v30,129,156,216,316,216v157,0,279,-85,311,-205v44,-165,15,-549,21,-775r143,0r0,534v0,279,-53,415,-210,518v-132,86,-398,86,-530,0v-159,-104,-212,-243,-212,-528r0,-524xm561,-1598r218,308r-138,0r-295,-308r215,0","w":1245},"\u00fb":{"d":"138,-1088r141,0v5,233,-22,584,20,764v30,129,156,216,316,216v157,0,279,-85,311,-205v44,-165,15,-549,21,-775r143,0r0,534v0,279,-53,415,-210,518v-132,86,-398,86,-530,0v-159,-104,-212,-243,-212,-528r0,-524xm556,-1542r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1245},"\u00fc":{"d":"138,-1088r141,0v5,233,-22,584,20,764v30,129,156,216,316,216v157,0,279,-85,311,-205v44,-165,15,-549,21,-775r143,0r0,534v0,279,-53,415,-210,518v-132,86,-398,86,-530,0v-159,-104,-212,-243,-212,-528r0,-524xm302,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm710,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1245},"\u2020":{"d":"489,-1508r149,0r-23,457r360,-21r0,149r-360,-26r27,1263r-153,0r29,-1263r-361,26r0,-149r361,21","w":1133},"\u00b0":{"d":"412,-1508v185,0,343,158,343,344v0,188,-159,344,-346,344v-188,0,-344,-157,-344,-347v0,-183,164,-341,347,-341xm412,-926v122,0,224,-112,224,-236v0,-129,-98,-240,-223,-240v-124,0,-229,112,-229,238v0,123,107,238,228,238","w":819},"\u00a2":{"d":"103,-535v-9,-373,329,-689,725,-548r133,-257r121,60r-132,257v48,31,87,62,116,94r-85,105v-31,-29,-62,-55,-95,-76r-394,766v179,71,294,20,450,-96r91,106v-133,121,-378,202,-604,115r-152,295r-117,-64r151,-301v-126,-114,-204,-243,-208,-456xm765,-961v-291,-91,-527,131,-521,418v3,155,48,257,133,334","w":1135},"\u00a3":{"d":"57,-151v0,-122,103,-232,222,-232v45,0,93,13,144,39v17,-146,3,-252,-38,-371r-286,0r0,-129r254,0v-52,-200,-66,-190,-71,-335v-6,-181,171,-334,361,-329v145,4,232,68,289,166v31,54,50,126,57,217r-136,0v-3,-146,-70,-246,-206,-249v-129,-2,-225,80,-225,205v0,118,55,224,81,325r320,0r0,129r-286,0v41,135,51,314,15,452v56,41,171,151,276,151v63,0,99,-77,106,-232r141,0v4,139,-46,288,-118,344v-33,25,-71,37,-112,37v-138,0,-254,-87,-342,-160v-55,107,-134,160,-237,160v-122,0,-209,-69,-209,-188xm194,-171v0,40,29,76,67,75v50,0,91,-37,124,-111v-45,-27,-83,-41,-114,-41v-43,-1,-77,34,-77,77","w":1135},"\u00a7":{"d":"212,-1219v-4,-195,162,-317,372,-317v228,0,359,130,380,342r-147,0v-13,-121,-98,-201,-231,-201v-156,0,-282,122,-208,261v60,113,137,140,281,231v171,108,241,128,311,264v103,198,-71,388,-257,415v116,71,215,180,218,336v4,185,-168,314,-369,314v-206,0,-372,-122,-400,-288r148,0v33,99,124,155,243,157v125,3,228,-71,230,-181v0,-45,-17,-89,-50,-132v-33,-43,-110,-102,-230,-179v-115,-73,-185,-119,-210,-138v-91,-71,-163,-149,-163,-281v0,-165,118,-258,260,-300v-109,-81,-175,-148,-178,-303xm596,-306v179,-6,335,-180,210,-331v-26,-31,-152,-114,-299,-202v-127,18,-231,89,-231,216v0,49,18,93,53,133v46,53,135,114,267,184","w":1259},"\u2022":{"d":"313,-746v0,-165,142,-307,307,-307v165,0,307,142,307,307v0,166,-142,308,-307,308v-165,0,-307,-142,-307,-308","w":1241},"\u00b6":{"d":"94,-1105v3,-244,142,-408,415,-408r513,0r0,75r-84,0r0,1669r-119,0r0,-1669r-217,0r0,1669r-119,0r0,-937v-130,1,-178,-20,-252,-76v-82,-62,-139,-181,-137,-323","w":1155},"\u00df":{"d":"834,-1168v3,-133,-111,-235,-248,-233v-122,2,-223,77,-259,171v-16,41,-24,123,-24,248r0,982r-141,0r0,-995v2,-278,32,-378,186,-479v65,-43,145,-62,235,-62v223,0,396,149,394,362v-1,147,-83,245,-189,299v-33,17,-78,29,-137,37v166,23,248,91,318,199v43,65,61,144,61,231v0,247,-173,436,-417,436v-82,0,-151,-16,-208,-49r0,-133v70,33,133,49,188,49v171,2,300,-132,297,-307v-4,-219,-162,-344,-395,-347r0,-157v189,13,335,-90,339,-252","w":1135},"\u00ae":{"d":"1445,-1151v138,242,138,545,1,785v-123,215,-370,393,-680,393v-309,0,-557,-179,-680,-393v-138,-241,-137,-543,0,-784v124,-217,368,-394,680,-394v312,0,555,177,679,393xm1352,-420v118,-207,118,-470,-1,-678v-107,-187,-315,-340,-583,-340v-268,0,-483,154,-588,340v-117,208,-118,472,0,679v106,185,321,339,588,339v265,0,479,-156,584,-340xm1024,-764v85,45,102,75,103,205v1,86,-7,171,32,222r15,24r-160,0v-30,-84,-13,-252,-48,-330v-33,-45,-63,-47,-157,-47r-227,0r0,377r-143,0r0,-904r377,0v163,1,225,21,284,113v25,39,37,87,37,140v0,109,-31,147,-113,200xm994,-954v0,-108,-57,-132,-181,-133r-231,0r0,268r222,0v133,1,190,-26,190,-135","w":1530},"\u00a9":{"d":"1446,-1148v137,239,137,545,0,783v-124,214,-369,392,-680,392v-310,0,-558,-179,-681,-393v-137,-239,-137,-544,0,-782v124,-215,369,-392,681,-392v310,0,557,178,680,392xm1352,-418v118,-206,118,-472,0,-678v-107,-185,-318,-338,-587,-338v-267,0,-479,154,-585,339v-118,207,-118,471,0,677v106,186,318,338,586,338v267,0,480,-153,586,-338xm355,-753v0,-279,159,-475,416,-478v214,-2,363,116,379,307r-136,0v-27,-114,-100,-178,-235,-178v-186,0,-281,144,-281,351v0,200,90,344,267,344v150,0,230,-100,249,-246r136,0v-19,203,-168,358,-380,358v-260,1,-415,-186,-415,-458","w":1530},"\u2122":{"d":"1966,-1513r0,862r-150,0r0,-710r-321,710r-99,0r-311,-710r0,710r-149,0r0,-862r243,0r267,597r282,-597r238,0xm770,-1513r0,137r-305,0r0,725r-150,0r0,-725r-303,0r0,-137r758,0","w":2048},"\u00b4":{"d":"452,-1598r215,0r-295,308r-138,0","w":768},"\u00a8":{"d":"58,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm466,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":756},"\u2260":{"d":"742,-1024r326,0r0,137r-379,0r-117,303r496,0r0,137r-549,0r-187,484r-138,0r186,-484r-324,0r0,-137r377,0r116,-303r-493,0r0,-137r545,0r186,-484r142,0","w":1124},"\u00c6":{"d":"1,0r950,-1471r910,0r0,151r-693,0r0,452r693,0r0,145r-693,0r0,579r693,0r0,144r-842,0r0,-482r-535,0r-312,482r-171,0xm578,-620r441,0r0,-681","w":2032},"\u00d8":{"d":"1663,-736v8,420,-352,773,-772,773v-163,0,-309,-43,-437,-128r-164,194r-107,-87r165,-194v-253,-231,-308,-625,-131,-944v121,-218,358,-386,672,-386v171,0,327,49,467,148r144,-174r105,87r-151,178v122,124,205,302,209,533xm444,-291r811,-954v-198,-142,-461,-160,-678,-34v-176,102,-310,291,-310,551v0,170,59,316,177,437xm1356,-1153r-805,949v189,126,451,129,651,15v176,-100,309,-290,309,-547v0,-163,-52,-302,-155,-417","w":1778},"\u221e":{"d":"152,-716v0,-141,109,-267,246,-267v102,0,198,57,289,171v78,-97,139,-161,186,-189v203,-120,435,27,435,278v0,202,-111,335,-288,335v-58,0,-110,-16,-156,-49v-46,-33,-106,-94,-177,-183v-91,114,-187,171,-289,171v-137,0,-246,-126,-246,-267xm1197,-713v0,-171,-154,-277,-287,-181v-34,24,-85,83,-154,177v55,85,106,145,152,180v33,25,70,38,110,38v111,-1,179,-92,179,-214xm263,-719v0,87,56,156,137,156v67,0,140,-51,218,-153v-81,-94,-108,-149,-220,-157v-82,-6,-135,66,-135,154"},"\u00b1":{"d":"493,-913r0,-434r137,0r0,434r438,0r0,137r-438,0r0,434r-137,0r0,-434r-437,0r0,-137r437,0xm1068,-161r0,137r-1012,0r0,-137r1012,0","w":1124},"\u2264":{"d":"1079,-481r0,146r-1033,-469r0,-130r1033,-471r0,147r-839,390xm1079,-231r0,137r-1033,0r0,-137r1033,0","w":1124},"\u2265":{"d":"46,-481r839,-387r-839,-390r0,-147r1033,471r0,130r-1033,469r0,-146xm1079,-231r0,137r-1033,0r0,-137r1033,0","w":1124},"\u00a5":{"d":"906,-1471r166,0r-417,735r356,0r0,117r-374,0r0,155r374,0r0,117r-374,0r0,347r-144,0r0,-347r-370,0r0,-117r370,0r0,-155r-370,0r0,-117r353,0r-414,-735r167,0r337,602","w":1135},"\u00b5":{"d":"591,25v-141,0,-234,-55,-303,-140r0,513r-141,0r0,-1486r141,0r0,600v1,178,36,249,142,316v94,60,225,62,318,2v99,-64,145,-160,145,-331r0,-587r140,0r0,1088r-140,0r0,-118v-71,88,-158,143,-302,143","w":1180},"\u2202":{"d":"364,25v-192,0,-308,-143,-308,-347v0,-157,55,-290,164,-398v133,-131,345,-199,638,-204v-3,-127,-13,-219,-30,-276v-27,-94,-77,-163,-175,-163v-95,0,-171,75,-227,225r-135,-60v45,-99,99,-173,163,-221v113,-86,247,-101,359,-16v218,166,187,746,73,1023v-60,146,-136,256,-232,328v-96,72,-193,109,-290,109xm236,-303v0,102,76,192,170,191v58,0,121,-23,186,-73v154,-118,236,-336,262,-611v-308,22,-425,59,-544,244v-51,80,-74,164,-74,249","w":1012},"\u2211":{"d":"139,-1536r1237,0r0,164r-988,0r607,796r-646,841r1037,0r0,161r-1264,0r0,-187r620,-808r-603,-791r0,-176"},"\u220f":{"d":"162,-1536r1362,0r0,1962r-191,0r0,-1788r-978,0r0,1788r-193,0r0,-1962","w":1685},"\uf006":{"d":"0,-1063r1124,0r0,158r-162,0r0,905r-189,0r0,-905r-426,0r0,905r-188,0r0,-905r-159,0r0,-158","w":1124},"\u222b":{"d":"208,64v28,0,40,-26,39,-61v0,-28,-3,-68,-9,-120v-39,-339,-52,-883,-21,-1330v12,-179,29,-306,125,-384v81,-66,214,-19,218,75v3,57,-38,104,-92,104v-34,8,-82,-56,-116,-56v-31,0,-40,25,-40,64v0,28,3,76,9,145v47,607,43,535,22,1232v-6,203,-34,340,-84,410v-37,51,-84,77,-141,77v-69,0,-118,-52,-118,-121v0,-55,37,-100,90,-99v46,-9,85,64,118,64","w":561},"\u00aa":{"d":"345,-1508v98,0,158,50,205,116r0,-99r114,0r0,681r-114,0r0,-94v-49,63,-108,110,-207,110v-164,0,-286,-175,-286,-358v0,-182,125,-356,288,-356xm556,-1148v0,-131,-77,-251,-191,-251v-112,0,-192,121,-192,249v0,128,80,252,191,252v115,0,192,-117,192,-250","w":756},"\u00ba":{"d":"55,-1149v0,-191,142,-359,322,-359v181,0,323,169,323,359v0,190,-141,355,-323,355v-180,0,-322,-166,-322,-355xm583,-1147v0,-128,-90,-251,-206,-251v-115,0,-205,124,-205,251v0,130,86,246,205,246v119,1,206,-117,206,-246","w":756},"\u2126":{"d":"362,-780v0,296,137,509,342,600r0,180r-577,0r0,-168r369,8v-217,-132,-341,-315,-346,-642v-5,-288,129,-510,316,-616v98,-57,212,-85,342,-85v388,0,654,303,647,702v-5,320,-138,506,-344,641r364,-6r0,166r-575,0r0,-177v149,-72,226,-166,292,-315v78,-175,71,-421,-6,-590v-72,-159,-177,-258,-382,-258v-285,0,-442,242,-442,560","w":1573},"\u00e6":{"d":"677,-1116v201,0,333,91,440,226r0,-198r128,0r0,197v125,-144,211,-220,437,-225v326,-8,575,255,566,586r-979,0v16,243,171,430,427,430v203,0,313,-105,397,-257r120,60v-87,188,-271,325,-527,325v-208,0,-340,-84,-441,-222r0,194r-128,0r0,-201v-110,141,-230,223,-436,229v-304,9,-568,-268,-561,-576v5,-229,122,-402,279,-492v88,-50,180,-76,278,-76xm2093,-651v-37,-149,-101,-228,-222,-289v-190,-96,-426,-2,-512,114v-36,49,-65,105,-82,175r816,0xm1120,-542v-4,-270,-174,-439,-433,-439v-251,0,-418,181,-424,437v-5,242,190,439,429,439v239,0,431,-195,428,-437","w":2370},"\u00f8":{"d":"102,-541v0,-303,248,-575,566,-575v134,0,251,40,351,120r116,-137r92,74r-125,146v89,107,133,231,133,372v0,303,-249,569,-566,569v-109,0,-209,-27,-299,-82r-116,137r-89,-74r114,-134v-118,-114,-177,-253,-177,-416xm669,-979v-300,0,-503,304,-391,609v20,55,51,102,89,141r560,-658v-79,-61,-165,-92,-258,-92xm668,-105v252,0,425,-182,425,-432v0,-96,-29,-184,-86,-265r-548,644v69,35,138,53,209,53","w":1337},"\u00bf":{"d":"481,-986v0,-66,57,-124,123,-124v67,0,123,57,123,124v0,67,-56,124,-123,124v-67,0,-123,-57,-123,-124xm601,286v178,-4,295,-105,295,-297r145,0v1,264,-174,437,-438,437v-237,0,-420,-132,-420,-345v0,-110,56,-178,123,-237v62,-54,413,-181,454,-225v103,-109,-19,-251,-162,-243v-143,8,-202,74,-217,212r-146,0v7,-216,143,-353,363,-353v236,0,432,187,328,405v-51,108,-113,119,-258,181v-143,61,-236,103,-276,132v-41,29,-61,71,-61,125v2,128,125,211,270,208","w":1210},"\u00a1":{"d":"179,-986v0,-66,57,-124,123,-124v67,0,123,57,123,124v0,67,-56,124,-123,124v-67,0,-123,-57,-123,-124xm231,426r0,-1140r145,0r0,1140r-145,0","w":604},"\u00ac":{"d":"1127,-1024r0,577r-137,0r-1,-440r-874,0r0,-137r1012,0","w":1241},"\u221a":{"d":"1047,-1869r74,0r-312,1947r-496,-1021r-198,91r-34,-64r301,-151r405,823","w":1124},"\u0192":{"d":"621,-882r231,0r-17,122r-233,0r-107,710v-19,131,-47,226,-74,291v-61,146,-232,248,-389,136r18,-124v82,68,174,60,234,-28v34,-49,62,-147,83,-296r101,-689r-141,0r17,-122r141,0v29,-164,51,-461,114,-558v82,-127,218,-120,343,-31r-18,133v-51,-49,-98,-73,-139,-73v-33,0,-59,14,-75,45v-48,94,-65,343,-89,484","w":1135},"\u2248":{"d":"816,-912v119,0,124,-39,254,-111r0,162v-116,61,-139,96,-252,96v-63,0,-151,-28,-265,-77v-130,-56,-135,-83,-237,-83v-115,0,-147,41,-262,105r0,-160v115,-61,138,-96,254,-96v65,0,153,29,268,81v118,54,137,83,240,83xm816,-540v119,0,124,-39,254,-111r0,162v-116,61,-139,96,-252,96v-63,0,-151,-28,-265,-77v-130,-56,-135,-83,-237,-83v-115,0,-147,42,-262,105r0,-160v115,-60,138,-96,254,-96v65,0,153,29,268,81v118,54,137,83,240,83","w":1124},"\u2206":{"d":"1226,0r-1200,0r628,-1387xm990,-82r-399,-967r-440,967r839,0","w":1253},"\u00ab":{"d":"391,-1088r-223,546r223,542r-148,0r-222,-542r222,-546r148,0xm849,-1088r-224,546r224,542r-148,0r-222,-542r222,-546r148,0","w":870},"\u00bb":{"d":"479,0r223,-545r-223,-543r147,0r223,543r-223,545r-147,0xm21,0r223,-545r-223,-543r148,0r222,543r-222,545r-148,0","w":870},"\u2026":{"d":"901,-96v0,-67,56,-124,123,-124v67,0,123,57,123,124v0,66,-57,124,-123,124v-66,0,-123,-58,-123,-124xm218,-96v0,-67,56,-124,123,-124v67,0,123,57,123,124v0,66,-57,124,-123,124v-66,0,-123,-58,-123,-124xm1584,-96v0,-67,56,-124,123,-124v66,0,123,57,123,124v0,66,-58,124,-123,124v-66,0,-123,-58,-123,-124","w":2048},"\u00a0":{"w":573},"\u00c0":{"d":"780,-1471r686,1471r-158,0r-231,-484r-634,0r-230,484r-164,0r695,-1471r36,0xm762,-1159r-253,533r503,0xm697,-1895r218,308r-138,0r-295,-308r215,0","w":1515},"\u00c3":{"d":"780,-1471r686,1471r-158,0r-231,-484r-634,0r-230,484r-164,0r695,-1471r36,0xm762,-1159r-253,533r503,0xm616,-1815v74,0,220,79,287,79v37,0,87,-18,151,-53r70,97v-105,85,-233,118,-374,51v-70,-33,-69,-44,-135,-44v-77,0,-93,25,-158,69r-66,-102v61,-65,136,-97,225,-97","w":1515},"\u00d5":{"d":"892,37v-421,0,-784,-350,-777,-766v5,-309,170,-557,382,-677v119,-67,246,-102,383,-102v432,0,784,344,784,772v0,420,-352,773,-772,773xm268,-729v0,338,285,629,619,623v249,-4,446,-139,543,-310v105,-187,106,-450,0,-636v-96,-167,-300,-312,-543,-312v-241,0,-444,145,-537,314v-53,97,-82,203,-82,321xm748,-1815v74,0,220,79,287,79v37,0,87,-18,151,-53r70,97v-105,85,-233,118,-374,51v-70,-33,-69,-44,-135,-44v-77,0,-93,25,-158,69r-66,-102v61,-65,136,-97,225,-97","w":1780},"\u0152":{"d":"896,-1508v268,0,498,147,626,322r0,-285r838,0r0,145r-689,0r0,457r689,0r0,145r-689,0r0,579r689,0r0,145r-838,0r0,-285v-154,198,-308,322,-628,322v-246,0,-443,-93,-598,-273v-207,-241,-240,-591,-80,-882v118,-216,373,-390,680,-390xm903,-106v334,0,624,-294,617,-631v-6,-254,-138,-443,-316,-543v-100,-56,-204,-86,-313,-86v-321,0,-618,303,-618,626v0,344,287,634,630,634","w":2445},"\u0153":{"d":"1657,-1116v310,-5,582,258,557,585r-976,0v6,266,183,430,425,430v196,0,331,-111,398,-260r119,61v-112,203,-248,323,-526,328v-136,2,-264,-49,-343,-111v-43,-33,-91,-88,-145,-164v-107,160,-251,270,-489,275v-308,7,-565,-267,-565,-578v0,-306,258,-571,566,-566v232,4,380,116,488,288v107,-176,250,-284,491,-288xm1099,-537v4,-241,-191,-450,-427,-444v-247,6,-421,191,-421,439v0,254,182,441,430,441v244,0,413,-181,418,-436xm2061,-651v-46,-190,-187,-329,-403,-329v-211,0,-361,131,-407,329r810,0","w":2329},"\u2013":{"d":"-12,-637r1048,0r0,129r-1048,0r0,-129","w":1024},"\u2014":{"d":"-12,-637r2072,0r0,129r-2072,0r0,-129","w":2048},"\u201c":{"d":"289,-1508r78,44v-46,95,-58,118,-71,230r89,0r0,275r-181,0v1,-122,-4,-289,18,-375v12,-49,34,-107,67,-174xm734,-1508r78,44v-46,95,-58,118,-71,230r89,0r0,275r-181,0v1,-121,-4,-289,17,-375v12,-49,34,-107,68,-174","w":1028},"\u201d":{"d":"721,-959r-77,-44v45,-95,59,-118,70,-230r-88,0r0,-275r181,0v-1,122,5,288,-17,374v-12,49,-35,108,-69,175xm276,-959r-77,-44v45,-95,59,-118,70,-230r-88,0r0,-275r181,0v-1,122,4,288,-18,374v-12,49,-34,108,-68,175","w":991},"\u2018":{"d":"371,-1508r78,44v-46,95,-58,118,-71,230r89,0r0,275r-181,0v1,-122,-4,-289,18,-375v12,-49,34,-107,67,-174","w":719},"\u2019":{"d":"347,-959r-77,-44v45,-95,59,-118,70,-230r-88,0r0,-275r181,0v-1,122,5,288,-17,374v-12,49,-35,108,-69,175","w":719},"\u00f7":{"d":"461,-1207r201,0r0,202r-201,0r0,-202xm56,-804r1012,0r0,137r-1012,0r0,-137xm461,-466r201,0r0,205r-201,0r0,-205","w":1124},"\u25ca":{"d":"549,-1422r418,713r-418,709r-111,0r-391,-709r391,-713r111,0xm495,-1325r-340,616r340,615r359,-615","w":1012},"\u00ff":{"d":"39,-1088r148,0r374,838r363,-838r149,0r-649,1486r-148,0r210,-480xm239,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm647,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1098},"\u0178":{"d":"63,-1471r170,0r376,606r370,-606r170,0r-466,768r0,703r-145,0r0,-703xm286,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm694,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1212},"\u2044":{"d":"-347,37r923,-1545r112,0r-925,1545r-110,0","w":340},"\u2215":{"d":"-347,37r923,-1545r112,0r-925,1545r-110,0","w":340},"\u20ac":{"d":"1108,23v-465,69,-821,-177,-913,-539r-148,0r35,-137r88,0v-5,-76,-6,-99,0,-174r-123,0r37,-138r113,0v101,-351,459,-604,921,-528r-37,141v-344,-60,-623,132,-721,387r639,0r-36,138r-637,0v-8,60,-9,107,-2,174r591,0r-36,137r-525,0v90,273,389,473,754,399r0,140","w":1135},"\u2039":{"d":"445,-1088r-223,546r223,542r-148,0r-222,-542r222,-546r148,0","w":514},"\u203a":{"d":"70,0r223,-545r-223,-543r148,0r222,543r-222,545r-148,0","w":514},"\uf001":{"d":"858,-1264r-142,0v-19,-92,-75,-138,-167,-138v-83,-1,-138,42,-163,100v-14,32,-19,136,-18,214r226,0r0,123r-226,0r0,965r-142,0r0,-965r-142,0r0,-123r142,0v-14,-286,73,-439,325,-448v172,-6,298,113,307,272xm716,-1088r142,0r0,1088r-142,0r0,-1088","w":997},"\ufb01":{"d":"858,-1264r-142,0v-19,-92,-75,-138,-167,-138v-83,-1,-138,42,-163,100v-14,32,-19,136,-18,214r226,0r0,123r-226,0r0,965r-142,0r0,-965r-142,0r0,-123r142,0v-14,-286,73,-439,325,-448v172,-6,298,113,307,272xm716,-1088r142,0r0,1088r-142,0r0,-1088","w":997},"\uf002":{"d":"603,-1088r0,124r-224,0r0,964r-144,0r0,-964r-143,0r0,-124r143,0v-2,-216,21,-323,143,-400v98,-62,255,-65,350,1v119,83,137,156,137,380r0,1107r-143,0r0,-1115v-3,-156,1,-205,-74,-262v-54,-40,-144,-42,-196,1v-78,65,-71,104,-73,288r224,0","w":993},"\ufb02":{"d":"603,-1088r0,124r-224,0r0,964r-144,0r0,-964r-143,0r0,-124r143,0v-2,-216,21,-323,143,-400v98,-62,255,-65,350,1v119,83,137,156,137,380r0,1107r-143,0r0,-1115v-3,-156,1,-205,-74,-262v-54,-40,-144,-42,-196,1v-78,65,-71,104,-73,288r224,0","w":993},"\u2021":{"d":"492,-1508r147,0r-23,354r358,-23r0,148r-358,-27r23,459r-23,452r358,-20r0,148r-358,-28r23,359r-147,0r24,-359r-357,28r0,-148r357,20r-24,-452r24,-459r-357,27r0,-148r357,23","w":1133},"\u2219":{"d":"161,-735v0,-67,56,-124,123,-124v67,0,123,57,123,124v0,66,-57,124,-123,124v-66,0,-123,-58,-123,-124","w":567},"\u201a":{"d":"350,274r-77,-43v45,-94,59,-119,70,-231r-88,0r0,-275r181,0v-1,122,4,289,-18,375v-12,49,-34,107,-68,174","w":725},"\u201e":{"d":"738,274r-77,-44v45,-95,59,-118,70,-230r-88,0r0,-275r181,0v-1,122,4,289,-18,375v-12,49,-34,107,-68,174xm293,274r-77,-44v45,-95,59,-118,70,-230r-88,0r0,-275r181,0v-1,122,5,289,-17,375v-12,49,-35,107,-69,174","w":1028},"\u2030":{"d":"796,-1462v197,-6,286,-23,470,-74r118,0r-1072,1638r-132,0r975,-1492v-126,31,-298,46,-476,41v164,221,-21,535,-287,535v-188,0,-346,-158,-343,-345v4,-204,148,-349,343,-349v110,0,267,50,404,46xm615,-1161v0,-118,-102,-220,-220,-220v-118,0,-219,102,-219,220v0,118,101,219,219,219v118,0,220,-101,220,-219xm852,-303v0,-185,161,-346,346,-346v185,0,346,161,346,346v0,185,-161,346,-346,346v-185,0,-346,-161,-346,-346xm1418,-303v0,-118,-102,-219,-220,-219v-118,0,-219,101,-219,219v0,118,101,219,219,219v118,0,220,-101,220,-219xm1650,-303v0,-186,160,-346,346,-346v186,0,345,161,345,346v0,185,-160,346,-345,346v-187,0,-346,-160,-346,-346xm2215,-303v0,-118,-101,-219,-219,-219v-118,0,-220,101,-220,219v0,118,102,219,220,219v118,0,219,-101,219,-219","w":2404},"\u00c2":{"d":"780,-1471r686,1471r-158,0r-231,-484r-634,0r-230,484r-164,0r695,-1471r36,0xm762,-1159r-253,533r503,0xm691,-1840r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1515},"\u00ca":{"d":"180,-1471r843,0r0,145r-696,0r0,460r690,0r0,144r-690,0r0,577r690,0r0,145r-837,0r0,-1471xm543,-1840r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1098},"\u00c1":{"d":"780,-1471r686,1471r-158,0r-231,-484r-634,0r-230,484r-164,0r695,-1471r36,0xm762,-1159r-253,533r503,0xm825,-1895r215,0r-295,308r-138,0","w":1515},"\u00cb":{"d":"180,-1471r843,0r0,145r-696,0r0,460r690,0r0,144r-690,0r0,577r690,0r0,145r-837,0r0,-1471xm290,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm698,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1098},"\u00c8":{"d":"180,-1471r843,0r0,145r-696,0r0,460r690,0r0,144r-690,0r0,577r690,0r0,145r-837,0r0,-1471xm549,-1895r218,308r-138,0r-295,-308r215,0","w":1098},"\u00cd":{"d":"158,-1471r147,0r0,1471r-147,0r0,-1471xm299,-1895r215,0r-295,308r-138,0","w":463},"\u00ce":{"d":"158,-1471r147,0r0,1471r-147,0r0,-1471xm165,-1840r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":463},"\u00cf":{"d":"158,-1471r147,0r0,1471r-147,0r0,-1471xm-88,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm320,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":463},"\u00cc":{"d":"158,-1471r147,0r0,1471r-147,0r0,-1471xm171,-1895r218,308r-138,0r-295,-308r215,0","w":463},"\u00d3":{"d":"892,37v-421,0,-784,-350,-777,-766v5,-309,170,-557,382,-677v119,-67,246,-102,383,-102v432,0,784,344,784,772v0,420,-352,773,-772,773xm268,-729v0,338,285,629,619,623v249,-4,446,-139,543,-310v105,-187,106,-450,0,-636v-96,-167,-300,-312,-543,-312v-241,0,-444,145,-537,314v-53,97,-82,203,-82,321xm958,-1895r215,0r-295,308r-138,0","w":1780},"\u00d4":{"d":"892,37v-421,0,-784,-350,-777,-766v5,-309,170,-557,382,-677v119,-67,246,-102,383,-102v432,0,784,344,784,772v0,420,-352,773,-772,773xm268,-729v0,338,285,629,619,623v249,-4,446,-139,543,-310v105,-187,106,-450,0,-636v-96,-167,-300,-312,-543,-312v-241,0,-444,145,-537,314v-53,97,-82,203,-82,321xm824,-1840r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1780},"\uf000":{"w":1617},"\u00d2":{"d":"892,37v-421,0,-784,-350,-777,-766v5,-309,170,-557,382,-677v119,-67,246,-102,383,-102v432,0,784,344,784,772v0,420,-352,773,-772,773xm268,-729v0,338,285,629,619,623v249,-4,446,-139,543,-310v105,-187,106,-450,0,-636v-96,-167,-300,-312,-543,-312v-241,0,-444,145,-537,314v-53,97,-82,203,-82,321xm829,-1895r218,308r-138,0r-295,-308r215,0","w":1780},"\u00da":{"d":"184,-1471r147,0r0,888v1,200,-5,240,57,343v65,106,277,181,430,106v88,-44,150,-115,178,-219v10,-37,15,-114,15,-230r0,-888r147,0r0,888v-3,271,-39,406,-192,530v-151,122,-428,113,-585,5v-84,-58,-141,-132,-170,-225v-18,-57,-27,-161,-27,-310r0,-888xm739,-1895r215,0r-295,308r-138,0","w":1341},"\u00db":{"d":"184,-1471r147,0r0,888v1,200,-5,240,57,343v65,106,277,181,430,106v88,-44,150,-115,178,-219v10,-37,15,-114,15,-230r0,-888r147,0r0,888v-3,271,-39,406,-192,530v-151,122,-428,113,-585,5v-84,-58,-141,-132,-170,-225v-18,-57,-27,-161,-27,-310r0,-888xm605,-1840r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1341},"\u00d9":{"d":"184,-1471r147,0r0,888v1,200,-5,240,57,343v65,106,277,181,430,106v88,-44,150,-115,178,-219v10,-37,15,-114,15,-230r0,-888r147,0r0,888v-3,271,-39,406,-192,530v-151,122,-428,113,-585,5v-84,-58,-141,-132,-170,-225v-18,-57,-27,-161,-27,-310r0,-888xm610,-1895r218,308r-138,0r-295,-308r215,0","w":1341},"\u0131":{"d":"135,-1088r141,0r0,1088r-141,0r0,-1088","w":410},"\u02c6":{"d":"448,-1542r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1028},"\u02dc":{"d":"308,-1518v74,0,220,79,287,79v37,0,87,-18,151,-53r70,97v-105,85,-233,118,-374,51v-70,-33,-69,-44,-135,-44v-77,0,-93,25,-158,69r-66,-102v61,-65,136,-97,225,-97","w":899},"\u02c9":{"d":"152,-1479r690,0r0,119r-690,0r0,-119","w":993},"\u02d8":{"d":"819,-1525v-34,130,-172,211,-351,211v-181,0,-320,-80,-358,-211r132,0v44,67,118,104,227,104v119,0,165,-32,222,-104r128,0","w":928},"\u02d9":{"d":"112,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":455},"\u02da":{"d":"127,-1477v0,-115,98,-214,213,-214v115,0,213,99,213,214v0,115,-98,213,-213,213v-114,0,-213,-99,-213,-213xm448,-1480v0,-58,-51,-110,-109,-110v-59,0,-110,51,-110,110v0,59,51,110,110,110v58,0,109,-52,109,-110","w":680},"\u00b8":{"d":"416,236v-10,-51,-71,-48,-132,-34r27,-202r88,0r-17,118v85,-17,153,30,153,104v0,103,-106,158,-229,158v-59,0,-115,-10,-167,-30r22,-69v86,27,242,41,255,-45","w":664},"\u02dd":{"d":"475,-1598r215,0r-295,308r-138,0xm791,-1598r215,0r-295,308r-138,0","w":1130},"\u02db":{"d":"503,383v-155,39,-314,-29,-313,-170v0,-87,40,-158,119,-213r109,0v-81,69,-121,133,-121,193v0,94,107,126,215,105","w":618},"\u02c7":{"d":"580,-1285r-139,0r-290,-257r180,0r177,152r183,-152r186,0","w":1028},"\u0141":{"d":"438,-857r266,-221r0,174r-266,222r0,540r566,0r0,142r-713,0r0,-559r-202,168r0,-175r202,-168r0,-737r147,0r0,614","w":1059},"\u0142":{"d":"377,-971r200,-129r0,140r-200,129r0,831r-140,0r0,-741r-184,119r0,-140r184,-119r0,-627r140,0r0,537","w":614},"\u0160":{"d":"888,-359v0,213,-198,405,-417,396v-233,-10,-341,-127,-444,-311r125,-75v88,162,190,243,305,243v152,0,272,-99,272,-250v0,-49,-17,-98,-50,-145v-46,-65,-130,-144,-252,-236v-123,-93,-199,-160,-229,-201v-52,-70,-78,-144,-78,-225v0,-208,150,-345,357,-345v197,0,275,95,386,241r-120,91v-92,-113,-124,-171,-269,-180v-146,-9,-254,143,-182,280v62,119,97,120,263,245v126,96,215,178,262,251v47,73,71,147,71,221xm576,-1583r-139,0r-290,-257r180,0r177,152r183,-152r186,0","w":1020},"\u0161":{"d":"103,-828v0,-164,132,-288,298,-288v100,0,201,49,302,147r-90,93v-75,-73,-148,-109,-219,-109v-128,0,-220,149,-125,251v29,31,83,71,168,115v104,54,175,106,212,156v37,50,55,108,55,171v0,177,-148,324,-329,320v-139,-3,-256,-68,-321,-154r88,-100v71,81,147,121,227,121v148,0,267,-167,163,-288v-26,-31,-85,-69,-176,-116v-98,-51,-165,-101,-200,-150v-35,-49,-53,-106,-53,-169xm463,-1285r-139,0r-290,-257r180,0r177,152r183,-152r186,0","w":795},"\u017d":{"d":"122,-1329r0,-142r776,0r-615,1328r584,0r0,143r-811,0r619,-1329r-553,0xm558,-1583r-139,0r-290,-257r180,0r177,152r183,-152r186,0","w":983},"\u017e":{"d":"67,-1088r799,0r-616,964r596,0r0,124r-837,0r616,-965r-558,0r0,-123xm501,-1285r-139,0r-290,-257r180,0r177,152r183,-152r186,0","w":870},"\u00a6":{"d":"616,-686r0,-822r143,0r0,767xm616,398r0,-957r143,-54r0,1011r-143,0","w":1376},"\u00d0":{"d":"213,-667r-179,0r0,-137r179,0r0,-667v272,0,684,-6,845,53v268,98,454,348,454,701v0,297,-150,532,-344,637v-207,112,-629,72,-955,80r0,-667xm354,-667r0,528v209,1,551,-3,653,-38v211,-73,357,-262,357,-538v0,-293,-160,-498,-391,-571v-106,-33,-405,-45,-619,-42r0,524r387,0r0,137r-387,0","w":1618},"\u00f0":{"d":"105,-547v0,-303,253,-569,548,-569v77,0,161,22,251,65v-63,-85,-134,-163,-213,-235r-218,90r-52,-106r175,-73v-64,-53,-119,-98,-166,-133r197,0v35,25,69,51,102,78r164,-68r52,107r-117,47v145,139,249,275,314,406v115,231,134,457,22,675v-86,167,-263,287,-498,291v-305,6,-561,-266,-561,-575xm1095,-548v0,-257,-162,-430,-415,-434v-237,-3,-434,187,-434,432v0,241,191,451,425,444v252,-7,424,-183,424,-442","w":1341},"\u00dd":{"d":"63,-1471r170,0r376,606r370,-606r170,0r-466,768r0,703r-145,0r0,-703xm674,-1895r215,0r-295,308r-138,0","w":1212},"\u00fd":{"d":"39,-1088r148,0r374,838r363,-838r149,0r-649,1486r-148,0r210,-480xm617,-1598r215,0r-295,308r-138,0","w":1098},"\u00de":{"d":"178,-1471r147,0r0,344v154,-1,420,4,485,22v159,43,287,172,287,370v0,205,-123,326,-293,371v-67,17,-311,26,-479,24r0,340r-147,0r0,-1471xm325,-984r0,500v149,0,371,10,470,-25v125,-44,200,-233,110,-362v-67,-96,-140,-113,-320,-113r-260,0","w":1212},"\u00fe":{"d":"733,28v-202,-4,-334,-91,-436,-215r0,585r-139,0r0,-1906r139,0r0,620v98,-134,226,-223,432,-228v302,-7,562,266,562,569v0,308,-255,582,-558,575xm1150,-542v0,-250,-178,-433,-432,-439v-240,-5,-435,200,-431,443v5,261,181,438,433,438v250,0,430,-193,430,-442","w":1397},"\u2212":{"d":"115,-804r1012,0r0,137r-1012,0r0,-137","w":1241},"\u00d7":{"d":"712,-735r332,331r-92,92r-331,-331r-332,331r-92,-92r331,-331r-331,-332r92,-92r332,332r331,-332r92,92","w":1241},"\u00b9":{"d":"224,-1489r187,0r0,756r-110,0r0,-658r-150,0","w":680},"\u00b2":{"d":"347,-1410v-115,0,-184,67,-192,176r-106,0v1,-161,133,-274,302,-274v193,0,352,174,247,348v-57,94,-237,238,-333,328r377,0r0,99r-636,0r358,-325v71,-64,114,-110,132,-136v75,-107,-27,-216,-149,-216","w":680},"\u00b3":{"d":"342,-1409v-90,3,-124,43,-158,116r-112,0v32,-130,120,-211,270,-215v136,-3,261,83,263,203v0,58,-30,107,-91,146v75,35,138,100,138,194v0,146,-143,253,-307,250v-173,-4,-273,-91,-301,-241r109,0v25,92,82,139,192,142v104,2,197,-57,197,-145v0,-44,-20,-78,-60,-103v-40,-25,-105,-39,-194,-42r0,-94v107,2,202,-30,202,-108v0,-62,-73,-106,-148,-103","w":705},"\u00bd":{"d":"177,-1489r187,0r0,756r-110,0r0,-658r-150,0xm277,37r923,-1545r112,0r-925,1545r-110,0xm1280,-668v-115,0,-184,67,-192,176r-106,0v1,-161,133,-274,302,-274v193,0,352,174,247,348v-57,94,-237,238,-333,328r377,0r0,99r-636,0r358,-325v71,-64,114,-110,132,-136v75,-107,-27,-216,-149,-216","w":1702},"\u00bc":{"d":"188,-1489r187,0r0,756r-110,0r0,-658r-150,0xm388,37r923,-1545r112,0r-925,1545r-110,0xm1554,-786r0,528r105,0r0,97r-105,0r0,170r-111,0r0,-170r-432,0xm1443,-258r0,-248r-214,248r214,0","w":1702},"\u00be":{"d":"367,-1409v-90,3,-124,43,-158,116r-112,0v32,-130,120,-211,270,-215v136,-3,261,83,263,203v0,58,-30,107,-91,146v75,35,138,100,138,194v0,146,-143,253,-307,250v-173,-4,-273,-91,-301,-241r109,0v25,92,82,139,192,142v104,2,197,-57,197,-145v0,-44,-20,-78,-60,-103v-40,-25,-105,-39,-194,-42r0,-94v107,2,202,-30,202,-108v0,-62,-73,-106,-148,-103xm431,37r923,-1545r112,0r-925,1545r-110,0xm1547,-786r0,528r105,0r0,97r-105,0r0,170r-111,0r0,-170r-432,0xm1436,-258r0,-248r-214,248r214,0","w":1702},"\u20a3":{"d":"325,-415r281,0r0,138r-281,0r0,277r-146,0r0,-277r-179,0r0,-138r179,0r0,-1056r737,0r0,145r-591,0r0,460r591,0r0,145r-591,0r0,306","w":993},"\u011e":{"d":"1685,-705v3,446,-293,742,-739,742v-272,0,-485,-95,-646,-278v-207,-237,-243,-598,-78,-884v128,-221,372,-383,702,-383v304,0,494,114,674,284r-114,108v-135,-135,-324,-246,-555,-246v-368,0,-658,256,-658,623v0,376,291,629,679,636v300,5,537,-195,570,-460r-469,0r0,-142r634,0xm1247,-1818v-34,130,-172,211,-351,211v-181,0,-320,-80,-358,-211r132,0v44,67,118,104,227,104v119,0,165,-32,222,-104r128,0","w":1786},"\u011f":{"d":"662,-1116v204,0,321,87,431,217r0,-189r141,0r0,867v0,153,-14,264,-40,335v-70,194,-259,316,-518,312v-301,-5,-467,-115,-562,-340r152,0v79,137,197,210,403,212v180,2,321,-77,382,-188v32,-58,45,-191,42,-317v-92,119,-242,207,-435,207v-322,0,-558,-225,-558,-552v0,-224,125,-401,282,-488v89,-50,182,-76,280,-76xm1100,-553v-3,-256,-172,-428,-420,-428v-256,0,-433,181,-439,436v-5,239,186,413,431,413v252,0,431,-171,428,-421xm1044,-1525v-34,130,-172,211,-351,211v-181,0,-320,-80,-358,-211r132,0v44,67,118,104,227,104v119,0,165,-32,222,-104r128,0","w":1378},"\u0130":{"d":"158,-1471r147,0r0,1471r-147,0r0,-1471xm116,-1695v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":463},"\u015e":{"d":"888,-359v0,213,-198,405,-417,396v-233,-10,-341,-127,-444,-311r125,-75v88,162,190,243,305,243v152,0,272,-99,272,-250v0,-49,-17,-98,-50,-145v-46,-65,-130,-144,-252,-236v-123,-93,-199,-160,-229,-201v-52,-70,-78,-144,-78,-225v0,-208,150,-345,357,-345v197,0,275,95,386,241r-120,91v-92,-113,-124,-171,-269,-180v-146,-9,-254,143,-182,280v62,119,97,120,263,245v126,96,215,178,262,251v47,73,71,147,71,221xm534,236v-10,-51,-71,-48,-132,-34r27,-202r88,0r-17,118v85,-17,153,30,153,104v0,103,-106,158,-229,158v-59,0,-115,-10,-167,-30r22,-69v86,27,242,41,255,-45","w":1020},"\u015f":{"d":"103,-828v0,-164,132,-288,298,-288v100,0,201,49,302,147r-90,93v-75,-73,-148,-109,-219,-109v-128,0,-220,149,-125,251v29,31,83,71,168,115v104,54,175,106,212,156v37,50,55,108,55,171v0,177,-148,324,-329,320v-139,-3,-256,-68,-321,-154r88,-100v71,81,147,121,227,121v148,0,267,-167,163,-288v-26,-31,-85,-69,-176,-116v-98,-51,-165,-101,-200,-150v-35,-49,-53,-106,-53,-169xm445,236v-10,-51,-71,-48,-132,-34r27,-202r88,0r-17,118v85,-17,153,30,153,104v0,103,-106,158,-229,158v-59,0,-115,-10,-167,-30r22,-69v86,27,242,41,255,-45","w":795},"\u0106":{"d":"111,-744v0,-428,358,-772,794,-764v294,5,516,129,644,310r-116,89v-114,-150,-284,-254,-526,-254v-253,0,-462,139,-559,311v-54,96,-82,202,-82,321v0,356,289,629,650,629v206,0,378,-81,517,-242r116,88v-135,173,-350,287,-642,293v-457,9,-796,-329,-796,-781xm985,-1891r215,0r-295,308r-138,0","w":1665},"\u0107":{"d":"703,28v-327,6,-602,-248,-598,-563v3,-233,134,-416,298,-505v147,-79,344,-100,519,-43v134,44,223,110,290,221r-111,69v-96,-127,-227,-191,-393,-191v-253,0,-469,194,-462,439v7,263,191,445,463,445v160,0,291,-64,392,-191r111,73v-97,147,-274,242,-509,246xm767,-1598r215,0r-295,308r-138,0","w":1325},"\u010c":{"d":"111,-744v0,-428,358,-772,794,-764v294,5,516,129,644,310r-116,89v-114,-150,-284,-254,-526,-254v-253,0,-462,139,-559,311v-54,96,-82,202,-82,321v0,356,289,629,650,629v206,0,378,-81,517,-242r116,88v-135,173,-350,287,-642,293v-457,9,-796,-329,-796,-781xm971,-1578r-139,0r-290,-257r180,0r177,152r183,-152r186,0","w":1665},"\u010d":{"d":"703,28v-327,6,-602,-248,-598,-563v3,-233,134,-416,298,-505v147,-79,344,-100,519,-43v134,44,223,110,290,221r-111,69v-96,-127,-227,-191,-393,-191v-253,0,-469,194,-462,439v7,263,191,445,463,445v160,0,291,-64,392,-191r111,73v-97,147,-274,242,-509,246xm777,-1285r-139,0r-290,-257r180,0r177,152r183,-152r186,0","w":1325},"\u0111":{"d":"671,-1116v206,5,337,94,433,228r0,-328r-306,0r0,-115r306,0r0,-177r138,0r0,177r160,0r0,115r-160,0r0,1216r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1113,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438","w":1403},"\u00af":{"d":"-12,-1727r1048,0r0,103r-1048,0r0,-103","w":1024},"\u00b7":{"d":"486,-754v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":682},"\uf003":{"d":"562,-1528r0,528r105,0r0,97r-105,0r0,170r-111,0r0,-170r-432,0xm451,-1000r0,-248r-214,248r214,0","w":705},"\u0102":{"d":"780,-1471r686,1471r-158,0r-231,-484r-634,0r-230,484r-164,0r695,-1471r36,0xm762,-1159r-253,533r503,0xm1119,-1822v-34,130,-172,211,-351,211v-181,0,-320,-80,-358,-211r132,0v44,67,118,104,227,104v119,0,165,-32,222,-104r128,0","w":1515},"\u0103":{"d":"669,-1116v206,5,337,94,433,228r0,-200r138,0r0,1088r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1111,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438xm1019,-1525v-34,130,-172,211,-351,211v-181,0,-320,-80,-358,-211r132,0v44,67,118,104,227,104v119,0,165,-32,222,-104r128,0","w":1399},"\u0104":{"d":"780,-1471r686,1471r-158,0r-231,-484r-634,0r-230,484r-164,0r695,-1471r36,0xm762,-1159r-253,533r503,0xm1510,383v-155,39,-314,-29,-313,-170v0,-87,40,-158,119,-213r109,0v-81,69,-121,133,-121,193v0,94,107,126,215,105","w":1515},"\u0105":{"d":"669,-1116v206,5,337,94,433,228r0,-200r138,0r0,1088r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1111,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438xm1309,383v-155,39,-314,-29,-313,-170v0,-87,40,-158,119,-213r109,0v-81,69,-121,133,-121,193v0,94,107,126,215,105","w":1399},"\u010e":{"d":"179,0r0,-1471v257,-1,640,0,784,53v269,99,455,348,455,701v0,297,-150,531,-344,637v-193,105,-586,74,-895,80xm320,-139v199,2,504,-7,593,-38v211,-73,356,-262,356,-538v0,-293,-158,-499,-390,-571v-97,-30,-349,-45,-559,-42r0,1189xm731,-1578r-139,0r-290,-257r180,0r177,152r183,-152r186,0","w":1524},"\u010f":{"d":"109,-547v0,-299,259,-569,562,-569v179,0,323,76,433,228r0,-620r138,0r0,1508r-138,0r0,-187v-118,143,-264,215,-437,215v-312,0,-558,-275,-558,-575xm1113,-538v0,-251,-195,-443,-431,-443v-239,0,-432,208,-432,439v0,231,198,442,431,442v230,0,432,-185,432,-438xm1398,-1041r-65,-38v35,-69,55,-134,59,-195r-75,0r0,-234r154,0v-1,103,4,241,-14,315v-9,42,-29,93,-59,152","w":1403},"\u0110":{"d":"213,-667r-179,0r0,-137r179,0r0,-667v272,0,684,-6,845,53v268,98,454,348,454,701v0,297,-150,532,-344,637v-207,112,-629,72,-955,80r0,-667xm354,-667r0,528v209,1,551,-3,653,-38v211,-73,357,-262,357,-538v0,-293,-160,-498,-391,-571v-106,-33,-405,-45,-619,-42r0,524r387,0r0,137r-387,0","w":1618},"\u0118":{"d":"180,-1471r843,0r0,145r-696,0r0,460r690,0r0,144r-690,0r0,577r690,0r0,145r-837,0r0,-1471xm1010,383v-155,39,-314,-29,-313,-170v0,-87,40,-158,119,-213r109,0v-81,69,-121,133,-121,193v0,94,107,126,215,105","w":1098},"\u0119":{"d":"248,-533v-5,295,272,518,572,404v129,-49,175,-106,252,-232r118,62v-101,193,-244,327,-520,327v-177,0,-316,-58,-416,-174v-100,-116,-150,-248,-150,-395v0,-312,248,-575,558,-575v317,0,567,244,564,583r-978,0xm1072,-654v-37,-147,-101,-230,-223,-287v-158,-74,-343,-46,-460,62v-55,51,-98,125,-127,225r810,0xm883,383v-155,39,-314,-29,-313,-170v0,-87,40,-158,119,-213r109,0v-81,69,-121,133,-121,193v0,94,107,126,215,105","w":1331},"\u011a":{"d":"180,-1471r843,0r0,145r-696,0r0,460r690,0r0,144r-690,0r0,577r690,0r0,145r-837,0r0,-1471xm675,-1583r-139,0r-290,-257r180,0r177,152r183,-152r186,0","w":1098},"\u011b":{"d":"248,-533v-5,295,272,518,572,404v129,-49,175,-106,252,-232r118,62v-101,193,-244,327,-520,327v-177,0,-316,-58,-416,-174v-100,-116,-150,-248,-150,-395v0,-312,248,-575,558,-575v317,0,567,244,564,583r-978,0xm1072,-654v-37,-147,-101,-230,-223,-287v-158,-74,-343,-46,-460,62v-55,51,-98,125,-127,225r810,0xm732,-1285r-139,0r-290,-257r180,0r177,152r183,-152r186,0","w":1331},"\u0132":{"d":"158,-1471r147,0r0,1471r-147,0r0,-1471xm1124,-1471r147,0r0,993v-5,245,-6,353,-139,452v-58,43,-131,63,-216,63v-122,0,-244,-52,-367,-156r79,-117v126,91,222,136,288,136v99,0,178,-80,194,-164v8,-45,14,-118,14,-219r0,-988","w":1450},"\u0133":{"d":"90,-1421v0,-63,54,-115,115,-115v62,0,116,54,116,115v0,62,-54,116,-116,116v-61,0,-115,-54,-115,-116xm503,-1421v0,-63,53,-115,115,-115v62,0,115,52,115,115v0,62,-54,116,-115,116v-61,0,-115,-54,-115,-116xm135,-1088r141,0r0,1088r-141,0r0,-1088xm549,-1088r142,0r0,1252v0,175,-62,262,-185,262v-49,0,-103,-11,-160,-34r0,-126v73,48,179,35,196,-40v5,-18,7,-53,7,-103r0,-1211","w":825},"\u0139":{"d":"179,-1471r148,0r0,1329r565,0r0,142r-713,0r0,-1471xm547,-1896r215,0r-295,308r-138,0","w":946},"\u013a":{"d":"135,-1508r140,0r0,1508r-140,0r0,-1508xm297,-1895r215,0r-295,308r-138,0","w":410},"\u013d":{"d":"179,-1471r148,0r0,1329r565,0r0,142r-713,0r0,-1471xm558,-922r-77,-44v45,-95,59,-118,70,-230r-88,0r0,-275r181,0v-1,122,5,288,-17,374v-12,49,-35,108,-69,175","w":946},"\u013e":{"d":"134,-1508r140,0r0,1508r-140,0r0,-1508xm430,-1041r-66,-38v35,-69,55,-134,60,-195r-75,0r0,-234r153,0v-1,102,4,241,-14,315v-9,42,-28,93,-58,152","w":422},"\u013f":{"d":"179,-1471r148,0r0,1329r565,0r0,142r-713,0r0,-1471xm496,-754v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":946},"\u0140":{"d":"135,-1508r140,0r0,1508r-140,0r0,-1508xm356,-754v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":540},"\u0143":{"d":"180,0r0,-1471r32,0r978,1126r0,-1126r145,0r0,1471r-33,0r-970,-1112r0,1112r-152,0xm860,-1895r215,0r-295,308r-138,0","w":1515},"\u0144":{"d":"296,-893v96,-128,214,-223,408,-223v173,0,303,101,356,229v29,70,45,179,45,327r0,560r-139,0r0,-519v0,-125,-6,-209,-16,-251v-32,-135,-116,-216,-274,-217v-178,-1,-326,142,-360,292v-32,142,-17,493,-20,695r-140,0r0,-1088r140,0r0,195xm667,-1598r215,0r-295,308r-138,0","w":1249},"\u0147":{"d":"180,0r0,-1471r32,0r978,1126r0,-1126r145,0r0,1471r-33,0r-970,-1112r0,1112r-152,0xm830,-1582r-139,0r-290,-257r180,0r177,152r183,-152r186,0","w":1515},"\u0148":{"d":"296,-893v96,-128,214,-223,408,-223v173,0,303,101,356,229v29,70,45,179,45,327r0,560r-139,0r0,-519v0,-125,-6,-209,-16,-251v-32,-135,-116,-216,-274,-217v-178,-1,-326,142,-360,292v-32,142,-17,493,-20,695r-140,0r0,-1088r140,0r0,195xm755,-1285r-139,0r-290,-257r180,0r177,152r183,-152r186,0","w":1249},"\u0149":{"d":"301,-893v96,-128,214,-223,408,-223v173,0,303,101,356,229v29,70,45,179,45,327r0,560r-139,0r0,-519v0,-125,-6,-209,-16,-251v-32,-135,-116,-216,-274,-217v-178,-1,-326,142,-360,292v-32,142,-17,493,-20,695r-140,0r0,-1088r140,0r0,195xm26,-959r-77,-44v45,-95,59,-118,70,-230r-88,0r0,-275r181,0v-1,122,5,288,-17,374v-12,49,-35,108,-69,175","w":1254},"\u0150":{"d":"892,37v-421,0,-784,-350,-777,-766v5,-309,170,-557,382,-677v119,-67,246,-102,383,-102v432,0,784,344,784,772v0,420,-352,773,-772,773xm268,-729v0,338,285,629,619,623v249,-4,446,-139,543,-310v105,-187,106,-450,0,-636v-96,-167,-300,-312,-543,-312v-241,0,-444,145,-537,314v-53,97,-82,203,-82,321xm850,-1896r215,0r-295,308r-138,0xm1166,-1896r215,0r-295,308r-138,0","w":1780},"\u0151":{"d":"104,-541v0,-311,257,-575,567,-575v311,0,566,264,566,575v0,303,-249,569,-566,569v-318,0,-567,-265,-567,-569xm1095,-538v8,-233,-196,-441,-424,-441v-229,0,-432,208,-424,441v8,250,171,433,424,433v252,0,416,-183,424,-433xm648,-1598r215,0r-295,308r-138,0xm964,-1598r215,0r-295,308r-138,0","w":1341},"\u0154":{"d":"187,-1471r293,0v163,0,274,7,332,20v165,36,301,174,295,371v-9,283,-194,400,-508,396r529,684r-182,0r-528,-684r-84,0r0,684r-147,0r0,-1471xm334,-1327r0,500v150,-1,369,9,470,-26v125,-44,200,-233,110,-361v-67,-96,-140,-113,-321,-113r-259,0xm725,-1895r215,0r-295,308r-138,0","w":1243},"\u0155":{"d":"246,-929v83,-130,233,-246,407,-150r-73,118v-85,-38,-142,-17,-209,39v-44,37,-76,97,-99,178v-36,123,-24,531,-26,744r-143,0r0,-1088r143,0r0,159xm422,-1598r215,0r-295,308r-138,0","w":616},"\u0158":{"d":"187,-1471r293,0v163,0,274,7,332,20v165,36,301,174,295,371v-9,283,-194,400,-508,396r529,684r-182,0r-528,-684r-84,0r0,684r-147,0r0,-1471xm334,-1327r0,500v150,-1,369,9,470,-26v125,-44,200,-233,110,-361v-67,-96,-140,-113,-321,-113r-259,0xm653,-1582r-139,0r-290,-257r180,0r177,152r183,-152r186,0","w":1243},"\u0159":{"d":"246,-929v83,-130,233,-246,407,-150r-73,118v-85,-38,-142,-17,-209,39v-44,37,-76,97,-99,178v-36,123,-24,531,-26,744r-143,0r0,-1088r143,0r0,159xm398,-1285r-139,0r-290,-257r180,0r177,152r183,-152r186,0","w":616},"\u015a":{"d":"888,-359v0,213,-198,405,-417,396v-233,-10,-341,-127,-444,-311r125,-75v88,162,190,243,305,243v152,0,272,-99,272,-250v0,-49,-17,-98,-50,-145v-46,-65,-130,-144,-252,-236v-123,-93,-199,-160,-229,-201v-52,-70,-78,-144,-78,-225v0,-208,150,-345,357,-345v197,0,275,95,386,241r-120,91v-92,-113,-124,-171,-269,-180v-146,-9,-254,143,-182,280v62,119,97,120,263,245v126,96,215,178,262,251v47,73,71,147,71,221xm552,-1895r215,0r-295,308r-138,0","w":1020},"\u015b":{"d":"103,-828v0,-164,132,-288,298,-288v100,0,201,49,302,147r-90,93v-75,-73,-148,-109,-219,-109v-128,0,-220,149,-125,251v29,31,83,71,168,115v104,54,175,106,212,156v37,50,55,108,55,171v0,177,-148,324,-329,320v-139,-3,-256,-68,-321,-154r88,-100v71,81,147,121,227,121v148,0,267,-167,163,-288v-26,-31,-85,-69,-176,-116v-98,-51,-165,-101,-200,-150v-35,-49,-53,-106,-53,-169xm402,-1598r215,0r-295,308r-138,0","w":795},"\u0162":{"d":"33,-1328r0,-143r807,0r0,143r-328,0r0,1328r-150,0r0,-1328r-329,0xm471,427r-65,-27v21,-48,33,-90,35,-125r-83,0r0,-154r157,0v3,122,-9,242,-44,306","w":872},"\u0163":{"d":"278,-1492r141,0r0,404r222,0r0,120r-222,0r0,968r-141,0r0,-968r-191,0r0,-120r191,0r0,-404xm382,427r-65,-27v21,-48,33,-90,34,-125r-82,0r0,-154r156,0v3,121,-9,242,-43,306","w":694},"\u0164":{"d":"33,-1328r0,-143r807,0r0,143r-328,0r0,1328r-150,0r0,-1328r-329,0xm520,-1578r-139,0r-290,-257r180,0r177,152r183,-152r186,0","w":872},"\u0165":{"d":"592,-1163r-59,-26v35,-55,54,-107,56,-155r-68,0r0,-164r138,0v0,74,3,182,-11,232v-7,30,-26,68,-56,113xm278,-1492r141,0r0,404r222,0r0,120r-222,0r0,968r-141,0r0,-968r-191,0r0,-120r191,0r0,-404","w":694},"\u016e":{"d":"184,-1471r147,0r0,888v1,200,-5,240,57,343v65,106,277,181,430,106v88,-44,150,-115,178,-219v10,-37,15,-114,15,-230r0,-888r147,0r0,888v-3,271,-39,406,-192,530v-151,122,-428,113,-585,5v-84,-58,-141,-132,-170,-225v-18,-57,-27,-161,-27,-310r0,-888xm420,-1775v0,-115,98,-214,213,-214v115,0,213,99,213,214v0,115,-98,213,-213,213v-114,0,-213,-99,-213,-213xm741,-1778v0,-58,-51,-110,-109,-110v-59,0,-110,51,-110,110v0,59,51,110,110,110v58,0,109,-52,109,-110","w":1341},"\u016f":{"d":"138,-1088r141,0v5,233,-22,584,20,764v30,129,156,216,316,216v157,0,279,-85,311,-205v44,-165,15,-549,21,-775r143,0r0,534v0,279,-53,415,-210,518v-132,86,-398,86,-530,0v-159,-104,-212,-243,-212,-528r0,-524xm371,-1477v0,-115,98,-214,213,-214v115,0,213,99,213,214v0,115,-98,213,-213,213v-114,0,-213,-99,-213,-213xm692,-1480v0,-58,-51,-110,-109,-110v-59,0,-110,51,-110,110v0,59,51,110,110,110v58,0,109,-52,109,-110","w":1245},"\u0170":{"d":"184,-1471r147,0r0,888v1,200,-5,240,57,343v65,106,277,181,430,106v88,-44,150,-115,178,-219v10,-37,15,-114,15,-230r0,-888r147,0r0,888v-3,271,-39,406,-192,530v-151,122,-428,113,-585,5v-84,-58,-141,-132,-170,-225v-18,-57,-27,-161,-27,-310r0,-888xm648,-1896r215,0r-295,308r-138,0xm964,-1896r215,0r-295,308r-138,0","w":1341},"\u0171":{"d":"138,-1088r141,0v5,233,-22,584,20,764v30,129,156,216,316,216v157,0,279,-85,311,-205v44,-165,15,-549,21,-775r143,0r0,534v0,279,-53,415,-210,518v-132,86,-398,86,-530,0v-159,-104,-212,-243,-212,-528r0,-524xm599,-1598r215,0r-295,308r-138,0xm915,-1598r215,0r-295,308r-138,0","w":1245},"\u0179":{"d":"122,-1329r0,-142r776,0r-615,1328r584,0r0,143r-811,0r619,-1329r-553,0xm527,-1895r215,0r-295,308r-138,0","w":983},"\u017a":{"d":"67,-1088r799,0r-616,964r596,0r0,124r-837,0r616,-965r-558,0r0,-123xm532,-1598r215,0r-295,308r-138,0","w":870},"\u017b":{"d":"122,-1329r0,-142r776,0r-615,1328r584,0r0,143r-811,0r619,-1329r-553,0xm337,-1699v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":983},"\u017c":{"d":"67,-1088r799,0r-616,964r596,0r0,124r-837,0r616,-965r-558,0r0,-123xm287,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":870},"\uf100":{"d":"177,-1467r889,0r0,174r-695,0r0,1293r-194,0r0,-1467","w":1111},"\uf101":{"d":"115,-734v-2,-446,217,-772,658,-769v423,3,646,321,642,772v-4,445,-203,771,-639,771v-304,0,-474,-131,-578,-348v-56,-116,-83,-258,-83,-426xm773,-1345v-323,0,-452,243,-452,608v0,272,61,442,204,550v63,47,143,69,236,69v141,0,251,-50,330,-150v79,-100,119,-258,119,-477v0,-189,-39,-335,-116,-441v-77,-106,-184,-159,-321,-159xm492,-829r547,0r0,167r-547,0r0,-167","w":1530},"\uf102":{"d":"115,-724v0,-392,226,-573,646,-585r0,-194r194,0r0,194v429,15,643,210,643,585v0,377,-214,572,-643,587r0,312r-194,0r0,-312v-431,-15,-646,-211,-646,-587xm761,-1155v-291,3,-436,147,-436,432v0,273,145,417,436,434r0,-866xm955,-1155r0,866v290,-5,435,-150,435,-435v0,-282,-145,-426,-435,-431","w":1713},"\uf103":{"d":"104,-507v0,-327,172,-573,482,-573v163,0,283,66,361,197r44,-180r195,0v-98,355,-95,727,13,1063r-202,0v-21,-75,-36,-139,-45,-192v-91,147,-215,220,-372,220v-301,0,-476,-240,-476,-535xm927,-531v-1,-231,-84,-413,-307,-411v-217,2,-306,180,-306,421v0,225,94,411,306,411v221,0,308,-171,307,-421","w":1287},"\uf104":{"d":"632,28v-307,0,-528,-213,-528,-513v0,-204,105,-336,234,-409v92,-52,189,-68,314,-48v-106,-82,-175,-149,-208,-202v-33,-53,-50,-107,-50,-163v-2,-253,365,-288,603,-218r0,132v-82,-13,-144,-20,-187,-20v-109,-2,-211,37,-211,126v0,99,63,124,146,192v160,131,274,236,333,325v59,89,88,186,88,290v0,296,-217,508,-534,508xm956,-475v-3,-203,-104,-366,-315,-366v-214,0,-329,147,-329,364v0,216,118,371,325,369v199,-2,322,-147,319,-367","w":1270},"\uf105":{"d":"315,-469v12,232,184,347,458,347v64,0,121,-5,170,-16r0,150v-455,75,-847,-100,-839,-535v6,-343,234,-557,610,-557v67,0,139,5,216,14r0,147r-206,-11v-244,0,-380,107,-407,320r605,0r0,141r-607,0","w":1047},"\uf106":{"d":"608,-1080v64,0,187,16,288,16r463,0r0,152r-340,0v95,91,142,218,142,383v0,332,-194,557,-526,557v-330,0,-531,-220,-531,-556v0,-324,198,-552,504,-552xm954,-537v-1,-228,-88,-418,-314,-418v-220,0,-330,148,-330,443v-1,226,100,406,320,404v236,-1,324,-179,324,-429","w":1398},"\uf107":{"d":"41,-1063r900,0r0,160r-353,0r0,903r-194,0r0,-903r-353,0r0,-160","w":981},"\uf108":{"d":"104,-537v0,-368,239,-525,594,-540r0,-255r188,0r0,257v348,5,594,178,590,530v-3,254,-74,382,-250,479v-94,51,-208,78,-342,81r0,372r-190,0r0,-373v-164,-1,-303,-44,-418,-130v-115,-86,-172,-226,-172,-421xm696,-941v-261,5,-381,144,-381,407v0,273,127,411,381,412r0,-819xm886,-941r0,819v253,-2,380,-140,380,-414v0,-267,-127,-402,-380,-405","w":1580},"\u2017":{"d":"-12,146r1048,0r0,103r-1048,0r0,-103xm-12,323r1048,0r0,103r-1048,0r0,-103","w":1024},"\u2032":{"d":"232,-1045r-103,0r43,-463r148,0","w":405},"\u2033":{"d":"540,-1045r-104,0r44,-463r148,0xm152,-1045r-104,0r43,-463r148,0","w":633},"\u203c":{"d":"373,-1508r0,1140r-145,0r0,-1140r145,0xm855,-1508r0,1140r-144,0r0,-1140r144,0xm179,-96v0,-68,58,-124,123,-124v65,0,123,56,123,124v0,67,-57,124,-123,124v-65,0,-123,-58,-123,-124xm662,-96v0,-67,56,-124,123,-124v66,0,123,57,123,124v0,67,-57,124,-123,124v-66,0,-123,-58,-123,-124","w":1087},"\u207f":{"d":"76,-1256r115,0r0,97v88,-116,246,-157,363,-66v86,67,99,144,99,300r0,350r-115,0r0,-326v-3,-124,4,-183,-56,-235v-57,-50,-157,-38,-212,16v-77,75,-79,132,-79,292r0,253r-115,0r0,-681","w":729},"\u20a7":{"d":"1793,-105v99,0,201,-78,201,-181v0,-43,-14,-79,-42,-110v-28,-31,-85,-68,-172,-113v-89,-47,-154,-95,-194,-141v-68,-77,-79,-219,-25,-318r-248,0r0,968r-141,0r0,-968r-90,0v-41,149,-140,232,-294,264v-80,17,-303,22,-463,20r0,684r-147,0r0,-1471v197,1,517,-5,644,25v144,34,278,174,275,358r75,0r0,-404r141,0r0,404r380,0v174,-67,298,-10,434,119r-90,93v-72,-73,-145,-109,-219,-109v-80,0,-165,66,-165,150v0,34,13,67,38,99v25,32,82,72,170,117v94,49,162,97,204,145v42,48,63,109,63,182v1,172,-143,320,-330,320v-140,0,-257,-72,-320,-154r88,-100v71,81,147,121,227,121xm325,-1328r0,500v147,2,228,3,245,3v194,-1,279,-24,342,-128v82,-137,-3,-314,-115,-350v-100,-33,-324,-22,-472,-25","w":2219},"\u2105":{"d":"46,-1145v-3,-198,151,-363,350,-363v132,0,230,57,294,172r-94,53v-48,-79,-116,-118,-204,-118v-135,0,-230,122,-230,249v0,133,96,254,230,254v85,0,153,-39,205,-118r93,56v-67,111,-168,166,-301,166v-205,0,-340,-170,-343,-351xm373,37r924,-1545r111,0r-925,1545r-110,0xm1092,-339v0,-185,138,-359,322,-359v185,0,323,175,323,359v0,184,-137,356,-323,356v-183,0,-322,-171,-322,-356xm1620,-337v0,-125,-89,-250,-206,-250v-115,0,-205,126,-205,250v0,127,85,246,205,246v121,0,206,-119,206,-246","w":1783},"\u2113":{"d":"417,24v-140,0,-199,-89,-199,-241r0,-225r-79,98r-98,-78r177,-235r0,-455v0,-148,20,-248,60,-300v40,-52,97,-79,171,-79v137,0,223,107,223,235v0,64,-20,141,-61,230v-41,89,-115,210,-224,361r0,415v3,85,-4,132,56,132v35,0,101,-36,199,-107r0,162v-69,58,-144,87,-225,87xm505,-1122v38,-86,48,-249,-49,-249v-28,0,-47,17,-56,51v-20,78,-11,300,-13,421v61,-105,99,-179,118,-223","w":734},"\u2190":{"d":"492,-876r76,0v-54,113,-119,216,-195,309r1595,0r0,101r-1595,0v68,68,134,171,198,309r-78,0v-149,-169,-287,-282,-414,-341r0,-45v118,-47,256,-158,413,-333","w":2048},"\u2191":{"d":"153,-1050v175,-157,286,-295,333,-413r46,0v58,128,171,266,340,415r0,77v-138,-64,-241,-130,-309,-197r0,1597r-101,0r0,-1597v-93,76,-196,141,-309,195r0,-77","w":1024},"\u2192":{"d":"1555,-876v158,175,296,286,413,333r0,45v-127,59,-265,172,-414,341r-77,0v63,-138,129,-241,197,-309r-1595,0r0,-101r1595,0v-76,-93,-141,-196,-195,-309r76,0","w":2048},"\u2193":{"d":"153,16r0,-76v113,54,216,119,309,195r0,-1598r101,0r0,1598v68,-68,171,-134,309,-197r0,77v-169,149,-282,287,-340,414r-46,0v-47,-117,-158,-255,-333,-413","w":1024},"\u2194":{"d":"1968,-540r0,45v-121,53,-256,165,-406,337r-80,0v46,-115,111,-218,194,-311r-1305,0v83,93,148,196,194,311r-80,0v-149,-172,-285,-284,-406,-337r0,-45v121,-53,257,-165,406,-338r80,0v-46,115,-111,218,-194,311r1305,0v-83,-93,-148,-196,-194,-311r80,0v150,173,285,285,406,338","w":2048},"\u2195":{"d":"489,-1463r45,0v53,121,165,257,337,407r0,80v-114,-46,-218,-111,-311,-195r0,1306v93,-84,197,-149,311,-194r0,79v-172,150,-284,286,-337,407r-45,0v-53,-121,-165,-257,-337,-407r0,-79v114,45,218,110,311,194r0,-1306v-93,84,-197,149,-311,195r0,-80v172,-150,284,-286,337,-407","w":1024},"\u21a8":{"d":"489,-1463r45,0v53,121,165,257,337,407r0,80v-114,-46,-218,-111,-311,-195r0,1306v93,-84,197,-149,311,-194r0,79v-172,150,-284,286,-337,407r-45,0v-53,-121,-165,-257,-337,-407r0,-79v114,45,218,110,311,194r0,-1306v-93,84,-197,149,-311,195r0,-80v172,-150,284,-286,337,-407xm154,522r717,0r0,98r-717,0r0,-98","w":1024},"\u221f":{"d":"362,-1279r100,0r0,1179r1181,0r0,100r-1281,0r0,-1279","w":2005},"\u2229":{"d":"239,0r-110,0r2,-859v-4,-310,110,-512,323,-603v228,-98,460,56,539,212v97,191,85,296,85,629r0,621r-110,0r0,-628v-5,-276,11,-376,-62,-538v-45,-99,-170,-195,-303,-195v-209,0,-337,169,-353,381v-19,247,-8,687,-11,980","w":1206},"\u2261":{"d":"1127,-1205r0,137r-1012,0r0,-137r1012,0xm115,-804r1012,0r0,137r-1012,0r0,-137xm1127,-403r0,137r-1012,0r0,-137r1012,0","w":1241},"\u25a1":{"d":"146,-944r944,0r0,944r-944,0r0,-944xm222,-868r0,792r792,0r0,-792r-792,0","w":1237},"\u25aa":{"d":"594,-909r0,464r-463,0r0,-463","w":726},"\u25ab":{"d":"594,-909r0,464r-463,0r0,-463xm518,-833r-311,1r0,311r311,0r0,-312","w":726},"\u25cf":{"d":"178,-578v0,-242,206,-440,441,-440v235,0,440,204,440,440v0,236,-204,441,-440,441v-236,0,-441,-205,-441,-441","w":1237},"\u25e6":{"d":"112,-677v0,-135,117,-251,251,-251v133,0,251,114,251,251v0,135,-116,251,-251,251v-135,0,-251,-116,-251,-251xm538,-677v0,-95,-82,-175,-175,-175v-94,0,-175,79,-175,175v0,94,81,175,175,175v94,0,175,-81,175,-175","w":726},"\uf004":{"d":"326,121r122,57r-183,340r-89,-38","w":682},"\u0100":{"d":"780,-1471r686,1471r-158,0r-231,-484r-634,0r-230,484r-164,0r695,-1471r36,0xm762,-1159r-253,533r503,0xm412,-1776r690,0r0,119r-690,0r0,-119","w":1515},"\u0101":{"d":"669,-1116v206,5,337,94,433,228r0,-200r138,0r0,1088r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1111,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438xm355,-1479r690,0r0,119r-690,0r0,-119","w":1399},"\u0108":{"d":"111,-744v0,-428,358,-772,794,-764v294,5,516,129,644,310r-116,89v-114,-150,-284,-254,-526,-254v-253,0,-462,139,-559,311v-54,96,-82,202,-82,321v0,356,289,629,650,629v206,0,378,-81,517,-242r116,88v-135,173,-350,287,-642,293v-457,9,-796,-329,-796,-781xm806,-1840r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1665},"\u0109":{"d":"703,28v-327,6,-602,-248,-598,-563v3,-233,134,-416,298,-505v147,-79,344,-100,519,-43v134,44,223,110,290,221r-111,69v-96,-127,-227,-191,-393,-191v-253,0,-469,194,-462,439v7,263,191,445,463,445v160,0,291,-64,392,-191r111,73v-97,147,-274,242,-509,246xm598,-1542r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1325},"\u010a":{"d":"111,-744v0,-428,358,-772,794,-764v294,5,516,129,644,310r-116,89v-114,-150,-284,-254,-526,-254v-253,0,-462,139,-559,311v-54,96,-82,202,-82,321v0,356,289,629,650,629v206,0,378,-81,517,-242r116,88v-135,173,-350,287,-642,293v-457,9,-796,-329,-796,-781xm762,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1665},"\u010b":{"d":"703,28v-327,6,-602,-248,-598,-563v3,-233,134,-416,298,-505v147,-79,344,-100,519,-43v134,44,223,110,290,221r-111,69v-96,-127,-227,-191,-393,-191v-253,0,-469,194,-462,439v7,263,191,445,463,445v160,0,291,-64,392,-191r111,73v-97,147,-274,242,-509,246xm567,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1325},"\u0112":{"d":"180,-1471r843,0r0,145r-696,0r0,460r690,0r0,144r-690,0r0,577r690,0r0,145r-837,0r0,-1471xm252,-1776r690,0r0,119r-690,0r0,-119","w":1098},"\u0113":{"d":"248,-533v-5,295,272,518,572,404v129,-49,175,-106,252,-232r118,62v-101,193,-244,327,-520,327v-177,0,-316,-58,-416,-174v-100,-116,-150,-248,-150,-395v0,-312,248,-575,558,-575v317,0,567,244,564,583r-978,0xm1072,-654v-37,-147,-101,-230,-223,-287v-158,-74,-343,-46,-460,62v-55,51,-98,125,-127,225r810,0xm320,-1479r690,0r0,119r-690,0r0,-119","w":1331},"\u0114":{"d":"180,-1471r843,0r0,145r-696,0r0,460r690,0r0,144r-690,0r0,577r690,0r0,145r-837,0r0,-1471xm904,-1823v-34,130,-172,211,-351,211v-181,0,-320,-80,-358,-211r132,0v44,67,118,104,227,104v119,0,165,-32,222,-104r128,0","w":1098},"\u0115":{"d":"248,-533v-5,295,272,518,572,404v129,-49,175,-106,252,-232r118,62v-101,193,-244,327,-520,327v-177,0,-316,-58,-416,-174v-100,-116,-150,-248,-150,-395v0,-312,248,-575,558,-575v317,0,567,244,564,583r-978,0xm1072,-654v-37,-147,-101,-230,-223,-287v-158,-74,-343,-46,-460,62v-55,51,-98,125,-127,225r810,0xm1020,-1525v-34,130,-172,211,-351,211v-181,0,-320,-80,-358,-211r132,0v44,67,118,104,227,104v119,0,165,-32,222,-104r128,0","w":1331},"\u0116":{"d":"180,-1471r843,0r0,145r-696,0r0,460r690,0r0,144r-690,0r0,577r690,0r0,145r-837,0r0,-1471xm486,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1098},"\u0117":{"d":"248,-533v-5,295,272,518,572,404v129,-49,175,-106,252,-232r118,62v-101,193,-244,327,-520,327v-177,0,-316,-58,-416,-174v-100,-116,-150,-248,-150,-395v0,-312,248,-575,558,-575v317,0,567,244,564,583r-978,0xm1072,-654v-37,-147,-101,-230,-223,-287v-158,-74,-343,-46,-460,62v-55,51,-98,125,-127,225r810,0xm549,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1331},"\u011c":{"d":"1685,-705v3,446,-293,742,-739,742v-272,0,-485,-95,-646,-278v-207,-237,-243,-598,-78,-884v128,-221,372,-383,702,-383v304,0,494,114,674,284r-114,108v-135,-135,-324,-246,-555,-246v-368,0,-658,256,-658,623v0,376,291,629,679,636v300,5,537,-195,570,-460r-469,0r0,-142r634,0xm835,-1840r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1786},"\u011d":{"d":"662,-1116v204,0,321,87,431,217r0,-189r141,0r0,867v0,153,-14,264,-40,335v-70,194,-259,316,-518,312v-301,-5,-467,-115,-562,-340r152,0v79,137,197,210,403,212v180,2,321,-77,382,-188v32,-58,45,-191,42,-317v-92,119,-242,207,-435,207v-322,0,-558,-225,-558,-552v0,-224,125,-401,282,-488v89,-50,182,-76,280,-76xm1100,-553v-3,-256,-172,-428,-420,-428v-256,0,-433,181,-439,436v-5,239,186,413,431,413v252,0,431,-171,428,-421xm600,-1542r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1378},"\u0120":{"d":"1685,-705v3,446,-293,742,-739,742v-272,0,-485,-95,-646,-278v-207,-237,-243,-598,-78,-884v128,-221,372,-383,702,-383v304,0,494,114,674,284r-114,108v-135,-135,-324,-246,-555,-246v-368,0,-658,256,-658,623v0,376,291,629,679,636v300,5,537,-195,570,-460r-469,0r0,-142r634,0xm797,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1786},"\u0121":{"d":"662,-1116v204,0,321,87,431,217r0,-189r141,0r0,867v0,153,-14,264,-40,335v-70,194,-259,316,-518,312v-301,-5,-467,-115,-562,-340r152,0v79,137,197,210,403,212v180,2,321,-77,382,-188v32,-58,45,-191,42,-317v-92,119,-242,207,-435,207v-322,0,-558,-225,-558,-552v0,-224,125,-401,282,-488v89,-50,182,-76,280,-76xm1100,-553v-3,-256,-172,-428,-420,-428v-256,0,-433,181,-439,436v-5,239,186,413,431,413v252,0,431,-171,428,-421xm576,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1378},"\u0122":{"d":"1685,-705v3,446,-293,742,-739,742v-272,0,-485,-95,-646,-278v-207,-237,-243,-598,-78,-884v128,-221,372,-383,702,-383v304,0,494,114,674,284r-114,108v-135,-135,-324,-246,-555,-246v-368,0,-658,256,-658,623v0,376,291,629,679,636v300,5,537,-195,570,-460r-469,0r0,-142r634,0xm977,236v-10,-51,-71,-48,-132,-34r27,-202r88,0r-17,118v85,-17,153,30,153,104v0,103,-106,158,-229,158v-59,0,-115,-10,-167,-30r22,-69v86,27,242,41,255,-45","w":1786},"\u0123":{"d":"662,-1116v204,0,321,87,431,217r0,-189r141,0r0,867v0,153,-14,264,-40,335v-70,194,-259,316,-518,312v-301,-5,-467,-115,-562,-340r152,0v79,137,197,210,403,212v180,2,321,-77,382,-188v32,-58,45,-191,42,-317v-92,119,-242,207,-435,207v-322,0,-558,-225,-558,-552v0,-224,125,-401,282,-488v89,-50,182,-76,280,-76xm1100,-553v-3,-256,-172,-428,-420,-428v-256,0,-433,181,-439,436v-5,239,186,413,431,413v252,0,431,-171,428,-421xm679,-1818r78,44v-46,95,-58,118,-71,230r89,0r0,275r-181,0v1,-122,-4,-289,18,-375v12,-49,34,-107,67,-174","w":1378},"\u0124":{"d":"177,-1471r148,0r0,617r748,0r0,-617r148,0r0,1471r-148,0r0,-710r-748,0r0,710r-148,0r0,-1471xm633,-1840r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1399},"\u0125":{"d":"296,-893v97,-127,215,-220,408,-223v173,-3,302,100,356,228v29,70,45,179,45,328r0,560r-140,0r0,-519v0,-125,-5,-209,-15,-251v-32,-135,-116,-216,-274,-217v-178,-1,-326,142,-360,292v-31,141,-17,493,-20,695r-140,0r0,-1508r140,0r0,615xm558,-1840r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1249},"\u0126":{"d":"326,-1239r747,0r0,-232r148,0r0,232r133,0r0,138r-133,0r0,1101r-148,0r0,-710r-747,0r0,710r-148,0r0,-1101r-133,0r0,-138r133,0r0,-232r148,0r0,232xm326,-1101r0,247r747,0r0,-247r-747,0","w":1399},"\u0127":{"d":"296,-1356r374,0r0,116r-374,0r0,347v113,-149,248,-223,407,-223v185,0,334,123,371,262v57,213,23,581,31,854r-140,0v-5,-246,19,-597,-21,-793v-23,-114,-123,-197,-268,-194v-205,3,-329,147,-364,315v-31,148,-13,474,-16,672r-140,0r0,-1240r-152,0r0,-116r152,0r0,-152r140,0r0,152","w":1249},"\u0128":{"d":"158,-1471r147,0r0,1471r-147,0r0,-1471xm90,-1816v74,0,220,79,287,79v37,0,87,-18,151,-53r70,97v-105,85,-233,118,-374,51v-70,-33,-69,-44,-135,-44v-77,0,-93,25,-158,69r-66,-102v61,-65,136,-97,225,-97","w":463},"\u0129":{"d":"135,-1088r141,0r0,1088r-141,0r0,-1088xm63,-1518v74,0,220,79,287,79v37,0,87,-18,151,-53r70,97v-105,85,-233,118,-374,51v-70,-33,-69,-44,-135,-44v-77,0,-93,25,-158,69r-66,-102v61,-65,136,-97,225,-97","w":410},"\u012a":{"d":"158,-1471r147,0r0,1471r-147,0r0,-1471xm-113,-1776r690,0r0,119r-690,0r0,-119","w":463},"\u012b":{"d":"135,-1088r141,0r0,1088r-141,0r0,-1088xm-140,-1479r690,0r0,119r-690,0r0,-119","w":410},"\u012c":{"d":"158,-1471r147,0r0,1471r-147,0r0,-1471xm586,-1823v-34,130,-172,211,-351,211v-181,0,-320,-80,-358,-211r132,0v44,67,118,104,227,104v119,0,165,-32,222,-104r128,0","w":463},"\u012d":{"d":"135,-1088r141,0r0,1088r-141,0r0,-1088xm560,-1525v-34,130,-172,211,-351,211v-181,0,-320,-80,-358,-211r132,0v44,67,118,104,227,104v119,0,165,-32,222,-104r128,0","w":410},"\u012e":{"d":"158,-1471r147,0r0,1471r-147,0r0,-1471xm390,383v-155,39,-314,-29,-313,-170v0,-87,40,-158,119,-213r109,0v-81,69,-121,133,-121,193v0,94,107,126,215,105","w":463},"\u012f":{"d":"90,-1420v0,-62,54,-116,115,-116v62,0,116,54,116,116v0,61,-54,115,-116,115v-61,0,-115,-54,-115,-115xm135,-1088r141,0r0,1088r-141,0r0,-1088xm361,383v-155,39,-314,-29,-313,-170v0,-87,40,-158,119,-213r109,0v-81,69,-121,133,-121,193v0,94,107,126,215,105","w":410},"\u0134":{"d":"164,-236v115,73,160,136,289,136v91,0,164,-64,187,-139v13,-42,20,-123,20,-244r0,-988r148,0r0,993v-3,269,-16,365,-154,462v-97,68,-254,69,-376,18v-58,-23,-122,-63,-192,-121xm559,-1840r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":987},"\u0135":{"d":"142,-1542r139,0r290,257r-180,0r-176,-152r-184,152r-186,0xm139,-1088r142,0r0,1252v0,175,-62,262,-185,262v-49,0,-103,-11,-160,-34r0,-126v73,48,179,35,196,-40v5,-18,7,-53,7,-103r0,-1211","w":416},"\u0136":{"d":"179,-1471r150,0r0,552r587,-552r199,0r-707,660r762,811r-195,0r-646,-686r0,686r-150,0r0,-1471xm746,222v0,154,-216,188,-375,136r22,-71v93,25,234,21,234,-51v0,-51,-91,-50,-145,-30r12,-79v31,-10,62,-15,95,-15v105,0,157,37,157,110","w":1210},"\u0137":{"d":"155,-1508r141,0r0,858r503,-438r206,0r-597,519r632,569r-198,0r-546,-489r0,489r-141,0r0,-1508xm671,222v0,154,-216,188,-375,136r22,-71v93,25,234,21,234,-51v0,-51,-91,-50,-145,-30r12,-79v31,-10,62,-15,95,-15v105,0,157,37,157,110","w":1028},"\u0138":{"d":"155,-1088r141,0r0,438r503,-438r206,0r-597,519r632,569r-198,0r-546,-489r0,489r-141,0r0,-1088","w":1028},"\u013b":{"d":"179,-1471r148,0r0,1329r565,0r0,142r-713,0r0,-1471xm660,222v0,154,-216,188,-375,136r22,-71v93,25,234,21,234,-51v0,-51,-91,-50,-145,-30r12,-79v31,-10,62,-15,95,-15v105,0,157,37,157,110","w":946},"\u013c":{"d":"135,-1508r140,0r0,1508r-140,0r0,-1508xm358,222v0,154,-216,188,-375,136r22,-71v93,25,234,21,234,-51v0,-51,-91,-50,-145,-30r12,-79v31,-10,62,-15,95,-15v105,0,157,37,157,110","w":410},"\u0145":{"d":"180,0r0,-1471r32,0r978,1126r0,-1126r145,0r0,1471r-33,0r-970,-1112r0,1112r-152,0xm910,222v0,154,-216,188,-375,136r22,-71v93,25,234,21,234,-51v0,-51,-91,-50,-145,-30r12,-79v31,-10,62,-15,95,-15v105,0,157,37,157,110","w":1515},"\u0146":{"d":"296,-893v96,-128,214,-223,408,-223v173,0,303,101,356,229v29,70,45,179,45,327r0,560r-139,0r0,-519v0,-125,-6,-209,-16,-251v-32,-135,-116,-216,-274,-217v-178,-1,-326,142,-360,292v-32,142,-17,493,-20,695r-140,0r0,-1088r140,0r0,195xm778,222v0,154,-216,188,-375,136r22,-71v93,25,234,21,234,-51v0,-51,-91,-50,-145,-30r12,-79v31,-10,62,-15,95,-15v105,0,157,37,157,110","w":1249},"\u014a":{"d":"805,-1508v402,0,671,367,671,781v0,224,-59,405,-167,550v-194,261,-585,297,-780,26r105,-91v69,93,156,140,262,140v123,0,226,-61,306,-184v80,-123,120,-274,120,-453v0,-337,-223,-632,-538,-630v-202,1,-367,123,-458,250r0,1119r-148,0r0,-1471r148,0r0,178v131,-143,291,-215,479,-215","w":1591},"\u014b":{"d":"1105,-560r0,724v0,175,-62,262,-187,262v-48,0,-100,-11,-157,-34r0,-126v73,48,180,35,197,-40v5,-18,8,-53,8,-103r0,-642v-4,-225,0,-319,-110,-413v-83,-71,-252,-70,-352,-11v-91,54,-171,158,-192,271v-27,149,-13,474,-16,672r-140,0r0,-1088r140,0r0,195v112,-149,248,-223,407,-223v185,0,329,123,370,261v21,71,32,169,32,295","w":1249},"\u014c":{"d":"892,37v-421,0,-784,-350,-777,-766v5,-309,170,-557,382,-677v119,-67,246,-102,383,-102v432,0,784,344,784,772v0,420,-352,773,-772,773xm268,-729v0,338,285,629,619,623v249,-4,446,-139,543,-310v105,-187,106,-450,0,-636v-96,-167,-300,-312,-543,-312v-241,0,-444,145,-537,314v-53,97,-82,203,-82,321xm545,-1777r690,0r0,119r-690,0r0,-119","w":1780},"\u014d":{"d":"104,-541v0,-311,257,-575,567,-575v311,0,566,264,566,575v0,303,-249,569,-566,569v-318,0,-567,-265,-567,-569xm1095,-538v8,-233,-196,-441,-424,-441v-229,0,-432,208,-424,441v8,250,171,433,424,433v252,0,416,-183,424,-433xm326,-1479r690,0r0,119r-690,0r0,-119","w":1341},"\u014e":{"d":"892,37v-421,0,-784,-350,-777,-766v5,-309,170,-557,382,-677v119,-67,246,-102,383,-102v432,0,784,344,784,772v0,420,-352,773,-772,773xm268,-729v0,338,285,629,619,623v249,-4,446,-139,543,-310v105,-187,106,-450,0,-636v-96,-167,-300,-312,-543,-312v-241,0,-444,145,-537,314v-53,97,-82,203,-82,321xm1244,-1823v-34,130,-172,211,-351,211v-181,0,-320,-80,-358,-211r132,0v44,67,118,104,227,104v119,0,165,-32,222,-104r128,0","w":1780},"\u014f":{"d":"104,-541v0,-311,257,-575,567,-575v311,0,566,264,566,575v0,303,-249,569,-566,569v-318,0,-567,-265,-567,-569xm1095,-538v8,-233,-196,-441,-424,-441v-229,0,-432,208,-424,441v8,250,171,433,424,433v252,0,416,-183,424,-433xm1025,-1525v-34,130,-172,211,-351,211v-181,0,-320,-80,-358,-211r132,0v44,67,118,104,227,104v119,0,165,-32,222,-104r128,0","w":1341},"\u0156":{"d":"187,-1471r293,0v163,0,274,7,332,20v165,36,301,174,295,371v-9,283,-194,400,-508,396r529,684r-182,0r-528,-684r-84,0r0,684r-147,0r0,-1471xm334,-1327r0,500v150,-1,369,9,470,-26v125,-44,200,-233,110,-361v-67,-96,-140,-113,-321,-113r-259,0xm756,222v0,154,-216,188,-375,136r22,-71v93,25,234,21,234,-51v0,-51,-91,-50,-145,-30r12,-79v31,-10,62,-15,95,-15v105,0,157,37,157,110","w":1243},"\u0157":{"d":"246,-929v83,-130,233,-246,407,-150r-73,118v-85,-38,-142,-17,-209,39v-44,37,-76,97,-99,178v-36,123,-24,531,-26,744r-143,0r0,-1088r143,0r0,159xm448,222v0,154,-216,188,-375,136r22,-71v93,25,234,21,234,-51v0,-51,-91,-50,-145,-30r12,-79v31,-10,62,-15,95,-15v105,0,157,37,157,110","w":616},"\u015c":{"d":"888,-359v0,213,-198,405,-417,396v-233,-10,-341,-127,-444,-311r125,-75v88,162,190,243,305,243v152,0,272,-99,272,-250v0,-49,-17,-98,-50,-145v-46,-65,-130,-144,-252,-236v-123,-93,-199,-160,-229,-201v-52,-70,-78,-144,-78,-225v0,-208,150,-345,357,-345v197,0,275,95,386,241r-120,91v-92,-113,-124,-171,-269,-180v-146,-9,-254,143,-182,280v62,119,97,120,263,245v126,96,215,178,262,251v47,73,71,147,71,221xm444,-1840r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1020},"\u015d":{"d":"103,-828v0,-164,132,-288,298,-288v100,0,201,49,302,147r-90,93v-75,-73,-148,-109,-219,-109v-128,0,-220,149,-125,251v29,31,83,71,168,115v104,54,175,106,212,156v37,50,55,108,55,171v0,177,-148,324,-329,320v-139,-3,-256,-68,-321,-154r88,-100v71,81,147,121,227,121v148,0,267,-167,163,-288v-26,-31,-85,-69,-176,-116v-98,-51,-165,-101,-200,-150v-35,-49,-53,-106,-53,-169xm332,-1542r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":795},"\u0166":{"d":"512,-777r280,0r0,138r-280,0r0,639r-150,0r0,-639r-281,0r0,-138r281,0r0,-551r-329,0r0,-143r807,0r0,143r-328,0r0,551","w":872},"\u0167":{"d":"419,-607r246,0r0,116r-246,0r0,491r-140,0r0,-491r-216,0r0,-116r216,0r0,-361r-192,0r0,-120r192,0r0,-404r140,0r0,404r222,0r0,120r-222,0r0,361","w":694},"\u0168":{"d":"184,-1471r147,0r0,888v1,200,-5,240,57,343v65,106,277,181,430,106v88,-44,150,-115,178,-219v10,-37,15,-114,15,-230r0,-888r147,0r0,888v-3,271,-39,406,-192,530v-151,122,-428,113,-585,5v-84,-58,-141,-132,-170,-225v-18,-57,-27,-161,-27,-310r0,-888xm537,-1815v74,0,220,79,287,79v37,0,87,-18,151,-53r70,97v-105,85,-233,118,-374,51v-70,-33,-69,-44,-135,-44v-77,0,-93,25,-158,69r-66,-102v61,-65,136,-97,225,-97","w":1341},"\u0169":{"d":"138,-1088r141,0v5,233,-22,584,20,764v30,129,156,216,316,216v157,0,279,-85,311,-205v44,-165,15,-549,21,-775r143,0r0,534v0,279,-53,415,-210,518v-132,86,-398,86,-530,0v-159,-104,-212,-243,-212,-528r0,-524xm481,-1518v74,0,220,79,287,79v37,0,87,-18,151,-53r70,97v-105,85,-233,118,-374,51v-70,-33,-69,-44,-135,-44v-77,0,-93,25,-158,69r-66,-102v61,-65,136,-97,225,-97","w":1245},"\u016a":{"d":"184,-1471r147,0r0,888v1,200,-5,240,57,343v65,106,277,181,430,106v88,-44,150,-115,178,-219v10,-37,15,-114,15,-230r0,-888r147,0r0,888v-3,271,-39,406,-192,530v-151,122,-428,113,-585,5v-84,-58,-141,-132,-170,-225v-18,-57,-27,-161,-27,-310r0,-888xm325,-1777r690,0r0,119r-690,0r0,-119","w":1341},"\u016b":{"d":"138,-1088r141,0v5,233,-22,584,20,764v30,129,156,216,316,216v157,0,279,-85,311,-205v44,-165,15,-549,21,-775r143,0r0,534v0,279,-53,415,-210,518v-132,86,-398,86,-530,0v-159,-104,-212,-243,-212,-528r0,-524xm277,-1479r690,0r0,119r-690,0r0,-119","w":1245},"\u016c":{"d":"184,-1471r147,0r0,888v1,200,-5,240,57,343v65,106,277,181,430,106v88,-44,150,-115,178,-219v10,-37,15,-114,15,-230r0,-888r147,0r0,888v-3,271,-39,406,-192,530v-151,122,-428,113,-585,5v-84,-58,-141,-132,-170,-225v-18,-57,-27,-161,-27,-310r0,-888xm1025,-1823v-34,130,-172,211,-351,211v-181,0,-320,-80,-358,-211r132,0v44,67,118,104,227,104v119,0,165,-32,222,-104r128,0","w":1341},"\u016d":{"d":"138,-1088r141,0v5,233,-22,584,20,764v30,129,156,216,316,216v157,0,279,-85,311,-205v44,-165,15,-549,21,-775r143,0r0,534v0,279,-53,415,-210,518v-132,86,-398,86,-530,0v-159,-104,-212,-243,-212,-528r0,-524xm977,-1525v-34,130,-172,211,-351,211v-181,0,-320,-80,-358,-211r132,0v44,67,118,104,227,104v119,0,165,-32,222,-104r128,0","w":1245},"\u0172":{"d":"184,-1471r147,0r0,888v1,200,-5,240,57,343v65,106,277,181,430,106v88,-44,150,-115,178,-219v10,-37,15,-114,15,-230r0,-888r147,0r0,888v-3,271,-39,406,-192,530v-151,122,-428,113,-585,5v-84,-58,-141,-132,-170,-225v-18,-57,-27,-161,-27,-310r0,-888xm874,383v-155,39,-314,-29,-313,-170v0,-87,40,-158,119,-213r109,0v-81,69,-121,133,-121,193v0,94,107,126,215,105","w":1341},"\u0173":{"d":"138,-1088r141,0v5,233,-22,584,20,764v30,129,156,216,316,216v157,0,279,-85,311,-205v44,-165,15,-549,21,-775r143,0r0,534v0,279,-53,415,-210,518v-132,86,-398,86,-530,0v-159,-104,-212,-243,-212,-528r0,-524xm795,383v-155,39,-314,-29,-313,-170v0,-87,40,-158,119,-213r109,0v-81,69,-121,133,-121,193v0,94,107,126,215,105","w":1245},"\u0174":{"d":"96,-1471r151,0r299,1060r422,-1060r30,0r417,1060r305,-1060r150,0r-422,1471r-28,0r-436,-1113r-445,1113r-28,0xm917,-1840r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1966},"\u0175":{"d":"9,-1088r144,0r333,790r349,-790r25,0r348,790r339,-790r146,0r-472,1088r-27,0r-346,-779r-349,779r-26,0xm785,-1542r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1702},"\u0176":{"d":"63,-1471r170,0r376,606r370,-606r170,0r-466,768r0,703r-145,0r0,-703xm540,-1840r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1212},"\u0177":{"d":"39,-1088r148,0r374,838r363,-838r149,0r-649,1486r-148,0r210,-480xm483,-1542r139,0r290,257r-180,0r-176,-152r-184,152r-186,0","w":1098},"\u017f":{"d":"517,-1508r0,137v-75,-32,-143,-52,-205,-13v-47,30,-37,66,-37,149r0,1235r-140,0r0,-1198v5,-179,-9,-228,81,-298v77,-59,191,-46,301,-12","w":410},"\u01fa":{"d":"780,-1471r686,1471r-158,0r-231,-484r-634,0r-230,484r-164,0r695,-1471r36,0xm762,-1159r-253,533r503,0xm549,-1608v0,-115,98,-214,213,-214v115,0,213,99,213,214v0,115,-98,213,-213,213v-114,0,-213,-99,-213,-213xm870,-1611v0,-58,-51,-110,-109,-110v-59,0,-110,51,-110,110v0,59,51,110,110,110v58,0,109,-52,109,-110xm800,-2170r215,0r-295,308r-138,0","w":1515},"\u01fb":{"d":"669,-1116v206,5,337,94,433,228r0,-200r138,0r0,1088r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1111,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438xm488,-1436v0,-115,98,-214,213,-214v115,0,213,99,213,214v0,115,-98,213,-213,213v-114,0,-213,-99,-213,-213xm809,-1439v0,-58,-51,-110,-109,-110v-59,0,-110,51,-110,110v0,59,51,110,110,110v58,0,109,-52,109,-110xm745,-1998r215,0r-295,308r-138,0","w":1399},"\u01fc":{"d":"1,0r950,-1471r910,0r0,151r-693,0r0,452r693,0r0,145r-693,0r0,579r693,0r0,144r-842,0r0,-482r-535,0r-312,482r-171,0xm578,-620r441,0r0,-681xm1299,-1895r215,0r-295,308r-138,0","w":2032},"\u01fd":{"d":"677,-1116v201,0,333,91,440,226r0,-198r128,0r0,197v125,-144,211,-220,437,-225v326,-8,575,255,566,586r-979,0v16,243,171,430,427,430v203,0,313,-105,397,-257r120,60v-87,188,-271,325,-527,325v-208,0,-340,-84,-441,-222r0,194r-128,0r0,-201v-110,141,-230,223,-436,229v-304,9,-568,-268,-561,-576v5,-229,122,-402,279,-492v88,-50,180,-76,278,-76xm2093,-651v-37,-149,-101,-228,-222,-289v-190,-96,-426,-2,-512,114v-36,49,-65,105,-82,175r816,0xm1120,-542v-4,-270,-174,-439,-433,-439v-251,0,-418,181,-424,437v-5,242,190,439,429,439v239,0,431,-195,428,-437xm1252,-1598r215,0r-295,308r-138,0","w":2370},"\u01fe":{"d":"1663,-736v8,420,-352,773,-772,773v-163,0,-309,-43,-437,-128r-164,194r-107,-87r165,-194v-253,-231,-308,-625,-131,-944v121,-218,358,-386,672,-386v171,0,327,49,467,148r144,-174r105,87r-151,178v122,124,205,302,209,533xm444,-291r811,-954v-198,-142,-461,-160,-678,-34v-176,102,-310,291,-310,551v0,170,59,316,177,437xm1356,-1153r-805,949v189,126,451,129,651,15v176,-100,309,-290,309,-547v0,-163,-52,-302,-155,-417xm957,-1896r215,0r-295,308r-138,0","w":1778},"\u01ff":{"d":"102,-541v0,-303,248,-575,566,-575v134,0,251,40,351,120r116,-137r92,74r-125,146v89,107,133,231,133,372v0,303,-249,569,-566,569v-109,0,-209,-27,-299,-82r-116,137r-89,-74r114,-134v-118,-114,-177,-253,-177,-416xm669,-979v-300,0,-503,304,-391,609v20,55,51,102,89,141r560,-658v-79,-61,-165,-92,-258,-92xm668,-105v252,0,425,-182,425,-432v0,-96,-29,-184,-86,-265r-548,644v69,35,138,53,209,53xm730,-1598r215,0r-295,308r-138,0","w":1337},"\u0384":{"d":"474,-1598r-28,338r-118,0r-29,-338r175,0","w":774},"\u0385":{"d":"474,-1598r-28,338r-118,0r-29,-338r175,0xm721,-1380v0,48,-40,89,-88,89v-48,0,-89,-41,-89,-89v0,-49,41,-89,89,-89v48,0,88,41,88,89xm230,-1380v0,48,-41,89,-89,89v-48,0,-89,-41,-89,-89v0,-48,41,-89,89,-89v48,0,89,40,89,89","w":774},"\u0386":{"d":"780,-1471r686,1471r-158,0r-231,-484r-634,0r-230,484r-164,0r695,-1471r36,0xm762,-1159r-253,533r503,0xm424,-1508r-28,338r-118,0r-29,-338r175,0","w":1515},"\u0387":{"d":"310,-1116v68,0,123,56,123,124v0,68,-55,124,-123,124v-68,0,-123,-56,-123,-124v0,-68,55,-124,123,-124","w":567},"\u0388":{"d":"270,-1471r843,0r0,145r-696,0r0,460r690,0r0,144r-690,0r0,577r690,0r0,145r-837,0r0,-1471xm75,-1508r-28,338r-118,0r-29,-338r175,0","w":1188},"\u0389":{"d":"267,-1471r148,0r0,617r748,0r0,-617r148,0r0,1471r-148,0r0,-710r-748,0r0,710r-148,0r0,-1471xm75,-1508r-28,338r-118,0r-29,-338r175,0","w":1489},"\u038a":{"d":"248,-1471r147,0r0,1471r-147,0r0,-1471xm75,-1508r-28,338r-118,0r-29,-338r175,0","w":553},"\u038c":{"d":"892,37v-421,0,-784,-350,-777,-766v5,-309,170,-557,382,-677v119,-67,246,-102,383,-102v432,0,784,344,784,772v0,420,-352,773,-772,773xm268,-729v0,338,285,629,619,623v249,-4,446,-139,543,-310v105,-187,106,-450,0,-636v-96,-167,-300,-312,-543,-312v-241,0,-444,145,-537,314v-53,97,-82,203,-82,321xm75,-1508r-28,338r-118,0r-29,-338r175,0","w":1780},"\u038e":{"d":"173,-1471r170,0r376,606r370,-606r170,0r-466,768r0,703r-145,0r0,-703xm75,-1508r-28,338r-118,0r-29,-338r175,0","w":1322},"\u038f":{"d":"857,-1507v409,0,726,279,726,684v0,127,-32,242,-95,347v-63,105,-191,217,-385,338r433,0r0,138r-561,0r0,-196v199,-129,324,-240,377,-333v53,-93,79,-190,79,-292v0,-330,-242,-542,-574,-542v-332,0,-575,213,-575,542v0,101,25,198,75,289v50,91,177,203,381,336r0,196r-561,0r0,-138r433,0v-194,-121,-323,-233,-386,-338v-63,-105,-94,-220,-94,-347v0,-405,318,-684,727,-684xm75,-1508r-28,338r-118,0r-29,-338r175,0","w":1713},"\u0390":{"d":"135,-1088r141,0r0,1088r-141,0r0,-1088xm293,-1598r-28,338r-118,0r-29,-338r175,0xm540,-1380v0,48,-40,89,-88,89v-48,0,-89,-41,-89,-89v0,-49,41,-89,89,-89v48,0,88,41,88,89xm49,-1380v0,48,-41,89,-89,89v-48,0,-89,-41,-89,-89v0,-48,41,-89,89,-89v48,0,89,40,89,89","w":410},"\u0391":{"d":"780,-1471r686,1471r-158,0r-231,-484r-634,0r-230,484r-164,0r695,-1471r36,0xm762,-1159r-253,533r503,0","w":1515},"\u0392":{"d":"1030,-584v133,305,-119,584,-443,584r-404,0r0,-1471v188,3,438,-14,559,41v113,51,203,167,203,319v0,149,-80,252,-189,309v139,47,223,101,274,218xm792,-1111v0,-156,-115,-218,-295,-216r-170,0r0,471v111,2,252,-4,309,-28v85,-35,156,-117,156,-227xm327,-708r0,564v138,0,338,3,418,-32v88,-38,166,-128,166,-243v0,-146,-109,-239,-240,-271v-53,-13,-226,-19,-344,-18","w":1176},"\u0393":{"d":"914,-1326r-591,0r0,1326r-146,0r0,-1471r737,0r0,145","w":946},"\u0394":{"d":"1466,0r-1417,0r695,-1471r36,0xm1239,-145r-477,-1014r-481,1014r958,0","w":1515},"\u0395":{"d":"180,-1471r843,0r0,145r-696,0r0,460r690,0r0,144r-690,0r0,577r690,0r0,145r-837,0r0,-1471","w":1098},"\u0396":{"d":"122,-1329r0,-142r776,0r-615,1328r584,0r0,143r-811,0r619,-1329r-553,0","w":983},"\u0397":{"d":"177,-1471r148,0r0,617r748,0r0,-617r148,0r0,1471r-148,0r0,-710r-748,0r0,710r-148,0r0,-1471","w":1399},"\u0398":{"d":"1664,-736v0,423,-349,773,-772,773v-423,0,-777,-345,-777,-766v0,-421,348,-779,765,-779v433,0,784,339,784,772xm887,-106v344,0,625,-280,625,-630v0,-194,-64,-348,-194,-460v-130,-112,-274,-168,-431,-168v-331,0,-619,289,-619,635v0,339,280,623,619,623xm1258,-672r-737,0r0,-144r737,0r0,144","w":1780},"\u0399":{"d":"158,-1471r147,0r0,1471r-147,0r0,-1471","w":463},"\u039a":{"d":"179,-1471r150,0r0,552r587,-552r199,0r-707,660r762,811r-195,0r-646,-686r0,686r-150,0r0,-1471","w":1210},"\u039b":{"d":"1370,0r-160,0r-487,-1137r-496,1137r-160,0r640,-1471r32,0","w":1438},"\u039c":{"d":"112,0r209,-1471r24,0r598,1207r592,-1207r24,0r211,1471r-145,0r-144,-1052r-520,1052r-37,0r-527,-1060r-143,1060r-142,0","w":1882},"\u039d":{"d":"180,0r0,-1471r32,0r978,1126r0,-1126r145,0r0,1471r-33,0r-970,-1112r0,1112r-152,0","w":1515},"\u039e":{"d":"972,-1326r-857,0r0,-145r857,0r0,145xm972,-722r-857,0r0,-144r857,0r0,144xm972,0r-857,0r0,-145r857,0r0,145","w":1087},"\u039f":{"d":"892,37v-421,0,-784,-350,-777,-766v5,-309,170,-557,382,-677v119,-67,246,-102,383,-102v432,0,784,344,784,772v0,420,-352,773,-772,773xm268,-729v0,338,285,629,619,623v249,-4,446,-139,543,-310v105,-187,106,-450,0,-636v-96,-167,-300,-312,-543,-312v-241,0,-444,145,-537,314v-53,97,-82,203,-82,321","w":1780},"\u03a0":{"d":"1221,0r-148,0r0,-1331r-748,0r0,1331r-148,0r0,-1471r1044,0r0,1471","w":1399},"\u03a1":{"d":"178,-1471r293,0v168,0,281,7,340,22v161,39,286,172,286,370v0,205,-122,327,-293,371v-67,17,-311,26,-479,24r0,684r-147,0r0,-1471xm325,-1328r0,500v149,0,371,11,470,-24v125,-44,200,-233,110,-362v-67,-96,-140,-114,-320,-114r-260,0","w":1212},"\u03a3":{"d":"927,0r-861,0r411,-734r-405,-737r840,0r0,142r-600,0r330,596r-333,590r618,0r0,143","w":1027},"\u03a4":{"d":"33,-1328r0,-143r807,0r0,143r-328,0r0,1328r-150,0r0,-1328r-329,0","w":872},"\u03a5":{"d":"63,-1471r170,0r376,606r370,-606r170,0r-466,768r0,703r-145,0r0,-703","w":1212},"\u03a6":{"d":"1660,-746v0,376,-322,584,-706,601r0,145r-148,0r0,-145v-216,-14,-388,-73,-515,-179v-127,-106,-191,-246,-191,-420v0,-376,322,-584,706,-601r0,-126r148,0r0,126v216,14,388,73,515,179v127,106,191,246,191,420xm954,-282v299,-21,559,-146,554,-464v-4,-302,-243,-446,-554,-463r0,927xm806,-1209v-299,21,-559,146,-554,464v4,302,243,446,554,463r0,-927","w":1760},"\u03a7":{"d":"101,-1471r172,0r352,574r355,-574r170,0r-438,713r467,758r-172,0r-382,-617r-384,617r-172,0r469,-758","w":1247},"\u03a8":{"d":"1480,-964v-2,282,-73,418,-258,520v-92,51,-205,78,-338,85r0,359r-148,0r0,-359v-246,-14,-416,-93,-520,-249v-112,-168,-67,-574,-76,-863r151,0v5,231,-23,552,29,725v44,147,214,232,416,245r0,-970r148,0r0,970v208,-11,373,-99,418,-245v51,-166,21,-500,27,-725r151,0r0,507","w":1620},"\u03a9":{"d":"857,-1507v409,0,726,279,726,684v0,127,-32,242,-95,347v-63,105,-191,217,-385,338r433,0r0,138r-561,0r0,-196v199,-129,324,-240,377,-333v53,-93,79,-190,79,-292v0,-330,-242,-542,-574,-542v-332,0,-575,213,-575,542v0,101,25,198,75,289v50,91,177,203,381,336r0,196r-561,0r0,-138r433,0v-194,-121,-323,-233,-386,-338v-63,-105,-94,-220,-94,-347v0,-405,318,-684,727,-684","w":1713},"\u03aa":{"d":"158,-1471r147,0r0,1471r-147,0r0,-1471xm-88,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm320,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":463},"\u03ab":{"d":"63,-1471r170,0r376,606r370,-606r170,0r-466,768r0,703r-145,0r0,-703xm286,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm694,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1212},"\u03ac":{"d":"669,-1116v206,5,337,94,433,228r0,-200r138,0r0,1088r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1111,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438xm787,-1598r-28,338r-118,0r-29,-338r175,0","w":1399},"\u03ad":{"d":"253,-309v0,130,95,207,227,207v105,0,192,-38,259,-114r88,100v-91,97,-210,145,-359,145v-206,0,-365,-135,-365,-339v0,-137,65,-232,196,-287v-100,-41,-150,-118,-150,-231v0,-173,145,-290,320,-290v110,0,214,41,312,123r-79,97v-76,-59,-152,-88,-227,-88v-114,-1,-191,66,-191,178v0,103,83,180,187,178r73,0r0,120r-86,0v-114,-2,-205,87,-205,201xm520,-1598r-28,338r-118,0r-29,-338r175,0","w":866},"\u03ae":{"d":"1105,398r-139,0r0,-917v-4,-205,2,-314,-102,-407v-106,-94,-310,-75,-416,22v-143,131,-152,220,-152,505r0,399r-140,0r0,-1088r140,0r0,195v111,-149,247,-223,408,-223v170,0,297,95,353,222v31,70,48,181,48,334r0,958xm712,-1598r-28,338r-118,0r-29,-338r175,0","w":1249},"\u03af":{"d":"135,-1088r141,0r0,1088r-141,0r0,-1088xm292,-1598r-28,338r-118,0r-29,-338r175,0","w":410},"\u03b0":{"d":"1115,-518v0,310,-195,546,-503,546v-143,0,-258,-42,-346,-125v-88,-83,-131,-239,-131,-467r0,-524r141,0r0,508v5,217,1,308,121,405v57,45,128,67,215,67v245,1,361,-184,360,-436v0,-182,-85,-330,-254,-445r77,-128v213,125,320,325,320,599xm697,-1598r-28,338r-118,0r-29,-338r175,0xm944,-1380v0,48,-40,89,-88,89v-48,0,-89,-41,-89,-89v0,-49,41,-89,89,-89v48,0,88,41,88,89xm453,-1380v0,48,-41,89,-89,89v-48,0,-89,-41,-89,-89v0,-48,41,-89,89,-89v48,0,89,40,89,89","w":1219},"\u03b1":{"d":"669,-1116v206,5,337,94,433,228r0,-200r138,0r0,1088r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1111,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438","w":1399},"\u03b2":{"d":"1118,-462v0,271,-214,490,-483,490v-143,0,-255,-64,-338,-192r0,562r-141,0r0,-1505v-10,-279,159,-423,400,-429v211,-5,362,122,361,325v0,154,-73,258,-219,311v241,20,420,185,420,438xm633,-105v190,0,342,-158,342,-348v0,-97,-35,-178,-99,-249v-71,-78,-246,-109,-441,-103r0,-117v226,-6,339,-98,339,-275v0,-122,-84,-210,-207,-207v-198,5,-271,105,-270,330r1,613v-7,203,144,356,335,356","w":1221},"\u03b3":{"d":"1077,-1088r-442,966r0,520r-138,0r0,-522r-444,-964r149,0r364,792r361,-792r150,0","w":1135},"\u03b4":{"d":"586,28v-266,0,-482,-218,-482,-484v0,-220,114,-370,341,-450v-110,-74,-165,-171,-165,-290v0,-207,191,-340,405,-340v84,0,163,9,238,28r-36,125v-56,-15,-120,-22,-191,-22v-150,0,-271,70,-273,205v0,53,16,99,49,137v33,38,119,85,258,141v225,90,337,245,337,466v0,265,-215,484,-481,484xm925,-453v0,-187,-153,-353,-339,-353v-186,0,-339,167,-339,353v0,189,151,348,339,348v188,0,339,-159,339,-348","w":1171},"\u03b5":{"d":"253,-309v0,130,95,207,227,207v105,0,192,-38,259,-114r88,100v-91,97,-210,145,-359,145v-206,0,-365,-135,-365,-339v0,-137,65,-232,196,-287v-100,-41,-150,-118,-150,-231v0,-173,145,-290,320,-290v110,0,214,41,312,123r-79,97v-76,-59,-152,-88,-227,-88v-114,-1,-191,66,-191,178v0,103,83,180,187,178r73,0r0,120r-86,0v-114,-2,-205,87,-205,201","w":866},"\u03b6":{"d":"932,132v0,250,-291,339,-544,274r36,-126v42,11,82,16,119,16v165,0,247,-53,247,-158v0,-39,-18,-71,-55,-94v-37,-23,-106,-45,-207,-64v-273,-53,-410,-214,-410,-485v0,-141,49,-280,146,-419v97,-139,255,-292,472,-461r-503,0r0,-123r675,0r0,123v-240,202,-408,367,-504,495v-96,128,-143,254,-143,375v0,241,106,326,332,374v153,31,248,69,285,113v37,44,54,97,54,160","w":953},"\u03b7":{"d":"1105,398r-139,0r0,-917v-4,-205,2,-314,-102,-407v-106,-94,-310,-75,-416,22v-143,131,-152,220,-152,505r0,399r-140,0r0,-1088r140,0r0,195v111,-149,247,-223,408,-223v170,0,297,95,353,222v31,70,48,181,48,334r0,958","w":1249},"\u03b8":{"d":"671,28v-179,0,-315,-73,-418,-210v-195,-258,-193,-882,1,-1141v104,-139,238,-213,417,-213v179,0,313,74,417,213v194,260,195,883,0,1141v-103,137,-238,210,-417,210xm1093,-816v-9,-183,-53,-325,-123,-433v-136,-210,-462,-210,-598,-1v-70,107,-115,250,-124,434r845,0xm1094,-693r-846,0v7,187,51,330,120,437v134,206,472,205,606,0v69,-106,113,-249,120,-437","w":1341},"\u03b9":{"d":"135,-1088r141,0r0,1088r-141,0r0,-1088","w":410},"\u03ba":{"d":"1040,0r-198,0r-546,-489r0,489r-141,0r0,-1089r141,0r0,439r503,-438r206,0r-597,519","w":1028},"\u03bb":{"d":"1073,0r-149,0r-363,-838r-374,838r-148,0r447,-1006r-220,-502r148,0","w":1098},"\u03bc":{"d":"1093,-1r-140,0r0,-195v-112,149,-248,223,-408,223v-116,0,-203,-39,-261,-116r0,487r-140,0r0,-1487r140,0r0,519v4,205,-2,313,102,406v106,94,310,75,416,-22v143,-131,151,-219,151,-504r0,-399r140,0r0,1088","w":1249},"\u03bd":{"d":"53,-1088r149,0r364,792r361,-792r150,0r-498,1088r-25,0","w":1135},"\u03be":{"d":"932,132v0,250,-291,339,-544,274r36,-126v42,11,82,16,119,16v165,0,247,-53,247,-158v0,-34,-14,-62,-44,-86v-30,-24,-109,-48,-237,-72v-261,-49,-391,-201,-391,-455v0,-210,137,-359,311,-410v-153,-75,-229,-179,-229,-311v-1,-224,200,-340,435,-340v103,0,196,12,279,37r-33,134v-77,-27,-165,-40,-265,-40v-153,0,-273,86,-273,229v-1,162,203,249,378,246r119,0r0,122r-202,0v-197,1,-385,110,-377,323v8,219,106,295,310,341v138,31,233,64,284,98v51,34,77,93,77,178","w":953},"\u03bf":{"d":"104,-541v0,-311,257,-575,567,-575v311,0,566,264,566,575v0,303,-249,569,-566,569v-318,0,-567,-265,-567,-569xm1095,-538v8,-233,-196,-441,-424,-441v-229,0,-432,208,-424,441v8,250,171,433,424,433v252,0,416,-183,424,-433","w":1341},"\u03c0":{"d":"1323,-965r-221,0r0,965r-141,0r0,-965r-549,0r0,965r-141,0r0,-965r-221,0r0,-123r1273,0r0,123","w":1373},"\u03c1":{"d":"1268,-541v0,312,-254,569,-566,569v-179,0,-321,-78,-427,-233r0,603r-140,0r0,-909v-9,-338,241,-605,567,-605v314,0,566,266,566,575xm1126,-538v0,-233,-192,-441,-424,-441v-233,0,-424,208,-424,441v0,234,187,433,424,433v245,0,424,-199,424,-433","w":1372},"\u03c2":{"d":"104,-535v0,-325,241,-581,559,-581v211,0,367,85,468,254r-111,69v-96,-127,-217,-191,-363,-191v-237,0,-420,195,-412,439v9,267,152,344,417,396v150,29,254,60,310,95v56,35,84,97,84,186v0,250,-291,339,-544,274r36,-126v42,11,82,16,119,16v165,0,247,-53,247,-158v0,-39,-18,-71,-54,-94v-36,-23,-115,-45,-237,-64v-346,-55,-519,-227,-519,-515","w":1185},"\u03c3":{"d":"104,-541v0,-368,351,-676,751,-547r573,0r0,123r-371,0v120,117,180,258,180,424v0,312,-254,569,-566,569v-314,0,-567,-255,-567,-569xm1095,-538v0,-233,-192,-441,-424,-441v-231,0,-424,206,-424,441v0,234,187,433,424,433v248,0,424,-204,424,-433","w":1468},"\u03c4":{"d":"773,-965r-291,0r0,965r-141,0r0,-965r-291,0r0,-123r723,0r0,123","w":823},"\u03c5":{"d":"1115,-518v0,310,-195,546,-503,546v-143,0,-258,-42,-346,-125v-88,-83,-131,-239,-131,-467r0,-524r141,0r0,508v5,217,1,308,121,405v57,45,128,67,215,67v245,1,361,-184,360,-436v0,-182,-85,-330,-254,-445r77,-128v213,125,320,325,320,599","w":1219},"\u03c6":{"d":"1464,-541v0,350,-264,548,-610,567r0,372r-141,0r0,-373v-347,-18,-609,-216,-609,-566v0,-287,190,-471,423,-548r45,133v-217,77,-325,217,-325,418v0,257,155,399,466,425r0,-1000v432,-32,750,176,751,572xm854,-979r0,866v311,-29,466,-170,466,-425v0,-274,-192,-437,-466,-441","w":1568},"\u03c7":{"d":"944,-1088r-377,700r424,786r-160,0r-343,-638r-344,638r-151,0r419,-780r-380,-706r158,0r301,559r300,-559r153,0","w":983},"\u03c8":{"d":"1372,-554v0,217,-55,368,-166,450v-111,82,-238,125,-382,130r0,372r-140,0r0,-372v-228,-14,-384,-89,-478,-238v-47,-75,-71,-192,-71,-352r0,-524r139,0v6,236,-25,563,26,744v39,140,197,221,384,233r0,-977r140,0r0,978v190,-11,344,-95,383,-232v50,-173,19,-516,25,-746r140,0r0,534","w":1507},"\u03c9":{"d":"1188,28v-156,1,-277,-99,-310,-227v-33,128,-154,227,-310,227v-298,1,-464,-214,-464,-525v0,-347,260,-608,595,-619r11,135v-270,15,-463,209,-463,489v0,228,100,392,310,392v181,0,253,-175,250,-388r0,-134r142,0r0,134v-2,214,68,388,250,388v206,0,310,-162,310,-392v0,-282,-192,-475,-463,-489r11,-135v334,10,595,274,595,619v0,311,-166,526,-464,525","w":1756},"\u03ca":{"d":"135,-1088r141,0r0,1088r-141,0r0,-1088xm-115,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm293,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":410},"\u03cb":{"d":"1115,-518v0,310,-195,546,-503,546v-143,0,-258,-42,-346,-125v-88,-83,-131,-239,-131,-467r0,-524r141,0r0,508v5,217,1,308,121,405v57,45,128,67,215,67v245,1,361,-184,360,-436v0,-182,-85,-330,-254,-445r77,-128v213,125,320,325,320,599xm290,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm698,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1219},"\u03cc":{"d":"104,-541v0,-311,257,-575,567,-575v311,0,566,264,566,575v0,303,-249,569,-566,569v-318,0,-567,-265,-567,-569xm1095,-538v8,-233,-196,-441,-424,-441v-229,0,-432,208,-424,441v8,250,171,433,424,433v252,0,416,-183,424,-433xm758,-1598r-28,338r-118,0r-29,-338r175,0","w":1341},"\u03cd":{"d":"1115,-518v0,310,-195,546,-503,546v-143,0,-258,-42,-346,-125v-88,-83,-131,-239,-131,-467r0,-524r141,0r0,508v5,217,1,308,121,405v57,45,128,67,215,67v245,1,361,-184,360,-436v0,-182,-85,-330,-254,-445r77,-128v213,125,320,325,320,599xm697,-1598r-28,338r-118,0r-29,-338r175,0","w":1219},"\u03ce":{"d":"1188,28v-156,1,-277,-99,-310,-227v-33,128,-154,227,-310,227v-298,1,-464,-214,-464,-525v0,-347,260,-608,595,-619r11,135v-270,15,-463,209,-463,489v0,228,100,392,310,392v181,0,253,-175,250,-388r0,-134r142,0r0,134v-2,214,68,388,250,388v206,0,310,-162,310,-392v0,-282,-192,-475,-463,-489r11,-135v334,10,595,274,595,619v0,311,-166,526,-464,525xm965,-1598r-28,338r-118,0r-29,-338r175,0","w":1756},"\u0401":{"d":"180,-1471r843,0r0,145r-696,0r0,460r690,0r0,144r-690,0r0,577r690,0r0,145r-837,0r0,-1471xm290,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm698,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1098},"\u0402":{"d":"1107,-394v-2,-270,-132,-321,-417,-317r-179,0r0,711r-150,0r0,-1328r-329,0r0,-143r807,0r0,143r-328,0r0,474v170,-2,394,6,489,36v159,51,259,210,259,424v0,253,-108,426,-345,428v-97,0,-178,-33,-244,-98r91,-102v43,41,90,61,141,61v144,-2,207,-130,205,-289","w":1374},"\u0403":{"d":"323,0r-146,0r0,-1471r737,0r0,145r-591,0r0,1326xm709,-1895r215,0r-295,308r-138,0","w":946},"\u0404":{"d":"909,-1508v-434,-7,-793,336,-793,764v0,218,71,403,215,554v144,151,337,227,580,227v275,0,489,-98,643,-293r-117,-88v-137,161,-309,242,-516,242v-158,0,-298,-46,-420,-138v-122,-92,-197,-236,-224,-429r695,0r0,-145r-689,0v13,-168,82,-301,208,-400v126,-99,267,-149,420,-149v221,0,397,85,526,254r117,-89v-122,-179,-356,-305,-645,-310","w":1665},"\u0405":{"d":"888,-359v0,213,-198,405,-417,396v-233,-10,-341,-127,-444,-311r125,-75v88,162,190,243,305,243v152,0,272,-99,272,-250v0,-49,-17,-98,-50,-145v-46,-65,-130,-144,-252,-236v-123,-93,-199,-160,-229,-201v-52,-70,-78,-144,-78,-225v0,-208,150,-345,357,-345v197,0,275,95,386,241r-120,91v-92,-113,-124,-171,-269,-180v-146,-9,-254,143,-182,280v62,119,97,120,263,245v126,96,215,178,262,251v47,73,71,147,71,221","w":1020},"\u0406":{"d":"158,-1471r147,0r0,1471r-147,0r0,-1471","w":463},"\u0407":{"d":"158,-1471r147,0r0,1471r-147,0r0,-1471xm-88,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm320,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":463},"\u0408":{"d":"164,-236v115,73,160,136,289,136v91,0,164,-64,187,-139v13,-42,20,-123,20,-244r0,-988r148,0r0,993v-3,269,-16,365,-154,462v-97,68,-254,69,-376,18v-58,-23,-122,-63,-192,-121","w":987},"\u0409":{"d":"780,-1471r307,631v229,2,546,-9,703,36v165,47,277,181,277,386v0,200,-115,342,-269,386v-104,30,-323,34,-490,32r-546,-1159r-551,1159r-162,0r695,-1471r36,0xm1400,-142v220,-4,384,11,464,-110v58,-88,63,-253,-2,-335v-92,-115,-182,-109,-421,-109r-301,0","w":2181},"\u040a":{"d":"325,-855r748,0r0,-616r148,0r0,616r105,0v253,5,361,-10,512,68v114,59,183,177,184,347v2,217,-100,356,-261,406v-124,38,-476,34,-688,34r0,-711r-748,0r0,711r-148,0r0,-1471r148,0r0,616xm1221,-142r156,0v141,0,241,-5,300,-16v122,-24,189,-120,189,-273v0,-144,-77,-237,-192,-263v-61,-14,-307,-18,-453,-17r0,569","w":2136},"\u040b":{"d":"1110,-377v7,-258,-55,-334,-287,-334r-311,0r0,711r-150,0r0,-1328r-329,0r0,-143r807,0r0,143r-328,0r0,474r307,0v333,5,441,126,441,485r0,369r-150,0r0,-377","w":1391},"\u040c":{"d":"179,-1471r150,0r0,552r587,-552r199,0r-707,660r762,811r-195,0r-646,-686r0,686r-150,0r0,-1471xm772,-1895r215,0r-295,308r-138,0","w":1210},"\u040e":{"d":"67,-1467r166,0r445,999r407,-1003r161,0r-558,1322v-63,172,-251,229,-428,153v-48,-21,-107,-72,-180,-153r107,-88v74,73,123,114,148,124v60,25,129,19,175,-16v28,-21,60,-72,94,-155xm1016,-1823v-34,130,-172,211,-351,211v-181,0,-320,-80,-358,-211r132,0v44,67,118,104,227,104v119,0,165,-32,222,-104r128,0","w":1323},"\u040f":{"d":"598,0r-421,0r0,-1471r148,0r0,1332r679,0r0,-1332r148,0r0,1471r-417,0r0,220r-137,0r0,-220","w":1329},"\u0410":{"d":"780,-1471r686,1471r-158,0r-231,-484r-634,0r-230,484r-164,0r695,-1471r36,0xm762,-1159r-253,533r503,0","w":1515},"\u0411":{"d":"1059,-422v-3,241,-205,422,-477,422r-404,0r0,-1471r737,0r0,145r-592,0r0,470v337,-2,543,20,665,202v48,70,71,147,71,232xm323,-708r0,564v138,0,337,3,417,-32v89,-39,163,-125,164,-243v2,-141,-104,-238,-220,-267v-71,-18,-233,-24,-361,-22","w":1173},"\u0412":{"d":"1030,-584v133,305,-119,584,-443,584r-404,0r0,-1471v188,3,438,-14,559,41v113,51,203,167,203,319v0,149,-80,252,-189,309v139,47,223,101,274,218xm792,-1111v0,-156,-115,-218,-295,-216r-170,0r0,471v111,2,252,-4,309,-28v85,-35,156,-117,156,-227xm327,-708r0,564v138,0,338,3,418,-32v88,-38,166,-128,166,-243v0,-146,-109,-239,-240,-271v-53,-13,-226,-19,-344,-18","w":1176},"\u0413":{"d":"323,0r-146,0r0,-1471r737,0r0,145r-591,0r0,1326","w":946},"\u0414":{"d":"175,220r-145,0r0,-357r120,0r577,-1334r51,0r609,1334r115,0r0,357r-145,0r0,-220r-1182,0r0,220xm316,-137r897,0r-460,-1030","w":1532},"\u0415":{"d":"180,-1471r843,0r0,145r-696,0r0,460r690,0r0,144r-690,0r0,577r690,0r0,145r-837,0r0,-1471","w":1098},"\u0416":{"d":"1031,-683r0,683r-149,0r0,-683r-45,-41r-602,724r-195,0r702,-815r-646,-656r198,0r588,622r0,-622r149,0r0,622r589,-622r199,0r-646,656r701,815r-195,0r-603,-724","w":1915},"\u0417":{"d":"851,-1104v0,-158,-110,-269,-263,-268v-99,0,-191,45,-278,134r-101,-90v103,-120,231,-180,383,-180v230,0,417,151,417,375v0,157,-74,269,-221,337v194,60,291,190,291,390v1,274,-200,451,-486,444v-260,-6,-374,-108,-494,-295r114,-67v111,158,178,235,376,235v189,0,336,-118,336,-319v0,-168,-112,-261,-244,-292v-37,-8,-125,-11,-206,-10r0,-129v235,11,376,-72,376,-265","w":1190},"\u0418":{"d":"1335,0r-153,0r0,-1127r-969,1127r-33,0r0,-1471r147,0r0,1147r975,-1147r33,0r0,1471","w":1515},"\u0419":{"d":"1335,0r-153,0r0,-1127r-969,1127r-33,0r0,-1471r147,0r0,1147r975,-1147r33,0r0,1471xm1112,-1823v-34,130,-172,211,-351,211v-181,0,-320,-80,-358,-211r132,0v44,67,118,104,227,104v119,0,165,-32,222,-104r128,0","w":1515},"\u041a":{"d":"179,-1471r150,0r0,552r587,-552r199,0r-707,660r762,811r-195,0r-646,-686r0,686r-150,0r0,-1471","w":1210},"\u041b":{"d":"1370,0r-160,0r-487,-1137r-496,1137r-160,0r640,-1471r32,0","w":1438},"\u041c":{"d":"112,0r209,-1471r24,0r598,1207r592,-1207r24,0r211,1471r-145,0r-144,-1052r-520,1052r-37,0r-527,-1060r-143,1060r-142,0","w":1882},"\u041d":{"d":"177,-1471r148,0r0,617r748,0r0,-617r148,0r0,1471r-148,0r0,-710r-748,0r0,710r-148,0r0,-1471","w":1399},"\u041e":{"d":"892,37v-421,0,-784,-350,-777,-766v5,-309,170,-557,382,-677v119,-67,246,-102,383,-102v432,0,784,344,784,772v0,420,-352,773,-772,773xm268,-729v0,338,285,629,619,623v249,-4,446,-139,543,-310v105,-187,106,-450,0,-636v-96,-167,-300,-312,-543,-312v-241,0,-444,145,-537,314v-53,97,-82,203,-82,321","w":1780},"\u041f":{"d":"177,-1471r1044,0r0,1471r-148,0r0,-1331r-748,0r0,1331r-148,0r0,-1471","w":1399},"\u0420":{"d":"178,-1471r293,0v168,0,281,7,340,22v161,39,286,172,286,370v0,205,-122,327,-293,371v-67,17,-311,26,-479,24r0,684r-147,0r0,-1471xm325,-1328r0,500v149,0,371,11,470,-24v125,-44,200,-233,110,-362v-67,-96,-140,-114,-320,-114r-260,0","w":1212},"\u0421":{"d":"111,-744v0,-428,358,-772,794,-764v294,5,516,129,644,310r-116,89v-114,-150,-284,-254,-526,-254v-253,0,-462,139,-559,311v-54,96,-82,202,-82,321v0,356,289,629,650,629v206,0,378,-81,517,-242r116,88v-135,173,-350,287,-642,293v-457,9,-796,-329,-796,-781","w":1665},"\u0422":{"d":"33,-1328r0,-143r807,0r0,143r-328,0r0,1328r-150,0r0,-1328r-329,0","w":872},"\u0423":{"d":"67,-1467r166,0r445,999r407,-1003r161,0r-558,1322v-63,172,-251,229,-428,153v-48,-21,-107,-72,-180,-153r107,-88v74,73,123,114,148,124v60,25,129,19,175,-16v28,-21,60,-72,94,-155","w":1323},"\u0424":{"d":"818,-1471r147,0r0,188r113,0v221,0,374,44,461,129v164,160,171,432,15,604v-77,85,-219,129,-430,129r-159,0r0,421r-147,0r0,-421v-153,1,-330,-1,-436,-33v-142,-43,-267,-201,-267,-389v0,-120,46,-220,128,-310v94,-103,326,-139,575,-130r0,-188xm1516,-845v0,-203,-156,-300,-386,-296r-165,0r0,578r234,1v190,5,317,-109,317,-283xm267,-846v0,176,127,285,323,284r228,-1r0,-578r-165,0v-221,-2,-386,90,-386,295","w":1784},"\u0425":{"d":"101,-1471r172,0r352,574r355,-574r170,0r-438,713r467,758r-172,0r-382,-617r-384,617r-172,0r469,-758","w":1247},"\u0426":{"d":"1268,0r-1090,0r0,-1471r148,0r0,1333r679,0r0,-1333r148,0r0,1333r252,0r0,358r-137,0r0,-220","w":1450},"\u0427":{"d":"176,-1170v2,245,84,334,323,334r281,0r0,-635r147,0r0,1471r-147,0r0,-693r-106,0v-262,-4,-367,3,-503,-97v-114,-84,-139,-187,-139,-389r0,-292r144,0r0,301","w":1104},"\u0428":{"d":"325,-139r628,0r0,-1332r148,0r0,1332r638,0r0,-1332r148,0r0,1471r-1710,0r0,-1471r148,0r0,1332","w":2064},"\u0429":{"d":"1887,-139r252,0r0,359r-138,0r0,-220r-1824,0r0,-1471r148,0r0,1332r628,0r0,-1332r148,0r0,1332r638,0r0,-1332r148,0r0,1332","w":2183},"\u042a":{"d":"338,-1333r-306,0r0,-138r453,0r0,631v344,8,587,-22,724,156v97,127,102,393,2,519v-130,162,-256,158,-580,165r-293,0r0,-1333xm485,-142v149,1,425,-4,481,-24v98,-35,164,-119,164,-251v0,-142,-82,-240,-198,-263v-63,-12,-304,-17,-447,-16r0,554","w":1401},"\u042b":{"d":"178,-1471r147,0r0,631v343,8,588,-23,724,156v97,128,102,391,2,518v-130,163,-255,159,-580,166r-293,0r0,-1471xm325,-142v149,1,425,-4,481,-24v98,-35,164,-119,164,-251v0,-142,-82,-240,-198,-263v-63,-12,-304,-17,-447,-16r0,554xm1299,-1471r147,0r0,1471r-147,0r0,-1471","w":1624},"\u042c":{"d":"178,-1471r147,0r0,631v343,8,588,-23,724,156v97,128,102,391,2,518v-130,163,-255,159,-580,166r-293,0r0,-1471xm325,-142v149,1,425,-4,481,-24v98,-35,164,-119,164,-251v0,-142,-82,-240,-198,-263v-63,-12,-304,-17,-447,-16r0,554","w":1241},"\u042d":{"d":"756,-1508v434,-7,793,336,793,764v0,218,-71,403,-215,554v-144,151,-337,227,-580,227v-275,0,-489,-98,-643,-293r117,-88v137,161,309,242,516,242v158,0,298,-46,420,-138v122,-92,197,-236,224,-429r-695,0r0,-145r689,0v-13,-168,-82,-301,-208,-400v-126,-99,-267,-149,-420,-149v-221,0,-397,85,-526,254r-117,-89v122,-179,356,-305,645,-310","w":1665},"\u042e":{"d":"2128,-736v0,419,-352,773,-773,773v-199,0,-372,-63,-519,-191v-147,-128,-232,-302,-254,-523r-258,0r0,677r-147,0r0,-1471r147,0r0,657r258,0v37,-236,130,-411,280,-524v150,-113,310,-170,481,-170v431,0,785,345,785,772xm1351,-106v342,0,625,-281,625,-630v0,-346,-295,-629,-625,-629v-330,0,-619,289,-619,636v0,342,288,623,619,623","w":2243},"\u042f":{"d":"1013,-1471r-293,0v-163,0,-274,7,-332,20v-165,36,-301,174,-295,371v9,283,194,400,508,396r-529,684r182,0r528,-684r84,0r0,684r147,0r0,-1471xm866,-1327r0,500v-150,-1,-369,9,-470,-26v-125,-44,-200,-233,-110,-361v67,-96,140,-113,321,-113r259,0","w":1196},"\u0430":{"d":"669,-1116v206,5,337,94,433,228r0,-200r138,0r0,1088r-138,0r0,-187v-103,125,-234,210,-437,215v-303,7,-558,-267,-558,-575v0,-303,260,-576,562,-569xm1111,-538v4,-243,-191,-448,-431,-443v-254,6,-432,188,-432,439v0,249,180,442,431,442v252,0,427,-177,432,-438","w":1399},"\u0431":{"d":"1266,-541v0,306,-255,569,-567,569v-166,0,-307,-62,-422,-186v-115,-124,-173,-319,-173,-586v0,-186,22,-326,64,-422v81,-183,168,-242,357,-306v89,-30,477,-38,672,-59r0,134v-99,23,-491,24,-615,47v-217,39,-320,211,-346,442r-14,153v61,-220,230,-354,477,-361v312,-10,567,268,567,575xm699,-105v237,0,425,-199,425,-433v0,-231,-198,-441,-425,-441v-226,0,-424,211,-424,441v0,234,189,433,424,433","w":1370},"\u0432":{"d":"467,-1088v208,-7,335,101,335,274v0,111,-49,186,-146,225v141,50,212,146,212,289v0,200,-132,300,-396,300r-316,0r0,-1088r311,0xm297,-967r0,340r91,0v146,-4,173,8,234,-59v47,-51,43,-166,-2,-219v-61,-73,-85,-57,-232,-62r-91,0xm709,-304v0,-118,-85,-195,-204,-195r-208,0r0,381v93,-1,242,4,301,-14v62,-19,111,-85,111,-172","w":958},"\u0433":{"d":"295,-965r0,965r-139,0r0,-1088r550,0r0,123r-411,0","w":739},"\u0434":{"d":"165,-119r420,-969r73,0r417,969r131,0r0,258r-135,0r0,-139r-900,0r0,145r-138,0r0,-264r132,0xm619,-872r-318,753r623,0","w":1239},"\u0435":{"d":"248,-533v-5,295,272,518,572,404v129,-49,175,-106,252,-232r118,62v-101,193,-244,327,-520,327v-177,0,-316,-58,-416,-174v-100,-116,-150,-248,-150,-395v0,-312,248,-575,558,-575v317,0,567,244,564,583r-978,0xm1072,-654v-37,-147,-101,-230,-223,-287v-158,-74,-343,-46,-460,62v-55,51,-98,125,-127,225r810,0","w":1331},"\u0436":{"d":"714,-1088r142,0r0,481r520,-481r171,0r-514,485r553,603r-179,0r-471,-526r-80,67r0,459r-142,0r0,-459r-78,-67r-469,526r-179,0r547,-603r-506,-485r171,0r514,481r0,-481","w":1575},"\u0437":{"d":"629,-309v0,-116,-94,-202,-205,-201r-86,0r0,-120r73,0v96,0,191,-71,187,-178v-4,-105,-72,-178,-191,-178v-75,0,-151,29,-227,88r-79,-97v98,-82,202,-123,312,-123v174,0,320,119,320,290v0,113,-50,190,-150,231v131,55,196,150,196,287v0,190,-146,339,-365,339v-149,0,-268,-48,-359,-145r88,-100v67,76,154,114,259,114v134,0,227,-79,227,-207","w":866},"\u0438":{"d":"296,-1088r0,805r799,-805r11,0r0,1088r-140,0r0,-798r-793,798r-17,0r0,-1088r140,0","w":1262},"\u0439":{"d":"296,-1088r0,805r799,-805r11,0r0,1088r-140,0r0,-798r-793,798r-17,0r0,-1088r140,0xm986,-1525v-34,130,-172,211,-351,211v-181,0,-320,-80,-358,-211r132,0v44,67,118,104,227,104v119,0,165,-32,222,-104r128,0","w":1262},"\u043a":{"d":"156,-1088r141,0r0,458r503,-458r195,0r-551,498r595,590r-198,0r-500,-503r-44,39r0,464r-141,0r0,-1088","w":1028},"\u043b":{"d":"1077,0r-149,0r-364,-792r-361,792r-150,0r498,-1088r25,0","w":1135},"\u043c":{"d":"1337,-1088r40,0r369,1088r-146,0r-269,-801r-418,801r-26,0r-419,-801r-268,801r-146,0r371,-1088r38,0r438,851","w":1800},"\u043d":{"d":"929,-524r-632,0r0,524r-141,0r0,-1088r141,0r0,432r632,0r0,-432r140,0r0,1088r-140,0r0,-524","w":1225},"\u043e":{"d":"104,-541v0,-311,257,-575,567,-575v311,0,566,264,566,575v0,303,-249,569,-566,569v-318,0,-567,-265,-567,-569xm1095,-538v8,-233,-196,-441,-424,-441v-229,0,-432,208,-424,441v8,250,171,433,424,433v252,0,416,-183,424,-433","w":1341},"\u043f":{"d":"156,-1088r913,0r0,1088r-140,0r0,-956r-633,0r0,956r-140,0r0,-1088","w":1225},"\u0440":{"d":"733,28v-202,-4,-334,-91,-436,-215r0,585r-139,0r0,-1486r139,0r0,200v98,-134,226,-223,432,-228v302,-7,562,266,562,569v0,308,-255,582,-558,575xm1150,-542v0,-250,-178,-433,-432,-439v-240,-5,-435,200,-431,443v5,261,181,438,433,438v250,0,430,-193,430,-442","w":1397},"\u0441":{"d":"703,28v-327,6,-602,-248,-598,-563v3,-233,134,-416,298,-505v147,-79,344,-100,519,-43v134,44,223,110,290,221r-111,69v-96,-127,-227,-191,-393,-191v-253,0,-469,194,-462,439v7,263,191,445,463,445v160,0,291,-64,392,-191r111,73v-97,147,-274,242,-509,246","w":1325},"\u0442":{"d":"34,-1088r716,0r0,121r-288,0r0,967r-141,0r0,-967r-287,0r0,-121","w":784},"\u0443":{"d":"39,-1088r148,0r374,838r363,-838r149,0r-649,1486r-148,0r210,-480","w":1098},"\u0444":{"d":"104,-536v0,-323,243,-574,558,-574v167,0,293,62,377,186r0,-584r139,0r0,584v87,-124,213,-186,377,-186v315,0,558,251,558,574v0,318,-247,569,-554,569v-168,0,-295,-65,-381,-196r0,561r-139,0r0,-561v-85,131,-213,197,-384,197v-303,0,-551,-254,-551,-570xm1549,-983v-241,6,-375,181,-375,465v0,235,158,412,366,417v252,6,432,-200,432,-443v0,-240,-191,-445,-423,-439xm668,-983v-233,-4,-423,199,-423,440v0,291,281,540,578,407v155,-69,221,-175,221,-410v0,-256,-149,-433,-376,-437","w":2216},"\u0445":{"d":"32,-1088r168,0r288,403r288,-403r168,0r-372,517r419,571r-170,0r-333,-457r-328,457r-167,0r412,-571","w":983},"\u0446":{"d":"1173,0r-1017,0r0,-1088r141,0r0,956r632,0r0,-956r141,0r0,956r235,0r0,304r-132,0r0,-172","w":1337},"\u0447":{"d":"206,-891v3,229,34,281,232,281r205,0r0,-478r139,0r0,1088r-139,0r0,-491r-246,0v-217,2,-328,-116,-328,-325r0,-272r137,0r0,197","w":938},"\u0448":{"d":"1782,0r-1626,0r0,-1088r141,0r0,956r599,0r0,-956r143,0r0,956r600,0r0,-956r143,0r0,1088","w":1937},"\u0449":{"d":"1885,0r-1729,0r0,-1088r141,0r0,956r600,0r0,-956r142,0r0,956r600,0r0,-956r143,0r0,956r236,0r0,304r-133,0r0,-172","w":2050},"\u044a":{"d":"996,-325v-4,198,-152,325,-379,325r-362,0r0,-960r-200,0r0,-128r338,0r0,431v130,-1,299,1,383,25v114,33,223,160,220,307xm393,-539r0,421r161,0v192,0,288,-69,288,-208v1,-97,-62,-174,-140,-196v-61,-17,-209,-17,-309,-17","w":1063},"\u044b":{"d":"897,-325v-5,199,-151,325,-379,325r-362,0r0,-1088r139,0r0,431v130,-1,299,1,382,25v114,33,223,160,220,307xm300,-529r0,411r161,0v242,10,345,-141,253,-312v-51,-95,-124,-96,-295,-99r-119,0xm1090,-1088r141,0r0,1088r-141,0r0,-1088","w":1374},"\u044c":{"d":"897,-325v-5,199,-151,325,-379,325r-362,0r0,-1088r139,0r0,431v130,-1,299,1,382,25v114,33,223,160,220,307xm300,-529r0,411r161,0v242,10,345,-141,253,-312v-51,-95,-124,-96,-295,-99r-119,0","w":965},"\u044d":{"d":"1211,-535v0,-325,-274,-588,-609,-581v-215,4,-421,105,-498,254r111,69v96,-127,227,-191,393,-191v237,0,420,161,460,361r-484,0r0,120r484,0v-19,232,-215,403,-461,403v-160,0,-291,-64,-392,-191r-111,73v89,152,285,240,509,246v330,8,598,-251,598,-563","w":1315},"\u044e":{"d":"1042,28v-300,0,-544,-227,-562,-521r-182,0r0,493r-141,0r0,-1088r141,0r0,457r182,0v38,-268,268,-485,561,-485v313,0,567,268,567,575v0,306,-255,569,-566,569xm1042,-105v236,0,424,-199,424,-433v0,-231,-198,-441,-424,-441v-227,0,-425,210,-425,441v0,235,186,433,425,433","w":1712},"\u044f":{"d":"107,-786v0,-190,130,-302,317,-302r331,0r0,1088r-140,0r0,-487r-100,0r-310,487r-151,0r327,-501v-151,-16,-274,-124,-274,-285xm615,-967v-87,-1,-235,1,-272,17v-62,26,-100,80,-100,170v0,82,53,148,113,164v36,10,181,10,259,10r0,-361","w":911},"\u0451":{"d":"248,-533v-5,295,272,518,572,404v129,-49,175,-106,252,-232r118,62v-101,193,-244,327,-520,327v-177,0,-316,-58,-416,-174v-100,-116,-150,-248,-150,-395v0,-312,248,-575,558,-575v317,0,567,244,564,583r-978,0xm1072,-654v-37,-147,-101,-230,-223,-287v-158,-74,-343,-46,-460,62v-55,51,-98,125,-127,225r810,0xm346,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm754,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1329},"\u0452":{"d":"329,-1508r0,136r480,0r0,120r-480,0r0,359v113,-149,249,-223,408,-223v185,0,336,123,371,262v66,265,33,687,33,1018v0,175,-62,262,-186,262v-49,0,-102,-11,-159,-34r0,-126v60,33,138,49,175,-3v51,-71,28,-105,28,-263v0,-246,19,-597,-21,-793v-23,-114,-123,-197,-268,-194v-206,3,-329,147,-365,315v-32,148,-13,473,-16,672r-139,0r0,-1252r-155,0r0,-120r155,0r0,-136r139,0","w":1284},"\u0453":{"d":"295,-965r0,965r-139,0r0,-1088r550,0r0,123r-411,0xm523,-1598r215,0r-295,308r-138,0","w":739},"\u0454":{"d":"104,-535v0,-325,274,-588,609,-581v215,4,421,105,498,254r-111,69v-96,-127,-227,-191,-393,-191v-237,0,-420,161,-460,361r484,0r0,120r-484,0v19,232,215,403,461,403v160,0,291,-64,392,-191r111,73v-89,152,-285,240,-509,246v-330,8,-598,-251,-598,-563","w":1315},"\u0455":{"d":"103,-828v0,-164,132,-288,298,-288v100,0,201,49,302,147r-90,93v-75,-73,-148,-109,-219,-109v-128,0,-220,149,-125,251v29,31,83,71,168,115v104,54,175,106,212,156v37,50,55,108,55,171v0,177,-148,324,-329,320v-139,-3,-256,-68,-321,-154r88,-100v71,81,147,121,227,121v148,0,267,-167,163,-288v-26,-31,-85,-69,-176,-116v-98,-51,-165,-101,-200,-150v-35,-49,-53,-106,-53,-169","w":795},"\u0456":{"d":"90,-1420v0,-62,54,-116,115,-116v62,0,116,54,116,116v0,61,-54,115,-116,115v-61,0,-115,-54,-115,-115xm135,-1088r141,0r0,1088r-141,0r0,-1088","w":410},"\u0457":{"d":"135,-1088r141,0r0,1088r-141,0r0,-1088xm-115,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm293,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":410},"\u0458":{"d":"93,-1420v0,-62,53,-116,115,-116v62,0,115,54,115,116v0,61,-53,115,-115,115v-62,0,-115,-54,-115,-115xm37,295v85,0,102,-55,102,-172r0,-1211r142,0r0,1252v1,159,-50,262,-185,262v-47,0,-101,-11,-160,-34r0,-126v37,19,71,29,101,29","w":416},"\u0459":{"d":"577,-1088r200,431v181,3,428,-12,561,25v115,32,218,162,218,309v0,70,-23,137,-70,201v-47,64,-126,122,-242,122r-315,0r-369,-828r-366,828r-140,0r498,-1088r25,0xm833,-529r185,411r102,0v189,0,284,-67,284,-200v1,-96,-58,-173,-134,-194v-93,-27,-303,-15,-437,-17","w":1622},"\u045a":{"d":"1665,-324v-5,197,-151,324,-378,324r-358,0r0,-524r-631,0r0,524r-142,0r0,-1088r142,0r0,432r631,0r0,-432r140,0r0,432v129,-1,294,2,377,26v114,33,222,160,219,306xm1069,-524r0,406r160,0v242,10,345,-138,253,-308v-51,-94,-125,-95,-295,-98r-118,0","w":1733},"\u045b":{"d":"191,-1252r-155,0r0,-120r155,0r0,-136r139,0r0,136r480,0r0,120r-480,0r0,359v113,-149,249,-223,408,-223v185,0,334,123,371,262v57,213,23,581,31,854r-140,0v-5,-246,20,-597,-20,-793v-23,-114,-124,-197,-269,-194v-206,3,-329,147,-365,315v-32,148,-13,473,-16,672r-139,0r0,-1252","w":1284},"\u045c":{"d":"156,-1088r141,0r0,458r503,-458r195,0r-551,498r595,590r-198,0r-500,-503r-44,39r0,464r-141,0r0,-1088xm651,-1598r215,0r-295,308r-138,0","w":1028},"\u045e":{"d":"39,-1088r148,0r374,838r363,-838r149,0r-649,1486r-148,0r210,-480xm903,-1525v-34,130,-172,211,-351,211v-181,0,-320,-80,-358,-211r132,0v44,67,118,104,227,104v119,0,165,-32,222,-104r128,0","w":1098},"\u045f":{"d":"541,0r-384,0r0,-1088r141,0r0,956r632,0r0,-956r141,0r0,1088r-398,0r0,172r-132,0r0,-172","w":1227},"\u0490":{"d":"323,0r-146,0r0,-1471r475,0r0,-214r145,0r0,359r-474,0r0,1326","w":829},"\u0491":{"d":"295,-965r0,965r-139,0r0,-1088r382,0r0,-135r137,0r0,258r-380,0","w":729},"\u1e80":{"d":"96,-1471r151,0r299,1060r422,-1060r30,0r417,1060r305,-1060r150,0r-422,1471r-28,0r-436,-1113r-445,1113r-28,0xm922,-1895r218,308r-138,0r-295,-308r215,0","w":1966},"\u1e81":{"d":"9,-1088r144,0r333,790r349,-790r25,0r348,790r339,-790r146,0r-472,1088r-27,0r-346,-779r-349,779r-26,0xm790,-1598r218,308r-138,0r-295,-308r215,0","w":1702},"\u1e82":{"d":"96,-1471r151,0r299,1060r422,-1060r30,0r417,1060r305,-1060r150,0r-422,1471r-28,0r-436,-1113r-445,1113r-28,0xm1051,-1895r215,0r-295,308r-138,0","w":1966},"\u1e83":{"d":"9,-1088r144,0r333,790r349,-790r25,0r348,790r339,-790r146,0r-472,1088r-27,0r-346,-779r-349,779r-26,0xm919,-1598r215,0r-295,308r-138,0","w":1702},"\u1e84":{"d":"96,-1471r151,0r299,1060r422,-1060r30,0r417,1060r305,-1060r150,0r-422,1471r-28,0r-436,-1113r-445,1113r-28,0xm664,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm1072,-1700v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1966},"\u1e85":{"d":"9,-1088r144,0r333,790r349,-790r25,0r348,790r339,-790r146,0r-472,1088r-27,0r-346,-779r-349,779r-26,0xm533,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116xm941,-1402v0,-62,54,-116,116,-116v62,0,116,54,116,116v0,62,-54,116,-116,116v-62,0,-116,-54,-116,-116","w":1702},"\u1ef2":{"d":"63,-1471r170,0r376,606r370,-606r170,0r-466,768r0,703r-145,0r0,-703xm546,-1895r218,308r-138,0r-295,-308r215,0","w":1212},"\u1ef3":{"d":"39,-1088r148,0r374,838r363,-838r149,0r-649,1486r-148,0r210,-480xm488,-1598r218,308r-138,0r-295,-308r215,0","w":1098},"\u2015":{"d":"-12,-637r1560,0r0,129r-1560,0r0,-129","w":1536},"\u201b":{"d":"371,-959v-67,-137,-83,-189,-85,-377r0,-172r181,0r0,275r-89,0v5,71,29,148,71,230","w":719},"\u203e":{"d":"-42,-1869r1219,0r0,74r-1219,0r0,-74","w":1135},"\u20a4":{"d":"647,-1374v-134,0,-223,83,-225,203v0,53,14,121,43,206r358,0r0,129r-318,0r31,112r287,0r0,129r-259,0v17,103,13,257,-12,332v127,101,218,151,273,151v65,0,102,-77,109,-232r141,0v1,189,-64,381,-230,381v-101,0,-215,-53,-342,-160v-55,107,-135,160,-240,160v-112,0,-206,-65,-206,-188v0,-123,104,-234,222,-232v47,0,95,13,144,39v11,-95,9,-167,-7,-251r-317,0r0,-129r286,0r-30,-112r-256,0r0,-129r220,0v-25,-85,-37,-154,-37,-206v0,-191,171,-339,360,-337v216,2,338,165,347,383r-136,0v-8,-166,-77,-249,-206,-249xm194,-171v0,40,29,76,68,75v51,0,92,-37,123,-111v-43,-27,-81,-41,-114,-41v-44,-1,-77,35,-77,77","w":1135},"\u2116":{"d":"180,0r0,-1471r32,0r978,1126r0,-1126r145,0r0,1471r-33,0r-970,-1112r0,1112r-152,0xm1849,-979v184,0,345,161,345,346v0,184,-161,346,-345,346v-187,0,-346,-160,-346,-346v0,-185,161,-346,346,-346xm1849,-414v117,0,219,-102,219,-219v0,-118,-101,-220,-219,-220v-118,0,-220,102,-220,220v0,118,102,219,220,219xm1503,-102r691,0r0,102r-691,0r0,-102","w":2249},"\u212e":{"d":"90,-531v0,-321,219,-569,529,-565v313,4,527,226,529,565r-827,0r0,371v80,81,179,121,298,121v169,0,301,-82,395,-246r72,43v-128,183,-230,268,-467,276v-310,10,-529,-248,-529,-565xm917,-605r0,-297v-155,-161,-443,-162,-596,1r0,296r596,0","w":1229},"\u215b":{"d":"284,37r923,-1545r112,0r-925,1545r-110,0xm225,-1489r187,0r0,756r-110,0r0,-658r-150,0xm1366,-775v131,0,248,88,249,205v0,67,-35,119,-106,156v97,45,146,110,146,194v0,141,-132,238,-295,238v-165,0,-293,-97,-293,-232v0,-87,50,-153,151,-200v-73,-37,-109,-91,-109,-160v0,-115,130,-201,257,-201xm1364,-457v70,0,141,-50,140,-117v-1,-67,-66,-102,-142,-102v-69,0,-142,39,-142,104v0,65,77,115,144,115xm1362,-80v94,0,182,-52,182,-139v1,-85,-87,-144,-178,-144v-93,0,-187,58,-187,151v0,93,90,132,183,132","w":1702},"\u215c":{"d":"479,-1306v0,-61,-75,-103,-146,-103v-75,0,-129,39,-160,116r-112,0v36,-143,126,-215,271,-215v131,0,263,83,262,204v0,57,-30,106,-91,145v92,44,138,108,138,192v-1,146,-144,252,-307,252v-170,0,-270,-80,-301,-241r109,0v23,95,87,142,193,142v150,0,266,-145,143,-243v-36,-28,-102,-45,-201,-47r0,-94v96,1,202,-28,202,-108xm333,37r924,-1545r111,0r-924,1545r-111,0xm1365,-775v131,0,248,88,249,205v0,67,-35,119,-105,156v97,45,146,110,146,194v0,141,-132,238,-295,238v-161,0,-293,-95,-293,-232v0,-87,50,-153,150,-200v-72,-37,-108,-91,-108,-160v-1,-115,130,-201,256,-201xm1364,-457v70,0,140,-50,139,-117v-1,-67,-65,-102,-142,-102v-69,0,-141,39,-141,104v0,65,77,115,144,115xm1361,-80v95,0,183,-52,183,-139v1,-85,-87,-144,-178,-144v-93,0,-188,58,-188,151v0,92,91,132,183,132","w":1702},"\u215d":{"d":"333,37r924,-1545r111,0r-924,1545r-111,0xm522,-985v-2,-96,-87,-147,-192,-147v-53,0,-120,10,-201,30r85,-387r399,0r0,97r-313,0r-38,172v194,-48,374,64,373,238v-1,156,-140,267,-314,267v-148,0,-264,-91,-279,-211r113,0v19,75,75,113,170,113v101,0,199,-74,197,-172xm1365,-775v127,0,250,87,249,205v0,67,-35,119,-105,156v97,45,145,110,145,194v0,141,-131,238,-294,238v-166,0,-293,-97,-293,-232v0,-87,50,-153,150,-200v-72,-37,-108,-91,-108,-160v-1,-115,130,-201,256,-201xm1364,-457v70,0,140,-50,139,-117v-1,-67,-65,-102,-142,-102v-69,0,-141,39,-141,104v0,65,77,115,144,115xm1361,-80v95,0,183,-52,183,-139v1,-85,-87,-144,-178,-144v-93,0,-188,58,-188,151v0,92,91,132,183,132","w":1702},"\u215e":{"d":"259,37r923,-1545r111,0r-924,1545r-110,0xm81,-1489r579,0r-475,774r-91,-40r388,-637r-401,0r0,-97xm1366,-775v127,0,250,87,249,205v0,67,-35,119,-106,156v97,45,146,110,146,194v0,141,-132,238,-295,238v-165,0,-293,-97,-293,-232v0,-87,50,-153,151,-200v-73,-37,-109,-91,-109,-160v0,-115,130,-201,257,-201xm1364,-457v70,0,141,-50,140,-117v-1,-67,-66,-102,-142,-102v-69,0,-142,39,-142,104v0,65,77,115,144,115xm1362,-80v94,0,181,-52,182,-139v1,-85,-88,-144,-178,-144v-93,0,-188,58,-188,151v0,93,91,132,184,132","w":1702},"\u2302":{"d":"153,0r0,-634r461,-519r462,519r0,634r-923,0xm234,-81r761,0r0,-519r-381,-427r-380,427r0,519","w":1229},"\u2310":{"d":"115,-1024r1012,0r0,137r-875,0r0,440r-137,0r0,-577","w":1241},"\u2320":{"d":"972,-1628v5,73,-81,112,-144,78v-25,-13,-55,-84,-89,-84v-19,0,-33,8,-41,24v-8,16,-11,68,-11,154r0,1971r-145,0r0,-1811v0,-138,29,-246,86,-324v57,-78,126,-117,206,-117v84,0,134,43,138,109","w":1229},"\u2321":{"d":"257,406v0,-73,81,-113,143,-78v25,14,57,84,90,84v19,0,32,-8,40,-24v8,-16,12,-67,12,-154r0,-1971r145,0r0,1811v0,138,-29,246,-86,324v-57,78,-126,117,-206,117v-74,0,-138,-36,-138,-109","w":1229},"\u2500":{"d":"1478,-534r-1496,0r0,-175r1496,0r0,175"},"\u2502":{"d":"643,621r0,-2485r175,0r0,2485r-175,0"},"\u250c":{"d":"1479,-709r0,175r-661,0r0,1155r-175,0r0,-1330r836,0"},"\u2510":{"d":"642,-534r-660,0r0,-175r835,0r0,1330r-175,0r0,-1155"},"\u2514":{"d":"643,-534r0,-1330r175,0r0,1155r661,0r0,175r-836,0"},"\u2518":{"d":"817,-534r-835,0r0,-175r660,0r0,-1155r175,0r0,1330"},"\u251c":{"d":"643,621r0,-2485r175,0r0,1155r661,0r0,175r-661,0r0,1155r-175,0"},"\u2524":{"d":"642,621r0,-1155r-660,0r0,-175r660,0r0,-1155r175,0r0,2485r-175,0"},"\u252c":{"d":"642,-534r-660,0r0,-175r1496,0r0,175r-661,0r0,1155r-175,0r0,-1155"},"\u2534":{"d":"1478,-534r-1496,0r0,-175r660,0r0,-1155r175,0r0,1155r661,0r0,175"},"\u253c":{"d":"642,-534r-660,0r0,-175r660,0r0,-1155r175,0r0,1155r661,0r0,175r-661,0r0,1155r-175,0r0,-1155"},"\u2550":{"d":"1478,-724r-1496,0r0,-175r1496,0r0,175xm1478,-344r-1496,0r0,-175r1496,0r0,175"},"\u2551":{"d":"833,621r0,-2485r175,0r0,2485r-175,0xm453,621r0,-2485r175,0r0,2485r-175,0"},"\u2552":{"d":"643,621r0,-1520r836,0r0,175r-661,0r0,205r661,0r0,175r-661,0r0,965r-175,0"},"\u2553":{"d":"453,621r0,-1330r1026,0r0,175r-471,0r0,1155r-175,0r0,-1140r-205,0r0,1140r-175,0"},"\u2554":{"d":"628,621r-175,0r0,-1520r1025,0r0,175r-850,0r0,1345xm1008,-344r0,965r-175,0r0,-1140r645,0r0,175r-470,0"},"\u2555":{"d":"642,-344r-660,0r0,-175r660,0r0,-205r-660,0r0,-175r835,0r0,1520r-175,0r0,-965"},"\u2556":{"d":"452,621r0,-1155r-470,0r0,-175r1025,0r0,1330r-175,0r0,-1155r-205,0r0,1155r-175,0"},"\u2557":{"d":"832,621r0,-1345r-850,0r0,-175r1025,0r0,1520r-175,0xm452,-344r-470,0r0,-175r645,0r0,1140r-175,0r0,-965"},"\u2558":{"d":"643,-344r0,-1520r175,0r0,965r661,0r0,175r-661,0r0,205r661,0r0,175r-836,0"},"\u2559":{"d":"1478,-534r-1025,0r0,-1330r175,0r0,1155r205,0r0,-1155r175,0r0,1155r470,0r0,175"},"\u255a":{"d":"628,-1864r0,1345r850,0r0,175r-1025,0r0,-1520r175,0xm1008,-899r470,0r0,175r-645,0r0,-1140r175,0r0,965"},"\u255b":{"d":"817,-344r-835,0r0,-175r660,0r0,-205r-660,0r0,-175r660,0r0,-965r175,0r0,1520"},"\u255c":{"d":"1007,-534r-1025,0r0,-175r470,0r0,-1155r175,0r0,1155r205,0r0,-1155r175,0r0,1330"},"\u255d":{"d":"832,-1864r175,0r0,1520r-1025,0r0,-175r850,0r0,-1345xm452,-899r0,-965r175,0r0,1140r-645,0r0,-175r470,0"},"\u255e":{"d":"643,621r0,-2485r175,0r0,965r661,0r0,175r-661,0r0,205r661,0r0,175r-661,0r0,965r-175,0"},"\u255f":{"d":"833,621r0,-2485r175,0r0,1155r471,0r0,175r-471,0r0,1155r-175,0xm453,621r0,-2485r175,0r0,2485r-175,0"},"\u2560":{"d":"453,621r0,-2485r175,0r0,2485r-175,0xm833,-724r0,-1140r175,0r0,965r471,0r0,175r-646,0xm833,621r0,-1140r646,0r0,175r-471,0r0,965r-175,0"},"\u2561":{"d":"642,-344r-660,0r0,-175r660,0r0,-205r-660,0r0,-175r660,0r0,-965r175,0r0,2485r-175,0r0,-965"},"\u2562":{"d":"452,621r0,-1155r-470,0r0,-175r470,0r0,-1155r175,0r0,2485r-175,0xm832,621r0,-2485r175,0r0,2485r-175,0"},"\u2563":{"d":"832,621r0,-2485r175,0r0,2485r-175,0xm627,-1864r0,1140r-645,0r0,-175r470,0r0,-965r175,0xm452,-344r-470,0r0,-175r645,0r0,1140r-175,0r0,-965"},"\u2564":{"d":"1478,-724r-1496,0r0,-175r1496,0r0,175xm642,-344r-660,0r0,-175r1496,0r0,175r-661,0r0,965r-175,0r0,-965"},"\u2565":{"d":"452,621r0,-1155r-470,0r0,-175r1496,0r0,175r-471,0r0,1155r-175,0r0,-1140r-205,0r0,1140r-175,0"},"\u2566":{"d":"1478,-724r-1496,0r0,-175r1496,0r0,175xm452,-344r-470,0r0,-175r645,0r0,1140r-175,0r0,-965xm832,621r0,-1140r646,0r0,175r-471,0r0,965r-175,0"},"\u2567":{"d":"1478,-724r-1496,0r0,-175r660,0r0,-965r175,0r0,965r661,0r0,175xm1478,-344r-1496,0r0,-175r1496,0r0,175"},"\u2568":{"d":"1478,-534r-1496,0r0,-175r470,0r0,-1155r175,0r0,1155r205,0r0,-1155r175,0r0,1155r471,0r0,175"},"\u2569":{"d":"627,-724r-645,0r0,-175r470,0r0,-965r175,0r0,1140xm1478,-724r-646,0r0,-1140r175,0r0,965r471,0r0,175xm1478,-344r-1496,0r0,-175r1496,0r0,175"},"\u256a":{"d":"642,-344r-660,0r0,-175r660,0r0,-205r-660,0r0,-175r660,0r0,-965r175,0r0,965r661,0r0,175r-661,0r0,205r661,0r0,175r-661,0r0,965r-175,0r0,-965"},"\u256b":{"d":"452,621r0,-1155r-470,0r0,-175r470,0r0,-1155r175,0r0,1155r205,0r0,-1155r175,0r0,1155r471,0r0,175r-471,0r0,1155r-175,0r0,-1155r-205,0r0,1155r-175,0"},"\u256c":{"d":"1008,-899r470,0r0,175r-645,0r0,-1140r175,0r0,965xm452,-899r0,-965r175,0r0,1140r-645,0r0,-175r470,0xm452,-344r-470,0r0,-175r645,0r0,1140r-175,0r0,-965xm1008,-344r0,965r-175,0r0,-1140r645,0r0,175r-470,0"},"\u2580":{"d":"1478,-621r-1496,0r0,-1243r1496,0r0,1243"},"\u2584":{"d":"1478,621r-1496,0r0,-1242r1496,0r0,1242"},"\u2588":{"d":"-18,621r0,-2485r1496,0r0,2485r-1496,0"},"\u258c":{"d":"-18,621r0,-2485r748,0r0,2485r-748,0"},"\u2590":{"d":"730,621r0,-2485r748,0r0,2485r-748,0"},"\u2591":{"d":"107,-1864r125,0r0,125r-125,0r0,-125xm605,-1864r125,0r0,125r-125,0r0,-125xm1104,-1864r125,0r0,125r-125,0r0,-125xm356,-1615r125,0r0,125r-125,0r0,-125xm855,-1615r124,0r0,125r-124,0r0,-125xm1353,-1615r125,0r0,125r-125,0r0,-125xm1104,-1366r125,0r0,125r-125,0r0,-125xm605,-1366r125,0r0,125r-125,0r0,-125xm107,-1366r125,0r0,125r-125,0r0,-125xm1353,-1116r125,0r0,124r-125,0r0,-124xm855,-1116r124,0r0,124r-124,0r0,-124xm356,-1116r125,0r0,124r-125,0r0,-124xm107,-867r125,0r0,125r-125,0r0,-125xm605,-867r125,0r0,125r-125,0r0,-125xm1104,-867r125,0r0,125r-125,0r0,-125xm1353,-618r125,0r0,125r-125,0r0,-125xm855,-618r124,0r0,125r-124,0r0,-125xm356,-618r125,0r0,125r-125,0r0,-125xm107,-369r125,0r0,125r-125,0r0,-125xm605,-369r125,0r0,125r-125,0r0,-125xm1104,-369r125,0r0,125r-125,0r0,-125xm356,-119r125,0r0,124r-125,0r0,-124xm855,-119r124,0r0,124r-124,0r0,-124xm1353,-119r125,0r0,124r-125,0r0,-124xm1104,130r125,0r0,125r-125,0r0,-125xm605,130r125,0r0,125r-125,0r0,-125xm107,130r125,0r0,125r-125,0r0,-125xm356,379r125,0r0,125r-125,0r0,-125xm855,379r124,0r0,125r-124,0r0,-125xm1353,379r125,0r0,125r-125,0r0,-125"},"\u2592":{"d":"107,-1864r124,0r0,125r-124,0r0,-125xm356,-1864r124,0r0,125r-124,0r0,-125xm605,-1864r125,0r0,125r-125,0r0,-125xm854,-1864r125,0r0,125r-125,0r0,-125xm1104,-1864r124,0r0,125r-124,0r0,-125xm1353,-1864r124,0r0,125r-124,0r0,-125xm-18,-1615r125,0r0,125r-125,0r0,-125xm231,-1615r125,0r0,125r-125,0r0,-125xm480,-1615r125,0r0,125r-125,0r0,-125xm730,-1615r124,0r0,125r-124,0r0,-125xm979,-1615r125,0r0,125r-125,0r0,-125xm1228,-1615r125,0r0,125r-125,0r0,-125xm107,-1366r124,0r0,125r-124,0r0,-125xm356,-1366r124,0r0,125r-124,0r0,-125xm605,-1366r125,0r0,125r-125,0r0,-125xm854,-1366r125,0r0,125r-125,0r0,-125xm1104,-1366r124,0r0,125r-124,0r0,-125xm1353,-1366r124,0r0,125r-124,0r0,-125xm-18,-1116r125,0r0,124r-125,0r0,-124xm231,-1116r125,0r0,124r-125,0r0,-124xm480,-1116r125,0r0,124r-125,0r0,-124xm730,-1116r124,0r0,124r-124,0r0,-124xm979,-1116r125,0r0,124r-125,0r0,-124xm1228,-1116r125,0r0,124r-125,0r0,-124xm107,-867r124,0r0,125r-124,0r0,-125xm356,-867r124,0r0,125r-124,0r0,-125xm605,-867r125,0r0,125r-125,0r0,-125xm854,-867r125,0r0,125r-125,0r0,-125xm1104,-867r124,0r0,125r-124,0r0,-125xm1353,-867r124,0r0,125r-124,0r0,-125xm-18,-618r125,0r0,125r-125,0r0,-125xm480,-618r125,0r0,125r-125,0r0,-125xm730,-618r124,0r0,125r-124,0r0,-125xm979,-618r125,0r0,125r-125,0r0,-125xm1228,-618r125,0r0,125r-125,0r0,-125xm231,-618r125,0r0,125r-125,0r0,-125xm1353,-369r124,0r0,125r-124,0r0,-125xm1104,-369r124,0r0,125r-124,0r0,-125xm854,-369r125,0r0,125r-125,0r0,-125xm605,-369r125,0r0,125r-125,0r0,-125xm356,-369r124,0r0,125r-124,0r0,-125xm107,-369r124,0r0,125r-124,0r0,-125xm-18,-119r125,0r0,124r-125,0r0,-124xm231,-119r125,0r0,124r-125,0r0,-124xm480,-119r125,0r0,124r-125,0r0,-124xm730,-119r124,0r0,124r-124,0r0,-124xm979,-119r125,0r0,124r-125,0r0,-124xm1228,-119r125,0r0,124r-125,0r0,-124xm1353,130r124,0r0,125r-124,0r0,-125xm1104,130r124,0r0,125r-124,0r0,-125xm854,130r125,0r0,125r-125,0r0,-125xm605,130r125,0r0,125r-125,0r0,-125xm356,130r124,0r0,125r-124,0r0,-125xm107,130r124,0r0,125r-124,0r0,-125xm-18,379r125,0r0,125r-125,0r0,-125xm231,379r125,0r0,125r-125,0r0,-125xm480,379r125,0r0,125r-125,0r0,-125xm730,379r124,0r0,125r-124,0r0,-125xm979,379r125,0r0,125r-125,0r0,-125xm1228,379r125,0r0,125r-125,0r0,-125"},"\u2593":{"d":"1495,-1490r0,374r-124,0r0,124r124,0r0,374r-124,0r0,125r124,0r0,374r-124,0r0,124r124,0r0,374r-124,0r0,125r124,0r0,124r-1495,0r0,-373r125,0r0,-125r-125,0r0,-374r125,0r0,-125r-125,0r0,-373r125,0r0,-125r-125,0r0,-374r125,0r0,-125r-125,0r0,-373r125,0r0,-125r124,0r0,125r125,0r0,-125r124,0r0,125r125,0r0,-125r125,0r0,125r124,0r0,-125r125,0r0,125r125,0r0,-125r124,0r0,125r125,0r0,-125r124,0r0,249r-124,0r0,125r124,0xm125,-1615r0,125r124,0r0,-125r-124,0xm374,-1615r0,125r124,0r0,-125r-124,0xm623,-1615r0,125r125,0r0,-125r-125,0xm872,-1615r0,125r125,0r0,-125r-125,0xm1122,-1615r0,125r124,0r0,-125r-124,0xm1371,-1366r-125,0r0,125r125,0r0,-125xm1122,-1366r-125,0r0,125r125,0r0,-125xm872,-1366r-124,0r0,125r124,0r0,-125xm623,-1366r-125,0r0,125r125,0r0,-125xm374,-1366r-125,0r0,125r125,0r0,-125xm125,-1116r0,124r124,0r0,-124r-124,0xm374,-1116r0,124r124,0r0,-124r-124,0xm623,-1116r0,124r125,0r0,-124r-125,0xm872,-1116r0,124r125,0r0,-124r-125,0xm1122,-1116r0,124r124,0r0,-124r-124,0xm374,-867r-125,0r0,125r125,0r0,-125xm498,-867r0,125r125,0r0,-125r-125,0xm748,-867r0,125r124,0r0,-125r-124,0xm997,-867r0,125r125,0r0,-125r-125,0xm1246,-867r0,125r125,0r0,-125r-125,0xm125,-618r0,125r124,0r0,-125r-124,0xm623,-618r0,125r125,0r0,-125r-125,0xm498,-493r0,-125r-124,0r0,125r124,0xm872,-618r0,125r125,0r0,-125r-125,0xm1122,-618r0,125r124,0r0,-125r-124,0xm1371,-244r0,-125r-125,0r0,125r125,0xm1122,-244r0,-125r-125,0r0,125r125,0xm872,-244r0,-125r-124,0r0,125r124,0xm623,-244r0,-125r-125,0r0,125r125,0xm374,-244r0,-125r-125,0r0,125r125,0xm125,-119r0,124r124,0r0,-124r-124,0xm374,-119r0,124r124,0r0,-124r-124,0xm623,-119r0,124r125,0r0,-124r-125,0xm872,-119r0,124r125,0r0,-124r-125,0xm1122,-119r0,124r124,0r0,-124r-124,0xm1371,255r0,-125r-125,0r0,125r125,0xm1122,255r0,-125r-125,0r0,125r125,0xm872,255r0,-125r-124,0r0,125r124,0xm623,255r0,-125r-125,0r0,125r125,0xm374,255r0,-125r-125,0r0,125r125,0xm125,379r0,125r124,0r0,-125r-124,0xm374,379r0,125r124,0r0,-125r-124,0xm623,379r0,125r125,0r0,-125r-125,0xm872,379r0,125r125,0r0,-125r-125,0xm1122,379r0,125r124,0r0,-125r-124,0","w":1495},"\u25a0":{"d":"146,-944r944,0r0,944r-944,0r0,-944","w":1237},"\u25ac":{"d":"0,-703r2047,0r0,386r-2047,0r0,-386","w":2048},"\u25b2":{"d":"304,0r710,-1419r710,1419r-1420,0","w":2027},"\u25ba":{"d":"288,-1417r1451,724r-1451,724r0,-1448","w":2027},"\u25bc":{"d":"1724,-1388r-710,1419r-710,-1419r1420,0","w":2027},"\u25c4":{"d":"1739,-1417r0,1448r-1451,-724","w":2027},"\u25cb":{"d":"614,-1018v237,0,441,204,441,440v0,236,-205,441,-440,441v-238,0,-441,-204,-441,-441v0,-236,205,-440,440,-440xm615,-213v194,0,364,-171,364,-365v0,-194,-170,-364,-364,-364v-195,0,-365,170,-365,364v0,194,170,365,365,365","w":1229},"\u25d8":{"d":"124,0r0,-980r980,0r0,980r-980,0xm614,-288v108,0,202,-95,202,-202v0,-108,-93,-202,-202,-202v-107,0,-202,94,-202,202v0,108,95,202,202,202","w":1229},"\u25d9":{"d":"38,0r0,-1155r1155,0r0,1155r-1155,0xm616,-137v235,0,440,-206,440,-440v0,-235,-206,-441,-440,-441v-237,0,-441,206,-441,441v0,235,205,440,441,440xm616,-942v195,0,364,169,364,365v0,194,-170,364,-364,364v-195,0,-365,-169,-365,-364v0,-195,170,-365,365,-365","w":1229},"\u263a":{"d":"1046,-1156v343,0,637,295,637,638v0,340,-297,637,-637,637v-342,0,-638,-295,-638,-637v0,-341,297,-638,638,-638xm1046,26v290,0,545,-254,545,-544v0,-291,-254,-545,-545,-545v-292,0,-545,253,-545,545v0,291,254,544,545,544xm801,-731v44,0,81,37,81,81v0,43,-37,81,-81,81v-43,0,-81,-38,-81,-81v0,-44,38,-81,81,-81xm1290,-731v43,0,81,37,81,81v0,43,-38,81,-81,81v-43,0,-81,-38,-81,-81v0,-44,38,-81,81,-81xm752,-313r62,-36v53,96,130,144,232,144v102,0,179,-48,231,-144r63,36v-69,130,-167,195,-294,195v-127,0,-225,-65,-294,-195","w":2091},"\u263b":{"d":"1078,-1156v343,0,637,295,637,638v0,340,-297,637,-637,637v-342,0,-638,-295,-638,-637v0,-341,297,-638,638,-638xm833,-569v44,0,81,-38,81,-81v0,-44,-37,-81,-81,-81v-43,0,-81,37,-81,81v0,43,38,81,81,81xm1322,-569v43,0,81,-38,81,-81v0,-44,-38,-81,-81,-81v-43,0,-81,37,-81,81v0,43,38,81,81,81xm784,-313v69,130,167,195,294,195v127,0,225,-65,294,-195r-63,-36v-52,96,-129,144,-231,144v-102,0,-179,-48,-232,-144","w":2155},"\u263c":{"d":"902,-1621r76,0r0,337v127,5,244,51,350,140r289,-283r52,53r-286,286v93,117,141,236,143,358r336,0r0,69r-336,0v-9,127,-57,243,-143,348r286,289r-57,51r-284,-280v-111,83,-228,130,-350,139r0,337r-76,0r0,-337v-135,-17,-250,-63,-345,-139r-296,280r-49,-51r284,-289v-83,-102,-131,-219,-144,-352r-336,0r0,-69r336,0v9,-131,57,-248,144,-349r-284,-287r49,-57r291,283v120,-87,237,-133,350,-140r0,-337xm937,-186v273,0,513,-240,513,-513v0,-275,-238,-512,-513,-512v-274,0,-512,239,-512,512v0,273,239,513,512,513","w":1878},"\u2640":{"d":"1041,-956v0,250,-205,467,-450,475r0,365r417,0r0,54r-417,0r0,399r-54,0r0,-399r-418,0r0,-54r418,0r0,-365v-242,-14,-444,-210,-448,-475v-4,-254,221,-476,476,-476v254,0,476,222,476,476xm565,-528v228,0,427,-199,427,-427v0,-229,-198,-426,-427,-426v-228,0,-427,199,-427,426v0,228,199,427,427,427","w":1131},"\u2642":{"d":"545,-1088v282,-90,293,-116,562,-284r29,10v23,239,77,444,161,615r-25,16v-99,-125,-173,-264,-222,-415r-295,635v139,51,292,235,292,430v0,249,-211,420,-459,420v-259,0,-486,-206,-486,-457v0,-297,297,-536,607,-411r293,-636v-143,60,-295,95,-457,104r0,-27xm921,-122v0,-214,-186,-394,-390,-394v-203,0,-386,180,-386,382v0,219,181,393,391,393v207,0,385,-179,385,-381","w":1366},"\u2660":{"d":"279,-275v-118,0,-219,-105,-219,-221v0,-100,63,-202,188,-305v175,-143,274,-287,299,-430v49,184,105,249,268,399v81,75,137,134,169,181v32,47,48,97,48,152v0,123,-100,224,-220,224v-103,0,-187,-63,-254,-190v-3,289,124,412,378,428r7,37r-793,0r8,-37v253,1,397,-163,383,-428v-60,127,-147,190,-262,190","w":1092},"\u2663":{"d":"1019,-274v-159,-8,-257,-94,-332,-237v11,311,128,428,408,477r8,34r-848,0r8,-34v201,-48,257,-56,345,-207v47,-80,63,-163,57,-270v-58,130,-169,233,-327,238v-150,5,-278,-128,-278,-280v0,-137,111,-278,242,-275v43,0,97,17,163,51v-45,-71,-67,-131,-67,-182v0,-149,124,-272,276,-272v149,0,279,123,279,267v0,63,-23,125,-69,187v71,-35,125,-53,162,-53v138,0,247,134,247,273v0,153,-126,291,-274,283","w":1354},"\u2665":{"d":"892,-1231v139,-6,258,117,258,252v0,56,-13,116,-40,179v-27,63,-85,151,-174,264v-189,240,-299,427,-329,560v-21,-81,-53,-157,-93,-228v-40,-71,-132,-201,-275,-390v-67,-89,-114,-159,-140,-212v-26,-53,-39,-107,-39,-163v0,-143,115,-261,257,-261v137,0,234,84,290,251v34,-146,134,-246,285,-252","w":1210},"\u2666":{"d":"517,-1231v129,215,282,424,461,627v-87,90,-394,493,-461,628v-67,-127,-220,-336,-457,-628v216,-255,368,-464,457,-627","w":1038},"\u266a":{"d":"26,142v-5,-225,289,-399,535,-399v128,0,260,31,396,94r-31,-1372r60,0v109,67,231,170,366,309v135,139,202,234,202,285v0,19,-36,73,-59,73v-19,0,-40,-15,-63,-44v-75,-90,-326,-314,-437,-378r26,1374v0,81,-23,146,-71,193v-90,91,-323,192,-509,192v-230,0,-411,-132,-415,-327","w":1579},"\u266b":{"d":"304,188v0,-172,148,-292,323,-292v63,0,132,18,205,54r0,-1145r934,-291r0,1301v-1,196,-40,272,-162,342v-58,33,-126,48,-201,48v-178,0,-278,-105,-280,-263v-2,-163,148,-287,324,-287v56,0,123,17,200,50r0,-850r-699,217r0,981v-3,178,-32,267,-150,339v-61,38,-134,57,-217,57v-159,1,-277,-99,-277,-261","w":2048},"\uf005":{"d":"485,222v0,154,-216,188,-375,136r22,-71v93,25,234,21,234,-51v0,-51,-91,-50,-145,-30r12,-79v31,-10,62,-15,95,-15v105,0,157,37,157,110","w":664},"\u00a4":{"d":"569,-102v-142,0,-227,-43,-321,-115r-117,115r-89,-90r116,-114v-70,-95,-108,-168,-108,-308v0,-138,35,-219,111,-311r-120,-117r90,-91r120,119v87,-68,185,-112,321,-112v135,0,220,40,312,106r117,-113r88,91r-116,112v74,93,115,171,115,315v0,140,-40,218,-109,309r116,114r-89,90r-116,-115v-92,72,-179,115,-321,115xm570,-989v-202,0,-377,175,-377,377v0,200,176,372,376,372v202,0,376,-174,376,-375v0,-202,-173,-374,-375,-374","w":1135}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Typeface � The Monotype Corporation plc. Data � The Monotype Corporation plc /
 * Type Solutions Inc. 1990-91 All Rights Reserved
 * 
 * Trademark:
 * Century Gothic is a trademark of The Monotype Corporation plc.
 * 
 * Description:
 * A design based on Monotype 20th Century, which was drawn by Sol Hess between
 * 1936 and 1947. Century Gothic maintains the basic design of 20th Century but has
 * an enlarged 'x' height and has been modified to ensure satisfactory output from
 * modern digital systems. The design is influenced by the geometric style sans
 * serif faces which were popular during the 1920's and 30's. Useful for headlines
 * and general display work and for small quantities of text, particularly in
 * advertising.
 * 
 * Manufacturer:
 * Monotype Typography, Inc.
 * 
 * Designer:
 * Monotype Type Drawing Office
 * 
 * Vendor URL:
 * http://www.monotype.com/html/mtname/ms_welcome.html
 * 
 * License information:
 * http://www.monotype.com/html/type/license.html
 */
Cufon.registerFont({"w":1229,"face":{"font-family":"Century Gothic","font-weight":700,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 7 2 2 2 2 2 2 4","ascent":"1638","descent":"-410","x-height":"28","bbox":"-235 -2297 2580 628","underline-thickness":"184","underline-position":"-96","unicode-range":"U+0020-U+F108"},"glyphs":{" ":{"w":573},"!":{"d":"148,-1508r276,0r0,1075r-276,0r0,-1075xm115,-143v0,-92,79,-171,171,-171v92,0,172,79,172,171v0,91,-80,171,-172,171v-92,0,-171,-79,-171,-171","w":573},"\"":{"d":"653,-1004r-156,0r-55,-504r267,0xm242,-1004r-156,0r-55,-504r267,0","w":737},"#":{"d":"1110,-678r0,199r-231,0r-71,479r-201,0r70,-479r-191,0r-70,479r-200,0r70,-479r-225,0r0,-199r256,0r30,-188r-223,0r0,-199r251,0r65,-443r195,0r-62,443r191,0r65,-443r201,0r-65,443r202,0r0,199r-231,0r-26,188r200,0xm736,-866r-194,0r-26,188r189,0"},"$":{"d":"139,-1134v-4,-207,180,-371,388,-374r0,-100r188,0r0,113v158,40,211,83,324,194r-193,188v-88,-91,-175,-136,-261,-136v-130,0,-229,128,-129,223v29,28,83,62,166,96v148,61,249,114,304,157v100,79,169,194,170,360v1,156,-76,293,-168,361v-49,37,-120,66,-213,85r0,267r-188,0r0,-261v-218,-26,-330,-125,-457,-252r190,-195v122,130,240,195,354,195v111,0,218,-95,212,-203v-7,-134,-76,-168,-198,-227v-158,-75,-266,-132,-322,-175v-96,-73,-164,-169,-167,-316","w":1147},"%":{"d":"894,-1442v182,-6,334,-33,458,-94r202,0r-1166,1636r-202,0r997,-1405v-151,25,-297,39,-461,23v89,248,-95,477,-327,477v-190,0,-357,-160,-353,-349v4,-201,151,-354,341,-354v137,0,381,71,511,66xm562,-1157v0,-91,-78,-168,-169,-168v-90,0,-169,78,-169,168v0,91,78,169,169,169v91,0,169,-78,169,-169xm1017,-311v0,-189,162,-352,351,-352v188,0,351,163,351,352v0,188,-163,351,-351,351v-189,0,-351,-163,-351,-351xm1536,-312v0,-91,-78,-170,-169,-170v-92,0,-170,79,-170,170v0,91,78,170,170,170v91,0,169,-79,169,-170","w":1761},"&":{"d":"97,-316v7,-215,109,-314,261,-436v-147,-212,-204,-361,-47,-553v114,-139,417,-137,531,-1v98,117,122,237,50,373v-27,52,-94,127,-196,228v119,141,196,228,231,263v21,-16,76,-61,163,-136r167,191r-151,137r236,250r-339,0r-97,-100v-155,91,-298,137,-431,137v-216,0,-385,-144,-378,-353xm578,-1156v-49,0,-91,43,-91,90v0,48,24,103,71,164v74,-63,111,-119,111,-168v1,-51,-39,-86,-91,-86xm358,-331v1,63,71,115,143,115v59,0,134,-26,223,-78v-51,-51,-124,-135,-217,-252v-99,82,-149,154,-149,215","w":1393},"'":{"d":"303,-1004r-156,0r-55,-504r266,0","w":451},"(":{"d":"93,-571v0,-440,99,-678,287,-965r346,0v-220,251,-353,531,-353,973v0,463,119,702,353,989r-346,0v-194,-316,-287,-534,-287,-997","w":778},")":{"d":"686,-539v0,440,-99,678,-287,965r-346,0v220,-252,353,-530,353,-973v0,-464,-120,-700,-353,-989r346,0v194,316,287,534,287,997","w":778},"*":{"d":"331,-1508r254,0r-79,301r226,-213r117,220r-305,78r305,87r-132,217r-218,-217r77,300r-245,0r77,-300r-223,217r-133,-217r306,-87r-306,-85r133,-223r223,223","w":901},"+":{"d":"490,-860r0,-375r250,0r0,375r374,0r0,250r-374,0r0,374r-250,0r0,-374r-375,0r0,-250r375,0"},",":{"d":"269,-277r195,98r-247,422r-136,-65","w":573},"-":{"d":"176,-669r508,0r0,254r-508,0r0,-254","w":860},"\u00ad":{"d":"176,-669r508,0r0,254r-508,0r0,-254","w":860},".":{"d":"130,-129v0,-84,73,-156,157,-156v84,0,157,72,157,156v0,84,-73,157,-157,157v-84,0,-157,-73,-157,-157","w":573},"\/":{"d":"44,262r661,-1775r194,0r-662,1775r-193,0","w":942},"0":{"d":"569,-1508v243,0,379,128,457,320v81,197,82,714,0,909v-82,195,-199,316,-449,316v-246,0,-379,-121,-456,-311v-43,-105,-64,-254,-64,-447v0,-270,41,-466,125,-587v92,-134,222,-200,387,-200xm746,-1132v-70,-113,-194,-144,-296,-64v-37,30,-65,82,-84,156v-19,74,-29,182,-29,325v0,186,25,313,67,385v80,136,247,139,334,6v86,-131,89,-678,8,-808","w":1147},"1":{"d":"337,-1471r419,0r0,1471r-278,0r0,-1208r-303,0","w":1147},"2":{"d":"571,-1246v-130,2,-213,111,-214,249r-273,0v8,-300,206,-512,505,-511v193,1,327,89,401,220v94,166,69,318,-14,498v-68,148,-295,382,-437,531r524,0r0,259r-1019,0r0,-134r455,-464v110,-111,183,-200,219,-268v36,-68,55,-129,55,-184v2,-113,-87,-198,-202,-196","w":1147},"3":{"d":"565,-1239v-85,4,-156,61,-176,131r-269,0v25,-238,213,-400,454,-400v226,0,430,174,426,388v-3,153,-92,254,-209,310v163,46,283,178,285,374v3,269,-235,473,-518,473v-291,0,-485,-198,-497,-482r277,0v20,137,94,222,235,225v125,4,231,-96,227,-217v-5,-157,-152,-243,-338,-240r0,-240v119,-10,180,-30,228,-96v71,-98,-3,-231,-125,-226","w":1147},"4":{"d":"678,-1508r280,0r0,947r131,0r0,259r-131,0r0,302r-274,0r0,-302r-642,0r0,-259xm684,-561r0,-493r-336,493r336,0","w":1147},"5":{"d":"570,-695v-80,2,-131,42,-178,92r-228,-51r178,-817r689,0r0,258r-480,0r-60,268v314,-73,560,171,560,472v0,278,-228,513,-503,510v-265,-3,-453,-170,-500,-400r294,0v38,80,107,138,212,140v126,2,223,-107,223,-239v0,-126,-89,-235,-207,-233","w":1147},"6":{"d":"565,37v-294,0,-538,-281,-443,-593v14,-46,45,-117,94,-212r378,-740r238,119r-257,500v248,-5,449,213,449,467v0,249,-212,459,-459,459xm750,-426v0,-110,-83,-198,-191,-198v-105,0,-184,90,-184,198v0,106,85,201,185,201v105,0,190,-91,190,-201","w":1147},"7":{"d":"123,-1471r965,0r0,147r-664,1361r-237,-115r552,-1130r-616,0r0,-263","w":1147},"8":{"d":"1012,-1095v0,143,-53,203,-137,298v119,74,209,206,209,382v0,182,-106,330,-234,397v-133,70,-426,68,-556,2v-129,-66,-233,-212,-231,-399v2,-181,85,-295,202,-382v-76,-77,-133,-168,-133,-302v0,-254,180,-409,442,-409v261,0,438,164,438,413xm732,-1078v0,-95,-70,-160,-167,-160v-91,0,-158,70,-158,162v0,92,72,167,163,167v95,0,162,-73,162,-169xm807,-434v0,-122,-106,-214,-231,-214v-124,0,-239,91,-239,208v0,123,105,212,236,212v134,0,234,-80,234,-206","w":1147},"9":{"d":"582,-1508v294,0,539,282,444,594v-14,46,-46,116,-95,211r-378,740r-238,-118r257,-500v-248,5,-449,-213,-449,-467v0,-250,211,-460,459,-460xm397,-1045v0,109,83,199,191,199v104,0,184,-91,184,-198v0,-107,-84,-202,-185,-202v-104,0,-190,93,-190,201","w":1147},":":{"d":"130,-959v0,-84,73,-157,157,-157v84,0,157,73,157,157v0,83,-73,156,-157,156v-84,0,-157,-72,-157,-156xm130,-129v0,-84,73,-156,157,-156v84,0,157,72,157,156v0,84,-73,157,-157,157v-84,0,-157,-73,-157,-157","w":573},";":{"d":"130,-959v0,-84,73,-157,157,-157v84,0,157,73,157,157v0,84,-73,156,-157,156v-84,0,-157,-72,-157,-156xm271,-278r191,100r-245,421r-137,-66","w":573},"\u037e":{"d":"130,-959v0,-84,73,-157,157,-157v84,0,157,73,157,157v0,84,-73,156,-157,156v-84,0,-157,-72,-157,-156xm271,-278r191,100r-245,421r-137,-66","w":573},"<":{"d":"1114,-366r0,250r-999,-508r0,-222r999,-508r0,249r-712,370"},"=":{"d":"115,-1074r999,0r0,250r-999,0r0,-250xm115,-646r999,0r0,250r-999,0r0,-250"},">":{"d":"115,-1105r0,-249r999,508r0,222r-999,508r0,-250r713,-369"},"?":{"d":"573,-1286v-118,0,-211,80,-211,195r-262,0v-5,-264,210,-449,485,-445v196,3,320,79,399,202v88,137,69,326,-20,439v-18,36,-203,193,-224,229v-36,60,-52,129,-56,237r-271,0v-9,-236,70,-374,207,-494v71,-62,113,-105,128,-128v69,-119,-36,-235,-175,-235xm382,-144v0,-92,79,-171,171,-171v94,0,176,78,176,171v0,93,-81,172,-174,172v-93,0,-173,-80,-173,-172","w":1147},"@":{"d":"812,-121v192,0,292,-72,416,-180r191,0v-130,157,-201,233,-390,293v-220,70,-447,33,-630,-70v-218,-123,-391,-362,-391,-676v0,-312,174,-565,390,-684v121,-67,252,-102,396,-102v371,0,713,293,713,642v0,266,-138,441,-322,535v-76,39,-140,58,-191,58v-71,0,-121,-30,-122,-107v-59,65,-130,97,-214,97v-196,1,-331,-161,-331,-370v0,-241,175,-484,424,-476v119,4,195,52,247,131r21,-105r196,0r-109,653v0,15,19,33,35,30v138,-29,232,-206,229,-389v-6,-347,-232,-552,-580,-552v-262,0,-451,130,-552,309v-109,193,-108,461,1,652v103,180,306,311,573,311xm573,-705v0,103,66,179,166,179v115,0,201,-119,201,-233v0,-99,-68,-177,-163,-177v-112,0,-204,113,-204,231","w":1515},"A":{"d":"616,-1471r284,0r566,1471r-291,0r-115,-303r-600,0r-120,303r-291,0xm760,-1081r-196,505r391,0","w":1515},"B":{"d":"830,-810v157,74,255,178,258,381v3,175,-107,318,-229,379v-154,77,-459,42,-691,50r0,-1471v165,0,422,-2,525,26v159,44,288,167,288,354v0,137,-60,212,-151,281xm710,-1054v0,-128,-116,-161,-262,-150r0,310v149,10,262,-28,262,-160xm813,-439v0,-173,-158,-214,-365,-205r0,377v200,1,365,-1,365,-172","w":1188},"C":{"d":"875,37v-448,10,-786,-329,-780,-775v5,-323,162,-541,385,-666v225,-126,507,-139,750,-27v112,51,209,124,290,219r-196,187v-133,-141,-283,-211,-450,-211v-275,0,-506,225,-500,499v6,308,202,505,505,505v218,0,307,-80,445,-211r190,198v-191,180,-325,275,-639,282","w":1597},"D":{"d":"169,-1471v281,-1,653,-6,809,79v201,110,361,364,358,677v-3,344,-172,591,-428,679v-132,45,-513,35,-739,36r0,-1471xm1053,-722v-5,-316,-166,-485,-510,-479r-95,0r0,927v146,2,335,-4,408,-44v118,-66,200,-213,197,-404","w":1434},"E":{"d":"169,-1471r803,0r0,274r-525,0r0,266r525,0r0,269r-525,0r0,387r525,0r0,275r-803,0r0,-1471","w":1065},"F":{"d":"172,-1471r730,0r0,273r-453,0r0,267r453,0r0,269r-453,0r0,662r-277,0r0,-1471","w":983},"G":{"d":"383,-740v0,281,241,515,527,509v215,-5,331,-93,405,-252r-426,0r0,-263r740,0v23,316,-153,573,-357,692v-217,126,-563,114,-782,-8v-214,-119,-388,-371,-388,-681v0,-195,64,-364,193,-508v153,-171,351,-257,596,-257v290,0,475,98,635,277r-197,195v-125,-132,-270,-198,-436,-198v-278,0,-510,222,-510,494","w":1720},"H":{"d":"167,-1471r284,0r0,555r492,0r0,-555r283,0r0,1471r-283,0r0,-645r-492,0r0,645r-284,0r0,-1471","w":1393},"I":{"d":"148,-1471r278,0r0,1471r-278,0r0,-1471","w":573},"J":{"d":"240,-365v71,76,105,128,205,128v30,0,52,-13,67,-38v15,-25,22,-81,22,-167r0,-1029r281,0r0,976v-3,273,-19,378,-159,477v-55,39,-125,55,-204,55v-162,0,-300,-71,-414,-213","w":983},"K":{"d":"170,-1471r283,0r0,506r399,-506r337,0r-514,656r564,815r-332,0r-454,-653r0,653r-283,0r0,-1471","w":1270},"L":{"d":"168,-1471r280,0r0,1204r408,0r0,267r-688,0r0,-1471","w":901},"M":{"d":"310,-1471r274,0r340,1026r345,-1026r270,0r248,1471r-270,0r-158,-929r-313,929r-247,0r-309,-929r-161,929r-273,0","w":1843},"N":{"d":"169,-1471r268,0r631,968r0,-968r280,0r0,1471r-269,0r-630,-965r0,965r-280,0r0,-1471","w":1515},"O":{"d":"865,37v-425,0,-775,-359,-769,-773v4,-310,169,-547,382,-668v120,-68,248,-104,385,-104v410,0,761,361,761,777v0,416,-346,768,-759,768xm1344,-733v0,-270,-218,-501,-484,-501v-272,0,-482,224,-482,503v0,276,214,497,487,497v263,0,479,-230,479,-499","w":1720},"P":{"d":"167,-1471v209,1,524,-8,645,45v135,59,229,192,229,382v0,215,-126,349,-299,398v-54,15,-152,23,-295,23r0,623r-280,0r0,-1471xm770,-1044v-5,-125,-85,-155,-244,-153r-79,0r0,301v75,0,197,0,235,-15v51,-20,91,-65,88,-133","w":1147},"Q":{"d":"862,-1508v411,0,762,360,762,777v0,199,-65,371,-194,516r256,331r-332,0r-130,-167v-107,59,-227,88,-359,88v-426,0,-775,-357,-769,-773v5,-310,169,-546,382,-668v120,-68,247,-104,384,-104xm378,-731v0,338,337,598,674,458r-263,-339r334,0r132,171v59,-88,89,-185,89,-292v0,-268,-219,-501,-482,-501v-274,0,-484,223,-484,503","w":1720},"R":{"d":"1061,-1044v-3,213,-109,330,-279,390r348,654r-306,0r-331,-623r-26,0r0,623r-280,0r0,-1471v207,1,527,-9,645,43v132,58,230,198,229,384xm555,-896v154,-3,231,-20,235,-151v2,-67,-41,-115,-92,-135v-35,-14,-156,-16,-231,-15r0,301r88,0","w":1188},"S":{"d":"110,-1136v0,-206,190,-381,404,-372v208,9,298,94,425,237r-207,183v-73,-101,-147,-152,-222,-152v-95,0,-164,91,-100,166v17,36,369,326,399,358v93,100,153,175,156,336v5,245,-197,423,-451,417v-249,-6,-377,-129,-473,-319r235,-142v71,130,152,195,244,195v86,0,170,-61,170,-139v0,-33,-12,-67,-37,-100v-25,-33,-79,-84,-163,-153v-160,-131,-263,-232,-310,-303v-47,-71,-70,-141,-70,-212","w":1065},"T":{"d":"23,-1471r813,0r0,276r-268,0r0,1195r-284,0r0,-1195r-261,0r0,-276","w":860},"U":{"d":"158,-1471r281,0r0,952v1,147,14,202,93,255v65,43,182,41,246,-3v89,-62,95,-114,95,-287r0,-917r281,0r0,877v-3,272,-7,341,-120,474v-86,101,-200,155,-377,157v-212,2,-383,-113,-448,-257v-34,-74,-51,-199,-51,-374r0,-877","w":1311},"V":{"d":"56,-1471r288,0r370,1045r375,-1045r288,0r-530,1471r-270,0","w":1434},"W":{"d":"56,-1471r276,0r212,939r263,-939r233,0r266,939r210,-939r276,0r-331,1471r-269,0r-271,-951r-266,951r-266,0","w":1843},"X":{"d":"72,-1471r315,0r308,471r311,-471r315,0r-468,712r497,759r-315,0r-340,-517r-337,517r-317,0r497,-759","w":1393},"Y":{"d":"63,-1471r301,0r274,528r272,-528r297,0r-430,834r0,637r-282,0r0,-637","w":1270},"Z":{"d":"90,-1471r890,0r-525,1202r491,0r0,269r-899,0r523,-1194r-480,0r0,-277","w":1024},"[":{"d":"169,-1508r438,0r0,255r-162,0r0,1397r162,0r0,254r-438,0r0,-1906","w":655},"\\":{"d":"1082,262r-193,0r-661,-1775r193,0","w":1311},"]":{"d":"486,398r-438,0r0,-255r162,0r0,-1397r-162,0r0,-254r438,0r0,1906","w":655},"^":{"d":"497,-1471r232,0r390,1105r-242,0r-262,-748r-263,748r-243,0"},"_":{"d":"-12,154r1048,0r0,102r-1048,0r0,-102","w":1024},"`":{"d":"382,-1679r239,392r-196,0r-366,-392r323,0","w":860},"a":{"d":"599,-1116v153,2,258,62,343,148r0,-120r272,0r0,1088r-272,0r0,-115v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324","w":1352},"b":{"d":"745,28v-154,-3,-244,-57,-336,-143r0,115r-271,0r0,-1508r271,0r0,540v87,-86,190,-146,344,-148v293,-4,511,262,511,574v0,303,-232,575,-519,570xm992,-545v0,-178,-124,-319,-296,-319v-174,0,-299,138,-299,318v0,183,124,324,299,324v169,0,296,-146,296,-323","w":1352},"c":{"d":"361,-536v0,186,140,315,330,315v122,0,217,-42,285,-125r215,147v-117,151,-281,227,-494,227v-191,0,-339,-58,-449,-170v-176,-179,-216,-461,-84,-689v95,-165,289,-285,537,-285v233,0,403,102,502,248r-227,125v-77,-78,-137,-116,-273,-119v-196,-4,-342,134,-342,326","w":1311},"d":{"d":"599,-1116v153,2,258,62,343,148r0,-540r272,0r0,1508r-272,0r0,-115v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324","w":1352},"e":{"d":"650,-1116v359,0,605,265,578,651r-877,0v23,150,140,254,312,253v102,0,190,-36,263,-107r230,108v-107,151,-250,235,-491,239v-330,6,-578,-243,-578,-566v0,-322,244,-578,563,-578xm954,-680v-32,-115,-148,-209,-291,-205v-154,4,-245,71,-300,205r591,0","w":1311},"f":{"d":"562,-1289v-84,-22,-182,-42,-183,65r-1,136r173,0r0,232r-173,0r0,856r-273,0r0,-856r-97,0r0,-232r97,0v1,-143,3,-227,7,-253v16,-125,109,-197,258,-195v57,0,121,13,192,39r0,208","w":573},"g":{"d":"597,-1116v157,1,250,59,345,148r0,-120r272,0r0,932v6,401,-192,577,-560,582v-309,4,-485,-120,-564,-346r301,0v53,61,137,93,252,93v134,0,228,-42,271,-122v19,-36,28,-98,28,-186v-87,86,-175,132,-330,135v-295,5,-521,-252,-521,-558v0,-308,213,-561,506,-558xm956,-555v0,-176,-123,-306,-297,-306v-169,0,-297,134,-297,304v0,175,130,310,302,310v171,0,292,-132,292,-308","w":1352},"h":{"d":"735,-1116v215,0,368,151,368,397r0,719r-269,0r0,-477v0,-126,-6,-211,-18,-256v-21,-82,-75,-133,-169,-133v-124,0,-204,93,-225,205v-27,144,-9,472,-12,661r-271,0r0,-1508r271,0r0,530v90,-76,185,-138,325,-138"},"i":{"d":"71,-1362v0,-93,81,-174,174,-174v94,0,175,83,175,178v0,94,-80,176,-173,176v-96,0,-176,-84,-176,-180xm108,-1088r274,0r0,1088r-274,0r0,-1088","w":491},"j":{"d":"93,-1362v0,-93,80,-174,173,-174v95,0,176,82,176,178v0,94,-80,177,-173,177v-96,0,-176,-85,-176,-181xm26,201v83,0,104,-48,104,-145r0,-1144r273,0r0,1124v-1,187,-23,285,-127,349v-107,66,-222,48,-363,0r0,-215v43,21,80,31,113,31","w":532},"k":{"d":"140,-1508r273,0r0,869r402,-449r342,0r-468,522r525,566r-339,0r-462,-501r0,501r-273,0r0,-1508","w":1188},"l":{"d":"109,-1508r273,0r0,1508r-273,0r0,-1508","w":491},"m":{"d":"1068,-920v76,-113,195,-194,366,-196v157,-2,282,84,330,195v26,58,39,152,39,283r0,638r-275,0r0,-552v0,-123,-17,-205,-46,-250v-52,-79,-187,-86,-264,-26v-90,70,-108,155,-109,337r0,491r-275,0r0,-527v-1,-164,-10,-247,-86,-309v-61,-50,-166,-41,-228,8v-90,71,-110,161,-110,344r0,484r-274,0r0,-1088r274,0r0,125v83,-91,186,-153,342,-153v154,0,259,83,316,196","w":1925},"n":{"d":"733,-1116v214,0,370,150,370,397r0,719r-270,0r0,-477v0,-130,-5,-216,-17,-259v-21,-79,-76,-131,-169,-131v-125,0,-204,94,-225,209v-26,147,-8,468,-12,658r-272,0r0,-1088r272,0r0,111v103,-84,175,-139,323,-139"},"o":{"d":"85,-543v0,-305,261,-581,564,-573v332,8,577,237,577,571v0,226,-128,410,-285,497v-89,49,-185,76,-291,76v-305,0,-565,-264,-565,-571xm950,-544v0,-179,-122,-315,-297,-315v-170,0,-296,140,-296,315v0,180,122,318,295,318v172,0,298,-140,298,-318","w":1311},"p":{"d":"745,28v-154,-3,-244,-57,-336,-143r0,513r-271,0r0,-1486r271,0r0,120v87,-86,190,-146,344,-148v293,-4,511,262,511,574v0,303,-232,575,-519,570xm992,-545v0,-178,-124,-319,-296,-319v-174,0,-299,138,-299,318v0,183,124,324,299,324v169,0,296,-146,296,-323","w":1352},"q":{"d":"599,-1116v153,2,258,62,343,148r0,-120r272,0r0,1486r-272,0r0,-513v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324","w":1352},"r":{"d":"308,-951v50,-123,200,-211,350,-137r-85,235v-86,-45,-135,-26,-185,54v-32,50,-43,214,-43,359r0,440r-271,0r0,-1088r234,0r0,137","w":655},"s":{"d":"92,-804v0,-178,163,-317,354,-312v161,4,283,78,358,180r-169,169v-69,-68,-131,-102,-187,-102v-70,0,-129,57,-82,109v27,31,131,74,182,100v105,53,178,105,217,159v39,54,59,117,59,190v0,203,-172,339,-392,339v-159,0,-285,-62,-380,-186r168,-183v49,59,139,121,227,125v62,3,115,-34,120,-86v7,-66,-141,-134,-211,-169v-177,-87,-264,-200,-264,-333","w":901},"t":{"d":"171,-1489r272,0r0,401r162,0r0,235r-162,0r0,853r-272,0r0,-853r-140,0r0,-235r140,0r0,-401","w":614},"u":{"d":"137,-1088r276,0r0,524v2,173,7,240,89,305v57,46,172,46,230,1v81,-63,87,-117,87,-297r0,-533r274,0v-5,260,21,696,-45,851v-70,164,-205,265,-434,265v-243,1,-387,-117,-445,-303v-49,-158,-28,-571,-32,-813"},"v":{"d":"21,-1088r278,0r275,642r274,-642r277,0r-463,1088r-177,0","w":1147},"w":{"d":"17,-1088r267,0r219,619r236,-619r163,0r231,612r219,-612r269,0r-397,1088r-173,0r-232,-620r-239,620r-171,0","w":1638},"x":{"d":"40,-1088r317,0r213,297r216,-297r314,0r-372,515r418,573r-317,0r-259,-357r-256,357r-313,0r412,-573","w":1147},"y":{"d":"17,-1088r279,0r283,683r312,-683r280,0r-682,1486r-282,0r224,-479","w":1188},"z":{"d":"91,-1088r835,0r-490,857r462,0r0,231r-882,0r492,-857r-417,0r0,-231","w":942},"{":{"d":"644,451v-328,0,-412,-104,-412,-447v0,-127,-6,-212,-20,-256v-31,-92,-80,-131,-199,-138r0,-240v119,-6,161,-43,197,-132v32,-79,20,-424,40,-494v51,-181,203,-220,447,-215r0,240v-156,2,-201,2,-204,145v-4,151,2,356,-67,462v-25,38,-64,78,-121,115v97,57,154,136,173,270v7,2,8,313,25,388v33,60,77,61,194,63r0,239r-53,0","w":696},"|":{"d":"536,-1508r158,0r0,1906r-158,0r0,-1906"},"}":{"d":"52,-1471v327,1,412,104,412,448v0,127,6,212,20,256v31,92,79,130,199,137r0,240v-119,7,-160,42,-197,132v-32,79,-21,423,-40,494v-50,181,-204,220,-447,215r0,-239v156,-2,200,-2,204,-145v4,-151,-4,-356,66,-462v26,-39,65,-78,122,-115v-97,-57,-154,-136,-173,-271v-8,-1,-7,-315,-26,-387v-32,-61,-77,-61,-193,-63r0,-240r53,0","w":696},"~":{"d":"404,-668v-142,-31,-202,27,-304,104r0,-319v161,-73,228,-92,390,-53v60,14,246,109,313,131v23,8,46,10,69,10v74,0,160,-38,258,-113r0,322v-126,70,-233,87,-380,54v-49,-11,-276,-121,-346,-136"},"\u00c4":{"d":"616,-1471r284,0r566,1471r-291,0r-115,-303r-600,0r-120,303r-291,0xm760,-1081r-196,505r391,0xm392,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm835,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1515},"\u00c5":{"d":"616,-1471r284,0r566,1471r-291,0r-115,-303r-600,0r-120,303r-291,0xm760,-1081r-196,505r391,0xm538,-1809v0,-119,100,-223,219,-223v119,0,219,104,219,223v0,119,-101,224,-219,224v-118,0,-219,-105,-219,-224xm839,-1814v0,-47,-37,-89,-82,-89v-45,0,-82,42,-82,89v0,47,37,90,82,90v45,0,82,-43,82,-90","w":1515},"\u00c7":{"d":"875,37v-448,10,-786,-329,-780,-775v5,-323,162,-541,385,-666v225,-126,507,-139,750,-27v112,51,209,124,290,219r-196,187v-133,-141,-283,-211,-450,-211v-275,0,-506,225,-500,499v6,308,202,505,505,505v218,0,307,-80,445,-211r190,198v-191,180,-325,275,-639,282xm813,158v4,-60,-73,-59,-135,-54r35,-120r169,0r-12,46v77,15,144,73,144,154v0,121,-116,197,-257,197v-65,0,-139,-15,-222,-46r36,-129v85,27,236,52,242,-48","w":1597},"\u00c9":{"d":"169,-1471r803,0r0,274r-525,0r0,266r525,0r0,269r-525,0r0,387r525,0r0,275r-803,0r0,-1471xm617,-1977r323,0r-366,392r-196,0","w":1065},"\u00d1":{"d":"169,-1471r268,0r631,968r0,-968r280,0r0,1471r-269,0r-630,-965r0,965r-280,0r0,-1471xm932,-1585v-92,0,-209,-56,-304,-56v-59,0,-117,17,-176,52r-110,-165v85,-66,172,-99,259,-99v47,0,229,56,297,56v56,0,114,-17,174,-52r104,156v-84,72,-165,108,-244,108","w":1515},"\u00d6":{"d":"865,37v-425,0,-775,-359,-769,-773v4,-310,169,-547,382,-668v120,-68,248,-104,385,-104v410,0,761,361,761,777v0,416,-346,768,-759,768xm1344,-733v0,-270,-218,-501,-484,-501v-272,0,-482,224,-482,503v0,276,214,497,487,497v263,0,479,-230,479,-499xm495,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm938,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1720},"\u00dc":{"d":"158,-1471r281,0r0,952v1,147,14,202,93,255v65,43,182,41,246,-3v89,-62,95,-114,95,-287r0,-917r281,0r0,877v-3,272,-7,341,-120,474v-86,101,-200,155,-377,157v-212,2,-383,-113,-448,-257v-34,-74,-51,-199,-51,-374r0,-877xm291,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm734,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1311},"\u00e1":{"d":"599,-1116v153,2,258,62,343,148r0,-120r272,0r0,1088r-272,0r0,-115v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324xm724,-1679r323,0r-366,392r-196,0","w":1352},"\u00e0":{"d":"599,-1116v153,2,258,62,343,148r0,-120r272,0r0,1088r-272,0r0,-115v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324xm628,-1679r239,392r-196,0r-366,-392r323,0","w":1352},"\u00e2":{"d":"599,-1116v153,2,258,62,343,148r0,-120r272,0r0,1088r-272,0r0,-115v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324xm267,-1287r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1352},"\u00e4":{"d":"599,-1116v153,2,258,62,343,148r0,-120r272,0r0,1088r-272,0r0,-115v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324xm311,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm754,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1352},"\u00e3":{"d":"599,-1116v153,2,258,62,343,148r0,-120r272,0r0,1088r-272,0r0,-115v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324xm849,-1287v-92,0,-209,-56,-304,-56v-59,0,-117,17,-176,52r-110,-165v85,-66,172,-99,259,-99v47,0,229,56,297,56v56,0,114,-17,174,-52r104,156v-84,72,-165,108,-244,108","w":1352},"\u00e5":{"d":"599,-1116v153,2,258,62,343,148r0,-120r272,0r0,1088r-272,0r0,-115v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324xm457,-1511v0,-119,100,-223,219,-223v119,0,219,104,219,223v0,119,-101,224,-219,224v-118,0,-219,-105,-219,-224xm758,-1516v0,-47,-37,-89,-82,-89v-45,0,-82,42,-82,89v0,47,37,90,82,90v45,0,82,-43,82,-90","w":1352},"\u00e7":{"d":"361,-536v0,186,140,315,330,315v122,0,217,-42,285,-125r215,147v-117,151,-281,227,-494,227v-191,0,-339,-58,-449,-170v-176,-179,-216,-461,-84,-689v95,-165,289,-285,537,-285v233,0,403,102,502,248r-227,125v-77,-78,-137,-116,-273,-119v-196,-4,-342,134,-342,326xm670,158v4,-60,-73,-59,-135,-54r35,-120r169,0r-12,46v77,15,144,73,144,154v0,121,-116,197,-257,197v-65,0,-139,-15,-222,-46r36,-129v85,27,236,52,242,-48","w":1311},"\u00e9":{"d":"650,-1116v359,0,605,265,578,651r-877,0v23,150,140,254,312,253v102,0,190,-36,263,-107r230,108v-107,151,-250,235,-491,239v-330,6,-578,-243,-578,-566v0,-322,244,-578,563,-578xm954,-680v-32,-115,-148,-209,-291,-205v-154,4,-245,71,-300,205r591,0xm703,-1679r323,0r-366,392r-196,0","w":1311},"\u00e8":{"d":"650,-1116v359,0,605,265,578,651r-877,0v23,150,140,254,312,253v102,0,190,-36,263,-107r230,108v-107,151,-250,235,-491,239v-330,6,-578,-243,-578,-566v0,-322,244,-578,563,-578xm954,-680v-32,-115,-148,-209,-291,-205v-154,4,-245,71,-300,205r591,0xm607,-1679r239,392r-196,0r-366,-392r323,0","w":1311},"\u00ea":{"d":"650,-1116v359,0,605,265,578,651r-877,0v23,150,140,254,312,253v102,0,190,-36,263,-107r230,108v-107,151,-250,235,-491,239v-330,6,-578,-243,-578,-566v0,-322,244,-578,563,-578xm954,-680v-32,-115,-148,-209,-291,-205v-154,4,-245,71,-300,205r591,0xm247,-1287r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1311},"\u00eb":{"d":"650,-1116v359,0,605,265,578,651r-877,0v23,150,140,254,312,253v102,0,190,-36,263,-107r230,108v-107,151,-250,235,-491,239v-330,6,-578,-243,-578,-566v0,-322,244,-578,563,-578xm954,-680v-32,-115,-148,-209,-291,-205v-154,4,-245,71,-300,205r591,0xm291,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm734,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1311},"\u00ed":{"d":"108,-1088r274,0r0,1088r-274,0r0,-1088xm294,-1679r323,0r-366,392r-196,0","w":491},"\u00ec":{"d":"108,-1088r274,0r0,1088r-274,0r0,-1088xm198,-1679r239,392r-196,0r-366,-392r323,0","w":491},"\u00ee":{"d":"108,-1088r274,0r0,1088r-274,0r0,-1088xm-163,-1287r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":491},"\u00ef":{"d":"108,-1088r274,0r0,1088r-274,0r0,-1088xm-119,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm324,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":491},"\u00f1":{"d":"733,-1116v214,0,370,150,370,397r0,719r-270,0r0,-477v0,-130,-5,-216,-17,-259v-21,-79,-76,-131,-169,-131v-125,0,-204,94,-225,209v-26,147,-8,468,-12,658r-272,0r0,-1088r272,0r0,111v103,-84,175,-139,323,-139xm788,-1287v-92,0,-209,-56,-304,-56v-59,0,-117,17,-176,52r-110,-165v85,-66,172,-99,259,-99v47,0,229,56,297,56v56,0,114,-17,174,-52r104,156v-84,72,-165,108,-244,108"},"\u00f3":{"d":"85,-543v0,-305,261,-581,564,-573v332,8,577,237,577,571v0,226,-128,410,-285,497v-89,49,-185,76,-291,76v-305,0,-565,-264,-565,-571xm950,-544v0,-179,-122,-315,-297,-315v-170,0,-296,140,-296,315v0,180,122,318,295,318v172,0,298,-140,298,-318xm703,-1679r323,0r-366,392r-196,0","w":1311},"\u00f2":{"d":"85,-543v0,-305,261,-581,564,-573v332,8,577,237,577,571v0,226,-128,410,-285,497v-89,49,-185,76,-291,76v-305,0,-565,-264,-565,-571xm950,-544v0,-179,-122,-315,-297,-315v-170,0,-296,140,-296,315v0,180,122,318,295,318v172,0,298,-140,298,-318xm607,-1679r239,392r-196,0r-366,-392r323,0","w":1311},"\u00f4":{"d":"85,-543v0,-305,261,-581,564,-573v332,8,577,237,577,571v0,226,-128,410,-285,497v-89,49,-185,76,-291,76v-305,0,-565,-264,-565,-571xm950,-544v0,-179,-122,-315,-297,-315v-170,0,-296,140,-296,315v0,180,122,318,295,318v172,0,298,-140,298,-318xm247,-1287r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1311},"\u00f6":{"d":"85,-543v0,-305,261,-581,564,-573v332,8,577,237,577,571v0,226,-128,410,-285,497v-89,49,-185,76,-291,76v-305,0,-565,-264,-565,-571xm950,-544v0,-179,-122,-315,-297,-315v-170,0,-296,140,-296,315v0,180,122,318,295,318v172,0,298,-140,298,-318xm290,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm733,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1311},"\u00f5":{"d":"85,-543v0,-305,261,-581,564,-573v332,8,577,237,577,571v0,226,-128,410,-285,497v-89,49,-185,76,-291,76v-305,0,-565,-264,-565,-571xm950,-544v0,-179,-122,-315,-297,-315v-170,0,-296,140,-296,315v0,180,122,318,295,318v172,0,298,-140,298,-318xm829,-1287v-92,0,-209,-56,-304,-56v-59,0,-117,17,-176,52r-110,-165v85,-66,172,-99,259,-99v47,0,229,56,297,56v56,0,114,-17,174,-52r104,156v-84,72,-165,108,-244,108","w":1311},"\u00fa":{"d":"137,-1088r276,0r0,524v2,173,7,240,89,305v57,46,172,46,230,1v81,-63,87,-117,87,-297r0,-533r274,0v-5,260,21,696,-45,851v-70,164,-205,265,-434,265v-243,1,-387,-117,-445,-303v-49,-158,-28,-571,-32,-813xm663,-1679r323,0r-366,392r-196,0"},"\u00f9":{"d":"137,-1088r276,0r0,524v2,173,7,240,89,305v57,46,172,46,230,1v81,-63,87,-117,87,-297r0,-533r274,0v-5,260,21,696,-45,851v-70,164,-205,265,-434,265v-243,1,-387,-117,-445,-303v-49,-158,-28,-571,-32,-813xm567,-1679r239,392r-196,0r-366,-392r323,0"},"\u00fb":{"d":"137,-1088r276,0r0,524v2,173,7,240,89,305v57,46,172,46,230,1v81,-63,87,-117,87,-297r0,-533r274,0v-5,260,21,696,-45,851v-70,164,-205,265,-434,265v-243,1,-387,-117,-445,-303v-49,-158,-28,-571,-32,-813xm206,-1287r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0"},"\u00fc":{"d":"137,-1088r276,0r0,524v2,173,7,240,89,305v57,46,172,46,230,1v81,-63,87,-117,87,-297r0,-533r274,0v-5,260,21,696,-45,851v-70,164,-205,265,-434,265v-243,1,-387,-117,-445,-303v-49,-158,-28,-571,-32,-813xm250,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm693,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144"},"\u2020":{"d":"442,-1508r267,0r-48,548r453,-49r0,271r-453,-55r48,1191r-267,0r50,-1191r-452,55r0,-271r452,49","w":1147},"\u00b0":{"d":"412,-1508v185,0,343,158,343,344v0,188,-159,344,-346,344v-188,0,-344,-157,-344,-347v0,-183,164,-341,347,-341xm412,-932v120,0,224,-108,224,-230v0,-126,-100,-233,-223,-233v-124,0,-229,107,-229,231v0,121,107,232,228,232","w":819},"\u00a2":{"d":"1024,-142v-105,107,-221,168,-415,170v-63,0,-127,-9,-190,-28r-111,243r-153,-66r120,-264v-197,-181,-251,-501,-121,-756v92,-180,299,-304,571,-265r96,-218r155,67r-94,210v73,46,130,101,169,164r-223,132v-15,-21,-33,-40,-52,-59r-255,577v130,47,238,12,328,-77xm619,-870v-172,10,-267,138,-264,330v0,65,13,126,38,183","w":1147},"\u00a3":{"d":"161,-1100v-2,-262,179,-408,429,-408v252,0,417,159,422,412r-281,0v-21,-103,-69,-155,-145,-155v-83,-1,-143,69,-143,157v0,50,40,144,59,195r340,0r0,252r-267,0v29,162,3,225,-56,392v27,1,136,29,194,29v69,0,107,-57,123,-110r259,0v-14,211,-168,373,-385,373v-79,0,-312,-37,-373,-37v-65,0,-130,11,-194,34r-94,-238v57,-23,110,-37,159,-44v73,-126,112,-224,86,-399r-240,0r0,-252r154,0v-31,-67,-47,-134,-47,-201","w":1147},"\u00a7":{"d":"168,-1191v-2,-201,182,-345,399,-345v222,0,409,175,418,384r-265,0v-20,-89,-74,-133,-161,-133v-92,0,-145,82,-88,146v111,125,428,267,514,418v33,55,49,116,49,183v-2,155,-91,261,-214,307v103,88,170,162,170,320v0,207,-178,341,-406,337v-250,-4,-387,-146,-416,-378r259,0v31,79,67,123,158,128v93,5,165,-79,109,-155v-14,-19,-44,-43,-89,-76v-142,-105,-367,-226,-451,-363v-32,-53,-47,-115,-47,-185v-2,-150,89,-274,199,-313v-80,-65,-137,-147,-138,-275xm660,-342v90,-42,132,-64,132,-151v0,-25,-10,-52,-30,-79v-49,-62,-216,-164,-299,-224v-100,35,-166,155,-79,249v44,48,202,152,276,205","w":1147},"\u2022":{"d":"307,-746v0,-165,142,-307,307,-307v165,0,307,142,307,307v0,166,-142,308,-307,308v-165,0,-307,-142,-307,-308"},"\u00b6":{"d":"163,-1104v4,-291,160,-409,473,-409r420,0r0,116r-82,0r0,1776r-139,0r0,-1776r-144,0r0,1776r-139,0r0,-1089v-243,1,-392,-149,-389,-394"},"\u00df":{"d":"871,-448v-7,-166,-116,-251,-292,-257r0,-244v124,2,222,-62,223,-175v2,-88,-74,-161,-164,-159v-98,2,-177,70,-204,151v-15,46,-24,125,-24,237r0,895r-273,0r0,-895v0,-307,61,-454,235,-567v78,-51,170,-74,275,-74v235,0,437,157,431,374v-5,199,-121,303,-310,333v155,26,268,108,329,225v29,57,44,121,44,193v0,265,-177,439,-443,439v-57,0,-113,-11,-168,-34r0,-255v42,22,84,33,127,33v119,0,219,-102,214,-220"},"\u00ae":{"d":"1422,-1138v134,232,134,532,0,764v-121,209,-360,382,-664,382v-302,0,-544,-174,-664,-382v-134,-232,-134,-532,0,-764v121,-210,359,-382,664,-382v303,0,544,173,664,382xm760,-1362v-327,0,-617,279,-610,604v5,240,136,426,303,521v187,106,422,106,609,1v167,-94,299,-279,304,-517v7,-329,-279,-609,-606,-609xm1106,-930v0,105,-30,142,-98,193v67,41,78,66,84,173v6,104,10,165,14,182v4,17,16,33,35,48r-210,0v-35,-49,-21,-228,-35,-273v-24,-79,-172,-44,-271,-52r0,325r-184,0r0,-839r371,0v146,0,207,24,260,108v23,37,34,82,34,135xm926,-914v0,-87,-43,-98,-146,-98r-155,0r0,199r154,0v103,-1,147,-14,147,-101","w":1515},"\u00a9":{"d":"1422,-1138v134,233,134,531,0,764v-121,210,-360,382,-664,382v-303,0,-544,-173,-664,-382v-133,-233,-134,-531,0,-764v121,-210,359,-382,664,-382v303,0,544,173,664,382xm1366,-754v0,-328,-280,-614,-607,-608v-241,5,-433,136,-528,302v-105,185,-106,418,0,602v95,165,286,302,526,302v239,0,434,-136,528,-300v53,-93,81,-192,81,-298xm790,-455v100,1,181,-70,190,-161r176,0v-19,171,-173,301,-366,301v-252,0,-429,-197,-429,-455v0,-252,176,-442,423,-440v209,2,335,113,372,293r-176,0v-20,-92,-88,-153,-194,-154v-156,0,-255,130,-255,299v0,170,106,315,259,317","w":1515},"\u2122":{"d":"1905,-1471r0,840r-176,0r0,-691r-275,691r-88,0r-266,-691r0,691r-176,0r0,-840r267,0r219,540r230,-540r265,0xm809,-1471r0,147r-262,0r0,693r-182,0r0,-693r-264,0r0,-147r708,0","w":2048},"\u00b4":{"d":"478,-1679r323,0r-366,392r-196,0","w":860},"\u00a8":{"d":"147,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm590,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1024},"\u2260":{"d":"803,-1074r258,0r0,250r-365,0r-76,178r441,0r0,250r-548,0r-186,433r-193,0r186,-433r-258,0r0,-250r365,0r76,-178r-441,0r0,-250r548,0r186,-434r193,0","w":1124},"\u00c6":{"d":"774,-1471r963,0r0,274r-517,0r0,267r517,0r0,269r-517,0r0,387r517,0r0,274r-796,0r0,-304r-449,0r-147,304r-288,0xm941,-579r0,-644r-317,644r317,0","w":1843},"\u00d8":{"d":"314,-194v-124,-125,-217,-312,-217,-542v0,-310,171,-546,383,-668v264,-152,585,-135,826,41r161,-190r126,104r-164,198v131,146,196,319,196,520v0,416,-346,768,-758,768v-159,0,-301,-42,-426,-125r-171,202r-127,-106xm862,-1234v-273,0,-483,223,-483,503v0,129,38,238,114,326r636,-749v-75,-53,-164,-80,-267,-80xm867,-234v262,0,478,-230,478,-499v0,-113,-33,-214,-100,-305r-625,738v75,44,157,66,247,66","w":1720},"\u221e":{"d":"392,-1014v124,0,226,83,287,171v85,-134,154,-222,323,-228v185,-6,307,150,307,349v0,200,-121,349,-307,349v-168,0,-238,-94,-323,-228v-62,89,-162,172,-287,172v-147,0,-242,-132,-242,-293v0,-161,95,-292,242,-292xm1163,-726v0,-110,-57,-196,-155,-198v-36,0,-72,12,-106,38v-34,26,-77,80,-130,162v56,86,95,139,118,158v35,30,74,45,115,45v105,1,158,-96,158,-205xm290,-727v0,111,97,183,186,121v35,-24,74,-64,117,-120v-67,-94,-130,-141,-190,-141v-69,1,-113,63,-113,140","w":1460},"\u00b1":{"d":"437,-1079r0,-375r250,0r0,375r374,0r0,250r-374,0r0,374r-250,0r0,-374r-375,0r0,-250r375,0xm62,-250r999,0r0,250r-999,0r0,-250","w":1124},"\u2264":{"d":"1061,-568r0,250r-999,-509r0,-221r999,-508r0,249r-712,370xm62,-206r999,0r0,250r-999,0r0,-250","w":1124},"\u2265":{"d":"62,-568r713,-369r-713,-370r0,-249r999,508r0,221r-999,509r0,-250xm1061,-206r0,250r-999,0r0,-250r999,0","w":1124},"\u00a5":{"d":"48,-1471r291,0r235,523r235,-523r291,0r-311,692r264,0r0,163r-338,0r0,128r338,0r0,169r-338,0r0,319r-283,0r0,-319r-339,0r0,-169r339,0r0,-128r-339,0r0,-163r265,0","w":1147},"\u00b5":{"d":"588,29v-114,0,-174,-60,-223,-148r0,517r-277,0r0,-1486r277,0r0,571v1,158,19,217,105,277v69,48,170,51,238,3v79,-56,103,-138,103,-288r0,-563r280,0r0,1088r-280,0r0,-127v-49,94,-105,156,-223,156","w":1180},"\u2202":{"d":"608,-1309v-131,0,-164,72,-228,186r-137,-84v57,-163,178,-284,370,-284v274,0,365,246,365,548v0,463,-164,968,-622,968v-195,0,-316,-144,-311,-354v5,-256,153,-437,348,-531v124,-59,265,-88,434,-82v-1,-128,-22,-222,-63,-280v-41,-58,-93,-87,-156,-87xm274,-338v-5,91,58,173,141,173v87,0,168,-50,245,-151v77,-101,129,-249,155,-442v-306,-15,-527,147,-541,420","w":1012},"\u2211":{"d":"139,-1508r1237,0r0,164r-988,0r607,775r-649,806r1040,0r0,161r-1264,0r0,-187r620,-772r-603,-772r0,-175","w":1460},"\u220f":{"d":"162,-1508r1362,0r0,1906r-191,0r0,-1732r-978,0r0,1732r-193,0r0,-1906","w":1685},"\uf006":{"d":"0,-1063r1124,0r0,202r-169,0r0,861r-288,0r0,-861r-208,0r0,861r-292,0r0,-861r-167,0r0,-202","w":1124},"\u222b":{"d":"208,64v28,0,40,-26,39,-61v0,-28,-3,-68,-9,-120v-39,-339,-52,-883,-21,-1330v12,-179,29,-306,125,-384v81,-66,214,-19,218,75v3,57,-38,104,-92,104v-34,8,-82,-56,-116,-56v-31,0,-40,25,-40,64v0,28,3,76,9,145v47,607,43,535,22,1232v-6,203,-34,340,-84,410v-37,51,-84,77,-141,77v-69,0,-118,-52,-118,-121v0,-55,37,-100,90,-99v46,-9,85,64,118,64","w":561},"\u00aa":{"d":"302,-1508v71,0,117,32,157,75r0,-58r200,0r0,681r-200,0r0,-56v-38,41,-84,72,-153,72v-152,0,-259,-175,-259,-356v0,-187,99,-358,255,-358xm466,-1152v0,-94,-37,-177,-110,-177v-144,0,-148,357,1,357v72,0,109,-86,109,-180","w":737},"\u00ba":{"d":"45,-1150v0,-187,145,-358,320,-358v181,0,328,166,328,357v0,193,-143,357,-327,357v-178,0,-321,-169,-321,-356xm491,-1151v0,-94,-44,-175,-123,-175v-76,0,-121,84,-121,175v0,95,42,177,121,177v78,0,123,-83,123,-177","w":737},"\u2126":{"d":"388,-789v7,273,115,458,312,546r0,243r-645,0r0,-230v146,-3,272,16,407,24v-238,-99,-380,-284,-385,-605v-7,-410,286,-696,700,-692v331,3,518,113,641,325v62,107,92,230,92,365v-2,307,-154,506,-382,605r330,-23r72,0r0,231r-642,0r0,-243v198,-88,300,-268,306,-541v7,-295,-142,-500,-407,-500v-252,0,-406,216,-399,495","w":1573},"\u00e6":{"d":"629,-1116v164,4,277,63,363,170r0,-142r251,0r0,80v91,-72,198,-108,322,-108v361,0,590,262,567,653r-876,0v30,152,140,256,318,254v122,-1,183,-41,256,-110r230,108v-100,145,-253,239,-488,239v-133,0,-243,-35,-329,-106r0,78r-251,0r0,-138v-95,105,-184,162,-360,166v-307,6,-543,-256,-543,-569v0,-305,245,-581,540,-575xm1860,-676v-30,-119,-139,-208,-286,-207v-158,1,-261,83,-305,207r591,0xm994,-550v0,-179,-134,-318,-311,-318v-179,0,-316,145,-316,326v0,180,134,321,313,321v189,0,314,-137,314,-329","w":2212},"\u00f8":{"d":"106,-543v0,-305,262,-573,565,-573v119,0,229,34,331,103r126,-140r123,110r-128,143v145,180,164,434,47,643v-90,161,-266,285,-498,285v-112,0,-213,-29,-303,-88r-130,145r-125,-107r130,-146v-92,-106,-138,-231,-138,-375xm675,-859v-170,-3,-297,140,-297,315v0,63,15,122,45,177r406,-453v-45,-26,-97,-39,-154,-39xm544,-255v215,99,427,-65,427,-289v0,-55,-11,-105,-32,-152","w":1352},"\u00bf":{"d":"759,-966v0,92,-79,171,-171,171v-94,0,-176,-78,-176,-171v0,-93,81,-172,174,-172v92,0,173,80,173,172xm568,176v118,0,211,-80,211,-194r262,0v5,263,-210,448,-485,444v-196,-3,-321,-78,-399,-202v-86,-138,-65,-322,19,-439v24,-33,202,-193,224,-229v37,-59,53,-129,57,-237r270,0v12,234,-69,375,-206,494v-71,62,-113,105,-128,129v-69,120,35,234,175,234","w":1147},"\u00a1":{"d":"115,-967v0,-92,79,-171,171,-171v92,0,172,79,172,171v0,92,-80,171,-172,171v-92,0,-171,-79,-171,-171xm424,398r-275,0r0,-1075r275,0r0,1075","w":573},"\u00ac":{"d":"115,-1074r999,0r0,678r-249,-1r0,-428r-750,1r0,-250"},"\u221a":{"d":"1047,-1869r74,0r-312,1947r-496,-1021r-198,91r-34,-64r301,-151r405,823","w":1124},"\u0192":{"d":"1078,-1453r-33,239v-55,-39,-101,-59,-139,-59v-27,0,-49,11,-65,34v-31,42,-49,217,-62,305r224,0r-34,234r-226,0r-106,756v-24,170,-56,266,-161,331v-137,85,-289,21,-404,-51r34,-242v63,49,117,74,160,74v81,0,81,-57,97,-161r107,-707r-227,0r34,-234r227,0v42,-270,30,-608,327,-602v117,2,158,28,247,83","w":1147},"\u2248":{"d":"350,-909v-140,-33,-202,28,-303,103r0,-318v161,-73,229,-91,391,-53v60,14,245,109,312,131v23,8,46,10,69,10v74,0,160,-38,258,-113r0,322v-126,70,-233,87,-380,54v-49,-11,-277,-120,-347,-136xm350,-426v-142,-32,-201,27,-303,103r0,-319v161,-73,229,-91,391,-52v60,14,244,108,312,130v23,7,46,10,69,10v74,0,160,-38,258,-113r0,323v-126,69,-233,86,-380,54v-49,-11,-278,-121,-347,-136","w":1124},"\u2206":{"d":"1226,0r-1200,0r628,-1387xm990,-82r-399,-967r-440,967r839,0","w":1253},"\u00ab":{"d":"208,-1088r255,0r-185,548r185,540r-255,0r-183,-540xm662,-1088r255,0r-185,548r185,540r-255,0r-184,-540","w":942},"\u00bb":{"d":"733,0r-255,0r186,-548r-186,-540r255,0r184,540xm280,0r-255,0r185,-548r-185,-540r255,0r183,540","w":942},"\u2026":{"d":"867,-129v0,-84,72,-156,156,-156v84,0,157,72,157,156v0,84,-73,157,-157,157v-84,0,-156,-73,-156,-157xm184,-129v0,-84,73,-156,157,-156v84,0,157,72,157,156v0,84,-73,157,-157,157v-84,0,-157,-73,-157,-157xm1549,-129v0,-84,73,-156,157,-156v84,0,157,72,157,156v0,84,-73,157,-157,157v-84,0,-157,-73,-157,-157","w":2048},"\u00a0":{"w":573},"\u00c0":{"d":"616,-1471r284,0r566,1471r-291,0r-115,-303r-600,0r-120,303r-291,0xm760,-1081r-196,505r391,0xm709,-1977r239,392r-196,0r-366,-392r323,0","w":1515},"\u00c3":{"d":"616,-1471r284,0r566,1471r-291,0r-115,-303r-600,0r-120,303r-291,0xm760,-1081r-196,505r391,0xm931,-1585v-92,0,-209,-56,-304,-56v-59,0,-117,17,-176,52r-110,-165v85,-66,172,-99,259,-99v47,0,229,56,297,56v56,0,114,-17,174,-52r104,156v-84,72,-165,108,-244,108","w":1515},"\u00d5":{"d":"865,37v-425,0,-775,-359,-769,-773v4,-310,169,-547,382,-668v120,-68,248,-104,385,-104v410,0,761,361,761,777v0,416,-346,768,-759,768xm1344,-733v0,-270,-218,-501,-484,-501v-272,0,-482,224,-482,503v0,276,214,497,487,497v263,0,479,-230,479,-499xm1033,-1585v-92,0,-209,-56,-304,-56v-59,0,-117,17,-176,52r-110,-165v85,-66,172,-99,259,-99v47,0,229,56,297,56v56,0,114,-17,174,-52r104,156v-84,72,-165,108,-244,108","w":1720},"\u0152":{"d":"842,-1508v199,0,339,67,463,168r0,-131r777,0r0,275r-494,0r0,267r494,0r0,268r-494,0r0,387r494,0r0,274r-777,0r0,-135v-121,107,-256,172,-465,172v-308,0,-529,-160,-647,-375v-129,-234,-130,-553,-1,-787v115,-210,353,-383,650,-383xm1304,-727v-6,-295,-186,-503,-469,-512v-252,-8,-464,237,-458,503v7,299,190,497,478,505v256,7,455,-227,449,-496","w":2171},"\u0153":{"d":"663,-1116v210,8,348,76,447,211v115,-141,265,-211,450,-211v243,0,420,125,504,296v46,93,68,212,67,359r-881,0v20,149,144,253,315,253v94,0,179,-34,254,-102r237,108v-114,142,-259,230,-494,230v-195,0,-346,-69,-452,-208v-101,126,-239,204,-447,208v-319,7,-581,-258,-581,-574v0,-305,273,-581,581,-570xm1860,-675v-37,-124,-144,-205,-297,-206v-148,-1,-272,89,-304,206r601,0xm970,-546v0,-175,-134,-326,-304,-323v-191,4,-311,136,-311,327v0,188,114,321,304,324v183,2,311,-140,311,-328","w":2212},"\u2013":{"d":"-12,-469r0,-242r1048,0r0,242r-1048,0","w":1024},"\u2014":{"d":"-12,-469r0,-242r2072,0r0,242r-2072,0","w":2048},"\u201c":{"d":"415,-947r-252,0v-1,-133,-2,-270,33,-365v23,-63,58,-129,109,-196r98,77v-49,73,-64,103,-89,197r101,0r0,287xm823,-947r-252,0v-1,-133,-2,-270,32,-365v23,-63,58,-129,110,-196r98,77v-49,73,-64,103,-89,197r101,0r0,287","w":983},"\u201d":{"d":"568,-1508r252,0v1,133,3,271,-32,365v-23,63,-59,129,-111,196r-97,-77v49,-73,64,-104,88,-198r-100,0r0,-286xm160,-1508r252,0v1,133,3,271,-32,365v-23,63,-59,129,-110,196r-98,-77v49,-73,64,-104,89,-198r-101,0r0,-286","w":983},"\u2018":{"d":"419,-947r-252,0v-1,-133,-2,-270,33,-365v23,-63,58,-129,109,-196r98,77v-49,73,-64,103,-89,197r101,0r0,287","w":573},"\u2019":{"d":"155,-1508r252,0v1,133,2,271,-33,365v-23,63,-58,129,-109,196r-98,-77v49,-73,64,-104,89,-198r-101,0r0,-286","w":573},"\u00f7":{"d":"401,-1326r322,0r0,321r-322,0r0,-321xm62,-860r999,0r0,250r-999,0r0,-250xm401,-466r322,0r0,321r-322,0r0,-321","w":1124},"\u25ca":{"d":"549,-1422r418,713r-418,709r-111,0r-391,-709r391,-713r111,0xm495,-1325r-340,616r340,615r359,-615","w":1012},"\u00ff":{"d":"17,-1088r279,0r283,683r312,-683r280,0r-682,1486r-282,0r224,-479xm229,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm672,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1188},"\u0178":{"d":"63,-1471r301,0r274,528r272,-528r297,0r-430,834r0,637r-282,0r0,-637xm280,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm723,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1270},"\u2044":{"d":"-235,37r626,-1545r171,0r-626,1545r-171,0","w":328},"\u2215":{"d":"-235,37r626,-1545r171,0r-626,1545r-171,0","w":328},"\u20ac":{"d":"156,-963v83,-311,378,-542,751,-544v68,0,136,10,203,30r-61,263v-265,-84,-513,62,-598,251r538,0r-37,164r-549,0v-5,57,-5,71,0,127r519,0r-39,164r-434,0v85,216,387,348,661,236r0,282v-461,111,-869,-144,-956,-518r-144,0r39,-164r78,0v-3,-20,-3,-106,0,-127r-117,0r41,-164r105,0","w":1147},"\u2039":{"d":"210,-1088r255,0r-185,548r185,540r-255,0r-183,-540","w":491},"\u203a":{"d":"282,0r-255,0r185,-548r-185,-540r255,0r183,540","w":491},"\uf001":{"d":"657,-1210v-18,-83,-134,-130,-211,-73v-56,42,-68,76,-67,195r160,0r0,230r-160,0r0,858r-274,0r0,-858r-101,0r0,-230r101,0v0,-217,54,-315,187,-394v111,-66,319,-71,442,-15v119,54,182,137,207,287r-284,0xm668,-1088r273,0r0,1088r-273,0r0,-1088","w":1064},"\ufb01":{"d":"657,-1210v-18,-83,-134,-130,-211,-73v-56,42,-68,76,-67,195r160,0r0,230r-160,0r0,858r-274,0r0,-858r-101,0r0,-230r101,0v0,-217,54,-315,187,-394v111,-66,319,-71,442,-15v119,54,182,137,207,287r-284,0xm668,-1088r273,0r0,1088r-273,0r0,-1088","w":1064},"\uf002":{"d":"4,-1088r102,0v0,-211,57,-320,187,-396v119,-69,350,-69,467,0v135,80,182,171,182,396r0,1088r-274,0r0,-1067v0,-90,-10,-148,-26,-178v-34,-63,-134,-83,-196,-39v-55,39,-67,89,-67,196r159,0r0,230r-159,0r0,858r-273,0r0,-858r-102,0r0,-230","w":1064},"\ufb02":{"d":"4,-1088r102,0v0,-211,57,-320,187,-396v119,-69,350,-69,467,0v135,80,182,171,182,396r0,1088r-274,0r0,-1067v0,-90,-10,-148,-26,-178v-34,-63,-134,-83,-196,-39v-55,39,-67,89,-67,196r159,0r0,230r-159,0r0,858r-273,0r0,-858r-102,0r0,-230","w":1064},"\u2021":{"d":"439,-1508r269,0r-51,468r454,-48r0,269r-454,-53r51,324r-51,321r454,-55r0,274r-454,-53r51,459r-269,0r49,-459r-449,53r0,-274r449,55r-49,-321r49,-324r-449,53r0,-269r449,48","w":1147},"\u2219":{"d":"130,-735v0,-84,73,-157,157,-157v84,0,157,73,157,157v0,84,-73,157,-157,157v-84,0,-157,-73,-157,-157","w":573},"\u201a":{"d":"155,-286r252,0v1,133,2,271,-33,365v-23,63,-58,128,-109,195r-98,-76v49,-74,64,-104,89,-198r-101,0r0,-286","w":573},"\u201e":{"d":"568,-286r252,0v1,133,3,271,-32,365v-23,63,-59,128,-111,195r-97,-76v49,-74,64,-103,88,-198r-100,0r0,-286xm160,-286r252,0v1,133,3,271,-32,365v-23,63,-59,128,-110,195r-98,-76v49,-74,64,-104,89,-198r-101,0r0,-286","w":983},"\u2030":{"d":"893,-1442v182,-6,334,-33,458,-94r202,0r-1166,1636r-202,0r997,-1405v-151,25,-297,39,-461,23v89,248,-95,477,-327,477v-190,0,-357,-160,-353,-349v4,-201,151,-354,341,-354v137,0,381,71,511,66xm561,-1157v0,-91,-78,-168,-169,-168v-90,0,-169,78,-169,168v0,91,78,169,169,169v91,0,169,-78,169,-169xm1878,-311v0,-189,163,-352,351,-352v190,0,351,163,351,352v0,188,-162,351,-351,351v-188,0,-351,-163,-351,-351xm2398,-312v0,-91,-78,-170,-170,-170v-91,0,-170,79,-170,170v0,91,79,170,170,170v92,0,170,-79,170,-170xm1016,-311v0,-189,162,-352,351,-352v188,0,351,163,351,352v0,188,-163,351,-351,351v-189,0,-351,-163,-351,-351xm1535,-312v0,-91,-78,-170,-169,-170v-92,0,-170,79,-170,170v0,91,78,170,170,170v91,0,169,-79,169,-170","w":2621},"\u00c2":{"d":"616,-1471r284,0r566,1471r-291,0r-115,-303r-600,0r-120,303r-291,0xm760,-1081r-196,505r391,0xm349,-1585r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1515},"\u00ca":{"d":"169,-1471r803,0r0,274r-525,0r0,266r525,0r0,269r-525,0r0,387r525,0r0,275r-803,0r0,-1471xm160,-1585r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1065},"\u00c1":{"d":"616,-1471r284,0r566,1471r-291,0r-115,-303r-600,0r-120,303r-291,0xm760,-1081r-196,505r391,0xm805,-1977r323,0r-366,392r-196,0","w":1515},"\u00cb":{"d":"169,-1471r803,0r0,274r-525,0r0,266r525,0r0,269r-525,0r0,387r525,0r0,275r-803,0r0,-1471xm204,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm647,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1065},"\u00c8":{"d":"169,-1471r803,0r0,274r-525,0r0,266r525,0r0,269r-525,0r0,387r525,0r0,275r-803,0r0,-1471xm520,-1977r239,392r-196,0r-366,-392r323,0","w":1065},"\u00cd":{"d":"148,-1471r278,0r0,1471r-278,0r0,-1471xm335,-1977r323,0r-366,392r-196,0","w":573},"\u00ce":{"d":"148,-1471r278,0r0,1471r-278,0r0,-1471xm-122,-1585r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":573},"\u00cf":{"d":"148,-1471r278,0r0,1471r-278,0r0,-1471xm-78,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm365,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":573},"\u00cc":{"d":"148,-1471r278,0r0,1471r-278,0r0,-1471xm239,-1977r239,392r-196,0r-366,-392r323,0","w":573},"\u00d3":{"d":"865,37v-425,0,-775,-359,-769,-773v4,-310,169,-547,382,-668v120,-68,248,-104,385,-104v410,0,761,361,761,777v0,416,-346,768,-759,768xm1344,-733v0,-270,-218,-501,-484,-501v-272,0,-482,224,-482,503v0,276,214,497,487,497v263,0,479,-230,479,-499xm908,-1977r323,0r-366,392r-196,0","w":1720},"\u00d4":{"d":"865,37v-425,0,-775,-359,-769,-773v4,-310,169,-547,382,-668v120,-68,248,-104,385,-104v410,0,761,361,761,777v0,416,-346,768,-759,768xm1344,-733v0,-270,-218,-501,-484,-501v-272,0,-482,224,-482,503v0,276,214,497,487,497v263,0,479,-230,479,-499xm451,-1585r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1720},"\uf000":{"w":1617},"\u00d2":{"d":"865,37v-425,0,-775,-359,-769,-773v4,-310,169,-547,382,-668v120,-68,248,-104,385,-104v410,0,761,361,761,777v0,416,-346,768,-759,768xm1344,-733v0,-270,-218,-501,-484,-501v-272,0,-482,224,-482,503v0,276,214,497,487,497v263,0,479,-230,479,-499xm812,-1977r239,392r-196,0r-366,-392r323,0","w":1720},"\u00da":{"d":"158,-1471r281,0r0,952v1,147,14,202,93,255v65,43,182,41,246,-3v89,-62,95,-114,95,-287r0,-917r281,0r0,877v-3,272,-7,341,-120,474v-86,101,-200,155,-377,157v-212,2,-383,-113,-448,-257v-34,-74,-51,-199,-51,-374r0,-877xm703,-1977r323,0r-366,392r-196,0","w":1311},"\u00db":{"d":"158,-1471r281,0r0,952v1,147,14,202,93,255v65,43,182,41,246,-3v89,-62,95,-114,95,-287r0,-917r281,0r0,877v-3,272,-7,341,-120,474v-86,101,-200,155,-377,157v-212,2,-383,-113,-448,-257v-34,-74,-51,-199,-51,-374r0,-877xm247,-1585r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1311},"\u00d9":{"d":"158,-1471r281,0r0,952v1,147,14,202,93,255v65,43,182,41,246,-3v89,-62,95,-114,95,-287r0,-917r281,0r0,877v-3,272,-7,341,-120,474v-86,101,-200,155,-377,157v-212,2,-383,-113,-448,-257v-34,-74,-51,-199,-51,-374r0,-877xm607,-1977r239,392r-196,0r-366,-392r323,0","w":1311},"\u0131":{"d":"108,-1088r274,0r0,1088r-274,0r0,-1088","w":491},"\u02c6":{"d":"144,-1287r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1106},"\u02dc":{"d":"665,-1287v-92,0,-209,-56,-304,-56v-59,0,-117,17,-176,52r-110,-165v85,-66,172,-99,259,-99v47,0,229,56,297,56v56,0,114,-17,174,-52r104,156v-84,72,-165,108,-244,108","w":983},"\u02c9":{"d":"145,-1287r0,-221r569,0r0,221r-569,0","w":860},"\u02d8":{"d":"306,-1568v56,107,313,113,372,0r221,0v-30,182,-181,281,-408,281v-229,0,-369,-94,-406,-281r221,0","w":983},"\u02d9":{"d":"143,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":573},"\u02da":{"d":"149,-1511v0,-119,100,-223,219,-223v119,0,219,104,219,223v0,119,-101,224,-219,224v-118,0,-219,-105,-219,-224xm450,-1516v0,-47,-37,-89,-82,-89v-45,0,-82,42,-82,89v0,47,37,90,82,90v45,0,82,-43,82,-90","w":737},"\u00b8":{"d":"362,158v4,-60,-73,-59,-135,-54r35,-120r169,0r-12,46v77,15,144,73,144,154v0,121,-116,197,-257,197v-65,0,-139,-15,-222,-46r36,-129v85,27,236,52,242,-48","w":696},"\u02dd":{"d":"568,-1679r323,0r-366,392r-196,0xm1014,-1679r323,0r-365,392r-197,0","w":1434},"\u02db":{"d":"161,216v0,-107,84,-176,177,-216r144,0v-93,55,-140,110,-140,165v-1,56,46,94,104,93v23,0,52,-9,87,-27r0,159v-177,46,-372,-7,-372,-174","w":696},"\u02c7":{"d":"144,-1570r300,0r111,132r108,-132r298,0r-298,283r-219,0","w":1106},"\u0141":{"d":"489,-995r224,-262r0,256r-224,262r0,472r409,0r0,267r-689,0r0,-411r-168,197r0,-258r168,-196r0,-803r280,0r0,476","w":983},"\u0142":{"d":"465,-1030r108,-122r0,248r-108,122r0,782r-274,0r0,-477r-109,121r0,-245r109,-123r0,-784r274,0r0,478","w":655},"\u0160":{"d":"110,-1136v0,-206,190,-381,404,-372v208,9,298,94,425,237r-207,183v-73,-101,-147,-152,-222,-152v-95,0,-164,91,-100,166v17,36,369,326,399,358v93,100,153,175,156,336v5,245,-197,423,-451,417v-249,-6,-377,-129,-473,-319r235,-142v71,130,152,195,244,195v86,0,170,-61,170,-139v0,-33,-12,-67,-37,-100v-25,-33,-79,-84,-163,-153v-160,-131,-263,-232,-310,-303v-47,-71,-70,-141,-70,-212xm124,-1868r300,0r111,132r108,-132r298,0r-298,283r-219,0","w":1065},"\u0161":{"d":"92,-804v0,-178,163,-317,354,-312v161,4,283,78,358,180r-169,169v-69,-68,-131,-102,-187,-102v-70,0,-129,57,-82,109v27,31,131,74,182,100v105,53,178,105,217,159v39,54,59,117,59,190v0,203,-172,339,-392,339v-159,0,-285,-62,-380,-186r168,-183v49,59,139,121,227,125v62,3,115,-34,120,-86v7,-66,-141,-134,-211,-169v-177,-87,-264,-200,-264,-333xm42,-1570r300,0r111,132r108,-132r298,0r-298,283r-219,0","w":901},"\u017d":{"d":"90,-1471r890,0r-525,1202r491,0r0,269r-899,0r523,-1194r-480,0r0,-277xm103,-1868r300,0r111,132r108,-132r298,0r-298,283r-219,0","w":1024},"\u017e":{"d":"91,-1088r835,0r-490,857r462,0r0,231r-882,0r492,-857r-417,0r0,-231xm62,-1570r300,0r111,132r108,-132r298,0r-298,283r-219,0","w":942},"\u00a6":{"d":"537,-744r0,-764r158,0r0,709xm537,398r0,-910r158,-55r0,965r-158,0"},"\u00d0":{"d":"219,-1471v287,0,671,-9,833,79v202,110,361,364,358,677v-3,344,-172,592,-428,679v-138,47,-532,35,-763,36r0,-654r-169,0r0,-163r169,0r0,-654xm1127,-722v-5,-316,-166,-485,-510,-479r-119,0r0,384r302,0r0,163r-302,0r0,380v152,2,355,-1,432,-44v118,-65,200,-213,197,-404","w":1520},"\u00f0":{"d":"87,-544v0,-291,252,-575,538,-572v42,0,85,9,128,28v-18,-43,-53,-96,-104,-159r-265,82r-51,-159r192,-61v-64,-59,-111,-100,-141,-123r265,0r82,60r199,-60r50,157r-104,34v192,176,347,419,356,735v9,340,-249,610,-579,610v-306,0,-566,-264,-566,-572xm954,-543v0,-177,-124,-315,-297,-315v-173,0,-297,135,-297,314v0,180,119,318,293,318v173,0,301,-140,301,-317","w":1311},"\u00dd":{"d":"63,-1471r301,0r274,528r272,-528r297,0r-430,834r0,637r-282,0r0,-637xm683,-1977r323,0r-366,392r-196,0","w":1270},"\u00fd":{"d":"17,-1088r279,0r283,683r312,-683r280,0r-682,1486r-282,0r224,-479xm641,-1679r323,0r-366,392r-196,0","w":1188},"\u00de":{"d":"167,-1471r280,0r0,312v304,3,422,26,531,187v90,133,82,377,-18,496v-55,66,-126,114,-218,141v-54,16,-152,24,-295,24r0,311r-280,0r0,-1471xm770,-733v-5,-124,-85,-155,-244,-153r-79,0r0,302v75,0,197,0,235,-15v51,-20,91,-66,88,-134","w":1147},"\u00fe":{"d":"745,28v-154,-3,-244,-57,-336,-143r0,513r-271,0r0,-1906r271,0r0,540v87,-86,190,-146,344,-148v293,-4,511,262,511,574v0,303,-232,575,-519,570xm992,-545v0,-178,-124,-319,-296,-319v-174,0,-299,138,-299,318v0,183,124,324,299,324v169,0,296,-146,296,-323","w":1352},"\u2212":{"d":"115,-860r999,0r0,250r-999,0r0,-250"},"\u00d7":{"d":"613,-588r-317,316r-148,-147r317,-317r-317,-317r148,-148r317,317r316,-317r148,148r-317,317r317,317r-148,147"},"\u00b9":{"d":"199,-1489r265,0r0,756r-188,0r0,-599r-193,0","w":688},"\u00b2":{"d":"342,-1350v-72,2,-115,49,-115,123r-185,0v6,-175,127,-281,311,-281v217,0,353,188,240,374v-38,63,-154,175,-234,244r285,0r0,157r-625,0r0,-88r272,-232v65,-55,105,-100,127,-130v57,-77,25,-169,-76,-167","w":688},"\u00b3":{"d":"422,-1286v3,-39,-33,-67,-75,-67v-45,0,-79,24,-103,71r-183,0v28,-150,123,-221,281,-226v136,-4,264,82,264,201v0,64,-31,114,-93,149v76,29,141,99,141,192v0,149,-151,251,-322,251v-173,0,-299,-103,-302,-266r184,0v13,74,55,111,126,111v63,0,125,-37,125,-91v0,-66,-66,-101,-197,-105r0,-138v93,0,149,-14,154,-82","w":688},"\u00bd":{"d":"207,-1489r265,0r0,756r-188,0r0,-599r-193,0xm426,37r626,-1545r171,0r-626,1545r-171,0xm1366,-617v-72,2,-115,49,-115,123r-185,0v6,-175,127,-281,311,-281v217,0,353,188,240,374v-38,63,-154,175,-234,244r285,0r0,157r-625,0r0,-88r272,-232v65,-55,105,-100,127,-130v57,-77,25,-169,-76,-167","w":1720},"\u00bc":{"d":"207,-1489r265,0r0,756r-188,0r0,-599r-193,0xm462,37r626,-1545r171,0r-626,1545r-171,0xm1424,-775r182,0r0,485r78,0r0,140r-78,0r0,150r-169,0r0,-150r-395,0r0,-148xm1437,-290r0,-269r-217,269r217,0","w":1720},"\u00be":{"d":"430,-1286v3,-39,-33,-67,-75,-67v-45,0,-79,24,-103,71r-183,0v28,-150,123,-221,281,-226v136,-4,264,82,264,201v0,64,-31,114,-93,149v76,29,141,99,141,192v0,149,-151,251,-322,251v-173,0,-299,-103,-302,-266r184,0v13,74,55,111,126,111v63,0,125,-37,125,-91v0,-66,-66,-101,-197,-105r0,-138v93,0,149,-14,154,-82xm486,37r626,-1545r171,0r-626,1545r-171,0xm1424,-775r182,0r0,485r78,0r0,140r-78,0r0,150r-169,0r0,-150r-395,0r0,-148xm1437,-290r0,-269r-217,269r217,0","w":1720},"\u20a3":{"d":"449,-413r226,0r0,163r-226,0r0,250r-277,0r0,-250r-172,0r0,-163r172,0r0,-1058r730,0r0,273r-453,0r0,267r453,0r0,269r-453,0r0,249","w":983},"\u011e":{"d":"383,-740v0,281,241,515,527,509v215,-5,331,-93,405,-252r-426,0r0,-263r740,0v23,316,-153,573,-357,692v-217,126,-563,114,-782,-8v-214,-119,-388,-371,-388,-681v0,-195,64,-364,193,-508v153,-171,351,-257,596,-257v290,0,475,98,635,277r-197,195v-125,-132,-270,-198,-436,-198v-278,0,-510,222,-510,494xm674,-1864v56,107,313,113,372,0r221,0v-30,182,-181,281,-408,281v-229,0,-369,-94,-406,-281r221,0","w":1720},"\u011f":{"d":"597,-1116v157,1,250,59,345,148r0,-120r272,0r0,932v6,401,-192,577,-560,582v-309,4,-485,-120,-564,-346r301,0v53,61,137,93,252,93v134,0,228,-42,271,-122v19,-36,28,-98,28,-186v-87,86,-175,132,-330,135v-295,5,-521,-252,-521,-558v0,-308,213,-561,506,-558xm956,-555v0,-176,-123,-306,-297,-306v-169,0,-297,134,-297,304v0,175,130,310,302,310v171,0,292,-132,292,-308xm526,-1568v56,107,313,113,372,0r221,0v-30,182,-181,281,-408,281v-229,0,-369,-94,-406,-281r221,0","w":1352},"\u0130":{"d":"148,-1471r278,0r0,1471r-278,0r0,-1471xm143,-1726v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":573},"\u015e":{"d":"110,-1136v0,-206,190,-381,404,-372v208,9,298,94,425,237r-207,183v-73,-101,-147,-152,-222,-152v-95,0,-164,91,-100,166v17,36,369,326,399,358v93,100,153,175,156,336v5,245,-197,423,-451,417v-249,-6,-377,-129,-473,-319r235,-142v71,130,152,195,244,195v86,0,170,-61,170,-139v0,-33,-12,-67,-37,-100v-25,-33,-79,-84,-163,-153v-160,-131,-263,-232,-310,-303v-47,-71,-70,-141,-70,-212xm547,158v4,-60,-73,-59,-135,-54r35,-120r169,0r-12,46v77,15,144,73,144,154v0,121,-116,197,-257,197v-65,0,-139,-15,-222,-46r36,-129v85,27,236,52,242,-48","w":1065},"\u015f":{"d":"92,-804v0,-178,163,-317,354,-312v161,4,283,78,358,180r-169,169v-69,-68,-131,-102,-187,-102v-70,0,-129,57,-82,109v27,31,131,74,182,100v105,53,178,105,217,159v39,54,59,117,59,190v0,203,-172,339,-392,339v-159,0,-285,-62,-380,-186r168,-183v49,59,139,121,227,125v62,3,115,-34,120,-86v7,-66,-141,-134,-211,-169v-177,-87,-264,-200,-264,-333xm465,158v4,-60,-73,-59,-135,-54r35,-120r169,0r-12,46v77,15,144,73,144,154v0,121,-116,197,-257,197v-65,0,-139,-15,-222,-46r36,-129v85,27,236,52,242,-48","w":901},"\u0106":{"d":"875,37v-448,10,-786,-329,-780,-775v5,-323,162,-541,385,-666v225,-126,507,-139,750,-27v112,51,209,124,290,219r-196,187v-133,-141,-283,-211,-450,-211v-275,0,-506,225,-500,499v6,308,202,505,505,505v218,0,307,-80,445,-211r190,198v-191,180,-325,275,-639,282xm895,-1975r323,0r-366,392r-196,0","w":1597},"\u0107":{"d":"361,-536v0,186,140,315,330,315v122,0,217,-42,285,-125r215,147v-117,151,-281,227,-494,227v-191,0,-339,-58,-449,-170v-176,-179,-216,-461,-84,-689v95,-165,289,-285,537,-285v233,0,403,102,502,248r-227,125v-77,-78,-137,-116,-273,-119v-196,-4,-342,134,-342,326xm740,-1679r323,0r-366,392r-196,0","w":1311},"\u010c":{"d":"875,37v-448,10,-786,-329,-780,-775v5,-323,162,-541,385,-666v225,-126,507,-139,750,-27v112,51,209,124,290,219r-196,187v-133,-141,-283,-211,-450,-211v-275,0,-506,225,-500,499v6,308,202,505,505,505v218,0,307,-80,445,-211r190,198v-191,180,-325,275,-639,282xm463,-1866r300,0r111,132r108,-132r298,0r-298,283r-219,0","w":1597},"\u010d":{"d":"361,-536v0,186,140,315,330,315v122,0,217,-42,285,-125r215,147v-117,151,-281,227,-494,227v-191,0,-339,-58,-449,-170v-176,-179,-216,-461,-84,-689v95,-165,289,-285,537,-285v233,0,403,102,502,248r-227,125v-77,-78,-137,-116,-273,-119v-196,-4,-342,134,-342,326xm283,-1570r300,0r111,132r108,-132r298,0r-298,283r-219,0","w":1311},"\u0111":{"d":"599,-1116v153,2,258,62,343,148r0,-263r-427,0r0,-163r427,0r0,-114r272,0r0,114r137,0r0,163r-137,0r0,1231r-272,0r0,-115v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324","w":1352},"\u00af":{"d":"-12,-1685r1048,0r0,102r-1048,0r0,-102","w":1024},"\u00b7":{"d":"553,-754v0,-78,66,-143,143,-143v78,0,144,65,144,143v0,77,-67,143,-144,143v-77,0,-143,-67,-143,-143","w":682},"\uf003":{"d":"400,-1508r182,0r0,485r78,0r0,140r-78,0r0,150r-169,0r0,-150r-395,0r0,-148xm413,-1023r0,-269r-217,269r217,0","w":688},"\u0102":{"d":"616,-1471r284,0r566,1471r-291,0r-115,-303r-600,0r-120,303r-291,0xm760,-1081r-196,505r391,0xm581,-1866v56,107,313,113,372,0r221,0v-30,182,-181,281,-408,281v-229,0,-369,-94,-406,-281r221,0","w":1515},"\u0103":{"d":"599,-1116v153,2,258,62,343,148r0,-120r272,0r0,1088r-272,0r0,-115v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324xm472,-1568v56,107,313,113,372,0r221,0v-30,182,-181,281,-408,281v-229,0,-369,-94,-406,-281r221,0","w":1352},"\u0104":{"d":"616,-1471r284,0r566,1471r-291,0r-115,-303r-600,0r-120,303r-291,0xm760,-1081r-196,505r391,0xm1136,216v0,-107,84,-176,177,-216r144,0v-93,55,-140,110,-140,165v-1,56,46,94,104,93v23,0,52,-9,87,-27r0,159v-177,46,-372,-7,-372,-174","w":1515},"\u0105":{"d":"599,-1116v153,2,258,62,343,148r0,-120r272,0r0,1088r-272,0r0,-115v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324xm907,216v0,-107,84,-176,177,-216r144,0v-93,55,-140,110,-140,165v-1,56,46,94,104,93v23,0,52,-9,87,-27r0,159v-177,46,-372,-7,-372,-174","w":1352},"\u010e":{"d":"169,-1471v281,-1,653,-6,809,79v201,110,361,364,358,677v-3,344,-172,591,-428,679v-132,45,-513,35,-739,36r0,-1471xm1053,-722v-5,-316,-166,-485,-510,-479r-95,0r0,927v146,2,335,-4,408,-44v118,-66,200,-213,197,-404xm160,-1868r300,0r111,132r108,-132r298,0r-298,283r-219,0","w":1434},"\u010f":{"d":"599,-1116v153,2,258,62,343,148r0,-540r272,0r0,1508r-272,0r0,-115v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324xm1289,-1508r252,0v1,133,2,271,-33,365v-23,63,-58,129,-109,196r-98,-77v49,-73,64,-104,89,-198r-101,0r0,-286","w":1477},"\u0110":{"d":"219,-1471v287,0,671,-9,833,79v202,110,361,364,358,677v-3,344,-172,592,-428,679v-138,47,-532,35,-763,36r0,-654r-169,0r0,-163r169,0r0,-654xm1127,-722v-5,-316,-166,-485,-510,-479r-119,0r0,384r302,0r0,163r-302,0r0,380v152,2,355,-1,432,-44v118,-65,200,-213,197,-404","w":1520},"\u0118":{"d":"169,-1471r803,0r0,274r-525,0r0,266r525,0r0,269r-525,0r0,387r525,0r0,275r-803,0r0,-1471xm516,216v0,-107,84,-176,177,-216r144,0v-93,55,-140,110,-140,165v-1,56,46,94,104,93v23,0,52,-9,87,-27r0,159v-177,46,-372,-7,-372,-174","w":1065},"\u0119":{"d":"650,-1116v359,0,605,265,578,651r-877,0v23,150,140,254,312,253v102,0,190,-36,263,-107r230,108v-107,151,-250,235,-491,239v-330,6,-578,-243,-578,-566v0,-322,244,-578,563,-578xm954,-680v-32,-115,-148,-209,-291,-205v-154,4,-245,71,-300,205r591,0xm461,216v0,-107,84,-176,177,-216r144,0v-93,55,-140,110,-140,165v-1,56,46,94,104,93v23,0,52,-9,87,-27r0,159v-177,46,-372,-7,-372,-174","w":1311},"\u011a":{"d":"169,-1471r803,0r0,274r-525,0r0,266r525,0r0,269r-525,0r0,387r525,0r0,275r-803,0r0,-1471xm194,-1868r300,0r111,132r108,-132r298,0r-298,283r-219,0","w":1065},"\u011b":{"d":"650,-1116v359,0,605,265,578,651r-877,0v23,150,140,254,312,253v102,0,190,-36,263,-107r230,108v-107,151,-250,235,-491,239v-330,6,-578,-243,-578,-566v0,-322,244,-578,563,-578xm954,-680v-32,-115,-148,-209,-291,-205v-154,4,-245,71,-300,205r591,0xm247,-1570r300,0r111,132r108,-132r298,0r-298,283r-219,0","w":1311},"\u0132":{"d":"148,-1471r278,0r0,1471r-278,0r0,-1471xm1107,-1471r281,0r0,976v-4,254,-9,361,-144,466v-58,45,-133,66,-220,66v-161,0,-299,-71,-413,-213r202,-189v73,85,142,128,206,128v34,0,57,-15,69,-44v12,-29,19,-83,19,-161r0,-1029","w":1556},"\u0133":{"d":"760,-1537v95,0,176,81,176,176v0,95,-81,176,-176,176v-94,0,-176,-82,-176,-176v0,-94,82,-176,176,-176xm247,-1536v95,0,176,80,176,175v0,94,-82,176,-176,176v-94,0,-176,-82,-176,-176v0,-93,83,-175,176,-175xm110,-1088r274,0r0,1088r-274,0r0,-1088xm519,201v81,0,104,-45,104,-145r0,-1144r274,0r0,1124v0,161,-27,267,-83,316v-110,97,-247,90,-407,33r0,-215v41,21,79,31,112,31","w":1024},"\u0139":{"d":"168,-1471r280,0r0,1204r408,0r0,267r-688,0r0,-1471xm453,-1977r323,0r-366,392r-196,0","w":901},"\u013a":{"d":"109,-1508r273,0r0,1508r-273,0r0,-1508xm258,-1977r323,0r-366,392r-196,0","w":491},"\u013d":{"d":"168,-1471r280,0r0,1204r408,0r0,267r-688,0r0,-1471xm580,-1508r252,0v1,133,2,271,-33,365v-23,63,-58,129,-109,196r-98,-77v49,-73,64,-104,89,-198r-101,0r0,-286","w":901},"\u013e":{"d":"109,-1508r273,0r0,1508r-273,0r0,-1508xm480,-1508r252,0v1,133,2,271,-33,365v-23,63,-58,129,-109,196r-98,-77v49,-73,64,-104,89,-198r-101,0r0,-286","w":645},"\u013f":{"d":"168,-1471r280,0r0,1204r408,0r0,267r-688,0r0,-1471xm533,-754v0,-78,66,-143,143,-143v78,0,144,65,144,143v0,77,-67,143,-144,143v-77,0,-143,-67,-143,-143","w":901},"\u0140":{"d":"109,-1508r273,0r0,1508r-273,0r0,-1508xm453,-754v0,-78,66,-143,143,-143v78,0,144,65,144,143v0,77,-67,143,-144,143v-77,0,-143,-67,-143,-143","w":711},"\u0143":{"d":"169,-1471r268,0r631,968r0,-968r280,0r0,1471r-269,0r-630,-965r0,965r-280,0r0,-1471xm845,-1977r323,0r-366,392r-196,0","w":1515},"\u0144":{"d":"733,-1116v214,0,370,150,370,397r0,719r-270,0r0,-477v0,-130,-5,-216,-17,-259v-21,-79,-76,-131,-169,-131v-125,0,-204,94,-225,209v-26,147,-8,468,-12,658r-272,0r0,-1088r272,0r0,111v103,-84,175,-139,323,-139xm651,-1679r323,0r-366,392r-196,0"},"\u0147":{"d":"169,-1471r268,0r631,968r0,-968r280,0r0,1471r-269,0r-630,-965r0,965r-280,0r0,-1471xm311,-1868r300,0r111,132r108,-132r298,0r-298,283r-219,0","w":1515},"\u0148":{"d":"733,-1116v214,0,370,150,370,397r0,719r-270,0r0,-477v0,-130,-5,-216,-17,-259v-21,-79,-76,-131,-169,-131v-125,0,-204,94,-225,209v-26,147,-8,468,-12,658r-272,0r0,-1088r272,0r0,111v103,-84,175,-139,323,-139xm297,-1570r300,0r111,132r108,-132r298,0r-298,283r-219,0"},"\u0149":{"d":"821,-1116v214,0,370,150,370,397r0,719r-270,0r0,-477v0,-130,-5,-216,-17,-259v-21,-79,-76,-131,-169,-131v-125,0,-204,94,-225,209v-26,147,-8,468,-12,658r-272,0r0,-1088r272,0r0,111v103,-84,175,-139,323,-139xm-51,-1508r252,0v1,133,2,271,-33,365v-23,63,-58,129,-109,196r-98,-77v49,-73,64,-104,89,-198r-101,0r0,-286","w":1317},"\u0150":{"d":"865,37v-425,0,-775,-359,-769,-773v4,-310,169,-547,382,-668v120,-68,248,-104,385,-104v410,0,761,361,761,777v0,416,-346,768,-759,768xm1344,-733v0,-270,-218,-501,-484,-501v-272,0,-482,224,-482,503v0,276,214,497,487,497v263,0,479,-230,479,-499xm793,-1977r323,0r-366,392r-196,0xm1239,-1977r323,0r-365,392r-197,0","w":1720},"\u0151":{"d":"85,-543v0,-305,261,-581,564,-573v332,8,577,237,577,571v0,226,-128,410,-285,497v-89,49,-185,76,-291,76v-305,0,-565,-264,-565,-571xm950,-544v0,-179,-122,-315,-297,-315v-170,0,-296,140,-296,315v0,180,122,318,295,318v172,0,298,-140,298,-318xm611,-1679r323,0r-366,392r-196,0xm1057,-1679r323,0r-365,392r-197,0","w":1311},"\u0154":{"d":"1061,-1044v-3,213,-109,330,-279,390r348,654r-306,0r-331,-623r-26,0r0,623r-280,0r0,-1471v207,1,527,-9,645,43v132,58,230,198,229,384xm555,-896v154,-3,231,-20,235,-151v2,-67,-41,-115,-92,-135v-35,-14,-156,-16,-231,-15r0,301r88,0xm678,-1977r323,0r-366,392r-196,0","w":1188},"\u0155":{"d":"308,-951v50,-123,200,-211,350,-137r-85,235v-86,-45,-135,-26,-185,54v-32,50,-43,214,-43,359r0,440r-271,0r0,-1088r234,0r0,137xm403,-1679r323,0r-366,392r-196,0","w":655},"\u0158":{"d":"1061,-1044v-3,213,-109,330,-279,390r348,654r-306,0r-331,-623r-26,0r0,623r-280,0r0,-1471v207,1,527,-9,645,43v132,58,230,198,229,384xm555,-896v154,-3,231,-20,235,-151v2,-67,-41,-115,-92,-135v-35,-14,-156,-16,-231,-15r0,301r88,0xm185,-1868r300,0r111,132r108,-132r298,0r-298,283r-219,0","w":1188},"\u0159":{"d":"308,-951v50,-123,200,-211,350,-137r-85,235v-86,-45,-135,-26,-185,54v-32,50,-43,214,-43,359r0,440r-271,0r0,-1088r234,0r0,137xm-81,-1570r300,0r111,132r108,-132r298,0r-298,283r-219,0","w":655},"\u015a":{"d":"110,-1136v0,-206,190,-381,404,-372v208,9,298,94,425,237r-207,183v-73,-101,-147,-152,-222,-152v-95,0,-164,91,-100,166v17,36,369,326,399,358v93,100,153,175,156,336v5,245,-197,423,-451,417v-249,-6,-377,-129,-473,-319r235,-142v71,130,152,195,244,195v86,0,170,-61,170,-139v0,-33,-12,-67,-37,-100v-25,-33,-79,-84,-163,-153v-160,-131,-263,-232,-310,-303v-47,-71,-70,-141,-70,-212xm508,-1977r323,0r-366,392r-196,0","w":1065},"\u015b":{"d":"92,-804v0,-178,163,-317,354,-312v161,4,283,78,358,180r-169,169v-69,-68,-131,-102,-187,-102v-70,0,-129,57,-82,109v27,31,131,74,182,100v105,53,178,105,217,159v39,54,59,117,59,190v0,203,-172,339,-392,339v-159,0,-285,-62,-380,-186r168,-183v49,59,139,121,227,125v62,3,115,-34,120,-86v7,-66,-141,-134,-211,-169v-177,-87,-264,-200,-264,-333xm478,-1679r323,0r-366,392r-196,0","w":901},"\u0162":{"d":"23,-1471r813,0r0,276r-264,0r0,1195r-284,0r0,-1195r-265,0r0,-276xm340,121r180,0v-1,175,-4,233,-100,307r-53,-54v31,-25,52,-55,61,-88r-88,0r0,-165","w":860},"\u0163":{"d":"171,-1489r272,0r0,401r162,0r0,235r-162,0r0,853r-272,0r0,-853r-140,0r0,-235r140,0r0,-401xm217,121r180,0v-1,175,-4,233,-100,307r-53,-54v31,-25,52,-55,61,-88r-88,0r0,-165","w":614},"\u0164":{"d":"23,-1471r813,0r0,276r-268,0r0,1195r-284,0r0,-1195r-261,0r0,-276xm24,-1868r300,0r111,132r108,-132r298,0r-298,283r-219,0","w":860},"\u0165":{"d":"595,-1508r204,0v6,165,-29,281,-115,388r-79,-61v43,-54,67,-107,72,-158r-82,0r0,-169xm171,-1489r272,0r0,401r162,0r0,235r-162,0r0,853r-272,0r0,-853r-140,0r0,-235r140,0r0,-401","w":735},"\u016e":{"d":"158,-1471r281,0r0,952v1,147,14,202,93,255v65,43,182,41,246,-3v89,-62,95,-114,95,-287r0,-917r281,0r0,877v-3,272,-7,341,-120,474v-86,101,-200,155,-377,157v-212,2,-383,-113,-448,-257v-34,-74,-51,-199,-51,-374r0,-877xm449,-1809v0,-119,100,-223,219,-223v119,0,219,104,219,223v0,119,-101,224,-219,224v-118,0,-219,-105,-219,-224xm750,-1814v0,-47,-37,-89,-82,-89v-45,0,-82,42,-82,89v0,47,37,90,82,90v45,0,82,-43,82,-90","w":1311},"\u016f":{"d":"137,-1088r276,0r0,524v2,173,7,240,89,305v57,46,172,46,230,1v81,-63,87,-117,87,-297r0,-533r274,0v-5,260,21,696,-45,851v-70,164,-205,265,-434,265v-243,1,-387,-117,-445,-303v-49,-158,-28,-571,-32,-813xm352,-1511v0,-119,100,-223,219,-223v119,0,219,104,219,223v0,119,-101,224,-219,224v-118,0,-219,-105,-219,-224xm653,-1516v0,-47,-37,-89,-82,-89v-45,0,-82,42,-82,89v0,47,37,90,82,90v45,0,82,-43,82,-90"},"\u0170":{"d":"158,-1471r281,0r0,952v1,147,14,202,93,255v65,43,182,41,246,-3v89,-62,95,-114,95,-287r0,-917r281,0r0,877v-3,272,-7,341,-120,474v-86,101,-200,155,-377,157v-212,2,-383,-113,-448,-257v-34,-74,-51,-199,-51,-374r0,-877xm568,-1977r323,0r-366,392r-196,0xm1014,-1977r323,0r-365,392r-197,0","w":1311},"\u0171":{"d":"137,-1088r276,0r0,524v2,173,7,240,89,305v57,46,172,46,230,1v81,-63,87,-117,87,-297r0,-533r274,0v-5,260,21,696,-45,851v-70,164,-205,265,-434,265v-243,1,-387,-117,-445,-303v-49,-158,-28,-571,-32,-813xm468,-1679r323,0r-366,392r-196,0xm914,-1679r323,0r-365,392r-197,0"},"\u0179":{"d":"90,-1471r890,0r-525,1202r491,0r0,269r-899,0r523,-1194r-480,0r0,-277xm578,-1977r323,0r-366,392r-196,0","w":1024},"\u017a":{"d":"91,-1088r835,0r-490,857r462,0r0,231r-882,0r492,-857r-417,0r0,-231xm478,-1679r323,0r-366,392r-196,0","w":942},"\u017b":{"d":"90,-1471r890,0r-525,1202r491,0r0,269r-899,0r523,-1194r-480,0r0,-277xm343,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1024},"\u017c":{"d":"91,-1088r835,0r-490,857r462,0r0,231r-882,0r492,-857r-417,0r0,-231xm343,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":942},"\uf100":{"d":"167,-1467r900,0r0,228r-599,0r0,1239r-301,0r0,-1467","w":1101},"\uf101":{"d":"96,-735v1,-464,250,-773,732,-768v449,5,710,288,710,759v0,486,-253,780,-703,785v-486,5,-740,-295,-739,-776xm817,-175v301,0,412,-226,412,-555v0,-217,-43,-361,-119,-442v-152,-162,-460,-151,-592,12v-71,88,-109,232,-109,437v0,193,37,333,111,419v74,86,174,129,297,129xm559,-865r521,0r0,231r-521,0r0,-231","w":1635},"\uf102":{"d":"1800,-730v0,415,-289,609,-702,617r0,288r-304,0r0,-288v-241,-10,-418,-68,-530,-175v-112,-107,-168,-251,-168,-432v0,-252,83,-404,262,-510v101,-60,246,-96,436,-107r0,-166r303,0r0,168v469,23,703,224,703,605xm794,-1125v-243,13,-388,156,-388,399v0,239,141,393,388,401r0,-800xm1097,-325v243,-16,386,-149,390,-401v4,-239,-154,-391,-390,-397r0,798","w":1896},"\uf103":{"d":"85,-506v0,-303,179,-574,480,-574v159,0,286,77,381,230v7,-57,22,-124,45,-201r284,0v-101,318,-90,736,16,1051r-285,0v-25,-79,-43,-155,-54,-228v-91,171,-227,256,-408,256v-294,-1,-459,-220,-459,-534xm926,-544v0,-193,-88,-351,-272,-350v-195,2,-272,163,-272,376v0,212,86,352,264,352v189,0,280,-167,280,-378","w":1352},"\uf104":{"d":"85,-483v-4,-298,223,-489,540,-475v-155,-117,-232,-230,-232,-337v0,-77,34,-141,106,-187v140,-90,352,-91,576,-38r0,191v-80,-18,-148,-27,-203,-27v-174,0,-233,76,-152,173v23,27,71,66,141,117v142,103,244,197,307,281v63,84,94,184,94,300v0,315,-240,513,-575,513v-360,0,-598,-195,-602,-511xm965,-499v0,-189,-103,-317,-288,-317v-196,0,-294,113,-294,339v-1,187,101,319,289,319v196,0,293,-138,293,-341","w":1347},"\uf105":{"d":"85,-523v0,-357,266,-557,667,-557v90,0,175,9,256,27r0,199v-168,-39,-381,-45,-502,40v-66,47,-105,106,-116,183r613,0r0,187r-613,0v26,183,159,274,399,274v77,0,157,-8,238,-25r0,198v-75,17,-164,25,-267,25v-398,2,-675,-177,-675,-551","w":1113},"\uf106":{"d":"641,-1080v69,0,239,17,300,17r533,0r0,202r-328,0v75,86,113,194,113,325v0,332,-244,564,-586,564v-344,0,-588,-234,-588,-566v0,-310,260,-542,556,-542xm965,-551v0,-211,-103,-360,-298,-360v-204,0,-287,155,-287,383v0,223,91,370,297,370v196,0,288,-164,288,-393","w":1509},"\uf107":{"d":"34,-1063r1043,0r0,204r-377,0r0,859r-290,0r0,-859r-376,0r0,-204","w":1110},"\uf108":{"d":"681,15v-372,-18,-587,-194,-596,-546v-6,-225,125,-413,277,-475v75,-31,182,-55,321,-73r0,-252r290,0r0,255v383,10,601,199,601,549v0,141,-46,263,-136,365v-90,102,-244,160,-461,175r0,376r-296,0r0,-374xm684,-894v-201,9,-302,133,-302,370v0,218,105,354,302,357r0,-727xm975,-894r0,727v201,-11,302,-134,302,-371v0,-205,-100,-356,-302,-356","w":1659},"\u2017":{"d":"-12,113r1048,0r0,102r-1048,0r0,-102xm-12,290r1048,0r0,102r-1048,0r0,-102","w":1024},"\u2032":{"d":"287,-1004r-156,0r16,-504r266,0","w":451},"\u2033":{"d":"636,-1004r-156,0r16,-504r267,0xm225,-1004r-156,0r16,-504r267,0","w":737},"\u203c":{"d":"143,-1508r276,0r0,1075r-276,0r0,-1075xm735,-1508r275,0r0,1075r-275,0r0,-1075xm110,-143v0,-95,80,-171,171,-171v92,0,172,77,172,171v0,91,-80,171,-172,171v-91,0,-171,-80,-171,-171xm701,-143v0,-92,80,-171,171,-171v92,0,172,77,172,171v0,92,-79,171,-172,171v-92,0,-171,-79,-171,-171","w":1153},"\u207f":{"d":"432,-1273v129,1,199,110,199,252r0,446r-200,0v-3,-140,11,-376,-13,-477v-7,-29,-26,-43,-53,-43v-31,0,-54,18,-67,55v-33,96,-16,324,-20,465r-201,0r0,-681r201,0r0,54v49,-47,101,-71,154,-71","w":700},"\u20a7":{"d":"1914,-216v59,0,115,-33,120,-86v6,-66,-141,-134,-211,-169v-177,-87,-264,-200,-264,-333v0,-15,2,-32,5,-49r-156,0r0,853r-272,0r0,-853r-134,0v-72,156,-257,238,-555,245r0,608r-280,0r0,-1471v198,4,465,-15,609,29v133,41,259,185,270,354r90,0r0,-401r272,0r0,401r355,0v41,-19,89,-28,144,-28v152,0,273,60,364,180r-169,169v-66,-68,-128,-102,-187,-102v-48,0,-102,22,-98,68v5,56,39,59,98,91v180,96,375,161,376,399v1,204,-174,339,-392,339v-159,0,-285,-62,-380,-186r168,-183v38,50,143,125,227,125xm769,-1045v2,-158,-150,-153,-322,-153r0,326v127,1,213,-13,257,-42v44,-29,65,-73,65,-131","w":2368},"\u2105":{"d":"42,-1149v0,-199,155,-359,354,-359v133,0,232,56,297,168r-169,86v-34,-49,-76,-74,-127,-74v-95,-2,-151,85,-151,182v0,95,52,176,143,175v59,0,104,-26,135,-79r162,103v-69,102,-166,153,-293,153v-209,0,-351,-160,-351,-355xm509,37r627,-1545r171,0r-627,1545r-171,0xm1115,-339v0,-187,146,-359,320,-359v181,0,327,170,327,357v0,188,-141,358,-326,358v-180,0,-321,-172,-321,-356xm1561,-340v0,-87,-40,-176,-123,-175v-160,1,-163,351,0,351v78,0,123,-85,123,-176","w":1805},"\u2113":{"d":"595,-1491v197,-3,330,153,330,347v0,96,-32,188,-96,274v-64,86,-190,189,-378,308v-1,151,14,251,43,298v29,47,74,71,133,71v70,0,159,-41,267,-123r0,241v-96,66,-194,99,-295,99v-245,0,-385,-149,-421,-447v-37,19,-74,36,-113,52r-44,-257r148,-72v0,-221,14,-378,41,-471v47,-167,183,-317,385,-320xm636,-1023v68,-79,72,-239,-44,-239v-36,0,-64,22,-95,60v-33,41,-46,216,-46,343v91,-66,149,-123,185,-164","w":989},"\u2190":{"d":"492,-876r76,0v-54,113,-119,216,-195,309r1595,0r0,101r-1595,0v68,68,134,171,198,309r-78,0v-149,-169,-287,-282,-414,-341r0,-45v118,-47,256,-158,413,-333","w":2048},"\u2191":{"d":"153,-1050v175,-157,286,-295,333,-413r46,0v58,128,171,266,340,415r0,77v-138,-64,-241,-130,-309,-197r0,1597r-101,0r0,-1597v-93,76,-196,141,-309,195r0,-77","w":1024},"\u2192":{"d":"1555,-876v158,175,296,286,413,333r0,45v-127,59,-265,172,-414,341r-77,0v63,-138,129,-241,197,-309r-1595,0r0,-101r1595,0v-76,-93,-141,-196,-195,-309r76,0","w":2048},"\u2193":{"d":"153,16r0,-76v113,54,216,119,309,195r0,-1598r101,0r0,1598v68,-68,171,-134,309,-197r0,77v-169,149,-282,287,-340,414r-46,0v-47,-117,-158,-255,-333,-413","w":1024},"\u2194":{"d":"1968,-540r0,45v-121,53,-256,165,-406,337r-80,0v46,-115,111,-218,194,-311r-1305,0v83,93,148,196,194,311r-80,0v-149,-172,-285,-284,-406,-337r0,-45v121,-53,257,-165,406,-338r80,0v-46,115,-111,218,-194,311r1305,0v-83,-93,-148,-196,-194,-311r80,0v150,173,285,285,406,338","w":2048},"\u2195":{"d":"489,-1463r45,0v53,121,165,257,337,407r0,80v-114,-46,-218,-111,-311,-195r0,1306v93,-84,197,-149,311,-194r0,79v-172,150,-284,286,-337,407r-45,0v-53,-121,-165,-257,-337,-407r0,-79v114,45,218,110,311,194r0,-1306v-93,84,-197,149,-311,195r0,-80v172,-150,284,-286,337,-407","w":1024},"\u21a8":{"d":"489,-1463r45,0v53,121,165,257,337,407r0,80v-114,-46,-218,-111,-311,-195r0,1306v93,-84,197,-149,311,-194r0,79v-172,150,-284,286,-337,407r-45,0v-53,-121,-165,-257,-337,-407r0,-79v114,45,218,110,311,194r0,-1306v-93,84,-197,149,-311,195r0,-80v172,-150,284,-286,337,-407xm154,522r717,0r0,98r-717,0r0,-98","w":1024},"\u221f":{"d":"362,-1279r100,0r0,1179r1181,0r0,100r-1281,0r0,-1279","w":2005},"\u2229":{"d":"239,0r-110,0r2,-859v-4,-310,110,-512,323,-603v228,-98,460,56,539,212v97,191,85,296,85,629r0,621r-110,0r0,-628v-5,-276,11,-376,-62,-538v-45,-99,-170,-195,-303,-195v-209,0,-337,169,-353,381v-19,247,-8,687,-11,980","w":1206},"\u2261":{"d":"115,-1288r999,0r0,250r-999,0r0,-250xm115,-860r999,0r0,250r-999,0r0,-250xm115,-432r999,0r0,250r-999,0r0,-250"},"\u25a1":{"d":"146,-944r944,0r0,944r-944,0r0,-944xm222,-868r0,792r792,0r0,-792r-792,0","w":1237},"\u25aa":{"d":"594,-909r0,464r-463,0r0,-463","w":726},"\u25ab":{"d":"594,-909r0,464r-463,0r0,-463xm518,-833r-311,1r0,311r311,0r0,-312","w":726},"\u25cf":{"d":"178,-578v0,-242,206,-440,441,-440v235,0,440,204,440,440v0,236,-204,441,-440,441v-236,0,-441,-205,-441,-441","w":1237},"\u25e6":{"d":"112,-677v0,-135,117,-251,251,-251v133,0,251,114,251,251v0,135,-116,251,-251,251v-135,0,-251,-116,-251,-251xm538,-677v0,-95,-82,-175,-175,-175v-94,0,-175,79,-175,175v0,94,81,175,175,175v94,0,175,-81,175,-175","w":726},"\uf004":{"d":"252,75r172,90r-221,379r-123,-59","w":574},"\u0100":{"d":"616,-1471r284,0r566,1471r-291,0r-115,-303r-600,0r-120,303r-291,0xm760,-1081r-196,505r391,0xm473,-1585r0,-221r569,0r0,221r-569,0","w":1515},"\u0101":{"d":"599,-1116v153,2,258,62,343,148r0,-120r272,0r0,1088r-272,0r0,-115v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324xm366,-1287r0,-221r569,0r0,221r-569,0","w":1352},"\u0108":{"d":"875,37v-448,10,-786,-329,-780,-775v5,-323,162,-541,385,-666v225,-126,507,-139,750,-27v112,51,209,124,290,219r-196,187v-133,-141,-283,-211,-450,-211v-275,0,-506,225,-500,499v6,308,202,505,505,505v218,0,307,-80,445,-211r190,198v-191,180,-325,275,-639,282xm436,-1585r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1597},"\u0109":{"d":"361,-536v0,186,140,315,330,315v122,0,217,-42,285,-125r215,147v-117,151,-281,227,-494,227v-191,0,-339,-58,-449,-170v-176,-179,-216,-461,-84,-689v95,-165,289,-285,537,-285v233,0,403,102,502,248r-227,125v-77,-78,-137,-116,-273,-119v-196,-4,-342,134,-342,326xm235,-1287r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1311},"\u010a":{"d":"875,37v-448,10,-786,-329,-780,-775v5,-323,162,-541,385,-666v225,-126,507,-139,750,-27v112,51,209,124,290,219r-196,187v-133,-141,-283,-211,-450,-211v-275,0,-506,225,-500,499v6,308,202,505,505,505v218,0,307,-80,445,-211r190,198v-191,180,-325,275,-639,282xm714,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1597},"\u010b":{"d":"361,-536v0,186,140,315,330,315v122,0,217,-42,285,-125r215,147v-117,151,-281,227,-494,227v-191,0,-339,-58,-449,-170v-176,-179,-216,-461,-84,-689v95,-165,289,-285,537,-285v233,0,403,102,502,248r-227,125v-77,-78,-137,-116,-273,-119v-196,-4,-342,134,-342,326xm538,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1311},"\u0112":{"d":"169,-1471r803,0r0,274r-525,0r0,266r525,0r0,269r-525,0r0,387r525,0r0,275r-803,0r0,-1471xm286,-1585r0,-221r569,0r0,221r-569,0","w":1065},"\u0113":{"d":"650,-1116v359,0,605,265,578,651r-877,0v23,150,140,254,312,253v102,0,190,-36,263,-107r230,108v-107,151,-250,235,-491,239v-330,6,-578,-243,-578,-566v0,-322,244,-578,563,-578xm954,-680v-32,-115,-148,-209,-291,-205v-154,4,-245,71,-300,205r591,0xm374,-1287r0,-221r569,0r0,221r-569,0","w":1311},"\u0114":{"d":"169,-1471r803,0r0,274r-525,0r0,266r525,0r0,269r-525,0r0,387r525,0r0,275r-803,0r0,-1471xm385,-1866v56,107,313,113,372,0r221,0v-30,182,-181,281,-408,281v-229,0,-369,-94,-406,-281r221,0","w":1065},"\u0115":{"d":"650,-1116v359,0,605,265,578,651r-877,0v23,150,140,254,312,253v102,0,190,-36,263,-107r230,108v-107,151,-250,235,-491,239v-330,6,-578,-243,-578,-566v0,-322,244,-578,563,-578xm954,-680v-32,-115,-148,-209,-291,-205v-154,4,-245,71,-300,205r591,0xm472,-1568v56,107,313,113,372,0r221,0v-30,182,-181,281,-408,281v-229,0,-369,-94,-406,-281r221,0","w":1311},"\u0116":{"d":"169,-1471r803,0r0,274r-525,0r0,266r525,0r0,269r-525,0r0,387r525,0r0,275r-803,0r0,-1471xm427,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1065},"\u0117":{"d":"650,-1116v359,0,605,265,578,651r-877,0v23,150,140,254,312,253v102,0,190,-36,263,-107r230,108v-107,151,-250,235,-491,239v-330,6,-578,-243,-578,-566v0,-322,244,-578,563,-578xm954,-680v-32,-115,-148,-209,-291,-205v-154,4,-245,71,-300,205r591,0xm515,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1311},"\u011c":{"d":"383,-740v0,281,241,515,527,509v215,-5,331,-93,405,-252r-426,0r0,-263r740,0v23,316,-153,573,-357,692v-217,126,-563,114,-782,-8v-214,-119,-388,-371,-388,-681v0,-195,64,-364,193,-508v153,-171,351,-257,596,-257v290,0,475,98,635,277r-197,195v-125,-132,-270,-198,-436,-198v-278,0,-510,222,-510,494xm458,-1585r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1720},"\u011d":{"d":"597,-1116v157,1,250,59,345,148r0,-120r272,0r0,932v6,401,-192,577,-560,582v-309,4,-485,-120,-564,-346r301,0v53,61,137,93,252,93v134,0,228,-42,271,-122v19,-36,28,-98,28,-186v-87,86,-175,132,-330,135v-295,5,-521,-252,-521,-558v0,-308,213,-561,506,-558xm956,-555v0,-176,-123,-306,-297,-306v-169,0,-297,134,-297,304v0,175,130,310,302,310v171,0,292,-132,292,-308xm243,-1287r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1352},"\u0120":{"d":"383,-740v0,281,241,515,527,509v215,-5,331,-93,405,-252r-426,0r0,-263r740,0v23,316,-153,573,-357,692v-217,126,-563,114,-782,-8v-214,-119,-388,-371,-388,-681v0,-195,64,-364,193,-508v153,-171,351,-257,596,-257v290,0,475,98,635,277r-197,195v-125,-132,-270,-198,-436,-198v-278,0,-510,222,-510,494xm723,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1720},"\u0121":{"d":"597,-1116v157,1,250,59,345,148r0,-120r272,0r0,932v6,401,-192,577,-560,582v-309,4,-485,-120,-564,-346r301,0v53,61,137,93,252,93v134,0,228,-42,271,-122v19,-36,28,-98,28,-186v-87,86,-175,132,-330,135v-295,5,-521,-252,-521,-558v0,-308,213,-561,506,-558xm956,-555v0,-176,-123,-306,-297,-306v-169,0,-297,134,-297,304v0,175,130,310,302,310v171,0,292,-132,292,-308xm508,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1352},"\u0122":{"d":"383,-740v0,281,241,515,527,509v215,-5,331,-93,405,-252r-426,0r0,-263r740,0v23,316,-153,573,-357,692v-217,126,-563,114,-782,-8v-214,-119,-388,-371,-388,-681v0,-195,64,-364,193,-508v153,-171,351,-257,596,-257v290,0,475,98,635,277r-197,195v-125,-132,-270,-198,-436,-198v-278,0,-510,222,-510,494xm887,158v4,-60,-73,-59,-135,-54r35,-120r169,0r-12,46v77,15,144,73,144,154v0,121,-116,197,-257,197v-65,0,-139,-15,-222,-46r36,-129v85,27,236,52,242,-48","w":1720},"\u0123":{"d":"597,-1116v157,1,250,59,345,148r0,-120r272,0r0,932v6,401,-192,577,-560,582v-309,4,-485,-120,-564,-346r301,0v53,61,137,93,252,93v134,0,228,-42,271,-122v19,-36,28,-98,28,-186v-87,86,-175,132,-330,135v-295,5,-521,-252,-521,-558v0,-308,213,-561,506,-558xm956,-555v0,-176,-123,-306,-297,-306v-169,0,-297,134,-297,304v0,175,130,310,302,310v171,0,292,-132,292,-308xm803,-1247r-252,0v-1,-133,-2,-270,33,-365v23,-63,58,-129,109,-196r98,77v-49,73,-64,103,-89,197r101,0r0,287","w":1352},"\u0124":{"d":"167,-1471r284,0r0,555r492,0r0,-555r283,0r0,1471r-283,0r0,-645r-492,0r0,645r-284,0r0,-1471xm288,-1585r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1393},"\u0125":{"d":"733,-1116v215,0,368,151,368,397r0,719r-269,0r0,-477v0,-126,-6,-211,-18,-256v-21,-82,-75,-133,-169,-133v-124,0,-204,93,-225,205v-27,144,-9,472,-12,661r-271,0r0,-1508r271,0r0,530v90,-76,185,-138,325,-138xm211,-1583r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0"},"\u0126":{"d":"450,-1292r492,0r0,-179r283,0r0,179r133,0r0,163r-133,0r0,1129r-283,0r0,-645r-492,0r0,645r-283,0r0,-1129r-133,0r0,-163r133,0r0,-179r283,0r0,179xm450,-1129r0,213r492,0r0,-213r-492,0","w":1393},"\u0127":{"d":"733,-1116v227,0,373,156,373,397r0,719r-273,0r0,-477v-4,-185,9,-271,-71,-349v-65,-64,-194,-49,-258,15v-94,94,-94,166,-94,374r0,437r-273,0r0,-1221r-137,0r0,-163r137,0r0,-124r273,0r0,124r321,0r0,163r-321,0r0,243v102,-92,210,-138,323,-138"},"\u0128":{"d":"148,-1471r278,0r0,1471r-278,0r0,-1471xm460,-1585v-92,0,-209,-56,-304,-56v-59,0,-117,17,-176,52r-110,-165v85,-66,172,-99,259,-99v47,0,229,56,297,56v56,0,114,-17,174,-52r104,156v-84,72,-165,108,-244,108","w":573},"\u0129":{"d":"109,-1088r274,0r0,1088r-274,0r0,-1088xm419,-1287v-92,0,-209,-56,-304,-56v-59,0,-117,17,-176,52r-110,-165v85,-66,172,-99,259,-99v47,0,229,56,297,56v56,0,114,-17,174,-52r104,156v-84,72,-165,108,-244,108","w":491},"\u012a":{"d":"148,-1471r278,0r0,1471r-278,0r0,-1471xm2,-1585r0,-221r569,0r0,221r-569,0","w":573},"\u012b":{"d":"109,-1088r274,0r0,1088r-274,0r0,-1088xm-39,-1287r0,-221r569,0r0,221r-569,0","w":491},"\u012c":{"d":"148,-1471r278,0r0,1471r-278,0r0,-1471xm101,-1866v56,107,313,113,372,0r221,0v-30,182,-181,281,-408,281v-229,0,-369,-94,-406,-281r221,0","w":573},"\u012d":{"d":"109,-1088r274,0r0,1088r-274,0r0,-1088xm59,-1568v56,107,313,113,372,0r221,0v-30,182,-181,281,-408,281v-229,0,-369,-94,-406,-281r221,0","w":491},"\u012e":{"d":"148,-1471r278,0r0,1471r-278,0r0,-1471xm105,216v0,-107,84,-176,177,-216r144,0v-93,55,-140,110,-140,165v-1,56,46,94,104,93v23,0,52,-9,87,-27r0,159v-177,46,-372,-7,-372,-174","w":573},"\u012f":{"d":"71,-1362v0,-93,81,-174,174,-174v94,0,175,83,175,178v0,94,-80,176,-173,176v-96,0,-176,-84,-176,-180xm108,-1088r274,0r0,1088r-274,0r0,-1088xm61,216v0,-107,84,-176,177,-216r144,0v-93,55,-140,110,-140,165v-1,56,46,94,104,93v23,0,52,-9,87,-27r0,159v-177,46,-372,-7,-372,-174","w":491},"\u0134":{"d":"240,-365v71,76,105,128,205,128v30,0,52,-13,67,-38v15,-25,22,-81,22,-167r0,-1029r281,0r0,976v-3,273,-19,378,-159,477v-55,39,-125,55,-204,55v-162,0,-300,-71,-414,-213xm156,-1585r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":983},"\u0135":{"d":"-142,-1287r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0xm26,201v84,0,103,-48,104,-145r0,-1144r274,0r0,1124v0,160,-28,266,-84,315v-110,97,-247,91,-407,34r0,-215v42,21,80,31,113,31","w":532},"\u0136":{"d":"170,-1471r283,0r0,506r399,-506r337,0r-514,656r564,815r-332,0r-454,-653r0,653r-283,0r0,-1471xm837,250v0,119,-112,197,-257,197v-55,0,-120,-12,-194,-36r35,-131v91,25,215,30,216,-55v1,-63,-81,-62,-156,-52r26,-94v41,-3,73,-4,96,-4v134,-5,234,65,234,175","w":1270},"\u0137":{"d":"140,-1508r273,0r0,869r402,-449r342,0r-468,522r525,566r-339,0r-462,-501r0,501r-273,0r0,-1508xm809,250v0,119,-112,197,-257,197v-55,0,-120,-12,-194,-36r35,-131v91,25,215,30,216,-55v1,-63,-81,-62,-156,-52r26,-94v41,-3,73,-4,96,-4v134,-5,234,65,234,175","w":1188},"\u0138":{"d":"140,-1088r273,0r0,449r402,-449r342,0r-468,522r525,566r-339,0r-462,-501r0,501r-273,0r0,-1088","w":1188},"\u013b":{"d":"168,-1471r280,0r0,1204r408,0r0,267r-688,0r0,-1471xm665,250v0,119,-112,197,-257,197v-55,0,-120,-12,-194,-36r35,-131v91,25,215,30,216,-55v1,-63,-81,-62,-156,-52r26,-94v41,-3,73,-4,96,-4v134,-5,234,65,234,175","w":901},"\u013c":{"d":"109,-1508r273,0r0,1508r-273,0r0,-1508xm448,250v0,119,-112,197,-257,197v-55,0,-120,-12,-194,-36r35,-131v91,25,215,30,216,-55v1,-63,-81,-62,-156,-52r26,-94v41,-3,73,-4,96,-4v134,-5,234,65,234,175","w":491},"\u0145":{"d":"169,-1471r268,0r631,968r0,-968r280,0r0,1471r-269,0r-630,-965r0,965r-280,0r0,-1471xm961,250v0,119,-112,197,-257,197v-55,0,-120,-12,-194,-36r35,-131v91,25,215,30,216,-55v1,-63,-81,-62,-156,-52r26,-94v41,-3,73,-4,96,-4v134,-5,234,65,234,175","w":1515},"\u0146":{"d":"733,-1116v214,0,370,150,370,397r0,719r-270,0r0,-477v0,-130,-5,-216,-17,-259v-21,-79,-76,-131,-169,-131v-125,0,-204,94,-225,209v-26,147,-8,468,-12,658r-272,0r0,-1088r272,0r0,111v103,-84,175,-139,323,-139xm830,250v0,119,-112,197,-257,197v-55,0,-120,-12,-194,-36r35,-131v91,25,215,30,216,-55v1,-63,-81,-62,-156,-52r26,-94v41,-3,73,-4,96,-4v134,-5,234,65,234,175"},"\u014a":{"d":"1243,-715v0,-295,-138,-524,-395,-524v-141,0,-274,89,-397,267r0,972r-284,0r0,-1471r284,0r0,156v232,-273,657,-246,884,23v124,147,190,330,190,559v0,221,-48,405,-143,551v-95,146,-231,219,-408,219v-209,0,-296,-75,-401,-213r199,-186v121,174,298,170,397,-11v49,-93,74,-207,74,-342","w":1622},"\u014b":{"d":"734,-1116v225,0,371,159,371,397r0,755v0,160,-27,266,-83,315v-110,97,-247,91,-407,34r0,-215v41,21,79,31,112,31v81,0,105,-45,105,-145r0,-537v-5,-190,12,-266,-70,-345v-66,-64,-193,-50,-258,15v-93,94,-94,169,-94,374r0,437r-273,0r0,-1088r273,0r0,111v106,-93,214,-139,324,-139"},"\u014c":{"d":"865,37v-425,0,-775,-359,-769,-773v4,-310,169,-547,382,-668v120,-68,248,-104,385,-104v410,0,761,361,761,777v0,416,-346,768,-759,768xm1344,-733v0,-270,-218,-501,-484,-501v-272,0,-482,224,-482,503v0,276,214,497,487,497v263,0,479,-230,479,-499xm575,-1585r0,-221r569,0r0,221r-569,0","w":1720},"\u014d":{"d":"85,-543v0,-305,261,-581,564,-573v332,8,577,237,577,571v0,226,-128,410,-285,497v-89,49,-185,76,-291,76v-305,0,-565,-264,-565,-571xm950,-544v0,-179,-122,-315,-297,-315v-170,0,-296,140,-296,315v0,180,122,318,295,318v172,0,298,-140,298,-318xm371,-1287r0,-221r569,0r0,221r-569,0","w":1311},"\u014e":{"d":"865,37v-425,0,-775,-359,-769,-773v4,-310,169,-547,382,-668v120,-68,248,-104,385,-104v410,0,761,361,761,777v0,416,-346,768,-759,768xm1344,-733v0,-270,-218,-501,-484,-501v-272,0,-482,224,-482,503v0,276,214,497,487,497v263,0,479,-230,479,-499xm674,-1866v56,107,313,113,372,0r221,0v-30,182,-181,281,-408,281v-229,0,-369,-94,-406,-281r221,0","w":1720},"\u014f":{"d":"85,-543v0,-305,261,-581,564,-573v332,8,577,237,577,571v0,226,-128,410,-285,497v-89,49,-185,76,-291,76v-305,0,-565,-264,-565,-571xm950,-544v0,-179,-122,-315,-297,-315v-170,0,-296,140,-296,315v0,180,122,318,295,318v172,0,298,-140,298,-318xm469,-1568v56,107,313,113,372,0r221,0v-30,182,-181,281,-408,281v-229,0,-369,-94,-406,-281r221,0","w":1311},"\u0156":{"d":"1061,-1044v-3,213,-109,330,-279,390r348,654r-306,0r-331,-623r-26,0r0,623r-280,0r0,-1471v207,1,527,-9,645,43v132,58,230,198,229,384xm555,-896v154,-3,231,-20,235,-151v2,-67,-41,-115,-92,-135v-35,-14,-156,-16,-231,-15r0,301r88,0xm809,250v0,119,-112,197,-257,197v-55,0,-120,-12,-194,-36r35,-131v91,25,215,30,216,-55v1,-63,-81,-62,-156,-52r26,-94v41,-3,73,-4,96,-4v134,-5,234,65,234,175","w":1188},"\u0157":{"d":"308,-951v50,-123,200,-211,350,-137r-85,235v-86,-45,-135,-26,-185,54v-32,50,-43,214,-43,359r0,440r-271,0r0,-1088r234,0r0,137xm542,250v0,119,-112,197,-257,197v-55,0,-120,-12,-194,-36r35,-131v91,25,215,30,216,-55v1,-63,-81,-62,-156,-52r26,-94v41,-3,73,-4,96,-4v134,-5,234,65,234,175","w":655},"\u015c":{"d":"110,-1136v0,-206,190,-381,404,-372v208,9,298,94,425,237r-207,183v-73,-101,-147,-152,-222,-152v-95,0,-164,91,-100,166v17,36,369,326,399,358v93,100,153,175,156,336v5,245,-197,423,-451,417v-249,-6,-377,-129,-473,-319r235,-142v71,130,152,195,244,195v86,0,170,-61,170,-139v0,-33,-12,-67,-37,-100v-25,-33,-79,-84,-163,-153v-160,-131,-263,-232,-310,-303v-47,-71,-70,-141,-70,-212xm95,-1585r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1065},"\u015d":{"d":"93,-804v0,-178,163,-317,354,-312v161,4,283,78,358,180r-169,169v-69,-68,-131,-102,-187,-102v-70,0,-129,57,-82,109v27,31,131,74,182,100v105,53,178,105,217,159v39,54,59,117,59,190v0,203,-172,339,-392,339v-159,0,-285,-62,-380,-186r168,-183v49,59,139,121,227,125v62,3,115,-34,120,-86v7,-66,-141,-134,-211,-169v-177,-87,-264,-200,-264,-333xm30,-1287r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":901},"\u0166":{"d":"572,-792r216,0r0,163r-216,0r0,629r-284,0r0,-629r-217,0r0,-163r217,0r0,-403r-265,0r0,-276r813,0r0,276r-264,0r0,403","w":860},"\u0167":{"d":"443,-616r186,0r0,163r-186,0r0,453r-272,0r0,-453r-164,0r0,-163r164,0r0,-237r-140,0r0,-235r140,0r0,-401r272,0r0,401r162,0r0,235r-162,0r0,237","w":614},"\u0168":{"d":"158,-1471r281,0r0,952v1,147,14,202,93,255v65,43,182,41,246,-3v89,-62,95,-114,95,-287r0,-917r281,0r0,877v-3,272,-7,341,-120,474v-86,101,-200,155,-377,157v-212,2,-383,-113,-448,-257v-34,-74,-51,-199,-51,-374r0,-877xm829,-1585v-92,0,-209,-56,-304,-56v-59,0,-117,17,-176,52r-110,-165v85,-66,172,-99,259,-99v47,0,229,56,297,56v56,0,114,-17,174,-52r104,156v-84,72,-165,108,-244,108","w":1311},"\u0169":{"d":"137,-1088r276,0r0,524v2,173,7,240,89,305v57,46,172,46,230,1v81,-63,87,-117,87,-297r0,-533r274,0v-5,260,21,696,-45,851v-70,164,-205,265,-434,265v-243,1,-387,-117,-445,-303v-49,-158,-28,-571,-32,-813xm788,-1287v-92,0,-209,-56,-304,-56v-59,0,-117,17,-176,52r-110,-165v85,-66,172,-99,259,-99v47,0,229,56,297,56v56,0,114,-17,174,-52r104,156v-84,72,-165,108,-244,108"},"\u016a":{"d":"158,-1471r281,0r0,952v1,147,14,202,93,255v65,43,182,41,246,-3v89,-62,95,-114,95,-287r0,-917r281,0r0,877v-3,272,-7,341,-120,474v-86,101,-200,155,-377,157v-212,2,-383,-113,-448,-257v-34,-74,-51,-199,-51,-374r0,-877xm372,-1585r0,-221r569,0r0,221r-569,0","w":1311},"\u016b":{"d":"137,-1088r276,0r0,524v2,173,7,240,89,305v57,46,172,46,230,1v81,-63,87,-117,87,-297r0,-533r274,0v-5,260,21,696,-45,851v-70,164,-205,265,-434,265v-243,1,-387,-117,-445,-303v-49,-158,-28,-571,-32,-813xm330,-1287r0,-221r569,0r0,221r-569,0"},"\u016c":{"d":"158,-1471r281,0r0,952v1,147,14,202,93,255v65,43,182,41,246,-3v89,-62,95,-114,95,-287r0,-917r281,0r0,877v-3,272,-7,341,-120,474v-86,101,-200,155,-377,157v-212,2,-383,-113,-448,-257v-34,-74,-51,-199,-51,-374r0,-877xm470,-1866v56,107,313,113,372,0r221,0v-30,182,-181,281,-408,281v-229,0,-369,-94,-406,-281r221,0","w":1311},"\u016d":{"d":"137,-1088r276,0r0,524v2,173,7,240,89,305v57,46,172,46,230,1v81,-63,87,-117,87,-297r0,-533r274,0v-5,260,21,696,-45,851v-70,164,-205,265,-434,265v-243,1,-387,-117,-445,-303v-49,-158,-28,-571,-32,-813xm429,-1568v56,107,313,113,372,0r221,0v-30,182,-181,281,-408,281v-229,0,-369,-94,-406,-281r221,0"},"\u0172":{"d":"158,-1471r281,0r0,952v1,147,14,202,93,255v65,43,182,41,246,-3v89,-62,95,-114,95,-287r0,-917r281,0r0,877v-3,272,-7,341,-120,474v-86,101,-200,155,-377,157v-212,2,-383,-113,-448,-257v-34,-74,-51,-199,-51,-374r0,-877xm496,216v0,-107,84,-176,177,-216r144,0v-93,55,-140,110,-140,165v-1,56,46,94,104,93v23,0,52,-9,87,-27r0,159v-177,46,-372,-7,-372,-174","w":1311},"\u0173":{"d":"137,-1088r276,0r0,524v2,173,7,240,89,305v57,46,172,46,230,1v81,-63,87,-117,87,-297r0,-533r274,0v-5,260,21,696,-45,851v-70,164,-205,265,-434,265v-243,1,-387,-117,-445,-303v-49,-158,-28,-571,-32,-813xm465,216v0,-107,84,-176,177,-216r144,0v-93,55,-140,110,-140,165v-1,56,46,94,104,93v23,0,52,-9,87,-27r0,159v-177,46,-372,-7,-372,-174"},"\u0174":{"d":"56,-1471r276,0r212,939r263,-939r233,0r266,939r210,-939r276,0r-331,1471r-269,0r-271,-951r-266,951r-266,0xm515,-1585r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1843},"\u0175":{"d":"17,-1088r267,0r219,619r236,-619r163,0r231,612r219,-612r269,0r-397,1088r-173,0r-232,-620r-239,620r-171,0xm410,-1287r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1638},"\u0176":{"d":"63,-1471r301,0r274,528r272,-528r297,0r-430,834r0,637r-282,0r0,-637xm226,-1585r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1270},"\u0177":{"d":"17,-1088r279,0r283,683r312,-683r280,0r-682,1486r-282,0r224,-479xm186,-1287r300,-283r219,0r298,283r-298,0r-108,-131r-111,131r-300,0","w":1188},"\u017f":{"d":"468,-1306v-86,0,-86,25,-86,124r0,1182r-273,0r0,-1146v6,-208,-14,-265,92,-344v89,-67,246,-56,365,-7r0,208v-39,-11,-71,-17,-98,-17","w":491},"\u01fa":{"d":"616,-1471r284,0r566,1471r-291,0r-115,-303r-600,0r-120,303r-291,0xm760,-1081r-196,505r391,0xm538,-1635v0,-119,100,-223,219,-223v119,0,219,104,219,223v0,119,-101,224,-219,224v-118,0,-219,-105,-219,-224xm839,-1640v0,-47,-37,-89,-82,-89v-45,0,-82,42,-82,89v0,47,37,90,82,90v45,0,82,-43,82,-90xm805,-2297r323,0r-366,392r-196,0","w":1515},"\u01fb":{"d":"599,-1116v153,2,258,62,343,148r0,-120r272,0r0,1088r-272,0r0,-115v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324xm457,-1463v0,-119,100,-223,219,-223v119,0,219,104,219,223v0,119,-101,224,-219,224v-118,0,-219,-105,-219,-224xm758,-1468v0,-47,-37,-89,-82,-89v-45,0,-82,42,-82,89v0,47,37,90,82,90v45,0,82,-43,82,-90xm724,-2168r323,0r-366,392r-196,0","w":1352},"\u01fc":{"d":"774,-1471r963,0r0,274r-517,0r0,267r517,0r0,269r-517,0r0,387r517,0r0,274r-796,0r0,-304r-449,0r-147,304r-288,0xm941,-579r0,-644r-317,644r317,0xm1157,-1977r323,0r-366,392r-196,0","w":1843},"\u01fd":{"d":"629,-1116v164,4,277,63,363,170r0,-142r251,0r0,80v91,-72,198,-108,322,-108v361,0,590,262,567,653r-876,0v30,152,140,256,318,254v122,-1,183,-41,256,-110r230,108v-100,145,-253,239,-488,239v-133,0,-243,-35,-329,-106r0,78r-251,0r0,-138v-95,105,-184,162,-360,166v-307,6,-543,-256,-543,-569v0,-305,245,-581,540,-575xm1860,-676v-30,-119,-139,-208,-286,-207v-158,1,-261,83,-305,207r591,0xm994,-550v0,-179,-134,-318,-311,-318v-179,0,-316,145,-316,326v0,180,134,321,313,321v189,0,314,-137,314,-329xm1160,-1679r323,0r-366,392r-196,0","w":2212},"\u01fe":{"d":"314,-194v-124,-125,-217,-312,-217,-542v0,-310,171,-546,383,-668v264,-152,585,-135,826,41r161,-190r126,104r-164,198v131,146,196,319,196,520v0,416,-346,768,-758,768v-159,0,-301,-42,-426,-125r-171,202r-127,-106xm862,-1234v-273,0,-483,223,-483,503v0,129,38,238,114,326r636,-749v-75,-53,-164,-80,-267,-80xm867,-234v262,0,478,-230,478,-499v0,-113,-33,-214,-100,-305r-625,738v75,44,157,66,247,66xm909,-1977r323,0r-366,392r-196,0","w":1720},"\u01ff":{"d":"106,-543v0,-305,262,-573,565,-573v119,0,229,34,331,103r126,-140r123,110r-128,143v145,180,164,434,47,643v-90,161,-266,285,-498,285v-112,0,-213,-29,-303,-88r-130,145r-125,-107r130,-146v-92,-106,-138,-231,-138,-375xm675,-859v-170,-3,-297,140,-297,315v0,63,15,122,45,177r406,-453v-45,-26,-97,-39,-154,-39xm544,-255v215,99,427,-65,427,-289v0,-55,-11,-105,-32,-152xm727,-1679r323,0r-366,392r-196,0","w":1352},"\u0384":{"d":"571,-1639r-43,382r-196,0r-44,-382r283,0","w":860},"\u0385":{"d":"571,-1639r-43,382r-196,0r-44,-382r283,0xm130,-1516v71,0,130,58,130,129v0,71,-59,129,-130,129v-70,0,-129,-59,-129,-129v0,-70,59,-129,129,-129xm729,-1516v70,0,129,58,129,129v0,70,-59,129,-129,129v-70,0,-129,-59,-129,-129v0,-70,59,-129,129,-129","w":860},"\u0386":{"d":"616,-1471r284,0r566,1471r-291,0r-115,-303r-600,0r-120,303r-291,0xm760,-1081r-196,505r391,0xm385,-1508r-43,382r-196,0r-44,-382r283,0","w":1515},"\u0387":{"d":"287,-1116v84,0,157,73,157,157v0,84,-73,156,-157,156v-86,0,-157,-70,-157,-156v0,-85,72,-157,157,-157","w":573},"\u0388":{"d":"332,-1471r803,0r0,274r-525,0r0,266r525,0r0,269r-525,0r0,387r525,0r0,275r-803,0r0,-1471xm183,-1508r-43,382r-196,0r-44,-382r283,0","w":1228},"\u0389":{"d":"330,-1471r284,0r0,555r492,0r0,-555r283,0r0,1471r-283,0r0,-645r-492,0r0,645r-284,0r0,-1471xm183,-1508r-43,382r-196,0r-44,-382r283,0","w":1556},"\u038a":{"d":"311,-1471r278,0r0,1471r-278,0r0,-1471xm183,-1508r-43,382r-196,0r-44,-382r283,0","w":736},"\u038c":{"d":"938,37v-425,0,-775,-359,-769,-773v4,-310,169,-547,382,-668v120,-68,248,-104,385,-104v410,0,761,361,761,777v0,416,-346,768,-759,768xm1417,-733v0,-270,-218,-501,-484,-501v-272,0,-482,224,-482,503v0,276,214,497,487,497v263,0,479,-230,479,-499xm183,-1508r-43,382r-196,0r-44,-382r283,0","w":1793},"\u038e":{"d":"236,-1471r301,0r274,528r272,-528r297,0r-430,834r0,637r-282,0r0,-637xm183,-1508r-43,382r-196,0r-44,-382r283,0","w":1443},"\u038f":{"d":"949,-1507v428,0,748,262,748,670v0,225,-115,412,-346,560r373,0r0,277r-677,0r0,-333v245,-124,368,-292,368,-503v0,-253,-198,-397,-466,-397v-269,0,-466,148,-467,397v0,210,123,378,368,503r0,333r-677,0r0,-277r373,0v-231,-148,-346,-335,-346,-560v0,-410,329,-670,749,-670xm183,-1508r-43,382r-196,0r-44,-382r283,0","w":1824},"\u0390":{"d":"108,-1088r274,0r0,1088r-274,0r0,-1088xm387,-1639r-43,382r-196,0r-44,-382r283,0xm-54,-1516v71,0,130,58,130,129v0,71,-59,129,-130,129v-70,0,-129,-59,-129,-129v0,-70,59,-129,129,-129xm545,-1516v70,0,129,58,129,129v0,70,-59,129,-129,129v-70,0,-129,-59,-129,-129v0,-70,59,-129,129,-129","w":491},"\u0391":{"d":"616,-1471r284,0r566,1471r-291,0r-115,-303r-600,0r-120,303r-291,0xm760,-1081r-196,505r391,0","w":1515},"\u0392":{"d":"830,-810v157,74,255,178,258,381v3,175,-107,318,-229,379v-154,77,-459,42,-691,50r0,-1471v165,0,422,-2,525,26v159,44,288,167,288,354v0,137,-60,212,-151,281xm710,-1054v0,-128,-116,-161,-262,-150r0,310v149,10,262,-28,262,-160xm813,-439v0,-173,-158,-214,-365,-205r0,377v200,1,365,-1,365,-172","w":1188},"\u0393":{"d":"167,-1471r730,0r0,274r-453,0r0,1197r-277,0r0,-1471","w":948},"\u0394":{"d":"1444,0r-1368,0r0,-235r557,-1236r251,0r560,1236r0,235xm1117,-275r-360,-806r-357,806r717,0","w":1515},"\u0395":{"d":"169,-1471r803,0r0,274r-525,0r0,266r525,0r0,269r-525,0r0,387r525,0r0,275r-803,0r0,-1471","w":1065},"\u0396":{"d":"90,-1471r890,0r-525,1202r491,0r0,269r-899,0r523,-1194r-480,0r0,-277","w":1024},"\u0397":{"d":"167,-1471r284,0r0,555r492,0r0,-555r283,0r0,1471r-283,0r0,-645r-492,0r0,645r-284,0r0,-1471","w":1393},"\u0398":{"d":"863,-1508v415,0,761,358,761,777v0,418,-342,768,-759,768v-423,0,-769,-351,-769,-773v0,-419,355,-772,767,-772xm860,-1234v-276,0,-482,225,-482,503v0,281,222,497,487,497v268,0,479,-231,479,-499v0,-270,-215,-501,-484,-501xm598,-876r526,0r0,269r-526,0r0,-269","w":1720},"\u0399":{"d":"148,-1471r278,0r0,1471r-278,0r0,-1471","w":573},"\u039a":{"d":"170,-1471r283,0r0,506r399,-506r337,0r-514,656r564,815r-332,0r-454,-653r0,653r-283,0r0,-1471","w":1270},"\u039b":{"d":"1120,0r-407,-1081r-414,1081r-297,0r567,-1471r284,0r566,1471r-299,0","w":1421},"\u039c":{"d":"310,-1471r274,0r340,1026r345,-1026r270,0r248,1471r-270,0r-158,-929r-313,929r-247,0r-309,-929r-161,929r-273,0","w":1843},"\u039d":{"d":"169,-1471r268,0r631,968r0,-968r280,0r0,1471r-269,0r-630,-965r0,965r-280,0r0,-1471","w":1515},"\u039e":{"d":"973,-1197r-863,0r0,-274r863,0r0,274xm973,-662r-863,0r0,-269r863,0r0,269xm973,0r-863,0r0,-275r863,0r0,275","w":1083},"\u039f":{"d":"865,37v-425,0,-775,-359,-769,-773v4,-310,169,-547,382,-668v120,-68,248,-104,385,-104v410,0,761,361,761,777v0,416,-346,768,-759,768xm1344,-733v0,-270,-218,-501,-484,-501v-272,0,-482,224,-482,503v0,276,214,497,487,497v263,0,479,-230,479,-499","w":1720},"\u03a0":{"d":"167,-1471r1059,0r0,1471r-283,0r0,-1209r-492,0r0,1209r-284,0r0,-1471","w":1393},"\u03a1":{"d":"167,-1471v209,1,524,-8,645,45v135,59,229,192,229,382v0,215,-126,349,-299,398v-54,15,-152,23,-295,23r0,623r-280,0r0,-1471xm770,-1044v-5,-125,-85,-155,-244,-153r-79,0r0,301v75,0,197,0,235,-15v51,-20,91,-65,88,-133","w":1147},"\u03a3":{"d":"26,0r388,-734r-382,-737r902,0r0,274r-458,0r242,464r-245,458r474,0r0,275r-921,0","w":1027},"\u03a4":{"d":"23,-1471r813,0r0,276r-268,0r0,1195r-284,0r0,-1195r-261,0r0,-276","w":860},"\u03a5":{"d":"63,-1471r301,0r274,528r272,-528r297,0r-430,834r0,637r-282,0r0,-637","w":1270},"\u03a6":{"d":"1683,-745v1,381,-274,590,-661,597r0,148r-284,0r0,-148v-209,-20,-371,-81,-487,-184v-116,-103,-174,-240,-174,-411v0,-356,308,-583,661,-597r0,-131r284,0r0,131v365,22,659,229,661,595xm1022,-1084r0,679v251,-23,376,-136,376,-340v0,-202,-125,-315,-376,-339xm738,-1084v-251,22,-376,135,-376,340v0,201,125,314,376,339r0,-679","w":1760},"\u03a7":{"d":"72,-1471r315,0r308,471r311,-471r315,0r-468,712r497,759r-315,0r-340,-517r-337,517r-317,0r497,-759","w":1393},"\u03a8":{"d":"981,-628v221,-43,290,-111,290,-376r0,-467r281,0r0,509v0,349,-190,547,-571,593r0,369r-280,0r0,-369v-381,-45,-571,-246,-571,-602r0,-500r281,0r0,467v2,261,70,336,290,375r0,-842r280,0r0,843","w":1682},"\u03a9":{"d":"876,-1507v428,0,748,262,748,670v0,225,-115,412,-346,560r373,0r0,277r-677,0r0,-333v245,-124,368,-292,368,-503v0,-253,-198,-397,-466,-397v-269,0,-466,148,-467,397v0,210,123,378,368,503r0,333r-677,0r0,-277r373,0v-231,-148,-346,-335,-346,-560v0,-410,329,-670,749,-670","w":1751},"\u03aa":{"d":"148,-1471r278,0r0,1471r-278,0r0,-1471xm-78,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm365,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":573},"\u03ab":{"d":"63,-1471r301,0r274,528r272,-528r297,0r-430,834r0,637r-282,0r0,-637xm280,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm723,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1270},"\u03ac":{"d":"599,-1116v153,2,258,62,343,148r0,-120r272,0r0,1088r-272,0r0,-115v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324xm817,-1639r-43,382r-196,0r-44,-382r283,0","w":1352},"\u03ad":{"d":"393,-334v0,78,70,121,152,120v65,0,136,-30,213,-91r122,209v-96,83,-218,124,-365,124v-231,0,-431,-117,-429,-338v0,-131,68,-221,203,-271v-101,-59,-152,-135,-152,-230v0,-192,170,-305,368,-305v115,0,220,37,314,112r-108,188v-67,-43,-123,-65,-168,-65v-69,0,-126,49,-126,115v0,92,82,118,191,110r0,195r-71,0v-78,-2,-144,51,-144,127xm590,-1639r-43,382r-196,0r-44,-382r283,0","w":897},"\u03ae":{"d":"733,-1116v217,0,370,152,370,397r0,1117r-270,0r0,-875v-5,-173,10,-260,-63,-343v-60,-68,-201,-59,-264,2v-91,88,-96,177,-96,381r0,437r-272,0r0,-1088r272,0r0,111v110,-93,218,-139,323,-139xm756,-1639r-43,382r-196,0r-44,-382r283,0"},"\u03af":{"d":"108,-1088r274,0r0,1088r-274,0r0,-1088xm387,-1639r-43,382r-196,0r-44,-382r283,0","w":491},"\u03b0":{"d":"1144,-521v0,313,-204,554,-524,549v-227,-3,-367,-81,-448,-232v-41,-78,-62,-193,-62,-348r0,-537r272,0r0,512v2,234,40,351,238,351v169,0,254,-99,254,-298v0,-159,-90,-282,-270,-369r148,-227v261,144,392,344,392,599xm756,-1639r-43,382r-196,0r-44,-382r283,0xm315,-1516v71,0,130,58,130,129v0,71,-59,129,-130,129v-70,0,-129,-59,-129,-129v0,-70,59,-129,129,-129xm914,-1516v70,0,129,58,129,129v0,70,-59,129,-129,129v-70,0,-129,-59,-129,-129v0,-70,59,-129,129,-129"},"\u03b1":{"d":"599,-1116v153,2,258,62,343,148r0,-120r272,0r0,1088r-272,0r0,-115v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324","w":1352},"\u03b2":{"d":"1182,-481v0,298,-201,508,-494,508v-119,0,-215,-37,-286,-110r0,481r-272,0r0,-1470v-4,-275,179,-464,453,-464v236,0,425,145,424,367v0,105,-54,197,-161,274v224,67,336,205,336,414xm654,-223v143,0,256,-89,256,-229v0,-178,-130,-266,-382,-264r0,-231v138,-21,207,-84,207,-191v0,-85,-56,-148,-142,-148v-127,0,-191,88,-191,265r0,538v-1,159,92,260,252,260","w":1267},"\u03b3":{"d":"710,-114r0,512r-274,0r0,-511r-415,-975r278,0r275,642r274,-642r277,0","w":1147},"\u03b4":{"d":"614,28v-275,0,-529,-223,-529,-488v0,-207,104,-353,312,-438v-97,-75,-145,-163,-145,-263v0,-243,205,-375,456,-375v87,0,189,14,308,43r-71,246v-89,-23,-165,-34,-226,-34v-130,0,-195,39,-195,117v0,46,19,81,58,106v39,25,103,56,194,91v245,95,367,258,367,487v0,281,-246,508,-529,508xm871,-477v0,-141,-119,-262,-257,-262v-140,0,-257,121,-257,262v0,142,114,258,257,258v143,0,257,-116,257,-258","w":1228},"\u03b5":{"d":"393,-334v0,78,70,121,152,120v65,0,136,-30,213,-91r122,209v-96,83,-218,124,-365,124v-231,0,-431,-117,-429,-338v0,-131,68,-221,203,-271v-101,-59,-152,-135,-152,-230v0,-192,170,-305,368,-305v115,0,220,37,314,112r-108,188v-67,-43,-123,-65,-168,-65v-69,0,-126,49,-126,115v0,92,82,118,191,110r0,195r-71,0v-78,-2,-144,51,-144,127","w":897},"\u03b6":{"d":"974,78v3,227,-172,350,-403,348v-65,0,-142,-11,-231,-33r58,-241v87,40,310,61,310,-58v0,-42,-22,-73,-69,-85v-246,-65,-386,-82,-493,-259v-111,-182,-88,-444,40,-622v77,-107,203,-236,388,-381r-408,0r0,-255r785,0r0,227v-206,145,-358,276,-456,392v-98,116,-147,232,-147,347v0,83,18,141,55,175v37,34,107,65,212,93v153,41,251,88,294,144v43,56,65,125,65,208","w":974},"\u03b7":{"d":"733,-1116v217,0,370,152,370,397r0,1117r-270,0r0,-875v-5,-173,10,-260,-63,-343v-60,-68,-201,-59,-264,2v-91,88,-96,177,-96,381r0,437r-272,0r0,-1088r272,0r0,111v110,-93,218,-139,323,-139"},"\u03b8":{"d":"669,-1536v418,0,587,327,587,781v0,251,-50,443,-151,579v-101,136,-247,204,-440,204v-187,0,-330,-68,-430,-206v-100,-138,-150,-329,-150,-574v0,-239,51,-429,153,-571v102,-142,246,-213,431,-213xm363,-880r612,0v-25,-268,-127,-402,-307,-402v-177,0,-279,134,-305,402xm973,-625r-610,0v27,266,129,399,304,399v177,0,279,-133,306,-399","w":1341},"\u03b9":{"d":"108,-1088r274,0r0,1088r-274,0r0,-1088","w":491},"\u03ba":{"d":"140,-1089r273,0r0,450r402,-449r342,0r-468,522r525,566r-339,0r-462,-501r0,501r-273,0r0,-1089","w":1188},"\u03bb":{"d":"1171,0r-280,0r-312,-683r-283,683r-279,0r414,-1007r-234,-501r282,0","w":1188},"\u03bc":{"d":"1097,0r-272,0r0,-111v-87,87,-175,130,-266,130v-67,0,-119,-21,-157,-63r0,442r-270,0r0,-1486r270,0r0,477v5,173,-9,260,64,343v60,68,199,59,262,-2v91,-88,97,-177,97,-381r0,-437r272,0r0,1088"},"\u03bd":{"d":"21,-1088r278,0r275,642r274,-642r277,0r-463,1088r-177,0","w":1147},"\u03be":{"d":"974,78v0,313,-333,408,-634,314r58,-240v57,21,116,31,175,31v90,0,135,-29,135,-88v0,-27,-12,-47,-34,-59v-22,-12,-82,-32,-182,-56v-277,-67,-416,-213,-416,-440v0,-182,84,-319,251,-411v-117,-72,-176,-173,-176,-304v-1,-248,208,-363,468,-361v104,0,211,15,320,46r-74,244v-84,-23,-169,-34,-254,-34v-125,0,-188,48,-188,144v0,168,238,174,434,167r0,255r-226,0v-164,-1,-282,72,-283,227v0,60,18,105,54,135v36,30,108,58,217,87v155,41,252,89,293,143v41,54,62,121,62,200","w":974},"\u03bf":{"d":"85,-543v0,-305,261,-581,564,-573v332,8,577,237,577,571v0,226,-128,410,-285,497v-89,49,-185,76,-291,76v-305,0,-565,-264,-565,-571xm950,-544v0,-179,-122,-315,-297,-315v-170,0,-296,140,-296,315v0,180,122,318,295,318v172,0,298,-140,298,-318","w":1311},"\u03c0":{"d":"1322,-833r-180,0r0,833r-272,0r0,-833r-368,0r0,833r-272,0r0,-833r-170,0r0,-255r1262,0r0,255","w":1382},"\u03c1":{"d":"1251,-545v0,319,-219,573,-532,573v-124,0,-236,-52,-335,-155r0,525r-274,0r0,-941v-8,-307,257,-573,564,-573v308,0,577,261,577,571xm678,-859v-171,0,-296,139,-296,315v0,179,119,318,295,318v175,0,298,-141,298,-318v0,-179,-120,-315,-297,-315","w":1336},"\u03c2":{"d":"85,-556v0,-349,244,-564,595,-560v210,2,401,110,491,248r-227,125v-83,-79,-174,-119,-274,-119v-179,-1,-309,102,-309,280v0,78,23,141,71,188v48,47,135,89,261,125v144,41,239,89,287,143v48,54,72,123,72,204v3,227,-172,350,-403,348v-65,0,-142,-11,-231,-33r58,-241v49,21,107,31,174,31v90,0,136,-11,136,-89v0,-42,-50,-75,-150,-98v-197,-46,-339,-113,-424,-202v-85,-89,-127,-206,-127,-350","w":1199},"\u03c3":{"d":"85,-543v0,-366,354,-671,743,-545r580,0r0,255r-272,0v60,65,90,161,90,288v0,309,-260,573,-576,573v-308,0,-565,-262,-565,-571xm950,-544v0,-179,-120,-315,-297,-315v-173,0,-296,141,-296,315v0,179,119,318,295,318v175,0,298,-141,298,-318","w":1468},"\u03c4":{"d":"792,-833r-230,0r0,833r-272,0r0,-833r-230,0r0,-255r732,0r0,255","w":852},"\u03c5":{"d":"1144,-521v0,313,-204,554,-524,549v-227,-3,-367,-81,-448,-232v-41,-78,-62,-193,-62,-348r0,-537r272,0r0,512v2,234,40,351,238,351v169,0,254,-99,254,-298v0,-159,-90,-282,-270,-369r148,-227v261,144,392,344,392,599"},"\u03c6":{"d":"675,-1109v478,-48,872,129,872,563v0,324,-200,514,-600,569r0,375r-272,0r0,-376v-393,-41,-590,-230,-590,-568v0,-274,192,-461,409,-562r76,265v-142,83,-213,183,-213,300v0,210,116,277,318,311r0,-877xm947,-857r0,625v219,-29,328,-133,328,-311v0,-195,-109,-300,-328,-314","w":1632},"\u03c7":{"d":"1100,-1088r-381,702r427,784r-302,0r-273,-530r-272,530r-298,0r423,-780r-384,-706r302,0r230,452r229,-452r299,0","w":1147},"\u03c8":{"d":"916,-241v228,-36,262,-124,262,-387r0,-460r272,0r0,541v0,338,-178,528,-534,569r0,376r-272,0r0,-376v-356,-40,-534,-233,-534,-578r0,-532r272,0r0,460v1,278,53,350,262,386r0,-846r272,0r0,847","w":1560},"\u03c9":{"d":"1674,-502v0,321,-180,532,-496,530v-141,0,-241,-54,-300,-161v-67,107,-167,161,-300,161v-316,2,-496,-209,-496,-530v0,-371,263,-606,633,-617r21,258v-255,32,-382,153,-382,363v0,187,71,280,213,280v117,0,176,-92,176,-276r0,-131r269,0r0,131v0,184,59,276,177,276v142,0,213,-93,213,-280v0,-251,-143,-326,-382,-363r21,-258v367,12,633,246,633,617","w":1756},"\u03ca":{"d":"108,-1088r274,0r0,1088r-274,0r0,-1088xm-119,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm324,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":491},"\u03cb":{"d":"1144,-521v0,313,-204,554,-524,549v-227,-3,-367,-81,-448,-232v-41,-78,-62,-193,-62,-348r0,-537r272,0r0,512v2,234,40,351,238,351v169,0,254,-99,254,-298v0,-159,-90,-282,-270,-369r148,-227v261,144,392,344,392,599xm249,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm692,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144"},"\u03cc":{"d":"85,-543v0,-305,261,-581,564,-573v332,8,577,237,577,571v0,226,-128,410,-285,497v-89,49,-185,76,-291,76v-305,0,-565,-264,-565,-571xm950,-544v0,-179,-122,-315,-297,-315v-170,0,-296,140,-296,315v0,180,122,318,295,318v172,0,298,-140,298,-318xm797,-1639r-43,382r-196,0r-44,-382r283,0","w":1311},"\u03cd":{"d":"1144,-521v0,313,-204,554,-524,549v-227,-3,-367,-81,-448,-232v-41,-78,-62,-193,-62,-348r0,-537r272,0r0,512v2,234,40,351,238,351v169,0,254,-99,254,-298v0,-159,-90,-282,-270,-369r148,-227v261,144,392,344,392,599xm756,-1639r-43,382r-196,0r-44,-382r283,0"},"\u03ce":{"d":"1674,-502v0,321,-180,532,-496,530v-141,0,-241,-54,-300,-161v-67,107,-167,161,-300,161v-316,2,-496,-209,-496,-530v0,-371,263,-606,633,-617r21,258v-255,32,-382,153,-382,363v0,187,71,280,213,280v117,0,176,-92,176,-276r0,-131r269,0r0,131v0,184,59,276,177,276v142,0,213,-93,213,-280v0,-251,-143,-326,-382,-363r21,-258v367,12,633,246,633,617xm1019,-1639r-43,382r-196,0r-44,-382r283,0","w":1756},"\u0401":{"d":"169,-1471r803,0r0,274r-525,0r0,266r525,0r0,269r-525,0r0,387r525,0r0,275r-803,0r0,-1471xm204,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm647,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1065},"\u0402":{"d":"1337,-429v1,258,-106,464,-354,463v-75,0,-164,-16,-268,-47r85,-234v143,58,255,13,250,-168v-6,-216,-144,-233,-387,-230r-94,0r0,645r-285,0r0,-1195r-264,0r0,-276r813,0r0,276r-264,0r0,279v330,-1,589,1,701,200v43,77,67,172,67,287","w":1413},"\u0403":{"d":"167,-1471r730,0r0,274r-453,0r0,1197r-277,0r0,-1471xm691,-1977r323,0r-366,392r-196,0","w":948},"\u0404":{"d":"390,-596v59,225,240,364,490,364v161,0,309,-70,445,-211r190,198v-193,188,-333,273,-639,282v-453,13,-780,-334,-780,-775v0,-231,79,-416,235,-558v238,-217,576,-277,899,-135v115,51,212,124,291,219r-196,187v-201,-230,-534,-290,-775,-94v-94,77,-147,167,-160,268r564,0r0,255r-564,0","w":1597},"\u0405":{"d":"110,-1136v0,-206,190,-381,404,-372v208,9,298,94,425,237r-207,183v-73,-101,-147,-152,-222,-152v-95,0,-164,91,-100,166v17,36,369,326,399,358v93,100,153,175,156,336v5,245,-197,423,-451,417v-249,-6,-377,-129,-473,-319r235,-142v71,130,152,195,244,195v86,0,170,-61,170,-139v0,-33,-12,-67,-37,-100v-25,-33,-79,-84,-163,-153v-160,-131,-263,-232,-310,-303v-47,-71,-70,-141,-70,-212","w":1065},"\u0406":{"d":"148,-1471r278,0r0,1471r-278,0r0,-1471","w":573},"\u0407":{"d":"148,-1471r278,0r0,1471r-278,0r0,-1471xm-78,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm365,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":573},"\u0408":{"d":"240,-365v71,76,105,128,205,128v30,0,52,-13,67,-38v15,-25,22,-81,22,-167r0,-1029r281,0r0,976v-3,273,-19,378,-159,477v-55,39,-125,55,-204,55v-162,0,-300,-71,-414,-213","w":983},"\u0409":{"d":"1086,-916v197,2,453,-10,590,36v147,49,281,229,281,434v0,196,-128,365,-265,412v-134,46,-383,31,-572,34r-407,-1081r-414,1081r-297,0r567,-1471r284,0xm1388,-267v201,-4,292,-20,292,-190v0,-139,-102,-209,-305,-209r-208,0r154,399r67,0","w":2034},"\u040a":{"d":"1304,-916v342,-10,553,172,562,468v5,195,-114,348,-243,405v-157,70,-454,35,-680,43r0,-648r-492,0r0,648r-284,0r0,-1471r284,0r0,555r492,0r0,-555r283,0r0,555r78,0xm1297,-267v196,-2,283,-27,292,-185v8,-146,-119,-208,-305,-196r-58,0r0,381r71,0","w":1941},"\u040b":{"d":"1023,-376v-6,-234,-87,-263,-336,-269r-118,0r0,645r-285,0r0,-1195r-264,0r0,-276r813,0r0,276r-264,0r0,279v137,-1,324,4,395,21v130,31,263,134,306,257v54,154,30,427,36,638r-283,0r0,-376","w":1403},"\u040c":{"d":"167,-1471r283,0r0,506r399,-506r337,0r-514,656r564,815r-332,0r-454,-653r0,653r-283,0r0,-1471xm751,-1977r323,0r-366,392r-196,0","w":1266},"\u040e":{"d":"579,-336r-522,-1135r316,0r346,820r284,-820r288,0r-392,1052v-67,180,-139,302,-219,361v-230,170,-471,94,-655,-122r184,-185v73,85,146,128,217,128v85,0,102,-43,153,-99xm495,-1865v56,107,313,113,372,0r221,0v-30,182,-181,281,-408,281v-229,0,-369,-94,-406,-281r221,0","w":1313},"\u040f":{"d":"167,0r0,-1471r284,0r0,1219r491,0r0,-1219r284,0r0,1471r-399,0r0,220r-262,0r0,-220r-398,0","w":1393},"\u0410":{"d":"616,-1471r284,0r566,1471r-291,0r-115,-303r-600,0r-120,303r-291,0xm760,-1081r-196,505r391,0","w":1515},"\u0411":{"d":"167,0r0,-1471r769,0r0,273r-489,0r0,282v275,-3,446,34,561,196v92,130,106,383,20,514v-86,131,-217,206,-449,206r-412,0xm517,-267v209,-2,284,-27,294,-185v10,-160,-145,-225,-364,-214r0,399r70,0","w":1165},"\u0412":{"d":"830,-810v157,74,255,178,258,381v3,175,-107,318,-229,379v-154,77,-459,42,-691,50r0,-1471v165,0,422,-2,525,26v159,44,288,167,288,354v0,137,-60,212,-151,281xm710,-1054v0,-128,-116,-161,-262,-150r0,310v149,10,262,-28,262,-160xm813,-439v0,-173,-158,-214,-365,-205r0,377v200,1,365,-1,365,-172","w":1188},"\u0413":{"d":"167,-1471r730,0r0,274r-453,0r0,1197r-277,0r0,-1471","w":948},"\u0414":{"d":"646,-1471r283,0r473,1208r164,0r0,483r-271,0r0,-220r-1012,0r0,220r-271,0r0,-483r163,0xm790,-1081r-322,818r643,0","w":1579},"\u0415":{"d":"169,-1471r803,0r0,274r-525,0r0,266r525,0r0,269r-525,0r0,387r525,0r0,275r-803,0r0,-1471","w":1065},"\u0416":{"d":"815,-653r-39,-42r-414,695r-332,0r543,-851r-493,-620r337,0r398,526r0,-526r284,0r0,526r398,-526r338,0r-494,620r543,851r-332,0r-414,-695r-39,42r0,653r-284,0r0,-653","w":1915},"\u0417":{"d":"994,-417v0,274,-214,462,-491,454v-252,-7,-336,-84,-479,-263r214,-157v74,103,161,155,260,155v127,0,223,-80,221,-205v-3,-180,-142,-220,-366,-211r0,-250v166,12,285,-42,286,-188v1,-104,-71,-172,-175,-171v-63,0,-127,31,-193,93r-165,-184v137,-123,204,-162,386,-167v233,-7,433,153,425,388v-5,165,-47,224,-181,313v172,77,258,208,258,393","w":1094},"\u0418":{"d":"1240,-1471r0,1471r-280,0r0,-921r-549,921r-244,0r0,-1471r280,0r0,951r557,-951r236,0","w":1407},"\u0419":{"d":"1240,-1471r0,1471r-280,0r0,-921r-549,921r-244,0r0,-1471r280,0r0,951r557,-951r236,0xm527,-1865v56,107,313,113,372,0r221,0v-30,182,-181,281,-408,281v-229,0,-369,-94,-406,-281r221,0","w":1407},"\u041a":{"d":"170,-1471r283,0r0,506r399,-506r337,0r-514,656r564,815r-332,0r-454,-653r0,653r-283,0r0,-1471","w":1270},"\u041b":{"d":"1120,0r-407,-1081r-414,1081r-297,0r567,-1471r284,0r566,1471r-299,0","w":1421},"\u041c":{"d":"310,-1471r274,0r340,1026r345,-1026r270,0r248,1471r-270,0r-158,-929r-313,929r-247,0r-309,-929r-161,929r-273,0","w":1843},"\u041d":{"d":"167,-1471r284,0r0,555r492,0r0,-555r283,0r0,1471r-283,0r0,-645r-492,0r0,645r-284,0r0,-1471","w":1393},"\u041e":{"d":"865,37v-425,0,-775,-359,-769,-773v4,-310,169,-547,382,-668v120,-68,248,-104,385,-104v410,0,761,361,761,777v0,416,-346,768,-759,768xm1344,-733v0,-270,-218,-501,-484,-501v-272,0,-482,224,-482,503v0,276,214,497,487,497v263,0,479,-230,479,-499","w":1720},"\u041f":{"d":"167,-1471r1059,0r0,1471r-283,0r0,-1209r-492,0r0,1209r-284,0r0,-1471","w":1393},"\u0420":{"d":"167,-1471v209,1,524,-8,645,45v135,59,229,192,229,382v0,215,-126,349,-299,398v-54,15,-152,23,-295,23r0,623r-280,0r0,-1471xm770,-1044v-5,-125,-85,-155,-244,-153r-79,0r0,301v75,0,197,0,235,-15v51,-20,91,-65,88,-133","w":1147},"\u0421":{"d":"875,37v-448,10,-786,-329,-780,-775v5,-323,162,-541,385,-666v225,-126,507,-139,750,-27v112,51,209,124,290,219r-196,187v-133,-141,-283,-211,-450,-211v-275,0,-506,225,-500,499v6,308,202,505,505,505v218,0,307,-80,445,-211r190,198v-191,180,-325,275,-639,282","w":1597},"\u0422":{"d":"23,-1471r813,0r0,276r-268,0r0,1195r-284,0r0,-1195r-261,0r0,-276","w":860},"\u0423":{"d":"579,-336r-522,-1135r316,0r346,820r284,-820r288,0r-392,1052v-67,180,-139,302,-219,361v-230,170,-471,94,-655,-122r184,-185v73,85,146,128,217,128v85,0,102,-43,153,-99","w":1313},"\u0424":{"d":"904,-1471r0,190v377,-15,592,125,592,437v0,247,-139,382,-330,428v-57,14,-144,17,-262,17r0,399r-282,0r0,-399v-246,-3,-391,-37,-498,-177v-95,-124,-101,-374,-15,-508v99,-155,235,-196,513,-197r0,-190r282,0xm312,-837v-6,176,131,194,310,189r0,-375r-65,0v-173,0,-240,40,-245,186xm1230,-839v0,-142,-74,-185,-244,-184r-82,0r0,375r92,0v166,2,234,-53,234,-191","w":1544},"\u0425":{"d":"72,-1471r315,0r308,471r311,-471r315,0r-468,712r497,759r-315,0r-340,-517r-337,517r-317,0r497,-759","w":1393},"\u0426":{"d":"167,0r0,-1471r284,0r0,1219r492,0r0,-1219r283,0r0,1219r299,0r0,472r-262,0r0,-220r-1096,0","w":1536},"\u0427":{"d":"358,-1184v6,215,56,265,284,268r170,0r0,-555r282,0r0,1471r-282,0r0,-644v-135,1,-322,-4,-394,-21v-130,-31,-263,-133,-308,-255v-47,-129,-33,-366,-36,-551r284,0r0,287","w":1262},"\u0428":{"d":"844,-252r0,-1219r282,0r0,1219r400,0r0,-1219r284,0r0,1471r-1643,0r0,-1471r284,0r0,1219r393,0","w":1976},"\u0429":{"d":"1504,-252r0,-1219r282,0r0,1219r300,0r0,472r-262,0r0,-220r-1681,0r0,-1471r284,0r0,1219r393,0r0,-1219r282,0r0,1219r402,0","w":2097},"\u042a":{"d":"341,0r0,-1208r-329,0r0,-263r608,0r0,555v272,-3,433,35,554,195v106,141,117,387,12,531v-101,139,-202,190,-433,190r-412,0xm691,-267v184,-4,287,-25,294,-190v7,-157,-147,-220,-365,-209r0,399r71,0","w":1337},"\u042b":{"d":"1290,-1471r278,0r0,1471r-278,0r0,-1471xm167,0r0,-1471r280,0r0,555v270,-4,435,36,554,194v104,138,114,389,12,530v-100,139,-201,192,-434,192r-412,0xm517,-267v201,-4,283,-20,292,-190v8,-157,-145,-220,-362,-209r0,399r70,0","w":1735},"\u042c":{"d":"167,0r0,-1471r280,0r0,555v270,-4,435,36,554,194v104,138,114,389,12,530v-100,139,-201,192,-434,192r-412,0xm517,-267v201,-4,283,-20,292,-190v8,-157,-145,-220,-362,-209r0,399r70,0","w":1163},"\u042d":{"d":"1207,-596v-59,225,-240,364,-490,364v-161,0,-309,-70,-445,-211r-190,198v193,188,333,273,639,282v453,13,780,-334,780,-775v0,-231,-79,-416,-235,-558v-238,-217,-576,-277,-899,-135v-115,51,-212,124,-291,219r196,187v201,-230,534,-290,775,-94v94,77,147,167,160,268r-564,0r0,255r564,0","w":1597},"\u042e":{"d":"2154,-731v0,416,-347,768,-759,768v-187,0,-357,-62,-509,-185v-152,-123,-235,-288,-251,-496r-190,0r0,644r-278,0r0,-1471r278,0r0,555r190,0v88,-223,199,-378,333,-464v315,-203,703,-159,957,94v151,150,229,334,229,555xm1395,-234v263,0,478,-232,478,-499v0,-263,-214,-501,-483,-501v-267,0,-482,220,-482,503v0,281,223,497,487,497","w":2251},"\u042f":{"d":"1035,-1471r0,1471r-280,0r0,-592r-70,0r-296,592r-306,0r333,-638v-193,-55,-290,-184,-290,-386v0,-262,147,-406,367,-436v83,-11,400,-13,542,-11xm423,-1028v-9,168,157,164,332,163r0,-332r-77,0v-170,-6,-248,28,-255,169","w":1202},"\u0430":{"d":"599,-1116v153,2,258,62,343,148r0,-120r272,0r0,1088r-272,0r0,-115v-93,87,-180,140,-335,143v-286,5,-519,-268,-519,-570v0,-312,218,-577,511,-574xm955,-546v0,-181,-125,-318,-300,-318v-171,0,-295,142,-295,319v0,177,126,323,296,323v175,0,299,-141,299,-324","w":1352},"\u0431":{"d":"1249,-558v0,325,-255,586,-576,586v-265,0,-491,-200,-545,-412v-57,-225,-57,-570,18,-758v74,-187,195,-287,391,-334v115,-27,493,-38,641,-55r0,258v-257,35,-553,-19,-706,103v-105,84,-137,159,-148,342v79,-189,214,-283,405,-283v287,0,520,248,520,553xm675,-227v171,0,298,-138,298,-317v0,-177,-120,-315,-297,-315v-170,0,-296,142,-296,315v0,180,122,317,295,317","w":1335},"\u0432":{"d":"138,0r0,-1088r437,0v143,0,241,28,292,84v125,134,97,355,-81,421v144,49,216,142,216,279v0,147,-88,250,-202,280v-163,42,-452,18,-662,24xm657,-768v2,-87,-60,-140,-153,-128r-92,0r0,236r105,0v77,4,139,-44,140,-108xm694,-321v0,-86,-59,-141,-168,-141r-114,0r0,252r137,0v88,5,145,-46,145,-111","w":1096},"\u0433":{"d":"137,-1088r635,0r0,260r-361,0r0,828r-274,0r0,-1088","w":819},"\u0434":{"d":"279,0r0,189r-243,0r0,-420r164,0r375,-857r176,0r380,857r167,0r0,420r-260,0r0,-189r-759,0xm841,-231r-178,-458r-184,458r362,0","w":1333},"\u0435":{"d":"650,-1116v359,0,605,265,578,651r-877,0v23,150,140,254,312,253v102,0,190,-36,263,-107r230,108v-107,151,-250,235,-491,239v-330,6,-578,-243,-578,-566v0,-322,244,-578,563,-578xm954,-680v-32,-115,-148,-209,-291,-205v-154,4,-245,71,-300,205r591,0","w":1311},"\u0436":{"d":"689,-350r-29,-34r-324,384r-362,0r491,-558r-485,-530r333,0r376,407r0,-407r273,0r0,407r375,-407r334,0r-485,530r491,558r-362,0r-324,-384r-29,34r0,350r-273,0r0,-350","w":1651},"\u0437":{"d":"535,-334v0,-73,-63,-130,-144,-127r-71,0r0,-195v102,6,191,-14,191,-110v0,-67,-59,-115,-126,-115v-45,0,-101,22,-168,65r-108,-188v94,-75,199,-112,314,-112v199,0,368,112,368,305v0,95,-51,171,-152,230v135,50,203,140,203,271v0,214,-190,338,-429,338v-147,0,-269,-41,-365,-124r151,-190v65,48,126,72,184,72v84,0,152,-43,152,-120","w":922},"\u0438":{"d":"282,0r-145,0r0,-1088r266,0r0,639r557,-639r131,0r0,1088r-266,0r0,-626"},"\u0439":{"d":"282,0r-145,0r0,-1088r266,0r0,639r557,-639r131,0r0,1088r-266,0r0,-626xm438,-1568v56,107,313,113,372,0r221,0v-30,182,-181,281,-408,281v-229,0,-369,-94,-406,-281r221,0"},"\u043a":{"d":"138,-1088r273,0r0,407r376,-407r333,0r-485,530r491,558r-362,0r-324,-384r-29,34r0,350r-273,0r0,-1088","w":1100},"\u043b":{"d":"1110,0r-278,0r-272,-687r-277,687r-277,0r464,-1088r176,0","w":1116},"\u043c":{"d":"804,-402r334,-686r180,0r272,1088r-267,0r-145,-638r-324,638r-112,0r-317,-638r-146,638r-266,0r272,-1088r180,0","w":1604},"\u043d":{"d":"411,-696r406,0r0,-392r274,0r0,1088r-274,0r0,-451r-406,0r0,451r-274,0r0,-1088r274,0r0,392"},"\u043e":{"d":"85,-543v0,-305,261,-581,564,-573v332,8,577,237,577,571v0,226,-128,410,-285,497v-89,49,-185,76,-291,76v-305,0,-565,-264,-565,-571xm950,-544v0,-179,-122,-315,-297,-315v-170,0,-296,140,-296,315v0,180,122,318,295,318v172,0,298,-140,298,-318","w":1311},"\u043f":{"d":"411,0r-274,0r0,-1088r954,0r0,1088r-274,0r0,-825r-406,0r0,825"},"\u0440":{"d":"745,28v-154,-3,-244,-57,-336,-143r0,513r-271,0r0,-1486r271,0r0,120v87,-86,190,-146,344,-148v293,-4,511,262,511,574v0,303,-232,575,-519,570xm992,-545v0,-178,-124,-319,-296,-319v-174,0,-299,138,-299,318v0,183,124,324,299,324v169,0,296,-146,296,-323","w":1352},"\u0441":{"d":"361,-536v0,186,140,315,330,315v122,0,217,-42,285,-125r215,147v-117,151,-281,227,-494,227v-191,0,-339,-58,-449,-170v-176,-179,-216,-461,-84,-689v95,-165,289,-285,537,-285v233,0,403,102,502,248r-227,125v-77,-78,-137,-116,-273,-119v-196,-4,-342,134,-342,326","w":1311},"\u0442":{"d":"41,-1088r1014,0r0,260r-361,0r0,828r-274,0r0,-828r-379,0r0,-260","w":1096},"\u0443":{"d":"17,-1088r279,0r283,683r312,-683r280,0r-682,1486r-282,0r224,-479","w":1188},"\u0444":{"d":"1986,-542v0,305,-226,571,-506,570v-113,0,-217,-40,-312,-121r0,491r-271,0r0,-491v-95,83,-199,124,-312,124v-281,0,-507,-269,-507,-569v0,-312,212,-575,500,-574v123,0,229,42,319,125r0,-521r271,0r0,521v145,-145,379,-172,563,-60v147,90,255,267,255,505xm1431,-220v164,2,282,-150,282,-324v0,-175,-113,-321,-283,-318v-161,3,-269,143,-269,329v0,180,106,311,270,313xm634,-218v165,-2,271,-133,271,-316v0,-141,-52,-228,-133,-285v-40,-27,-86,-41,-137,-41v-174,0,-282,148,-282,318v0,173,117,326,281,324","w":2064},"\u0445":{"d":"40,-1088r317,0r213,297r216,-297r314,0r-372,515r418,573r-317,0r-259,-357r-256,357r-313,0r412,-573","w":1147},"\u0446":{"d":"137,0r0,-1088r274,0r0,826r406,0r0,-826r274,0r0,826r277,0r0,453r-260,0r0,-191r-971,0","w":1380},"\u0447":{"d":"509,-432v-282,-2,-461,-92,-461,-367r0,-289r274,0r0,268v0,95,64,143,191,143r215,-1r0,-410r274,0r0,1088r-274,0r0,-432r-219,0","w":1139},"\u0448":{"d":"1707,0r-1570,0r0,-1088r274,0r0,826r374,0r0,-826r274,0r0,826r375,0r0,-826r273,0r0,1088","w":1845},"\u0449":{"d":"1707,-262r278,0r0,453r-261,0r0,-191r-1587,0r0,-1088r274,0r0,826r374,0r0,-826r274,0r0,826r375,0r0,-826r273,0r0,826","w":1997},"\u044a":{"d":"557,-696v124,-2,274,4,344,26v121,37,217,158,217,322v0,162,-84,284,-203,320v-150,46,-430,23,-632,28r0,-845r-262,0r0,-243r536,0r0,392xm557,-210v60,0,154,2,189,-10v41,-14,84,-57,84,-114v0,-93,-54,-140,-161,-140r-112,0r0,264","w":1190},"\u044b":{"d":"411,-696v124,-2,272,4,343,26v122,37,218,158,218,322v0,162,-82,284,-202,320v-151,46,-430,23,-633,28r0,-1088r274,0r0,392xm411,-210v139,3,273,9,273,-124v0,-93,-53,-140,-160,-140r-113,0r0,264xm1162,-1088r273,0r0,1088r-273,0r0,-1088","w":1573},"\u044c":{"d":"411,-696v124,-2,272,4,343,26v122,37,218,158,218,322v0,162,-82,284,-202,320v-151,46,-430,23,-633,28r0,-1088r274,0r0,392xm411,-210v139,3,273,9,273,-124v0,-93,-53,-140,-160,-140r-113,0r0,264","w":1044},"\u044d":{"d":"1193,-540v0,331,-261,568,-613,568v-199,0,-364,-76,-493,-227r215,-147v67,86,163,129,288,129v150,0,254,-71,313,-213r-365,0r0,-237r365,0v-99,-234,-426,-259,-601,-76r-227,-125v135,-165,303,-248,502,-248v343,0,616,241,616,576","w":1278},"\u044e":{"d":"1111,28v-270,0,-509,-205,-555,-435r-145,0r0,407r-274,0r0,-1088r274,0r0,431r145,0v49,-255,278,-453,554,-459v311,-7,576,259,576,571v0,310,-258,573,-575,573xm1113,-227v171,0,298,-138,298,-317v0,-180,-123,-315,-298,-315v-169,0,-295,143,-295,314v0,181,121,318,295,318","w":1771},"\u044f":{"d":"323,-446v-110,-33,-201,-152,-201,-291v0,-157,110,-296,234,-327v117,-30,397,-23,574,-24r0,1088r-274,0r0,-394r-53,0r-259,394r-323,0xm656,-599r0,-261r-95,0v-103,0,-155,43,-155,130v0,87,58,131,173,131r77,0","w":1067},"\u0451":{"d":"650,-1116v359,0,605,265,578,651r-877,0v23,150,140,254,312,253v102,0,190,-36,263,-107r230,108v-107,151,-250,235,-491,239v-330,6,-578,-243,-578,-566v0,-322,244,-578,563,-578xm954,-680v-32,-115,-148,-209,-291,-205v-154,4,-245,71,-300,205r591,0xm291,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm734,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1311},"\u0452":{"d":"727,201v97,0,109,-66,109,-181r0,-497v-4,-183,8,-274,-72,-350v-65,-63,-198,-48,-261,16v-94,95,-94,166,-94,374r0,437r-272,0r0,-1225r-155,0r0,-174r155,0r0,-109r272,0r0,109r347,0r0,174r-347,0r0,247v169,-159,403,-191,583,-43v76,63,114,164,114,302r0,719v-3,159,-11,314,-116,376v-119,70,-230,59,-377,9r0,-215v41,21,79,31,114,31"},"\u0453":{"d":"137,-1088r635,0r0,260r-361,0r0,828r-274,0r0,-1088xm496,-1682r323,0r-366,392r-196,0","w":819},"\u0454":{"d":"85,-540v0,331,261,568,613,568v199,0,364,-76,493,-227r-215,-147v-67,86,-163,129,-288,129v-150,0,-254,-71,-313,-213r365,0r0,-237r-365,0v99,-234,426,-259,601,-76r227,-125v-135,-165,-303,-248,-502,-248v-343,0,-616,241,-616,576","w":1278},"\u0455":{"d":"92,-804v0,-178,163,-317,354,-312v161,4,283,78,358,180r-169,169v-69,-68,-131,-102,-187,-102v-70,0,-129,57,-82,109v27,31,131,74,182,100v105,53,178,105,217,159v39,54,59,117,59,190v0,203,-172,339,-392,339v-159,0,-285,-62,-380,-186r168,-183v49,59,139,121,227,125v62,3,115,-34,120,-86v7,-66,-141,-134,-211,-169v-177,-87,-264,-200,-264,-333","w":901},"\u0456":{"d":"71,-1362v0,-93,81,-174,174,-174v94,0,175,83,175,178v0,94,-80,176,-173,176v-96,0,-176,-84,-176,-180xm108,-1088r274,0r0,1088r-274,0r0,-1088","w":491},"\u0457":{"d":"109,-1088r274,0r0,1088r-274,0r0,-1088xm-119,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm324,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":491},"\u0458":{"d":"93,-1362v0,-93,80,-174,173,-174v95,0,176,82,176,178v0,94,-80,177,-173,177v-96,0,-176,-85,-176,-181xm26,201v83,0,104,-48,104,-145r0,-1144r273,0r0,1124v-1,187,-23,285,-127,349v-107,66,-222,48,-363,0r0,-215v43,21,80,31,113,31","w":533},"\u0459":{"d":"832,0r-272,-687r-277,687r-277,0r464,-1088r176,0r164,392v166,1,378,-7,494,30v126,40,221,155,221,321v0,160,-85,280,-203,318v-110,35,-331,25,-490,27xm1013,-210v130,6,225,-13,225,-124v0,-94,-54,-141,-161,-141r-174,0","w":1598},"\u045a":{"d":"817,0r0,-451r-406,0r0,451r-274,0r0,-1088r274,0r0,392r406,0r0,-392r274,0r0,392v138,-2,311,8,373,36v110,50,189,158,189,313v0,160,-84,283,-203,319v-151,46,-430,23,-633,28xm1091,-210v139,3,274,8,274,-124v0,-93,-54,-140,-161,-140r-113,0r0,264","w":1729},"\u045b":{"d":"408,-978v169,-159,404,-191,584,-43v76,63,114,164,114,302r0,719r-270,0r0,-477v-5,-188,8,-275,-74,-351v-66,-61,-197,-47,-260,17v-94,95,-94,166,-94,374r0,437r-271,0r0,-1225r-155,0r0,-174r155,0r0,-109r271,0r0,109r348,0r0,174r-348,0r0,247"},"\u045c":{"d":"138,-1088r273,0r0,407r376,-407r333,0r-485,530r491,558r-362,0r-324,-384r-29,34r0,350r-273,0r0,-1088xm709,-1679r323,0r-366,392r-196,0","w":1100},"\u045e":{"d":"17,-1088r279,0r283,683r312,-683r280,0r-682,1486r-282,0r224,-479xm426,-1568v56,107,313,113,372,0r221,0v-30,182,-181,281,-408,281v-229,0,-369,-94,-406,-281r221,0","w":1188},"\u045f":{"d":"137,0r0,-1088r274,0r0,826r406,0r0,-826r274,0r0,1088r-349,0r0,191r-256,0r0,-191r-349,0"},"\u0490":{"d":"167,-1471r498,0r0,-212r269,0r0,486r-490,0r0,1197r-277,0r0,-1471","w":983},"\u0491":{"d":"138,-1088r438,0r0,-160r257,0r0,420r-421,0r0,828r-274,0r0,-1088","w":881},"\u1e80":{"d":"56,-1471r276,0r212,939r263,-939r233,0r266,939r210,-939r276,0r-331,1471r-269,0r-271,-951r-266,951r-266,0xm876,-1977r239,392r-196,0r-366,-392r323,0","w":1843},"\u1e81":{"d":"17,-1088r267,0r219,619r236,-619r163,0r231,612r219,-612r269,0r-397,1088r-173,0r-232,-620r-239,620r-171,0xm771,-1679r239,392r-196,0r-366,-392r323,0","w":1638},"\u1e82":{"d":"56,-1471r276,0r212,939r263,-939r233,0r266,939r210,-939r276,0r-331,1471r-269,0r-271,-951r-266,951r-266,0xm972,-1977r323,0r-366,392r-196,0","w":1843},"\u1e83":{"d":"17,-1088r267,0r219,619r236,-619r163,0r231,612r219,-612r269,0r-397,1088r-173,0r-232,-620r-239,620r-171,0xm867,-1679r323,0r-366,392r-196,0","w":1638},"\u1e84":{"d":"56,-1471r276,0r212,939r263,-939r233,0r266,939r210,-939r276,0r-331,1471r-269,0r-271,-951r-266,951r-266,0xm559,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm1002,-1728v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1843},"\u1e85":{"d":"17,-1088r267,0r219,619r236,-619r163,0r231,612r219,-612r269,0r-397,1088r-173,0r-232,-620r-239,620r-171,0xm454,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144xm897,-1430v0,-77,67,-143,143,-143v77,0,144,66,144,143v0,78,-66,144,-144,144v-77,0,-143,-67,-143,-144","w":1638},"\u1ef2":{"d":"63,-1471r301,0r274,528r272,-528r297,0r-430,834r0,637r-282,0r0,-637xm587,-1977r239,392r-196,0r-366,-392r323,0","w":1270},"\u1ef3":{"d":"17,-1088r279,0r283,683r312,-683r280,0r-682,1486r-282,0r224,-479xm546,-1679r239,392r-196,0r-366,-392r323,0","w":1188},"\u2015":{"d":"-12,-469r0,-242r1560,0r0,242r-1560,0","w":1536},"\u201b":{"d":"418,-1508r-252,0v-1,133,-2,271,33,365v23,63,58,129,109,196r98,-77v-49,-73,-64,-104,-89,-198r101,0r0,-286","w":573},"\u203e":{"d":"-42,-1869r1231,0r0,74r-1231,0r0,-74","w":1147},"\u20a4":{"d":"586,-1251v-83,-1,-146,69,-143,157v0,28,12,73,36,135r363,0r0,173r-302,0v6,21,15,53,26,98r276,0r0,174r-256,0v-5,75,-28,161,-67,259v43,4,149,29,194,29v61,0,102,-37,123,-110r259,0v-1,201,-185,377,-389,373v-76,-1,-311,-37,-370,-37v-69,0,-133,11,-193,34r-94,-238v57,-24,110,-39,159,-44v57,-97,88,-186,93,-266r-247,0r0,-174r228,0v-5,-19,-17,-51,-35,-98r-193,0r0,-173r130,0v-15,-51,-23,-100,-23,-147v0,-247,190,-402,429,-402v234,0,431,163,422,412r-281,0v-21,-103,-70,-155,-145,-155","w":1147},"\u2116":{"d":"167,-1471r268,0r631,968r0,-968r280,0r0,1471r-269,0r-630,-965r0,965r-280,0r0,-1471xm1846,-1008v187,0,351,163,351,350v0,187,-165,350,-351,350v-189,0,-351,-162,-351,-350v0,-187,163,-350,351,-350xm1845,-488v91,0,170,-79,170,-170v0,-91,-79,-169,-170,-169v-91,0,-170,78,-170,169v0,92,78,170,170,170xm1495,-175r702,0r0,175r-702,0r0,-175","w":2273},"\u212e":{"d":"90,-531v0,-321,219,-569,529,-565v313,4,527,226,529,565r-827,0r0,371v80,81,179,121,298,121v169,0,301,-82,395,-246r72,43v-128,183,-230,268,-467,276v-310,10,-529,-248,-529,-565xm917,-605r0,-297v-155,-161,-443,-162,-596,1r0,296r596,0"},"\u215b":{"d":"437,37r626,-1545r171,0r-626,1545r-171,0xm207,-1489r265,0r0,756r-188,0r0,-599r-193,0xm1368,-775v146,0,269,87,271,215v0,52,-26,102,-79,150v81,49,121,114,121,194v0,147,-133,234,-308,234v-178,0,-318,-72,-318,-234v0,-79,39,-143,117,-194v-51,-43,-77,-93,-77,-152v1,-132,128,-213,273,-213xm1367,-472v51,0,88,-32,88,-78v0,-47,-31,-70,-92,-70v-47,0,-84,27,-84,70v0,46,39,78,88,78xm1240,-229v1,57,58,92,127,92v84,0,126,-30,126,-89v0,-61,-63,-96,-123,-96v-61,0,-131,36,-130,93","w":1720},"\u215c":{"d":"430,-1286v0,-38,-34,-67,-75,-67v-45,0,-79,24,-103,71r-183,0v26,-151,121,-226,284,-226v133,0,259,84,261,201v0,64,-31,114,-93,149v75,27,141,101,141,192v0,148,-153,251,-321,251v-174,0,-300,-102,-303,-266r184,0v10,74,52,111,127,111v57,1,124,-34,124,-91v0,-69,-66,-104,-197,-105r0,-138v103,0,154,-27,154,-82xm462,37r627,-1545r170,0r-626,1545r-171,0xm1369,-775v148,0,270,88,270,215v0,52,-26,102,-79,150v81,49,121,114,121,194v0,147,-133,234,-308,234v-191,0,-318,-80,-318,-234v0,-79,39,-143,117,-194v-51,-43,-76,-93,-76,-152v1,-132,128,-213,273,-213xm1367,-472v51,0,88,-32,88,-78v0,-47,-31,-70,-92,-70v-47,0,-84,27,-84,70v-1,46,41,78,88,78xm1241,-229v0,58,58,92,127,92v84,0,126,-30,126,-89v1,-128,-253,-125,-253,-3","w":1720},"\u215d":{"d":"461,37r627,-1545r171,0r-627,1545r-171,0xm460,-974v-2,-104,-140,-134,-210,-63r-153,-29r108,-423r429,0r0,151r-287,0r-29,110v180,-26,326,89,328,249v2,151,-149,264,-309,264v-152,0,-284,-85,-309,-215r196,0v47,97,238,77,236,-44xm1368,-775v146,0,269,87,271,215v0,52,-26,102,-79,150v81,49,121,114,121,194v0,147,-134,234,-309,234v-178,0,-318,-72,-318,-234v0,-79,39,-143,118,-194v-51,-43,-77,-93,-77,-152v1,-132,128,-213,273,-213xm1366,-472v52,0,88,-31,88,-78v0,-47,-31,-70,-92,-70v-47,0,-84,27,-84,70v0,45,40,78,88,78xm1240,-229v0,58,58,92,127,92v84,0,126,-30,126,-89v1,-129,-253,-124,-253,-3","w":1720},"\u215e":{"d":"399,37r626,-1545r171,0r-626,1545r-171,0xm74,-1489r594,0r0,81r-398,693r-150,-79r310,-544r-356,0r0,-151xm1368,-775v146,0,269,87,271,215v0,52,-26,102,-79,150v81,49,121,114,121,194v0,147,-134,234,-309,234v-191,0,-318,-80,-318,-234v0,-79,39,-143,118,-194v-51,-43,-77,-93,-77,-152v1,-132,128,-213,273,-213xm1366,-472v52,0,88,-31,88,-78v0,-47,-31,-70,-92,-70v-47,0,-84,27,-84,70v0,45,40,78,88,78xm1240,-229v0,58,58,92,127,92v84,0,126,-30,126,-89v1,-129,-253,-124,-253,-3","w":1720},"\u2302":{"d":"153,0r0,-634r461,-519r462,519r0,634r-923,0xm234,-81r761,0r0,-519r-381,-427r-380,427r0,519"},"\u2310":{"d":"1114,-1074r0,249r-749,0r0,428r-250,0r0,-677r999,0"},"\u2320":{"d":"972,-1628v5,73,-81,112,-144,78v-25,-13,-55,-84,-89,-84v-19,0,-33,8,-41,24v-8,16,-11,68,-11,154r0,1971r-145,0r0,-1811v0,-138,29,-246,86,-324v57,-78,126,-117,206,-117v84,0,134,43,138,109"},"\u2321":{"d":"257,406v0,-73,81,-113,143,-78v25,14,57,84,90,84v19,0,32,-8,40,-24v8,-16,12,-67,12,-154r0,-1971r145,0r0,1811v0,138,-29,246,-86,324v-57,78,-126,117,-206,117v-74,0,-138,-36,-138,-109"},"\u2500":{"d":"1478,-534r-1496,0r0,-175r1496,0r0,175","w":1460},"\u2502":{"d":"452,621r0,-2485r175,0r0,2485r-175,0","w":1270},"\u250c":{"d":"1479,-709r0,175r-661,0r0,1155r-175,0r0,-1330r836,0","w":1460},"\u2510":{"d":"642,-534r-660,0r0,-175r835,0r0,1330r-175,0r0,-1155","w":1460},"\u2514":{"d":"643,-534r0,-1330r175,0r0,1155r661,0r0,175r-836,0","w":1460},"\u2518":{"d":"817,-534r-835,0r0,-175r660,0r0,-1155r175,0r0,1330","w":1460},"\u251c":{"d":"643,621r0,-2485r175,0r0,1155r661,0r0,175r-661,0r0,1155r-175,0","w":1460},"\u2524":{"d":"642,621r0,-1155r-660,0r0,-175r660,0r0,-1155r175,0r0,2485r-175,0","w":1460},"\u252c":{"d":"642,-534r-660,0r0,-175r1496,0r0,175r-661,0r0,1155r-175,0r0,-1155","w":1460},"\u2534":{"d":"1478,-534r-1496,0r0,-175r660,0r0,-1155r175,0r0,1155r661,0r0,175","w":1460},"\u253c":{"d":"642,-534r-660,0r0,-175r660,0r0,-1155r175,0r0,1155r661,0r0,175r-661,0r0,1155r-175,0r0,-1155","w":1460},"\u2550":{"d":"1478,-724r-1496,0r0,-175r1496,0r0,175xm1478,-344r-1496,0r0,-175r1496,0r0,175","w":1460},"\u2551":{"d":"833,621r0,-2485r175,0r0,2485r-175,0xm453,621r0,-2485r175,0r0,2485r-175,0","w":1460},"\u2552":{"d":"643,621r0,-1520r836,0r0,175r-661,0r0,205r661,0r0,175r-661,0r0,965r-175,0","w":1460},"\u2553":{"d":"453,621r0,-1330r1026,0r0,175r-471,0r0,1155r-175,0r0,-1140r-205,0r0,1140r-175,0","w":1460},"\u2554":{"d":"628,621r-175,0r0,-1520r1025,0r0,175r-850,0r0,1345xm1008,-344r0,965r-175,0r0,-1140r645,0r0,175r-470,0","w":1460},"\u2555":{"d":"642,-344r-660,0r0,-175r660,0r0,-205r-660,0r0,-175r835,0r0,1520r-175,0r0,-965","w":1460},"\u2556":{"d":"452,621r0,-1155r-470,0r0,-175r1025,0r0,1330r-175,0r0,-1155r-205,0r0,1155r-175,0","w":1460},"\u2557":{"d":"832,621r0,-1345r-850,0r0,-175r1025,0r0,1520r-175,0xm452,-344r-470,0r0,-175r645,0r0,1140r-175,0r0,-965","w":1460},"\u2558":{"d":"643,-344r0,-1520r175,0r0,965r661,0r0,175r-661,0r0,205r661,0r0,175r-836,0","w":1460},"\u2559":{"d":"1478,-534r-1025,0r0,-1330r175,0r0,1155r205,0r0,-1155r175,0r0,1155r470,0r0,175","w":1460},"\u255a":{"d":"628,-1864r0,1345r850,0r0,175r-1025,0r0,-1520r175,0xm1008,-899r470,0r0,175r-645,0r0,-1140r175,0r0,965","w":1460},"\u255b":{"d":"817,-344r-835,0r0,-175r660,0r0,-205r-660,0r0,-175r660,0r0,-965r175,0r0,1520","w":1460},"\u255c":{"d":"1007,-534r-1025,0r0,-175r470,0r0,-1155r175,0r0,1155r205,0r0,-1155r175,0r0,1330","w":1460},"\u255d":{"d":"832,-1864r175,0r0,1520r-1025,0r0,-175r850,0r0,-1345xm452,-899r0,-965r175,0r0,1140r-645,0r0,-175r470,0","w":1460},"\u255e":{"d":"643,621r0,-2485r175,0r0,965r661,0r0,175r-661,0r0,205r661,0r0,175r-661,0r0,965r-175,0","w":1460},"\u255f":{"d":"833,621r0,-2485r175,0r0,1155r471,0r0,175r-471,0r0,1155r-175,0xm453,621r0,-2485r175,0r0,2485r-175,0","w":1460},"\u2560":{"d":"453,621r0,-2485r175,0r0,2485r-175,0xm833,-724r0,-1140r175,0r0,965r471,0r0,175r-646,0xm833,621r0,-1140r646,0r0,175r-471,0r0,965r-175,0","w":1460},"\u2561":{"d":"642,-344r-660,0r0,-175r660,0r0,-205r-660,0r0,-175r660,0r0,-965r175,0r0,2485r-175,0r0,-965","w":1460},"\u2562":{"d":"452,621r0,-1155r-470,0r0,-175r470,0r0,-1155r175,0r0,2485r-175,0xm832,621r0,-2485r175,0r0,2485r-175,0","w":1460},"\u2563":{"d":"832,621r0,-2485r175,0r0,2485r-175,0xm627,-1864r0,1140r-645,0r0,-175r470,0r0,-965r175,0xm452,-344r-470,0r0,-175r645,0r0,1140r-175,0r0,-965","w":1460},"\u2564":{"d":"1478,-724r-1496,0r0,-175r1496,0r0,175xm642,-344r-660,0r0,-175r1496,0r0,175r-661,0r0,965r-175,0r0,-965","w":1460},"\u2565":{"d":"452,621r0,-1155r-470,0r0,-175r1496,0r0,175r-471,0r0,1155r-175,0r0,-1140r-205,0r0,1140r-175,0","w":1460},"\u2566":{"d":"1478,-724r-1496,0r0,-175r1496,0r0,175xm452,-344r-470,0r0,-175r645,0r0,1140r-175,0r0,-965xm832,621r0,-1140r646,0r0,175r-471,0r0,965r-175,0","w":1460},"\u2567":{"d":"1478,-724r-1496,0r0,-175r660,0r0,-965r175,0r0,965r661,0r0,175xm1478,-344r-1496,0r0,-175r1496,0r0,175","w":1460},"\u2568":{"d":"1478,-534r-1496,0r0,-175r470,0r0,-1155r175,0r0,1155r205,0r0,-1155r175,0r0,1155r471,0r0,175","w":1460},"\u2569":{"d":"627,-724r-645,0r0,-175r470,0r0,-965r175,0r0,1140xm1478,-724r-646,0r0,-1140r175,0r0,965r471,0r0,175xm1478,-344r-1496,0r0,-175r1496,0r0,175","w":1460},"\u256a":{"d":"642,-344r-660,0r0,-175r660,0r0,-205r-660,0r0,-175r660,0r0,-965r175,0r0,965r661,0r0,175r-661,0r0,205r661,0r0,175r-661,0r0,965r-175,0r0,-965","w":1460},"\u256b":{"d":"452,621r0,-1155r-470,0r0,-175r470,0r0,-1155r175,0r0,1155r205,0r0,-1155r175,0r0,1155r471,0r0,175r-471,0r0,1155r-175,0r0,-1155r-205,0r0,1155r-175,0","w":1460},"\u256c":{"d":"1008,-899r470,0r0,175r-645,0r0,-1140r175,0r0,965xm452,-899r0,-965r175,0r0,1140r-645,0r0,-175r470,0xm452,-344r-470,0r0,-175r645,0r0,1140r-175,0r0,-965xm1008,-344r0,965r-175,0r0,-1140r645,0r0,175r-470,0","w":1460},"\u2580":{"d":"1478,-621r-1496,0r0,-1243r1496,0r0,1243","w":1460},"\u2584":{"d":"1478,621r-1496,0r0,-1242r1496,0r0,1242","w":1460},"\u2588":{"d":"-18,621r0,-2485r1496,0r0,2485r-1496,0","w":1460},"\u258c":{"d":"-18,621r0,-2485r748,0r0,2485r-748,0","w":1460},"\u2590":{"d":"730,621r0,-2485r748,0r0,2485r-748,0","w":1460},"\u2591":{"d":"107,-1864r125,0r0,125r-125,0r0,-125xm605,-1864r125,0r0,125r-125,0r0,-125xm1104,-1864r125,0r0,125r-125,0r0,-125xm356,-1615r125,0r0,125r-125,0r0,-125xm855,-1615r124,0r0,125r-124,0r0,-125xm1353,-1615r125,0r0,125r-125,0r0,-125xm1104,-1366r125,0r0,125r-125,0r0,-125xm605,-1366r125,0r0,125r-125,0r0,-125xm107,-1366r125,0r0,125r-125,0r0,-125xm1353,-1116r125,0r0,124r-125,0r0,-124xm855,-1116r124,0r0,124r-124,0r0,-124xm356,-1116r125,0r0,124r-125,0r0,-124xm107,-867r125,0r0,125r-125,0r0,-125xm605,-867r125,0r0,125r-125,0r0,-125xm1104,-867r125,0r0,125r-125,0r0,-125xm1353,-618r125,0r0,125r-125,0r0,-125xm855,-618r124,0r0,125r-124,0r0,-125xm356,-618r125,0r0,125r-125,0r0,-125xm107,-369r125,0r0,125r-125,0r0,-125xm605,-369r125,0r0,125r-125,0r0,-125xm1104,-369r125,0r0,125r-125,0r0,-125xm356,-119r125,0r0,124r-125,0r0,-124xm855,-119r124,0r0,124r-124,0r0,-124xm1353,-119r125,0r0,124r-125,0r0,-124xm1104,130r125,0r0,125r-125,0r0,-125xm605,130r125,0r0,125r-125,0r0,-125xm107,130r125,0r0,125r-125,0r0,-125xm356,379r125,0r0,125r-125,0r0,-125xm855,379r124,0r0,125r-124,0r0,-125xm1353,379r125,0r0,125r-125,0r0,-125","w":1460},"\u2592":{"d":"107,-1864r124,0r0,125r-124,0r0,-125xm356,-1864r124,0r0,125r-124,0r0,-125xm605,-1864r125,0r0,125r-125,0r0,-125xm854,-1864r125,0r0,125r-125,0r0,-125xm1104,-1864r124,0r0,125r-124,0r0,-125xm1353,-1864r124,0r0,125r-124,0r0,-125xm-18,-1615r125,0r0,125r-125,0r0,-125xm231,-1615r125,0r0,125r-125,0r0,-125xm480,-1615r125,0r0,125r-125,0r0,-125xm730,-1615r124,0r0,125r-124,0r0,-125xm979,-1615r125,0r0,125r-125,0r0,-125xm1228,-1615r125,0r0,125r-125,0r0,-125xm107,-1366r124,0r0,125r-124,0r0,-125xm356,-1366r124,0r0,125r-124,0r0,-125xm605,-1366r125,0r0,125r-125,0r0,-125xm854,-1366r125,0r0,125r-125,0r0,-125xm1104,-1366r124,0r0,125r-124,0r0,-125xm1353,-1366r124,0r0,125r-124,0r0,-125xm-18,-1116r125,0r0,124r-125,0r0,-124xm231,-1116r125,0r0,124r-125,0r0,-124xm480,-1116r125,0r0,124r-125,0r0,-124xm730,-1116r124,0r0,124r-124,0r0,-124xm979,-1116r125,0r0,124r-125,0r0,-124xm1228,-1116r125,0r0,124r-125,0r0,-124xm107,-867r124,0r0,125r-124,0r0,-125xm356,-867r124,0r0,125r-124,0r0,-125xm605,-867r125,0r0,125r-125,0r0,-125xm854,-867r125,0r0,125r-125,0r0,-125xm1104,-867r124,0r0,125r-124,0r0,-125xm1353,-867r124,0r0,125r-124,0r0,-125xm-18,-618r125,0r0,125r-125,0r0,-125xm480,-618r125,0r0,125r-125,0r0,-125xm730,-618r124,0r0,125r-124,0r0,-125xm979,-618r125,0r0,125r-125,0r0,-125xm1228,-618r125,0r0,125r-125,0r0,-125xm231,-618r125,0r0,125r-125,0r0,-125xm1353,-369r124,0r0,125r-124,0r0,-125xm1104,-369r124,0r0,125r-124,0r0,-125xm854,-369r125,0r0,125r-125,0r0,-125xm605,-369r125,0r0,125r-125,0r0,-125xm356,-369r124,0r0,125r-124,0r0,-125xm107,-369r124,0r0,125r-124,0r0,-125xm-18,-119r125,0r0,124r-125,0r0,-124xm231,-119r125,0r0,124r-125,0r0,-124xm480,-119r125,0r0,124r-125,0r0,-124xm730,-119r124,0r0,124r-124,0r0,-124xm979,-119r125,0r0,124r-125,0r0,-124xm1228,-119r125,0r0,124r-125,0r0,-124xm1353,130r124,0r0,125r-124,0r0,-125xm1104,130r124,0r0,125r-124,0r0,-125xm854,130r125,0r0,125r-125,0r0,-125xm605,130r125,0r0,125r-125,0r0,-125xm356,130r124,0r0,125r-124,0r0,-125xm107,130r124,0r0,125r-124,0r0,-125xm-18,379r125,0r0,125r-125,0r0,-125xm231,379r125,0r0,125r-125,0r0,-125xm480,379r125,0r0,125r-125,0r0,-125xm730,379r124,0r0,125r-124,0r0,-125xm979,379r125,0r0,125r-125,0r0,-125xm1228,379r125,0r0,125r-125,0r0,-125","w":1460},"\u2593":{"d":"1495,-1490r0,374r-124,0r0,124r124,0r0,374r-124,0r0,125r124,0r0,374r-124,0r0,124r124,0r0,374r-124,0r0,125r124,0r0,124r-1495,0r0,-373r125,0r0,-125r-125,0r0,-374r125,0r0,-125r-125,0r0,-373r125,0r0,-125r-125,0r0,-374r125,0r0,-125r-125,0r0,-373r125,0r0,-125r124,0r0,125r125,0r0,-125r124,0r0,125r125,0r0,-125r125,0r0,125r124,0r0,-125r125,0r0,125r125,0r0,-125r124,0r0,125r125,0r0,-125r124,0r0,249r-124,0r0,125r124,0xm125,-1615r0,125r124,0r0,-125r-124,0xm374,-1615r0,125r124,0r0,-125r-124,0xm623,-1615r0,125r125,0r0,-125r-125,0xm872,-1615r0,125r125,0r0,-125r-125,0xm1122,-1615r0,125r124,0r0,-125r-124,0xm1371,-1366r-125,0r0,125r125,0r0,-125xm1122,-1366r-125,0r0,125r125,0r0,-125xm872,-1366r-124,0r0,125r124,0r0,-125xm623,-1366r-125,0r0,125r125,0r0,-125xm374,-1366r-125,0r0,125r125,0r0,-125xm125,-1116r0,124r124,0r0,-124r-124,0xm374,-1116r0,124r124,0r0,-124r-124,0xm623,-1116r0,124r125,0r0,-124r-125,0xm872,-1116r0,124r125,0r0,-124r-125,0xm1122,-1116r0,124r124,0r0,-124r-124,0xm374,-867r-125,0r0,125r125,0r0,-125xm498,-867r0,125r125,0r0,-125r-125,0xm748,-867r0,125r124,0r0,-125r-124,0xm997,-867r0,125r125,0r0,-125r-125,0xm1246,-867r0,125r125,0r0,-125r-125,0xm125,-618r0,125r124,0r0,-125r-124,0xm623,-618r0,125r125,0r0,-125r-125,0xm498,-493r0,-125r-124,0r0,125r124,0xm872,-618r0,125r125,0r0,-125r-125,0xm1122,-618r0,125r124,0r0,-125r-124,0xm1371,-244r0,-125r-125,0r0,125r125,0xm1122,-244r0,-125r-125,0r0,125r125,0xm872,-244r0,-125r-124,0r0,125r124,0xm623,-244r0,-125r-125,0r0,125r125,0xm374,-244r0,-125r-125,0r0,125r125,0xm125,-119r0,124r124,0r0,-124r-124,0xm374,-119r0,124r124,0r0,-124r-124,0xm623,-119r0,124r125,0r0,-124r-125,0xm872,-119r0,124r125,0r0,-124r-125,0xm1122,-119r0,124r124,0r0,-124r-124,0xm1371,255r0,-125r-125,0r0,125r125,0xm1122,255r0,-125r-125,0r0,125r125,0xm872,255r0,-125r-124,0r0,125r124,0xm623,255r0,-125r-125,0r0,125r125,0xm374,255r0,-125r-125,0r0,125r125,0xm125,379r0,125r124,0r0,-125r-124,0xm374,379r0,125r124,0r0,-125r-124,0xm623,379r0,125r125,0r0,-125r-125,0xm872,379r0,125r125,0r0,-125r-125,0xm1122,379r0,125r124,0r0,-125r-124,0","w":1495},"\u25a0":{"d":"146,-944r944,0r0,944r-944,0r0,-944","w":1237},"\u25ac":{"d":"0,-703r2047,0r0,386r-2047,0r0,-386","w":2048},"\u25b2":{"d":"304,0r710,-1419r710,1419r-1420,0","w":2027},"\u25ba":{"d":"288,-1417r1451,724r-1451,724r0,-1448","w":2027},"\u25bc":{"d":"1724,-1388r-710,1419r-710,-1419r1420,0","w":2027},"\u25c4":{"d":"1739,-1417r0,1448r-1451,-724","w":2027},"\u25cb":{"d":"614,-1018v237,0,441,204,441,440v0,236,-205,441,-440,441v-238,0,-441,-204,-441,-441v0,-236,205,-440,440,-440xm615,-213v194,0,364,-171,364,-365v0,-194,-170,-364,-364,-364v-195,0,-365,170,-365,364v0,194,170,365,365,365"},"\u25d8":{"d":"124,0r0,-980r980,0r0,980r-980,0xm614,-288v108,0,202,-95,202,-202v0,-108,-93,-202,-202,-202v-107,0,-202,94,-202,202v0,108,95,202,202,202"},"\u25d9":{"d":"38,0r0,-1155r1155,0r0,1155r-1155,0xm616,-137v235,0,440,-206,440,-440v0,-235,-206,-441,-440,-441v-237,0,-441,206,-441,441v0,235,205,440,441,440xm616,-942v195,0,364,169,364,365v0,194,-170,364,-364,364v-195,0,-365,-169,-365,-364v0,-195,170,-365,365,-365"},"\u263a":{"d":"1046,-1156v343,0,637,295,637,638v0,340,-297,637,-637,637v-342,0,-638,-295,-638,-637v0,-341,297,-638,638,-638xm1046,26v290,0,545,-254,545,-544v0,-291,-254,-545,-545,-545v-292,0,-545,253,-545,545v0,291,254,544,545,544xm801,-731v44,0,81,37,81,81v0,43,-37,81,-81,81v-43,0,-81,-38,-81,-81v0,-44,38,-81,81,-81xm1290,-731v43,0,81,37,81,81v0,43,-38,81,-81,81v-43,0,-81,-38,-81,-81v0,-44,38,-81,81,-81xm752,-313r62,-36v53,96,130,144,232,144v102,0,179,-48,231,-144r63,36v-69,130,-167,195,-294,195v-127,0,-225,-65,-294,-195","w":2091},"\u263b":{"d":"1078,-1156v343,0,637,295,637,638v0,340,-297,637,-637,637v-342,0,-638,-295,-638,-637v0,-341,297,-638,638,-638xm833,-569v44,0,81,-38,81,-81v0,-44,-37,-81,-81,-81v-43,0,-81,37,-81,81v0,43,38,81,81,81xm1322,-569v43,0,81,-38,81,-81v0,-44,-38,-81,-81,-81v-43,0,-81,37,-81,81v0,43,38,81,81,81xm784,-313v69,130,167,195,294,195v127,0,225,-65,294,-195r-63,-36v-52,96,-129,144,-231,144v-102,0,-179,-48,-232,-144","w":2155},"\u263c":{"d":"902,-1621r76,0r0,337v127,5,244,51,350,140r289,-283r52,53r-286,286v93,117,141,236,143,358r336,0r0,69r-336,0v-9,127,-57,243,-143,348r286,289r-57,51r-284,-280v-111,83,-228,130,-350,139r0,337r-76,0r0,-337v-135,-17,-250,-63,-345,-139r-296,280r-49,-51r284,-289v-83,-102,-131,-219,-144,-352r-336,0r0,-69r336,0v9,-131,57,-248,144,-349r-284,-287r49,-57r291,283v120,-87,237,-133,350,-140r0,-337xm937,-186v273,0,513,-240,513,-513v0,-275,-238,-512,-513,-512v-274,0,-512,239,-512,512v0,273,239,513,512,513","w":1878},"\u2640":{"d":"1041,-956v0,250,-205,467,-450,475r0,365r417,0r0,54r-417,0r0,399r-54,0r0,-399r-418,0r0,-54r418,0r0,-365v-242,-14,-444,-210,-448,-475v-4,-254,221,-476,476,-476v254,0,476,222,476,476xm565,-528v228,0,427,-199,427,-427v0,-229,-198,-426,-427,-426v-228,0,-427,199,-427,426v0,228,199,427,427,427","w":1131},"\u2642":{"d":"545,-1088v282,-90,293,-116,562,-284r29,10v23,239,77,444,161,615r-25,16v-99,-125,-173,-264,-222,-415r-295,635v139,51,292,235,292,430v0,249,-211,420,-459,420v-259,0,-486,-206,-486,-457v0,-297,297,-536,607,-411r293,-636v-143,60,-295,95,-457,104r0,-27xm921,-122v0,-214,-186,-394,-390,-394v-203,0,-386,180,-386,382v0,219,181,393,391,393v207,0,385,-179,385,-381","w":1366},"\u2660":{"d":"279,-275v-118,0,-219,-105,-219,-221v0,-100,63,-202,188,-305v175,-143,274,-287,299,-430v49,184,105,249,268,399v81,75,137,134,169,181v32,47,48,97,48,152v0,123,-100,224,-220,224v-103,0,-187,-63,-254,-190v-3,289,124,412,378,428r7,37r-793,0r8,-37v253,1,397,-163,383,-428v-60,127,-147,190,-262,190","w":1092},"\u2663":{"d":"1019,-274v-159,-8,-257,-94,-332,-237v11,311,128,428,408,477r8,34r-848,0r8,-34v201,-48,257,-56,345,-207v47,-80,63,-163,57,-270v-58,130,-169,233,-327,238v-150,5,-278,-128,-278,-280v0,-137,111,-278,242,-275v43,0,97,17,163,51v-45,-71,-67,-131,-67,-182v0,-149,124,-272,276,-272v149,0,279,123,279,267v0,63,-23,125,-69,187v71,-35,125,-53,162,-53v138,0,247,134,247,273v0,153,-126,291,-274,283","w":1354},"\u2665":{"d":"892,-1231v139,-6,258,117,258,252v0,56,-13,116,-40,179v-27,63,-85,151,-174,264v-189,240,-299,427,-329,560v-21,-81,-53,-157,-93,-228v-40,-71,-132,-201,-275,-390v-67,-89,-114,-159,-140,-212v-26,-53,-39,-107,-39,-163v0,-143,115,-261,257,-261v137,0,234,84,290,251v34,-146,134,-246,285,-252","w":1210},"\u2666":{"d":"517,-1231v129,215,282,424,461,627v-87,90,-394,493,-461,628v-67,-127,-220,-336,-457,-628v216,-255,368,-464,457,-627","w":1038},"\u266a":{"d":"26,142v-5,-225,289,-399,535,-399v128,0,260,31,396,94r-31,-1372r60,0v109,67,231,170,366,309v135,139,202,234,202,285v0,19,-36,73,-59,73v-19,0,-40,-15,-63,-44v-75,-90,-326,-314,-437,-378r26,1374v0,81,-23,146,-71,193v-90,91,-323,192,-509,192v-230,0,-411,-132,-415,-327","w":1579},"\u266b":{"d":"304,188v0,-172,148,-292,323,-292v63,0,132,18,205,54r0,-1145r934,-291r0,1301v-1,196,-40,272,-162,342v-58,33,-126,48,-201,48v-178,0,-278,-105,-280,-263v-2,-163,148,-287,324,-287v56,0,123,17,200,50r0,-850r-699,217r0,981v-3,178,-32,267,-150,339v-61,38,-134,57,-217,57v-159,1,-277,-99,-277,-261","w":2048},"\uf005":{"d":"556,250v0,119,-112,197,-257,197v-55,0,-120,-12,-194,-36r35,-131v91,25,215,30,216,-55v1,-63,-81,-62,-156,-52r26,-94v41,-3,73,-4,96,-4v134,-5,234,65,234,175","w":682},"\u00a4":{"d":"616,-307v-127,0,-211,-39,-295,-100r-105,103r-120,-121r103,-104v-60,-93,-92,-158,-92,-289v0,-131,33,-206,94,-292r-106,-104r121,-124r106,106v82,-57,173,-97,296,-97v123,0,206,37,291,94r105,-103r119,124r-104,101v62,85,98,164,98,295v0,128,-35,205,-95,289r104,104r-119,121r-105,-103v-85,62,-167,100,-296,100xm618,-1139v-170,0,-315,150,-315,323v0,170,146,318,314,318v169,0,313,-149,313,-321v0,-171,-143,-320,-312,-320"}}});
;


/* Comment Generated by Combres - Resource '~/js/ResourceHandler.ashx?file=jquery.easing.1.3.js&cache=false' (Mode: Dynamic) */
/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
 *
 * TERMS OF USE - jQuery Easing
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2008 George McGinley Smith
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
*/

// t: current time, b: begInnIng value, c: change In value, d: duration
jQuery.easing['jswing'] = jQuery.easing['swing'];

jQuery.extend( jQuery.easing,
{
	def: 'easeOutQuad',
	swing: function (x, t, b, c, d) {
		//alert(jQuery.easing.default);
		return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
	},
	easeInQuad: function (x, t, b, c, d) {
		return c*(t/=d)*t + b;
	},
	easeOutQuad: function (x, t, b, c, d) {
		return -c *(t/=d)*(t-2) + b;
	},
	easeInOutQuad: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t + b;
		return -c/2 * ((--t)*(t-2) - 1) + b;
	},
	easeInCubic: function (x, t, b, c, d) {
		return c*(t/=d)*t*t + b;
	},
	easeOutCubic: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t + 1) + b;
	},
	easeInOutCubic: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t + b;
		return c/2*((t-=2)*t*t + 2) + b;
	},
	easeInQuart: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t + b;
	},
	easeOutQuart: function (x, t, b, c, d) {
		return -c * ((t=t/d-1)*t*t*t - 1) + b;
	},
	easeInOutQuart: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
		return -c/2 * ((t-=2)*t*t*t - 2) + b;
	},
	easeInQuint: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t*t + b;
	},
	easeOutQuint: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t*t*t + 1) + b;
	},
	easeInOutQuint: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
		return c/2*((t-=2)*t*t*t*t + 2) + b;
	},
	easeInSine: function (x, t, b, c, d) {
		return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
	},
	easeOutSine: function (x, t, b, c, d) {
		return c * Math.sin(t/d * (Math.PI/2)) + b;
	},
	easeInOutSine: function (x, t, b, c, d) {
		return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
	},
	easeInExpo: function (x, t, b, c, d) {
		return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
	},
	easeOutExpo: function (x, t, b, c, d) {
		return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
	},
	easeInOutExpo: function (x, t, b, c, d) {
		if (t==0) return b;
		if (t==d) return b+c;
		if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
		return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
	},
	easeInCirc: function (x, t, b, c, d) {
		return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
	},
	easeOutCirc: function (x, t, b, c, d) {
		return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
	},
	easeInOutCirc: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
		return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
	},
	easeInElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	},
	easeOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
	},
	easeInOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
		return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
	},
	easeInBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*(t/=d)*t*((s+1)*t - s) + b;
	},
	easeOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	},
	easeInOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158; 
		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
	},
	easeInBounce: function (x, t, b, c, d) {
		return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
	},
	easeOutBounce: function (x, t, b, c, d) {
		if ((t/=d) < (1/2.75)) {
			return c*(7.5625*t*t) + b;
		} else if (t < (2/2.75)) {
			return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
		} else if (t < (2.5/2.75)) {
			return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
		} else {
			return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
		}
	},
	easeInOutBounce: function (x, t, b, c, d) {
		if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
		return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
	}
});

/*
 *
 * TERMS OF USE - EASING EQUATIONS
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2001 Robert Penner
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
 */;


/* Comment Generated by Combres - Resource '~/js/ResourceHandler.ashx?file=jquery.galleryview-1.1.js&cache=false' (Mode: Dynamic) */
/*

	GalleryView - jQuery Content Gallery Plugin
	Author: 		Jack Anderson
	Version:		1.1 (April 5, 2009)
	Documentation: 	http://www.spaceforaname.com/jquery/galleryview/
	
	Please use this development script if you intend to make changes to the
	plugin code.  For production sites, please use jquery.galleryview-1.0.1-pack.js.
	
*/
(function ($) {
    $.fn.galleryView = function (options) {
        var opts = $.extend($.fn.galleryView.defaults, options);

        var id;
        var iterator = 0;
        var gallery_width;
        var gallery_height;
        var frame_margin = 0;
        var strip_width;
        var wrapper_width;
        var item_count = 0;
        var slide_method;
        var img_path;
        var paused = false;
        var frame_caption_size = 40;
        var frame_margin_top = 0;
        var pointer_width = 0;

        //Define jQuery objects for reuse
        var j_gallery;
        var j_filmstrip;
        var j_frames;
        var j_panels;
        var j_pointer;

        /************************************************/
        /*	Plugin Methods								*/
        /************************************************/
        function showItem(i) {
            //Disable next/prev buttons until transition is complete
            $('img.nav-next').unbind('click');
            $('img.nav-prev').unbind('click');
            j_frames.unbind('click');
            if (has_panels) {
                if (opts.fade_panels) {
                    //Fade out all panels and fade in target panel
                    j_panels.fadeOut(opts.transition_speed).eq(i % item_count).fadeIn(opts.transition_speed, function () {
                        if (!has_filmstrip) {
                            $('img.nav-prev').click(showPrevItem);
                            $('img.nav-next').click(showNextItem);
                        }
                    });
                }
            }

            if (has_filmstrip) {
                //Slide either pointer or filmstrip, depending on transition method
                if (slide_method == 'strip') {
                    //Stop filmstrip if it's currently in motion
                    j_filmstrip.stop();

                    //Determine distance between pointer (eventual destination) and target frame
                    var distance = getPos(j_frames[i]).left - (getPos(j_pointer[0]).left + 2);
                    var leftstr = (distance >= 0 ? '-=' : '+=') + Math.abs(distance) + 'px';

                    //Animate filmstrip and slide target frame under pointer
                    //If target frame is a duplicate, jump back to 'original' frame
                    j_filmstrip.animate({
                        'left': leftstr
                    }, opts.transition_speed, opts.easing, function () {
                        //Always ensure that there are a sufficient number of hidden frames on either
                        //side of the filmstrip to avoid empty frames
                        if (i > item_count) {
                            i = i % item_count;
                            iterator = i;
                            j_filmstrip.css('left', '-' + ((opts.frame_width + frame_margin) * i) + 'px');
                        } else if (i <= (item_count - strip_size)) {
                            i = (i % item_count) + item_count;
                            iterator = i;
                            j_filmstrip.css('left', '-' + ((opts.frame_width + frame_margin) * i) + 'px');
                        }

                        if (!opts.fade_panels) {
                            j_panels.hide().eq(i % item_count).show();
                        }
                        $('img.nav-prev').click(showPrevItem);
                        $('img.nav-next').click(showNextItem);
                        enableFrameClicking();
                    });
                } else if (slide_method == 'pointer') {
                    //Stop pointer if it's currently in motion
                    j_pointer.stop();
                    //Get position of target frame
                    var pos = getPos(j_frames[i]);
                    //Slide the pointer over the target frame
                    j_pointer.animate({
                        'left': (pos.left - 2 + 'px')
                    }, opts.transition_speed, opts.easing, function () {
                        if (!opts.fade_panels) {
                            j_panels.hide().eq(i % item_count).show();
                        }
                        $('img.nav-prev').click(showPrevItem);
                        $('img.nav-next').click(showNextItem);
                        enableFrameClicking();
                    });
                }

                if ($('a', j_frames[i])[0]) {
                    j_pointer.unbind('click').click(function () {
                        var a = $('a', j_frames[i]).eq(0);
                        if (a.attr('target') == '_blank') { window.open(a.attr('href')); }
                        else { location.href = a.attr('href'); }
                    });
                }
            }

            // Added by Steven Langeraert
            if (i >= item_count) {
                i = i % item_count;
            }

            $('.galleryInfoBox').hide();
            $('.galleryInfoBox').eq(i).show();

            //End Added.
        };

        function showNextItem() {
            $(document).stopTime("transition");
            if (++iterator == j_frames.length) { iterator = 0; }
            showItem(iterator);
            $(document).everyTime(opts.transition_interval, "transition", function () {
                showNextItem();
            });
        };

        function showPrevItem() {
            $(document).stopTime("transition");
            if (--iterator < 0) { iterator = item_count - 1; }
            //alert(iterator);
            showItem(iterator);
            $(document).everyTime(opts.transition_interval, "transition", function () {
                showNextItem();
            });
        };
        //Added by Steven Langeraert
        function showFirstItem() {
            $(document).stopTime("transition");
            showItem(0);
            $(document).everyTime(opts.transition_interval, "transition", function () {
                showNextItem();
            });
        };

        function showLastItem() {
            $(document).stopTime("transition");
            showItem(item_count - 1);
            $(document).everyTime(opts.transition_interval, "transition", function () {
                showNextItem();
            });
        };

        function getPos(el) {
            var left = 0, top = 0;
            var el_id = el.id;
            if (el.offsetParent) {
                do {
                    left += el.offsetLeft;
                    top += el.offsetTop;
                } while (el = el.offsetParent);
            }
            //If we want the position of the gallery itself, return it
            if (el_id == id) { return { 'left': left, 'top': top }; }
            //Otherwise, get position of element relative to gallery
            else {
                var gPos = getPos(j_gallery[0]);
                var gLeft = gPos.left;
                var gTop = gPos.top;

                return { 'left': left - gLeft, 'top': top - gTop };
            }
        };
        function enableFrameClicking() {
            j_frames.each(function (i) {
                //If there isn't a link in this frame, set up frame to slide on click
                //Frames with links will handle themselves
                if ($('a', this).length == 0) {
                    $(this).click(function () {
                        $(document).stopTime("transition");
                        showItem(i);
                        iterator = i;
                        $(document).everyTime(opts.transition_interval, "transition", function () {
                            showNextItem();
                        });
                    });
                }
            });
        };

        function buildPanels() {
            //If there are panel captions, add overlay divs
            if ($('.panel-overlay').length > 0) { j_panels.append('<div class="overlay"></div>'); }

            if (!has_filmstrip) {
                //Add navigation buttons
                $('<img />').addClass('nav-next').attr('src', '/site_images/next.png').appendTo(j_gallery).css({
                    'position': 'absolute',
                    'zIndex': '1100',
                    'cursor': 'pointer',
                    'top': ((opts.panel_height - 22) / 2) + 'px',
                    'right': '10px',
                    'display': 'none'
                }).click(showNextItem);
                $('<img />').addClass('nav-prev').attr('src', '/site_images/prev.png').appendTo(j_gallery).css({
                    'position': 'absolute',
                    'zIndex': '1100',
                    'cursor': 'pointer',
                    'top': ((opts.panel_height - 22) / 2) + 'px',
                    'left': '10px',
                    'display': 'none'
                }).click(showPrevItem);

                $('<img />').addClass('nav-overlay').attr('src', '/site_images/next.png').appendTo(j_gallery).css({
                    'position': 'absolute',
                    'zIndex': '1099',
                    'top': ((opts.panel_height - 22) / 2) - 10 + 'px',
                    'right': '0',
                    'display': 'none'
                });

                $('<img />').addClass('nav-overlay').attr('src', '/site_images/prev.png').appendTo(j_gallery).css({
                    'position': 'absolute',
                    'zIndex': '1099',
                    'top': ((opts.panel_height - 22) / 2) - 10 + 'px',
                    'left': '0',
                    'display': 'none'
                });
            }
            j_panels.css({
                'width': (opts.panel_width - parseInt(j_panels.css('paddingLeft').split('px')[0], 10) - parseInt(j_panels.css('paddingRight').split('px')[0], 10)) + 'px',
                'height': (opts.panel_height - parseInt(j_panels.css('paddingTop').split('px')[0], 10) - parseInt(j_panels.css('paddingBottom').split('px')[0], 10)) + 'px',
                'position': 'absolute',
                'top': (opts.filmstrip_position == 'top' ? (opts.frame_height + frame_margin_top + (opts.show_captions ? frame_caption_size : frame_margin_top)) + 'px' : '0px'),
                'left': '0px',
                'overflow': 'hidden',
                'background': 'white',
                'display': 'none'
            });
            $('.panel-overlay', j_panels).css({
                'position': 'absolute',
                'zIndex': '999',
                'width': (opts.panel_width - 20) + 'px',
                'height': opts.overlay_height + 'px',
                'top': (opts.overlay_position == 'top' ? '0' : opts.panel_height - opts.overlay_height + 'px'),
                'left': '0',
                'padding': '0 10px',
                'color': opts.overlay_text_color,
                'fontSize': opts.overlay_font_size
            });
            $('.panel-overlay a', j_panels).css({
                'color': opts.overlay_text_color,
                'textDecoration': 'underline',
                'fontWeight': 'bold'
            });
            $('.overlay', j_panels).css({
                'position': 'absolute',
                'zIndex': '998',
                'width': opts.panel_width + 'px',
                'height': opts.overlay_height + 'px',
                'top': (opts.overlay_position == 'top' ? '0' : opts.panel_height - opts.overlay_height + 'px'),
                'left': '0',
                'background': opts.overlay_color,
                'opacity': opts.overlay_opacity
            });
            $('.panel iframe', j_panels).css({
                'width': opts.panel_width + 'px',
                'height': (opts.panel_height - opts.overlay_height) + 'px',
                'border': '0'
            });
        };

        function buildFilmstrip() {
            //Add wrapper to filmstrip to hide extra frames
            j_filmstrip.wrap('<div class="strip_wrapper"></div>');
            if (slide_method == 'strip') {
                j_frames.clone().appendTo(j_filmstrip);
                j_frames.clone().appendTo(j_filmstrip);
                j_frames = $('li', j_filmstrip);
            }
            //If captions are enabled, add caption divs and fill with the image titles
            if (opts.show_captions) {
                j_frames.append('<div class="caption"></div>').each(function (i) {
                    $(this).find('.caption').html($(this).find('img').attr('title'));
                });
            }

            j_filmstrip.css({
                'listStyle': 'none',
                'margin': '0',
                'padding': '0',
                'width': strip_width + 'px',
                'position': 'absolute',
                'zIndex': '900',
                'top': '0',
                'left': '0',
                'height': (opts.frame_height + 10) + 'px',
                'background': opts.background_color
            });
            j_frames.css({
                'float': 'left',
                'position': 'relative',
                'height': opts.frame_height + 'px',
                'zIndex': '901',
                'marginTop': frame_margin_top + 'px',
                'marginBottom': '0px',
                'marginRight': frame_margin + 'px',
                'padding': '0',
                'cursor': 'pointer'
            });
            $('img', j_frames).css({
                'border': 'none'
            });
            $('.strip_wrapper', j_gallery).css({
                'position': 'absolute',
                'top': (opts.filmstrip_position == 'top' ? '0px' : opts.panel_height + 'px'),
                'left': ((gallery_width - wrapper_width) / 2) + 'px',
                'width': wrapper_width + 'px',
                'height': (opts.frame_height + frame_margin_top + (opts.show_captions ? frame_caption_size : frame_margin_top)) + 'px',
                'overflow': 'hidden'
            });
            $('.caption', j_gallery).css({
                'position': 'absolute',
                'top': opts.frame_height + 'px',
                'left': '0',
                'margin': '0',
                'width': opts.frame_width + 'px',
                'padding': '0',
                'color': opts.caption_text_color,
                'textAlign': 'center',
                'fontSize': '10px',
                'height': frame_caption_size + 'px',

                'lineHeight': frame_caption_size + 'px'
            });
            var pointer = $('<div></div>');
            pointer.attr('id', 'pointer').appendTo(j_gallery).css({
                'position': 'absolute',
                'zIndex': '1000',
                'cursor': 'pointer',
                'top': getPos(j_frames[0]).top - (pointer_width / 2) + 'px',
                'left': getPos(j_frames[0]).left - (pointer_width / 2) + 'px',
                'height': opts.frame_height - pointer_width + 'px',
                'width': opts.frame_width - pointer_width + 'px',
                'border': (has_panels ? pointer_width + 'px solid ' + (opts.nav_theme == 'dark' ? 'black' : 'white') : 'none')
            });
            j_pointer = $('#pointer', j_gallery);
            if (has_panels) {
                var pointerArrow = $('<img />');
                pointerArrow.attr('src', '').appendTo($('#pointer')).css({
                    'position': 'absolute',
                    'zIndex': '1001',
                    'display': 'none',
                    'top': (opts.filmstrip_position == 'bottom' ? '-' + (10 + pointer_width) + 'px' : opts.frame_height + 'px'),
                    'left': ((opts.frame_width / 2) - 10) + 'px'
                });
            }

            //If the filmstrip is animating, move the strip to the middle third
            if (slide_method == 'strip') {
                j_filmstrip.css('left', '-' + ((opts.frame_width + frame_margin) * item_count) + 'px');
                iterator = item_count;
            }
            //If there's a link under the pointer, enable clicking on the pointer
            if ($('a', j_frames[iterator])[0]) {
                j_pointer.click(function () {
                    var a = $('a', j_frames[iterator]).eq(0);
                    if (a.attr('target') == '_blank') { window.open(a.attr('href')); }
                    else { location.href = a.attr('href'); }
                });
            }

            //Add navigation buttons
            $('<img />').addClass('nav-next').attr('src', '/site_images/next.png').appendTo(j_gallery).css({
                'position': 'absolute',
                'cursor': 'pointer',
                'top': (opts.filmstrip_position == 'top' ? 0 : opts.panel_height) + frame_margin_top + ((opts.frame_height - 22) / 2) - 2 + 'px',
                'right': (gallery_width / 2) - (wrapper_width / 2) - 10 - 27 + 'px'
            }).click(showNextItem);

            $('<img />').addClass('nav-prev').attr('src', '/site_images/prev.png').appendTo(j_gallery).css({
                'position': 'absolute',
                'cursor': 'pointer',
                'top': (opts.filmstrip_position == 'top' ? 0 : opts.panel_height) + frame_margin_top + ((opts.frame_height - 22) / 2) - 2 + 'px',
                'left': (gallery_width / 2) - (wrapper_width / 2) - 10 - 27 + 'px'
            }).click(showPrevItem);

            //Added by Steven Langeraert
            $('<img />').addClass('nav-first').attr('src', '/site_images/first.png').appendTo(j_gallery).css({
                'position': 'absolute',
                'cursor': 'pointer',
                'top': (opts.filmstrip_position == 'top' ? 0 : opts.panel_height) + frame_margin_top + ((opts.frame_height - 22) / 2) - 2 + 'px',
                'left': (gallery_width / 2) - (wrapper_width / 2) - 10 - 27 - 31 + 'px'
            }).click(showFirstItem);

            $('<img />').addClass('nav-last').attr('src', '/site_images/last.png').appendTo(j_gallery).css({
                'position': 'absolute',
                'cursor': 'pointer',
                'top': (opts.filmstrip_position == 'top' ? 0 : opts.panel_height) + frame_margin_top + ((opts.frame_height - 22) / 2) - 2 + 'px',
                'right': (gallery_width / 2) - (wrapper_width / 2) - 10 - 27 - 31 + 'px'
            }).click(showLastItem);

        };

        //Check mouse to see if it is within the borders of the panel
        //More reliable than 'mouseover' event when elements overlay the panel
        function mouseIsOverPanels(x, y) {
            var pos = getPos(j_gallery[0]);
            var top = pos.top;
            var left = pos.left;
            return x > left && x < left + opts.panel_width && y > top && y < top + opts.panel_height;
        };

        /************************************************/
        /*	Main Plugin Code							*/
        /************************************************/
        return this.each(function () {
            j_gallery = $(this);
            //Determine path between current page and filmstrip images
            //Scan script tags and look for path to GalleryView plugin
            $('script').each(function (i) {
                var s = $(this);
                if (s.attr('src') && s.attr('src').match(/jquery\.galleryview/)) {
                    img_path = s.attr('src').split('jquery.galleryview')[0] + 'themes/';
                }
            });

            //Hide gallery to prevent Flash of Unstyled Content (FoUC) in IE
            j_gallery.css('visibility', 'hidden');

            //Assign elements to variables for reuse
            j_filmstrip = $('.filmstrip', j_gallery);
            j_frames = $('li', j_filmstrip);
            j_panels = $('.panel', j_gallery);

            id = j_gallery.attr('id');

            has_panels = j_panels.length > 0;
            has_filmstrip = j_frames.length > 0;

            if (!has_panels) opts.panel_height = 0;

            //Number of frames in filmstrip
            item_count = has_panels ? j_panels.length : j_frames.length;

            //Number of frames that can display within the screen's width
            //64 = width of block for navigation button * 2
            //5 = minimum frame margin
            strip_size = has_panels ? Math.floor((opts.panel_width - 64) / (opts.frame_width + frame_margin)) : Math.min(item_count, opts.filmstrip_size);


            /************************************************/
            /*	Determine transition method for filmstrip	*/
            /************************************************/
            //If more items than strip size, slide filmstrip
            //Otherwise, slide pointer
            if (strip_size >= item_count) {
                slide_method = 'pointer';
                strip_size = item_count;
            }
            else { slide_method = 'strip'; }

            /************************************************/
            /*	Determine dimensions of various elements	*/
            /************************************************/

            //Width of gallery block
            gallery_width = has_panels ? opts.panel_width : (strip_size * (opts.frame_width + frame_margin)) - frame_margin + 64;

            //Height of gallery block = screen + filmstrip + captions (optional)
            gallery_height = (has_panels ? opts.panel_height : 0) + (has_filmstrip ? opts.frame_height + frame_margin_top + (opts.show_captions ? frame_caption_size : frame_margin_top) : 0);

            //Width of filmstrip
            if (slide_method == 'pointer') { strip_width = (opts.frame_width * item_count) + (frame_margin * (item_count)); }
            else { strip_width = (opts.frame_width * item_count * 3) + (frame_margin * (item_count * 3)); }

            //Width of filmstrip wrapper (to hide overflow)
            wrapper_width = ((strip_size * opts.frame_width) + ((strip_size - 1) * frame_margin));

            /************************************************/
            /*	Apply CSS Styles							*/
            /************************************************/
            j_gallery.css({
                'position': 'relative',
                'margin': '0',
                'background': opts.background_color,
                'border': opts.border,
                'width': gallery_width + 'px',
                'height': gallery_height + 'px'
            });

            /************************************************/
            /*	Build filmstrip and/or panels				*/
            /************************************************/
            if (has_filmstrip) {
                buildFilmstrip();
            }
            if (has_panels) {
                buildPanels();
            }


            /************************************************/
            /*	Add events to various elements				*/
            /************************************************/
            if (has_filmstrip) enableFrameClicking();



            $().mousemove(function (e) {
                if (mouseIsOverPanels(e.pageX, e.pageY)) {
                    if (opts.pause_on_hover) {
                        $(document).oneTime(500, "animation_pause", function () {
                            $(document).stopTime("transition");
                            paused = true;
                        });
                    }
                    if (has_panels && !has_filmstrip) {
                        $('.nav-overlay').fadeIn('fast');
                        $('.nav-next').fadeIn('fast');
                        $('.nav-prev').fadeIn('fast');
                    }
                } else {
                    if (opts.pause_on_hover) {
                        $(document).stopTime("animation_pause");
                        if (paused) {
                            $(document).everyTime(opts.transition_interval, "transition", function () {
                                showNextItem();
                            });
                            paused = false;
                        }
                    }
                    if (has_panels && !has_filmstrip) {
                        $('.nav-overlay').fadeOut('fast');
                        $('.nav-next').fadeOut('fast');
                        $('.nav-prev').fadeOut('fast');
                    }
                }
            });


            /************************************************/
            /*	Initiate Automated Animation				*/
            /************************************************/
            //Show the first panel
            j_panels.eq(0).show();

            //If we have more than one item, begin automated transitions
            if (item_count > 1) {
                $(document).everyTime(opts.transition_interval, "transition", function () {
                    showNextItem();
                });
            }

            //Make gallery visible now that work is complete
            j_gallery.css('visibility', 'visible');
        });
    };

    $.fn.galleryView.defaults = {
        panel_width: 400,
        panel_height: 300,
        frame_width: 80,
        frame_height: 80,
        filmstrip_size: 3,
        overlay_height: 0,
        overlay_font_size: '1em',
        transition_speed: 400,
        transition_interval: 6000,
        overlay_opacity: 0,
        overlay_color: '',
        background_color: '',
        overlay_text_color: '',
        caption_text_color: '',
        border: '',
        nav_theme: '',
        easing: 'swing',
        filmstrip_position: 'bottom',
        overlay_position: 'bottom',
        show_captions: false,
        fade_panels: true,
        pause_on_hover: false
    };
})(jQuery);;


/* Comment Generated by Combres - Resource '~/js/ResourceHandler.ashx?file=jquery.timers-1.2.js&cache=false' (Mode: Dynamic) */
﻿/**
 * jQuery.timers - Timer abstractions for jQuery
 * Written by Blair Mitchelmore (blair DOT mitchelmore AT gmail DOT com)
 * Licensed under the WTFPL (http://sam.zoy.org/wtfpl/).
 * Date: 2009/02/08
 *
 * @author Blair Mitchelmore
 * @version 1.1.2
 *
 **/

jQuery.fn.extend({
	everyTime: function(interval, label, fn, times, belay) {
		return this.each(function() {
			jQuery.timer.add(this, interval, label, fn, times, belay);
		});
	},
	oneTime: function(interval, label, fn) {
		return this.each(function() {
			jQuery.timer.add(this, interval, label, fn, 1);
		});
	},
	stopTime: function(label, fn) {
		return this.each(function() {
			jQuery.timer.remove(this, label, fn);
		});
	}
});

jQuery.event.special

jQuery.extend({
	timer: {
		global: [],
		guid: 1,
		dataKey: "jQuery.timer",
		regex: /^([0-9]+(?:\.[0-9]*)?)\s*(.*s)?$/,
		powers: {
			// Yeah this is major overkill...
			'ms': 1,
			'cs': 10,
			'ds': 100,
			's': 1000,
			'das': 10000,
			'hs': 100000,
			'ks': 1000000
		},
		timeParse: function(value) {
			if (value == undefined || value == null)
				return null;
			var result = this.regex.exec(jQuery.trim(value.toString()));
			if (result[2]) {
				var num = parseFloat(result[1]);
				var mult = this.powers[result[2]] || 1;
				return num * mult;
			} else {
				return value;
			}
		},
		add: function(element, interval, label, fn, times, belay) {
			var counter = 0;
			
			if (jQuery.isFunction(label)) {
				if (!times) 
					times = fn;
				fn = label;
				label = interval;
			}
			
			interval = jQuery.timer.timeParse(interval);

			if (typeof interval != 'number' || isNaN(interval) || interval <= 0)
				return;

			if (times && times.constructor != Number) {
				belay = !!times;
				times = 0;
			}
			
			times = times || 0;
			belay = belay || false;
			
			var timers = jQuery.data(element, this.dataKey) || jQuery.data(element, this.dataKey, {});
			
			if (!timers[label])
				timers[label] = {};
			
			fn.timerID = fn.timerID || this.guid++;
			
			var handler = function() {
				if (belay && this.inProgress) 
					return;
				this.inProgress = true;
				if ((++counter > times && times !== 0) || fn.call(element, counter) === false)
					jQuery.timer.remove(element, label, fn);
				this.inProgress = false;
			};
			
			handler.timerID = fn.timerID;
			
			if (!timers[label][fn.timerID])
				timers[label][fn.timerID] = window.setInterval(handler,interval);
			
			this.global.push( element );
			
		},
		remove: function(element, label, fn) {
			var timers = jQuery.data(element, this.dataKey), ret;
			
			if ( timers ) {
				
				if (!label) {
					for ( label in timers )
						this.remove(element, label, fn);
				} else if ( timers[label] ) {
					if ( fn ) {
						if ( fn.timerID ) {
							window.clearInterval(timers[label][fn.timerID]);
							delete timers[label][fn.timerID];
						}
					} else {
						for ( var fn in timers[label] ) {
							window.clearInterval(timers[label][fn]);
							delete timers[label][fn];
						}
					}
					
					for ( ret in timers[label] ) break;
					if ( !ret ) {
						ret = null;
						delete timers[label];
					}
				}
				
				for ( ret in timers ) break;
				if ( !ret ) 
					jQuery.removeData(element, this.dataKey);
			}
		}
	}
});

jQuery(window).bind("unload", function() {
	jQuery.each(jQuery.timer.global, function(index, item) {
		jQuery.timer.remove(item);
	});
});;


/* Comment Generated by Combres - Resource '~/js/ResourceHandler.ashx?file=shadowbox.js&cache=false' (Mode: Dynamic) */
/*
 * Shadowbox.js, version 3.0.3
 * http://shadowbox-js.com/
 *
 * Copyright 2007-2010, Michael J. I. Jackson
 * Date: 2010-10-21 04:59:13 +0000
 */
(function(window,undefined){var S={version:"3.0.3"};var ua=navigator.userAgent.toLowerCase();if(ua.indexOf("windows")>-1||ua.indexOf("win32")>-1){S.isWindows=true}else{if(ua.indexOf("macintosh")>-1||ua.indexOf("mac os x")>-1){S.isMac=true}else{if(ua.indexOf("linux")>-1){S.isLinux=true}}}S.isIE=ua.indexOf("msie")>-1;S.isIE6=ua.indexOf("msie 6")>-1;S.isIE7=ua.indexOf("msie 7")>-1;S.isGecko=ua.indexOf("gecko")>-1&&ua.indexOf("safari")==-1;S.isWebKit=ua.indexOf("applewebkit/")>-1;var inlineId=/#(.+)$/,galleryName=/^(light|shadow)box\[(.*?)\]/i,inlineParam=/\s*([a-z_]*?)\s*=\s*(.+)\s*/,fileExtension=/[0-9a-z]+$/i,scriptPath=/(.+\/)shadowbox\.js/i;var open=false,initialized=false,lastOptions={},slideDelay=0,slideStart,slideTimer;S.current=-1;S.dimensions=null;S.ease=function(state){return 1+Math.pow(state-1,3)};S.errorInfo={fla:{name:"Flash",url:"http://www.adobe.com/products/flashplayer/"},qt:{name:"QuickTime",url:"http://www.apple.com/quicktime/download/"},wmp:{name:"Windows Media Player",url:"http://www.microsoft.com/windows/windowsmedia/"},f4m:{name:"Flip4Mac",url:"http://www.flip4mac.com/wmv_download.htm"}};S.gallery=[];S.onReady=noop;S.path=null;S.player=null;S.playerId="sb-player";S.options={animate:true,animateFade:true,autoplayMovies:true,continuous:false,enableKeys:true,flashParams:{bgcolor:"#000000",allowfullscreen:true},flashVars:{},flashVersion:"9.0.115",handleOversize:"resize",handleUnsupported:"link",onChange:noop,onClose:noop,onFinish:noop,onOpen:noop,showMovieControls:true,skipSetup:false,slideshowDelay:0,viewportPadding:20};S.getCurrent=function(){return S.current>-1?S.gallery[S.current]:null};S.hasNext=function(){return S.gallery.length>1&&(S.current!=S.gallery.length-1||S.options.continuous)};S.isOpen=function(){return open};S.isPaused=function(){return slideTimer=="pause"};S.applyOptions=function(options){lastOptions=apply({},S.options);apply(S.options,options)};S.revertOptions=function(){apply(S.options,lastOptions)};S.init=function(options,callback){if(initialized){return}initialized=true;if(S.skin.options){apply(S.options,S.skin.options)}if(options){apply(S.options,options)}if(!S.path){var path,scripts=document.getElementsByTagName("script");for(var i=0,len=scripts.length;i<len;++i){path=scriptPath.exec(scripts[i].src);if(path){S.path=path[1];break}}}if(callback){S.onReady=callback}bindLoad()};S.open=function(obj){if(open){return}var gc=S.makeGallery(obj);S.gallery=gc[0];S.current=gc[1];obj=S.getCurrent();if(obj==null){return}S.applyOptions(obj.options||{});filterGallery();if(S.gallery.length){obj=S.getCurrent();if(S.options.onOpen(obj)===false){return}open=true;S.skin.onOpen(obj,load)}};S.close=function(){if(!open){return}open=false;if(S.player){S.player.remove();S.player=null}if(typeof slideTimer=="number"){clearTimeout(slideTimer);slideTimer=null}slideDelay=0;listenKeys(false);S.options.onClose(S.getCurrent());S.skin.onClose();S.revertOptions()};S.play=function(){if(!S.hasNext()){return}if(!slideDelay){slideDelay=S.options.slideshowDelay*1000}if(slideDelay){slideStart=now();slideTimer=setTimeout(function(){slideDelay=slideStart=0;S.next()},slideDelay);if(S.skin.onPlay){S.skin.onPlay()}}};S.pause=function(){if(typeof slideTimer!="number"){return}slideDelay=Math.max(0,slideDelay-(now()-slideStart));if(slideDelay){clearTimeout(slideTimer);slideTimer="pause";if(S.skin.onPause){S.skin.onPause()}}};S.change=function(index){if(!(index in S.gallery)){if(S.options.continuous){index=(index<0?S.gallery.length+index:0);if(!(index in S.gallery)){return}}else{return}}S.current=index;if(typeof slideTimer=="number"){clearTimeout(slideTimer);slideTimer=null;slideDelay=slideStart=0}S.options.onChange(S.getCurrent());load(true)};S.next=function(){S.change(S.current+1)};S.previous=function(){S.change(S.current-1)};S.setDimensions=function(height,width,maxHeight,maxWidth,topBottom,leftRight,padding,preserveAspect){var originalHeight=height,originalWidth=width;var extraHeight=2*padding+topBottom;if(height+extraHeight>maxHeight){height=maxHeight-extraHeight}var extraWidth=2*padding+leftRight;if(width+extraWidth>maxWidth){width=maxWidth-extraWidth}var changeHeight=(originalHeight-height)/originalHeight,changeWidth=(originalWidth-width)/originalWidth,oversized=(changeHeight>0||changeWidth>0);if(preserveAspect&&oversized){if(changeHeight>changeWidth){width=Math.round((originalWidth/originalHeight)*height)}else{if(changeWidth>changeHeight){height=Math.round((originalHeight/originalWidth)*width)}}}S.dimensions={height:height+topBottom,width:width+leftRight,innerHeight:height,innerWidth:width,top:Math.floor((maxHeight-(height+extraHeight))/2+padding),left:Math.floor((maxWidth-(width+extraWidth))/2+padding),oversized:oversized};return S.dimensions};S.makeGallery=function(obj){var gallery=[],current=-1;if(typeof obj=="string"){obj=[obj]}if(typeof obj.length=="number"){each(obj,function(i,o){if(o.content){gallery[i]=o}else{gallery[i]={content:o}}});current=0}else{if(obj.tagName){var cacheObj=S.getCache(obj);obj=cacheObj?cacheObj:S.makeObject(obj)}if(obj.gallery){gallery=[];var o;for(var key in S.cache){o=S.cache[key];if(o.gallery&&o.gallery==obj.gallery){if(current==-1&&o.content==obj.content){current=gallery.length}gallery.push(o)}}if(current==-1){gallery.unshift(obj);current=0}}else{gallery=[obj];current=0}}each(gallery,function(i,o){gallery[i]=apply({},o)});return[gallery,current]};S.makeObject=function(link,options){var obj={content:link.href,title:link.getAttribute("title")||"",link:link};if(options){options=apply({},options);each(["player","title","height","width","gallery"],function(i,o){if(typeof options[o]!="undefined"){obj[o]=options[o];delete options[o]}});obj.options=options}else{obj.options={}}if(!obj.player){obj.player=S.getPlayer(obj.content)}var rel=link.getAttribute("rel");if(rel){var match=rel.match(galleryName);if(match){obj.gallery=escape(match[2])}each(rel.split(";"),function(i,p){match=p.match(inlineParam);if(match){obj[match[1]]=match[2]}})}return obj};S.getPlayer=function(content){if(content.indexOf("#")>-1&&content.indexOf(document.location.href)==0){return"inline"}var q=content.indexOf("?");if(q>-1){content=content.substring(0,q)}var ext,m=content.match(fileExtension);if(m){ext=m[0].toLowerCase()}if(ext){if(S.img&&S.img.ext.indexOf(ext)>-1){return"img"}if(S.swf&&S.swf.ext.indexOf(ext)>-1){return"swf"}if(S.flv&&S.flv.ext.indexOf(ext)>-1){return"flv"}if(S.qt&&S.qt.ext.indexOf(ext)>-1){if(S.wmp&&S.wmp.ext.indexOf(ext)>-1){return"qtwmp"}else{return"qt"}}if(S.wmp&&S.wmp.ext.indexOf(ext)>-1){return"wmp"}}return"iframe"};function filterGallery(){var err=S.errorInfo,plugins=S.plugins,obj,remove,needed,m,format,replace,inlineEl,flashVersion;for(var i=0;i<S.gallery.length;++i){obj=S.gallery[i];remove=false;needed=null;switch(obj.player){case"flv":case"swf":if(!plugins.fla){needed="fla"}break;case"qt":if(!plugins.qt){needed="qt"}break;case"wmp":if(S.isMac){if(plugins.qt&&plugins.f4m){obj.player="qt"}else{needed="qtf4m"}}else{if(!plugins.wmp){needed="wmp"}}break;case"qtwmp":if(plugins.qt){obj.player="qt"}else{if(plugins.wmp){obj.player="wmp"}else{needed="qtwmp"}}break}if(needed){if(S.options.handleUnsupported=="link"){switch(needed){case"qtf4m":format="shared";replace=[err.qt.url,err.qt.name,err.f4m.url,err.f4m.name];break;case"qtwmp":format="either";replace=[err.qt.url,err.qt.name,err.wmp.url,err.wmp.name];break;default:format="single";replace=[err[needed].url,err[needed].name]}obj.player="html";obj.content='<div class="sb-message">'+sprintf(S.lang.errors[format],replace)+"</div>"}else{remove=true}}else{if(obj.player=="inline"){m=inlineId.exec(obj.content);if(m){inlineEl=get(m[1]);if(inlineEl){obj.content=inlineEl.innerHTML}else{remove=true}}else{remove=true}}else{if(obj.player=="swf"||obj.player=="flv"){flashVersion=(obj.options&&obj.options.flashVersion)||S.options.flashVersion;if(S.flash&&!S.flash.hasFlashPlayerVersion(flashVersion)){obj.width=310;obj.height=177}}}}if(remove){S.gallery.splice(i,1);if(i<S.current){--S.current}else{if(i==S.current){S.current=i>0?i-1:i}}--i}}}function listenKeys(on){if(!S.options.enableKeys){return}(on?addEvent:removeEvent)(document,"keydown",handleKey)}function handleKey(e){if(e.metaKey||e.shiftKey||e.altKey||e.ctrlKey){return}var code=keyCode(e),handler;switch(code){case 81:case 88:case 27:handler=S.close;break;case 37:handler=S.previous;break;case 39:handler=S.next;break;case 32:handler=typeof slideTimer=="number"?S.pause:S.play;break}if(handler){preventDefault(e);handler()}}function load(changing){listenKeys(false);var obj=S.getCurrent();var player=(obj.player=="inline"?"html":obj.player);if(typeof S[player]!="function"){throw"unknown player "+player}if(changing){S.player.remove();S.revertOptions();S.applyOptions(obj.options||{})}S.player=new S[player](obj,S.playerId);if(S.gallery.length>1){var next=S.gallery[S.current+1]||S.gallery[0];if(next.player=="img"){var a=new Image();a.src=next.content}var prev=S.gallery[S.current-1]||S.gallery[S.gallery.length-1];if(prev.player=="img"){var b=new Image();b.src=prev.content}}S.skin.onLoad(changing,waitReady)}function waitReady(){if(!open){return}if(typeof S.player.ready!="undefined"){var timer=setInterval(function(){if(open){if(S.player.ready){clearInterval(timer);timer=null;S.skin.onReady(show)}}else{clearInterval(timer);timer=null}},10)}else{S.skin.onReady(show)}}function show(){if(!open){return}S.player.append(S.skin.body,S.dimensions);S.skin.onShow(finish)}function finish(){if(!open){return}if(S.player.onLoad){S.player.onLoad()}S.options.onFinish(S.getCurrent());if(!S.isPaused()){S.play()}listenKeys(true)}if(!Array.prototype.indexOf){Array.prototype.indexOf=function(obj,from){var len=this.length>>>0;from=from||0;if(from<0){from+=len}for(;from<len;++from){if(from in this&&this[from]===obj){return from}}return -1}}function now(){return(new Date).getTime()}function apply(original,extension){for(var property in extension){original[property]=extension[property]}return original}function each(obj,callback){var i=0,len=obj.length;for(var value=obj[0];i<len&&callback.call(value,i,value)!==false;value=obj[++i]){}}function sprintf(str,replace){return str.replace(/\{(\w+?)\}/g,function(match,i){return replace[i]})}function noop(){}function get(id){return document.getElementById(id)}function remove(el){el.parentNode.removeChild(el)}var supportsOpacity=true,supportsFixed=true;function checkSupport(){var body=document.body,div=document.createElement("div");supportsOpacity=typeof div.style.opacity==="string";div.style.position="fixed";div.style.margin=0;div.style.top="20px";body.appendChild(div,body.firstChild);supportsFixed=div.offsetTop==20;body.removeChild(div)}S.getStyle=(function(){var opacity=/opacity=([^)]*)/,getComputedStyle=document.defaultView&&document.defaultView.getComputedStyle;return function(el,style){var ret;if(!supportsOpacity&&style=="opacity"&&el.currentStyle){ret=opacity.test(el.currentStyle.filter||"")?(parseFloat(RegExp.$1)/100)+"":"";return ret===""?"1":ret}if(getComputedStyle){var computedStyle=getComputedStyle(el,null);if(computedStyle){ret=computedStyle[style]}if(style=="opacity"&&ret==""){ret="1"}}else{ret=el.currentStyle[style]}return ret}})();S.appendHTML=function(el,html){if(el.insertAdjacentHTML){el.insertAdjacentHTML("BeforeEnd",html)}else{if(el.lastChild){var range=el.ownerDocument.createRange();range.setStartAfter(el.lastChild);var frag=range.createContextualFragment(html);el.appendChild(frag)}else{el.innerHTML=html}}};S.getWindowSize=function(dimension){if(document.compatMode==="CSS1Compat"){return document.documentElement["client"+dimension]}return document.body["client"+dimension]};S.setOpacity=function(el,opacity){var style=el.style;if(supportsOpacity){style.opacity=(opacity==1?"":opacity)}else{style.zoom=1;if(opacity==1){if(typeof style.filter=="string"&&(/alpha/i).test(style.filter)){style.filter=style.filter.replace(/\s*[\w\.]*alpha\([^\)]*\);?/gi,"")}}else{style.filter=(style.filter||"").replace(/\s*[\w\.]*alpha\([^\)]*\)/gi,"")+" alpha(opacity="+(opacity*100)+")"}}};S.clearOpacity=function(el){S.setOpacity(el,1)};function getTarget(e){return e.target}function getPageXY(e){return[e.pageX,e.pageY]}function preventDefault(e){e.preventDefault()}function keyCode(e){return e.keyCode}function addEvent(el,type,handler){jQuery(el).bind(type,handler)}function removeEvent(el,type,handler){jQuery(el).unbind(type,handler)}jQuery.fn.shadowbox=function(options){return this.each(function(){var el=jQuery(this);var opts=jQuery.extend({},options||{},jQuery.metadata?el.metadata():jQuery.meta?el.data():{});var cls=this.className||"";opts.width=parseInt((cls.match(/w:(\d+)/)||[])[1])||opts.width;opts.height=parseInt((cls.match(/h:(\d+)/)||[])[1])||opts.height;Shadowbox.setup(el,opts)})};var loaded=false,DOMContentLoaded;if(document.addEventListener){DOMContentLoaded=function(){document.removeEventListener("DOMContentLoaded",DOMContentLoaded,false);S.load()}}else{if(document.attachEvent){DOMContentLoaded=function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",DOMContentLoaded);S.load()}}}}function doScrollCheck(){if(loaded){return}try{document.documentElement.doScroll("left")}catch(e){setTimeout(doScrollCheck,1);return}S.load()}function bindLoad(){if(document.readyState==="complete"){return S.load()}if(document.addEventListener){document.addEventListener("DOMContentLoaded",DOMContentLoaded,false);window.addEventListener("load",S.load,false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",DOMContentLoaded);window.attachEvent("onload",S.load);var topLevel=false;try{topLevel=window.frameElement===null}catch(e){}if(document.documentElement.doScroll&&topLevel){doScrollCheck()}}}}S.load=function(){if(loaded){return}if(!document.body){return setTimeout(S.load,13)}loaded=true;checkSupport();S.onReady();if(!S.options.skipSetup){S.setup()}S.skin.init()};S.plugins={};if(navigator.plugins&&navigator.plugins.length){var names=[];each(navigator.plugins,function(i,p){names.push(p.name)});names=names.join(",");var f4m=names.indexOf("Flip4Mac")>-1;S.plugins={fla:names.indexOf("Shockwave Flash")>-1,qt:names.indexOf("QuickTime")>-1,wmp:!f4m&&names.indexOf("Windows Media")>-1,f4m:f4m}}else{var detectPlugin=function(name){var axo;try{axo=new ActiveXObject(name)}catch(e){}return !!axo};S.plugins={fla:detectPlugin("ShockwaveFlash.ShockwaveFlash"),qt:detectPlugin("QuickTime.QuickTime"),wmp:detectPlugin("wmplayer.ocx"),f4m:false}}var relAttr=/^(light|shadow)box/i,expando="shadowboxCacheKey",cacheKey=1;S.cache={};S.select=function(selector){var links=[];if(!selector){var rel;each(document.getElementsByTagName("a"),function(i,el){rel=el.getAttribute("rel");if(rel&&relAttr.test(rel)){links.push(el)}})}else{var length=selector.length;if(length){if(typeof selector=="string"){if(S.find){links=S.find(selector)}}else{if(length==2&&typeof selector[0]=="string"&&selector[1].nodeType){if(S.find){links=S.find(selector[0],selector[1])}}else{for(var i=0;i<length;++i){links[i]=selector[i]}}}}else{links.push(selector)}}return links};S.setup=function(selector,options){each(S.select(selector),function(i,link){S.addCache(link,options)})};S.teardown=function(selector){each(S.select(selector),function(i,link){S.removeCache(link)})};S.addCache=function(link,options){var key=link[expando];if(key==undefined){key=cacheKey++;link[expando]=key;addEvent(link,"click",handleClick)}S.cache[key]=S.makeObject(link,options)};S.removeCache=function(link){removeEvent(link,"click",handleClick);delete S.cache[link[expando]];link[expando]=null};S.getCache=function(link){var key=link[expando];return(key in S.cache&&S.cache[key])};S.clearCache=function(){for(var key in S.cache){S.removeCache(S.cache[key].link)}S.cache={}};function handleClick(e){S.open(this);if(S.gallery.length){preventDefault(e)}}
/*
 * Sizzle CSS Selector Engine - v1.0
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 *
 * Modified for inclusion in Shadowbox.js
 */
S.find=(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,done=0,toString=Object.prototype.toString,hasDuplicate=false,baseHasDuplicate=true;[0,0].sort(function(){baseHasDuplicate=false;return 0});var Sizzle=function(selector,context,results,seed){results=results||[];var origContext=context=context||document;if(context.nodeType!==1&&context.nodeType!==9){return[]}if(!selector||typeof selector!=="string"){return results}var parts=[],m,set,checkSet,extra,prune=true,contextXML=isXML(context),soFar=selector;while((chunker.exec(""),m=chunker.exec(soFar))!==null){soFar=m[3];parts.push(m[1]);if(m[2]){extra=m[3];break}}if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context)}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector]){selector+=parts.shift()}set=posProcess(selector,set)}}}else{if(!seed&&parts.length>1&&context.nodeType===9&&!contextXML&&Expr.match.ID.test(parts[0])&&!Expr.match.ID.test(parts[parts.length-1])){var ret=Sizzle.find(parts.shift(),context,contextXML);context=ret.expr?Sizzle.filter(ret.expr,ret.set)[0]:ret.set[0]}if(context){var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&(parts[0]==="~"||parts[0]==="+")&&context.parentNode?context.parentNode:context,contextXML);set=ret.expr?Sizzle.filter(ret.expr,ret.set):ret.set;if(parts.length>0){checkSet=makeArray(set)}else{prune=false}while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur=""}else{pop=parts.pop()}if(pop==null){pop=context}Expr.relative[cur](checkSet,pop,contextXML)}}else{checkSet=parts=[]}}if(!checkSet){checkSet=set}if(!checkSet){throw"Syntax error, unrecognized expression: "+(cur||selector)}if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet)}else{if(context&&context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i])}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i])}}}}}else{makeArray(checkSet,results)}if(extra){Sizzle(extra,origContext,results,seed);Sizzle.uniqueSort(results)}return results};Sizzle.uniqueSort=function(results){if(sortOrder){hasDuplicate=baseHasDuplicate;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1)}}}}return results};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set)};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[]}for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.leftMatch[type].exec(expr))){var left=match[1];match.splice(1,1);if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break}}}}if(!set){set=context.getElementsByTagName("*")}return{set:set,expr:expr}};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.match[type].exec(expr))!=null){var filter=Expr.filter[type],found,item;anyFound=false;if(curLoop===result){result=[]}if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true}else{if(match===true){continue}}}if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true}else{curLoop[i]=false}}else{if(pass){result.push(item);anyFound=true}}}}}if(found!==undefined){if(!inplace){curLoop=result}expr=expr.replace(Expr.match[type],"");if(!anyFound){return[]}break}}}if(expr===old){if(anyFound==null){throw"Syntax error, unrecognized expression: "+expr}else{break}}old=expr}return curLoop};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href")}},relative:{"+":function(checkSet,part){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag){part=part.toLowerCase()}for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}checkSet[i]=isPartStrNotTag||elem&&elem.nodeName.toLowerCase()===part?elem||false:elem===part}}if(isPartStrNotTag){Sizzle.filter(part,checkSet,true)}},">":function(checkSet,part){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=part.toLowerCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName.toLowerCase()===part?parent:false}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part}}if(isPartStr){Sizzle.filter(part,checkSet,true)}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();checkFn=dirNodeCheck}checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML)},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();checkFn=dirNodeCheck}checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML)}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[]}},NAME:function(match,context){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i])}}return ret.length===0?null:ret}},TAG:function(match,context){return context.getElementsByTagName(match[1])}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match}for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").replace(/[\t\n]/g," ").indexOf(match)>=0)){if(!inplace){result.push(elem)}}else{if(inplace){curLoop[i]=false}}}}return false},ID:function(match){return match[1].replace(/\\/g,"")},TAG:function(match,curLoop){return match[1].toLowerCase()},CHILD:function(match){if(match[1]==="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]==="even"&&"2n"||match[2]==="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0}match[0]=done++;return match},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name]}if(match[2]==="~="){match[4]=" "+match[4]+" "}return match},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if((chunker.exec(match[3])||"").length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop)}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret)}return false}}else{if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true}}return match},POS:function(match){match.unshift(true);return match}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden"},disabled:function(elem){return elem.disabled===true},checked:function(elem){return elem.checked===true},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true},parent:function(elem){return !!elem.firstChild},empty:function(elem){return !elem.firstChild},has:function(elem,i,match){return !!Sizzle(match[3],elem).length},header:function(elem){return/h\d/i.test(elem.nodeName)},text:function(elem){return"text"===elem.type},radio:function(elem){return"radio"===elem.type},checkbox:function(elem){return"checkbox"===elem.type},file:function(elem){return"file"===elem.type},password:function(elem){return"password"===elem.type},submit:function(elem){return"submit"===elem.type},image:function(elem){return"image"===elem.type},reset:function(elem){return"reset"===elem.type},button:function(elem){return"button"===elem.type||elem.nodeName.toLowerCase()==="button"},input:function(elem){return/input|select|textarea|button/i.test(elem.nodeName)}},setFilters:{first:function(elem,i){return i===0},last:function(elem,i,match,array){return i===array.length-1},even:function(elem,i){return i%2===0},odd:function(elem,i){return i%2===1},lt:function(elem,i,match){return i<match[3]-0},gt:function(elem,i,match){return i>match[3]-0},nth:function(elem,i,match){return match[3]-0===i},eq:function(elem,i,match){return match[3]-0===i}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array)}else{if(name==="contains"){return(elem.textContent||elem.innerText||getText([elem])||"").indexOf(match[3])>=0}else{if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false}}return true}else{throw"Syntax error, unrecognized expression: "+name}}}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case"only":case"first":while((node=node.previousSibling)){if(node.nodeType===1){return false}}if(type==="first"){return true}node=elem;case"last":while((node=node.nextSibling)){if(node.nodeType===1){return false}}return true;case"nth":var first=match[2],last=match[3];if(first===1&&last===0){return true}var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count}}parent.sizcache=doneName}var diff=elem.nodeIndex-last;if(first===0){return diff===0}else{return(diff%first===0&&diff/first>=0)}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName.toLowerCase()===match},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!==check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array)}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=new RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);Expr.leftMatch[type]=new RegExp(/(^(?:.|\r|\n)*?)/.source+Expr.match[type].source)}var makeArray=function(array,results){array=Array.prototype.slice.call(array,0);if(results){results.push.apply(results,array);return results}return array};try{Array.prototype.slice.call(document.documentElement.childNodes,0)}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array)}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i])}}else{for(var i=0;array[i];i++){ret.push(array[i])}}}return ret}}var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){if(!a.compareDocumentPosition||!b.compareDocumentPosition){if(a==b){hasDuplicate=true}return a.compareDocumentPosition?-1:1}var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true}return ret}}else{if("sourceIndex" in document.documentElement){sortOrder=function(a,b){if(!a.sourceIndex||!b.sourceIndex){if(a==b){hasDuplicate=true}return a.sourceIndex?-1:1}var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true}return ret}}else{if(document.createRange){sortOrder=function(a,b){if(!a.ownerDocument||!b.ownerDocument){if(a==b){hasDuplicate=true}return a.ownerDocument?-1:1}var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.setStart(a,0);aRange.setEnd(a,0);bRange.setStart(b,0);bRange.setEnd(b,0);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true}return ret}}}}function getText(elems){var ret="",elem;for(var i=0;elems[i];i++){elem=elems[i];if(elem.nodeType===3||elem.nodeType===4){ret+=elem.nodeValue}else{if(elem.nodeType!==8){ret+=getText(elem.childNodes)}}}return ret}(function(){var form=document.createElement("div"),id="script"+(new Date).getTime();form.innerHTML="<a name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[]}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match}}root.removeChild(form);root=form=null})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i])}}results=tmp}return results}}div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2)}}div=null})();if(document.querySelectorAll){(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return}Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra)}catch(e){}}return oldSizzle(query,context,extra,seed)};for(var prop in oldSizzle){Sizzle[prop]=oldSizzle[prop]}div=null})()}(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(!div.getElementsByClassName||div.getElementsByClassName("e").length===0){return}div.lastChild.className="e";if(div.getElementsByClassName("e").length===1){return}Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1])}};div=null})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break}if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i}if(elem.nodeName.toLowerCase()===cur){match=elem;break}elem=elem[dir]}checkSet[i]=match}}}function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break}if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i}if(typeof cur!=="string"){if(elem===cur){match=true;break}}else{if(Sizzle.filter(cur,[elem]).length>0){match=elem;break}}}elem=elem[dir]}checkSet[i]=match}}}var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16}:function(a,b){return a!==b&&(a.contains?a.contains(b):true)};var isXML=function(elem){var documentElement=(elem?elem.ownerDocument||elem:0).documentElement;return documentElement?documentElement.nodeName!=="HTML":false};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"")}selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet)}return Sizzle.filter(later,tmpSet)};return Sizzle})();
/*
 * SWFObject v2.1 <http://code.google.com/p/swfobject/>
 * Copyright (c) 2007-2008 Geoff Stearns, Michael Williams, and Bobby van der Sluis
 * This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
 *
 * Modified for inclusion in Shadowbox.js
 */
S.flash=(function(){var swfobject=function(){var UNDEF="undefined",OBJECT="object",SHOCKWAVE_FLASH="Shockwave Flash",SHOCKWAVE_FLASH_AX="ShockwaveFlash.ShockwaveFlash",FLASH_MIME_TYPE="application/x-shockwave-flash",EXPRESS_INSTALL_ID="SWFObjectExprInst",win=window,doc=document,nav=navigator,domLoadFnArr=[],regObjArr=[],objIdArr=[],listenersArr=[],script,timer=null,storedAltContent=null,storedAltContentId=null,isDomLoaded=false,isExpressInstallActive=false;var ua=function(){var w3cdom=typeof doc.getElementById!=UNDEF&&typeof doc.getElementsByTagName!=UNDEF&&typeof doc.createElement!=UNDEF,playerVersion=[0,0,0],d=null;if(typeof nav.plugins!=UNDEF&&typeof nav.plugins[SHOCKWAVE_FLASH]==OBJECT){d=nav.plugins[SHOCKWAVE_FLASH].description;if(d&&!(typeof nav.mimeTypes!=UNDEF&&nav.mimeTypes[FLASH_MIME_TYPE]&&!nav.mimeTypes[FLASH_MIME_TYPE].enabledPlugin)){d=d.replace(/^.*\s+(\S+\s+\S+$)/,"$1");playerVersion[0]=parseInt(d.replace(/^(.*)\..*$/,"$1"),10);playerVersion[1]=parseInt(d.replace(/^.*\.(.*)\s.*$/,"$1"),10);playerVersion[2]=/r/.test(d)?parseInt(d.replace(/^.*r(.*)$/,"$1"),10):0}}else{if(typeof win.ActiveXObject!=UNDEF){var a=null,fp6Crash=false;try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX+".7")}catch(e){try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX+".6");playerVersion=[6,0,21];a.AllowScriptAccess="always"}catch(e){if(playerVersion[0]==6){fp6Crash=true}}if(!fp6Crash){try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX)}catch(e){}}}if(!fp6Crash&&a){try{d=a.GetVariable("$version");if(d){d=d.split(" ")[1].split(",");playerVersion=[parseInt(d[0],10),parseInt(d[1],10),parseInt(d[2],10)]}}catch(e){}}}}var u=nav.userAgent.toLowerCase(),p=nav.platform.toLowerCase(),webkit=/webkit/.test(u)?parseFloat(u.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,ie=false,windows=p?/win/.test(p):/win/.test(u),mac=p?/mac/.test(p):/mac/.test(u);
/*@cc_on
			ie = true;
			@if (@_win32)
				windows = true;
			@elif (@_mac)
				mac = true;
			@end
		@*/
return{w3cdom:w3cdom,pv:playerVersion,webkit:webkit,ie:ie,win:windows,mac:mac}}();var onDomLoad=function(){if(!ua.w3cdom){return}addDomLoadEvent(main);if(ua.ie&&ua.win){try{doc.write("<script id=__ie_ondomload defer=true src=//:><\/script>");script=getElementById("__ie_ondomload");if(script){addListener(script,"onreadystatechange",checkReadyState)}}catch(e){}}if(ua.webkit&&typeof doc.readyState!=UNDEF){timer=setInterval(function(){if(/loaded|complete/.test(doc.readyState)){callDomLoadFunctions()}},10)}if(typeof doc.addEventListener!=UNDEF){doc.addEventListener("DOMContentLoaded",callDomLoadFunctions,null)}addLoadEvent(callDomLoadFunctions)}();function checkReadyState(){if(script.readyState=="complete"){script.parentNode.removeChild(script);callDomLoadFunctions()}}function callDomLoadFunctions(){if(isDomLoaded){return}if(ua.ie&&ua.win){var s=createElement("span");try{var t=doc.getElementsByTagName("body")[0].appendChild(s);t.parentNode.removeChild(t)}catch(e){return}}isDomLoaded=true;if(timer){clearInterval(timer);timer=null}var dl=domLoadFnArr.length;for(var i=0;i<dl;i++){domLoadFnArr[i]()}}function addDomLoadEvent(fn){if(isDomLoaded){fn()}else{domLoadFnArr[domLoadFnArr.length]=fn}}function addLoadEvent(fn){if(typeof win.addEventListener!=UNDEF){win.addEventListener("load",fn,false)}else{if(typeof doc.addEventListener!=UNDEF){doc.addEventListener("load",fn,false)}else{if(typeof win.attachEvent!=UNDEF){addListener(win,"onload",fn)}else{if(typeof win.onload=="function"){var fnOld=win.onload;win.onload=function(){fnOld();fn()}}else{win.onload=fn}}}}}function main(){var rl=regObjArr.length;for(var i=0;i<rl;i++){var id=regObjArr[i].id;if(ua.pv[0]>0){var obj=getElementById(id);if(obj){regObjArr[i].width=obj.getAttribute("width")?obj.getAttribute("width"):"0";regObjArr[i].height=obj.getAttribute("height")?obj.getAttribute("height"):"0";if(hasPlayerVersion(regObjArr[i].swfVersion)){if(ua.webkit&&ua.webkit<312){fixParams(obj)}setVisibility(id,true)}else{if(regObjArr[i].expressInstall&&!isExpressInstallActive&&hasPlayerVersion("6.0.65")&&(ua.win||ua.mac)){showExpressInstall(regObjArr[i])}else{displayAltContent(obj)}}}}else{setVisibility(id,true)}}}function fixParams(obj){var nestedObj=obj.getElementsByTagName(OBJECT)[0];if(nestedObj){var e=createElement("embed"),a=nestedObj.attributes;if(a){var al=a.length;for(var i=0;i<al;i++){if(a[i].nodeName=="DATA"){e.setAttribute("src",a[i].nodeValue)}else{e.setAttribute(a[i].nodeName,a[i].nodeValue)}}}var c=nestedObj.childNodes;if(c){var cl=c.length;for(var j=0;j<cl;j++){if(c[j].nodeType==1&&c[j].nodeName=="PARAM"){e.setAttribute(c[j].getAttribute("name"),c[j].getAttribute("value"))}}}obj.parentNode.replaceChild(e,obj)}}function showExpressInstall(regObj){isExpressInstallActive=true;var obj=getElementById(regObj.id);if(obj){if(regObj.altContentId){var ac=getElementById(regObj.altContentId);if(ac){storedAltContent=ac;storedAltContentId=regObj.altContentId}}else{storedAltContent=abstractAltContent(obj)}if(!(/%$/.test(regObj.width))&&parseInt(regObj.width,10)<310){regObj.width="310"}if(!(/%$/.test(regObj.height))&&parseInt(regObj.height,10)<137){regObj.height="137"}doc.title=doc.title.slice(0,47)+" - Flash Player Installation";var pt=ua.ie&&ua.win?"ActiveX":"PlugIn",dt=doc.title,fv="MMredirectURL="+win.location+"&MMplayerType="+pt+"&MMdoctitle="+dt,replaceId=regObj.id;if(ua.ie&&ua.win&&obj.readyState!=4){var newObj=createElement("div");replaceId+="SWFObjectNew";newObj.setAttribute("id",replaceId);obj.parentNode.insertBefore(newObj,obj);obj.style.display="none";var fn=function(){obj.parentNode.removeChild(obj)};addListener(win,"onload",fn)}createSWF({data:regObj.expressInstall,id:EXPRESS_INSTALL_ID,width:regObj.width,height:regObj.height},{flashvars:fv},replaceId)}}function displayAltContent(obj){if(ua.ie&&ua.win&&obj.readyState!=4){var el=createElement("div");obj.parentNode.insertBefore(el,obj);el.parentNode.replaceChild(abstractAltContent(obj),el);obj.style.display="none";var fn=function(){obj.parentNode.removeChild(obj)};addListener(win,"onload",fn)}else{obj.parentNode.replaceChild(abstractAltContent(obj),obj)}}function abstractAltContent(obj){var ac=createElement("div");if(ua.win&&ua.ie){ac.innerHTML=obj.innerHTML}else{var nestedObj=obj.getElementsByTagName(OBJECT)[0];if(nestedObj){var c=nestedObj.childNodes;if(c){var cl=c.length;for(var i=0;i<cl;i++){if(!(c[i].nodeType==1&&c[i].nodeName=="PARAM")&&!(c[i].nodeType==8)){ac.appendChild(c[i].cloneNode(true))}}}}}return ac}function createSWF(attObj,parObj,id){var r,el=getElementById(id);if(el){if(typeof attObj.id==UNDEF){attObj.id=id}if(ua.ie&&ua.win){var att="";for(var i in attObj){if(attObj[i]!=Object.prototype[i]){if(i.toLowerCase()=="data"){parObj.movie=attObj[i]}else{if(i.toLowerCase()=="styleclass"){att+=' class="'+attObj[i]+'"'}else{if(i.toLowerCase()!="classid"){att+=" "+i+'="'+attObj[i]+'"'}}}}}var par="";for(var j in parObj){if(parObj[j]!=Object.prototype[j]){par+='<param name="'+j+'" value="'+parObj[j]+'" />'}}el.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+att+">"+par+"</object>";objIdArr[objIdArr.length]=attObj.id;r=getElementById(attObj.id)}else{if(ua.webkit&&ua.webkit<312){var e=createElement("embed");e.setAttribute("type",FLASH_MIME_TYPE);for(var k in attObj){if(attObj[k]!=Object.prototype[k]){if(k.toLowerCase()=="data"){e.setAttribute("src",attObj[k])}else{if(k.toLowerCase()=="styleclass"){e.setAttribute("class",attObj[k])}else{if(k.toLowerCase()!="classid"){e.setAttribute(k,attObj[k])}}}}}for(var l in parObj){if(parObj[l]!=Object.prototype[l]){if(l.toLowerCase()!="movie"){e.setAttribute(l,parObj[l])}}}el.parentNode.replaceChild(e,el);r=e}else{var o=createElement(OBJECT);o.setAttribute("type",FLASH_MIME_TYPE);for(var m in attObj){if(attObj[m]!=Object.prototype[m]){if(m.toLowerCase()=="styleclass"){o.setAttribute("class",attObj[m])}else{if(m.toLowerCase()!="classid"){o.setAttribute(m,attObj[m])}}}}for(var n in parObj){if(parObj[n]!=Object.prototype[n]&&n.toLowerCase()!="movie"){createObjParam(o,n,parObj[n])}}el.parentNode.replaceChild(o,el);r=o}}}return r}function createObjParam(el,pName,pValue){var p=createElement("param");p.setAttribute("name",pName);p.setAttribute("value",pValue);el.appendChild(p)}function removeSWF(id){var obj=getElementById(id);if(obj&&(obj.nodeName=="OBJECT"||obj.nodeName=="EMBED")){if(ua.ie&&ua.win){if(obj.readyState==4){removeObjectInIE(id)}else{win.attachEvent("onload",function(){removeObjectInIE(id)})}}else{obj.parentNode.removeChild(obj)}}}function removeObjectInIE(id){var obj=getElementById(id);if(obj){for(var i in obj){if(typeof obj[i]=="function"){obj[i]=null}}obj.parentNode.removeChild(obj)}}function getElementById(id){var el=null;try{el=doc.getElementById(id)}catch(e){}return el}function createElement(el){return doc.createElement(el)}function addListener(target,eventType,fn){target.attachEvent(eventType,fn);listenersArr[listenersArr.length]=[target,eventType,fn]}function hasPlayerVersion(rv){var pv=ua.pv,v=rv.split(".");v[0]=parseInt(v[0],10);v[1]=parseInt(v[1],10)||0;v[2]=parseInt(v[2],10)||0;return(pv[0]>v[0]||(pv[0]==v[0]&&pv[1]>v[1])||(pv[0]==v[0]&&pv[1]==v[1]&&pv[2]>=v[2]))?true:false}function createCSS(sel,decl){if(ua.ie&&ua.mac){return}var h=doc.getElementsByTagName("head")[0],s=createElement("style");s.setAttribute("type","text/css");s.setAttribute("media","screen");if(!(ua.ie&&ua.win)&&typeof doc.createTextNode!=UNDEF){s.appendChild(doc.createTextNode(sel+" {"+decl+"}"))}h.appendChild(s);if(ua.ie&&ua.win&&typeof doc.styleSheets!=UNDEF&&doc.styleSheets.length>0){var ls=doc.styleSheets[doc.styleSheets.length-1];if(typeof ls.addRule==OBJECT){ls.addRule(sel,decl)}}}function setVisibility(id,isVisible){var v=isVisible?"visible":"hidden";if(isDomLoaded&&getElementById(id)){getElementById(id).style.visibility=v}else{createCSS("#"+id,"visibility:"+v)}}function urlEncodeIfNecessary(s){var regex=/[\\\"<>\.;]/;var hasBadChars=regex.exec(s)!=null;return hasBadChars?encodeURIComponent(s):s}var cleanup=function(){if(ua.ie&&ua.win){window.attachEvent("onunload",function(){var ll=listenersArr.length;for(var i=0;i<ll;i++){listenersArr[i][0].detachEvent(listenersArr[i][1],listenersArr[i][2])}var il=objIdArr.length;for(var j=0;j<il;j++){removeSWF(objIdArr[j])}for(var k in ua){ua[k]=null}ua=null;for(var l in swfobject){swfobject[l]=null}swfobject=null})}}();return{registerObject:function(objectIdStr,swfVersionStr,xiSwfUrlStr){if(!ua.w3cdom||!objectIdStr||!swfVersionStr){return}var regObj={};regObj.id=objectIdStr;regObj.swfVersion=swfVersionStr;regObj.expressInstall=xiSwfUrlStr?xiSwfUrlStr:false;regObjArr[regObjArr.length]=regObj;setVisibility(objectIdStr,false)},getObjectById:function(objectIdStr){var r=null;if(ua.w3cdom){var o=getElementById(objectIdStr);if(o){var n=o.getElementsByTagName(OBJECT)[0];if(!n||(n&&typeof o.SetVariable!=UNDEF)){r=o}else{if(typeof n.SetVariable!=UNDEF){r=n}}}}return r},embedSWF:function(swfUrlStr,replaceElemIdStr,widthStr,heightStr,swfVersionStr,xiSwfUrlStr,flashvarsObj,parObj,attObj){if(!ua.w3cdom||!swfUrlStr||!replaceElemIdStr||!widthStr||!heightStr||!swfVersionStr){return}widthStr+="";heightStr+="";if(hasPlayerVersion(swfVersionStr)){setVisibility(replaceElemIdStr,false);var att={};if(attObj&&typeof attObj===OBJECT){for(var i in attObj){if(attObj[i]!=Object.prototype[i]){att[i]=attObj[i]}}}att.data=swfUrlStr;att.width=widthStr;att.height=heightStr;var par={};if(parObj&&typeof parObj===OBJECT){for(var j in parObj){if(parObj[j]!=Object.prototype[j]){par[j]=parObj[j]}}}if(flashvarsObj&&typeof flashvarsObj===OBJECT){for(var k in flashvarsObj){if(flashvarsObj[k]!=Object.prototype[k]){if(typeof par.flashvars!=UNDEF){par.flashvars+="&"+k+"="+flashvarsObj[k]}else{par.flashvars=k+"="+flashvarsObj[k]}}}}addDomLoadEvent(function(){createSWF(att,par,replaceElemIdStr);if(att.id==replaceElemIdStr){setVisibility(replaceElemIdStr,true)}})}else{if(xiSwfUrlStr&&!isExpressInstallActive&&hasPlayerVersion("6.0.65")&&(ua.win||ua.mac)){isExpressInstallActive=true;setVisibility(replaceElemIdStr,false);addDomLoadEvent(function(){var regObj={};regObj.id=regObj.altContentId=replaceElemIdStr;regObj.width=widthStr;regObj.height=heightStr;regObj.expressInstall=xiSwfUrlStr;showExpressInstall(regObj)})}}},getFlashPlayerVersion:function(){return{major:ua.pv[0],minor:ua.pv[1],release:ua.pv[2]}},hasFlashPlayerVersion:hasPlayerVersion,createSWF:function(attObj,parObj,replaceElemIdStr){if(ua.w3cdom){return createSWF(attObj,parObj,replaceElemIdStr)}else{return undefined}},removeSWF:function(objElemIdStr){if(ua.w3cdom){removeSWF(objElemIdStr)}},createCSS:function(sel,decl){if(ua.w3cdom){createCSS(sel,decl)}},addDomLoadEvent:addDomLoadEvent,addLoadEvent:addLoadEvent,getQueryParamValue:function(param){var q=doc.location.search||doc.location.hash;if(param==null){return urlEncodeIfNecessary(q)}if(q){var pairs=q.substring(1).split("&");for(var i=0;i<pairs.length;i++){if(pairs[i].substring(0,pairs[i].indexOf("="))==param){return urlEncodeIfNecessary(pairs[i].substring((pairs[i].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(isExpressInstallActive&&storedAltContent){var obj=getElementById(EXPRESS_INSTALL_ID);if(obj){obj.parentNode.replaceChild(storedAltContent,obj);if(storedAltContentId){setVisibility(storedAltContentId,true);if(ua.ie&&ua.win){storedAltContent.style.display="block"}}storedAltContent=null;storedAltContentId=null;isExpressInstallActive=false}}}}}();return swfobject})();S.lang={code:"en",of:"of",loading:"loading",cancel:"Cancel",next:"Next",previous:"Previous",play:"Play",pause:"Pause",close:"Close",errors:{single:'You must install the <a href="{0}">{1}</a> browser plugin to view this content.',shared:'You must install both the <a href="{0}">{1}</a> and <a href="{2}">{3}</a> browser plugins to view this content.',either:'You must install either the <a href="{0}">{1}</a> or the <a href="{2}">{3}</a> browser plugin to view this content.'}};var pre,proxyId="sb-drag-proxy",dragData,dragProxy,dragTarget;function resetDrag(){dragData={x:0,y:0,startX:null,startY:null}}function updateProxy(){var dims=S.dimensions;apply(dragProxy.style,{height:dims.innerHeight+"px",width:dims.innerWidth+"px"})}function enableDrag(){resetDrag();var style=["position:absolute","cursor:"+(S.isGecko?"-moz-grab":"move"),"background-color:"+(S.isIE?"#fff;filter:alpha(opacity=0)":"transparent")].join(";");S.appendHTML(S.skin.body,'<div id="'+proxyId+'" style="'+style+'"></div>');dragProxy=get(proxyId);updateProxy();addEvent(dragProxy,"mousedown",startDrag)}function disableDrag(){if(dragProxy){removeEvent(dragProxy,"mousedown",startDrag);remove(dragProxy);dragProxy=null}dragTarget=null}function startDrag(e){preventDefault(e);var xy=getPageXY(e);dragData.startX=xy[0];dragData.startY=xy[1];dragTarget=get(S.player.id);addEvent(document,"mousemove",positionDrag);addEvent(document,"mouseup",endDrag);if(S.isGecko){dragProxy.style.cursor="-moz-grabbing"}}function positionDrag(e){var player=S.player,dims=S.dimensions,xy=getPageXY(e);var moveX=xy[0]-dragData.startX;dragData.startX+=moveX;dragData.x=Math.max(Math.min(0,dragData.x+moveX),dims.innerWidth-player.width);var moveY=xy[1]-dragData.startY;dragData.startY+=moveY;dragData.y=Math.max(Math.min(0,dragData.y+moveY),dims.innerHeight-player.height);apply(dragTarget.style,{left:dragData.x+"px",top:dragData.y+"px"})}function endDrag(){removeEvent(document,"mousemove",positionDrag);removeEvent(document,"mouseup",endDrag);if(S.isGecko){dragProxy.style.cursor="-moz-grab"}}S.img=function(obj,id){this.obj=obj;this.id=id;this.ready=false;var self=this;pre=new Image();pre.onload=function(){self.height=obj.height?parseInt(obj.height,10):pre.height;self.width=obj.width?parseInt(obj.width,10):pre.width;self.ready=true;pre.onload=null;pre=null};pre.src=obj.content};S.img.ext=["bmp","gif","jpg","jpeg","png","ashx"];S.img.prototype={append:function(body,dims){var img=document.createElement("img");img.id=this.id;img.src=this.obj.content;img.style.position="absolute";var height,width;if(dims.oversized&&S.options.handleOversize=="resize"){height=dims.innerHeight;width=dims.innerWidth}else{height=this.height;width=this.width}img.setAttribute("height",height);img.setAttribute("width",width);body.appendChild(img)},remove:function(){var el=get(this.id);if(el){remove(el)}disableDrag();if(pre){pre.onload=null;pre=null}},onLoad:function(){var dims=S.dimensions;if(dims.oversized&&S.options.handleOversize=="drag"){enableDrag()}},onWindowResize:function(){var dims=S.dimensions;switch(S.options.handleOversize){case"resize":var el=get(this.id);el.height=dims.innerHeight;el.width=dims.innerWidth;break;case"drag":if(dragTarget){var top=parseInt(S.getStyle(dragTarget,"top")),left=parseInt(S.getStyle(dragTarget,"left"));if(top+this.height<dims.innerHeight){dragTarget.style.top=dims.innerHeight-this.height+"px"}if(left+this.width<dims.innerWidth){dragTarget.style.left=dims.innerWidth-this.width+"px"}updateProxy()}break}}};S.iframe=function(obj,id){this.obj=obj;this.id=id;var overlay=get("sb-overlay");this.height=obj.height?parseInt(obj.height,10):overlay.offsetHeight;this.width=obj.width?parseInt(obj.width,10):overlay.offsetWidth};S.iframe.prototype={append:function(body,dims){var html='<iframe id="'+this.id+'" name="'+this.id+'" height="100%" width="100%" frameborder="0" marginwidth="0" marginheight="0" style="visibility:hidden" onload="this.style.visibility=\'visible\'" scrolling="auto"';if(S.isIE){html+=' allowtransparency="true"';if(S.isIE6){html+=" src=\"javascript:false;document.write('');\""}}html+="></iframe>";body.innerHTML=html},remove:function(){var el=get(this.id);if(el){remove(el);if(S.isGecko){delete window.frames[this.id]}}},onLoad:function(){var win=S.isIE?get(this.id).contentWindow:window.frames[this.id];win.location.href=this.obj.content}};S.html=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;this.width=obj.width?parseInt(obj.width,10):500};S.html.prototype={append:function(body,dims){var div=document.createElement("div");div.id=this.id;div.className="html";div.innerHTML=this.obj.content;body.appendChild(div)},remove:function(){var el=get(this.id);if(el){remove(el)}}};S.swf=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;this.width=obj.width?parseInt(obj.width,10):300};S.swf.ext=["swf"];S.swf.prototype={append:function(body,dims){var tmp=document.createElement("div");tmp.id=this.id;body.appendChild(tmp);var height=dims.innerHeight,width=dims.innerWidth,swf=this.obj.content,version=S.options.flashVersion,express=S.path+"expressInstall.swf",flashvars=S.options.flashVars,params=S.options.flashParams;S.flash.embedSWF(swf,this.id,width,height,version,express,flashvars,params)},remove:function(){S.flash.expressInstallCallback();S.flash.removeSWF(this.id)},onWindowResize:function(){var dims=S.dimensions,el=get(this.id);el.height=dims.innerHeight;el.width=dims.innerWidth}};var jwControllerHeight=20;S.flv=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;if(S.options.showMovieControls){this.height+=jwControllerHeight}this.width=obj.width?parseInt(obj.width,10):300};S.flv.ext=["flv","m4v"];S.flv.prototype={append:function(body,dims){var tmp=document.createElement("div");tmp.id=this.id;body.appendChild(tmp);var height=dims.innerHeight,width=dims.innerWidth,swf=S.path+"player.swf",version=S.options.flashVersion,express=S.path+"expressInstall.swf",flashvars=apply({file:this.obj.content,height:height,width:width,autostart:(S.options.autoplayMovies?"true":"false"),controlbar:(S.options.showMovieControls?"bottom":"none"),backcolor:"0x000000",frontcolor:"0xCCCCCC",lightcolor:"0x557722"},S.options.flashVars),params=S.options.flashParams;S.flash.embedSWF(swf,this.id,width,height,version,express,flashvars,params)},remove:function(){S.flash.expressInstallCallback();S.flash.removeSWF(this.id)},onWindowResize:function(){var dims=S.dimensions,el=get(this.id);el.height=dims.innerHeight;el.width=dims.innerWidth}};var qtControllerHeight=16;S.qt=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;if(S.options.showMovieControls){this.height+=qtControllerHeight}this.width=obj.width?parseInt(obj.width,10):300};S.qt.ext=["dv","mov","moov","movie","mp4","avi","mpg","mpeg"];S.qt.prototype={append:function(body,dims){var opt=S.options,autoplay=String(opt.autoplayMovies),controls=String(opt.showMovieControls);var html="<object",movie={id:this.id,name:this.id,height:this.height,width:this.width,kioskmode:"true"};if(S.isIE){movie.classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B";movie.codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0"}else{movie.type="video/quicktime";movie.data=this.obj.content}for(var m in movie){html+=" "+m+'="'+movie[m]+'"'}html+=">";var params={src:this.obj.content,scale:"aspect",controller:controls,autoplay:autoplay};for(var p in params){html+='<param name="'+p+'" value="'+params[p]+'">'}html+="</object>";body.innerHTML=html},remove:function(){try{document[this.id].Stop()}catch(e){}var el=get(this.id);if(el){remove(el)}}};var wmpControllerHeight=(S.isIE?70:45);S.wmp=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;if(S.options.showMovieControls){this.height+=wmpControllerHeight}this.width=obj.width?parseInt(obj.width,10):300};S.wmp.ext=["asf","avi","mpg","mpeg","wm","wmv"];S.wmp.prototype={append:function(body,dims){var opt=S.options,autoplay=opt.autoplayMovies?1:0;var movie='<object id="'+this.id+'" name="'+this.id+'" height="'+this.height+'" width="'+this.width+'"',params={autostart:opt.autoplayMovies?1:0};if(S.isIE){movie+=' classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6"';params.url=this.obj.content;params.uimode=opt.showMovieControls?"full":"none"}else{movie+=' type="video/x-ms-wmv"';movie+=' data="'+this.obj.content+'"';params.showcontrols=opt.showMovieControls?1:0}movie+=">";for(var p in params){movie+='<param name="'+p+'" value="'+params[p]+'">'}movie+="</object>";body.innerHTML=movie},remove:function(){if(S.isIE){try{window[this.id].controls.stop();window[this.id].URL="movie"+now()+".wmv";window[this.id]=function(){}}catch(e){}}var el=get(this.id);if(el){setTimeout(function(){remove(el)},10)}}};var overlayOn=false,visibilityCache=[],pngIds=["sb-nav-close","sb-nav-next","sb-nav-play","sb-nav-pause","sb-nav-previous"],container,overlay,wrapper,doWindowResize=true;function animate(el,property,to,duration,callback){var isOpacity=(property=="opacity"),anim=isOpacity?S.setOpacity:function(el,value){el.style[property]=""+value+"px"};if(duration==0||(!isOpacity&&!S.options.animate)||(isOpacity&&!S.options.animateFade)){anim(el,to);if(callback){callback()}return}var from=parseFloat(S.getStyle(el,property))||0;var delta=to-from;if(delta==0){if(callback){callback()}return}duration*=1000;var begin=now(),ease=S.ease,end=begin+duration,time;var interval=setInterval(function(){time=now();if(time>=end){clearInterval(interval);interval=null;anim(el,to);if(callback){callback()}}else{anim(el,from+ease((time-begin)/duration)*delta)}},10)}function setSize(){container.style.height=S.getWindowSize("Height")+"px";container.style.width=S.getWindowSize("Width")+"px"}function setPosition(){container.style.top=document.documentElement.scrollTop+"px";container.style.left=document.documentElement.scrollLeft+"px"}function toggleTroubleElements(on){if(on){each(visibilityCache,function(i,el){el[0].style.visibility=el[1]||""})}else{visibilityCache=[];each(S.options.troubleElements,function(i,tag){each(document.getElementsByTagName(tag),function(j,el){visibilityCache.push([el,el.style.visibility]);el.style.visibility="hidden"})})}}function toggleNav(id,on){var el=get("sb-nav-"+id);if(el){el.style.display=on?"":"none"}}function toggleLoading(on,callback){var loading=get("sb-loading"),playerName=S.getCurrent().player,anim=(playerName=="img"||playerName=="html");if(on){S.setOpacity(loading,0);loading.style.display="block";var wrapped=function(){S.clearOpacity(loading);if(callback){callback()}};if(anim){animate(loading,"opacity",1,S.options.fadeDuration,wrapped)}else{wrapped()}}else{var wrapped=function(){loading.style.display="none";S.clearOpacity(loading);if(callback){callback()}};if(anim){animate(loading,"opacity",0,S.options.fadeDuration,wrapped)}else{wrapped()}}}function buildBars(callback){var obj=S.getCurrent();get("sb-title-inner").innerHTML=obj.title||"";var close,next,play,pause,previous;if(S.options.displayNav){close=true;var len=S.gallery.length;if(len>1){if(S.options.continuous){next=previous=true}else{next=(len-1)>S.current;previous=S.current>0}}if(S.options.slideshowDelay>0&&S.hasNext()){pause=!S.isPaused();play=!pause}}else{close=next=play=pause=previous=false}toggleNav("close",close);toggleNav("next",next);toggleNav("play",play);toggleNav("pause",pause);toggleNav("previous",previous);var counter="";if(S.options.displayCounter&&S.gallery.length>1){var len=S.gallery.length;if(S.options.counterType=="skip"){var i=0,end=len,limit=parseInt(S.options.counterLimit)||0;if(limit<len&&limit>2){var h=Math.floor(limit/2);i=S.current-h;if(i<0){i+=len}end=S.current+(limit-h);if(end>len){end-=len}}while(i!=end){if(i==len){i=0}counter+='<a onclick="Shadowbox.change('+i+');"';if(i==S.current){counter+=' class="sb-counter-current"'}counter+=">"+(++i)+"</a>"}}else{counter=[S.current+1,S.lang.of,len].join(" ")}}get("sb-counter").innerHTML=counter;callback()}function showBars(callback){var titleInner=get("sb-title-inner"),infoInner=get("sb-info-inner"),duration=0.35;titleInner.style.visibility=infoInner.style.visibility="";if(titleInner.innerHTML!=""){animate(titleInner,"marginTop",0,duration)}animate(infoInner,"marginTop",0,duration,callback)}function hideBars(anim,callback){var title=get("sb-title"),info=get("sb-info"),titleHeight=title.offsetHeight,infoHeight=info.offsetHeight,titleInner=get("sb-title-inner"),infoInner=get("sb-info-inner"),duration=(anim?0.35:0);animate(titleInner,"marginTop",titleHeight,duration);animate(infoInner,"marginTop",infoHeight*-1,duration,function(){titleInner.style.visibility=infoInner.style.visibility="hidden";callback()})}function adjustHeight(height,top,anim,callback){var wrapperInner=get("sb-wrapper-inner"),duration=(anim?S.options.resizeDuration:0);animate(wrapper,"top",top,duration);animate(wrapperInner,"height",height,duration,callback)}function adjustWidth(width,left,anim,callback){var duration=(anim?S.options.resizeDuration:0);animate(wrapper,"left",left,duration);animate(wrapper,"width",width,duration,callback)}function setDimensions(height,width){var bodyInner=get("sb-body-inner"),height=parseInt(height),width=parseInt(width),topBottom=wrapper.offsetHeight-bodyInner.offsetHeight,leftRight=wrapper.offsetWidth-bodyInner.offsetWidth,maxHeight=overlay.offsetHeight,maxWidth=overlay.offsetWidth,padding=parseInt(S.options.viewportPadding)||20,preserveAspect=(S.player&&S.options.handleOversize!="drag");return S.setDimensions(height,width,maxHeight,maxWidth,topBottom,leftRight,padding,preserveAspect)}var K={};K.markup='<div id="sb-container"><div id="sb-overlay"></div><div id="sb-wrapper"><div id="sb-title"><div id="sb-title-inner"></div></div><div id="sb-wrapper-inner"><div id="sb-body"><div id="sb-body-inner"></div><div id="sb-loading"><div id="sb-loading-inner"><span>{loading}</span></div></div></div></div><div id="sb-info"><div id="sb-info-inner"><div id="sb-counter"></div><div id="sb-nav"><a id="sb-nav-close" title="{close}" onclick="Shadowbox.close()"></a><a id="sb-nav-next" title="{next}" onclick="Shadowbox.next()"></a><a id="sb-nav-play" title="{play}" onclick="Shadowbox.play()"></a><a id="sb-nav-pause" title="{pause}" onclick="Shadowbox.pause()"></a><a id="sb-nav-previous" title="{previous}" onclick="Shadowbox.previous()"></a></div></div></div></div></div>';K.options={animSequence:"sync",counterLimit:10,counterType:"default",displayCounter:true,displayNav:true,fadeDuration:0.35,initialHeight:160,initialWidth:320,modal:false,overlayColor:"#000",overlayOpacity:0.5,resizeDuration:0.35,showOverlay:true,troubleElements:["select","object","embed","canvas"]};K.init=function(){S.appendHTML(document.body,sprintf(K.markup,S.lang));K.body=get("sb-body-inner");container=get("sb-container");overlay=get("sb-overlay");wrapper=get("sb-wrapper");if(!supportsFixed){container.style.position="absolute"}if(!supportsOpacity){var el,m,re=/url\("(.*\.png)"\)/;each(pngIds,function(i,id){el=get(id);if(el){m=S.getStyle(el,"backgroundImage").match(re);if(m){el.style.backgroundImage="none";el.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,src="+m[1]+",sizingMethod=scale);"}}})}var timer;addEvent(window,"resize",function(){if(timer){clearTimeout(timer);timer=null}if(open){timer=setTimeout(K.onWindowResize,10)}})};K.onOpen=function(obj,callback){doWindowResize=false;container.style.display="block";setSize();var dims=setDimensions(S.options.initialHeight,S.options.initialWidth);adjustHeight(dims.innerHeight,dims.top);adjustWidth(dims.width,dims.left);if(S.options.showOverlay){overlay.style.backgroundColor=S.options.overlayColor;S.setOpacity(overlay,0);if(!S.options.modal){addEvent(overlay,"click",S.close)}overlayOn=true}if(!supportsFixed){setPosition();addEvent(window,"scroll",setPosition)}toggleTroubleElements();container.style.visibility="visible";if(overlayOn){animate(overlay,"opacity",S.options.overlayOpacity,S.options.fadeDuration,callback)}else{callback()}};K.onLoad=function(changing,callback){toggleLoading(true);while(K.body.firstChild){remove(K.body.firstChild)}hideBars(changing,function(){if(!open){return}if(!changing){wrapper.style.visibility="visible"}buildBars(callback)})};K.onReady=function(callback){if(!open){return}var player=S.player,dims=setDimensions(player.height,player.width);var wrapped=function(){showBars(callback)};switch(S.options.animSequence){case"hw":adjustHeight(dims.innerHeight,dims.top,true,function(){adjustWidth(dims.width,dims.left,true,wrapped)});break;case"wh":adjustWidth(dims.width,dims.left,true,function(){adjustHeight(dims.innerHeight,dims.top,true,wrapped)});break;default:adjustWidth(dims.width,dims.left,true);adjustHeight(dims.innerHeight,dims.top,true,wrapped)}};K.onShow=function(callback){toggleLoading(false,callback);doWindowResize=true};K.onClose=function(){if(!supportsFixed){removeEvent(window,"scroll",setPosition)}removeEvent(overlay,"click",S.close);wrapper.style.visibility="hidden";var callback=function(){container.style.visibility="hidden";container.style.display="none";toggleTroubleElements(true)};if(overlayOn){animate(overlay,"opacity",0,S.options.fadeDuration,callback)}else{callback()}};K.onPlay=function(){toggleNav("play",false);toggleNav("pause",true)};K.onPause=function(){toggleNav("pause",false);toggleNav("play",true)};K.onWindowResize=function(){if(!doWindowResize){return}setSize();var player=S.player,dims=setDimensions(player.height,player.width);adjustWidth(dims.width,dims.left);adjustHeight(dims.innerHeight,dims.top);if(player.onWindowResize){player.onWindowResize()}};S.skin=K;window.Shadowbox=S})(window);;


/* Comment Generated by Combres - Resource '~/js/ResourceHandler.ashx?file=jquery.print.js&cache=false' (Mode: Dynamic) */
/*
	
	Blog Entry:
	Ask Ben: Print Part Of A Web Page With jQuery
	
	Code Snippet:
	2
	
	Author:
	Ben Nadel / Kinky Solutions
	
	Link:
	http://www.bennadel.com/index.cfm?event=blog.view&id=1591
	
	Date Posted:
	May 21, 2009 at 9:10 PM
	
*/


// Create a jquery plugin that prints the given element.
jQuery.fn.print = function(){
	// NOTE: We are trimming the jQuery collection down to the
	// first element in the collection.
	if (this.size() > 1){
		this.eq( 0 ).print();
		return;
	} else if (!this.size()){
		return;
	}
 
	// ASSERT: At this point, we know that the current jQuery
	// collection (as defined by THIS), contains only one
	// printable element.
 
	// Create a random name for the print frame.
	var strFrameName = ("printer-" + (new Date()).getTime());
 
	// Create an iFrame with the new name.
	var jFrame = $( "<iframe name='" + strFrameName + "'>" );
 
	// Hide the frame (sort of) and attach to the body.
	jFrame
		.css( "width", "1px" )
		.css( "height", "1px" )
		.css( "position", "absolute" )
		.css( "left", "-9999px" )
		.appendTo( $( "body:first" ) )
	;
 
	// Get a FRAMES reference to the new frame.
	var objFrame = window.frames[ strFrameName ];
 
	// Get a reference to the DOM in the new frame.
	var objDoc = objFrame.document;
 
	// Grab all the style tags and copy to the new
	// document so that we capture look and feel of
	// the current document.
 
	// Create a temp document DIV to hold the style tags.
	// This is the only way I could find to get the style
	// tags into IE.
	var jStyleDiv = $( "<div>" ).append(
		$( "style" ).clone()
		);
 
	// Write the HTML for the document. In this, we will
	// write out the HTML of the current element.
	objDoc.open();
	objDoc.write( "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">" );
	objDoc.write( "<html>" );
	objDoc.write( "<body>" );
	objDoc.write( "<head>" );
	objDoc.write( "<title>" );
	objDoc.write( document.title );
	objDoc.write( "</title>" );
	objDoc.write( jStyleDiv.html() );
	objDoc.write( "</head>" );
	objDoc.write( this.html() );
	objDoc.write( "</body>" );
	objDoc.write( "</html>" );
	objDoc.close();
 
	// Print the document.
	objFrame.focus();
	objFrame.print();
 
	// Have the frame remove itself in about a minute so that
	// we don't build up too many of these frames.
	setTimeout(
		function(){
			jFrame.remove();
		},
		(60 * 1000)
		);
};


/* Comment Generated by Combres - Resource '~/js/ResourceHandler.ashx?file=jquery.selectboxes.pack.js&cache=false' (Mode: Dynamic) */
/*
 *
 * Copyright (c) 2006-2009 Sam Collett (http://www.texotela.co.uk)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * Version 2.2.4
 * Demo: http://www.texotela.co.uk/code/jquery/select/
 *
 * $LastChangedDate: 2009-02-08 00:28:12 +0000 (Sun, 08 Feb 2009) $
 * $Rev: 6185 $
 *
 */
eval(function(p,a,c,k,e,r){e=function(c){return(c<62?'':e(parseInt(c/62)))+((c=c%62)>35?String.fromCharCode(c+29):c.toString(36))};if('0'.replace(0,e)==0){while(c--)r[e(c)]=k[c];k=[function(e){return r[e]||e}];e=function(){return'[3-9q-suw-zA-Y]'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}(';(6(h){h.w.L=6(){5 j=6(a,f,c,g){5 d=document.createElement("S");d.r=f,d.G=c;5 b=a.C;5 e=b.s;3(!a.z){a.z={};y(5 i=0;i<e;i++){a.z[b[i].r]=i}}3(9 a.z[f]=="T")a.z[f]=e;a.C[a.z[f]]=d;3(g){d.u=8}};5 k=U;3(k.s==0)7 4;5 l=8;5 m=A;5 n,o,p;3(9(k[0])=="D"){m=8;n=k[0]}3(k.s>=2){3(9(k[1])=="M")l=k[1];q 3(9(k[2])=="M")l=k[2];3(!m){o=k[0];p=k[1]}}4.x(6(){3(4.E.B()!="F")7;3(m){y(5 a in n){j(4,a,n[a],l)}}q{j(4,o,p,l)}});7 4};h.w.ajaxAddOption=6(c,g,d,b,e){3(9(c)!="I")7 4;3(9(g)!="D")g={};3(9(d)!="M")d=8;4.x(6(){5 f=4;h.getJSON(c,g,6(a){h(f).L(a,d);3(9 b=="6"){3(9 e=="D"){b.apply(f,e)}q{b.N(f)}}})});7 4};h.w.V=6(){5 d=U;3(d.s==0)7 4;5 b=9(d[0]);5 e,i;3(b=="I"||b=="D"||b=="6"){e=d[0];3(e.H==W){5 j=e.s;y(5 k=0;k<j;k++){4.V(e[k],d[1])}7 4}}q 3(b=="number")i=d[0];q 7 4;4.x(6(){3(4.E.B()!="F")7;3(4.z)4.z=X;5 a=A;5 f=4.C;3(!!e){5 c=f.s;y(5 g=c-1;g>=0;g--){3(e.H==O){3(f[g].r.P(e)){a=8}}q 3(f[g].r==e){a=8}3(a&&d[1]===8)a=f[g].u;3(a){f[g]=X}a=A}}q{3(d[1]===8){a=f[i].u}q{a=8}3(a){4.remove(i)}}});7 4};h.w.sortOptions=6(e){5 i=h(4).Y();5 j=9(e)=="T"?8:!!e;4.x(6(){3(4.E.B()!="F")7;5 c=4.C;5 g=c.s;5 d=[];y(5 b=0;b<g;b++){d[b]={v:c[b].r,t:c[b].G}}d.sort(6(a,f){J=a.t.B(),K=f.t.B();3(J==K)7 0;3(j){7 J<K?-1:1}q{7 J>K?-1:1}});y(5 b=0;b<g;b++){c[b].G=d[b].t;c[b].r=d[b].v}}).Q(i,8);7 4};h.w.Q=6(g,d){5 b=g;5 e=9(g);3(e=="D"&&b.H==W){5 i=4;h.x(b,6(){i.Q(4,d)})};5 j=d||A;3(e!="I"&&e!="6"&&e!="D")7 4;4.x(6(){3(4.E.B()!="F")7 4;5 a=4.C;5 f=a.s;y(5 c=0;c<f;c++){3(b.H==O){3(a[c].r.P(b)){a[c].u=8}q 3(j){a[c].u=A}}q{3(a[c].r==b){a[c].u=8}q 3(j){a[c].u=A}}}});7 4};h.w.copyOptions=6(g,d){5 b=d||"u";3(h(g).size()==0)7 4;4.x(6(){3(4.E.B()!="F")7 4;5 a=4.C;5 f=a.s;y(5 c=0;c<f;c++){3(b=="all"||(b=="u"&&a[c].u)){h(g).L(a[c].r,a[c].G)}}});7 4};h.w.containsOption=6(g,d){5 b=A;5 e=g;5 i=9(e);5 j=9(d);3(i!="I"&&i!="6"&&i!="D")7 j=="6"?4:b;4.x(6(){3(4.E.B()!="F")7 4;3(b&&j!="6")7 A;5 a=4.C;5 f=a.s;y(5 c=0;c<f;c++){3(e.H==O){3(a[c].r.P(e)){b=8;3(j=="6")d.N(a[c],c)}}q{3(a[c].r==e){b=8;3(j=="6")d.N(a[c],c)}}}});7 j=="6"?4:b};h.w.Y=6(){5 a=[];4.R().x(6(){a[a.s]=4.r});7 a};h.w.selectedTexts=6(){5 a=[];4.R().x(6(){a[a.s]=4.G});7 a};h.w.R=6(){7 4.find("S:u")}})(jQuery);',[],61,'|||if|this|var|function|return|true|typeof|||||||||||||||||else|value|length||selected||fn|each|for|cache|false|toLowerCase|options|object|nodeName|select|text|constructor|string|o1t|o2t|addOption|boolean|call|RegExp|match|selectOptions|selectedOptions|option|undefined|arguments|removeOption|Array|null|selectedValues'.split('|'),0,{}));


/* Comment Generated by Combres - Resource '~/js/ResourceHandler.ashx?file=jquery.datePicker.js&cache=false' (Mode: Dynamic) */
/**
 * Copyright (c) 2008 Kelvin Luck (http://www.kelvinluck.com/)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) 
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 * .
 * $Id: jquery.datePicker.js 102 2010-09-13 14:00:54Z kelvin.luck $
 **/

(function($){
    
	$.fn.extend({
/**
 * Render a calendar table into any matched elements.
 * 
 * @param Object s (optional) Customize your calendars.
 * @option Number month The month to render (NOTE that months are zero based). Default is today's month.
 * @option Number year The year to render. Default is today's year.
 * @option Function renderCallback A reference to a function that is called as each cell is rendered and which can add classes and event listeners to the created nodes. Default is no callback.
 * @option Number showHeader Whether or not to show the header row, possible values are: $.dpConst.SHOW_HEADER_NONE (no header), $.dpConst.SHOW_HEADER_SHORT (first letter of each day) and $.dpConst.SHOW_HEADER_LONG (full name of each day). Default is $.dpConst.SHOW_HEADER_SHORT.
 * @option String hoverClass The class to attach to each cell when you hover over it (to allow you to use hover effects in IE6 which doesn't support the :hover pseudo-class on elements other than links). Default is dp-hover. Pass false if you don't want a hover class.
 * @type jQuery
 * @name renderCalendar
 * @cat plugins/datePicker
 * @author Kelvin Luck (http://www.kelvinluck.com/)
 *
 * @example $('#calendar-me').renderCalendar({month:0, year:2007});
 * @desc Renders a calendar displaying January 2007 into the element with an id of calendar-me.
 *
 * @example
 * var testCallback = function($td, thisDate, month, year)
 * {
 * if ($td.is('.current-month') && thisDate.getDay() == 4) {
 *		var d = thisDate.getDate();
 *		$td.bind(
 *			'click',
 *			function()
 *			{
 *				alert('You clicked on ' + d + '/' + (Number(month)+1) + '/' + year);
 *			}
 *		).addClass('thursday');
 *	} else if (thisDate.getDay() == 5) {
 *		$td.html('Friday the ' + $td.html() + 'th');
 *	}
 * }
 * $('#calendar-me').renderCalendar({month:0, year:2007, renderCallback:testCallback});
 * 
 * @desc Renders a calendar displaying January 2007 into the element with an id of calendar-me. Every Thursday in the current month has a class of "thursday" applied to it, is clickable and shows an alert when clicked. Every Friday on the calendar has the number inside replaced with text.
 **/
		renderCalendar  :   function(s)
		{
			var dc = function(a)
			{
				return document.createElement(a);
			};

			s = $.extend({}, $.fn.datePicker.defaults, s);
			
			if (s.showHeader != $.dpConst.SHOW_HEADER_NONE) {
				var headRow = $(dc('tr'));
				for (var i=Date.firstDayOfWeek; i<Date.firstDayOfWeek+7; i++) {
					var weekday = i%7;
					var day = Date.dayNames[weekday];
					headRow.append(
						jQuery(dc('th')).attr({'scope':'col', 'abbr':day, 'title':day, 'class':(weekday == 0 || weekday == 6 ? 'weekend' : 'weekday')}).html(s.showHeader == $.dpConst.SHOW_HEADER_SHORT ? day.substr(0, 1) : day)
					);
				}
			};
			
			var calendarTable = $(dc('table'))
									.attr(
										{
											'cellspacing':2
										}
									)
									.addClass('jCalendar')
									.append(
										(s.showHeader != $.dpConst.SHOW_HEADER_NONE ? 
											$(dc('thead'))
												.append(headRow)
											:
											dc('thead')
										)
									);
			var tbody = $(dc('tbody'));
			
			var today = (new Date()).zeroTime();
			today.setHours(12);
			
			var month = s.month == undefined ? today.getMonth() : s.month;
			var year = s.year || today.getFullYear();
			
			var currentDate = (new Date(year, month, 1, 12, 0, 0));
			
			
			var firstDayOffset = Date.firstDayOfWeek - currentDate.getDay() + 1;
			if (firstDayOffset > 1) firstDayOffset -= 7;
			var weeksToDraw = Math.ceil(( (-1*firstDayOffset+1) + currentDate.getDaysInMonth() ) /7);
			currentDate.addDays(firstDayOffset-1);
			
			var doHover = function(firstDayInBounds)
			{
				return function()
				{
					if (s.hoverClass) {
						var $this = $(this);
						if (!s.selectWeek) {
							$this.addClass(s.hoverClass);
						} else if (firstDayInBounds && !$this.is('.disabled')) {
							$this.parent().addClass('activeWeekHover');
						}
					}
				}
			};
			var unHover = function()
			{
				if (s.hoverClass) {
					var $this = $(this);
					$this.removeClass(s.hoverClass);
					$this.parent().removeClass('activeWeekHover');
				}
			};

			var w = 0;
			while (w++<weeksToDraw) {
				var r = jQuery(dc('tr'));
				var firstDayInBounds = s.dpController ? currentDate > s.dpController.startDate : false;
				for (var i=0; i<7; i++) {
					var thisMonth = currentDate.getMonth() == month;
					var d = $(dc('td'))
								.text(currentDate.getDate() + '')
								.addClass((thisMonth ? 'current-month ' : 'other-month ') +
													(currentDate.isWeekend() ? 'weekend ' : 'weekday ') +
													(thisMonth && currentDate.getTime() == today.getTime() ? 'today ' : '')
								)
								.data('datePickerDate', currentDate.asString())
								.hover(doHover(firstDayInBounds), unHover)
							;
					r.append(d);
					if (s.renderCallback) {
						s.renderCallback(d, currentDate, month, year);
					}
					// addDays(1) fails in some locales due to daylight savings. See issue 39.
					//currentDate.addDays(1);
					// set the time to midday to avoid any weird timezone issues??
					currentDate = new Date(currentDate.getFullYear(), currentDate.getMonth(), currentDate.getDate()+1, 12, 0, 0);
				}
				tbody.append(r);
			}
			calendarTable.append(tbody);
			
			return this.each(
				function()
				{
					$(this).empty().append(calendarTable);
				}
			);
		},
/**
 * Create a datePicker associated with each of the matched elements.
 *
 * The matched element will receive a few custom events with the following signatures:
 *
 * dateSelected(event, date, $td, status)
 * Triggered when a date is selected. event is a reference to the event, date is the Date selected, $td is a jquery object wrapped around the TD that was clicked on and status is whether the date was selected (true) or deselected (false)
 * 
 * dpClosed(event, selected)
 * Triggered when the date picker is closed. event is a reference to the event and selected is an Array containing Date objects.
 *
 * dpMonthChanged(event, displayedMonth, displayedYear)
 * Triggered when the month of the popped up calendar is changed. event is a reference to the event, displayedMonth is the number of the month now displayed (zero based) and displayedYear is the year of the month.
 *
 * dpDisplayed(event, $datePickerDiv)
 * Triggered when the date picker is created. $datePickerDiv is the div containing the date picker. Use this event to add custom content/ listeners to the popped up date picker.
 *
 * @param Object s (optional) Customize your date pickers.
 * @option Number month The month to render when the date picker is opened (NOTE that months are zero based). Default is today's month.
 * @option Number year The year to render when the date picker is opened. Default is today's year.
 * @option String startDate The first date date can be selected.
 * @option String endDate The last date that can be selected.
 * @option Boolean inline Whether to create the datePicker as inline (e.g. always on the page) or as a model popup. Default is false (== modal popup)
 * @option Boolean createButton Whether to create a .dp-choose-date anchor directly after the matched element which when clicked will trigger the showing of the date picker. Default is true.
 * @option Boolean showYearNavigation Whether to display buttons which allow the user to navigate through the months a year at a time. Default is true.
 * @option Boolean closeOnSelect Whether to close the date picker when a date is selected. Default is true.
 * @option Boolean displayClose Whether to create a "Close" button within the date picker popup. Default is false.
 * @option Boolean selectMultiple Whether a user should be able to select multiple dates with this date picker. Default is false.
 * @option Number numSelectable The maximum number of dates that can be selected where selectMultiple is true. Default is a very high number.
 * @option Boolean clickInput If the matched element is an input type="text" and this option is true then clicking on the input will cause the date picker to appear.
 * @option Boolean rememberViewedMonth Whether the datePicker should remember the last viewed month and open on it. If false then the date picker will always open with the month for the first selected date visible.
 * @option Boolean selectWeek Whether to select a complete week at a time...
 * @option Number verticalPosition The vertical alignment of the popped up date picker to the matched element. One of $.dpConst.POS_TOP and $.dpConst.POS_BOTTOM. Default is $.dpConst.POS_TOP.
 * @option Number horizontalPosition The horizontal alignment of the popped up date picker to the matched element. One of $.dpConst.POS_LEFT and $.dpConst.POS_RIGHT.
 * @option Number verticalOffset The number of pixels offset from the defined verticalPosition of this date picker that it should pop up in. Default in 0.
 * @option Number horizontalOffset The number of pixels offset from the defined horizontalPosition of this date picker that it should pop up in. Default in 0.
 * @option (Function|Array) renderCallback A reference to a function (or an array of separate functions) that is called as each cell is rendered and which can add classes and event listeners to the created nodes. Each callback function will receive four arguments; a jquery object wrapping the created TD, a Date object containing the date this TD represents, a number giving the currently rendered month and a number giving the currently rendered year. Default is no callback.
 * @option String hoverClass The class to attach to each cell when you hover over it (to allow you to use hover effects in IE6 which doesn't support the :hover pseudo-class on elements other than links). Default is dp-hover. Pass false if you don't want a hover class.
 * @option String autoFocusNextInput Whether focus should be passed onto the next input in the form (true) or remain on this input (false) when a date is selected and the calendar closes
 * @type jQuery
 * @name datePicker
 * @cat plugins/datePicker
 * @author Kelvin Luck (http://www.kelvinluck.com/)
 *
 * @example $('input.date-picker').datePicker();
 * @desc Creates a date picker button next to all matched input elements. When the button is clicked on the value of the selected date will be placed in the corresponding input (formatted according to Date.format).
 *
 * @example demo/index.html
 * @desc See the projects homepage for many more complex examples...
 **/
		datePicker : function(s)
		{			
			if (!$.event._dpCache) $.event._dpCache = [];
			
			// initialise the date picker controller with the relevant settings...
			s = $.extend({}, $.fn.datePicker.defaults, s);
			
			return this.each(
				function()
				{
					var $this = $(this);
					var alreadyExists = true;
					
					if (!this._dpId) {
						this._dpId = $.event.guid++;
						$.event._dpCache[this._dpId] = new DatePicker(this);
						alreadyExists = false;
					}
					
					if (s.inline) {
						s.createButton = false;
						s.displayClose = false;
						s.closeOnSelect = false;
						$this.empty();
					}
					
					var controller = $.event._dpCache[this._dpId];
					
					controller.init(s);
					
					if (!alreadyExists && s.createButton) {
						// create it!
						controller.button = $('<a href="#" class="dp-choose-date" title="' + $.dpText.TEXT_CHOOSE_DATE + '">' + $.dpText.TEXT_CHOOSE_DATE + '</a>')
								.bind(
									'click',
									function()
									{
										$this.dpDisplay(this);
										this.blur();
										return false;
									}
								);
						$this.after(controller.button);
					}
					
					if (!alreadyExists && $this.is(':text')) {
						$this
							.bind(
								'dateSelected',
								function(e, selectedDate, $td)
								{
									this.value = selectedDate.asString();
								}
							).bind(
								'change',
								function()
								{
									if (this.value == '') {
										controller.clearSelected();
									} else {
										var d = Date.fromString(this.value);
										if (d) {
											controller.setSelected(d, true, true);
										}
									}
								}
							);
						if (s.clickInput) {
							$this.bind(
								'click',
								function()
								{
									// The change event doesn't happen until the input loses focus so we need to manually trigger it...
									$this.trigger('change');
									$this.dpDisplay();
								}
							);
						}
						var d = Date.fromString(this.value);
						if (this.value != '' && d) {
							controller.setSelected(d, true, true);
						}
					}
					
					$this.addClass('dp-applied');
					
				}
			)
		},
/**
 * Disables or enables this date picker
 *
 * @param Boolean s Whether to disable (true) or enable (false) this datePicker
 * @type jQuery
 * @name dpSetDisabled
 * @cat plugins/datePicker
 * @author Kelvin Luck (http://www.kelvinluck.com/)
 *
 * @example $('.date-picker').datePicker();
 * $('.date-picker').dpSetDisabled(true);
 * @desc Prevents this date picker from displaying and adds a class of dp-disabled to it (and it's associated button if it has one) for styling purposes. If the matched element is an input field then it will also set the disabled attribute to stop people directly editing the field.
 **/
		dpSetDisabled : function(s)
		{
			return _w.call(this, 'setDisabled', s);
		},
/**
 * Updates the first selectable date for any date pickers on any matched elements.
 *
 * @param String d A string representing the first selectable date (formatted according to Date.format).
 * @type jQuery
 * @name dpSetStartDate
 * @cat plugins/datePicker
 * @author Kelvin Luck (http://www.kelvinluck.com/)
 *
 * @example $('.date-picker').datePicker();
 * $('.date-picker').dpSetStartDate('01/01/2000');
 * @desc Creates a date picker associated with all elements with a class of "date-picker" then sets the first selectable date for each of these to the first day of the millenium.
 **/
		dpSetStartDate : function(d)
		{
			return _w.call(this, 'setStartDate', d);
		},
/**
 * Updates the last selectable date for any date pickers on any matched elements.
 *
 * @param String d A string representing the last selectable date (formatted according to Date.format).
 * @type jQuery
 * @name dpSetEndDate
 * @cat plugins/datePicker
 * @author Kelvin Luck (http://www.kelvinluck.com/)
 *
 * @example $('.date-picker').datePicker();
 * $('.date-picker').dpSetEndDate('01/01/2010');
 * @desc Creates a date picker associated with all elements with a class of "date-picker" then sets the last selectable date for each of these to the first Janurary 2010.
 **/
		dpSetEndDate : function(d)
		{
			return _w.call(this, 'setEndDate', d);
		},
/**
 * Gets a list of Dates currently selected by this datePicker. This will be an empty array if no dates are currently selected or NULL if there is no datePicker associated with the matched element.
 *
 * @type Array
 * @name dpGetSelected
 * @cat plugins/datePicker
 * @author Kelvin Luck (http://www.kelvinluck.com/)
 *
 * @example $('.date-picker').datePicker();
 * alert($('.date-picker').dpGetSelected());
 * @desc Will alert an empty array (as nothing is selected yet)
 **/
		dpGetSelected : function()
		{
			var c = _getController(this[0]);
			if (c) {
				return c.getSelected();
			}
			return null;
		},
/**
 * Selects or deselects a date on any matched element's date pickers. Deselcting is only useful on date pickers where selectMultiple==true. Selecting will only work if the passed date is within the startDate and endDate boundries for a given date picker.
 *
 * @param String d A string representing the date you want to select (formatted according to Date.format).
 * @param Boolean v Whether you want to select (true) or deselect (false) this date. Optional - default = true.
 * @param Boolean m Whether you want the date picker to open up on the month of this date when it is next opened. Optional - default = true.
 * @param Boolean e Whether you want the date picker to dispatch events related to this change of selection. Optional - default = true.
 * @type jQuery
 * @name dpSetSelected
 * @cat plugins/datePicker
 * @author Kelvin Luck (http://www.kelvinluck.com/)
 *
 * @example $('.date-picker').datePicker();
 * $('.date-picker').dpSetSelected('01/01/2010');
 * @desc Creates a date picker associated with all elements with a class of "date-picker" then sets the selected date on these date pickers to the first Janurary 2010. When the date picker is next opened it will display Janurary 2010.
 **/
		dpSetSelected : function(d, v, m, e)
		{
			if (v == undefined) v=true;
			if (m == undefined) m=true;
			if (e == undefined) e=true;
			return _w.call(this, 'setSelected', Date.fromString(d), v, m, e);
		},
/**
 * Sets the month that will be displayed when the date picker is next opened. If the passed month is before startDate then the month containing startDate will be displayed instead. If the passed month is after endDate then the month containing the endDate will be displayed instead.
 *
 * @param Number m The month you want the date picker to display. Optional - defaults to the currently displayed month.
 * @param Number y The year you want the date picker to display. Optional - defaults to the currently displayed year.
 * @type jQuery
 * @name dpSetDisplayedMonth
 * @cat plugins/datePicker
 * @author Kelvin Luck (http://www.kelvinluck.com/)
 *
 * @example $('.date-picker').datePicker();
 * $('.date-picker').dpSetDisplayedMonth(10, 2008);
 * @desc Creates a date picker associated with all elements with a class of "date-picker" then sets the selected date on these date pickers to the first Janurary 2010. When the date picker is next opened it will display Janurary 2010.
 **/
		dpSetDisplayedMonth : function(m, y)
		{
			return _w.call(this, 'setDisplayedMonth', Number(m), Number(y), true);
		},
/**
 * Displays the date picker associated with the matched elements. Since only one date picker can be displayed at once then the date picker associated with the last matched element will be the one that is displayed.
 *
 * @param HTMLElement e An element that you want the date picker to pop up relative in position to. Optional - default behaviour is to pop up next to the element associated with this date picker.
 * @type jQuery
 * @name dpDisplay
 * @cat plugins/datePicker
 * @author Kelvin Luck (http://www.kelvinluck.com/)
 *
 * @example $('#date-picker').datePicker();
 * $('#date-picker').dpDisplay();
 * @desc Creates a date picker associated with the element with an id of date-picker and then causes it to pop up.
 **/
		dpDisplay : function(e)
		{
			return _w.call(this, 'display', e);
		},
/**
 * Sets a function or array of functions that is called when each TD of the date picker popup is rendered to the page
 *
 * @param (Function|Array) a A function or an array of functions that are called when each td is rendered. Each function will receive four arguments; a jquery object wrapping the created TD, a Date object containing the date this TD represents, a number giving the currently rendered month and a number giving the currently rendered year.
 * @type jQuery
 * @name dpSetRenderCallback
 * @cat plugins/datePicker
 * @author Kelvin Luck (http://www.kelvinluck.com/)
 *
 * @example $('#date-picker').datePicker();
 * $('#date-picker').dpSetRenderCallback(function($td, thisDate, month, year)
 * {
 * 	// do stuff as each td is rendered dependant on the date in the td and the displayed month and year
 * });
 * @desc Creates a date picker associated with the element with an id of date-picker and then creates a function which is called as each td is rendered when this date picker is displayed.
 **/
		dpSetRenderCallback : function(a)
		{
			return _w.call(this, 'setRenderCallback', a);
		},
/**
 * Sets the position that the datePicker will pop up (relative to it's associated element)
 *
 * @param Number v The vertical alignment of the created date picker to it's associated element. Possible values are $.dpConst.POS_TOP and $.dpConst.POS_BOTTOM
 * @param Number h The horizontal alignment of the created date picker to it's associated element. Possible values are $.dpConst.POS_LEFT and $.dpConst.POS_RIGHT
 * @type jQuery
 * @name dpSetPosition
 * @cat plugins/datePicker
 * @author Kelvin Luck (http://www.kelvinluck.com/)
 *
 * @example $('#date-picker').datePicker();
 * $('#date-picker').dpSetPosition($.dpConst.POS_BOTTOM, $.dpConst.POS_RIGHT);
 * @desc Creates a date picker associated with the element with an id of date-picker and makes it so that when this date picker pops up it will be bottom and right aligned to the #date-picker element.
 **/
		dpSetPosition : function(v, h)
		{
			return _w.call(this, 'setPosition', v, h);
		},
/**
 * Sets the offset that the popped up date picker will have from it's default position relative to it's associated element (as set by dpSetPosition)
 *
 * @param Number v The vertical offset of the created date picker.
 * @param Number h The horizontal offset of the created date picker.
 * @type jQuery
 * @name dpSetOffset
 * @cat plugins/datePicker
 * @author Kelvin Luck (http://www.kelvinluck.com/)
 *
 * @example $('#date-picker').datePicker();
 * $('#date-picker').dpSetOffset(-20, 200);
 * @desc Creates a date picker associated with the element with an id of date-picker and makes it so that when this date picker pops up it will be 20 pixels above and 200 pixels to the right of it's default position.
 **/
		dpSetOffset : function(v, h)
		{
			return _w.call(this, 'setOffset', v, h);
		},
/**
 * Closes the open date picker associated with this element.
 *
 * @type jQuery
 * @name dpClose
 * @cat plugins/datePicker
 * @author Kelvin Luck (http://www.kelvinluck.com/)
 *
 * @example $('.date-pick')
 *		.datePicker()
 *		.bind(
 *			'focus',
 *			function()
 *			{
 *				$(this).dpDisplay();
 *			}
 *		).bind(
 *			'blur',
 *			function()
 *			{
 *				$(this).dpClose();
 *			}
 *		);
 **/
		dpClose : function()
		{
			return _w.call(this, '_closeCalendar', false, this[0]);
		},
/**
 * Rerenders the date picker's current month (for use with inline calendars and renderCallbacks).
 *
 * @type jQuery
 * @name dpRerenderCalendar
 * @cat plugins/datePicker
 * @author Kelvin Luck (http://www.kelvinluck.com/)
 *
 **/
		dpRerenderCalendar : function()
		{
			return _w.call(this, '_rerenderCalendar');
		},
		// private function called on unload to clean up any expandos etc and prevent memory links...
		_dpDestroy : function()
		{
			// TODO - implement this?
		}
	});
	
	// private internal function to cut down on the amount of code needed where we forward
	// dp* methods on the jQuery object on to the relevant DatePicker controllers...
	var _w = function(f, a1, a2, a3, a4)
	{
		return this.each(
			function()
			{
				var c = _getController(this);
				if (c) {
					c[f](a1, a2, a3, a4);
				}
			}
		);
	};
	
	function DatePicker(ele)
	{
		this.ele = ele;
		
		// initial values...
		this.displayedMonth		=	null;
		this.displayedYear		=	null;
		this.startDate			=	null;
		this.endDate			=	null;
		this.showYearNavigation	=	null;
		this.closeOnSelect		=	null;
		this.displayClose		=	null;
		this.rememberViewedMonth=	null;
		this.selectMultiple		=	null;
		this.numSelectable		=	null;
		this.numSelected		=	null;
		this.verticalPosition	=	null;
		this.horizontalPosition	=	null;
		this.verticalOffset		=	null;
		this.horizontalOffset	=	null;
		this.button				=	null;
		this.renderCallback		=	[];
		this.selectedDates		=	{};
		this.inline				=	null;
		this.context			=	'#dp-popup';
		this.settings			=	{};
	};
	$.extend(
		DatePicker.prototype,
		{	
			init : function(s)
			{
				this.setStartDate(s.startDate);
				this.setEndDate(s.endDate);
				this.setDisplayedMonth(Number(s.month), Number(s.year));
				this.setRenderCallback(s.renderCallback);
				this.showYearNavigation = s.showYearNavigation;
				this.closeOnSelect = s.closeOnSelect;
				this.displayClose = s.displayClose;
				this.rememberViewedMonth =	s.rememberViewedMonth;
				this.selectMultiple = s.selectMultiple;
				this.numSelectable = s.selectMultiple ? s.numSelectable : 1;
				this.numSelected = 0;
				this.verticalPosition = s.verticalPosition;
				this.horizontalPosition = s.horizontalPosition;
				this.hoverClass = s.hoverClass;
				this.setOffset(s.verticalOffset, s.horizontalOffset);
				this.inline = s.inline;
				this.settings = s;
				if (this.inline) {
					this.context = this.ele;
					this.display();
				}
			},
			setStartDate : function(d)
			{
				if (d) {
					this.startDate = Date.fromString(d);
				}
				if (!this.startDate) {
					this.startDate = (new Date()).zeroTime();
				}
				this.setDisplayedMonth(this.displayedMonth, this.displayedYear);
			},
			setEndDate : function(d)
			{
				if (d) {
					this.endDate = Date.fromString(d);
				}
				if (!this.endDate) {
					this.endDate = (new Date('12/31/2999')); // using the JS Date.parse function which expects mm/dd/yyyy
				}
				if (this.endDate.getTime() < this.startDate.getTime()) {
					this.endDate = this.startDate;
				}
				this.setDisplayedMonth(this.displayedMonth, this.displayedYear);
			},
			setPosition : function(v, h)
			{
				this.verticalPosition = v;
				this.horizontalPosition = h;
			},
			setOffset : function(v, h)
			{
				this.verticalOffset = parseInt(v) || 0;
				this.horizontalOffset = parseInt(h) || 0;
			},
			setDisabled : function(s)
			{
				$e = $(this.ele);
				$e[s ? 'addClass' : 'removeClass']('dp-disabled');
				if (this.button) {
					$but = $(this.button);
					$but[s ? 'addClass' : 'removeClass']('dp-disabled');
					$but.attr('title', s ? '' : $.dpText.TEXT_CHOOSE_DATE);
				}
				if ($e.is(':text')) {
					$e.attr('disabled', s ? 'disabled' : '');
				}
			},
			setDisplayedMonth : function(m, y, rerender)
			{
				if (this.startDate == undefined || this.endDate == undefined) {
					return;
				}
				var s = new Date(this.startDate.getTime());
				s.setDate(1);
				var e = new Date(this.endDate.getTime());
				e.setDate(1);
				
				var t;
				if ((!m && !y) || (isNaN(m) && isNaN(y))) {
					// no month or year passed - default to current month
					t = new Date().zeroTime();
					t.setDate(1);
				} else if (isNaN(m)) {
					// just year passed in - presume we want the displayedMonth
					t = new Date(y, this.displayedMonth, 1);
				} else if (isNaN(y)) {
					// just month passed in - presume we want the displayedYear
					t = new Date(this.displayedYear, m, 1);
				} else {
					// year and month passed in - that's the date we want!
					t = new Date(y, m, 1)
				}
				// check if the desired date is within the range of our defined startDate and endDate
				if (t.getTime() < s.getTime()) {
					t = s;
				} else if (t.getTime() > e.getTime()) {
					t = e;
				}
				var oldMonth = this.displayedMonth;
				var oldYear = this.displayedYear;
				this.displayedMonth = t.getMonth();
				this.displayedYear = t.getFullYear();

				if (rerender && (this.displayedMonth != oldMonth || this.displayedYear != oldYear))
				{
					this._rerenderCalendar();
					$(this.ele).trigger('dpMonthChanged', [this.displayedMonth, this.displayedYear]);
				}
			},
			setSelected : function(d, v, moveToMonth, dispatchEvents)
			{
				if (d < this.startDate || d.zeroTime() > this.endDate.zeroTime()) {
					// Don't allow people to select dates outside range...
					return;
				}
				var s = this.settings;
				if (s.selectWeek)
				{
					d = d.addDays(- (d.getDay() - Date.firstDayOfWeek + 7) % 7);
					if (d < this.startDate) // The first day of this week is before the start date so is unselectable...
					{
						return;
					}
				}
				if (v == this.isSelected(d)) // this date is already un/selected
				{
					return;
				}
				if (this.selectMultiple == false) {
					this.clearSelected();
				} else if (v && this.numSelected == this.numSelectable) {
					// can't select any more dates...
					return;
				}
				if (moveToMonth && (this.displayedMonth != d.getMonth() || this.displayedYear != d.getFullYear())) {
					this.setDisplayedMonth(d.getMonth(), d.getFullYear(), true);
				}
				this.selectedDates[d.asString()] = v;
				this.numSelected += v ? 1 : -1;
				var selectorString = 'td.' + (d.getMonth() == this.displayedMonth ? 'current-month' : 'other-month');
				var $td;
				$(selectorString, this.context).each(
					function()
					{
						if ($(this).data('datePickerDate') == d.asString()) {
							$td = $(this);
							if (s.selectWeek)
							{
								$td.parent()[v ? 'addClass' : 'removeClass']('selectedWeek');
							}
							$td[v ? 'addClass' : 'removeClass']('selected'); 
						}
					}
				);
				$('td', this.context).not('.selected')[this.selectMultiple &&  this.numSelected == this.numSelectable ? 'addClass' : 'removeClass']('unselectable');
				
				if (dispatchEvents)
				{
					var s = this.isSelected(d);
					$e = $(this.ele);
					var dClone = Date.fromString(d.asString());
					$e.trigger('dateSelected', [dClone, $td, s]);
					$e.trigger('change');
				}
			},
			isSelected : function(d)
			{
				return this.selectedDates[d.asString()];
			},
			getSelected : function()
			{
				var r = [];
				for(var s in this.selectedDates) {
					if (this.selectedDates[s] == true) {
						r.push(Date.fromString(s));
					}
				}
				return r;
			},
			clearSelected : function()
			{
				this.selectedDates = {};
				this.numSelected = 0;
				$('td.selected', this.context).removeClass('selected').parent().removeClass('selectedWeek');
			},
			display : function(eleAlignTo)
			{
				if ($(this.ele).is('.dp-disabled')) return;
				
				eleAlignTo = eleAlignTo || this.ele;
				var c = this;
				var $ele = $(eleAlignTo);
				var eleOffset = $ele.offset();
				
				var $createIn;
				var attrs;
				var attrsCalendarHolder;
				var cssRules;
				
				if (c.inline) {
					$createIn = $(this.ele);
					attrs = {
						'id'		:	'calendar-' + this.ele._dpId,
						'class'	:	'dp-popup dp-popup-inline'
					};

					$('.dp-popup', $createIn).remove();
					cssRules = {
					};
				} else {
					$createIn = $('body');
					attrs = {
						'id'		:	'dp-popup',
						'class'	:	'dp-popup'
					};
					cssRules = {
						'top'	:	eleOffset.top + c.verticalOffset,
						'left'	:	eleOffset.left + c.horizontalOffset
					};
					
					var _checkMouse = function(e)
					{
						var el = e.target;
						var cal = $('#dp-popup')[0];
						
						while (true){
							if (el == cal) {
								return true;
							} else if (el == document) {
								c._closeCalendar();
								return false;
							} else {
								el = $(el).parent()[0];
							}
						}
					};
					this._checkMouse = _checkMouse;
					
					c._closeCalendar(true);
					$(document).bind(
						'keydown.datepicker', 
						function(event)
						{
							if (event.keyCode == 27) {
								c._closeCalendar();
							}
						}
					);
				}
				
				if (!c.rememberViewedMonth)
				{
					var selectedDate = this.getSelected()[0];
					if (selectedDate) {
						selectedDate = new Date(selectedDate);
						this.setDisplayedMonth(selectedDate.getMonth(), selectedDate.getFullYear(), false);
					}
				}
				
				$createIn
					.append(
						$('<div></div>')
							.attr(attrs)
							.css(cssRules)
							.append(
//								$('<a href="#" class="selecteee">aaa</a>'),
								$('<h2></h2>'),
								$('<div class="dp-nav-prev"></div>')
									.append(
										$('<a class="dp-nav-prev-year" href="#" title="' + $.dpText.TEXT_PREV_YEAR + '">&lt;&lt;</a>')
											.bind(
												'click',
												function()
												{
													return c._displayNewMonth.call(c, this, 0, -1);
												}
											),
										$('<a class="dp-nav-prev-month" href="#" title="' + $.dpText.TEXT_PREV_MONTH + '">&lt;</a>')
											.bind(
												'click',
												function()
												{
													return c._displayNewMonth.call(c, this, -1, 0);
												}
											)
									),
								$('<div class="dp-nav-next"></div>')
									.append(
										$('<a class="dp-nav-next-year" href="#" title="' + $.dpText.TEXT_NEXT_YEAR + '">&gt;&gt;</a>')
											.bind(
												'click',
												function()
												{
													return c._displayNewMonth.call(c, this, 0, 1);
												}
											),
										$('<a class="dp-nav-next-month" href="#" title="' + $.dpText.TEXT_NEXT_MONTH + '">&gt;</a>')
											.bind(
												'click',
												function()
												{
													return c._displayNewMonth.call(c, this, 1, 0);
												}
											)
									),
								$('<div class="dp-calendar"></div>')
							)
							.bgIframe()
						);
					
				var $pop = this.inline ? $('.dp-popup', this.context) : $('#dp-popup');
				
				if (this.showYearNavigation == false) {
					$('.dp-nav-prev-year, .dp-nav-next-year', c.context).css('display', 'none');
				}
				if (this.displayClose) {
					$pop.append(
						$('<a href="#" id="dp-close">' + $.dpText.TEXT_CLOSE + '</a>')
							.bind(
								'click',
								function()
								{
									c._closeCalendar();
									return false;
								}
							)
					);
				}
				c._renderCalendar();

				$(this.ele).trigger('dpDisplayed', $pop);
				
				if (!c.inline) {
					if (this.verticalPosition == $.dpConst.POS_BOTTOM) {
						$pop.css('top', eleOffset.top + $ele.height() - $pop.height() + c.verticalOffset);
					}
					if (this.horizontalPosition == $.dpConst.POS_RIGHT) {
						$pop.css('left', eleOffset.left + $ele.width() - $pop.width() + c.horizontalOffset);
					}
//					$('.selectee', this.context).focus();
					$(document).bind('mousedown.datepicker', this._checkMouse);
				}
				
			},
			setRenderCallback : function(a)
			{
				if (a == null) return;
				if (a && typeof(a) == 'function') {
					a = [a];
				}
				this.renderCallback = this.renderCallback.concat(a);
			},
			cellRender : function ($td, thisDate, month, year) {
				var c = this.dpController;
				var d = new Date(thisDate.getTime());
				
				// add our click handlers to deal with it when the days are clicked...
				
				$td.bind(
					'click',
					function()
					{
						var $this = $(this);
						if (!$this.is('.disabled')) {
							c.setSelected(d, !$this.is('.selected') || !c.selectMultiple, false, true);
							if (c.closeOnSelect) {
								// Focus the next input in the form…
								if (c.settings.autoFocusNextInput) {
									var ele = c.ele;
									var found = false;
									$(':input', ele.form).each(
										function()
										{
											if (found) {
												$(this).focus();
												return false;
											}
											if (this == ele) {
												found = true;
											}
										}
									);
								} else {
									c.ele.focus();
								}
								c._closeCalendar();
							}
						}
					}
				);
				if (c.isSelected(d)) {
					$td.addClass('selected');
					if (c.settings.selectWeek)
					{
						$td.parent().addClass('selectedWeek');
					}
				} else  if (c.selectMultiple && c.numSelected == c.numSelectable) {
					$td.addClass('unselectable');
				}
				
			},
			_applyRenderCallbacks : function()
			{
				var c = this;
				$('td', this.context).each(
					function()
					{
						for (var i=0; i<c.renderCallback.length; i++) {
							$td = $(this);
							c.renderCallback[i].apply(this, [$td, Date.fromString($td.data('datePickerDate')), c.displayedMonth, c.displayedYear]);
						}
					}
				);
				return;
			},
			// ele is the clicked button - only proceed if it doesn't have the class disabled...
			// m and y are -1, 0 or 1 depending which direction we want to go in...
			_displayNewMonth : function(ele, m, y) 
			{
				if (!$(ele).is('.disabled')) {
					this.setDisplayedMonth(this.displayedMonth + m, this.displayedYear + y, true);
				}
				ele.blur();
				return false;
			},
			_rerenderCalendar : function()
			{
				this._clearCalendar();
				this._renderCalendar();
			},
			_renderCalendar : function()
			{
				// set the title...
				$('h2', this.context).html((new Date(this.displayedYear, this.displayedMonth, 1)).asString($.dpText.HEADER_FORMAT));
				
				// render the calendar...
				$('.dp-calendar', this.context).renderCalendar(
					$.extend(
						{},
						this.settings, 
						{
							month			: this.displayedMonth,
							year			: this.displayedYear,
							renderCallback	: this.cellRender,
							dpController	: this,
							hoverClass		: this.hoverClass
						})
				);
				
				// update the status of the control buttons and disable dates before startDate or after endDate...
				// TODO: When should the year buttons be disabled? When you can't go forward a whole year from where you are or is that annoying?
				if (this.displayedYear == this.startDate.getFullYear() && this.displayedMonth == this.startDate.getMonth()) {
					$('.dp-nav-prev-year', this.context).addClass('disabled');
					$('.dp-nav-prev-month', this.context).addClass('disabled');
					$('.dp-calendar td.other-month', this.context).each(
						function()
						{
							var $this = $(this);
							if (Number($this.text()) > 20) {
								$this.addClass('disabled');
							}
						}
					);
					var d = this.startDate.getDate();
					$('.dp-calendar td.current-month', this.context).each(
						function()
						{
							var $this = $(this);
							if (Number($this.text()) < d) {
								$this.addClass('disabled');
							}
						}
					);
				} else {
					$('.dp-nav-prev-year', this.context).removeClass('disabled');
					$('.dp-nav-prev-month', this.context).removeClass('disabled');
					var d = this.startDate.getDate();
					if (d > 20) {
						// check if the startDate is last month as we might need to add some disabled classes...
						var st = this.startDate.getTime();
						var sd = new Date(st);
						sd.addMonths(1);
						if (this.displayedYear == sd.getFullYear() && this.displayedMonth == sd.getMonth()) {
							$('.dp-calendar td.other-month', this.context).each(
								function()
								{
									var $this = $(this);
									if (Date.fromString($this.data('datePickerDate')).getTime() < st) {
										$this.addClass('disabled');
									}
								}
							);
						}
					}
				}
				if (this.displayedYear == this.endDate.getFullYear() && this.displayedMonth == this.endDate.getMonth()) {
					$('.dp-nav-next-year', this.context).addClass('disabled');
					$('.dp-nav-next-month', this.context).addClass('disabled');
					$('.dp-calendar td.other-month', this.context).each(
						function()
						{
							var $this = $(this);
							if (Number($this.text()) < 14) {
								$this.addClass('disabled');
							}
						}
					);
					var d = this.endDate.getDate();
					$('.dp-calendar td.current-month', this.context).each(
						function()
						{
							var $this = $(this);
							if (Number($this.text()) > d) {
								$this.addClass('disabled');
							}
						}
					);
				} else {
					$('.dp-nav-next-year', this.context).removeClass('disabled');
					$('.dp-nav-next-month', this.context).removeClass('disabled');
					var d = this.endDate.getDate();
					if (d < 13) {
						// check if the endDate is next month as we might need to add some disabled classes...
						var ed = new Date(this.endDate.getTime());
						ed.addMonths(-1);
						if (this.displayedYear == ed.getFullYear() && this.displayedMonth == ed.getMonth()) {
							$('.dp-calendar td.other-month', this.context).each(
								function()
								{
									var $this = $(this);
									var cellDay = Number($this.text());
									if (cellDay < 13 && cellDay > d) {
										$this.addClass('disabled');
									}
								}
							);
						}
					}
				}
				this._applyRenderCallbacks();
			},
			_closeCalendar : function(programatic, ele)
			{
				if (!ele || ele == this.ele)
				{
					$(document).unbind('mousedown.datepicker');
					$(document).unbind('keydown.datepicker');
					this._clearCalendar();
					$('#dp-popup a').unbind();
					$('#dp-popup').empty().remove();
					if (!programatic) {
						$(this.ele).trigger('dpClosed', [this.getSelected()]);
					}
				}
			},
			// empties the current dp-calendar div and makes sure that all events are unbound
			// and expandos removed to avoid memory leaks...
			_clearCalendar : function()
			{
				// TODO.
				$('.dp-calendar td', this.context).unbind();
				$('.dp-calendar', this.context).empty();
			}
		}
	);
	
	// static constants
	$.dpConst = {
		SHOW_HEADER_NONE	:	0,
		SHOW_HEADER_SHORT	:	1,
		SHOW_HEADER_LONG	:	2,
		POS_TOP				:	0,
		POS_BOTTOM			:	1,
		POS_LEFT			:	0,
		POS_RIGHT			:	1,
		DP_INTERNAL_FOCUS	:	'dpInternalFocusTrigger'
	};
	// localisable text
	$.dpText = {
		TEXT_PREV_YEAR		:	'Previous year',
		TEXT_PREV_MONTH		:	'Previous month',
		TEXT_NEXT_YEAR		:	'Next year',
		TEXT_NEXT_MONTH		:	'Next month',
		TEXT_CLOSE			:	'Close',
		TEXT_CHOOSE_DATE	:	'Choose date',
		HEADER_FORMAT		:	'mmmm yyyy'
	};
	// version
	$.dpVersion = '$Id: jquery.datePicker.js 102 2010-09-13 14:00:54Z kelvin.luck $';

	$.fn.datePicker.defaults = {
		month				: undefined,
		year				: undefined,
		showHeader			: $.dpConst.SHOW_HEADER_SHORT,
		startDate			: undefined,
		endDate				: undefined,
		inline				: false,
		renderCallback		: null,
		createButton		: true,
		showYearNavigation	: true,
		closeOnSelect		: true,
		displayClose		: false,
		selectMultiple		: false,
		numSelectable		: Number.MAX_VALUE,
		clickInput			: false,
		rememberViewedMonth	: true,
		selectWeek			: false,
		verticalPosition	: $.dpConst.POS_TOP,
		horizontalPosition	: $.dpConst.POS_LEFT,
		verticalOffset		: 0,
		horizontalOffset	: 0,
		hoverClass			: 'dp-hover',
		autoFocusNextInput  : false
	};

	function _getController(ele)
	{
		if (ele._dpId) return $.event._dpCache[ele._dpId];
		return false;
	};
	
	// make it so that no error is thrown if bgIframe plugin isn't included (allows you to use conditional
	// comments to only include bgIframe where it is needed in IE without breaking this plugin).
	if ($.fn.bgIframe == undefined) {
		$.fn.bgIframe = function() {return this; };
	};


	// clean-up
	$(window)
		.bind('unload', function() {
			var els = $.event._dpCache || [];
			for (var i in els) {
				$(els[i].ele)._dpDestroy();
			}
		});
		
	
})(jQuery);
;


/* Comment Generated by Combres - Resource '~/js/ResourceHandler.ashx?file=date.js&cache=false' (Mode: Dynamic) */
/*
 * Date prototype extensions. Doesn't depend on any
 * other code. Doens't overwrite existing methods.
 *
 * Adds dayNames, abbrDayNames, monthNames and abbrMonthNames static properties and isLeapYear,
 * isWeekend, isWeekDay, getDaysInMonth, getDayName, getMonthName, getDayOfYear, getWeekOfYear,
 * setDayOfYear, addYears, addMonths, addDays, addHours, addMinutes, addSeconds methods
 *
 * Copyright (c) 2006 Jörn Zaefferer and Brandon Aaron (brandon.aaron@gmail.com || http://brandonaaron.net)
 *
 * Additional methods and properties added by Kelvin Luck: firstDayOfWeek, dateFormat, zeroTime, asString, fromString -
 * I've added my name to these methods so you know who to blame if they are broken!
 * 
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 */

/**
 * An Array of day names starting with Sunday.
 * 
 * @example dayNames[0]
 * @result 'Sunday'
 *
 * @name dayNames
 * @type Array
 * @cat Plugins/Methods/Date
 */
Date.dayNames = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];

/**
 * An Array of abbreviated day names starting with Sun.
 * 
 * @example abbrDayNames[0]
 * @result 'Sun'
 *
 * @name abbrDayNames
 * @type Array
 * @cat Plugins/Methods/Date
 */
Date.abbrDayNames = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'];

/**
 * An Array of month names starting with Janurary.
 * 
 * @example monthNames[0]
 * @result 'January'
 *
 * @name monthNames
 * @type Array
 * @cat Plugins/Methods/Date
 */
Date.monthNames = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];

/**
 * An Array of abbreviated month names starting with Jan.
 * 
 * @example abbrMonthNames[0]
 * @result 'Jan'
 *
 * @name monthNames
 * @type Array
 * @cat Plugins/Methods/Date
 */
Date.abbrMonthNames = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];

/**
 * The first day of the week for this locale.
 *
 * @name firstDayOfWeek
 * @type Number
 * @cat Plugins/Methods/Date
 * @author Kelvin Luck
 */
Date.firstDayOfWeek = 1;

/**
 * The format that string dates should be represented as (e.g. 'dd/mm/yyyy' for UK, 'mm/dd/yyyy' for US, 'yyyy-mm-dd' for Unicode etc).
 *
 * @name format
 * @type String
 * @cat Plugins/Methods/Date
 * @author Kelvin Luck
 */
Date.format = 'dd/mm/yyyy';
//Date.format = 'mm/dd/yyyy';
//Date.format = 'yyyy-mm-dd';
//Date.format = 'dd mmm yy';

/**
 * The first two numbers in the century to be used when decoding a two digit year. Since a two digit year is ambiguous (and date.setYear
 * only works with numbers < 99 and so doesn't allow you to set years after 2000) we need to use this to disambiguate the two digit year codes.
 *
 * @name format
 * @type String
 * @cat Plugins/Methods/Date
 * @author Kelvin Luck
 */
Date.fullYearStart = '20';

(function() {

	/**
	 * Adds a given method under the given name 
	 * to the Date prototype if it doesn't
	 * currently exist.
	 *
	 * @private
	 */
	function add(name, method) {
		if( !Date.prototype[name] ) {
			Date.prototype[name] = method;
		}
	};
	
	/**
	 * Checks if the year is a leap year.
	 *
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.isLeapYear();
	 * @result true
	 *
	 * @name isLeapYear
	 * @type Boolean
	 * @cat Plugins/Methods/Date
	 */
	add("isLeapYear", function() {
		var y = this.getFullYear();
		return (y%4==0 && y%100!=0) || y%400==0;
	});
	
	/**
	 * Checks if the day is a weekend day (Sat or Sun).
	 *
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.isWeekend();
	 * @result false
	 *
	 * @name isWeekend
	 * @type Boolean
	 * @cat Plugins/Methods/Date
	 */
	add("isWeekend", function() {
		return this.getDay()==0 || this.getDay()==6;
	});
	
	/**
	 * Check if the day is a day of the week (Mon-Fri)
	 * 
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.isWeekDay();
	 * @result false
	 * 
	 * @name isWeekDay
	 * @type Boolean
	 * @cat Plugins/Methods/Date
	 */
	add("isWeekDay", function() {
		return !this.isWeekend();
	});
	
	/**
	 * Gets the number of days in the month.
	 * 
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.getDaysInMonth();
	 * @result 31
	 * 
	 * @name getDaysInMonth
	 * @type Number
	 * @cat Plugins/Methods/Date
	 */
	add("getDaysInMonth", function() {
		return [31,(this.isLeapYear() ? 29:28),31,30,31,30,31,31,30,31,30,31][this.getMonth()];
	});
	
	/**
	 * Gets the name of the day.
	 * 
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.getDayName();
	 * @result 'Saturday'
	 * 
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.getDayName(true);
	 * @result 'Sat'
	 * 
	 * @param abbreviated Boolean When set to true the name will be abbreviated.
	 * @name getDayName
	 * @type String
	 * @cat Plugins/Methods/Date
	 */
	add("getDayName", function(abbreviated) {
		return abbreviated ? Date.abbrDayNames[this.getDay()] : Date.dayNames[this.getDay()];
	});

	/**
	 * Gets the name of the month.
	 * 
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.getMonthName();
	 * @result 'Janurary'
	 *
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.getMonthName(true);
	 * @result 'Jan'
	 * 
	 * @param abbreviated Boolean When set to true the name will be abbreviated.
	 * @name getDayName
	 * @type String
	 * @cat Plugins/Methods/Date
	 */
	add("getMonthName", function(abbreviated) {
		return abbreviated ? Date.abbrMonthNames[this.getMonth()] : Date.monthNames[this.getMonth()];
	});

	/**
	 * Get the number of the day of the year.
	 * 
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.getDayOfYear();
	 * @result 11
	 * 
	 * @name getDayOfYear
	 * @type Number
	 * @cat Plugins/Methods/Date
	 */
	add("getDayOfYear", function() {
		var tmpdtm = new Date("1/1/" + this.getFullYear());
		return Math.floor((this.getTime() - tmpdtm.getTime()) / 86400000);
	});
	
	/**
	 * Get the number of the week of the year.
	 * 
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.getWeekOfYear();
	 * @result 2
	 * 
	 * @name getWeekOfYear
	 * @type Number
	 * @cat Plugins/Methods/Date
	 */
	add("getWeekOfYear", function() {
		return Math.ceil(this.getDayOfYear() / 7);
	});

	/**
	 * Set the day of the year.
	 * 
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.setDayOfYear(1);
	 * dtm.toString();
	 * @result 'Tue Jan 01 2008 00:00:00'
	 * 
	 * @name setDayOfYear
	 * @type Date
	 * @cat Plugins/Methods/Date
	 */
	add("setDayOfYear", function(day) {
		this.setMonth(0);
		this.setDate(day);
		return this;
	});
	
	/**
	 * Add a number of years to the date object.
	 * 
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.addYears(1);
	 * dtm.toString();
	 * @result 'Mon Jan 12 2009 00:00:00'
	 * 
	 * @name addYears
	 * @type Date
	 * @cat Plugins/Methods/Date
	 */
	add("addYears", function(num) {
		this.setFullYear(this.getFullYear() + num);
		return this;
	});
	
	/**
	 * Add a number of months to the date object.
	 * 
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.addMonths(1);
	 * dtm.toString();
	 * @result 'Tue Feb 12 2008 00:00:00'
	 * 
	 * @name addMonths
	 * @type Date
	 * @cat Plugins/Methods/Date
	 */
	add("addMonths", function(num) {
		var tmpdtm = this.getDate();
		
		this.setMonth(this.getMonth() + num);
		
		if (tmpdtm > this.getDate())
			this.addDays(-this.getDate());
		
		return this;
	});
	
	/**
	 * Add a number of days to the date object.
	 * 
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.addDays(1);
	 * dtm.toString();
	 * @result 'Sun Jan 13 2008 00:00:00'
	 * 
	 * @name addDays
	 * @type Date
	 * @cat Plugins/Methods/Date
	 */
	add("addDays", function(num) {
		//this.setDate(this.getDate() + num);
		this.setTime(this.getTime() + (num*86400000) );
		return this;
	});
	
	/**
	 * Add a number of hours to the date object.
	 * 
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.addHours(24);
	 * dtm.toString();
	 * @result 'Sun Jan 13 2008 00:00:00'
	 * 
	 * @name addHours
	 * @type Date
	 * @cat Plugins/Methods/Date
	 */
	add("addHours", function(num) {
		this.setHours(this.getHours() + num);
		return this;
	});

	/**
	 * Add a number of minutes to the date object.
	 * 
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.addMinutes(60);
	 * dtm.toString();
	 * @result 'Sat Jan 12 2008 01:00:00'
	 * 
	 * @name addMinutes
	 * @type Date
	 * @cat Plugins/Methods/Date
	 */
	add("addMinutes", function(num) {
		this.setMinutes(this.getMinutes() + num);
		return this;
	});
	
	/**
	 * Add a number of seconds to the date object.
	 * 
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.addSeconds(60);
	 * dtm.toString();
	 * @result 'Sat Jan 12 2008 00:01:00'
	 * 
	 * @name addSeconds
	 * @type Date
	 * @cat Plugins/Methods/Date
	 */
	add("addSeconds", function(num) {
		this.setSeconds(this.getSeconds() + num);
		return this;
	});
	
	/**
	 * Sets the time component of this Date to zero for cleaner, easier comparison of dates where time is not relevant.
	 * 
	 * @example var dtm = new Date();
	 * dtm.zeroTime();
	 * dtm.toString();
	 * @result 'Sat Jan 12 2008 00:01:00'
	 * 
	 * @name zeroTime
	 * @type Date
	 * @cat Plugins/Methods/Date
	 * @author Kelvin Luck
	 */
	add("zeroTime", function() {
		this.setMilliseconds(0);
		this.setSeconds(0);
		this.setMinutes(0);
		this.setHours(0);
		return this;
	});
	
	/**
	 * Returns a string representation of the date object according to Date.format.
	 * (Date.toString may be used in other places so I purposefully didn't overwrite it)
	 * 
	 * @example var dtm = new Date("01/12/2008");
	 * dtm.asString();
	 * @result '12/01/2008' // (where Date.format == 'dd/mm/yyyy'
	 * 
	 * @name asString
	 * @type Date
	 * @cat Plugins/Methods/Date
	 * @author Kelvin Luck
	 */
	add("asString", function(format) {
		var r = format || Date.format;
		return r
			.split('yyyy').join(this.getFullYear())
			.split('yy').join((this.getFullYear() + '').substring(2))
			.split('mmmm').join(this.getMonthName(false))
			.split('mmm').join(this.getMonthName(true))
			.split('mm').join(_zeroPad(this.getMonth()+1))
			.split('dd').join(_zeroPad(this.getDate()))
			.split('hh').join(_zeroPad(this.getHours()))
			.split('min').join(_zeroPad(this.getMinutes()))
			.split('ss').join(_zeroPad(this.getSeconds()));
	});
	
	/**
	 * Returns a new date object created from the passed String according to Date.format or false if the attempt to do this results in an invalid date object
	 * (We can't simple use Date.parse as it's not aware of locale and I chose not to overwrite it incase it's functionality is being relied on elsewhere)
	 *
	 * @example var dtm = Date.fromString("12/01/2008");
	 * dtm.toString();
	 * @result 'Sat Jan 12 2008 00:00:00' // (where Date.format == 'dd/mm/yyyy'
	 * 
	 * @name fromString
	 * @type Date
	 * @cat Plugins/Methods/Date
	 * @author Kelvin Luck
	 */
	Date.fromString = function(s, format)
	{
		var f = format || Date.format;
		var d = new Date('01/01/1977');
		
		var mLength = 0;

		var iM = f.indexOf('mmmm');
		if (iM > -1) {
			for (var i=0; i<Date.monthNames.length; i++) {
				var mStr = s.substr(iM, Date.monthNames[i].length);
				if (Date.monthNames[i] == mStr) {
					mLength = Date.monthNames[i].length - 4;
					break;
				}
			}
			d.setMonth(i);
		} else {
			iM = f.indexOf('mmm');
			if (iM > -1) {
				var mStr = s.substr(iM, 3);
				for (var i=0; i<Date.abbrMonthNames.length; i++) {
					if (Date.abbrMonthNames[i] == mStr) break;
				}
				d.setMonth(i);
			} else {
				d.setMonth(Number(s.substr(f.indexOf('mm'), 2)) - 1);
			}
		}
		
		var iY = f.indexOf('yyyy');

		if (iY > -1) {
			if (iM < iY)
			{
				iY += mLength;
			}
			d.setFullYear(Number(s.substr(iY, 4)));
		} else {
			if (iM < iY)
			{
				iY += mLength;
			}
			// TODO - this doesn't work very well - are there any rules for what is meant by a two digit year?
			d.setFullYear(Number(Date.fullYearStart + s.substr(f.indexOf('yy'), 2)));
		}
		var iD = f.indexOf('dd');
		if (iM < iD)
		{
			iD += mLength;
		}
		d.setDate(Number(s.substr(iD, 2)));
		if (isNaN(d.getTime())) {
			return false;
		}
		return d;
	};
	
	// utility method
	var _zeroPad = function(num) {
		var s = '0'+num;
		return s.substring(s.length-2)
		//return ('0'+num).substring(-2); // doesn't work on IE :(
	};
	
})();;


/* Comment Generated by Combres - Resource 'http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js' (Mode: Dynamic) */
/*	SWFObject v2.2 <http://code.google.com/p/swfobject/> 
	is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/
var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return !a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();
