/**Sitecore/ODB (/other apps) general UI and effects; contains: jquery.imagefit, jcarousel, jquery select, custcheckbox, jqzoom, kievit and casino hand cufon fonts**/
/****
Smooth Dropdown for "mega dropdown" menus
****/
var menu=function(){
	var t=15,z=500,s=6,a;
	function dd(n){this.n=n; this.h=[]; this.c=[]}
	dd.prototype.init=function(p,c){
		a=c; var w=document.getElementById(p), s=w.getElementsByTagName('ul'), l=s.length, i=0;
		for(i;i<l;i++){
			var h=s[i].parentNode; this.h[i]=h; this.c[i]=s[i];
			h.onmouseover=new Function(this.n+'.st('+i+',true)');
			h.onmouseout=new Function(this.n+'.st('+i+')');
		}
	}
	dd.prototype.st=function(x,f){
		var c=this.c[x], h=this.h[x], p=h.getElementsByTagName('a')[0];
		clearInterval(c.t); c.style.overflow='hidden';
		if(f){
			p.className+=' '+a;
			if(!c.mh){c.style.display='block'; c.style.height=''; c.mh=c.offsetHeight; c.style.height=0}
			if(c.mh==c.offsetHeight){c.style.overflow='visible'}
			else{c.style.zIndex=z; z++; c.t=setInterval(function(){sl(c,1)},t)}
		}else{p.className=p.className.replace(a,''); c.t=setInterval(function(){sl(c,-1)},t)}
	}
	function sl(c,f){
		var h=c.offsetHeight;
		if((h<=0&&f!=1)||(h>=c.mh&&f==1)){
			if(f==1){c.style.filter=''; c.style.opacity=1; c.style.overflow='visible'}
			clearInterval(c.t); return
		}
		var d=(f==1)?Math.ceil((c.mh-h)/s):Math.ceil(h/s), o=h/c.mh;
		c.style.opacity=o; c.style.filter='alpha(opacity='+(o*100)+')';
		c.style.height=h+(d*f)+'px'
	}
	return{dd:dd}
}();
/* jquery.imagefit 
 *
 * Version 0.2 by Oliver Boermans <http://www.ollicle.com/eg/jquery/imagefit/>
 *
 * Extends jQuery <http://jquery.com>
 *
 */
(function($) {$.fn.imagefit = function(options) {var fit = {all: function(imgs) {imgs.each(function() {fit.one(this);})},one: function(img) {if ($(img).attr('class') == "inset rssblogthumb" && $(img).attr('startwidth') > 190) {$(img).width('190px').each(function() {$(this).height(Math.round($(this).attr('startheight') * ($(this).width() / $(this).attr('startwidth'))));})} else {if ($(img).attr('startwidth') > 450) {$(img).width('100%').each(function() {$(this).height(Math.round($(this).attr('startheight') * ($(this).width() / $(this).attr('startwidth'))));})}}}};this.each(function() {var container = this;var imgs = $('img', container).not($("table img"));imgs.each(function() {$(this).attr('startwidth', $(this).width()).attr('startheight', $(this).height()).css('max-width', $(this).attr('startwidth') + "px");fit.one(this);});$(window).bind('resize', function() {fit.all(imgs);});});return this;};})(jQuery);
/**
 * jCarousel - Riding carousels with jQuery
 *   http://sorgalla.com/jcarousel/
 *
 * Copyright (c) 2006 Jan Sorgalla (http://sorgalla.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 */
(function($) {$.fn.jcarousel = function(o) {return this.each(function() {new $jc(this, o);});};var defaults = {vertical: false,start: 1,offset: 1,size: null,scroll: 3,visible: null,animation: 'normal',easing: 'swing',auto: 0,wrap: null,initCallback: null,reloadCallback: null,itemLoadCallback: null,itemFirstInCallback: null,itemFirstOutCallback: null,itemLastInCallback: null,itemLastOutCallback: null,itemVisibleInCallback: null,itemVisibleOutCallback: null,buttonNextHTML: '<div></div>',buttonPrevHTML: '<div></div>',buttonNextEvent: 'click',buttonPrevEvent: 'click',buttonNextCallback: null,buttonPrevCallback: null};$.jcarousel = function(e, o) {this.options= $.extend({}, defaults, o || {});this.locked = false;this.container= null;this.clip = null;this.list = null;this.buttonNext = null;this.buttonPrev = null;this.wh = !this.options.vertical ? 'width' : 'height';this.lt = !this.options.vertical ? 'left' : 'top';var skin = '', split = e.className.split(' ');for (var i = 0; i < split.length; i++) {if (split[i].indexOf('jcarousel-skin') != -1) {$(e).removeClass(split[i]);var skin = split[i];break;}}if (e.nodeName == 'UL' || e.nodeName == 'OL') {this.list = $(e);this.container = this.list.parent();if (this.container.hasClass('jcarousel-clip')) {if (!this.container.parent().hasClass('jcarousel-container'))this.container = this.container.wrap('<div></div>');this.container = this.container.parent();} else if (!this.container.hasClass('jcarousel-container'))this.container = this.list.wrap('<div></div>').parent();} else {this.container = $(e);this.list = $(e).find('>ul,>ol,div>ul,div>ol');}if (skin != '' && this.container.parent()[0].className.indexOf('jcarousel-skin') == -1)this.container.wrap('<div class=" '+ skin + '"></div>');this.clip = this.list.parent();if (!this.clip.length || !this.clip.hasClass('jcarousel-clip'))this.clip = this.list.wrap('<div></div>').parent();this.buttonPrev = $('.jcarousel-prev', this.container);if (this.buttonPrev.size() == 0 && this.options.buttonPrevHTML != null)this.buttonPrev = this.clip.before(this.options.buttonPrevHTML).prev();this.buttonPrev.addClass(this.className('jcarousel-prev'));this.buttonNext = $('.jcarousel-next', this.container);if (this.buttonNext.size() == 0 && this.options.buttonNextHTML != null)this.buttonNext = this.clip.before(this.options.buttonNextHTML).prev();this.buttonNext.addClass(this.className('jcarousel-next'));this.clip.addClass(this.className('jcarousel-clip'));this.list.addClass(this.className('jcarousel-list'));this.container.addClass(this.className('jcarousel-container'));var di = this.options.visible != null ? Math.ceil(this.clipping() / this.options.visible) : null;var li = this.list.children('li');var self = this;if (li.size() > 0) {var wh = 0, i = this.options.offset;li.each(function() {self.format(this, i++);wh += self.dimension(this, di);});this.list.css(this.wh, wh + 'px');if (!o || o.size === undefined)this.options.size = li.size();}this.container.css('display', 'block');this.buttonNext.css('display', 'block');this.buttonPrev.css('display', 'block');this.funcNext = function() { self.next(); };this.funcPrev = function() { self.prev(); };this.funcResize = function() { self.reload(); };if (this.options.initCallback != null)this.options.initCallback(this, 'init');if ($.browser.safari) {this.buttons(false, false);$(window).bind('load', function() { self.setup(); });} elsethis.setup();};var $jc = $.jcarousel;$jc.fn = $jc.prototype = {jcarousel: '0.2.3'};$jc.fn.extend = $jc.extend = $.extend;$jc.fn.extend({setup: function() {this.first = null;this.last= null;this.prevFirst = null;this.prevLast= null;this.animating = false;this.timer = null;this.tail= null;this.inTail= false;if (this.locked)return;this.list.css(this.lt, this.pos(this.options.offset) + 'px');var p = this.pos(this.options.start);this.prevFirst = this.prevLast = null;this.animate(p, false);$(window).unbind('resize', this.funcResize).bind('resize', this.funcResize);},reset: function() {this.list.empty();this.list.css(this.lt, '0px');this.list.css(this.wh, '10px');if (this.options.initCallback != null)this.options.initCallback(this, 'reset');this.setup();},reload: function() {if (this.tail != null && this.inTail)this.list.css(this.lt, $jc.intval(this.list.css(this.lt)) + this.tail);this.tail = null;this.inTail = false;if (this.options.reloadCallback != null)this.options.reloadCallback(this);if (this.options.visible != null) {var self = this;var di = Math.ceil(this.clipping() / this.options.visible), wh = 0, lt = 0;$('li', this.list).each(function(i) {wh += self.dimension(this, di);if (i + 1 < self.first)lt = wh;});this.list.css(this.wh, wh + 'px');this.list.css(this.lt, -lt + 'px');}this.scroll(this.first, false);},lock: function() {this.locked = true;this.buttons();},unlock: function() {this.locked = false;this.buttons();},size: function(s) {if (s != undefined) {this.options.size = s;if (!this.locked)this.buttons();}return this.options.size;},has: function(i, i2) {if (i2 == undefined || !i2)i2 = i;if (this.options.size !== null && i2 > this.options.size)i2 = this.options.size;for (var j = i; j <= i2; j++) {var e = this.get(j);if (!e.length || e.hasClass('jcarousel-item-placeholder'))return false;}return true;},get: function(i) {return $('.jcarousel-item-' + i, this.list);},add: function(i, s) {var e = this.get(i), old = 0, add = 0;if (e.length == 0) {var c, e = this.create(i), j = $jc.intval(i);while (c = this.get(--j)) {if (j <= 0 || c.length) {j <= 0 ? this.list.prepend(e) : c.after(e);break;}}} elseold = this.dimension(e);e.removeClass(this.className('jcarousel-item-placeholder'));typeof s == 'string' ? e.html(s) : e.empty().append(s);var di = this.options.visible != null ? Math.ceil(this.clipping() / this.options.visible) : null;var wh = this.dimension(e, di) - old;if (i > 0 && i < this.first)this.list.css(this.lt, $jc.intval(this.list.css(this.lt)) - wh + 'px');this.list.css(this.wh, $jc.intval(this.list.css(this.wh)) + wh + 'px');return e;},remove: function(i) {var e = this.get(i);if (!e.length || (i >= this.first && i <= this.last))return;var d = this.dimension(e);if (i < this.first)this.list.css(this.lt, $jc.intval(this.list.css(this.lt)) + d + 'px');e.remove();this.list.css(this.wh, $jc.intval(this.list.css(this.wh)) - d + 'px');},next: function() {this.stopAuto();if (this.tail != null && !this.inTail)this.scrollTail(false);elsethis.scroll(((this.options.wrap == 'both' || this.options.wrap == 'last') && this.options.size != null && this.last == this.options.size) ? 1 : this.first + this.options.scroll);},prev: function() {this.stopAuto();if (this.tail != null && this.inTail)this.scrollTail(true);elsethis.scroll(((this.options.wrap == 'both' || this.options.wrap == 'first') && this.options.size != null && this.first == 1) ? this.options.size : this.first - this.options.scroll);},scrollTail: function(b) {if (this.locked || this.animating || !this.tail)return;var pos= $jc.intval(this.list.css(this.lt));!b ? pos -= this.tail : pos += this.tail;this.inTail = !b;this.prevFirst = this.first;this.prevLast= this.last;this.animate(pos);},scroll: function(i, a) {if (this.locked || this.animating)return;this.animate(this.pos(i), a);},pos: function(i) {if (this.locked || this.animating)return;i = $jc.intval(i);if (this.options.wrap != 'circular')i = i < 1 ? 1 : (this.options.size && i > this.options.size ? this.options.size : i);var back = this.first > i;var pos= $jc.intval(this.list.css(this.lt));var f = this.options.wrap != 'circular' && this.first <= 1 ? 1 : this.first;var c = back ? this.get(f) : this.get(this.last);var j = back ? f : f - 1;var e = null, l = 0, p = false, d = 0;while (back ? --j >= i : ++j < i) {e = this.get(j);p = !e.length;if (e.length == 0) {e = this.create(j).addClass(this.className('jcarousel-item-placeholder'));c[back ? 'before' : 'after' ](e);}c = e;d = this.dimension(e);if (p)l += d;if (this.first != null && (this.options.wrap == 'circular' || (j >= 1 && (this.options.size == null || j <= this.options.size))))pos = back ? pos + d : pos - d;}var clipping = this.clipping();var cache = [];var visible = 0, j = i, v = 0;var c = this.get(i - 1);while (++visible) {e = this.get(j);p = !e.length;if (e.length == 0) {e = this.create(j).addClass(this.className('jcarousel-item-placeholder'));c.length == 0 ? this.list.prepend(e) : c[back ? 'before' : 'after' ](e);}c = e;var d = this.dimension(e);if (d == 0) {alert('jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...');return 0;}if (this.options.wrap != 'circular' && this.options.size !== null && j > this.options.size)cache.push(e);else if (p)l += d;v += d;if (v >= clipping)break;j++;}for (var x = 0; x < cache.length; x++)cache[x].remove();if (l > 0) {this.list.css(this.wh, this.dimension(this.list) + l + 'px');if (back) {pos -= l;this.list.css(this.lt, $jc.intval(this.list.css(this.lt)) - l + 'px');}}var last = i + visible - 1;if (this.options.wrap != 'circular' && this.options.size && last > this.options.size)last = this.options.size;if (j > last) {visible = 0, j = last, v = 0;while (++visible) {var e = this.get(j--);if (!e.length)break;v += this.dimension(e);if (v >= clipping)break;}}var first = last - visible + 1;if (this.options.wrap != 'circular' && first < 1)first = 1;if (this.inTail && back) {pos += this.tail;this.inTail = false;}this.tail = null;if (this.options.wrap != 'circular' && last == this.options.size && (last - visible + 1) >= 1) {var m = $jc.margin(this.get(last), !this.options.vertical ? 'marginRight' : 'marginBottom');if ((v - m) > clipping)this.tail = v - clipping - m;}while (i-- > first)pos += this.dimension(this.get(i));this.prevFirst = this.first;this.prevLast= this.last;this.first = first;this.last= last;return pos;},animate: function(p, a) {if (this.locked || this.animating)return;this.animating = true;var self = this;var scrolled = function() {self.animating = false;if (p == 0)self.list.css(self.lt,0);if (self.options.wrap == 'both' || self.options.wrap == 'last' || self.options.size == null || self.last < self.options.size)self.startAuto();self.buttons();self.notify('onAfterAnimation');};this.notify('onBeforeAnimation');if (!this.options.animation || a == false) {this.list.css(this.lt, p + 'px');scrolled();} else {var o = !this.options.vertical ? {'left': p} : {'top': p};this.list.animate(o, this.options.animation, this.options.easing, scrolled);}},startAuto: function(s) {if (s != undefined)this.options.auto = s;if (this.options.auto == 0)return this.stopAuto();if (this.timer != null)return;var self = this;this.timer = setTimeout(function() { self.next(); }, this.options.auto * 1000);},stopAuto: function() {if (this.timer == null)return;clearTimeout(this.timer);this.timer = null;},buttons: function(n, p) {if (n == undefined || n == null) {var n = !this.locked && this.options.size !== 0 && ((this.options.wrap && this.options.wrap != 'first') || this.options.size == null || this.last < this.options.size);if (!this.locked && (!this.options.wrap || this.options.wrap == 'first') && this.options.size != null && this.last >= this.options.size)n = this.tail != null && !this.inTail;}if (p == undefined || p == null) {var p = !this.locked && this.options.size !== 0 && ((this.options.wrap && this.options.wrap != 'last') || this.first > 1);if (!this.locked && (!this.options.wrap || this.options.wrap == 'last') && this.options.size != null && this.first == 1)p = this.tail != null && this.inTail;}var self = this;this.buttonNext[n ? 'bind' : 'unbind'](this.options.buttonNextEvent, this.funcNext)[n ? 'removeClass' : 'addClass'](this.className('jcarousel-next-disabled')).attr('disabled', n ? false : true);this.buttonPrev[p ? 'bind' : 'unbind'](this.options.buttonPrevEvent, this.funcPrev)[p ? 'removeClass' : 'addClass'](this.className('jcarousel-prev-disabled')).attr('disabled', p ? false : true);if (this.buttonNext.length > 0 && (this.buttonNext[0].jcarouselstate == undefined || this.buttonNext[0].jcarouselstate != n) && this.options.buttonNextCallback != null) {this.buttonNext.each(function() { self.options.buttonNextCallback(self, this, n); });this.buttonNext[0].jcarouselstate = n;}if (this.buttonPrev.length > 0 && (this.buttonPrev[0].jcarouselstate == undefined || this.buttonPrev[0].jcarouselstate != p) && this.options.buttonPrevCallback != null) {this.buttonPrev.each(function() { self.options.buttonPrevCallback(self, this, p); });this.buttonPrev[0].jcarouselstate = p;}},notify: function(evt) {var state = this.prevFirst == null ? 'init' : (this.prevFirst < this.first ? 'next' : 'prev');this.callback('itemLoadCallback', evt, state);if (this.prevFirst !== this.first) {this.callback('itemFirstInCallback', evt, state, this.first);this.callback('itemFirstOutCallback', evt, state, this.prevFirst);}if (this.prevLast !== this.last) {this.callback('itemLastInCallback', evt, state, this.last);this.callback('itemLastOutCallback', evt, state, this.prevLast);}this.callback('itemVisibleInCallback', evt, state, this.first, this.last, this.prevFirst, this.prevLast);this.callback('itemVisibleOutCallback', evt, state, this.prevFirst, this.prevLast, this.first, this.last);},callback: function(cb, evt, state, i1, i2, i3, i4) {if (this.options[cb] == undefined || (typeof this.options[cb] != 'object' && evt != 'onAfterAnimation'))return;var callback = typeof this.options[cb] == 'object' ? this.options[cb][evt] : this.options[cb];if (!$.isFunction(callback))return;var self = this;if (i1 === undefined)callback(self, state, evt);else if (i2 === undefined)this.get(i1).each(function() { callback(self, this, i1, state, evt); });else {for (var i = i1; i <= i2; i++)if (i !== null && !(i >= i3 && i <= i4))this.get(i).each(function() { callback(self, this, i, state, evt); });}},create: function(i) {return this.format('<li></li>', i);},format: function(e, i) {var $e = $(e).addClass(this.className('jcarousel-item')).addClass(this.className('jcarousel-item-' + i));$e.attr('jcarouselindex', i);return $e;},className: function(c) {return c + ' ' + c + (!this.options.vertical ? '-horizontal' : '-vertical');},dimension: function(e, d) {var el = e.jquery != undefined ? e[0] : e;var old = !this.options.vertical ?el.offsetWidth + $jc.margin(el, 'marginLeft') + $jc.margin(el, 'marginRight') :el.offsetHeight + $jc.margin(el, 'marginTop') + $jc.margin(el, 'marginBottom');if (d == undefined || old == d)return old;var w = !this.options.vertical ?d - $jc.margin(el, 'marginLeft') - $jc.margin(el, 'marginRight') :d - $jc.margin(el, 'marginTop') - $jc.margin(el, 'marginBottom');$(el).css(this.wh, w + 'px');return this.dimension(el);},clipping: function() {return !this.options.vertical ?this.clip[0].offsetWidth - $jc.intval(this.clip.css('borderLeftWidth')) - $jc.intval(this.clip.css('borderRightWidth')) :this.clip[0].offsetHeight - $jc.intval(this.clip.css('borderTopWidth')) - $jc.intval(this.clip.css('borderBottomWidth'));},index: function(i, s) {if (s == undefined)s = this.options.size;return Math.round((((i-1) / s) - Math.floor((i-1) / s)) * s) + 1;}});$jc.extend({defaults: function(d) {return $.extend(defaults, d || {});},margin: function(e, p) {if (!e)return 0;var el = e.jquery != undefined ? e[0] : e;if (p == 'marginRight' && $.browser.safari) {var old = {'display': 'block', 'float': 'none', 'width': 'auto'}, oWidth, oWidth2;$.swap(el, old, function() { oWidth = el.offsetWidth; });old['marginRight'] = 0;$.swap(el, old, function() { oWidth2 = el.offsetWidth; });return oWidth2 - oWidth;}return $jc.intval($.css(el, p));},intval: function(v) {v = parseInt(v);return isNaN(v) ? 0 : v;}});})(jQuery);
/*
 *
 * Copyright (c) 2006-2008 Sam Collett (http://www.texotela.co.uk)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * Version 2.2.2
 * Demo: http://www.texotela.co.uk/code/jquery/select/
 *
 * $LastChangedDate$
 * $Rev$
 *
 */
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(6($){$.n.M=6(){5 e=6(a,v,t,b){5 c=Z.W("P");c.j=v,c.G=t;5 o=a.y;5 d=o.l;3(!a.p){a.p={};q(5 i=0;i<d;i++){a.p[o[i].j]=i}}3(9 a.p[v]=="Q")a.p[v]=d;a.y[a.p[v]]=c;3(b){c.k=8}};5 a=N;3(a.l==0)7 4;5 f=8;5 m=x;5 g,v,t;3(9(a[0])=="B"){m=8;g=a[0]}3(a.l>=2){3(9(a[1])=="L")f=a[1];h 3(9(a[2])=="L")f=a[2];3(!m){v=a[0];t=a[1]}}4.u(6(){3(4.A.s()!="z")7;3(m){q(5 a 11 g){e(4,a,g[a],f)}}h{e(4,v,t,f)}});7 4};$.n.10=6(b,c,d,e,f){3(9(b)!="E")7 4;3(9(c)!="B")c={};3(9(d)!="L")d=8;4.u(6(){5 a=4;$.Y(b,c,6(r){$(a).M(r,d);3(9 e=="6"){3(9 f=="B"){e.X(a,f)}h{e.J(a)}}})});7 4};$.n.V=6(){5 a=N;3(a.l==0)7 4;5 d=9(a[0]);5 v,C;3(d=="E"||d=="B"||d=="6")v=a[0];h 3(d=="U")C=a[0];h 7 4;4.u(6(){3(4.A.s()!="z")7;3(4.p)4.p=O;5 b=x;5 o=4.y;3(!!v){5 c=o.l;q(5 i=c-1;i>=0;i--){3(v.H==I){3(o[i].j.K(v)){b=8}}h 3(o[i].j==v){b=8}3(b&&a[1]===8)b=o[i].k;3(b){o[i]=O}b=x}}h{3(a[1]===8){b=o[C].k}h{b=8}3(b){4.T(C)}}});7 4};$.n.S=6(f){5 a=9(f)=="Q"?8:!!f;4.u(6(){3(4.A.s()!="z")7;5 o=4.y;5 d=o.l;5 e=[];q(5 i=0;i<d;i++){e[i]={v:o[i].j,t:o[i].G}}e.R(6(b,c){D=b.t.s(),F=c.t.s();3(D==F)7 0;3(a){7 D<F?-1:1}h{7 D>F?-1:1}});q(5 i=0;i<d;i++){o[i].G=e[i].t;o[i].j=e[i].v}});7 4};$.n.18=6(b,d){5 v=b;5 e=9(b);5 c=d||x;3(e!="E"&&e!="6"&&e!="B")7 4;4.u(6(){3(4.A.s()!="z")7 4;5 o=4.y;5 a=o.l;q(5 i=0;i<a;i++){3(v.H==I){3(o[i].j.K(v)){o[i].k=8}h 3(c){o[i].k=x}}h{3(o[i].j==v){o[i].k=8}h 3(c){o[i].k=x}}}});7 4};$.n.17=6(b,c){5 w=c||"k";3($(b).16()==0)7 4;4.u(6(){3(4.A.s()!="z")7 4;5 o=4.y;5 a=o.l;q(5 i=0;i<a;i++){3(w=="15"||(w=="k"&&o[i].k)){$(b).M(o[i].j,o[i].G)}}});7 4};$.n.14=6(b,c){5 d=x;5 v=b;5 e=9(v);5 f=9(c);3(e!="E"&&e!="6"&&e!="B")7 f=="6"?4:d;4.u(6(){3(4.A.s()!="z")7 4;3(d&&f!="6")7 x;5 o=4.y;5 a=o.l;q(5 i=0;i<a;i++){3(v.H==I){3(o[i].j.K(v)){d=8;3(f=="6")c.J(o[i],i)}}h{3(o[i].j==v){d=8;3(f=="6")c.J(o[i],i)}}}});7 f=="6"?4:d};$.n.13=6(){5 v=[];4.12("P:k").u(6(){v[v.l]=4.j});7 v}})(19);',62,72,'|||if|this|var|function|return|true|typeof||||||||else||value|selected|length||fn||cache|for||toLowerCase||each|||false|options|select|nodeName|object|index|o1t|string|o2t|text|constructor|RegExp|call|match|boolean|addOption|arguments|null|option|undefined|sort|sortOptions|remove|number|removeOption|createElement|apply|getJSON|document|ajaxAddOption|in|find|selectedValues|containsOption|all|size|copyOptions|selectOptions|jQuery'.split('|'),0,{}))
/**cufon Fonts**/
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * 2005 Mike Abbink published by FSI Fonts und Software GmbH
 * 
 * Trademark:
 * Kievit is a trademark of FSI Fonts und Software GmbH
 * 
 * Manufacturer:
 * FSI Fonts und Software GmbH
 * 
 * Designer:
 * Mike Abbink
 * 
 * Vendor URL:
 * http://www.fontfont.com
 * 
 * License information:
 * http://www.fontfont.com/eula/license.html
 */
Cufon.registerFont({"w":106,"face":{"font-family":"Kievit-Light","font-weight":200,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 3 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-9 -270 301 90","underline-thickness":"16.92","underline-position":"-36","stemh":"17","stemv":"19","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":83},"!":{"d":"47,3v-8,0,-16,-7,-16,-16v0,-20,31,-19,31,0v0,9,-7,16,-15,16xm40,-65r-5,-175r23,0v-1,59,-4,175,-4,175r-14,0","w":93},"\"":{"d":"24,-163r-6,-77r24,0r-3,77r-15,0xm66,-163r-4,-77r24,0r-6,77r-14,0","w":104},"#":{"d":"37,-40r8,-55r-36,0r2,-16r37,0r7,-44r-37,0r2,-16r37,0r7,-49r16,0r-8,49r41,0r7,-49r16,0r-7,49r37,0r-3,16r-37,0r-6,44r37,0r-3,16r-37,0r-8,55r-15,0r8,-55r-40,0r-9,55r-16,0xm64,-111r40,0r7,-44r-41,0","w":174},"$":{"d":"37,-132v2,40,97,38,97,88v0,27,-20,45,-51,48r0,40r-18,0r0,-40v-21,-1,-38,-8,-49,-17r8,-14v21,21,92,23,91,-15v-1,-39,-96,-37,-96,-89v0,-23,18,-41,46,-44r0,-38r18,0r0,38v18,1,34,8,44,17r-10,14v-16,-19,-81,-24,-80,12","w":144},"%":{"d":"60,-80v-64,-1,-62,-96,1,-96v65,1,61,96,-1,96xm61,-93v21,0,31,-16,31,-35v0,-19,-10,-35,-31,-35v-21,0,-31,16,-31,35v0,19,10,35,31,35xm192,4v-65,-1,-63,-97,1,-97v64,1,62,97,-1,97xm192,-9v21,0,32,-15,32,-35v0,-19,-11,-35,-32,-35v-21,0,-31,15,-31,34v0,20,10,36,31,36xm68,0r103,-172r16,0r-102,172r-17,0","w":252},"&":{"d":"93,4v-48,0,-78,-29,-78,-64v0,-33,20,-51,51,-69v-21,-22,-33,-39,-33,-61v0,-32,26,-54,60,-54v31,0,56,20,56,49v0,30,-23,49,-55,68r71,73v11,-17,18,-38,21,-58r17,3v-4,23,-13,49,-27,68r40,41r-25,0r-27,-28v-19,19,-43,32,-71,32xm83,-138v27,-15,48,-32,48,-56v0,-18,-16,-34,-38,-34v-54,0,-49,59,-10,90xm34,-62v0,54,93,63,119,22r-76,-78v-24,14,-43,29,-43,56","w":219},"(":{"d":"87,65v-86,-87,-87,-239,0,-324r18,0v-81,76,-86,242,0,324r-18,0"},")":{"d":"1,65v82,-76,87,-242,0,-324r18,0v87,87,88,239,0,324r-18,0"},"*":{"d":"49,-124r-13,-9r32,-42r-50,-15r5,-14r49,16v0,0,0,-21,-1,-52r16,0v-1,31,-1,53,-1,53r50,-18r5,15r-51,15r32,42r-13,9r-30,-43","w":158},"+":{"d":"96,-6r0,-82r-80,0r0,-16r80,0r0,-77r18,0r0,77r80,0r0,16r-80,0r0,82r-18,0","w":209},",":{"d":"17,43v19,-22,14,-36,3,-58v0,-9,6,-15,15,-15v32,0,11,58,-4,73r-14,0","w":71},"-":{"d":"20,-96r0,-16r69,0r0,16r-69,0","w":108},".":{"d":"34,3v-9,0,-16,-8,-16,-17v0,-9,7,-16,16,-16v9,0,16,7,16,16v0,9,-7,17,-16,17","w":68},"\/":{"d":"23,0r86,-240r18,0r-86,240r-18,0","w":138},"0":{"d":"100,4v-114,-3,-114,-178,1,-180v114,2,114,178,-1,180xm101,-12v44,0,66,-35,66,-74v0,-38,-23,-73,-67,-73v-44,0,-65,35,-65,73v0,39,22,74,66,74","w":201},"1":{"d":"57,0r0,-154r-39,14r-4,-16v21,-5,34,-18,62,-16r0,172r-19,0","w":109},"2":{"d":"13,0r0,-8v30,-27,101,-83,101,-120v0,-41,-63,-37,-82,-11r-10,-12v26,-34,113,-38,112,21v-1,39,-57,86,-89,114r108,0r0,16r-140,0","w":169},"3":{"d":"134,-6v0,54,-57,82,-114,72r3,-16v43,9,91,-12,91,-54v0,-38,-30,-54,-73,-54r0,-15v27,0,65,-20,65,-53v1,-39,-61,-42,-80,-14r-10,-13v27,-37,110,-26,110,26v0,30,-28,52,-49,59v27,4,57,25,57,62","w":150},"4":{"d":"124,64r0,-64r-112,0r0,-13r116,-159r15,0r0,156r40,0r0,16r-40,0r0,64r-19,0xm33,-16r91,0r0,-124","w":196},"5":{"d":"131,-13v1,51,-50,90,-113,79r3,-16v44,7,90,-16,90,-62v0,-48,-37,-63,-85,-58r7,-102r94,0r0,16r-77,0r-5,70v55,-1,86,28,86,73","w":146},"6":{"d":"91,4v-54,0,-74,-52,-74,-99v0,-87,49,-149,136,-149r4,16v-69,0,-113,40,-119,108v40,-38,124,-19,124,51v0,39,-26,73,-71,73xm92,-12v34,0,51,-29,51,-56v0,-62,-75,-67,-106,-36v-2,48,11,91,55,92","w":178},"7":{"d":"36,71r-15,-8r101,-218r-117,0r0,-17r137,0r0,14","w":156},"8":{"d":"90,4v-44,0,-68,-29,-68,-61v0,-27,20,-50,53,-69v-32,-19,-47,-37,-47,-61v0,-33,28,-57,62,-57v40,0,63,25,63,56v0,24,-18,43,-49,61v35,21,54,41,54,68v0,37,-28,63,-68,63xm91,-13v31,0,48,-21,48,-46v0,-21,-16,-39,-51,-59v-30,19,-47,37,-47,59v0,26,20,46,50,46xm91,-136v28,-17,43,-32,43,-51v0,-22,-16,-41,-43,-41v-27,0,-44,18,-44,41v0,19,14,33,44,51","w":180},"9":{"d":"21,67r-3,-15v67,0,115,-37,122,-104v-43,40,-124,16,-124,-51v0,-39,28,-73,72,-73v55,0,73,54,73,100v0,87,-51,143,-140,143xm36,-104v0,61,72,68,105,36v2,-48,-10,-90,-54,-91v-31,0,-51,24,-51,55","w":178},":":{"d":"35,3v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16v9,0,16,7,16,16v0,9,-7,17,-16,17xm35,-141v-9,0,-17,-8,-17,-17v0,-9,8,-17,17,-17v9,0,16,8,16,17v0,9,-7,17,-16,17","w":69},";":{"d":"18,43v9,-12,14,-23,14,-33v-6,-11,-22,-37,3,-40v34,6,11,57,-4,73r-13,0xm36,-141v-9,0,-17,-8,-17,-17v0,-9,8,-17,17,-17v9,0,16,8,16,17v0,9,-7,17,-16,17","w":72},"<":{"d":"99,-11r-89,-78r89,-78r11,11r-76,67r76,66","w":126},"=":{"d":"13,-60r0,-16r138,0r0,16r-138,0xm13,-116r0,-16r138,0r0,16r-138,0","w":164},">":{"d":"27,-11r-11,-11r76,-67r-76,-66r11,-12r89,78","w":126},"?":{"d":"121,-185v0,66,-75,51,-63,121r-17,0r0,-23v-6,-47,61,-49,61,-97v0,-43,-45,-51,-78,-36r-7,-15v44,-22,104,-2,104,50xm50,3v-8,0,-15,-7,-15,-16v0,-9,7,-15,15,-15v8,0,15,6,15,15v0,9,-7,16,-15,16","w":140},"@":{"d":"131,31v-72,0,-116,-53,-116,-117v0,-73,57,-135,129,-135v71,0,112,54,112,107v0,42,-25,84,-60,84v-26,0,-36,-27,-35,-51v-10,27,-29,51,-53,51v-21,0,-32,-21,-32,-41v-2,-59,51,-117,113,-87v-4,24,-13,59,-14,83v0,17,9,30,22,30v26,0,43,-36,43,-68v0,-54,-40,-93,-97,-93v-58,0,-111,53,-111,119v0,80,84,125,156,92r6,13v-13,6,-37,13,-63,13xm112,-46v32,-1,52,-63,59,-102v-44,-20,-76,25,-76,74v0,12,4,28,17,28","w":270},"A":{"d":"8,0r91,-240r21,0r91,240r-21,0r-24,-65r-114,0r-24,65r-20,0xm58,-82r101,0r-50,-134","w":218},"B":{"d":"36,0r0,-240v65,-2,133,-3,133,59v0,28,-18,48,-44,54v30,5,55,26,55,60v0,68,-72,70,-144,67xm55,-17v53,3,109,-3,104,-49v4,-44,-49,-56,-104,-52r0,101xm55,-135v48,3,99,-3,94,-45v4,-42,-47,-45,-94,-43r0,88","w":200},"C":{"d":"134,4v-72,0,-115,-58,-115,-124v0,-65,44,-124,116,-124v27,0,47,7,64,18r-10,15v-14,-10,-33,-16,-55,-16v-60,0,-94,50,-94,106v0,57,34,108,95,108v26,0,45,-8,60,-21r10,14v-14,13,-40,24,-71,24","w":219},"D":{"d":"36,0r0,-240v109,-10,185,26,185,118v0,91,-73,133,-185,122xm56,-17v88,6,145,-24,145,-104v0,-79,-57,-108,-145,-102r0,206","w":240},"E":{"d":"36,0r0,-240r118,0r0,17r-98,0r0,87r86,0r0,16r-86,0r0,103r100,0r0,17r-120,0","w":177},"F":{"d":"36,0r0,-240r121,0r0,17r-101,0r0,87r88,0r0,16r-88,0r0,120r-20,0","w":173},"G":{"d":"135,4v-73,0,-116,-58,-116,-124v0,-66,44,-124,117,-124v29,0,55,9,72,22r-11,14v-17,-13,-37,-19,-61,-19v-63,0,-96,50,-96,106v0,56,33,108,96,108v28,0,52,-6,67,-18r0,-74r-55,0r0,-17r75,0r0,101v-19,16,-51,25,-88,25","w":252},"H":{"d":"36,0r0,-240r20,0r0,105r146,0r0,-105r20,0r0,240r-20,0r0,-118r-146,0r0,118r-20,0","w":257},"I":{"d":"37,0r0,-240r20,0r0,240r-20,0","w":93},"J":{"d":"59,7v2,45,-26,68,-64,57r3,-17v26,8,43,-8,42,-44r0,-243r19,0r0,247","w":94},"K":{"d":"164,0r-105,-125r99,-115r24,0r-99,114r106,126r-25,0xm36,0r0,-240r19,0r0,240r-19,0","w":196},"L":{"d":"36,0r0,-240r20,0r0,223r96,0r0,17r-116,0","w":164},"M":{"d":"22,0r32,-240r19,0r79,216r79,-216r19,0r32,240r-20,0r-26,-204r-75,204r-20,0r-75,-204r-26,204r-18,0","w":303},"N":{"d":"36,0r0,-240r19,0r143,207r0,-207r19,0r0,240r-19,0r-144,-208r0,208r-18,0","w":252},"O":{"d":"135,4v-72,0,-116,-58,-116,-124v0,-66,44,-124,116,-124v71,0,116,58,116,124v0,66,-44,124,-116,124xm135,-13v60,0,95,-50,95,-107v0,-57,-35,-107,-95,-107v-60,0,-95,50,-95,107v0,57,35,107,95,107","w":270},"P":{"d":"36,0r0,-240v70,-5,134,6,134,68v0,53,-48,76,-114,70r0,102r-20,0xm56,-119v53,4,99,-9,94,-52v5,-40,-41,-57,-94,-52r0,104","w":187},"Q":{"d":"258,45v-45,27,-89,6,-125,-41v-70,-1,-114,-58,-114,-124v0,-66,44,-124,116,-124v71,0,116,58,116,124v0,60,-36,113,-96,122v21,32,61,49,95,29xm135,-13v60,0,95,-50,95,-107v0,-57,-35,-107,-95,-107v-60,0,-95,50,-95,107v0,57,35,107,95,107","w":270},"R":{"d":"36,0r0,-240v67,-4,137,1,135,62v-2,41,-30,61,-74,61v29,27,63,83,90,117r-24,0r-59,-81v-28,-36,-25,-35,-48,-35r0,116r-20,0xm56,-132v49,3,94,-3,94,-46v0,-42,-46,-48,-94,-45r0,91","w":198},"S":{"d":"44,-187v4,61,114,53,114,128v0,37,-30,63,-75,63v-33,0,-55,-13,-67,-24r11,-14v10,9,28,21,57,21v32,0,54,-21,54,-46v-2,-64,-114,-55,-114,-127v0,-65,98,-69,128,-39r-10,14v-23,-22,-101,-25,-98,24","w":176},"T":{"d":"77,0r0,-223r-69,0r0,-17r157,0r0,17r-69,0r0,223r-19,0","w":172},"U":{"d":"123,4v-120,0,-83,-137,-89,-244r20,0v7,91,-32,227,70,227v100,0,62,-136,69,-227r18,0v-5,107,30,244,-88,244","w":245},"V":{"d":"99,0r-91,-240r21,0r80,216r80,-216r19,0r-89,240r-20,0","w":216},"W":{"d":"74,0r-65,-240r21,0r54,209r62,-209r20,0r61,207r55,-207r19,0r-65,240r-18,0r-62,-211r-64,211r-18,0","w":310},"X":{"d":"10,0r77,-124r-73,-116r23,0r62,99r60,-99r21,0r-71,116r78,124r-22,0r-68,-108r-65,108r-22,0","w":197},"Y":{"d":"87,0r0,-90r-80,-150r23,0r68,130r68,-130r20,0r-79,150r0,90r-20,0","w":193},"Z":{"d":"17,0r0,-15r138,-208r-132,0r0,-17r155,0r0,14r-140,209r145,0r0,17r-166,0","w":200},"[":{"d":"31,58r0,-317r66,0r0,15r-48,0r0,287r48,0r0,15r-66,0"},"\\":{"d":"117,58r-114,-317r18,0r115,317r-19,0","w":138},"]":{"d":"9,58r0,-15r48,0r0,-287r-48,0r0,-15r67,0r0,317r-67,0"},"^":{"d":"23,-104r73,-136r15,0r74,136r-18,0r-63,-116r-63,116r-18,0","w":207},"_":{"d":"0,54r0,-16r138,0r0,16r-138,0","w":137},"a":{"d":"117,-22v-22,36,-101,36,-100,-18v1,-49,54,-60,99,-59v2,-35,-5,-62,-38,-60v-16,0,-31,5,-45,18r-10,-13v33,-34,112,-32,112,33v0,38,-3,89,3,121r-18,0v-1,-5,-3,-16,-3,-22xm37,-41v3,44,61,31,79,3r0,-46v-42,-1,-82,9,-79,43","w":164},"b":{"d":"167,-86v0,68,-77,114,-136,77r0,-250r19,0r0,103v10,-12,27,-20,45,-20v49,0,72,40,72,90xm50,-19v49,25,98,-18,98,-67v0,-37,-15,-73,-57,-73v-15,0,-31,9,-41,20r0,120","w":182},"c":{"d":"89,4v-49,0,-74,-44,-74,-90v0,-79,81,-113,127,-72r-10,14v-10,-8,-22,-15,-41,-15v-38,0,-56,32,-56,72v0,38,17,75,55,75v20,0,36,-9,44,-16r9,14v-9,8,-28,18,-54,18","w":155},"d":{"d":"136,-20v-45,52,-121,12,-121,-66v0,-67,67,-116,120,-75r0,-98r18,0r0,227v0,12,2,24,4,32r-19,0v-1,-4,-2,-14,-2,-20xm90,-13v15,0,34,-8,45,-23r0,-108v-41,-37,-100,0,-100,58v0,39,15,73,55,73","w":183},"e":{"d":"93,4v-53,0,-78,-42,-78,-91v0,-49,28,-89,74,-89v44,0,68,35,65,85r-119,0v-1,42,16,78,58,79v22,0,41,-9,50,-16r8,14v-11,8,-30,18,-58,18xm36,-107r99,0v0,-26,-13,-52,-46,-52v-30,0,-48,22,-53,52","w":171},"f":{"d":"37,0r0,-157r-29,0r0,-15r29,0v-9,-64,26,-107,85,-86r-5,16v-29,-13,-66,2,-61,43r0,27r44,0r0,15r-44,0r0,157r-19,0","w":108},"g":{"d":"83,84v-70,0,-84,-71,-34,-93v-24,-6,-20,-44,1,-50v-52,-26,-34,-123,35,-117v23,2,51,5,79,4r0,15r-31,0v42,42,1,125,-68,103v-9,3,-15,10,-15,17v0,13,17,15,40,16v35,2,75,4,75,49v0,35,-38,56,-82,56xm84,68v36,0,62,-15,62,-39v-1,-42,-49,-28,-82,-34v-40,18,-39,73,20,73xm85,-67v29,0,46,-20,46,-46v0,-26,-17,-47,-46,-47v-29,0,-46,20,-46,46v0,26,17,47,46,47","w":176},"h":{"d":"31,0r0,-259r19,0r0,115v8,-12,28,-32,57,-32v78,1,42,107,50,176r-19,0r0,-118v0,-25,-9,-41,-35,-41v-26,0,-47,24,-53,34r0,125r-19,0","w":186},"i":{"d":"42,-208v-8,0,-14,-6,-14,-14v0,-8,6,-15,14,-15v8,0,15,7,15,15v0,8,-7,14,-15,14xm33,0r0,-172r19,0r0,172r-19,0","w":84},"j":{"d":"51,26v2,39,-22,63,-60,54r3,-16v25,8,38,-10,38,-42r0,-194r19,0r0,198xm41,-208v-8,0,-14,-6,-14,-14v0,-8,6,-15,14,-15v8,0,14,7,14,15v0,8,-6,14,-14,14","w":82},"k":{"d":"131,0r-80,-96r76,-76r23,0r-76,76r80,96r-23,0xm31,0r0,-259r19,0r0,259r-19,0","w":162},"l":{"d":"32,0r0,-259r19,0r0,259r-19,0","w":82},"m":{"d":"32,0r0,-172r18,0r0,27v8,-12,26,-31,54,-31v26,0,40,14,44,32v12,-15,30,-32,56,-32v75,2,39,109,47,176r-18,0r0,-118v0,-24,-8,-41,-33,-41v-23,0,-40,19,-49,32r0,127r-19,0r0,-118v0,-25,-8,-41,-32,-41v-25,0,-44,24,-50,34r0,125r-18,0","w":281},"n":{"d":"32,0r0,-172r18,0r0,28v13,-17,33,-32,57,-32v78,1,42,107,50,176r-19,0r0,-118v0,-25,-9,-41,-35,-41v-22,0,-42,18,-53,34r0,125r-18,0","w":187},"o":{"d":"93,4v-105,-2,-105,-177,-1,-180v105,2,106,177,1,180xm93,-12v39,0,58,-35,58,-74v0,-39,-21,-73,-60,-73v-39,0,-56,34,-56,73v0,39,19,74,58,74","w":186},"p":{"d":"32,79r0,-251r18,0r0,19v10,-12,27,-23,49,-23v46,0,71,38,71,90v0,68,-70,115,-120,75r0,90r-18,0xm92,-12v39,0,58,-36,58,-74v0,-39,-15,-73,-54,-73v-21,0,-38,14,-46,24r0,107v9,9,24,16,42,16","w":185},"q":{"d":"133,78r0,-94v-9,10,-25,20,-44,20v-49,0,-74,-39,-74,-89v0,-48,33,-91,85,-91v26,0,45,8,52,13r0,241r-19,0xm91,-13v18,0,36,-12,42,-20r0,-119v-6,-3,-16,-7,-33,-7v-44,0,-65,37,-65,73v0,37,15,73,56,73","w":183},"r":{"d":"32,0r0,-172r18,0r0,30v5,-17,35,-43,63,-31r-5,18v-27,-14,-54,22,-58,35r0,120r-18,0","w":117},"s":{"d":"37,-132v4,44,93,38,88,88v6,52,-81,58,-110,32r8,-15v16,18,85,24,83,-15v-3,-41,-94,-39,-87,-89v-8,-49,77,-54,99,-29r-9,14v-14,-16,-75,-22,-72,14","w":141},"t":{"d":"109,-6v-22,18,-70,12,-70,-33r0,-118r-29,0r0,-15r29,0r0,-49r18,0r0,49r45,0r0,15r-45,0r0,117v-5,32,31,32,45,20","w":118},"u":{"d":"80,4v-78,-1,-42,-107,-50,-176r19,0r0,118v0,25,9,41,35,41v26,0,46,-24,52,-34r0,-125r19,0r0,139v0,14,1,27,3,33r-19,0v-1,-6,-2,-19,-2,-28v-8,13,-28,32,-57,32","w":186},"v":{"d":"71,0r-65,-172r20,0r54,148r53,-148r20,0r-64,172r-18,0","w":159},"w":{"d":"59,0r-52,-172r20,0r42,143r45,-143r18,0r45,144r42,-144r19,0r-52,172r-17,0r-47,-145r-46,145r-17,0","w":245},"x":{"d":"8,0r61,-89r-57,-83r21,0r47,68r44,-68r20,0r-55,82r62,90r-21,0r-52,-76r-50,76r-20,0","w":159},"y":{"d":"82,25v-13,36,-32,66,-77,56r3,-15v42,10,52,-33,65,-67r-64,-171r20,0r54,148r53,-148r20,0","w":162},"z":{"d":"15,0r0,-13r92,-143r-86,0r0,-16r109,0r0,14r-93,143r95,0r0,15r-117,0","w":147},"{":{"d":"114,58v-37,3,-64,-2,-64,-39v-1,-49,11,-116,-40,-114r0,-15v21,0,40,-15,40,-40v1,-45,-12,-112,36,-109r28,0r0,15v-27,-2,-47,1,-46,29v2,49,7,109,-37,112v45,5,39,67,37,118v-1,28,19,30,46,28r0,15","w":123},"|":{"d":"44,90r0,-360r14,0r0,360r-14,0","w":101},"}":{"d":"9,58r0,-15v27,2,48,0,46,-29v-3,-51,-7,-111,37,-117v-44,-4,-40,-64,-37,-113v2,-29,-19,-30,-46,-28r0,-15v37,-3,64,2,64,39v0,0,-9,112,40,110r0,15v-50,-2,-40,65,-40,114v0,37,-27,42,-64,39","w":123},"~":{"d":"145,-66v-49,0,-78,-49,-115,-11r-9,-12v10,-10,27,-20,45,-20v43,0,78,48,115,11r9,12v-11,11,-28,20,-45,20","w":211},"'":{"d":"23,-163r-5,-77r25,0r-5,77r-15,0","w":60},"`":{"d":"105,-194r-47,-44r28,0r35,44r-16,0","w":180},"\u00a0":{"w":83}}});
Cufon.registerFont({"w":190,"face":{"font-family":"Kievit-Regular","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 4 0 0 2 0 4","ascent":"274","descent":"-86","x-height":"4","bbox":"-12 -270 307 90","underline-thickness":"7.2","underline-position":"-40.68","stemh":"23","stemv":"28","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":81},"!":{"d":"49,3v-11,0,-20,-9,-20,-21v0,-11,9,-20,20,-20v11,0,21,9,21,20v0,12,-10,21,-21,21xm39,-72r-6,-168r33,0r-6,168r-21,0","w":99},"\"":{"d":"24,-160r-9,-80r34,0r-4,80r-21,0xm73,-160r-4,-80r33,0r-8,80r-21,0","w":117,"k":{"9":4,"7":-7,"5":5,"4":36,"0":4}},"#":{"d":"36,-38r8,-52r-36,0r4,-21r35,0r6,-40r-35,0r3,-21r35,0r7,-48r21,0r-7,48r36,0r8,-48r21,0r-7,48r35,0r-4,21r-35,0r-5,40r34,0r-3,21r-35,0r-7,52r-21,0r7,-52r-36,0r-8,52r-21,0xm68,-111r36,0r7,-40r-37,0","w":177,"k":{"9":2,"8":4,"7":-14,"4":29,"1":-7,"0":4}},"$":{"d":"44,-131v0,39,94,33,94,85v0,27,-17,45,-48,50r0,40r-26,0r0,-40v-22,-2,-38,-9,-49,-17r11,-20v19,18,89,24,86,-10v-3,-39,-93,-33,-93,-87v0,-24,17,-42,45,-46r0,-37r26,0r0,37v18,2,33,9,42,16r-12,20v-16,-16,-76,-23,-76,9","w":146,"k":{"7":-5}},"%":{"d":"63,-77v-70,-2,-68,-98,1,-100v69,2,67,98,-1,100xm64,-94v20,0,28,-15,28,-33v0,-18,-9,-33,-29,-33v-20,0,-29,15,-29,33v0,18,10,33,30,33xm205,4v-70,-2,-68,-98,1,-100v69,2,67,98,-1,100xm206,-13v20,0,28,-15,28,-33v0,-18,-9,-33,-29,-33v-20,0,-29,15,-29,33v0,18,10,33,30,33xm72,0r104,-173r22,0r-103,173r-23,0","w":268},"&":{"d":"164,-23v-41,47,-150,28,-150,-38v0,-30,15,-49,50,-68v-49,-40,-38,-114,33,-115v34,0,59,21,59,51v0,27,-17,45,-54,66r63,67v9,-15,16,-33,20,-54r25,4v-4,26,-15,49,-29,68r40,42r-35,0xm88,-142v30,-17,41,-32,41,-51v0,-16,-13,-29,-33,-29v-47,0,-42,50,-8,80xm42,-62v0,47,80,56,106,22r-70,-73v-23,13,-36,29,-36,51","w":225},"'":{"d":"23,-160r-6,-80r34,0r-7,80r-21,0","w":67,"k":{"9":4,"7":-7,"5":5,"4":36,"0":4}},"(":{"d":"85,64v-85,-85,-86,-241,0,-323r25,0v-30,31,-63,86,-63,158v0,67,23,120,63,165r-25,0","w":111,"k":{"y":-9,"j":-22,"J":-22}},")":{"d":"1,64v30,-31,63,-86,63,-158v0,-67,-23,-120,-63,-165r26,0v85,85,86,242,0,323r-26,0","w":111},"*":{"d":"52,-118r-17,-12r31,-41r-49,-15r6,-20r49,17r-2,-51r23,0r-1,51r48,-17r7,20r-49,15r30,41r-16,12r-30,-43","w":163},"+":{"d":"92,-7r0,-78r-77,0r0,-22r77,0r0,-73r25,0r0,73r75,0r0,22r-75,0r0,78r-25,0","w":206,"k":{"7":4,"4":11,"3":7,"2":7}},",":{"d":"19,49v9,-13,15,-27,15,-37v0,-13,-16,-16,-16,-33v0,-11,9,-19,21,-19v40,0,21,65,-1,89r-19,0","w":79},"-":{"d":"19,-92r0,-23r73,0r0,23r-73,0","w":111,"k":{"z":4,"x":7,"s":-2,"a":3,"Y":18,"X":14,"W":11,"V":14,"T":18,"S":11,"M":4,"A":7,"4":22,"3":7,"2":7}},".":{"d":"40,3v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,22,9,22,21v0,12,-10,22,-22,22","w":79},"\/":{"d":"23,0r87,-240r25,0r-86,240r-26,0","w":144,"k":{"z":11,"y":11,"x":14,"w":9,"v":7,"u":20,"t":5,"s":20,"r":20,"q":18,"p":20,"o":18,"n":20,"m":20,"g":23,"f":2,"e":16,"d":16,"c":23,"a":22,"Y":-4,"W":-4,"V":-4,"T":-7,"Q":7,"O":7,"M":5,"G":9,"C":7,"A":18,"9":22,"8":11,"6":11,"5":25,"4":47,"3":14,"2":16,"1":7,"0":22}},"0":{"d":"102,4v-61,0,-88,-49,-88,-90v0,-41,28,-91,89,-91v61,0,88,48,88,90v0,41,-28,91,-89,91xm103,-18v40,0,60,-31,60,-68v0,-37,-21,-68,-61,-68v-40,0,-60,30,-60,67v0,37,21,69,61,69","w":205,"k":{"7":2,"4":7,"3":4,"\/":11,"'":4,"#":-4,"\"":4}},"1":{"d":"58,0r0,-148r-40,13r-6,-22v23,-6,40,-18,72,-16r0,173r-26,0","w":116,"k":{"'":4,"\"":4}},"2":{"d":"10,0r0,-10v28,-24,102,-80,102,-116v-1,-38,-59,-34,-79,-7r-15,-17v31,-39,122,-39,122,22v0,40,-59,85,-85,107v28,-2,72,-1,103,-1r0,22r-148,0","w":172,"k":{"<":7,"9":7,"8":7,"7":4,"5":5,"3":7,"1":4,"-":7,"+":7,"'":11,"%":11,"#":4,"\"":11}},"3":{"d":"139,-8v0,58,-61,85,-121,74r4,-22v41,9,89,-10,89,-49v0,-36,-29,-50,-70,-50r0,-20v27,0,63,-19,63,-49v0,-38,-58,-37,-77,-11r-14,-18v29,-40,118,-26,118,27v0,28,-26,52,-48,57v30,4,56,28,56,61","w":154,"k":{"8":4,"6":-2,"3":2,"2":-4,"\/":-7,"'":4,"%":4,"\"":4}},"4":{"d":"123,64r0,-64r-112,0r0,-17r116,-156r22,0r0,151r40,0r0,22r-40,0r0,64r-26,0xm41,-22r82,0r-1,-108","w":201,"k":{"=":7,"<":11,"9":4,"5":4,"3":11,"2":2,"1":11,"0":7,"-":14,"+":11,"'":11,"%":18,"#":14,"\"":11}},"5":{"d":"137,-14v0,51,-52,92,-121,80r5,-22v42,6,89,-12,88,-57v0,-46,-38,-58,-84,-53r7,-107r101,0r0,21r-77,0r-4,63v59,0,85,36,85,75","w":151,"k":{"7":-4,"4":-4,"2":-4,"0":2,"\/":-7,"-":7,"+":7}},"6":{"d":"95,4v-57,0,-79,-53,-79,-101v0,-86,51,-147,140,-147r5,22v-67,-1,-110,35,-115,99v41,-39,122,-14,122,52v0,41,-27,75,-73,75xm96,-18v30,0,45,-26,45,-50v0,-59,-71,-62,-97,-34v-3,48,13,84,52,84","w":183,"k":{">":7,"7":5,"3":9,"2":4,"1":9,"\/":11}},"7":{"d":"41,71r-23,-11r99,-209r-111,0r0,-24r140,0r0,19","w":160,"k":{"<":11,"8":7,"5":7,"4":29,"2":4,"\/":25,".":18,",":18}},"8":{"d":"91,4v-92,0,-90,-96,-22,-130v-71,-32,-46,-118,22,-118v44,0,67,26,67,57v0,23,-15,41,-46,59v36,20,52,42,52,68v0,39,-31,64,-73,64xm93,-19v28,0,43,-18,43,-41v0,-17,-11,-35,-48,-55v-28,18,-41,35,-41,55v0,24,18,41,46,41xm93,-140v27,-16,38,-31,38,-45v0,-20,-13,-36,-38,-36v-23,0,-39,15,-39,36v0,15,9,28,39,45","w":183,"k":{"3":13,"2":5,"1":4,"\/":14,"%":7}},"9":{"d":"23,67r-5,-22v63,1,113,-33,119,-94v-49,40,-122,10,-122,-54v0,-41,31,-74,75,-74v58,0,77,54,77,101v0,86,-52,143,-144,143xm43,-104v0,54,63,64,96,34v3,-47,-12,-84,-50,-84v-24,0,-46,19,-46,50","w":183,"k":{"3":7,"\/":4,"'":7,"#":-4,"\"":7}},":":{"d":"40,3v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,22,-22,22xm40,-132v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,22,-22,22","w":81},";":{"d":"21,49v9,-12,14,-26,14,-37v0,-13,-16,-16,-16,-33v0,-11,9,-19,21,-19v40,0,20,66,-1,89r-18,0xm40,-132v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22v12,0,22,10,22,22v0,12,-10,22,-22,22","w":81},"<":{"d":"100,-10r-90,-79r90,-79r14,15r-72,63r72,64","w":129,"k":{"7":-7,"2":-7}},"=":{"d":"13,-55r0,-23r140,0r0,23r-140,0xm13,-114r0,-22r140,0r0,22r-140,0","w":165},">":{"d":"30,-10r-15,-15r72,-64r-72,-63r15,-16r90,78","w":129,"k":{"7":7,"4":14,"3":7,"2":7}},"?":{"d":"128,-183v0,67,-74,46,-64,114r-25,0r0,-23v-8,-43,61,-46,61,-89v0,-39,-44,-49,-74,-32r-10,-21v47,-25,112,1,112,51xm52,3v-11,0,-20,-9,-20,-21v0,-11,9,-20,20,-20v11,0,21,9,21,20v0,12,-10,21,-21,21","w":145},"@":{"d":"133,33v-74,0,-119,-53,-119,-119v0,-71,55,-137,131,-137v76,0,117,60,117,108v0,45,-25,85,-62,85v-25,1,-36,-19,-39,-40v-12,46,-82,56,-84,-1v-2,-62,53,-118,119,-88r-14,84v0,14,8,25,19,25v24,0,41,-29,41,-62v0,-53,-43,-91,-97,-91v-55,0,-107,52,-107,116v0,78,82,122,152,89r9,19v-13,5,-39,12,-66,12xm118,-52v30,-1,48,-57,53,-93v-41,-17,-67,25,-67,70v0,10,4,23,14,23","w":275,"k":{"z":2,"x":4,"a":2,"Z":6,"Y":13,"X":7,"W":3,"V":8,"T":13,"S":8,"A":7}},"A":{"d":"66,-83r91,0r-45,-124xm8,0r91,-240r28,0r92,240r-31,0r-22,-59r-109,0r-22,59r-27,0","w":225,"k":{"y":11,"w":9,"v":7,"u":2,"t":5,"i":4,"g":4,"c":2,"\\":14,"Z":-2,"Y":18,"W":9,"V":11,"U":5,"T":14,"Q":7,"O":7,"G":5,"C":8,".":-4,"-":7,",":-4}},"B":{"d":"35,0r0,-240v67,-1,141,-6,141,60v0,29,-18,45,-42,54v30,5,53,26,53,59v0,71,-78,69,-152,67xm62,-23v48,2,101,-2,96,-44v6,-41,-45,-51,-96,-47r0,91xm62,-137v44,2,91,-1,86,-41v3,-39,-44,-40,-86,-38r0,79","w":205,"k":{"z":4,"y":4,"x":4,"w":4,"v":4,"j":2,"i":4,"g":3,"e":2,"Z":3,"Y":6,"X":4,"W":4,"V":5,"T":6,"A":6,"\/":7}},"C":{"d":"136,4v-75,0,-117,-60,-117,-125v0,-65,43,-123,117,-123v31,0,50,7,68,18r-14,21v-14,-10,-31,-16,-54,-16v-58,0,-87,48,-87,100v0,53,28,102,88,102v26,0,44,-9,58,-21r13,20v-13,12,-39,24,-72,24","w":221,"k":{"z":2,"y":9,"x":4,"w":7,"v":11,"u":2,"t":7,"q":2,"o":4,"i":2,"g":4,"e":6,"d":2,"\\":-4,"Z":-2,"U":2,"T":-2,"Q":8,"O":8,"G":6,"C":6,"-":11}},"D":{"d":"35,0r0,-240r56,0v94,0,135,48,135,117v0,69,-41,123,-137,123r-54,0xm63,-23v83,6,134,-24,134,-99v0,-75,-49,-100,-134,-95r0,194","w":244,"k":{"z":4,"x":4,"i":4,"a":2,"Z":6,"Y":7,"X":6,"W":4,"V":5,"T":7,"A":13,"\/":13,".":7,",":7}},"E":{"d":"35,0r0,-240r123,0r0,24r-95,0r0,77r83,0r0,24r-83,0r0,91r97,0r0,24r-125,0","w":181,"k":{"z":2,"y":4,"w":5,"v":7,"u":5,"r":2,"q":2,"p":2,"o":4,"n":2,"m":2,"i":2,"g":4,"e":2,"d":2,"c":5,"\\":-7,"S":-2}},"F":{"d":"35,0r0,-240r125,0r0,24r-97,0r0,77r85,0r0,24r-85,0r0,115r-28,0","w":176,"k":{"z":11,"y":4,"x":11,"w":2,"v":5,"u":9,"s":4,"r":7,"q":4,"p":7,"o":4,"n":7,"m":7,"i":4,"g":5,"e":5,"d":5,"c":5,"a":7,"\\":-7,"Q":2,"O":2,"M":5,"G":2,"C":2,"A":18,";":4,":":4,"\/":14,".":22,",":22}},"G":{"d":"138,4v-76,0,-119,-61,-119,-125v0,-65,44,-123,121,-123v32,0,56,8,75,23r-14,20v-19,-15,-37,-20,-62,-20v-63,0,-90,49,-90,100v0,52,28,102,90,102v26,0,47,-6,59,-15r0,-68r-51,0r0,-23r79,0r0,104v-18,15,-49,25,-88,25","w":254,"k":{"z":4,"y":7,"x":5,"w":5,"v":6,"u":4,"r":2,"p":2,"n":2,"m":2,"\\":4,"Z":4,"Y":7,"X":2,"W":5,"V":7,"U":2,"T":7,"A":2,"\/":7}},"H":{"d":"35,0r0,-240r28,0r0,102r135,0r0,-102r28,0r0,240r-28,0r0,-114r-135,0r0,114r-28,0","w":261,"k":{"i":4}},"I":{"d":"37,0r0,-240r28,0r0,240r-28,0","w":101,"k":{"w":4,"v":4,"i":5,"g":4}},"J":{"d":"67,5v2,48,-31,72,-75,60r5,-24v26,7,42,-4,42,-40r0,-241r28,0r0,245","w":101,"k":{"w":4,"v":4,"i":4,"g":2}},"K":{"d":"164,0r-101,-125r97,-115r33,0r-97,113r103,127r-35,0xm35,0r0,-240r27,0r0,240r-27,0","w":204,"k":{"y":11,"w":6,"v":7,"u":9,"t":7,"s":5,"r":4,"q":6,"p":4,"o":7,"n":4,"m":4,"j":2,"i":6,"g":7,"f":4,"e":9,"d":6,"c":6,"a":4,"\\":-7,"Q":11,"O":11,"G":9,"C":12,"@":4,"-":18}},"L":{"d":"35,0r0,-240r28,0r0,216r94,0r0,24r-122,0","w":170,"k":{"y":13,"x":4,"w":11,"v":16,"u":5,"t":7,"s":4,"q":4,"o":5,"j":4,"i":4,"g":4,"f":4,"e":5,"d":6,"c":5,"\\":11,"Y":22,"W":18,"V":22,"U":6,"T":21,"Q":13,"O":13,"G":5,"C":11,"?":5,".":-4,"-":22,",":-4}},"M":{"d":"19,0r33,-240r26,0r76,208r74,-208r27,0r32,240r-28,0r-25,-190r-68,190r-27,0r-71,-190r-22,190r-27,0","w":306,"k":{"y":5,"w":4,"v":4,"u":4,"t":2,"s":2,"i":2,"g":2,"\\":4,"Y":7,"W":4,"V":4,"U":2,"T":4,"S":2,"Q":2,"O":2,"G":4,"C":6,"?":4,"-":4}},"N":{"d":"34,0r0,-240r28,0r136,198v-4,-56,-1,-136,-2,-198r26,0r0,240r-26,0r-118,-171v-8,-10,-14,-24,-20,-31v5,61,1,137,2,202r-26,0","w":255,"k":{"u":4}},"O":{"d":"137,4v-74,0,-118,-58,-118,-124v0,-66,43,-124,117,-124v74,0,119,58,119,124v0,66,-44,124,-118,124xm136,-19v57,0,89,-47,89,-101v0,-54,-31,-101,-88,-101v-57,0,-88,47,-88,101v0,54,30,101,87,101","w":273,"k":{"z":4,"x":4,"i":4,"a":4,"\\":4,"Z":6,"Y":7,"X":9,"W":4,"V":5,"U":2,"T":6,"S":5,"M":2,"A":7,"?":4,"\/":14,".":11,",":11}},"P":{"d":"35,0r0,-240v72,-4,144,1,144,69v0,57,-48,80,-116,74r0,97r-28,0xm63,-121v49,3,91,-7,87,-49v5,-37,-38,-51,-87,-46r0,95","w":195,"k":{"u":5,"s":4,"r":2,"q":6,"p":2,"o":7,"n":2,"m":2,"i":14,"g":4,"e":11,"d":8,"c":9,"a":4,"\\":-4,"Z":7,"X":4,"V":2,"M":8,"A":23,"@":4,"\/":29,".":40,"-":7,",":40}},"Q":{"d":"265,46v-48,25,-92,11,-132,-42v-71,-2,-114,-59,-114,-124v0,-66,43,-124,117,-124v144,0,158,221,28,245v19,32,61,44,90,24xm136,-19v57,0,89,-47,89,-101v0,-54,-31,-101,-88,-101v-57,0,-88,47,-88,101v0,54,30,101,87,101","w":273,"k":{"x":4,"a":2,"\\":4,"Z":7,"Y":11,"X":10,"W":2,"V":5,"U":2,"T":6,"S":4,"M":2,"J":-14,"A":7,"?":4,".":11,",":11}},"R":{"d":"35,0r0,-240v70,-4,144,0,144,64v0,40,-29,61,-67,63v25,25,61,81,85,113r-34,0v-26,-27,-63,-116,-100,-111r0,111r-28,0xm63,-134v44,2,92,-1,87,-41v4,-38,-42,-44,-87,-41r0,82","w":205,"k":{"y":4,"w":4,"v":4,"u":5,"q":2,"o":4,"j":2,"i":2,"g":5,"e":5,"d":4,"c":5,"Y":3,"W":2,"V":2,"U":4,"T":3,"Q":4,"O":4,"@":2,"?":5,"-":11}},"S":{"d":"51,-184v8,61,111,46,111,124v0,38,-32,64,-78,64v-37,0,-59,-16,-68,-24r14,-20v5,5,23,21,55,21v30,0,49,-20,49,-41v0,-61,-111,-51,-111,-123v0,-39,33,-61,70,-61v36,0,55,13,63,19r-14,21v-16,-20,-96,-27,-91,20","w":179,"k":{"z":2,"y":5,"x":2,"w":4,"v":4,"Y":2,"W":2,"V":2,"U":2,"@":-3,"\/":4,"-":4}},"T":{"d":"75,0r0,-216r-68,0r0,-24r165,0r0,24r-68,0r0,216r-29,0","w":178,"k":{"z":23,"y":23,"x":22,"w":22,"v":17,"u":22,"t":7,"s":23,"r":18,"q":23,"p":18,"o":23,"n":18,"m":18,"j":4,"i":7,"g":25,"f":7,"e":25,"d":22,"c":25,"a":29,"\\":-11,"Y":-7,"X":-5,"W":-7,"V":-5,"T":-5,"S":2,"Q":6,"O":6,"M":4,"G":7,"C":5,"A":14,"@":14,"?":-4,";":18,":":18,"\/":25,".":29,"-":18,",":29}},"U":{"d":"125,4v-125,0,-88,-134,-93,-244r28,0v7,86,-31,223,66,220v97,-3,56,-133,64,-220r26,0v-4,108,29,244,-91,244","w":248,"k":{"z":4,"y":4,"x":4,"w":4,"v":4,"u":4,"t":4,"s":4,"r":4,"p":4,"o":4,"n":4,"m":4,"l":2,"j":5,"i":4,"g":5,"e":4,"d":4,"c":4,"a":4,"S":5,"Q":2,"O":2,"M":2,"J":2,"G":2,"A":7,"?":2,"\/":20,".":7,",":7,"!":2}},"V":{"d":"99,0r-93,-240r31,0r76,208r75,-208r27,0r-89,240r-27,0","w":221,"k":{"z":9,"y":4,"x":7,"w":4,"v":4,"u":11,"s":14,"r":11,"q":14,"p":11,"o":16,"n":11,"m":11,"j":7,"i":4,"g":18,"f":4,"e":20,"d":16,"c":20,"a":13,"\\":-4,"Y":-4,"X":-4,"W":-4,"T":-5,"Q":5,"O":5,"M":4,"J":2,"G":7,"C":4,"A":11,"@":11,";":11,":":11,"\/":25,".":32,"-":14,",":32,"!":2}},"W":{"d":"73,0r-65,-240r30,0r41,160v5,18,6,41,9,42r57,-202r29,0r56,201v10,-62,34,-139,49,-201r28,0r-66,240r-25,0r-47,-162v-6,-19,-8,-45,-11,-46r-59,208r-26,0","w":315,"k":{"z":5,"y":4,"x":4,"w":2,"v":4,"u":7,"s":7,"r":9,"q":7,"p":9,"o":13,"n":9,"m":9,"j":5,"i":4,"g":13,"e":13,"d":11,"c":16,"a":11,"\\":-4,"Y":-4,"W":-4,"V":-4,"T":-7,"Q":2,"O":4,"M":4,"G":4,"C":2,"A":15,"@":7,";":5,":":5,"\/":23,".":29,"-":11,",":29}},"X":{"d":"9,0r76,-124r-72,-116r32,0r58,93r55,-93r29,0r-70,116r77,124r-32,0r-63,-102r-60,102r-30,0","w":203,"k":{"y":7,"w":4,"v":4,"u":4,"t":4,"q":4,"o":7,"j":4,"g":9,"f":4,"e":7,"d":7,"c":7,"a":2,"Q":11,"O":9,"G":9,"C":5,"@":4,"-":14}},"Y":{"d":"87,0r0,-91r-81,-149r32,0r64,123r64,-123r27,0r-78,149r0,91r-28,0","w":199,"k":{"z":16,"y":13,"x":11,"w":11,"v":7,"u":18,"t":5,"s":22,"r":17,"q":22,"p":17,"o":22,"n":17,"m":17,"j":4,"i":4,"g":24,"f":5,"e":24,"d":22,"c":26,"a":22,"\\":-4,"W":-4,"V":-4,"T":-7,"S":4,"Q":11,"O":7,"M":7,"J":3,"G":9,"C":6,"A":18,"@":19,";":16,":":16,"\/":31,".":36,"-":18,",":36}},"Z":{"d":"17,0r0,-20r131,-197r-125,0r0,-23r158,0r0,19r-133,198r137,0r0,23r-168,0","w":201,"k":{"y":9,"w":11,"v":8,"u":6,"t":5,"s":4,"q":6,"o":9,"j":2,"i":4,"g":7,"f":4,"e":7,"d":5,"c":6,"a":2,"T":2,"Q":7,"O":6,"M":3,"G":8,"C":11,"A":2,"-":13}},"[":{"d":"29,58r0,-317r72,0r0,20r-47,0r0,276r47,0r0,21r-72,0","w":110,"k":{"y":-9,"j":-22,"J":-22}},"\\":{"d":"117,58r-114,-317r25,0r114,317r-25,0","w":144,"k":{"z":2,"x":4,"w":14,"v":18,"u":9,"t":7,"s":5,"r":4,"q":4,"o":5,"n":4,"m":4,"l":5,"k":4,"j":-18,"i":5,"h":4,"f":7,"e":5,"d":5,"c":5,"b":4,"Y":18,"W":18,"V":18,"U":14,"T":14,"Q":14,"O":14,"J":-22,"G":11,"C":14}},"]":{"d":"9,58r0,-21r47,0r0,-276r-47,0r0,-20r72,0r0,317r-72,0","w":110},"^":{"d":"22,-104r74,-136r18,0r74,136r-24,0r-59,-108r-59,108r-24,0","w":210},"_":{"d":"0,57r0,-22r143,0r0,22r-143,0","w":142},"`":{"d":"102,-194r-48,-46r39,0r33,46r-24,0","w":180},"a":{"d":"117,-21v-23,36,-103,34,-101,-21v1,-49,53,-61,100,-60v2,-32,-4,-52,-35,-52v-16,0,-30,5,-45,19r-14,-18v34,-37,120,-35,120,33v0,38,-3,90,4,120r-26,0v-1,-5,-3,-16,-3,-21xm44,-43v4,43,57,23,72,0r0,-39v-39,-1,-75,8,-72,39","w":169,"k":{"y":2,"v":2,"u":2,"t":2,"g":2,"\\":18,"?":4}},"b":{"d":"172,-87v0,77,-84,111,-144,78r0,-250r27,0r0,100v48,-43,117,-2,117,72xm55,-24v44,20,89,-14,89,-62v0,-36,-14,-67,-51,-67v-14,0,-30,8,-38,17r0,112","w":186,"k":{"\\":11,"\/":11,".":4,",":4}},"c":{"d":"93,4v-51,0,-79,-42,-79,-90v0,-85,86,-110,133,-74r-13,20v-9,-7,-20,-14,-40,-14v-36,0,-52,29,-52,67v0,37,16,69,52,69v22,0,37,-11,42,-15r11,20v-7,6,-24,17,-54,17","w":158,"k":{"z":-2,"y":-2,"w":-2,"v":-2,"t":-2,"o":2,"f":-4,"a":-2,"\\":4,";":-4,":":-4,".":-2,",":-2,"!":-2}},"d":{"d":"136,-20v-44,50,-122,18,-122,-66v0,-74,68,-115,121,-76r0,-97r26,0r0,224v0,12,2,26,4,35r-26,0v-1,-4,-3,-14,-3,-20xm42,-87v-7,65,60,90,93,44r0,-96v-37,-33,-100,-8,-93,52","w":188,"k":{"g":2,"\/":4}},"e":{"d":"96,4v-54,0,-82,-40,-82,-91v0,-51,32,-90,78,-90v47,-1,73,38,67,90r-117,0v1,37,16,69,55,69v24,0,40,-11,48,-16r11,21v-9,6,-29,17,-60,17xm44,-108r89,0v-1,-24,-12,-46,-42,-46v-28,0,-42,19,-47,46","w":176,"k":{"x":2,"f":-2,"\\":14,"\/":4}},"f":{"d":"36,0r0,-152r-29,0r0,-21r29,0v-12,-66,36,-105,92,-86r-7,23v-26,-10,-64,0,-59,39r0,24r44,0r0,21r-44,0r0,152r-26,0","w":114,"k":{"}":-22,"y":-2,"w":-4,"v":-4,"u":5,"s":4,"r":5,"q":2,"p":5,"o":2,"n":5,"m":5,"g":7,"e":9,"d":4,"c":5,"a":4,"]":-22,"\\":-22,"?":-9,"\/":13,".":14,"-":5,",":14,")":-22,"!":-2}},"g":{"d":"86,85v-39,0,-69,-14,-69,-48v0,-19,12,-35,29,-45v-21,-9,-18,-44,3,-52v-53,-29,-34,-123,38,-117v25,2,53,5,83,4r0,21r-26,0v35,48,-9,118,-76,99v-20,10,-12,29,13,29v38,0,90,-2,90,52v0,36,-40,57,-85,57xm87,64v34,0,57,-14,57,-35v0,-39,-46,-26,-78,-31v-34,19,-34,66,21,66xm87,-72v27,0,42,-18,42,-42v0,-24,-15,-42,-42,-42v-27,0,-42,18,-42,42v0,24,15,42,42,42","w":181,"k":{"y":-4,"u":2,"t":-3,"j":-7,"g":3,"f":-2,"\\":18,"?":6,"\/":-4,".":4,"-":6,",":4,"!":2}},"h":{"d":"28,0r0,-259r27,0r0,111v8,-10,26,-29,56,-29v79,1,43,107,51,177r-27,0r0,-118v0,-22,-7,-35,-30,-35v-27,0,-46,26,-50,31r0,122r-27,0","w":189,"k":{"y":2,"v":4,"\\":14,"\/":4}},"i":{"d":"45,-205v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19v11,0,19,8,19,19v0,11,-8,20,-19,20xm32,0r0,-173r26,0r0,173r-26,0","w":90,"k":{"\/":4}},"j":{"d":"57,23v3,43,-29,69,-69,57r5,-22v24,8,37,-8,37,-40r0,-191r27,0r0,196xm43,-205v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,20,-19,20","w":86},"k":{"d":"130,0r-73,-96r71,-77r31,0r-72,77r75,96r-32,0xm28,0r0,-259r27,0r0,259r-27,0","w":168,"k":{"z":-2,"q":2,"o":4,"g":3,"e":4,"d":4,"c":4,"\\":4,"@":2,"?":4,"-":13}},"l":{"d":"30,0r0,-259r27,0r0,259r-27,0","w":86,"k":{"p":4,"l":-3,"g":2}},"m":{"d":"30,0r0,-173r26,0r0,25v8,-9,23,-29,53,-29v25,0,38,13,44,29v23,-40,104,-40,104,25r0,123r-26,0r0,-118v5,-56,-64,-31,-74,-8r0,126r-27,0r0,-118v0,-22,-7,-35,-27,-35v-25,0,-43,26,-47,31r0,122r-26,0","w":285,"k":{"w":2,"v":2,"\\":14,"\/":4}},"n":{"d":"30,0r0,-173r26,0r0,25v28,-45,107,-36,107,25r0,123r-27,0r0,-118v2,-54,-65,-36,-80,-4r0,122r-26,0","k":{"y":2,"w":2,"v":2,"\\":14,"\/":4}},"o":{"d":"94,4v-58,0,-80,-50,-80,-90v0,-40,21,-91,79,-91v58,0,83,50,83,90v0,40,-24,91,-82,91xm95,-18v36,0,53,-31,53,-68v0,-37,-19,-68,-55,-68v-36,0,-51,30,-51,67v0,37,17,69,53,69","k":{"z":2,"y":2,"x":5,"v":4,"f":2,"\\":11,"\/":11,".":4,",":4}},"p":{"d":"30,79r0,-252r26,0r0,19v40,-46,129,-17,120,67v7,74,-72,113,-120,76r0,90r-26,0xm97,-18v33,0,51,-29,51,-68v0,-39,-15,-67,-48,-67v-24,0,-39,18,-44,24r0,95v8,7,20,16,41,16","k":{"v":2,"f":2,"\\":13,"\/":7,".":4,",":4}},"q":{"d":"132,78r0,-92v-45,42,-118,2,-118,-72v0,-53,39,-91,88,-91v34,0,53,11,56,13r0,242r-26,0xm94,-19v19,0,35,-14,38,-17r0,-112v-3,-1,-13,-6,-31,-6v-75,-4,-81,135,-7,135","w":187,"k":{"x":2,"w":4,"v":4,"u":4,"p":4,"l":4,"k":5,"h":5,"b":5,"\\":14}},"r":{"d":"30,0r0,-173r26,0r0,27v6,-16,37,-40,64,-28r-7,26v-24,-14,-59,24,-57,32r0,116r-26,0","w":124,"k":{"y":-5,"x":-4,"w":-4,"v":-4,"t":-4,"k":-2,"h":-2,"g":4,"f":-4,"e":2,"c":3,"b":-2,"?":4,";":-4,":":-4,"\/":18,".":22,"-":7,",":22}},"s":{"d":"44,-131v5,40,93,37,87,85v8,54,-87,62,-116,34r11,-20v9,14,81,24,78,-11v-4,-36,-85,-35,-85,-87v0,-27,19,-47,54,-47v28,0,47,12,52,16r-13,20v-9,-13,-72,-23,-68,10","w":146,"k":{"y":2,"g":4,"b":4,"a":-2,"\\":14,"\/":5,"-":9}},"t":{"d":"81,4v-68,2,-37,-96,-44,-156r-28,0r0,-21r28,0r0,-49r27,0r0,49r43,0r0,21r-43,0r0,108v-6,31,32,29,43,18r10,20v-5,3,-17,10,-36,10","w":125,"k":{"w":-4,"v":-4,"u":2,"g":6,"f":2,"e":2,"c":2,"a":-4,"\\":7,".":-4,"-":7,",":-4}},"u":{"d":"78,4v-80,-1,-43,-107,-51,-177r27,0r0,118v0,22,8,36,31,36v26,0,45,-27,49,-32r0,-122r27,0r0,137v0,15,2,29,3,36r-27,0v-1,-4,-2,-17,-2,-26v-8,11,-27,30,-57,30","k":{"\\":11,"\/":5}},"v":{"d":"72,0r-66,-173r29,0r50,138r48,-138r27,0r-64,173r-24,0","w":166,"k":{"y":-4,"w":-4,"v":-4,"t":-4,"q":2,"o":4,"g":4,"f":-4,"e":2,"d":2,"c":2,"\\":9,"?":2,";":-2,":":-2,"\/":11,".":18,",":18}},"w":{"d":"58,0r-52,-173r29,0r37,131r41,-131r26,0r41,131r37,-131r27,0r-52,173r-24,0r-43,-134r-44,134r-23,0","w":251,"k":{"y":-4,"w":-4,"v":-4,"t":-4,"q":2,"g":4,"f":-4,"e":2,"d":2,"c":2,"\\":9,"?":4,";":-2,":":-2,"\/":13,".":16,",":16}},"x":{"d":"8,0r60,-90r-56,-83r29,0r42,62r39,-62r28,0r-54,81r63,92r-30,0r-49,-72r-45,72r-27,0","w":166,"k":{"x":-2,"q":4,"o":5,"g":4,"f":3,"e":5,"d":4,"c":4,"\\":13,"@":2,"\/":4,"-":11}},"y":{"d":"90,23v-11,37,-37,69,-86,59v5,-11,-4,-25,17,-21v32,6,41,-36,52,-62r-65,-172r29,0r50,138r48,-138r28,0","w":168,"k":{"y":-3,"w":-4,"v":-4,"t":-4,"q":4,"p":2,"o":2,"l":2,"k":4,"h":4,"g":4,"f":-4,"e":2,"d":2,"b":4,"\\":11,"?":4,";":-2,":":-2,"\/":18,".":22,",":22,"!":2}},"z":{"d":"15,0r0,-17r88,-135r-83,0r0,-21r115,0r0,18r-88,134r89,0r0,21r-121,0","w":152,"k":{"w":-2,"v":-2,"o":2,"k":2,"g":6,"e":4,"d":4,"c":4,"\\":7,".":2,"-":4,",":2}},"{":{"d":"120,58v-38,2,-68,1,-70,-39v-2,-49,13,-113,-40,-112r0,-20v51,2,39,-60,40,-108v1,-40,33,-39,70,-38r0,20v-27,-2,-46,0,-44,29v3,49,6,101,-36,107v44,6,39,63,36,113v-1,29,18,28,44,27r0,21","w":128,"k":{"y":-9,"j":-22,"J":-22}},"|":{"d":"40,90r0,-360r22,0r0,360r-22,0","w":102},"}":{"d":"9,58r0,-21v26,2,44,1,44,-28v0,-49,-9,-107,36,-111v-43,-6,-39,-61,-36,-110v2,-29,-18,-28,-44,-27r0,-20v38,-2,68,-1,70,39v2,48,-12,109,40,107r0,20v-52,-2,-38,63,-40,112v-1,40,-32,41,-70,39","w":128},"~":{"d":"143,-64v-50,0,-74,-45,-110,-11r-13,-16v11,-10,28,-21,47,-21v41,0,77,46,113,10r12,16v-13,13,-32,22,-49,22","w":211},"\u00a0":{"w":81}}});
Cufon.registerFont({"w":147,"face":{"font-family":"Kievit-Book","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 4 0 0 2 0 4","ascent":"274","descent":"-86","x-height":"4","bbox":"-13 -270 310 90","underline-thickness":"7.2","underline-position":"-40.68","stemh":"25","stemv":"31","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":78},"!":{"d":"50,3v-13,0,-22,-9,-22,-22v0,-12,9,-22,22,-22v12,0,23,10,23,22v0,13,-11,22,-23,22xm38,-73r-6,-167r37,0r-6,167r-25,0","w":101},"\"":{"d":"24,-158r-9,-82r36,0r-4,82r-23,0xm75,-158r-4,-82r36,0r-9,82r-23,0","w":121,"k":{"9":4,"7":-7,"5":6,"4":38,"0":4}},"#":{"d":"35,-37r8,-50r-35,0r4,-24r35,0r6,-38r-35,0r4,-24r34,0r7,-47r23,0r-7,47r35,0r7,-47r24,0r-7,47r34,0r-4,24r-34,0r-5,38r33,0r-4,24r-33,0r-7,50r-24,0r8,-50r-35,0r-8,50r-24,0xm70,-111r35,0r6,-38r-35,0","w":180,"k":{"9":2,"8":4,"7":-13,"4":28,"1":-7,"0":4}},"$":{"d":"47,-131v0,38,93,32,93,83v0,27,-18,46,-49,51r0,41r-28,0r0,-40v-22,-2,-38,-9,-49,-17r12,-23v16,18,84,23,84,-8v0,-36,-92,-31,-92,-85v0,-24,17,-42,45,-47r0,-38r28,0r0,37v19,2,34,9,43,16r-14,22v-15,-14,-73,-22,-73,8","k":{"7":-5}},"%":{"d":"64,-75v-71,-2,-70,-101,1,-102v73,1,70,100,-1,102xm65,-94v19,0,27,-14,27,-32v0,-18,-9,-32,-28,-32v-19,0,-27,13,-27,31v0,17,9,33,28,33xm212,4v-71,-2,-70,-101,1,-102v73,1,70,100,-1,102xm213,-15v19,0,27,-14,27,-32v0,-18,-9,-32,-28,-32v-19,0,-27,13,-27,31v0,17,9,33,28,33xm75,0r104,-174r25,0r-103,174r-26,0","w":277},"&":{"d":"164,-22v-43,47,-151,25,-151,-40v0,-30,16,-48,50,-67v-48,-41,-35,-115,36,-115v36,0,60,21,60,51v0,27,-17,45,-53,66r59,63v9,-15,15,-32,19,-52r28,5v-4,26,-14,49,-28,68r40,43r-40,0xm91,-144v28,-16,39,-30,39,-48v0,-15,-12,-28,-31,-28v-45,0,-41,48,-8,76xm46,-63v0,45,74,53,100,22r-66,-71v-22,13,-34,28,-34,49","w":227},"'":{"d":"23,-158r-7,-82r37,0r-7,82r-23,0","w":69,"k":{"9":4,"7":-7,"5":6,"4":38,"0":4}},"(":{"d":"84,63v-84,-78,-85,-248,0,-322r29,0v-29,30,-62,84,-62,157v0,68,24,121,62,165r-29,0","w":113,"k":{"y":-9,"j":-22,"J":-22}},")":{"d":"1,63v30,-31,62,-85,62,-158v0,-68,-25,-122,-62,-164r30,0v83,77,83,248,0,322r-30,0","w":114},"*":{"d":"54,-115r-19,-14r30,-40r-48,-15r7,-22r48,17r-2,-51r26,0r-1,51r47,-17r8,22r-49,15r31,40r-20,14r-29,-42","w":166},"+":{"d":"90,-8r0,-75r-75,0r0,-25r75,0r0,-72r28,0r0,72r72,0r0,25r-72,0r0,75r-28,0","w":205,"k":{"7":4,"4":10,"3":7,"2":7}},",":{"d":"21,49v9,-13,15,-27,15,-37v0,-14,-17,-17,-17,-35v0,-12,9,-21,22,-21v42,0,24,68,0,93r-20,0","w":83},"-":{"d":"19,-90r0,-26r75,0r0,26r-75,0","w":112,"k":{"z":3,"x":8,"s":-1,"a":3,"Y":19,"X":15,"W":11,"V":15,"T":18,"S":10,"M":3,"A":8,"4":21,"3":7,"2":7}},".":{"d":"42,3v-13,0,-24,-11,-24,-24v0,-13,11,-23,24,-23v13,0,24,10,24,23v0,13,-11,24,-24,24","w":83},"\/":{"d":"21,6r90,-248r29,0r-90,248r-29,0","k":{"z":11,"y":11,"x":14,"w":8,"v":7,"u":19,"t":5,"s":19,"r":19,"q":18,"p":19,"o":18,"n":19,"m":19,"g":23,"f":1,"e":17,"d":17,"c":24,"a":22,"Y":-4,"W":-4,"V":-4,"T":-7,"Q":7,"O":7,"M":5,"G":9,"C":7,"A":19,"9":22,"8":10,"6":12,"5":26,"4":48,"3":15,"2":17,"1":8,"0":23}},"0":{"d":"103,4v-62,0,-89,-48,-89,-90v0,-41,27,-91,89,-91v62,0,90,48,90,90v0,42,-28,91,-90,91xm103,-21v37,0,57,-28,57,-65v0,-36,-20,-66,-57,-66v-38,0,-57,28,-57,65v0,37,19,66,57,66","w":206,"k":{"7":2,"4":7,"3":4,"\/":12,"'":4,"#":-4,"\"":4}},"1":{"d":"58,0r0,-145r-40,13r-7,-25v25,-6,44,-18,77,-16r0,173r-30,0","w":119,"k":{"'":4,"\"":4}},"2":{"d":"9,0r0,-12v29,-24,102,-78,102,-112v0,-37,-59,-34,-77,-7r-17,-20v31,-38,126,-40,127,23v0,39,-57,81,-84,104v26,-4,70,-1,101,-2r0,26r-152,0","w":174,"k":{"<":7,"9":6,"8":7,"7":4,"5":5,"3":7,"1":4,"-":7,"+":7,"'":11,"%":10,"#":4,"\"":11}},"3":{"d":"142,-9v1,58,-63,86,-125,75r4,-25v40,6,88,-9,88,-47v0,-35,-27,-47,-67,-47r0,-23v26,0,60,-18,60,-47v1,-37,-55,-36,-74,-11r-16,-19v28,-39,122,-28,122,27v0,29,-26,51,-48,57v29,4,56,27,56,60","w":156,"k":{"8":4,"6":-2,"3":2,"2":-4,"\/":-7,"'":4,"%":4,"\"":4}},"4":{"d":"122,64r0,-64r-112,0r0,-20r117,-153r26,0r0,148r39,0r0,25r-39,0r0,64r-31,0xm44,-25r78,0r0,-102","w":204,"k":{"=":7,"<":11,"9":4,"5":4,"3":11,"2":2,"1":11,"0":7,"-":14,"+":10,"'":12,"%":18,"#":14,"\"":12}},"5":{"d":"140,-15v0,53,-57,94,-125,80r6,-25v40,8,86,-10,86,-53v0,-46,-38,-56,-83,-51r7,-109r105,0r0,24r-77,0r-4,59v58,0,85,35,85,75","w":153,"k":{"7":-4,"4":-3,"2":-4,"0":2,"\/":-7,"-":7,"+":7}},"6":{"d":"96,4v-58,0,-81,-53,-81,-102v0,-86,52,-146,142,-146r7,25v-65,-1,-108,34,-114,94v42,-37,122,-13,122,53v0,42,-30,76,-76,76xm97,-21v28,0,43,-23,43,-47v0,-56,-67,-60,-92,-33v-2,45,11,80,49,80","w":185,"k":{">":7,"7":5,"3":9,"2":4,"1":8,"\/":11}},"7":{"d":"44,72r-26,-13r96,-206r-108,0r0,-27r142,0r0,21","w":162,"k":{"@":2,"<":12,"8":7,"5":8,"4":29,"2":4,"\/":26,".":20,",":20}},"8":{"d":"93,4v-93,-3,-97,-97,-25,-129v-71,-32,-47,-119,24,-119v45,0,69,26,69,58v0,23,-14,40,-45,58v77,30,63,134,-23,132xm93,-21v27,0,42,-18,42,-40v0,-17,-11,-33,-46,-52v-27,17,-39,34,-39,53v0,23,16,39,43,39xm94,-141v25,-15,36,-29,36,-43v0,-19,-13,-35,-36,-35v-50,0,-50,56,0,78","w":185,"k":{"3":12,"2":5,"1":4,"\/":14,"%":7}},"9":{"d":"24,67r-6,-25v61,0,112,-31,118,-90v-49,38,-122,9,-122,-55v0,-42,34,-74,78,-74v59,0,79,54,79,102v0,86,-54,142,-147,142xm47,-104v0,52,60,60,91,32v3,-44,-12,-80,-48,-80v-23,0,-43,18,-43,48","w":186,"k":{"3":7,"\/":4,"'":8,"#":-4,"\"":8}},":":{"d":"42,3v-13,0,-23,-11,-23,-24v0,-13,10,-23,23,-23v13,0,24,10,24,23v0,13,-11,24,-24,24xm42,-129v-13,0,-23,-10,-23,-23v0,-13,10,-24,23,-24v13,0,24,11,24,24v0,13,-11,23,-24,23","w":85},";":{"d":"22,49v9,-12,15,-26,15,-37v0,-14,-17,-17,-17,-35v0,-12,9,-21,22,-21v42,0,23,70,0,93r-20,0xm42,-129v-13,0,-23,-10,-23,-23v0,-13,10,-24,23,-24v13,0,24,11,24,24v0,13,-11,23,-24,23","w":85},"<":{"d":"100,-9r-90,-80r90,-80r17,17r-70,62r70,62","w":132,"k":{"7":-7,"2":-7}},"=":{"d":"13,-53r0,-25r141,0r0,25r-141,0xm13,-113r0,-26r141,0r0,26r-141,0","w":166},">":{"d":"32,-9r-17,-18r70,-62r-70,-61r17,-19r90,79","w":132,"k":{"7":7,"4":15,"3":8,"2":8}},"?":{"d":"130,-183v0,64,-72,46,-63,111r-29,0r0,-22v-7,-42,59,-46,59,-87v0,-39,-44,-44,-72,-29r-11,-24v46,-26,116,0,116,51xm53,3v-13,0,-22,-9,-22,-22v0,-12,9,-22,22,-22v12,0,23,10,23,22v0,13,-11,22,-23,22","w":146},"@":{"d":"135,33v-75,0,-120,-52,-120,-119v0,-71,55,-138,132,-138v78,0,119,59,119,109v0,46,-27,85,-65,85v-25,1,-36,-18,-39,-38v-12,46,-85,52,-84,-4v0,-47,26,-95,77,-95v16,0,33,5,44,8r-14,84v0,13,7,23,18,23v23,0,40,-27,40,-60v0,-53,-42,-90,-96,-90v-55,0,-106,51,-106,115v0,78,81,118,151,88r9,20v-13,5,-39,12,-66,12xm121,-54v29,-1,46,-54,51,-90v-42,-14,-64,24,-65,68v0,10,4,22,14,22","w":278,"k":{"z":1,"x":4,"w":-1,"f":-1,"a":2,"Z":6,"Y":13,"X":8,"W":3,"V":8,"T":11,"S":7,"C":-1,"A":7}},"A":{"d":"70,-84r87,0r-44,-118v-10,35,-30,82,-43,118xm7,0r92,-240r31,0r93,240r-35,0r-21,-57r-107,0r-20,57r-33,0","w":229,"k":{"y":12,"w":10,"v":9,"u":2,"t":6,"o":1,"i":3,"g":5,"c":3,"\\":15,"Z":-1,"Y":18,"W":10,"V":12,"U":5,"T":15,"Q":8,"O":8,"G":6,"C":9,".":-3,"-":8,",":-3}},"B":{"d":"33,0r0,-240v69,-1,147,-8,147,60v0,30,-19,45,-43,54v29,5,53,26,53,59v0,72,-82,69,-157,67xm66,-26v45,2,95,-1,90,-41v5,-40,-42,-49,-90,-45r0,86xm66,-138v42,2,86,-1,81,-39v3,-36,-41,-38,-81,-36r0,75","w":208,"k":{"z":4,"y":4,"x":4,"w":3,"v":4,"j":2,"i":4,"g":3,"e":1,"Z":3,"Y":6,"X":4,"W":4,"V":5,"T":5,"A":5,"\/":7}},"C":{"d":"136,4v-76,0,-118,-60,-118,-125v0,-65,44,-123,119,-123v31,0,50,6,68,18r-16,24v-14,-9,-31,-15,-53,-15v-55,0,-83,46,-83,96v0,51,27,98,84,98v26,0,44,-8,58,-20r15,23v-12,12,-40,24,-74,24","w":221,"k":{"}":-1,"z":1,"y":9,"x":4,"w":8,"v":11,"u":2,"t":7,"q":1,"o":3,"i":1,"g":4,"e":5,"d":1,"]":-1,"\\":-4,"Z":-2,"U":2,"T":-3,"Q":8,"O":8,"G":6,"C":6,"?":-1,"-":10,")":-1}},"D":{"d":"33,0r0,-240r60,0v94,0,136,48,136,117v0,69,-42,123,-138,123r-58,0xm66,-27v80,6,129,-22,129,-95v0,-72,-48,-96,-129,-91r0,186","w":246,"k":{"z":3,"x":4,"i":4,"a":3,"Z":6,"Y":8,"X":7,"W":4,"V":6,"T":7,"A":12,"\/":12,".":8,",":8}},"E":{"d":"33,0r0,-240r127,0r0,28r-94,0r0,72r82,0r0,27r-82,0r0,86r96,0r0,27r-129,0","w":182,"k":{"z":2,"y":4,"w":6,"v":8,"u":6,"r":2,"q":2,"p":2,"o":4,"n":2,"m":2,"i":2,"g":4,"e":2,"d":2,"c":5,"\\":-7,"S":-2}},"F":{"d":"33,0r0,-240r129,0r0,28r-96,0r0,73r83,0r0,27r-83,0r0,112r-33,0","w":177,"k":{"z":10,"y":4,"x":11,"w":2,"v":6,"u":9,"s":4,"r":7,"q":4,"p":7,"o":4,"n":7,"m":7,"i":4,"g":5,"e":5,"d":6,"c":5,"a":8,"\\":-7,"Q":2,"O":2,"M":5,"J":1,"G":2,"C":2,"A":18,"?":-1,";":4,":":4,"\/":15,".":21,",":21}},"G":{"d":"139,4v-77,0,-121,-61,-121,-125v0,-65,45,-123,123,-123v32,0,57,7,76,22r-16,24v-18,-14,-36,-19,-61,-19v-60,0,-87,46,-87,96v0,51,27,98,87,98v25,0,44,-6,55,-14r0,-63r-50,0r0,-27r83,0r0,107v-18,14,-48,24,-89,24","w":254,"k":{"z":3,"y":8,"x":5,"w":5,"v":7,"u":3,"r":1,"p":1,"n":1,"m":1,"\\":4,"Z":3,"Y":7,"X":2,"W":5,"V":7,"U":2,"T":7,"A":1,"\/":7}},"H":{"d":"33,0r0,-240r33,0r0,100r130,0r0,-100r33,0r0,240r-33,0r0,-112r-130,0r0,112r-33,0","w":262,"k":{"i":4}},"I":{"d":"36,0r0,-240r32,0r0,240r-32,0","w":104,"k":{"w":4,"v":4,"i":6,"g":4}},"J":{"d":"72,4v2,51,-35,74,-81,62r5,-28v25,9,43,-4,43,-39r0,-239r33,0r0,244","w":105,"k":{"w":4,"v":4,"i":4,"g":2}},"K":{"d":"33,0r0,-240r33,0r0,114r94,-114r38,0r-95,113r101,127r-40,0r-98,-124r0,124r-33,0","w":209,"k":{"y":12,"w":8,"v":9,"u":9,"t":8,"s":5,"r":4,"q":7,"p":4,"o":8,"n":4,"m":4,"j":2,"i":6,"g":8,"f":4,"e":10,"d":7,"c":7,"a":4,"\\":-7,"Q":12,"O":12,"G":10,"C":12,"@":4,"?":-1,"-":18}},"L":{"d":"34,0r0,-240r32,0r0,213r94,0r0,27r-126,0","w":173,"k":{"y":14,"x":4,"w":12,"v":17,"u":5,"t":8,"s":4,"q":4,"o":5,"j":4,"i":4,"g":4,"f":4,"e":6,"d":6,"c":6,"\\":12,"Y":23,"W":18,"V":22,"U":7,"T":21,"Q":13,"O":13,"G":6,"C":10,"?":5,".":-3,"-":21,",":-3}},"M":{"d":"18,0r33,-240r31,0r73,204v20,-67,49,-138,72,-204r31,0r32,240r-33,0r-24,-184r-64,184r-32,0r-66,-184r-22,184r-31,0","w":308,"k":{"y":6,"w":4,"v":4,"u":4,"t":3,"s":1,"i":2,"g":2,"\\":4,"Y":8,"W":4,"V":4,"U":2,"T":4,"S":1,"Q":2,"O":2,"G":4,"C":5,"?":3,"-":3}},"N":{"d":"33,0r0,-240r32,0r132,191v-4,-53,-1,-132,-2,-191r30,0r0,240r-30,0r-133,-195r1,195r-30,0","w":258,"k":{"u":4}},"O":{"d":"138,4v-75,0,-120,-58,-120,-124v0,-66,44,-124,119,-124v75,0,119,58,119,124v0,66,-43,124,-118,124xm137,-23v55,0,85,-45,85,-97v0,-52,-29,-97,-84,-97v-55,0,-85,45,-85,97v0,52,29,97,84,97","w":274,"k":{"z":4,"x":4,"i":4,"a":4,"\\":4,"Z":6,"Y":8,"X":10,"W":4,"V":6,"U":2,"T":5,"S":5,"M":2,"A":7,"?":4,"\/":15,".":11,",":11}},"P":{"d":"33,0r0,-240v75,-4,150,0,150,71v0,57,-49,79,-117,74r0,95r-33,0xm66,-121v47,3,88,-6,84,-47v4,-36,-37,-49,-84,-45r0,92","w":198,"k":{"u":5,"s":3,"r":2,"q":6,"p":2,"o":7,"n":2,"m":2,"i":13,"g":4,"e":10,"d":8,"c":9,"a":4,"\\":-3,"Z":7,"X":5,"V":2,"M":8,"A":23,"@":4,"\/":28,".":40,"-":6,",":40}},"Q":{"d":"265,47v-49,25,-94,11,-135,-43v-70,-4,-112,-61,-112,-124v0,-66,44,-124,119,-124v145,0,158,220,29,245v18,31,59,41,87,22xm137,-23v55,0,85,-45,85,-97v0,-52,-29,-97,-84,-97v-55,0,-85,45,-85,97v0,52,29,97,84,97","w":274,"k":{"x":4,"j":-1,"a":2,"\\":4,"Z":7,"Y":11,"X":10,"W":2,"V":6,"U":2,"T":5,"S":3,"M":2,"J":-14,"A":7,"?":4,".":11,",":11}},"R":{"d":"33,0r0,-240v72,-4,150,-1,150,65v0,41,-31,58,-65,64v25,23,59,79,83,111r-38,0v-25,-27,-60,-112,-97,-108r0,108r-33,0xm66,-134v43,3,88,-2,84,-40v4,-37,-41,-42,-84,-39r0,79","w":208,"k":{"y":4,"w":4,"v":4,"u":6,"q":3,"o":4,"j":3,"i":1,"g":6,"e":6,"d":4,"c":6,"Y":4,"W":3,"V":3,"U":4,"T":3,"Q":4,"O":4,"J":1,"@":3,"?":5,"-":11}},"S":{"d":"54,-183v7,58,110,44,110,121v0,39,-32,66,-80,66v-37,0,-60,-15,-69,-24r16,-23v5,5,23,20,54,20v28,0,47,-18,47,-38v0,-57,-110,-49,-110,-121v0,-40,33,-62,71,-62v36,0,57,13,65,19r-15,24v-15,-18,-94,-27,-89,18","w":180,"k":{"z":2,"y":6,"x":3,"w":4,"v":4,"Y":3,"W":2,"V":2,"U":2,"@":-3,"\/":4,"-":3}},"T":{"d":"75,0r0,-212r-68,0r0,-28r168,0r0,28r-68,0r0,212r-32,0","w":181,"k":{"}":-1,"z":22,"y":23,"x":21,"w":21,"v":17,"u":21,"t":7,"s":23,"r":18,"q":23,"p":18,"o":24,"n":18,"m":18,"j":3,"i":7,"g":24,"f":6,"e":26,"d":22,"c":26,"a":28,"]":-1,"\\":-11,"Y":-7,"X":-5,"W":-7,"V":-6,"T":-6,"S":1,"Q":5,"O":5,"M":4,"G":6,"C":4,"A":15,"@":15,"?":-5,";":17,":":17,"\/":24,".":29,"-":18,",":29}},"U":{"d":"126,4v-125,0,-89,-134,-94,-244r32,0v8,84,-32,220,63,217v94,-3,52,-133,61,-217r31,0r0,147v0,60,-30,97,-93,97","w":250,"k":{"z":4,"y":4,"x":4,"w":4,"v":4,"u":4,"t":4,"s":4,"r":4,"p":4,"o":4,"n":4,"m":4,"l":2,"j":5,"i":4,"g":5,"e":4,"d":4,"c":4,"a":4,"S":5,"Q":2,"O":2,"M":2,"J":3,"G":1,"A":7,"?":1,"\/":19,".":7,",":7,"!":1}},"V":{"d":"98,0r-92,-240r35,0r74,203r72,-203r32,0r-89,240r-32,0","w":225,"k":{"z":10,"y":4,"x":8,"w":4,"v":4,"u":12,"t":1,"s":15,"r":12,"q":15,"p":12,"o":17,"n":12,"m":12,"j":7,"i":4,"g":18,"f":4,"e":20,"d":17,"c":20,"a":14,"\\":-4,"Y":-4,"X":-3,"W":-4,"T":-6,"Q":6,"O":6,"M":5,"J":3,"G":7,"C":4,"A":12,"@":12,"?":-1,";":12,":":12,"\/":25,".":33,"-":15,",":33,"!":1}},"W":{"d":"73,0r-66,-240r35,0r48,196r54,-196r33,0r54,195v10,-60,33,-136,47,-195r32,0r-66,240r-29,0r-56,-202v-13,61,-40,141,-57,202r-29,0","w":317,"k":{"z":6,"y":4,"x":5,"w":2,"v":4,"u":8,"s":8,"r":9,"q":8,"p":9,"o":13,"n":9,"m":9,"j":5,"i":4,"g":13,"e":13,"d":12,"c":17,"a":12,"\\":-4,"Y":-4,"W":-4,"V":-4,"T":-7,"Q":2,"O":4,"M":4,"G":4,"C":2,"A":15,"@":8,"?":-1,";":6,":":6,"\/":23,".":29,"-":11,",":29}},"X":{"d":"9,0r76,-124r-72,-116r37,0r55,90r52,-90r34,0r-70,116r77,124r-37,0r-61,-98r-58,98r-33,0","w":207,"k":{"y":8,"w":5,"v":5,"u":4,"t":5,"q":4,"o":8,"j":4,"g":9,"f":4,"e":8,"d":8,"c":8,"a":3,"Q":11,"O":10,"G":9,"C":6,"@":4,"-":15}},"Y":{"d":"86,0r0,-91r-80,-149r36,0r62,119r62,-119r31,0r-78,149r0,91r-33,0","w":202,"k":{"z":17,"y":13,"x":12,"w":12,"v":8,"u":19,"t":6,"s":23,"r":17,"q":23,"p":17,"o":23,"n":17,"m":17,"j":4,"i":4,"g":25,"f":6,"e":26,"d":23,"c":27,"a":22,"\\":-4,"Y":-1,"W":-4,"V":-4,"T":-7,"S":4,"Q":11,"O":8,"M":8,"J":4,"G":9,"C":7,"A":19,"@":20,"?":-1,";":17,":":17,"\/":31,".":36,"-":19,",":36}},"Z":{"d":"17,0r0,-22r126,-191r-121,0r0,-27r160,0r0,21r-128,192r132,0r0,27r-169,0","w":202,"k":{"y":9,"w":10,"v":8,"u":6,"t":5,"s":4,"q":5,"o":8,"j":1,"i":3,"g":7,"f":3,"e":7,"d":5,"c":6,"a":1,"T":1,"Q":6,"O":6,"M":3,"G":8,"C":10,"A":1,"?":-1,"-":11}},"[":{"d":"28,58r0,-317r76,0r0,23r-47,0r0,271r47,0r0,23r-76,0","w":112,"k":{"y":-9,"j":-22,"T":-1,"J":-22}},"\\":{"d":"117,58r-115,-317r29,0r115,317r-29,0","k":{"z":1,"y":-1,"x":4,"w":14,"v":18,"u":9,"t":8,"s":5,"r":3,"q":4,"o":6,"n":3,"m":3,"l":5,"k":3,"j":-19,"i":5,"h":3,"g":-1,"f":8,"e":6,"d":6,"c":5,"b":4,"Y":20,"W":18,"V":20,"U":14,"T":15,"Q":14,"O":14,"J":-23,"G":11,"C":14}},"]":{"d":"9,58r0,-23r46,0r0,-271r-46,0r0,-23r76,0r0,317r-76,0","w":112},"^":{"d":"21,-104r73,-136r22,0r73,136r-28,0r-56,-104r-56,104r-28,0","w":210},"_":{"d":"0,59r0,-25r145,0r0,25r-145,0","w":144},"`":{"d":"101,-194r-49,-46r44,0r32,46r-27,0","w":180},"a":{"d":"116,-21v-22,36,-103,34,-101,-22v2,-48,53,-61,100,-60v10,-57,-49,-61,-79,-30r-15,-21v34,-35,124,-36,124,35v0,37,-2,90,4,119r-30,0v-1,-5,-3,-16,-3,-21xm47,-44v4,40,55,22,68,0r0,-37v-37,-1,-71,7,-68,37","w":172,"k":{"y":2,"v":2,"u":1,"t":1,"g":1,"\\":18,"?":3}},"b":{"d":"175,-87v0,79,-88,111,-148,78r0,-250r31,0r0,100v48,-43,117,-4,117,72xm58,-26v44,18,90,-15,85,-61v8,-55,-52,-83,-85,-48r0,109","w":189,"k":{"\\":11,"\/":11,".":4,",":4}},"c":{"d":"95,4v-52,0,-81,-42,-81,-91v0,-84,87,-109,135,-74r-13,22v-9,-6,-20,-13,-40,-13v-34,0,-50,28,-50,65v0,36,15,66,50,66v21,0,37,-10,42,-14r11,22v-7,6,-23,17,-54,17","w":159,"k":{"}":-1,"z":-2,"y":-2,"w":-2,"v":-2,"t":-2,"o":2,"f":-4,"a":-2,"]":-1,"\\":3,"?":-1,";":-4,":":-4,".":-1,",":-2,")":-1,"!":-2}},"d":{"d":"135,-20v-44,50,-121,18,-121,-66v0,-74,66,-114,120,-77r0,-96r30,0v2,85,-6,182,5,259r-31,0v-1,-4,-3,-14,-3,-20xm46,-87v-7,62,58,86,88,42r0,-92v-35,-33,-94,-8,-88,50","w":190,"k":{"g":1,"\/":3}},"e":{"d":"98,4v-55,0,-84,-40,-84,-92v0,-51,33,-89,79,-89v48,-1,75,38,69,92r-116,0v1,35,16,64,53,64v24,0,39,-11,47,-15r12,23v-9,6,-28,17,-60,17xm48,-108r84,0v-1,-23,-11,-45,-39,-45v-26,0,-41,19,-45,45","w":178,"k":{"x":3,"f":-1,"\\":14,"\/":4}},"f":{"d":"35,0r0,-149r-28,0r0,-24r28,0v-13,-67,40,-106,96,-85r-8,25v-34,-14,-68,10,-57,60r43,0r0,24r-43,0r0,149r-31,0","w":117,"k":{"}":-21,"y":-1,"w":-3,"v":-3,"u":5,"s":3,"r":5,"q":2,"p":5,"o":3,"n":5,"m":5,"g":7,"e":9,"d":4,"c":6,"a":4,"]":-21,"\\":-22,"?":-10,"\/":14,".":16,"-":5,",":16,")":-21,"!":-2}},"g":{"d":"86,85v-41,0,-71,-14,-71,-48v0,-19,13,-34,30,-44v-22,-9,-18,-46,3,-54v-54,-29,-34,-122,40,-116v26,3,55,5,85,4r0,23r-26,0v35,48,-9,113,-78,97v-21,13,-11,26,16,27v37,1,89,0,89,53v0,36,-41,58,-88,58xm88,62v33,0,55,-13,55,-33v-1,-37,-47,-23,-76,-30v-32,19,-32,64,21,63xm88,-74v25,0,40,-17,40,-40v0,-23,-15,-40,-40,-40v-25,0,-40,17,-40,40v0,23,15,40,40,40","w":183,"k":{"y":-4,"u":1,"t":-3,"j":-8,"g":2,"f":-2,"\\":17,"?":5,"\/":-4,".":5,"-":5,",":4,"!":1}},"h":{"d":"27,0r0,-259r31,0r0,110v8,-10,26,-28,56,-28v80,1,43,107,51,177r-31,0r0,-117v0,-21,-7,-34,-29,-34v-25,0,-43,25,-47,30r0,121r-31,0","w":191,"k":{"y":2,"v":4,"\\":14,"\/":3}},"i":{"d":"46,-204v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,21,-21,21xm31,0r0,-173r31,0r0,173r-31,0","w":92,"k":{"\/":3}},"j":{"d":"60,21v4,45,-30,71,-73,59r5,-25v24,8,37,-6,37,-39r0,-189r31,0r0,194xm44,-204v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21v12,0,22,9,22,21v0,12,-10,21,-22,21","w":88},"k":{"d":"27,0r0,-259r31,0r0,162r70,-76r35,0r-70,77r73,96r-36,0r-72,-96r0,96r-31,0","w":172,"k":{"z":-2,"q":3,"o":4,"g":4,"e":4,"d":4,"c":4,"\\":4,"@":3,"?":3,"-":12}},"l":{"d":"29,0r0,-259r31,0r0,259r-31,0","w":89,"k":{"p":3,"l":-3,"g":2}},"m":{"d":"28,0r0,-173r31,0r0,24v8,-9,23,-28,53,-28v25,0,38,12,44,28v24,-40,105,-38,105,26r0,123r-31,0r0,-117v0,-20,-6,-34,-27,-34v-20,0,-35,16,-43,26r0,125r-31,0r0,-117v0,-21,-7,-34,-26,-34v-24,0,-40,25,-44,30r0,121r-31,0","w":287,"k":{"w":2,"v":2,"\\":14,"\/":3}},"n":{"d":"28,0r0,-173r31,0r0,24v27,-44,107,-35,107,26r0,123r-31,0r0,-117v2,-52,-62,-34,-76,-4r0,121r-31,0","w":192,"k":{"y":2,"w":2,"v":2,"\\":14,"\/":3}},"o":{"d":"95,4v-59,0,-81,-49,-81,-90v0,-41,21,-91,80,-91v59,0,84,49,84,90v0,41,-24,91,-83,91xm96,-21v34,0,49,-29,49,-65v0,-36,-17,-66,-51,-66v-35,0,-48,29,-48,65v0,36,15,66,50,66","w":191,"k":{"z":2,"y":2,"x":6,"v":4,"f":2,"\\":11,"\/":11,".":4,",":4}},"p":{"d":"28,79r0,-252r31,0r0,18v41,-45,129,-15,120,68v7,74,-72,113,-120,77r0,89r-31,0xm59,-36v31,31,87,10,87,-50v0,-37,-14,-65,-45,-65v-23,0,-37,17,-42,23r0,92","w":192,"k":{"x":1,"v":2,"f":1,"\\":13,"\/":7,".":3,",":3}},"q":{"d":"131,78r0,-92v-45,42,-117,3,-117,-72v0,-54,38,-91,88,-91v35,0,56,10,60,12r0,243r-31,0xm95,-22v19,0,33,-14,36,-17r0,-108v-40,-17,-85,13,-85,61v0,36,14,64,49,64","w":190,"k":{"x":2,"w":3,"v":3,"u":3,"p":3,"l":3,"k":5,"j":-1,"h":5,"b":5,"\\":14}},"r":{"d":"28,0r0,-173r31,0r0,26v5,-17,39,-38,65,-27r-8,29v-24,-14,-58,20,-57,30r0,115r-31,0","w":127,"k":{"y":-5,"x":-3,"w":-4,"v":-4,"t":-4,"k":-1,"h":-1,"g":3,"f":-4,"e":2,"c":3,"b":-1,"?":3,";":-3,":":-3,"\/":18,".":22,"-":6,",":22}},"s":{"d":"47,-130v6,37,93,34,86,82v8,56,-89,65,-119,36r12,-23v9,14,80,24,77,-9v-3,-34,-85,-35,-85,-85v0,-28,22,-48,57,-48v29,0,46,11,52,15r-14,22v-9,-12,-71,-21,-66,10","k":{"y":2,"g":3,"b":3,"a":-2,"\\":14,"\/":5,"-":8}},"t":{"d":"82,4v-69,2,-39,-93,-45,-153r-28,0r0,-24r28,0r0,-50r30,0r0,50r44,0r0,24r-44,0r0,102v-6,31,32,27,44,18r9,23v-5,4,-19,10,-38,10","w":128,"k":{"w":-3,"v":-3,"u":1,"g":6,"f":2,"e":2,"c":2,"a":-3,"\\":7,".":-4,"-":6,",":-4}},"u":{"d":"78,4v-81,0,-44,-107,-52,-177r31,0r0,117v0,21,7,33,29,33v24,0,43,-25,47,-30r0,-120r31,0r0,134v0,16,1,31,3,39r-30,0v-1,-4,-3,-17,-3,-25v-8,11,-26,29,-56,29","w":192,"k":{"\\":10,"\/":5}},"v":{"d":"71,0r-66,-173r34,0r47,133r46,-133r31,0r-63,173r-29,0","w":169,"k":{"y":-4,"w":-4,"v":-4,"t":-4,"q":3,"o":4,"g":4,"f":-4,"e":3,"d":2,"c":3,"\\":8,"?":1,";":-1,":":-1,"\/":12,".":19,"-":1,",":19}},"w":{"d":"57,0r-51,-173r33,0r36,127r38,-127r29,0r39,127r36,-127r30,0r-51,173r-28,0r-42,-131r-42,131r-27,0","w":254,"k":{"y":-3,"w":-4,"v":-4,"t":-4,"q":2,"g":4,"f":-4,"e":2,"d":2,"c":2,"\\":9,"?":3,";":-1,":":-1,"\/":12,".":17,",":17}},"x":{"d":"8,0r59,-90r-56,-83r34,0r40,59r37,-59r32,0r-54,81r63,92r-35,0r-46,-69r-43,69r-31,0","w":169,"k":{"x":-1,"q":4,"o":6,"g":4,"f":3,"e":6,"d":4,"c":5,"\\":13,"@":3,"\/":3,"-":12}},"y":{"d":"94,22v-12,39,-39,70,-91,60r5,-25v41,10,54,-26,64,-58r-65,-172r34,0r48,133r46,-133r32,0","w":172,"k":{"y":-3,"w":-4,"v":-4,"t":-3,"q":4,"p":1,"o":2,"l":2,"k":3,"h":3,"g":4,"f":-4,"e":3,"d":3,"b":3,"\\":10,"?":4,";":-1,":":-1,"\/":18,".":22,",":22,"!":1}},"z":{"d":"15,0r0,-18r85,-131r-80,0r0,-24r118,0r0,19r-86,130r87,0r0,24r-124,0","w":154,"k":{"w":-1,"v":-1,"o":2,"k":1,"g":6,"e":4,"d":4,"c":4,"\\":7,".":1,"-":4,",":2}},"{":{"d":"123,58v-39,1,-71,2,-73,-40v-2,-49,13,-110,-40,-109r0,-23v51,1,39,-58,40,-106v2,-41,34,-40,73,-39r0,23v-26,-2,-45,0,-43,28v3,48,5,99,-36,105v43,6,38,62,36,111v-1,30,17,28,43,27r0,23","w":132,"k":{"y":-9,"j":-22,"T":-1,"J":-22}},"|":{"d":"39,90r0,-360r25,0r0,360r-25,0","w":102},"}":{"d":"9,58r0,-23v26,2,44,0,44,-28v0,-47,-9,-105,35,-109v-42,-6,-38,-59,-35,-107v2,-29,-18,-28,-44,-27r0,-23v39,-1,71,-2,73,40v2,48,-12,106,40,105r0,23v-52,-1,-39,60,-40,109v-2,42,-34,42,-73,40","w":132},"~":{"d":"143,-63v-48,0,-76,-44,-110,-10r-14,-19v10,-10,27,-22,48,-22v41,0,75,44,112,10r14,18v-13,13,-31,23,-50,23","w":211},"\u00a0":{"w":78}}});
Cufon.registerFont({"w":132,"face":{"font-family":"Kievit-BookSC","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","bbox":"-9 -282 310 90","underline-thickness":"7.2","underline-position":"-47.88","stemh":"25","stemv":"33","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":78},"!":{"d":"32,-62r-6,-123r36,0r-6,123r-24,0xm44,3v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,21,9,21,21v0,12,-9,22,-21,22","w":87},"\"":{"d":"107,-240r-9,82r-23,0r-4,-82r36,0xm51,-240r-4,82r-23,0r-9,-82r36,0","w":121},"#":{"d":"63,-146r-45,0r3,-23r45,0r11,-71r23,0r-11,71r42,0r10,-71r23,0r-11,71r43,0r-3,23r-43,0r-7,47r43,0r-4,23r-43,0r-11,76r-23,0r12,-76r-42,0r-12,76r-22,0r11,-76r-45,0r4,-23r45,0xm127,-146r-42,0r-7,47r43,0","w":203},"$":{"d":"82,-111v-32,-13,-60,-31,-60,-71v0,-35,26,-56,58,-61r0,-39r24,0r0,38v30,2,46,13,54,19r-15,24v-7,-5,-21,-14,-41,-16r0,81v30,15,62,30,62,74v0,33,-23,59,-60,65r0,39r-24,0r0,-38v-34,-1,-56,-16,-65,-24r16,-23v5,5,22,20,51,21r0,-89xm102,-101r0,77v41,-12,37,-64,0,-77xm82,-146r0,-70v-17,4,-29,16,-29,33v0,18,12,28,29,37","w":180},"%":{"d":"227,3v-44,0,-63,-33,-63,-61v0,-28,18,-60,62,-60v85,2,85,121,1,121xm74,-122v-44,0,-63,-33,-63,-61v0,-28,18,-60,62,-60v44,0,63,32,63,60v0,28,-18,61,-62,61xm60,0r152,-240r28,0r-152,240r-28,0xm74,-144v22,0,36,-17,36,-39v0,-22,-14,-39,-36,-39v-23,0,-37,17,-37,39v0,22,14,39,37,39xm227,-19v22,0,36,-17,36,-39v0,-22,-14,-39,-36,-39v-23,0,-37,17,-37,39v0,22,14,39,37,39","w":300},"&":{"d":"92,-98r44,46v8,-11,12,-25,15,-39r26,4v-4,20,-12,38,-24,53r33,34r-36,0r-15,-16v-35,34,-123,19,-123,-32v0,-27,17,-40,41,-53v-38,-29,-26,-88,31,-88v31,0,51,18,51,41v0,21,-16,35,-43,50xm118,-33r-50,-51v-36,15,-34,64,12,64v14,0,28,-5,38,-13xm78,-113v21,-12,29,-22,29,-34v0,-11,-9,-20,-23,-20v-35,2,-29,38,-6,54","w":191},"(":{"d":"113,58r-29,0v-20,-22,-65,-74,-65,-161v0,-83,44,-135,65,-156r29,0v-22,23,-62,76,-62,156v0,81,34,129,62,161","w":113},")":{"d":"1,58v28,-32,62,-80,62,-161v0,-80,-40,-133,-62,-156r29,0v21,21,65,73,65,156v0,87,-45,139,-65,161r-29,0","w":114},"*":{"d":"141,-206r8,22r-48,15r30,40r-19,14r-29,-42r-29,42r-20,-14r31,-40r-49,-15r8,-22r47,17r-2,-51r27,0r-2,51","w":166},"+":{"d":"172,-82r-65,0r0,68r-28,0r0,-68r-65,0r0,-26r65,0r0,-65r28,0r0,65r65,0r0,26","w":185},",":{"d":"40,-44v45,2,18,82,1,93r-20,0v6,-8,15,-23,15,-37v0,-14,-17,-17,-17,-35v0,-12,9,-21,21,-21","w":83},"-":{"d":"94,-90r-75,0r0,-26r75,0r0,26","w":112},".":{"d":"66,-21v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-23,24,-23v13,0,24,10,24,23","w":83},"\/":{"d":"146,-259r-115,317r-29,0r115,-317r29,0","w":147},"0":{"d":"108,4v-66,0,-91,-64,-91,-124v0,-60,24,-124,91,-124v125,0,125,248,0,248xm108,-21v41,0,59,-43,59,-99v0,-56,-19,-99,-59,-99v-41,0,-59,43,-59,99v0,56,18,99,59,99","w":216},"1":{"d":"60,0r0,-212r-47,15r-7,-25v28,-7,48,-20,85,-18r0,240r-31,0","w":125},"2":{"d":"12,0r0,-18v42,-41,110,-106,110,-158v0,-58,-72,-46,-92,-18r-16,-20v32,-45,142,-40,142,34v0,54,-56,110,-101,154v27,-2,75,-1,106,-1r0,27r-149,0","w":180},"3":{"d":"149,-72v0,61,-73,85,-135,73r5,-26v4,1,14,3,31,3v42,0,66,-18,66,-48v0,-35,-31,-47,-75,-47r0,-23v36,0,67,-18,67,-47v0,-40,-68,-34,-85,-13r-14,-21v13,-11,35,-23,66,-23v44,0,66,23,66,54v1,31,-27,48,-51,58v31,4,59,27,59,60","w":168},"4":{"d":"120,0r0,-53r-111,0r0,-24r110,-163r31,0r0,160r35,0r0,27r-35,0r0,53r-30,0xm41,-79v20,-2,55,-1,79,-1r-1,-116","w":194},"5":{"d":"146,-78v0,61,-63,90,-133,80r5,-26v45,7,95,-8,95,-52v0,-45,-44,-53,-90,-49r7,-115r109,0r0,27r-80,0r-4,61v58,1,91,28,91,74","w":161},"6":{"d":"50,-127v44,-40,126,-12,126,54v0,44,-30,77,-77,77v-58,0,-82,-53,-82,-102v0,-89,53,-146,142,-146r6,25v-67,0,-107,30,-115,92xm144,-71v0,-58,-75,-65,-95,-27v0,48,18,77,51,77v30,0,44,-26,44,-50","w":189},"7":{"d":"58,9r-28,-10r83,-212r-106,0r0,-27r140,0r0,21","w":162},"8":{"d":"89,4v-51,0,-75,-30,-75,-63v0,-32,28,-54,50,-66v-22,-14,-43,-30,-43,-60v0,-35,31,-59,70,-59v41,0,67,22,67,57v0,30,-26,47,-47,59v23,12,53,33,53,68v0,38,-30,64,-75,64xm89,-22v27,0,42,-16,42,-39v0,-25,-26,-41,-46,-52v-16,11,-38,26,-38,53v0,23,14,38,42,38xm90,-141v18,-10,37,-23,37,-44v0,-19,-13,-34,-36,-34v-23,0,-38,15,-38,34v0,22,20,34,37,44","w":178},"9":{"d":"138,-113v-44,41,-125,11,-125,-54v0,-44,30,-77,77,-77v58,0,82,51,82,102v0,89,-47,148,-139,148r-6,-24v61,0,106,-34,111,-95xm45,-169v0,58,75,65,95,27v0,-48,-18,-77,-51,-77v-30,0,-44,26,-44,50","w":189},":":{"d":"66,-152v0,13,-11,23,-24,23v-13,0,-23,-10,-23,-23v0,-13,10,-24,23,-24v13,0,24,11,24,24xm66,-21v0,13,-11,24,-24,24v-13,0,-23,-11,-23,-24v0,-13,10,-23,23,-23v13,0,24,10,24,23","w":85},";":{"d":"41,-44v45,2,18,82,1,93r-20,0v6,-8,15,-23,15,-37v0,-14,-17,-17,-17,-35v0,-12,9,-21,21,-21xm66,-152v0,13,-11,23,-24,23v-13,0,-23,-10,-23,-23v0,-13,10,-24,23,-24v13,0,24,11,24,24","w":85},"<":{"d":"117,-28r-17,19r-90,-80r90,-80r17,17r-70,62"},"=":{"d":"154,-113r-141,0r0,-26r141,0r0,26xm154,-53r-141,0r0,-25r141,0r0,25","w":166},">":{"d":"15,-150r17,-19r90,79r-90,81r-17,-18r70,-62"},"?":{"d":"109,-141v2,46,-53,36,-50,79r-26,0v-11,-45,42,-45,44,-77v2,-28,-38,-29,-55,-19r-10,-22v32,-20,107,-3,97,39xm47,3v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,21,9,21,21v0,12,-9,22,-21,22","w":123},"@":{"d":"266,-115v0,46,-27,85,-65,85v-25,1,-36,-18,-39,-38v-6,15,-22,38,-49,38v-22,0,-35,-21,-35,-42v0,-47,26,-95,77,-95v16,0,33,5,44,8r-14,84v0,13,7,23,18,23v23,0,40,-27,40,-60v0,-53,-42,-90,-96,-90v-55,0,-106,51,-106,115v0,78,81,118,151,88r9,20v-13,5,-39,12,-66,12v-75,0,-120,-52,-120,-119v0,-71,55,-138,132,-138v78,0,119,59,119,109xm171,-136v5,-12,-10,-11,-18,-11v-28,0,-46,35,-46,71v0,10,4,22,14,22v27,0,44,-49,50,-82","w":278},"A":{"d":"60,-57r-20,57r-33,0r92,-240r31,0r93,240r-35,0r-21,-57r-107,0xm157,-84r-44,-118r-43,118r87,0","w":229},"B":{"d":"190,-67v0,72,-82,69,-157,67r0,-240v69,-1,147,-8,147,60v0,30,-19,45,-43,54v29,5,53,26,53,59xm156,-67v5,-40,-42,-49,-90,-45r0,86v45,2,95,-1,90,-41xm147,-177v3,-36,-41,-38,-81,-36r0,75v42,2,86,-1,81,-39","w":210},"C":{"d":"210,-20v-12,12,-40,24,-74,24v-76,0,-118,-60,-118,-125v0,-65,44,-123,119,-123v31,0,50,6,68,18r-16,24v-14,-9,-31,-15,-53,-15v-55,0,-83,46,-83,96v0,51,27,98,84,98v26,0,44,-8,58,-20","w":221},"D":{"d":"229,-123v0,69,-42,123,-138,123r-58,0r0,-240r60,0v94,0,136,48,136,117xm195,-122v0,-72,-48,-96,-129,-91r0,186v80,6,129,-22,129,-95","w":246},"E":{"d":"162,0r-129,0r0,-240r127,0r0,28r-94,0r0,72r82,0r0,27r-82,0r0,86r96,0r0,27","w":181},"F":{"d":"162,-212r-96,0r0,73r83,0r0,27r-83,0r0,112r-33,0r0,-240r129,0r0,28","w":176},"G":{"d":"228,-20v-5,4,-30,24,-89,24v-77,0,-121,-61,-121,-125v0,-65,45,-123,123,-123v40,0,63,12,76,22r-16,24v-14,-11,-31,-19,-61,-19v-60,0,-87,46,-87,96v0,51,27,98,87,98v39,0,55,-14,55,-14r0,-63r-50,0r0,-27r83,0r0,107","w":254},"H":{"d":"229,0r-33,0r0,-112r-130,0r0,112r-33,0r0,-240r33,0r0,100r130,0r0,-100r33,0r0,240","w":262},"I":{"d":"68,0r-32,0r0,-240r32,0r0,240","w":104},"J":{"d":"72,4v2,51,-35,74,-81,62r5,-28v25,9,43,-4,43,-39r0,-239r33,0r0,244","w":105},"K":{"d":"66,-126r94,-114r38,0r-95,113r101,127r-40,0r-98,-124r0,124r-33,0r0,-240r33,0r0,114","w":209},"L":{"d":"160,0r-126,0r0,-240r32,0r0,213r94,0r0,27","w":172},"M":{"d":"169,0r-32,0r-66,-184r-22,184r-31,0r33,-240r31,0r73,204v18,-60,50,-143,72,-204r31,0r32,240r-33,0r-24,-184","w":308},"N":{"d":"225,0r-30,0r-133,-195r1,195r-30,0r0,-240r32,0r132,191v-4,-51,-1,-133,-2,-191r30,0r0,240","w":258},"O":{"d":"256,-120v0,66,-43,124,-118,124v-75,0,-120,-58,-120,-124v0,-66,44,-124,119,-124v75,0,119,58,119,124xm222,-120v0,-52,-29,-97,-84,-97v-55,0,-85,45,-85,97v0,52,29,97,84,97v55,0,85,-45,85,-97","w":274},"P":{"d":"183,-169v0,57,-49,79,-117,74r0,95r-33,0r0,-240v75,-4,150,0,150,71xm150,-168v4,-36,-37,-49,-84,-45r0,92v47,3,88,-6,84,-47","w":198},"Q":{"d":"166,1v18,31,59,41,87,22r12,24v-49,25,-94,11,-135,-43v-70,-4,-112,-61,-112,-124v0,-66,44,-124,119,-124v145,0,159,220,29,245xm222,-120v0,-52,-29,-97,-84,-97v-55,0,-85,45,-85,97v0,52,29,97,84,97v55,0,85,-45,85,-97","w":274},"R":{"d":"201,0r-38,0v-25,-27,-60,-112,-97,-108r0,108r-33,0r0,-240v72,-4,150,-1,150,65v0,41,-31,58,-65,64v25,23,59,79,83,111xm150,-174v4,-37,-41,-42,-84,-39r0,79v43,3,88,-2,84,-40","w":207},"S":{"d":"54,-183v7,58,110,44,110,121v0,39,-32,66,-80,66v-37,0,-60,-15,-69,-24r16,-23v5,5,23,20,54,20v28,0,47,-18,47,-38v0,-57,-110,-49,-110,-121v0,-40,33,-62,71,-62v36,0,57,13,65,19r-15,24v-15,-18,-94,-27,-89,18","w":180},"T":{"d":"175,-212r-68,0r0,212r-32,0r0,-212r-68,0r0,-28r168,0r0,28","w":181},"U":{"d":"219,-93v0,60,-30,97,-93,97v-125,0,-89,-134,-94,-244r32,0v8,84,-32,220,63,217v94,-3,52,-133,61,-217r31,0r0,147","w":251},"V":{"d":"219,-240r-89,240r-32,0r-92,-240r35,0r74,203r72,-203r32,0","w":225},"W":{"d":"310,-240r-66,240r-29,0r-56,-202v-13,60,-40,141,-57,202r-29,0r-66,-240r35,0r48,196r54,-196r33,0r54,195v10,-59,33,-136,47,-195r32,0","w":317},"X":{"d":"84,-124r-71,-116r37,0r55,90r52,-90r34,0r-70,116r77,124r-37,0r-61,-98r-58,98r-33,0","w":204},"Y":{"d":"197,-240r-78,149r0,91r-33,0r0,-91r-80,-149r36,0r62,119r62,-119r31,0","w":202},"Z":{"d":"186,0r-169,0r0,-22r126,-191r-121,0r0,-27r160,0r0,21r-128,192r132,0r0,27","w":208},"[":{"d":"104,58r-76,0r0,-317r76,0r0,23r-47,0r0,271r47,0r0,23","w":112},"\\":{"d":"2,-259r29,0r115,317r-29,0","w":147},"]":{"d":"9,-259r76,0r0,317r-76,0r0,-23r46,0r0,-271r-46,0r0,-23","w":112},"^":{"d":"189,-104r-28,0r-56,-104r-56,104r-28,0r73,-136r22,0","w":210},"_":{"d":"145,59r-145,0r0,-25r145,0r0,25","w":144},"a":{"d":"53,-40r-16,40r-30,0r74,-185r31,0r75,185r-33,0r-15,-40r-86,0xm129,-66r-34,-90v-5,20,-24,67,-33,90r67,0","w":193},"b":{"d":"28,0r0,-185v55,0,123,-9,123,46v0,23,-14,37,-35,42v23,3,43,20,43,46v0,56,-71,52,-131,51xm59,-24v33,1,72,2,68,-29v4,-29,-33,-33,-68,-31r0,60xm59,-107v31,2,65,-2,61,-29v2,-26,-32,-26,-61,-25r0,54","w":176},"c":{"d":"113,3v-63,0,-97,-45,-97,-96v0,-51,35,-96,98,-96v25,0,42,6,56,15r-15,23v-43,-29,-114,-1,-106,57v-9,61,68,90,110,57r13,22v-10,9,-31,18,-59,18","w":183},"d":{"d":"28,0r0,-185r52,0v76,0,110,36,110,90v0,54,-35,95,-112,95r-50,0xm59,-25v60,4,98,-14,98,-69v0,-55,-37,-69,-98,-66r0,135","w":205},"e":{"d":"28,0r0,-185r113,0r0,25r-82,0r0,51r73,0r0,24r-73,0r0,60r84,0r0,25r-115,0","w":162},"f":{"d":"28,0r0,-185r111,0r0,25r-80,0r0,53r71,0r0,25r-71,0r0,82r-31,0","w":154},"g":{"d":"115,3v-64,0,-99,-45,-99,-96v0,-52,37,-96,101,-96v32,0,51,9,62,17r-14,23v-11,-8,-24,-14,-48,-14v-46,0,-68,30,-68,69v0,40,21,72,67,72v26,0,37,-7,42,-10r0,-44r-40,0r0,-24r70,0r0,83v-5,4,-27,20,-73,20","w":210},"h":{"d":"28,0r0,-185r31,0r0,75r100,0r0,-75r31,0r0,185r-31,0r0,-84r-100,0r0,84r-31,0","w":217},"i":{"d":"30,0r0,-185r31,0r0,185r-31,0","w":90},"j":{"d":"64,3v3,43,-35,60,-71,49r5,-26v20,6,35,-1,35,-28r0,-183r31,0r0,188","w":92},"k":{"d":"138,0r-78,-97r74,-88r36,0r-74,87r77,98r-35,0xm28,0r0,-185r31,0r0,185r-31,0","w":178},"l":{"d":"28,0r0,-185r32,0r0,160r78,0r0,25r-110,0","w":150},"m":{"d":"17,0r27,-185r29,0r56,155r56,-155r30,0r26,185r-31,0r-19,-136v-12,41,-34,95,-48,136r-31,0r-50,-136v-2,41,-12,95,-17,136r-28,0","w":257},"n":{"d":"27,0r0,-185r32,0r81,112v12,15,17,32,20,31r-1,-143r28,0r0,185r-28,0r-87,-119v-9,-12,-17,-27,-17,-27r1,146r-29,0","w":214},"o":{"d":"114,3v-62,0,-98,-44,-98,-95v0,-51,35,-97,97,-97v62,0,98,45,98,96v0,51,-35,96,-97,96xm113,-22v43,0,65,-32,65,-70v0,-38,-21,-71,-64,-71v-43,0,-65,33,-65,70v0,38,21,71,64,71","w":226},"p":{"d":"28,0r0,-185v62,-2,128,-4,128,56v0,46,-42,63,-97,59r0,70r-31,0xm59,-94v35,2,69,-3,66,-34v4,-30,-31,-35,-66,-33r0,67","w":169},"q":{"d":"139,1v14,21,46,28,67,15r11,21v-39,20,-81,11,-113,-34v-56,-4,-88,-47,-88,-95v0,-51,35,-97,97,-97v119,0,130,169,26,190xm113,-22v43,0,65,-32,65,-70v0,-38,-21,-71,-64,-71v-43,0,-65,33,-65,70v0,38,21,71,64,71","w":226},"r":{"d":"28,0r0,-185v58,-2,126,-3,126,51v0,32,-23,46,-51,49v18,18,47,61,66,85r-35,0v-20,-21,-45,-83,-75,-81r0,81r-31,0xm59,-104v31,1,67,0,63,-28v4,-28,-31,-31,-63,-29r0,57","w":176},"s":{"d":"48,-140v6,42,88,34,88,91v0,32,-25,52,-65,52v-31,0,-50,-11,-58,-18r14,-22v7,15,84,25,80,-11v-4,-38,-97,-37,-89,-91v-7,-55,89,-58,113,-35r-13,22v-12,-12,-74,-20,-70,12","w":151},"t":{"d":"63,0r0,-159r-57,0r0,-26r145,0r0,26r-57,0r0,159r-31,0","w":157},"u":{"d":"105,3v-98,0,-78,-99,-79,-188r32,0v6,63,-23,162,48,162v70,0,41,-99,47,-162r28,0v-1,87,18,188,-76,188","w":208},"v":{"d":"81,0r-75,-185r33,0r58,153r56,-153r30,0r-72,185r-30,0","w":189},"w":{"d":"60,0r-53,-185r32,0r39,145v8,-41,28,-102,40,-145r31,0r40,144r38,-144r29,0r-53,185r-28,0r-43,-151r-43,151r-29,0","w":263},"x":{"d":"71,-96r-59,-89r34,0r43,67r41,-67r31,0r-57,90r63,95r-34,0r-47,-74r-46,74r-32,0","w":175},"y":{"d":"71,0r0,-70r-65,-115r34,0r48,88r47,-88r30,0r-63,115r0,70r-31,0","w":171},"z":{"d":"15,0r0,-21r98,-139r-94,0r0,-25r132,0r0,20r-100,140r103,0r0,25r-139,0","w":168},"{":{"d":"123,58v-39,1,-71,2,-73,-40v-2,-49,13,-110,-40,-109r0,-23v51,1,39,-58,40,-106v2,-41,34,-40,73,-39r0,23v-26,-2,-45,0,-43,28v3,48,5,99,-36,105v43,6,38,62,36,111v-1,30,17,28,43,27r0,23"},"|":{"d":"64,90r-25,0r0,-360r25,0r0,360","w":102},"}":{"d":"9,-259v39,-1,71,-2,73,40v2,48,-12,106,40,105r0,23v-52,-1,-39,60,-40,109v-2,42,-34,42,-73,40r0,-23v26,2,44,0,44,-28v0,-47,-9,-105,35,-109v-42,-6,-38,-59,-35,-107v2,-29,-18,-28,-44,-27r0,-23"},"~":{"d":"193,-86v-13,13,-31,23,-50,23v-48,0,-76,-44,-110,-10r-14,-19v10,-10,27,-22,48,-22v41,0,75,44,112,10","w":211},"'":{"d":"53,-240r-7,82r-23,0r-7,-82r37,0","w":69},"`":{"d":"77,-194r-49,-46r44,0r33,46r-28,0","w":180},"\u00a0":{"w":78}}});
Cufon.registerFont({"w":102,"face":{"font-family":"Kievit-Bold","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 5 0 0 2 0 4","ascent":"274","descent":"-86","x-height":"4","bbox":"-18 -270 323 90","underline-thickness":"7.2","underline-position":"-40.68","stemh":"36","stemv":"48","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":69,"k":{"T":5}},"!":{"d":"55,4v-18,0,-31,-14,-31,-30v0,-16,13,-29,31,-29v17,0,30,13,30,29v0,16,-13,30,-30,30xm35,-81r-8,-159r56,0r-9,159r-39,0","w":109},"\"":{"d":"23,-152r-10,-88r47,0r-5,88r-32,0xm84,-152r-6,-88r48,0r-10,88r-32,0","w":138,"k":{"9":6,"7":-5,"5":6,"4":46,"1":-2,"0":8}},"#":{"d":"34,-32r7,-45r-32,0r5,-34r32,0r4,-30r-31,0r5,-35r31,0r7,-44r33,0r-6,44r28,0r7,-44r33,0r-7,44r30,0r-5,35r-30,0r-4,30r30,0r-6,34r-29,0r-7,45r-33,0r7,-45r-29,0r-7,45r-33,0xm78,-110r31,0r4,-32r-30,0","w":189,"k":{"9":2,"8":4,"7":-9,"4":23,"1":-5,"0":4}},"$":{"d":"58,44r0,-40v-23,-3,-40,-11,-49,-17r17,-33v9,12,76,26,76,-1v0,-14,-24,-19,-49,-28v-51,-17,-54,-93,5,-102r0,-39r40,0r0,37v20,2,33,9,41,14r-17,33v-10,-11,-65,-21,-65,3v0,12,19,17,39,25v26,10,49,23,49,52v0,30,-16,48,-47,54r0,42r-40,0","w":153,"k":{"7":-5}},"%":{"d":"70,-67v-41,0,-61,-27,-61,-56v0,-29,21,-57,62,-57v41,0,61,25,61,55v0,29,-21,58,-62,58xm71,-96v16,0,20,-13,20,-27v0,-14,-6,-27,-21,-27v-15,0,-21,10,-21,25v0,14,7,29,22,29xm243,4v-41,0,-62,-25,-62,-55v0,-29,21,-57,62,-57v41,0,61,25,61,55v0,29,-20,57,-61,57xm243,-25v16,0,21,-12,21,-26v0,-14,-6,-28,-21,-28v-15,0,-21,11,-21,26v0,14,6,28,21,28xm84,0r106,-176r39,0r-105,176r-40,0","w":312},"&":{"d":"162,-17v-47,41,-150,19,-150,-45v0,-32,16,-51,49,-69v-46,-43,-25,-115,46,-113v42,0,68,23,68,53v0,27,-19,45,-52,64r44,49v7,-13,13,-28,16,-44r41,8v-4,25,-15,48,-30,67r42,47r-58,0xm102,-151v21,-13,28,-24,28,-37v0,-12,-9,-22,-23,-22v-34,0,-28,40,-5,59xm61,-66v-2,36,54,41,77,20r-53,-58v-15,10,-24,22,-24,38","w":239},"'":{"d":"22,-152r-8,-88r48,0r-8,88r-32,0","w":75,"k":{"9":6,"7":-5,"5":6,"4":46,"1":-2,"0":8}},"(":{"d":"79,60v-30,-32,-64,-86,-64,-162v0,-73,34,-128,64,-157r46,0v-24,26,-59,79,-59,156v0,74,27,126,59,163r-46,0","w":124,"k":{"y":-10,"j":-24,"g":-1,"T":-2,"J":-26}},")":{"d":"0,60v27,-31,59,-82,59,-159v0,-75,-31,-128,-59,-160r46,0v31,31,65,86,65,159v0,76,-36,130,-65,160r-46,0","w":125},"*":{"d":"62,-103r-31,-22r31,-37r-47,-13r13,-34r43,17r-2,-48r40,0r-3,48r43,-17r13,34r-47,13r32,37r-32,22r-26,-41","w":177},"+":{"d":"81,-9r0,-67r-66,0r0,-37r66,0r0,-65r41,0r0,65r65,0r0,37r-65,0r0,67r-41,0","w":201,"k":{"7":4,"4":8,"3":7,"2":6,"1":2}},",":{"d":"26,52v8,-12,15,-26,15,-38v0,-20,-22,-21,-22,-45v0,-16,14,-27,30,-27v51,0,34,83,8,110r-31,0"},"-":{"d":"18,-82r0,-39r82,0r0,39r-82,0","w":118,"k":{"z":1,"y":3,"x":10,"w":2,"v":4,"a":1,"Z":2,"Y":24,"X":21,"W":12,"V":17,"T":18,"S":7,"M":1,"J":4,"A":9,"4":15,"3":7,"2":6}},".":{"d":"51,4v-18,0,-32,-14,-32,-31v0,-17,14,-31,32,-31v18,0,32,14,32,31v0,17,-14,31,-32,31"},"\/":{"d":"10,32r102,-283r46,0r-102,283r-46,0","w":162,"k":{"z":12,"y":11,"x":13,"w":6,"v":7,"u":16,"t":4,"s":17,"r":15,"q":20,"p":15,"o":20,"n":15,"m":15,"g":22,"e":21,"d":22,"c":24,"a":24,"Y":-4,"W":-4,"V":-4,"T":-7,"Q":5,"O":5,"M":5,"J":2,"G":8,"C":7,"A":22,"9":24,"8":10,"7":6,"6":15,"5":28,"4":50,"3":18,"2":17,"1":12,"0":27}},"0":{"d":"105,4v-66,0,-93,-47,-93,-91v0,-44,28,-93,94,-93v128,1,125,184,-1,184xm106,-34v28,0,43,-20,43,-53v0,-33,-16,-54,-44,-54v-28,0,-42,19,-42,52v0,33,15,55,43,55","w":210,"k":{">":2,"7":2,"4":7,"3":4,"2":2,"\/":15,".":4,",":4,"'":8,"#":-4,"\"":8}},"1":{"d":"59,0r0,-134r-42,13r-10,-38v31,-7,57,-19,99,-16r0,175r-47,0","w":132,"k":{"\/":4,"'":4,"\"":4}},"2":{"d":"8,0r0,-22v34,-24,98,-68,98,-97v-1,-34,-56,-24,-70,-4r-24,-30v30,-36,145,-42,145,24v0,38,-42,69,-74,92v24,-2,62,-1,89,-1r0,38r-164,0","w":183,"k":{"@":2,"<":5,"9":5,"8":7,"7":4,"5":5,"3":7,"1":4,"-":5,"+":5,"'":11,"%":8,"#":4,"\"":11}},"3":{"d":"155,-10v0,60,-76,88,-142,75r7,-38v32,8,84,0,84,-36v0,-27,-26,-36,-62,-36r0,-35v25,0,55,-15,55,-38v1,-32,-53,-26,-67,-8r-22,-30v14,-12,37,-24,70,-24v45,0,69,23,69,54v1,32,-29,49,-48,57v27,3,56,23,56,59","w":164,"k":{"@":2,"8":4,"6":-2,"4":-1,"3":2,"2":-5,"\/":-7,"'":6,"%":4,"\"":6}},"4":{"d":"120,64r0,-64r-112,0r0,-30r118,-145r42,0r0,138r37,0r0,37r-37,0r0,64r-48,0xm60,-37r60,0r0,-76","w":217,"k":{"@":3,"=":7,"<":13,"9":6,"7":2,"6":3,"5":4,"3":11,"2":2,"1":13,"0":5,".":2,"-":14,",":2,"+":10,"'":19,"%":18,"#":14,"\"":19}},"5":{"d":"152,-17v0,61,-70,97,-141,81r9,-38v32,11,81,-1,81,-41v0,-40,-42,-46,-80,-40r7,-120r119,0r0,36r-75,0r-3,45v53,1,83,32,83,77","w":163,"k":{"<":3,"7":-4,"4":-3,"2":-4,"1":-2,"0":2,"\/":-7,"-":5,"+":5}},"6":{"d":"100,4v-63,0,-88,-51,-88,-105v0,-85,57,-143,151,-143r11,38v-55,0,-103,24,-109,74v44,-33,120,-9,120,58v0,47,-36,78,-85,78xm102,-32v21,0,33,-18,33,-39v0,-45,-51,-46,-72,-26v-2,35,10,65,39,65","w":196,"k":{">":7,"7":4,"4":2,"3":9,"2":4,"1":6,"\/":13,".":2,",":2,"'":4,"\"":4}},"7":{"d":"54,72r-40,-19r89,-189r-96,0r0,-40r151,0r0,26","w":172,"k":{"@":9,">":2,"=":5,"<":16,";":4,":":4,"9":5,"8":6,"6":3,"5":10,"4":29,"2":4,"0":6,"\/":31,".":28,"-":4,",":28,"+":5,"'":2,"\"":2}},"8":{"d":"96,4v-94,0,-110,-95,-37,-127v-69,-32,-38,-121,37,-121v48,0,78,23,78,61v0,22,-15,39,-43,55v31,17,48,36,48,66v0,42,-35,66,-83,66xm96,-31v50,0,44,-54,-4,-73v-21,13,-30,26,-30,42v0,18,12,31,34,31xm98,-146v19,-12,27,-23,27,-35v0,-15,-9,-28,-27,-28v-41,0,-37,47,0,63","w":192,"k":{"5":2,"3":10,"2":5,"1":4,"\/":14,".":2,",":2,"%":7}},"9":{"d":"30,66r-10,-38v53,0,106,-23,112,-72v-47,32,-121,8,-121,-58v0,-47,39,-78,87,-78v64,0,87,51,87,105v0,85,-56,141,-155,141xm62,-104v0,43,47,46,72,26v5,-32,-9,-66,-38,-65v-19,0,-34,15,-34,39","w":197,"k":{"7":2,"3":7,"\/":6,"'":10,"#":-4,"\"":10}},":":{"d":"51,4v-18,0,-32,-14,-32,-32v0,-17,14,-30,32,-30v18,0,32,13,32,30v0,18,-14,32,-32,32xm51,-116v-18,0,-32,-13,-32,-31v0,-17,14,-31,32,-31v18,0,32,14,32,31v0,18,-14,31,-32,31"},";":{"d":"27,52v8,-12,15,-26,15,-38v0,-20,-21,-21,-21,-45v0,-16,13,-27,29,-27v51,0,34,84,8,110r-31,0xm51,-116v-18,0,-32,-13,-32,-31v0,-17,14,-31,32,-31v18,0,32,14,32,31v0,18,-14,31,-32,31"},"<":{"d":"102,-7r-93,-82r93,-84r25,26r-62,57r63,55","w":140,"k":{"7":-7,"2":-7,"1":-2}},"=":{"d":"14,-43r0,-37r144,0r0,37r-144,0xm14,-110r0,-37r144,0r0,37r-144,0","w":172,"k":{"3":2}},">":{"d":"39,-7r-25,-26r62,-57r-63,-55r26,-28r92,82","w":140,"k":{"7":5,"5":2,"4":15,"3":13,"2":10,"1":2}},"?":{"d":"137,-182v0,58,-66,47,-60,102r-41,0r0,-19v-6,-41,49,-44,49,-79v0,-32,-45,-31,-63,-18r-16,-35v13,-7,30,-13,56,-13v51,0,75,27,75,62xm57,4v-18,0,-31,-14,-31,-30v0,-16,13,-29,31,-29v18,0,30,13,30,29v0,16,-12,30,-30,30","w":148},"@":{"d":"143,35v-78,0,-126,-51,-126,-122v0,-71,57,-141,137,-141v84,0,126,54,126,113v0,51,-29,86,-73,86v-27,1,-35,-15,-40,-31v-9,17,-25,30,-47,30v-23,0,-37,-19,-37,-42v0,-51,29,-96,77,-96v21,0,41,5,53,9r-13,84v0,9,5,16,13,16v19,0,35,-20,35,-53v0,-55,-37,-86,-95,-86v-54,0,-100,46,-100,110v0,79,79,111,146,83r12,28v-13,5,-41,12,-68,12xm135,-62v22,1,35,-40,41,-75v-34,-13,-53,19,-53,57v0,10,3,18,12,18","w":292,"k":{"y":-1,"x":5,"w":-4,"v":-2,"f":-3,"a":2,"Z":5,"Y":13,"X":9,"W":3,"V":8,"T":5,"S":4,"J":2,"C":-4,"A":7,"7":-2,"4":6,"1":-2}},"A":{"d":"86,-86r68,0r-34,-98v-6,23,-24,72,-34,98xm5,0r92,-240r49,0r94,240r-56,0r-16,-45r-96,0r-15,45r-52,0","w":244,"k":{"y":17,"w":12,"v":15,"u":4,"t":12,"q":3,"p":2,"o":5,"l":2,"k":2,"j":3,"i":1,"h":2,"g":6,"f":4,"e":4,"d":3,"c":5,"b":2,"a":3,"\\":21,"Y":19,"W":13,"V":18,"U":6,"T":15,"Q":9,"O":9,"J":2,"G":9,"C":10,"@":3,"?":2,".":-1,"-":9,",":-1,"!":2}},"B":{"d":"30,0r0,-240v73,1,162,-13,163,60v1,32,-19,47,-43,56v28,4,53,23,53,57v0,76,-94,68,-173,67xm80,-39v35,1,74,1,71,-32v4,-32,-35,-36,-71,-34r0,66xm80,-141v33,2,63,-2,63,-31v0,-28,-31,-31,-63,-29r0,60","w":216,"k":{"z":4,"y":4,"x":6,"w":3,"v":4,"t":2,"j":2,"i":4,"g":3,"\\":2,"Z":1,"Y":5,"X":4,"W":3,"V":4,"T":3,"A":3,"?":-2,"\/":7}},"C":{"d":"139,4v-82,0,-124,-59,-124,-124v0,-65,43,-124,124,-124v31,0,53,7,72,19r-22,37v-13,-9,-28,-14,-50,-14v-45,0,-70,36,-70,80v0,46,23,84,70,84v26,0,42,-10,55,-19r21,36v-12,11,-41,25,-76,25","w":222,"k":{"}":-5,"y":10,"x":4,"w":8,"v":11,"u":3,"t":7,"o":3,"g":4,"f":2,"e":5,"c":2,"]":-5,"\\":-4,"Z":-3,"X":-2,"W":-1,"V":-2,"U":2,"T":-4,"S":-2,"Q":6,"O":6,"M":-2,"G":6,"C":6,"?":-8,".":-2,"-":9,",":-2,")":-4,"!":-2}},"D":{"d":"30,0r0,-240r72,0v94,0,137,48,137,117v0,69,-44,123,-139,123r-70,0xm81,-41v66,5,105,-19,105,-81v0,-62,-38,-81,-105,-77r0,158","w":254,"k":{"z":1,"x":6,"i":4,"a":5,"\\":4,"Z":8,"Y":8,"X":9,"W":4,"V":8,"T":6,"J":2,"A":12,"?":3,"\/":12,".":9,",":9}},"E":{"d":"30,0r0,-240r138,0r0,42r-88,0r0,54r78,0r0,40r-78,0r0,62r91,0r0,42r-141,0","w":190,"k":{"z":3,"y":6,"x":4,"w":8,"v":9,"u":6,"t":3,"r":3,"q":3,"p":3,"o":6,"n":3,"m":3,"j":2,"i":4,"g":5,"f":2,"e":4,"d":3,"c":5,"a":3,"\\":-5,"S":-2,"J":2,"?":-2,".":-2,"-":2,",":-2}},"F":{"d":"30,0r0,-240r137,0r0,42r-86,0r0,59r76,0r0,39r-76,0r0,100r-51,0","w":183,"k":{"z":7,"y":5,"x":11,"w":4,"v":6,"u":9,"t":2,"s":5,"r":7,"q":6,"p":7,"o":5,"n":7,"m":7,"l":2,"k":2,"j":2,"i":6,"h":2,"g":5,"e":4,"d":6,"c":4,"b":2,"a":10,"\\":-7,"Q":2,"O":2,"M":6,"J":5,"G":2,"C":2,"A":17,"@":2,"?":-4,";":4,":":4,"\/":17,".":19,",":19}},"G":{"d":"142,4v-82,0,-127,-59,-127,-124v0,-65,48,-124,131,-124v36,0,60,8,79,22r-23,37v-15,-11,-32,-17,-57,-17v-51,0,-76,34,-76,80v0,46,23,85,73,85v19,0,34,-4,42,-9r0,-48r-44,0r0,-39r93,0r0,114v-17,12,-45,23,-91,23","w":255,"k":{"z":1,"y":8,"x":5,"w":5,"v":9,"u":1,"i":2,"\\":4,"Z":1,"Y":8,"X":3,"W":5,"V":8,"U":2,"T":5,"S":-1,"J":2,"\/":7}},"H":{"d":"30,0r0,-240r51,0r0,95r107,0r0,-95r51,0r0,240r-51,0r0,-104r-107,0r0,104r-51,0","w":268,"k":{"z":2,"y":2,"x":2,"w":2,"v":2,"i":4}},"I":{"d":"32,0r0,-240r51,0r0,240r-51,0","w":116,"k":{"z":4,"y":4,"x":4,"w":5,"v":6,"u":4,"t":4,"s":3,"r":2,"q":3,"p":2,"o":3,"n":2,"m":2,"l":3,"k":2,"j":3,"i":6,"h":2,"g":4,"f":2,"e":2,"d":2,"c":2,"b":2,"J":2}},"J":{"d":"89,1v5,63,-53,82,-104,67r8,-42v22,9,45,3,45,-32r0,-234r51,0r0,241","w":119,"k":{"z":3,"y":3,"x":3,"w":4,"v":5,"u":3,"t":4,"s":3,"r":2,"q":2,"p":2,"o":3,"n":2,"m":2,"l":3,"k":2,"i":6,"h":2,"g":3,"e":2,"d":2,"c":2,"b":2,"a":2,"J":-2}},"K":{"d":"30,0r0,-240r50,0r0,105r82,-105r56,0r-88,111r92,129r-60,0r-82,-115r0,115r-50,0","w":226,"k":{"z":2,"y":16,"x":2,"w":12,"v":15,"u":10,"t":12,"s":5,"r":6,"q":9,"p":4,"o":11,"n":6,"m":6,"j":3,"i":6,"g":9,"f":6,"e":12,"d":10,"c":10,"a":5,"\\":-5,"U":2,"Q":14,"O":14,"J":2,"G":13,"C":14,"@":6,"?":-3,";":2,":":2,"\/":2,"-":16}},"L":{"d":"31,0r0,-240r51,0r0,199r89,0r0,41r-140,0","w":185,"k":{"}":2,"y":18,"x":5,"w":14,"v":19,"u":5,"t":12,"s":4,"r":2,"q":4,"p":2,"o":5,"n":2,"m":2,"l":2,"k":2,"j":4,"i":6,"h":2,"g":6,"f":8,"e":6,"d":6,"c":6,"b":2,"]":2,"\\":17,"Y":27,"X":2,"W":17,"V":24,"U":10,"T":22,"S":2,"Q":13,"O":13,"J":3,"G":6,"C":9,"@":3,"?":4,".":-1,"-":15,",":-1,")":2,"!":3}},"M":{"d":"15,0r33,-240r49,0r61,190r63,-190r49,0r33,240r-52,0r-20,-159r-51,159r-50,0r-51,-159v-3,50,-13,109,-19,159r-45,0","w":317,"k":{"y":6,"w":5,"v":6,"u":4,"t":7,"o":2,"i":3,"g":2,"f":2,"e":2,"c":2,"\\":4,"Y":11,"W":5,"V":8,"U":4,"T":6,"Q":2,"O":2,"J":2,"G":4,"C":5,"?":3,"-":1}},"N":{"d":"30,0r0,-240r51,0r86,124v15,21,21,38,26,41r-1,-165r46,0r0,240r-47,0r-117,-169v4,47,1,116,2,169r-46,0","w":267,"k":{"z":2,"y":2,"x":2,"v":2,"u":4,"t":2,"r":2,"o":2,"n":2,"m":2,"i":2,"e":2,"c":2}},"O":{"d":"140,4v-80,0,-125,-59,-125,-124v0,-65,44,-124,124,-124v80,0,124,59,124,123v0,65,-43,125,-123,125xm139,-37v48,0,70,-38,70,-83v0,-45,-21,-83,-69,-83v-48,0,-71,37,-71,82v0,45,22,84,70,84","w":278,"k":{"z":4,"x":6,"i":4,"a":5,"\\":4,"Z":7,"Y":9,"X":12,"W":4,"V":8,"U":3,"T":5,"S":3,"M":2,"J":3,"A":7,"?":4,"\/":15,".":11,",":11}},"P":{"d":"29,0r0,-240v83,-3,171,-4,171,76v0,59,-50,84,-120,79r0,85r-51,0xm80,-124v39,2,69,-3,69,-39v0,-33,-30,-41,-69,-38r0,77","w":212,"k":{"x":2,"w":-1,"u":5,"s":1,"r":4,"q":6,"p":4,"o":6,"n":4,"m":4,"i":8,"g":4,"e":8,"d":7,"c":7,"a":5,"\\":-1,"Z":6,"Y":3,"X":8,"V":3,"M":9,"J":4,"A":23,"@":4,"\/":27,".":40,"-":3,",":40}},"Q":{"d":"266,49v-53,27,-107,15,-150,-48v-64,-10,-101,-63,-101,-121v0,-65,44,-124,124,-124v151,0,164,214,35,244v15,27,54,31,76,15xm139,-37v48,0,70,-38,70,-83v0,-45,-21,-83,-69,-83v-48,0,-71,37,-71,82v0,45,22,84,70,84","w":278,"k":{"z":2,"x":6,"j":-6,"i":2,"a":4,"\\":4,"Z":7,"Y":11,"X":12,"W":3,"V":8,"U":3,"T":5,"S":3,"M":2,"J":-12,"A":7,"?":4,".":11,",":11}},"R":{"d":"30,0r0,-240v78,-3,168,-5,168,69v0,40,-28,58,-55,66v23,20,53,75,74,105r-55,0r-44,-68v-21,-29,-21,-31,-37,-31r0,99r-51,0xm81,-135v35,2,70,-2,67,-33v3,-31,-32,-35,-67,-33r0,66","w":223,"k":{"z":2,"y":6,"w":5,"v":6,"u":6,"t":4,"r":2,"q":6,"p":2,"o":8,"n":2,"m":2,"j":5,"g":6,"f":3,"e":8,"d":6,"c":8,"a":2,"\\":2,"Z":2,"Y":8,"W":5,"V":8,"U":6,"T":4,"Q":5,"O":5,"J":5,"G":3,"C":3,"@":5,"?":3,"\/":2,".":2,"-":11,",":2}},"S":{"d":"85,4v-39,0,-64,-14,-74,-23r22,-36v5,4,23,18,51,18v24,0,38,-12,38,-27v0,-21,-25,-28,-53,-42v-30,-14,-52,-32,-52,-71v0,-41,35,-67,78,-67v39,0,60,12,70,20r-21,36v-12,-13,-80,-27,-78,10v0,19,19,24,44,36v32,14,61,31,61,75v0,44,-33,71,-86,71","w":185,"k":{"z":3,"y":8,"x":7,"w":6,"v":8,"u":2,"t":4,"s":2,"r":2,"p":2,"n":2,"m":2,"i":3,"g":2,"f":3,"a":1,"Z":2,"Y":6,"X":3,"W":3,"V":4,"U":3,"J":3,"A":2,"@":-1,"\/":5,".":2,"-":1,",":2}},"T":{"d":"71,0r0,-198r-66,0r0,-42r183,0r0,42r-66,0r0,198r-51,0","w":193,"k":{"}":-4,"z":14,"y":21,"x":18,"w":18,"v":17,"u":18,"t":5,"s":23,"r":16,"q":24,"p":16,"o":26,"n":16,"m":16,"j":1,"i":5,"g":21,"f":3,"e":27,"d":23,"c":27,"a":24,"]":-4,"\\":-11,"Y":-7,"X":-4,"W":-7,"V":-6,"T":-8,"Q":5,"O":5,"M":6,"J":3,"G":3,"C":2,"A":15,"@":17,"?":-12,";":15,":":15,"\/":21,".":30,"-":19,",":30,")":-2}},"U":{"d":"131,4v-69,0,-103,-34,-103,-97r0,-147r51,0r0,143v0,41,15,60,53,60v36,0,50,-22,50,-57r0,-146r47,0r0,142v0,66,-32,102,-98,102","w":257,"k":{"z":6,"y":5,"x":6,"w":5,"v":5,"u":6,"t":5,"s":5,"r":6,"q":3,"p":5,"o":5,"n":6,"m":6,"l":3,"k":2,"j":5,"i":6,"h":2,"g":5,"e":5,"d":4,"c":5,"b":2,"a":6,"Z":1,"S":4,"Q":2,"O":2,"M":4,"J":5,"A":6,"@":3,";":2,":":2,"\/":19,".":7,",":7}},"V":{"d":"97,0r-92,-240r54,0r64,184r61,-184r51,0r-90,240r-48,0","w":239,"k":{"z":12,"y":6,"x":10,"w":6,"v":6,"u":15,"t":5,"s":18,"r":14,"q":19,"p":14,"o":21,"n":14,"m":14,"j":5,"i":6,"g":19,"f":4,"e":22,"d":20,"c":22,"a":20,"\\":-4,"Z":2,"Y":-6,"X":-3,"W":-4,"V":-2,"T":-6,"Q":8,"O":8,"M":8,"J":5,"G":7,"C":6,"A":19,"@":17,"?":-6,";":14,":":14,"\/":25,".":35,"-":17,",":35}},"W":{"d":"71,0r-65,-240r54,0r40,169v9,-47,30,-120,43,-169r50,0r32,123v6,20,7,46,10,46v8,-48,28,-120,40,-169r48,0r-65,240r-47,0r-45,-177r-49,177r-46,0","w":329,"k":{"z":8,"y":5,"x":9,"w":4,"v":5,"u":10,"t":3,"s":10,"r":11,"q":13,"p":11,"o":15,"n":11,"m":11,"j":4,"i":6,"g":15,"f":2,"e":15,"d":15,"c":17,"a":16,"\\":-6,"Y":-4,"X":-1,"W":-5,"V":-4,"T":-7,"Q":3,"O":4,"M":5,"J":4,"G":5,"C":4,"A":17,"@":11,"?":-4,";":10,":":10,"\/":22,".":29,"-":12,",":29}},"X":{"d":"7,0r76,-123r-73,-117r58,0r45,75r43,-75r51,0r-69,116r77,124r-58,0r-50,-83r-49,83r-51,0","w":221,"k":{"z":2,"y":13,"x":2,"w":11,"v":12,"u":6,"t":10,"s":2,"r":2,"q":8,"p":2,"o":11,"n":2,"m":2,"j":4,"i":3,"g":10,"f":6,"e":11,"d":9,"c":11,"a":5,"Q":13,"O":12,"J":3,"G":12,"C":9,"@":8,";":4,":":4,"-":21}},"Y":{"d":"84,0r0,-90r-80,-150r56,0r52,102r50,-102r49,0r-77,150r0,90r-50,0","w":215,"k":{"z":17,"y":15,"x":16,"w":14,"v":12,"u":21,"t":8,"s":24,"r":19,"q":27,"p":19,"o":30,"n":19,"m":19,"j":4,"i":5,"g":27,"f":6,"e":31,"d":27,"c":32,"a":26,"\\":-5,"Y":-3,"W":-4,"V":-6,"T":-7,"S":5,"Q":12,"O":10,"M":10,"J":6,"G":12,"C":11,"A":22,"@":23,"?":-4,";":19,":":19,"\/":33,".":36,"-":24,",":36}},"Z":{"d":"17,0r0,-33r109,-165r-105,0r0,-42r167,0r0,33r-111,166r114,0r0,41r-174,0","w":205,"k":{"y":8,"w":9,"v":8,"u":4,"t":6,"s":4,"q":4,"o":7,"i":3,"g":5,"f":1,"e":5,"d":3,"c":5,"\\":-2,"Q":4,"O":4,"M":1,"G":6,"C":8,"?":-3,"-":5}},"[":{"d":"23,58r0,-317r90,0r0,35r-44,0r0,246r44,0r0,36r-90,0","w":122,"k":{"y":-7,"j":-22,"T":-4,"J":-26}},"\\":{"d":"115,58r-115,-317r47,0r114,317r-46,0","w":162,"k":{"y":-4,"x":4,"w":12,"v":18,"u":7,"t":12,"s":3,"r":1,"q":6,"o":6,"n":1,"m":1,"l":4,"k":1,"j":-24,"i":3,"h":1,"g":-4,"f":8,"e":6,"d":6,"c":5,"b":4,"Y":28,"X":2,"W":20,"V":28,"U":14,"T":17,"Q":14,"O":14,"J":-28,"G":13,"C":14}},"]":{"d":"9,58r0,-36r45,0r0,-246r-45,0r0,-35r90,0r0,317r-90,0","w":122},"^":{"d":"16,-104r72,-136r34,0r72,136r-44,0r-45,-86r-45,86r-44,0","w":210},"_":{"d":"0,66r0,-37r156,0r0,37r-156,0","w":155},"`":{"d":"96,-195r-50,-48r61,0r30,48r-41,0","w":180},"a":{"d":"114,-19v-21,35,-105,30,-102,-26v2,-48,50,-63,100,-62v11,-48,-57,-37,-73,-18r-21,-29v14,-13,38,-26,71,-26v98,0,60,107,75,180r-47,0v-1,-4,-3,-14,-3,-19xm58,-49v2,29,44,18,54,3r0,-32v-30,-1,-55,6,-54,29","w":180,"k":{"y":2,"v":4,"j":-1,"\\":18,"?":1}},"b":{"d":"95,4v-35,0,-60,-8,-72,-14r0,-249r48,0r0,97v46,-41,117,-8,117,73v0,60,-40,93,-93,93xm71,-37v35,13,69,-5,66,-52v6,-50,-41,-67,-66,-40r0,92","w":199,"k":{"y":2,"x":3,"v":2,"\\":12,"\/":13,".":4,",":4}},"c":{"d":"102,4v-56,0,-91,-37,-91,-91v0,-82,90,-112,146,-79r-16,33v-30,-21,-79,-8,-79,44v0,32,13,56,43,56v20,0,33,-8,38,-11r15,32v-8,5,-24,16,-56,16","w":164,"k":{"}":-3,"z":-3,"y":-2,"x":-1,"w":-2,"v":-2,"t":-2,"s":-2,"o":3,"j":-1,"f":-5,"a":-2,"]":-3,"\\":3,"@":2,"?":-3,";":-4,":":-4,"-":2,",":-3,")":-4,"!":-2}},"d":{"d":"132,-19v-43,50,-121,17,-121,-68v0,-73,67,-115,119,-80r0,-92r48,0r0,209v0,21,2,38,5,50r-47,0v-1,-4,-4,-14,-4,-19xm62,-87v0,53,45,67,68,36r0,-80v-29,-24,-68,-7,-68,44","w":200,"k":{"}":-2,"]":-2,"\/":1}},"e":{"d":"103,4v-59,0,-92,-37,-92,-93v0,-55,38,-91,87,-91v55,0,81,42,75,103r-111,0v2,26,16,46,45,46v24,0,37,-9,46,-13r15,31v-12,6,-29,17,-65,17xm62,-109r65,0v0,-20,-8,-36,-30,-36v-21,0,-31,13,-35,36","w":186,"k":{"z":2,"y":4,"x":5,"w":1,"v":4,"d":-1,"\\":14,"?":2,"\/":6,".":3,",":2}},"f":{"d":"32,0r0,-140r-26,0r0,-35r26,0v-4,-54,18,-88,70,-89v26,0,38,6,42,9r-11,36v-25,-13,-64,0,-53,44r42,0r0,35r-42,0r0,140r-48,0","w":131,"k":{"}":-18,"z":4,"y":2,"x":2,"u":4,"s":3,"r":4,"q":4,"p":4,"o":5,"n":4,"m":4,"l":-2,"k":-2,"j":2,"i":2,"h":-2,"g":5,"e":8,"d":4,"c":6,"b":-2,"a":5,"]":-18,"\\":-23,"@":4,"?":-14,";":4,":":4,"\/":18,".":22,"-":4,",":22,")":-19,"!":-3}},"g":{"d":"87,86v-79,0,-100,-62,-47,-90v-25,-10,-16,-51,4,-59v-56,-32,-32,-125,47,-117v29,3,60,6,95,5r0,31r-24,0v25,54,-19,101,-90,90v-4,3,-6,6,-6,10v0,9,10,12,35,13v36,2,83,2,83,54v0,37,-39,63,-97,63xm90,54v29,0,46,-11,46,-26v0,-26,-41,-17,-66,-22v-23,15,-19,48,20,48xm91,-84v20,0,32,-12,32,-32v0,-21,-12,-32,-32,-32v-20,0,-32,11,-32,32v0,20,12,32,32,32","w":193,"k":{"y":-3,"w":-1,"v":-2,"t":-3,"s":-1,"o":2,"j":-11,"f":-2,"e":2,"c":2,"a":2,"\\":14,"@":3,"?":3,"\/":-6,".":10,"-":3,",":6}},"h":{"d":"23,0r0,-259r48,0r0,105v9,-10,25,-26,54,-26v82,1,45,108,53,180r-48,0r0,-113v4,-50,-55,-18,-59,-5r0,118r-48,0","w":200,"k":{"y":4,"x":2,"w":2,"v":4,"\\":12,"\/":1}},"i":{"d":"50,-198v-17,0,-29,-14,-29,-29v0,-15,12,-28,29,-28v17,0,30,13,30,28v0,15,-13,29,-30,29xm26,0r0,-175r49,0r0,175r-49,0","w":100,"k":{"g":1,"\\":-2,"\/":1}},"j":{"d":"74,12v7,57,-42,83,-92,68r8,-38v21,8,36,0,36,-35r0,-182r48,0r0,187xm49,-198v-17,0,-29,-14,-29,-29v0,-15,12,-28,29,-28v17,0,30,13,30,28v0,15,-13,29,-30,29","w":99,"k":{"w":2,"j":-2,"g":2,"\\":-2}},"k":{"d":"23,0r0,-259r48,0r0,155r58,-71r52,0r-65,78r66,97r-55,0r-56,-86r0,86r-48,0","w":186,"k":{"z":-1,"y":-1,"x":-1,"t":-1,"q":5,"o":6,"g":4,"e":6,"d":5,"c":6,"\\":4,"@":5,"?":1,";":2,":":2,"\/":2,"-":10}},"l":{"d":"26,0r0,-259r47,0r0,259r-47,0","w":99,"k":{"p":1,"l":-1,"g":3,"\\":-2,"\/":2}},"m":{"d":"23,0r0,-175r47,0r0,21v9,-10,25,-26,53,-26v25,0,39,11,45,28v15,-17,31,-28,56,-28v79,2,42,110,50,180r-48,0r0,-113v4,-40,-45,-27,-54,-7r0,120r-47,0r0,-113v4,-44,-50,-22,-54,-5r0,118r-48,0","w":296,"k":{"y":4,"x":2,"w":3,"v":4,"\\":12,"\/":1}},"n":{"d":"23,0r0,-175r47,0r0,22v13,-15,31,-27,56,-27v81,1,45,108,53,180r-48,0r0,-113v2,-41,-50,-27,-60,-5r0,118r-48,0","w":200,"k":{"y":4,"x":2,"w":3,"v":4,"\\":12,"\/":1}},"o":{"d":"99,4v-119,0,-118,-182,-1,-184v61,0,89,46,89,91v0,44,-26,93,-88,93xm99,-32v27,0,37,-22,37,-55v0,-33,-11,-57,-38,-57v-27,0,-36,22,-36,55v0,33,10,57,37,57","w":198,"k":{"z":3,"y":4,"x":8,"v":5,"f":2,"\\":12,"?":2,"\/":11,".":4,",":4}},"p":{"d":"23,79r0,-254r47,0r0,18v41,-47,130,-16,120,69v6,73,-68,113,-119,80r0,87r-48,0xm71,-45v26,24,74,10,68,-43v8,-56,-50,-64,-68,-35r0,78","w":201,"k":{"y":3,"x":5,"v":3,"d":-1,"\\":13,"?":2,"\/":7,".":1,",":1}},"q":{"d":"129,78r0,-92v-46,40,-117,9,-117,-72v0,-60,40,-94,93,-94v40,0,64,9,72,13r0,245r-48,0xm62,-86v-7,50,45,66,67,39r0,-91v-34,-12,-71,5,-67,52","w":199,"k":{"y":-1,"x":2,"w":1,"v":3,"u":1,"p":1,"l":1,"k":3,"j":-8,"h":3,"g":-1,"b":3,"\\":12,"?":2}},"r":{"d":"23,0r0,-175r48,0r0,23v7,-19,45,-36,68,-23r-11,42v-20,-13,-56,9,-57,22r0,111r-48,0","w":140,"k":{"y":-4,"x":-1,"w":-5,"v":-5,"t":-5,"o":2,"g":1,"f":-6,"e":4,"c":4,"@":2,";":-1,":":-1,"\/":18,".":24,"-":3,",":24}},"s":{"d":"72,4v-31,0,-52,-9,-63,-16r17,-34v8,12,70,26,72,-1v0,-12,-20,-15,-45,-27v-24,-12,-39,-25,-39,-52v0,-33,26,-54,66,-54v30,0,48,9,56,14r-17,33v-8,-9,-63,-20,-62,4v0,12,16,16,36,24v28,12,48,23,48,53v0,37,-26,56,-69,56","w":151,"k":{"y":2,"x":2,"q":-1,"o":-1,"g":3,"e":-1,"d":-1,"b":1,"a":-2,"\\":13,";":-1,":":-1,"\/":3,".":-1,"-":4,",":-1}},"t":{"d":"90,4v-77,3,-50,-79,-55,-144r-28,0r0,-35r28,0r0,-51r47,0r0,51r41,0r0,35r-41,0r0,80v-5,30,27,27,41,19r11,35v-7,4,-22,10,-44,10","w":139,"k":{"g":5,"f":2,"e":2,"c":2,"a":-1,"\\":5,"@":3,".":-4,"-":3,",":-4}},"u":{"d":"75,4v-82,-1,-45,-107,-53,-179r48,0r0,113v-3,50,55,15,59,4r0,-117r48,0v1,56,-4,130,5,175r-47,0v-1,-5,-4,-16,-4,-23v-9,12,-27,27,-56,27","w":200,"k":{"\\":9,"\/":3}},"v":{"d":"69,0r-65,-175r51,0r38,116r37,-116r49,0r-65,175r-45,0","w":182,"k":{"y":-4,"x":-2,"w":-4,"v":-4,"t":-3,"s":2,"q":6,"o":5,"g":6,"f":-4,"e":5,"d":4,"c":5,"a":2,"\\":6,"@":6,"\/":15,".":22,"-":6,",":22}},"w":{"d":"54,0r-50,-175r51,0r28,111r30,-111r44,0r31,112r27,-112r48,0r-50,175r-43,0r-37,-117r-36,117r-43,0","w":267,"k":{"y":-3,"w":-4,"v":-4,"t":-3,"q":3,"o":2,"g":4,"f":-4,"e":3,"d":3,"c":3,"a":2,"\\":7,"@":4,"?":1,"\/":12,".":19,"-":4,",":19}},"x":{"d":"6,0r60,-91r-58,-84r54,0v0,0,31,47,32,48r28,-48r49,0r-54,82r62,93r-54,0r-37,-56r-33,56r-49,0","w":183,"k":{"y":2,"w":2,"u":3,"q":6,"p":2,"o":8,"g":6,"f":3,"e":10,"d":6,"c":10,"a":2,"\\":14,"@":7,"?":2,";":2,":":2,"\/":1,".":2,"-":15,",":2}},"y":{"d":"110,19v-14,49,-51,74,-109,62r7,-38v36,10,58,-15,63,-47r-66,-171r52,0r40,115r36,-115r49,0","w":186,"k":{"y":-2,"x":-1,"w":-4,"v":-4,"t":-3,"s":2,"q":6,"o":4,"l":2,"k":3,"h":3,"g":6,"f":-4,"e":6,"d":5,"c":5,"b":3,"a":3,"\\":9,"@":5,"?":4,"\/":20,".":26,"-":4,",":26}},"z":{"d":"14,0r0,-26r76,-113r-72,0r0,-36r131,0r0,27r-76,112r76,0r0,36r-135,0","w":164,"k":{"o":3,"g":6,"e":5,"d":4,"c":5,"\\":7,"@":2,"-":4,",":2}},"{":{"d":"136,58v-46,2,-84,3,-86,-45v-2,-47,12,-99,-41,-98r0,-36v52,2,40,-48,41,-94v2,-48,41,-45,86,-44r0,35v-23,-1,-42,-1,-40,25v4,44,2,90,-33,96v38,5,36,56,33,101v-2,27,17,24,40,24r0,36","w":146,"k":{"y":-7,"j":-22,"T":-4,"J":-26}},"|":{"d":"31,90r0,-360r42,0r0,360r-42,0"},"}":{"d":"9,58r0,-36v23,1,43,2,41,-24v-3,-44,-6,-96,33,-100v-36,-6,-36,-53,-33,-97v2,-28,-17,-26,-41,-25r0,-35v46,-1,85,-4,87,44v1,46,-12,95,41,94r0,36v-54,-2,-39,52,-41,99v-1,49,-41,45,-87,44","w":146},"~":{"d":"140,-59v-36,0,-45,-21,-73,-21v-16,0,-26,8,-32,14r-21,-28v9,-10,28,-26,55,-26v38,0,76,38,106,7r22,28v-10,11,-31,26,-57,26","w":210},"\u00a0":{"w":69,"k":{"T":5}}}});
Cufon.registerFont({"w":185,"face":{"font-family":"Kievit-BoldSC","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","bbox":"-15 -282 323 90","underline-thickness":"7.2","underline-position":"-47.88","stemh":"38","stemv":"51","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":69},"!":{"d":"30,-68r-8,-120r53,0r-8,120r-37,0xm48,3v-17,0,-28,-12,-28,-27v0,-14,11,-27,28,-27v16,0,28,13,28,27v0,15,-12,27,-28,27","w":96},"\"":{"d":"60,-240r-5,88r-32,0r-10,-88r47,0xm126,-240r-10,88r-32,0r-6,-88r48,0","w":138},"#":{"d":"56,-140r-39,0r6,-35r38,0r10,-65r32,0r-9,65r35,0r10,-65r33,0r-10,65r36,0r-6,35r-35,0r-6,37r36,0r-6,36r-36,0r-10,67r-32,0r10,-67r-36,0r-10,67r-32,0r10,-67r-40,0r7,-36r38,0xm125,-141r-38,0r-5,39r37,0","w":204},"$":{"d":"107,-142v34,14,64,30,64,75v0,36,-21,60,-58,68r0,41r-38,0r0,-38v-33,-3,-55,-15,-64,-23r21,-35v5,4,22,17,48,18r0,-65v-32,-16,-64,-31,-63,-76v0,-34,25,-59,58,-65r0,-40r38,0r0,39v28,3,44,13,52,19r-20,35v-7,-5,-21,-12,-38,-14r0,61xm107,-88r0,47v21,-9,21,-37,0,-47xm80,-155r0,-45v-20,7,-19,36,0,45"},"%":{"d":"238,4v-45,0,-67,-31,-67,-63v0,-31,23,-62,67,-62v44,0,66,29,66,61v0,32,-22,64,-66,64xm75,-119v-44,0,-67,-30,-67,-62v0,-32,23,-63,67,-63v45,0,66,29,66,61v0,32,-22,64,-66,64xm63,0r146,-240r40,0r-146,240r-40,0xm75,-149v18,0,25,-15,25,-32v0,-17,-7,-33,-25,-33v-18,0,-26,13,-26,31v0,18,8,34,26,34xm238,-26v18,0,26,-16,26,-33v0,-17,-9,-32,-26,-32v-18,0,-26,13,-26,31v0,17,8,34,26,34","w":312},"&":{"d":"109,-99r31,33v5,-9,10,-20,12,-32r37,7v-4,19,-12,37,-24,52r35,39r-53,0r-12,-12v-41,30,-125,13,-125,-38v0,-26,16,-41,41,-54v-37,-35,-15,-88,42,-88v37,0,57,19,57,43v0,21,-15,36,-41,50xm112,-37r-39,-43v-24,15,-21,50,12,50v10,0,19,-2,27,-7xm90,-120v15,-9,21,-17,21,-26v0,-9,-8,-16,-18,-16v-26,2,-20,30,-3,42","w":204},"(":{"d":"125,58r-46,0v-20,-22,-64,-74,-64,-161v0,-83,43,-135,64,-156r46,0v-20,22,-59,75,-59,155v0,81,32,130,59,162","w":124},")":{"d":"0,58v27,-32,59,-80,59,-161v0,-80,-38,-134,-59,-156r46,0v21,21,65,72,65,155v0,87,-45,140,-65,162r-46,0","w":125},"*":{"d":"149,-209r13,34r-47,13r32,37r-32,22r-26,-41r-27,41r-31,-22r31,-37r-47,-13r13,-34r43,17r-2,-48r39,0r-2,48","w":177},"+":{"d":"177,-76r-61,0r0,64r-41,0r0,-64r-61,0r0,-37r61,0r0,-62r41,0r0,62r61,0r0,37","w":191},",":{"d":"49,-58v52,1,31,90,8,110r-31,0v6,-9,15,-24,15,-38v0,-20,-22,-21,-22,-45v0,-16,14,-27,30,-27","w":102},"-":{"d":"100,-82r-82,0r0,-39r82,0r0,39","w":118},".":{"d":"83,-27v0,17,-14,31,-32,31v-18,0,-32,-14,-32,-31v0,-17,14,-31,32,-31v18,0,32,14,32,31","w":102},"\/":{"d":"161,-259r-114,317r-47,0r115,-317r46,0","w":162},"0":{"d":"111,4v-70,0,-98,-62,-98,-124v0,-63,26,-124,97,-124v133,0,132,248,1,248xm110,-34v33,0,46,-32,46,-86v0,-54,-13,-86,-45,-86v-33,0,-47,32,-47,86v0,54,14,86,46,86","w":221},"1":{"d":"60,0r0,-198r-46,14r-10,-38v33,-7,61,-20,104,-17r0,239r-48,0","w":138},"2":{"d":"9,0r0,-26v46,-42,104,-95,104,-144v1,-52,-65,-36,-83,-13r-23,-30v18,-17,41,-31,79,-31v52,0,79,28,79,68v0,51,-44,97,-89,139v22,-3,68,-2,95,-2r0,39r-162,0"},"3":{"d":"158,-72v0,62,-82,86,-147,72r7,-39v27,11,98,3,89,-33v0,-27,-25,-37,-67,-37r0,-33v36,-1,60,-16,60,-38v0,-35,-59,-27,-73,-10r-20,-31v13,-10,36,-23,71,-23v47,0,72,23,72,55v1,32,-26,48,-49,57v28,4,57,24,57,60","w":175},"4":{"d":"119,0r0,-50r-111,0r0,-32r114,-158r45,0r0,153r35,0r0,37r-35,0r0,50r-48,0xm56,-86v15,-2,45,-1,64,-1r-1,-90","w":212},"5":{"d":"154,-80v0,65,-74,95,-145,80r7,-38v33,10,87,1,87,-39v0,-39,-44,-43,-83,-39r7,-124r120,0r0,39r-76,0r-3,47v53,1,86,26,86,74","w":169},"6":{"d":"66,-134v46,-34,123,-7,123,59v0,48,-36,79,-85,79v-63,0,-90,-50,-90,-105v0,-86,57,-143,150,-143r10,39v-56,-1,-101,23,-108,71xm64,-98v0,45,16,66,41,66v22,0,34,-18,34,-40v0,-48,-52,-50,-75,-26","w":200},"7":{"d":"68,9r-43,-14r79,-195r-97,0r0,-40r151,0r0,27","w":172},"8":{"d":"95,4v-54,0,-83,-26,-83,-64v0,-30,22,-50,46,-63v-23,-13,-39,-30,-39,-58v0,-38,34,-63,77,-63v46,0,76,21,76,60v0,26,-19,43,-42,56v25,13,48,32,48,66v0,41,-34,66,-83,66xm95,-32v22,0,33,-13,33,-30v0,-19,-17,-31,-37,-42v-32,12,-47,71,4,72xm96,-146v15,-10,28,-21,28,-36v0,-15,-10,-26,-28,-26v-43,0,-29,52,0,62","w":190},"9":{"d":"134,-105v-47,33,-123,5,-123,-60v0,-48,37,-79,85,-79v64,0,90,50,90,105v0,87,-52,145,-148,145r-10,-38v52,0,99,-26,106,-73xm136,-141v0,-43,-15,-66,-40,-66v-23,0,-34,17,-34,39v0,47,51,50,74,27","w":200},":":{"d":"83,-147v0,18,-14,31,-32,31v-18,0,-32,-13,-32,-31v0,-17,14,-31,32,-31v18,0,32,14,32,31xm83,-28v0,18,-14,32,-32,32v-18,0,-32,-14,-32,-32v0,-17,14,-30,32,-30v18,0,32,13,32,30","w":102},";":{"d":"50,-58v52,1,31,90,8,110r-31,0v6,-9,15,-24,15,-38v0,-20,-21,-21,-21,-45v0,-16,13,-27,29,-27xm83,-147v0,18,-14,31,-32,31v-18,0,-32,-13,-32,-31v0,-17,14,-31,32,-31v18,0,32,14,32,31","w":102},"<":{"d":"128,-35r-26,28r-93,-82r93,-84r25,26r-62,57","w":140},"=":{"d":"158,-110r-144,0r0,-37r144,0r0,37xm158,-43r-144,0r0,-37r144,0r0,37","w":172},">":{"d":"13,-145r26,-28r92,82r-92,84r-25,-26r62,-57","w":140},"?":{"d":"120,-143v0,41,-50,38,-49,75r-39,0v-9,-41,35,-44,38,-70v3,-22,-38,-19,-49,-11r-15,-32v9,-5,25,-11,51,-11v43,0,63,22,63,49xm52,3v-17,0,-28,-12,-28,-27v0,-14,11,-27,28,-27v16,0,28,13,28,27v0,15,-12,27,-28,27","w":128},"@":{"d":"280,-115v0,51,-29,86,-73,86v-27,1,-35,-15,-40,-31v-8,13,-23,30,-47,30v-23,0,-37,-19,-37,-42v0,-51,29,-96,77,-96v21,0,41,5,53,9r-13,84v0,9,5,16,13,16v19,0,35,-20,35,-53v0,-55,-37,-86,-95,-86v-54,0,-100,46,-100,110v0,79,79,111,146,83r12,28v-13,5,-41,12,-68,12v-78,0,-126,-51,-126,-122v0,-71,57,-141,137,-141v84,0,126,54,126,113xm176,-137v-34,-13,-53,19,-53,57v0,10,3,18,12,18v22,1,34,-40,41,-75","w":292},"A":{"d":"72,-45r-15,45r-52,0r92,-240r49,0r94,240r-56,0r-16,-45r-96,0xm154,-86r-34,-98v-4,16,-25,75,-33,98r67,0","w":244},"B":{"d":"203,-67v0,76,-94,68,-173,67r0,-240v73,1,162,-13,163,60v1,32,-19,47,-43,56v28,4,53,23,53,57xm151,-71v4,-32,-35,-36,-71,-34r0,66v35,1,74,1,71,-32xm143,-172v0,-28,-31,-31,-63,-29r0,60v33,2,63,-2,63,-31","w":218},"C":{"d":"215,-21v-12,11,-41,25,-76,25v-82,0,-124,-59,-124,-124v0,-65,43,-124,124,-124v31,0,53,7,72,19r-22,37v-13,-9,-28,-14,-50,-14v-45,0,-70,36,-70,80v0,46,23,84,70,84v26,0,42,-10,55,-19","w":222},"D":{"d":"239,-123v0,69,-44,123,-139,123r-70,0r0,-240r72,0v94,0,137,48,137,117xm186,-122v0,-62,-38,-81,-105,-77r0,158v66,5,105,-19,105,-81","w":254},"E":{"d":"171,0r-141,0r0,-240r138,0r0,42r-88,0r0,54r78,0r0,40r-78,0r0,62r91,0r0,42","w":190},"F":{"d":"167,-198r-86,0r0,59r76,0r0,39r-76,0r0,100r-51,0r0,-240r137,0r0,42","w":182},"G":{"d":"233,-19v-10,6,-36,23,-91,23v-82,0,-127,-59,-127,-124v0,-65,48,-124,131,-124v40,0,63,10,79,22r-23,37v-13,-9,-30,-17,-57,-17v-51,0,-76,34,-76,80v0,46,23,85,73,85v26,0,39,-8,42,-9r0,-48r-44,0r0,-39r93,0r0,114","w":255},"H":{"d":"239,0r-51,0r0,-104r-107,0r0,104r-51,0r0,-240r51,0r0,95r107,0r0,-95r51,0r0,240","w":268},"I":{"d":"83,0r-51,0r0,-240r51,0r0,240","w":116},"J":{"d":"89,1v5,63,-53,82,-104,67r8,-42v22,9,45,3,45,-32r0,-234r51,0r0,241","w":119},"K":{"d":"80,-135r82,-105r56,0r-88,111r92,129r-60,0r-82,-116r0,116r-50,0r0,-240r50,0r0,105","w":226},"L":{"d":"171,0r-140,0r0,-240r51,0r0,199r89,0r0,41"},"M":{"d":"180,0r-50,0r-51,-159v-3,47,-13,111,-19,159r-45,0r33,-240r49,0r61,190r63,-190r49,0r33,240r-52,0r-20,-159","w":317},"N":{"d":"238,0r-47,0r-117,-169v4,46,1,117,2,169r-46,0r0,-240r51,0r86,124v15,21,23,41,26,41r-1,-165r46,0r0,240","w":267},"O":{"d":"263,-121v0,65,-43,125,-123,125v-80,0,-125,-59,-125,-124v0,-65,44,-124,124,-124v80,0,124,59,124,123xm209,-120v0,-45,-21,-83,-69,-83v-48,0,-71,37,-71,82v0,45,22,84,70,84v48,0,70,-38,70,-83","w":278},"P":{"d":"200,-164v0,59,-50,84,-120,79r0,85r-51,0r0,-240v83,-3,171,-4,171,76xm149,-163v0,-33,-30,-41,-69,-38r0,77v39,2,69,-3,69,-39","w":212},"Q":{"d":"174,0v15,27,54,31,76,15r16,34v-52,27,-107,16,-150,-46v-141,-21,-133,-247,23,-247v151,0,164,214,35,244xm209,-120v0,-45,-21,-83,-69,-83v-48,0,-71,37,-71,82v0,45,22,84,70,84v48,0,70,-38,70,-83","w":278},"R":{"d":"217,0r-55,0r-44,-68v-20,-29,-21,-31,-37,-31r0,99r-51,0r0,-240v78,-3,168,-5,168,69v0,40,-28,58,-55,66v23,20,53,75,74,105xm148,-168v3,-31,-32,-35,-67,-33r0,66v35,2,70,-2,67,-33","w":222},"S":{"d":"171,-67v0,44,-33,71,-86,71v-39,0,-64,-14,-74,-23r22,-36v5,4,23,18,51,18v24,0,38,-12,38,-27v0,-21,-25,-28,-53,-42v-30,-14,-52,-32,-52,-71v0,-41,35,-67,78,-67v39,0,60,12,70,20r-21,36v-12,-13,-80,-27,-78,10v0,19,19,24,44,36v32,14,61,31,61,75"},"T":{"d":"188,-198r-66,0r0,198r-51,0r0,-198r-66,0r0,-42r183,0r0,42","w":193},"U":{"d":"229,-98v0,66,-32,102,-98,102v-69,0,-103,-34,-103,-97r0,-147r51,0r0,143v0,41,15,60,53,60v36,0,50,-22,50,-57r0,-146r47,0r0,142","w":258},"V":{"d":"235,-240r-90,240r-48,0r-92,-240r54,0r64,184r61,-184r51,0","w":239},"W":{"d":"323,-240r-65,240r-47,0r-45,-177r-49,177r-46,0r-65,-240r54,0r40,169v9,-47,30,-120,43,-169r50,0r32,123v6,20,7,47,10,46v8,-47,28,-120,40,-169r48,0","w":329},"X":{"d":"83,-123r-73,-117r58,0r45,76r43,-76r51,0r-69,116r77,124r-58,0r-50,-83r-49,83r-51,0","w":220},"Y":{"d":"211,-240r-77,150r0,90r-50,0r0,-90r-80,-150r56,0r52,102r50,-102r49,0","w":215},"Z":{"d":"191,0r-174,0r0,-33r109,-165r-105,0r0,-42r167,0r0,33r-111,166r114,0r0,41","w":208},"[":{"d":"113,58r-90,0r0,-317r90,0r0,35r-44,0r0,246r44,0r0,36","w":122},"\\":{"d":"0,-259r47,0r114,317r-46,0","w":162},"]":{"d":"9,-259r90,0r0,317r-90,0r0,-36r45,0r0,-246r-45,0r0,-35","w":122},"^":{"d":"194,-104r-44,0r-45,-86r-45,86r-44,0r72,-136r34,0","w":210},"_":{"d":"156,66r-156,0r0,-37r156,0r0,37","w":155},"a":{"d":"64,-33r-11,33r-48,0r76,-188r46,0r78,188r-51,0r-12,-33r-78,0xm129,-68v-10,-24,-16,-51,-27,-74r-25,74r52,0","w":210},"b":{"d":"25,0r0,-188v60,2,139,-13,140,48v1,26,-17,36,-35,43v23,3,43,18,43,45v2,62,-84,52,-148,52xm72,-35v25,0,57,2,54,-22v2,-24,-28,-25,-54,-24r0,46xm72,-112v24,1,50,-1,47,-22v2,-20,-24,-21,-47,-20r0,42"},"c":{"d":"116,3v-68,0,-102,-45,-102,-97v0,-52,35,-98,103,-98v26,0,44,6,59,16r-20,35v-33,-26,-98,-6,-91,45v-9,56,63,75,95,46r19,35v-11,8,-32,18,-63,18","w":187},"d":{"d":"25,0r0,-188r64,0v77,0,113,36,113,91v0,55,-37,97,-115,97r-62,0xm73,-38v49,3,79,-11,79,-57v0,-45,-30,-58,-79,-55r0,112","w":215},"e":{"d":"25,0r0,-188r124,0r0,37r-77,0r0,37r68,0r0,35r-68,0r0,42r78,0r0,37r-125,0","w":169},"f":{"d":"25,0r0,-188r121,0r0,38r-73,0r0,41r65,0r0,36r-65,0r0,73r-48,0","w":160},"g":{"d":"120,3v-69,0,-106,-46,-106,-97v0,-52,40,-98,110,-98v32,0,52,8,65,17r-20,35v-35,-24,-115,-10,-105,45v-7,47,46,71,86,55r0,-32r-34,0r0,-34r79,0r0,91v-10,6,-31,18,-75,18","w":214},"h":{"d":"25,0r0,-188r48,0r0,71r81,0r0,-71r47,0r0,188r-47,0r0,-78r-81,0r0,78r-48,0","w":226},"i":{"d":"27,0r0,-188r48,0r0,188r-48,0","w":101},"j":{"d":"81,1v5,53,-51,71,-93,55r7,-37v17,6,38,3,38,-23r0,-184r48,0r0,189","w":106},"k":{"d":"73,-105r65,-83r51,0r-68,87r70,101r-53,0r-65,-94r0,94r-48,0r0,-188r48,0r0,83","w":195},"l":{"d":"26,0r0,-188r48,0r0,150r75,0r0,38r-123,0","w":161},"m":{"d":"14,0r27,-188r47,0r46,143v11,-43,33,-99,47,-143r47,0r27,188r-49,0r-15,-117v-7,33,-26,83,-37,117r-45,0r-38,-117v-1,34,-10,83,-14,117r-43,0","w":268},"n":{"d":"25,0r0,-188r48,0r63,87v14,18,19,34,22,33r-1,-120r42,0r0,188r-43,0r-69,-94v-13,-18,-20,-31,-20,-31r1,125r-43,0","w":224},"o":{"d":"118,3v-67,0,-104,-45,-104,-97v0,-50,36,-98,103,-98v67,0,103,45,103,97v0,52,-34,98,-102,98xm117,-35v37,0,53,-27,53,-59v0,-32,-15,-60,-52,-60v-37,0,-53,28,-53,59v0,32,16,60,52,60","w":234},"p":{"d":"24,0r0,-188v70,-2,148,-6,148,62v0,49,-42,66,-100,63r0,63r-48,0xm72,-98v29,2,53,-2,53,-28v0,-26,-25,-28,-53,-27r0,55","w":183},"q":{"d":"148,0v12,21,42,22,58,10r15,31v-46,21,-92,14,-128,-40v-113,-19,-103,-193,24,-193v124,0,137,167,31,192xm117,-34v37,0,53,-28,53,-60v0,-32,-15,-60,-52,-60v-37,0,-54,28,-54,59v0,33,17,61,53,61","w":234},"r":{"d":"25,0r0,-188v66,-2,146,-6,146,56v0,33,-24,43,-44,51v18,14,43,58,59,81r-51,0v-18,-20,-33,-71,-62,-73r0,73r-48,0xm73,-106v25,1,53,0,50,-23v3,-23,-24,-26,-50,-24r0,47","w":191},"s":{"d":"73,3v-33,0,-54,-11,-63,-17r19,-34v4,11,71,25,70,-3v0,-15,-17,-18,-43,-30v-25,-11,-42,-25,-42,-55v0,-62,96,-65,126,-41r-18,34v-10,-9,-60,-21,-62,4v0,13,13,16,36,26v26,11,49,26,49,58v0,37,-26,58,-72,58","w":158},"t":{"d":"61,0r0,-150r-55,0r0,-38r159,0r0,38r-56,0r0,150r-48,0","w":171},"u":{"d":"110,3v-58,0,-87,-28,-87,-81r0,-110r49,0v7,56,-24,153,39,153v62,0,31,-98,38,-153r44,0r0,105v0,55,-28,86,-83,86","w":216},"v":{"d":"81,0r-76,-188r52,0r49,138r47,-138r47,0r-73,188r-46,0","w":205},"w":{"d":"59,0r-53,-188r50,0r31,124v6,-31,23,-90,32,-124r46,0r30,123r32,-123r45,0r-54,188r-44,0r-34,-132v-8,37,-26,93,-37,132r-44,0","w":277},"x":{"d":"69,-97r-59,-91r54,0r35,56r31,-56r48,0r-57,92r63,96r-53,0r-40,-63r-36,63r-48,0","w":191},"y":{"d":"69,0r0,-71r-65,-117r53,0r38,75r38,-75r47,0r-63,117r0,71r-48,0","w":183},"z":{"d":"15,0r0,-31r86,-119r-83,0r0,-38r141,0r0,30r-87,120r90,0r0,38r-147,0","w":174},"{":{"d":"136,58v-46,2,-84,3,-86,-45v-2,-47,12,-99,-41,-98r0,-36v52,2,40,-48,41,-94v2,-48,41,-45,86,-44r0,35v-23,-1,-42,-1,-40,25v4,44,2,90,-33,96v38,5,36,56,33,101v-2,27,17,24,40,24r0,36","w":146},"|":{"d":"73,90r-42,0r0,-360r42,0r0,360","w":102},"}":{"d":"9,-259v46,-1,85,-4,87,44v1,46,-12,95,41,94r0,36v-54,-2,-39,52,-41,99v-1,49,-41,45,-87,44r0,-36v23,1,43,2,41,-24v-3,-44,-6,-96,33,-100v-36,-6,-36,-53,-33,-97v2,-28,-17,-26,-41,-25r0,-35","w":146},"~":{"d":"197,-85v-10,11,-31,26,-57,26v-36,0,-45,-21,-73,-21v-16,0,-26,8,-32,14r-21,-28v9,-10,28,-26,55,-26v38,0,76,38,106,7","w":210},"'":{"d":"62,-240r-8,88r-32,0r-8,-88r48,0","w":75},"`":{"d":"72,-195r-51,-48r62,0r30,48r-41,0","w":180},"\u00a0":{"w":69}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 2004 Matthew Desmond. MADType. http://www.madtype.net
 * 
 * Trademark:
 * Please refer to the Copyright section for the font trademark attribution
 * notices.
 * 
 * Manufacturer:
 * Matthew Desmond. MADType. http://www.madtype.net
 * 
 * Designer:
 * Matthew Desmond
 * 
 * Vendor URL:
 * http://www.madtype.net
 */
Cufon.registerFont({"w":72,"face":{"font-family":"Casino Hand","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 4 0 0 2 0 3","ascent":"288","descent":"-72","bbox":"-28 -246.192 250.058 85.2933","underline-thickness":"18","underline-position":"-18","stemh":"23","stemv":"22","unicode-range":"U+000D-U+FB02"},"glyphs":{" ":{"w":64},"\r":{"w":64},"\u02dd":{"d":"1,-135v0,3,1,4,4,4v5,0,47,-25,49,-32v3,-9,-5,-13,-12,-12v-7,1,-41,30,-41,40xm53,-135v0,3,1,4,4,4v5,0,46,-25,48,-32v3,-9,-5,-13,-12,-12v-7,1,-40,30,-40,40","w":104},"\u02db":{"d":"69,48v0,11,-24,19,-33,19v-53,0,-15,-71,13,-86v7,-6,16,3,13,9v-1,15,-50,46,-22,58v9,0,25,-13,29,0","w":78},"\u02c7":{"d":"87,-176v0,5,-23,47,-33,47v-8,0,-36,-36,-36,-48v0,-5,3,-8,7,-7v5,2,27,29,27,29v2,1,31,-45,35,-21","w":102},"\u0131":{"d":"39,-13v4,9,-11,15,-16,7v-15,-27,-14,-59,-9,-93v3,-7,18,-5,17,4v-2,30,0,55,8,82","w":50},"\u2044":{"d":"111,-163v-37,86,-63,137,-82,176v-5,5,-12,1,-10,-7v11,-37,66,-152,80,-175v4,-5,14,0,12,6","w":129},"\u0141":{"d":"69,-111v9,17,-11,19,-22,29v0,16,1,32,3,46v24,-3,44,-7,70,-13v8,-2,13,-1,15,5v2,7,-6,12,-10,13v-23,10,-57,20,-85,22v-26,2,-11,-38,-17,-58v-10,7,-16,13,-25,4v-4,-15,9,-19,24,-28r3,-77v2,-12,26,-11,24,4v-2,19,-2,39,-2,59v10,-5,14,-12,22,-6","w":131,"k":{"\ue025":11,"\ue022":11,"\ue020":14,"\u00dd":11,"\u0178":11,"Y":11,"V":7,"T":18}},"\u0142":{"d":"44,0v-22,-5,-17,-38,-21,-62v-10,7,-16,13,-25,4v-4,-15,9,-19,24,-28r0,-89v0,-4,4,-9,9,-9v26,7,7,56,12,87v12,-5,17,-16,26,-8v8,18,-14,20,-26,30v2,31,9,54,9,66v0,5,-3,9,-8,9","w":68},"\u017d":{"d":"47,-22v34,0,52,-4,76,-5v7,0,12,1,12,6v0,6,-7,9,-12,11v-26,10,-59,14,-91,14v-11,0,-19,-2,-18,-12v1,-4,80,-124,82,-139v-12,-5,-86,9,-89,-17v1,-6,6,-9,11,-8v30,4,54,3,82,3v4,0,21,-1,21,7v0,48,-46,99,-74,140xm102,-231v0,5,-23,47,-33,47v-8,0,-36,-36,-36,-48v0,-5,3,-8,7,-7v5,2,27,29,27,29v2,1,31,-45,35,-21","w":142},"\u017e":{"d":"7,-23v16,-26,47,-40,66,-64v-9,-9,-73,14,-50,-14v22,-6,64,-12,71,10v0,15,-46,52,-61,65v17,7,46,12,70,-2v3,-1,8,-3,11,2v-1,23,-40,26,-56,25v-17,-1,-45,-5,-51,-22xm87,-176v0,5,-23,47,-33,47v-8,0,-36,-36,-36,-48v0,-5,3,-8,7,-7v5,2,27,29,27,29v2,1,31,-45,35,-21","w":104},"\u02da":{"d":"32,-206v23,5,50,28,50,50v0,38,-73,41,-73,-2v0,-24,18,-31,13,-42v0,-4,6,-6,10,-6xm64,-162v0,-8,-11,-21,-19,-21v-17,4,-27,37,0,38v9,0,19,-7,19,-17","w":92},"!":{"d":"30,-184v21,6,15,46,15,74v0,30,-3,58,-9,58v-10,0,-14,-82,-14,-121v0,-8,5,-11,8,-11xm49,-11v0,18,-26,10,-27,-4v0,-6,4,-9,10,-9v9,0,17,3,17,13","w":70},"\"":{"d":"67,-189v16,1,21,69,1,75v-16,-10,-3,-46,-7,-67v0,-4,2,-8,6,-8xm39,-175v-3,22,10,51,-9,59v-21,-8,-9,-47,-12,-72v9,-12,23,-1,21,13","w":98},"#":{"d":"125,-126v16,1,44,-7,44,9v0,17,-37,7,-49,12r-3,32v12,2,34,-6,35,7v0,10,-18,14,-38,15v-3,11,6,47,-10,48v-21,2,-14,-40,-11,-47r-27,3v-4,16,5,42,-11,47v-23,-1,-13,-29,-11,-46v-15,-1,-36,5,-36,-12v0,-18,24,-7,40,-11r5,-26v-9,3,-26,8,-28,-4v1,-15,16,-13,32,-16v4,-18,4,-37,10,-55v6,-11,22,-3,19,9v0,12,-3,30,-5,41v10,-2,22,-3,22,-3v5,-17,-2,-52,18,-53v18,7,3,31,4,50xm100,-104v-7,0,-23,5,-23,5v-1,1,-5,20,-7,30r26,-2v0,0,3,-27,4,-33","w":176},"$":{"d":"85,-125v0,30,-44,-1,-50,18v0,18,67,18,66,48v-1,18,-29,20,-29,20v-3,15,12,46,-5,50v-22,-3,-11,-30,-10,-48v-14,2,-32,5,-33,-11v-1,-24,48,9,59,-12v0,-11,-73,-17,-72,-49v1,-17,26,-28,40,-28v1,-15,-7,-40,9,-42v16,-2,7,32,10,41v0,0,15,3,15,13","w":112},"%":{"d":"71,-133v1,34,-59,45,-60,6v0,-15,16,-41,33,-41v22,0,27,17,27,35xm121,-163v-37,86,-63,137,-82,176v-5,5,-12,1,-10,-7v11,-37,66,-152,80,-175v4,-5,14,0,12,6xm118,-82v48,0,35,85,-8,84v-14,0,-25,-15,-25,-28v0,-23,18,-56,33,-56xm37,-120v15,1,32,-27,12,-31v-13,0,-28,26,-12,31xm114,-17v19,-1,30,-40,11,-48v-17,3,-32,44,-11,48","w":159},"&":{"d":"104,-37v4,9,34,7,34,22v0,28,-42,7,-50,-3v0,0,-20,16,-34,16v-42,1,-44,-53,-18,-74v-6,-10,-14,-21,-14,-37v0,-28,45,-59,72,-59v13,0,23,5,23,18v0,28,-56,82,-53,80v6,9,14,18,22,24v10,-6,30,-36,44,-25v0,8,-16,28,-26,38xm89,-137v4,-6,0,-11,-7,-11v-29,-4,-50,40,-30,58v0,0,22,-18,37,-47xm70,-33v-9,-8,-16,-17,-21,-25v-9,6,-12,33,4,33v9,0,17,-8,17,-8","w":149},"'":{"d":"22,-190v20,10,22,59,5,73v-21,-5,-1,-44,-13,-62v0,-4,3,-11,8,-11","w":52},"(":{"d":"81,17v9,3,7,13,0,13v-49,0,-67,-47,-67,-90v1,-40,7,-127,63,-130v3,1,3,5,1,6v-59,40,-63,176,3,201","w":93},")":{"d":"13,-178v-9,-4,-8,-14,0,-14v49,0,67,47,67,90v-1,40,-7,128,-63,131v-3,-1,-4,-5,-2,-6v59,-40,65,-176,-2,-201","w":93},"*":{"d":"55,-184v12,1,8,26,11,37v5,-7,24,-34,29,-13v0,13,-21,25,-24,37v11,12,27,11,42,13v9,10,-6,15,-15,15v-10,0,-18,-4,-27,-9v-3,12,14,28,-2,32v-11,-3,-13,-17,-16,-28v-9,8,-24,39,-32,14v3,-15,17,-25,25,-36v-9,-10,-32,-19,-35,-32v9,-22,29,8,38,15v3,-14,-5,-39,6,-45","w":126},"+":{"d":"49,-90v2,-5,-5,-50,12,-44v19,1,8,31,9,43v13,3,41,-7,43,8v-1,11,-34,9,-42,12v-4,18,14,50,-10,53v-17,-5,-11,-31,-13,-51v-13,3,-41,7,-41,-8v-1,-17,29,-11,42,-13","w":120},",":{"d":"31,39v-23,-8,10,-25,7,-39v0,-20,-24,-11,-24,-26v0,-7,7,-9,13,-9v18,0,28,18,28,34v0,12,-7,40,-24,40","w":69},"-":{"d":"63,-92v16,-4,24,21,6,21v-18,0,-48,15,-51,-9v2,-17,30,-8,45,-12","w":97},".":{"d":"27,-36v19,0,26,35,4,36v-19,1,-24,-34,-4,-36","w":59},"\/":{"d":"80,-186v26,5,0,45,-5,60v-16,44,-31,91,-51,133v-5,10,-15,2,-13,-7v13,-53,41,-132,64,-183v1,-2,2,-3,5,-3","w":101},"0":{"d":"83,-153v49,21,46,156,-24,156v-69,0,-57,-107,-19,-148v9,-10,22,-31,34,-31v14,0,13,17,9,23xm59,-16v51,-8,51,-104,7,-122v-18,17,-38,49,-37,77v1,19,9,48,30,45","w":124},"1":{"d":"37,2v-23,-1,-15,-40,-15,-61v0,-29,1,-79,9,-105v2,-8,15,-6,15,2v-3,50,-2,98,2,148v1,11,-5,16,-11,16","w":70},"2":{"d":"100,-135v-2,44,-33,77,-51,112v28,5,59,-2,83,-5v3,0,7,2,7,5v-4,22,-42,23,-72,23v-20,0,-43,4,-47,-12v14,-34,62,-86,59,-119v-4,-42,-45,-14,-65,2v-4,0,-9,-5,-9,-11v15,-39,98,-53,95,5","w":128},"3":{"d":"11,-147v9,-21,40,-32,62,-32v14,0,31,6,31,26v0,21,-20,46,-38,62v23,10,54,17,54,43v0,36,-54,45,-90,51v-4,0,-8,-3,-8,-9v2,-25,71,-13,71,-42v0,-19,-51,-19,-51,-37v0,-17,40,-37,40,-63v-16,-22,-42,16,-62,16v-5,-2,-9,-7,-9,-15","w":130},"4":{"d":"7,-125v0,-16,1,-50,18,-54v24,3,3,33,7,53v-1,31,16,52,46,43v3,-27,6,-56,13,-81v3,-11,23,-6,21,7v-6,33,-12,80,-12,123v-4,19,12,50,-8,53v-24,-8,-14,-49,-15,-78v-44,7,-71,-25,-70,-66","w":124},"5":{"d":"11,-108v0,-58,58,-53,107,-59v13,3,6,14,-3,16v-30,8,-38,5,-66,14v-13,4,-16,17,-16,27v0,28,56,27,56,64v0,26,-28,44,-54,50v-8,2,-14,-6,-14,-16v-1,-8,7,-6,13,-4v13,0,34,-17,34,-31v0,-19,-57,-24,-57,-61","w":117},"6":{"d":"117,-40v0,27,-17,47,-42,47v-91,0,-77,-147,-11,-184v11,-6,26,8,14,16v-32,20,-43,56,-42,85v29,-17,81,-1,81,36xm98,-36v0,-37,-53,-25,-61,-17v3,27,23,40,36,40v14,0,25,-7,25,-23","w":124},"7":{"d":"106,-145v-2,27,-31,92,-34,134v-1,9,-9,9,-16,8v-8,-2,-8,-16,-7,-21v5,-43,26,-76,31,-116v-30,-5,-43,-4,-70,-5v-6,0,-10,-7,-10,-16v0,-5,4,-9,9,-9v28,1,57,3,84,10v7,2,13,7,13,15","w":117},"8":{"d":"66,-171v27,0,49,12,46,28v-5,29,-41,75,-41,75v0,0,35,31,35,49v0,19,-21,34,-40,34v-40,-1,-42,-50,-25,-80v-17,-14,-34,-32,-34,-52v0,-25,28,-54,59,-54xm85,-139v0,-6,-5,-10,-17,-10v-23,0,-37,16,-37,35v0,13,13,24,22,33v10,-13,31,-40,32,-58xm67,-5v30,-7,8,-34,-7,-47v-12,16,-14,41,7,47","w":119},"9":{"d":"57,-171v19,0,46,5,43,27v-9,61,-7,89,-6,148v-6,10,-23,3,-23,-9v0,-18,0,-43,-2,-68v0,0,-13,8,-25,8v-23,0,-38,-28,-38,-52v0,-29,24,-54,51,-54xm75,-137v0,-8,-4,-14,-14,-14v-15,0,-31,8,-31,34v0,20,8,31,16,31v22,0,28,-19,29,-51","w":114},":":{"d":"14,-89v-1,-17,25,-26,28,-6v2,16,-25,21,-28,6xm45,-15v0,8,-7,15,-15,15v-10,0,-13,-6,-13,-15v0,-9,8,-15,16,-15v9,0,12,7,12,15","w":59},";":{"d":"45,-97v0,8,-8,16,-16,16v-18,0,-21,-33,-1,-32v9,0,17,7,17,16xm28,-37v33,5,29,64,2,74v-24,-5,1,-25,1,-44v-3,-11,-24,-24,-3,-30","w":66},"<":{"d":"38,-84v0,3,44,53,51,72v-1,4,-4,6,-8,6v-10,0,-70,-61,-70,-74v0,-14,49,-86,66,-86v6,0,10,6,10,12v0,12,-30,35,-49,70","w":100},"=":{"d":"14,-96v4,-20,57,-15,69,-18v13,-2,15,14,4,16v-26,5,-62,24,-73,2xm19,-58v4,-16,52,-13,62,-15v12,-1,13,11,2,13v-19,4,-55,25,-64,2","w":108},">":{"d":"63,-88v0,-3,-45,-52,-52,-72v1,-4,4,-6,8,-6v10,0,71,61,71,74v0,14,-49,86,-66,86v-6,0,-11,-6,-11,-12v0,-12,31,-35,50,-70","w":100},"?":{"d":"48,-186v59,0,-14,84,3,111v5,-1,13,-10,13,1v0,11,-13,21,-21,21v-11,0,-16,-12,-16,-22v0,-28,25,-61,25,-84v-14,-22,-36,36,-45,6v0,-15,26,-33,41,-33xm53,-10v0,6,-6,10,-12,10v-15,-2,-14,-28,0,-30v8,0,12,7,12,20","w":84},"@":{"d":"72,-3v19,0,33,-20,40,-3v0,16,-32,21,-45,21v-91,0,-62,-175,24,-175v33,0,65,35,65,68v0,27,-34,62,-57,41v-12,13,-49,-1,-42,-23v0,-15,16,-31,32,-31v44,2,15,22,22,42v5,8,27,-2,27,-32v0,-20,-25,-49,-50,-49v-35,0,-56,47,-56,84v0,26,12,57,40,57xm97,-92v-18,-8,-36,26,-17,33v9,0,17,-7,17,-33","w":166},"A":{"d":"58,-182v22,11,25,77,37,103v2,0,38,-5,28,6v-5,6,-24,12,-24,12v0,0,10,40,19,62v3,6,-3,11,-9,11v-14,0,-30,-64,-32,-69r-36,4v-2,0,-6,60,-25,56v-4,0,-11,-4,-8,-11v8,-23,13,-43,13,-43v0,0,-17,5,-17,-7v0,-12,22,-13,22,-13v6,-34,16,-86,20,-102v2,-7,8,-9,12,-9xm45,-74r28,-3v-8,-27,-15,-72,-15,-72v0,0,-7,43,-13,75","w":128,"k":{"\u00dd":7,"\u0178":7,"Y":7,"W":4,"V":11,"T":14}},"B":{"d":"149,-121v0,25,-32,31,-51,38v20,1,48,10,48,28v0,40,-85,49,-113,53v-15,-2,-9,-26,-9,-42v0,-32,0,-70,-8,-96v-12,-4,-22,-14,-19,-22v4,-9,18,5,14,-8v0,-4,4,-6,8,-6v10,2,14,18,14,18v19,5,116,-2,116,37xm126,-122v0,-14,-50,-15,-86,-15v4,18,6,33,7,48v14,-3,79,-15,79,-33xm124,-54v0,-15,-58,-15,-77,-13v0,0,0,34,-1,43v11,3,78,-12,78,-30","w":154,"k":{".":7,",":7}},"C":{"d":"108,-35v6,11,-26,40,-59,41v-28,1,-39,-24,-40,-48v-1,-27,8,-135,44,-136v22,-1,42,57,44,79v1,14,-16,17,-21,7v-3,-19,-10,-58,-23,-58v-20,1,-24,80,-23,93v0,13,1,43,22,42v29,-1,50,-30,56,-20","w":113},"D":{"d":"161,-82v-2,56,-86,67,-127,82v-16,-37,-15,-101,-12,-150v-11,0,-26,-1,-23,-17v2,-8,8,-9,16,-7v41,10,148,38,146,92xm136,-84v1,-37,-71,-56,-94,-61v-5,38,0,77,6,114v24,-7,86,-15,88,-53","w":168,"k":{".":11,",":11}},"E":{"d":"129,-35v-11,20,-50,39,-77,39v-25,0,-31,-48,-31,-70v0,-28,1,-54,5,-75v-12,1,-29,3,-28,-11v0,-14,17,-10,30,-11v0,0,5,-9,11,-9v5,0,11,9,11,9v23,1,100,-6,73,15v-25,5,-49,4,-75,5v-5,21,-5,55,-5,55v15,0,40,-5,56,-11v7,-3,16,-3,17,3v3,21,-73,30,-73,30v0,0,0,44,17,44v22,0,40,-11,53,-19v9,-5,16,1,16,6","w":137},"F":{"d":"44,-86v3,4,52,-18,56,-2v3,13,-54,28,-54,28v2,8,9,92,-19,50v-1,-9,-6,-117,-6,-117v0,0,-14,-4,-14,-14v9,-12,11,-8,11,-27v0,-7,3,-12,11,-12v13,-1,13,14,12,27v31,0,67,-16,88,-7v-5,21,-55,20,-87,32","w":118,"k":{"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e5":11,"\u00e4":11,"\u00e3":11,"\u00e2":11,"\u00e1":11,"\u00e0":11,"o":11,"e":11,"a":11,";":14,":":14,".":22,"-":11,",":22}},"G":{"d":"105,-118v-21,-1,-7,-38,-28,-38v-31,0,-45,50,-45,74v0,24,12,55,40,55v20,0,33,-18,27,-40v-6,0,-43,13,-44,-3v0,-7,4,-12,17,-14v36,-4,70,-20,84,-5v0,10,-33,15,-34,17v1,24,7,56,7,78v0,12,-17,16,-20,4v-3,-6,-5,-19,-6,-25v-41,37,-92,-18,-92,-62v0,-38,17,-99,65,-99v26,0,38,20,38,45v0,6,-2,13,-9,13","w":150,"k":{".":11,",":11}},"H":{"d":"125,-78v0,11,-28,18,-28,18v-3,5,17,65,-4,66v-17,0,-19,-64,-19,-64r-35,1v-3,6,20,95,-14,72v-16,-47,-12,-138,-3,-191v2,-11,22,-9,21,4r-4,95v0,0,26,0,34,-1r3,-97v2,-9,21,-9,21,4r-2,91v8,1,27,-9,30,2","w":121,"k":{".":7,",":7}},"I":{"d":"44,-16v0,9,-7,14,-12,13v-7,0,-11,-8,-11,-14v-2,-41,-5,-101,-6,-144v-1,-14,21,-16,22,-5v4,40,6,114,7,150","w":59},"J":{"d":"121,-166v7,7,2,11,-9,10v-13,0,-33,-3,-38,-1v15,36,45,80,40,125v-4,35,-36,58,-70,55v-17,-2,-42,-16,-40,-36v2,-19,26,-37,45,-37v8,0,13,4,10,11v-4,9,-31,13,-31,26v0,12,14,15,22,16v26,3,39,-15,42,-38v4,-41,-27,-84,-42,-121v-16,-2,-48,25,-51,-2v4,-15,49,-15,48,-16v4,-14,10,-11,20,-1v11,2,41,4,54,9","w":131},"K":{"d":"166,-48v2,13,-32,21,-54,21v-25,0,-51,1,-73,-12v0,22,9,45,14,66v4,16,-19,20,-20,8v-19,-47,-28,-147,-12,-215v2,-9,18,-8,18,2v0,36,-5,65,-3,100v22,-17,52,-55,69,-74v9,-7,22,4,15,12v-23,29,-46,53,-66,74v11,19,49,18,69,18v15,0,42,-8,43,0","w":148},"L":{"d":"127,-44v2,7,-6,12,-10,13v-23,10,-57,18,-85,22v-9,1,-13,-4,-13,-9v-5,-52,-7,-97,-2,-150v1,-12,24,-11,23,4v-4,42,-4,89,1,129v24,-3,45,-7,71,-13v8,-2,13,-2,15,4","w":123,"k":{"\u00dd":11,"\u0178":11,"Y":11,"V":7,"T":18}},"M":{"d":"15,-94v4,-13,-6,-76,13,-73v24,4,9,48,9,70v0,12,0,31,4,46v12,-39,19,-77,32,-112v3,-18,25,-24,29,-5v4,19,9,61,10,99v14,-34,16,-68,33,-97v5,-11,22,-3,22,7v2,41,9,96,21,146v1,7,-3,10,-9,10v-9,0,-15,-5,-17,-15v-11,-48,-9,-105,-14,-105v-5,0,-23,72,-30,107v-4,16,-22,8,-25,-2v-2,-37,-2,-116,-9,-116v-5,0,-21,90,-36,128v-4,10,-18,9,-22,0v-7,-24,-11,-63,-11,-88","w":196},"N":{"d":"107,-175v26,2,15,61,19,79v-1,22,-5,93,-29,93v-19,0,-56,-90,-61,-107v-9,46,20,105,-7,113v-4,0,-11,-3,-11,-8v4,-26,-23,-172,18,-149v16,27,53,121,58,121v13,-8,11,-99,4,-126v-2,-9,3,-16,9,-16","w":141,"k":{".":11,",":11}},"O":{"d":"111,-51v-1,28,-30,51,-58,50v-37,-1,-43,-44,-42,-73v1,-32,7,-72,25,-98v8,-12,23,-6,21,7v1,2,-4,6,0,6v2,0,6,2,6,5v22,28,49,66,48,103xm88,-58v1,-30,-27,-60,-39,-87v-13,31,-14,50,-15,81v-1,17,6,39,25,40v19,1,28,-17,29,-34","w":118},"P":{"d":"139,-128v2,46,-71,61,-93,68v1,18,3,33,6,60v1,10,-2,18,-12,16v-23,-4,-10,-48,-18,-73v-19,-2,-15,-12,-1,-20v0,0,-2,-34,-6,-91v0,-9,3,-13,11,-13v22,1,112,18,113,53xm117,-125v1,-15,-51,-29,-77,-33v0,23,3,49,4,76v11,-3,72,-16,73,-43","w":142,"k":{"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"o":7,"e":7,"a":7,".":36,",":36}},"Q":{"d":"147,17v-17,25,-64,8,-70,-18v-38,19,-66,-18,-66,-54v0,-42,17,-78,39,-113v4,-11,25,-32,33,-11v0,3,-19,29,-22,33v40,-18,61,27,61,60v0,26,-2,53,-25,69v3,22,25,24,43,28v5,1,7,3,7,6xm104,-91v0,-13,-6,-42,-23,-42v-15,0,-20,22,-31,11v-9,18,-17,39,-17,60v0,15,6,42,25,42v15,0,8,-12,17,-14v26,-5,29,-32,29,-57","w":135},"R":{"d":"42,-48v-1,14,5,45,-11,47v-9,-1,-12,-3,-13,-13v-4,-49,0,-108,-3,-157v0,-6,11,-7,16,-6v30,8,99,23,99,68v0,27,-55,35,-73,45v21,19,44,47,78,47v5,0,8,2,8,7v-2,9,-19,8,-25,8v-32,0,-61,-30,-76,-46xm108,-114v0,-15,-43,-36,-69,-41v-2,30,-1,45,0,77v20,-10,69,-16,69,-36","w":142},"S":{"d":"41,-180v29,-1,53,28,34,50v-2,1,-8,4,-12,-1v1,-13,2,-29,-18,-30v-10,0,-14,12,-14,18v0,31,71,49,71,94v0,36,-19,55,-48,55v-30,0,-46,-24,-46,-48v-5,-19,19,-35,19,-11v0,16,10,37,28,37v14,0,25,-12,25,-33v0,-33,-69,-50,-69,-91v0,-18,8,-40,30,-40","w":108},"T":{"d":"149,-159v2,11,-51,24,-79,27v0,43,5,85,9,127v0,5,0,10,-7,10v-6,0,-11,-2,-12,-8v-9,-42,-9,-78,-12,-126v-21,-2,-55,13,-59,-12v4,-23,39,-8,60,-12v0,-14,-2,-32,11,-34v16,2,8,20,10,34v19,0,45,-4,65,-10v4,-1,13,-3,14,4","w":134,"k":{"\u00ff":22,"\u00fd":22,"\u00fc":22,"\u00fb":22,"\u00fa":22,"\u00f9":22,"\u00f8":22,"\u00f6":22,"\u00f5":22,"\u00f4":22,"\u00f3":22,"\u00f2":22,"\u00ef":11,"\u00ee":11,"\u00ed":11,"\u00ec":11,"\u00eb":22,"\u00ea":22,"\u00e9":22,"\u00e8":22,"\u00e5":22,"\u00e4":22,"\u00e3":22,"\u00e2":22,"\u00e1":22,"\u00e0":22,"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"y":22,"w":22,"u":22,"s":22,"r":22,"o":22,"i":11,"e":22,"a":22,"A":11,";":18,":":18,".":29,"-":25,",":29,"\u0131":11}},"U":{"d":"37,-157v2,36,-18,132,23,135v45,-8,37,-79,38,-131v0,-10,2,-16,10,-16v23,2,11,51,12,70v4,64,0,100,34,82v11,10,-4,26,-19,26v-22,0,-30,-18,-33,-39v-9,18,-23,32,-42,32v-64,3,-45,-109,-43,-161v4,-14,20,-9,20,2","w":148},"V":{"d":"118,-166v-12,62,-27,106,-45,166v-3,11,-18,9,-22,0v-17,-40,-44,-114,-49,-159v0,-6,3,-13,9,-13v9,0,11,8,12,13v7,49,28,102,38,123v14,-39,27,-87,39,-135v2,-6,4,-9,10,-9v8,0,9,10,8,14","w":122,"k":{"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e5":11,"\u00e4":11,"\u00e3":11,"\u00e2":11,"\u00e1":11,"\u00e0":11,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"u":11,"r":7,"o":11,"e":11,"c":11,"a":11,"A":7,".":18,",":18}},"W":{"d":"140,-183v20,9,12,51,12,79v0,15,-2,106,-28,105v-27,-9,-28,-48,-37,-77v-4,17,-8,32,-13,46v-4,11,-13,40,-26,39v-29,-17,-36,-120,-36,-160v0,-11,17,-9,18,2v3,28,12,100,22,117v6,1,27,-97,29,-123v1,-8,14,-8,15,1v2,22,15,120,25,122v13,-21,16,-106,13,-145v0,-3,2,-5,6,-6","w":163},"X":{"d":"103,-159v18,0,20,35,13,49v-13,2,-6,-28,-13,-28v-4,0,-25,39,-34,55v10,17,28,56,36,56v6,0,0,-33,9,-33v16,9,11,59,-9,59v-26,0,-35,-40,-48,-60v-9,17,-22,32,-26,51v6,-1,7,2,7,5v-2,16,-33,20,-33,0v0,-20,25,-52,38,-75v-6,-23,-50,-70,-32,-92v6,-3,11,1,14,6v12,22,20,42,32,63v8,-12,31,-56,46,-56","w":129},"Y":{"d":"1,-164v25,9,29,44,47,64v8,-35,37,-100,63,-100v6,0,6,8,2,14v-51,71,-52,114,-47,221v0,5,-1,12,-9,12v-8,0,-11,-5,-12,-12v-5,-33,-3,-64,-8,-98v-4,-33,-31,-60,-43,-90v-2,-5,0,-11,7,-11","w":105,"k":{"\u00fc":14,"\u00fb":14,"\u00fa":14,"\u00f9":14,"\u00f8":14,"\u00f6":14,"\u00f5":14,"\u00f4":14,"\u00f3":14,"\u00f2":14,"\u00ef":11,"\u00ee":11,"\u00ed":11,"\u00ec":11,"\u00eb":14,"\u00ea":14,"\u00e9":14,"\u00e8":14,"\u00e5":14,"\u00e4":14,"\u00e3":14,"\u00e2":14,"\u00e1":14,"\u00e0":14,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00d1":7,"\u00d0":7,"\u00cf":7,"\u00ce":7,"\u00cd":7,"\u00cc":7,"\u00cb":7,"\u00ca":7,"\u00c9":7,"\u00c8":7,"\u00c7":7,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"\u0160":7,"\u201a":11,"z":11,"v":14,"u":14,"s":14,"r":11,"p":11,"o":14,"i":11,"e":14,"d":14,"a":14,"W":11,"U":4,"S":7,"Q":7,"O":7,"N":7,"M":7,"I":7,"G":11,"E":7,"D":7,"C":7,"B":7,"A":14,".":18,"-":18,",":18,"\u0131":11}},"Z":{"d":"41,-22v34,0,52,-4,77,-5v7,0,12,1,12,6v0,6,-8,9,-13,11v-26,10,-59,14,-91,14v-11,0,-19,-2,-18,-12v1,-4,80,-124,82,-139v-11,-5,-85,8,-88,-17v1,-6,5,-9,10,-8v30,4,54,3,83,3v4,0,20,-1,20,7v0,49,-46,100,-74,140","w":133},"[":{"d":"80,25v-5,15,-36,11,-52,11v-9,0,-14,-2,-13,-11v4,-55,3,-141,3,-207v4,-12,33,-4,51,-6v5,0,8,4,7,9v-3,11,-34,5,-37,12v0,33,1,66,1,98v0,28,-1,56,-4,86v14,5,41,-8,44,8","w":87},"\\":{"d":"22,-186v-26,5,0,45,5,60v16,44,31,91,51,133v5,10,15,2,13,-7v-13,-53,-41,-132,-64,-183v-1,-2,-2,-3,-5,-3","w":101},"]":{"d":"8,-178v5,-15,36,-8,52,-10v9,0,14,1,13,10v-4,55,-3,141,-3,207v-4,12,-33,4,-51,6v-5,0,-8,-4,-7,-9v3,-11,37,-3,37,-12v0,-33,-1,-66,-1,-98v0,-28,1,-56,4,-86v-14,-5,-41,8,-44,-8","w":87},"^":{"d":"112,-39v1,6,-3,8,-7,8v-14,0,-27,-39,-36,-50v-18,13,-26,41,-50,49v-18,-14,39,-61,44,-76v6,-8,17,-4,20,4v9,18,24,46,29,65","w":124},"_":{"d":"156,55v0,6,-3,12,-8,12r-147,0v-7,0,-8,-5,-8,-11v0,-8,4,-10,7,-10v22,0,61,2,98,2v18,0,36,-1,50,-2v3,0,8,0,8,9","w":148},"`":{"d":"80,-135v0,3,-1,4,-4,4v-5,0,-46,-25,-48,-32v-3,-9,5,-13,12,-12v7,1,40,30,40,40","w":104},"a":{"d":"85,-88v-7,30,10,52,8,76v-18,8,-27,-19,-30,-28v-7,13,-15,36,-33,36v-20,0,-23,-38,-22,-52v1,-15,11,-60,32,-60v17,-4,25,22,41,19v3,2,4,5,4,9xm45,-97v-15,10,-18,30,-20,53v0,9,2,17,8,17v10,1,35,-59,12,-70","w":100},"b":{"d":"56,-115v60,-3,71,103,8,103v-23,0,-25,-11,-25,9v0,8,-4,12,-12,12v-27,0,-7,-51,-13,-77v0,-40,0,-77,-3,-118v0,-4,3,-8,11,-8v8,0,12,6,12,13v0,12,2,36,2,73v0,0,11,-7,20,-7xm85,-59v0,-21,-12,-40,-29,-40v-29,0,-33,69,6,69v15,0,23,-12,23,-29","w":114},"c":{"d":"99,-17v-1,8,-22,9,-32,9v-38,0,-60,-15,-60,-52v0,-27,27,-53,53,-53v17,0,41,19,26,32v-11,0,-12,-12,-26,-12v-17,0,-33,18,-33,35v1,31,36,39,64,33v4,-1,9,2,8,8","w":102},"d":{"d":"130,-14v-13,24,-54,13,-55,-13v-9,12,-23,22,-37,21v-52,-7,-32,-102,10,-100v6,0,12,1,20,5v3,-27,-2,-62,-3,-84v0,-7,4,-12,13,-12v25,20,12,73,12,124v0,37,6,63,34,51v4,0,7,4,6,8xm69,-64v1,-15,-8,-23,-20,-23v-14,0,-22,16,-23,34v-1,13,3,27,15,27v14,0,27,-18,28,-38","w":115},"e":{"d":"85,-77v0,30,-29,36,-58,32v0,14,10,24,24,26v10,2,29,0,29,13v0,6,-14,7,-18,7v-30,0,-55,-13,-55,-46v0,-33,22,-73,46,-73v21,0,32,25,32,41xm43,-64v26,4,30,-24,12,-32v-15,0,-23,21,-26,31v5,1,10,1,14,1","w":93},"f":{"d":"108,-161v0,18,-21,20,-21,3v0,-17,-5,-38,-15,-38v-14,0,-19,56,-18,89v13,1,40,-10,42,3v-2,7,-26,10,-40,16v2,31,4,59,5,91v0,5,-4,10,-9,9v-6,0,-11,-6,-11,-11v-3,-29,-4,-57,-6,-86v-14,3,-37,10,-39,-7v-1,-12,28,-11,39,-14v-4,-43,4,-114,35,-114v23,0,38,39,38,59","w":95,"k":{".":11,"-":11,",":11}},"g":{"d":"85,-78v2,67,9,143,-54,149v-13,-2,-11,-20,2,-21v28,-2,38,-47,33,-82v-6,12,-20,25,-32,26v-51,-8,-21,-110,16,-108v6,-1,12,1,16,6v2,-2,7,-6,9,-6v11,-1,10,17,10,36xm37,-31v25,2,37,-58,13,-64v-17,1,-24,30,-24,44v0,9,2,20,11,20","w":97},"h":{"d":"133,-22v10,9,-4,24,-17,23v-31,-1,-38,-69,-44,-69v-8,0,-19,51,-33,67v-22,8,-19,-29,-21,-47v-5,-39,-9,-90,-7,-129v0,-6,4,-15,13,-15v19,5,9,25,9,47v0,25,2,60,9,103v10,-14,18,-61,38,-60v24,17,11,71,40,84v4,0,7,-5,13,-4","w":126},"i":{"d":"36,-138v1,18,-26,18,-24,1v0,-5,5,-11,11,-11v7,0,13,1,13,10xm39,-13v4,9,-11,15,-16,7v-15,-27,-14,-59,-9,-93v3,-7,18,-5,17,4v-2,30,0,55,8,82","w":50},"j":{"d":"41,-145v0,14,-24,19,-25,3v-1,-17,23,-17,25,-3xm54,-19v0,8,-12,11,-12,12v8,29,19,84,-20,84v-22,0,-38,-24,-38,-45v0,-24,17,-37,33,-48v1,-8,-13,-84,13,-86v23,6,-1,51,9,80v0,0,15,-2,15,3xm23,58v15,-10,3,-40,0,-55v-9,6,-20,16,-20,28v0,12,8,28,20,27","w":62},"k":{"d":"30,1v-24,-9,-19,-52,-19,-78v0,-30,7,-62,7,-92v0,-5,1,-10,7,-10v9,0,10,12,10,21v0,28,-8,55,-4,83v15,-10,36,-25,50,-25v14,0,9,14,2,16v-11,7,-30,17,-41,25v32,15,72,6,72,22v0,9,-17,10,-26,9v-20,-3,-39,-7,-54,-15v-1,2,14,46,-4,44","w":108},"l":{"d":"41,-9v2,10,-13,12,-18,5v-17,-44,-11,-111,-12,-171v0,-4,4,-9,9,-9v10,0,12,11,12,19v-2,48,4,131,9,156","w":51},"m":{"d":"69,-118v24,6,14,91,26,91v5,0,6,-100,37,-75v10,30,19,65,33,91v4,6,-4,10,-9,9v-19,0,-31,-72,-36,-72v-7,-1,-6,74,-30,83v-30,-9,-14,-98,-25,-96v-12,19,-8,80,-23,99v-10,12,-22,-8,-21,-18v-6,-30,-11,-62,-12,-83v0,-10,0,-29,10,-29v6,0,8,3,8,12v0,20,2,48,11,74v9,-27,4,-76,31,-86","w":162},"n":{"d":"19,-115v18,4,13,41,16,59v7,-15,25,-73,47,-43v8,27,6,56,25,70v12,8,15,20,0,22v-33,3,-38,-75,-41,-77v-13,0,-16,69,-41,76v-23,-13,-5,-67,-14,-99v0,-4,4,-8,8,-8","w":117},"o":{"d":"44,-114v54,0,51,108,-7,108v-32,0,-29,-29,-29,-53v0,-19,5,-55,36,-55xm37,-28v37,0,38,-68,5,-68v-13,0,-17,23,-17,45v0,9,0,23,12,23","w":90},"p":{"d":"39,-22v-4,33,10,80,-11,90v-16,0,-9,-27,-10,-45v-2,-26,-4,-84,-7,-110v2,-17,19,-13,19,2v0,3,2,13,1,16v10,-34,35,-49,50,-49v33,0,39,37,37,53v-4,39,-43,58,-79,43xm77,-97v-14,1,-27,20,-37,56v24,10,55,10,57,-27v0,-9,-1,-30,-20,-29","w":126,"k":{".":7,",":7}},"q":{"d":"9,-37v-10,-38,14,-87,54,-72v2,-8,18,-9,18,2v1,44,-8,98,-2,136v1,9,3,24,15,23v6,-1,16,-7,18,2v-2,31,-46,18,-49,-2v-4,-23,-6,-49,-6,-76v-17,11,-42,9,-48,-13xm59,-98v-24,-4,-35,29,-30,56v10,12,28,3,30,-20v1,-11,1,-26,0,-36","w":94},"r":{"d":"22,-4v-21,-13,-9,-64,-8,-95v0,-1,3,-6,7,-6v16,3,6,32,10,48v12,-23,25,-52,53,-52v4,0,12,0,14,6v2,6,-1,12,-9,13v-34,2,-48,49,-58,80v-1,4,-5,6,-9,6","w":97,"k":{".":22,",":22}},"s":{"d":"33,-91v10,24,63,40,55,72v-9,38,-80,23,-80,-13v1,-4,3,-14,11,-13v3,17,30,39,47,23v1,-22,-58,-40,-55,-70v3,-22,26,-28,51,-28v16,0,24,20,5,18v-12,-1,-31,-2,-34,11","w":95},"t":{"d":"58,-106v6,2,38,-7,39,2v0,9,-25,13,-38,15v1,30,4,56,11,83v1,4,-3,7,-7,7v-29,-11,-17,-58,-22,-90v-18,-1,-51,2,-55,-15v3,-28,34,2,54,-3v-2,-17,-1,-46,1,-60v2,-10,16,-7,16,4","w":93,"k":{".":7,",":7}},"u":{"d":"118,-18v9,-1,14,-9,17,0v0,12,-13,16,-24,16v-23,0,-29,-28,-29,-43v-6,21,-21,50,-45,50v-26,0,-26,-37,-26,-56v0,-16,-4,-52,14,-55v23,9,-9,74,16,89v29,0,31,-92,46,-92v30,0,-5,88,31,91","w":124},"v":{"d":"93,-108v5,0,10,7,5,10v-17,20,-24,47,-29,71v-3,14,-11,47,-29,30v-13,-23,-30,-77,-36,-100v-1,-3,0,-8,4,-10v3,-1,9,-1,11,4v7,15,20,57,30,77v9,-19,13,-83,44,-82","w":100,"k":{".":7,",":7}},"w":{"d":"39,-28v12,0,2,-74,24,-84v14,2,7,25,9,40v1,20,8,50,19,52v14,2,20,-80,19,-92v0,-5,2,-10,8,-10v13,-1,11,14,11,26v-1,35,-1,92,-38,97v-20,-2,-28,-22,-32,-37v-4,14,-6,38,-27,37v-24,-2,-21,-72,-21,-103v0,-13,23,-15,23,0v0,21,-8,65,5,74","w":140},"x":{"d":"16,-110v19,1,16,22,25,35v13,-13,27,-38,41,-41v4,-1,9,2,9,7v1,12,-36,35,-40,56v0,7,11,37,24,30v12,4,2,21,-8,22v-17,1,-23,-24,-31,-35v-9,8,-25,57,-39,39v-2,-21,30,-47,30,-62v0,-10,-28,-38,-11,-51","w":87},"y":{"d":"10,53v9,-23,27,-35,35,-62v-22,-22,-40,-75,-45,-96v-1,-6,5,-9,9,-9v8,0,11,10,16,26v4,12,15,41,28,57v12,-25,18,-53,27,-76v3,-9,18,-3,16,7v-13,67,-41,121,-66,158v-5,9,-24,5,-20,-5","w":100,"k":{".":7,",":7}},"z":{"d":"5,-23v16,-26,47,-40,66,-64v-9,-9,-73,14,-50,-14v22,-6,65,-12,72,10v0,15,-47,52,-62,65v17,7,46,12,71,-2v3,-1,8,-3,11,2v-1,22,-40,26,-56,25v-17,-1,-46,-5,-52,-22","w":102},"{":{"d":"29,-53v1,-13,-21,-5,-22,-17v0,-18,28,-17,28,-40v0,-32,-20,-74,20,-89v6,-2,11,1,11,7v0,9,-24,11,-24,32v0,14,11,25,11,53v0,18,-12,25,-16,32v30,17,-14,83,25,96v5,2,20,1,20,10v0,8,-9,10,-18,10v-48,1,-41,-53,-35,-94","w":93},"|":{"d":"46,40v0,7,-6,9,-11,9v-8,0,-11,-8,-11,-16v0,-45,-2,-104,-2,-155v0,-24,1,-47,2,-66v2,-6,13,-4,13,2v10,62,8,157,9,226","w":67},"}":{"d":"48,-157v0,-24,-28,-17,-37,-32v0,-8,9,-10,18,-10v48,-1,41,53,35,94v-2,14,22,5,22,17v0,18,-27,17,-27,40v0,33,19,76,-21,89v-6,2,-11,0,-11,-6v0,-9,24,-11,24,-32v0,-14,-11,-25,-11,-53v0,-18,12,-25,16,-32v-21,-14,-8,-48,-8,-75","w":93},"~":{"d":"21,-69v13,-5,10,-31,28,-31v20,0,22,32,52,32v23,0,35,-16,35,-40v0,-9,-5,-12,-10,-11v-9,6,-5,32,-22,29v-19,0,-19,-32,-53,-32v-27,0,-40,25,-40,41v0,9,3,12,10,12","w":146},"\u20ac":{"d":"4,-55v-5,-14,16,-14,26,-13v1,-5,1,-10,2,-16v-12,2,-38,0,-24,-11v6,-2,17,-5,27,-6v7,-37,20,-77,42,-77v22,0,45,30,45,52v0,13,-18,16,-21,6v0,-17,-11,-30,-24,-30v-11,0,-18,24,-22,48v15,-1,57,-5,42,15v-12,4,-29,1,-44,2v-1,6,-2,12,-2,17v12,0,44,-5,32,10v-8,3,-21,5,-33,6v0,14,2,36,21,36v29,0,51,-27,56,-17v6,11,-27,39,-60,39v-30,-1,-40,-28,-39,-57v-7,-1,-19,1,-24,-4","w":135},"\u201a":{"d":"55,-1v3,15,-19,57,-33,32v0,-10,16,-13,16,-31v0,-20,-24,-11,-24,-26v0,-7,7,-9,13,-9v18,0,28,18,28,34","w":69},"\u0192":{"d":"6,42v22,0,32,-106,32,-136v-14,2,-39,4,-38,-11v0,-13,30,-7,40,-10v0,-35,16,-102,48,-102v22,0,34,17,34,38v0,15,-18,9,-19,0v-2,-11,-7,-18,-16,-15v-15,4,-26,46,-28,80v13,2,41,-4,41,8v-3,7,-27,7,-41,11v0,35,-4,162,-53,162v-21,0,-34,-18,-34,-38v0,-18,20,-16,20,-1v0,9,6,14,14,14","w":101},"\u201e":{"d":"71,-37v34,5,30,64,2,74v-23,-6,2,-25,2,-44v-3,-11,-24,-23,-4,-30xm31,39v-23,-8,10,-25,7,-39v0,-20,-24,-11,-24,-26v0,-7,7,-9,13,-9v18,0,28,18,28,34v0,12,-7,40,-24,40","w":110},"\u2026":{"d":"129,-36v19,0,26,35,4,36v-19,1,-24,-34,-4,-36xm81,-36v19,0,26,35,4,36v-19,1,-24,-34,-4,-36xm27,-36v19,0,26,35,4,36v-19,1,-24,-34,-4,-36","w":160},"\u2020":{"d":"72,-132v-6,25,38,-1,41,13v0,9,-27,13,-40,15r-1,164v0,4,-3,7,-6,7v-10,1,-12,-59,-12,-108v0,-31,1,-58,1,-63v-19,1,-45,7,-47,-11v3,-21,24,-4,46,-7r1,-60v3,-10,18,-7,17,4v2,15,0,31,0,46","w":120},"\u2021":{"d":"54,13v6,-25,-38,1,-41,-14v0,-9,27,-12,40,-14r2,-89v-19,1,-45,7,-47,-11v3,-21,24,-4,46,-7r1,-60v3,-10,18,-7,17,4v3,19,-2,39,1,57v6,2,39,-7,40,2v0,9,-27,13,-40,15r-2,88v20,0,45,-5,47,12v-4,20,-24,3,-46,6r0,54v0,6,-1,12,-9,13v-17,-4,-7,-36,-9,-56","w":126},"\u02c6":{"d":"87,-138v0,-5,-23,-47,-33,-47v-8,0,-36,36,-36,48v0,5,3,8,7,7v5,-2,27,-29,27,-29v2,-1,31,45,35,21","w":102},"\u2030":{"d":"71,-133v1,34,-59,45,-60,6v0,-15,16,-41,33,-41v22,0,27,17,27,35xm121,-163v-37,86,-63,137,-82,176v-5,5,-12,1,-10,-7v11,-37,66,-152,80,-175v4,-5,14,0,12,6xm118,-82v48,0,35,85,-8,84v-14,0,-25,-15,-25,-28v0,-23,18,-56,33,-56xm37,-120v15,1,32,-27,12,-31v-13,0,-28,26,-12,31xm114,-17v19,-1,30,-40,11,-48v-17,3,-32,44,-11,48xm183,-6v-46,0,-28,-70,7,-68v14,0,26,12,26,26v0,15,-16,42,-33,42xm189,-55v-14,-1,-30,26,-12,31v14,0,30,-26,12,-31","w":223},"\u0160":{"d":"41,-180v29,-1,53,28,34,50v-2,1,-8,4,-12,-1v1,-13,2,-29,-18,-30v-10,0,-14,12,-14,18v0,31,71,49,71,94v0,36,-19,55,-48,55v-30,0,-46,-24,-46,-48v-5,-19,19,-35,19,-11v0,16,10,37,28,37v14,0,25,-12,25,-33v0,-33,-69,-50,-69,-91v0,-18,8,-40,30,-40xm82,-238v0,5,-23,48,-33,48v-8,0,-36,-37,-36,-49v0,-5,3,-8,7,-7v5,2,27,29,27,29v2,1,32,-44,35,-21","w":108},"\u2039":{"d":"73,3v-26,-5,-54,-31,-62,-53v0,-19,28,-54,38,-71v6,-10,23,1,20,11v0,14,-28,33,-29,55v-1,22,44,38,44,48v0,5,-6,11,-11,10","w":94},"\u2018":{"d":"49,-112v0,6,-4,9,-10,9v-34,-4,-31,-64,-3,-74v24,6,0,26,-1,45v0,11,14,10,14,20","w":63},"\u2019":{"d":"55,-143v3,15,-19,57,-33,32v0,-10,16,-15,16,-31v0,-20,-24,-10,-24,-25v0,-8,7,-10,13,-10v18,0,28,18,28,34","w":69},"\u201c":{"d":"96,-114v0,8,-7,10,-13,10v-18,0,-28,-18,-28,-34v-3,-15,20,-59,33,-32v0,10,-16,17,-16,30v0,21,24,11,24,26xm49,-112v0,6,-4,9,-10,9v-34,-4,-31,-64,-3,-74v24,6,0,26,-1,45v0,11,14,10,14,20","w":110},"\u201d":{"d":"71,-179v34,6,31,65,2,75v-23,-7,1,-26,2,-45v-3,-11,-24,-23,-4,-30xm27,-177v37,2,37,65,4,74v-22,-7,7,-24,7,-39v0,-20,-24,-10,-24,-25v0,-8,7,-10,13,-10","w":110},"\u2022":{"d":"86,-80v0,19,-12,41,-33,41v-18,0,-42,-16,-42,-36v0,-17,19,-44,38,-44v23,0,37,17,37,39","w":97},"\u2013":{"d":"140,-89v-5,21,-30,14,-50,14v-22,0,-49,-1,-67,-2v-7,0,-12,-5,-12,-11v0,-8,9,-10,19,-10v33,0,61,-2,92,-2v10,0,18,2,18,11","w":150},"\u2014":{"d":"174,-89v-6,23,-35,14,-57,14v-32,0,-76,-1,-94,-2v-7,0,-12,-5,-12,-11v0,-8,9,-10,19,-10v33,0,95,-2,126,-2v10,0,18,2,18,11","w":184},"\u02dc":{"d":"77,-155v-14,-3,-14,-23,-35,-22v-19,0,-29,18,-29,30v0,7,3,9,9,9v10,0,7,-23,18,-21v15,2,16,24,36,23v17,0,25,-11,25,-29v0,-8,-6,-9,-10,-9v-7,2,-4,21,-14,19","w":113},"\u2122":{"d":"141,-97v-20,2,-10,-48,-21,-53v-12,0,-1,64,-18,68v-9,-1,-14,-6,-12,-14v5,-22,10,-86,27,-85v17,1,17,33,26,41v3,-2,18,-56,36,-31v5,21,20,55,14,71v-15,-1,-21,-52,-28,-53v-10,3,-7,54,-24,56xm52,-88v-17,-9,-10,-34,-12,-65v-10,6,-47,0,-26,-16v18,-1,61,-13,76,1v-1,9,-21,7,-31,12v-4,21,-1,41,2,61v0,4,-3,7,-9,7","w":202},"\u0161":{"d":"33,-91v10,24,63,40,55,72v-9,38,-80,23,-80,-13v1,-4,3,-14,11,-13v3,17,30,39,47,23v1,-22,-58,-40,-55,-70v3,-22,26,-28,51,-28v16,0,24,20,5,18v-12,-1,-31,-2,-34,11xm82,-176v0,5,-23,47,-33,47v-8,0,-36,-36,-36,-48v0,-5,3,-8,7,-7v5,2,27,29,27,29v2,1,32,-44,35,-21","w":95},"\u203a":{"d":"21,-126v26,6,55,31,63,53v0,19,-28,54,-38,71v-6,10,-23,-1,-20,-11v0,-14,28,-33,29,-55v1,-22,-44,-38,-44,-48v0,-5,5,-11,10,-10","w":94},"\u0178":{"d":"1,-164v25,9,29,44,47,64v8,-35,37,-100,63,-100v6,0,6,8,2,14v-51,71,-52,114,-47,221v0,5,-1,12,-9,12v-8,0,-11,-5,-12,-12v-5,-33,-3,-64,-8,-98v-4,-33,-31,-60,-43,-90v-2,-5,0,-11,7,-11xm62,-220v19,0,23,36,1,35v-10,0,-17,-7,-17,-17v0,-10,6,-18,16,-18xm29,-203v0,8,-6,18,-15,18v-20,-1,-22,-34,0,-34v9,0,15,7,15,16","w":108,"k":{"\u00fc":14,"\u00fb":14,"\u00fa":14,"\u00f9":14,"\u00f8":14,"\u00f6":14,"\u00f5":14,"\u00f4":14,"\u00f3":14,"\u00f2":14,"\u00ef":11,"\u00ee":11,"\u00ed":11,"\u00ec":11,"\u00eb":14,"\u00ea":14,"\u00e9":14,"\u00e8":14,"\u00e5":14,"\u00e4":14,"\u00e3":14,"\u00e2":14,"\u00e1":14,"\u00e0":14,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00d1":7,"\u00d0":7,"\u00cf":7,"\u00ce":7,"\u00cd":7,"\u00cc":7,"\u00cb":7,"\u00ca":7,"\u00c9":7,"\u00c8":7,"\u00c7":7,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"\u0160":7,"\u201a":11,"z":11,"v":14,"u":14,"s":14,"r":11,"p":11,"o":14,"i":11,"e":14,"d":14,"a":14,"W":11,"U":4,"S":7,"Q":7,"O":7,"N":7,"M":7,"I":7,"G":11,"E":7,"D":7,"C":7,"B":7,"A":14,".":18,"-":18,",":18,"\u0131":11}},"\u00a0":{"w":86},"\u00a1":{"d":"30,66v21,-6,15,-46,15,-74v0,-30,-3,-58,-9,-58v-10,0,-14,82,-14,121v0,8,5,11,8,11xm49,-107v0,-18,-26,-10,-27,4v0,6,4,9,10,9v9,0,17,-3,17,-13","w":70},"\u00a2":{"d":"62,1v-14,-3,-13,-23,-9,-39v-19,2,-44,1,-45,-19v-2,-21,37,-41,52,-47v3,-7,-3,-35,11,-35v12,0,13,15,12,29v2,-2,35,10,17,17v-5,1,-14,0,-18,1r-5,39v5,-2,44,-4,22,7v-8,4,-26,6,-26,6v-4,3,-1,40,-11,41xm60,-85v-10,3,-28,13,-27,26v1,9,17,8,23,7v0,0,3,-22,4,-33","w":118},"\u00a3":{"d":"109,-146v0,6,-8,6,-11,6v-11,0,-9,-21,-33,-21v-36,0,-12,59,-3,74v11,1,30,-5,30,7v0,10,-18,13,-26,13v2,11,0,31,-11,43v45,3,64,-22,75,4v0,4,-1,7,-5,8v-35,10,-73,3,-104,12v-8,0,-10,-2,-10,-10v0,-15,32,-11,35,-34v1,-7,0,-17,-1,-23v-11,-3,-34,4,-34,-8v0,-15,29,-12,29,-12v0,0,-14,-30,-14,-54v0,-21,16,-35,40,-35v20,0,43,16,43,30","w":126},"\u00a5":{"d":"65,11v-19,-1,-11,-27,-13,-46v-17,-2,-53,3,-39,-18v13,0,26,-2,38,0v0,-7,0,-14,-2,-19v-12,-2,-33,3,-39,-6v-1,-15,19,-8,33,-12v-11,-25,-30,-51,-39,-73v-2,-5,1,-12,8,-12v25,10,31,54,50,75v8,-35,32,-80,53,-80v6,0,6,8,2,14v-20,31,-31,53,-36,76v14,2,32,0,40,5v4,21,-26,13,-44,13v-1,6,-2,14,-2,21v14,2,57,-3,42,15v-10,2,-28,2,-42,2v-3,17,8,42,-10,45","w":125},"\u00a6":{"d":"41,-177v-4,23,17,86,-7,87v-21,-8,-6,-56,-11,-94v5,-12,21,-4,18,7xm32,-57v20,12,10,56,13,88v0,6,-2,16,-10,16v-20,-6,-13,-61,-13,-81v0,-7,-1,-23,10,-23","w":67},"\u00a7":{"d":"15,21v-4,-18,21,-34,21,-11v0,16,8,36,26,36v13,0,25,-10,25,-31v0,-33,-69,-51,-69,-92v0,-14,5,-29,17,-36v-32,-27,-14,-78,30,-74v18,-2,61,15,36,27v-19,-2,-59,-14,-61,13v-2,24,96,79,49,123v36,25,20,93,-28,93v-30,0,-46,-24,-46,-48xm69,-40v24,-14,2,-38,-18,-56v-29,15,-5,41,18,56","w":123},"\u00a8":{"d":"93,-150v0,10,-5,15,-15,15v-10,0,-17,-7,-17,-17v0,-10,6,-17,16,-17v10,0,16,10,16,19xm44,-153v0,8,-6,19,-15,19v-19,-1,-23,-34,0,-34v9,0,15,6,15,15","w":106},"\u00a9":{"d":"118,16v-61,4,-104,-34,-104,-96v0,-55,36,-108,97,-108v60,0,105,49,105,106v0,53,-32,94,-98,98xm194,-90v-2,-35,-29,-77,-86,-77v-46,0,-73,45,-73,91v0,46,38,72,86,70v53,-2,77,-30,73,-84xm88,-84v0,13,11,25,22,25v20,0,18,-22,35,-17v10,18,-16,34,-32,34v-27,0,-45,-15,-45,-39v0,-47,63,-65,83,-27v-1,20,-28,1,-38,1v-12,0,-25,9,-25,23","w":230},"\u00aa":{"d":"93,-147v-10,29,12,53,7,76v-17,9,-26,-20,-29,-28v-7,13,-15,38,-34,36v-20,-2,-23,-37,-22,-51v1,-15,12,-61,33,-61v17,-4,25,22,41,19v3,2,4,5,4,9xm53,-156v-15,10,-18,30,-20,53v0,9,2,18,8,18v11,1,35,-59,12,-71xm78,-28v-15,0,-63,7,-64,-11v4,-19,50,-11,71,-11v10,0,17,1,17,10v0,14,-16,12,-24,12","w":117},"\u00ab":{"d":"73,2v-26,-6,-54,-31,-62,-53v0,-19,28,-54,38,-71v6,-11,22,-1,20,10v0,14,-28,33,-29,55v-1,22,44,39,44,49v0,5,-6,11,-11,10xm136,-5v-26,-6,-54,-31,-62,-53v0,-19,28,-55,38,-72v6,-10,23,1,20,11v0,14,-28,33,-29,55v-1,22,44,39,44,49v0,5,-6,11,-11,10","w":157},"\u00ac":{},"\u2212":{"d":"11,-73v0,-22,47,-12,66,-15v6,0,13,-1,13,7v2,19,-51,15,-65,19v-6,0,-14,-4,-14,-11","w":101},"\u00ae":{"d":"14,-80v0,-55,36,-108,97,-108v60,0,105,49,105,106v0,53,-32,98,-98,98v-54,0,-104,-38,-104,-96xm194,-90v-2,-35,-29,-77,-86,-77v-46,0,-73,45,-73,91v0,46,38,74,86,72v53,-2,77,-32,73,-86xm101,-69v4,21,-9,54,-23,29v6,-7,-10,-105,19,-99v51,-12,69,48,28,62v10,11,37,13,42,28v-1,5,-6,8,-14,5v-18,-5,-38,-11,-52,-25xm111,-121v-18,0,-4,16,-9,28v10,3,26,-3,26,-11v0,-14,-10,-17,-17,-17","w":230},"\u00af":{"d":"8,-140v6,-25,91,-4,63,12v-22,-5,-59,12,-63,-12","w":86},"\u00b0":{"d":"34,-170v23,6,50,28,50,50v0,38,-73,41,-73,-2v0,-24,18,-31,13,-42v0,-4,6,-6,10,-6xm66,-126v0,-8,-10,-19,-18,-19v-14,1,-26,32,-3,32v8,0,21,-3,21,-13","w":95},"\u00b1":{"d":"120,-54v3,20,-74,14,-88,19v-6,0,-14,-4,-14,-11v2,-17,16,-14,39,-15v-1,-11,-1,-20,-2,-33v-13,4,-41,8,-41,-7v-1,-17,30,-11,43,-13v1,-5,-7,-50,11,-44v19,1,8,31,9,42v13,3,41,-6,43,9v-1,11,-34,9,-42,12v-1,13,2,21,2,33v14,2,38,-7,40,8","w":134},"\u00b4":{"d":"28,-135v0,3,1,4,4,4v5,0,47,-25,49,-32v3,-9,-6,-13,-13,-12v-7,1,-40,30,-40,40","w":104},"\u00b5":{"d":"11,32v5,-24,-8,-126,17,-138v23,9,-9,74,16,89v29,0,31,-92,46,-92v30,0,-5,88,31,91v9,-1,14,-9,17,0v0,12,-14,16,-25,16v-23,0,-28,-28,-28,-43v-7,23,-24,58,-55,48v3,25,11,43,-8,47v-6,-1,-13,-6,-11,-18","w":132},"\u00b6":{"d":"115,-177v19,3,12,43,12,65v0,50,-5,106,-6,153v-15,12,-19,-3,-19,-23v0,-50,6,-124,0,-166v-2,-2,-12,1,-13,4v-4,9,-6,102,-6,116v0,17,1,102,-19,71v-3,-28,-2,-85,-1,-114v-19,-5,-53,-12,-55,-41v-3,-42,75,-62,107,-65","w":145},"\u00b7":{"d":"27,-109v19,0,26,35,4,36v-19,1,-24,-34,-4,-36","w":59},"\u00b8":{"d":"75,39v0,23,-29,38,-47,38v-7,0,-17,-5,-17,-13v0,-5,3,-5,8,-5v10,0,38,-5,38,-22v-6,-26,-36,22,-40,-8v2,-13,13,-69,27,-37v0,6,-6,22,-6,22v20,-7,38,5,37,25","w":85},"\u00ba":{"d":"51,-175v54,0,51,108,-7,108v-32,0,-29,-29,-29,-53v0,-19,5,-55,36,-55xm44,-89v37,0,38,-68,5,-68v-13,0,-17,23,-17,45v0,9,0,23,12,23xm68,-28v-14,0,-53,6,-54,-11v3,-18,41,-11,61,-11v10,0,17,1,17,10v0,14,-16,12,-24,12","w":106},"\u00bb":{"d":"84,-134v26,7,55,31,63,53v0,19,-28,55,-38,72v-6,10,-23,-1,-20,-11v0,-14,28,-33,29,-55v1,-22,-44,-38,-44,-48v0,-5,5,-12,10,-11xm21,-126v26,6,55,31,63,53v0,19,-28,54,-38,71v-6,10,-23,-1,-20,-11v0,-14,28,-33,29,-55v1,-22,-44,-38,-44,-48v0,-5,5,-11,10,-10","w":157},"\u00bf":{"d":"37,68v-59,0,14,-84,-3,-111v-5,1,-13,10,-13,-1v0,-11,13,-21,21,-21v11,0,16,11,16,21v0,28,-25,62,-25,85v14,22,36,-36,45,-6v0,15,-26,33,-41,33xm32,-108v0,-6,6,-10,12,-10v15,2,14,28,0,30v-8,0,-12,-7,-12,-20","w":84},"\u00c0":{"d":"58,-182v22,11,25,77,37,103v2,0,38,-5,28,6v-5,6,-24,12,-24,12v0,0,10,40,19,62v3,6,-3,11,-9,11v-14,0,-30,-64,-32,-69r-36,4v-2,0,-6,60,-25,56v-4,0,-11,-4,-8,-11v8,-23,13,-43,13,-43v0,0,-17,5,-17,-7v0,-12,22,-13,22,-13v6,-34,16,-86,20,-102v2,-7,8,-9,12,-9xm45,-74r28,-3v-8,-27,-15,-72,-15,-72v0,0,-7,43,-13,75xm82,-197v0,3,-1,4,-4,4v-5,0,-46,-25,-48,-32v-3,-9,5,-13,12,-12v7,1,40,30,40,40","w":129,"k":{"\u00dd":7,"\u0178":7,"Y":7,"W":4,"V":11,"T":14}},"\u00c1":{"d":"58,-182v22,11,25,77,37,103v2,0,38,-5,28,6v-5,6,-24,12,-24,12v0,0,10,40,19,62v3,6,-3,11,-9,11v-14,0,-30,-64,-32,-69r-36,4v-2,0,-6,60,-25,56v-4,0,-11,-4,-8,-11v8,-23,13,-43,13,-43v0,0,-17,5,-17,-7v0,-12,22,-13,22,-13v6,-34,16,-86,20,-102v2,-7,8,-9,12,-9xm45,-74r28,-3v-8,-27,-15,-72,-15,-72v0,0,-7,43,-13,75xm36,-197v0,3,1,4,4,4v5,0,46,-25,48,-32v3,-9,-5,-13,-12,-12v-7,1,-40,30,-40,40","w":129,"k":{"\u00dd":7,"\u0178":7,"Y":7,"W":4,"V":11,"T":14}},"\u00c2":{"d":"58,-182v22,11,25,77,37,103v2,0,38,-5,28,6v-5,6,-24,12,-24,12v0,0,10,40,19,62v3,6,-3,11,-9,11v-14,0,-30,-64,-32,-69r-36,4v-2,0,-6,60,-25,56v-4,0,-11,-4,-8,-11v8,-23,13,-43,13,-43v0,0,-17,5,-17,-7v0,-12,22,-13,22,-13v6,-34,16,-86,20,-102v2,-7,8,-9,12,-9xm45,-74r28,-3v-8,-27,-15,-72,-15,-72v0,0,-7,43,-13,75xm92,-186v0,-5,-23,-48,-33,-48v-8,0,-36,36,-36,48v0,5,3,8,7,7v5,-2,27,-29,27,-29v2,-1,29,43,35,22","w":129,"k":{"\u00dd":7,"\u0178":7,"Y":7,"W":4,"V":11,"T":14}},"\u00c3":{"d":"58,-182v22,11,25,77,37,103v2,0,38,-5,28,6v-5,6,-24,12,-24,12v0,0,10,40,19,62v3,6,-3,11,-9,11v-14,0,-30,-64,-32,-69r-36,4v-2,0,-6,60,-25,56v-4,0,-11,-4,-8,-11v8,-23,13,-43,13,-43v0,0,-17,5,-17,-7v0,-12,22,-13,22,-13v6,-34,16,-86,20,-102v2,-7,8,-9,12,-9xm45,-74r28,-3v-8,-27,-15,-72,-15,-72v0,0,-7,43,-13,75xm79,-208v-13,-3,-14,-23,-35,-22v-19,0,-29,18,-29,30v0,7,3,9,9,9v10,0,7,-23,18,-21v15,2,16,23,36,22v17,0,25,-11,25,-29v0,-8,-5,-9,-9,-9v-7,3,-4,23,-15,20","w":129,"k":{"\u00dd":7,"\u0178":7,"Y":7,"W":4,"V":11,"T":14}},"\u00c4":{"d":"58,-182v22,11,25,77,37,103v2,0,38,-5,28,6v-5,6,-24,12,-24,12v0,0,10,40,19,62v3,6,-3,11,-9,11v-14,0,-30,-64,-32,-69r-36,4v-2,0,-6,60,-25,56v-4,0,-11,-4,-8,-11v8,-23,13,-43,13,-43v0,0,-17,5,-17,-7v0,-12,22,-13,22,-13v6,-34,16,-86,20,-102v2,-7,8,-9,12,-9xm45,-74r28,-3v-8,-27,-15,-72,-15,-72v0,0,-7,43,-13,75xm81,-221v20,-1,24,35,2,34v-10,0,-17,-7,-17,-17v0,-10,5,-17,15,-17xm49,-205v0,8,-7,19,-16,19v-19,-1,-22,-34,0,-34v9,0,16,6,16,15","w":129,"k":{"\u00dd":7,"\u0178":7,"Y":7,"W":4,"V":11,"T":14}},"\u00c5":{"d":"58,-182v22,11,25,77,37,103v2,0,38,-5,28,6v-5,6,-24,12,-24,12v0,0,10,40,19,62v3,6,-3,11,-9,11v-14,0,-30,-64,-32,-69r-36,4v-2,0,-6,60,-25,56v-4,0,-11,-4,-8,-11v8,-23,13,-43,13,-43v0,0,-17,5,-17,-7v0,-12,22,-13,22,-13v6,-34,16,-86,20,-102v2,-7,8,-9,12,-9xm45,-74r28,-3v-8,-27,-15,-72,-15,-72v0,0,-7,43,-13,75xm45,-245v23,5,50,28,50,50v0,37,-73,39,-73,-3v0,-23,18,-31,13,-41v0,-4,6,-6,10,-6xm77,-201v0,-8,-11,-21,-19,-21v-17,4,-27,37,0,38v9,0,19,-7,19,-17","w":129,"k":{"\u00dd":7,"\u0178":7,"Y":7,"W":4,"V":11,"T":14}},"\u00c7":{"d":"88,46v0,23,-28,39,-46,39v-10,3,-29,-18,-9,-18v10,0,38,-5,38,-22v-7,-26,-41,22,-41,-8v0,-8,6,-20,9,-32v-22,-4,-32,-27,-32,-49v0,-27,13,-134,49,-134v22,0,41,59,41,81v0,13,-16,16,-20,6v-3,-20,-9,-59,-22,-59v-20,0,-26,79,-26,92v0,13,0,42,21,42v29,0,51,-27,56,-17v5,10,-20,33,-49,38v-1,7,-5,17,-5,17v19,-7,37,5,36,24","w":113},"\u00c8":{"d":"129,-35v-11,20,-50,39,-77,39v-25,0,-31,-48,-31,-70v0,-28,1,-54,5,-75v-12,1,-29,3,-28,-11v0,-14,17,-10,30,-11v0,0,5,-9,11,-9v5,0,11,9,11,9v23,1,100,-6,73,15v-25,5,-49,4,-75,5v-5,21,-5,55,-5,55v15,0,40,-5,56,-11v7,-3,16,-3,17,3v3,21,-73,30,-73,30v0,0,0,44,17,44v22,0,40,-11,53,-19v9,-5,16,1,16,6xm91,-186v0,3,-1,4,-4,4v-5,0,-46,-24,-48,-31v-3,-9,5,-13,12,-12v7,1,40,29,40,39","w":137},"\u00c9":{"d":"129,-35v-11,20,-50,39,-77,39v-25,0,-31,-48,-31,-70v0,-28,1,-54,5,-75v-12,1,-29,3,-28,-11v0,-14,17,-10,30,-11v0,0,5,-9,11,-9v5,0,11,9,11,9v23,1,100,-6,73,15v-25,5,-49,4,-75,5v-5,21,-5,55,-5,55v15,0,40,-5,56,-11v7,-3,16,-3,17,3v3,21,-73,30,-73,30v0,0,0,44,17,44v22,0,40,-11,53,-19v9,-5,16,1,16,6xm57,-185v0,3,1,4,4,4v5,0,46,-25,48,-32v3,-9,-5,-13,-12,-12v-7,1,-40,30,-40,40","w":137},"\u00ca":{"d":"129,-35v-11,20,-50,39,-77,39v-25,0,-31,-48,-31,-70v0,-28,1,-54,5,-75v-12,1,-29,3,-28,-11v0,-14,17,-10,30,-11v0,0,5,-9,11,-9v5,0,11,9,11,9v23,1,100,-6,73,15v-25,5,-49,4,-75,5v-5,21,-5,55,-5,55v15,0,40,-5,56,-11v7,-3,16,-3,17,3v3,21,-73,30,-73,30v0,0,0,44,17,44v22,0,40,-11,53,-19v9,-5,16,1,16,6xm109,-191v0,-5,-23,-48,-33,-48v-8,0,-36,37,-36,49v0,5,3,7,7,6v5,-2,27,-29,27,-29v2,-1,30,46,35,22","w":137},"\u00cb":{"d":"129,-35v-11,20,-50,39,-77,39v-25,0,-31,-48,-31,-70v0,-28,1,-54,5,-75v-12,1,-29,3,-28,-11v0,-14,17,-10,30,-11v0,0,5,-9,11,-9v5,0,11,9,11,9v23,1,100,-6,73,15v-25,5,-49,4,-75,5v-5,21,-5,55,-5,55v15,0,40,-5,56,-11v7,-3,16,-3,17,3v3,21,-73,30,-73,30v0,0,0,44,17,44v22,0,40,-11,53,-19v9,-5,16,1,16,6xm98,-218v19,0,23,36,1,35v-10,0,-17,-8,-17,-18v0,-10,6,-17,16,-17xm65,-201v0,8,-6,18,-15,18v-19,-1,-23,-34,0,-34v9,0,15,7,15,16","w":137},"\u00cc":{"d":"44,-16v0,9,-7,14,-12,13v-7,0,-11,-8,-11,-14v-2,-41,-5,-101,-6,-144v-1,-14,21,-16,22,-5v4,40,6,114,7,150xm49,-190v0,3,-1,4,-4,4v-5,0,-47,-25,-49,-32v-3,-9,5,-13,12,-12v7,1,41,30,41,40","w":59},"\u00cd":{"d":"44,-16v0,9,-7,14,-12,13v-7,0,-11,-8,-11,-14v-2,-41,-5,-101,-6,-144v-1,-14,21,-16,22,-5v4,40,6,114,7,150xm9,-195v0,3,1,4,4,4v5,0,47,-24,49,-31v3,-9,-6,-13,-13,-12v-7,1,-40,29,-40,39","w":59},"\u00ce":{"d":"44,-16v0,9,-7,14,-12,13v-7,0,-11,-8,-11,-14v-2,-41,-5,-101,-6,-144v-1,-14,21,-16,22,-5v4,40,6,114,7,150xm61,-190v0,-5,-23,-48,-33,-48v-8,0,-36,37,-36,49v0,5,3,7,7,6v5,-2,27,-29,27,-29v0,0,25,29,30,29v4,0,5,-2,5,-7","w":59},"\u00cf":{"d":"44,-16v0,9,-7,14,-12,13v-7,0,-11,-8,-11,-14v-2,-41,-5,-101,-6,-144v-1,-14,21,-16,22,-5v4,40,6,114,7,150xm69,-203v0,10,-5,15,-15,15v-10,0,-17,-7,-17,-17v0,-10,6,-17,16,-17v10,0,16,10,16,19xm20,-206v0,8,-6,19,-15,19v-19,-1,-23,-34,0,-34v9,0,15,6,15,15","w":59},"\u00d0":{"d":"167,-82v-3,56,-86,67,-128,82v-10,-18,-8,-50,-12,-75v-30,9,-39,-16,-15,-21v1,0,8,1,14,1v-1,-19,0,-36,1,-55v-11,0,-25,-1,-23,-17v2,-8,9,-9,17,-7v41,10,148,38,146,92xm82,-89v0,18,-17,11,-35,13v1,15,3,31,6,45v24,-7,87,-15,89,-53v1,-37,-71,-56,-94,-61v-4,16,-3,31,-3,50v12,2,34,-6,37,6","w":174,"k":{".":11,",":11}},"\u00d1":{"d":"107,-175v26,2,15,61,19,79v-1,22,-5,93,-29,93v-19,0,-56,-90,-61,-107v-9,46,20,105,-7,113v-4,0,-11,-3,-11,-8v4,-26,-23,-172,18,-149v16,27,53,121,58,121v13,-8,11,-99,4,-126v-2,-9,3,-16,9,-16xm89,-201v-14,-3,-14,-23,-35,-22v-19,0,-29,18,-29,30v0,7,3,9,9,9v10,0,7,-23,18,-21v15,2,15,23,35,22v17,0,26,-10,26,-28v0,-8,-6,-9,-10,-9v-7,2,-4,21,-14,19","w":141,"k":{".":11,",":11}},"\u00d2":{"d":"107,-55v0,28,-29,51,-57,51v-37,-1,-42,-43,-42,-72v1,-32,5,-72,23,-99v8,-11,23,-6,21,7v-4,7,3,5,6,10v22,28,50,66,49,103xm85,-62v0,-30,-28,-60,-41,-86v-13,31,-14,50,-14,81v0,17,7,40,26,40v19,0,29,-18,29,-35xm62,-194v0,3,-1,4,-4,4v-5,0,-47,-25,-49,-32v-3,-9,6,-13,13,-12v7,1,40,30,40,40","w":114},"\u00d3":{"d":"107,-55v0,28,-29,51,-57,51v-37,-1,-42,-43,-42,-72v1,-32,5,-72,23,-99v8,-11,23,-6,21,7v-4,7,3,5,6,10v22,28,50,66,49,103xm85,-62v0,-30,-28,-60,-41,-86v-13,31,-14,50,-14,81v0,17,7,40,26,40v19,0,29,-18,29,-35xm22,-198v0,3,1,4,4,4v5,0,47,-25,49,-32v3,-9,-5,-13,-12,-12v-7,1,-41,30,-41,40","w":114},"\u00d4":{"d":"107,-55v0,28,-29,51,-57,51v-37,-1,-42,-43,-42,-72v1,-32,5,-72,23,-99v8,-11,23,-6,21,7v-4,7,3,5,6,10v22,28,50,66,49,103xm85,-62v0,-30,-28,-60,-41,-86v-13,31,-14,50,-14,81v0,17,7,40,26,40v19,0,29,-18,29,-35xm79,-188v0,-5,-23,-48,-33,-48v-8,0,-36,36,-36,48v0,5,3,8,7,7v5,-2,27,-29,27,-29v0,0,25,29,30,29v4,0,5,-2,5,-7","w":114},"\u00d5":{"d":"107,-55v0,28,-29,51,-57,51v-37,-1,-42,-43,-42,-72v1,-32,5,-72,23,-99v8,-11,23,-6,21,7v-4,7,3,5,6,10v22,28,50,66,49,103xm85,-62v0,-30,-28,-60,-41,-86v-13,31,-14,50,-14,81v0,17,7,40,26,40v19,0,29,-18,29,-35xm65,-206v-14,-3,-14,-23,-35,-22v-19,0,-29,18,-29,30v0,7,3,9,9,9v10,0,7,-23,18,-21v15,2,15,23,35,22v17,0,26,-10,26,-28v0,-8,-6,-9,-10,-9v-7,2,-4,21,-14,19","w":114},"\u00d6":{"d":"107,-55v0,28,-29,51,-57,51v-37,-1,-42,-43,-42,-72v1,-32,5,-72,23,-99v8,-11,23,-6,21,7v-4,7,3,5,6,10v22,28,50,66,49,103xm85,-62v0,-30,-28,-60,-41,-86v-13,31,-14,50,-14,81v0,17,7,40,26,40v19,0,29,-18,29,-35xm75,-225v19,0,23,36,1,35v-10,0,-17,-8,-17,-18v0,-10,6,-17,16,-17xm42,-208v0,8,-6,18,-15,18v-19,-1,-23,-34,0,-34v9,0,15,7,15,16","w":114},"\u00d7":{"d":"67,-73v9,11,39,31,23,44v-14,0,-22,-16,-33,-26v-7,12,-29,54,-40,26v0,-8,18,-34,23,-42v-11,-14,-26,-24,-26,-38v13,-25,30,11,40,21v8,-17,27,-48,35,-20v0,11,-13,22,-22,35","w":109},"\u00d8":{"d":"71,-141v8,-13,11,-28,22,-34v22,8,-3,37,-8,54v13,20,22,43,22,66v0,34,-43,63,-76,46v-6,7,-7,22,-19,24v-12,-7,3,-25,5,-39v-18,-50,-10,-108,14,-151v7,-12,24,-6,21,7v-2,9,15,15,19,27xm42,-32v42,20,53,-38,32,-66xm44,-148v-14,34,-15,56,-13,90v9,-23,19,-42,29,-63v-6,-9,-12,-18,-16,-27","w":114},"\u00d9":{"d":"36,-157v1,35,-20,133,23,135v45,-8,35,-80,37,-131v0,-10,2,-16,10,-16v23,2,11,51,12,70v4,64,0,100,34,82v11,10,-3,26,-18,26v-22,0,-31,-18,-34,-39v-9,18,-22,32,-41,32v-65,0,-47,-108,-44,-161v4,-14,21,-8,21,2xm82,-186v0,3,-1,4,-4,4v-5,0,-46,-24,-48,-31v-3,-9,5,-13,12,-12v7,1,40,29,40,39","w":148},"\u00da":{"d":"36,-157v1,35,-20,133,23,135v45,-8,35,-80,37,-131v0,-10,2,-16,10,-16v23,2,11,51,12,70v4,64,0,100,34,82v11,10,-3,26,-18,26v-22,0,-31,-18,-34,-39v-9,18,-22,32,-41,32v-65,0,-47,-108,-44,-161v4,-14,21,-8,21,2xm47,-187v0,3,1,4,4,4v5,0,47,-25,49,-32v3,-9,-6,-12,-13,-11v-7,1,-40,29,-40,39","w":148},"\u00db":{"d":"36,-157v1,35,-20,133,23,135v45,-8,35,-80,37,-131v0,-10,2,-16,10,-16v23,2,11,51,12,70v4,64,0,100,34,82v11,10,-3,26,-18,26v-22,0,-31,-18,-34,-39v-9,18,-22,32,-41,32v-65,0,-47,-108,-44,-161v4,-14,21,-8,21,2xm100,-189v0,-5,-23,-48,-33,-48v-8,0,-36,36,-36,48v0,5,3,8,7,7v5,-2,27,-29,27,-29v2,-1,29,43,35,22","w":148},"\u00dc":{"d":"36,-157v1,35,-20,133,23,135v45,-8,35,-80,37,-131v0,-10,2,-16,10,-16v23,2,11,51,12,70v4,64,0,100,34,82v11,10,-3,26,-18,26v-22,0,-31,-18,-34,-39v-9,18,-22,32,-41,32v-65,0,-47,-108,-44,-161v4,-14,21,-8,21,2xm94,-220v19,0,23,36,1,35v-10,0,-17,-7,-17,-17v0,-10,6,-18,16,-18xm61,-203v0,8,-6,18,-15,18v-20,-1,-22,-34,0,-34v9,0,15,7,15,16","w":148},"\u00dd":{"d":"1,-164v25,9,29,44,47,64v8,-35,37,-100,63,-100v6,0,6,8,2,14v-51,71,-52,114,-47,221v0,5,-1,12,-9,12v-8,0,-11,-5,-12,-12v-5,-33,-3,-64,-8,-98v-4,-33,-31,-60,-43,-90v-2,-5,0,-11,7,-11xm22,-187v0,3,1,4,4,4v5,0,47,-25,49,-32v3,-9,-5,-13,-12,-12v-7,1,-41,30,-41,40","w":108,"k":{"\u00fc":14,"\u00fb":14,"\u00fa":14,"\u00f9":14,"\u00f8":14,"\u00f6":14,"\u00f5":14,"\u00f4":14,"\u00f3":14,"\u00f2":14,"\u00ef":11,"\u00ee":11,"\u00ed":11,"\u00ec":11,"\u00eb":14,"\u00ea":14,"\u00e9":14,"\u00e8":14,"\u00e5":14,"\u00e4":14,"\u00e3":14,"\u00e2":14,"\u00e1":14,"\u00e0":14,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00d1":7,"\u00d0":7,"\u00cf":7,"\u00ce":7,"\u00cd":7,"\u00cc":7,"\u00cb":7,"\u00ca":7,"\u00c9":7,"\u00c8":7,"\u00c7":7,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"\u0160":7,"\u201a":11,"z":11,"v":14,"u":14,"s":14,"r":11,"p":11,"o":14,"i":11,"e":14,"d":14,"a":14,"W":11,"U":4,"S":7,"Q":7,"O":7,"N":7,"M":7,"I":7,"G":11,"E":7,"D":7,"C":7,"B":7,"A":14,".":18,"-":18,",":18,"\u0131":11}},"\u00de":{"d":"24,-51r-9,-138v-1,-12,5,-17,11,-17v22,0,15,26,15,51v33,5,99,22,100,52v2,46,-71,61,-93,68v1,18,1,8,4,35v1,10,-2,18,-12,16v-19,-3,-9,-25,-15,-47v-18,-3,-15,-12,-1,-20xm119,-100v1,-15,-51,-28,-77,-32v0,23,3,48,4,75v11,-3,72,-16,73,-43","w":142},"\u00df":{"d":"26,-26v-20,-4,-11,-48,-15,-66v0,-27,10,-68,45,-68v40,-1,34,49,8,58v23,4,42,15,42,42v0,19,-16,57,-39,57v-7,0,-22,-11,-13,-16v18,-5,33,-18,33,-39v0,-36,-47,-10,-49,-39v-1,-18,25,-16,25,-33v0,-5,-6,-7,-10,-7v-44,10,-19,69,-17,104v0,5,-5,7,-10,7","w":117},"\u00e0":{"d":"85,-88v-7,30,10,52,8,76v-18,8,-27,-19,-30,-28v-7,13,-15,36,-33,36v-20,0,-23,-38,-22,-52v1,-15,11,-60,32,-60v17,-4,25,22,41,19v3,2,4,5,4,9xm45,-97v-15,10,-18,30,-20,53v0,9,2,17,8,17v10,1,35,-59,12,-70xm64,-132v0,3,-1,4,-4,4v-5,0,-46,-24,-48,-31v-3,-9,5,-13,12,-12v7,1,40,29,40,39","w":102},"\u00e1":{"d":"85,-88v-7,30,10,52,8,76v-18,8,-27,-19,-30,-28v-7,13,-15,36,-33,36v-20,0,-23,-38,-22,-52v1,-15,11,-60,32,-60v17,-4,25,22,41,19v3,2,4,5,4,9xm45,-97v-15,10,-18,30,-20,53v0,9,2,17,8,17v10,1,35,-59,12,-70xm16,-132v0,3,1,4,4,4v5,0,46,-24,48,-31v3,-9,-5,-13,-12,-12v-7,1,-40,29,-40,39","w":102},"\u00e2":{"d":"85,-88v-7,30,10,52,8,76v-18,8,-27,-19,-30,-28v-7,13,-15,36,-33,36v-20,0,-23,-38,-22,-52v1,-15,11,-60,32,-60v17,-4,25,22,41,19v3,2,4,5,4,9xm45,-97v-15,10,-18,30,-20,53v0,9,2,17,8,17v10,1,35,-59,12,-70xm85,-138v0,-5,-22,-47,-32,-47v-8,0,-36,36,-36,48v0,5,2,8,6,7v5,-2,27,-29,27,-29v2,-1,32,44,35,21","w":102},"\u00e3":{"d":"85,-88v-7,30,10,52,8,76v-18,8,-27,-19,-30,-28v-7,13,-15,36,-33,36v-20,0,-23,-38,-22,-52v1,-15,11,-60,32,-60v17,-4,25,22,41,19v3,2,4,5,4,9xm45,-97v-15,10,-18,30,-20,53v0,9,2,17,8,17v10,1,35,-59,12,-70xm69,-155v-14,-3,-14,-23,-35,-22v-19,0,-29,18,-29,30v0,7,3,9,9,9v10,0,7,-23,18,-21v15,2,16,24,35,23v17,0,26,-11,26,-29v0,-8,-6,-9,-10,-9v-7,2,-4,21,-14,19","w":102},"\u00e4":{"d":"85,-88v-7,30,10,52,8,76v-18,8,-27,-19,-30,-28v-7,13,-15,36,-33,36v-20,0,-23,-38,-22,-52v1,-15,11,-60,32,-60v17,-4,25,22,41,19v3,2,4,5,4,9xm45,-97v-15,10,-18,30,-20,53v0,9,2,17,8,17v10,1,35,-59,12,-70xm92,-150v0,10,-5,15,-15,15v-10,0,-17,-7,-17,-17v0,-10,6,-17,16,-17v10,0,16,10,16,19xm43,-153v0,8,-6,19,-15,19v-19,-1,-23,-34,0,-34v9,0,15,6,15,15","w":102},"\u00e5":{"d":"85,-88v-7,30,10,52,8,76v-18,8,-27,-19,-30,-28v-7,13,-15,36,-33,36v-20,0,-23,-38,-22,-52v1,-15,11,-60,32,-60v17,-4,25,22,41,19v3,2,4,5,4,9xm45,-97v-15,10,-18,30,-20,53v0,9,2,17,8,17v10,1,35,-59,12,-70xm31,-206v23,6,50,28,50,50v0,38,-73,41,-73,-2v0,-24,18,-31,13,-42v0,-4,6,-6,10,-6xm63,-162v0,-8,-11,-21,-19,-21v-16,3,-27,36,-1,38v9,0,20,-7,20,-17","w":102},"\u00e7":{"d":"95,39v0,23,-29,38,-47,38v-7,0,-17,-5,-17,-13v0,-5,3,-5,8,-5v10,0,38,-5,38,-22v-6,-26,-40,22,-40,-8v0,-10,8,-25,9,-38v-66,-9,-39,-104,14,-104v17,0,41,19,26,32v-11,0,-12,-12,-26,-12v-17,0,-33,18,-33,35v1,31,36,39,64,33v4,-1,9,2,8,8v-2,9,-24,9,-35,9v0,6,-6,22,-6,22v20,-7,38,5,37,25","w":102},"\u00e8":{"d":"85,-77v0,30,-29,36,-58,32v0,14,10,24,24,26v10,2,29,0,29,13v0,6,-14,7,-18,7v-30,0,-55,-13,-55,-46v0,-33,22,-73,46,-73v21,0,32,25,32,41xm43,-64v26,4,30,-24,12,-32v-15,0,-23,21,-26,31v5,1,10,1,14,1xm81,-135v0,3,-1,4,-4,4v-5,0,-47,-25,-49,-32v-3,-9,6,-13,13,-12v7,1,40,30,40,40","w":93},"\u00e9":{"d":"85,-77v0,30,-29,36,-58,32v0,14,10,24,24,26v10,2,29,0,29,13v0,6,-14,7,-18,7v-30,0,-55,-13,-55,-46v0,-33,22,-73,46,-73v21,0,32,25,32,41xm43,-64v26,4,30,-24,12,-32v-15,0,-23,21,-26,31v5,1,10,1,14,1xm29,-135v0,3,1,4,4,4v5,0,46,-25,48,-32v3,-9,-5,-13,-12,-12v-7,1,-40,30,-40,40","w":93},"\u00ea":{"d":"85,-77v0,30,-29,36,-58,32v0,14,10,24,24,26v10,2,29,0,29,13v0,6,-14,7,-18,7v-30,0,-55,-13,-55,-46v0,-33,22,-73,46,-73v21,0,32,25,32,41xm43,-64v26,4,30,-24,12,-32v-15,0,-23,21,-26,31v5,1,10,1,14,1xm87,-138v0,-5,-22,-47,-32,-47v-8,0,-36,36,-36,48v0,5,3,8,7,7v5,-2,27,-29,27,-29v0,0,24,28,29,28v4,0,5,-2,5,-7","w":96},"\u00eb":{"d":"85,-77v0,30,-29,36,-58,32v0,14,10,24,24,26v10,2,29,0,29,13v0,6,-14,7,-18,7v-30,0,-55,-13,-55,-46v0,-33,22,-73,46,-73v21,0,32,25,32,41xm43,-64v26,4,30,-24,12,-32v-15,0,-23,21,-26,31v5,1,10,1,14,1xm94,-150v0,10,-5,15,-15,15v-10,0,-17,-7,-17,-17v0,-10,6,-17,16,-17v10,0,16,10,16,19xm45,-153v0,8,-6,19,-15,19v-19,-1,-23,-34,0,-34v9,0,15,6,15,15","w":106},"\u00ec":{"d":"46,-13v4,9,-11,15,-16,7v-15,-27,-14,-59,-9,-93v3,-7,18,-5,17,4v-2,30,0,55,8,82xm53,-135v0,3,-1,4,-4,4v-5,0,-46,-25,-48,-32v-3,-9,5,-13,12,-12v7,1,40,30,40,40","w":56},"\u00ed":{"d":"41,-13v2,5,-1,9,-5,10v-22,1,-22,-40,-22,-55v0,-14,0,-27,3,-41v1,-7,16,-5,16,4v-1,31,0,55,8,82xm4,-135v0,3,1,4,4,4v5,0,46,-25,48,-32v3,-9,-5,-13,-12,-12v-7,1,-40,30,-40,40","w":56},"\u00ee":{"d":"47,-13v2,5,-1,9,-5,10v-22,1,-23,-40,-23,-55v0,-14,1,-27,4,-41v1,-7,16,-5,16,4v-1,31,0,55,8,82xm65,-138v0,-5,-23,-47,-33,-47v-8,0,-36,36,-36,48v0,5,3,8,7,7v5,-2,27,-29,27,-29v2,-1,32,44,35,21","w":65},"\u00ef":{"d":"50,-13v2,5,-1,9,-5,10v-22,1,-23,-40,-23,-55v0,-14,1,-27,4,-41v1,-7,17,-4,16,4v-2,30,0,55,8,82xm72,-150v0,10,-5,15,-15,15v-10,0,-17,-7,-17,-17v0,-10,6,-17,16,-17v10,0,16,10,16,19xm23,-153v0,8,-6,19,-15,19v-19,-1,-23,-34,0,-34v9,0,15,6,15,15","w":64},"\u00f0":{"d":"66,-144v-13,7,-26,13,-21,26v12,11,17,0,32,-8v8,17,12,34,12,50v-29,-17,-82,-1,-82,36v0,27,17,47,42,47v69,1,78,-94,47,-146v11,-8,29,-11,21,-27v-11,-6,-16,4,-32,11v-8,-10,-34,-37,-43,-13v3,12,19,15,24,24xm26,-36v0,-36,54,-26,61,-17v-3,27,-23,40,-36,40v-14,0,-25,-7,-25,-23","w":126},"\u00f1":{"d":"19,-115v18,4,13,41,16,59v7,-15,25,-73,47,-43v8,27,6,56,25,70v12,8,15,20,0,22v-33,3,-38,-75,-41,-77v-13,0,-16,69,-41,76v-23,-13,-5,-67,-14,-99v0,-4,4,-8,8,-8xm77,-155v-14,-3,-14,-23,-35,-22v-19,0,-29,18,-29,30v0,7,3,9,9,9v10,0,7,-23,18,-21v15,2,16,24,36,23v17,0,25,-11,25,-29v0,-8,-6,-9,-10,-9v-7,2,-4,21,-14,19","w":117},"\u00f2":{"d":"44,-114v54,0,51,108,-7,108v-32,0,-29,-29,-29,-53v0,-19,5,-55,36,-55xm37,-28v37,0,38,-68,5,-68v-13,0,-17,23,-17,45v0,9,0,23,12,23xm67,-135v0,3,-1,4,-4,4v-5,0,-47,-25,-49,-32v-3,-9,6,-13,13,-12v7,1,40,30,40,40","w":90},"\u00f3":{"d":"44,-114v54,0,51,108,-7,108v-32,0,-29,-29,-29,-53v0,-19,5,-55,36,-55xm37,-28v37,0,38,-68,5,-68v-13,0,-17,23,-17,45v0,9,0,23,12,23xm22,-135v0,3,1,4,4,4v5,0,46,-25,48,-32v3,-9,-5,-13,-12,-12v-7,1,-40,30,-40,40","w":90},"\u00f4":{"d":"44,-114v54,0,51,108,-7,108v-32,0,-29,-29,-29,-53v0,-19,5,-55,36,-55xm37,-28v37,0,38,-68,5,-68v-13,0,-17,23,-17,45v0,9,0,23,12,23xm77,-138v0,-5,-23,-47,-33,-47v-8,0,-36,36,-36,48v0,5,3,8,7,7v5,-2,27,-29,27,-29v2,-1,32,44,35,21","w":90},"\u00f5":{"d":"44,-114v54,0,51,108,-7,108v-32,0,-29,-29,-29,-53v0,-19,5,-55,36,-55xm37,-28v37,0,38,-68,5,-68v-13,0,-17,23,-17,45v0,9,0,23,12,23xm63,-155v-14,-3,-14,-23,-35,-22v-19,0,-29,18,-29,30v0,7,3,9,9,9v10,-2,8,-23,19,-21v15,2,16,24,35,23v17,0,25,-11,25,-29v0,-8,-5,-9,-9,-9v-7,3,-4,21,-15,19","w":90},"\u00f6":{"d":"44,-114v54,0,51,108,-7,108v-32,0,-29,-29,-29,-53v0,-19,5,-55,36,-55xm37,-28v37,0,38,-68,5,-68v-13,0,-17,23,-17,45v0,9,0,23,12,23xm69,-169v19,-1,25,35,2,34v-10,0,-17,-7,-17,-17v0,-10,5,-17,15,-17xm37,-153v0,8,-6,19,-15,19v-19,-1,-23,-34,0,-34v9,0,15,6,15,15","w":90},"\u00f7":{"d":"14,-76v5,-18,57,-16,69,-18v12,-2,15,15,4,17v-26,5,-63,22,-73,1xm46,-146v19,0,26,35,4,36v-19,1,-24,-34,-4,-36xm59,-21v18,0,25,-35,4,-36v-19,-1,-24,34,-4,36","w":108},"\u00f8":{"d":"60,-108v3,-9,16,-23,19,-6v-1,4,-4,11,-8,18v29,39,2,102,-49,87v-5,5,-5,15,-13,16v-11,-5,0,-17,3,-25v-14,-37,-2,-114,48,-90xm33,-28v28,1,40,-28,29,-51xm25,-45r26,-48v-21,-12,-26,16,-26,42r0,6","w":90},"\u00f9":{"d":"118,-18v9,-1,14,-9,17,0v0,12,-13,16,-24,16v-23,0,-29,-28,-29,-43v-6,21,-21,50,-45,50v-26,0,-26,-37,-26,-56v0,-16,-4,-52,14,-55v23,9,-9,74,16,89v29,0,31,-92,46,-92v30,0,-5,88,31,91xm75,-135v0,3,-1,4,-4,4v-5,0,-47,-25,-49,-32v-3,-9,6,-13,13,-12v7,1,40,30,40,40","w":129},"\u00fa":{"d":"118,-18v9,-1,14,-9,17,0v0,12,-13,16,-24,16v-23,0,-29,-28,-29,-43v-6,21,-21,50,-45,50v-26,0,-26,-37,-26,-56v0,-16,-4,-52,14,-55v23,9,-9,74,16,89v29,0,31,-92,46,-92v30,0,-5,88,31,91xm32,-135v0,3,1,4,4,4v5,0,46,-25,48,-32v3,-9,-5,-13,-12,-12v-7,1,-40,30,-40,40","w":129},"\u00fb":{"d":"118,-18v9,-1,14,-9,17,0v0,12,-13,16,-24,16v-23,0,-29,-28,-29,-43v-6,21,-21,50,-45,50v-26,0,-26,-37,-26,-56v0,-16,-4,-52,14,-55v23,9,-9,74,16,89v29,0,31,-92,46,-92v30,0,-5,88,31,91xm91,-138v0,-5,-23,-47,-33,-47v-8,0,-36,36,-36,48v0,5,3,8,7,7v5,-2,27,-29,27,-29v2,-1,31,45,35,21","w":129},"\u00fc":{"d":"118,-18v9,-1,14,-9,17,0v0,12,-13,16,-24,16v-23,0,-29,-28,-29,-43v-6,21,-21,50,-45,50v-26,0,-26,-37,-26,-56v0,-16,-4,-52,14,-55v23,9,-9,74,16,89v29,0,31,-92,46,-92v30,0,-5,88,31,91xm96,-150v0,10,-5,15,-15,15v-10,0,-17,-7,-17,-17v0,-10,6,-17,16,-17v10,0,16,10,16,19xm47,-153v0,8,-6,19,-15,19v-19,-1,-23,-34,0,-34v9,0,15,6,15,15","w":129},"\u00fd":{"d":"14,53v9,-23,27,-35,35,-62v-22,-22,-40,-75,-45,-96v-1,-6,5,-9,9,-9v8,0,11,6,16,22v4,12,18,46,28,61v12,-25,17,-54,26,-76v3,-8,19,-3,17,7v-13,72,-37,117,-67,158v-6,8,-23,4,-19,-5xm35,-135v0,3,1,4,4,4v5,0,47,-25,49,-32v3,-9,-5,-13,-12,-12v-7,1,-41,30,-41,40","w":107,"k":{".":7,",":7}},"\u00fe":{"d":"39,-22v-4,33,10,80,-11,90v-16,0,-9,-27,-10,-45v-2,-26,-10,-161,-13,-187v3,-17,19,-13,19,3v0,3,8,89,7,92v10,-34,35,-49,50,-49v33,0,39,37,37,53v-4,39,-43,58,-79,43xm77,-97v-14,1,-27,20,-37,56v24,10,55,10,57,-27v0,-9,-1,-30,-20,-29","w":126},"\u00ff":{"d":"14,53v9,-23,27,-35,35,-62v-22,-22,-40,-75,-45,-96v-1,-6,5,-9,9,-9v8,0,11,6,16,22v4,12,18,46,28,61v12,-25,17,-54,26,-76v3,-8,19,-3,17,7v-13,72,-37,117,-67,158v-6,8,-23,4,-19,-5xm97,-150v0,10,-5,15,-15,15v-10,0,-17,-7,-17,-17v0,-10,6,-17,16,-17v10,0,16,10,16,19xm48,-153v0,8,-6,19,-15,19v-19,-1,-23,-34,0,-34v9,0,15,6,15,15","w":107,"k":{".":7,",":7}},"\ue001":{"d":"36,-49v-3,1,-8,63,-27,62v-4,0,-11,-6,-8,-13v0,0,24,-89,40,-170v6,-11,20,-10,25,2v19,58,21,104,48,159v3,6,-4,12,-10,12v-14,0,-28,-51,-30,-56v0,0,-23,5,-38,4xm40,-69v14,2,30,-4,30,-4v-8,-27,-13,-66,-16,-66v-3,0,-8,38,-14,70","w":115,"k":{"\ue025":11,"\ue023":11,"\ue022":7,"\ue020":11}},"\ue002":{"d":"166,-127v0,31,-53,41,-79,50v19,4,71,11,71,38v0,37,-62,39,-108,39v0,0,-3,13,-13,13v-27,-6,-10,-52,-10,-76v0,-25,-7,-56,-17,-79v-8,-17,-31,-28,-11,-40v9,0,30,8,30,8v0,0,3,-7,10,-7v6,0,11,12,11,12v37,8,104,-1,116,42xm141,-127v0,-16,-70,-20,-89,-21r0,59v31,-6,89,-17,89,-38xm30,-122v-3,-14,7,-35,-11,-31v6,9,8,21,11,31xm135,-41v0,-14,-60,-23,-83,-25v0,16,1,33,1,47v30,0,82,-4,82,-22","w":172},"\ue003":{"d":"120,-42v0,17,-31,42,-57,42v-35,0,-56,-28,-56,-63v0,-26,14,-114,51,-114v23,0,37,22,42,43v1,6,3,16,-6,18v-22,3,-9,-37,-35,-37v-24,0,-30,71,-30,87v0,24,13,45,34,45v24,0,41,-16,52,-24v2,-1,5,0,5,3","w":121},"\ue004":{"d":"145,-64v4,56,-76,65,-133,57v-13,-2,-12,-26,4,-22r12,0v-8,-36,-10,-80,-9,-121v0,0,-31,-23,-29,-38v10,-23,30,7,39,16v37,37,112,52,116,108xm124,-63v4,-34,-62,-59,-82,-71v-3,39,0,73,12,106v33,1,66,-4,70,-35","w":153},"\u2206":{},"\ue005":{"d":"133,-156v-13,21,-61,6,-93,11r0,45v24,-3,43,-3,65,-8v6,-1,12,1,12,6v-2,22,-70,19,-77,27v0,0,-2,50,26,50v26,0,43,-26,69,-26v18,21,-27,30,-40,38v-11,7,-23,11,-32,11v-59,0,-41,-85,-44,-144v0,0,-10,-4,-10,-14v-1,-12,24,-12,32,-10r86,8v3,1,6,3,6,6","w":147},"\ue006":{"d":"103,-82v4,18,-59,22,-62,24v-3,8,13,67,-10,64v-6,0,-9,-5,-9,-11v-5,-50,-11,-110,-11,-160v6,-10,24,-2,24,11v28,0,52,-4,75,-7v9,-1,22,-1,22,8v-10,18,-74,20,-95,23r3,45v5,2,58,-8,63,3","w":120,"k":{".":29,",":29}},"\ue007":{"d":"104,-190v29,0,53,20,56,46v1,13,-18,19,-23,7v-5,-15,-18,-30,-35,-30v-46,0,-68,80,-68,113v0,22,5,35,29,35v21,0,41,-19,46,-41v-7,2,-18,8,-26,8v-9,0,-13,-8,-9,-15v7,-14,44,-21,44,-21v0,0,4,-9,10,-12v4,-2,13,6,13,6v0,0,26,-8,40,-8v5,0,8,1,9,4v3,10,-42,26,-42,26v7,27,16,57,20,81v2,14,-21,15,-23,3v-4,-17,-7,-34,-15,-64v-7,25,-33,57,-68,57v-26,0,-51,-16,-51,-51v0,-51,26,-144,93,-144","w":187},"\ue008":{"d":"90,-88r-6,-71v0,-7,5,-13,13,-13v7,0,11,10,11,16r5,126v-2,20,7,36,-10,37v-21,1,-10,-73,-13,-74r-49,0v-2,2,15,67,-6,66v-7,0,-15,-5,-15,-12v-2,-47,-12,-121,-2,-165v10,-9,20,3,20,16v0,19,1,74,1,74v3,2,47,2,51,0","w":128},"\ue009":{"d":"50,-145v-16,-1,-46,10,-46,-9v0,-20,28,-10,48,-12v3,-12,17,-13,20,0v33,0,81,0,57,15v-14,3,-34,4,-54,5r0,127v17,-1,31,-2,39,-3v9,-1,22,-2,21,7v-9,21,-95,17,-117,20v-8,-1,-15,-3,-13,-13v4,-17,30,-8,46,-11v3,-43,5,-83,-1,-126","w":139},"\ue010":{"d":"4,-11v-9,9,1,36,20,31v26,0,52,-29,54,-81v1,-45,-7,-73,-13,-96v26,-3,43,2,37,-14v-30,-6,-69,-3,-100,6v-7,25,21,12,39,11v19,34,23,185,-37,143","w":112},"\ue011":{"d":"125,-10v-33,-6,-39,-32,-86,-47v-4,19,15,46,-5,56v-8,2,-12,-3,-12,-6v-6,-41,-8,-131,-8,-168v0,-6,4,-10,13,-10v23,8,3,54,11,87v35,-21,54,-40,67,-52v9,-9,24,3,15,14v-16,21,-42,39,-74,57v46,19,82,51,86,58v3,6,-2,11,-7,11","w":135},"\ue012":{"d":"39,-26v28,-3,50,-17,68,-7v-6,22,-57,29,-76,35v-22,3,-16,-29,-16,-47v0,-40,4,-81,0,-119v0,-5,5,-9,11,-9v18,1,15,36,15,52","w":103,"k":{"\ue020":14}},"\ue013":{"d":"39,-77v14,-35,20,-93,49,-93v8,0,10,11,11,20v4,27,11,59,13,87v17,-33,31,-90,35,-98v2,-4,3,-6,10,-6v23,0,27,101,27,119v0,17,0,38,-1,53v-4,8,-18,6,-20,-3v0,-46,-4,-95,-9,-132v-8,41,-35,100,-41,113v-4,10,-22,14,-22,-1v-2,-42,-5,-73,-11,-118v-21,49,-27,82,-32,139v-1,11,-24,9,-24,-4v0,-58,-8,-89,-10,-156v-4,-14,18,-24,19,-9v3,32,1,52,6,89","w":196},"\ue014":{"d":"102,-199v22,12,19,86,19,125v0,38,-3,70,-14,71v-38,-16,-56,-64,-70,-86v0,22,1,37,1,52v0,17,-1,41,-18,45v-5,1,-10,-5,-9,-11v5,-48,2,-94,3,-144v1,-8,12,-12,17,-2v27,53,41,80,65,110v7,-45,0,-108,-5,-144v-1,-7,3,-16,11,-16","w":135},"\ue015":{"d":"120,-68v0,36,-33,65,-69,65v-36,0,-44,-34,-44,-64v0,-13,7,-104,26,-104v50,0,87,55,87,103xm97,-69v0,-29,-22,-79,-49,-79v-18,12,-32,124,9,124v22,0,40,-23,40,-45","w":127},"\u2126":{},"\ue016":{"d":"36,-74v3,-41,-23,-71,-32,-111v1,-4,4,-3,6,-2v53,30,138,71,138,99v0,31,-62,33,-85,33r-1,76v0,6,-3,13,-11,11v-4,-1,-8,-5,-9,-9v-5,-28,-1,-51,-5,-78v-5,-2,-41,1,-37,-14v0,-8,30,-6,36,-5xm125,-93v0,-13,-44,-34,-67,-47v0,22,3,43,3,65v19,1,64,-2,64,-18xm53,-144v-6,-4,-14,-7,-20,-11v0,12,7,22,8,33v-1,-12,1,-22,12,-22","w":155,"k":{".":36,",":36}},"\ue017":{"d":"121,-21v-34,46,-112,11,-112,-47v0,-47,40,-108,82,-108v57,0,69,84,44,135v5,8,27,29,33,35v6,6,3,18,-4,17v-8,-1,-34,-24,-43,-32xm83,-106v22,0,20,37,36,47v13,-29,5,-95,-28,-95v-55,0,-91,130,-17,133v11,0,21,-6,32,-17v-14,-19,-33,-32,-33,-53v0,-5,3,-15,10,-15","w":164},"\ue018":{"d":"12,-143v-1,-16,-3,-31,10,-32v6,0,12,9,12,9v0,0,79,19,79,50v0,24,-42,32,-67,36v26,24,58,44,94,64v4,3,2,11,-4,11v-43,0,-80,-37,-101,-54v-3,20,10,54,-9,57v-4,0,-7,-2,-8,-6v-7,-36,-6,-91,-6,-135xm33,-96v0,0,52,-9,52,-20v0,-14,-51,-28,-51,-28","w":131},"\ue019":{"d":"27,-33v11,7,39,24,39,-7v0,-26,-59,-56,-59,-92v0,-26,22,-39,47,-39v18,0,61,15,36,27v-22,-1,-55,-13,-60,13v0,24,58,52,58,98v1,34,-62,45,-68,11v0,-4,4,-11,7,-11","w":105},"\ue020":{"d":"130,-155v-6,16,-57,9,-72,14v3,35,11,70,11,107v3,13,-9,39,-21,23r-13,-130v-18,-1,-43,8,-46,-11v2,-21,25,-9,44,-12v0,0,5,-10,10,-10v8,0,11,11,11,11v11,3,70,-5,76,8","w":118,"k":{"\ue053":22,"\ue052":22,"\ue051":22,"\ue050":18,"\ue049":18,"\ue048":22,"\ue046":22,"\ue045":22,"\ue043":22,"\ue042":22,"\ue037":18,"\ue036":14,"\ue031":18,"\ue029":22,"\ue027":22,"\ue001":14,".":29,",":29}},"\ue021":{"d":"120,-88v0,61,-30,87,-48,87v-54,0,-58,-87,-58,-129v0,-13,1,-34,10,-34v20,0,12,21,12,45v0,40,4,93,36,93v40,-17,21,-96,20,-143v0,-5,5,-9,9,-10v9,-3,12,1,13,11v2,27,6,54,6,80","w":134},"\ue022":{"d":"58,-46v8,-16,21,-119,55,-134v20,3,7,17,1,22v-17,33,-36,124,-42,143v-1,15,-24,14,-27,0v-16,-64,-39,-120,-50,-147v-2,-4,5,-8,10,-8v4,0,9,1,11,5v15,26,31,84,42,119","w":120,"k":{"\ue048":7,"\ue046":11,"\ue045":7,"\ue044":14,"\ue043":7,"\ue042":11,"\ue041":11,"\ue040":11,"\ue037":7,"\ue036":7,"\ue033":14,"\ue031":11,"\ue030":11,"\ue029":14,"\ue027":14,"\ue001":7,".":29,",":29}},"\ue023":{"d":"54,-3v-13,0,-19,-18,-21,-27v-10,-41,-21,-93,-25,-131v0,-5,4,-9,10,-9v12,0,11,7,14,21v5,25,20,107,24,107v5,0,26,-92,29,-107v-2,-22,30,-24,31,-4v8,27,23,84,32,112v9,-18,13,-92,13,-111v0,-10,3,-17,13,-17v8,0,10,8,10,14v0,35,-8,102,-22,142v-5,15,-16,15,-24,5v-18,-37,-32,-112,-36,-112v-4,0,-14,63,-29,98v-4,9,-7,19,-19,19","w":195},"\ue024":{"d":"74,-83v13,25,37,55,46,75v0,4,-2,7,-9,7v-26,0,-36,-40,-49,-60v-9,17,-22,32,-26,51v0,9,-2,19,-12,19v-10,0,-13,-6,-13,-14v0,-20,24,-52,37,-75v-6,-23,-52,-72,-31,-92v6,-3,11,1,14,6v12,22,19,42,31,63v8,-12,38,-64,53,-64v5,0,11,2,11,7v0,5,-43,61,-52,77","w":137},"\ue025":{"d":"2,-166v26,9,30,54,49,74v8,-35,33,-79,54,-79v6,0,6,8,2,14v-42,64,-43,92,-43,165v0,5,-1,11,-9,11v-25,0,-10,-51,-14,-73v-6,-33,-35,-71,-47,-101v-2,-5,1,-11,8,-11","w":109,"k":{"\ue053":7,"\ue052":7,"\ue051":11,"\ue050":7,"\ue049":7,"\ue048":11,"\ue046":14,"\ue045":14,"\ue044":18,"\ue043":18,"\ue042":18,"\ue041":14,"\ue040":14,"\ue037":7,"\ue036":7,"\ue033":18,"\ue031":14,"\ue029":18,"\ue027":18,"\ue001":9,".":29,",":29}},"\ue026":{"d":"124,-32v11,-1,22,3,15,11v-24,16,-78,16,-118,16v-6,0,-11,-7,-7,-16v19,-43,76,-81,86,-127v-3,2,-95,31,-96,-8v4,-23,26,-2,42,-2v22,0,48,-11,67,-13v8,-1,11,3,11,12v-1,47,-55,89,-80,129v24,5,60,-2,80,-2","w":143},"\ue027":{"d":"72,-30v-17,23,-59,34,-64,-9v-4,-32,33,-85,72,-62v0,0,16,-8,19,-3v9,15,-28,82,13,77v5,-1,9,-3,10,1v-4,32,-41,23,-50,-4xm41,-34v13,2,30,-16,32,-48v0,0,-8,-6,-18,-6v-26,1,-40,51,-14,54","w":122},"\uf8ff":{},"\u2248":{},"\ue028":{"d":"104,-54v0,31,-44,44,-70,44v0,0,-4,10,-13,10v-15,0,-7,-16,-7,-33v0,-52,-1,-106,-6,-156v-2,-11,19,-14,21,-4v3,33,5,67,5,100v21,-31,70,6,70,39xm85,-55v0,-15,-17,-33,-35,-30v-12,2,-15,24,-15,31v0,10,-2,25,11,25v15,0,39,-8,39,-26","w":114},"\ue029":{"d":"109,-28v0,18,-33,21,-54,21v-28,0,-48,-18,-48,-41v0,-33,36,-60,76,-60v9,0,18,3,18,13v-1,13,-16,11,-27,9v-24,0,-44,14,-44,35v0,12,8,26,32,26v19,0,32,-9,41,-9v4,0,6,2,6,6","w":114},"\ue030":{"d":"108,-180v1,58,-10,129,13,169v0,5,-3,11,-9,11v-17,0,-19,-17,-23,-30v-19,32,-80,33,-82,-13v-2,-37,54,-88,78,-43v3,-25,-2,-55,-2,-80v-6,-18,20,-35,25,-14xm83,-70v-16,9,-16,-14,-24,-16v-20,0,-29,26,-29,42v0,11,3,18,15,18v22,0,36,-25,38,-44","w":127},"\ue031":{"d":"90,-86v2,32,-36,37,-59,42v0,43,67,15,76,11v3,0,4,4,4,6v0,20,-43,27,-57,27v-23,5,-44,-22,-44,-43v0,0,-12,-6,-12,-11v0,-6,13,-10,13,-10v0,0,20,-59,51,-59v18,0,28,19,28,37xm33,-63v24,2,53,-28,26,-40v-13,0,-26,40,-26,40","w":108},"\ue062":{"d":"95,-31v-5,22,-57,11,-53,-10v0,-9,8,-25,18,-34v17,12,34,29,35,44xm57,-99v-32,-11,-41,-61,6,-67v12,-2,31,1,31,9v0,14,-20,43,-37,58xm78,1v65,-8,34,-66,-4,-90v0,0,42,-39,42,-71v0,-19,-34,-27,-52,-25v-30,3,-57,20,-57,55v0,23,19,34,36,44v-31,30,-26,95,35,87","w":123},"\ue064":{"d":"35,-181v21,2,7,40,11,62v-2,16,1,60,-14,66v-9,0,-6,-17,-7,-24v0,-27,1,-65,1,-91v0,-7,0,-13,9,-13xm32,-24v16,-2,22,24,4,24v-13,1,-17,-22,-4,-24","w":69},"\ue032":{"d":"-2,-110v0,-18,27,-4,39,-7v4,-37,4,-99,40,-113v31,0,35,60,39,75v0,7,-5,11,-11,11v-10,0,-11,-4,-11,-13v0,-21,-7,-45,-18,-45v-14,0,-19,84,-19,84v10,2,28,-5,30,5v1,6,-30,14,-32,14v-3,22,13,82,14,90v0,8,-10,16,-16,10v-14,-27,-19,-62,-18,-99v-16,0,-37,6,-37,-12","w":91},"\ue059":{"d":"11,-78v10,-26,8,-105,62,-93v21,4,46,-3,44,13v-6,14,-38,0,-62,6v-7,12,-13,28,-21,63v22,-13,81,-7,81,36v0,34,-40,47,-66,47v-12,0,-36,-6,-36,-21v5,-12,23,8,37,3v40,6,58,-52,15,-52v-29,0,-46,26,-54,-2","w":124},"\ue058":{"d":"87,-82v1,26,-14,70,11,79v18,-1,9,-25,9,-40v0,-36,9,-83,9,-115v0,-8,-8,-13,-13,-13v-14,0,-12,17,-12,26v0,5,1,24,-1,41v0,0,-16,4,-30,4v-32,8,-28,-39,-30,-58v0,-6,-3,-14,-11,-14v-10,0,-12,12,-11,18v3,34,1,75,54,75v9,0,19,-1,25,-3","w":129},"\ue033":{"d":"91,-40v0,27,-17,118,-56,118v-15,0,-34,-26,-20,-33v4,0,8,11,11,11v33,-4,49,-68,44,-103v-12,24,-63,40,-63,1v0,-22,30,-74,55,-74v10,0,18,6,17,17v18,6,12,44,12,63xm66,-100v-13,0,-49,44,-30,58v15,-3,45,-39,30,-58","w":102},"\u2265":{},"\ue034":{"d":"116,4v-31,-5,-16,-77,-35,-91v-16,0,-28,32,-39,70v-2,10,-22,15,-25,2v0,-51,-6,-133,-9,-177v0,-3,2,-10,9,-10v6,0,13,6,13,10v4,39,5,84,6,132v9,-17,24,-51,48,-51v29,0,26,63,39,106v1,5,-3,9,-7,9","w":130},"\ue036":{"d":"35,-89v1,25,-4,56,5,71v0,10,-8,17,-18,17v-10,0,-10,-14,-10,-22v0,-19,3,-42,3,-61v0,-6,1,-15,9,-15v7,0,11,4,11,10xm22,-158v14,-1,20,25,5,28v-16,1,-23,-26,-5,-28","w":51},"\u221e":{},"\u222b":{},"\ue037":{"d":"44,-144v0,13,-25,18,-26,2v-1,-16,24,-16,26,-2xm14,51v-13,0,-30,-15,-30,0v12,36,64,15,62,-19v-2,-42,-11,-86,-5,-125v-10,-17,-23,-5,-23,13v0,41,7,60,7,112v0,6,-4,19,-11,19","w":56},"\ue038":{"d":"104,-33v12,0,10,8,8,11v-24,20,-51,-2,-79,-16v0,8,7,46,-8,45v-10,0,-13,-4,-13,-11v0,-48,-5,-128,-5,-170v0,-5,3,-10,9,-10v8,0,12,5,12,13v0,29,1,73,3,105v14,-10,29,-26,50,-42v18,-13,25,6,11,15v-12,8,-31,27,-47,39v17,10,44,21,59,21","w":110},"\ue039":{"d":"30,-192v17,8,10,59,10,79v0,33,4,67,4,100v0,7,-6,7,-11,7v-24,-8,-14,-72,-14,-98v0,-31,1,-47,1,-78v0,-5,5,-10,10,-10","w":60},"\u2264":{},"\u25ca":{},"\ue040":{"d":"115,-110v16,1,15,74,34,93v0,2,-7,7,-9,7v-28,-6,-23,-73,-29,-73v-4,0,-18,71,-34,71v-16,0,-17,-67,-21,-67v-5,0,-7,78,-25,78v-9,0,-13,-18,-14,-24v-4,-17,-6,-47,-6,-74v0,-4,5,-9,10,-9v17,2,7,21,7,35v0,14,2,29,6,42v9,-24,7,-50,14,-76v5,-18,23,-7,23,7v0,21,3,42,9,61v14,-19,11,-65,35,-71","w":149},"\ue041":{"d":"69,-117v33,-3,1,88,44,74v4,0,7,2,7,6v0,9,-15,16,-23,16v-32,1,-23,-67,-33,-68v-10,-1,-11,72,-34,81v-5,0,-8,-2,-9,-7v-8,-25,-8,-57,-10,-81v-1,-8,2,-14,11,-14v20,4,5,36,11,58v12,-22,12,-56,36,-65","w":120},"\ue063":{"d":"97,-142v0,17,-21,46,-53,46v-9,0,-15,-7,-15,-14v-1,-22,23,-45,42,-47v10,-1,26,2,26,15xm104,-14v-19,-50,17,-103,21,-139v-23,-6,-12,-21,-57,-21v-28,0,-60,37,-60,67v0,37,58,36,75,16v-5,31,-13,85,14,91v9,-1,8,-9,7,-14","w":133},"\u2260":{"d":"79,-150v19,3,2,23,-2,36v15,-4,24,12,10,16v-5,2,-12,4,-20,6r-8,20v19,-4,44,0,24,12v-9,3,-21,7,-33,10v-7,11,-9,27,-20,34v-12,-5,0,-19,1,-31v-10,0,-18,-16,-4,-19v3,-1,7,-2,12,-3v3,-7,5,-14,8,-20v-20,10,-44,-5,-25,-17v9,-3,23,-5,36,-6v8,-14,10,-31,21,-38","w":108},"\ue042":{"d":"40,-115v67,0,72,117,6,119v-26,0,-36,-21,-36,-44v0,-14,5,-75,30,-75xm41,-18v50,1,38,-78,3,-78v-14,0,-15,41,-15,51v0,9,-1,27,12,27","w":101},"\ue055":{"d":"56,-148v1,-30,-19,-31,-43,-9v-6,6,-10,10,-9,15v4,13,25,-6,31,-6r0,139v0,18,17,17,20,7","w":77},"\ue043":{"d":"100,-69v0,38,-35,48,-59,49r0,64v-1,6,-3,11,-10,11v-8,0,-11,-8,-11,-14v-1,-49,2,-100,-6,-145v0,-2,1,-7,6,-7v8,0,10,12,10,12v18,-31,70,-11,70,30xm54,-97v-23,0,-13,44,-14,62v0,0,36,-1,40,-25v3,-19,-5,-37,-26,-37","w":106},"\u2202":{},"\u03c0":{},"\u220f":{},"\ue044":{"d":"69,-111v14,0,29,-1,27,19v-2,19,-14,115,3,135v7,9,1,18,-8,19v-29,-6,-22,-61,-23,-89v0,2,-21,13,-37,13v-16,0,-24,-12,-24,-28v2,-34,24,-69,62,-69xm36,-36v42,-1,34,-26,38,-45v0,-13,-13,-12,-19,-10v-14,1,-42,42,-19,55","w":108},"\ue065":{"d":"36,-177v51,10,7,62,7,92v0,11,11,14,11,19v0,4,-3,8,-10,7v-9,-1,-19,-13,-20,-25v-1,-19,19,-41,19,-58v-1,-31,-43,16,-43,-16v0,-14,26,-19,36,-19xm42,-30v14,2,15,28,0,30v-15,-1,-15,-29,0,-30","w":76},"\ue045":{"d":"11,-73v1,-11,-3,-39,11,-39v14,-1,7,21,10,32v6,-17,27,-25,40,-25v5,0,25,1,25,10v0,6,-7,6,-7,6v-15,0,-36,-1,-44,15v-9,17,-9,26,-9,40v0,10,3,25,-9,27v-20,-6,-14,-46,-17,-66","w":95},"\u221a":{},"\ue046":{"d":"89,-30v0,23,-23,35,-42,36v-12,1,-34,-1,-35,-16v-1,-10,20,-31,23,-28v2,2,-7,13,-7,16v5,12,39,12,41,-1v-2,-23,-62,-24,-62,-55v0,-27,33,-41,56,-43v6,0,25,-1,26,9v-2,16,-11,9,-30,9v-12,0,-31,7,-32,20v4,20,62,27,62,53","w":96},"\ue061":{"d":"90,-143v0,27,-34,88,-34,120v0,19,7,21,15,21v8,0,9,-7,9,-16v2,-36,35,-109,35,-131v0,-35,-54,-17,-84,-22v-9,-1,-35,-6,-30,10v9,25,54,11,83,11v4,0,6,1,6,7","w":126},"\ue060":{"d":"108,-52v0,19,-16,35,-40,35v-18,0,-32,-11,-32,-28v0,-18,17,-34,40,-34v21,0,32,13,32,27xm83,-167v6,-6,5,-15,-2,-16v-7,-1,-13,2,-17,6v-10,9,-53,45,-53,107v0,49,16,75,56,75v32,0,64,-25,64,-58v0,-25,-25,-45,-53,-45v-27,0,-45,16,-45,16v3,-38,23,-61,50,-85","w":134},"\u2211":{},"\ue047":{"d":"41,-111v2,-19,-5,-43,8,-51v19,4,7,35,10,53v10,2,43,-4,49,6v-6,14,-31,8,-48,13r4,85v0,4,-5,6,-9,6v-24,-5,-3,-64,-12,-90v-15,2,-48,3,-47,-17v7,-15,26,-4,45,-5","w":105},"\ue057":{"d":"95,-154v-18,24,-45,27,-48,50v6,19,63,-5,63,31v0,35,-73,52,-95,54v-17,1,-8,21,0,22v28,0,119,-28,119,-74v0,-27,-28,-48,-56,-44v19,-14,36,-22,46,-45v-4,-25,-39,-7,-61,-10v-15,4,-47,-14,-53,2v-1,26,69,13,85,14","w":151},"\ue056":{"d":"129,-25v-5,17,-29,14,-57,14v-34,0,-61,-3,-61,-20v0,-37,67,-88,67,-111v0,-34,-51,11,-60,-17v0,-8,20,-15,48,-15v21,0,34,12,34,28v0,35,-65,82,-65,108v10,12,87,-4,94,13","w":118},"\ue048":{"d":"96,-104v-2,19,-1,103,-43,103v-39,0,-42,-69,-42,-97v0,-6,2,-11,8,-11v30,7,-2,86,34,86v21,0,21,-44,21,-81v0,-6,5,-12,12,-12v7,0,11,7,10,12","w":107},"\ue049":{"d":"90,-113v-6,26,-35,90,-39,104v-5,16,-21,12,-23,0v-6,-42,-28,-91,-28,-96v0,-4,4,-6,8,-6v18,0,27,50,33,75v12,-26,20,-55,26,-75v2,-7,5,-12,13,-12v5,0,11,4,10,10","w":90},"\ue050":{"d":"142,-106v0,34,-22,100,-43,108v-14,0,-24,-56,-28,-74v-7,20,-11,43,-18,62v-4,13,-26,7,-26,-4v-8,-21,-23,-66,-23,-87v0,-5,0,-9,6,-11v20,6,17,59,31,76v12,-26,16,-75,28,-75v14,0,20,52,31,79v21,-39,15,-86,30,-86v7,0,12,2,12,12","w":145},"\ue051":{"d":"16,-116v11,7,10,23,19,39v7,-13,21,-31,30,-31v24,12,-11,27,-20,48v17,27,46,35,46,45v-13,26,-44,-12,-56,-26v-14,22,-7,45,-23,49v-23,-9,13,-70,11,-68v0,0,-17,-28,-17,-44v0,-6,3,-12,10,-12","w":86},"\ue052":{"d":"18,-110v31,3,-2,87,36,83v26,-3,26,-46,22,-76v1,-9,17,-9,18,0v2,18,7,84,2,115v-5,33,-20,56,-48,60v-13,2,-30,-5,-31,-26v-1,-16,8,-19,11,-7v3,15,13,12,19,12v20,0,35,-34,30,-69v-6,8,-15,12,-26,12v-49,1,-34,-63,-44,-96v1,-6,7,-8,11,-8","w":109},"\ue053":{"d":"2,-93v6,19,40,2,67,8v-7,24,-55,40,-46,65v17,17,85,28,87,-4v-8,-6,-58,6,-65,-9v12,-13,45,-41,45,-55v-2,-25,-78,-21,-88,-5","w":111},"\ue054":{"d":"75,-125v48,15,34,86,-24,89v-12,0,-19,-11,-19,-19v0,-27,25,-57,43,-70xm85,-159v-8,0,-74,49,-74,103v0,17,14,34,34,37v39,5,78,-28,78,-63v0,-31,-19,-50,-34,-58v-1,0,7,-4,7,-9v0,-6,-4,-10,-11,-10","w":133},"\u00bd":{"d":"45,-79v-3,-51,1,-88,1,-88v1,-18,-16,-18,-29,-5v-8,8,-6,19,6,14v2,-1,5,-3,6,-4r-1,79v0,13,15,15,17,4xm118,-163v-37,86,-63,137,-82,176v-5,5,-12,1,-10,-7v11,-37,66,-152,80,-175v4,-4,15,-1,12,6xm126,-106v52,0,9,67,-4,91v17,0,31,0,44,-4v4,-1,8,0,8,5v-4,20,-47,16,-69,14v-4,0,-7,-3,-6,-7v6,-16,35,-53,35,-71v0,-26,-26,2,-38,4v-3,0,-5,-3,-5,-8v0,-8,21,-24,35,-24","w":184},"\u00bc":{"d":"38,-72v15,-3,2,-37,6,-49v0,-28,1,-46,1,-46v0,-6,1,-15,-9,-15v-1,0,-25,7,-25,20v0,10,14,2,17,0r0,79v0,9,6,11,10,11xm118,-165v-34,87,-64,139,-82,178v-5,5,-14,0,-10,-7v10,-37,65,-152,79,-175v3,-4,13,-2,13,4xm138,-49v-1,-16,11,-76,21,-42v-4,27,-10,67,-5,99v0,4,-3,6,-7,6v-13,-3,-11,-31,-10,-46v-27,2,-40,-16,-42,-40v-1,-16,11,-49,19,-26v-3,21,-6,58,24,49","w":174},"\u00b9":{"d":"45,-79v-3,-51,1,-88,1,-88v1,-18,-16,-18,-29,-5v-8,8,-6,19,6,14v2,-1,5,-3,6,-4r-1,79v0,13,15,15,17,4","w":64},"\u00be":{"d":"11,-160v4,-15,24,-21,38,-21v34,0,13,41,-3,53v14,7,32,9,32,26v0,21,-39,31,-53,31v-3,0,-8,-1,-8,-6v0,-17,42,-8,42,-25v0,-10,-29,-10,-29,-22v0,-11,22,-22,23,-37v-10,-17,-36,31,-42,1xm140,-163v-37,86,-63,137,-82,176v-5,5,-12,1,-10,-7v11,-37,66,-152,80,-175v4,-5,14,0,12,6xm161,-49v-1,-17,11,-76,22,-42v-4,27,-9,66,-6,99v0,4,-3,6,-7,6v-13,-3,-11,-31,-10,-46v-27,2,-39,-16,-41,-40v-1,-17,10,-49,19,-26v-4,20,-7,58,23,49","w":201},"\u00b3":{"d":"11,-163v7,-20,57,-36,57,-5v0,13,-12,28,-22,37v14,7,32,9,32,26v0,21,-39,31,-53,31v-3,0,-8,-2,-8,-7v1,-16,42,-7,42,-24v0,-10,-29,-11,-29,-23v0,-11,22,-22,23,-37v-11,-14,-36,29,-42,2","w":88},"\u00b2":{"d":"46,-183v52,0,9,67,-4,91v17,0,31,0,44,-4v4,-1,8,0,8,5v-3,21,-46,16,-68,14v-4,0,-8,-3,-7,-7v6,-16,35,-53,35,-71v0,-33,-35,21,-43,-4v0,-8,21,-24,35,-24","w":101},"\u00a4":{"d":"4,-55v-5,-14,16,-14,26,-13v1,-5,1,-10,2,-16v-12,2,-38,0,-24,-11v6,-2,17,-5,27,-6v7,-37,20,-77,42,-77v22,0,45,30,45,52v0,13,-18,16,-21,6v0,-17,-11,-30,-24,-30v-11,0,-18,24,-22,48v15,-1,57,-5,42,15v-12,4,-29,1,-44,2v-1,6,-2,12,-2,17v12,0,44,-5,32,10v-8,3,-21,5,-33,6v0,14,2,36,21,36v29,0,51,-27,56,-17v6,11,-27,39,-60,39v-30,-1,-40,-28,-39,-57v-7,-1,-19,1,-24,-4","w":135},"\u02d8":{"d":"52,-153v25,1,10,-36,27,-41v9,0,10,17,10,23v0,21,-13,41,-35,41v-24,0,-42,-23,-42,-47v0,-5,2,-13,8,-13v17,2,14,41,32,37","w":106},"\u02d9":{"d":"24,-176v18,0,24,35,3,36v-19,1,-23,-35,-3,-36","w":51}}});
