/*!
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){

var 
	// Will speed up references to window, and allows munging its name.
	window = this,
	// Will speed up references to undefined, and allows munging its name.
	undefined,
	// Map over jQuery in case of overwrite
	_jQuery = window.jQuery,
	// Map over the $ in case of overwrite
	_$ = window.$,

	jQuery = window.jQuery = window.$ = function( selector, context ) {
		// The jQuery object is actually just the init constructor 'enhanced'
		return new jQuery.fn.init( selector, context );
	},

	// A simple way to check for HTML strings or ID strings
	// (both of which we optimize for)
	quickExpr = /^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,
	// Is it a simple selector
	isSimple = /^.[^:#\[\.,]*$/;

jQuery.fn = jQuery.prototype = {
	init: function( selector, context ) {
		// Make sure that a selection was provided
		selector = selector || document;

		// Handle $(DOMElement)
		if ( selector.nodeType ) {
			this[0] = selector;
			this.length = 1;
			this.context = selector;
			return this;
		}
		// Handle HTML strings
		if ( typeof selector === "string" ) {
			// Are we dealing with HTML string or an ID?
			var match = quickExpr.exec( selector );

			// Verify a match, and that no context was specified for #id
			if ( match && (match[1] || !context) ) {

				// HANDLE: $(html) -> $(array)
				if ( match[1] )
					selector = jQuery.clean( [ match[1] ], context );

				// HANDLE: $("#id")
				else {
					var elem = document.getElementById( match[3] );

					// Handle the case where IE and Opera return items
					// by name instead of ID
					if ( elem && elem.id != match[3] )
						return jQuery().find( selector );

					// Otherwise, we inject the element directly into the jQuery object
					var ret = jQuery( elem || [] );
					ret.context = document;
					ret.selector = selector;
					return ret;
				}

			// HANDLE: $(expr, [context])
			// (which is just equivalent to: $(content).find(expr)
			} else
				return jQuery( context ).find( selector );

		// HANDLE: $(function)
		// Shortcut for document ready
		} else if ( jQuery.isFunction( selector ) )
			return jQuery( document ).ready( selector );

		// Make sure that old selector state is passed along
		if ( selector.selector && selector.context ) {
			this.selector = selector.selector;
			this.context = selector.context;
		}

		return this.setArray(jQuery.isArray( selector ) ?
			selector :
			jQuery.makeArray(selector));
	},

	// Start with an empty selector
	selector: "",

	// The current version of jQuery being used
	jquery: "1.3.2",

	// The number of elements contained in the matched element set
	size: function() {
		return this.length;
	},

	// Get the Nth element in the matched element set OR
	// Get the whole matched element set as a clean array
	get: function( num ) {
		return num === undefined ?

			// Return a 'clean' array
			Array.prototype.slice.call( this ) :

			// Return just the object
			this[ num ];
	},

	// Take an array of elements and push it onto the stack
	// (returning the new matched element set)
	pushStack: function( elems, name, selector ) {
		// Build a new jQuery matched element set
		var ret = jQuery( elems );

		// Add the old object onto the stack (as a reference)
		ret.prevObject = this;

		ret.context = this.context;

		if ( name === "find" )
			ret.selector = this.selector + (this.selector ? " " : "") + selector;
		else if ( name )
			ret.selector = this.selector + "." + name + "(" + selector + ")";

		// Return the newly-formed element set
		return ret;
	},

	// Force the current matched set of elements to become
	// the specified array of elements (destroying the stack in the process)
	// You should use pushStack() in order to do this, but maintain the stack
	setArray: function( elems ) {
		// Resetting the length to 0, then using the native Array push
		// is a super-fast way to populate an object with array-like properties
		this.length = 0;
		Array.prototype.push.apply( this, elems );

		return this;
	},

	// Execute a callback for every element in the matched set.
	// (You can seed the arguments with an array of args, but this is
	// only used internally.)
	each: function( callback, args ) {
		return jQuery.each( this, callback, args );
	},

	// Determine the position of an element within
	// the matched set of elements
	index: function( elem ) {
		// Locate the position of the desired element
		return jQuery.inArray(
			// If it receives a jQuery object, the first element is used
			elem && elem.jquery ? elem[0] : elem
		, this );
	},

	attr: function( name, value, type ) {
		var options = name;

		// Look for the case where we're accessing a style value
		if ( typeof name === "string" )
			if ( value === undefined )
				return this[0] && jQuery[ type || "attr" ]( this[0], name );

			else {
				options = {};
				options[ name ] = value;
			}

		// Check to see if we're setting style values
		return this.each(function(i){
			// Set all the styles
			for ( name in options )
				jQuery.attr(
					type ?
						this.style :
						this,
					name, jQuery.prop( this, options[ name ], type, i, name )
				);
		});
	},

	css: function( key, value ) {
		// ignore negative width and height values
		if ( (key == 'width' || key == 'height') && parseFloat(value) < 0 )
			value = undefined;
		return this.attr( key, value, "curCSS" );
	},

	text: function( text ) {
		if ( typeof text !== "object" && text != null )
			return this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) );

		var ret = "";

		jQuery.each( text || this, function(){
			jQuery.each( this.childNodes, function(){
				if ( this.nodeType != 8 )
					ret += this.nodeType != 1 ?
						this.nodeValue :
						jQuery.fn.text( [ this ] );
			});
		});

		return ret;
	},

	wrapAll: function( html ) {
		if ( this[0] ) {
			// The elements to wrap the target around
			var wrap = jQuery( html, this[0].ownerDocument ).clone();

			if ( this[0].parentNode )
				wrap.insertBefore( this[0] );

			wrap.map(function(){
				var elem = this;

				while ( elem.firstChild )
					elem = elem.firstChild;

				return elem;
			}).append(this);
		}

		return this;
	},

	wrapInner: function( html ) {
		return this.each(function(){
			jQuery( this ).contents().wrapAll( html );
		});
	},

	wrap: function( html ) {
		return this.each(function(){
			jQuery( this ).wrapAll( html );
		});
	},

	append: function() {
		return this.domManip(arguments, true, function(elem){
			if (this.nodeType == 1)
				this.appendChild( elem );
		});
	},

	prepend: function() {
		return this.domManip(arguments, true, function(elem){
			if (this.nodeType == 1)
				this.insertBefore( elem, this.firstChild );
		});
	},

	before: function() {
		return this.domManip(arguments, false, function(elem){
			this.parentNode.insertBefore( elem, this );
		});
	},

	after: function() {
		return this.domManip(arguments, false, function(elem){
			this.parentNode.insertBefore( elem, this.nextSibling );
		});
	},

	end: function() {
		return this.prevObject || jQuery( [] );
	},

	// For internal use only.
	// Behaves like an Array's method, not like a jQuery method.
	push: [].push,
	sort: [].sort,
	splice: [].splice,

	find: function( selector ) {
		if ( this.length === 1 ) {
			var ret = this.pushStack( [], "find", selector );
			ret.length = 0;
			jQuery.find( selector, this[0], ret );
			return ret;
		} else {
			return this.pushStack( jQuery.unique(jQuery.map(this, function(elem){
				return jQuery.find( selector, elem );
			})), "find", selector );
		}
	},

	clone: function( events ) {
		// Do the clone
		var ret = this.map(function(){
			if ( !jQuery.support.noCloneEvent && !jQuery.isXMLDoc(this) ) {
				// IE copies events bound via attachEvent when
				// using cloneNode. Calling detachEvent on the
				// clone will also remove the events from the orignal
				// In order to get around this, we use innerHTML.
				// Unfortunately, this means some modifications to
				// attributes in IE that are actually only stored
				// as properties will not be copied (such as the
				// the name attribute on an input).
				var html = this.outerHTML;
				if ( !html ) {
					var div = this.ownerDocument.createElement("div");
					div.appendChild( this.cloneNode(true) );
					html = div.innerHTML;
				}

				return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g, "").replace(/^\s*/, "")])[0];
			} else
				return this.cloneNode(true);
		});

		// Copy the events from the original to the clone
		if ( events === true ) {
			var orig = this.find("*").andSelf(), i = 0;

			ret.find("*").andSelf().each(function(){
				if ( this.nodeName !== orig[i].nodeName )
					return;

				var events = jQuery.data( orig[i], "events" );

				for ( var type in events ) {
					for ( var handler in events[ type ] ) {
						jQuery.event.add( this, type, events[ type ][ handler ], events[ type ][ handler ].data );
					}
				}

				i++;
			});
		}

		// Return the cloned set
		return ret;
	},

	filter: function( selector ) {
		return this.pushStack(
			jQuery.isFunction( selector ) &&
			jQuery.grep(this, function(elem, i){
				return selector.call( elem, i );
			}) ||

			jQuery.multiFilter( selector, jQuery.grep(this, function(elem){
				return elem.nodeType === 1;
			}) ), "filter", selector );
	},

	closest: function( selector ) {
		var pos = jQuery.expr.match.POS.test( selector ) ? jQuery(selector) : null,
			closer = 0;

		return this.map(function(){
			var cur = this;
			while ( cur && cur.ownerDocument ) {
				if ( pos ? pos.index(cur) > -1 : jQuery(cur).is(selector) ) {
					jQuery.data(cur, "closest", closer);
					return cur;
				}
				cur = cur.parentNode;
				closer++;
			}
		});
	},

	not: function( selector ) {
		if ( typeof selector === "string" )
			// test special case where just one selector is passed in
			if ( isSimple.test( selector ) )
				return this.pushStack( jQuery.multiFilter( selector, this, true ), "not", selector );
			else
				selector = jQuery.multiFilter( selector, this );

		var isArrayLike = selector.length && selector[selector.length - 1] !== undefined && !selector.nodeType;
		return this.filter(function() {
			return isArrayLike ? jQuery.inArray( this, selector ) < 0 : this != selector;
		});
	},

	add: function( selector ) {
		return this.pushStack( jQuery.unique( jQuery.merge(
			this.get(),
			typeof selector === "string" ?
				jQuery( selector ) :
				jQuery.makeArray( selector )
		)));
	},

	is: function( selector ) {
		return !!selector && jQuery.multiFilter( selector, this ).length > 0;
	},

	hasClass: function( selector ) {
		return !!selector && this.is( "." + selector );
	},

	val: function( value ) {
		if ( value === undefined ) {			
			var elem = this[0];

			if ( elem ) {
				if( jQuery.nodeName( elem, 'option' ) )
					return (elem.attributes.value || {}).specified ? elem.value : elem.text;
				
				// We need to handle select boxes special
				if ( jQuery.nodeName( elem, "select" ) ) {
					var index = elem.selectedIndex,
						values = [],
						options = elem.options,
						one = elem.type == "select-one";

					// Nothing was selected
					if ( index < 0 )
						return null;

					// Loop through all the selected options
					for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) {
						var option = options[ i ];

						if ( option.selected ) {
							// Get the specifc value for the option
							value = jQuery(option).val();

							// We don't need an array for one selects
							if ( one )
								return value;

							// Multi-Selects return an array
							values.push( value );
						}
					}

					return values;				
				}

				// Everything else, we just grab the value
				return (elem.value || "").replace(/\r/g, "");

			}

			return undefined;
		}

		if ( typeof value === "number" )
			value += '';

		return this.each(function(){
			if ( this.nodeType != 1 )
				return;

			if ( jQuery.isArray(value) && /radio|checkbox/.test( this.type ) )
				this.checked = (jQuery.inArray(this.value, value) >= 0 ||
					jQuery.inArray(this.name, value) >= 0);

			else if ( jQuery.nodeName( this, "select" ) ) {
				var values = jQuery.makeArray(value);

				jQuery( "option", this ).each(function(){
					this.selected = (jQuery.inArray( this.value, values ) >= 0 ||
						jQuery.inArray( this.text, values ) >= 0);
				});

				if ( !values.length )
					this.selectedIndex = -1;

			} else
				this.value = value;
		});
	},

	html: function( value ) {
		return value === undefined ?
			(this[0] ?
				this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g, "") :
				null) :
			this.empty().append( value );
	},

	replaceWith: function( value ) {
		return this.after( value ).remove();
	},

	eq: function( i ) {
		return this.slice( i, +i + 1 );
	},

	slice: function() {
		return this.pushStack( Array.prototype.slice.apply( this, arguments ),
			"slice", Array.prototype.slice.call(arguments).join(",") );
	},

	map: function( callback ) {
		return this.pushStack( jQuery.map(this, function(elem, i){
			return callback.call( elem, i, elem );
		}));
	},

	andSelf: function() {
		return this.add( this.prevObject );
	},

	domManip: function( args, table, callback ) {
		if ( this[0] ) {
			var fragment = (this[0].ownerDocument || this[0]).createDocumentFragment(),
				scripts = jQuery.clean( args, (this[0].ownerDocument || this[0]), fragment ),
				first = fragment.firstChild;

			if ( first )
				for ( var i = 0, l = this.length; i < l; i++ )
					callback.call( root(this[i], first), this.length > 1 || i > 0 ?
							fragment.cloneNode(true) : fragment );
		
			if ( scripts )
				jQuery.each( scripts, evalScript );
		}

		return this;
		
		function root( elem, cur ) {
			return table && jQuery.nodeName(elem, "table") && jQuery.nodeName(cur, "tr") ?
				(elem.getElementsByTagName("tbody")[0] ||
				elem.appendChild(elem.ownerDocument.createElement("tbody"))) :
				elem;
		}
	}
};

// Give the init function the jQuery prototype for later instantiation
jQuery.fn.init.prototype = jQuery.fn;

function evalScript( i, elem ) {
	if ( elem.src )
		jQuery.ajax({
			url: elem.src,
			async: false,
			dataType: "script"
		});

	else
		jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" );

	if ( elem.parentNode )
		elem.parentNode.removeChild( elem );
}

function now(){
	return +new Date;
}

jQuery.extend = jQuery.fn.extend = function() {
	// copy reference to target object
	var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options;

	// Handle a deep copy situation
	if ( typeof target === "boolean" ) {
		deep = target;
		target = arguments[1] || {};
		// skip the boolean and the target
		i = 2;
	}

	// Handle case when target is a string or something (possible in deep copy)
	if ( typeof target !== "object" && !jQuery.isFunction(target) )
		target = {};

	// extend jQuery itself if only one argument is passed
	if ( length == i ) {
		target = this;
		--i;
	}

	for ( ; i < length; i++ )
		// Only deal with non-null/undefined values
		if ( (options = arguments[ i ]) != null )
			// Extend the base object
			for ( var name in options ) {
				var src = target[ name ], copy = options[ name ];

				// Prevent never-ending loop
				if ( target === copy )
					continue;

				// Recurse if we're merging object values
				if ( deep && copy && typeof copy === "object" && !copy.nodeType )
					target[ name ] = jQuery.extend( deep, 
						// Never move original objects, clone them
						src || ( copy.length != null ? [ ] : { } )
					, copy );

				// Don't bring in undefined values
				else if ( copy !== undefined )
					target[ name ] = copy;

			}

	// Return the modified object
	return target;
};

// exclude the following css properties to add px
var	exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i,
	// cache defaultView
	defaultView = document.defaultView || {},
	toString = Object.prototype.toString;

jQuery.extend({
	noConflict: function( deep ) {
		window.$ = _$;

		if ( deep )
			window.jQuery = _jQuery;

		return jQuery;
	},

	// See test/unit/core.js for details concerning isFunction.
	// Since version 1.3, DOM methods and functions like alert
	// aren't supported. They return false on IE (#2968).
	isFunction: function( obj ) {
		return toString.call(obj) === "[object Function]";
	},

	isArray: function( obj ) {
		return toString.call(obj) === "[object Array]";
	},

	// check if an element is in a (or is an) XML document
	isXMLDoc: function( elem ) {
		return elem.nodeType === 9 && elem.documentElement.nodeName !== "HTML" ||
			!!elem.ownerDocument && jQuery.isXMLDoc( elem.ownerDocument );
	},

	// Evalulates a script in a global context
	globalEval: function( data ) {
		if ( data && /\S/.test(data) ) {
			// Inspired by code by Andrea Giammarchi
			// http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html
			var head = document.getElementsByTagName("head")[0] || document.documentElement,
				script = document.createElement("script");

			script.type = "text/javascript";
			if ( jQuery.support.scriptEval )
				script.appendChild( document.createTextNode( data ) );
			else
				script.text = data;

			// Use insertBefore instead of appendChild  to circumvent an IE6 bug.
			// This arises when a base node is used (#2709).
			head.insertBefore( script, head.firstChild );
			head.removeChild( script );
		}
	},

	nodeName: function( elem, name ) {
		return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase();
	},

	// args is for internal usage only
	each: function( object, callback, args ) {
		var name, i = 0, length = object.length;

		if ( args ) {
			if ( length === undefined ) {
				for ( name in object )
					if ( callback.apply( object[ name ], args ) === false )
						break;
			} else
				for ( ; i < length; )
					if ( callback.apply( object[ i++ ], args ) === false )
						break;

		// A special, fast, case for the most common use of each
		} else {
			if ( length === undefined ) {
				for ( name in object )
					if ( callback.call( object[ name ], name, object[ name ] ) === false )
						break;
			} else
				for ( var value = object[0];
					i < length && callback.call( value, i, value ) !== false; value = object[++i] ){}
		}

		return object;
	},

	prop: function( elem, value, type, i, name ) {
		// Handle executable functions
		if ( jQuery.isFunction( value ) )
			value = value.call( elem, i );

		// Handle passing in a number to a CSS property
		return typeof value === "number" && type == "curCSS" && !exclude.test( name ) ?
			value + "px" :
			value;
	},

	className: {
		// internal only, use addClass("class")
		add: function( elem, classNames ) {
			jQuery.each((classNames || "").split(/\s+/), function(i, className){
				if ( elem.nodeType == 1 && !jQuery.className.has( elem.className, className ) )
					elem.className += (elem.className ? " " : "") + className;
			});
		},

		// internal only, use removeClass("class")
		remove: function( elem, classNames ) {
			if (elem.nodeType == 1)
				elem.className = classNames !== undefined ?
					jQuery.grep(elem.className.split(/\s+/), function(className){
						return !jQuery.className.has( classNames, className );
					}).join(" ") :
					"";
		},

		// internal only, use hasClass("class")
		has: function( elem, className ) {
			return elem && jQuery.inArray( className, (elem.className || elem).toString().split(/\s+/) ) > -1;
		}
	},

	// A method for quickly swapping in/out CSS properties to get correct calculations
	swap: function( elem, options, callback ) {
		var old = {};
		// Remember the old values, and insert the new ones
		for ( var name in options ) {
			old[ name ] = elem.style[ name ];
			elem.style[ name ] = options[ name ];
		}

		callback.call( elem );

		// Revert the old values
		for ( var name in options )
			elem.style[ name ] = old[ name ];
	},

	css: function( elem, name, force, extra ) {
		if ( name == "width" || name == "height" ) {
			var val, props = { position: "absolute", visibility: "hidden", display:"block" }, which = name == "width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ];

			function getWH() {
				val = name == "width" ? elem.offsetWidth : elem.offsetHeight;

				if ( extra === "border" )
					return;

				jQuery.each( which, function() {
					if ( !extra )
						val -= parseFloat(jQuery.curCSS( elem, "padding" + this, true)) || 0;
					if ( extra === "margin" )
						val += parseFloat(jQuery.curCSS( elem, "margin" + this, true)) || 0;
					else
						val -= parseFloat(jQuery.curCSS( elem, "border" + this + "Width", true)) || 0;
				});
			}

			if ( elem.offsetWidth !== 0 )
				getWH();
			else
				jQuery.swap( elem, props, getWH );

			return Math.max(0, Math.round(val));
		}

		return jQuery.curCSS( elem, name, force );
	},

	curCSS: function( elem, name, force ) {
		var ret, style = elem.style;

		// We need to handle opacity special in IE
		if ( name == "opacity" && !jQuery.support.opacity ) {
			ret = jQuery.attr( style, "opacity" );

			return ret == "" ?
				"1" :
				ret;
		}

		// Make sure we're using the right name for getting the float value
		if ( name.match( /float/i ) )
			name = styleFloat;

		if ( !force && style && style[ name ] )
			ret = style[ name ];

		else if ( defaultView.getComputedStyle ) {

			// Only "float" is needed here
			if ( name.match( /float/i ) )
				name = "float";

			name = name.replace( /([A-Z])/g, "-$1" ).toLowerCase();

			var computedStyle = defaultView.getComputedStyle( elem, null );

			if ( computedStyle )
				ret = computedStyle.getPropertyValue( name );

			// We should always get a number back from opacity
			if ( name == "opacity" && ret == "" )
				ret = "1";

		} else if ( elem.currentStyle ) {
			var camelCase = name.replace(/\-(\w)/g, function(all, letter){
				return letter.toUpperCase();
			});

			ret = elem.currentStyle[ name ] || elem.currentStyle[ camelCase ];

			// From the awesome hack by Dean Edwards
			// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291

			// If we're not dealing with a regular pixel number
			// but a number that has a weird ending, we need to convert it to pixels
			if ( !/^\d+(px)?$/i.test( ret ) && /^\d/.test( ret ) ) {
				// Remember the original values
				var left = style.left, rsLeft = elem.runtimeStyle.left;

				// Put in the new values to get a computed value out
				elem.runtimeStyle.left = elem.currentStyle.left;
				style.left = ret || 0;
				ret = style.pixelLeft + "px";

				// Revert the changed values
				style.left = left;
				elem.runtimeStyle.left = rsLeft;
			}
		}

		return ret;
	},

	clean: function( elems, context, fragment ) {
		context = context || document;

		// !context.createElement fails in IE with an error but returns typeof 'object'
		if ( typeof context.createElement === "undefined" )
			context = context.ownerDocument || context[0] && context[0].ownerDocument || document;

		// If a single string is passed in and it's a single tag
		// just do a createElement and skip the rest
		if ( !fragment && elems.length === 1 && typeof elems[0] === "string" ) {
			var match = /^<(\w+)\s*\/?>$/.exec(elems[0]);
			if ( match )
				return [ context.createElement( match[1] ) ];
		}

		var ret = [], scripts = [], div = context.createElement("div");

		jQuery.each(elems, function(i, elem){
			if ( typeof elem === "number" )
				elem += '';

			if ( !elem )
				return;

			// Convert html string into DOM nodes
			if ( typeof elem === "string" ) {
				// Fix "XHTML"-style tags in all browsers
				elem = elem.replace(/(<(\w+)[^>]*?)\/>/g, function(all, front, tag){
					return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i) ?
						all :
						front + "></" + tag + ">";
				});

				// Trim whitespace, otherwise indexOf won't work as expected
				var tags = elem.replace(/^\s+/, "").substring(0, 10).toLowerCase();

				var wrap =
					// option or optgroup
					!tags.indexOf("<opt") &&
					[ 1, "<select multiple='multiple'>", "</select>" ] ||

					!tags.indexOf("<leg") &&
					[ 1, "<fieldset>", "</fieldset>" ] ||

					tags.match(/^<(thead|tbody|tfoot|colg|cap)/) &&
					[ 1, "<table>", "</table>" ] ||

					!tags.indexOf("<tr") &&
					[ 2, "<table><tbody>", "</tbody></table>" ] ||

				 	// <thead> matched above
					(!tags.indexOf("<td") || !tags.indexOf("<th")) &&
					[ 3, "<table><tbody><tr>", "</tr></tbody></table>" ] ||

					!tags.indexOf("<col") &&
					[ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ] ||

					// IE can't serialize <link> and <script> tags normally
					!jQuery.support.htmlSerialize &&
					[ 1, "div<div>", "</div>" ] ||

					[ 0, "", "" ];

				// Go to html and back, then peel off extra wrappers
				div.innerHTML = wrap[1] + elem + wrap[2];

				// Move to the right depth
				while ( wrap[0]-- )
					div = div.lastChild;

				// Remove IE's autoinserted <tbody> from table fragments
				if ( !jQuery.support.tbody ) {

					// String was a <table>, *may* have spurious <tbody>
					var hasBody = /<tbody/i.test(elem),
						tbody = !tags.indexOf("<table") && !hasBody ?
							div.firstChild && div.firstChild.childNodes :

						// String was a bare <thead> or <tfoot>
						wrap[1] == "<table>" && !hasBody ?
							div.childNodes :
							[];

					for ( var j = tbody.length - 1; j >= 0 ; --j )
						if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length )
							tbody[ j ].parentNode.removeChild( tbody[ j ] );

					}

				// IE completely kills leading whitespace when innerHTML is used
				if ( !jQuery.support.leadingWhitespace && /^\s/.test( elem ) )
					div.insertBefore( context.createTextNode( elem.match(/^\s*/)[0] ), div.firstChild );
				
				elem = jQuery.makeArray( div.childNodes );
			}

			if ( elem.nodeType )
				ret.push( elem );
			else
				ret = jQuery.merge( ret, elem );

		});

		if ( fragment ) {
			for ( var i = 0; ret[i]; i++ ) {
				if ( jQuery.nodeName( ret[i], "script" ) && (!ret[i].type || ret[i].type.toLowerCase() === "text/javascript") ) {
					scripts.push( ret[i].parentNode ? ret[i].parentNode.removeChild( ret[i] ) : ret[i] );
				} else {
					if ( ret[i].nodeType === 1 )
						ret.splice.apply( ret, [i + 1, 0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))) );
					fragment.appendChild( ret[i] );
				}
			}
			
			return scripts;
		}

		return ret;
	},

	attr: function( elem, name, value ) {
		// don't set attributes on text and comment nodes
		if (!elem || elem.nodeType == 3 || elem.nodeType == 8)
			return undefined;

		var notxml = !jQuery.isXMLDoc( elem ),
			// Whether we are setting (or getting)
			set = value !== undefined;

		// Try to normalize/fix the name
		name = notxml && jQuery.props[ name ] || name;

		// Only do all the following if this is a node (faster for style)
		// IE elem.getAttribute passes even for style
		if ( elem.tagName ) {

			// These attributes require special treatment
			var special = /href|src|style/.test( name );

			// Safari mis-reports the default selected property of a hidden option
			// Accessing the parent's selectedIndex property fixes it
			if ( name == "selected" && elem.parentNode )
				elem.parentNode.selectedIndex;

			// If applicable, access the attribute via the DOM 0 way
			if ( name in elem && notxml && !special ) {
				if ( set ){
					// We can't allow the type property to be changed (since it causes problems in IE)
					if ( name == "type" && jQuery.nodeName( elem, "input" ) && elem.parentNode )
						throw "type property can't be changed";

					elem[ name ] = value;
				}

				// browsers index elements by id/name on forms, give priority to attributes.
				if( jQuery.nodeName( elem, "form" ) && elem.getAttributeNode(name) )
					return elem.getAttributeNode( name ).nodeValue;

				// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
				// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
				if ( name == "tabIndex" ) {
					var attributeNode = elem.getAttributeNode( "tabIndex" );
					return attributeNode && attributeNode.specified
						? attributeNode.value
						: elem.nodeName.match(/(button|input|object|select|textarea)/i)
							? 0
							: elem.nodeName.match(/^(a|area)$/i) && elem.href
								? 0
								: undefined;
				}

				return elem[ name ];
			}

			if ( !jQuery.support.style && notxml &&  name == "style" )
				return jQuery.attr( elem.style, "cssText", value );

			if ( set )
				// convert the value to a string (all browsers do this but IE) see #1070
				elem.setAttribute( name, "" + value );

			var attr = !jQuery.support.hrefNormalized && notxml && special
					// Some attributes require a special call on IE
					? elem.getAttribute( name, 2 )
					: elem.getAttribute( name );

			// Non-existent attributes return null, we normalize to undefined
			return attr === null ? undefined : attr;
		}

		// elem is actually elem.style ... set the style

		// IE uses filters for opacity
		if ( !jQuery.support.opacity && name == "opacity" ) {
			if ( set ) {
				// IE has trouble with opacity if it does not have layout
				// Force it by setting the zoom level
				elem.zoom = 1;

				// Set the alpha filter to set the opacity
				elem.filter = (elem.filter || "").replace( /alpha\([^)]*\)/, "" ) +
					(parseInt( value ) + '' == "NaN" ? "" : "alpha(opacity=" + value * 100 + ")");
			}

			return elem.filter && elem.filter.indexOf("opacity=") >= 0 ?
				(parseFloat( elem.filter.match(/opacity=([^)]*)/)[1] ) / 100) + '':
				"";
		}

		name = name.replace(/-([a-z])/ig, function(all, letter){
			return letter.toUpperCase();
		});

		if ( set )
			elem[ name ] = value;

		return elem[ name ];
	},

	trim: function( text ) {
		return (text || "").replace( /^\s+|\s+$/g, "" );
	},

	makeArray: function( array ) {
		var ret = [];

		if( array != null ){
			var i = array.length;
			// The window, strings (and functions) also have 'length'
			if( i == null || typeof array === "string" || jQuery.isFunction(array) || array.setInterval )
				ret[0] = array;
			else
				while( i )
					ret[--i] = array[i];
		}

		return ret;
	},

	inArray: function( elem, array ) {
		for ( var i = 0, length = array.length; i < length; i++ )
		// Use === because on IE, window == document
			if ( array[ i ] === elem )
				return i;

		return -1;
	},

	merge: function( first, second ) {
		// We have to loop this way because IE & Opera overwrite the length
		// expando of getElementsByTagName
		var i = 0, elem, pos = first.length;
		// Also, we need to make sure that the correct elements are being returned
		// (IE returns comment nodes in a '*' query)
		if ( !jQuery.support.getAll ) {
			while ( (elem = second[ i++ ]) != null )
				if ( elem.nodeType != 8 )
					first[ pos++ ] = elem;

		} else
			while ( (elem = second[ i++ ]) != null )
				first[ pos++ ] = elem;

		return first;
	},

	unique: function( array ) {
		var ret = [], done = {};

		try {

			for ( var i = 0, length = array.length; i < length; i++ ) {
				var id = jQuery.data( array[ i ] );

				if ( !done[ id ] ) {
					done[ id ] = true;
					ret.push( array[ i ] );
				}
			}

		} catch( e ) {
			ret = array;
		}

		return ret;
	},

	grep: function( elems, callback, inv ) {
		var ret = [];

		// Go through the array, only saving the items
		// that pass the validator function
		for ( var i = 0, length = elems.length; i < length; i++ )
			if ( !inv != !callback( elems[ i ], i ) )
				ret.push( elems[ i ] );

		return ret;
	},

	map: function( elems, callback ) {
		var ret = [];

		// Go through the array, translating each of the items to their
		// new value (or values).
		for ( var i = 0, length = elems.length; i < length; i++ ) {
			var value = callback( elems[ i ], i );

			if ( value != null )
				ret[ ret.length ] = value;
		}

		return ret.concat.apply( [], ret );
	}
});

// Use of jQuery.browser is deprecated.
// It's included for backwards compatibility and plugins,
// although they should work to migrate away.

var userAgent = navigator.userAgent.toLowerCase();

// Figure out what browser is being used
jQuery.browser = {
	version: (userAgent.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [0,'0'])[1],
	safari: /webkit/.test( userAgent ),
	opera: /opera/.test( userAgent ),
	msie: /msie/.test( userAgent ) && !/opera/.test( userAgent ),
	mozilla: /mozilla/.test( userAgent ) && !/(compatible|webkit)/.test( userAgent )
};

jQuery.each({
	parent: function(elem){return elem.parentNode;},
	parents: function(elem){return jQuery.dir(elem,"parentNode");},
	next: function(elem){return jQuery.nth(elem,2,"nextSibling");},
	prev: function(elem){return jQuery.nth(elem,2,"previousSibling");},
	nextAll: function(elem){return jQuery.dir(elem,"nextSibling");},
	prevAll: function(elem){return jQuery.dir(elem,"previousSibling");},
	siblings: function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},
	children: function(elem){return jQuery.sibling(elem.firstChild);},
	contents: function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}
}, function(name, fn){
	jQuery.fn[ name ] = function( selector ) {
		var ret = jQuery.map( this, fn );

		if ( selector && typeof selector == "string" )
			ret = jQuery.multiFilter( selector, ret );

		return this.pushStack( jQuery.unique( ret ), name, selector );
	};
});

jQuery.each({
	appendTo: "append",
	prependTo: "prepend",
	insertBefore: "before",
	insertAfter: "after",
	replaceAll: "replaceWith"
}, function(name, original){
	jQuery.fn[ name ] = function( selector ) {
		var ret = [], insert = jQuery( selector );

		for ( var i = 0, l = insert.length; i < l; i++ ) {
			var elems = (i > 0 ? this.clone(true) : this).get();
			jQuery.fn[ original ].apply( jQuery(insert[i]), elems );
			ret = ret.concat( elems );
		}

		return this.pushStack( ret, name, selector );
	};
});

jQuery.each({
	removeAttr: function( name ) {
		jQuery.attr( this, name, "" );
		if (this.nodeType == 1)
			this.removeAttribute( name );
	},

	addClass: function( classNames ) {
		jQuery.className.add( this, classNames );
	},

	removeClass: function( classNames ) {
		jQuery.className.remove( this, classNames );
	},

	toggleClass: function( classNames, state ) {
		if( typeof state !== "boolean" )
			state = !jQuery.className.has( this, classNames );
		jQuery.className[ state ? "add" : "remove" ]( this, classNames );
	},

	remove: function( selector ) {
		if ( !selector || jQuery.filter( selector, [ this ] ).length ) {
			// Prevent memory leaks
			jQuery( "*", this ).add([this]).each(function(){
				jQuery.event.remove(this);
				jQuery.removeData(this);
			});
			if (this.parentNode)
				this.parentNode.removeChild( this );
		}
	},

	empty: function() {
		// Remove element nodes and prevent memory leaks
		jQuery(this).children().remove();

		// Remove any remaining nodes
		while ( this.firstChild )
			this.removeChild( this.firstChild );
	}
}, function(name, fn){
	jQuery.fn[ name ] = function(){
		return this.each( fn, arguments );
	};
});

// Helper function used by the dimensions and offset modules
function num(elem, prop) {
	return elem[0] && parseInt( jQuery.curCSS(elem[0], prop, true), 10 ) || 0;
}
var expando = "jQuery" + now(), uuid = 0, windowData = {};

jQuery.extend({
	cache: {},

	data: function( elem, name, data ) {
		elem = elem == window ?
			windowData :
			elem;

		var id = elem[ expando ];

		// Compute a unique ID for the element
		if ( !id )
			id = elem[ expando ] = ++uuid;

		// Only generate the data cache if we're
		// trying to access or manipulate it
		if ( name && !jQuery.cache[ id ] )
			jQuery.cache[ id ] = {};

		// Prevent overriding the named cache with undefined values
		if ( data !== undefined )
			jQuery.cache[ id ][ name ] = data;

		// Return the named cache data, or the ID for the element
		return name ?
			jQuery.cache[ id ][ name ] :
			id;
	},

	removeData: function( elem, name ) {
		elem = elem == window ?
			windowData :
			elem;

		var id = elem[ expando ];

		// If we want to remove a specific section of the element's data
		if ( name ) {
			if ( jQuery.cache[ id ] ) {
				// Remove the section of cache data
				delete jQuery.cache[ id ][ name ];

				// If we've removed all the data, remove the element's cache
				name = "";

				for ( name in jQuery.cache[ id ] )
					break;

				if ( !name )
					jQuery.removeData( elem );
			}

		// Otherwise, we want to remove all of the element's data
		} else {
			// Clean up the element expando
			try {
				delete elem[ expando ];
			} catch(e){
				// IE has trouble directly removing the expando
				// but it's ok with using removeAttribute
				if ( elem.removeAttribute )
					elem.removeAttribute( expando );
			}

			// Completely remove the data cache
			delete jQuery.cache[ id ];
		}
	},
	queue: function( elem, type, data ) {
		if ( elem ){
	
			type = (type || "fx") + "queue";
	
			var q = jQuery.data( elem, type );
	
			if ( !q || jQuery.isArray(data) )
				q = jQuery.data( elem, type, jQuery.makeArray(data) );
			else if( data )
				q.push( data );
	
		}
		return q;
	},

	dequeue: function( elem, type ){
		var queue = jQuery.queue( elem, type ),
			fn = queue.shift();
		
		if( !type || type === "fx" )
			fn = queue[0];
			
		if( fn !== undefined )
			fn.call(elem);
	}
});

jQuery.fn.extend({
	data: function( key, value ){
		var parts = key.split(".");
		parts[1] = parts[1] ? "." + parts[1] : "";

		if ( value === undefined ) {
			var data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]);

			if ( data === undefined && this.length )
				data = jQuery.data( this[0], key );

			return data === undefined && parts[1] ?
				this.data( parts[0] ) :
				data;
		} else
			return this.trigger("setData" + parts[1] + "!", [parts[0], value]).each(function(){
				jQuery.data( this, key, value );
			});
	},

	removeData: function( key ){
		return this.each(function(){
			jQuery.removeData( this, key );
		});
	},
	queue: function(type, data){
		if ( typeof type !== "string" ) {
			data = type;
			type = "fx";
		}

		if ( data === undefined )
			return jQuery.queue( this[0], type );

		return this.each(function(){
			var queue = jQuery.queue( this, type, data );
			
			 if( type == "fx" && queue.length == 1 )
				queue[0].call(this);
		});
	},
	dequeue: function(type){
		return this.each(function(){
			jQuery.dequeue( this, type );
		});
	}
});/*!
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){

var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,
	done = 0,
	toString = Object.prototype.toString;

var Sizzle = function(selector, context, results, seed) {
	results = results || [];
	context = context || document;

	if ( context.nodeType !== 1 && context.nodeType !== 9 )
		return [];
	
	if ( !selector || typeof selector !== "string" ) {
		return results;
	}

	var parts = [], m, set, checkSet, check, mode, extra, prune = true;
	
	// Reset the position of the chunker regexp (start from head)
	chunker.lastIndex = 0;
	
	while ( (m = chunker.exec(selector)) !== null ) {
		parts.push( m[1] );
		
		if ( m[2] ) {
			extra = RegExp.rightContext;
			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 {
		var ret = seed ?
			{ expr: parts.pop(), set: makeArray(seed) } :
			Sizzle.find( parts.pop(), parts.length === 1 && context.parentNode ? context.parentNode : context, isXML(context) );
		set = Sizzle.filter( ret.expr, 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, isXML(context) );
		}
	}

	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.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, context, results, seed );

		if ( sortOrder ) {
			hasDuplicate = false;
			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.match[ type ].exec( expr )) ) {
			var left = RegExp.leftContext;

			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;
				}
			}
		}

		// Improper expression
		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\))?/
	},
	attrMap: {
		"class": "className",
		"for": "htmlFor"
	},
	attrHandle: {
		href: function(elem){
			return elem.getAttribute("href");
		}
	},
	relative: {
		"+": function(checkSet, part, isXML){
			var isPartStr = typeof part === "string",
				isTag = isPartStr && !/\W/.test(part),
				isPartStrNotTag = isPartStr && !isTag;

			if ( isTag && !isXML ) {
				part = part.toUpperCase();
			}

			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 === part ?
						elem || false :
						elem === part;
				}
			}

			if ( isPartStrNotTag ) {
				Sizzle.filter( part, checkSet, true );
			}
		},
		">": function(checkSet, part, isXML){
			var isPartStr = typeof part === "string";

			if ( isPartStr && !/\W/.test(part) ) {
				part = isXML ? part : part.toUpperCase();

				for ( var i = 0, l = checkSet.length; i < l; i++ ) {
					var elem = checkSet[i];
					if ( elem ) {
						var parent = elem.parentNode;
						checkSet[i] = parent.nodeName === 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 ( !part.match(/\W/) ) {
				var nodeCheck = part = isXML ? part : part.toUpperCase();
				checkFn = dirNodeCheck;
			}

			checkFn("parentNode", part, doneName, checkSet, nodeCheck, isXML);
		},
		"~": function(checkSet, part, isXML){
			var doneName = done++, checkFn = dirCheck;

			if ( typeof part === "string" && !part.match(/\W/) ) {
				var nodeCheck = part = isXML ? part : part.toUpperCase();
				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, isXML){
			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 + " ").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){
			for ( var i = 0; curLoop[i] === false; i++ ){}
			return curLoop[i] && isXML(curLoop[i]) ? match[1] : match[1].toUpperCase();
		},
		CHILD: function(match){
			if ( match[1] == "nth" ) {
				// parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6'
				var test = /(-?)(\d*)n((?:\+|-)?\d*)/.exec(
					match[2] == "even" && "2n" || match[2] == "odd" && "2n+1" ||
					!/\D/.test( match[2] ) && "0n+" + match[2] || match[2]);

				// calculate the numbers (first)n+(last) including if they are negative
				match[2] = (test[1] + (test[2] || 1)) - 0;
				match[3] = test[3] - 0;
			}

			// TODO: Move to normal caching system
			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 we're dealing with a complex expression, or a simple one
				if ( match[3].match(chunker).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){
			// Accessing this property makes selected-by-default
			// options in Safari work properly
			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.toUpperCase() === "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 || "").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;
			}
		},
		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 === 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 ] = RegExp( Expr.match[ type ].source + /(?![^\[]*\])(?![^\(]*\))/.source );
}

var makeArray = function(array, results) {
	array = Array.prototype.slice.call( array );

	if ( results ) {
		results.push.apply( results, array );
		return results;
	}
	
	return array;
};

// Perform a simple check to determine if the browser is capable of
// converting a NodeList to an array using builtin methods.
try {
	Array.prototype.slice.call( document.documentElement.childNodes );

// Provide a fallback method if it does not work
} 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 ) {
		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 ) {
		var ret = a.sourceIndex - b.sourceIndex;
		if ( ret === 0 ) {
			hasDuplicate = true;
		}
		return ret;
	};
} else if ( document.createRange ) {
	sortOrder = function( a, b ) {
		var aRange = a.ownerDocument.createRange(), bRange = b.ownerDocument.createRange();
		aRange.selectNode(a);
		aRange.collapse(true);
		bRange.selectNode(b);
		bRange.collapse(true);
		var ret = aRange.compareBoundaryPoints(Range.START_TO_END, bRange);
		if ( ret === 0 ) {
			hasDuplicate = true;
		}
		return ret;
	};
}

// Check to see if the browser returns elements by name when
// querying by getElementById (and provide a workaround)
(function(){
	// We're going to inject a fake input element with a specified name
	var form = document.createElement("form"),
		id = "script" + (new Date).getTime();
	form.innerHTML = "<input name='" + id + "'/>";

	// Inject it into the root element, check its status, and remove it quickly
	var root = document.documentElement;
	root.insertBefore( form, root.firstChild );

	// The workaround has to do additional checks after a getElementById
	// Which slows things down for other browsers (hence the branching)
	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 );
})();

(function(){
	// Check to see if the browser returns only elements
	// when doing getElementsByTagName("*")

	// Create a fake element
	var div = document.createElement("div");
	div.appendChild( document.createComment("") );

	// Make sure no comments are found
	if ( div.getElementsByTagName("*").length > 0 ) {
		Expr.find.TAG = function(match, context){
			var results = context.getElementsByTagName(match[1]);

			// Filter out possible comments
			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;
		};
	}

	// Check to see if an attribute returns normalized href attributes
	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);
		};
	}
})();

if ( document.querySelectorAll ) (function(){
	var oldSizzle = Sizzle, div = document.createElement("div");
	div.innerHTML = "<p class='TEST'></p>";

	// Safari can't handle uppercase or unicode characters when
	// in quirks mode.
	if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) {
		return;
	}
	
	Sizzle = function(query, context, extra, seed){
		context = context || document;

		// Only use querySelectorAll on non-XML documents
		// (ID selectors don't work in non-HTML documents)
		if ( !seed && context.nodeType === 9 && !isXML(context) ) {
			try {
				return makeArray( context.querySelectorAll(query), extra );
			} catch(e){}
		}
		
		return oldSizzle(query, context, extra, seed);
	};

	Sizzle.find = oldSizzle.find;
	Sizzle.filter = oldSizzle.filter;
	Sizzle.selectors = oldSizzle.selectors;
	Sizzle.matches = oldSizzle.matches;
})();

if ( document.getElementsByClassName && document.documentElement.getElementsByClassName ) (function(){
	var div = document.createElement("div");
	div.innerHTML = "<div class='test e'></div><div class='test'></div>";

	// Opera can't find a second classname (in 9.6)
	if ( div.getElementsByClassName("e").length === 0 )
		return;

	// Safari caches class attributes, doesn't catch changes (in 3.2)
	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]);
		}
	};
})();

function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
	var sibDir = dir == "previousSibling" && !isXML;
	for ( var i = 0, l = checkSet.length; i < l; i++ ) {
		var elem = checkSet[i];
		if ( elem ) {
			if ( sibDir && elem.nodeType === 1 ){
				elem.sizcache = doneName;
				elem.sizset = i;
			}
			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 === cur ) {
					match = elem;
					break;
				}

				elem = elem[dir];
			}

			checkSet[i] = match;
		}
	}
}

function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
	var sibDir = dir == "previousSibling" && !isXML;
	for ( var i = 0, l = checkSet.length; i < l; i++ ) {
		var elem = checkSet[i];
		if ( elem ) {
			if ( sibDir && elem.nodeType === 1 ) {
				elem.sizcache = doneName;
				elem.sizset = i;
			}
			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){
	return elem.nodeType === 9 && elem.documentElement.nodeName !== "HTML" ||
		!!elem.ownerDocument && isXML( elem.ownerDocument );
};

var posProcess = function(selector, context){
	var tmpSet = [], later = "", match,
		root = context.nodeType ? [context] : context;

	// Position selectors must be done after the filter
	// And so must :not(positional) so we move all PSEUDOs to the end
	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 );
};

// EXPOSE
jQuery.find = Sizzle;
jQuery.filter = Sizzle.filter;
jQuery.expr = Sizzle.selectors;
jQuery.expr[":"] = jQuery.expr.filters;

Sizzle.selectors.filters.hidden = function(elem){
	return elem.offsetWidth === 0 || elem.offsetHeight === 0;
};

Sizzle.selectors.filters.visible = function(elem){
	return elem.offsetWidth > 0 || elem.offsetHeight > 0;
};

Sizzle.selectors.filters.animated = function(elem){
	return jQuery.grep(jQuery.timers, function(fn){
		return elem === fn.elem;
	}).length;
};

jQuery.multiFilter = function( expr, elems, not ) {
	if ( not ) {
		expr = ":not(" + expr + ")";
	}

	return Sizzle.matches(expr, elems);
};

jQuery.dir = function( elem, dir ){
	var matched = [], cur = elem[dir];
	while ( cur && cur != document ) {
		if ( cur.nodeType == 1 )
			matched.push( cur );
		cur = cur[dir];
	}
	return matched;
};

jQuery.nth = function(cur, result, dir, elem){
	result = result || 1;
	var num = 0;

	for ( ; cur; cur = cur[dir] )
		if ( cur.nodeType == 1 && ++num == result )
			break;

	return cur;
};

jQuery.sibling = function(n, elem){
	var r = [];

	for ( ; n; n = n.nextSibling ) {
		if ( n.nodeType == 1 && n != elem )
			r.push( n );
	}

	return r;
};

return;

window.Sizzle = Sizzle;

})();
/*
 * A number of helper functions used for managing events.
 * Many of the ideas behind this code originated from
 * Dean Edwards' addEvent library.
 */
jQuery.event = {

	// Bind an event to an element
	// Original by Dean Edwards
	add: function(elem, types, handler, data) {
		if ( elem.nodeType == 3 || elem.nodeType == 8 )
			return;

		// For whatever reason, IE has trouble passing the window object
		// around, causing it to be cloned in the process
		if ( elem.setInterval && elem != window )
			elem = window;

		// Make sure that the function being executed has a unique ID
		if ( !handler.guid )
			handler.guid = this.guid++;

		// if data is passed, bind to handler
		if ( data !== undefined ) {
			// Create temporary function pointer to original handler
			var fn = handler;

			// Create unique handler function, wrapped around original handler
			handler = this.proxy( fn );

			// Store data in unique handler
			handler.data = data;
		}

		// Init the element's event structure
		var events = jQuery.data(elem, "events") || jQuery.data(elem, "events", {}),
			handle = jQuery.data(elem, "handle") || jQuery.data(elem, "handle", function(){
				// Handle the second event of a trigger and when
				// an event is called after a page has unloaded
				return typeof jQuery !== "undefined" && !jQuery.event.triggered ?
					jQuery.event.handle.apply(arguments.callee.elem, arguments) :
					undefined;
			});
		// Add elem as a property of the handle function
		// This is to prevent a memory leak with non-native
		// event in IE.
		handle.elem = elem;

		// Handle multiple events separated by a space
		// jQuery(...).bind("mouseover mouseout", fn);
		jQuery.each(types.split(/\s+/), function(index, type) {
			// Namespaced event handlers
			var namespaces = type.split(".");
			type = namespaces.shift();
			handler.type = namespaces.slice().sort().join(".");

			// Get the current list of functions bound to this event
			var handlers = events[type];
			
			if ( jQuery.event.specialAll[type] )
				jQuery.event.specialAll[type].setup.call(elem, data, namespaces);

			// Init the event handler queue
			if (!handlers) {
				handlers = events[type] = {};

				// Check for a special event handler
				// Only use addEventListener/attachEvent if the special
				// events handler returns false
				if ( !jQuery.event.special[type] || jQuery.event.special[type].setup.call(elem, data, namespaces) === false ) {
					// Bind the global event handler to the element
					if (elem.addEventListener)
						elem.addEventListener(type, handle, false);
					else if (elem.attachEvent)
						elem.attachEvent("on" + type, handle);
				}
			}

			// Add the function to the element's handler list
			handlers[handler.guid] = handler;

			// Keep track of which events have been used, for global triggering
			jQuery.event.global[type] = true;
		});

		// Nullify elem to prevent memory leaks in IE
		elem = null;
	},

	guid: 1,
	global: {},

	// Detach an event or set of events from an element
	remove: function(elem, types, handler) {
		// don't do events on text and comment nodes
		if ( elem.nodeType == 3 || elem.nodeType == 8 )
			return;

		var events = jQuery.data(elem, "events"), ret, index;

		if ( events ) {
			// Unbind all events for the element
			if ( types === undefined || (typeof types === "string" && types.charAt(0) == ".") )
				for ( var type in events )
					this.remove( elem, type + (types || "") );
			else {
				// types is actually an event object here
				if ( types.type ) {
					handler = types.handler;
					types = types.type;
				}

				// Handle multiple events seperated by a space
				// jQuery(...).unbind("mouseover mouseout", fn);
				jQuery.each(types.split(/\s+/), function(index, type){
					// Namespaced event handlers
					var namespaces = type.split(".");
					type = namespaces.shift();
					var namespace = RegExp("(^|\\.)" + namespaces.slice().sort().join(".*\\.") + "(\\.|$)");

					if ( events[type] ) {
						// remove the given handler for the given type
						if ( handler )
							delete events[type][handler.guid];

						// remove all handlers for the given type
						else
							for ( var handle in events[type] )
								// Handle the removal of namespaced events
								if ( namespace.test(events[type][handle].type) )
									delete events[type][handle];
									
						if ( jQuery.event.specialAll[type] )
							jQuery.event.specialAll[type].teardown.call(elem, namespaces);

						// remove generic event handler if no more handlers exist
						for ( ret in events[type] ) break;
						if ( !ret ) {
							if ( !jQuery.event.special[type] || jQuery.event.special[type].teardown.call(elem, namespaces) === false ) {
								if (elem.removeEventListener)
									elem.removeEventListener(type, jQuery.data(elem, "handle"), false);
								else if (elem.detachEvent)
									elem.detachEvent("on" + type, jQuery.data(elem, "handle"));
							}
							ret = null;
							delete events[type];
						}
					}
				});
			}

			// Remove the expando if it's no longer used
			for ( ret in events ) break;
			if ( !ret ) {
				var handle = jQuery.data( elem, "handle" );
				if ( handle ) handle.elem = null;
				jQuery.removeData( elem, "events" );
				jQuery.removeData( elem, "handle" );
			}
		}
	},

	// bubbling is internal
	trigger: function( event, data, elem, bubbling ) {
		// Event object or event type
		var type = event.type || event;

		if( !bubbling ){
			event = typeof event === "object" ?
				// jQuery.Event object
				event[expando] ? event :
				// Object literal
				jQuery.extend( jQuery.Event(type), event ) :
				// Just the event type (string)
				jQuery.Event(type);

			if ( type.indexOf("!") >= 0 ) {
				event.type = type = type.slice(0, -1);
				event.exclusive = true;
			}

			// Handle a global trigger
			if ( !elem ) {
				// Don't bubble custom events when global (to avoid too much overhead)
				event.stopPropagation();
				// Only trigger if we've ever bound an event for it
				if ( this.global[type] )
					jQuery.each( jQuery.cache, function(){
						if ( this.events && this.events[type] )
							jQuery.event.trigger( event, data, this.handle.elem );
					});
			}

			// Handle triggering a single element

			// don't do events on text and comment nodes
			if ( !elem || elem.nodeType == 3 || elem.nodeType == 8 )
				return undefined;
			
			// Clean up in case it is reused
			event.result = undefined;
			event.target = elem;
			
			// Clone the incoming data, if any
			data = jQuery.makeArray(data);
			data.unshift( event );
		}

		event.currentTarget = elem;

		// Trigger the event, it is assumed that "handle" is a function
		var handle = jQuery.data(elem, "handle");
		if ( handle )
			handle.apply( elem, data );

		// Handle triggering native .onfoo handlers (and on links since we don't call .click() for links)
		if ( (!elem[type] || (jQuery.nodeName(elem, 'a') && type == "click")) && elem["on"+type] && elem["on"+type].apply( elem, data ) === false )
			event.result = false;

		// Trigger the native events (except for clicks on links)
		if ( !bubbling && elem[type] && !event.isDefaultPrevented() && !(jQuery.nodeName(elem, 'a') && type == "click") ) {
			this.triggered = true;
			try {
				elem[ type ]();
			// prevent IE from throwing an error for some hidden elements
			} catch (e) {}
		}

		this.triggered = false;

		if ( !event.isPropagationStopped() ) {
			var parent = elem.parentNode || elem.ownerDocument;
			if ( parent )
				jQuery.event.trigger(event, data, parent, true);
		}
	},

	handle: function(event) {
		// returned undefined or false
		var all, handlers;

		event = arguments[0] = jQuery.event.fix( event || window.event );
		event.currentTarget = this;
		
		// Namespaced event handlers
		var namespaces = event.type.split(".");
		event.type = namespaces.shift();

		// Cache this now, all = true means, any handler
		all = !namespaces.length && !event.exclusive;
		
		var namespace = RegExp("(^|\\.)" + namespaces.slice().sort().join(".*\\.") + "(\\.|$)");

		handlers = ( jQuery.data(this, "events") || {} )[event.type];

		for ( var j in handlers ) {
			var handler = handlers[j];

			// Filter the functions by class
			if ( all || namespace.test(handler.type) ) {
				// Pass in a reference to the handler function itself
				// So that we can later remove it
				event.handler = handler;
				event.data = handler.data;

				var ret = handler.apply(this, arguments);

				if( ret !== undefined ){
					event.result = ret;
					if ( ret === false ) {
						event.preventDefault();
						event.stopPropagation();
					}
				}

				if( event.isImmediatePropagationStopped() )
					break;

			}
		}
	},

	props: "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),

	fix: function(event) {
		if ( event[expando] )
			return event;

		// store a copy of the original event object
		// and "clone" to set read-only properties
		var originalEvent = event;
		event = jQuery.Event( originalEvent );

		for ( var i = this.props.length, prop; i; ){
			prop = this.props[ --i ];
			event[ prop ] = originalEvent[ prop ];
		}

		// Fix target property, if necessary
		if ( !event.target )
			event.target = event.srcElement || document; // Fixes #1925 where srcElement might not be defined either

		// check if target is a textnode (safari)
		if ( event.target.nodeType == 3 )
			event.target = event.target.parentNode;

		// Add relatedTarget, if necessary
		if ( !event.relatedTarget && event.fromElement )
			event.relatedTarget = event.fromElement == event.target ? event.toElement : event.fromElement;

		// Calculate pageX/Y if missing and clientX/Y available
		if ( event.pageX == null && event.clientX != null ) {
			var doc = document.documentElement, body = document.body;
			event.pageX = event.clientX + (doc && doc.scrollLeft || body && body.scrollLeft || 0) - (doc.clientLeft || 0);
			event.pageY = event.clientY + (doc && doc.scrollTop || body && body.scrollTop || 0) - (doc.clientTop || 0);
		}

		// Add which for key events
		if ( !event.which && ((event.charCode || event.charCode === 0) ? event.charCode : event.keyCode) )
			event.which = event.charCode || event.keyCode;

		// Add metaKey to non-Mac browsers (use ctrl for PC's and Meta for Macs)
		if ( !event.metaKey && event.ctrlKey )
			event.metaKey = event.ctrlKey;

		// Add which for click: 1 == left; 2 == middle; 3 == right
		// Note: button is not normalized, so don't use it
		if ( !event.which && event.button )
			event.which = (event.button & 1 ? 1 : ( event.button & 2 ? 3 : ( event.button & 4 ? 2 : 0 ) ));

		return event;
	},

	proxy: function( fn, proxy ){
		proxy = proxy || function(){ return fn.apply(this, arguments); };
		// Set the guid of unique handler to the same of original handler, so it can be removed
		proxy.guid = fn.guid = fn.guid || proxy.guid || this.guid++;
		// So proxy can be declared as an argument
		return proxy;
	},

	special: {
		ready: {
			// Make sure the ready event is setup
			setup: bindReady,
			teardown: function() {}
		}
	},
	
	specialAll: {
		live: {
			setup: function( selector, namespaces ){
				jQuery.event.add( this, namespaces[0], liveHandler );
			},
			teardown:  function( namespaces ){
				if ( namespaces.length ) {
					var remove = 0, name = RegExp("(^|\\.)" + namespaces[0] + "(\\.|$)");
					
					jQuery.each( (jQuery.data(this, "events").live || {}), function(){
						if ( name.test(this.type) )
							remove++;
					});
					
					if ( remove < 1 )
						jQuery.event.remove( this, namespaces[0], liveHandler );
				}
			}
		}
	}
};

jQuery.Event = function( src ){
	// Allow instantiation without the 'new' keyword
	if( !this.preventDefault )
		return new jQuery.Event(src);
	
	// Event object
	if( src && src.type ){
		this.originalEvent = src;
		this.type = src.type;
	// Event type
	}else
		this.type = src;

	// timeStamp is buggy for some events on Firefox(#3843)
	// So we won't rely on the native value
	this.timeStamp = now();
	
	// Mark it as fixed
	this[expando] = true;
};

function returnFalse(){
	return false;
}
function returnTrue(){
	return true;
}

// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
jQuery.Event.prototype = {
	preventDefault: function() {
		this.isDefaultPrevented = returnTrue;

		var e = this.originalEvent;
		if( !e )
			return;
		// if preventDefault exists run it on the original event
		if (e.preventDefault)
			e.preventDefault();
		// otherwise set the returnValue property of the original event to false (IE)
		e.returnValue = false;
	},
	stopPropagation: function() {
		this.isPropagationStopped = returnTrue;

		var e = this.originalEvent;
		if( !e )
			return;
		// if stopPropagation exists run it on the original event
		if (e.stopPropagation)
			e.stopPropagation();
		// otherwise set the cancelBubble property of the original event to true (IE)
		e.cancelBubble = true;
	},
	stopImmediatePropagation:function(){
		this.isImmediatePropagationStopped = returnTrue;
		this.stopPropagation();
	},
	isDefaultPrevented: returnFalse,
	isPropagationStopped: returnFalse,
	isImmediatePropagationStopped: returnFalse
};
// Checks if an event happened on an element within another element
// Used in jQuery.event.special.mouseenter and mouseleave handlers
var withinElement = function(event) {
	// Check if mouse(over|out) are still within the same parent element
	var parent = event.relatedTarget;
	// Traverse up the tree
	while ( parent && parent != this )
		try { parent = parent.parentNode; }
		catch(e) { parent = this; }
	
	if( parent != this ){
		// set the correct event type
		event.type = event.data;
		// handle event if we actually just moused on to a non sub-element
		jQuery.event.handle.apply( this, arguments );
	}
};
	
jQuery.each({ 
	mouseover: 'mouseenter', 
	mouseout: 'mouseleave'
}, function( orig, fix ){
	jQuery.event.special[ fix ] = {
		setup: function(){
			jQuery.event.add( this, orig, withinElement, fix );
		},
		teardown: function(){
			jQuery.event.remove( this, orig, withinElement );
		}
	};			   
});

jQuery.fn.extend({
	bind: function( type, data, fn ) {
		return type == "unload" ? this.one(type, data, fn) : this.each(function(){
			jQuery.event.add( this, type, fn || data, fn && data );
		});
	},

	one: function( type, data, fn ) {
		var one = jQuery.event.proxy( fn || data, function(event) {
			jQuery(this).unbind(event, one);
			return (fn || data).apply( this, arguments );
		});
		return this.each(function(){
			jQuery.event.add( this, type, one, fn && data);
		});
	},

	unbind: function( type, fn ) {
		return this.each(function(){
			jQuery.event.remove( this, type, fn );
		});
	},

	trigger: function( type, data ) {
		return this.each(function(){
			jQuery.event.trigger( type, data, this );
		});
	},

	triggerHandler: function( type, data ) {
		if( this[0] ){
			var event = jQuery.Event(type);
			event.preventDefault();
			event.stopPropagation();
			jQuery.event.trigger( event, data, this[0] );
			return event.result;
		}		
	},

	toggle: function( fn ) {
		// Save reference to arguments for access in closure
		var args = arguments, i = 1;

		// link all the functions, so any of them can unbind this click handler
		while( i < args.length )
			jQuery.event.proxy( fn, args[i++] );

		return this.click( jQuery.event.proxy( fn, function(event) {
			// Figure out which function to execute
			this.lastToggle = ( this.lastToggle || 0 ) % i;

			// Make sure that clicks stop
			event.preventDefault();

			// and execute the function
			return args[ this.lastToggle++ ].apply( this, arguments ) || false;
		}));
	},

	hover: function(fnOver, fnOut) {
		return this.mouseenter(fnOver).mouseleave(fnOut);
	},

	ready: function(fn) {
		// Attach the listeners
		bindReady();

		// If the DOM is already ready
		if ( jQuery.isReady )
			// Execute the function immediately
			fn.call( document, jQuery );

		// Otherwise, remember the function for later
		else
			// Add the function to the wait list
			jQuery.readyList.push( fn );

		return this;
	},
	
	live: function( type, fn ){
		var proxy = jQuery.event.proxy( fn );
		proxy.guid += this.selector + type;

		jQuery(document).bind( liveConvert(type, this.selector), this.selector, proxy );

		return this;
	},
	
	die: function( type, fn ){
		jQuery(document).unbind( liveConvert(type, this.selector), fn ? { guid: fn.guid + this.selector + type } : null );
		return this;
	}
});

function liveHandler( event ){
	var check = RegExp("(^|\\.)" + event.type + "(\\.|$)"),
		stop = true,
		elems = [];

	jQuery.each(jQuery.data(this, "events").live || [], function(i, fn){
		if ( check.test(fn.type) ) {
			var elem = jQuery(event.target).closest(fn.data)[0];
			if ( elem )
				elems.push({ elem: elem, fn: fn });
		}
	});

	elems.sort(function(a,b) {
		return jQuery.data(a.elem, "closest") - jQuery.data(b.elem, "closest");
	});
	
	jQuery.each(elems, function(){
		if ( this.fn.call(this.elem, event, this.fn.data) === false )
			return (stop = false);
	});

	return stop;
}

function liveConvert(type, selector){
	return ["live", type, selector.replace(/\./g, "`").replace(/ /g, "|")].join(".");
}

jQuery.extend({
	isReady: false,
	readyList: [],
	// Handle when the DOM is ready
	ready: function() {
		// Make sure that the DOM is not already loaded
		if ( !jQuery.isReady ) {
			// Remember that the DOM is ready
			jQuery.isReady = true;

			// If there are functions bound, to execute
			if ( jQuery.readyList ) {
				// Execute all of them
				jQuery.each( jQuery.readyList, function(){
					this.call( document, jQuery );
				});

				// Reset the list of functions
				jQuery.readyList = null;
			}

			// Trigger any bound ready events
			jQuery(document).triggerHandler("ready");
		}
	}
});

var readyBound = false;

function bindReady(){
	if ( readyBound ) return;
	readyBound = true;

	// Mozilla, Opera and webkit nightlies currently support this event
	if ( document.addEventListener ) {
		// Use the handy event callback
		document.addEventListener( "DOMContentLoaded", function(){
			document.removeEventListener( "DOMContentLoaded", arguments.callee, false );
			jQuery.ready();
		}, false );

	// If IE event model is used
	} else if ( document.attachEvent ) {
		// ensure firing before onload,
		// maybe late but safe also for iframes
		document.attachEvent("onreadystatechange", function(){
			if ( document.readyState === "complete" ) {
				document.detachEvent( "onreadystatechange", arguments.callee );
				jQuery.ready();
			}
		});

		// If IE and not an iframe
		// continually check to see if the document is ready
		if ( document.documentElement.doScroll && window == window.top ) (function(){
			if ( jQuery.isReady ) return;

			try {
				// If IE is used, use the trick by Diego Perini
				// http://javascript.nwbox.com/IEContentLoaded/
				document.documentElement.doScroll("left");
			} catch( error ) {
				setTimeout( arguments.callee, 0 );
				return;
			}

			// and execute any waiting functions
			jQuery.ready();
		})();
	}

	// A fallback to window.onload, that will always work
	jQuery.event.add( window, "load", jQuery.ready );
}

jQuery.each( ("blur,focus,load,resize,scroll,unload,click,dblclick," +
	"mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave," +
	"change,select,submit,keydown,keypress,keyup,error").split(","), function(i, name){

	// Handle event binding
	jQuery.fn[name] = function(fn){
		return fn ? this.bind(name, fn) : this.trigger(name);
	};
});

// Prevent memory leaks in IE
// And prevent errors on refresh with events like mouseover in other browsers
// Window isn't included so as not to unbind existing unload events
jQuery( window ).bind( 'unload', function(){ 
	for ( var id in jQuery.cache )
		// Skip the window
		if ( id != 1 && jQuery.cache[ id ].handle )
			jQuery.event.remove( jQuery.cache[ id ].handle.elem );
}); 
(function(){

	jQuery.support = {};

	var root = document.documentElement,
		script = document.createElement("script"),
		div = document.createElement("div"),
		id = "script" + (new Date).getTime();

	div.style.display = "none";
	div.innerHTML = '   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';

	var all = div.getElementsByTagName("*"),
		a = div.getElementsByTagName("a")[0];

	// Can't get basic test support
	if ( !all || !all.length || !a ) {
		return;
	}

	jQuery.support = {
		// IE strips leading whitespace when .innerHTML is used
		leadingWhitespace: div.firstChild.nodeType == 3,
		
		// Make sure that tbody elements aren't automatically inserted
		// IE will insert them into empty tables
		tbody: !div.getElementsByTagName("tbody").length,
		
		// Make sure that you can get all elements in an <object> element
		// IE 7 always returns no results
		objectAll: !!div.getElementsByTagName("object")[0]
			.getElementsByTagName("*").length,
		
		// Make sure that link elements get serialized correctly by innerHTML
		// This requires a wrapper element in IE
		htmlSerialize: !!div.getElementsByTagName("link").length,
		
		// Get the style information from getAttribute
		// (IE uses .cssText insted)
		style: /red/.test( a.getAttribute("style") ),
		
		// Make sure that URLs aren't manipulated
		// (IE normalizes it by default)
		hrefNormalized: a.getAttribute("href") === "/a",
		
		// Make sure that element opacity exists
		// (IE uses filter instead)
		opacity: a.style.opacity === "0.5",
		
		// Verify style float existence
		// (IE uses styleFloat instead of cssFloat)
		cssFloat: !!a.style.cssFloat,

		// Will be defined later
		scriptEval: false,
		noCloneEvent: true,
		boxModel: null
	};
	
	script.type = "text/javascript";
	try {
		script.appendChild( document.createTextNode( "window." + id + "=1;" ) );
	} catch(e){}

	root.insertBefore( script, root.firstChild );
	
	// Make sure that the execution of code works by injecting a script
	// tag with appendChild/createTextNode
	// (IE doesn't support this, fails, and uses .text instead)
	if ( window[ id ] ) {
		jQuery.support.scriptEval = true;
		delete window[ id ];
	}

	root.removeChild( script );

	if ( div.attachEvent && div.fireEvent ) {
		div.attachEvent("onclick", function(){
			// Cloning a node shouldn't copy over any
			// bound event handlers (IE does this)
			jQuery.support.noCloneEvent = false;
			div.detachEvent("onclick", arguments.callee);
		});
		div.cloneNode(true).fireEvent("onclick");
	}

	// Figure out if the W3C box model works as expected
	// document.body must exist before we can do this
	jQuery(function(){
		var div = document.createElement("div");
		div.style.width = div.style.paddingLeft = "1px";

		document.body.appendChild( div );
		jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2;
		document.body.removeChild( div ).style.display = 'none';
	});
})();

var styleFloat = jQuery.support.cssFloat ? "cssFloat" : "styleFloat";

jQuery.props = {
	"for": "htmlFor",
	"class": "className",
	"float": styleFloat,
	cssFloat: styleFloat,
	styleFloat: styleFloat,
	readonly: "readOnly",
	maxlength: "maxLength",
	cellspacing: "cellSpacing",
	rowspan: "rowSpan",
	tabindex: "tabIndex"
};
jQuery.fn.extend({
	// Keep a copy of the old load
	_load: jQuery.fn.load,

	load: function( url, params, callback ) {
		if ( typeof url !== "string" )
			return this._load( url );

		var off = url.indexOf(" ");
		if ( off >= 0 ) {
			var selector = url.slice(off, url.length);
			url = url.slice(0, off);
		}

		// Default to a GET request
		var type = "GET";

		// If the second parameter was provided
		if ( params )
			// If it's a function
			if ( jQuery.isFunction( params ) ) {
				// We assume that it's the callback
				callback = params;
				params = null;

			// Otherwise, build a param string
			} else if( typeof params === "object" ) {
				params = jQuery.param( params );
				type = "POST";
			}

		var self = this;

		// Request the remote document
		jQuery.ajax({
			url: url,
			type: type,
			dataType: "html",
			data: params,
			complete: function(res, status){
				// If successful, inject the HTML into all the matched elements
				if ( status == "success" || status == "notmodified" )
					// See if a selector was specified
					self.html( selector ?
						// Create a dummy div to hold the results
						jQuery("<div/>")
							// inject the contents of the document in, removing the scripts
							// to avoid any 'Permission Denied' errors in IE
							.append(res.responseText.replace(/<script(.|\s)*?\/script>/g, ""))

							// Locate the specified elements
							.find(selector) :

						// If not, just inject the full result
						res.responseText );

				if( callback )
					self.each( callback, [res.responseText, status, res] );
			}
		});
		return this;
	},

	serialize: function() {
		return jQuery.param(this.serializeArray());
	},
	serializeArray: function() {
		return this.map(function(){
			return this.elements ? jQuery.makeArray(this.elements) : this;
		})
		.filter(function(){
			return this.name && !this.disabled &&
				(this.checked || /select|textarea/i.test(this.nodeName) ||
					/text|hidden|password|search/i.test(this.type));
		})
		.map(function(i, elem){
			var val = jQuery(this).val();
			return val == null ? null :
				jQuery.isArray(val) ?
					jQuery.map( val, function(val, i){
						return {name: elem.name, value: val};
					}) :
					{name: elem.name, value: val};
		}).get();
	}
});

// Attach a bunch of functions for handling common AJAX events
jQuery.each( "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","), function(i,o){
	jQuery.fn[o] = function(f){
		return this.bind(o, f);
	};
});

var jsc = now();

jQuery.extend({
  
	get: function( url, data, callback, type ) {
		// shift arguments if data argument was ommited
		if ( jQuery.isFunction( data ) ) {
			callback = data;
			data = null;
		}

		return jQuery.ajax({
			type: "GET",
			url: url,
			data: data,
			success: callback,
			dataType: type
		});
	},

	getScript: function( url, callback ) {
		return jQuery.get(url, null, callback, "script");
	},

	getJSON: function( url, data, callback ) {
		return jQuery.get(url, data, callback, "json");
	},

	post: function( url, data, callback, type ) {
		if ( jQuery.isFunction( data ) ) {
			callback = data;
			data = {};
		}

		return jQuery.ajax({
			type: "POST",
			url: url,
			data: data,
			success: callback,
			dataType: type
		});
	},

	ajaxSetup: function( settings ) {
		jQuery.extend( jQuery.ajaxSettings, settings );
	},

	ajaxSettings: {
		url: location.href,
		global: true,
		type: "GET",
		contentType: "application/x-www-form-urlencoded",
		processData: true,
		async: true,
		/*
		timeout: 0,
		data: null,
		username: null,
		password: null,
		*/
		// Create the request object; Microsoft failed to properly
		// implement the XMLHttpRequest in IE7, so we use the ActiveXObject when it is available
		// This function can be overriden by calling jQuery.ajaxSetup
		xhr:function(){
			return window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
		},
		accepts: {
			xml: "application/xml, text/xml",
			html: "text/html",
			script: "text/javascript, application/javascript",
			json: "application/json, text/javascript",
			text: "text/plain",
			_default: "*/*"
		}
	},

	// Last-Modified header cache for next request
	lastModified: {},

	ajax: function( s ) {
		// Extend the settings, but re-extend 's' so that it can be
		// checked again later (in the test suite, specifically)
		s = jQuery.extend(true, s, jQuery.extend(true, {}, jQuery.ajaxSettings, s));

		var jsonp, jsre = /=\?(&|$)/g, status, data,
			type = s.type.toUpperCase();

		// convert data if not already a string
		if ( s.data && s.processData && typeof s.data !== "string" )
			s.data = jQuery.param(s.data);

		// Handle JSONP Parameter Callbacks
		if ( s.dataType == "jsonp" ) {
			if ( type == "GET" ) {
				if ( !s.url.match(jsre) )
					s.url += (s.url.match(/\?/) ? "&" : "?") + (s.jsonp || "callback") + "=?";
			} else if ( !s.data || !s.data.match(jsre) )
				s.data = (s.data ? s.data + "&" : "") + (s.jsonp || "callback") + "=?";
			s.dataType = "json";
		}

		// Build temporary JSONP function
		if ( s.dataType == "json" && (s.data && s.data.match(jsre) || s.url.match(jsre)) ) {
			jsonp = "jsonp" + jsc++;

			// Replace the =? sequence both in the query string and the data
			if ( s.data )
				s.data = (s.data + "").replace(jsre, "=" + jsonp + "$1");
			s.url = s.url.replace(jsre, "=" + jsonp + "$1");

			// We need to make sure
			// that a JSONP style response is executed properly
			s.dataType = "script";

			// Handle JSONP-style loading
			window[ jsonp ] = function(tmp){
				data = tmp;
				success();
				complete();
				// Garbage collect
				window[ jsonp ] = undefined;
				try{ delete window[ jsonp ]; } catch(e){}
				if ( head )
					head.removeChild( script );
			};
		}

		if ( s.dataType == "script" && s.cache == null )
			s.cache = false;

		if ( s.cache === false && type == "GET" ) {
			var ts = now();
			// try replacing _= if it is there
			var ret = s.url.replace(/(\?|&)_=.*?(&|$)/, "$1_=" + ts + "$2");
			// if nothing was replaced, add timestamp to the end
			s.url = ret + ((ret == s.url) ? (s.url.match(/\?/) ? "&" : "?") + "_=" + ts : "");
		}

		// If data is available, append data to url for get requests
		if ( s.data && type == "GET" ) {
			s.url += (s.url.match(/\?/) ? "&" : "?") + s.data;

			// IE likes to send both get and post data, prevent this
			s.data = null;
		}

		// Watch for a new set of requests
		if ( s.global && ! jQuery.active++ )
			jQuery.event.trigger( "ajaxStart" );

		// Matches an absolute URL, and saves the domain
		var parts = /^(\w+:)?\/\/([^\/?#]+)/.exec( s.url );

		// If we're requesting a remote document
		// and trying to load JSON or Script with a GET
		if ( s.dataType == "script" && type == "GET" && parts
			&& ( parts[1] && parts[1] != location.protocol || parts[2] != location.host )){

			var head = document.getElementsByTagName("head")[0];
			var script = document.createElement("script");
			script.src = s.url;
			if (s.scriptCharset)
				script.charset = s.scriptCharset;

			// Handle Script loading
			if ( !jsonp ) {
				var done = false;

				// Attach handlers for all browsers
				script.onload = script.onreadystatechange = function(){
					if ( !done && (!this.readyState ||
							this.readyState == "loaded" || this.readyState == "complete") ) {
						done = true;
						success();
						complete();

						// Handle memory leak in IE
						script.onload = script.onreadystatechange = null;
						head.removeChild( script );
					}
				};
			}

			head.appendChild(script);

			// We handle everything using the script element injection
			return undefined;
		}

		var requestDone = false;

		// Create the request object
		var xhr = s.xhr();

		// Open the socket
		// Passing null username, generates a login popup on Opera (#2865)
		if( s.username )
			xhr.open(type, s.url, s.async, s.username, s.password);
		else
			xhr.open(type, s.url, s.async);

		// Need an extra try/catch for cross domain requests in Firefox 3
		try {
			// Set the correct header, if data is being sent
			if ( s.data )
				xhr.setRequestHeader("Content-Type", s.contentType);

			// Set the If-Modified-Since header, if ifModified mode.
			if ( s.ifModified )
				xhr.setRequestHeader("If-Modified-Since",
					jQuery.lastModified[s.url] || "Thu, 01 Jan 1970 00:00:00 GMT" );

			// Set header so the called script knows that it's an XMLHttpRequest
			xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");

			// Set the Accepts header for the server, depending on the dataType
			xhr.setRequestHeader("Accept", s.dataType && s.accepts[ s.dataType ] ?
				s.accepts[ s.dataType ] + ", */*" :
				s.accepts._default );
		} catch(e){}

		// Allow custom headers/mimetypes and early abort
		if ( s.beforeSend && s.beforeSend(xhr, s) === false ) {
			// Handle the global AJAX counter
			if ( s.global && ! --jQuery.active )
				jQuery.event.trigger( "ajaxStop" );
			// close opended socket
			xhr.abort();
			return false;
		}

		if ( s.global )
			jQuery.event.trigger("ajaxSend", [xhr, s]);

		// Wait for a response to come back
		var onreadystatechange = function(isTimeout){
			// The request was aborted, clear the interval and decrement jQuery.active
			if (xhr.readyState == 0) {
				if (ival) {
					// clear poll interval
					clearInterval(ival);
					ival = null;
					// Handle the global AJAX counter
					if ( s.global && ! --jQuery.active )
						jQuery.event.trigger( "ajaxStop" );
				}
			// The transfer is complete and the data is available, or the request timed out
			} else if ( !requestDone && xhr && (xhr.readyState == 4 || isTimeout == "timeout") ) {
				requestDone = true;

				// clear poll interval
				if (ival) {
					clearInterval(ival);
					ival = null;
				}

				status = isTimeout == "timeout" ? "timeout" :
					!jQuery.httpSuccess( xhr ) ? "error" :
					s.ifModified && jQuery.httpNotModified( xhr, s.url ) ? "notmodified" :
					"success";

				if ( status == "success" ) {
					// Watch for, and catch, XML document parse errors
					try {
						// process the data (runs the xml through httpData regardless of callback)
						data = jQuery.httpData( xhr, s.dataType, s );
					} catch(e) {
						status = "parsererror";
					}
				}

				// Make sure that the request was successful or notmodified
				if ( status == "success" ) {
					// Cache Last-Modified header, if ifModified mode.
					var modRes;
					try {
						modRes = xhr.getResponseHeader("Last-Modified");
					} catch(e) {} // swallow exception thrown by FF if header is not available

					if ( s.ifModified && modRes )
						jQuery.lastModified[s.url] = modRes;

					// JSONP handles its own success callback
					if ( !jsonp )
						success();
				} else
					jQuery.handleError(s, xhr, status);

				// Fire the complete handlers
				complete();

				if ( isTimeout )
					xhr.abort();

				// Stop memory leaks
				if ( s.async )
					xhr = null;
			}
		};

		if ( s.async ) {
			// don't attach the handler to the request, just poll it instead
			var ival = setInterval(onreadystatechange, 13);

			// Timeout checker
			if ( s.timeout > 0 )
				setTimeout(function(){
					// Check to see if the request is still happening
					if ( xhr && !requestDone )
						onreadystatechange( "timeout" );
				}, s.timeout);
		}

		// Send the data
		try {
			xhr.send(s.data);
		} catch(e) {
			jQuery.handleError(s, xhr, null, e);
		}

		// firefox 1.5 doesn't fire statechange for sync requests
		if ( !s.async )
			onreadystatechange();

		function success(){
			// If a local callback was specified, fire it and pass it the data
			if ( s.success )
				s.success( data, status );

			// Fire the global callback
			if ( s.global )
				jQuery.event.trigger( "ajaxSuccess", [xhr, s] );
		}

		function complete(){
			// Process result
			if ( s.complete )
				s.complete(xhr, status);

			// The request was completed
			if ( s.global )
				jQuery.event.trigger( "ajaxComplete", [xhr, s] );

			// Handle the global AJAX counter
			if ( s.global && ! --jQuery.active )
				jQuery.event.trigger( "ajaxStop" );
		}

		// return XMLHttpRequest to allow aborting the request etc.
		return xhr;
	},

	handleError: function( s, xhr, status, e ) {
		// If a local callback was specified, fire it
		if ( s.error ) s.error( xhr, status, e );

		// Fire the global callback
		if ( s.global )
			jQuery.event.trigger( "ajaxError", [xhr, s, e] );
	},

	// Counter for holding the number of active queries
	active: 0,

	// Determines if an XMLHttpRequest was successful or not
	httpSuccess: function( xhr ) {
		try {
			// IE error sometimes returns 1223 when it should be 204 so treat it as success, see #1450
			return !xhr.status && location.protocol == "file:" ||
				( xhr.status >= 200 && xhr.status < 300 ) || xhr.status == 304 || xhr.status == 1223;
		} catch(e){}
		return false;
	},

	// Determines if an XMLHttpRequest returns NotModified
	httpNotModified: function( xhr, url ) {
		try {
			var xhrRes = xhr.getResponseHeader("Last-Modified");

			// Firefox always returns 200. check Last-Modified date
			return xhr.status == 304 || xhrRes == jQuery.lastModified[url];
		} catch(e){}
		return false;
	},

	httpData: function( xhr, type, s ) {
		var ct = xhr.getResponseHeader("content-type"),
			xml = type == "xml" || !type && ct && ct.indexOf("xml") >= 0,
			data = xml ? xhr.responseXML : xhr.responseText;

		if ( xml && data.documentElement.tagName == "parsererror" )
			throw "parsererror";
			
		// Allow a pre-filtering function to sanitize the response
		// s != null is checked to keep backwards compatibility
		if( s && s.dataFilter )
			data = s.dataFilter( data, type );

		// The filter can actually parse the response
		if( typeof data === "string" ){

			// If the type is "script", eval it in global context
			if ( type == "script" )
				jQuery.globalEval( data );

			// Get the JavaScript object, if JSON is used.
			if ( type == "json" )
				data = window["eval"]("(" + data + ")");
		}
		
		return data;
	},

	// Serialize an array of form elements or a set of
	// key/values into a query string
	param: function( a ) {
		var s = [ ];

		function add( key, value ){
			s[ s.length ] = encodeURIComponent(key) + '=' + encodeURIComponent(value);
		};

		// If an array was passed in, assume that it is an array
		// of form elements
		if ( jQuery.isArray(a) || a.jquery )
			// Serialize the form elements
			jQuery.each( a, function(){
				add( this.name, this.value );
			});

		// Otherwise, assume that it's an object of key/value pairs
		else
			// Serialize the key/values
			for ( var j in a )
				// If the value is an array then the key names need to be repeated
				if ( jQuery.isArray(a[j]) )
					jQuery.each( a[j], function(){
						add( j, this );
					});
				else
					add( j, jQuery.isFunction(a[j]) ? a[j]() : a[j] );

		// Return the resulting serialization
		return s.join("&").replace(/%20/g, "+");
	}

});
var elemdisplay = {},
	timerId,
	fxAttrs = [
		// height animations
		[ "height", "marginTop", "marginBottom", "paddingTop", "paddingBottom" ],
		// width animations
		[ "width", "marginLeft", "marginRight", "paddingLeft", "paddingRight" ],
		// opacity animations
		[ "opacity" ]
	];

function genFx( type, num ){
	var obj = {};
	jQuery.each( fxAttrs.concat.apply([], fxAttrs.slice(0,num)), function(){
		obj[ this ] = type;
	});
	return obj;
}

jQuery.fn.extend({
	show: function(speed,callback){
		if ( speed ) {
			return this.animate( genFx("show", 3), speed, callback);
		} else {
			for ( var i = 0, l = this.length; i < l; i++ ){
				var old = jQuery.data(this[i], "olddisplay");
				
				this[i].style.display = old || "";
				
				if ( jQuery.css(this[i], "display") === "none" ) {
					var tagName = this[i].tagName, display;
					
					if ( elemdisplay[ tagName ] ) {
						display = elemdisplay[ tagName ];
					} else {
						var elem = jQuery("<" + tagName + " />").appendTo("body");
						
						display = elem.css("display");
						if ( display === "none" )
							display = "block";
						
						elem.remove();
						
						elemdisplay[ tagName ] = display;
					}
					
					jQuery.data(this[i], "olddisplay", display);
				}
			}

			// Set the display of the elements in a second loop
			// to avoid the constant reflow
			for ( var i = 0, l = this.length; i < l; i++ ){
				this[i].style.display = jQuery.data(this[i], "olddisplay") || "";
			}
			
			return this;
		}
	},

	hide: function(speed,callback){
		if ( speed ) {
			return this.animate( genFx("hide", 3), speed, callback);
		} else {
			for ( var i = 0, l = this.length; i < l; i++ ){
				var old = jQuery.data(this[i], "olddisplay");
				if ( !old && old !== "none" )
					jQuery.data(this[i], "olddisplay", jQuery.css(this[i], "display"));
			}

			// Set the display of the elements in a second loop
			// to avoid the constant reflow
			for ( var i = 0, l = this.length; i < l; i++ ){
				this[i].style.display = "none";
			}

			return this;
		}
	},

	// Save the old toggle function
	_toggle: jQuery.fn.toggle,

	toggle: function( fn, fn2 ){
		var bool = typeof fn === "boolean";

		return jQuery.isFunction(fn) && jQuery.isFunction(fn2) ?
			this._toggle.apply( this, arguments ) :
			fn == null || bool ?
				this.each(function(){
					var state = bool ? fn : jQuery(this).is(":hidden");
					jQuery(this)[ state ? "show" : "hide" ]();
				}) :
				this.animate(genFx("toggle", 3), fn, fn2);
	},

	fadeTo: function(speed,to,callback){
		return this.animate({opacity: to}, speed, callback);
	},

	animate: function( prop, speed, easing, callback ) {
		var optall = jQuery.speed(speed, easing, callback);

		return this[ optall.queue === false ? "each" : "queue" ](function(){
		
			var opt = jQuery.extend({}, optall), p,
				hidden = this.nodeType == 1 && jQuery(this).is(":hidden"),
				self = this;
	
			for ( p in prop ) {
				if ( prop[p] == "hide" && hidden || prop[p] == "show" && !hidden )
					return opt.complete.call(this);

				if ( ( p == "height" || p == "width" ) && this.style ) {
					// Store display property
					opt.display = jQuery.css(this, "display");

					// Make sure that nothing sneaks out
					opt.overflow = this.style.overflow;
				}
			}

			if ( opt.overflow != null )
				this.style.overflow = "hidden";

			opt.curAnim = jQuery.extend({}, prop);

			jQuery.each( prop, function(name, val){
				var e = new jQuery.fx( self, opt, name );

				if ( /toggle|show|hide/.test(val) )
					e[ val == "toggle" ? hidden ? "show" : "hide" : val ]( prop );
				else {
					var parts = val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),
						start = e.cur(true) || 0;

					if ( parts ) {
						var end = parseFloat(parts[2]),
							unit = parts[3] || "px";

						// We need to compute starting value
						if ( unit != "px" ) {
							self.style[ name ] = (end || 1) + unit;
							start = ((end || 1) / e.cur(true)) * start;
							self.style[ name ] = start + unit;
						}

						// If a +=/-= token was provided, we're doing a relative animation
						if ( parts[1] )
							end = ((parts[1] == "-=" ? -1 : 1) * end) + start;

						e.custom( start, end, unit );
					} else
						e.custom( start, val, "" );
				}
			});

			// For JS strict compliance
			return true;
		});
	},

	stop: function(clearQueue, gotoEnd){
		var timers = jQuery.timers;

		if (clearQueue)
			this.queue([]);

		this.each(function(){
			// go in reverse order so anything added to the queue during the loop is ignored
			for ( var i = timers.length - 1; i >= 0; i-- )
				if ( timers[i].elem == this ) {
					if (gotoEnd)
						// force the next step to be the last
						timers[i](true);
					timers.splice(i, 1);
				}
		});

		// start the next in the queue if the last step wasn't forced
		if (!gotoEnd)
			this.dequeue();

		return this;
	}

});

// Generate shortcuts for custom animations
jQuery.each({
	slideDown: genFx("show", 1),
	slideUp: genFx("hide", 1),
	slideToggle: genFx("toggle", 1),
	fadeIn: { opacity: "show" },
	fadeOut: { opacity: "hide" }
}, function( name, props ){
	jQuery.fn[ name ] = function( speed, callback ){
		return this.animate( props, speed, callback );
	};
});

jQuery.extend({

	speed: function(speed, easing, fn) {
		var opt = typeof speed === "object" ? speed : {
			complete: fn || !fn && easing ||
				jQuery.isFunction( speed ) && speed,
			duration: speed,
			easing: fn && easing || easing && !jQuery.isFunction(easing) && easing
		};

		opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
			jQuery.fx.speeds[opt.duration] || jQuery.fx.speeds._default;

		// Queueing
		opt.old = opt.complete;
		opt.complete = function(){
			if ( opt.queue !== false )
				jQuery(this).dequeue();
			if ( jQuery.isFunction( opt.old ) )
				opt.old.call( this );
		};

		return opt;
	},

	easing: {
		linear: function( p, n, firstNum, diff ) {
			return firstNum + diff * p;
		},
		swing: function( p, n, firstNum, diff ) {
			return ((-Math.cos(p*Math.PI)/2) + 0.5) * diff + firstNum;
		}
	},

	timers: [],

	fx: function( elem, options, prop ){
		this.options = options;
		this.elem = elem;
		this.prop = prop;

		if ( !options.orig )
			options.orig = {};
	}

});

jQuery.fx.prototype = {

	// Simple function for setting a style value
	update: function(){
		if ( this.options.step )
			this.options.step.call( this.elem, this.now, this );

		(jQuery.fx.step[this.prop] || jQuery.fx.step._default)( this );

		// Set display property to block for height/width animations
		if ( ( this.prop == "height" || this.prop == "width" ) && this.elem.style )
			this.elem.style.display = "block";
	},

	// Get the current size
	cur: function(force){
		if ( this.elem[this.prop] != null && (!this.elem.style || this.elem.style[this.prop] == null) )
			return this.elem[ this.prop ];

		var r = parseFloat(jQuery.css(this.elem, this.prop, force));
		return r && r > -10000 ? r : parseFloat(jQuery.curCSS(this.elem, this.prop)) || 0;
	},

	// Start an animation from one number to another
	custom: function(from, to, unit){
		this.startTime = now();
		this.start = from;
		this.end = to;
		this.unit = unit || this.unit || "px";
		this.now = this.start;
		this.pos = this.state = 0;

		var self = this;
		function t(gotoEnd){
			return self.step(gotoEnd);
		}

		t.elem = this.elem;

		if ( t() && jQuery.timers.push(t) && !timerId ) {
			timerId = setInterval(function(){
				var timers = jQuery.timers;

				for ( var i = 0; i < timers.length; i++ )
					if ( !timers[i]() )
						timers.splice(i--, 1);

				if ( !timers.length ) {
					clearInterval( timerId );
					timerId = undefined;
				}
			}, 13);
		}
	},

	// Simple 'show' function
	show: function(){
		// Remember where we started, so that we can go back to it later
		this.options.orig[this.prop] = jQuery.attr( this.elem.style, this.prop );
		this.options.show = true;

		// Begin the animation
		// Make sure that we start at a small width/height to avoid any
		// flash of content
		this.custom(this.prop == "width" || this.prop == "height" ? 1 : 0, this.cur());

		// Start by showing the element
		jQuery(this.elem).show();
	},

	// Simple 'hide' function
	hide: function(){
		// Remember where we started, so that we can go back to it later
		this.options.orig[this.prop] = jQuery.attr( this.elem.style, this.prop );
		this.options.hide = true;

		// Begin the animation
		this.custom(this.cur(), 0);
	},

	// Each step of an animation
	step: function(gotoEnd){
		var t = now();

		if ( gotoEnd || t >= this.options.duration + this.startTime ) {
			this.now = this.end;
			this.pos = this.state = 1;
			this.update();

			this.options.curAnim[ this.prop ] = true;

			var done = true;
			for ( var i in this.options.curAnim )
				if ( this.options.curAnim[i] !== true )
					done = false;

			if ( done ) {
				if ( this.options.display != null ) {
					// Reset the overflow
					this.elem.style.overflow = this.options.overflow;

					// Reset the display
					this.elem.style.display = this.options.display;
					if ( jQuery.css(this.elem, "display") == "none" )
						this.elem.style.display = "block";
				}

				// Hide the element if the "hide" operation was done
				if ( this.options.hide )
					jQuery(this.elem).hide();

				// Reset the properties, if the item has been hidden or shown
				if ( this.options.hide || this.options.show )
					for ( var p in this.options.curAnim )
						jQuery.attr(this.elem.style, p, this.options.orig[p]);
					
				// Execute the complete function
				this.options.complete.call( this.elem );
			}

			return false;
		} else {
			var n = t - this.startTime;
			this.state = n / this.options.duration;

			// Perform the easing function, defaults to swing
			this.pos = jQuery.easing[this.options.easing || (jQuery.easing.swing ? "swing" : "linear")](this.state, n, 0, 1, this.options.duration);
			this.now = this.start + ((this.end - this.start) * this.pos);

			// Perform the next step of the animation
			this.update();
		}

		return true;
	}

};

jQuery.extend( jQuery.fx, {
	speeds:{
		slow: 600,
 		fast: 200,
 		// Default speed
 		_default: 400
	},
	step: {

		opacity: function(fx){
			jQuery.attr(fx.elem.style, "opacity", fx.now);
		},

		_default: function(fx){
			if ( fx.elem.style && fx.elem.style[ fx.prop ] != null )
				fx.elem.style[ fx.prop ] = fx.now + fx.unit;
			else
				fx.elem[ fx.prop ] = fx.now;
		}
	}
});
if ( document.documentElement["getBoundingClientRect"] )
	jQuery.fn.offset = function() {
		if ( !this[0] ) return { top: 0, left: 0 };
		if ( this[0] === this[0].ownerDocument.body ) return jQuery.offset.bodyOffset( this[0] );
		var box  = this[0].getBoundingClientRect(), doc = this[0].ownerDocument, body = doc.body, docElem = doc.documentElement,
			clientTop = docElem.clientTop || body.clientTop || 0, clientLeft = docElem.clientLeft || body.clientLeft || 0,
			top  = box.top  + (self.pageYOffset || jQuery.boxModel && docElem.scrollTop  || body.scrollTop ) - clientTop,
			left = box.left + (self.pageXOffset || jQuery.boxModel && docElem.scrollLeft || body.scrollLeft) - clientLeft;
		return { top: top, left: left };
	};
else 
	jQuery.fn.offset = function() {
		if ( !this[0] ) return { top: 0, left: 0 };
		if ( this[0] === this[0].ownerDocument.body ) return jQuery.offset.bodyOffset( this[0] );
		jQuery.offset.initialized || jQuery.offset.initialize();

		var elem = this[0], offsetParent = elem.offsetParent, prevOffsetParent = elem,
			doc = elem.ownerDocument, computedStyle, docElem = doc.documentElement,
			body = doc.body, defaultView = doc.defaultView,
			prevComputedStyle = defaultView.getComputedStyle(elem, null),
			top = elem.offsetTop, left = elem.offsetLeft;

		while ( (elem = elem.parentNode) && elem !== body && elem !== docElem ) {
			computedStyle = defaultView.getComputedStyle(elem, null);
			top -= elem.scrollTop, left -= elem.scrollLeft;
			if ( elem === offsetParent ) {
				top += elem.offsetTop, left += elem.offsetLeft;
				if ( jQuery.offset.doesNotAddBorder && !(jQuery.offset.doesAddBorderForTableAndCells && /^t(able|d|h)$/i.test(elem.tagName)) )
					top  += parseInt( computedStyle.borderTopWidth,  10) || 0,
					left += parseInt( computedStyle.borderLeftWidth, 10) || 0;
				prevOffsetParent = offsetParent, offsetParent = elem.offsetParent;
			}
			if ( jQuery.offset.subtractsBorderForOverflowNotVisible && computedStyle.overflow !== "visible" )
				top  += parseInt( computedStyle.borderTopWidth,  10) || 0,
				left += parseInt( computedStyle.borderLeftWidth, 10) || 0;
			prevComputedStyle = computedStyle;
		}

		if ( prevComputedStyle.position === "relative" || prevComputedStyle.position === "static" )
			top  += body.offsetTop,
			left += body.offsetLeft;

		if ( prevComputedStyle.position === "fixed" )
			top  += Math.max(docElem.scrollTop, body.scrollTop),
			left += Math.max(docElem.scrollLeft, body.scrollLeft);

		return { top: top, left: left };
	};

jQuery.offset = {
	initialize: function() {
		if ( this.initialized ) return;
		var body = document.body, container = document.createElement('div'), innerDiv, checkDiv, table, td, rules, prop, bodyMarginTop = body.style.marginTop,
			html = '<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>';

		rules = { position: 'absolute', top: 0, left: 0, margin: 0, border: 0, width: '1px', height: '1px', visibility: 'hidden' };
		for ( prop in rules ) container.style[prop] = rules[prop];

		container.innerHTML = html;
		body.insertBefore(container, body.firstChild);
		innerDiv = container.firstChild, checkDiv = innerDiv.firstChild, td = innerDiv.nextSibling.firstChild.firstChild;

		this.doesNotAddBorder = (checkDiv.offsetTop !== 5);
		this.doesAddBorderForTableAndCells = (td.offsetTop === 5);

		innerDiv.style.overflow = 'hidden', innerDiv.style.position = 'relative';
		this.subtractsBorderForOverflowNotVisible = (checkDiv.offsetTop === -5);

		body.style.marginTop = '1px';
		this.doesNotIncludeMarginInBodyOffset = (body.offsetTop === 0);
		body.style.marginTop = bodyMarginTop;

		body.removeChild(container);
		this.initialized = true;
	},

	bodyOffset: function(body) {
		jQuery.offset.initialized || jQuery.offset.initialize();
		var top = body.offsetTop, left = body.offsetLeft;
		if ( jQuery.offset.doesNotIncludeMarginInBodyOffset )
			top  += parseInt( jQuery.curCSS(body, 'marginTop',  true), 10 ) || 0,
			left += parseInt( jQuery.curCSS(body, 'marginLeft', true), 10 ) || 0;
		return { top: top, left: left };
	}
};


jQuery.fn.extend({
	position: function() {
		var left = 0, top = 0, results;

		if ( this[0] ) {
			// Get *real* offsetParent
			var offsetParent = this.offsetParent(),

			// Get correct offsets
			offset       = this.offset(),
			parentOffset = /^body|html$/i.test(offsetParent[0].tagName) ? { top: 0, left: 0 } : offsetParent.offset();

			// Subtract element margins
			// note: when an element has margin: auto the offsetLeft and marginLeft 
			// are the same in Safari causing offset.left to incorrectly be 0
			offset.top  -= num( this, 'marginTop'  );
			offset.left -= num( this, 'marginLeft' );

			// Add offsetParent borders
			parentOffset.top  += num( offsetParent, 'borderTopWidth'  );
			parentOffset.left += num( offsetParent, 'borderLeftWidth' );

			// Subtract the two offsets
			results = {
				top:  offset.top  - parentOffset.top,
				left: offset.left - parentOffset.left
			};
		}

		return results;
	},

	offsetParent: function() {
		var offsetParent = this[0].offsetParent || document.body;
		while ( offsetParent && (!/^body|html$/i.test(offsetParent.tagName) && jQuery.css(offsetParent, 'position') == 'static') )
			offsetParent = offsetParent.offsetParent;
		return jQuery(offsetParent);
	}
});


// Create scrollLeft and scrollTop methods
jQuery.each( ['Left', 'Top'], function(i, name) {
	var method = 'scroll' + name;
	
	jQuery.fn[ method ] = function(val) {
		if (!this[0]) return null;

		return val !== undefined ?

			// Set the scroll offset
			this.each(function() {
				this == window || this == document ?
					window.scrollTo(
						!i ? val : jQuery(window).scrollLeft(),
						 i ? val : jQuery(window).scrollTop()
					) :
					this[ method ] = val;
			}) :

			// Return the scroll offset
			this[0] == window || this[0] == document ?
				self[ i ? 'pageYOffset' : 'pageXOffset' ] ||
					jQuery.boxModel && document.documentElement[ method ] ||
					document.body[ method ] :
				this[0][ method ];
	};
});
// Create innerHeight, innerWidth, outerHeight and outerWidth methods
jQuery.each([ "Height", "Width" ], function(i, name){

	var tl = i ? "Left"  : "Top",  // top or left
		br = i ? "Right" : "Bottom", // bottom or right
		lower = name.toLowerCase();

	// innerHeight and innerWidth
	jQuery.fn["inner" + name] = function(){
		return this[0] ?
			jQuery.css( this[0], lower, false, "padding" ) :
			null;
	};

	// outerHeight and outerWidth
	jQuery.fn["outer" + name] = function(margin) {
		return this[0] ?
			jQuery.css( this[0], lower, false, margin ? "margin" : "border" ) :
			null;
	};
	
	var type = name.toLowerCase();

	jQuery.fn[ type ] = function( size ) {
		// Get window width or height
		return this[0] == window ?
			// Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode
			document.compatMode == "CSS1Compat" && document.documentElement[ "client" + name ] ||
			document.body[ "client" + name ] :

			// Get document width or height
			this[0] == document ?
				// Either scroll[Width/Height] or offset[Width/Height], whichever is greater
				Math.max(
					document.documentElement["client" + name],
					document.body["scroll" + name], document.documentElement["scroll" + name],
					document.body["offset" + name], document.documentElement["offset" + name]
				) :

				// Get or set width or height on the element
				size === undefined ?
					// Get width or height on the element
					(this.length ? jQuery.css( this[0], type ) : null) :

					// Set the width or height on the element (default to pixels if value is unitless)
					this.css( type, typeof size === "string" ? size : size + "px" );
	};

});
})();
;
// $Id: drupal.js,v 1.41.2.4 2009/07/21 08:59:10 goba Exp $

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  $(Drupal.Panels.autoAttach);
})(jQuery);
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
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("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 2000 Adobe Systems Incorporated. All Rights Reserved. U.S. Patent
 * Des. pending.
 * 
 * Trademark:
 * Myriad is a registered trademark of Adobe Systems Incorporated.
 * 
 * Full name:
 * MyriadPro-Regular
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":108,"face":{"font-family":"Myriad Pro","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 3 3 4 3 2 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-17 -317 405 90","underline-thickness":"18","underline-position":"-18","stemh":"24","stemv":"32","unicode-range":"U+0020-U+FB04"},"glyphs":{" ":{"w":76,"k":{"\u038f":4,"\u038e":11,"\u038c":4,"\u0386":18}},"\u00a0":{"w":76,"k":{"T":15,"\u0166":15,"\u0164":15,"\u021a":15,"\u03a4":15,"V":13,"W":13,"\u1e82":13,"\u0174":13,"\u1e84":13,"\u1e80":13,"Y":17,"\u00dd":17,"\u0178":17,"\u1ef2":17,"\u2018":30,"\u201c":30,"\u201a":41,"\u201e":41}},"!":{"d":"54,-69r-25,0r-5,-174r35,0xm41,4v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22","w":82},"\"":{"d":"18,-249r31,0r-5,86r-20,0xm72,-249r31,0r-6,86r-19,0","w":121,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":21,"\u0134":21,"M":2,"\u039c":2,"V":-6,"W":-6,"\u1e82":-6,"\u0174":-6,"\u1e84":-6,"\u1e80":-6,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,"\u01fc":22,"\u0391":22,"\u039b":22,"f":-9,"\u00df":-9,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0111":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"t":-9,"\u0167":-9,"\u0165":-9,"\u021b":-9,"v":-8,"w":-8,"y":-8,"\u00fd":-8,"\u00ff":-8,"\u1e83":-8,"\u0175":-8,"\u1e85":-8,"\u1e81":-8,"\u1ef3":-8,",":41,".":41,"\u2026":41,"\ue000":32,"\u2126":8,"\u03a6":7,"\u03b5":21,"\u03ad":21,"\u03b3":2,"\u03bd":2,"\u03c1":27,"\u03c4":-3,"\u03b8":2,"\u03b6":6,"\u03be":6,"\u03c9":18,"\u03ce":18,"\u038f":-6,"\u038c":-6,"\u038e":-6,"\u0388":-6,"\u0389":-6,"\u038a":-6}},"#":{"d":"68,-92r37,0r7,-52r-37,0xm55,0r-21,0r9,-71r-30,0r0,-21r33,0r7,-52r-31,0r0,-21r34,0r10,-69r21,0r-10,69r38,0r9,-69r21,0r-9,69r30,0r0,21r-33,0r-6,52r31,0r0,21r-35,0r-9,71r-21,0r9,-71r-38,0","w":178},"$":{"d":"101,31r-23,0r0,-36v-21,0,-41,-7,-54,-16r8,-24v25,21,97,23,95,-20v0,-20,-14,-32,-41,-43v-37,-14,-59,-32,-59,-63v0,-30,21,-53,54,-58r0,-36r22,0r0,35v22,1,37,7,47,13r-9,24v-8,-4,-22,-13,-45,-13v-28,0,-38,16,-38,31v0,18,12,31,44,41v73,23,76,113,-1,128r0,37","w":184},"%":{"d":"11,-165v0,-47,25,-73,57,-73v32,0,53,25,53,70v0,49,-25,73,-55,73v-30,0,-55,-23,-55,-70xm66,-219v-19,0,-30,23,-30,53v0,30,10,52,30,52v21,0,30,-22,30,-53v0,-28,-8,-52,-30,-52xm83,4r-20,0r138,-242r20,0xm220,-141v32,0,54,24,54,69v0,98,-112,100,-111,4v0,-47,26,-73,57,-73xm219,-122v-19,0,-31,23,-31,53v0,30,11,52,31,52v21,0,30,-22,30,-53v0,-28,-8,-52,-30,-52","w":285},"&":{"d":"217,0r-38,0v-7,-7,-13,-13,-22,-23v-44,49,-146,26,-146,-41v0,-34,22,-55,48,-72v-37,-40,-24,-109,41,-111v30,0,54,20,54,52v0,27,-17,45,-54,66r59,67v11,-17,19,-39,24,-70r29,0v-6,38,-17,68,-35,89xm42,-69v0,53,73,63,99,27r-68,-76v-13,8,-31,23,-31,49xm98,-225v-42,0,-35,58,-12,79v25,-14,40,-27,40,-48v0,-15,-8,-31,-28,-31","w":217},"\u2019":{"d":"33,-246r33,-3v-8,30,-24,69,-34,86r-20,2v8,-21,17,-59,21,-85","w":74,"k":{"\u0129":14,"\u012f":14,"\u012b":14,"\u0133":14,"\u012d":14,"\u00ec":14,"\u00ef":14,"\u00ee":14,"\u00ed":14,"\u0131":14,"i":14,"T":-14,"\u0166":-14,"\u0164":-14,"\u021a":-14,"\u03a4":-14,"J":28,"\u0134":28,"M":3,"\u039c":3,"C":9,"G":9,"O":9,"Q":9,"\u00d8":9,"\u0152":9,"\u00c7":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"\u0106":9,"\u010c":9,"\u0108":9,"\u010a":9,"\u011e":9,"\u011c":9,"\u0122":9,"\u0120":9,"\u014e":9,"\u0150":9,"\u014c":9,"\u01fe":9,"\u0398":9,"\u039f":9,"V":-11,"W":-11,"\u1e82":-11,"\u0174":-11,"\u1e84":-11,"\u1e80":-11,"Y":-8,"\u00dd":-8,"\u0178":-8,"\u1ef2":-8,"A":32,"\u00c6":32,"\u00c1":32,"\u00c2":32,"\u00c4":32,"\u00c0":32,"\u00c5":32,"\u00c3":32,"\u0102":32,"\u0100":32,"\u0104":32,"\u01fc":32,"\u0391":32,"\u039b":32,"S":3,"\u0160":3,"\u015a":3,"\uf6c1":3,"\u015c":3,"\u0218":3,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"\u0103":6,"\u0101":6,"\u0105":6,"\u01fd":6,"g":18,"\u011f":18,"\u011d":18,"\u0123":18,"\u0121":18,"c":28,"d":28,"e":28,"o":28,"q":28,"\u00f8":28,"\u0153":28,"\u00e7":28,"\u00e9":28,"\u00ea":28,"\u00eb":28,"\u00e8":28,"\u00f3":28,"\u00f4":28,"\u00f6":28,"\u00f2":28,"\u00f5":28,"\u0107":28,"\u010d":28,"\u0109":28,"\u010b":28,"\u010f":28,"\u0111":28,"\u0115":28,"\u011b":28,"\u0117":28,"\u0113":28,"\u0119":28,"\u014f":28,"\u0151":28,"\u014d":28,"\u01ff":28,"s":26,"\u0161":26,"\u015b":26,"\uf6c2":26,"\u015d":26,"\u0219":26,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"m":14,"n":14,"p":14,"r":14,"\u00f1":14,"\u014b":14,"\u0144":14,"\u0148":14,"\u0146":14,"\u0155":14,"\u0159":14,"\u0157":14,"\u0138":14,"\u2019":21,"\u201d":21,",":55,".":55,"\u2026":55,"\u00a0":31,"\u0414":4,"\u0402":-2,"\u041b":4,"\u0409":4,"\u0422":-4,"\u042a":-4,"\u040b":-4,"\u0408":6,"\u0410":6,"\u0447":4,"\u0434":6,"\u0452":-2,"\u0458":2,"\u045b":-2}},"(":{"d":"70,-250r25,0v-26,36,-45,82,-45,148v0,64,20,110,45,146r-25,0v-23,-30,-47,-77,-47,-147v0,-71,24,-117,47,-147","w":102,"k":{"T":-17,"\u0166":-17,"\u0164":-17,"\u021a":-17,"\u03a4":-17,"J":-6,"\u0134":-6,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u0108":4,"\u010a":4,"\u011e":4,"\u011c":4,"\u0122":4,"\u0120":4,"\u014e":4,"\u0150":4,"\u014c":4,"\u01fe":4,"\u0398":4,"\u039f":4,"V":-18,"W":-18,"\u1e82":-18,"\u0174":-18,"\u1e84":-18,"\u1e80":-18,"X":-4,"\u03a7":-4,"Y":-15,"\u00dd":-15,"\u0178":-15,"\u1ef2":-15,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4,"\u0102":4,"\u0100":4,"\u0104":4,"\u01fc":4,"\u0391":4,"\u039b":4,"j":-20,"\u0135":-20,"\ue000":6,"\u03a6":8,"\u03a8":-2,"\u03a5":-4,"\u03ab":-4,"\u03c7":-1,"\u03bb":-3,"\u03c1":8,"\u03c4":2,"\u03b6":5,"\u03be":5,"\u03c9":2,"\u03ce":2,"\u038f":-8,"\u038c":-7,"\u038e":-4,"\u0388":-7,"\u0389":-7,"\u038a":-7,"\u0427":9,"\u0414":-8,"\u0402":-12,"\u041b":5,"\u0409":5,"\u0422":-13,"\u042a":-13,"\u040b":-13,"\u0408":5,"\u0423":-4,"\u040e":-4,"\u042f":4,"\u0447":18,"\u0434":-6,"\u0452":-2,"\u0442":8,"\u044a":8,"\u0458":-10,"\u045b":-2,"\u0443":6,"\u045e":6,"\u044f":5}},")":{"d":"32,44r-25,0v57,-62,59,-232,0,-294r25,0v23,30,47,76,47,147v0,71,-24,116,-47,147","w":102},"*":{"d":"97,-247r21,13r-34,45r55,-7r0,25v-18,-1,-39,-7,-55,-6r35,43r-23,13v-8,-16,-13,-35,-23,-50r-23,50r-20,-13r34,-44r-53,7r0,-25v17,1,38,7,53,6r-34,-44r22,-12v8,16,13,35,23,50","w":149},"+":{"d":"96,-192r23,0r0,85r81,0r0,22r-81,0r0,85r-23,0r0,-85r-82,0r0,-22r82,0r0,-85","w":214},",":{"d":"28,42r-22,3v8,-22,17,-61,21,-87r36,-3v-9,31,-25,70,-35,87","w":74,"k":{"\"":37,"'":37,"\u2018":37,"\u201c":37,"\u2019":41,"\u201d":41,"\u03a5":31,"\u03ab":31}},"-":{"d":"11,-109r89,0r0,23r-89,0r0,-23","w":110},"\u00ad":{"d":"11,-109r89,0r0,23r-89,0r0,-23","w":110,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,"\u03a4":18,"J":7,"\u0134":7,"C":-5,"G":-5,"O":-5,"Q":-5,"\u00d8":-5,"\u0152":-5,"\u00c7":-5,"\u00d3":-5,"\u00d4":-5,"\u00d6":-5,"\u00d2":-5,"\u00d5":-5,"\u0106":-5,"\u010c":-5,"\u0108":-5,"\u010a":-5,"\u011e":-5,"\u011c":-5,"\u0122":-5,"\u0120":-5,"\u014e":-5,"\u0150":-5,"\u014c":-5,"\u01fe":-5,"\u0398":-5,"\u039f":-5,"V":4,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"X":8,"\u03a7":8,"Y":18,"\u00dd":18,"\u0178":18,"\u1ef2":18,"A":1,"\u00c6":1,"\u00c1":1,"\u00c2":1,"\u00c4":1,"\u00c0":1,"\u00c5":1,"\u00c3":1,"\u0102":1,"\u0100":1,"\u0104":1,"\u01fc":1,"\u0391":1,"\u039b":1,"g":-5,"\u011f":-5,"\u011d":-5,"\u0123":-5,"\u0121":-5,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"\u00f8":-6,"\u0153":-6,"\u00e7":-6,"\u00e9":-6,"\u00ea":-6,"\u00eb":-6,"\u00e8":-6,"\u00f3":-6,"\u00f4":-6,"\u00f6":-6,"\u00f2":-6,"\u00f5":-6,"\u0107":-6,"\u010d":-6,"\u0109":-6,"\u010b":-6,"\u010f":-6,"\u0111":-6,"\u0115":-6,"\u011b":-6,"\u0117":-6,"\u0113":-6,"\u0119":-6,"\u014f":-6,"\u0151":-6,"\u014d":-6,"\u01ff":-6,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u1e83":2,"\u0175":2,"\u1e85":2,"\u1e81":2,"\u1ef3":2,"\u2126":-2,"\u03a6":-5,"\u03a8":5,"\u03a5":19,"\u03ab":19,"\u03a3":9,"\u03b6":-5,"\u03be":-5,"\u03c9":-4,"\u03ce":-4,"\u038f":-4,"\u038c":-4,"\u038e":19,"\u0427":5,"\u0414":5,"\u0402":15,"\u041b":3,"\u0409":3,"\u0422":12,"\u042a":12,"\u040b":12,"\u0408":9,"\u0423":12,"\u040e":12,"\u0416":6,"\u0425":10,"\u042f":3,"\u0447":3,"\u0434":6,"\u0452":3,"\u043b":4,"\u0459":4,"\u0442":4,"\u044a":4,"\u0458":2,"\u0443":4,"\u045e":4,"\u044f":2,"\u0436":5,"\u0445":2}},".":{"d":"40,4v-12,0,-21,-10,-21,-23v0,-13,8,-22,21,-22v13,0,22,9,22,22v0,13,-9,23,-22,23","w":74,"k":{"\"":37,"'":37,"\u2018":37,"\u201c":37,"\u2019":41,"\u201d":41,"\u03a5":31,"\u03ab":31}},"\/":{"d":"24,14r-24,0r100,-261r25,0","w":123},"0":{"d":"91,4v-46,0,-78,-43,-78,-120v0,-79,34,-122,82,-122v49,0,77,43,77,118v0,80,-30,124,-81,124xm45,-118v-1,61,17,97,48,97v32,0,47,-37,47,-97v0,-58,-14,-95,-47,-95v-29,0,-48,36,-48,95","w":184},"1":{"d":"85,0r-1,-204r-40,21r-7,-24v25,-10,40,-31,79,-27r0,234r-31,0","w":184},"2":{"d":"166,0r-150,0v-4,-27,13,-32,25,-44v58,-58,87,-87,87,-122v0,-24,-11,-46,-46,-46v-21,0,-39,11,-50,20r-10,-22v16,-13,40,-24,67,-24v50,0,71,35,71,68v0,47,-56,99,-99,144r105,0r0,26","w":184},"3":{"d":"15,-12r9,-24v9,5,30,14,52,14v40,0,53,-25,53,-45v-1,-39,-38,-50,-79,-47r0,-24v35,2,66,-5,70,-39v5,-40,-68,-42,-88,-20r-8,-23v13,-9,36,-18,61,-18v82,0,87,90,24,111v27,8,52,26,52,61v0,37,-29,70,-85,70v-26,0,-49,-8,-61,-16","w":184},"4":{"d":"144,0r-30,0r0,-64r-109,0r0,-21r105,-149r34,0r0,145r33,0r0,25r-33,0r0,64xm114,-89r0,-114v-22,44,-50,75,-77,114r77,0","w":184},"5":{"d":"58,-147v54,-8,99,16,103,71v5,69,-93,99,-146,66r8,-25v32,22,110,16,106,-38v7,-41,-52,-58,-100,-49r15,-112r112,0r0,27r-89,0","w":184},"6":{"d":"150,-238r0,26v-62,-1,-101,39,-105,85v34,-49,128,-27,128,48v0,43,-29,83,-78,83v-50,0,-83,-39,-83,-100v0,-89,51,-139,138,-142xm141,-77v0,-66,-97,-70,-97,-11v0,39,18,67,51,67v27,0,46,-23,46,-56","w":184},"7":{"d":"21,-234r147,0r0,21r-102,213r-32,0r101,-208r-114,0r0,-26","w":184},"8":{"d":"59,-122v-64,-31,-38,-118,36,-116v77,2,93,84,29,112v27,14,47,33,47,62v0,41,-34,68,-79,68v-91,0,-103,-102,-33,-126xm88,-112v-55,12,-58,92,5,93v28,0,46,-18,46,-42v0,-28,-19,-42,-51,-51xm93,-215v-26,0,-41,17,-41,37v0,23,18,36,45,43v42,-9,52,-78,-4,-80","w":184},"9":{"d":"35,4r0,-26v59,1,100,-33,104,-86v-36,49,-125,20,-125,-47v0,-44,33,-83,81,-83v95,0,90,167,37,208v-26,20,-57,34,-97,34xm46,-157v0,60,94,67,94,14v0,-40,-15,-71,-48,-71v-27,0,-46,24,-46,57","w":184},":":{"d":"40,-123v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22xm40,4v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22","w":74,"k":{"\u0414":-2,"\u0402":2,"\u0434":-2,"\u0442":-4,"\u044a":-4,"\u0458":2}},";":{"d":"28,42r-22,2v8,-21,18,-60,22,-86r35,-3v-9,31,-25,70,-35,87xm64,-145v0,13,-8,22,-22,22v-12,0,-20,-9,-20,-22v0,-13,9,-23,21,-23v13,0,21,10,21,23","w":74,"k":{"\u0414":-2,"\u0402":2,"\u0434":-2,"\u0442":-4,"\u044a":-4,"\u0458":2}},"<":{"d":"24,-86r0,-19r167,-87r0,25r-141,72r141,70r0,25","w":214},"=":{"d":"200,-121r-186,0r0,-22r186,0r0,22xm200,-51r-186,0r0,-21r186,0r0,21","w":214},">":{"d":"191,-106r0,20r-167,86r0,-25r142,-71r-142,-71r0,-25","w":214},"?":{"d":"79,-69r-28,0v-17,-43,45,-86,47,-121v2,-34,-50,-39,-71,-20r-9,-22v12,-9,33,-15,52,-15v77,3,68,78,29,116v-20,20,-24,37,-20,62xm64,4v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22","w":146},"@":{"d":"117,-43v36,0,48,-51,52,-89v-40,-13,-76,21,-75,62v0,16,7,27,23,27xm183,8r6,15v-78,40,-174,-3,-174,-98v0,-74,52,-138,132,-138v63,0,104,44,104,104v0,54,-29,86,-63,86v-15,0,-26,-13,-28,-32v-21,43,-88,45,-90,-14v-2,-58,63,-103,124,-78r-12,66v-5,27,-2,40,10,40v18,1,39,-25,39,-66v0,-53,-31,-90,-87,-90v-59,0,-108,47,-108,120v0,82,81,120,147,85","w":265},"A":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-8,39,-24,77,-36,114","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"\u03a4":28,"J":-7,"\u0134":-7,"M":1,"\u039c":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u0398":5,"\u039f":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"V":19,"W":19,"\u1e82":19,"\u0174":19,"\u1e84":19,"\u1e80":19,"X":5,"\u03a7":5,"Y":28,"\u00dd":28,"\u0178":28,"\u1ef2":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"j":1,"\u0135":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u1e83":8,"\u0175":8,"\u1e85":8,"\u1e81":8,"\u1ef3":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,")":3,"]":3,"}":3,"\"":21,"'":21,"\u2018":22,"\u201c":22,"\u2019":18,"\u201d":18,"\ue000":-4,"\u2126":-1,"\u03a6":8,"\u03a8":26,"\u03a5":36,"\u03ab":36,"\u03c7":10,"\u03b5":-3,"\u03ad":-3,"\u03b3":9,"\u03bd":9,"\u03bb":-4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4,"\u03c1":5,"\u03c4":9,"\u03b8":4,"\u03c5":4,"\u03c8":4,"\u03cd":4,"\u03cb":4,"\u03b0":4,"\u03b6":1,"\u03be":1}},"B":{"d":"180,-69v0,70,-85,76,-153,68r0,-238v57,-10,144,-11,144,55v0,25,-18,43,-41,54v23,5,50,25,50,61xm59,-218r0,78v42,4,80,-8,80,-41v0,-38,-46,-43,-80,-37xm59,-116r0,92v40,6,89,-1,88,-45v0,-42,-42,-50,-88,-47","w":195,"k":{"T":3,"\u0166":3,"\u0164":3,"\u021a":3,"\u03a4":3,"V":-1,"W":-1,"\u1e82":-1,"\u0174":-1,"\u1e84":-1,"\u1e80":-1,"Y":5,"\u00dd":5,"\u0178":5,"\u1ef2":5,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u1e83":-1,"\u0175":-1,"\u1e85":-1,"\u1e81":-1,"\u1ef3":-1,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u2019":-3,"\u201d":-3,",":5,".":5,"\u2026":5,"\u03a8":4,"\u03a5":6,"\u03ab":6,"\u03b5":-1,"\u03ad":-1,"\u03b3":-4,"\u03bd":-4}},"C":{"d":"190,-33r7,25v-11,6,-35,12,-65,12v-68,0,-119,-43,-119,-123v0,-97,98,-150,184,-117r-8,26v-67,-29,-143,8,-143,90v0,79,75,116,144,87","w":208,"k":{"\u0152":8,"T":-10,"\u0166":-10,"\u0164":-10,"\u021a":-10,"\u03a4":-10,"J":-1,"\u0134":-1,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u0398":8,"\u039f":8,"V":-4,"W":-4,"\u1e82":-4,"\u0174":-4,"\u1e84":-4,"\u1e80":-4,"A":-1,"\u00c6":-1,"\u00c1":-1,"\u00c2":-1,"\u00c4":-1,"\u00c0":-1,"\u00c5":-1,"\u00c3":-1,"\u0102":-1,"\u0100":-1,"\u0104":-1,"\u01fc":-1,"\u0391":-1,"\u039b":-1,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fd":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"\u1ef3":7,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,"\u00ab":4,"\u2039":4,")":-6,"]":-6,"}":-6,"\u2019":-7,"\u201d":-7}},"D":{"d":"227,-127v0,107,-90,142,-200,126r0,-238v103,-18,200,7,200,112xm59,-216r0,192v81,9,135,-25,135,-102v0,-69,-60,-107,-135,-90","w":239,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03be":-3,"\u03c0":-4}},"E":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0111":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,",":1,".":1,"\u2026":1,"\ue000":-4,"\u039e":-3,"\u03b5":-6,"\u03ad":-6,"\u03bb":-4,"\u03c4":-4,"\u03c0":-5}},"F":{"d":"27,0r0,-243r131,0r0,27r-99,0r0,80r91,0r0,26r-91,0r0,110r-32,0","w":175,"k":{"\u00ef":9,"J":31,"\u0134":31,"M":6,"\u039c":6,"A":28,"\u00c6":28,"\u00c1":28,"\u00c2":28,"\u00c4":28,"\u00c0":28,"\u00c5":28,"\u00c3":28,"\u0102":28,"\u0100":28,"\u0104":28,"\u01fc":28,"\u0391":28,"\u039b":28,"a":16,"\u00e6":16,"\u00e1":16,"\u00e2":16,"\u00e4":16,"\u00e0":16,"\u00e5":16,"\u00e3":16,"\u0103":16,"\u0101":16,"\u0105":16,"\u01fd":16,"g":6,"\u011f":6,"\u011d":6,"\u0123":6,"\u0121":6,"c":11,"d":11,"e":11,"o":11,"q":11,"\u00f8":11,"\u0153":11,"\u00e7":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00e8":11,"\u00f3":11,"\u00f4":11,"\u00f6":11,"\u00f2":11,"\u00f5":11,"\u0107":11,"\u010d":11,"\u0109":11,"\u010b":11,"\u010f":11,"\u0111":11,"\u0115":11,"\u011b":11,"\u0117":11,"\u0113":11,"\u0119":11,"\u014f":11,"\u0151":11,"\u014d":11,"\u01ff":11,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"\u016d":13,"\u0171":13,"\u016b":13,"\u0173":13,"\u016f":13,"\u0169":13,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u1e83":8,"\u0175":8,"\u1e85":8,"\u1e81":8,"\u1ef3":8,"b":6,"h":6,"k":6,"l":6,"\u0142":6,"\u0127":6,"\u0125":6,"\u0137":6,"\u013a":6,"\u013e":6,"\u013c":6,"\u0140":6,"i":9,"m":9,"n":9,"p":9,"r":9,"\u0131":9,"\u00ed":9,"\u00ee":9,"\u00ec":9,"\u00f1":9,"\u014b":9,"\u012d":9,"\u0133":9,"\u012b":9,"\u012f":9,"\u0129":9,"\u0144":9,"\u0148":9,"\u0146":9,"\u0155":9,"\u0159":9,"\u0157":9,"\u0138":9,":":5,";":5,"\u203a":5,"\u00bb":5,"\u00ab":5,"\u2039":5,"\u2018":3,"\u201c":3,",":35,".":35,"\u2026":35}},"G":{"d":"138,3v-73,1,-125,-46,-125,-123v0,-94,102,-150,192,-114r-8,26v-66,-30,-151,5,-151,87v0,78,68,114,135,91r0,-72r-49,0r0,-25r80,0r0,116v-14,5,-41,14,-74,14","w":232,"k":{"a":-3,"\u00e6":-3,"\u00e1":-3,"\u00e2":-3,"\u00e4":-3,"\u00e0":-3,"\u00e5":-3,"\u00e3":-3,"\u0103":-3,"\u0101":-3,"\u0105":-3,"\u01fd":-3,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0111":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u2019":1,"\u201d":1}},"H":{"d":"27,-243r32,0r0,102r117,0r0,-102r32,0r0,243r-32,0r0,-114r-117,0r0,114r-32,0r0,-243","w":234,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"I":{"d":"27,-243r32,0r0,243r-32,0r0,-243","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"J":{"d":"77,-83r0,-160r31,0r0,163v1,79,-50,94,-107,78r5,-25v39,10,71,5,71,-56","w":133,"k":{"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"\u1ef3":-4,")":-15,"]":-15,"}":-15,"\u2019":-3,"\u201d":-3,",":4,".":4,"\u2026":4}},"K":{"d":"27,0r0,-243r32,0r1,117v29,-41,62,-78,93,-117r39,0r-88,103r95,140r-37,0r-80,-119r-23,26r0,93r-32,0","w":195,"k":{"T":-8,"\u0166":-8,"\u0164":-8,"\u021a":-8,"\u03a4":-8,"J":-14,"\u0134":-14,"C":6,"G":6,"O":6,"Q":6,"\u00d8":6,"\u0152":6,"\u00c7":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"\u0106":6,"\u010c":6,"\u0108":6,"\u010a":6,"\u011e":6,"\u011c":6,"\u0122":6,"\u0120":6,"\u014e":6,"\u0150":6,"\u014c":6,"\u01fe":6,"\u0398":6,"\u039f":6,"V":-5,"W":-5,"\u1e82":-5,"\u0174":-5,"\u1e84":-5,"\u1e80":-5,"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"A":-4,"\u00c6":-4,"\u00c1":-4,"\u00c2":-4,"\u00c4":-4,"\u00c0":-4,"\u00c5":-4,"\u00c3":-4,"\u0102":-4,"\u0100":-4,"\u0104":-4,"\u01fc":-4,"\u0391":-4,"\u039b":-4,"Z":-7,"\u017d":-7,"\u0179":-7,"\u017b":-7,"\u0396":-7,"a":-6,"\u00e6":-6,"\u00e1":-6,"\u00e2":-6,"\u00e4":-6,"\u00e0":-6,"\u00e5":-6,"\u00e3":-6,"\u0103":-6,"\u0101":-6,"\u0105":-6,"\u01fd":-6,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u016d":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"\u0169":2,"v":6,"w":6,"y":6,"\u00fd":6,"\u00ff":6,"\u1e83":6,"\u0175":6,"\u1e85":6,"\u1e81":6,"\u1ef3":6,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,":":-8,";":-8,"\u00ab":2,"\u2039":2,"\u00ad":6,"\u2013":6,"\u2014":6,")":-8,"]":-8,"}":-8,"\u2018":1,"\u201c":1,"\u2019":-3,"\u201d":-3,",":-6,".":-6,"\u2026":-6,"\ue000":-4,"\u2126":-5,"\u03a6":10,"\u039e":-9,"\u03a3":-9,"\u03b5":-7,"\u03ad":-7,"\u03b3":5,"\u03bd":5,"\u03bb":-6,"\u03c4":5,"\u03c5":6,"\u03c8":6,"\u03cd":6,"\u03cb":6,"\u03b0":6,"\u00b5":-2,"\u03b2":-2,"\u03b7":-2,"\u03ba":-2,"\u03ae":-2}},"L":{"d":"27,0r0,-243r32,0r0,217r103,0r0,26r-135,0","w":169,"k":{"\u01fe":14,"\u00d8":14,"T":32,"\u0166":32,"\u0164":32,"\u021a":32,"\u03a4":32,"J":-4,"\u0134":-4,"C":14,"G":14,"O":14,"Q":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u0108":14,"\u010a":14,"\u011e":14,"\u011c":14,"\u0122":14,"\u0120":14,"\u014e":14,"\u0150":14,"\u014c":14,"\u0398":14,"\u039f":14,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"V":21,"W":21,"\u1e82":21,"\u0174":21,"\u1e84":21,"\u1e80":21,"Y":30,"\u00dd":30,"\u0178":30,"\u1ef2":30,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0111":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"t":1,"\u0167":1,"\u0165":1,"\u021b":1,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u1e83":10,"\u0175":10,"\u1e85":10,"\u1e81":10,"\u1ef3":10,"\u00ab":14,"\u2039":14,"\u00ad":15,"\u2013":15,"\u2014":15,"\"":35,"'":35,"\u2018":42,"\u201c":42,"\u2019":37,"\u201d":37}},"M":{"d":"238,0r-11,-211v-9,28,-18,59,-30,92r-43,118r-24,0r-40,-116v-13,-33,-18,-67,-28,-94r-11,211r-30,0r17,-243r40,0r41,118v10,30,19,57,25,82v17,-63,47,-137,69,-200r40,0r16,243r-31,0","w":289,"k":{"T":4,"\u0166":4,"\u0164":4,"\u021a":4,"\u03a4":4,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4,"\u0102":4,"\u0100":4,"\u0104":4,"\u01fc":4,"\u0391":4,"\u039b":4,"a":-2,"\u00e6":-2,"\u00e1":-2,"\u00e2":-2,"\u00e4":-2,"\u00e0":-2,"\u00e5":-2,"\u00e3":-2,"\u0103":-2,"\u0101":-2,"\u0105":-2,"\u01fd":-2,"j":-4,"\u0135":-4,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0111":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u2018":1,"\u201c":1,"\u2019":2,"\u201d":2,"\u03a8":4,"\u03a5":8,"\u03ab":8,"\u03c0":-3,"\u00b5":-1,"\u03b2":-1,"\u03b7":-1,"\u03ba":-1,"\u03ae":-1}},"N":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,28,32,56,45,79v-6,-61,-3,-134,-4,-202r30,0r0,243r-32,0r-77,-123v-18,-27,-32,-57,-46,-81","w":236,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"O":{"d":"122,4v-64,0,-109,-50,-109,-123v0,-77,47,-128,112,-128v67,0,110,51,110,123v0,83,-51,128,-113,128xm46,-120v0,51,28,99,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99v-52,0,-78,48,-78,101","w":248,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03be":-3,"\u03c0":-4}},"P":{"d":"177,-174v0,61,-57,88,-118,76r0,98r-32,0r0,-239v62,-12,150,-6,150,65xm59,-217r0,94v44,9,86,-7,86,-49v0,-43,-48,-54,-86,-45","w":191,"k":{"\u0127":2,"J":27,"\u0134":27,"M":4,"\u039c":4,"X":5,"\u03a7":5,"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"A":30,"\u00c6":30,"\u00c1":30,"\u00c2":30,"\u00c4":30,"\u00c0":30,"\u00c5":30,"\u00c3":30,"\u0102":30,"\u0100":30,"\u0104":30,"\u01fc":30,"\u0391":30,"\u039b":30,"Z":11,"\u017d":11,"\u0179":11,"\u017b":11,"\u0396":11,"a":9,"\u00e6":9,"\u00e1":9,"\u00e2":9,"\u00e4":9,"\u00e0":9,"\u00e5":9,"\u00e3":9,"\u0103":9,"\u0101":9,"\u0105":9,"\u01fd":9,"g":9,"\u011f":9,"\u011d":9,"\u0123":9,"\u0121":9,"c":9,"d":9,"e":9,"o":9,"q":9,"\u00f8":9,"\u0153":9,"\u00e7":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,"\u0107":9,"\u010d":9,"\u0109":9,"\u010b":9,"\u010f":9,"\u0111":9,"\u0115":9,"\u011b":9,"\u0117":9,"\u0113":9,"\u0119":9,"\u014f":9,"\u0151":9,"\u014d":9,"\u01ff":9,"s":8,"\u0161":8,"\u015b":8,"\uf6c2":8,"\u015d":8,"\u0219":8,"t":-2,"\u0167":-2,"\u0165":-2,"\u021b":-2,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u1e83":-1,"\u0175":-1,"\u1e85":-1,"\u1e81":-1,"\u1ef3":-1,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"i":6,"m":6,"n":6,"p":6,"r":6,"\u0131":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"\u00f1":6,"\u014b":6,"\u012d":6,"\u0133":6,"\u012b":6,"\u012f":6,"\u0129":6,"\u0144":6,"\u0148":6,"\u0146":6,"\u0155":6,"\u0159":6,"\u0157":6,"\u0138":6,":":4,";":4,"\u00ab":8,"\u2039":8,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2018":-2,"\u201c":-2,"\u2019":-8,"\u201d":-8,",":50,".":50,"\u2026":50,"\ue000":31,"\u03a8":-2,"\u03a5":2,"\u03ab":2,"\u03b5":9,"\u03ad":9,"\u03b1":9,"\u03b4":9,"\u03bf":9,"\u03c3":9,"\u03c6":9,"\u03ac":9,"\u03cc":9,"\u03c2":9,"\u03c5":4,"\u03c8":4,"\u03cd":4,"\u03cb":4,"\u03b0":4,"\u00b5":4,"\u03b2":4,"\u03b7":4,"\u03ba":4,"\u03ae":4,"\u03b9":4,"\u03af":4,"\u03ca":4,"\u0390":4}},"Q":{"d":"228,35v-39,-9,-73,-22,-108,-31v-58,-2,-107,-45,-107,-123v0,-78,47,-128,113,-128v66,0,109,51,109,123v0,64,-32,99,-69,118v24,6,50,11,71,15xm46,-120v0,51,28,99,78,98v50,0,78,-45,78,-100v0,-49,-26,-99,-77,-99v-53,0,-79,48,-79,101","w":248,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03be":-3,"\u03c0":-4}},"R":{"d":"27,-239v64,-11,150,-9,150,61v0,33,-23,51,-46,62v37,3,43,98,54,116r-32,0v-4,-7,-10,-28,-16,-58v-8,-44,-32,-49,-78,-47r0,105r-32,0r0,-239xm59,-217r0,88v46,4,86,-6,86,-46v0,-43,-50,-50,-86,-42","w":193,"k":{"T":-3,"\u0166":-3,"\u0164":-3,"\u021a":-3,"\u03a4":-3,"V":-6,"W":-6,"\u1e82":-6,"\u0174":-6,"\u1e84":-6,"\u1e80":-6,"X":-2,"\u03a7":-2,"Y":4,"\u00dd":4,"\u0178":4,"\u1ef2":4,"A":-2,"\u00c6":-2,"\u00c1":-2,"\u00c2":-2,"\u00c4":-2,"\u00c0":-2,"\u00c5":-2,"\u00c3":-2,"\u0102":-2,"\u0100":-2,"\u0104":-2,"\u01fc":-2,"\u0391":-2,"\u039b":-2,"a":-4,"\u00e6":-4,"\u00e1":-4,"\u00e2":-4,"\u00e4":-4,"\u00e0":-4,"\u00e5":-4,"\u00e3":-4,"\u0103":-4,"\u0101":-4,"\u0105":-4,"\u01fd":-4,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-7,"\u0167":-7,"\u0165":-7,"\u021b":-7,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"b":-3,"h":-3,"k":-3,"l":-3,"\u0142":-3,"\u0127":-3,"\u0125":-3,"\u0137":-3,"\u013a":-3,"\u013e":-3,"\u013c":-3,"\u0140":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"\u2019":-3,"\u201d":-3}},"S":{"d":"15,-12r8,-26v29,23,107,21,107,-26v0,-23,-13,-36,-46,-48v-40,-14,-64,-34,-64,-68v0,-58,86,-81,132,-55r-9,26v-8,-5,-23,-11,-45,-11v-33,0,-46,19,-46,36v0,22,14,36,48,46v88,26,83,142,-23,142v-23,0,-49,-7,-62,-16","w":177,"k":{"j":1,"\u0135":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0111":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u2018":3,"\u201c":3,"\u2019":4,"\u201d":4}},"T":{"d":"73,0r0,-216r-73,0r0,-27r179,0r0,27r-74,0r0,216r-32,0","w":178,"k":{"\u0129":16,"\u012f":16,"\u012b":16,"\u0133":16,"\u012d":16,"\u00ec":16,"\u00ef":16,"\u00ee":16,"\u00ed":16,"\u00e8":26,"\u00e0":23,"\u0131":16,"i":16,"T":-14,"\u0166":-14,"\u0164":-14,"\u021a":-14,"\u03a4":-14,"J":15,"\u0134":15,"C":10,"G":10,"O":10,"Q":10,"\u00d8":10,"\u0152":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"\u0106":10,"\u010c":10,"\u0108":10,"\u010a":10,"\u011e":10,"\u011c":10,"\u0122":10,"\u0120":10,"\u014e":10,"\u0150":10,"\u014c":10,"\u01fe":10,"\u0398":10,"\u039f":10,"V":-14,"W":-14,"\u1e82":-14,"\u0174":-14,"\u1e84":-14,"\u1e80":-14,"X":-8,"\u03a7":-8,"Y":-10,"\u00dd":-10,"\u0178":-10,"\u1ef2":-10,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"\u0102":27,"\u0100":27,"\u0104":27,"\u01fc":27,"\u0391":27,"\u039b":27,"S":2,"\u0160":2,"\u015a":2,"\uf6c1":2,"\u015c":2,"\u0218":2,"a":23,"\u00e6":23,"\u00e1":23,"\u00e2":23,"\u00e4":23,"\u00e5":23,"\u00e3":23,"\u0103":23,"\u0101":23,"\u0105":23,"\u01fd":23,"g":23,"\u011f":23,"\u011d":23,"\u0123":23,"\u0121":23,"c":26,"d":26,"e":26,"o":26,"q":26,"\u00f8":26,"\u0153":26,"\u00e7":26,"\u00e9":26,"\u00ea":26,"\u00eb":26,"\u00f3":26,"\u00f4":26,"\u00f6":26,"\u00f2":26,"\u00f5":26,"\u0107":26,"\u010d":26,"\u0109":26,"\u010b":26,"\u010f":26,"\u0111":26,"\u0115":26,"\u011b":26,"\u0117":26,"\u0113":26,"\u0119":26,"\u014f":26,"\u0151":26,"\u014d":26,"\u01ff":26,"s":19,"\u0161":19,"\u015b":19,"\uf6c2":19,"\u015d":19,"\u0219":19,"u":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u00f9":16,"\u016d":16,"\u0171":16,"\u016b":16,"\u0173":16,"\u016f":16,"\u0169":16,"v":14,"w":14,"y":14,"\u00fd":14,"\u00ff":14,"\u1e83":14,"\u0175":14,"\u1e85":14,"\u1e81":14,"\u1ef3":14,"z":18,"\u017e":18,"\u017a":18,"\u017c":18,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"m":16,"n":16,"p":16,"r":16,"\u00f1":16,"\u014b":16,"\u0144":16,"\u0148":16,"\u0146":16,"\u0155":16,"\u0159":16,"\u0157":16,"\u0138":16,"x":12,":":9,";":9,"\u203a":13,"\u00bb":13,"\u00ab":18,"\u2039":18,"\u00ad":18,"\u2013":18,"\u2014":18,")":-22,"]":-22,"}":-22,"\"":-6,"'":-6,"\u2019":-12,"\u201d":-12,",":22,".":22,"\u2026":22,"\ue000":25,"\u2126":9,"\u03a6":14,"\u03a8":-3,"\u03a5":-4,"\u03ab":-4,"\u03a3":-2,"\u03b5":16,"\u03ad":16,"\u03bb":-3,"\u03b1":22,"\u03b4":22,"\u03bf":22,"\u03c3":22,"\u03c6":22,"\u03ac":22,"\u03cc":22,"\u03c2":22,"\u03c1":24,"\u03c5":14,"\u03c8":14,"\u03cd":14,"\u03cb":14,"\u03b0":14,"\u03b6":4,"\u03be":4,"\u00b5":12,"\u03b2":12,"\u03b7":12,"\u03ba":12,"\u03ae":12,"\u03b9":12,"\u03af":12,"\u03ca":12,"\u0390":12,"\u03c9":17,"\u03ce":17}},"U":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fc":12,"\u0391":12,"\u039b":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u021b":-1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,"\u2019":2,"\u201d":2,",":10,".":10,"\u2026":10}},"V":{"d":"115,0r-34,0r-80,-243r34,0r65,211v17,-69,46,-144,68,-211r34,0","w":200,"k":{"\u012d":6,"\u01fc":21,"\u00ef":6,"\u00c6":21,"T":-12,"\u0166":-12,"\u0164":-12,"\u021a":-12,"\u03a4":-12,"J":8,"\u0134":8,"V":-6,"W":-6,"\u1e82":-6,"\u0174":-6,"\u1e84":-6,"\u1e80":-6,"A":21,"\u00c1":21,"\u00c2":21,"\u00c4":21,"\u00c0":21,"\u00c5":21,"\u00c3":21,"\u0102":21,"\u0100":21,"\u0104":21,"\u0391":21,"\u039b":21,"a":12,"\u00e6":12,"\u00e1":12,"\u00e2":12,"\u00e4":12,"\u00e0":12,"\u00e5":12,"\u00e3":12,"\u0103":12,"\u0101":12,"\u0105":12,"\u01fd":12,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"c":12,"d":12,"e":12,"o":12,"q":12,"\u00f8":12,"\u0153":12,"\u00e7":12,"\u00e9":12,"\u00ea":12,"\u00eb":12,"\u00e8":12,"\u00f3":12,"\u00f4":12,"\u00f6":12,"\u00f2":12,"\u00f5":12,"\u0107":12,"\u010d":12,"\u0109":12,"\u010b":12,"\u010f":12,"\u0111":12,"\u0115":12,"\u011b":12,"\u0117":12,"\u0113":12,"\u0119":12,"\u014f":12,"\u0151":12,"\u014d":12,"\u01ff":12,"s":9,"\u0161":9,"\u015b":9,"\uf6c2":9,"\u015d":9,"\u0219":9,"t":-3,"\u0167":-3,"\u0165":-3,"\u021b":-3,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u016d":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"\u0169":6,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u1e83":1,"\u0175":1,"\u1e85":1,"\u1e81":1,"\u1ef3":1,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"i":6,"m":6,"n":6,"p":6,"r":6,"\u0131":6,"\u00ed":6,"\u00ee":6,"\u00ec":6,"\u00f1":6,"\u014b":6,"\u0133":6,"\u012b":6,"\u012f":6,"\u0129":6,"\u0144":6,"\u0148":6,"\u0146":6,"\u0155":6,"\u0159":6,"\u0157":6,"\u0138":6,":":6,";":6,"\u203a":4,"\u00bb":4,"\u00ab":9,"\u2039":9,"\u00ad":5,"\u2013":5,"\u2014":5,")":-20,"]":-20,"}":-20,"\"":-7,"'":-7,"\u2018":-3,"\u201c":-3,"\u2019":-10,"\u201d":-10,",":20,".":20,"\u2026":20}},"W":{"d":"100,0r-33,0r-62,-243r34,0r47,207r52,-207r33,0r30,123v8,28,10,60,17,84r52,-207r32,0r-69,243r-33,0r-30,-126v-9,-30,-11,-58,-17,-80v-12,65,-37,141,-53,206","w":304,"k":{"\u012d":6,"\u01fc":21,"\u00ef":6,"\u00c6":21,"T":-12,"\u0166":-12,"\u0164":-12,"\u021a":-12,"\u03a4":-12,"J":8,"\u0134":8,"V":-6,"W":-6,"\u1e82":-6,"\u0174":-6,"\u1e84":-6,"\u1e80":-6,"A":21,"\u00c1":21,"\u00c2":21,"\u00c4":21,"\u00c0":21,"\u00c5":21,"\u00c3":21,"\u0102":21,"\u0100":21,"\u0104":21,"\u0391":21,"\u039b":21,"a":12,"\u00e6":12,"\u00e1":12,"\u00e2":12,"\u00e4":12,"\u00e0":12,"\u00e5":12,"\u00e3":12,"\u0103":12,"\u0101":12,"\u0105":12,"\u01fd":12,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"c":12,"d":12,"e":12,"o":12,"q":12,"\u00f8":12,"\u0153":12,"\u00e7":12,"\u00e9":12,"\u00ea":12,"\u00eb":12,"\u00e8":12,"\u00f3":12,"\u00f4":12,"\u00f6":12,"\u00f2":12,"\u00f5":12,"\u0107":12,"\u010d":12,"\u0109":12,"\u010b":12,"\u010f":12,"\u0111":12,"\u0115":12,"\u011b":12,"\u0117":12,"\u0113":12,"\u0119":12,"\u014f":12,"\u0151":12,"\u014d":12,"\u01ff":12,"s":9,"\u0161":9,"\u015b":9,"\uf6c2":9,"\u015d":9,"\u0219":9,"t":-3,"\u0167":-3,"\u0165":-3,"\u021b":-3,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u016d":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"\u0169":6,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u1e83":1,"\u0175":1,"\u1e85":1,"\u1e81":1,"\u1ef3":1,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"i":6,"m":6,"n":6,"p":6,"r":6,"\u0131":6,"\u00ed":6,"\u00ee":6,"\u00ec":6,"\u00f1":6,"\u014b":6,"\u0133":6,"\u012b":6,"\u012f":6,"\u0129":6,"\u0144":6,"\u0148":6,"\u0146":6,"\u0155":6,"\u0159":6,"\u0157":6,"\u0138":6,":":6,";":6,"\u203a":4,"\u00bb":4,"\u00ab":9,"\u2039":9,"\u00ad":5,"\u2013":5,"\u2014":5,")":-20,"]":-20,"}":-20,"\"":-7,"'":-7,"\u2018":-3,"\u201c":-3,"\u2019":-10,"\u201d":-10,",":20,".":20,"\u2026":20}},"X":{"d":"197,0r-37,0r-60,-102r-55,102r-36,0r74,-123r-71,-120r36,0r56,98r54,-98r37,0r-74,118","w":205,"k":{"T":-3,"\u0166":-3,"\u0164":-3,"\u021a":-3,"\u03a4":-3,"J":-1,"\u0134":-1,"C":10,"G":10,"O":10,"Q":10,"\u00d8":10,"\u0152":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"\u0106":10,"\u010c":10,"\u0108":10,"\u010a":10,"\u011e":10,"\u011c":10,"\u0122":10,"\u0120":10,"\u014e":10,"\u0150":10,"\u014c":10,"\u01fe":10,"\u0398":10,"\u039f":10,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"X":5,"\u03a7":5,"Y":-2,"\u00dd":-2,"\u0178":-2,"\u1ef2":-2,"A":3,"\u00c6":3,"\u00c1":3,"\u00c2":3,"\u00c4":3,"\u00c0":3,"\u00c5":3,"\u00c3":3,"\u0102":3,"\u0100":3,"\u0104":3,"\u01fc":3,"\u0391":3,"\u039b":3,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fd":2,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"\u1ef3":7,"\u00ab":6,"\u2039":6,"\u00ad":8,"\u2013":8,"\u2014":8,"\u2018":2,"\u201c":2,"\ue000":1,"\u03a6":15,"\u03a8":5,"\u03a5":6,"\u03ab":6,"\u039e":-4,"\u03b3":10,"\u03bd":10,"\u03bb":-4,"\u03b1":8,"\u03b4":8,"\u03bf":8,"\u03c3":8,"\u03c6":8,"\u03ac":8,"\u03cc":8,"\u03c2":8,"\u03c1":4,"\u03c4":6,"\u03c5":6,"\u03c8":6,"\u03cd":6,"\u03cb":6,"\u03b0":6,"\u03b9":4,"\u03af":4,"\u03ca":4,"\u0390":4}},"Y":{"d":"113,0r-32,0r0,-103r-77,-140r36,0r59,117v17,-38,41,-79,60,-117r35,0r-81,140r0,103","w":194,"k":{"\u012d":5,"\u00f6":27,"\u00ef":5,"\u00eb":27,"\u00e4":25,"T":-12,"\u0166":-12,"\u0164":-12,"\u021a":-12,"\u03a4":-12,"J":19,"\u0134":19,"M":4,"\u039c":4,"C":13,"G":13,"O":13,"Q":13,"\u00d8":13,"\u0152":13,"\u00c7":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"\u0106":13,"\u010c":13,"\u0108":13,"\u010a":13,"\u011e":13,"\u011c":13,"\u0122":13,"\u0120":13,"\u014e":13,"\u0150":13,"\u014c":13,"\u01fe":13,"\u0398":13,"\u039f":13,"V":-10,"W":-10,"\u1e82":-10,"\u0174":-10,"\u1e84":-10,"\u1e80":-10,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,"\u0102":29,"\u0100":29,"\u0104":29,"\u01fc":29,"\u0391":29,"\u039b":29,"S":5,"\u0160":5,"\u015a":5,"\uf6c1":5,"\u015c":5,"\u0218":5,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"\u0141":3,"\u00d0":3,"\u00c9":3,"\u00ca":3,"\u00cb":3,"\u00c8":3,"\u00cd":3,"\u00ce":3,"\u00cf":3,"\u00cc":3,"\u00d1":3,"\u010e":3,"\u0110":3,"\u0114":3,"\u011a":3,"\u0116":3,"\u0112":3,"\u014a":3,"\u0118":3,"\u0126":3,"\u0124":3,"\u012c":3,"\u0132":3,"\u012a":3,"\u012e":3,"\u0128":3,"\u0136":3,"\u0139":3,"\u013d":3,"\u013b":3,"\u013f":3,"\u0143":3,"\u0147":3,"\u0145":3,"\u0154":3,"\u0158":3,"\u0156":3,"\u0130":3,"\u0392":3,"\u0393":3,"\u0395":3,"\u0397":3,"\u0399":3,"\u039a":3,"\u039d":3,"\u03a0":3,"\u03a1":3,"\u03aa":3,"a":25,"\u00e6":25,"\u00e1":25,"\u00e2":25,"\u00e0":25,"\u00e5":25,"\u00e3":25,"\u0103":25,"\u0101":25,"\u0105":25,"\u01fd":25,"g":14,"\u011f":14,"\u011d":14,"\u0123":14,"\u0121":14,"c":27,"d":27,"e":27,"o":27,"q":27,"\u00f8":27,"\u0153":27,"\u00e7":27,"\u00e9":27,"\u00ea":27,"\u00e8":27,"\u00f3":27,"\u00f4":27,"\u00f2":27,"\u00f5":27,"\u0107":27,"\u010d":27,"\u0109":27,"\u010b":27,"\u010f":27,"\u0111":27,"\u0115":27,"\u011b":27,"\u0117":27,"\u0113":27,"\u0119":27,"\u014f":27,"\u0151":27,"\u014d":27,"\u01ff":27,"s":19,"\u0161":19,"\u015b":19,"\uf6c2":19,"\u015d":19,"\u0219":19,"t":7,"\u0167":7,"\u0165":7,"\u021b":7,"u":19,"\u00fa":19,"\u00fb":19,"\u00fc":19,"\u00f9":19,"\u016d":19,"\u0171":19,"\u016b":19,"\u0173":19,"\u016f":19,"\u0169":19,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u1e83":10,"\u0175":10,"\u1e85":10,"\u1e81":10,"\u1ef3":10,"z":9,"\u017e":9,"\u017a":9,"\u017c":9,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"i":5,"m":5,"n":5,"p":5,"r":5,"\u0131":5,"\u00ed":5,"\u00ee":5,"\u00ec":5,"\u00f1":5,"\u014b":5,"\u0133":5,"\u012b":5,"\u012f":5,"\u0129":5,"\u0144":5,"\u0148":5,"\u0146":5,"\u0155":5,"\u0159":5,"\u0157":5,"\u0138":5,"x":9,":":12,";":12,"\u203a":7,"\u00bb":7,"\u00ab":18,"\u2039":18,"\u00ad":18,"\u2013":18,"\u2014":18,")":-20,"]":-20,"}":-20,"\"":-3,"'":-3,"\u2018":2,"\u201c":2,"\u2019":-5,"\u201d":-5,",":34,".":34,"\u2026":34}},"Z":{"d":"11,0r0,-18r134,-198r-123,0r0,-27r164,0r0,19r-134,198r136,0r0,26r-177,0","w":199,"k":{"J":-3,"\u0134":-3,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u0152":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u0398":8,"\u039f":8,"X":2,"\u03a7":2,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"\u00ad":10,"\u2013":10,"\u2014":10,"\u2018":2,"\u201c":2,"\u03a5":-3,"\u03ab":-3,"\u039e":-2,"\u03a3":3,"\u03bb":-4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4}},"[":{"d":"95,40r-66,0r0,-287r66,0r0,20r-41,0r0,248r41,0r0,19","w":102,"k":{"T":-17,"\u0166":-17,"\u0164":-17,"\u021a":-17,"\u03a4":-17,"J":-6,"\u0134":-6,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u0108":4,"\u010a":4,"\u011e":4,"\u011c":4,"\u0122":4,"\u0120":4,"\u014e":4,"\u0150":4,"\u014c":4,"\u01fe":4,"\u0398":4,"\u039f":4,"V":-18,"W":-18,"\u1e82":-18,"\u0174":-18,"\u1e84":-18,"\u1e80":-18,"X":-4,"\u03a7":-4,"Y":-15,"\u00dd":-15,"\u0178":-15,"\u1ef2":-15,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4,"\u0102":4,"\u0100":4,"\u0104":4,"\u01fc":4,"\u0391":4,"\u039b":4,"j":-20,"\u0135":-20,"\ue000":6,"\u03a6":8,"\u03a8":-2,"\u03a5":-4,"\u03ab":-4,"\u03c7":-1,"\u03bb":-3,"\u03c1":8,"\u03c4":2,"\u03b6":5,"\u03be":5,"\u03c9":2,"\u03ce":2,"\u038f":-8,"\u038c":-7,"\u038e":-4,"\u0388":-7,"\u0389":-7,"\u038a":-7,"\u0427":9,"\u0414":-8,"\u0402":-12,"\u041b":5,"\u0409":5,"\u0422":-13,"\u042a":-13,"\u040b":-13,"\u0408":5,"\u0423":-4,"\u040e":-4,"\u042f":4,"\u0447":18,"\u0434":-6,"\u0452":-2,"\u0442":8,"\u044a":8,"\u0458":-10,"\u045b":-2,"\u0443":6,"\u045e":6,"\u044f":5}},"\\":{"d":"123,14r-24,0r-98,-261r24,0","w":122},"]":{"d":"7,-247r66,0r0,287r-66,0r0,-19r41,0r0,-248r-41,0r0,-20","w":102},"^":{"d":"193,-68r-25,0r-61,-140r-60,140r-25,0r74,-166r23,0","w":214},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"\u2018":{"d":"45,-165r-32,4v8,-30,23,-69,33,-86r20,-2v-8,21,-17,58,-21,84","w":74,"k":{"\u0129":8,"\u012f":8,"\u012b":8,"\u0133":8,"\u012d":8,"\u0127":-2,"\u00ec":8,"\u00ef":8,"\u00ee":8,"\u00ed":8,"\u0131":8,"i":8,"T":-14,"\u0166":-14,"\u0164":-14,"\u021a":-14,"\u03a4":-14,"J":30,"\u0134":30,"C":6,"G":6,"O":6,"Q":6,"\u00d8":6,"\u0152":6,"\u00c7":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"\u0106":6,"\u010c":6,"\u0108":6,"\u010a":6,"\u011e":6,"\u011c":6,"\u0122":6,"\u0120":6,"\u014e":6,"\u0150":6,"\u014c":6,"\u01fe":6,"\u0398":6,"\u039f":6,"V":-10,"W":-10,"\u1e82":-10,"\u0174":-10,"\u1e84":-10,"\u1e80":-10,"Y":-7,"\u00dd":-7,"\u0178":-7,"\u1ef2":-7,"A":24,"\u00c6":24,"\u00c1":24,"\u00c2":24,"\u00c4":24,"\u00c0":24,"\u00c5":24,"\u00c3":24,"\u0102":24,"\u0100":24,"\u0104":24,"\u01fc":24,"\u0391":24,"\u039b":24,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"\u0103":13,"\u0101":13,"\u0105":13,"\u01fd":13,"g":22,"\u011f":22,"\u011d":22,"\u0123":22,"\u0121":22,"c":23,"d":23,"e":23,"o":23,"q":23,"\u00f8":23,"\u0153":23,"\u00e7":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00e8":23,"\u00f3":23,"\u00f4":23,"\u00f6":23,"\u00f2":23,"\u00f5":23,"\u0107":23,"\u010d":23,"\u0109":23,"\u010b":23,"\u010f":23,"\u0111":23,"\u0115":23,"\u011b":23,"\u0117":23,"\u0113":23,"\u0119":23,"\u014f":23,"\u0151":23,"\u014d":23,"\u01ff":23,"s":12,"\u0161":12,"\u015b":12,"\uf6c2":12,"\u015d":12,"\u0219":12,"t":-2,"\u0167":-2,"\u0165":-2,"\u021b":-2,"u":10,"\u00fa":10,"\u00fb":10,"\u00fc":10,"\u00f9":10,"\u016d":10,"\u0171":10,"\u016b":10,"\u0173":10,"\u016f":10,"\u0169":10,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u1e83":-1,"\u0175":-1,"\u1e85":-1,"\u1e81":-1,"\u1ef3":-1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"b":-2,"h":-2,"k":-2,"l":-2,"\u0142":-2,"\u0125":-2,"\u0137":-2,"\u013a":-2,"\u013e":-2,"\u013c":-2,"\u0140":-2,"m":8,"n":8,"p":8,"r":8,"\u00f1":8,"\u014b":8,"\u0144":8,"\u0148":8,"\u0146":8,"\u0155":8,"\u0159":8,"\u0157":8,"\u0138":8,"x":-2,"\u2018":21,"\u201c":21,",":45,".":45,"\u2026":45,"\ue000":28,"\u2126":16,"\u03a6":8,"\u03a5":-7,"\u03ab":-7,"\u039e":-1,"\u03b5":28,"\u03ad":28,"\u03b1":23,"\u03b4":23,"\u03bf":23,"\u03c3":23,"\u03c6":23,"\u03ac":23,"\u03cc":23,"\u03c2":23,"\u03c1":38,"\u03b8":3,"\u03b6":10,"\u03be":10,"\u00b5":8,"\u03b2":8,"\u03b7":8,"\u03ba":8,"\u03ae":8,"\u03c9":23,"\u03ce":23,"\u038f":-11,"\u038c":-11,"\u038e":-11,"\u0388":-11,"\u0389":-11,"\u038a":-11,"\u0402":-24,"\u0424":4,"\u041b":6,"\u0409":6,"\u0422":-24,"\u042a":-24,"\u040b":-24,"\u0408":29,"\u041e":4,"\u0421":4,"\u0404":4,"\u0423":-4,"\u040e":-4,"\u0410":28,"\u042f":4,"\u0434":21,"\u0452":-9,"\u043b":14,"\u0459":14,"\u0442":-7,"\u044a":-7,"\u0458":3,"\u045b":-10,"\u0443":3,"\u045e":3,"\u044f":12}},"a":{"d":"82,-178v97,3,56,97,70,178r-29,0v-2,-7,0,-17,-4,-22v-9,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-17,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm74,-19v38,-2,48,-28,44,-70v-35,-1,-74,5,-74,39v0,21,14,31,30,31","w":173},"b":{"d":"25,0r1,-256r32,0r1,109v36,-59,133,-28,133,57v0,95,-95,123,-138,61r-2,29r-27,0xm108,-153v-36,-1,-54,36,-50,83v2,31,23,48,49,49v33,0,52,-27,52,-67v0,-35,-17,-65,-51,-65","w":204,"k":{"T":14,"\u0166":14,"\u0164":14,"\u021a":14,"\u03a4":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\"":4,"'":4,"\u2019":12,"\u201d":12,",":9,".":9,"\u2026":9}},"c":{"d":"145,-30r5,24v-8,4,-27,10,-50,10v-53,0,-86,-36,-86,-89v0,-70,72,-113,137,-84r-7,24v-43,-23,-105,7,-98,58v-4,57,55,78,99,57","w":161,"k":{"T":4,"\u0166":4,"\u0164":4,"\u021a":4,"\u03a4":4,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0111":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"t":-5,"\u0167":-5,"\u0165":-5,"\u021b":-5,"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,"\u1e83":-6,"\u0175":-6,"\u1e85":-6,"\u1e81":-6,"\u1ef3":-6,"\u203a":-5,"\u00bb":-5,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u2018":-6,"\u201c":-6,"\u2019":-6,"\u201d":-6,",":4,".":4,"\u2026":4}},"d":{"d":"145,-256r32,0r1,256r-28,0r-2,-30v-34,62,-134,32,-134,-55v0,-86,90,-120,131,-67r0,-104xm46,-86v0,73,95,89,99,13v2,-45,-7,-80,-47,-80v-33,0,-52,29,-52,67","w":203,"k":{"\u2019":-2,"\u201d":-2,",":4,".":4,"\u2026":4}},"e":{"d":"166,-81r-122,0v-2,63,66,69,108,51r6,22v-11,5,-31,12,-59,12v-53,0,-85,-36,-85,-88v0,-53,31,-94,82,-94v63,0,74,53,70,97xm45,-104r92,0v0,-20,-9,-52,-44,-52v-32,0,-45,30,-48,52","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"\u00ad":-10,"\u2013":-10,"\u2014":-10,"\u2019":9,"\u201d":9,",":4,".":4,"\u2026":4}},"f":{"d":"29,-174v-6,-57,36,-101,90,-81r-4,25v-35,-14,-62,13,-55,56r43,0r0,24r-42,0r0,150r-32,0r0,-150r-24,0r0,-24r24,0","w":105,"k":{"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0111":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"s":3,"\u0161":3,"\u015b":3,"\uf6c2":3,"\u015d":3,"\u0219":3,"t":-4,"\u0167":-4,"\u0165":-4,"\u021b":-4,":":-12,";":-12,"\u203a":-5,"\u00bb":-5,")":-37,"]":-37,"}":-37,"\"":-20,"'":-20,"\u2018":-18,"\u201c":-18,"\u2019":-24,"\u201d":-24,",":12,".":12,"\u2026":12}},"g":{"d":"175,-26v0,95,-78,120,-146,87r8,-25v44,31,124,12,106,-66v-9,16,-28,29,-55,29v-43,0,-74,-36,-74,-85v0,-90,99,-118,134,-62r1,-26r28,0v-4,41,-2,102,-2,148xm97,-25v36,1,51,-36,47,-81v-3,-28,-19,-48,-46,-48v-30,0,-52,26,-52,67v0,34,17,62,51,62","w":201,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"f":-1,"\u00df":-1,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u012d":2,"\u0133":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,"\u0138":2,"\u2019":8,"\u201d":8,",":5,".":5,"\u2026":5}},"h":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r0,-256r32,0r1,109v29,-45,116,-50,116,43r0,104r-32,0v-6,-59,22,-152,-40,-152","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,"\u03a4":18,"t":1,"\u0167":1,"\u0165":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"\u1ef3":5,"\"":3,"'":3,"\u2019":12,"\u201d":12}},"i":{"d":"58,0r-32,0r0,-174r32,0r0,174xm62,-223v0,10,-8,19,-21,19v-12,0,-19,-9,-19,-19v0,-11,8,-20,20,-20v12,0,20,9,20,20","w":84,"k":{"\u2019":-3,"\u201d":-3}},"j":{"d":"-17,51v43,-7,47,-15,47,-79r0,-146r32,0v-8,98,36,248,-75,250xm66,-223v0,10,-7,19,-21,19v-12,0,-19,-9,-19,-19v0,-11,8,-20,20,-20v12,0,20,9,20,20","w":87,"k":{"\u2019":-3,"\u201d":-3,",":4,".":4,"\u2026":4}},"k":{"d":"58,-256r1,162v20,-28,44,-53,66,-80r38,0r-67,71r76,103r-38,0r-60,-84r-16,18r0,66r-32,0r0,-256r32,0","w":168,"k":{"T":7,"\u0166":7,"\u0164":7,"\u021a":7,"\u03a4":7,"a":-6,"\u00e6":-6,"\u00e1":-6,"\u00e2":-6,"\u00e4":-6,"\u00e0":-6,"\u00e5":-6,"\u00e3":-6,"\u0103":-6,"\u0101":-6,"\u0105":-6,"\u01fd":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"b":-6,"h":-6,"k":-6,"l":-6,"\u0142":-6,"\u0127":-6,"\u0125":-6,"\u0137":-6,"\u013a":-6,"\u013e":-6,"\u013c":-6,"\u0140":-6,"i":-6,"m":-6,"n":-6,"p":-6,"r":-6,"\u0131":-6,"\u00ed":-6,"\u00ee":-6,"\u00ef":-6,"\u00ec":-6,"\u00f1":-6,"\u014b":-6,"\u012d":-6,"\u0133":-6,"\u012b":-6,"\u012f":-6,"\u0129":-6,"\u0144":-6,"\u0148":-6,"\u0146":-6,"\u0155":-6,"\u0159":-6,"\u0157":-6,"\u0138":-6,":":-4,";":-4,"\u00ad":4,"\u2013":4,"\u2014":4,"\u2019":-9,"\u201d":-9,",":-5,".":-5,"\u2026":-5}},"l":{"d":"26,0r0,-256r32,0r0,256r-32,0","w":84,"k":{"\u2019":-2,"\u201d":-2,",":4,".":4,"\u2026":4}},"m":{"d":"99,-152v-60,0,-38,92,-42,152r-31,0r-1,-174r28,0v1,9,-1,21,2,28v15,-39,91,-43,105,3v28,-49,114,-57,115,40r0,103r-31,0v-4,-55,18,-152,-37,-152v-59,0,-37,93,-41,152r-31,0v-5,-56,20,-152,-36,-152","w":300,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,"\u03a4":18,"t":1,"\u0167":1,"\u0165":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"\u1ef3":5,"\"":3,"'":3,"\u2019":12,"\u201d":12}},"n":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r-1,-174r28,0r2,28v27,-44,120,-54,120,42r0,104r-32,0v-6,-59,22,-152,-40,-152","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,"\u03a4":18,"t":1,"\u0167":1,"\u0165":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"\u1ef3":5,"\"":3,"'":3,"\u2019":12,"\u201d":12}},"o":{"d":"184,-89v0,65,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92v50,0,84,36,84,89xm46,-87v0,38,21,67,53,67v30,0,53,-28,53,-68v0,-30,-16,-66,-53,-66v-37,0,-53,34,-53,67","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u021a":14,"\u03a4":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\"":4,"'":4,"\u2019":12,"\u201d":12,",":9,".":9,"\u2026":9}},"p":{"d":"26,71r-1,-245r28,0v2,9,0,22,3,30v37,-63,136,-32,136,54v0,91,-89,121,-134,67r0,94r-32,0xm108,-153v-36,0,-50,35,-50,82v0,32,23,49,49,50v33,0,52,-27,52,-67v0,-35,-18,-65,-51,-65","w":204,"k":{"T":14,"\u0166":14,"\u0164":14,"\u021a":14,"\u03a4":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\"":4,"'":4,"\u2019":12,"\u201d":12,",":9,".":9,"\u2026":9}},"q":{"d":"145,71r-1,-98v-34,58,-130,29,-130,-57v0,-95,94,-120,133,-64r1,-26r30,0r-1,245r-32,0xm97,-21v37,0,48,-36,48,-83v0,-30,-19,-49,-47,-49v-33,0,-52,28,-52,67v0,35,16,65,51,65","w":202,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"\u2019":8,"\u201d":8,",":3,".":3,"\u2026":3}},"r":{"d":"112,-148v-70,-8,-52,83,-54,148r-32,0r-1,-174r28,0v1,11,-1,25,2,34v10,-25,30,-42,57,-37r0,29","w":117,"k":{"\u0142":-1,"T":5,"\u0166":5,"\u0164":5,"\u021a":5,"\u03a4":5,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fd":2,"f":-11,"\u00df":-11,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"t":-9,"\u0167":-9,"\u0165":-9,"\u021b":-9,"v":-9,"w":-9,"y":-9,"\u00fd":-9,"\u00ff":-9,"\u1e83":-9,"\u0175":-9,"\u1e85":-9,"\u1e81":-9,"\u1ef3":-9,"z":-3,"\u017e":-3,"\u017a":-3,"\u017c":-3,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u012d":-1,"\u0133":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"\u0138":-1,"x":-6,":":-3,";":-3,"\u203a":-4,"\u00bb":-4,"\u00ab":2,"\u2039":2,"\u00ad":2,"\u2013":2,"\u2014":2,"\u2018":-7,"\u201c":-7,"\u2019":-11,"\u201d":-11,",":19,".":19,"\u2026":19}},"s":{"d":"14,-9r8,-23v18,15,76,19,76,-14v0,-15,-8,-25,-32,-32v-69,-20,-58,-98,13,-100v18,0,34,5,43,11r-8,22v-13,-12,-64,-16,-64,14v0,14,8,23,32,30v67,18,58,108,-19,105v-19,0,-37,-6,-49,-13","w":142,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"\u2019":6,"\u201d":6,",":4,".":4,"\u2026":4}},"t":{"d":"108,-1v-39,14,-75,-5,-75,-54r0,-95r-27,0r0,-24r27,0r0,-32r31,-10r0,42r46,0r0,24r-46,0r0,93v-3,31,19,38,43,32","w":119,"k":{"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0111":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"\u00ad":2,"\u2013":2,"\u2014":2,"\u2018":-3,"\u201c":-3,"\u2019":-8,"\u201d":-8}},"u":{"d":"96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v4,57,-19,152,39,152","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"\u2019":8,"\u201d":8,",":3,".":3,"\u2026":3}},"v":{"d":"5,-174r34,0r49,142r48,-142r34,0r-69,174r-30,0","w":173,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"\u1ef3":-4,":":-9,";":-9,"\u00ad":1,"\u2013":1,"\u2014":1,"\u2018":-10,"\u201c":-10,"\u2019":-11,"\u201d":-11,",":14,".":14,"\u2026":14}},"w":{"d":"6,-174r33,0r37,144v11,-49,29,-97,44,-144r27,0r43,144v8,-48,26,-98,38,-144r32,0r-57,174r-28,0r-43,-141v-11,51,-29,94,-44,141r-29,0","w":264,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"\u1ef3":-4,":":-9,";":-9,"\u00ad":1,"\u2013":1,"\u2014":1,"\u2018":-10,"\u201c":-10,"\u2019":-11,"\u201d":-11,",":14,".":14,"\u2026":14}},"x":{"d":"6,-174r35,0r44,66v13,-24,27,-44,41,-66r35,0r-59,84r60,90r-36,0r-45,-69r-43,69r-35,0r62,-89","w":166,"k":{"T":8,"\u0166":8,"\u0164":8,"\u021a":8,"\u03a4":8,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0111":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":-5,"\u0167":-5,"\u0165":-5,"\u021b":-5,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"\u00ad":2,"\u2013":2,"\u2014":2,"\u2019":-9,"\u201d":-9}},"y":{"d":"13,53v25,-9,45,-29,57,-58r-67,-169r35,0r50,138r46,-138r33,0v-41,86,-59,232,-146,253","w":169,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"\u1ef3":-4,":":-9,";":-9,"\u00ad":1,"\u2013":1,"\u2014":1,"\u2018":-10,"\u201c":-10,"\u2019":-11,"\u201d":-11,",":14,".":14,"\u2026":14}},"z":{"d":"6,0r0,-18r102,-131r-94,0r0,-25r133,0r0,20r-101,129r102,0r0,25r-142,0","w":154,"k":{"T":7,"\u0166":7,"\u0164":7,"\u021a":7,"\u03a4":7,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0111":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"v":-9,"w":-9,"y":-9,"\u00fd":-9,"\u00ff":-9,"\u1e83":-9,"\u0175":-9,"\u1e85":-9,"\u1e81":-9,"\u1ef3":-9,"\u203a":-6,"\u00bb":-6,"\u2019":-10,"\u201d":-10}},"{":{"d":"33,-9v-1,-33,28,-83,-23,-86r0,-18v52,-3,21,-53,23,-87v2,-35,25,-49,60,-47r0,20v-74,-8,5,110,-55,123v60,8,-20,127,55,125r0,19v-35,1,-59,-10,-60,-49","w":102,"k":{"T":-17,"\u0166":-17,"\u0164":-17,"\u021a":-17,"\u03a4":-17,"J":-6,"\u0134":-6,"C":4,"G":4,"O":4,"Q":4,"\u00d8":4,"\u0152":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"\u0106":4,"\u010c":4,"\u0108":4,"\u010a":4,"\u011e":4,"\u011c":4,"\u0122":4,"\u0120":4,"\u014e":4,"\u0150":4,"\u014c":4,"\u01fe":4,"\u0398":4,"\u039f":4,"V":-18,"W":-18,"\u1e82":-18,"\u0174":-18,"\u1e84":-18,"\u1e80":-18,"X":-4,"\u03a7":-4,"Y":-15,"\u00dd":-15,"\u0178":-15,"\u1ef2":-15,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4,"\u0102":4,"\u0100":4,"\u0104":4,"\u01fc":4,"\u0391":4,"\u039b":4,"j":-20,"\u0135":-20,"\ue000":6,"\u03a6":8,"\u03a8":-2,"\u03a5":-4,"\u03ab":-4,"\u03c7":-1,"\u03bb":-3,"\u03c1":8,"\u03c4":2,"\u03b6":5,"\u03be":5,"\u03c9":2,"\u03ce":2,"\u038f":-8,"\u038c":-7,"\u038e":-4,"\u0388":-7,"\u0389":-7,"\u038a":-7,"\u0427":9,"\u0414":-8,"\u0402":-12,"\u041b":5,"\u0409":5,"\u0422":-13,"\u042a":-13,"\u040b":-13,"\u0408":5,"\u0423":-4,"\u040e":-4,"\u042f":4,"\u0447":18,"\u0434":-6,"\u0452":-2,"\u0442":8,"\u044a":8,"\u0458":-10,"\u045b":-2,"\u0443":6,"\u045e":6,"\u044f":5}},"|":{"d":"31,-270r24,0r0,360r-24,0r0,-360","w":86},"}":{"d":"69,-200v1,35,-28,84,23,87r0,18v-51,3,-21,51,-23,86v-2,39,-25,51,-60,49r0,-19v72,8,-3,-111,55,-125v-59,-8,20,-126,-55,-123r0,-20v35,-1,59,12,60,47","w":102},"~":{"d":"197,-129v-1,98,-90,33,-137,23v-13,0,-21,9,-21,30r-21,0v-1,-36,17,-54,42,-54v24,0,72,32,96,31v13,0,20,-10,20,-30r21,0","w":214},"\u00a1":{"d":"59,70r-35,0r5,-172r25,0xm20,-153v0,-13,9,-23,22,-23v13,0,21,10,21,23v0,13,-9,22,-22,22v-13,0,-21,-9,-21,-22","w":82},"\u00a2":{"d":"96,-31v-45,-7,-72,-36,-72,-86v0,-46,28,-82,72,-89r0,-37r23,0r0,36v16,0,30,5,39,9r-7,24v-39,-23,-95,2,-95,56v0,59,57,75,97,54r6,23v-7,4,-22,9,-40,10r0,36r-23,0r0,-36","w":184},"\u00a3":{"d":"89,-106v4,37,-8,62,-27,80r108,0r0,26r-150,0r0,-18v31,-16,47,-46,39,-88r-37,0r0,-23r34,0v-15,-55,10,-112,65,-109v19,0,31,4,39,9r-7,24v-27,-16,-71,-4,-71,38v0,15,2,26,4,38r51,0r0,23r-48,0","w":184},"\u2044":{"d":"17,4r-20,0r137,-242r20,0","w":150},"\u2215":{"d":"17,4r-20,0r137,-242r20,0","w":150},"\u00a5":{"d":"105,0r-30,0r0,-63r-56,0r0,-18r56,0r0,-26r-56,0r0,-18r48,0r-61,-109r34,0v19,35,32,75,53,107v13,-37,35,-73,53,-107r33,0r-65,109r47,0r0,18r-56,0r0,26r56,0r0,18r-56,0r0,63","w":184},"\u0192":{"d":"40,-122r0,-23r36,0v-1,-52,32,-109,95,-88r-6,23v-41,-14,-59,23,-59,65r43,0r0,23r-46,0v-7,72,-11,180,-99,146r6,-22v60,28,55,-71,63,-124r-33,0","w":184},"\u00a7":{"d":"63,-154v-28,24,-20,46,22,61v18,6,33,13,41,18v23,-21,19,-51,-18,-61v-14,-5,-33,-11,-45,-18xm150,-234r-7,21v-17,-16,-83,-18,-81,15v0,18,17,28,45,34v53,12,80,67,36,100v6,5,13,17,13,32v0,59,-86,66,-125,39r9,-20v16,16,88,24,88,-15v0,-17,-10,-28,-44,-38v-59,-17,-88,-61,-36,-99v-33,-33,2,-81,53,-81v20,0,37,5,49,12","w":186},"\u00a4":{"d":"51,-177v19,-19,64,-20,83,-1r25,-27r17,17r-29,25v17,18,16,70,0,87r27,26r-16,16r-24,-27v-23,20,-62,20,-84,1r-24,26r-15,-16r26,-25v-17,-19,-18,-70,0,-88r-27,-25r16,-17xm134,-120v0,-25,-14,-51,-43,-50v-26,0,-42,23,-42,51v2,68,83,68,85,-1","w":184},"'":{"d":"18,-249r31,0r-5,86r-20,0","w":67,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":21,"\u0134":21,"M":2,"\u039c":2,"V":-6,"W":-6,"\u1e82":-6,"\u0174":-6,"\u1e84":-6,"\u1e80":-6,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"\u0102":22,"\u0100":22,"\u0104":22,"\u01fc":22,"\u0391":22,"\u039b":22,"f":-9,"\u00df":-9,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0111":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"t":-9,"\u0167":-9,"\u0165":-9,"\u021b":-9,"v":-8,"w":-8,"y":-8,"\u00fd":-8,"\u00ff":-8,"\u1e83":-8,"\u0175":-8,"\u1e85":-8,"\u1e81":-8,"\u1ef3":-8,",":41,".":41,"\u2026":41,"\ue000":32,"\u2126":8,"\u03a6":7,"\u03b5":21,"\u03ad":21,"\u03b3":2,"\u03bd":2,"\u03c1":27,"\u03c4":-3,"\u03b8":2,"\u03b6":6,"\u03be":6,"\u03c9":18,"\u03ce":18,"\u038f":-6,"\u038c":-6,"\u038e":-6,"\u0388":-6,"\u0389":-6,"\u038a":-6}},"\u201c":{"d":"45,-165r-32,4v8,-30,23,-69,33,-86r20,-2v-8,21,-17,58,-21,84xm98,-165r-32,4v8,-30,23,-69,33,-86r21,-2v-8,21,-18,58,-22,84","w":127,"k":{"\u0129":8,"\u012f":8,"\u012b":8,"\u0133":8,"\u012d":8,"\u0127":-2,"\u00ec":8,"\u00ef":8,"\u00ee":8,"\u00ed":8,"\u0131":8,"i":8,"T":-14,"\u0166":-14,"\u0164":-14,"\u021a":-14,"\u03a4":-14,"J":30,"\u0134":30,"C":6,"G":6,"O":6,"Q":6,"\u00d8":6,"\u0152":6,"\u00c7":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"\u0106":6,"\u010c":6,"\u0108":6,"\u010a":6,"\u011e":6,"\u011c":6,"\u0122":6,"\u0120":6,"\u014e":6,"\u0150":6,"\u014c":6,"\u01fe":6,"\u0398":6,"\u039f":6,"V":-10,"W":-10,"\u1e82":-10,"\u0174":-10,"\u1e84":-10,"\u1e80":-10,"Y":-7,"\u00dd":-7,"\u0178":-7,"\u1ef2":-7,"A":24,"\u00c6":24,"\u00c1":24,"\u00c2":24,"\u00c4":24,"\u00c0":24,"\u00c5":24,"\u00c3":24,"\u0102":24,"\u0100":24,"\u0104":24,"\u01fc":24,"\u0391":24,"\u039b":24,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"\u0103":13,"\u0101":13,"\u0105":13,"\u01fd":13,"g":22,"\u011f":22,"\u011d":22,"\u0123":22,"\u0121":22,"c":23,"d":23,"e":23,"o":23,"q":23,"\u00f8":23,"\u0153":23,"\u00e7":23,"\u00e9":23,"\u00ea":23,"\u00eb":23,"\u00e8":23,"\u00f3":23,"\u00f4":23,"\u00f6":23,"\u00f2":23,"\u00f5":23,"\u0107":23,"\u010d":23,"\u0109":23,"\u010b":23,"\u010f":23,"\u0111":23,"\u0115":23,"\u011b":23,"\u0117":23,"\u0113":23,"\u0119":23,"\u014f":23,"\u0151":23,"\u014d":23,"\u01ff":23,"s":12,"\u0161":12,"\u015b":12,"\uf6c2":12,"\u015d":12,"\u0219":12,"t":-2,"\u0167":-2,"\u0165":-2,"\u021b":-2,"u":10,"\u00fa":10,"\u00fb":10,"\u00fc":10,"\u00f9":10,"\u016d":10,"\u0171":10,"\u016b":10,"\u0173":10,"\u016f":10,"\u0169":10,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u1e83":-1,"\u0175":-1,"\u1e85":-1,"\u1e81":-1,"\u1ef3":-1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"b":-2,"h":-2,"k":-2,"l":-2,"\u0142":-2,"\u0125":-2,"\u0137":-2,"\u013a":-2,"\u013e":-2,"\u013c":-2,"\u0140":-2,"m":8,"n":8,"p":8,"r":8,"\u00f1":8,"\u014b":8,"\u0144":8,"\u0148":8,"\u0146":8,"\u0155":8,"\u0159":8,"\u0157":8,"\u0138":8,"x":-2,"\u2018":21,"\u201c":21,",":45,".":45,"\u2026":45,"\ue000":28,"\u2126":16,"\u03a6":8,"\u03a5":-7,"\u03ab":-7,"\u039e":-1,"\u03b5":28,"\u03ad":28,"\u03b1":23,"\u03b4":23,"\u03bf":23,"\u03c3":23,"\u03c6":23,"\u03ac":23,"\u03cc":23,"\u03c2":23,"\u03c1":38,"\u03b8":3,"\u03b6":10,"\u03be":10,"\u00b5":8,"\u03b2":8,"\u03b7":8,"\u03ba":8,"\u03ae":8,"\u03c9":23,"\u03ce":23,"\u038f":-11,"\u038c":-11,"\u038e":-11,"\u0388":-11,"\u0389":-11,"\u038a":-11,"\u0402":-24,"\u0424":4,"\u041b":6,"\u0409":6,"\u0422":-24,"\u042a":-24,"\u040b":-24,"\u0408":29,"\u041e":4,"\u0421":4,"\u0404":4,"\u0423":-4,"\u040e":-4,"\u0410":28,"\u042f":4,"\u0434":21,"\u0452":-9,"\u043b":14,"\u0459":14,"\u0442":-7,"\u044a":-7,"\u0458":3,"\u045b":-10,"\u0443":3,"\u045e":3,"\u044f":12}},"\u00ab":{"d":"84,-157r-48,66r48,67r-26,0r-48,-67r48,-66r26,0xm143,-157r-48,66r48,67r-26,0r-48,-67r48,-66r26,0","w":150,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"V":4,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"Y":13,"\u00dd":13,"\u0178":13,"\u1ef2":13,"\ue000":-1,"\u2126":-3,"\u03a6":1,"\u03a5":19,"\u03ab":19,"\u03a3":1,"\u03b3":-5,"\u03bd":-5,"\u03bb":-3,"\u03c4":-5,"\u03c0":-6,"\u038f":-4,"\u038c":-4,"\u038e":19,"\u0402":7,"\u0422":5,"\u042a":5,"\u040b":5,"\u0425":2,"\u0442":-2,"\u044a":-2}},"\u2039":{"d":"84,-157r-48,66r48,67r-26,0r-48,-67r48,-66r26,0","w":91,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"V":4,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"Y":13,"\u00dd":13,"\u0178":13,"\u1ef2":13,"\ue000":-1,"\u2126":-3,"\u03a6":1,"\u03a5":19,"\u03ab":19,"\u03a3":1,"\u03b3":-5,"\u03bd":-5,"\u03bb":-3,"\u03c4":-5,"\u03c0":-6,"\u038f":-4,"\u038c":-4,"\u038e":19,"\u0402":7,"\u0422":5,"\u042a":5,"\u040b":5,"\u0425":2,"\u0442":-2,"\u044a":-2}},"\u203a":{"d":"57,-91r-49,-66r26,0r48,66r-48,67r-25,0","w":91,"k":{"T":20,"\u0166":20,"\u0164":20,"\u021a":20,"\u03a4":20,"J":6,"\u0134":6,"C":-4,"G":-4,"O":-4,"Q":-4,"\u00d8":-4,"\u0152":-4,"\u00c7":-4,"\u00d3":-4,"\u00d4":-4,"\u00d6":-4,"\u00d2":-4,"\u00d5":-4,"\u0106":-4,"\u010c":-4,"\u0108":-4,"\u010a":-4,"\u011e":-4,"\u011c":-4,"\u0122":-4,"\u0120":-4,"\u014e":-4,"\u0150":-4,"\u014c":-4,"\u01fe":-4,"\u0398":-4,"\u039f":-4,"V":10,"W":10,"\u1e82":10,"\u0174":10,"\u1e84":10,"\u1e80":10,"X":5,"\u03a7":5,"Y":18,"\u00dd":18,"\u0178":18,"\u1ef2":18,"g":-4,"\u011f":-4,"\u011d":-4,"\u0123":-4,"\u0121":-4,"\u0427":5,"\u0414":2,"\u0402":12,"\u041b":1,"\u0409":1,"\u0422":6,"\u042a":6,"\u040b":6,"\u0408":4,"\u0423":7,"\u040e":7,"\u0416":3,"\u042f":3,"\u0447":2,"\u0434":1,"\u0452":3,"\u043b":1,"\u0459":1,"\u0442":3,"\u044a":3,"\u0458":4,"\u045b":3,"\u0443":4,"\u045e":4,"\u044f":2,"\u0436":2,"\u0445":4}},"\u2013":{"d":"11,-102r158,0r0,21r-158,0r0,-21","w":180,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,"\u03a4":18,"J":7,"\u0134":7,"C":-5,"G":-5,"O":-5,"Q":-5,"\u00d8":-5,"\u0152":-5,"\u00c7":-5,"\u00d3":-5,"\u00d4":-5,"\u00d6":-5,"\u00d2":-5,"\u00d5":-5,"\u0106":-5,"\u010c":-5,"\u0108":-5,"\u010a":-5,"\u011e":-5,"\u011c":-5,"\u0122":-5,"\u0120":-5,"\u014e":-5,"\u0150":-5,"\u014c":-5,"\u01fe":-5,"\u0398":-5,"\u039f":-5,"V":4,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"X":8,"\u03a7":8,"Y":18,"\u00dd":18,"\u0178":18,"\u1ef2":18,"A":1,"\u00c6":1,"\u00c1":1,"\u00c2":1,"\u00c4":1,"\u00c0":1,"\u00c5":1,"\u00c3":1,"\u0102":1,"\u0100":1,"\u0104":1,"\u01fc":1,"\u0391":1,"\u039b":1,"g":-5,"\u011f":-5,"\u011d":-5,"\u0123":-5,"\u0121":-5,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"\u00f8":-6,"\u0153":-6,"\u00e7":-6,"\u00e9":-6,"\u00ea":-6,"\u00eb":-6,"\u00e8":-6,"\u00f3":-6,"\u00f4":-6,"\u00f6":-6,"\u00f2":-6,"\u00f5":-6,"\u0107":-6,"\u010d":-6,"\u0109":-6,"\u010b":-6,"\u010f":-6,"\u0111":-6,"\u0115":-6,"\u011b":-6,"\u0117":-6,"\u0113":-6,"\u0119":-6,"\u014f":-6,"\u0151":-6,"\u014d":-6,"\u01ff":-6,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u1e83":2,"\u0175":2,"\u1e85":2,"\u1e81":2,"\u1ef3":2,"\u2126":-2,"\u03a6":-5,"\u03a8":5,"\u03a5":19,"\u03ab":19,"\u03a3":9,"\u03b6":-5,"\u03be":-5,"\u03c9":-4,"\u03ce":-4,"\u038f":-4,"\u038c":-4,"\u038e":19,"\u0427":5,"\u0414":5,"\u0402":15,"\u041b":3,"\u0409":3,"\u0422":12,"\u042a":12,"\u040b":12,"\u0408":9,"\u0423":12,"\u040e":12,"\u0416":6,"\u0425":10,"\u042f":3,"\u0447":3,"\u0434":6,"\u0452":3,"\u043b":4,"\u0459":4,"\u0442":4,"\u044a":4,"\u0458":2,"\u0443":4,"\u045e":4,"\u044f":2,"\u0436":5,"\u0445":2}},"\u2020":{"d":"75,-243r30,0r-3,76r63,-2r0,26r-63,-3r3,164r-30,0r3,-164r-63,3r0,-26r63,2","w":180},"\u2021":{"d":"76,-243r28,0r-2,73r63,-3r0,26r-63,-3r0,73r63,-3r0,26r-63,-2r2,74r-29,0r2,-74r-62,2r0,-26r63,3r0,-73r-63,3r0,-26r63,3","w":180},"\u00b7":{"d":"37,-72v-12,0,-21,-9,-21,-22v0,-13,8,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22","w":74},"\u2219":{"d":"37,-72v-12,0,-21,-9,-21,-22v0,-13,8,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22","w":74},"\u00b6":{"d":"105,17r-22,0v-2,-36,4,-80,-2,-112v-28,0,-68,-23,-69,-69v0,-37,20,-79,99,-79v19,0,33,1,42,3r0,257r-22,0r0,-239r-26,0r0,239","w":184},"\u2022":{"d":"89,-94v0,21,-17,37,-39,37v-21,0,-37,-16,-37,-37v0,-21,17,-38,38,-38v21,0,38,17,38,38","w":101},"\u201a":{"d":"28,40r-20,2v8,-21,17,-58,21,-84r32,-4v-8,30,-23,69,-33,86","w":74,"k":{"T":30,"\u0166":30,"\u0164":30,"\u021a":30,"\u03a4":30,"J":-2,"\u0134":-2,"V":19,"W":19,"\u1e82":19,"\u0174":19,"\u1e84":19,"\u1e80":19,"Y":34,"\u00dd":34,"\u0178":34,"\u1ef2":34,"Z":-4,"\u017d":-4,"\u0179":-4,"\u017b":-4,"\u0396":-4,"j":-2,"\u0135":-2,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"\u1ef3":7,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"\u0427":12,"\u0402":4,"\u0422":4,"\u042a":4,"\u040b":4,"\u0423":2,"\u040e":2,"\u0416":2,"\u0410":2,"\u0405":3,"\u0425":3,"\u042f":2,"\u0452":2,"\u0442":-3,"\u044a":-3,"\u0458":2,"\u045b":2,"\u0443":2,"\u045e":2,"\u044f":2,"\u0436":2,"\u0445":3}},"\u201e":{"d":"27,40r-20,2v8,-21,17,-58,21,-84r33,-4v-8,30,-24,69,-34,86xm81,40r-21,2v8,-21,18,-58,22,-84r32,-4v-8,30,-23,69,-33,86","w":128,"k":{"T":30,"\u0166":30,"\u0164":30,"\u021a":30,"\u03a4":30,"J":-2,"\u0134":-2,"V":19,"W":19,"\u1e82":19,"\u0174":19,"\u1e84":19,"\u1e80":19,"Y":34,"\u00dd":34,"\u0178":34,"\u1ef2":34,"Z":-4,"\u017d":-4,"\u0179":-4,"\u017b":-4,"\u0396":-4,"j":-2,"\u0135":-2,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"\u1ef3":7,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"\u0427":12,"\u0402":4,"\u0422":4,"\u042a":4,"\u040b":4,"\u0423":2,"\u040e":2,"\u0416":2,"\u0410":2,"\u0405":3,"\u0425":3,"\u042f":2,"\u0452":2,"\u0442":-3,"\u044a":-3,"\u0458":2,"\u045b":2,"\u0443":2,"\u045e":2,"\u044f":2,"\u0436":2,"\u0445":3}},"\u201d":{"d":"33,-246r33,-3v-8,30,-24,69,-34,86r-20,2v8,-21,17,-59,21,-85xm87,-246r32,-3v-8,30,-23,69,-33,86r-20,2v8,-21,17,-59,21,-85","w":127,"k":{"\u0129":14,"\u012f":14,"\u012b":14,"\u0133":14,"\u012d":14,"\u00ec":14,"\u00ef":14,"\u00ee":14,"\u00ed":14,"\u0131":14,"i":14,"T":-14,"\u0166":-14,"\u0164":-14,"\u021a":-14,"\u03a4":-14,"J":28,"\u0134":28,"M":3,"\u039c":3,"C":9,"G":9,"O":9,"Q":9,"\u00d8":9,"\u0152":9,"\u00c7":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"\u0106":9,"\u010c":9,"\u0108":9,"\u010a":9,"\u011e":9,"\u011c":9,"\u0122":9,"\u0120":9,"\u014e":9,"\u0150":9,"\u014c":9,"\u01fe":9,"\u0398":9,"\u039f":9,"V":-11,"W":-11,"\u1e82":-11,"\u0174":-11,"\u1e84":-11,"\u1e80":-11,"Y":-8,"\u00dd":-8,"\u0178":-8,"\u1ef2":-8,"A":32,"\u00c6":32,"\u00c1":32,"\u00c2":32,"\u00c4":32,"\u00c0":32,"\u00c5":32,"\u00c3":32,"\u0102":32,"\u0100":32,"\u0104":32,"\u01fc":32,"\u0391":32,"\u039b":32,"S":3,"\u0160":3,"\u015a":3,"\uf6c1":3,"\u015c":3,"\u0218":3,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e4":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"\u0103":6,"\u0101":6,"\u0105":6,"\u01fd":6,"g":18,"\u011f":18,"\u011d":18,"\u0123":18,"\u0121":18,"c":28,"d":28,"e":28,"o":28,"q":28,"\u00f8":28,"\u0153":28,"\u00e7":28,"\u00e9":28,"\u00ea":28,"\u00eb":28,"\u00e8":28,"\u00f3":28,"\u00f4":28,"\u00f6":28,"\u00f2":28,"\u00f5":28,"\u0107":28,"\u010d":28,"\u0109":28,"\u010b":28,"\u010f":28,"\u0111":28,"\u0115":28,"\u011b":28,"\u0117":28,"\u0113":28,"\u0119":28,"\u014f":28,"\u0151":28,"\u014d":28,"\u01ff":28,"s":26,"\u0161":26,"\u015b":26,"\uf6c2":26,"\u015d":26,"\u0219":26,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"m":14,"n":14,"p":14,"r":14,"\u00f1":14,"\u014b":14,"\u0144":14,"\u0148":14,"\u0146":14,"\u0155":14,"\u0159":14,"\u0157":14,"\u0138":14,"\u2019":21,"\u201d":21,",":55,".":55,"\u2026":55,"\u00a0":31,"\u0414":4,"\u0402":-2,"\u041b":4,"\u0409":4,"\u0422":-4,"\u042a":-4,"\u040b":-4,"\u0408":6,"\u0410":6,"\u0447":4,"\u0434":6,"\u0452":-2,"\u0458":2,"\u045b":-2}},"\u00bb":{"d":"57,-91r-49,-66r26,0r48,66r-48,67r-25,0xm115,-91r-48,-66r26,0r47,66r-47,67r-26,0","w":150,"k":{"T":20,"\u0166":20,"\u0164":20,"\u021a":20,"\u03a4":20,"J":6,"\u0134":6,"C":-4,"G":-4,"O":-4,"Q":-4,"\u00d8":-4,"\u0152":-4,"\u00c7":-4,"\u00d3":-4,"\u00d4":-4,"\u00d6":-4,"\u00d2":-4,"\u00d5":-4,"\u0106":-4,"\u010c":-4,"\u0108":-4,"\u010a":-4,"\u011e":-4,"\u011c":-4,"\u0122":-4,"\u0120":-4,"\u014e":-4,"\u0150":-4,"\u014c":-4,"\u01fe":-4,"\u0398":-4,"\u039f":-4,"V":10,"W":10,"\u1e82":10,"\u0174":10,"\u1e84":10,"\u1e80":10,"X":5,"\u03a7":5,"Y":18,"\u00dd":18,"\u0178":18,"\u1ef2":18,"g":-4,"\u011f":-4,"\u011d":-4,"\u0123":-4,"\u0121":-4,"\u0427":5,"\u0414":2,"\u0402":12,"\u041b":1,"\u0409":1,"\u0422":6,"\u042a":6,"\u040b":6,"\u0408":4,"\u0423":7,"\u040e":7,"\u0416":3,"\u042f":3,"\u0447":2,"\u0434":1,"\u0452":3,"\u043b":1,"\u0459":1,"\u0442":3,"\u044a":3,"\u0458":4,"\u045b":3,"\u0443":4,"\u045e":4,"\u044f":2,"\u0436":2,"\u0445":4}},"\u2026":{"d":"81,-19v0,13,-8,23,-22,23v-12,0,-20,-10,-20,-23v0,-13,8,-22,21,-22v13,0,21,9,21,22xm201,-19v0,13,-8,23,-22,23v-12,0,-21,-10,-21,-23v0,-13,9,-22,22,-22v13,0,21,9,21,22xm321,-19v0,13,-8,23,-22,23v-12,0,-21,-10,-21,-23v0,-13,9,-22,22,-22v13,0,21,9,21,22","w":360,"k":{"\"":37,"'":37,"\u2018":37,"\u201c":37,"\u2019":41,"\u201d":41,"\u03a5":31,"\u03ab":31}},"\u2030":{"d":"11,-165v0,-47,25,-73,57,-73v32,0,53,26,53,70v0,49,-25,73,-55,73v-30,0,-55,-23,-55,-70xm66,-219v-19,0,-30,24,-30,53v0,30,10,52,30,52v21,0,30,-22,30,-53v0,-29,-8,-52,-30,-52xm84,4r-21,0r138,-242r20,0xm220,-141v32,0,54,25,54,70v0,49,-26,74,-56,74v-30,0,-55,-24,-55,-71v0,-47,26,-73,57,-73xm219,-122v-19,0,-31,23,-31,53v0,30,11,52,31,52v21,0,30,-22,30,-53v0,-28,-8,-52,-30,-52xm295,-68v0,-47,25,-73,57,-73v32,0,53,25,53,70v0,49,-25,74,-55,74v-30,0,-55,-24,-55,-71xm350,-122v-19,0,-30,23,-30,53v0,30,10,52,30,52v21,0,31,-22,31,-53v0,-28,-9,-52,-31,-52","w":416},"\u00bf":{"d":"64,-153v0,-13,8,-23,22,-23v12,0,21,10,21,23v0,13,-9,22,-22,22v-13,0,-21,-9,-21,-22xm20,22v-2,-45,62,-73,51,-125r28,0v16,43,-45,86,-47,121v-2,34,50,38,71,20r8,22v-35,30,-120,10,-111,-38","w":146},"`":{"d":"8,-249r34,0r32,51r-22,0"},"\u00b4":{"d":"68,-249r35,0r-44,51r-23,0"},"\u02c6":{"d":"43,-249r22,0r34,51r-24,0r-21,-34r-21,34r-24,0"},"\u02dc":{"d":"99,-243v3,50,-39,35,-63,23v-6,0,-8,6,-9,16r-17,0v-3,-49,37,-39,62,-24v5,0,9,-3,10,-15r17,0"},"\u00af":{"d":"14,-231r81,0r0,20r-81,0r0,-20"},"\u02c9":{"d":"14,-231r81,0r0,20r-81,0r0,-20"},"\u02d8":{"d":"9,-246r19,0v2,14,11,25,26,25v17,0,25,-13,26,-25r19,0v0,27,-18,45,-45,45v-32,0,-45,-22,-45,-45"},"\u02d9":{"d":"50,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19"},"\u00a8":{"d":"38,-224v0,10,-7,19,-18,19v-10,0,-17,-9,-17,-19v0,-10,8,-18,18,-18v10,0,17,8,17,18xm87,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19"},"\u02da":{"d":"36,-226v0,-19,14,-34,37,-34v22,0,35,15,35,34v0,19,-15,33,-36,33v-22,0,-36,-15,-36,-33xm72,-247v-11,0,-18,10,-18,21v0,10,7,19,18,19v12,0,19,-9,19,-20v0,-11,-7,-20,-19,-20","w":144},"\u00b8":{"d":"49,-1r19,0r-11,19v13,1,25,11,25,25v1,30,-41,35,-63,23r6,-16v11,6,35,9,35,-6v0,-9,-11,-14,-28,-15"},"\u02dd":{"d":"44,-249r31,0r-39,48r-20,0xm96,-249r31,0r-40,48r-19,0"},"\u02db":{"d":"23,43v2,-23,10,-50,42,-44v-11,9,-34,52,-1,54v6,0,12,-2,16,-4r5,17v-23,15,-65,9,-62,-23"},"\u02c7":{"d":"66,-198r-23,0r-34,-51r24,0v8,11,13,24,22,34r21,-34r24,0"},"\u2014":{"d":"11,-102r338,0r0,21r-338,0r0,-21","w":360,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,"\u03a4":18,"J":7,"\u0134":7,"C":-5,"G":-5,"O":-5,"Q":-5,"\u00d8":-5,"\u0152":-5,"\u00c7":-5,"\u00d3":-5,"\u00d4":-5,"\u00d6":-5,"\u00d2":-5,"\u00d5":-5,"\u0106":-5,"\u010c":-5,"\u0108":-5,"\u010a":-5,"\u011e":-5,"\u011c":-5,"\u0122":-5,"\u0120":-5,"\u014e":-5,"\u0150":-5,"\u014c":-5,"\u01fe":-5,"\u0398":-5,"\u039f":-5,"V":4,"W":4,"\u1e82":4,"\u0174":4,"\u1e84":4,"\u1e80":4,"X":8,"\u03a7":8,"Y":18,"\u00dd":18,"\u0178":18,"\u1ef2":18,"A":1,"\u00c6":1,"\u00c1":1,"\u00c2":1,"\u00c4":1,"\u00c0":1,"\u00c5":1,"\u00c3":1,"\u0102":1,"\u0100":1,"\u0104":1,"\u01fc":1,"\u0391":1,"\u039b":1,"g":-5,"\u011f":-5,"\u011d":-5,"\u0123":-5,"\u0121":-5,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"\u00f8":-6,"\u0153":-6,"\u00e7":-6,"\u00e9":-6,"\u00ea":-6,"\u00eb":-6,"\u00e8":-6,"\u00f3":-6,"\u00f4":-6,"\u00f6":-6,"\u00f2":-6,"\u00f5":-6,"\u0107":-6,"\u010d":-6,"\u0109":-6,"\u010b":-6,"\u010f":-6,"\u0111":-6,"\u0115":-6,"\u011b":-6,"\u0117":-6,"\u0113":-6,"\u0119":-6,"\u014f":-6,"\u0151":-6,"\u014d":-6,"\u01ff":-6,"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"\u1e83":2,"\u0175":2,"\u1e85":2,"\u1e81":2,"\u1ef3":2,"\u2126":-2,"\u03a6":-5,"\u03a8":5,"\u03a5":19,"\u03ab":19,"\u03a3":9,"\u03b6":-5,"\u03be":-5,"\u03c9":-4,"\u03ce":-4,"\u038f":-4,"\u038c":-4,"\u038e":19,"\u0427":5,"\u0414":5,"\u0402":15,"\u041b":3,"\u0409":3,"\u0422":12,"\u042a":12,"\u040b":12,"\u0408":9,"\u0423":12,"\u040e":12,"\u0416":6,"\u0425":10,"\u042f":3,"\u0447":3,"\u0434":6,"\u0452":3,"\u043b":4,"\u0459":4,"\u0442":4,"\u044a":4,"\u0458":2,"\u0443":4,"\u045e":4,"\u044f":2,"\u0436":5,"\u0445":2}},"\u00c6":{"d":"32,0r-32,0r111,-243r151,0r0,27r-103,0r9,77r91,0r0,26r-87,0r11,87r89,0r0,26r-116,0r-11,-85r-74,0xm81,-111r61,0v-6,-35,-4,-78,-14,-109v-13,37,-31,74,-47,109","w":283,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0111":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,",":1,".":1,"\u2026":1,"\ue000":-4,"\u039e":-3,"\u03b5":-6,"\u03ad":-6,"\u03bb":-4,"\u03c4":-4,"\u03c0":-5}},"\u00aa":{"d":"109,-96r-21,0r-2,-15v-15,25,-74,21,-74,-18v0,-26,26,-41,72,-40v0,-12,-1,-26,-27,-26v-12,0,-22,3,-30,9r-6,-15v10,-8,26,-12,41,-12v62,1,42,63,47,117xm36,-130v0,30,48,18,49,-4r0,-20v-23,-1,-49,4,-49,24","w":124},"\u0141":{"d":"164,0r-136,0r0,-97r-30,22r0,-24r30,-22r0,-122r32,0r0,100r48,-34r0,24r-48,35r0,92r104,0r0,26","w":171,"k":{"\u01fe":14,"\u00d8":14,"T":32,"\u0166":32,"\u0164":32,"\u021a":32,"\u03a4":32,"J":-4,"\u0134":-4,"C":14,"G":14,"O":14,"Q":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u0108":14,"\u010a":14,"\u011e":14,"\u011c":14,"\u0122":14,"\u0120":14,"\u014e":14,"\u0150":14,"\u014c":14,"\u0398":14,"\u039f":14,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"V":21,"W":21,"\u1e82":21,"\u0174":21,"\u1e84":21,"\u1e80":21,"Y":30,"\u00dd":30,"\u0178":30,"\u1ef2":30,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0111":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"t":1,"\u0167":1,"\u0165":1,"\u021b":1,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u1e83":10,"\u0175":10,"\u1e85":10,"\u1e81":10,"\u1ef3":10,"\u00ab":14,"\u2039":14,"\u00ad":15,"\u2013":15,"\u2014":15,"\"":35,"'":35,"\u2018":42,"\u201c":42,"\u2019":37,"\u201d":37}},"\u00d8":{"d":"40,15r-17,-14r22,-31v-20,-22,-32,-54,-32,-90v0,-102,94,-159,172,-108r22,-29r19,13r-23,31v20,22,32,54,32,90v1,112,-95,156,-172,108xm170,-204v-12,-10,-28,-17,-46,-17v-77,-2,-98,109,-61,164xm186,-185r-108,146v54,47,125,-7,125,-83v0,-21,-4,-42,-17,-63","w":248,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03be":-3,"\u03c0":-4}},"\u0152":{"d":"13,-120v2,-102,73,-123,174,-123r116,0r0,27r-100,0r0,77r94,0r0,26r-94,0r0,87r106,0r0,26r-125,0v-99,20,-173,-30,-171,-120xm172,-27r0,-189v-68,-20,-126,21,-126,95v0,72,56,114,126,94","w":321,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0111":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,",":1,".":1,"\u2026":1,"\ue000":-4,"\u039e":-3,"\u03b5":-6,"\u03ad":-6,"\u03bb":-4,"\u03c4":-4,"\u03c0":-5}},"\u00ba":{"d":"6,-153v0,-37,27,-60,59,-60v35,0,56,26,56,59v0,41,-29,60,-57,60v-32,0,-58,-24,-58,-59xm97,-154v0,-18,-9,-42,-34,-41v-46,1,-38,85,1,83v19,0,33,-17,33,-42","w":127},"\u00e6":{"d":"264,-84r-117,0v-7,63,63,73,104,54r5,22v-39,21,-109,15,-124,-27v-11,24,-35,39,-65,39v-36,0,-54,-24,-54,-50v0,-40,38,-64,105,-63v1,-19,-3,-46,-41,-46v-17,0,-34,6,-44,13r-8,-21v36,-24,103,-20,111,22v12,-23,33,-37,61,-37v58,0,71,54,67,94xm75,-19v37,-1,47,-28,43,-68v-33,-1,-74,5,-74,39v0,18,14,29,31,29xm147,-107r88,0v1,-18,-9,-49,-41,-49v-32,0,-46,29,-47,49","w":278,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"\u00ad":-10,"\u2013":-10,"\u2014":-10,"\u2019":9,"\u201d":9,",":4,".":4,"\u2026":4}},"\u0131":{"d":"58,0r-32,0r0,-174r32,0r0,174","w":84,"k":{"\u2019":-3,"\u201d":-3}},"\u0142":{"d":"59,0r-31,0r0,-104r-25,21r0,-25r25,-21r0,-127r31,0r0,103r26,-22r0,25r-26,22r0,128","w":87,"k":{"\u201d":-2,"\u2019":-2,",":4,".":4,"\u2026":4}},"\u00f8":{"d":"14,-86v-2,-76,69,-113,130,-80r15,-22r14,10r-16,22v17,17,27,40,27,67v-2,83,-70,112,-129,81r-16,22r-13,-11r15,-22v-17,-15,-27,-38,-27,-67xm57,-43v26,-32,47,-68,72,-101v-56,-38,-112,43,-72,101xm141,-130v-26,31,-47,67,-72,100v55,39,110,-42,72,-100","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u021a":14,"\u03a4":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\"":4,"'":4,"\u2019":12,"\u201d":12,",":9,".":9,"\u2026":9}},"\u0153":{"d":"297,-82r-119,0v-4,61,64,72,105,51r6,23v-45,22,-106,15,-127,-29v-36,73,-148,42,-148,-49v0,-94,116,-125,149,-50v13,-28,37,-42,64,-42v61,0,74,54,70,96xm149,-87v0,-33,-15,-68,-52,-67v-74,2,-62,134,1,134v31,0,51,-27,51,-67xm178,-104r89,0v0,-19,-7,-52,-42,-52v-31,0,-45,30,-47,52","w":310,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"\u00ad":-10,"\u2013":-10,"\u2014":-10,"\u2019":9,"\u201d":9,",":4,".":4,"\u2026":4}},"\u00df":{"d":"151,-51v0,-34,-48,-50,-48,-85v0,-19,11,-34,32,-44v12,-25,-7,-55,-34,-55v-28,0,-43,20,-43,71r0,164r-32,0v7,-104,-32,-260,78,-260v47,0,81,49,57,91v-16,7,-26,17,-26,29v0,32,47,46,47,87v0,48,-59,70,-102,49r5,-24v24,14,66,6,66,-23","w":197,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"\u2019":6,"\u201d":6,",":4,".":4,"\u2026":4}},"\u00b9":{"d":"64,-160r-25,0r-1,-118r-26,13r-4,-19v17,-7,29,-19,56,-16r0,140","w":87},"\u00ac":{"d":"14,-144r186,0r0,100r-23,0r0,-78r-163,0r0,-22","w":214},"\u00b5":{"d":"97,-22v64,0,40,-91,44,-152r32,0r0,126v0,19,4,26,17,27r-3,24v-24,5,-36,-5,-43,-30v-8,26,-70,46,-88,11v0,28,0,65,4,87r-29,0v-11,-64,-3,-170,-5,-245r32,0v6,58,-22,152,39,152","w":199,"k":{"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u03bb":-3,"\u03c1":3,"\u03b6":-4,"\u03be":-4,"\u03c0":-3}},"\u2122":{"d":"11,-243r82,0r0,17r-31,0r0,81r-20,0r0,-81r-31,0r0,-17xm218,-145r-19,0r-6,-85r-26,84r-20,0r-25,-84r-5,85r-18,0r7,-98r29,0r24,73v7,-27,16,-48,24,-73r28,0","w":222},"\u00d0":{"d":"228,-127v4,107,-89,143,-199,127r0,-111r-30,0r0,-25r30,0r0,-104v19,-3,42,-6,67,-6v86,0,130,38,132,119xm125,-136r0,25r-65,0r0,87v81,9,135,-24,135,-103v0,-71,-62,-107,-135,-90r0,81r65,0","w":241,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03be":-3,"\u03c0":-4}},"\u00bd":{"d":"66,-96r-25,0r-1,-118r-26,12r-4,-18v17,-7,29,-19,56,-16r0,140xm63,4r-20,0r136,-242r20,0xm158,0v-2,-22,15,-24,23,-35v30,-27,45,-44,45,-62v0,-29,-44,-30,-57,-14r-8,-16v23,-26,101,-14,92,25v2,31,-35,57,-59,82r62,0r0,20r-98,0","w":273},"\u00b1":{"d":"96,-206r23,0r0,70r81,0r0,22r-81,0r0,72r-23,0r0,-72r-82,0r0,-22r82,0r0,-70xm14,-22r186,0r0,22r-186,0r0,-22","w":214},"\u00de":{"d":"58,-195v58,-12,119,8,119,64v0,60,-55,85,-119,75r0,56r-31,0r0,-243r31,0r0,48xm58,-170r0,88v44,9,87,-7,87,-46v0,-43,-49,-50,-87,-42","w":191},"\u00bc":{"d":"71,-96r-25,0r-1,-118r-26,12r-4,-18v17,-7,29,-19,56,-16r0,140xm70,4r-20,0r136,-242r21,0xm239,0r-24,0r0,-37r-72,0r0,-14r69,-91r27,0r0,87r21,0r0,18r-21,0r0,37xm215,-55v-1,-21,3,-46,0,-65v-14,25,-30,43,-46,65r46,0","w":273},"\u00f7":{"d":"107,-139v-11,0,-19,-9,-19,-20v0,-12,8,-20,19,-20v12,0,19,8,19,20v0,11,-7,20,-19,20xm200,-85r-186,0r0,-22r186,0r0,22xm107,-13v-11,0,-19,-9,-19,-20v0,-12,8,-20,19,-20v12,0,19,8,19,20v0,11,-7,20,-19,20","w":214},"\u00a6":{"d":"31,-63r24,0r0,126r-24,0r0,-126xm31,-243r24,0r0,126r-24,0r0,-126","w":86},"\u00b0":{"d":"10,-198v0,-27,21,-49,49,-49v30,0,47,23,47,47v0,29,-23,48,-48,48v-28,0,-48,-21,-48,-46xm58,-230v-37,0,-36,63,0,61v17,0,28,-12,28,-30v0,-13,-7,-31,-28,-31","w":114},"\u00fe":{"d":"26,-241r32,0r1,94v37,-59,133,-28,133,58v0,92,-89,119,-134,66r0,94r-32,0r0,-312xm108,-153v-37,-1,-54,37,-50,84v3,29,24,48,50,48v31,0,51,-26,51,-68v0,-35,-19,-64,-51,-64","w":204},"\u00be":{"d":"24,-210r-6,-16v19,-21,93,-12,85,22v1,15,-12,25,-27,33v19,3,33,17,33,35v8,37,-69,54,-98,32r6,-18v15,14,68,11,65,-15v-3,-21,-24,-26,-48,-25r0,-17v20,1,41,-3,43,-23v0,-9,-6,-17,-23,-17v-13,0,-25,5,-30,9xm84,4r-21,0r137,-242r20,0xm243,0r-24,0r0,-37r-72,0r0,-14r69,-91r27,0r0,87r21,0r0,18r-21,0r0,37xm219,-55v-1,-21,3,-46,0,-65v-12,25,-34,45,-46,65r46,0","w":273},"\u00b2":{"d":"4,-160v-3,-22,15,-23,23,-34v30,-27,45,-45,45,-63v0,-30,-44,-30,-57,-13r-8,-17v10,-8,26,-15,44,-15v81,0,46,81,0,112r-11,10r62,0r0,20r-98,0","w":111},"\u00ae":{"d":"104,-156v-29,7,-6,-30,-38,-24r0,24r-13,0r0,-59v16,-3,49,-5,49,15v0,8,-8,11,-13,15v10,0,12,24,15,29xm74,-207v-12,-2,-5,10,-7,18v19,4,30,-17,7,-18xm76,-246v33,0,60,26,60,59v0,33,-26,60,-60,60v-34,0,-61,-27,-61,-60v0,-33,27,-59,61,-59xm121,-186v0,-26,-19,-48,-46,-48v-26,0,-45,21,-45,47v0,26,20,47,46,47v26,0,45,-20,45,-46","w":150},"\u2212":{"d":"14,-107r186,0r0,22r-186,0r0,-22","w":214},"\u00f0":{"d":"148,-87v0,-42,-12,-66,-50,-66v-72,0,-65,135,-2,133v31,0,52,-27,52,-67xm119,-218v36,30,60,66,61,127v0,67,-43,95,-84,95v-47,0,-82,-35,-82,-89v0,-74,70,-110,121,-75v-10,-17,-24,-32,-42,-46r-51,23r-7,-15r42,-20v-10,-8,-25,-15,-38,-21r14,-20v17,8,36,18,51,29r45,-22r8,16","w":194},"\u00d7":{"d":"14,-174r16,-16r77,79r77,-79r16,16r-77,79r77,79r-16,16r-77,-79r-77,79r-16,-16r78,-79","w":214},"\u00b3":{"d":"16,-274r-6,-17v20,-19,94,-11,85,23v0,14,-10,27,-27,33v19,3,33,17,33,35v8,37,-69,54,-98,32r6,-18v15,14,69,10,66,-15v-3,-20,-25,-26,-48,-25r0,-17v20,1,39,-2,42,-22v3,-23,-43,-20,-53,-9","w":109},"\u00a9":{"d":"13,-122v0,-61,48,-111,110,-111v60,0,108,50,108,111v0,62,-48,111,-109,111v-61,0,-109,-49,-109,-111xm122,-219v-51,0,-91,43,-91,98v0,54,39,95,91,95v51,0,91,-41,91,-96v0,-54,-40,-97,-91,-97xm171,-177r-5,14v-5,-3,-18,-9,-35,-9v-34,0,-50,22,-50,51v0,43,53,63,87,41r4,14v-47,28,-110,0,-110,-54v0,-57,68,-82,109,-57","w":243},"\u00c1":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-8,39,-24,77,-36,114xm125,-298r38,0r-46,42r-25,0","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"\u03a4":28,"J":-7,"\u0134":-7,"M":1,"\u039c":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u0398":5,"\u039f":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"V":19,"W":19,"\u1e82":19,"\u0174":19,"\u1e84":19,"\u1e80":19,"X":5,"\u03a7":5,"Y":28,"\u00dd":28,"\u0178":28,"\u1ef2":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"j":1,"\u0135":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u1e83":8,"\u0175":8,"\u1e85":8,"\u1e81":8,"\u1ef3":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,")":3,"]":3,"}":3,"\"":21,"'":21,"\u2018":22,"\u201c":22,"\u2019":18,"\u201d":18,"\ue000":-4,"\u2126":-1,"\u03a6":8,"\u03a8":26,"\u03a5":36,"\u03ab":36,"\u03c7":10,"\u03b5":-3,"\u03ad":-3,"\u03b3":9,"\u03bd":9,"\u03bb":-4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4,"\u03c1":5,"\u03c4":9,"\u03b8":4,"\u03c5":4,"\u03c8":4,"\u03cd":4,"\u03cb":4,"\u03b0":4,"\u03b6":1,"\u03be":1}},"\u00c2":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-8,39,-24,77,-36,114xm99,-297r24,0r38,41r-26,0v-8,-8,-15,-17,-24,-24r-23,24r-25,0","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"\u03a4":28,"J":-7,"\u0134":-7,"M":1,"\u039c":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u0398":5,"\u039f":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"V":19,"W":19,"\u1e82":19,"\u0174":19,"\u1e84":19,"\u1e80":19,"X":5,"\u03a7":5,"Y":28,"\u00dd":28,"\u0178":28,"\u1ef2":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"j":1,"\u0135":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u1e83":8,"\u0175":8,"\u1e85":8,"\u1e81":8,"\u1ef3":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,")":3,"]":3,"}":3,"\"":21,"'":21,"\u2018":22,"\u201c":22,"\u2019":18,"\u201d":18,"\ue000":-4,"\u2126":-1,"\u03a6":8,"\u03a8":26,"\u03a5":36,"\u03ab":36,"\u03c7":10,"\u03b5":-3,"\u03ad":-3,"\u03b3":9,"\u03bd":9,"\u03bb":-4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4,"\u03c1":5,"\u03c4":9,"\u03b8":4,"\u03c5":4,"\u03c8":4,"\u03cd":4,"\u03cb":4,"\u03b0":4,"\u03b6":1,"\u03be":1}},"\u00c4":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-8,39,-24,77,-36,114xm78,-259v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-17,18xm162,-277v0,10,-6,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"\u03a4":28,"J":-7,"\u0134":-7,"M":1,"\u039c":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u0398":5,"\u039f":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"V":19,"W":19,"\u1e82":19,"\u0174":19,"\u1e84":19,"\u1e80":19,"X":5,"\u03a7":5,"Y":28,"\u00dd":28,"\u0178":28,"\u1ef2":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"j":1,"\u0135":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u1e83":8,"\u0175":8,"\u1e85":8,"\u1e81":8,"\u1ef3":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,")":3,"]":3,"}":3,"\"":21,"'":21,"\u2018":22,"\u201c":22,"\u2019":18,"\u201d":18,"\ue000":-4,"\u2126":-1,"\u03a6":8,"\u03a8":26,"\u03a5":36,"\u03ab":36,"\u03c7":10,"\u03b5":-3,"\u03ad":-3,"\u03b3":9,"\u03bd":9,"\u03bb":-4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4,"\u03c1":5,"\u03c4":9,"\u03b8":4,"\u03c5":4,"\u03c8":4,"\u03cd":4,"\u03cb":4,"\u03b0":4,"\u03b6":1,"\u03be":1}},"\u00c0":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-8,39,-24,77,-36,114xm58,-298r38,0r33,42r-25,0","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"\u03a4":28,"J":-7,"\u0134":-7,"M":1,"\u039c":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u0398":5,"\u039f":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"V":19,"W":19,"\u1e82":19,"\u0174":19,"\u1e84":19,"\u1e80":19,"X":5,"\u03a7":5,"Y":28,"\u00dd":28,"\u0178":28,"\u1ef2":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"j":1,"\u0135":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u1e83":8,"\u0175":8,"\u1e85":8,"\u1e81":8,"\u1ef3":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,")":3,"]":3,"}":3,"\"":21,"'":21,"\u2018":22,"\u201c":22,"\u2019":18,"\u201d":18,"\ue000":-4,"\u2126":-1,"\u03a6":8,"\u03a8":26,"\u03a5":36,"\u03ab":36,"\u03c7":10,"\u03b5":-3,"\u03ad":-3,"\u03b3":9,"\u03bd":9,"\u03bb":-4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4,"\u03c1":5,"\u03c4":9,"\u03b8":4,"\u03c5":4,"\u03c8":4,"\u03cd":4,"\u03cb":4,"\u03b0":4,"\u03b6":1,"\u03be":1}},"\u00c5":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-8,39,-24,77,-36,114xm111,-316v22,0,36,14,36,32v0,18,-15,32,-36,32v-22,0,-36,-14,-36,-32v0,-18,14,-32,36,-32xm110,-303v-10,0,-17,9,-17,19v0,9,7,19,17,19v11,0,18,-8,18,-19v0,-10,-7,-19,-18,-19","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"\u03a4":28,"J":-7,"\u0134":-7,"M":1,"\u039c":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u0398":5,"\u039f":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"V":19,"W":19,"\u1e82":19,"\u0174":19,"\u1e84":19,"\u1e80":19,"X":5,"\u03a7":5,"Y":28,"\u00dd":28,"\u0178":28,"\u1ef2":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"j":1,"\u0135":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u1e83":8,"\u0175":8,"\u1e85":8,"\u1e81":8,"\u1ef3":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,")":3,"]":3,"}":3,"\"":21,"'":21,"\u2018":22,"\u201c":22,"\u2019":18,"\u201d":18,"\ue000":-4,"\u2126":-1,"\u03a6":8,"\u03a8":26,"\u03a5":36,"\u03ab":36,"\u03c7":10,"\u03b5":-3,"\u03ad":-3,"\u03b3":9,"\u03bd":9,"\u03bb":-4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4,"\u03c1":5,"\u03c4":9,"\u03b8":4,"\u03c5":4,"\u03c8":4,"\u03cd":4,"\u03cb":4,"\u03b0":4,"\u03b6":1,"\u03be":1}},"\u00c3":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-8,39,-24,77,-36,114xm156,-294v3,49,-42,32,-63,21v-6,0,-8,6,-9,16r-17,0v0,-22,9,-37,24,-37v17,0,43,34,48,0r17,0","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"\u03a4":28,"J":-7,"\u0134":-7,"M":1,"\u039c":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u0398":5,"\u039f":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"V":19,"W":19,"\u1e82":19,"\u0174":19,"\u1e84":19,"\u1e80":19,"X":5,"\u03a7":5,"Y":28,"\u00dd":28,"\u0178":28,"\u1ef2":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"j":1,"\u0135":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u1e83":8,"\u0175":8,"\u1e85":8,"\u1e81":8,"\u1ef3":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,")":3,"]":3,"}":3,"\"":21,"'":21,"\u2018":22,"\u201c":22,"\u2019":18,"\u201d":18,"\ue000":-4,"\u2126":-1,"\u03a6":8,"\u03a8":26,"\u03a5":36,"\u03ab":36,"\u03c7":10,"\u03b5":-3,"\u03ad":-3,"\u03b3":9,"\u03bd":9,"\u03bb":-4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4,"\u03c1":5,"\u03c4":9,"\u03b8":4,"\u03c5":4,"\u03c8":4,"\u03cd":4,"\u03cb":4,"\u03b0":4,"\u03b6":1,"\u03be":1}},"\u00c7":{"d":"191,-33r6,25v-11,6,-33,12,-63,12r-9,14v14,3,25,12,25,27v1,31,-41,35,-63,23r6,-16v9,6,34,9,35,-6v0,-9,-11,-14,-28,-16r15,-27v-59,-7,-102,-49,-102,-122v0,-97,97,-150,184,-117r-7,26v-67,-29,-144,6,-144,90v0,80,75,116,145,87","w":210,"k":{"\u0152":8,"T":-10,"\u0166":-10,"\u0164":-10,"\u021a":-10,"\u03a4":-10,"J":-1,"\u0134":-1,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u0398":8,"\u039f":8,"V":-4,"W":-4,"\u1e82":-4,"\u0174":-4,"\u1e84":-4,"\u1e80":-4,"A":-1,"\u00c6":-1,"\u00c1":-1,"\u00c2":-1,"\u00c4":-1,"\u00c0":-1,"\u00c5":-1,"\u00c3":-1,"\u0102":-1,"\u0100":-1,"\u0104":-1,"\u01fc":-1,"\u0391":-1,"\u039b":-1,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fd":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"\u1ef3":7,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,"\u00ab":4,"\u2039":4,")":-6,"]":-6,"}":-6,"\u2019":-7,"\u201d":-7}},"\u00c9":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0xm109,-298r38,0r-46,42r-25,0","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0111":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,",":1,".":1,"\u2026":1,"\ue000":-4,"\u039e":-3,"\u03b5":-6,"\u03ad":-6,"\u03bb":-4,"\u03c4":-4,"\u03c0":-5}},"\u00ca":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0xm80,-297r24,0r38,41r-26,0v-8,-8,-15,-17,-24,-24r-23,24r-25,0","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0111":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,",":1,".":1,"\u2026":1,"\ue000":-4,"\u039e":-3,"\u03b5":-6,"\u03ad":-6,"\u03bb":-4,"\u03c4":-4,"\u03c0":-5}},"\u00cb":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0xm76,-278v0,10,-7,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18xm125,-260v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-18,18","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0111":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,",":1,".":1,"\u2026":1,"\ue000":-4,"\u039e":-3,"\u03b5":-6,"\u03ad":-6,"\u03bb":-4,"\u03c4":-4,"\u03c0":-5}},"\u00c8":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0xm43,-298r38,0r34,42r-26,0","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0111":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,",":1,".":1,"\u2026":1,"\ue000":-4,"\u039e":-3,"\u03b5":-6,"\u03ad":-6,"\u03bb":-4,"\u03c4":-4,"\u03c0":-5}},"\u00cd":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm57,-298r38,0r-46,42r-25,0","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u00ce":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm31,-297r24,0r38,41r-27,0v-8,-8,-15,-17,-24,-24r-23,24r-25,0","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u00cf":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm10,-260v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-17,18xm94,-278v0,10,-6,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u00cc":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm-9,-298r38,0r33,42r-25,0","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u00d1":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,28,32,56,45,79v-6,-61,-3,-134,-4,-202r30,0r0,243r-32,0r-77,-123v-18,-27,-32,-57,-46,-81xm165,-294v3,49,-42,32,-63,21v-6,0,-8,6,-9,16r-17,0v0,-22,9,-37,24,-37v17,0,43,34,48,0r17,0","w":236,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u00d3":{"d":"122,4v-64,0,-109,-50,-109,-123v0,-77,47,-128,112,-128v67,0,110,51,110,123v0,83,-51,128,-113,128xm46,-120v0,51,28,99,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99v-52,0,-78,48,-78,101xm139,-299r38,0r-46,42r-26,0","w":248,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03be":-3,"\u03c0":-4}},"\u00d4":{"d":"122,4v-64,0,-109,-50,-109,-123v0,-77,47,-128,112,-128v67,0,110,51,110,123v0,83,-51,128,-113,128xm46,-120v0,51,28,99,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99v-52,0,-78,48,-78,101xm112,-298r24,0r38,41r-27,0v-8,-8,-15,-18,-24,-25r-23,25r-25,0","w":248,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03be":-3,"\u03c0":-4}},"\u00d6":{"d":"122,4v-64,0,-109,-50,-109,-123v0,-77,47,-128,112,-128v67,0,110,51,110,123v0,83,-51,128,-113,128xm46,-120v0,51,28,99,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99v-52,0,-78,48,-78,101xm91,-260v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-17,18xm175,-278v0,10,-6,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18","w":248,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03be":-3,"\u03c0":-4}},"\u00d2":{"d":"122,4v-64,0,-109,-50,-109,-123v0,-77,47,-128,112,-128v67,0,110,51,110,123v0,83,-51,128,-113,128xm46,-120v0,51,28,99,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99v-52,0,-78,48,-78,101xm72,-299r38,0r34,42r-26,0","w":248,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03be":-3,"\u03c0":-4}},"\u00d5":{"d":"122,4v-64,0,-109,-50,-109,-123v0,-77,47,-128,112,-128v67,0,110,51,110,123v0,83,-51,128,-113,128xm46,-120v0,51,28,99,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99v-52,0,-78,48,-78,101xm169,-295v3,50,-41,32,-63,21v-6,0,-9,6,-10,16r-16,0v0,-22,9,-37,24,-37v17,0,43,34,48,0r17,0","w":248,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03be":-3,"\u03c0":-4}},"\u0160":{"d":"15,-12r8,-26v29,23,107,21,107,-26v0,-23,-13,-36,-46,-48v-40,-14,-64,-34,-64,-68v0,-58,86,-81,132,-55r-9,26v-8,-5,-23,-11,-45,-11v-33,0,-46,19,-46,36v0,22,14,36,48,46v88,26,83,142,-23,142v-23,0,-49,-7,-62,-16xm106,-257r-24,0r-38,-41r27,0r23,25r23,-25r26,0","w":177,"k":{"j":1,"\u0135":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0111":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u2018":3,"\u201c":3,"\u2019":4,"\u201d":4}},"\u00da":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143xm132,-298r38,0r-46,42r-25,0","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fc":12,"\u0391":12,"\u039b":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u021b":-1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,"\u2019":2,"\u201d":2,",":10,".":10,"\u2026":10}},"\u00db":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143xm106,-297r24,0r38,41r-27,0v-8,-8,-14,-17,-23,-24r-23,24r-26,0","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fc":12,"\u0391":12,"\u039b":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u021b":-1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,"\u2019":2,"\u201d":2,",":10,".":10,"\u2026":10}},"\u00dc":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143xm84,-260v-10,0,-17,-8,-17,-18v0,-10,7,-18,17,-18v10,0,18,8,18,18v0,10,-8,18,-18,18xm168,-278v0,10,-6,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fc":12,"\u0391":12,"\u039b":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u021b":-1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,"\u2019":2,"\u201d":2,",":10,".":10,"\u2026":10}},"\u00d9":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143xm66,-298r38,0r34,42r-26,0","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fc":12,"\u0391":12,"\u039b":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u021b":-1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,"\u2019":2,"\u201d":2,",":10,".":10,"\u2026":10}},"\u00dd":{"d":"113,0r-32,0r0,-103r-77,-140r36,0r59,117v17,-38,41,-79,60,-117r35,0r-81,140r0,103xm116,-296r38,0r-46,42r-26,0","w":194,"k":{"\u012d":5,"\u00f6":27,"\u00ef":5,"\u00eb":27,"\u00e4":25,"T":-12,"\u0166":-12,"\u0164":-12,"\u021a":-12,"\u03a4":-12,"J":19,"\u0134":19,"M":4,"\u039c":4,"C":13,"G":13,"O":13,"Q":13,"\u00d8":13,"\u0152":13,"\u00c7":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"\u0106":13,"\u010c":13,"\u0108":13,"\u010a":13,"\u011e":13,"\u011c":13,"\u0122":13,"\u0120":13,"\u014e":13,"\u0150":13,"\u014c":13,"\u01fe":13,"\u0398":13,"\u039f":13,"V":-10,"W":-10,"\u1e82":-10,"\u0174":-10,"\u1e84":-10,"\u1e80":-10,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,"\u0102":29,"\u0100":29,"\u0104":29,"\u01fc":29,"\u0391":29,"\u039b":29,"S":5,"\u0160":5,"\u015a":5,"\uf6c1":5,"\u015c":5,"\u0218":5,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"\u0141":3,"\u00d0":3,"\u00c9":3,"\u00ca":3,"\u00cb":3,"\u00c8":3,"\u00cd":3,"\u00ce":3,"\u00cf":3,"\u00cc":3,"\u00d1":3,"\u010e":3,"\u0110":3,"\u0114":3,"\u011a":3,"\u0116":3,"\u0112":3,"\u014a":3,"\u0118":3,"\u0126":3,"\u0124":3,"\u012c":3,"\u0132":3,"\u012a":3,"\u012e":3,"\u0128":3,"\u0136":3,"\u0139":3,"\u013d":3,"\u013b":3,"\u013f":3,"\u0143":3,"\u0147":3,"\u0145":3,"\u0154":3,"\u0158":3,"\u0156":3,"\u0130":3,"\u0392":3,"\u0393":3,"\u0395":3,"\u0397":3,"\u0399":3,"\u039a":3,"\u039d":3,"\u03a0":3,"\u03a1":3,"\u03aa":3,"a":25,"\u00e6":25,"\u00e1":25,"\u00e2":25,"\u00e0":25,"\u00e5":25,"\u00e3":25,"\u0103":25,"\u0101":25,"\u0105":25,"\u01fd":25,"g":14,"\u011f":14,"\u011d":14,"\u0123":14,"\u0121":14,"c":27,"d":27,"e":27,"o":27,"q":27,"\u00f8":27,"\u0153":27,"\u00e7":27,"\u00e9":27,"\u00ea":27,"\u00e8":27,"\u00f3":27,"\u00f4":27,"\u00f2":27,"\u00f5":27,"\u0107":27,"\u010d":27,"\u0109":27,"\u010b":27,"\u010f":27,"\u0111":27,"\u0115":27,"\u011b":27,"\u0117":27,"\u0113":27,"\u0119":27,"\u014f":27,"\u0151":27,"\u014d":27,"\u01ff":27,"s":19,"\u0161":19,"\u015b":19,"\uf6c2":19,"\u015d":19,"\u0219":19,"t":7,"\u0167":7,"\u0165":7,"\u021b":7,"u":19,"\u00fa":19,"\u00fb":19,"\u00fc":19,"\u00f9":19,"\u016d":19,"\u0171":19,"\u016b":19,"\u0173":19,"\u016f":19,"\u0169":19,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u1e83":10,"\u0175":10,"\u1e85":10,"\u1e81":10,"\u1ef3":10,"z":9,"\u017e":9,"\u017a":9,"\u017c":9,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"i":5,"m":5,"n":5,"p":5,"r":5,"\u0131":5,"\u00ed":5,"\u00ee":5,"\u00ec":5,"\u00f1":5,"\u014b":5,"\u0133":5,"\u012b":5,"\u012f":5,"\u0129":5,"\u0144":5,"\u0148":5,"\u0146":5,"\u0155":5,"\u0159":5,"\u0157":5,"\u0138":5,"x":9,":":12,";":12,"\u203a":7,"\u00bb":7,"\u00ab":18,"\u2039":18,"\u00ad":18,"\u2013":18,"\u2014":18,")":-20,"]":-20,"}":-20,"\"":-3,"'":-3,"\u2018":2,"\u201c":2,"\u2019":-5,"\u201d":-5,",":34,".":34,"\u2026":34}},"\u0178":{"d":"113,0r-32,0r0,-103r-77,-140r36,0r59,117v17,-38,41,-79,60,-117r35,0r-81,140r0,103xm85,-275v0,10,-7,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18xm134,-257v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-18,18","w":194,"k":{"\u012d":5,"\u00f6":27,"\u00ef":5,"\u00eb":27,"\u00e4":25,"T":-12,"\u0166":-12,"\u0164":-12,"\u021a":-12,"\u03a4":-12,"J":19,"\u0134":19,"M":4,"\u039c":4,"C":13,"G":13,"O":13,"Q":13,"\u00d8":13,"\u0152":13,"\u00c7":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"\u0106":13,"\u010c":13,"\u0108":13,"\u010a":13,"\u011e":13,"\u011c":13,"\u0122":13,"\u0120":13,"\u014e":13,"\u0150":13,"\u014c":13,"\u01fe":13,"\u0398":13,"\u039f":13,"V":-10,"W":-10,"\u1e82":-10,"\u0174":-10,"\u1e84":-10,"\u1e80":-10,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,"\u0102":29,"\u0100":29,"\u0104":29,"\u01fc":29,"\u0391":29,"\u039b":29,"S":5,"\u0160":5,"\u015a":5,"\uf6c1":5,"\u015c":5,"\u0218":5,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"\u0141":3,"\u00d0":3,"\u00c9":3,"\u00ca":3,"\u00cb":3,"\u00c8":3,"\u00cd":3,"\u00ce":3,"\u00cf":3,"\u00cc":3,"\u00d1":3,"\u010e":3,"\u0110":3,"\u0114":3,"\u011a":3,"\u0116":3,"\u0112":3,"\u014a":3,"\u0118":3,"\u0126":3,"\u0124":3,"\u012c":3,"\u0132":3,"\u012a":3,"\u012e":3,"\u0128":3,"\u0136":3,"\u0139":3,"\u013d":3,"\u013b":3,"\u013f":3,"\u0143":3,"\u0147":3,"\u0145":3,"\u0154":3,"\u0158":3,"\u0156":3,"\u0130":3,"\u0392":3,"\u0393":3,"\u0395":3,"\u0397":3,"\u0399":3,"\u039a":3,"\u039d":3,"\u03a0":3,"\u03a1":3,"\u03aa":3,"a":25,"\u00e6":25,"\u00e1":25,"\u00e2":25,"\u00e0":25,"\u00e5":25,"\u00e3":25,"\u0103":25,"\u0101":25,"\u0105":25,"\u01fd":25,"g":14,"\u011f":14,"\u011d":14,"\u0123":14,"\u0121":14,"c":27,"d":27,"e":27,"o":27,"q":27,"\u00f8":27,"\u0153":27,"\u00e7":27,"\u00e9":27,"\u00ea":27,"\u00e8":27,"\u00f3":27,"\u00f4":27,"\u00f2":27,"\u00f5":27,"\u0107":27,"\u010d":27,"\u0109":27,"\u010b":27,"\u010f":27,"\u0111":27,"\u0115":27,"\u011b":27,"\u0117":27,"\u0113":27,"\u0119":27,"\u014f":27,"\u0151":27,"\u014d":27,"\u01ff":27,"s":19,"\u0161":19,"\u015b":19,"\uf6c2":19,"\u015d":19,"\u0219":19,"t":7,"\u0167":7,"\u0165":7,"\u021b":7,"u":19,"\u00fa":19,"\u00fb":19,"\u00fc":19,"\u00f9":19,"\u016d":19,"\u0171":19,"\u016b":19,"\u0173":19,"\u016f":19,"\u0169":19,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u1e83":10,"\u0175":10,"\u1e85":10,"\u1e81":10,"\u1ef3":10,"z":9,"\u017e":9,"\u017a":9,"\u017c":9,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"i":5,"m":5,"n":5,"p":5,"r":5,"\u0131":5,"\u00ed":5,"\u00ee":5,"\u00ec":5,"\u00f1":5,"\u014b":5,"\u0133":5,"\u012b":5,"\u012f":5,"\u0129":5,"\u0144":5,"\u0148":5,"\u0146":5,"\u0155":5,"\u0159":5,"\u0157":5,"\u0138":5,"x":9,":":12,";":12,"\u203a":7,"\u00bb":7,"\u00ab":18,"\u2039":18,"\u00ad":18,"\u2013":18,"\u2014":18,")":-20,"]":-20,"}":-20,"\"":-3,"'":-3,"\u2018":2,"\u201c":2,"\u2019":-5,"\u201d":-5,",":34,".":34,"\u2026":34}},"\u017d":{"d":"11,0r0,-18r134,-198r-123,0r0,-27r164,0r0,19r-134,198r136,0r0,26r-177,0xm116,-256r-24,0r-38,-41r27,0r23,25r23,-25r26,0","w":199,"k":{"J":-3,"\u0134":-3,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u0152":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u0398":8,"\u039f":8,"X":2,"\u03a7":2,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"\u00ad":10,"\u2013":10,"\u2014":10,"\u2018":2,"\u201c":2,"\u03a5":-3,"\u03ab":-3,"\u039e":-2,"\u03a3":3,"\u03bb":-4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4}},"\u00e1":{"d":"82,-178v97,3,56,97,70,178r-29,0v-2,-7,0,-17,-4,-22v-9,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-17,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm74,-19v38,-2,48,-28,44,-70v-35,-1,-74,5,-74,39v0,21,14,31,30,31xm99,-249r35,0r-44,51r-23,0","w":173},"\u00e2":{"d":"82,-178v97,3,56,97,70,178r-29,0v-2,-7,0,-17,-4,-22v-9,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-17,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm74,-19v38,-2,48,-28,44,-70v-35,-1,-74,5,-74,39v0,21,14,31,30,31xm74,-249r22,0r35,51r-24,0v-8,-11,-13,-24,-22,-34r-21,34r-24,0","w":173},"\u00e4":{"d":"82,-178v97,3,56,97,70,178r-29,0v-2,-7,0,-17,-4,-22v-9,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-17,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm74,-19v38,-2,48,-28,44,-70v-35,-1,-74,5,-74,39v0,21,14,31,30,31xm53,-205v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18v10,0,17,8,17,18v0,10,-8,19,-18,19xm120,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19","w":173},"\u00e0":{"d":"82,-178v97,3,56,97,70,178r-29,0v-2,-7,0,-17,-4,-22v-9,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-17,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm74,-19v38,-2,48,-28,44,-70v-35,-1,-74,5,-74,39v0,21,14,31,30,31xm34,-249r35,0r31,51r-22,0","w":173},"\u00e5":{"d":"82,-178v97,3,56,97,70,178r-29,0v-2,-7,0,-17,-4,-22v-9,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-17,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm74,-19v38,-2,48,-28,44,-70v-35,-1,-74,5,-74,39v0,21,14,31,30,31xm50,-226v0,-19,14,-34,37,-34v22,0,35,15,35,34v0,19,-15,33,-36,33v-22,0,-36,-15,-36,-33xm86,-247v-11,0,-18,10,-18,21v0,10,7,19,18,19v12,0,19,-9,19,-20v0,-11,-7,-20,-19,-20","w":173},"\u00e3":{"d":"82,-178v97,3,56,97,70,178r-29,0v-2,-7,0,-17,-4,-22v-9,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-17,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm74,-19v38,-2,48,-28,44,-70v-35,-1,-74,5,-74,39v0,21,14,31,30,31xm130,-243v3,51,-38,35,-62,23v-6,0,-8,6,-9,16r-18,0v-1,-23,10,-38,25,-38v17,0,43,34,47,-1r17,0","w":173},"\u00e7":{"d":"145,-30r5,24v-7,4,-23,10,-45,10r-9,14v13,3,25,11,25,26v0,32,-38,36,-62,24r5,-16v10,6,35,10,35,-7v0,-9,-11,-13,-28,-15r15,-27v-44,-5,-72,-40,-72,-88v0,-70,72,-113,137,-84r-7,24v-43,-23,-105,7,-98,58v-4,57,55,78,99,57","w":160,"k":{"T":4,"\u0166":4,"\u0164":4,"\u021a":4,"\u03a4":4,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0111":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"t":-5,"\u0167":-5,"\u0165":-5,"\u021b":-5,"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,"\u1e83":-6,"\u0175":-6,"\u1e85":-6,"\u1e81":-6,"\u1ef3":-6,"\u203a":-5,"\u00bb":-5,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u2018":-6,"\u201c":-6,"\u2019":-6,"\u201d":-6,",":4,".":4,"\u2026":4}},"\u00e9":{"d":"166,-81r-122,0v-2,63,66,69,108,51r6,22v-11,5,-31,12,-59,12v-53,0,-85,-36,-85,-88v0,-53,31,-94,82,-94v63,0,74,53,70,97xm45,-104r92,0v0,-20,-9,-52,-44,-52v-32,0,-45,30,-48,52xm109,-249r35,0r-44,51r-22,0","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"\u00ad":-10,"\u2013":-10,"\u2014":-10,"\u2019":9,"\u201d":9,",":4,".":4,"\u2026":4}},"\u00ea":{"d":"166,-81r-122,0v-2,63,66,69,108,51r6,22v-11,5,-31,12,-59,12v-53,0,-85,-36,-85,-88v0,-53,31,-94,82,-94v63,0,74,53,70,97xm45,-104r92,0v0,-20,-9,-52,-44,-52v-32,0,-45,30,-48,52xm84,-249r22,0r34,51r-24,0r-21,-34r-21,34r-24,0","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"\u00ad":-10,"\u2013":-10,"\u2014":-10,"\u2019":9,"\u201d":9,",":4,".":4,"\u2026":4}},"\u00eb":{"d":"166,-81r-122,0v-2,63,66,69,108,51r6,22v-11,5,-31,12,-59,12v-53,0,-85,-36,-85,-88v0,-53,31,-94,82,-94v63,0,74,53,70,97xm45,-104r92,0v0,-20,-9,-52,-44,-52v-32,0,-45,30,-48,52xm63,-205v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18v10,0,17,8,17,18v0,10,-8,19,-18,19xm130,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"\u00ad":-10,"\u2013":-10,"\u2014":-10,"\u2019":9,"\u201d":9,",":4,".":4,"\u2026":4}},"\u00e8":{"d":"166,-81r-122,0v-2,63,66,69,108,51r6,22v-11,5,-31,12,-59,12v-53,0,-85,-36,-85,-88v0,-53,31,-94,82,-94v63,0,74,53,70,97xm45,-104r92,0v0,-20,-9,-52,-44,-52v-32,0,-45,30,-48,52xm49,-249r35,0r31,51r-22,0","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"\u00ad":-10,"\u2013":-10,"\u2014":-10,"\u2019":9,"\u201d":9,",":4,".":4,"\u2026":4}},"\u00ed":{"d":"58,0r-32,0r0,-174r32,0r0,174xm56,-249r34,0r-44,51r-22,0","w":84,"k":{"\u2019":-3,"\u201d":-3}},"\u00ee":{"d":"58,0r-32,0r0,-174r32,0r0,174xm31,-249r22,0r34,51r-24,0r-21,-34r-21,34r-24,0","w":84,"k":{"\u2019":-3,"\u201d":-3}},"\u00ef":{"d":"58,0r-32,0r0,-174r32,0r0,174xm26,-224v0,10,-7,19,-18,19v-10,0,-17,-9,-17,-19v0,-10,8,-18,18,-18v10,0,17,8,17,18xm93,-224v0,10,-7,19,-18,19v-10,0,-17,-9,-17,-19v0,-10,8,-18,18,-18v10,0,17,8,17,18","w":84,"k":{"\u2019":-3,"\u201d":-3}},"\u00ec":{"d":"58,0r-32,0r0,-174r32,0r0,174xm-10,-249r34,0r32,51r-22,0","w":84,"k":{"\u2019":-3,"\u201d":-3}},"\u00f1":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r-1,-174r28,0r2,28v27,-44,120,-54,120,42r0,104r-32,0v-6,-59,22,-152,-40,-152xm145,-243v3,50,-39,35,-63,23v-6,0,-8,6,-9,16r-17,0v-3,-49,37,-39,62,-24v5,0,9,-3,10,-15r17,0","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,"\u03a4":18,"t":1,"\u0167":1,"\u0165":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"\u1ef3":5,"\"":3,"'":3,"\u2019":12,"\u201d":12}},"\u00f3":{"d":"184,-89v0,65,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92v50,0,84,36,84,89xm46,-87v0,38,21,67,53,67v30,0,53,-28,53,-68v0,-30,-16,-66,-53,-66v-37,0,-53,34,-53,67xm112,-249r34,0r-44,51r-22,0","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u021a":14,"\u03a4":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\"":4,"'":4,"\u2019":12,"\u201d":12,",":9,".":9,"\u2026":9}},"\u00f4":{"d":"184,-89v0,65,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92v50,0,84,36,84,89xm46,-87v0,38,21,67,53,67v30,0,53,-28,53,-68v0,-30,-16,-66,-53,-66v-37,0,-53,34,-53,67xm88,-249r22,0r34,51r-24,0r-21,-34r-21,34r-24,0","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u021a":14,"\u03a4":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\"":4,"'":4,"\u2019":12,"\u201d":12,",":9,".":9,"\u2026":9}},"\u00f6":{"d":"184,-89v0,65,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92v50,0,84,36,84,89xm46,-87v0,38,21,67,53,67v30,0,53,-28,53,-68v0,-30,-16,-66,-53,-66v-37,0,-53,34,-53,67xm83,-224v0,10,-7,19,-18,19v-10,0,-17,-9,-17,-19v0,-10,8,-18,18,-18v10,0,17,8,17,18xm132,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u021a":14,"\u03a4":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\"":4,"'":4,"\u2019":12,"\u201d":12,",":9,".":9,"\u2026":9}},"\u00f2":{"d":"184,-89v0,65,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92v50,0,84,36,84,89xm46,-87v0,38,21,67,53,67v30,0,53,-28,53,-68v0,-30,-16,-66,-53,-66v-37,0,-53,34,-53,67xm53,-249r34,0r32,51r-23,0","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u021a":14,"\u03a4":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\"":4,"'":4,"\u2019":12,"\u201d":12,",":9,".":9,"\u2026":9}},"\u00f5":{"d":"184,-89v0,65,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92v50,0,84,36,84,89xm46,-87v0,38,21,67,53,67v30,0,53,-28,53,-68v0,-30,-16,-66,-53,-66v-37,0,-53,34,-53,67xm144,-243v3,50,-39,35,-63,23v-6,0,-8,6,-9,16r-17,0v-3,-49,37,-39,62,-24v5,0,9,-3,10,-15r17,0","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u021a":14,"\u03a4":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\"":4,"'":4,"\u2019":12,"\u201d":12,",":9,".":9,"\u2026":9}},"\u0161":{"d":"14,-9r8,-23v18,15,76,19,76,-14v0,-15,-8,-25,-32,-32v-69,-20,-58,-98,13,-100v18,0,34,5,43,11r-8,22v-13,-12,-64,-16,-64,14v0,14,8,23,32,30v67,18,58,108,-19,105v-19,0,-37,-6,-49,-13xm85,-198r-23,0r-35,-51r24,0r22,34r22,-34r23,0","w":142,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"\u2019":6,"\u201d":6,",":4,".":4,"\u2026":4}},"\u00fa":{"d":"96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v4,57,-19,152,39,152xm116,-249r34,0r-43,51r-23,0","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"\u2019":8,"\u201d":8,",":3,".":3,"\u2026":3}},"\u00fb":{"d":"96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v4,57,-19,152,39,152xm88,-249r22,0r35,51r-24,0v-8,-11,-13,-24,-22,-34r-21,34r-24,0","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"\u2019":8,"\u201d":8,",":3,".":3,"\u2026":3}},"\u00fc":{"d":"96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v4,57,-19,152,39,152xm67,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19xm134,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"\u2019":8,"\u201d":8,",":3,".":3,"\u2026":3}},"\u00f9":{"d":"96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v4,57,-19,152,39,152xm51,-249r34,0r32,51r-22,0","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"\u2019":8,"\u201d":8,",":3,".":3,"\u2026":3}},"\u00fd":{"d":"13,53v25,-9,45,-29,57,-58r-67,-169r35,0r50,138r46,-138r33,0v-41,86,-59,232,-146,253xm103,-249r34,0r-44,51r-22,0","w":169,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"\u1ef3":-4,":":-9,";":-9,"\u00ad":1,"\u2013":1,"\u2014":1,"\u2018":-10,"\u201c":-10,"\u2019":-11,"\u201d":-11,",":14,".":14,"\u2026":14}},"\u00ff":{"d":"13,53v25,-9,45,-29,57,-58r-67,-169r35,0r50,138r46,-138r33,0v-41,86,-59,232,-146,253xm73,-224v0,10,-7,19,-18,19v-10,0,-17,-9,-17,-19v0,-10,8,-18,18,-18v10,0,17,8,17,18xm140,-224v0,10,-7,19,-18,19v-10,0,-17,-9,-17,-19v0,-10,8,-18,18,-18v10,0,17,8,17,18","w":169,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"\u1ef3":-4,":":-9,";":-9,"\u00ad":1,"\u2013":1,"\u2014":1,"\u2018":-10,"\u201c":-10,"\u2019":-11,"\u201d":-11,",":14,".":14,"\u2026":14}},"\u017e":{"d":"6,0r0,-18r102,-131r-94,0r0,-25r133,0r0,20r-101,129r102,0r0,25r-142,0xm94,-198r-23,0r-35,-51r24,0r22,34r22,-34r23,0","w":154,"k":{"T":7,"\u0166":7,"\u0164":7,"\u021a":7,"\u03a4":7,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0111":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"v":-9,"w":-9,"y":-9,"\u00fd":-9,"\u00ff":-9,"\u1e83":-9,"\u0175":-9,"\u1e85":-9,"\u1e81":-9,"\u1ef3":-9,"\u203a":-6,"\u00bb":-6,"\u2019":-10,"\u201d":-10}},"\uf6e4":{"d":"38,-263v1,23,74,28,63,62v0,18,-13,34,-37,38r0,22r-16,0r0,-21v-14,0,-27,-5,-35,-10r5,-18v15,12,59,16,59,-9v0,-28,-71,-29,-63,-61v0,-18,13,-32,35,-36r0,-21r17,0r0,20v13,0,23,4,29,8r-5,17v-7,-8,-58,-11,-52,9","w":114},"\u207d":{"d":"42,-312r18,0v-32,37,-32,137,0,173r-18,0v-13,-17,-28,-44,-28,-86v0,-42,15,-70,28,-87","w":64},"\u207e":{"d":"23,-139r-18,0v33,-37,34,-137,0,-173r18,0v13,17,28,44,28,86v0,41,-15,69,-28,87","w":64},"\uf730":{"d":"95,4v-44,0,-81,-33,-81,-91v0,-57,36,-92,81,-92v45,0,81,34,81,92v0,57,-36,91,-81,91xm45,-87v0,39,18,67,51,67v31,0,50,-28,50,-67v0,-39,-19,-67,-51,-67v-32,0,-50,28,-50,67","w":190},"\uf731":{"d":"95,0r-31,0r0,-147r-49,22r-6,-23v28,-10,45,-30,86,-27r0,175","w":130},"\uf732":{"d":"151,0r-142,0r0,-17v43,-32,106,-72,98,-102v0,-47,-66,-39,-88,-17r-8,-21v31,-31,128,-33,128,34v0,39,-48,72,-82,99v30,-2,62,-1,94,-1r0,25","w":161},"\uf733":{"d":"6,34r4,-24v36,14,105,2,100,-37v3,-29,-38,-41,-74,-36v1,-9,-6,-25,6,-24v33,-3,58,-16,58,-38v0,-39,-64,-31,-82,-16r-6,-21v30,-27,120,-22,120,32v0,25,-20,41,-42,50v28,4,53,21,53,52v0,56,-82,83,-137,62","w":155},"\uf734":{"d":"174,-18r-33,0r0,60r-29,0r0,-60r-106,0r0,-21r101,-138r34,0r0,135r33,0r0,24xm112,-42v-2,-34,5,-77,-1,-107v-18,42,-49,70,-73,107r74,0","w":180},"\uf735":{"d":"49,-95v46,-3,96,16,96,63v0,57,-72,87,-132,67r4,-23v38,13,99,1,96,-42v-3,-40,-40,-44,-93,-41r18,-104r103,0r-3,26r-79,0","w":158},"\uf736":{"d":"156,-218r2,23v-64,3,-102,40,-106,79v29,-45,120,-27,120,43v0,49,-38,77,-75,77v-48,0,-80,-36,-80,-89v0,-75,53,-128,139,-133xm96,-120v-28,0,-47,19,-47,46v0,29,18,54,48,54v21,0,43,-17,43,-51v0,-30,-18,-49,-44,-49","w":187},"\uf737":{"d":"146,-175r0,21v-22,59,-66,138,-102,195r-30,-6v30,-42,80,-133,99,-183r-107,0r0,-27r140,0","w":154},"\uf738":{"d":"162,-164v1,22,-15,36,-39,50v27,10,47,28,47,54v0,39,-36,64,-79,64v-85,0,-101,-94,-31,-117v-18,-11,-38,-23,-37,-47v0,-35,31,-59,71,-59v41,0,68,25,68,55xm94,-197v-22,0,-40,13,-40,34v0,19,17,32,44,39v19,-6,34,-19,34,-39v0,-23,-19,-34,-38,-34xm92,-19v25,0,46,-15,46,-38v0,-23,-19,-37,-52,-46v-52,11,-54,84,6,84","w":184},"\uf739":{"d":"30,41r-3,-24v61,-2,101,-35,107,-75v-29,43,-119,27,-119,-44v0,-44,34,-77,78,-77v43,0,77,31,77,86v0,80,-57,131,-140,134xm47,-105v-3,67,92,61,92,4v3,-65,-91,-76,-92,-4","w":187},"\uf6e2":{"d":"17,-135r-17,1v6,-16,11,-38,14,-55r27,-3v-6,20,-16,44,-24,57","w":47},"\uf6e8":{"d":"23,-158v-9,0,-15,-7,-15,-16v0,-10,6,-16,15,-16v9,0,16,6,16,16v0,9,-7,16,-16,16","w":47},"\uf6e0":{"d":"58,-178v-27,-4,-45,-21,-45,-52v0,-27,17,-49,45,-54r0,-21r16,0r0,21v9,0,18,2,23,5r-4,18v-22,-13,-56,1,-56,30v0,34,34,41,57,30r4,17v-5,3,-14,5,-24,6r0,21r-16,0r0,-21","w":113},"\u208d":{"d":"42,-100r18,0v-32,37,-32,137,0,174r-18,0v-13,-17,-28,-45,-28,-87v0,-42,15,-70,28,-87","w":64},"\u208e":{"d":"23,74r-18,0v33,-37,33,-137,0,-174r18,0v13,17,28,45,28,87v0,41,-15,69,-28,87","w":64},"\uf6e6":{"d":"6,-234r56,0r0,17r-56,0r0,-17","w":68},"\uf6e5":{"d":"6,-22r56,0r0,17r-56,0r0,-17","w":68},"\u2070":{"d":"113,-231v0,44,-18,73,-54,73v-31,0,-51,-27,-51,-72v0,-44,21,-72,53,-72v33,0,52,27,52,71xm60,-176v18,0,27,-20,27,-54v0,-33,-9,-53,-27,-53v-16,0,-27,20,-27,53v0,35,11,54,27,54","w":120},"\u2074":{"d":"98,-160r-24,0r0,-36r-68,0r0,-15r63,-89r29,0r0,86r20,0r0,18r-20,0r0,36xm74,-214v-1,-21,3,-46,0,-65v-11,26,-29,42,-43,65r43,0","w":124},"\u2075":{"d":"36,-249v36,-2,62,8,64,43v3,43,-59,59,-93,40r5,-18v17,12,66,12,64,-19v5,-24,-34,-34,-62,-27r10,-69r72,0r0,20r-55,0","w":110},"\u2076":{"d":"8,-218v0,-53,32,-84,88,-83r0,19v-36,-3,-59,19,-63,44v22,-28,78,-14,78,30v0,27,-20,50,-49,50v-33,0,-54,-25,-54,-60xm87,-206v0,-35,-55,-39,-55,-6v0,19,10,36,30,36v15,0,25,-13,25,-30","w":119},"\u2077":{"d":"7,-299r95,0r0,15r-62,124r-26,0r62,-119r-69,0r0,-20","w":105},"\u2078":{"d":"60,-302v50,1,57,49,21,68v47,15,29,76,-23,76v-56,0,-64,-58,-22,-74v-38,-19,-22,-71,24,-70xm59,-175v40,-4,29,-46,-3,-50v-31,6,-30,49,3,50xm59,-285v-35,3,-26,39,3,43v24,-4,27,-42,-3,-43","w":118},"\u2079":{"d":"21,-158r0,-19v34,2,61,-18,63,-45v-23,26,-76,10,-76,-30v0,-27,21,-50,51,-50v61,0,59,98,26,124v-17,13,-37,20,-64,20xm58,-226v14,-1,27,-5,27,-20v0,-21,-8,-38,-27,-38v-15,0,-26,13,-26,31v0,15,10,27,26,27","w":117},"\u2080":{"d":"113,-18v0,44,-18,72,-54,72v-31,0,-51,-26,-51,-71v0,-44,21,-72,53,-72v33,0,52,27,52,71xm60,36v18,0,27,-20,27,-54v0,-33,-9,-53,-27,-53v-16,0,-27,20,-27,53v0,35,11,54,27,54","w":120},"\u2081":{"d":"64,53r-25,0r-1,-119r-26,13r-4,-19v17,-7,29,-18,56,-15r0,140","w":87},"\u2082":{"d":"4,53v-3,-22,13,-25,23,-35v29,-28,45,-44,45,-62v0,-29,-44,-30,-57,-14r-8,-17v24,-26,100,-12,92,26v2,31,-35,57,-59,82r62,0r0,20r-98,0","w":111},"\u2083":{"d":"16,-61r-6,-17v20,-19,94,-11,85,23v1,15,-12,25,-27,33v19,3,33,16,33,34v8,37,-69,54,-98,32r6,-18v14,15,69,12,66,-14v-2,-21,-24,-27,-48,-26r0,-16v20,1,40,-3,42,-23v3,-23,-44,-19,-53,-8","w":109},"\u2084":{"d":"98,53r-24,0r0,-37r-68,0r0,-15r63,-88r29,0r0,85r20,0r0,18r-20,0r0,37xm74,-2v-1,-21,3,-45,0,-64v-12,25,-28,42,-43,64r43,0","w":124},"\u2085":{"d":"36,-36v33,-4,64,8,64,43v0,43,-60,59,-93,39r5,-18v17,12,66,12,64,-19v5,-23,-33,-32,-62,-27r10,-69r72,0r0,20r-55,0","w":110},"\u2086":{"d":"8,-5v1,-54,33,-84,88,-84r0,19v-35,0,-59,18,-63,44v23,-27,78,-13,78,31v0,27,-20,49,-49,49v-33,0,-54,-24,-54,-59xm87,6v0,-36,-55,-38,-55,-5v0,19,10,35,30,35v15,0,25,-13,25,-30","w":119},"\u2087":{"d":"7,-87r95,0r0,16r-62,124r-26,0r62,-120r-69,0r0,-20","w":105},"\u2088":{"d":"60,-89v50,2,58,49,21,67v47,15,29,76,-23,76v-56,0,-64,-57,-22,-73r0,-2v-41,-17,-20,-70,24,-68xm59,37v40,-4,29,-45,-3,-49v-31,5,-31,49,3,49xm59,-73v-35,3,-26,40,3,44v24,-5,27,-43,-3,-44","w":118},"\u2089":{"d":"21,54r0,-19v34,4,61,-18,63,-45v-22,28,-76,10,-76,-30v0,-27,21,-49,51,-49v62,0,59,98,26,124v-17,13,-38,19,-64,19xm58,-14v14,-1,27,-5,27,-20v0,-21,-8,-37,-27,-37v-15,0,-26,12,-26,30v0,15,10,27,26,27","w":117},"\uf6df":{"d":"58,34v-27,-4,-45,-20,-45,-51v0,-27,17,-49,45,-54r0,-21r16,0r0,20v9,0,18,2,23,5r-4,18v-22,-13,-56,1,-56,30v0,34,33,41,57,31r4,16v-5,3,-14,6,-24,7r0,21r-16,0r0,-22","w":113},"\uf6e3":{"d":"38,-50v1,23,74,28,63,62v0,18,-13,33,-37,37r0,22r-16,0r0,-21v-14,0,-27,-5,-35,-10r5,-18v14,11,59,17,59,-8v0,-27,-72,-29,-63,-62v0,-18,13,-32,35,-36r0,-21r17,0r0,20v13,0,23,4,29,8r-5,18v-7,-9,-58,-12,-52,9","w":114},"\uf6e7":{"d":"23,55v-9,0,-15,-7,-15,-16v0,-10,6,-17,15,-17v9,0,16,7,16,17v0,9,-7,16,-16,16","w":47},"\uf6e1":{"d":"17,77r-17,2v6,-16,11,-39,14,-56r27,-2v-6,20,-16,43,-24,56","w":47},"\uf6c3":{"d":"33,80r-6,-15v27,0,35,-32,15,-45r24,-5v31,21,2,70,-33,65"},"\u0102":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-8,39,-24,77,-36,114xm65,-294r19,0v2,8,8,18,26,18v17,0,24,-9,26,-18r18,0v0,21,-14,38,-45,38v-31,0,-43,-16,-44,-38","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"\u03a4":28,"J":-7,"\u0134":-7,"M":1,"\u039c":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u0398":5,"\u039f":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"V":19,"W":19,"\u1e82":19,"\u0174":19,"\u1e84":19,"\u1e80":19,"X":5,"\u03a7":5,"Y":28,"\u00dd":28,"\u0178":28,"\u1ef2":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"j":1,"\u0135":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u1e83":8,"\u0175":8,"\u1e85":8,"\u1e81":8,"\u1ef3":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,")":3,"]":3,"}":3,"\"":21,"'":21,"\u2018":22,"\u201c":22,"\u2019":18,"\u201d":18,"\ue000":-4,"\u2126":-1,"\u03a6":8,"\u03a8":26,"\u03a5":36,"\u03ab":36,"\u03c7":10,"\u03b5":-3,"\u03ad":-3,"\u03b3":9,"\u03bd":9,"\u03bb":-4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4,"\u03c1":5,"\u03c4":9,"\u03b8":4,"\u03c5":4,"\u03c8":4,"\u03cd":4,"\u03cb":4,"\u03b0":4,"\u03b6":1,"\u03be":1}},"\u0100":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-8,39,-24,77,-36,114xm67,-284r86,0r0,20r-86,0r0,-20","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"\u03a4":28,"J":-7,"\u0134":-7,"M":1,"\u039c":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u0398":5,"\u039f":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"V":19,"W":19,"\u1e82":19,"\u0174":19,"\u1e84":19,"\u1e80":19,"X":5,"\u03a7":5,"Y":28,"\u00dd":28,"\u0178":28,"\u1ef2":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"j":1,"\u0135":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u1e83":8,"\u0175":8,"\u1e85":8,"\u1e81":8,"\u1ef3":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,")":3,"]":3,"}":3,"\"":21,"'":21,"\u2018":22,"\u201c":22,"\u2019":18,"\u201d":18,"\ue000":-4,"\u2126":-1,"\u03a6":8,"\u03a8":26,"\u03a5":36,"\u03ab":36,"\u03c7":10,"\u03b5":-3,"\u03ad":-3,"\u03b3":9,"\u03bd":9,"\u03bb":-4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4,"\u03c1":5,"\u03c4":9,"\u03b8":4,"\u03c5":4,"\u03c8":4,"\u03cd":4,"\u03cb":4,"\u03b0":4,"\u03b6":1,"\u03be":1}},"\u0104":{"d":"129,-243r83,243v-28,-5,-46,50,-14,53v6,0,13,-2,17,-4r5,16v-23,17,-64,11,-63,-23v0,-18,13,-33,21,-43r-25,-75r-86,0r-25,76r-33,0r83,-243r37,0xm73,-101r74,0r-25,-70v-6,-15,-6,-32,-13,-44v-9,39,-24,77,-36,114","w":220,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"\u03a4":28,"J":-7,"\u0134":-7,"M":1,"\u039c":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u0398":5,"\u039f":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"V":19,"W":19,"\u1e82":19,"\u0174":19,"\u1e84":19,"\u1e80":19,"X":5,"\u03a7":5,"Y":28,"\u00dd":28,"\u0178":28,"\u1ef2":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"j":1,"\u0135":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u1e83":8,"\u0175":8,"\u1e85":8,"\u1e81":8,"\u1ef3":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,")":3,"]":3,"}":3,"\"":21,"'":21,"\u2018":22,"\u201c":22,"\u2019":18,"\u201d":18,"\ue000":-4,"\u2126":-1,"\u03a6":8,"\u03a8":26,"\u03a5":36,"\u03ab":36,"\u03c7":10,"\u03b5":-3,"\u03ad":-3,"\u03b3":9,"\u03bd":9,"\u03bb":-4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4,"\u03c1":5,"\u03c4":9,"\u03b8":4,"\u03c5":4,"\u03c8":4,"\u03cd":4,"\u03cb":4,"\u03b0":4,"\u03b6":1,"\u03be":1}},"\u01fc":{"d":"32,0r-32,0r111,-243r151,0r0,27r-103,0r9,77r91,0r0,26r-87,0r11,87r89,0r0,26r-116,0r-11,-85r-74,0xm81,-111r61,0v-6,-35,-4,-78,-14,-109v-13,37,-31,74,-47,109xm176,-298r38,0r-46,42r-25,0","w":283,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0111":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,",":1,".":1,"\u2026":1,"\ue000":-4,"\u039e":-3,"\u03b5":-6,"\u03ad":-6,"\u03bb":-4,"\u03c4":-4,"\u03c0":-5}},"\u0106":{"d":"190,-33r7,25v-11,6,-35,12,-65,12v-68,0,-119,-43,-119,-123v0,-97,98,-150,184,-117r-8,26v-67,-29,-143,8,-143,90v0,79,75,116,144,87xm144,-298r38,0r-46,42r-25,0","w":208,"k":{"\u0152":8,"T":-10,"\u0166":-10,"\u0164":-10,"\u021a":-10,"\u03a4":-10,"J":-1,"\u0134":-1,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u0398":8,"\u039f":8,"V":-4,"W":-4,"\u1e82":-4,"\u0174":-4,"\u1e84":-4,"\u1e80":-4,"A":-1,"\u00c6":-1,"\u00c1":-1,"\u00c2":-1,"\u00c4":-1,"\u00c0":-1,"\u00c5":-1,"\u00c3":-1,"\u0102":-1,"\u0100":-1,"\u0104":-1,"\u01fc":-1,"\u0391":-1,"\u039b":-1,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fd":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"\u1ef3":7,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,"\u00ab":4,"\u2039":4,")":-6,"]":-6,"}":-6,"\u2019":-7,"\u201d":-7}},"\u010c":{"d":"190,-33r7,25v-11,6,-35,12,-65,12v-68,0,-119,-43,-119,-123v0,-97,98,-150,184,-117r-8,26v-67,-29,-143,8,-143,90v0,79,75,116,144,87xm139,-257r-24,0r-38,-41r27,0v8,8,15,18,24,25r22,-25r26,0","w":208,"k":{"\u0152":8,"T":-10,"\u0166":-10,"\u0164":-10,"\u021a":-10,"\u03a4":-10,"J":-1,"\u0134":-1,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u0398":8,"\u039f":8,"V":-4,"W":-4,"\u1e82":-4,"\u0174":-4,"\u1e84":-4,"\u1e80":-4,"A":-1,"\u00c6":-1,"\u00c1":-1,"\u00c2":-1,"\u00c4":-1,"\u00c0":-1,"\u00c5":-1,"\u00c3":-1,"\u0102":-1,"\u0100":-1,"\u0104":-1,"\u01fc":-1,"\u0391":-1,"\u039b":-1,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fd":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"\u1ef3":7,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,"\u00ab":4,"\u2039":4,")":-6,"]":-6,"}":-6,"\u2019":-7,"\u201d":-7}},"\u0108":{"d":"190,-33r7,25v-11,6,-35,12,-65,12v-68,0,-119,-43,-119,-123v0,-97,98,-150,184,-117r-8,26v-67,-29,-143,8,-143,90v0,79,75,116,144,87xm113,-298r24,0r38,41r-27,0v-8,-8,-14,-18,-23,-25r-23,25r-26,0","w":208,"k":{"\u0152":8,"T":-10,"\u0166":-10,"\u0164":-10,"\u021a":-10,"\u03a4":-10,"J":-1,"\u0134":-1,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u0398":8,"\u039f":8,"V":-4,"W":-4,"\u1e82":-4,"\u0174":-4,"\u1e84":-4,"\u1e80":-4,"A":-1,"\u00c6":-1,"\u00c1":-1,"\u00c2":-1,"\u00c4":-1,"\u00c0":-1,"\u00c5":-1,"\u00c3":-1,"\u0102":-1,"\u0100":-1,"\u0104":-1,"\u01fc":-1,"\u0391":-1,"\u039b":-1,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fd":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"\u1ef3":7,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,"\u00ab":4,"\u2039":4,")":-6,"]":-6,"}":-6,"\u2019":-7,"\u201d":-7}},"\u010a":{"d":"190,-33r7,25v-11,6,-35,12,-65,12v-68,0,-119,-43,-119,-123v0,-97,98,-150,184,-117r-8,26v-67,-29,-143,8,-143,90v0,79,75,116,144,87xm125,-259v-10,0,-18,-8,-18,-18v0,-9,8,-18,18,-18v10,0,18,9,18,18v0,10,-8,18,-18,18","w":208,"k":{"\u0152":8,"T":-10,"\u0166":-10,"\u0164":-10,"\u021a":-10,"\u03a4":-10,"J":-1,"\u0134":-1,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u0398":8,"\u039f":8,"V":-4,"W":-4,"\u1e82":-4,"\u0174":-4,"\u1e84":-4,"\u1e80":-4,"A":-1,"\u00c6":-1,"\u00c1":-1,"\u00c2":-1,"\u00c4":-1,"\u00c0":-1,"\u00c5":-1,"\u00c3":-1,"\u0102":-1,"\u0100":-1,"\u0104":-1,"\u01fc":-1,"\u0391":-1,"\u039b":-1,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"\u0103":3,"\u0101":3,"\u0105":3,"\u01fd":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"\u1ef3":7,"z":-1,"\u017e":-1,"\u017a":-1,"\u017c":-1,"\u00ab":4,"\u2039":4,")":-6,"]":-6,"}":-6,"\u2019":-7,"\u201d":-7}},"\u010e":{"d":"227,-127v0,107,-90,142,-200,126r0,-238v103,-18,200,7,200,112xm59,-216r0,192v81,9,135,-25,135,-102v0,-69,-60,-107,-135,-90xm123,-256r-24,0r-37,-41r26,0v8,8,15,17,24,24r23,-24r25,0","w":239,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03be":-3,"\u03c0":-4}},"\u0110":{"d":"228,-127v4,107,-89,143,-199,127r0,-111r-30,0r0,-25r30,0r0,-104v19,-3,42,-6,67,-6v86,0,130,38,132,119xm125,-136r0,25r-65,0r0,87v81,9,135,-24,135,-103v0,-71,-62,-107,-135,-90r0,81r65,0","w":241,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03be":-3,"\u03c0":-4}},"\u0114":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0xm47,-297r19,0v2,8,8,18,26,18v17,0,24,-9,26,-18r18,0v0,21,-14,38,-45,38v-31,0,-43,-16,-44,-38","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0111":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,",":1,".":1,"\u2026":1,"\ue000":-4,"\u039e":-3,"\u03b5":-6,"\u03ad":-6,"\u03bb":-4,"\u03c4":-4,"\u03c0":-5}},"\u011a":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0xm105,-256r-24,0r-38,-41r27,0v8,8,15,18,24,25r22,-25r26,0","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0111":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,",":1,".":1,"\u2026":1,"\ue000":-4,"\u039e":-3,"\u03b5":-6,"\u03ad":-6,"\u03bb":-4,"\u03c4":-4,"\u03c0":-5}},"\u0116":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0xm90,-260v-10,0,-18,-8,-18,-18v0,-9,8,-18,18,-18v10,0,18,9,18,18v0,10,-8,18,-18,18","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0111":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,",":1,".":1,"\u2026":1,"\ue000":-4,"\u039e":-3,"\u03b5":-6,"\u03ad":-6,"\u03bb":-4,"\u03c4":-4,"\u03c0":-5}},"\u0112":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0xm50,-284r87,0r0,20r-87,0r0,-20","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0111":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,",":1,".":1,"\u2026":1,"\ue000":-4,"\u039e":-3,"\u03b5":-6,"\u03ad":-6,"\u03bb":-4,"\u03c4":-4,"\u03c0":-5}},"\u014a":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,28,32,56,45,79v-6,-61,-3,-134,-4,-202r30,0r0,229v0,51,-24,79,-70,86r-6,-25v29,-6,42,-19,45,-45r-78,-125v-18,-27,-32,-57,-46,-81","w":236,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u0118":{"d":"161,50r5,17v-22,13,-63,9,-63,-22v0,-20,16,-36,29,-45r-105,0r0,-243r131,0r0,27r-99,0r0,76r94,0r0,26r-94,0r0,88r105,0r0,26v-22,3,-34,26,-35,38v-1,16,19,18,32,12","w":177,"k":{"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0111":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,",":1,".":1,"\u2026":1,"\ue000":-4,"\u039e":-3,"\u03b5":-6,"\u03ad":-6,"\u03bb":-4,"\u03c4":-4,"\u03c0":-5}},"\u011e":{"d":"138,3v-73,1,-125,-46,-125,-123v0,-94,102,-150,192,-114r-8,26v-66,-30,-151,5,-151,87v0,78,68,114,135,91r0,-72r-49,0r0,-25r80,0r0,116v-14,5,-41,14,-74,14xm83,-298r19,0v2,8,8,18,26,18v17,0,24,-9,26,-18r18,0v0,21,-14,38,-45,38v-31,0,-43,-16,-44,-38","w":232,"k":{"a":-3,"\u00e6":-3,"\u00e1":-3,"\u00e2":-3,"\u00e4":-3,"\u00e0":-3,"\u00e5":-3,"\u00e3":-3,"\u0103":-3,"\u0101":-3,"\u0105":-3,"\u01fd":-3,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0111":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u2019":1,"\u201d":1}},"\u011c":{"d":"138,3v-73,1,-125,-46,-125,-123v0,-94,102,-150,192,-114r-8,26v-66,-30,-151,5,-151,87v0,78,68,114,135,91r0,-72r-49,0r0,-25r80,0r0,116v-14,5,-41,14,-74,14xm117,-298r24,0r38,41r-26,0v-8,-8,-15,-18,-24,-25r-23,25r-25,0","w":232,"k":{"a":-3,"\u00e6":-3,"\u00e1":-3,"\u00e2":-3,"\u00e4":-3,"\u00e0":-3,"\u00e5":-3,"\u00e3":-3,"\u0103":-3,"\u0101":-3,"\u0105":-3,"\u01fd":-3,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0111":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u2019":1,"\u201d":1}},"\u0122":{"d":"138,3v-73,1,-125,-46,-125,-123v0,-94,102,-150,192,-114r-8,26v-66,-30,-151,5,-151,87v0,78,68,114,135,91r0,-72r-49,0r0,-25r80,0r0,116v-14,5,-41,14,-74,14xm107,80r-6,-15v27,0,35,-32,15,-45r23,-5v32,20,4,70,-32,65","w":232,"k":{"a":-3,"\u00e6":-3,"\u00e1":-3,"\u00e2":-3,"\u00e4":-3,"\u00e0":-3,"\u00e5":-3,"\u00e3":-3,"\u0103":-3,"\u0101":-3,"\u0105":-3,"\u01fd":-3,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0111":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u2019":1,"\u201d":1}},"\u0120":{"d":"138,3v-73,1,-125,-46,-125,-123v0,-94,102,-150,192,-114r-8,26v-66,-30,-151,5,-151,87v0,78,68,114,135,91r0,-72r-49,0r0,-25r80,0r0,116v-14,5,-41,14,-74,14xm130,-259v-10,0,-18,-8,-18,-18v0,-9,8,-18,18,-18v10,0,18,9,18,18v0,10,-8,18,-18,18","w":232,"k":{"a":-3,"\u00e6":-3,"\u00e1":-3,"\u00e2":-3,"\u00e4":-3,"\u00e0":-3,"\u00e5":-3,"\u00e3":-3,"\u0103":-3,"\u0101":-3,"\u0105":-3,"\u01fd":-3,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0111":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"\u2019":1,"\u201d":1}},"\u0126":{"d":"229,-172r-21,0r0,172r-31,0r0,-108r-117,0r0,108r-32,0r0,-172r-20,0r0,-21r20,0r0,-50r32,0r0,50r117,0r0,-50r31,0r0,50r21,0r0,21xm177,-136r0,-36r-117,0r0,36r117,0","w":236,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u0124":{"d":"27,-243r32,0r0,102r117,0r0,-102r32,0r0,243r-32,0r0,-114r-117,0r0,114r-32,0r0,-243xm105,-297r24,0r38,41r-27,0v-8,-8,-14,-17,-23,-24r-23,24r-26,0","w":234,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u012c":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm-1,-296r18,0v2,8,8,17,26,17v17,0,24,-8,26,-17r18,0v0,21,-13,38,-44,38v-31,0,-43,-16,-44,-38","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u0132":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm163,-83r0,-160r31,0r0,163v1,79,-50,94,-107,78r5,-25v39,10,71,5,71,-56","w":219,"k":{"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"\u1ef3":-4,")":-15,"]":-15,"}":-15,"\u2019":-3,"\u201d":-3,",":4,".":4,"\u2026":4}},"\u012a":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm0,-284r87,0r0,20r-87,0r0,-20","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u012e":{"d":"59,-243r0,243v-27,-4,-37,53,-8,54v7,0,13,-2,17,-4r4,17v-22,14,-64,11,-62,-23v0,-18,11,-34,17,-44r0,-243r32,0","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u0128":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm88,-294v3,49,-42,32,-63,21v-6,0,-9,6,-10,16r-16,0v0,-22,9,-37,24,-37v17,0,43,34,48,0r17,0","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u0134":{"d":"77,-83r0,-160r31,0r0,163v1,79,-50,94,-107,78r5,-25v39,10,71,5,71,-56xm79,-297r24,0r38,41r-27,0r-23,-24r-23,24r-26,0","w":133,"k":{"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"\u1ef3":-4,")":-15,"]":-15,"}":-15,"\u2019":-3,"\u201d":-3,",":4,".":4,"\u2026":4}},"\u0136":{"d":"27,0r0,-243r32,0r1,117v29,-41,62,-78,93,-117r39,0r-88,103r95,140r-37,0r-80,-119r-23,26r0,93r-32,0xm77,79r-6,-15v27,0,35,-32,15,-45r23,-5v7,5,15,15,15,27v0,26,-25,37,-47,38","w":195,"k":{"T":-8,"\u0166":-8,"\u0164":-8,"\u021a":-8,"\u03a4":-8,"J":-14,"\u0134":-14,"C":6,"G":6,"O":6,"Q":6,"\u00d8":6,"\u0152":6,"\u00c7":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"\u0106":6,"\u010c":6,"\u0108":6,"\u010a":6,"\u011e":6,"\u011c":6,"\u0122":6,"\u0120":6,"\u014e":6,"\u0150":6,"\u014c":6,"\u01fe":6,"\u0398":6,"\u039f":6,"V":-5,"W":-5,"\u1e82":-5,"\u0174":-5,"\u1e84":-5,"\u1e80":-5,"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"A":-4,"\u00c6":-4,"\u00c1":-4,"\u00c2":-4,"\u00c4":-4,"\u00c0":-4,"\u00c5":-4,"\u00c3":-4,"\u0102":-4,"\u0100":-4,"\u0104":-4,"\u01fc":-4,"\u0391":-4,"\u039b":-4,"Z":-7,"\u017d":-7,"\u0179":-7,"\u017b":-7,"\u0396":-7,"a":-6,"\u00e6":-6,"\u00e1":-6,"\u00e2":-6,"\u00e4":-6,"\u00e0":-6,"\u00e5":-6,"\u00e3":-6,"\u0103":-6,"\u0101":-6,"\u0105":-6,"\u01fd":-6,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u016d":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"\u0169":2,"v":6,"w":6,"y":6,"\u00fd":6,"\u00ff":6,"\u1e83":6,"\u0175":6,"\u1e85":6,"\u1e81":6,"\u1ef3":6,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,":":-8,";":-8,"\u00ab":2,"\u2039":2,"\u00ad":6,"\u2013":6,"\u2014":6,")":-8,"]":-8,"}":-8,"\u2018":1,"\u201c":1,"\u2019":-3,"\u201d":-3,",":-6,".":-6,"\u2026":-6,"\ue000":-4,"\u2126":-5,"\u03a6":10,"\u039e":-9,"\u03a3":-9,"\u03b5":-7,"\u03ad":-7,"\u03b3":5,"\u03bd":5,"\u03bb":-6,"\u03c4":5,"\u03c5":6,"\u03c8":6,"\u03cd":6,"\u03cb":6,"\u03b0":6,"\u00b5":-2,"\u03b2":-2,"\u03b7":-2,"\u03ba":-2,"\u03ae":-2}},"\u0139":{"d":"27,0r0,-243r32,0r0,217r103,0r0,26r-135,0xm64,-298r39,0r-46,42r-26,0","w":169,"k":{"\u01fe":14,"\u00d8":14,"T":32,"\u0166":32,"\u0164":32,"\u021a":32,"\u03a4":32,"J":-4,"\u0134":-4,"C":14,"G":14,"O":14,"Q":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u0108":14,"\u010a":14,"\u011e":14,"\u011c":14,"\u0122":14,"\u0120":14,"\u014e":14,"\u0150":14,"\u014c":14,"\u0398":14,"\u039f":14,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"V":21,"W":21,"\u1e82":21,"\u0174":21,"\u1e84":21,"\u1e80":21,"Y":30,"\u00dd":30,"\u0178":30,"\u1ef2":30,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0111":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"t":1,"\u0167":1,"\u0165":1,"\u021b":1,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u1e83":10,"\u0175":10,"\u1e85":10,"\u1e81":10,"\u1ef3":10,"\u00ab":14,"\u2039":14,"\u00ad":15,"\u2013":15,"\u2014":15,"\"":35,"'":35,"\u2018":42,"\u201c":42,"\u2019":37,"\u201d":37}},"\u013d":{"d":"27,0r0,-243r32,0r0,217r103,0r0,26r-135,0xm94,-181r-7,-15v26,-1,36,-33,15,-46r24,-5v30,20,4,72,-32,66","w":169,"k":{"\u01fe":14,"\u00d8":14,"T":32,"\u0166":32,"\u0164":32,"\u021a":32,"\u03a4":32,"J":-4,"\u0134":-4,"C":14,"G":14,"O":14,"Q":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u0108":14,"\u010a":14,"\u011e":14,"\u011c":14,"\u0122":14,"\u0120":14,"\u014e":14,"\u0150":14,"\u014c":14,"\u0398":14,"\u039f":14,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"V":21,"W":21,"\u1e82":21,"\u0174":21,"\u1e84":21,"\u1e80":21,"Y":30,"\u00dd":30,"\u0178":30,"\u1ef2":30,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0111":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"t":1,"\u0167":1,"\u0165":1,"\u021b":1,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u1e83":10,"\u0175":10,"\u1e85":10,"\u1e81":10,"\u1ef3":10,"\u00ab":14,"\u2039":14,"\u00ad":15,"\u2013":15,"\u2014":15,"\"":35,"'":35,"\u2018":42,"\u201c":42,"\u2019":37,"\u201d":37}},"\u013b":{"d":"27,0r0,-243r32,0r0,217r103,0r0,26r-135,0xm67,80r-6,-15v27,0,35,-32,15,-45r23,-5v32,20,4,70,-32,65","w":169,"k":{"\u01fe":14,"\u00d8":14,"T":32,"\u0166":32,"\u0164":32,"\u021a":32,"\u03a4":32,"J":-4,"\u0134":-4,"C":14,"G":14,"O":14,"Q":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u0108":14,"\u010a":14,"\u011e":14,"\u011c":14,"\u0122":14,"\u0120":14,"\u014e":14,"\u0150":14,"\u014c":14,"\u0398":14,"\u039f":14,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"V":21,"W":21,"\u1e82":21,"\u0174":21,"\u1e84":21,"\u1e80":21,"Y":30,"\u00dd":30,"\u0178":30,"\u1ef2":30,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0111":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"t":1,"\u0167":1,"\u0165":1,"\u021b":1,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u1e83":10,"\u0175":10,"\u1e85":10,"\u1e81":10,"\u1ef3":10,"\u00ab":14,"\u2039":14,"\u00ad":15,"\u2013":15,"\u2014":15,"\"":35,"'":35,"\u2018":42,"\u201c":42,"\u2019":37,"\u201d":37}},"\u013f":{"d":"27,0r0,-243r32,0r0,217r103,0r0,26r-135,0xm140,-134v0,10,-7,19,-18,19v-10,0,-17,-9,-17,-19v0,-9,8,-18,18,-18v10,0,17,9,17,18","w":169,"k":{"\u039f":14,"\u0398":14,"\u01fe":14,"\u014c":14,"\u0150":14,"\u014e":14,"\u0120":14,"\u0122":14,"\u011c":14,"\u011e":14,"\u010a":14,"\u0108":14,"\u010c":14,"\u0106":14,"\u00d5":14,"\u00d2":14,"\u00d6":14,"\u00d4":14,"\u00d3":14,"\u00c7":14,"\u0152":14,"\u00d8":14,"Q":14,"O":14,"G":14,"C":14,"T":32,"\u0166":32,"\u0164":32,"\u021a":32,"\u03a4":32,"J":-4,"\u0134":-4,"U":13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,"\u016c":13,"\u0170":13,"\u016a":13,"\u0172":13,"\u016e":13,"\u0168":13,"V":21,"W":21,"\u1e82":21,"\u0174":21,"\u1e84":21,"\u1e80":21,"Y":30,"\u00dd":30,"\u0178":30,"\u1ef2":30,"c":5,"d":5,"e":5,"o":5,"q":5,"\u00f8":5,"\u0153":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"\u0107":5,"\u010d":5,"\u0109":5,"\u010b":5,"\u010f":5,"\u0111":5,"\u0115":5,"\u011b":5,"\u0117":5,"\u0113":5,"\u0119":5,"\u014f":5,"\u0151":5,"\u014d":5,"\u01ff":5,"t":1,"\u0167":1,"\u0165":1,"\u021b":1,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u1e83":10,"\u0175":10,"\u1e85":10,"\u1e81":10,"\u1ef3":10,"\u00ab":14,"\u2039":14,"\u00ad":15,"\u2013":15,"\u2014":15,"\"":35,"'":35,"\u2018":42,"\u201c":42,"\u2019":37,"\u201d":37}},"\u0143":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,28,32,56,45,79v-6,-61,-3,-134,-4,-202r30,0r0,243r-32,0r-77,-123v-18,-27,-32,-57,-46,-81xm134,-298r38,0r-46,42r-26,0","w":236,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u0147":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,28,32,56,45,79v-6,-61,-3,-134,-4,-202r30,0r0,243r-32,0r-77,-123v-18,-27,-32,-57,-46,-81xm131,-254r-24,0r-38,-41r27,0v8,8,15,18,24,25r23,-25r25,0","w":236,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u0145":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,28,32,56,45,79v-6,-61,-3,-134,-4,-202r30,0r0,243r-32,0r-77,-123v-18,-27,-32,-57,-46,-81xm97,80r-6,-15v26,-1,36,-33,15,-46r23,-5v31,20,5,72,-32,66","w":236,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u014e":{"d":"122,4v-64,0,-109,-50,-109,-123v0,-77,47,-128,112,-128v67,0,110,51,110,123v0,83,-51,128,-113,128xm46,-120v0,51,28,99,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99v-52,0,-78,48,-78,101xm80,-299r18,0v2,8,8,18,26,18v17,0,24,-9,26,-18r18,0v0,21,-13,38,-44,38v-31,0,-43,-16,-44,-38","w":248,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03be":-3,"\u03c0":-4}},"\u0150":{"d":"122,4v-64,0,-109,-50,-109,-123v0,-77,47,-128,112,-128v67,0,110,51,110,123v0,83,-51,128,-113,128xm46,-120v0,51,28,99,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99v-52,0,-78,48,-78,101xm115,-299r35,0r-41,41r-23,0xm168,-299r35,0r-41,41r-23,0","w":248,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03be":-3,"\u03c0":-4}},"\u014c":{"d":"122,4v-64,0,-109,-50,-109,-123v0,-77,47,-128,112,-128v67,0,110,51,110,123v0,83,-51,128,-113,128xm46,-120v0,51,28,99,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99v-52,0,-78,48,-78,101xm81,-285r87,0r0,19r-87,0r0,-19","w":248,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03be":-3,"\u03c0":-4}},"\u01fe":{"d":"40,15r-17,-14r22,-31v-20,-22,-32,-54,-32,-90v0,-102,94,-159,172,-108r22,-29r19,13r-23,31v20,22,32,54,32,90v1,112,-95,156,-172,108xm170,-204v-12,-10,-28,-17,-46,-17v-77,-2,-98,109,-61,164xm186,-185r-108,146v54,47,125,-7,125,-83v0,-21,-4,-42,-17,-63xm141,-301r39,0r-46,43r-26,0","w":248,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03be":-3,"\u03c0":-4}},"\u0154":{"d":"27,-239v64,-11,150,-9,150,61v0,33,-23,51,-46,62v37,3,43,98,54,116r-32,0v-4,-7,-10,-28,-16,-58v-8,-44,-32,-49,-78,-47r0,105r-32,0r0,-239xm59,-217r0,88v46,4,86,-6,86,-46v0,-43,-50,-50,-86,-42xm109,-299r38,0r-46,42r-26,0","w":193,"k":{"T":-3,"\u0166":-3,"\u0164":-3,"\u021a":-3,"\u03a4":-3,"V":-6,"W":-6,"\u1e82":-6,"\u0174":-6,"\u1e84":-6,"\u1e80":-6,"X":-2,"\u03a7":-2,"Y":4,"\u00dd":4,"\u0178":4,"\u1ef2":4,"A":-2,"\u00c6":-2,"\u00c1":-2,"\u00c2":-2,"\u00c4":-2,"\u00c0":-2,"\u00c5":-2,"\u00c3":-2,"\u0102":-2,"\u0100":-2,"\u0104":-2,"\u01fc":-2,"\u0391":-2,"\u039b":-2,"a":-4,"\u00e6":-4,"\u00e1":-4,"\u00e2":-4,"\u00e4":-4,"\u00e0":-4,"\u00e5":-4,"\u00e3":-4,"\u0103":-4,"\u0101":-4,"\u0105":-4,"\u01fd":-4,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-7,"\u0167":-7,"\u0165":-7,"\u021b":-7,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"b":-3,"h":-3,"k":-3,"l":-3,"\u0142":-3,"\u0127":-3,"\u0125":-3,"\u0137":-3,"\u013a":-3,"\u013e":-3,"\u013c":-3,"\u0140":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"\u2019":-3,"\u201d":-3}},"\u0158":{"d":"27,-239v64,-11,150,-9,150,61v0,33,-23,51,-46,62v37,3,43,98,54,116r-32,0v-4,-7,-10,-28,-16,-58v-8,-44,-32,-49,-78,-47r0,105r-32,0r0,-239xm59,-217r0,88v46,4,86,-6,86,-46v0,-43,-50,-50,-86,-42xm108,-257r-24,0r-38,-41r26,0v8,8,15,18,24,25r23,-25r25,0","w":193,"k":{"T":-3,"\u0166":-3,"\u0164":-3,"\u021a":-3,"\u03a4":-3,"V":-6,"W":-6,"\u1e82":-6,"\u0174":-6,"\u1e84":-6,"\u1e80":-6,"X":-2,"\u03a7":-2,"Y":4,"\u00dd":4,"\u0178":4,"\u1ef2":4,"A":-2,"\u00c6":-2,"\u00c1":-2,"\u00c2":-2,"\u00c4":-2,"\u00c0":-2,"\u00c5":-2,"\u00c3":-2,"\u0102":-2,"\u0100":-2,"\u0104":-2,"\u01fc":-2,"\u0391":-2,"\u039b":-2,"a":-4,"\u00e6":-4,"\u00e1":-4,"\u00e2":-4,"\u00e4":-4,"\u00e0":-4,"\u00e5":-4,"\u00e3":-4,"\u0103":-4,"\u0101":-4,"\u0105":-4,"\u01fd":-4,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-7,"\u0167":-7,"\u0165":-7,"\u021b":-7,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"b":-3,"h":-3,"k":-3,"l":-3,"\u0142":-3,"\u0127":-3,"\u0125":-3,"\u0137":-3,"\u013a":-3,"\u013e":-3,"\u013c":-3,"\u0140":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"\u2019":-3,"\u201d":-3}},"\u0156":{"d":"27,-239v64,-11,150,-9,150,61v0,33,-23,51,-46,62v37,3,43,98,54,116r-32,0v-4,-7,-10,-28,-16,-58v-8,-44,-32,-49,-78,-47r0,105r-32,0r0,-239xm59,-217r0,88v46,4,86,-6,86,-46v0,-43,-50,-50,-86,-42xm76,77r-6,-14v26,-1,36,-33,15,-46r23,-5v7,5,15,15,15,27v0,26,-25,37,-47,38","w":193,"k":{"T":-3,"\u0166":-3,"\u0164":-3,"\u021a":-3,"\u03a4":-3,"V":-6,"W":-6,"\u1e82":-6,"\u0174":-6,"\u1e84":-6,"\u1e80":-6,"X":-2,"\u03a7":-2,"Y":4,"\u00dd":4,"\u0178":4,"\u1ef2":4,"A":-2,"\u00c6":-2,"\u00c1":-2,"\u00c2":-2,"\u00c4":-2,"\u00c0":-2,"\u00c5":-2,"\u00c3":-2,"\u0102":-2,"\u0100":-2,"\u0104":-2,"\u01fc":-2,"\u0391":-2,"\u039b":-2,"a":-4,"\u00e6":-4,"\u00e1":-4,"\u00e2":-4,"\u00e4":-4,"\u00e0":-4,"\u00e5":-4,"\u00e3":-4,"\u0103":-4,"\u0101":-4,"\u0105":-4,"\u01fd":-4,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-7,"\u0167":-7,"\u0165":-7,"\u021b":-7,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"b":-3,"h":-3,"k":-3,"l":-3,"\u0142":-3,"\u0127":-3,"\u0125":-3,"\u0137":-3,"\u013a":-3,"\u013e":-3,"\u013c":-3,"\u0140":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"\u2019":-3,"\u201d":-3}},"\u015a":{"d":"15,-12r8,-26v29,23,107,21,107,-26v0,-23,-13,-36,-46,-48v-40,-14,-64,-34,-64,-68v0,-58,86,-81,132,-55r-9,26v-8,-5,-23,-11,-45,-11v-33,0,-46,19,-46,36v0,22,14,36,48,46v88,26,83,142,-23,142v-23,0,-49,-7,-62,-16xm108,-299r38,0r-46,42r-25,0","w":177,"k":{"j":1,"\u0135":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0111":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u2018":3,"\u201c":3,"\u2019":4,"\u201d":4}},"\u015e":{"d":"15,-12r8,-26v29,23,107,21,107,-26v0,-23,-13,-36,-46,-48v-39,-14,-64,-34,-64,-68v0,-58,86,-81,132,-55r-9,26v-8,-5,-23,-11,-45,-11v-33,0,-46,19,-46,36v0,22,14,36,48,46v80,24,84,123,-1,140r-10,16v14,2,25,11,25,25v1,30,-41,35,-62,23r5,-16v10,6,34,10,35,-6v0,-9,-11,-14,-28,-15v3,-8,15,-20,12,-25v-21,0,-47,-7,-61,-16","w":177},"\uf6c1":{"d":"15,-12r8,-26v29,23,107,21,107,-26v0,-23,-13,-36,-46,-48v-39,-14,-64,-34,-64,-68v0,-58,86,-81,132,-55r-9,26v-8,-5,-23,-11,-45,-11v-33,0,-46,19,-46,36v0,22,14,36,48,46v80,24,84,123,-1,140r-10,16v14,2,25,11,25,25v1,30,-41,35,-62,23r5,-16v10,6,34,10,35,-6v0,-9,-11,-14,-28,-15v3,-8,15,-20,12,-25v-21,0,-47,-7,-61,-16","w":177,"k":{"j":1,"\u0135":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0111":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u2018":3,"\u201c":3,"\u2019":4,"\u201d":4}},"\u015c":{"d":"15,-12r8,-26v29,23,107,21,107,-26v0,-23,-13,-36,-46,-48v-40,-14,-64,-34,-64,-68v0,-58,86,-81,132,-55r-9,26v-8,-5,-23,-11,-45,-11v-33,0,-46,19,-46,36v0,22,14,36,48,46v88,26,83,142,-23,142v-23,0,-49,-7,-62,-16xm77,-298r24,0r38,41r-27,0v-8,-8,-14,-18,-23,-25r-23,25r-26,0","w":177,"k":{"j":1,"\u0135":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0111":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u2018":3,"\u201c":3,"\u2019":4,"\u201d":4}},"\u0218":{"d":"15,-12r8,-26v29,23,107,21,107,-26v0,-23,-13,-36,-46,-48v-40,-14,-64,-34,-64,-68v0,-58,86,-81,132,-55r-9,26v-8,-5,-23,-11,-45,-11v-33,0,-46,19,-46,36v0,22,14,36,48,46v88,26,83,142,-23,142v-23,0,-49,-7,-62,-16xm67,80r-6,-15v27,0,35,-32,15,-45r23,-5v30,20,3,70,-32,65","w":177,"k":{"j":1,"\u0135":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0111":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u2018":3,"\u201c":3,"\u2019":4,"\u201d":4}},"\u0166":{"d":"179,-216r-74,0r0,80r45,0r0,21r-45,0r0,115r-32,0r0,-115r-45,0r0,-21r45,0r0,-80r-73,0r0,-27r179,0r0,27","w":178,"k":{"\u0129":16,"\u012f":16,"\u012b":16,"\u0133":16,"\u012d":16,"\u00ec":16,"\u00ef":16,"\u00ee":16,"\u00ed":16,"\u00e8":26,"\u00e0":23,"\u0131":16,"i":16,"T":-14,"\u0166":-14,"\u0164":-14,"\u021a":-14,"\u03a4":-14,"J":15,"\u0134":15,"C":10,"G":10,"O":10,"Q":10,"\u00d8":10,"\u0152":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"\u0106":10,"\u010c":10,"\u0108":10,"\u010a":10,"\u011e":10,"\u011c":10,"\u0122":10,"\u0120":10,"\u014e":10,"\u0150":10,"\u014c":10,"\u01fe":10,"\u0398":10,"\u039f":10,"V":-14,"W":-14,"\u1e82":-14,"\u0174":-14,"\u1e84":-14,"\u1e80":-14,"X":-8,"\u03a7":-8,"Y":-10,"\u00dd":-10,"\u0178":-10,"\u1ef2":-10,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"\u0102":27,"\u0100":27,"\u0104":27,"\u01fc":27,"\u0391":27,"\u039b":27,"S":2,"\u0160":2,"\u015a":2,"\uf6c1":2,"\u015c":2,"\u0218":2,"a":23,"\u00e6":23,"\u00e1":23,"\u00e2":23,"\u00e4":23,"\u00e5":23,"\u00e3":23,"\u0103":23,"\u0101":23,"\u0105":23,"\u01fd":23,"g":23,"\u011f":23,"\u011d":23,"\u0123":23,"\u0121":23,"c":26,"d":26,"e":26,"o":26,"q":26,"\u00f8":26,"\u0153":26,"\u00e7":26,"\u00e9":26,"\u00ea":26,"\u00eb":26,"\u00f3":26,"\u00f4":26,"\u00f6":26,"\u00f2":26,"\u00f5":26,"\u0107":26,"\u010d":26,"\u0109":26,"\u010b":26,"\u010f":26,"\u0111":26,"\u0115":26,"\u011b":26,"\u0117":26,"\u0113":26,"\u0119":26,"\u014f":26,"\u0151":26,"\u014d":26,"\u01ff":26,"s":19,"\u0161":19,"\u015b":19,"\uf6c2":19,"\u015d":19,"\u0219":19,"u":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u00f9":16,"\u016d":16,"\u0171":16,"\u016b":16,"\u0173":16,"\u016f":16,"\u0169":16,"v":14,"w":14,"y":14,"\u00fd":14,"\u00ff":14,"\u1e83":14,"\u0175":14,"\u1e85":14,"\u1e81":14,"\u1ef3":14,"z":18,"\u017e":18,"\u017a":18,"\u017c":18,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"m":16,"n":16,"p":16,"r":16,"\u00f1":16,"\u014b":16,"\u0144":16,"\u0148":16,"\u0146":16,"\u0155":16,"\u0159":16,"\u0157":16,"\u0138":16,"x":12,":":9,";":9,"\u203a":13,"\u00bb":13,"\u00ab":18,"\u2039":18,"\u00ad":18,"\u2013":18,"\u2014":18,")":-22,"]":-22,"}":-22,"\"":-6,"'":-6,"\u2019":-12,"\u201d":-12,",":22,".":22,"\u2026":22,"\ue000":25,"\u2126":9,"\u03a6":14,"\u03a8":-3,"\u03a5":-4,"\u03ab":-4,"\u03a3":-2,"\u03b5":16,"\u03ad":16,"\u03bb":-3,"\u03b1":22,"\u03b4":22,"\u03bf":22,"\u03c3":22,"\u03c6":22,"\u03ac":22,"\u03cc":22,"\u03c2":22,"\u03c1":24,"\u03c5":14,"\u03c8":14,"\u03cd":14,"\u03cb":14,"\u03b0":14,"\u03b6":4,"\u03be":4,"\u00b5":12,"\u03b2":12,"\u03b7":12,"\u03ba":12,"\u03ae":12,"\u03b9":12,"\u03af":12,"\u03ca":12,"\u0390":12,"\u03c9":17,"\u03ce":17}},"\u0164":{"d":"73,0r0,-216r-73,0r0,-27r179,0r0,27r-74,0r0,216r-32,0xm102,-256r-24,0r-38,-41r27,0v8,8,15,18,24,25r22,-25r26,0","w":178,"k":{"\u0129":16,"\u012f":16,"\u012b":16,"\u0133":16,"\u012d":16,"\u00ec":16,"\u00ef":16,"\u00ee":16,"\u00ed":16,"\u00e8":26,"\u00e0":23,"\u0131":16,"i":16,"T":-14,"\u0166":-14,"\u0164":-14,"\u021a":-14,"\u03a4":-14,"J":15,"\u0134":15,"C":10,"G":10,"O":10,"Q":10,"\u00d8":10,"\u0152":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"\u0106":10,"\u010c":10,"\u0108":10,"\u010a":10,"\u011e":10,"\u011c":10,"\u0122":10,"\u0120":10,"\u014e":10,"\u0150":10,"\u014c":10,"\u01fe":10,"\u0398":10,"\u039f":10,"V":-14,"W":-14,"\u1e82":-14,"\u0174":-14,"\u1e84":-14,"\u1e80":-14,"X":-8,"\u03a7":-8,"Y":-10,"\u00dd":-10,"\u0178":-10,"\u1ef2":-10,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"\u0102":27,"\u0100":27,"\u0104":27,"\u01fc":27,"\u0391":27,"\u039b":27,"S":2,"\u0160":2,"\u015a":2,"\uf6c1":2,"\u015c":2,"\u0218":2,"a":23,"\u00e6":23,"\u00e1":23,"\u00e2":23,"\u00e4":23,"\u00e5":23,"\u00e3":23,"\u0103":23,"\u0101":23,"\u0105":23,"\u01fd":23,"g":23,"\u011f":23,"\u011d":23,"\u0123":23,"\u0121":23,"c":26,"d":26,"e":26,"o":26,"q":26,"\u00f8":26,"\u0153":26,"\u00e7":26,"\u00e9":26,"\u00ea":26,"\u00eb":26,"\u00f3":26,"\u00f4":26,"\u00f6":26,"\u00f2":26,"\u00f5":26,"\u0107":26,"\u010d":26,"\u0109":26,"\u010b":26,"\u010f":26,"\u0111":26,"\u0115":26,"\u011b":26,"\u0117":26,"\u0113":26,"\u0119":26,"\u014f":26,"\u0151":26,"\u014d":26,"\u01ff":26,"s":19,"\u0161":19,"\u015b":19,"\uf6c2":19,"\u015d":19,"\u0219":19,"u":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u00f9":16,"\u016d":16,"\u0171":16,"\u016b":16,"\u0173":16,"\u016f":16,"\u0169":16,"v":14,"w":14,"y":14,"\u00fd":14,"\u00ff":14,"\u1e83":14,"\u0175":14,"\u1e85":14,"\u1e81":14,"\u1ef3":14,"z":18,"\u017e":18,"\u017a":18,"\u017c":18,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"m":16,"n":16,"p":16,"r":16,"\u00f1":16,"\u014b":16,"\u0144":16,"\u0148":16,"\u0146":16,"\u0155":16,"\u0159":16,"\u0157":16,"\u0138":16,"x":12,":":9,";":9,"\u203a":13,"\u00bb":13,"\u00ab":18,"\u2039":18,"\u00ad":18,"\u2013":18,"\u2014":18,")":-22,"]":-22,"}":-22,"\"":-6,"'":-6,"\u2019":-12,"\u201d":-12,",":22,".":22,"\u2026":22,"\ue000":25,"\u2126":9,"\u03a6":14,"\u03a8":-3,"\u03a5":-4,"\u03ab":-4,"\u03a3":-2,"\u03b5":16,"\u03ad":16,"\u03bb":-3,"\u03b1":22,"\u03b4":22,"\u03bf":22,"\u03c3":22,"\u03c6":22,"\u03ac":22,"\u03cc":22,"\u03c2":22,"\u03c1":24,"\u03c5":14,"\u03c8":14,"\u03cd":14,"\u03cb":14,"\u03b0":14,"\u03b6":4,"\u03be":4,"\u00b5":12,"\u03b2":12,"\u03b7":12,"\u03ba":12,"\u03ae":12,"\u03b9":12,"\u03af":12,"\u03ca":12,"\u0390":12,"\u03c9":17,"\u03ce":17}},"\u0162":{"d":"73,0r0,-216r-73,0r0,-27r179,0r0,27r-74,0r0,216r-32,0xm65,80r-6,-15v27,0,35,-32,15,-45r23,-5v32,20,4,70,-32,65","w":178,"k":{"\u0129":4,"\u012f":4,"\u012b":4,"\u0133":4,"\u012d":-19,"\u00ec":4,"\u00ef":-24,"\u00ee":4,"\u00ed":4,"\u00e8":24,"\u00e0":13,"\u0131":4,"i":4}},"\u021a":{"d":"73,0r0,-216r-73,0r0,-27r179,0r0,27r-74,0r0,216r-32,0xm65,80r-6,-15v27,0,35,-32,15,-45r23,-5v32,20,4,70,-32,65","w":178,"k":{"T":-14,"\u0166":-14,"\u0164":-14,"\u021a":-14,"\u03a4":-14,"J":15,"\u0134":15,"C":10,"G":10,"O":10,"Q":10,"\u00d8":10,"\u0152":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"\u0106":10,"\u010c":10,"\u0108":10,"\u010a":10,"\u011e":10,"\u011c":10,"\u0122":10,"\u0120":10,"\u014e":10,"\u0150":10,"\u014c":10,"\u01fe":10,"\u0398":10,"\u039f":10,"V":-14,"W":-14,"\u1e82":-14,"\u0174":-14,"\u1e84":-14,"\u1e80":-14,"X":-8,"\u03a7":-8,"Y":-10,"\u00dd":-10,"\u0178":-10,"\u1ef2":-10,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"\u0102":27,"\u0100":27,"\u0104":27,"\u01fc":27,"\u0391":27,"\u039b":27,"S":2,"\u0160":2,"\u015a":2,"\uf6c1":2,"\u015c":2,"\u0218":2,"a":23,"\u00e6":23,"\u00e1":23,"\u00e2":23,"\u00e4":23,"\u00e0":23,"\u00e5":23,"\u00e3":23,"\u0103":23,"\u0101":23,"\u0105":23,"\u01fd":23,"g":23,"\u011f":23,"\u011d":23,"\u0123":23,"\u0121":23,"c":26,"d":26,"e":26,"o":26,"q":26,"\u00f8":26,"\u0153":26,"\u00e7":26,"\u00e9":26,"\u00ea":26,"\u00eb":26,"\u00e8":26,"\u00f3":26,"\u00f4":26,"\u00f6":26,"\u00f2":26,"\u00f5":26,"\u0107":26,"\u010d":26,"\u0109":26,"\u010b":26,"\u010f":26,"\u0111":26,"\u0115":26,"\u011b":26,"\u0117":26,"\u0113":26,"\u0119":26,"\u014f":26,"\u0151":26,"\u014d":26,"\u01ff":26,"s":19,"\u0161":19,"\u015b":19,"\uf6c2":19,"\u015d":19,"\u0219":19,"u":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u00f9":16,"\u016d":16,"\u0171":16,"\u016b":16,"\u0173":16,"\u016f":16,"\u0169":16,"v":14,"w":14,"y":14,"\u00fd":14,"\u00ff":14,"\u1e83":14,"\u0175":14,"\u1e85":14,"\u1e81":14,"\u1ef3":14,"z":18,"\u017e":18,"\u017a":18,"\u017c":18,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"i":16,"m":16,"n":16,"p":16,"r":16,"\u0131":16,"\u00ed":16,"\u00ee":16,"\u00ef":16,"\u00ec":16,"\u00f1":16,"\u014b":16,"\u012d":16,"\u0133":16,"\u012b":16,"\u012f":16,"\u0129":16,"\u0144":16,"\u0148":16,"\u0146":16,"\u0155":16,"\u0159":16,"\u0157":16,"\u0138":16,"x":12,":":9,";":9,"\u203a":13,"\u00bb":13,"\u00ab":18,"\u2039":18,"\u00ad":18,"\u2013":18,"\u2014":18,")":-22,"]":-22,"}":-22,"\"":-6,"'":-6,"\u2019":-12,"\u201d":-12,",":22,".":22,"\u2026":22,"\ue000":25,"\u2126":9,"\u03a6":14,"\u03a8":-3,"\u03a5":-4,"\u03ab":-4,"\u03a3":-2,"\u03b5":16,"\u03ad":16,"\u03bb":-3,"\u03b1":22,"\u03b4":22,"\u03bf":22,"\u03c3":22,"\u03c6":22,"\u03ac":22,"\u03cc":22,"\u03c2":22,"\u03c1":24,"\u03c5":14,"\u03c8":14,"\u03cd":14,"\u03cb":14,"\u03b0":14,"\u03b6":4,"\u03be":4,"\u00b5":12,"\u03b2":12,"\u03b7":12,"\u03ba":12,"\u03ae":12,"\u03b9":12,"\u03af":12,"\u03ca":12,"\u0390":12,"\u03c9":17,"\u03ce":17}},"\u016c":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143xm72,-298r19,0v2,8,8,18,26,18v17,0,24,-9,26,-18r18,0v0,21,-14,38,-45,38v-31,0,-43,-16,-44,-38","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fc":12,"\u0391":12,"\u039b":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u021b":-1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,"\u2019":2,"\u201d":2,",":10,".":10,"\u2026":10}},"\u0170":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143xm102,-298r35,0r-41,41r-23,0xm155,-298r35,0r-41,41r-23,0","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fc":12,"\u0391":12,"\u039b":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u021b":-1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,"\u2019":2,"\u201d":2,",":10,".":10,"\u2026":10}},"\u016a":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143xm74,-284r86,0r0,20r-86,0r0,-20","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fc":12,"\u0391":12,"\u039b":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u021b":-1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,"\u2019":2,"\u201d":2,",":10,".":10,"\u2026":10}},"\u0172":{"d":"149,49r5,16v-21,14,-61,10,-61,-20v0,-16,10,-31,20,-41v-50,0,-85,-29,-86,-104r0,-143r32,0r0,144v0,54,24,77,56,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,62,-28,93,-67,101v-15,11,-37,48,-6,52v6,0,11,-1,16,-3","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fc":12,"\u0391":12,"\u039b":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u021b":-1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,"\u2019":2,"\u201d":2,",":10,".":10,"\u2026":10}},"\u016e":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143xm117,-314v22,0,36,14,36,32v0,18,-15,32,-36,32v-22,0,-36,-14,-36,-32v0,-18,14,-32,36,-32xm116,-301v-10,0,-17,9,-17,19v0,9,7,19,17,19v11,0,18,-8,18,-19v0,-10,-7,-19,-18,-19","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fc":12,"\u0391":12,"\u039b":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u021b":-1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,"\u2019":2,"\u201d":2,",":10,".":10,"\u2026":10}},"\u0168":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143xm161,-294v3,49,-42,32,-63,21v-6,0,-8,6,-9,16r-17,0v-2,-49,38,-37,63,-23v5,0,9,-2,10,-14r16,0","w":232,"k":{"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"\u0102":12,"\u0100":12,"\u0104":12,"\u01fc":12,"\u0391":12,"\u039b":12,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"f":-3,"\u00df":-3,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":-1,"\u0167":-1,"\u0165":-1,"\u021b":-1,"z":2,"\u017e":2,"\u017a":2,"\u017c":2,"x":3,"\u2019":2,"\u201d":2,",":10,".":10,"\u2026":10}},"\u1e82":{"d":"100,0r-33,0r-62,-243r34,0r47,207r52,-207r33,0r30,123v8,28,10,60,17,84r52,-207r32,0r-69,243r-33,0r-30,-126v-9,-30,-11,-58,-17,-80v-12,65,-37,141,-53,206xm172,-298r38,0r-46,42r-26,0","w":304,"k":{"\u012d":6,"\u01fc":21,"\u00ef":6,"\u00c6":21,"T":-12,"\u0166":-12,"\u0164":-12,"\u021a":-12,"\u03a4":-12,"J":8,"\u0134":8,"V":-6,"W":-6,"\u1e82":-6,"\u0174":-6,"\u1e84":-6,"\u1e80":-6,"A":21,"\u00c1":21,"\u00c2":21,"\u00c4":21,"\u00c0":21,"\u00c5":21,"\u00c3":21,"\u0102":21,"\u0100":21,"\u0104":21,"\u0391":21,"\u039b":21,"a":12,"\u00e6":12,"\u00e1":12,"\u00e2":12,"\u00e4":12,"\u00e0":12,"\u00e5":12,"\u00e3":12,"\u0103":12,"\u0101":12,"\u0105":12,"\u01fd":12,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"c":12,"d":12,"e":12,"o":12,"q":12,"\u00f8":12,"\u0153":12,"\u00e7":12,"\u00e9":12,"\u00ea":12,"\u00eb":12,"\u00e8":12,"\u00f3":12,"\u00f4":12,"\u00f6":12,"\u00f2":12,"\u00f5":12,"\u0107":12,"\u010d":12,"\u0109":12,"\u010b":12,"\u010f":12,"\u0111":12,"\u0115":12,"\u011b":12,"\u0117":12,"\u0113":12,"\u0119":12,"\u014f":12,"\u0151":12,"\u014d":12,"\u01ff":12,"s":9,"\u0161":9,"\u015b":9,"\uf6c2":9,"\u015d":9,"\u0219":9,"t":-3,"\u0167":-3,"\u0165":-3,"\u021b":-3,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u016d":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"\u0169":6,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u1e83":1,"\u0175":1,"\u1e85":1,"\u1e81":1,"\u1ef3":1,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"i":6,"m":6,"n":6,"p":6,"r":6,"\u0131":6,"\u00ed":6,"\u00ee":6,"\u00ec":6,"\u00f1":6,"\u014b":6,"\u0133":6,"\u012b":6,"\u012f":6,"\u0129":6,"\u0144":6,"\u0148":6,"\u0146":6,"\u0155":6,"\u0159":6,"\u0157":6,"\u0138":6,":":6,";":6,"\u203a":4,"\u00bb":4,"\u00ab":9,"\u2039":9,"\u00ad":5,"\u2013":5,"\u2014":5,")":-20,"]":-20,"}":-20,"\"":-7,"'":-7,"\u2018":-3,"\u201c":-3,"\u2019":-10,"\u201d":-10,",":20,".":20,"\u2026":20}},"\u0174":{"d":"100,0r-33,0r-62,-243r34,0r47,207r52,-207r33,0r30,123v8,28,10,60,17,84r52,-207r32,0r-69,243r-33,0r-30,-126v-9,-30,-11,-58,-17,-80v-12,65,-37,141,-53,206xm140,-297r25,0r37,41r-26,0v-8,-8,-15,-17,-24,-24r-23,24r-25,0","w":304,"k":{"\u012d":6,"\u01fc":21,"\u00ef":6,"\u00c6":21,"T":-12,"\u0166":-12,"\u0164":-12,"\u021a":-12,"\u03a4":-12,"J":8,"\u0134":8,"V":-6,"W":-6,"\u1e82":-6,"\u0174":-6,"\u1e84":-6,"\u1e80":-6,"A":21,"\u00c1":21,"\u00c2":21,"\u00c4":21,"\u00c0":21,"\u00c5":21,"\u00c3":21,"\u0102":21,"\u0100":21,"\u0104":21,"\u0391":21,"\u039b":21,"a":12,"\u00e6":12,"\u00e1":12,"\u00e2":12,"\u00e4":12,"\u00e0":12,"\u00e5":12,"\u00e3":12,"\u0103":12,"\u0101":12,"\u0105":12,"\u01fd":12,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"c":12,"d":12,"e":12,"o":12,"q":12,"\u00f8":12,"\u0153":12,"\u00e7":12,"\u00e9":12,"\u00ea":12,"\u00eb":12,"\u00e8":12,"\u00f3":12,"\u00f4":12,"\u00f6":12,"\u00f2":12,"\u00f5":12,"\u0107":12,"\u010d":12,"\u0109":12,"\u010b":12,"\u010f":12,"\u0111":12,"\u0115":12,"\u011b":12,"\u0117":12,"\u0113":12,"\u0119":12,"\u014f":12,"\u0151":12,"\u014d":12,"\u01ff":12,"s":9,"\u0161":9,"\u015b":9,"\uf6c2":9,"\u015d":9,"\u0219":9,"t":-3,"\u0167":-3,"\u0165":-3,"\u021b":-3,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u016d":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"\u0169":6,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u1e83":1,"\u0175":1,"\u1e85":1,"\u1e81":1,"\u1ef3":1,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"i":6,"m":6,"n":6,"p":6,"r":6,"\u0131":6,"\u00ed":6,"\u00ee":6,"\u00ec":6,"\u00f1":6,"\u014b":6,"\u0133":6,"\u012b":6,"\u012f":6,"\u0129":6,"\u0144":6,"\u0148":6,"\u0146":6,"\u0155":6,"\u0159":6,"\u0157":6,"\u0138":6,":":6,";":6,"\u203a":4,"\u00bb":4,"\u00ab":9,"\u2039":9,"\u00ad":5,"\u2013":5,"\u2014":5,")":-20,"]":-20,"}":-20,"\"":-7,"'":-7,"\u2018":-3,"\u201c":-3,"\u2019":-10,"\u201d":-10,",":20,".":20,"\u2026":20}},"\u1e84":{"d":"100,0r-33,0r-62,-243r34,0r47,207r52,-207r33,0r30,123v8,28,10,60,17,84r52,-207r32,0r-69,243r-33,0r-30,-126v-9,-30,-11,-58,-17,-80v-12,65,-37,141,-53,206xm138,-278v0,10,-7,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18xm187,-260v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-18,18","w":304,"k":{"\u012d":6,"\u01fc":21,"\u00ef":6,"\u00c6":21,"T":-12,"\u0166":-12,"\u0164":-12,"\u021a":-12,"\u03a4":-12,"J":8,"\u0134":8,"V":-6,"W":-6,"\u1e82":-6,"\u0174":-6,"\u1e84":-6,"\u1e80":-6,"A":21,"\u00c1":21,"\u00c2":21,"\u00c4":21,"\u00c0":21,"\u00c5":21,"\u00c3":21,"\u0102":21,"\u0100":21,"\u0104":21,"\u0391":21,"\u039b":21,"a":12,"\u00e6":12,"\u00e1":12,"\u00e2":12,"\u00e4":12,"\u00e0":12,"\u00e5":12,"\u00e3":12,"\u0103":12,"\u0101":12,"\u0105":12,"\u01fd":12,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"c":12,"d":12,"e":12,"o":12,"q":12,"\u00f8":12,"\u0153":12,"\u00e7":12,"\u00e9":12,"\u00ea":12,"\u00eb":12,"\u00e8":12,"\u00f3":12,"\u00f4":12,"\u00f6":12,"\u00f2":12,"\u00f5":12,"\u0107":12,"\u010d":12,"\u0109":12,"\u010b":12,"\u010f":12,"\u0111":12,"\u0115":12,"\u011b":12,"\u0117":12,"\u0113":12,"\u0119":12,"\u014f":12,"\u0151":12,"\u014d":12,"\u01ff":12,"s":9,"\u0161":9,"\u015b":9,"\uf6c2":9,"\u015d":9,"\u0219":9,"t":-3,"\u0167":-3,"\u0165":-3,"\u021b":-3,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u016d":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"\u0169":6,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u1e83":1,"\u0175":1,"\u1e85":1,"\u1e81":1,"\u1ef3":1,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"i":6,"m":6,"n":6,"p":6,"r":6,"\u0131":6,"\u00ed":6,"\u00ee":6,"\u00ec":6,"\u00f1":6,"\u014b":6,"\u0133":6,"\u012b":6,"\u012f":6,"\u0129":6,"\u0144":6,"\u0148":6,"\u0146":6,"\u0155":6,"\u0159":6,"\u0157":6,"\u0138":6,":":6,";":6,"\u203a":4,"\u00bb":4,"\u00ab":9,"\u2039":9,"\u00ad":5,"\u2013":5,"\u2014":5,")":-20,"]":-20,"}":-20,"\"":-7,"'":-7,"\u2018":-3,"\u201c":-3,"\u2019":-10,"\u201d":-10,",":20,".":20,"\u2026":20}},"\u1e80":{"d":"100,0r-33,0r-62,-243r34,0r47,207r52,-207r33,0r30,123v8,28,10,60,17,84r52,-207r32,0r-69,243r-33,0r-30,-126v-9,-30,-11,-58,-17,-80v-12,65,-37,141,-53,206xm98,-298r38,0r34,42r-26,0","w":304,"k":{"\u012d":6,"\u01fc":21,"\u00ef":6,"\u00c6":21,"T":-12,"\u0166":-12,"\u0164":-12,"\u021a":-12,"\u03a4":-12,"J":8,"\u0134":8,"V":-6,"W":-6,"\u1e82":-6,"\u0174":-6,"\u1e84":-6,"\u1e80":-6,"A":21,"\u00c1":21,"\u00c2":21,"\u00c4":21,"\u00c0":21,"\u00c5":21,"\u00c3":21,"\u0102":21,"\u0100":21,"\u0104":21,"\u0391":21,"\u039b":21,"a":12,"\u00e6":12,"\u00e1":12,"\u00e2":12,"\u00e4":12,"\u00e0":12,"\u00e5":12,"\u00e3":12,"\u0103":12,"\u0101":12,"\u0105":12,"\u01fd":12,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"c":12,"d":12,"e":12,"o":12,"q":12,"\u00f8":12,"\u0153":12,"\u00e7":12,"\u00e9":12,"\u00ea":12,"\u00eb":12,"\u00e8":12,"\u00f3":12,"\u00f4":12,"\u00f6":12,"\u00f2":12,"\u00f5":12,"\u0107":12,"\u010d":12,"\u0109":12,"\u010b":12,"\u010f":12,"\u0111":12,"\u0115":12,"\u011b":12,"\u0117":12,"\u0113":12,"\u0119":12,"\u014f":12,"\u0151":12,"\u014d":12,"\u01ff":12,"s":9,"\u0161":9,"\u015b":9,"\uf6c2":9,"\u015d":9,"\u0219":9,"t":-3,"\u0167":-3,"\u0165":-3,"\u021b":-3,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u016d":6,"\u0171":6,"\u016b":6,"\u0173":6,"\u016f":6,"\u0169":6,"v":1,"w":1,"y":1,"\u00fd":1,"\u00ff":1,"\u1e83":1,"\u0175":1,"\u1e85":1,"\u1e81":1,"\u1ef3":1,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0127":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"i":6,"m":6,"n":6,"p":6,"r":6,"\u0131":6,"\u00ed":6,"\u00ee":6,"\u00ec":6,"\u00f1":6,"\u014b":6,"\u0133":6,"\u012b":6,"\u012f":6,"\u0129":6,"\u0144":6,"\u0148":6,"\u0146":6,"\u0155":6,"\u0159":6,"\u0157":6,"\u0138":6,":":6,";":6,"\u203a":4,"\u00bb":4,"\u00ab":9,"\u2039":9,"\u00ad":5,"\u2013":5,"\u2014":5,")":-20,"]":-20,"}":-20,"\"":-7,"'":-7,"\u2018":-3,"\u201c":-3,"\u2019":-10,"\u201d":-10,",":20,".":20,"\u2026":20}},"\u0176":{"d":"113,0r-32,0r0,-103r-77,-140r36,0r59,117v17,-38,41,-79,60,-117r35,0r-81,140r0,103xm85,-297r24,0r38,41r-26,0v-8,-8,-15,-17,-24,-24r-23,24r-25,0","w":194},"\u1ef2":{"d":"113,0r-32,0r0,-103r-77,-140r36,0r59,117v17,-38,41,-79,60,-117r35,0r-81,140r0,103xm48,-295r38,0r33,42r-25,0","w":194,"k":{"\u012d":5,"\u00f6":27,"\u00ef":5,"\u00eb":27,"\u00e4":25,"T":-12,"\u0166":-12,"\u0164":-12,"\u021a":-12,"\u03a4":-12,"J":19,"\u0134":19,"M":4,"\u039c":4,"C":13,"G":13,"O":13,"Q":13,"\u00d8":13,"\u0152":13,"\u00c7":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"\u0106":13,"\u010c":13,"\u0108":13,"\u010a":13,"\u011e":13,"\u011c":13,"\u0122":13,"\u0120":13,"\u014e":13,"\u0150":13,"\u014c":13,"\u01fe":13,"\u0398":13,"\u039f":13,"V":-10,"W":-10,"\u1e82":-10,"\u0174":-10,"\u1e84":-10,"\u1e80":-10,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,"\u0102":29,"\u0100":29,"\u0104":29,"\u01fc":29,"\u0391":29,"\u039b":29,"S":5,"\u0160":5,"\u015a":5,"\uf6c1":5,"\u015c":5,"\u0218":5,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"\u0141":3,"\u00d0":3,"\u00c9":3,"\u00ca":3,"\u00cb":3,"\u00c8":3,"\u00cd":3,"\u00ce":3,"\u00cf":3,"\u00cc":3,"\u00d1":3,"\u010e":3,"\u0110":3,"\u0114":3,"\u011a":3,"\u0116":3,"\u0112":3,"\u014a":3,"\u0118":3,"\u0126":3,"\u0124":3,"\u012c":3,"\u0132":3,"\u012a":3,"\u012e":3,"\u0128":3,"\u0136":3,"\u0139":3,"\u013d":3,"\u013b":3,"\u013f":3,"\u0143":3,"\u0147":3,"\u0145":3,"\u0154":3,"\u0158":3,"\u0156":3,"\u0130":3,"\u0392":3,"\u0393":3,"\u0395":3,"\u0397":3,"\u0399":3,"\u039a":3,"\u039d":3,"\u03a0":3,"\u03a1":3,"\u03aa":3,"a":25,"\u00e6":25,"\u00e1":25,"\u00e2":25,"\u00e0":25,"\u00e5":25,"\u00e3":25,"\u0103":25,"\u0101":25,"\u0105":25,"\u01fd":25,"g":14,"\u011f":14,"\u011d":14,"\u0123":14,"\u0121":14,"c":27,"d":27,"e":27,"o":27,"q":27,"\u00f8":27,"\u0153":27,"\u00e7":27,"\u00e9":27,"\u00ea":27,"\u00e8":27,"\u00f3":27,"\u00f4":27,"\u00f2":27,"\u00f5":27,"\u0107":27,"\u010d":27,"\u0109":27,"\u010b":27,"\u010f":27,"\u0111":27,"\u0115":27,"\u011b":27,"\u0117":27,"\u0113":27,"\u0119":27,"\u014f":27,"\u0151":27,"\u014d":27,"\u01ff":27,"s":19,"\u0161":19,"\u015b":19,"\uf6c2":19,"\u015d":19,"\u0219":19,"t":7,"\u0167":7,"\u0165":7,"\u021b":7,"u":19,"\u00fa":19,"\u00fb":19,"\u00fc":19,"\u00f9":19,"\u016d":19,"\u0171":19,"\u016b":19,"\u0173":19,"\u016f":19,"\u0169":19,"v":10,"w":10,"y":10,"\u00fd":10,"\u00ff":10,"\u1e83":10,"\u0175":10,"\u1e85":10,"\u1e81":10,"\u1ef3":10,"z":9,"\u017e":9,"\u017a":9,"\u017c":9,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"i":5,"m":5,"n":5,"p":5,"r":5,"\u0131":5,"\u00ed":5,"\u00ee":5,"\u00ec":5,"\u00f1":5,"\u014b":5,"\u0133":5,"\u012b":5,"\u012f":5,"\u0129":5,"\u0144":5,"\u0148":5,"\u0146":5,"\u0155":5,"\u0159":5,"\u0157":5,"\u0138":5,"x":9,":":12,";":12,"\u203a":7,"\u00bb":7,"\u00ab":18,"\u2039":18,"\u00ad":18,"\u2013":18,"\u2014":18,")":-20,"]":-20,"}":-20,"\"":-3,"'":-3,"\u2018":2,"\u201c":2,"\u2019":-5,"\u201d":-5,",":34,".":34,"\u2026":34}},"\u0179":{"d":"11,0r0,-18r134,-198r-123,0r0,-27r164,0r0,19r-134,198r136,0r0,26r-177,0xm117,-298r39,0r-47,42r-25,0","w":199,"k":{"J":-3,"\u0134":-3,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u0152":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u0398":8,"\u039f":8,"X":2,"\u03a7":2,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"\u00ad":10,"\u2013":10,"\u2014":10,"\u2018":2,"\u201c":2,"\u03a5":-3,"\u03ab":-3,"\u039e":-2,"\u03a3":3,"\u03bb":-4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4}},"\u017b":{"d":"11,0r0,-18r134,-198r-123,0r0,-27r164,0r0,19r-134,198r136,0r0,26r-177,0xm101,-259v-10,0,-18,-9,-18,-19v0,-9,8,-18,18,-18v10,0,17,9,17,18v0,10,-7,19,-17,19","w":199,"k":{"J":-3,"\u0134":-3,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u0152":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u0398":8,"\u039f":8,"X":2,"\u03a7":2,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"\u00ad":10,"\u2013":10,"\u2014":10,"\u2018":2,"\u201c":2,"\u03a5":-3,"\u03ab":-3,"\u039e":-2,"\u03a3":3,"\u03bb":-4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4}},"\u0130":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm61,-278v0,10,-7,18,-18,18v-10,0,-17,-8,-17,-18v0,-9,8,-18,18,-18v10,0,17,9,17,18","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u0103":{"d":"82,-178v97,3,56,97,70,178r-29,0v-2,-7,0,-17,-4,-22v-9,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-17,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm74,-19v38,-2,48,-28,44,-70v-35,-1,-74,5,-74,39v0,21,14,31,30,31xm42,-246r19,0v2,14,11,25,26,25v17,0,25,-13,26,-25r18,0v0,27,-17,45,-44,45v-32,0,-45,-22,-45,-45","w":173},"\u0101":{"d":"82,-178v97,3,56,97,70,178r-29,0v-2,-7,0,-17,-4,-22v-9,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-17,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm74,-19v38,-2,48,-28,44,-70v-35,-1,-74,5,-74,39v0,21,14,31,30,31xm46,-231r81,0r0,20r-81,0r0,-20","w":173},"\u0105":{"d":"82,-178v97,3,56,97,70,178v-18,-2,-21,21,-23,35v-3,19,21,21,33,14r5,17v-23,15,-62,10,-62,-22v0,-27,27,-41,14,-66v-9,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-17,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm74,-19v38,-2,48,-28,44,-70v-35,-1,-74,5,-74,39v0,21,14,31,30,31","w":173},"\u01fd":{"d":"264,-84r-117,0v-7,63,63,73,104,54r5,22v-39,21,-109,15,-124,-27v-11,24,-35,39,-65,39v-36,0,-54,-24,-54,-50v0,-40,38,-64,105,-63v1,-19,-3,-46,-41,-46v-17,0,-34,6,-44,13r-8,-21v36,-24,103,-20,111,22v12,-23,33,-37,61,-37v58,0,71,54,67,94xm75,-19v37,-1,47,-28,43,-68v-33,-1,-74,5,-74,39v0,18,14,29,31,29xm147,-107r88,0v1,-18,-9,-49,-41,-49v-32,0,-46,29,-47,49xm154,-249r35,0r-44,51r-22,0","w":278,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"\u00ad":-10,"\u2013":-10,"\u2014":-10,"\u2019":9,"\u201d":9,",":4,".":4,"\u2026":4}},"\u0107":{"d":"145,-30r5,24v-8,4,-27,10,-50,10v-53,0,-86,-36,-86,-89v0,-70,72,-113,137,-84r-7,24v-43,-23,-105,7,-98,58v-4,57,55,78,99,57xm109,-249r34,0r-44,51r-22,0","w":161,"k":{"T":4,"\u0166":4,"\u0164":4,"\u021a":4,"\u03a4":4,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0111":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"t":-5,"\u0167":-5,"\u0165":-5,"\u021b":-5,"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,"\u1e83":-6,"\u0175":-6,"\u1e85":-6,"\u1e81":-6,"\u1ef3":-6,"\u203a":-5,"\u00bb":-5,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u2018":-6,"\u201c":-6,"\u2019":-6,"\u201d":-6,",":4,".":4,"\u2026":4}},"\u010d":{"d":"145,-30r5,24v-8,4,-27,10,-50,10v-53,0,-86,-36,-86,-89v0,-70,72,-113,137,-84r-7,24v-43,-23,-105,7,-98,58v-4,57,55,78,99,57xm106,-198r-23,0r-34,-51r24,0v8,11,13,24,22,34r21,-34r24,0","w":161,"k":{"T":4,"\u0166":4,"\u0164":4,"\u021a":4,"\u03a4":4,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0111":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"t":-5,"\u0167":-5,"\u0165":-5,"\u021b":-5,"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,"\u1e83":-6,"\u0175":-6,"\u1e85":-6,"\u1e81":-6,"\u1ef3":-6,"\u203a":-5,"\u00bb":-5,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u2018":-6,"\u201c":-6,"\u2019":-6,"\u201d":-6,",":4,".":4,"\u2026":4}},"\u0109":{"d":"145,-30r5,24v-8,4,-27,10,-50,10v-53,0,-86,-36,-86,-89v0,-70,72,-113,137,-84r-7,24v-43,-23,-105,7,-98,58v-4,57,55,78,99,57xm82,-249r22,0r35,51r-24,0v-8,-11,-13,-24,-22,-34r-21,34r-23,0","w":161,"k":{"T":4,"\u0166":4,"\u0164":4,"\u021a":4,"\u03a4":4,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0111":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"t":-5,"\u0167":-5,"\u0165":-5,"\u021b":-5,"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,"\u1e83":-6,"\u0175":-6,"\u1e85":-6,"\u1e81":-6,"\u1ef3":-6,"\u203a":-5,"\u00bb":-5,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u2018":-6,"\u201c":-6,"\u2019":-6,"\u201d":-6,",":4,".":4,"\u2026":4}},"\u010b":{"d":"145,-30r5,24v-8,4,-27,10,-50,10v-53,0,-86,-36,-86,-89v0,-70,72,-113,137,-84r-7,24v-43,-23,-105,7,-98,58v-4,57,55,78,99,57xm95,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19","w":161,"k":{"T":4,"\u0166":4,"\u0164":4,"\u021a":4,"\u03a4":4,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0111":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"t":-5,"\u0167":-5,"\u0165":-5,"\u021b":-5,"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,"\u1e83":-6,"\u0175":-6,"\u1e85":-6,"\u1e81":-6,"\u1ef3":-6,"\u203a":-5,"\u00bb":-5,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u2018":-6,"\u201c":-6,"\u2019":-6,"\u201d":-6,",":4,".":4,"\u2026":4}},"\u010f":{"d":"145,-256r32,0r1,256r-28,0r-2,-30v-34,62,-134,32,-134,-55v0,-86,90,-120,131,-67r0,-104xm46,-86v0,73,95,89,99,13v2,-45,-7,-80,-47,-80v-33,0,-52,29,-52,67xm217,-259v29,16,-4,98,-24,60v13,-9,19,-44,2,-55","w":206,"k":{"\u0140":-20,"\u013c":-20,"\u013e":-20,"\u013a":-20,"\u0137":-20,"\u0125":-20,"\u0127":-20,"\u0142":-20,"\u201d":-2,"l":-20,"k":-20,"h":-20,"b":-20,"\u2019":-2,",":4,".":4,"\u2026":4}},"\u0111":{"d":"204,-199r-27,0r1,199r-28,0r-2,-30v-34,62,-134,32,-134,-55v0,-86,90,-120,131,-67r0,-47r-71,0r0,-20r71,0r0,-37r32,0r0,37r27,0r0,20xm46,-86v0,73,95,89,99,13v2,-45,-7,-80,-47,-80v-33,0,-52,29,-52,67","w":203,"k":{"\u2019":-2,"\u201d":-2,",":4,".":4,"\u2026":4}},"\u0115":{"d":"166,-81r-122,0v-2,63,66,69,108,51r6,22v-11,5,-31,12,-59,12v-53,0,-85,-36,-85,-88v0,-53,31,-94,82,-94v63,0,74,53,70,97xm45,-104r92,0v0,-20,-9,-52,-44,-52v-32,0,-45,30,-48,52xm47,-246r19,0v2,14,10,25,25,25v17,0,25,-13,26,-25r19,0v0,27,-18,45,-45,45v-32,0,-44,-22,-44,-45","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"\u00ad":-10,"\u2013":-10,"\u2014":-10,"\u2019":9,"\u201d":9,",":4,".":4,"\u2026":4}},"\u011b":{"d":"166,-81r-122,0v-2,63,66,69,108,51r6,22v-11,5,-31,12,-59,12v-53,0,-85,-36,-85,-88v0,-53,31,-94,82,-94v63,0,74,53,70,97xm45,-104r92,0v0,-20,-9,-52,-44,-52v-32,0,-45,30,-48,52xm103,-198r-23,0r-34,-51r24,0v8,11,13,24,22,34r21,-34r24,0","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"\u00ad":-10,"\u2013":-10,"\u2014":-10,"\u2019":9,"\u201d":9,",":4,".":4,"\u2026":4}},"\u0117":{"d":"166,-81r-122,0v-2,63,66,69,108,51r6,22v-11,5,-31,12,-59,12v-53,0,-85,-36,-85,-88v0,-53,31,-94,82,-94v63,0,74,53,70,97xm45,-104r92,0v0,-20,-9,-52,-44,-52v-32,0,-45,30,-48,52xm92,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"\u00ad":-10,"\u2013":-10,"\u2014":-10,"\u2019":9,"\u201d":9,",":4,".":4,"\u2026":4}},"\u0113":{"d":"166,-81r-122,0v-2,63,66,69,108,51r6,22v-11,5,-31,12,-59,12v-53,0,-85,-36,-85,-88v0,-53,31,-94,82,-94v63,0,74,53,70,97xm45,-104r92,0v0,-20,-9,-52,-44,-52v-32,0,-45,30,-48,52xm51,-231r81,0r0,20r-81,0r0,-20","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"\u00ad":-10,"\u2013":-10,"\u2014":-10,"\u2019":9,"\u201d":9,",":4,".":4,"\u2026":4}},"\u014b":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r-1,-174r28,0r2,28v27,-44,120,-54,120,42r0,83v0,55,-30,80,-69,85r-6,-25v57,-6,41,-79,43,-139v0,-28,-10,-52,-40,-52","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,"\u03a4":18,"t":1,"\u0167":1,"\u0165":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"\u1ef3":5,"\"":3,"'":3,"\u2019":12,"\u201d":12}},"\u0119":{"d":"158,-8v-22,8,-51,22,-51,45v0,18,19,19,32,12r5,16v-20,16,-62,12,-62,-19v0,-19,16,-33,26,-43v-57,6,-95,-33,-94,-87v0,-53,31,-94,82,-94v63,0,74,53,70,97r-122,0v-2,63,66,69,108,51xm45,-104r92,0v0,-20,-9,-52,-44,-52v-32,0,-45,30,-48,52","w":180,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"\u00ad":-10,"\u2013":-10,"\u2014":-10,"\u2019":9,"\u201d":9,",":4,".":4,"\u2026":4}},"\u011f":{"d":"175,-26v0,95,-78,120,-146,87r8,-25v44,31,124,12,106,-66v-9,16,-28,29,-55,29v-43,0,-74,-36,-74,-85v0,-90,99,-118,134,-62r1,-26r28,0v-4,41,-2,102,-2,148xm97,-25v36,1,51,-36,47,-81v-3,-28,-19,-48,-46,-48v-30,0,-52,26,-52,67v0,34,17,62,51,62xm53,-246r19,0v2,14,11,25,26,25v17,0,25,-13,26,-25r19,0v0,27,-18,45,-45,45v-32,0,-45,-22,-45,-45","w":201,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"f":-1,"\u00df":-1,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u012d":2,"\u0133":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,"\u0138":2,"\u2019":8,"\u201d":8,",":5,".":5,"\u2026":5}},"\u011d":{"d":"175,-26v0,95,-78,120,-146,87r8,-25v44,31,124,12,106,-66v-9,16,-28,29,-55,29v-43,0,-74,-36,-74,-85v0,-90,99,-118,134,-62r1,-26r28,0v-4,41,-2,102,-2,148xm97,-25v36,1,51,-36,47,-81v-3,-28,-19,-48,-46,-48v-30,0,-52,26,-52,67v0,34,17,62,51,62xm90,-251r22,0r34,52r-24,0v-8,-11,-13,-24,-22,-34r-20,34r-24,0","w":201,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"f":-1,"\u00df":-1,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u012d":2,"\u0133":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,"\u0138":2,"\u2019":8,"\u201d":8,",":5,".":5,"\u2026":5}},"\u0123":{"d":"175,-26v0,95,-78,120,-146,87r8,-25v44,31,124,12,106,-66v-9,16,-28,29,-55,29v-43,0,-74,-36,-74,-85v0,-91,98,-117,134,-62r1,-26r28,0v-4,41,-2,102,-2,148xm97,-25v36,1,51,-36,47,-81v-3,-29,-20,-48,-47,-48v-30,0,-51,26,-51,67v0,34,17,62,51,62xm122,-255r6,13v-27,0,-37,30,-16,44r-23,5v-31,-20,-2,-68,33,-62","w":201,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"f":-1,"\u00df":-1,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u012d":2,"\u0133":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,"\u0138":2,"\u2019":8,"\u201d":8,",":5,".":5,"\u2026":5}},"\u0121":{"d":"175,-26v0,95,-78,120,-146,87r8,-25v44,31,124,12,106,-66v-9,16,-28,29,-55,29v-43,0,-74,-36,-74,-85v0,-90,99,-118,134,-62r1,-26r28,0v-4,41,-2,102,-2,148xm97,-25v36,1,51,-36,47,-81v-3,-28,-19,-48,-46,-48v-30,0,-52,26,-52,67v0,34,17,62,51,62xm118,-225v0,10,-7,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18v10,0,17,8,17,18","w":201,"k":{"T":12,"\u0166":12,"\u0164":12,"\u021a":12,"\u03a4":12,"f":-1,"\u00df":-1,"i":2,"m":2,"n":2,"p":2,"r":2,"\u0131":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2,"\u014b":2,"\u012d":2,"\u0133":2,"\u012b":2,"\u012f":2,"\u0129":2,"\u0144":2,"\u0148":2,"\u0146":2,"\u0155":2,"\u0159":2,"\u0157":2,"\u0138":2,"\u2019":8,"\u201d":8,",":5,".":5,"\u2026":5}},"\u0127":{"d":"58,-147v31,-44,117,-52,117,43r0,104r-32,0v-6,-59,22,-152,-40,-152v-63,0,-42,91,-45,152r-32,0r0,-199r-27,0r0,-20r27,0r0,-37r32,0r0,37r70,0r0,20r-70,0r0,52","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,"\u03a4":18,"t":1,"\u0167":1,"\u0165":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"\u1ef3":5,"\"":3,"'":3,"\u2019":12,"\u201d":12}},"\u0125":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r0,-256r32,0r1,109v29,-45,116,-50,116,43r0,104r-32,0v-6,-59,22,-152,-40,-152xm31,-303r24,0r38,41r-27,0v-8,-8,-15,-18,-24,-25r-23,25r-25,0","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,"\u03a4":18,"t":1,"\u0167":1,"\u0165":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"\u1ef3":5,"\"":3,"'":3,"\u2019":12,"\u201d":12}},"\u012d":{"d":"58,0r-32,0r0,-174r32,0r0,174xm-1,-246r18,0v2,14,11,25,26,25v17,0,25,-13,26,-25r19,0v0,27,-18,45,-45,45v-32,0,-44,-22,-44,-45","w":84,"k":{"\u2019":-3,"\u201d":-3}},"\u0133":{"d":"58,0r-32,0r0,-174r32,0r0,174xm62,-223v0,10,-8,19,-21,19v-12,0,-19,-9,-19,-19v0,-11,8,-20,20,-20v12,0,20,9,20,20xm68,51v42,-7,46,-16,46,-79r0,-146r32,0v-8,98,36,248,-75,250xm130,-204v-12,0,-19,-9,-19,-19v0,-11,7,-20,19,-20v12,0,20,9,20,20v0,10,-7,19,-20,19","w":171,"k":{"\u2019":-3,"\u201d":-3,",":4,".":4,"\u2026":4}},"\u012b":{"d":"58,0r-32,0r0,-174r32,0r0,174xm2,-231r81,0r0,20r-81,0r0,-20","w":84,"k":{"\u2019":-3,"\u201d":-3}},"\u012f":{"d":"62,-226v0,11,-7,20,-21,20v-12,0,-19,-9,-19,-20v0,-11,8,-20,20,-20v12,0,20,9,20,20xm58,-174r0,174v-27,-4,-37,53,-8,54v7,0,13,-2,17,-4r5,17v-23,14,-63,11,-63,-23v0,-18,11,-34,17,-44r0,-174r32,0","w":84,"k":{"\u2019":-3,"\u201d":-3}},"\u0129":{"d":"58,0r-32,0r0,-174r32,0r0,174xm87,-243v3,50,-39,35,-63,23v-6,0,-8,6,-9,16r-17,0v-3,-49,37,-39,62,-24v5,0,9,-3,10,-15r17,0","w":84,"k":{"\u2019":-3,"\u201d":-3}},"\u0135":{"d":"-17,51v43,-7,47,-15,47,-79r0,-146r32,0v-8,98,36,248,-75,250xm33,-247r21,0r35,52r-24,0v-8,-11,-13,-24,-22,-34r-21,34r-23,0","w":87,"k":{"\u2019":-3,"\u201d":-3,",":4,".":4,"\u2026":4}},"\u0137":{"d":"58,-256r1,162v20,-28,44,-53,66,-80r38,0r-67,71r76,103r-38,0r-60,-84r-16,18r0,66r-32,0r0,-256r32,0xm64,80r-6,-15v27,0,35,-32,15,-45r23,-5v32,20,4,70,-32,65","w":168,"k":{"T":7,"\u0166":7,"\u0164":7,"\u021a":7,"\u03a4":7,"a":-6,"\u00e6":-6,"\u00e1":-6,"\u00e2":-6,"\u00e4":-6,"\u00e0":-6,"\u00e5":-6,"\u00e3":-6,"\u0103":-6,"\u0101":-6,"\u0105":-6,"\u01fd":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"b":-6,"h":-6,"k":-6,"l":-6,"\u0142":-6,"\u0127":-6,"\u0125":-6,"\u0137":-6,"\u013a":-6,"\u013e":-6,"\u013c":-6,"\u0140":-6,"i":-6,"m":-6,"n":-6,"p":-6,"r":-6,"\u0131":-6,"\u00ed":-6,"\u00ee":-6,"\u00ef":-6,"\u00ec":-6,"\u00f1":-6,"\u014b":-6,"\u012d":-6,"\u0133":-6,"\u012b":-6,"\u012f":-6,"\u0129":-6,"\u0144":-6,"\u0148":-6,"\u0146":-6,"\u0155":-6,"\u0159":-6,"\u0157":-6,"\u0138":-6,":":-4,";":-4,"\u00ad":4,"\u2013":4,"\u2014":4,"\u2019":-9,"\u201d":-9,",":-5,".":-5,"\u2026":-5}},"\u013a":{"d":"26,0r0,-256r32,0r0,256r-32,0xm55,-308r39,0r-46,42r-26,0","w":84,"k":{"\u2019":-2,"\u201d":-2,",":4,".":4,"\u2026":4}},"\u013e":{"d":"26,0r0,-256r32,0r0,256r-32,0xm86,-188r-14,-11v12,-10,19,-43,2,-55r22,-5v6,4,13,15,13,27v0,26,-18,39,-23,44","w":87,"k":{"\u2019":-2,"\u201d":-2,",":4,".":4,"\u2026":4}},"\u013c":{"d":"26,0r0,-256r32,0r0,256r-32,0xm19,80r-6,-15v27,0,35,-32,14,-45r24,-5v30,20,3,70,-32,65","w":84,"k":{"\u2019":-2,"\u201d":-2,",":4,".":4,"\u2026":4}},"\u0140":{"d":"26,0r0,-256r32,0r0,256r-32,0xm91,-123v-10,0,-17,-8,-17,-18v0,-10,7,-18,17,-18v9,0,17,8,17,18v0,10,-7,18,-17,18","w":97,"k":{"\u2019":-2,"\u201d":-2,",":4,".":4,"\u2026":4}},"\u0144":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r-1,-174r28,0r2,28v27,-44,120,-54,120,42r0,104r-32,0v-6,-59,22,-152,-40,-152xm115,-249r34,0r-44,51r-22,0","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,"\u03a4":18,"t":1,"\u0167":1,"\u0165":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"\u1ef3":5,"\"":3,"'":3,"\u2019":12,"\u201d":12}},"\u0148":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r-1,-174r28,0r2,28v27,-44,120,-54,120,42r0,104r-32,0v-6,-59,22,-152,-40,-152xm112,-198r-23,0r-34,-51r24,0v8,11,13,24,22,34r21,-34r24,0","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,"\u03a4":18,"t":1,"\u0167":1,"\u0165":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"\u1ef3":5,"\"":3,"'":3,"\u2019":12,"\u201d":12}},"\u0146":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r-1,-174r28,0r2,28v27,-44,120,-54,120,42r0,104r-32,0v-6,-59,22,-152,-40,-152xm80,80r-6,-15v26,-1,36,-33,15,-46r23,-5v30,20,4,72,-32,66","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,"\u03a4":18,"t":1,"\u0167":1,"\u0165":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"\u1ef3":5,"\"":3,"'":3,"\u2019":12,"\u201d":12}},"\u014f":{"d":"184,-89v0,65,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92v50,0,84,36,84,89xm46,-87v0,38,21,67,53,67v30,0,53,-28,53,-68v0,-30,-16,-66,-53,-66v-37,0,-53,34,-53,67xm54,-246r19,0v2,14,11,25,26,25v17,0,25,-13,26,-25r19,0v0,27,-18,45,-45,45v-32,0,-45,-22,-45,-45","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u021a":14,"\u03a4":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\"":4,"'":4,"\u2019":12,"\u201d":12,",":9,".":9,"\u2026":9}},"\u0151":{"d":"184,-89v0,65,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92v50,0,84,36,84,89xm46,-87v0,38,21,67,53,67v30,0,53,-28,53,-68v0,-30,-16,-66,-53,-66v-37,0,-53,34,-53,67xm86,-249r31,0r-40,48r-19,0xm138,-249r31,0r-40,48r-20,0","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u021a":14,"\u03a4":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\"":4,"'":4,"\u2019":12,"\u201d":12,",":9,".":9,"\u2026":9}},"\u014d":{"d":"184,-89v0,65,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92v50,0,84,36,84,89xm46,-87v0,38,21,67,53,67v30,0,53,-28,53,-68v0,-30,-16,-66,-53,-66v-37,0,-53,34,-53,67xm59,-231r81,0r0,20r-81,0r0,-20","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u021a":14,"\u03a4":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\"":4,"'":4,"\u2019":12,"\u201d":12,",":9,".":9,"\u2026":9}},"\u01ff":{"d":"14,-86v-2,-76,69,-113,130,-80r15,-22r14,10r-16,22v17,17,27,40,27,67v-2,83,-70,112,-129,81r-16,22r-13,-11r15,-22v-17,-15,-27,-38,-27,-67xm57,-43v26,-32,47,-68,72,-101v-56,-38,-112,43,-72,101xm141,-130v-26,31,-47,67,-72,100v55,39,110,-42,72,-100xm113,-249r35,0r-44,51r-22,0","w":197,"k":{"T":14,"\u0166":14,"\u0164":14,"\u021a":14,"\u03a4":14,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"z":3,"\u017e":3,"\u017a":3,"\u017c":3,"x":5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,"\"":4,"'":4,"\u2019":12,"\u201d":12,",":9,".":9,"\u2026":9}},"\u0155":{"d":"112,-148v-70,-8,-52,83,-54,148r-32,0r-1,-174r28,0v1,11,-1,25,2,34v10,-25,30,-42,57,-37r0,29xm78,-249r35,0r-44,51r-23,0","w":117,"k":{"\u0142":-1,"T":5,"\u0166":5,"\u0164":5,"\u021a":5,"\u03a4":5,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fd":2,"f":-11,"\u00df":-11,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"t":-9,"\u0167":-9,"\u0165":-9,"\u021b":-9,"v":-9,"w":-9,"y":-9,"\u00fd":-9,"\u00ff":-9,"\u1e83":-9,"\u0175":-9,"\u1e85":-9,"\u1e81":-9,"\u1ef3":-9,"z":-3,"\u017e":-3,"\u017a":-3,"\u017c":-3,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u012d":-1,"\u0133":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"\u0138":-1,"x":-6,":":-3,";":-3,"\u203a":-4,"\u00bb":-4,"\u00ab":2,"\u2039":2,"\u00ad":2,"\u2013":2,"\u2014":2,"\u2018":-7,"\u201c":-7,"\u2019":-11,"\u201d":-11,",":19,".":19,"\u2026":19}},"\u0159":{"d":"112,-148v-70,-8,-52,83,-54,148r-32,0r-1,-174r28,0v1,11,-1,25,2,34v10,-25,30,-42,57,-37r0,29xm77,-198r-23,0r-34,-51r24,0v8,11,13,24,22,34r21,-34r24,0","w":117,"k":{"\u0142":-1,"T":5,"\u0166":5,"\u0164":5,"\u021a":5,"\u03a4":5,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fd":2,"f":-11,"\u00df":-11,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"t":-9,"\u0167":-9,"\u0165":-9,"\u021b":-9,"v":-9,"w":-9,"y":-9,"\u00fd":-9,"\u00ff":-9,"\u1e83":-9,"\u0175":-9,"\u1e85":-9,"\u1e81":-9,"\u1ef3":-9,"z":-3,"\u017e":-3,"\u017a":-3,"\u017c":-3,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u012d":-1,"\u0133":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"\u0138":-1,"x":-6,":":-3,";":-3,"\u203a":-4,"\u00bb":-4,"\u00ab":2,"\u2039":2,"\u00ad":2,"\u2013":2,"\u2014":2,"\u2018":-7,"\u201c":-7,"\u2019":-11,"\u201d":-11,",":19,".":19,"\u2026":19}},"\u0157":{"d":"112,-148v-70,-8,-52,83,-54,148r-32,0r-1,-174r28,0v1,11,-1,25,2,34v10,-25,30,-42,57,-37r0,29xm22,80r-7,-15v27,0,35,-32,15,-45r24,-5v30,20,3,70,-32,65","w":117,"k":{"\u0142":-1,"T":5,"\u0166":5,"\u0164":5,"\u021a":5,"\u03a4":5,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fd":2,"f":-11,"\u00df":-11,"g":3,"\u011f":3,"\u011d":3,"\u0123":3,"\u0121":3,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"t":-9,"\u0167":-9,"\u0165":-9,"\u021b":-9,"v":-9,"w":-9,"y":-9,"\u00fd":-9,"\u00ff":-9,"\u1e83":-9,"\u0175":-9,"\u1e85":-9,"\u1e81":-9,"\u1ef3":-9,"z":-3,"\u017e":-3,"\u017a":-3,"\u017c":-3,"b":-1,"h":-1,"k":-1,"l":-1,"\u0127":-1,"\u0125":-1,"\u0137":-1,"\u013a":-1,"\u013e":-1,"\u013c":-1,"\u0140":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"\u0131":-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,"\u014b":-1,"\u012d":-1,"\u0133":-1,"\u012b":-1,"\u012f":-1,"\u0129":-1,"\u0144":-1,"\u0148":-1,"\u0146":-1,"\u0155":-1,"\u0159":-1,"\u0157":-1,"\u0138":-1,"x":-6,":":-3,";":-3,"\u203a":-4,"\u00bb":-4,"\u00ab":2,"\u2039":2,"\u00ad":2,"\u2013":2,"\u2014":2,"\u2018":-7,"\u201c":-7,"\u2019":-11,"\u201d":-11,",":19,".":19,"\u2026":19}},"\u015b":{"d":"14,-9r8,-23v18,15,76,19,76,-14v0,-15,-8,-25,-32,-32v-69,-20,-58,-98,13,-100v18,0,34,5,43,11r-8,22v-13,-12,-64,-16,-64,14v0,14,8,23,32,30v67,18,58,108,-19,105v-19,0,-37,-6,-49,-13xm88,-249r34,0r-44,51r-22,0","w":142,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"\u2019":6,"\u201d":6,",":4,".":4,"\u2026":4}},"\u015f":{"d":"14,-8r8,-24v18,16,76,18,76,-14v0,-15,-8,-25,-32,-32v-69,-20,-58,-98,13,-100v18,0,34,5,43,11r-8,22v-13,-12,-64,-16,-64,14v0,15,9,24,33,30v59,16,60,93,-1,103r-10,16v13,1,25,11,25,25v1,30,-40,35,-62,23r5,-16v11,6,35,10,35,-6v0,-10,-11,-14,-28,-15v3,-8,15,-20,13,-25v-14,0,-32,-4,-46,-12","w":142},"\uf6c2":{"d":"14,-8r8,-24v18,16,76,18,76,-14v0,-15,-8,-25,-32,-32v-69,-20,-58,-98,13,-100v18,0,34,5,43,11r-8,22v-13,-12,-64,-16,-64,14v0,15,9,24,33,30v59,16,60,93,-1,103r-10,16v13,1,25,11,25,25v1,30,-40,35,-62,23r5,-16v11,6,35,10,35,-6v0,-10,-11,-14,-28,-15v3,-8,15,-20,13,-25v-14,0,-32,-4,-46,-12","w":142,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"\u2019":6,"\u201d":6,",":4,".":4,"\u2026":4}},"\u015d":{"d":"14,-9r8,-23v18,15,76,19,76,-14v0,-15,-8,-25,-32,-32v-69,-20,-58,-98,13,-100v18,0,34,5,43,11r-8,22v-13,-12,-64,-16,-64,14v0,14,8,23,32,30v67,18,58,108,-19,105v-19,0,-37,-6,-49,-13xm61,-249r22,0r34,51r-24,0r-21,-34r-21,34r-24,0","w":142,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"\u2019":6,"\u201d":6,",":4,".":4,"\u2026":4}},"\u0219":{"d":"14,-9r8,-23v18,15,76,19,76,-14v0,-15,-8,-25,-32,-32v-69,-20,-58,-98,13,-100v18,0,34,5,43,11r-8,22v-13,-12,-64,-16,-64,14v0,14,8,23,32,30v67,18,58,108,-19,105v-19,0,-37,-6,-49,-13xm49,80r-6,-15v27,0,35,-32,15,-45r23,-5v30,20,3,70,-32,65","w":142,"k":{"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"\u2019":6,"\u201d":6,",":4,".":4,"\u2026":4}},"\u0167":{"d":"108,-1v-39,15,-81,-6,-75,-54r0,-34r-23,0r0,-20r23,0r0,-41r-27,0r0,-24r27,0r0,-32r31,-10r0,42r46,0r0,24r-46,0r0,41r36,0r0,20r-36,0v0,29,-5,69,24,66v9,0,14,-1,19,-2","w":119,"k":{"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0111":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"\u00ad":2,"\u2013":2,"\u2014":2,"\u2018":-3,"\u201c":-3,"\u2019":-8,"\u201d":-8}},"\u0165":{"d":"108,-1v-39,14,-75,-5,-75,-54r0,-95r-27,0r0,-24r27,0r0,-32r31,-10r0,42r46,0r0,24r-46,0r0,93v-3,30,18,39,43,32xm100,-195r-10,-12v13,-8,20,-37,3,-48r23,-5v26,14,3,65,-16,65","w":122,"k":{"\u201d":-8,"\u2019":-8,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0111":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"\u00ad":2,"\u2013":2,"\u2014":2,"\u2018":-3,"\u201c":-3}},"\u0163":{"d":"108,-1v-39,14,-75,-5,-75,-54r0,-95r-27,0r0,-24r27,0r0,-32r31,-10r0,42r46,0r0,24r-46,0r0,93v-3,31,19,38,43,32xm44,82r-6,-15v27,0,35,-32,15,-45r23,-5v30,20,3,70,-32,65","w":119},"\u021b":{"d":"108,-1v-39,14,-75,-5,-75,-54r0,-95r-27,0r0,-24r27,0r0,-32r31,-10r0,42r46,0r0,24r-46,0r0,93v-3,31,19,38,43,32xm44,82r-6,-15v27,0,35,-32,15,-45r23,-5v30,20,3,70,-32,65","w":119,"k":{"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":2,"d":2,"e":2,"o":2,"q":2,"\u00f8":2,"\u0153":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"\u0107":2,"\u010d":2,"\u0109":2,"\u010b":2,"\u010f":2,"\u0111":2,"\u0115":2,"\u011b":2,"\u0117":2,"\u0113":2,"\u0119":2,"\u014f":2,"\u0151":2,"\u014d":2,"\u01ff":2,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"\u00ad":2,"\u2013":2,"\u2014":2,"\u2018":-3,"\u201c":-3,"\u2019":-8,"\u201d":-8}},"\u016d":{"d":"96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v4,57,-19,152,39,152xm55,-246r18,0v2,14,11,25,26,25v17,0,25,-13,26,-25r19,0v0,27,-18,45,-45,45v-32,0,-44,-22,-44,-45","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"\u2019":8,"\u201d":8,",":3,".":3,"\u2026":3}},"\u0171":{"d":"96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v4,57,-19,152,39,152xm89,-249r31,0r-40,48r-20,0xm141,-249r31,0r-40,48r-20,0","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"\u2019":8,"\u201d":8,",":3,".":3,"\u2026":3}},"\u016b":{"d":"96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v4,57,-19,152,39,152xm59,-231r81,0r0,20r-81,0r0,-20","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"\u2019":8,"\u201d":8,",":3,".":3,"\u2026":3}},"\u0173":{"d":"96,-22v64,0,40,-91,44,-152r32,0r2,174v-16,-4,-21,21,-23,34v-2,19,22,23,35,15r5,17v-23,14,-63,11,-63,-23v0,-28,26,-41,15,-71v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v4,57,-19,152,39,152","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"\u2019":8,"\u201d":8,",":3,".":3,"\u2026":3}},"\u016f":{"d":"96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v4,57,-19,152,39,152xm100,-260v22,0,36,15,36,34v0,19,-15,33,-36,33v-22,0,-37,-15,-37,-33v0,-19,15,-34,37,-34xm99,-247v-11,0,-18,10,-18,21v0,10,7,19,18,19v12,0,19,-9,19,-20v0,-11,-7,-20,-19,-20","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"\u2019":8,"\u201d":8,",":3,".":3,"\u2026":3}},"\u0169":{"d":"96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v4,57,-19,152,39,152xm144,-243v3,51,-39,36,-62,23v-6,0,-9,6,-10,16r-17,0v-1,-23,10,-38,25,-38v17,0,43,33,47,-1r17,0","w":198,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"\u2019":8,"\u201d":8,",":3,".":3,"\u2026":3}},"\u1e83":{"d":"6,-174r33,0r37,144v11,-49,29,-97,44,-144r27,0r43,144v8,-48,26,-98,38,-144r32,0r-57,174r-28,0r-43,-141v-11,51,-29,94,-44,141r-29,0xm148,-249r35,0r-44,51r-23,0","w":264,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"\u1ef3":-4,":":-9,";":-9,"\u00ad":1,"\u2013":1,"\u2014":1,"\u2018":-10,"\u201c":-10,"\u2019":-11,"\u201d":-11,",":14,".":14,"\u2026":14}},"\u0175":{"d":"6,-174r33,0r37,144v11,-49,29,-97,44,-144r27,0r43,144v8,-48,26,-98,38,-144r32,0r-57,174r-28,0r-43,-141v-11,51,-29,94,-44,141r-29,0xm121,-249r22,0r35,51r-24,0v-8,-11,-13,-24,-22,-34r-21,34r-24,0","w":264,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"\u1ef3":-4,":":-9,";":-9,"\u00ad":1,"\u2013":1,"\u2014":1,"\u2018":-10,"\u201c":-10,"\u2019":-11,"\u201d":-11,",":14,".":14,"\u2026":14}},"\u1e85":{"d":"6,-174r33,0r37,144v11,-49,29,-97,44,-144r27,0r43,144v8,-48,26,-98,38,-144r32,0r-57,174r-28,0r-43,-141v-11,51,-29,94,-44,141r-29,0xm99,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19xm166,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19","w":264,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"\u1ef3":-4,":":-9,";":-9,"\u00ad":1,"\u2013":1,"\u2014":1,"\u2018":-10,"\u201c":-10,"\u2019":-11,"\u201d":-11,",":14,".":14,"\u2026":14}},"\u1e81":{"d":"6,-174r33,0r37,144v11,-49,29,-97,44,-144r27,0r43,144v8,-48,26,-98,38,-144r32,0r-57,174r-28,0r-43,-141v-11,51,-29,94,-44,141r-29,0xm85,-249r35,0r32,51r-23,0","w":264,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"\u1ef3":-4,":":-9,";":-9,"\u00ad":1,"\u2013":1,"\u2014":1,"\u2018":-10,"\u201c":-10,"\u2019":-11,"\u201d":-11,",":14,".":14,"\u2026":14}},"\u0177":{"d":"13,53v25,-9,45,-29,57,-58r-67,-169r35,0r50,138r46,-138r33,0v-41,86,-59,232,-146,253xm75,-249r21,0r35,51r-24,0v-8,-11,-13,-24,-22,-34r-21,34r-23,0","w":169},"\u1ef3":{"d":"13,53v25,-9,45,-29,57,-58r-67,-169r35,0r50,138r46,-138r33,0v-41,86,-59,232,-146,253xm39,-249r34,0r32,51r-22,0","w":169,"k":{"T":11,"\u0166":11,"\u0164":11,"\u021a":11,"\u03a4":11,"a":1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,"\u0103":1,"\u0101":1,"\u0105":1,"\u01fd":1,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"v":-4,"w":-4,"y":-4,"\u00fd":-4,"\u00ff":-4,"\u1e83":-4,"\u0175":-4,"\u1e85":-4,"\u1e81":-4,"\u1ef3":-4,":":-9,";":-9,"\u00ad":1,"\u2013":1,"\u2014":1,"\u2018":-10,"\u201c":-10,"\u2019":-11,"\u201d":-11,",":14,".":14,"\u2026":14}},"\u017a":{"d":"6,0r0,-18r102,-131r-94,0r0,-25r133,0r0,20r-101,129r102,0r0,25r-142,0xm94,-249r35,0r-44,51r-23,0","w":154,"k":{"T":7,"\u0166":7,"\u0164":7,"\u021a":7,"\u03a4":7,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0111":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"v":-9,"w":-9,"y":-9,"\u00fd":-9,"\u00ff":-9,"\u1e83":-9,"\u0175":-9,"\u1e85":-9,"\u1e81":-9,"\u1ef3":-9,"\u203a":-6,"\u00bb":-6,"\u2019":-10,"\u201d":-10}},"\u017c":{"d":"6,0r0,-18r102,-131r-94,0r0,-25r133,0r0,20r-101,129r102,0r0,25r-142,0xm78,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19","w":154,"k":{"T":7,"\u0166":7,"\u0164":7,"\u021a":7,"\u03a4":7,"c":3,"d":3,"e":3,"o":3,"q":3,"\u00f8":3,"\u0153":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u0107":3,"\u010d":3,"\u0109":3,"\u010b":3,"\u010f":3,"\u0111":3,"\u0115":3,"\u011b":3,"\u0117":3,"\u0113":3,"\u0119":3,"\u014f":3,"\u0151":3,"\u014d":3,"\u01ff":3,"v":-9,"w":-9,"y":-9,"\u00fd":-9,"\u00ff":-9,"\u1e83":-9,"\u0175":-9,"\u1e85":-9,"\u1e81":-9,"\u1ef3":-9,"\u203a":-6,"\u00bb":-6,"\u2019":-10,"\u201d":-10}},"\u0138":{"d":"58,-174v1,26,-2,56,1,80v20,-28,44,-53,66,-80r38,0r-67,71r76,103r-38,0r-60,-84r-16,18r0,66r-32,0r0,-174r32,0","w":168,"k":{"T":7,"\u0166":7,"\u0164":7,"\u021a":7,"\u03a4":7,"a":-6,"\u00e6":-6,"\u00e1":-6,"\u00e2":-6,"\u00e4":-6,"\u00e0":-6,"\u00e5":-6,"\u00e3":-6,"\u0103":-6,"\u0101":-6,"\u0105":-6,"\u01fd":-6,"u":-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1,"\u016d":-1,"\u0171":-1,"\u016b":-1,"\u0173":-1,"\u016f":-1,"\u0169":-1,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"b":-6,"h":-6,"k":-6,"l":-6,"\u0142":-6,"\u0127":-6,"\u0125":-6,"\u0137":-6,"\u013a":-6,"\u013e":-6,"\u013c":-6,"\u0140":-6,"i":-6,"m":-6,"n":-6,"p":-6,"r":-6,"\u0131":-6,"\u00ed":-6,"\u00ee":-6,"\u00ef":-6,"\u00ec":-6,"\u00f1":-6,"\u014b":-6,"\u012d":-6,"\u0133":-6,"\u012b":-6,"\u012f":-6,"\u0129":-6,"\u0144":-6,"\u0148":-6,"\u0146":-6,"\u0155":-6,"\u0159":-6,"\u0157":-6,"\u0138":-6,":":-4,";":-4,"\u00ad":4,"\u2013":4,"\u2014":4,"\u2019":-9,"\u201d":-9,",":-5,".":-5,"\u2026":-5}},"\u0149":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r-1,-174r28,0r2,28v27,-44,120,-54,120,42r0,104r-32,0v-6,-59,22,-152,-40,-152xm20,-193r-14,-10v12,-10,21,-40,3,-51r23,-6v6,4,12,13,12,26v0,24,-18,36,-24,41","w":199,"k":{"T":18,"\u0166":18,"\u0164":18,"\u021a":18,"\u03a4":18,"t":1,"\u0167":1,"\u0165":1,"\u021b":1,"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,"\u1e83":5,"\u0175":5,"\u1e85":5,"\u1e81":5,"\u1ef3":5,"\"":3,"'":3,"\u2019":12,"\u201d":12}},"\u0384":{"d":"49,-250r32,0r-30,52r-21,0"},"\u0385":{"d":"55,-256r27,0r-18,57r-17,0xm18,-206v-10,0,-17,-9,-17,-18v0,-9,8,-16,18,-16v9,0,16,7,16,16v0,9,-7,18,-17,18xm105,-206v-9,0,-16,-9,-16,-18v0,-9,7,-16,16,-16v9,0,17,7,17,16v0,9,-7,18,-17,18","w":124},"\u0391":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-8,39,-24,77,-36,114","w":220,"k":{"\u03c2":4,"\u03be":1,"\u03bd":9,"\u03b4":4,"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"\u03a4":28,"J":-7,"\u0134":-7,"M":1,"\u039c":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u0398":5,"\u039f":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"V":19,"W":19,"\u1e82":19,"\u0174":19,"\u1e84":19,"\u1e80":19,"X":5,"\u03a7":5,"Y":28,"\u00dd":28,"\u0178":28,"\u1ef2":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"j":1,"\u0135":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u1e83":8,"\u0175":8,"\u1e85":8,"\u1e81":8,"\u1ef3":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,")":3,"]":3,"}":3,"\"":21,"'":21,"\u2018":22,"\u201c":22,"\u2019":18,"\u201d":18,"\ue000":-4,"\u2126":-1,"\u03a6":8,"\u03a8":26,"\u03a5":36,"\u03ab":36,"\u03c7":10,"\u03b5":-3,"\u03ad":-3,"\u03b3":9,"\u03bb":-4,"\u03b1":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c1":5,"\u03c4":9,"\u03b8":4,"\u03c5":4,"\u03c8":4,"\u03cd":4,"\u03cb":4,"\u03b0":4,"\u03b6":1}},"\u0392":{"d":"180,-69v0,70,-85,76,-153,68r0,-238v57,-10,144,-11,144,55v0,25,-18,43,-41,54v23,5,50,25,50,61xm59,-218r0,78v42,4,80,-8,80,-41v0,-38,-46,-43,-80,-37xm59,-116r0,92v40,6,89,-1,88,-45v0,-42,-42,-50,-88,-47","w":195,"k":{"\u03b4":-1,"T":3,"\u0166":3,"\u0164":3,"\u021a":3,"\u03a4":3,"V":-1,"W":-1,"\u1e82":-1,"\u0174":-1,"\u1e84":-1,"\u1e80":-1,"Y":5,"\u00dd":5,"\u0178":5,"\u1ef2":5,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u1e83":-1,"\u0175":-1,"\u1e85":-1,"\u1e81":-1,"\u1ef3":-1,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u2019":-3,"\u201d":-3,",":5,".":5,"\u2026":5,"\u03a8":4,"\u03a5":6,"\u03ab":6,"\u03b5":-1,"\u03ad":-1,"\u03b3":-4,"\u03bd":-4}},"\u0393":{"d":"27,-243r130,0r0,27r-98,0r0,216r-32,0r0,-243","w":162,"k":{"\u03b0":18,"\u0390":19,"\u03cb":18,"\u03ca":19,"\u03b4":30,"\u03b2":19,"T":-7,"\u0166":-7,"\u0164":-7,"\u021a":-7,"\u03a4":-7,"M":6,"\u039c":6,"C":13,"G":13,"O":13,"Q":13,"\u00d8":13,"\u0152":13,"\u00c7":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"\u0106":13,"\u010c":13,"\u0108":13,"\u010a":13,"\u011e":13,"\u011c":13,"\u0122":13,"\u0120":13,"\u014e":13,"\u0150":13,"\u014c":13,"\u01fe":13,"\u0398":13,"\u039f":13,"X":-1,"\u03a7":-1,"A":42,"\u00c6":42,"\u00c1":42,"\u00c2":42,"\u00c4":42,"\u00c0":42,"\u00c5":42,"\u00c3":42,"\u0102":42,"\u0100":42,"\u0104":42,"\u01fc":42,"\u0391":42,"\u039b":42,":":18,";":18,"\u203a":22,"\u00bb":22,"\u00ad":24,"\u2013":24,"\u2014":24,")":-5,"]":-5,"}":-5,"\"":-3,"'":-3,"\u2019":1,"\u201d":1,",":43,".":43,"\u2026":43,"\ue000":41,"\u2126":11,"\u03a6":14,"\u03a8":-4,"\u03a5":-5,"\u03ab":-5,"\u03a3":-4,"\u03b5":29,"\u03ad":29,"\u03b3":15,"\u03bd":15,"\u03b1":30,"\u03bf":30,"\u03c3":30,"\u03c6":30,"\u03ac":30,"\u03cc":30,"\u03c2":30,"\u03c1":39,"\u03c5":18,"\u03c8":18,"\u03cd":18,"\u00b5":19,"\u03b7":19,"\u03ba":19,"\u03ae":19,"\u03b9":19,"\u03af":19}},"\u0394":{"d":"9,0r0,-18r85,-225r35,0r84,225r0,18r-204,0xm43,-26r135,0r-67,-188r-2,0v-17,63,-45,127,-66,188","w":223,"k":{"\u03be":-1}},"\ue000":{"d":"9,0r0,-18r85,-225r35,0r84,225r0,18r-204,0xm43,-26r135,0r-67,-188r-2,0v-17,63,-45,127,-66,188","w":223,"k":{"T":27,"\u0166":27,"\u0164":27,"\u021a":27,"\u03a4":27,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u0398":5,"\u039f":5,"A":-2,"\u00c6":-2,"\u00c1":-2,"\u00c2":-2,"\u00c4":-2,"\u00c0":-2,"\u00c5":-2,"\u00c3":-2,"\u0102":-2,"\u0100":-2,"\u0104":-2,"\u01fc":-2,"\u0391":-2,"\u039b":-2,":":-2,";":-2,")":8,"]":8,"}":8,"\"":30,"'":30,"\u2019":22,"\u201d":22,",":-2,".":-2,"\u2026":-2,"\ue000":-3,"\u03a6":6,"\u03a8":26,"\u03a5":33,"\u03ab":33,"\u03c7":10,"\u03b5":-6,"\u03ad":-6,"\u03b3":7,"\u03bd":7,"\u03bb":-6,"\u03c1":-1,"\u03c4":5,"\u03c5":2,"\u03c8":2,"\u03cd":2,"\u03cb":2,"\u03b0":2,"\u03b6":-2,"\u03be":-2,"\u03c0":-4}},"\u0395":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0","w":177,"k":{"\u0390":-15,"\u03ca":-9,"\u03be":1,"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0111":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,",":1,".":1,"\u2026":1,"\ue000":-4,"\u039e":-3,"\u03b5":-6,"\u03ad":-6,"\u03bb":-4,"\u03c4":-4,"\u03c0":-5}},"\u0396":{"d":"11,0r0,-18r134,-198r-123,0r0,-27r164,0r0,19r-134,198r136,0r0,26r-177,0","w":199,"k":{"J":-3,"\u0134":-3,"C":8,"G":8,"O":8,"Q":8,"\u00d8":8,"\u0152":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"\u0106":8,"\u010c":8,"\u0108":8,"\u010a":8,"\u011e":8,"\u011c":8,"\u0122":8,"\u0120":8,"\u014e":8,"\u0150":8,"\u014c":8,"\u01fe":8,"\u0398":8,"\u039f":8,"X":2,"\u03a7":2,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,"\u00ad":10,"\u2013":10,"\u2014":10,"\u2018":2,"\u201c":2,"\u03a5":-3,"\u03ab":-3,"\u039e":-2,"\u03a3":3,"\u03bb":-4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4}},"\u0397":{"d":"27,-243r32,0r0,102r117,0r0,-102r32,0r0,243r-32,0r0,-114r-117,0r0,114r-32,0r0,-243","w":234,"k":{"\u0390":-11,"\u03ca":-5,"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u0398":{"d":"235,-123v0,83,-50,127,-113,127v-64,0,-109,-50,-109,-123v0,-77,48,-128,113,-128v66,0,109,52,109,124xm46,-120v0,51,28,99,78,98v50,0,78,-45,78,-100v0,-48,-25,-99,-78,-99v-52,0,-78,48,-78,101xm75,-138r98,0r0,26r-98,0r0,-26","w":248,"k":{"\u03be":-3,"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03c0":-4}},"\u0399":{"d":"27,-243r32,0r0,243r-32,0r0,-243","w":86,"k":{"\u0390":-11,"\u03ca":-5,"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u039a":{"d":"27,0r0,-243r32,0r1,117v29,-41,62,-78,93,-117r39,0r-88,103r95,140r-37,0r-80,-119r-23,26r0,93r-32,0","w":195,"k":{"\u03c2":1,"\u03b0":6,"\u0390":-23,"\u03ca":-15,"\u03b2":-2,"T":-8,"\u0166":-8,"\u0164":-8,"\u021a":-8,"\u03a4":-8,"J":-14,"\u0134":-14,"C":6,"G":6,"O":6,"Q":6,"\u00d8":6,"\u0152":6,"\u00c7":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"\u0106":6,"\u010c":6,"\u0108":6,"\u010a":6,"\u011e":6,"\u011c":6,"\u0122":6,"\u0120":6,"\u014e":6,"\u0150":6,"\u014c":6,"\u01fe":6,"\u0398":6,"\u039f":6,"V":-5,"W":-5,"\u1e82":-5,"\u0174":-5,"\u1e84":-5,"\u1e80":-5,"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"A":-4,"\u00c6":-4,"\u00c1":-4,"\u00c2":-4,"\u00c4":-4,"\u00c0":-4,"\u00c5":-4,"\u00c3":-4,"\u0102":-4,"\u0100":-4,"\u0104":-4,"\u01fc":-4,"\u0391":-4,"\u039b":-4,"Z":-7,"\u017d":-7,"\u0179":-7,"\u017b":-7,"\u0396":-7,"a":-6,"\u00e6":-6,"\u00e1":-6,"\u00e2":-6,"\u00e4":-6,"\u00e0":-6,"\u00e5":-6,"\u00e3":-6,"\u0103":-6,"\u0101":-6,"\u0105":-6,"\u01fd":-6,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"u":2,"\u00fa":2,"\u00fb":2,"\u00fc":2,"\u00f9":2,"\u016d":2,"\u0171":2,"\u016b":2,"\u0173":2,"\u016f":2,"\u0169":2,"v":6,"w":6,"y":6,"\u00fd":6,"\u00ff":6,"\u1e83":6,"\u0175":6,"\u1e85":6,"\u1e81":6,"\u1ef3":6,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,":":-8,";":-8,"\u00ab":2,"\u2039":2,"\u00ad":6,"\u2013":6,"\u2014":6,")":-8,"]":-8,"}":-8,"\u2018":1,"\u201c":1,"\u2019":-3,"\u201d":-3,",":-6,".":-6,"\u2026":-6,"\ue000":-4,"\u2126":-5,"\u03a6":10,"\u039e":-9,"\u03a3":-9,"\u03b5":-7,"\u03ad":-7,"\u03b3":5,"\u03bd":5,"\u03bb":-6,"\u03c4":5,"\u03c5":6,"\u03c8":6,"\u03cd":6,"\u03cb":6,"\u00b5":-2,"\u03b7":-2,"\u03ba":-2,"\u03ae":-2}},"\u039b":{"d":"212,0r-33,0r-57,-167v-6,-16,-6,-33,-13,-46v-18,74,-45,142,-67,213r-33,0r83,-243r37,0","w":219,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"\u03a4":28,"J":-7,"\u0134":-7,"M":1,"\u039c":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u0398":5,"\u039f":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"V":19,"W":19,"\u1e82":19,"\u0174":19,"\u1e84":19,"\u1e80":19,"X":5,"\u03a7":5,"Y":28,"\u00dd":28,"\u0178":28,"\u1ef2":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"j":1,"\u0135":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u1e83":8,"\u0175":8,"\u1e85":8,"\u1e81":8,"\u1ef3":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,")":3,"]":3,"}":3,"\"":21,"'":21,"\u2018":22,"\u201c":22,"\u2019":18,"\u201d":18,"\ue000":-4,"\u2126":-1,"\u03a6":8,"\u03a8":26,"\u03a5":36,"\u03ab":36,"\u03c7":10,"\u03b5":-3,"\u03ad":-3,"\u03b3":9,"\u03bd":9,"\u03bb":-4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4,"\u03c1":5,"\u03c4":9,"\u03b8":4,"\u03c5":4,"\u03c8":4,"\u03cd":4,"\u03cb":4,"\u03b0":4,"\u03b6":1,"\u03be":1}},"\u039c":{"d":"238,0r-11,-211v-9,28,-18,59,-30,92r-43,118r-24,0r-40,-116v-13,-33,-18,-67,-28,-94r-11,211r-30,0r17,-243r40,0r41,118v10,30,19,57,25,82v17,-63,47,-137,69,-200r40,0r16,243r-31,0","w":289,"k":{"T":4,"\u0166":4,"\u0164":4,"\u021a":4,"\u03a4":4,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4,"\u0102":4,"\u0100":4,"\u0104":4,"\u01fc":4,"\u0391":4,"\u039b":4,"a":-2,"\u00e6":-2,"\u00e1":-2,"\u00e2":-2,"\u00e4":-2,"\u00e0":-2,"\u00e5":-2,"\u00e3":-2,"\u0103":-2,"\u0101":-2,"\u0105":-2,"\u01fd":-2,"j":-4,"\u0135":-4,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"\u00f8":-2,"\u0153":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,"\u0107":-2,"\u010d":-2,"\u0109":-2,"\u010b":-2,"\u010f":-2,"\u0111":-2,"\u0115":-2,"\u011b":-2,"\u0117":-2,"\u0113":-2,"\u0119":-2,"\u014f":-2,"\u0151":-2,"\u014d":-2,"\u01ff":-2,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u2018":1,"\u201c":1,"\u2019":2,"\u201d":2,"\u03a8":4,"\u03a5":8,"\u03ab":8,"\u03c0":-3,"\u00b5":-1,"\u03b2":-1,"\u03b7":-1,"\u03ba":-1,"\u03ae":-1}},"\u039d":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,28,32,56,45,79v-6,-61,-3,-134,-4,-202r30,0r0,243r-32,0r-77,-123v-18,-27,-32,-57,-46,-81","w":236,"k":{"\u0390":-11,"\u03ca":-5,"\u03c1":2,"\u03bf":2,"\u03b4":2,"\u0391":5,"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u039e":{"d":"19,-243r159,0r0,26r-159,0r0,-26xm31,-139r135,0r0,26r-135,0r0,-26xm15,-26r167,0r0,26r-167,0r0,-26","w":194,"k":{"\u0390":-19,"\u03ca":-14,"\u03b9":-3,"\u03b7":-4,"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0111":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,",":1,".":1,"\u2026":1,"\ue000":-4,"\u039e":-3,"\u03b5":-6,"\u03ad":-6,"\u03bb":-4,"\u03c4":-4,"\u03c0":-5}},"\u039f":{"d":"122,4v-64,0,-109,-50,-109,-123v0,-77,47,-128,112,-128v67,0,110,51,110,123v0,83,-51,128,-113,128xm46,-120v0,51,28,99,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99v-52,0,-78,48,-78,101","w":248,"k":{"\u03be":-3,"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03c0":-4}},"\u03a0":{"d":"201,-243r0,243r-32,0r0,-216r-110,0r0,216r-32,0r0,-243r174,0","w":228,"k":{"\u0390":-11,"\u03ca":-5,"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u03a1":{"d":"177,-174v0,61,-57,88,-118,76r0,98r-32,0r0,-239v62,-12,150,-6,150,65xm59,-217r0,94v44,9,86,-7,86,-49v0,-43,-48,-54,-86,-45","w":191,"k":{"\u0390":4,"\u03ca":4,"\u0127":2,"J":27,"\u0134":27,"M":4,"\u039c":4,"X":5,"\u03a7":5,"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"A":30,"\u00c6":30,"\u00c1":30,"\u00c2":30,"\u00c4":30,"\u00c0":30,"\u00c5":30,"\u00c3":30,"\u0102":30,"\u0100":30,"\u0104":30,"\u01fc":30,"\u0391":30,"\u039b":30,"Z":11,"\u017d":11,"\u0179":11,"\u017b":11,"\u0396":11,"a":9,"\u00e6":9,"\u00e1":9,"\u00e2":9,"\u00e4":9,"\u00e0":9,"\u00e5":9,"\u00e3":9,"\u0103":9,"\u0101":9,"\u0105":9,"\u01fd":9,"g":9,"\u011f":9,"\u011d":9,"\u0123":9,"\u0121":9,"c":9,"d":9,"e":9,"o":9,"q":9,"\u00f8":9,"\u0153":9,"\u00e7":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,"\u0107":9,"\u010d":9,"\u0109":9,"\u010b":9,"\u010f":9,"\u0111":9,"\u0115":9,"\u011b":9,"\u0117":9,"\u0113":9,"\u0119":9,"\u014f":9,"\u0151":9,"\u014d":9,"\u01ff":9,"s":8,"\u0161":8,"\u015b":8,"\uf6c2":8,"\u015d":8,"\u0219":8,"t":-2,"\u0167":-2,"\u0165":-2,"\u021b":-2,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"\u016d":5,"\u0171":5,"\u016b":5,"\u0173":5,"\u016f":5,"\u0169":5,"v":-1,"w":-1,"y":-1,"\u00fd":-1,"\u00ff":-1,"\u1e83":-1,"\u0175":-1,"\u1e85":-1,"\u1e81":-1,"\u1ef3":-1,"b":2,"h":2,"k":2,"l":2,"\u0142":2,"\u0125":2,"\u0137":2,"\u013a":2,"\u013e":2,"\u013c":2,"\u0140":2,"i":6,"m":6,"n":6,"p":6,"r":6,"\u0131":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"\u00f1":6,"\u014b":6,"\u012d":6,"\u0133":6,"\u012b":6,"\u012f":6,"\u0129":6,"\u0144":6,"\u0148":6,"\u0146":6,"\u0155":6,"\u0159":6,"\u0157":6,"\u0138":6,":":4,";":4,"\u00ab":8,"\u2039":8,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2018":-2,"\u201c":-2,"\u2019":-8,"\u201d":-8,",":50,".":50,"\u2026":50,"\ue000":31,"\u03a8":-2,"\u03a5":2,"\u03ab":2,"\u03b5":9,"\u03ad":9,"\u03b1":9,"\u03b4":9,"\u03bf":9,"\u03c3":9,"\u03c6":9,"\u03ac":9,"\u03cc":9,"\u03c2":9,"\u03c5":4,"\u03c8":4,"\u03cd":4,"\u03cb":4,"\u03b0":4,"\u00b5":4,"\u03b2":4,"\u03b7":4,"\u03ba":4,"\u03ae":4,"\u03b9":4,"\u03af":4}},"\u03a3":{"d":"129,-122r-79,96r139,0r0,26r-180,0r0,-19r85,-102r-80,-100r0,-22r163,0r0,27r-123,1","w":198,"k":{"\u0390":1,"\u03ca":1,"\u03c7":2,"\u03b4":7,"\u03aa":-2,"C":14,"G":14,"O":14,"Q":14,"\u00d8":14,"\u0152":14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"\u0106":14,"\u010c":14,"\u0108":14,"\u010a":14,"\u011e":14,"\u011c":14,"\u0122":14,"\u0120":14,"\u014e":14,"\u0150":14,"\u014c":14,"\u01fe":14,"\u0398":14,"\u039f":14,":":-4,";":-4,"\u203a":1,"\u00bb":1,"\u00ad":12,"\u2013":12,"\u2014":12,"\"":5,"'":5,"\u2019":13,"\u201d":13,",":-4,".":-4,"\u2026":-4,"\u03b3":8,"\u03bd":8,"\u03bb":-2,"\u03b1":7,"\u03bf":7,"\u03c3":7,"\u03c6":7,"\u03ac":7,"\u03cc":7,"\u03c2":7,"\u03c1":3,"\u03c4":6,"\u03c5":4,"\u03c8":4,"\u03cd":4,"\u03cb":4,"\u03b0":4,"\u03b9":1,"\u03af":1}},"\u03a4":{"d":"73,0r0,-216r-73,0r0,-27r179,0r0,27r-74,0r0,216r-32,0","w":178,"k":{"\u03b0":14,"\u0390":12,"\u03cb":14,"\u03ca":12,"\u03b4":22,"\u03a3":-2,"\u0129":16,"\u012f":16,"\u012b":16,"\u0133":16,"\u012d":16,"\u00ec":16,"\u00ef":16,"\u00ee":16,"\u00ed":16,"\u00e8":26,"\u00e0":23,"\u0131":16,"i":16,"T":-14,"\u0166":-14,"\u0164":-14,"\u021a":-14,"\u03a4":-14,"J":15,"\u0134":15,"C":10,"G":10,"O":10,"Q":10,"\u00d8":10,"\u0152":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"\u0106":10,"\u010c":10,"\u0108":10,"\u010a":10,"\u011e":10,"\u011c":10,"\u0122":10,"\u0120":10,"\u014e":10,"\u0150":10,"\u014c":10,"\u01fe":10,"\u0398":10,"\u039f":10,"V":-14,"W":-14,"\u1e82":-14,"\u0174":-14,"\u1e84":-14,"\u1e80":-14,"X":-8,"\u03a7":-8,"Y":-10,"\u00dd":-10,"\u0178":-10,"\u1ef2":-10,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"\u0102":27,"\u0100":27,"\u0104":27,"\u01fc":27,"\u0391":27,"\u039b":27,"S":2,"\u0160":2,"\u015a":2,"\uf6c1":2,"\u015c":2,"\u0218":2,"a":23,"\u00e6":23,"\u00e1":23,"\u00e2":23,"\u00e4":23,"\u00e5":23,"\u00e3":23,"\u0103":23,"\u0101":23,"\u0105":23,"\u01fd":23,"g":23,"\u011f":23,"\u011d":23,"\u0123":23,"\u0121":23,"c":26,"d":26,"e":26,"o":26,"q":26,"\u00f8":26,"\u0153":26,"\u00e7":26,"\u00e9":26,"\u00ea":26,"\u00eb":26,"\u00f3":26,"\u00f4":26,"\u00f6":26,"\u00f2":26,"\u00f5":26,"\u0107":26,"\u010d":26,"\u0109":26,"\u010b":26,"\u010f":26,"\u0111":26,"\u0115":26,"\u011b":26,"\u0117":26,"\u0113":26,"\u0119":26,"\u014f":26,"\u0151":26,"\u014d":26,"\u01ff":26,"s":19,"\u0161":19,"\u015b":19,"\uf6c2":19,"\u015d":19,"\u0219":19,"u":16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u00f9":16,"\u016d":16,"\u0171":16,"\u016b":16,"\u0173":16,"\u016f":16,"\u0169":16,"v":14,"w":14,"y":14,"\u00fd":14,"\u00ff":14,"\u1e83":14,"\u0175":14,"\u1e85":14,"\u1e81":14,"\u1ef3":14,"z":18,"\u017e":18,"\u017a":18,"\u017c":18,"b":3,"h":3,"k":3,"l":3,"\u0142":3,"\u0127":3,"\u0125":3,"\u0137":3,"\u013a":3,"\u013e":3,"\u013c":3,"\u0140":3,"m":16,"n":16,"p":16,"r":16,"\u00f1":16,"\u014b":16,"\u0144":16,"\u0148":16,"\u0146":16,"\u0155":16,"\u0159":16,"\u0157":16,"\u0138":16,"x":12,":":9,";":9,"\u203a":13,"\u00bb":13,"\u00ab":18,"\u2039":18,"\u00ad":18,"\u2013":18,"\u2014":18,")":-22,"]":-22,"}":-22,"\"":-6,"'":-6,"\u2019":-12,"\u201d":-12,",":22,".":22,"\u2026":22,"\ue000":25,"\u2126":9,"\u03a6":14,"\u03a8":-3,"\u03a5":-4,"\u03ab":-4,"\u03b5":16,"\u03ad":16,"\u03bb":-3,"\u03b1":22,"\u03bf":22,"\u03c3":22,"\u03c6":22,"\u03ac":22,"\u03cc":22,"\u03c2":22,"\u03c1":24,"\u03c5":14,"\u03c8":14,"\u03cd":14,"\u03b6":4,"\u03be":4,"\u00b5":12,"\u03b2":12,"\u03b7":12,"\u03ba":12,"\u03ae":12,"\u03b9":12,"\u03af":12,"\u03c9":17,"\u03ce":17}},"\u03a5":{"d":"89,0v11,-101,-27,-213,-85,-219r5,-26v54,6,88,64,99,122v10,-63,49,-107,97,-122r5,26v-34,9,-92,77,-89,157r0,62r-32,0","w":211,"k":{"\u03b0":13,"\u0390":12,"\u03ca":12,"\u03bb":2,"\u03b4":28,"\u03b2":13,"T":-4,"\u0166":-4,"\u0164":-4,"\u021a":-4,"\u03a4":-4,"M":7,"\u039c":7,"C":12,"G":12,"O":12,"Q":12,"\u00d8":12,"\u0152":12,"\u00c7":12,"\u00d3":12,"\u00d4":12,"\u00d6":12,"\u00d2":12,"\u00d5":12,"\u0106":12,"\u010c":12,"\u0108":12,"\u010a":12,"\u011e":12,"\u011c":12,"\u0122":12,"\u0120":12,"\u014e":12,"\u0150":12,"\u014c":12,"\u01fe":12,"\u0398":12,"\u039f":12,"X":2,"\u03a7":2,"A":37,"\u00c6":37,"\u00c1":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,"\u00c5":37,"\u00c3":37,"\u0102":37,"\u0100":37,"\u0104":37,"\u01fc":37,"\u0391":37,"\u039b":37,":":14,";":14,"\u203a":12,"\u00bb":12,"\u00ad":19,"\u2013":19,"\u2014":19,")":-4,"]":-4,"}":-4,",":36,".":36,"\u2026":36,"\ue000":35,"\u2126":8,"\u03a6":12,"\u03a8":-3,"\u03a5":-2,"\u03ab":-2,"\u03b5":23,"\u03ad":23,"\u03b3":7,"\u03bd":7,"\u03b1":28,"\u03bf":28,"\u03c3":28,"\u03c6":28,"\u03ac":28,"\u03cc":28,"\u03c2":28,"\u03c1":33,"\u03c5":13,"\u03c8":13,"\u03cd":13,"\u03cb":13,"\u03c0":5,"\u00b5":13,"\u03b7":13,"\u03ba":13,"\u03ae":13,"\u03b9":12,"\u03af":12}},"\u03a6":{"d":"144,-9r0,18r-30,0r0,-18v-49,-4,-101,-39,-101,-111v0,-75,55,-110,101,-114r0,-18r31,0r0,18v50,4,101,41,101,113v0,72,-51,108,-102,112xm114,-32r0,-179v-31,3,-69,32,-69,90v0,53,34,85,69,89xm144,-211r0,179v35,-3,69,-34,69,-89v0,-58,-35,-87,-69,-90","w":258,"k":{"T":8,"\u0166":8,"\u0164":8,"\u021a":8,"\u03a4":8,"X":12,"\u03a7":12,"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11,"\u0102":11,"\u0100":11,"\u0104":11,"\u01fc":11,"\u0391":11,"\u039b":11,"Z":6,"\u017d":6,"\u0179":6,"\u017b":6,"\u0396":6,"\u00ad":-4,"\u2013":-4,"\u2014":-4,")":2,"]":2,"}":2,"\"":6,"'":6,",":21,".":21,"\u2026":21,"\ue000":7,"\u2126":-2,"\u03a5":16,"\u03ab":16,"\u039e":3,"\u03a3":9,"\u03bb":7,"\u03c1":5,"\u03c4":-3,"\u03b8":-6,"\u03b6":-5,"\u03be":-5}},"\u03a7":{"d":"197,0r-37,0r-60,-102v-13,28,-39,71,-55,102r-36,0r74,-123r-71,-120r36,0r56,98r54,-98r37,0r-74,118","w":205,"k":{"\u0390":4,"\u03ca":4,"T":-3,"\u0166":-3,"\u0164":-3,"\u021a":-3,"\u03a4":-3,"J":-1,"\u0134":-1,"C":10,"G":10,"O":10,"Q":10,"\u00d8":10,"\u0152":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"\u0106":10,"\u010c":10,"\u0108":10,"\u010a":10,"\u011e":10,"\u011c":10,"\u0122":10,"\u0120":10,"\u014e":10,"\u0150":10,"\u014c":10,"\u01fe":10,"\u0398":10,"\u039f":10,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"X":5,"\u03a7":5,"Y":-2,"\u00dd":-2,"\u0178":-2,"\u1ef2":-2,"A":3,"\u00c6":3,"\u00c1":3,"\u00c2":3,"\u00c4":3,"\u00c0":3,"\u00c5":3,"\u00c3":3,"\u0102":3,"\u0100":3,"\u0104":3,"\u01fc":3,"\u0391":3,"\u039b":3,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"\u0103":2,"\u0101":2,"\u0105":2,"\u01fd":2,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":7,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"\u1e83":7,"\u0175":7,"\u1e85":7,"\u1e81":7,"\u1ef3":7,"\u00ab":6,"\u2039":6,"\u00ad":8,"\u2013":8,"\u2014":8,"\u2018":2,"\u201c":2,"\ue000":1,"\u03a6":15,"\u03a8":5,"\u03a5":6,"\u03ab":6,"\u039e":-4,"\u03b3":10,"\u03bd":10,"\u03bb":-4,"\u03b1":8,"\u03b4":8,"\u03bf":8,"\u03c3":8,"\u03c6":8,"\u03ac":8,"\u03cc":8,"\u03c2":8,"\u03c1":4,"\u03c4":6,"\u03c5":6,"\u03c8":6,"\u03cd":6,"\u03cb":6,"\u03b0":6,"\u03b9":4,"\u03af":4}},"\u03a8":{"d":"230,-243r0,71v0,63,-38,95,-92,98r0,74r-30,0r0,-74v-47,-2,-91,-26,-91,-89r0,-80r31,0r0,74v0,49,24,68,60,70r0,-144r30,0r0,144v32,-2,61,-22,61,-77r0,-67r31,0","w":246,"k":{"\u03aa":3,"T":-3,"\u0166":-3,"\u0164":-3,"\u021a":-3,"\u03a4":-3,"M":9,"\u039c":9,"X":3,"\u03a7":3,"A":28,"\u00c6":28,"\u00c1":28,"\u00c2":28,"\u00c4":28,"\u00c0":28,"\u00c5":28,"\u00c3":28,"\u0102":28,"\u0100":28,"\u0104":28,"\u01fc":28,"\u0391":28,"\u039b":28,"Z":5,"\u017d":5,"\u0179":5,"\u017b":5,"\u0396":5,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"\u0141":3,"\u00d0":3,"\u00c9":3,"\u00ca":3,"\u00cb":3,"\u00c8":3,"\u00cd":3,"\u00ce":3,"\u00cf":3,"\u00cc":3,"\u00d1":3,"\u010e":3,"\u0110":3,"\u0114":3,"\u011a":3,"\u0116":3,"\u0112":3,"\u014a":3,"\u0118":3,"\u0126":3,"\u0124":3,"\u012c":3,"\u0132":3,"\u012a":3,"\u012e":3,"\u0128":3,"\u0136":3,"\u0139":3,"\u013d":3,"\u013b":3,"\u013f":3,"\u0143":3,"\u0147":3,"\u0145":3,"\u0154":3,"\u0158":3,"\u0156":3,"\u0130":3,"\u0392":3,"\u0393":3,"\u0395":3,"\u0397":3,"\u0399":3,"\u039a":3,"\u039d":3,"\u03a0":3,"\u03a1":3,"\u00ad":5,"\u2013":5,"\u2014":5,",":33,".":33,"\u2026":33,"\ue000":27,"\u2126":4,"\u03a6":3,"\u03a5":-2,"\u03ab":-2,"\u03a3":1,"\u03b5":9,"\u03ad":9,"\u03b1":8,"\u03b4":8,"\u03bf":8,"\u03c3":8,"\u03c6":8,"\u03ac":8,"\u03cc":8,"\u03c2":8,"\u03c1":15,"\u03c9":5,"\u03ce":5}},"\u03a9":{"d":"238,-132v1,51,-25,85,-48,107r53,0r0,25r-91,0r0,-20v29,-20,54,-58,54,-107v0,-44,-27,-94,-78,-94v-51,0,-80,47,-80,95v0,46,26,88,54,106r0,20r-91,0r0,-25v17,-1,37,2,52,-1v-24,-20,-48,-56,-48,-103v0,-69,50,-118,114,-118v67,0,109,51,109,115","w":253,"k":{"\u0390":-7,"\u03ca":-3,"\u03bd":-10,"\u00b5":-2}},"\u2126":{"d":"238,-132v1,51,-25,85,-48,107r53,0r0,25r-91,0r0,-20v29,-20,54,-58,54,-107v0,-44,-27,-94,-78,-94v-51,0,-80,47,-80,95v0,46,26,88,54,106r0,20r-91,0r0,-25v17,-1,37,2,52,-1v-24,-20,-48,-56,-48,-103v0,-69,50,-118,114,-118v67,0,109,51,109,115","w":253,"k":{"T":8,"\u0166":8,"\u0164":8,"\u021a":8,"\u03a4":8,":":-4,";":-4,"\u00ad":-4,"\u2013":-4,"\u2014":-4,"\"":8,"'":8,"\u2019":1,"\u201d":1,",":-4,".":-4,"\u2026":-4,"\u2126":-4,"\u03a6":-2,"\u03a8":1,"\u03a5":9,"\u03ab":9,"\u03c7":-5,"\u03b3":-9,"\u03bd":-9,"\u03bb":-7,"\u03b1":-4,"\u03b4":-4,"\u03bf":-4,"\u03c3":-4,"\u03c6":-4,"\u03ac":-4,"\u03cc":-4,"\u03c2":-4,"\u03c4":-8,"\u03b8":-6,"\u03b6":-5,"\u03be":-5,"\u03c0":-10,"\u00b5":-2,"\u03b2":-2,"\u03b7":-2,"\u03ba":-2,"\u03ae":-2,"\u03b9":-2,"\u03af":-2,"\u03ca":-2,"\u0390":-2}},"\u0386":{"d":"154,-76r-86,0r-26,76r-32,0r83,-243r37,0r83,243r-33,0xm74,-101r73,0r-37,-114v-8,39,-24,77,-36,114xm25,-243r29,0r-13,56r-19,0","w":221,"k":{"T":28,"\u0166":28,"\u0164":28,"\u021a":28,"\u03a4":28,"J":-7,"\u0134":-7,"M":1,"\u039c":1,"C":5,"G":5,"O":5,"Q":5,"\u00d8":5,"\u0152":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"\u0106":5,"\u010c":5,"\u0108":5,"\u010a":5,"\u011e":5,"\u011c":5,"\u0122":5,"\u0120":5,"\u014e":5,"\u0150":5,"\u014c":5,"\u01fe":5,"\u0398":5,"\u039f":5,"U":10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,"\u016c":10,"\u0170":10,"\u016a":10,"\u0172":10,"\u016e":10,"\u0168":10,"V":19,"W":19,"\u1e82":19,"\u0174":19,"\u1e84":19,"\u1e80":19,"X":5,"\u03a7":5,"Y":28,"\u00dd":28,"\u0178":28,"\u1ef2":28,"a":-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,"\u0103":-1,"\u0101":-1,"\u0105":-1,"\u01fd":-1,"f":3,"\u00df":3,"g":4,"\u011f":4,"\u011d":4,"\u0123":4,"\u0121":4,"j":1,"\u0135":1,"c":4,"d":4,"e":4,"o":4,"q":4,"\u00f8":4,"\u0153":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u0107":4,"\u010d":4,"\u0109":4,"\u010b":4,"\u010f":4,"\u0111":4,"\u0115":4,"\u011b":4,"\u0117":4,"\u0113":4,"\u0119":4,"\u014f":4,"\u0151":4,"\u014d":4,"\u01ff":4,"s":2,"\u0161":2,"\u015b":2,"\uf6c2":2,"\u015d":2,"\u0219":2,"t":4,"\u0167":4,"\u0165":4,"\u021b":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"\u016d":4,"\u0171":4,"\u016b":4,"\u0173":4,"\u016f":4,"\u0169":4,"v":8,"w":8,"y":8,"\u00fd":8,"\u00ff":8,"\u1e83":8,"\u0175":8,"\u1e85":8,"\u1e81":8,"\u1ef3":8,"z":-5,"\u017e":-5,"\u017a":-5,"\u017c":-5,")":3,"]":3,"}":3,"\"":21,"'":21,"\u2018":22,"\u201c":22,"\u2019":18,"\u201d":18,"\ue000":-4,"\u2126":-1,"\u03a6":8,"\u03a8":26,"\u03a5":36,"\u03ab":36,"\u03c7":10,"\u03b5":-3,"\u03ad":-3,"\u03b3":9,"\u03bd":9,"\u03bb":-4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4,"\u03c1":5,"\u03c4":9,"\u03b8":4,"\u03c5":4,"\u03c8":4,"\u03cd":4,"\u03cb":4,"\u03b0":4,"\u03b6":1,"\u03be":1}},"\u0388":{"d":"178,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r132,0r0,27r-100,0r0,76r94,0xm3,-243r28,0r-12,56r-19,0","w":201,"k":{"\u0390":-15,"\u03ca":-9,"T":-6,"\u0166":-6,"\u0164":-6,"\u021a":-6,"\u03a4":-6,"J":-6,"\u0134":-6,"V":-3,"W":-3,"\u1e82":-3,"\u0174":-3,"\u1e84":-3,"\u1e80":-3,"g":2,"\u011f":2,"\u011d":2,"\u0123":2,"\u0121":2,"c":1,"d":1,"e":1,"o":1,"q":1,"\u00f8":1,"\u0153":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,"\u0107":1,"\u010d":1,"\u0109":1,"\u010b":1,"\u010f":1,"\u0111":1,"\u0115":1,"\u011b":1,"\u0117":1,"\u0113":1,"\u0119":1,"\u014f":1,"\u0151":1,"\u014d":1,"\u01ff":1,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u016d":3,"\u0171":3,"\u016b":3,"\u0173":3,"\u016f":3,"\u0169":3,"v":3,"w":3,"y":3,"\u00fd":3,"\u00ff":3,"\u1e83":3,"\u0175":3,"\u1e85":3,"\u1e81":3,"\u1ef3":3,",":1,".":1,"\u2026":1,"\ue000":-4,"\u039e":-3,"\u03b5":-6,"\u03ad":-6,"\u03bb":-4,"\u03c4":-4,"\u03c0":-5}},"\u0389":{"d":"52,-243r32,0r0,102r117,0r0,-102r32,0r0,243r-32,0r0,-114r-117,0r0,114r-32,0r0,-243xm3,-243r28,0r-12,56r-19,0","w":259,"k":{"\u0390":-11,"\u03ca":-5,"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u038a":{"d":"52,-243r32,0r0,243r-32,0r0,-243xm3,-243r28,0r-12,56r-19,0","w":111,"k":{"\u0390":-11,"\u03ca":-5,"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u03aa":{"d":"10,-256v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-17,18xm76,-256v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-7,18,-18,18xm27,-243r32,0r0,243r-32,0r0,-243","w":86,"k":{"Y":3,"\u00dd":3,"\u0178":3,"\u1ef2":3,"f":-4,"\u00df":-4,"j":-3,"\u0135":-3,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-3,"w":-3,"y":-3,"\u00fd":-3,"\u00ff":-3,"\u1e83":-3,"\u0175":-3,"\u1e85":-3,"\u1e81":-3,"\u1ef3":-3,"z":-4,"\u017e":-4,"\u017a":-4,"\u017c":-4,"b":-4,"h":-4,"k":-4,"l":-4,"\u0142":-4,"\u0127":-4,"\u0125":-4,"\u0137":-4,"\u013a":-4,"\u013e":-4,"\u013c":-4,"\u0140":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"\u0131":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,"\u014b":-4,"\u012d":-4,"\u0133":-4,"\u012b":-4,"\u012f":-4,"\u0129":-4,"\u0144":-4,"\u0148":-4,"\u0146":-4,"\u0155":-4,"\u0159":-4,"\u0157":-4,"\u0138":-4,"x":-2,"\u2019":2,"\u201d":2,"\u03c4":-2,"\u03b6":-2,"\u03be":-2,"\u03c0":-3}},"\u038c":{"d":"249,-124v0,83,-50,128,-113,128v-64,0,-109,-50,-109,-123v0,-77,48,-128,113,-128v67,0,109,51,109,123xm138,-22v50,0,78,-45,78,-100v0,-48,-25,-99,-77,-99v-52,0,-79,48,-79,101v0,51,29,98,78,98xm3,-243r28,0r-12,56r-19,0","w":262,"k":{"\u03be":-3,"T":9,"\u0166":9,"\u0164":9,"\u021a":9,"\u03a4":9,"X":10,"\u03a7":10,"Y":10,"\u00dd":10,"\u0178":10,"\u1ef2":10,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,"\u0102":5,"\u0100":5,"\u0104":5,"\u01fc":5,"\u0391":5,"\u039b":5,"f":-6,"\u00df":-6,"g":-2,"\u011f":-2,"\u011d":-2,"\u0123":-2,"\u0121":-2,"j":-2,"\u0135":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"\u00f8":-1,"\u0153":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,"\u0107":-1,"\u010d":-1,"\u0109":-1,"\u010b":-1,"\u010f":-1,"\u0111":-1,"\u0115":-1,"\u011b":-1,"\u0117":-1,"\u0113":-1,"\u0119":-1,"\u014f":-1,"\u0151":-1,"\u014d":-1,"\u01ff":-1,"t":-6,"\u0167":-6,"\u0165":-6,"\u021b":-6,"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,"\u1e83":-5,"\u0175":-5,"\u1e85":-5,"\u1e81":-5,"\u1ef3":-5,"x":2,"\u00ab":-5,"\u2039":-5,"\u00ad":-5,"\u2013":-5,"\u2014":-5,")":3,"]":3,"}":3,"\u2019":-3,"\u201d":-3,",":12,".":12,"\u2026":12,"\ue000":7,"\u2126":-1,"\u03a5":11,"\u03ab":11,"\u039e":3,"\u03a3":5,"\u03b3":-6,"\u03bd":-6,"\u03bb":6,"\u03c1":5,"\u03c4":-4,"\u03b8":-6,"\u03b6":-3,"\u03c0":-4}},"\u038e":{"d":"131,0v11,-101,-27,-213,-85,-219r5,-26v54,6,88,64,99,122v10,-63,49,-107,97,-122r5,26v-34,9,-92,77,-89,157r0,62r-32,0xm3,-243r28,0r-13,56r-18,0","w":254,"k":{"\u03b0":13,"\u0390":12,"\u03ca":12,"\u03bb":2,"\u03b4":28,"\u03b2":13,"T":-4,"\u0166":-4,"\u0164":-4,"\u021a":-4,"\u03a4":-4,"M":7,"\u039c":7,"C":12,"G":12,"O":12,"Q":12,"\u00d8":12,"\u0152":12,"\u00c7":12,"\u00d3":12,"\u00d4":12,"\u00d6":12,"\u00d2":12,"\u00d5":12,"\u0106":12,"\u010c":12,"\u0108":12,"\u010a":12,"\u011e":12,"\u011c":12,"\u0122":12,"\u0120":12,"\u014e":12,"\u0150":12,"\u014c":12,"\u01fe":12,"\u0398":12,"\u039f":12,"X":2,"\u03a7":2,"A":37,"\u00c6":37,"\u00c1":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,"\u00c5":37,"\u00c3":37,"\u0102":37,"\u0100":37,"\u0104":37,"\u01fc":37,"\u0391":37,"\u039b":37,":":14,";":14,"\u203a":12,"\u00bb":12,"\u00ad":19,"\u2013":19,"\u2014":19,")":-4,"]":-4,"}":-4,",":36,".":36,"\u2026":36,"\ue000":35,"\u2126":8,"\u03a6":12,"\u03a8":-3,"\u03a5":-2,"\u03ab":-2,"\u03b5":23,"\u03ad":23,"\u03b3":7,"\u03bd":7,"\u03b1":28,"\u03bf":28,"\u03c3":28,"\u03c6":28,"\u03ac":28,"\u03cc":28,"\u03c2":28,"\u03c1":33,"\u03c5":13,"\u03c8":13,"\u03cd":13,"\u03cb":13,"\u03c0":5,"\u00b5":13,"\u03b7":13,"\u03ba":13,"\u03ae":13,"\u03b9":12,"\u03af":12}},"\u03ab":{"d":"92,-269v0,10,-7,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18xm140,-251v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-18,18xm89,0v11,-101,-27,-213,-85,-219r5,-26v54,6,88,64,99,122v10,-63,49,-107,97,-122r5,26v-34,9,-92,77,-89,157r0,62r-32,0","w":211,"k":{"T":-4,"\u0166":-4,"\u0164":-4,"\u021a":-4,"\u03a4":-4,"M":7,"\u039c":7,"C":12,"G":12,"O":12,"Q":12,"\u00d8":12,"\u0152":12,"\u00c7":12,"\u00d3":12,"\u00d4":12,"\u00d6":12,"\u00d2":12,"\u00d5":12,"\u0106":12,"\u010c":12,"\u0108":12,"\u010a":12,"\u011e":12,"\u011c":12,"\u0122":12,"\u0120":12,"\u014e":12,"\u0150":12,"\u014c":12,"\u01fe":12,"\u0398":12,"\u039f":12,"X":2,"\u03a7":2,"A":37,"\u00c6":37,"\u00c1":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,"\u00c5":37,"\u00c3":37,"\u0102":37,"\u0100":37,"\u0104":37,"\u01fc":37,"\u0391":37,"\u039b":37,":":14,";":14,"\u203a":12,"\u00bb":12,"\u00ad":19,"\u2013":19,"\u2014":19,")":-4,"]":-4,"}":-4,",":36,".":36,"\u2026":36,"\ue000":35,"\u2126":8,"\u03a6":12,"\u03a8":-3,"\u03a5":-2,"\u03ab":-2,"\u03b5":23,"\u03ad":23,"\u03b3":7,"\u03bd":7,"\u03bb":2,"\u03b1":28,"\u03b4":28,"\u03bf":28,"\u03c3":28,"\u03c6":28,"\u03ac":28,"\u03cc":28,"\u03c2":28,"\u03c1":33,"\u03c5":13,"\u03c8":13,"\u03cd":13,"\u03cb":13,"\u03b0":13,"\u03c0":5,"\u00b5":13,"\u03b2":13,"\u03b7":13,"\u03ba":13,"\u03ae":13,"\u03b9":12,"\u03af":12,"\u03ca":12,"\u0390":12}},"\u038f":{"d":"251,-131v1,51,-25,84,-48,106r53,0r0,25r-91,0r0,-20v67,-32,81,-201,-24,-201v-103,0,-94,169,-26,201r0,20r-91,0r0,-25v17,-1,37,2,52,-1v-24,-20,-47,-56,-47,-103v0,-69,49,-118,113,-118v67,0,109,52,109,116xm3,-243r28,0r-12,56r-19,0","w":267,"k":{"\u0390":-2,"\u03ca":-2,"T":8,"\u0166":8,"\u0164":8,"\u021a":8,"\u03a4":8,":":-4,";":-4,"\u00ad":-4,"\u2013":-4,"\u2014":-4,"\"":8,"'":8,"\u2019":1,"\u201d":1,",":-4,".":-4,"\u2026":-4,"\u2126":-4,"\u03a6":-2,"\u03a8":1,"\u03a5":9,"\u03ab":9,"\u03c7":-5,"\u03b3":-9,"\u03bd":-9,"\u03bb":-7,"\u03b1":-4,"\u03b4":-4,"\u03bf":-4,"\u03c3":-4,"\u03c6":-4,"\u03ac":-4,"\u03cc":-4,"\u03c2":-4,"\u03c4":-8,"\u03b8":-6,"\u03b6":-5,"\u03be":-5,"\u03c0":-10,"\u00b5":-2,"\u03b2":-2,"\u03b7":-2,"\u03ba":-2,"\u03ae":-2,"\u03b9":-2,"\u03af":-2}},"\u03b1":{"d":"150,-174r26,0v-2,18,-5,78,-5,124v0,21,6,30,18,30r-3,23v-25,6,-36,-7,-42,-36v-31,65,-130,38,-130,-51v0,-86,96,-128,131,-60r2,0v1,-13,2,-22,3,-30xm141,-90v0,-36,-17,-62,-46,-63v-29,-1,-49,29,-49,69v0,33,17,63,47,63v28,0,48,-31,48,-69","w":198,"k":{"\u03b6":-4,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u03bb":-3,"\u03c1":3,"\u03be":-4,"\u03c0":-3}},"\u03b2":{"d":"57,-18v0,29,-1,66,4,89r-30,0v-11,-61,-5,-156,-5,-227v0,-50,14,-70,27,-84v35,-37,114,-18,114,43v0,29,-18,46,-32,58v27,5,53,28,53,68v0,74,-89,96,-131,53xm101,-234v-60,-3,-41,120,-44,185v8,13,26,28,50,28v29,0,49,-22,49,-50v-1,-38,-27,-55,-66,-53r0,-22v32,1,48,-21,48,-46v0,-26,-16,-42,-37,-42","w":201,"k":{"\u0390":-9,"\u03ca":-4,"\u00ad":-2,"\u2013":-2,"\u2014":-2,")":3,"]":3,"}":3,"\"":12,"'":12,"\u2019":9,"\u201d":9,",":9,".":9,"\u2026":9,"\u03b3":3,"\u03bd":3,"\u03c1":3,"\u03b6":-1,"\u03be":-1}},"\u03b3":{"d":"66,71v10,-95,-38,-202,-68,-245r35,0v17,22,39,87,55,135v17,-33,44,-83,41,-135r30,0v3,57,-25,107,-61,165v-5,21,1,53,-1,80r-31,0","w":167,"k":{"\u03b3":-4,"\u203a":-4,"\u00bb":-4,"\u00ad":-4,"\u2013":-4,"\u2014":-4,"\"":-3,"'":-3,"\u2019":-5,"\u201d":-5,",":17,".":17,"\u2026":17,"\u03b5":3,"\u03ad":3,"\u03bd":-4,"\u03bb":5,"\u03c1":8,"\u03c4":-6,"\u03b8":-8,"\u03b6":-2,"\u03be":-2,"\u03c0":-6}},"\u03b4":{"d":"168,-242r-10,21v-8,-13,-77,-25,-77,1v0,18,40,40,56,53v28,23,46,47,46,82v0,54,-38,89,-85,89v-45,0,-84,-32,-84,-88v-1,-46,33,-73,66,-92v-11,-11,-31,-20,-31,-43v0,-19,20,-41,61,-41v25,0,48,9,58,18xm151,-83v0,-33,-29,-60,-53,-77v-27,14,-52,38,-52,76v0,40,27,64,54,64v28,0,51,-23,51,-63","w":196,"k":{"\u0390":-9,"\u03ca":-4,"\u03c1":3,"\u03b3":3,"\u03c7":9,"\u03bd":3,"\u03bb":3,"\u03c4":2,"\u03b6":-3,"\u03be":-3,"\u03c9":-2,"\u03ce":-2}},"\u03b5":{"d":"14,-49v0,-23,22,-36,43,-46v-23,-5,-34,-19,-34,-36v-9,-40,87,-63,122,-34r-7,21v-18,-14,-84,-17,-84,15v0,24,39,26,70,25r0,23v-36,-2,-77,3,-77,30v0,40,75,34,98,18r6,21v-39,24,-136,27,-137,-37","w":158,"k":{"\u203a":-4,"\u00bb":-4,"\u03b3":-2,"\u03bd":-2,"\u03bb":-2,"\u03c1":1,"\u03c0":-3}},"\u03b6":{"d":"46,-90v-1,60,47,67,95,75v10,17,-10,54,-18,66r-21,-6v5,-8,12,-30,12,-39v-53,-8,-100,-25,-100,-90v0,-51,34,-108,88,-148v-22,0,-51,1,-67,-3r3,-21r104,1r5,22v-58,29,-101,90,-101,143","w":147,"k":{"\u03c6":2,"\u03b2":-4,":":-5,";":-5,"\u203a":-6,"\u00bb":-6,"\u00ad":6,"\u2013":6,"\u2014":6,")":-18,"]":-18,"}":-18,"\"":-10,"'":-10,",":-7,".":-7,"\u2026":-7,"\u03b5":-2,"\u03ad":-2,"\u03bb":-12,"\u03c1":-4,"\u03c4":3}},"\u03b7":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0v-2,-57,5,-126,-5,-174r29,0v3,6,5,17,5,28v27,-44,119,-54,120,42v1,57,-4,125,4,175r-31,0v-9,-42,-3,-118,-5,-171v0,-28,-10,-52,-40,-52","w":199,"k":{"\u03bd":6,"\u2019":12,"\u201d":12,"\u03b3":6,"\u03c1":1,"\u03c4":1,"\u03c5":2,"\u03c8":2,"\u03cd":2,"\u03cb":2,"\u03b0":2}},"\u03b8":{"d":"179,-130v0,81,-26,134,-83,134v-51,0,-82,-45,-82,-134v0,-73,30,-130,84,-130v55,0,81,53,81,130xm45,-144r103,0v0,-51,-17,-92,-52,-92v-32,0,-51,43,-51,92xm148,-120r-103,0v0,64,22,101,53,101v34,0,50,-42,50,-101","w":192,"k":{"\u03be":-6,"\u03b6":-6,"\u00ad":-6,"\u2013":-6,"\u2014":-6,",":12,".":12,"\u2026":12,"\u03bb":2}},"\u03b9":{"d":"58,-174r0,132v0,15,3,22,17,21r-2,23v-27,6,-47,1,-47,-41r0,-135r32,0","w":84,"k":{"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u03bb":-3,"\u03c1":3,"\u03b6":-4,"\u03be":-4,"\u03c0":-3}},"\u03ba":{"d":"173,-174v-26,28,-56,53,-83,80v30,10,63,64,85,94r-36,0v-21,-24,-49,-78,-81,-77r0,77r-32,0v-2,-56,5,-125,-4,-174r31,0v9,13,2,56,6,77r77,-77r37,0","w":177,"k":{":":-4,";":-4,"\u203a":-4,"\u00bb":-4,"\u00ad":9,"\u2013":9,"\u2014":9,"\u2019":-2,"\u201d":-2,",":-4,".":-4,"\u2026":-4,"\u03b1":5,"\u03b4":5,"\u03bf":5,"\u03c3":5,"\u03c6":5,"\u03ac":5,"\u03cc":5,"\u03c2":5,"\u03c1":3,"\u03b6":4,"\u03be":4,"\u03c0":-2}},"\u03bb":{"d":"66,-161v0,-38,-24,-79,-52,-72r3,-25v48,-7,61,27,81,81r67,177r-34,0v-18,-45,-28,-96,-49,-138v-13,48,-31,92,-47,138r-32,0","w":169,"k":{"\u03bd":12,")":2,"]":2,"}":2,"\"":31,"'":31,"\u2019":22,"\u201d":22,"\u03c7":12,"\u03b5":-2,"\u03ad":-2,"\u03b3":12,"\u03b1":2,"\u03b4":2,"\u03bf":2,"\u03c3":2,"\u03c6":2,"\u03ac":2,"\u03cc":2,"\u03c2":2,"\u03c4":10,"\u03c5":4,"\u03c8":4,"\u03cd":4,"\u03cb":4,"\u03b0":4,"\u03c0":1,"\u00b5":2,"\u03b2":2,"\u03b7":2,"\u03ba":2,"\u03ae":2,"\u03b9":3,"\u03af":3,"\u03ca":3,"\u0390":3}},"\u03bc":{"d":"97,-22v64,0,40,-91,44,-152r32,0r0,126v0,19,4,26,17,27r-3,24v-24,5,-36,-5,-43,-30v-8,26,-70,46,-88,11v0,28,0,65,4,87r-29,0v-11,-64,-3,-170,-5,-245r32,0v6,58,-22,152,39,152","w":199},"\u03bd":{"d":"1,-174r34,0v18,46,29,100,50,143v15,-34,51,-92,44,-143r30,0v6,62,-31,115,-64,174r-30,0","w":168,"k":{"\u03c1":8,"\u03b6":-2,"\u203a":-4,"\u00bb":-4,"\u00ad":-4,"\u2013":-4,"\u2014":-4,"\"":-3,"'":-3,"\u2019":-5,"\u201d":-5,",":17,".":17,"\u2026":17,"\u03b5":3,"\u03ad":3,"\u03b3":-4,"\u03bd":-4,"\u03bb":5,"\u03c4":-6,"\u03b8":-8,"\u03be":-2,"\u03c0":-6}},"\u03be":{"d":"47,-79v0,45,60,60,103,64v10,16,-10,53,-18,66r-21,-6v5,-8,12,-30,12,-39v-48,-7,-109,-22,-109,-83v-1,-36,27,-60,56,-71v-67,-21,-47,-114,35,-112v19,0,34,4,44,10r-6,22v-26,-17,-88,-4,-81,31v0,30,31,43,68,40r0,23v-52,-3,-83,22,-83,55","w":155,"k":{":":-9,";":-9,"\u203a":-8,"\u00bb":-8,")":-13,"]":-13,"}":-13,"\"":-3,"'":-3,",":-9,".":-9,"\u2026":-9,"\u03b5":-3,"\u03ad":-3,"\u03bb":-14,"\u03c0":-7}},"\u03bf":{"d":"184,-89v0,65,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92v50,0,84,36,84,89xm46,-87v0,38,21,67,53,67v30,0,53,-28,53,-68v0,-30,-16,-66,-53,-66v-37,0,-53,34,-53,67","w":197,"k":{"\u03bd":3,"\u03c7":9,"\u03b3":3,"\u03bb":3,"\u03c1":3,"\u03c4":2,"\u03b6":-3,"\u03be":-3,"\u03c9":-2,"\u03ce":-2}},"\u03c0":{"d":"187,-150r-24,0v1,45,-3,118,5,150r-30,0v-10,-27,-5,-108,-6,-150r-57,0v-1,46,-12,121,-25,150r-29,0v13,-34,23,-104,24,-150v-14,0,-27,0,-36,3r-4,-18v38,-17,129,-6,185,-9","w":199,"k":{"\u0390":3,"\u03ca":3,"\u203a":-5,"\u00bb":-5,")":8,"]":8,"}":8,"\"":5,"'":5,",":7,".":7,"\u2026":7,"\u03b3":-3,"\u03bd":-3,"\u03bb":4,"\u03b1":2,"\u03b4":2,"\u03bf":2,"\u03c3":2,"\u03c6":2,"\u03ac":2,"\u03cc":2,"\u03c2":2,"\u03c1":5,"\u03c4":-3,"\u03c0":-2,"\u03b9":3,"\u03af":3}},"\u03c1":{"d":"24,-73v0,-76,26,-105,85,-105v49,0,80,36,80,88v0,89,-88,121,-133,68r2,93r-30,0v-6,-31,-4,-101,-4,-144xm56,-83v0,39,17,62,48,62v33,0,53,-29,53,-68v0,-34,-18,-63,-50,-63v-25,0,-51,20,-51,69","w":202,"k":{"\u03c7":9,"\u03b3":3,"\u03bd":3,"\u03bb":3,"\u03c1":3,"\u03c4":2,"\u03b6":-3,"\u03be":-3,"\u03c9":-2,"\u03ce":-2}},"\u03c3":{"d":"194,-154v-5,2,-27,-5,-46,0v21,14,33,40,33,66v0,64,-44,92,-84,92v-47,0,-83,-35,-83,-90v-1,-95,83,-98,181,-92xm98,-20v28,0,51,-28,51,-68v0,-30,-15,-66,-51,-66v-36,0,-52,34,-52,67v0,38,22,67,52,67","w":199,"k":{"\u0390":-2,"\u03ca":-2,"\u03b6":-5,"\u203a":-8,"\u00bb":-8,"\u00ad":-6,"\u2013":-6,"\u2014":-6,"\u2019":-5,"\u201d":-5,",":11,".":11,"\u2026":11,"\u03c7":-2,"\u03b3":-5,"\u03bd":-5,"\u03bb":4,"\u03c1":5,"\u03c4":-8,"\u03b8":-5,"\u03be":-5,"\u03c0":-5,"\u00b5":-2,"\u03b2":-2,"\u03b7":-2,"\u03ba":-2,"\u03ae":-2,"\u03b9":-2,"\u03af":-2}},"\u03c4":{"d":"116,-22r-2,23v-33,10,-57,-6,-57,-51r0,-100v-18,-1,-46,1,-55,3r-4,-18v24,-15,105,-7,148,-9r-4,24r-54,0r0,99v1,28,11,32,28,29","w":148,"k":{"\u203a":-8,"\u00bb":-8,"\u00ad":6,"\u2013":6,"\u2014":6,"\u2019":-7,"\u201d":-7,",":9,".":9,"\u2026":9,"\u03c7":-2,"\u03b3":-3,"\u03bd":-3,"\u03bb":4,"\u03b1":4,"\u03b4":4,"\u03bf":4,"\u03c3":4,"\u03c6":4,"\u03ac":4,"\u03cc":4,"\u03c2":4,"\u03c1":9,"\u03c4":-2}},"\u03c5":{"d":"130,-174r29,0v23,57,22,178,-66,178v-38,0,-69,-23,-69,-71r0,-49v0,-31,0,-48,-3,-58r30,0v9,18,5,73,5,103v0,35,20,49,39,49v30,0,46,-31,46,-81v0,-32,-7,-62,-11,-71","w":188,"k":{"\u03c1":2,"\u00ad":-4,"\u2013":-4,"\u2014":-4,")":7,"]":7,"}":7,"\"":18,"'":18,"\u2019":4,"\u201d":4,",":10,".":10,"\u2026":10,"\u03b1":-2,"\u03b4":-2,"\u03bf":-2,"\u03c3":-2,"\u03c6":-2,"\u03ac":-2,"\u03cc":-2,"\u03c2":-2}},"\u03c6":{"d":"74,-180r12,18v-18,12,-41,35,-41,73v0,35,20,64,57,70v2,-60,-16,-159,44,-159v34,0,71,33,71,86v0,60,-42,92,-86,96r0,67r-29,0r0,-67v-43,-3,-88,-31,-88,-93v0,-50,36,-81,60,-91xm131,-130r0,111v34,-5,56,-31,56,-72v0,-36,-21,-64,-41,-64v-9,0,-15,8,-15,25","w":231,"k":{"\u03c7":9,"\u03b3":3,"\u03bd":3,"\u03bb":3,"\u03c1":3,"\u03c4":2,"\u03b6":-3,"\u03be":-3,"\u03c9":-2,"\u03ce":-2}},"\u03c7":{"d":"6,-174r34,0r46,94r44,-94r31,0r-61,117r63,126r-29,8v-19,-35,-32,-75,-54,-107r-49,107r-27,-9r62,-124","w":164,"k":{"\u0390":1,"\u03ca":1,")":2,"]":2,"}":2,"\u2019":-4,"\u201d":-4,",":5,".":5,"\u2026":5,"\u03b5":4,"\u03ad":4,"\u03bb":7,"\u03b1":8,"\u03b4":8,"\u03bf":8,"\u03c3":8,"\u03c6":8,"\u03ac":8,"\u03cc":8,"\u03c2":8,"\u03c1":4,"\u03c4":-7,"\u03c0":-5,"\u00b5":-2,"\u03b2":-2,"\u03b7":-2,"\u03ba":-2,"\u03ae":-2,"\u03b9":1,"\u03af":1}},"\u03c8":{"d":"106,71r0,-67v-45,-3,-82,-23,-82,-91v0,-28,1,-66,-3,-87r29,0v8,13,4,60,5,85v0,51,24,68,51,70r0,-201r29,0r0,201v31,-1,54,-34,54,-84v0,-36,-8,-64,-13,-71r29,0v27,58,18,179,-70,178r0,67r-29,0","w":235,"k":{"\u00ad":-4,"\u2013":-4,"\u2014":-4,")":7,"]":7,"}":7,"\"":18,"'":18,"\u2019":4,"\u201d":4,",":10,".":10,"\u2026":10,"\u03b1":-2,"\u03b4":-2,"\u03bf":-2,"\u03c3":-2,"\u03c6":-2,"\u03ac":-2,"\u03cc":-2,"\u03c2":-2}},"\u03c9":{"d":"140,-131v0,42,-11,107,29,109v18,0,36,-24,36,-71v0,-34,-12,-67,-29,-83r30,0v15,13,30,44,30,84v0,65,-32,96,-65,96v-23,1,-38,-14,-47,-31v-34,58,-110,35,-110,-62v0,-39,15,-72,30,-87r29,0v-16,18,-28,49,-28,86v0,49,20,68,37,68v38,-2,28,-68,28,-109r30,0","w":249,"k":{"\u00ad":-4,"\u2013":-4,"\u2014":-4,")":7,"]":7,"}":7,"\"":18,"'":18,"\u2019":4,"\u201d":4,",":10,".":10,"\u2026":10,"\u03b1":-2,"\u03b4":-2,"\u03bf":-2,"\u03c3":-2,"\u03c6":-2,"\u03ac":-2,"\u03cc":-2,"\u03c2":-2}},"\u03ac":{"d":"103,-247r32,0r-30,52r-21,0xm150,-174r26,0v-2,18,-5,78,-5,124v0,21,6,30,18,30r-3,23v-25,6,-36,-7,-42,-36v-31,65,-130,38,-130,-51v0,-86,96,-128,131,-60r2,0v1,-13,2,-22,3,-30xm141,-90v0,-36,-17,-62,-46,-63v-29,-1,-49,29,-49,69v0,33,17,63,47,63v28,0,48,-31,48,-69","w":198,"k":{"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u03bb":-3,"\u03c1":3,"\u03b6":-4,"\u03be":-4,"\u03c0":-3}},"\u03ad":{"d":"92,-247r32,0r-30,52r-21,0xm14,-49v0,-23,22,-36,43,-46v-23,-5,-34,-19,-34,-36v-9,-40,87,-63,122,-34r-7,21v-18,-14,-84,-17,-84,15v0,24,39,26,70,25r0,23v-36,-2,-77,3,-77,30v0,40,75,34,98,18r6,21v-39,24,-136,27,-137,-37","w":158,"k":{"\u0390":-12,"\u03ca":-7,"\u203a":-4,"\u00bb":-4,"\u03b3":-2,"\u03bd":-2,"\u03bb":-2,"\u03c1":1,"\u03c0":-3}},"\u03ae":{"d":"108,-247r32,0r-30,52r-21,0xm103,-152v-63,0,-42,91,-45,152r-32,0v-2,-57,5,-126,-5,-174r29,0v3,6,5,17,5,28v27,-44,119,-54,120,42v1,57,-4,125,4,175r-31,0v-9,-42,-3,-118,-5,-171v0,-28,-10,-52,-40,-52","w":199,"k":{"\u2019":12,"\u201d":12,"\u03b3":6,"\u03bd":6,"\u03c1":1,"\u03c4":1,"\u03c5":2,"\u03c8":2,"\u03cd":2,"\u03cb":2,"\u03b0":2}},"\u03af":{"d":"48,-247r32,0r-30,51r-21,0xm58,-174r0,132v0,15,3,22,17,21r-2,23v-27,6,-47,1,-47,-41r0,-135r32,0","w":84,"k":{"\u03bb":-3,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u03c1":3,"\u03b6":-4,"\u03be":-4,"\u03c0":-3}},"\u03ca":{"d":"10,-201v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18xm76,-201v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-18,18xm58,-174r0,132v0,15,3,22,17,21r-2,23v-27,6,-47,1,-47,-41r0,-135r32,0","w":84,"k":{"\u03c0":-3,"\u03be":-4,"\u03bb":-3,"\u03b8":-7,"\u03b6":-4,"\u03b2":-4,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u03c1":3}},"\u03cc":{"d":"104,-247r32,0r-30,52r-21,0xm184,-89v0,65,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92v50,0,84,36,84,89xm46,-87v0,38,21,67,53,67v30,0,53,-28,53,-68v0,-30,-16,-66,-53,-66v-37,0,-53,34,-53,67","w":197,"k":{"\u03c7":9,"\u03b3":3,"\u03bd":3,"\u03bb":3,"\u03c1":3,"\u03c4":2,"\u03b6":-3,"\u03be":-3,"\u03c9":-2,"\u03ce":-2}},"\u03cd":{"d":"98,-247r32,0r-30,51r-21,0xm130,-174r29,0v23,57,22,178,-66,178v-38,0,-69,-23,-69,-71r0,-49v0,-31,0,-48,-3,-58r30,0v9,18,5,73,5,103v0,35,20,49,39,49v30,0,46,-31,46,-81v0,-32,-7,-62,-11,-71","w":188,"k":{"\u00ad":-4,"\u2013":-4,"\u2014":-4,")":7,"]":7,"}":7,"\"":18,"'":18,"\u2019":4,"\u201d":4,",":10,".":10,"\u2026":10,"\u03b1":-2,"\u03b4":-2,"\u03bf":-2,"\u03c3":-2,"\u03c6":-2,"\u03ac":-2,"\u03cc":-2,"\u03c2":-2}},"\u03cb":{"d":"77,-219v0,10,-7,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18xm143,-219v0,10,-6,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18xm130,-174r29,0v23,57,22,178,-66,178v-38,0,-69,-23,-69,-71r0,-49v0,-31,0,-48,-3,-58r30,0v9,18,5,73,5,103v0,35,20,49,39,49v30,0,46,-31,46,-81v0,-32,-7,-62,-11,-71","w":188,"k":{"\u00ad":-4,"\u2013":-4,"\u2014":-4,")":7,"]":7,"}":7,"\"":18,"'":18,"\u2019":4,"\u201d":4,",":10,".":10,"\u2026":10,"\u03b1":-2,"\u03b4":-2,"\u03bf":-2,"\u03c3":-2,"\u03c6":-2,"\u03ac":-2,"\u03cc":-2,"\u03c2":-2}},"\u03ce":{"d":"130,-247r32,0r-30,52r-21,0xm140,-131v0,42,-11,107,29,109v18,0,36,-24,36,-71v0,-34,-12,-67,-29,-83r30,0v15,13,30,44,30,84v0,65,-32,96,-65,96v-23,1,-38,-14,-47,-31v-34,58,-110,35,-110,-62v0,-39,15,-72,30,-87r29,0v-16,18,-28,49,-28,86v0,49,20,68,37,68v38,-2,28,-68,28,-109r30,0","w":249,"k":{"\u00ad":-4,"\u2013":-4,"\u2014":-4,")":7,"]":7,"}":7,"\"":18,"'":18,"\u2019":4,"\u201d":4,",":10,".":10,"\u2026":10,"\u03b1":-2,"\u03b4":-2,"\u03bf":-2,"\u03c3":-2,"\u03c6":-2,"\u03ac":-2,"\u03cc":-2,"\u03c2":-2}},"\u0390":{"d":"58,-174r0,132v0,15,3,22,17,21r-2,23v-27,6,-47,1,-47,-41r0,-135r32,0xm39,-251r27,0r-18,57r-17,0xm18,-219v0,9,-6,17,-17,17v-9,0,-16,-8,-16,-17v0,-9,8,-16,17,-16v9,0,16,7,16,16xm105,-219v0,9,-6,17,-17,17v-9,0,-16,-8,-16,-17v0,-9,8,-16,17,-16v9,0,16,7,16,16","w":84,"k":{"\u03c0":-3,"\u03be":-4,"\u03bb":-3,"\u03b8":-13,"\u03b6":-4,"\u03b2":-12,"\u00ad":-2,"\u2013":-2,"\u2014":-2,"\u03c1":3}},"\u03b0":{"d":"130,-174r29,0v23,57,22,178,-66,178v-38,0,-69,-23,-69,-71r0,-49v0,-31,0,-48,-3,-58r30,0v9,18,5,73,5,103v0,35,20,49,39,49v30,0,46,-31,46,-81v0,-32,-7,-62,-11,-71xm87,-250r27,0r-18,56r-16,0xm50,-202v-9,0,-16,-8,-16,-17v0,-9,8,-16,17,-16v9,0,16,7,16,17v0,9,-7,16,-17,16xm154,-218v0,9,-6,16,-17,16v-9,0,-16,-8,-16,-17v0,-9,8,-16,17,-16v9,0,16,7,16,17","w":188,"k":{"\u00ad":-4,"\u2013":-4,"\u2014":-4,")":7,"]":7,"}":7,"\"":18,"'":18,"\u2019":4,"\u201d":4,",":10,".":10,"\u2026":10,"\u03b1":-2,"\u03b4":-2,"\u03bf":-2,"\u03c3":-2,"\u03c6":-2,"\u03ac":-2,"\u03cc":-2,"\u03c2":-2}},"\u03c2":{"d":"115,6v-57,-6,-98,-28,-101,-90v-3,-60,66,-116,133,-86r-7,23v-44,-22,-94,11,-94,60v0,52,49,65,95,72v12,16,-10,55,-17,67r-21,-7v5,-8,11,-30,12,-39","w":150},"\u037e":{"d":"33,42r-22,2v6,-22,14,-59,16,-85r35,-2v-6,28,-21,68,-29,85xm66,-140v0,13,-9,24,-24,24v-13,0,-21,-11,-21,-24v0,-14,9,-24,22,-24v13,0,23,10,23,24","w":78},"\u0387":{"d":"39,-90v-13,0,-23,-11,-23,-24v0,-14,10,-25,23,-25v14,0,23,10,23,25v0,13,-9,24,-23,24","w":78},"\u0410":{"d":"153,-76r-86,0r-26,76r-32,0r82,-243r38,0r83,243r-33,0xm73,-101r73,0r-37,-114v-8,39,-24,77,-36,114","w":220},"\u0411":{"d":"182,-78v1,76,-85,87,-155,77r0,-242r136,0r0,27r-104,0r0,65v63,-9,122,11,123,73xm149,-77v0,-46,-45,-57,-90,-50r0,103v44,8,90,-7,90,-53","w":196,"k":{"\u0427":15,"\u0414":4,"\u0402":16,"\u0417":3,"\u042d":3,"\u0424":3,"\u041b":-2,"\u0409":-2,"\u0422":15,"\u042a":15,"\u040b":15,"\u0408":1,"\u041e":4,"\u0421":4,"\u0404":4,"\u0423":6,"\u040e":6,"\u0416":3,"\u0410":3,"\u0405":2,"\u0425":7,"\u0447":3,"\u0434":1,"\u0452":4,"\u0442":12,"\u044a":12,"\u0458":3,"\u045b":2,"\u0443":7,"\u045e":7,"\u0445":4}},"\u0412":{"d":"180,-69v0,70,-85,76,-153,68r0,-238v57,-10,144,-11,144,55v0,25,-18,43,-41,54v23,5,50,25,50,61xm59,-218r0,78v42,4,80,-8,80,-41v0,-38,-46,-43,-80,-37xm59,-116r0,92v40,6,89,-1,88,-45v0,-42,-42,-50,-88,-47","w":195,"k":{"\u0427":8,"\u0414":1,"\u0402":4,"\u0424":4,"\u0422":2,"\u042a":2,"\u040b":2,"\u0408":2,"\u041e":3,"\u0421":3,"\u0404":3,"\u0423":5,"\u040e":5,"\u0416":2,"\u0425":3,"\u042f":-2,"\u0447":7,"\u0434":1,"\u043b":-1,"\u0459":-1,"\u0442":2,"\u044a":2,"\u0458":2,"\u0443":1,"\u045e":1,"\u0445":4}},"\u0413":{"d":"27,-243r129,0r0,27r-97,0r0,216r-32,0r0,-243","w":155,"k":{"\u0427":3,"\u0414":18,"\u0402":-19,"\u0417":-5,"\u042d":-5,"\u0424":15,"\u041b":9,"\u0409":9,"\u0422":-15,"\u042a":-15,"\u040b":-15,"\u0408":23,"\u041e":13,"\u0421":13,"\u0404":13,"\u0423":-14,"\u040e":-14,"\u0416":-7,"\u0410":29,"\u042f":2,"\u041c":3,"\u0430":29,"\u0431":9,"\u0447":32,"\u0434":36,"\u0452":-12,"\u0455":14,"\u0437":22,"\u044d":22,"\u04d9":22,"\u043b":32,"\u0459":32,"\u0442":22,"\u044a":22,"\u0458":8,"\u0435":33,"\u043e":33,"\u0441":33,"\u0451":33,"\u0454":33,"\u045b":-12,"\u0443":17,"\u045e":17,"\u044f":28,"\u0436":22,"\u0445":21,"\u0432":24,"\u0433":24,"\u0491":24,"\u0438":24,"\u0439":24,"\u043a":24,"\u043d":24,"\u043f":24,"\u0440":24,"\u0446":24,"\u0448":24,"\u0449":24,"\u044b":24,"\u044c":24,"\u044e":24,"\u0453":24,"\u0457":24,"\u045a":24,"\u045c":24,"\u045f":24,"\u0444":31,"\u043c":28,"\u0456":5,")":-11,"]":-11,"}":-11,":":21,";":21,",":24,".":24,"\u2026":24,"\u00ad":26,"\u2013":26,"\u2014":26,"\u203a":18,"\u00bb":18,"\u00ab":13,"\u2039":13}},"\u0490":{"d":"27,-243r105,0r6,-44r23,0r-4,71r-98,0r0,216r-32,0r0,-243","w":160,"k":{"\u0427":3,"\u0414":18,"\u0402":-19,"\u0417":-5,"\u042d":-5,"\u0424":15,"\u041b":9,"\u0409":9,"\u0422":-15,"\u042a":-15,"\u040b":-15,"\u0408":23,"\u041e":13,"\u0421":13,"\u0404":13,"\u0423":-14,"\u040e":-14,"\u0416":-7,"\u0410":29,"\u042f":2,"\u041c":3,"\u0430":29,"\u0431":9,"\u0447":32,"\u0434":36,"\u0452":-12,"\u0455":14,"\u0437":22,"\u044d":22,"\u04d9":22,"\u043b":32,"\u0459":32,"\u0442":22,"\u044a":22,"\u0458":8,"\u0435":33,"\u043e":33,"\u0441":33,"\u0451":33,"\u0454":33,"\u045b":-12,"\u0443":17,"\u045e":17,"\u044f":28,"\u0436":22,"\u0445":21,"\u0432":24,"\u0433":24,"\u0491":24,"\u0438":24,"\u0439":24,"\u043a":24,"\u043d":24,"\u043f":24,"\u0440":24,"\u0446":24,"\u0448":24,"\u0449":24,"\u044b":24,"\u044c":24,"\u044e":24,"\u0453":24,"\u0457":24,"\u045a":24,"\u045c":24,"\u045f":24,"\u0444":31,"\u043c":28,"\u0456":5,")":-11,"]":-11,"}":-11,":":21,";":21,",":24,".":24,"\u2026":24,"\u00ad":26,"\u2013":26,"\u2014":26,"\u203a":18,"\u00bb":18,"\u00ab":13,"\u2039":13}},"\u0414":{"d":"58,-243r135,0r0,217r22,1r-3,83r-24,0r-2,-58r-153,0r-2,58r-25,0r-2,-83r18,-1v34,-50,38,-128,36,-217xm87,-216v2,77,-3,146,-32,190r107,0r0,-190r-75,0","w":226,"k":{"\u0427":6,"\u0414":-5,"\u0402":5,"\u0417":-2,"\u042d":-2,"\u0424":4,"\u041b":-5,"\u0409":-5,"\u0422":4,"\u042a":4,"\u040b":4,"\u0408":-4,"\u041e":3,"\u0421":3,"\u0404":3,"\u0423":1,"\u040e":1,"\u0416":-2,"\u042f":-3,"\u0430":-2,"\u0431":2,"\u0447":7,"\u0434":-5,"\u0452":1,"\u0437":-3,"\u044d":-3,"\u04d9":-3,"\u043b":-5,"\u0459":-5,"\u0442":6,"\u044a":6,"\u0458":-13,"\u0435":2,"\u043e":2,"\u0441":2,"\u0451":2,"\u0454":2,"\u045b":1,"\u0443":2,"\u045e":2,"\u044f":-3,"\u0436":-3,"\u0445":-1,"\u0444":3,",":-7,".":-7,"\u2026":-7}},"\u0415":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0","w":177,"k":{"\u0427":5,"\u0414":-7,"\u0417":-3,"\u042d":-3,"\u041b":-9,"\u0409":-9,"\u0422":-2,"\u042a":-2,"\u040b":-2,"\u0408":-6,"\u0423":-3,"\u040e":-3,"\u042f":-3,"\u0431":1,"\u0447":5,"\u0434":-4,"\u0437":-3,"\u044d":-3,"\u04d9":-3,"\u043b":-5,"\u0459":-5,"\u0442":5,"\u044a":5,"\u0458":1,"\u0435":3,"\u043e":3,"\u0441":3,"\u0451":3,"\u0454":3,"\u045b":-1,"\u0443":2,"\u045e":2,"\u044f":-3,"\u0436":-3,"\u0444":3}},"\u0416":{"d":"4,0v24,-50,25,-125,90,-131r-86,-112r36,0r76,108r9,0r0,-108r30,0r0,108r10,0r75,-108r37,0r-86,112v65,4,66,81,89,131r-32,0v-22,-47,-19,-120,-93,-111r0,111r-30,0r0,-111v-74,-8,-70,65,-93,111r-32,0","w":288,"k":{"\u0427":6,"\u0414":-11,"\u0402":-7,"\u0417":-5,"\u042d":-5,"\u0424":8,"\u041b":-13,"\u0409":-13,"\u0422":-10,"\u042a":-10,"\u040b":-10,"\u0408":-9,"\u041e":7,"\u0421":7,"\u0404":7,"\u0423":-7,"\u040e":-7,"\u0416":-6,"\u0410":-2,"\u0425":-3,"\u042f":-8,"\u0430":-4,"\u0431":3,"\u0447":14,"\u0434":-9,"\u0452":-5,"\u0455":-1,"\u0437":-5,"\u044d":-5,"\u04d9":-5,"\u043b":-10,"\u0459":-10,"\u0442":8,"\u044a":8,"\u045b":-5,"\u0443":7,"\u045e":7,"\u044f":-4,"\u0436":-5,"\u0445":-4,"\u043c":-3,"\u0456":-1,"\u00ad":7,"\u2013":7,"\u2014":7}},"\u0417":{"d":"27,-205r-9,-23v40,-33,135,-23,135,41v0,31,-23,51,-49,60v34,4,59,25,59,60v-1,75,-96,86,-152,55r8,-24v33,24,115,18,111,-32v-3,-41,-42,-48,-81,-46r0,-24v39,4,72,-16,72,-45v1,-48,-67,-43,-94,-22","w":177,"k":{"\u0427":8,"\u0414":1,"\u0402":4,"\u0424":4,"\u0422":2,"\u042a":2,"\u040b":2,"\u0408":2,"\u041e":3,"\u0421":3,"\u0404":3,"\u0423":5,"\u040e":5,"\u0416":2,"\u0425":3,"\u042f":-2,"\u0447":7,"\u0434":1,"\u043b":-1,"\u0459":-1,"\u0442":2,"\u044a":2,"\u0458":2,"\u0443":1,"\u045e":1,"\u0445":4}},"\u0418":{"d":"27,-243r30,0r-2,206v33,-69,83,-140,123,-206r32,0r0,243r-30,0r2,-202v-33,70,-82,136,-121,202r-34,0r0,-243","w":236,"k":{"\u0427":2,"\u0447":3,"\u0437":-2,"\u044d":-2,"\u04d9":-2,"\u043b":-2,"\u0459":-2,"\u0442":1,"\u044a":1,"\u044f":-1,"\u0436":-2,",":-2,".":-2,"\u2026":-2}},"\u0419":{"d":"27,-243r30,0r-2,206v33,-69,83,-140,123,-206r32,0r0,243r-30,0r2,-202v-33,70,-82,136,-121,202r-34,0r0,-243xm72,-294r24,0v1,11,5,23,22,23v17,0,21,-11,22,-23r25,0v-2,24,-16,39,-47,39v-30,0,-44,-15,-46,-39","w":236,"k":{"\u0427":2,"\u0447":3,"\u0437":-2,"\u044d":-2,"\u04d9":-2,"\u043b":-2,"\u0459":-2,"\u0442":1,"\u044a":1,"\u044f":-1,"\u0436":-2,",":-2,".":-2,"\u2026":-2}},"\u041a":{"d":"158,0v-25,-46,-22,-119,-99,-111r0,111r-32,0r0,-243r32,0r0,108r9,0r84,-108r37,0r-92,112v69,7,69,83,95,131r-34,0","w":195,"k":{"\u0427":6,"\u0414":-11,"\u0402":-7,"\u0417":-5,"\u042d":-5,"\u0424":8,"\u041b":-13,"\u0409":-13,"\u0422":-10,"\u042a":-10,"\u040b":-10,"\u0408":-9,"\u041e":7,"\u0421":7,"\u0404":7,"\u0423":-7,"\u040e":-7,"\u0416":-6,"\u0410":-2,"\u0425":-3,"\u042f":-8,"\u0430":-4,"\u0431":3,"\u0447":14,"\u0434":-9,"\u0452":-5,"\u0455":-1,"\u0437":-5,"\u044d":-5,"\u04d9":-5,"\u043b":-10,"\u0459":-10,"\u0442":8,"\u044a":8,"\u045b":-5,"\u0443":7,"\u045e":7,"\u044f":-4,"\u0436":-5,"\u0445":-4,"\u043c":-3,"\u0456":-1,"\u00ad":7,"\u2013":7,"\u2014":7}},"\u041b":{"d":"-3,-22v71,-17,40,-139,47,-221r143,0r0,243r-32,0r0,-216r-80,0v-4,93,21,210,-74,219","w":213,"k":{"\u0427":2,"\u0447":3,"\u0437":-2,"\u044d":-2,"\u04d9":-2,"\u043b":-2,"\u0459":-2,"\u0442":1,"\u044a":1,"\u044f":-1,"\u0436":-2,",":-2,".":-2,"\u2026":-2}},"\u041c":{"d":"238,0r-11,-211v-9,28,-18,59,-30,92r-43,118r-24,0r-40,-116v-13,-33,-18,-67,-28,-94r-11,211r-30,0r17,-243r40,0r41,118v10,30,19,57,25,82v17,-63,47,-137,69,-200r40,0r16,243r-31,0","w":289,"k":{"\u0427":6,"\u0414":-3,"\u041b":-4,"\u0409":-4,"\u0423":1,"\u040e":1,"\u0410":3,"\u042f":-2,"\u0430":-1,"\u0447":5,"\u0434":-2,"\u0437":-3,"\u044d":-3,"\u04d9":-3,"\u043b":-2,"\u0459":-2,"\u044f":-3,"\u0436":-3}},"\u041d":{"d":"27,-243r32,0r0,102r117,0r0,-102r32,0r0,243r-32,0r0,-114r-117,0r0,114r-32,0r0,-243","w":234,"k":{"\u0427":2,"\u0447":3,"\u0437":-2,"\u044d":-2,"\u04d9":-2,"\u043b":-2,"\u0459":-2,"\u0442":1,"\u044a":1,"\u044f":-1,"\u0436":-2,",":-2,".":-2,"\u2026":-2}},"\u041e":{"d":"122,4v-64,0,-109,-50,-109,-123v0,-77,47,-128,112,-128v67,0,110,51,110,123v0,83,-51,128,-113,128xm46,-120v0,51,28,99,78,98v50,0,78,-45,78,-100v0,-48,-26,-99,-78,-99v-52,0,-78,48,-78,101","w":248,"k":{"\u0427":3,"\u0414":8,"\u0402":5,"\u0417":5,"\u042d":5,"\u041b":1,"\u0409":1,"\u0422":3,"\u042a":3,"\u040b":3,"\u0408":4,"\u0423":8,"\u040e":8,"\u0416":6,"\u0410":5,"\u0425":10,"\u042f":-1,"\u0447":-1,"\u0434":3,"\u0452":-2,"\u0437":-3,"\u044d":-3,"\u04d9":-3,"\u0442":-5,"\u044a":-5,"\u045b":-3,"\u0443":-4,"\u045e":-4,"\u044f":-2,"\u0445":2,"\u043c":-2}},"\u041f":{"d":"27,-243r176,0r0,243r-32,0r0,-216r-112,0r0,216r-32,0r0,-243","w":230,"k":{"\u0427":2,"\u0447":3,"\u0437":-2,"\u044d":-2,"\u04d9":-2,"\u043b":-2,"\u0459":-2,"\u0442":1,"\u044a":1,"\u044f":-1,"\u0436":-2,",":-2,".":-2,"\u2026":-2}},"\u0420":{"d":"177,-174v0,61,-57,88,-118,76r0,98r-32,0r0,-239v62,-12,150,-6,150,65xm59,-217r0,94v44,9,86,-7,86,-49v0,-43,-48,-54,-86,-45","w":191,"k":{"\u0427":3,"\u0414":24,"\u0417":8,"\u042d":8,"\u0424":4,"\u041b":10,"\u0409":10,"\u0408":31,"\u041e":3,"\u0421":3,"\u0404":3,"\u0423":4,"\u040e":4,"\u0416":8,"\u0410":30,"\u0425":9,"\u041c":6,"\u0430":9,"\u0431":2,"\u0447":4,"\u0434":17,"\u0452":-3,"\u0455":7,"\u043b":9,"\u0459":9,"\u0442":-2,"\u044a":-2,"\u0458":7,"\u0435":10,"\u043e":10,"\u0441":10,"\u0451":10,"\u0454":10,"\u045b":-3,"\u044f":3,"\u0432":5,"\u0433":5,"\u0491":5,"\u0438":5,"\u0439":5,"\u043a":5,"\u043d":5,"\u043f":5,"\u0440":5,"\u0446":5,"\u0448":5,"\u0449":5,"\u044b":5,"\u044c":5,"\u044e":5,"\u0453":5,"\u0457":5,"\u045a":5,"\u045c":5,"\u045f":5,"\u0444":10,"\u043c":5,"\u0456":5,":":8,";":8,",":50,".":50,"\u2026":50,"\u00ad":5,"\u2013":5,"\u2014":5,"\u203a":3,"\u00bb":3}},"\u0421":{"d":"190,-33r7,25v-11,6,-35,12,-65,12v-68,0,-119,-43,-119,-123v0,-97,98,-150,184,-117r-8,26v-67,-29,-143,8,-143,90v0,79,75,116,144,87","w":208,"k":{"\u0427":4,"\u0414":-8,"\u0402":-13,"\u0417":-7,"\u042d":-7,"\u0424":9,"\u041b":-13,"\u0409":-13,"\u0422":-13,"\u042a":-13,"\u040b":-13,"\u041e":7,"\u0421":7,"\u0404":7,"\u0423":-6,"\u040e":-6,"\u0416":-5,"\u0410":-1,"\u0425":-3,"\u042f":-5,"\u0430":2,"\u0431":5,"\u0447":21,"\u0434":-4,"\u0452":-5,"\u0437":-4,"\u044d":-4,"\u04d9":-4,"\u043b":-6,"\u0459":-6,"\u0442":12,"\u044a":12,"\u0435":6,"\u043e":6,"\u0441":6,"\u0451":6,"\u0454":6,"\u045b":-5,"\u0443":9,"\u045e":9,"\u0436":-5,"\u0444":6}},"\u0422":{"d":"73,0r0,-216r-73,0r0,-27r179,0r0,27r-74,0r0,216r-32,0","w":178,"k":{"\u0427":3,"\u0414":18,"\u0402":-19,"\u0417":-5,"\u042d":-5,"\u0424":15,"\u041b":9,"\u0409":9,"\u0422":-15,"\u042a":-15,"\u040b":-15,"\u0408":23,"\u041e":13,"\u0421":13,"\u0404":13,"\u0423":-14,"\u040e":-14,"\u0416":-7,"\u0410":29,"\u042f":2,"\u041c":3,"\u0430":29,"\u0431":9,"\u0447":32,"\u0434":36,"\u0452":-12,"\u0455":14,"\u0437":22,"\u044d":22,"\u04d9":22,"\u043b":32,"\u0459":32,"\u0442":22,"\u044a":22,"\u0458":8,"\u0435":33,"\u043e":33,"\u0441":33,"\u0451":33,"\u0454":33,"\u045b":-12,"\u0443":17,"\u045e":17,"\u044f":28,"\u0436":22,"\u0445":21,"\u0432":24,"\u0433":24,"\u0491":24,"\u0438":24,"\u0439":24,"\u043a":24,"\u043d":24,"\u043f":24,"\u0440":24,"\u0446":24,"\u0448":24,"\u0449":24,"\u044b":24,"\u044c":24,"\u044e":24,"\u0453":24,"\u0457":24,"\u045a":24,"\u045c":24,"\u045f":24,"\u0444":31,"\u043c":28,"\u0456":5,")":-11,"]":-11,"}":-11,":":21,";":21,",":24,".":24,"\u2026":24,"\u00ad":26,"\u2013":26,"\u2014":26,"\u203a":18,"\u00bb":18,"\u00ab":13,"\u2039":13}},"\u0423":{"d":"1,-243r36,0r48,104v7,13,10,31,18,43r53,-147r33,0v-31,71,-55,158,-96,217v-17,25,-41,35,-72,28r2,-25v32,7,51,-21,60,-41v3,-5,2,-8,-1,-14","w":187,"k":{"\u0414":18,"\u0402":-19,"\u0417":-4,"\u042d":-4,"\u0424":4,"\u041b":6,"\u0409":6,"\u0422":-15,"\u042a":-15,"\u040b":-15,"\u0408":24,"\u041e":4,"\u0421":4,"\u0404":4,"\u0423":-9,"\u040e":-9,"\u0416":-5,"\u0410":21,"\u0425":-1,"\u041c":3,"\u0430":18,"\u0431":5,"\u0447":12,"\u0434":24,"\u0452":-13,"\u0455":15,"\u0437":7,"\u044d":7,"\u04d9":7,"\u043b":12,"\u0459":12,"\u0442":-4,"\u044a":-4,"\u0458":4,"\u0435":19,"\u043e":19,"\u0441":19,"\u0451":19,"\u0454":19,"\u045b":-12,"\u0443":3,"\u045e":3,"\u044f":15,"\u0436":6,"\u0445":6,"\u0432":9,"\u0433":9,"\u0491":9,"\u0438":9,"\u0439":9,"\u043a":9,"\u043d":9,"\u043f":9,"\u0440":9,"\u0446":9,"\u0448":9,"\u0449":9,"\u044b":9,"\u044c":9,"\u044e":9,"\u0453":9,"\u0457":9,"\u045a":9,"\u045c":9,"\u045f":9,"\u0444":18,"\u043c":13,"\u0456":3,")":-9,"]":-9,"}":-9,":":13,";":13,",":38,".":38,"\u2026":38,"\u00ad":14,"\u2013":14,"\u2014":14,"\u203a":7,"\u00bb":7,"\u00ab":10,"\u2039":10}},"\u0424":{"d":"116,-252r30,0r0,22v51,2,102,33,102,109v0,77,-52,105,-103,108r0,23r-30,0r0,-23v-51,-3,-102,-30,-102,-107v0,-80,56,-107,103,-110r0,-22xm116,-35r0,-173v-32,2,-71,24,-71,87v0,58,35,82,71,86xm146,-208r0,173v35,-3,70,-26,70,-86v0,-63,-35,-85,-70,-87","w":261,"k":{"\u0427":3,"\u0414":10,"\u0402":11,"\u0417":3,"\u042d":3,"\u041b":2,"\u0409":2,"\u0422":8,"\u042a":8,"\u040b":8,"\u0408":8,"\u0423":9,"\u040e":9,"\u0416":6,"\u0410":8,"\u0425":13,"\u041c":2,"\u0430":1,"\u0434":5,"\u0452":-2,"\u0437":-1,"\u044d":-1,"\u04d9":-1,"\u0442":-4,"\u044a":-4,"\u0435":-2,"\u043e":-2,"\u0441":-2,"\u0451":-2,"\u0454":-2,"\u045b":-2,"\u0443":-3,"\u045e":-3,"\u044f":-3}},"\u0425":{"d":"197,0r-37,0r-60,-102r-55,102r-36,0r74,-123r-71,-120r36,0r56,98r54,-98r37,0r-74,118","w":205,"k":{"\u0427":6,"\u0414":-4,"\u0402":-5,"\u0417":-2,"\u042d":-2,"\u0424":13,"\u041b":-9,"\u0409":-9,"\u0422":-6,"\u042a":-6,"\u040b":-6,"\u041e":10,"\u0421":10,"\u0404":10,"\u0423":-4,"\u040e":-4,"\u0416":-1,"\u0410":2,"\u042f":-4,"\u0430":2,"\u0431":6,"\u0447":18,"\u0434":-4,"\u0452":-3,"\u0437":-2,"\u044d":-2,"\u04d9":-2,"\u043b":-5,"\u0459":-5,"\u0442":7,"\u044a":7,"\u0458":1,"\u0435":7,"\u043e":7,"\u0441":7,"\u0451":7,"\u0454":7,"\u045b":-3,"\u0443":9,"\u045e":9,"\u044f":-1,"\u0436":-2,"\u0444":8,":":1,";":1}},"\u0426":{"d":"27,-243r32,0r0,217r111,0r0,-217r32,0r0,217r21,1r-2,83r-25,0r-2,-58r-167,0r0,-243","w":234,"k":{"\u0427":6,"\u0414":-5,"\u0402":5,"\u0417":-2,"\u042d":-2,"\u0424":4,"\u041b":-5,"\u0409":-5,"\u0422":4,"\u042a":4,"\u040b":4,"\u0408":-4,"\u041e":3,"\u0421":3,"\u0404":3,"\u0423":1,"\u040e":1,"\u0416":-2,"\u042f":-3,"\u0430":-2,"\u0431":2,"\u0447":7,"\u0434":-5,"\u0452":1,"\u0437":-3,"\u044d":-3,"\u04d9":-3,"\u043b":-5,"\u0459":-5,"\u0442":6,"\u044a":6,"\u0458":-13,"\u0435":2,"\u043e":2,"\u0441":2,"\u0451":2,"\u0454":2,"\u045b":1,"\u0443":2,"\u045e":2,"\u044f":-3,"\u0436":-3,"\u0445":-1,"\u0444":3,",":-7,".":-7,"\u2026":-7}},"\u0427":{"d":"25,-243r32,0v1,59,-14,134,51,130v17,0,35,-6,48,-14r0,-116r32,0r0,244r-32,0r0,-103v-53,26,-127,28,-131,-58r0,-83","w":214,"k":{"\u0427":2,"\u0447":3,"\u0437":-2,"\u044d":-2,"\u04d9":-2,"\u043b":-2,"\u0459":-2,"\u0442":1,"\u044a":1,"\u044f":-1,"\u0436":-2,",":-2,".":-2,"\u2026":-2}},"\u0428":{"d":"27,-243r31,0r0,217r79,0r0,-217r31,0r0,217r79,0r0,-217r31,0r0,243r-251,0r0,-243","w":304,"k":{"\u0427":2,"\u0447":3,"\u0437":-2,"\u044d":-2,"\u04d9":-2,"\u043b":-2,"\u0459":-2,"\u0442":1,"\u044a":1,"\u044f":-1,"\u0436":-2,",":-2,".":-2,"\u2026":-2}},"\u0429":{"d":"27,-243r31,0r0,217r79,0r0,-217r31,0r0,217r79,0r0,-217r31,0r0,217r21,1r-2,83r-25,0r-2,-58r-243,0r0,-243","w":311,"k":{"\u0427":6,"\u0414":-5,"\u0402":5,"\u0417":-2,"\u042d":-2,"\u0424":4,"\u041b":-5,"\u0409":-5,"\u0422":4,"\u042a":4,"\u040b":4,"\u0408":-4,"\u041e":3,"\u0421":3,"\u0404":3,"\u0423":1,"\u040e":1,"\u0416":-2,"\u042f":-3,"\u0430":-2,"\u0431":2,"\u0447":7,"\u0434":-5,"\u0452":1,"\u0437":-3,"\u044d":-3,"\u04d9":-3,"\u043b":-5,"\u0459":-5,"\u0442":6,"\u044a":6,"\u0458":-13,"\u0435":2,"\u043e":2,"\u0441":2,"\u0451":2,"\u0454":2,"\u045b":1,"\u0443":2,"\u045e":2,"\u044f":-3,"\u0436":-3,"\u0445":-1,"\u0444":3,",":-7,".":-7,"\u2026":-7}},"\u042a":{"d":"213,-78v2,75,-81,88,-151,77r0,-215r-63,0r0,-27r94,0r0,91v61,-9,119,11,120,74xm93,-127r0,103v44,8,88,-7,87,-53v-1,-46,-44,-57,-87,-50","w":227,"k":{"\u0427":18,"\u0414":3,"\u0402":31,"\u0417":4,"\u042d":4,"\u0424":1,"\u0422":26,"\u042a":26,"\u040b":26,"\u0408":2,"\u041e":1,"\u0421":1,"\u0404":1,"\u0423":17,"\u040e":17,"\u0410":2,"\u0405":3,"\u0425":8,"\u041c":2,"\u0447":4,"\u0434":1,"\u0452":3,"\u0455":2,"\u0442":9,"\u044a":9,"\u0458":3,"\u045b":2,"\u0443":5,"\u045e":5,"\u0445":4,")":11,"]":11,"}":11,"\u2019":17,"\u201d":17}},"\u042b":{"d":"181,-78v1,75,-84,88,-154,77r0,-242r32,0r0,91v62,-9,121,10,122,74xm59,-127r0,103v44,8,89,-7,89,-53v0,-47,-48,-57,-89,-50xm208,-243r32,0r0,243r-32,0r0,-243","w":268,"k":{"\u0427":2,"\u0447":3,"\u0437":-2,"\u044d":-2,"\u04d9":-2,"\u043b":-2,"\u0459":-2,"\u0442":1,"\u044a":1,"\u044f":-1,"\u0436":-2,",":-2,".":-2,"\u2026":-2}},"\u042c":{"d":"182,-78v1,76,-85,87,-155,77r0,-242r32,0r0,91v63,-9,122,10,123,74xm59,-127r0,103v44,8,91,-6,90,-52v-1,-47,-45,-58,-90,-51","w":196,"k":{"\u0427":18,"\u0414":3,"\u0402":31,"\u0417":4,"\u042d":4,"\u0424":1,"\u0422":26,"\u042a":26,"\u040b":26,"\u0408":2,"\u041e":1,"\u0421":1,"\u0404":1,"\u0423":17,"\u040e":17,"\u0410":2,"\u0405":3,"\u0425":8,"\u041c":2,"\u0447":4,"\u0434":1,"\u0452":3,"\u0455":2,"\u0442":9,"\u044a":9,"\u0458":3,"\u045b":2,"\u0443":5,"\u045e":5,"\u0445":4,")":11,"]":11,"}":11,"\u2019":17,"\u201d":17}},"\u042d":{"d":"45,-112r0,-25r112,0v1,-69,-74,-103,-135,-72r-7,-24v17,-8,38,-14,61,-14v76,0,115,56,115,126v0,105,-93,148,-180,113r7,-25v65,31,143,-8,140,-79r-113,0","w":204,"k":{"\u0427":3,"\u0414":8,"\u0402":5,"\u0417":5,"\u042d":5,"\u041b":1,"\u0409":1,"\u0422":3,"\u042a":3,"\u040b":3,"\u0408":4,"\u0423":8,"\u040e":8,"\u0416":6,"\u0410":5,"\u0425":10,"\u042f":-1,"\u0447":-1,"\u0434":3,"\u0452":-2,"\u0437":-3,"\u044d":-3,"\u04d9":-3,"\u0442":-5,"\u044a":-5,"\u045b":-3,"\u0443":-4,"\u045e":-4,"\u044f":-2,"\u0445":2,"\u043c":-2}},"\u042e":{"d":"27,-243r32,0r0,105r36,0v6,-67,46,-109,103,-109v63,0,101,51,101,123v0,84,-46,128,-104,128v-59,0,-98,-45,-101,-116r-35,0r0,112r-32,0r0,-243xm196,-21v46,0,71,-46,71,-101v0,-49,-22,-99,-70,-99v-48,0,-72,49,-72,101v0,51,25,99,71,99","w":312,"k":{"\u0427":3,"\u0414":8,"\u0402":5,"\u0417":5,"\u042d":5,"\u041b":1,"\u0409":1,"\u0422":3,"\u042a":3,"\u040b":3,"\u0408":4,"\u0423":8,"\u040e":8,"\u0416":6,"\u0410":5,"\u0425":10,"\u042f":-1,"\u0447":-1,"\u0434":3,"\u0452":-2,"\u0437":-3,"\u044d":-3,"\u04d9":-3,"\u0442":-5,"\u044a":-5,"\u045b":-3,"\u0443":-4,"\u045e":-4,"\u044f":-2,"\u0445":2,"\u043c":-2}},"\u042f":{"d":"137,-105v-80,-13,-75,63,-98,105r-34,0v21,-39,23,-100,67,-117v-30,-5,-54,-26,-54,-59v-2,-69,85,-76,150,-63r0,239r-31,0r0,-105xm137,-130r0,-87v-35,-7,-87,-2,-87,42v0,38,44,51,87,45","w":195,"k":{"\u0427":2,"\u0447":3,"\u0437":-2,"\u044d":-2,"\u04d9":-2,"\u043b":-2,"\u0459":-2,"\u0442":1,"\u044a":1,"\u044f":-1,"\u0436":-2,",":-2,".":-2,"\u2026":-2}},"\u0401":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0xm76,-278v0,10,-7,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18xm125,-260v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-18,18","w":177,"k":{"\u0427":5,"\u0414":-7,"\u0417":-3,"\u042d":-3,"\u041b":-9,"\u0409":-9,"\u0422":-2,"\u042a":-2,"\u040b":-2,"\u0408":-6,"\u0423":-3,"\u040e":-3,"\u042f":-3,"\u0431":1,"\u0447":5,"\u0434":-4,"\u0437":-3,"\u044d":-3,"\u04d9":-3,"\u043b":-5,"\u0459":-5,"\u0442":5,"\u044a":5,"\u0458":1,"\u0435":3,"\u043e":3,"\u0441":3,"\u0451":3,"\u0454":3,"\u045b":-1,"\u0443":2,"\u045e":2,"\u044f":-3,"\u0436":-3,"\u0444":3}},"\u0402":{"d":"192,-61v0,-63,-50,-95,-94,-61r0,122r-31,0r0,-216r-67,0r0,-27r186,0r0,27r-88,0v1,22,-2,49,1,69v12,-8,30,-15,49,-15v87,-3,96,139,44,185v-17,15,-35,24,-51,27r-5,-24v34,-10,56,-39,56,-87","w":239,"k":{"\u0427":16,"\u0414":-4,"\u0402":26,"\u0417":-2,"\u042d":-2,"\u0424":3,"\u041b":-6,"\u0409":-6,"\u0422":29,"\u042a":29,"\u040b":29,"\u0408":-4,"\u041e":2,"\u0421":2,"\u0404":2,"\u0423":4,"\u040e":4,"\u0416":-4,"\u042f":-4,"\u0447":5,"\u0434":-4,"\u0452":3,"\u043b":-4,"\u0459":-4,"\u0442":7,"\u044a":7,"\u045b":4,"\u0443":5,"\u045e":5,"\u044f":-3,"\u0436":-4}},"\u0403":{"d":"27,-243r129,0r0,27r-97,0r0,216r-32,0r0,-243xm102,-298r38,0r-46,42r-25,0","w":155,"k":{"\u0427":3,"\u0414":18,"\u0402":-19,"\u0417":-5,"\u042d":-5,"\u0424":15,"\u041b":9,"\u0409":9,"\u0422":-15,"\u042a":-15,"\u040b":-15,"\u0408":23,"\u041e":13,"\u0421":13,"\u0404":13,"\u0423":-14,"\u040e":-14,"\u0416":-7,"\u0410":29,"\u042f":2,"\u041c":3,"\u0430":29,"\u0431":9,"\u0447":32,"\u0434":36,"\u0452":-12,"\u0455":14,"\u0437":22,"\u044d":22,"\u04d9":22,"\u043b":32,"\u0459":32,"\u0442":22,"\u044a":22,"\u0458":8,"\u0435":33,"\u043e":33,"\u0441":33,"\u0451":33,"\u0454":33,"\u045b":-12,"\u0443":17,"\u045e":17,"\u044f":28,"\u0436":22,"\u0445":21,"\u0432":24,"\u0433":24,"\u0491":24,"\u0438":24,"\u0439":24,"\u043a":24,"\u043d":24,"\u043f":24,"\u0440":24,"\u0446":24,"\u0448":24,"\u0449":24,"\u044b":24,"\u044c":24,"\u044e":24,"\u0453":24,"\u0457":24,"\u045a":24,"\u045c":24,"\u045f":24,"\u0444":31,"\u043c":28,"\u0456":5,")":-11,"]":-11,"}":-11,":":21,";":21,",":24,".":24,"\u2026":24,"\u00ad":26,"\u2013":26,"\u2014":26,"\u203a":18,"\u00bb":18,"\u00ab":13,"\u2039":13}},"\u0404":{"d":"196,-235r-8,24v-62,-30,-142,11,-141,75r124,0r0,24r-124,0v-3,68,77,111,143,80r5,24v-80,35,-182,-10,-182,-113v0,-68,47,-126,126,-126v31,0,48,7,57,12","w":207,"k":{"\u0427":4,"\u0414":-8,"\u0402":-13,"\u0417":-7,"\u042d":-7,"\u0424":9,"\u041b":-13,"\u0409":-13,"\u0422":-13,"\u042a":-13,"\u040b":-13,"\u041e":7,"\u0421":7,"\u0404":7,"\u0423":-6,"\u040e":-6,"\u0416":-5,"\u0410":-1,"\u0425":-3,"\u042f":-5,"\u0430":2,"\u0431":5,"\u0447":21,"\u0434":-4,"\u0452":-5,"\u0437":-4,"\u044d":-4,"\u04d9":-4,"\u043b":-6,"\u0459":-6,"\u0442":12,"\u044a":12,"\u0435":6,"\u043e":6,"\u0441":6,"\u0451":6,"\u0454":6,"\u045b":-5,"\u0443":9,"\u045e":9,"\u0436":-5,"\u0444":6}},"\u0405":{"d":"15,-12r8,-26v29,23,107,21,107,-26v0,-23,-13,-36,-46,-48v-40,-14,-64,-34,-64,-68v0,-58,86,-81,132,-55r-9,26v-8,-5,-23,-11,-45,-11v-33,0,-46,19,-46,36v0,22,14,36,48,46v88,26,83,142,-23,142v-23,0,-49,-7,-62,-16","w":177,"k":{"\u0427":9,"\u0414":2,"\u041b":-2,"\u0409":-2,"\u0422":3,"\u042a":3,"\u040b":3,"\u0408":1,"\u0423":1,"\u040e":1,"\u042f":-2,"\u0447":6,"\u0452":3,"\u043b":-1,"\u0459":-1,"\u0442":9,"\u044a":9,"\u0458":1,"\u0435":-2,"\u043e":-2,"\u0441":-2,"\u0451":-2,"\u0454":-2,"\u0443":4,"\u045e":4}},"\u0406":{"d":"27,-243r32,0r0,243r-32,0r0,-243","w":86,"k":{"\u0427":2,"\u0447":3,"\u0437":-2,"\u044d":-2,"\u04d9":-2,"\u043b":-2,"\u0459":-2,"\u0442":1,"\u044a":1,"\u044f":-1,"\u0436":-2,",":-2,".":-2,"\u2026":-2}},"\u0407":{"d":"27,-243r32,0r0,243r-32,0r0,-243xm10,-260v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-17,18xm94,-278v0,10,-6,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18","w":86,"k":{"\u0427":2,"\u0447":3,"\u0437":-2,"\u044d":-2,"\u04d9":-2,"\u043b":-2,"\u0459":-2,"\u0442":1,"\u044a":1,"\u044f":-1,"\u0436":-2,",":-2,".":-2,"\u2026":-2}},"\u0408":{"d":"77,-83r0,-160r31,0r0,163v1,79,-50,94,-107,78r5,-25v39,10,71,5,71,-56","w":133,"k":{"\u0414":4,"\u0408":9,"\u0423":-2,"\u040e":-2,"\u0410":2,"\u042f":-2,"\u0447":2,"\u0434":3,"\u0452":-3,"\u0458":1,"\u045b":-3}},"\u0409":{"d":"-2,-22v70,-18,41,-139,47,-221r135,0r0,92v63,-9,122,10,123,73v2,76,-84,87,-154,77r0,-215r-74,0v-4,92,20,208,-72,219xm180,-127r0,103v45,8,90,-7,90,-53v-1,-47,-45,-57,-90,-50","w":317,"k":{"\u0427":18,"\u0414":3,"\u0402":31,"\u0417":4,"\u042d":4,"\u0424":1,"\u0422":26,"\u042a":26,"\u040b":26,"\u0408":2,"\u041e":1,"\u0421":1,"\u0404":1,"\u0423":17,"\u040e":17,"\u0410":2,"\u0405":3,"\u0425":8,"\u041c":2,"\u0447":4,"\u0434":1,"\u0452":3,"\u0455":2,"\u0442":9,"\u044a":9,"\u0458":3,"\u045b":2,"\u0443":5,"\u045e":5,"\u0445":4,")":11,"]":11,"}":11,"\u2019":17,"\u201d":17}},"\u040a":{"d":"309,-77v0,76,-84,86,-154,76r0,-118r-96,0r0,119r-32,0r0,-243r32,0r0,97r96,0r0,-97r31,0r0,95v60,-9,123,8,123,71xm186,-124r0,100v45,8,90,-6,90,-52v0,-46,-46,-53,-90,-48","w":322,"k":{"\u0427":18,"\u0414":3,"\u0402":31,"\u0417":4,"\u042d":4,"\u0424":1,"\u0422":26,"\u042a":26,"\u040b":26,"\u0408":2,"\u041e":1,"\u0421":1,"\u0404":1,"\u0423":17,"\u040e":17,"\u0410":2,"\u0405":3,"\u0425":8,"\u041c":2,"\u0447":4,"\u0434":1,"\u0452":3,"\u0455":2,"\u0442":9,"\u044a":9,"\u0458":3,"\u045b":2,"\u0443":5,"\u045e":5,"\u0445":4,")":11,"]":11,"}":11,"\u2019":17,"\u201d":17}},"\u040b":{"d":"186,0v-3,-56,17,-139,-43,-138v-15,0,-33,7,-45,16r0,122r-32,0r0,-216r-66,0r0,-27r182,0r0,27r-84,0r0,69v14,-8,34,-16,55,-16v79,-2,63,88,64,163r-31,0","w":243,"k":{"\u0427":16,"\u0402":30,"\u0424":3,"\u0422":25,"\u042a":25,"\u040b":25,"\u0408":1,"\u041e":2,"\u0421":2,"\u0404":2,"\u0423":8,"\u040e":8,"\u042f":-2,"\u0447":6,"\u0452":4,"\u0442":10,"\u044a":10,"\u0458":5,"\u045b":3,"\u0443":7,"\u045e":7,"\u044f":-1}},"\u040c":{"d":"158,0v-25,-46,-22,-119,-99,-111r0,111r-32,0r0,-243r32,0r0,108r9,0r84,-108r37,0r-92,112v69,7,69,83,95,131r-34,0xm115,-296r38,0r-46,42r-26,0","w":195,"k":{"\u0427":6,"\u0414":-11,"\u0402":-7,"\u0417":-5,"\u042d":-5,"\u0424":8,"\u041b":-13,"\u0409":-13,"\u0422":-10,"\u042a":-10,"\u040b":-10,"\u0408":-9,"\u041e":7,"\u0421":7,"\u0404":7,"\u0423":-7,"\u040e":-7,"\u0416":-6,"\u0410":-2,"\u0425":-3,"\u042f":-8,"\u0430":-4,"\u0431":3,"\u0447":14,"\u0434":-9,"\u0452":-5,"\u0455":-1,"\u0437":-5,"\u044d":-5,"\u04d9":-5,"\u043b":-10,"\u0459":-10,"\u0442":8,"\u044a":8,"\u045b":-5,"\u0443":7,"\u045e":7,"\u044f":-4,"\u0436":-5,"\u0445":-4,"\u043c":-3,"\u0456":-1,"\u00ad":7,"\u2013":7,"\u2014":7}},"\u040e":{"d":"1,-243r36,0r48,104v7,13,10,31,18,43r53,-147r33,0v-31,71,-55,158,-96,217v-17,25,-41,35,-72,28r2,-25v32,7,51,-21,60,-41v3,-5,2,-8,-1,-14xm48,-294r24,0v1,11,5,22,22,22v17,0,21,-10,22,-22r24,0v-2,24,-15,39,-46,39v-30,0,-44,-15,-46,-39","w":187,"k":{"\u0414":18,"\u0402":-19,"\u0417":-4,"\u042d":-4,"\u0424":4,"\u041b":6,"\u0409":6,"\u0422":-15,"\u042a":-15,"\u040b":-15,"\u0408":24,"\u041e":4,"\u0421":4,"\u0404":4,"\u0423":-9,"\u040e":-9,"\u0416":-5,"\u0410":21,"\u0425":-1,"\u041c":3,"\u0430":18,"\u0431":5,"\u0447":12,"\u0434":24,"\u0452":-13,"\u0455":15,"\u0437":7,"\u044d":7,"\u04d9":7,"\u043b":12,"\u0459":12,"\u0442":-4,"\u044a":-4,"\u0458":4,"\u0435":19,"\u043e":19,"\u0441":19,"\u0451":19,"\u0454":19,"\u045b":-12,"\u0443":3,"\u045e":3,"\u044f":15,"\u0436":6,"\u0445":6,"\u0432":9,"\u0433":9,"\u0491":9,"\u0438":9,"\u0439":9,"\u043a":9,"\u043d":9,"\u043f":9,"\u0440":9,"\u0446":9,"\u0448":9,"\u0449":9,"\u044b":9,"\u044c":9,"\u044e":9,"\u0453":9,"\u0457":9,"\u045a":9,"\u045c":9,"\u045f":9,"\u0444":18,"\u043c":13,"\u0456":3,")":-9,"]":-9,"}":-9,":":13,";":13,",":38,".":38,"\u2026":38,"\u00ad":14,"\u2013":14,"\u2014":14,"\u203a":7,"\u00bb":7,"\u00ab":10,"\u2039":10}},"\u040f":{"d":"27,-243r32,0r0,217r111,0r0,-217r32,0r0,243r-72,0r-3,63r-25,0r-3,-63r-72,0r0,-243","w":228,"k":{"\u0427":2,"\u0447":3,"\u0437":-2,"\u044d":-2,"\u04d9":-2,"\u043b":-2,"\u0459":-2,"\u0442":1,"\u044a":1,"\u044f":-1,"\u0436":-2,",":-2,".":-2,"\u2026":-2}},"\u0430":{"d":"82,-178v97,3,56,97,70,178r-29,0v-2,-7,0,-17,-4,-22v-9,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-42,-39,-44v-17,0,-34,5,-46,13r-7,-21v14,-9,35,-15,57,-15xm74,-19v38,-2,48,-28,44,-70v-35,-1,-74,5,-74,39v0,21,14,31,30,31","w":173,"k":{"\u0447":5,"\u0452":4,"\u043b":-2,"\u0459":-2,"\u0442":3,"\u044a":3,"\u0458":3,"\u045b":3,"\u0443":4,"\u045e":4,"\u044f":-3}},"\u0431":{"d":"159,-260r-1,27v-35,10,-82,11,-99,40v-9,16,-19,42,-18,58v33,-69,135,-43,135,47v0,57,-29,92,-80,92v-96,0,-97,-153,-55,-213v24,-35,73,-39,118,-51xm96,-151v-32,1,-49,27,-48,61v0,29,13,70,48,70v35,0,48,-34,48,-66v0,-28,-11,-65,-48,-65","w":190,"k":{"\u0447":4,"\u0434":3,"\u0452":4,"\u043b":-1,"\u0459":-1,"\u0442":3,"\u044a":3,"\u0458":3,"\u045b":2,"\u0443":4,"\u045e":4,"\u0436":3,"\u0445":5}},"\u0432":{"d":"25,0r0,-172v47,-4,129,-17,133,40v2,23,-18,34,-36,40v26,4,44,18,44,43v0,62,-89,51,-141,49xm56,-153r0,52v32,1,67,0,71,-28v3,-25,-42,-27,-71,-24xm55,-80r0,59v32,4,77,5,79,-29v2,-32,-43,-30,-79,-30","w":180,"k":{"\u0431":1,"\u0447":6,"\u0452":4,"\u043b":-3,"\u0459":-3,"\u0442":4,"\u044a":4,"\u0458":3,"\u045b":3,"\u0443":4,"\u045e":4,"\u044f":-2,"\u0436":-1}},"\u0433":{"d":"25,-174r107,0r0,25r-75,0r0,149r-32,0r0,-174","w":138,"k":{"\u0430":5,"\u0431":-1,"\u0447":3,"\u0434":13,"\u0455":2,"\u0437":-2,"\u044d":-2,"\u04d9":-2,"\u043b":5,"\u0459":5,"\u0442":-7,"\u044a":-7,"\u0458":4,"\u0435":7,"\u043e":7,"\u0441":7,"\u0451":7,"\u0454":7,"\u0443":-5,"\u045e":-5,"\u044f":2,"\u0436":-4,"\u0445":-2,"\u0432":3,"\u0433":3,"\u0491":3,"\u0438":3,"\u0439":3,"\u043a":3,"\u043d":3,"\u043f":3,"\u0440":3,"\u0446":3,"\u0448":3,"\u0449":3,"\u044b":3,"\u044c":3,"\u044e":3,"\u0453":3,"\u0457":3,"\u045a":3,"\u045c":3,"\u045f":3,"\u0444":7,"\u043c":2,"\u0456":3,")":8,"]":8,"}":8,",":27,".":27,"\u2026":27,"\u00ad":12,"\u2013":12,"\u2014":12,"\u00ab":5,"\u2039":5}},"\u0491":{"d":"25,-174r83,0r4,-39r23,0r-2,64r-76,0r0,149r-32,0r0,-174","w":141,"k":{"\u0430":5,"\u0431":-1,"\u0447":3,"\u0434":13,"\u0455":2,"\u0437":-2,"\u044d":-2,"\u04d9":-2,"\u043b":5,"\u0459":5,"\u0442":-7,"\u044a":-7,"\u0458":4,"\u0435":7,"\u043e":7,"\u0441":7,"\u0451":7,"\u0454":7,"\u0443":-5,"\u045e":-5,"\u044f":2,"\u0436":-4,"\u0445":-2,"\u0432":3,"\u0433":3,"\u0491":3,"\u0438":3,"\u0439":3,"\u043a":3,"\u043d":3,"\u043f":3,"\u0440":3,"\u0446":3,"\u0448":3,"\u0449":3,"\u044b":3,"\u044c":3,"\u044e":3,"\u0453":3,"\u0457":3,"\u045a":3,"\u045c":3,"\u045f":3,"\u0444":7,"\u043c":2,"\u0456":3,")":8,"]":8,"}":8,",":27,".":27,"\u2026":27,"\u00ad":12,"\u2013":12,"\u2014":12,"\u00ab":5,"\u2039":5}},"\u0434":{"d":"45,-174r116,0r0,150r18,1r-2,78r-24,0r-2,-55r-120,0r-2,55r-25,0r-1,-78r15,-1v26,-35,28,-90,27,-150xm73,-150v2,50,-5,95,-23,126r80,0r0,-126r-57,0","w":190,"k":{"\u0431":3,"\u0447":6,"\u0434":-7,"\u0452":5,"\u043b":-3,"\u0459":-3,"\u0442":3,"\u044a":3,"\u0458":-10,"\u0435":1,"\u043e":1,"\u0441":1,"\u0451":1,"\u0454":1,"\u045b":3,"\u044f":-3,"\u0436":-3,"\u0445":-1,"\u0444":2}},"\u0435":{"d":"166,-81r-122,0v-2,63,66,69,108,51r6,22v-11,5,-31,12,-59,12v-53,0,-85,-36,-85,-88v0,-53,31,-94,82,-94v63,0,74,53,70,97xm45,-104r92,0v0,-20,-9,-52,-44,-52v-32,0,-45,30,-48,52","w":180,"k":{"\u0431":-2,"\u0447":2,"\u0452":1,"\u043b":-2,"\u0459":-2,"\u0442":1,"\u044a":1,"\u0458":1,"\u0443":1,"\u045e":1,"\u044f":-2,"\u0445":1,"\u0444":-2}},"\u0436":{"d":"2,0v18,-34,26,-94,72,-95r-69,-79r36,0r58,76r6,0r0,-76r30,0r0,76r6,0r58,-76r36,0r-68,79v46,1,55,60,71,95r-32,0v-15,-29,-24,-87,-71,-77r0,77r-30,0r0,-77v-47,-9,-58,46,-72,77r-31,0","w":240,"k":{"\u0430":-4,"\u0447":5,"\u0434":-9,"\u0437":-4,"\u044d":-4,"\u04d9":-4,"\u043b":-10,"\u0459":-10,"\u0442":-6,"\u044a":-6,"\u0435":2,"\u043e":2,"\u0441":2,"\u0451":2,"\u0454":2,"\u0443":-3,"\u045e":-3,"\u044f":-6,"\u0436":-7,"\u0445":-5,"\u0444":3,"\u00ab":3,"\u2039":3}},"\u0437":{"d":"41,-80r0,-21v31,3,60,-9,59,-29v-1,-32,-54,-29,-76,-13r-7,-19v39,-23,113,-27,117,30v2,23,-23,33,-40,40v26,3,48,18,48,44v-1,57,-90,63,-132,38r8,-22v26,18,90,17,89,-18v0,-28,-34,-31,-66,-30","w":155,"k":{"\u0431":1,"\u0447":6,"\u0452":4,"\u043b":-3,"\u0459":-3,"\u0442":4,"\u044a":4,"\u0458":3,"\u045b":3,"\u0443":4,"\u045e":4,"\u044f":-2,"\u0436":-1}},"\u0438":{"d":"25,-174r30,0r-1,143v25,-50,55,-95,83,-143r37,0r0,174r-30,0r1,-145r-83,145r-37,0r0,-174","w":199,"k":{"\u0447":4,"\u0452":3,"\u043b":-1,"\u0459":-1,"\u0458":3,"\u045b":2,"\u0443":1,"\u045e":1,"\u044f":-1}},"\u0439":{"d":"25,-174r30,0r-1,143v25,-50,55,-95,83,-143r37,0r0,174r-30,0r1,-145r-83,145r-37,0r0,-174xm53,-245r23,0v1,15,9,27,23,27v15,0,23,-12,25,-27r23,0v-1,29,-20,44,-48,44v-32,0,-45,-19,-46,-44","w":199,"k":{"\u0447":4,"\u0452":3,"\u043b":-1,"\u0459":-1,"\u0458":3,"\u045b":2,"\u0443":1,"\u045e":1,"\u044f":-1}},"\u043a":{"d":"138,0v-17,-30,-29,-86,-80,-77r0,77r-32,0r0,-174r32,0r0,75r7,0r66,-75r38,0r-76,78v44,3,59,58,78,96r-33,0","w":172,"k":{"\u0430":-4,"\u0447":5,"\u0434":-9,"\u0437":-4,"\u044d":-4,"\u04d9":-4,"\u043b":-10,"\u0459":-10,"\u0442":-6,"\u044a":-6,"\u0435":2,"\u043e":2,"\u0441":2,"\u0451":2,"\u0454":2,"\u0443":-3,"\u045e":-3,"\u044f":-6,"\u0436":-7,"\u0445":-5,"\u0444":3,"\u00ab":3,"\u2039":3}},"\u043b":{"d":"1,-22v50,-7,31,-94,35,-152r121,0r0,174r-31,0r0,-149r-60,0v-1,74,9,152,-62,152","w":182,"k":{"\u0447":4,"\u0452":3,"\u043b":-1,"\u0459":-1,"\u0458":3,"\u045b":2,"\u0443":1,"\u045e":1,"\u044f":-1}},"\u043c":{"d":"15,0r13,-174r39,0r48,135r49,-135r39,0r12,174r-30,0r-8,-145v-12,41,-37,101,-53,144r-22,0v-18,-47,-30,-100,-51,-144r-7,145r-29,0","w":230,"k":{"\u0447":4,"\u0434":-4,"\u0452":2,"\u0437":-2,"\u044d":-2,"\u04d9":-2,"\u043b":-5,"\u0459":-5,"\u0442":1,"\u044a":1,"\u0443":2,"\u045e":2,"\u044f":-2}},"\u043d":{"d":"25,-174r32,0r0,70r82,0r0,-70r32,0r0,174r-32,0r0,-79r-82,0r0,79r-32,0r0,-174","w":196,"k":{"\u0447":4,"\u0452":3,"\u043b":-1,"\u0459":-1,"\u0458":3,"\u045b":2,"\u0443":1,"\u045e":1,"\u044f":-1}},"\u043e":{"d":"184,-89v0,65,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92v50,0,84,36,84,89xm46,-87v0,38,21,67,53,67v30,0,53,-28,53,-68v0,-30,-16,-66,-53,-66v-37,0,-53,34,-53,67","w":197,"k":{"\u0447":4,"\u0434":3,"\u0452":4,"\u043b":-1,"\u0459":-1,"\u0442":3,"\u044a":3,"\u0458":3,"\u045b":2,"\u0443":4,"\u045e":4,"\u0436":3,"\u0445":5}},"\u043f":{"d":"25,-174r145,0r0,174r-32,0r0,-149r-81,0r0,149r-32,0r0,-174","w":194,"k":{"\u0447":4,"\u0452":3,"\u043b":-1,"\u0459":-1,"\u0458":3,"\u045b":2,"\u0443":1,"\u045e":1,"\u044f":-1}},"\u0440":{"d":"26,71r-1,-245r28,0v2,9,0,22,3,30v37,-63,136,-32,136,54v0,91,-89,121,-134,67r0,94r-32,0xm108,-153v-36,0,-50,35,-50,82v0,32,23,49,49,50v33,0,52,-27,52,-67v0,-35,-18,-65,-51,-65","w":204,"k":{"\u0447":4,"\u0434":3,"\u0452":4,"\u043b":-1,"\u0459":-1,"\u0442":3,"\u044a":3,"\u0458":3,"\u045b":2,"\u0443":4,"\u045e":4,"\u0436":3,"\u0445":5}},"\u0441":{"d":"145,-30r5,24v-8,4,-27,10,-50,10v-53,0,-86,-36,-86,-89v0,-70,72,-113,137,-84r-7,24v-43,-23,-105,
