/*
 * Galleria v 1.2 prerelease 1.1 2010-11-23
 * http://galleria.aino.se
 *
 * Copyright (c) 2010, Aino
 * Licensed under the MIT license.
 */

// Allow other JavaScript libraries to use $.
jQuery.noConflict();

(function($) {

// some references
var undef,
    window = this,
    doc    = document,
    $doc   = $( doc );

// internal constants
var DEBUG = false,
    NAV   = navigator.userAgent.toLowerCase(),
    HASH  = window.location.hash.replace(/#\//, ''),
    CLICK = function() {
        // use this to make touch devices snappier
        return Galleria.TOUCH ? 'touchstart' : 'click';
    },
    IE    = (function() {
        var v = 3,
            div = doc.createElement( 'div' );
        while (
            div.innerHTML = '<!--[if gt IE '+(++v)+']><i></i><![endif]-->',
            div.getElementsByTagName('i')[0]
        );
        return v > 4 ? v : undef;
    }() ),
    DOM   = function() {
        return {
            html:  doc.documentElement,
            body:  doc.body,
            head:  doc.getElementsByTagName('head')[0],
            title: doc.title
        };
    },

    // the internal timeouts object
    // provides helper methods for controlling timeouts
    _timeouts = {

        trunk: {},

        add: function( id, fn, delay, loop ) {
            loop = loop || false;
            this.clear( id );
            if ( loop ) {
                var old = fn;
                fn = function() {
                    old();
                    _timeouts.add( id, fn, delay );
                };
            }
            this.trunk[ id ] = window.setTimeout( fn, delay );
        },

        clear: function( id ) {

            var del = function( i ) {
                window.clearTimeout( this.trunk[ i ] );
                delete this.trunk[ i ];
            };

            if ( !!id && id in this.trunk ) {
                del.call( _timeouts, id );

            } else if ( typeof id == 'undefined' ) {
                for ( var i in this.trunk ) {
                    del.call( _timeouts, i );
                }
            }
        }
    },

    // the internal gallery holder
    _galleries = [],

    // the transitions holder
    _transitions = {

        fade: function(params, complete) {
            $(params.next).css('opacity', 0).show().animate({
                opacity: 1
            }, params.speed, complete);

            if (params.prev) {
                $(params.prev).css('opacity', 1).show().animate({
                    opacity: 0
                }, params.speed);
            }
        },

        flash: function(params, complete) {
            $(params.next).css('opacity', 0);
            if (params.prev) {
                $(params.prev).animate({
                    opacity: 0
                }, (params.speed / 2), function() {
                    $(params.next).animate({
                        opacity: 1
                    }, params.speed, complete);
                });
            } else {
                $(params.next).animate({
                    opacity: 1
                }, params.speed, complete);
            }
        },

        pulse: function(params, complete) {
            if (params.prev) {
                $(params.prev).hide();
            }
            $(params.next).css('opacity', 0).animate({
                opacity:1
            }, params.speed, complete);
        },

        slide: function(params, complete) {
            var image  = $(params.next).parent(),
                images = this.$('images'), // ??
                width  = this._stageWidth,
                easing = this.getOptions( 'easing' );

            image.css({
                left: width * ( params.rewind ? -1 : 1 )
            });
            images.animate({
                left: width * ( params.rewind ? 1 : -1 )
            }, {
                duration: params.speed,
                queue: false,
                easing: easing,
                complete: function() {
                    images.css('left', 0);
                    image.css('left', 0);
                    complete();
                }
            });
        },

        fadeslide: function(params, complete) {

            var x = 0,
                easing = this.getOptions('easing'),
                distance = this.getStageWidth();

            if (params.prev) {
                x = Utils.parseValue( $(params.prev).css('left') );
                $(params.prev).css({
                    opacity: 1,
                    left: x
                }).animate({
                    opacity: 0,
                    left: x + ( distance * ( params.rewind ? 1 : -1 ) )
                },{
                    duration: params.speed,
                    queue: false,
                    easing: easing
                });
            }

            x = Utils.parseValue( $(params.next).css('left') );

            $(params.next).css({
                left: x + ( distance * ( params.rewind ? -1 : 1 ) ),
                opacity: 0
            }).animate({
                opacity: 1,
                left: x
            }, {
                duration: params.speed,
                complete: complete,
                queue: false,
                easing: easing
            });
        }
    },

    // the Utils singleton
    Utils = (function() {

        return {

            array : function( obj ) {
                return Array.prototype.slice.call(obj);
            },

            create : function( className, nodeName ) {
                nodeName = nodeName || 'div';
                var elem = doc.createElement( nodeName );
                elem.className = className;
                return elem;
            },

            forceStyles : function( elem, styles ) {
                elem = $(elem);
                if ( elem.attr( 'style' ) ) {
                    elem.data( 'styles', elem.attr( 'style' ) ).removeAttr( 'style' );
                }
                elem.css( styles );
            },

            revertStyles : function() {
                $.each( Utils.array( arguments ), function( i, elem ) {

                    elem = $( elem ).removeAttr( 'style' );

                    if ( elem.data( 'styles' ) ) {
                        elem.attr( 'style', elem.data('styles') ).data( 'styles', null );
                    }
                });
            },

            moveOut : function( elem ) {
                Utils.forceStyles( elem, {
                    position: 'absolute',
                    left: -10000
                });
            },

            moveIn : function() {
                Utils.revertStyles.apply( Utils, Utils.array( arguments ) );
            },

            hide : function( elem, speed, callback ) {
                elem = $(elem);

                // save the value if not exist
                if (! elem.data('opacity') ) {
                    elem.data('opacity', elem.css('opacity') );
                }

                // always hide
                var style = { opacity: 0 };

                if (speed) {
                    elem.stop().animate( style, speed, callback );
                } else {
                    elem.css( style );
                };
            },

            show : function( elem, speed, callback ) {
                elem = $(elem);

                // bring back saved opacity
                var saved = parseFloat( elem.data('opacity') ) || 1,
                    style = { opacity: saved };

                // reset save if opacity == 1
                if (saved == 1) {
                    elem.data('opacity', null);
                }

                // animate or toggle
                if (speed) {
                    elem.stop().animate( style, speed, callback );
                } else {
                    elem.css( style );
                };
            },

            addTimer : function() {
                _timeouts.add.apply( _timeouts, Utils.array( arguments ) );
                return this;
            },

            clearTimer : function() {
                _timeouts.clear.apply( _timeouts, Utils.array( arguments ) );
                return this;
            },

            wait : function(options) {
                options = $.extend({
                    until : function() { return false; },
                    success : function() {},
                    error : function() { Galleria.raise('Could not complete wait function.'); },
                    timeout: 3000
                }, options);

                var start = Utils.timestamp(),
                    elapsed,
                    now;

                window.setTimeout(function() {
                    now = Utils.timestamp();
                    elapsed = now - start;
                    if ( options.until( elapsed ) ) {
                        options.success();
                        return false;
                    }

                    if (now >= start + options.timeout) {
                        options.error();
                        return false;
                    }
                    window.setTimeout(arguments.callee, 2);
                }, 2);
            },

            toggleQuality : function( img, force ) {

                if ( !( IE == 7 || IE == 8 ) || !!img === false ) {
                    return;
                }

                if ( typeof force === 'undefined' ) {
                    force = img.style.msInterpolationMode == 'nearest-neighbor';
                }

                img.style.msInterpolationMode = force ? 'bicubic' : 'nearest-neighbor';
            },

            insertStyleTag : function( styles ) {
                var style = doc.createElement( 'style' );
                DOM().head.appendChild( style );

                if ( style.styleSheet ) { // IE
                    style.styleSheet.cssText = styles;
                } else {
                    var cssText = doc.createTextNode( styles );
                    style.appendChild( cssText );
                }
            },

            // a loadscript method that works for local scripts
            loadScript: function( url, callback ) {
                var done = false,
                    script = $('<scr'+'ipt>').attr({
                        src: url,
                        async: true
                    }).get(0);

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

                       if (typeof callback == 'function') {
                           callback.call( this, this );
                       }

                       // Handle memory leak in IE
                       script.onload = script.onreadystatechange = null;
                   }
               };

               var s = doc.getElementsByTagName( 'script' )[0];
               s.parentNode.insertBefore( script, s );
            },

            // parse anything into a number
            parseValue: function( val ) {
                if (typeof val == 'number') {
                    return val;
                } else if (typeof val == 'string') {
                    var arr = val.match(/\-?\d/g);
                    return arr && arr.constructor == Array ? arr.join('') * 1 : 0;
                } else {
                    return 0;
                }
            },

            // timestamp abstraction
            timestamp: function() {
                return new Date().getTime();
            },

            // this is pretty crap, but works for now
            // it will add a callback, but it can't guarantee that the styles can be fetched
            // using getComputedStyle further checking needed, possibly a dummy element
            loadCSS : function( href, id, callback ) {

                var link,
                    ready = false,
                    length;

                // look for manual css
                $('link[rel=stylesheet]').each(function() {
                    if ( new RegExp( href ).test( this.href ) ) {
                        link = this;
                        return false;
                    }
                });

                if ( typeof id == 'function' ) {
                    callback = id;
                    id = undef;
                }

                callback = callback || function() {}; // dirty

                // if already present, return
                if ( link ) {
                    callback.call( link, link );
                    return link;
                }

                // save the length of stylesheets to check against
                length = doc.styleSheets.length;

                // add timestamp if DEBUG is true
                if ( DEBUG ) {
                    href += '?' + Utils.timestamp();
                }

                // check for existing id
                if( $('#'+id).length ) {
                    $('#'+id).attr('href', href);
                    length--;
                    ready = true;
                } else {
                    link = $( '<link>' ).attr({
                        rel: 'stylesheet',
                        href: href,
                        id: id
                    }).get(0);

                    window.setTimeout(function() {
                        var styles = $('link[rel="stylesheet"], style');
                        if ( styles.length ) {
                            styles.get(0).parentNode.insertBefore( link, styles[0] );
                        } else {
                            DOM().head.appendChild( link );
                        }

                        if ( IE ) {
                            link.attachEvent( 'onreadystatechange', function(e) {
                                if( link.readyState == 'complete' ) {
                                    ready = true;
                                }
                            });
                        } else {
                            // what to do here? returning for now.
                            ready = true;
                        }
                    }, 10);
                }

                if (typeof callback == 'function') {

                    Utils.wait({
                        until: function() {
                            return ready && doc.styleSheets.length > length;
                        },
                        success: function() {
                            Utils.addTimer( 'css', function() {
                                callback.call( link, link );
                            }, 100);
                        },
                        error: function() {
                            Galleria.raise( 'Theme CSS could not load' );
                        },
                        timeout: 1000
                    });
                }
                return link;
            }
        };
    })();

/**
    The main Galleria class

    @class

    @example var gallery = new Galleria();

    @author http://aino.se

    @requires jQuery

    @returns {Galleria}
*/

Galleria = function() {

    var self = this;

    // the theme used
    this._theme = undef;

    // internal options
    this._options = {};

    // flag for controlling play/pause
    this._playing = false;

    // internal interval for slideshow
    this._playtime = 5000;

    // internal variable for the currently active image
    this._active = null;

    // the internal queue, arrayified
    this._queue = { length: 0 };

    // the internal data array
    this._data = [];

    // the internal dom collection
    this._dom = {};

    // the internal thumbnails array
    this._thumbnails = [];

    // internal init flag
    this._initialized = false;

    // global stagewidth/height
    this._stageWidth = 0;
    this._stageHeight = 0;

    // target holder
    this._target = undef;

    // instance id
    this._id = Utils.timestamp();

    // add some elements
    var divs =  'container stage images image-nav image-nav-left image-nav-right ' +
                'info info-text info-title info-description info-author ' +
                'thumbnails thumbnails-list thumbnails-container thumb-nav-left thumb-nav-right ' +
                'loader counter tooltip',
        spans = 'current total';

    $.each( divs.split(' '), function( i, elemId ) {
        self._dom[ elemId ] = Utils.create( 'galleria-' + elemId );
    });

    $.each( spans.split(' '), function( i, elemId ) {
        self._dom[ elemId ] = Utils.create( 'galleria-' + elemId, 'span' );
    });

    // the internal keyboard object
    // keeps reference of the keybinds and provides helper methods for binding keys
    var keyboard = this._keyboard = {

        keys : {
            'UP': 38,
            'DOWN': 40,
            'LEFT': 37,
            'RIGHT': 39,
            'RETURN': 13,
            'ESCAPE': 27,
            'BACKSPACE': 8,
            'SPACE': 32
        },

        map : {},

        bound: false,

        press: function(e) {
            var key = e.keyCode || e.which;
            if ( key in keyboard.map && typeof keyboard.map[key] == 'function' ) {
                keyboard.map[key].call(self, e);
            }
        },

        attach: function(map) {
            for( var key in map ) {
                var up = key.toUpperCase();
                if ( up in keyboard.keys ) {
                    keyboard.map[ keyboard.keys[up] ] = map[key];
                }
            }
            if ( !keyboard.bound ) {
                keyboard.bound = true;
                $doc.bind('keydown', keyboard.press);
            }
        },

        detach: function() {
            keyboard.bound = false;
            $doc.unbind('keydown', keyboard.press);
        }
    };

    // internal controls for keeping track of active / inactive images
    var controls = this._controls = {

        0: undef,

        1: undef,

        active : 0,

        swap : function() {
            controls.active = controls.active ? 0 : 1;
        },

        getActive : function() {
            return controls[ controls.active ];
        },

        getNext : function() {
            return controls[ 1 - controls.active ];
        }
    };

    // internal carousel object
    var carousel = this._carousel = {

        // shortcuts
        next: self.$('thumb-nav-right'),
        prev: self.$('thumb-nav-left'),

        // cache the width
        width: 0,

        // track the current position
        current: 0,

        // cache max value
        max: 0,

        // save all hooks for each width in an array
        hooks: [],

        // update the carousel
        // you can run this method anytime, f.ex on window.resize
        update: function() {
            var w = 0,
                h = 0,
                hooks = [0];

            $.each( self._thumbnails, function( i, thumb ) {
                if ( thumb.ready ) {
                    w += thumb.outerWidth || $( thumb.container ).outerWidth( true );
                    hooks[ i+1 ] = w;
                    h = Math.max( h, thumb.outerHeight || $( thumb.container).outerHeight( true ) );
                }
            });

            self.$( 'thumbnails' ).css({
                width: w,
                height: h
            });

            carousel.max = w;
            carousel.hooks = hooks;
            carousel.width = self.$( 'thumbnails-list' ).width();
            carousel.setClasses();

            self.$( 'thumbnails-container' ).toggleClass( 'galleria-carousel', w > carousel.width );

            // todo: fix so the carousel moves to the left
        },

        bindControls: function() {

            carousel.next.bind( CLICK(), function(e) {
                e.preventDefault();

                if ( self._options.carousel_steps == 'auto' ) {

                    for ( var i = carousel.current; i < carousel.hooks.length; i++ ) {
                        if ( carousel.hooks[i] - carousel.hooks[ carousel.current ] > carousel.width ) {
                            carousel.set(i - 2);
                            break;
                        }
                    }

                } else {
                    carousel.set( carousel.current + self._options.carousel_steps);
                }
            });

            carousel.prev.bind( CLICK(), function(e) {
                e.preventDefault();

                if ( self._options.carousel_steps == 'auto' ) {

                    for ( var i = carousel.current; i >= 0; i-- ) {
                        if ( carousel.hooks[ carousel.current ] - carousel.hooks[i] > carousel.width ) {
                            carousel.set( i + 2 );
                            break;
                        } else if ( i == 0 ) {
                            carousel.set( 0 );
                            break;
                        }
                    }
                } else {
                    carousel.set( carousel.current - self._options.carousel_steps );
                }
            });
        },

        // calculate and set positions
        set: function( i ) {
            i = Math.max( i, 0 );
            while ( carousel.hooks[i - 1] + carousel.width > carousel.max && i >= 0 ) {
                i--;
            }
            carousel.current = i;
            carousel.animate();
        },

        // get the last position
        getLast: function(i) {
            return ( i || carousel.current ) - 1;
        },

        // follow the active image
        follow: function(i) {

            //don't follow if position fits
            if ( i == 0 || i == carousel.hooks.length - 2 ) {
                carousel.set( i );
                return;
            }

            // calculate last position
            var last = carousel.current;
            while( carousel.hooks[last] - carousel.hooks[ carousel.current ] <
                   carousel.width && last <= carousel.hooks.length ) {
                last ++;
            }

            // set position
            if ( i - 1 < carousel.current ) {
                carousel.set( i - 1 );
            } else if ( i + 2 > last) {
                carousel.set( i - last + carousel.current + 2 );
            }
        },

        // helper for setting disabled classes
        setClasses: function() {
            carousel.prev.toggleClass( 'disabled', !carousel.current );
            carousel.next.toggleClass( 'disabled', carousel.hooks[ carousel.current ] + carousel.width > carousel.max );
        },

        // the animation method
        animate: function(to) {
            carousel.setClasses();
            var num = carousel.hooks[ carousel.current ] * -1;

            if ( isNaN( num ) ) {
                return;
            }

            self.$( 'thumbnails' ).animate({
                left: num
            },{
                duration: self._options.carousel_speed,
                easing: self._options.easing,
                queue: false
            });
        }
    };

    // tooltip control
    // added in 1.2
    var tooltip = this._tooltip = {

        initialized : false,

        open: false,

        init: function() {

            tooltip.initialized = true;

            var css = '.galleria-tooltip{padding:3px 8px;max-width:50%;background:#ffe;color:#000;z-index:3;position:absolute;font-size:11px;line-height:1.3' +
                      'opacity:0;box-shadow:0 0 2px rgba(0,0,0,.4);-moz-box-shadow:0 0 2px rgba(0,0,0,.4);-webkit-box-shadow:0 0 2px rgba(0,0,0,.4);}';

            Utils.insertStyleTag(css);

            self.$( 'tooltip' ).css('opacity', .8);
            Utils.hide( self.get('tooltip') );

        },

        // move handler
        move: function( e ) {
            var mouseX = self.getMousePosition(e).x,
                mouseY = self.getMousePosition(e).y,
                $elem = self.$( 'tooltip' ),
                x = mouseX,
                y = mouseY,
                height = $elem.outerHeight( true ) + 1,
                width = $elem.outerWidth( true ),
                limitY = height + 15;

            var maxX = self.$( 'container').width() - width - 2,
                maxY = self.$( 'container').height() - height - 2;

            if ( !isNaN(x) && !isNaN(y) ) {

                x += 10;
                y -= 30;

                x = Math.max( 0, Math.min( maxX, x ) );
                y = Math.max( 0, Math.min( maxY, y ) );

                if( mouseY < limitY ) {
                    y = limitY;
                }

                $elem.css({ left: x, top: y });
            }
        },

        // bind elements to the tooltip
        // you can bind multiple elementIDs using { elemID : function } or { elemID : string }
        // you can also bind single DOM elements using bind(elem, string)
        bind: function( elem, value ) {

            if (! tooltip.initialized ) {
                tooltip.init();
            }

            var hover = function( elem, value) {

                tooltip.define( elem, value );

                $( elem ).hover(function() {

                    Utils.clearTimer('switch_tooltip');
                    self.$('container').unbind( 'mousemove', tooltip.move ).bind( 'mousemove', tooltip.move ).trigger( 'mousemove' );
                    tooltip.show( elem );

                    Galleria.utils.addTimer( 'tooltip', function() {
                        self.$( 'tooltip' ).stop();
                        Utils.show( self.get( 'tooltip' ), 400 );
                        tooltip.open = true;

                    }, tooltip.open ? 0 : 1000);

                }, function() {

                    self.$( 'container' ).unbind( 'mousemove', tooltip.move );
                    Utils.clearTimer( 'tooltip' );
                    
                    self.$( 'tooltip' ).stop();
                    
                    Utils.hide( self.get( 'tooltip' ), 200, function() {
                        Utils.addTimer('switch_tooltip', function() {
                            tooltip.open = false;
                        }, 1000);
                    });
                });
            };

            if (typeof value == 'string') {
                hover( ( elem in self._dom ? self.get(elem) : elem ), value );
            } else {
                // asume elemID here
                $.each( elem, function( elemID, val ) {
                    hover( self.get(elemID), val );
                });
            }
        },

        show: function( elem ) {
            
            elem = $( elem in self._dom ? self.get(elem) : elem );
            
            var text = elem.data( 'tt' );
            
            if ( ! text ) {
                return;
            }
            
            text = typeof text == 'function' ? text() : text;
            
            self.$( 'tooltip' ).html( text.replace(/\s/, '&nbsp;') );
            
            // trigger mousemove on mouseup in case of click
            elem.bind( 'mouseup', function( e ) {
                
                // attach a tiny settimeout to make sure the new tooltip is filled
                window.setTimeout( (function( ev ) {
                    return function() {
                        tooltip.move( ev );
                    }
                })( e ), 10);
                
                elem.unbind( 'mouseup', arguments.callee );
            });
        },

        define: function( elem, value ) {

            // we store functions, not strings
            if (typeof value !== 'function') {
                var s = value;
                value = function() {
                    return s;
                };
            }

            elem = $( elem in self._dom ? self.get(elem) : elem ).data('tt', value);

            tooltip.show( elem );

        }
    };

    // internal fullscreen control
    // added in 1.195
    // still kind of experimental
    var fullscreen = this._fullscreen = {
        scrolled: 0,
        enter: function(callback) {

            // hide the image until rescale is complete
            Utils.hide( self.getActiveImage() );

            self.$( 'container' ).addClass( 'fullscreen' );

            fullscreen.scrolled = $(window).scrollTop();

            // begin styleforce
            Utils.forceStyles(self.get('container'), {
                position: 'fixed',
                top: 0,
                left: 0,
                width: '100%',
                height: '100%',
                zIndex: 10000
            });

            var htmlbody = {
                height: '100%',
                overflow: 'hidden',
                margin:0,
                padding:0
            };

            Utils.forceStyles( DOM().html, htmlbody );
            Utils.forceStyles( DOM().body, htmlbody );

            // attach some keys
            self.attachKeyboard({
                escape: self.exitFullscreen,
                right: self.next,
                left: self.prev
            });

            // init the first rescale and attach callbacks
            self.rescale(function() {

                Utils.addTimer('fullscreen_enter', function() {
                    // show the image after 50 ms
                    Utils.show( self.getActiveImage() );

                    if (typeof callback == 'function') {
                        callback.call( self );
                    }

                }, 100);

                self.trigger( Galleria.FULLSCREEN_ENTER );
            });

            // bind the scaling to the resize event
            $(window).resize( function() {
                fullscreen.scale();
            } );
        },

        scale : function() {
            self.rescale();
        },

        exit: function(callback) {

            Utils.hide( self.getActiveImage() );

            self.$('container').removeClass( 'fullscreen' );

            // revert all styles
            Utils.revertStyles( self.get('container'), DOM().html, DOM().body );

            // scroll back
            window.scrollTo(0, fullscreen.scrolled);

            // detach all keyboard events (is this good?)
            self.detachKeyboard();

            self.rescale(function() {
                Utils.addTimer('fullscreen_exit', function() {

                    // show the image after 50 ms
                    Utils.show( self.getActiveImage() );

                    if ( typeof callback == 'function' ) {
                        callback.call( self );
                    }

                }, 50);

                self.trigger( Galleria.FULLSCREEN_EXIT );
            });

            $(window).unbind('resize', fullscreen.scale);
        }
    };

    // the internal idle object for controlling idle states
    // TODO occational event conflicts
    var idle = this._idle = {

        trunk: [],

        bound: false,

        add: function(elem, to) {
            if (!elem) {
                return;
            }
            if (!idle.bound) {
                idle.addEvent();
            }
            elem = $(elem);

            var from = {};

            for (var style in to) {
                from[style] = elem.css(style);
            }
            elem.data('idle', {
                from: from,
                to: to,
                complete: true,
                busy: false
            });
            idle.addTimer();
            idle.trunk.push(elem);
        },

        remove: function(elem) {

            elem = jQuery(elem);

            $.each(idle.trunk, function(i, el) {
                if ( el.length && !el.not(elem).length ) {
                    self._idle.show(elem);
                    self._idle.trunk.splice(i, 1);
                }
            });

            if (!idle.trunk.length) {
                idle.removeEvent();
                Utils.clearTimer('idle');
            }
        },

        addEvent : function() {
            idle.bound = true;
            self.$('container').bind('mousemove click', idle.showAll );
        },

        removeEvent : function() {
            idle.bound = false;
            self.$('container').unbind('mousemove click', idle.showAll );
        },

        addTimer : function() {
            Utils.addTimer('idle', function() {
                self._idle.hide();
            }, self._options.idle_time );
        },

        hide : function() {

            self.trigger( Galleria.IDLE_ENTER );

            $.each( idle.trunk, function(i, elem) {

                var data = elem.data('idle');

                if (! data) {
                    return;
                }

                elem.data('idle').complete = false;
                
                elem.stop().animate(data.to, {
                    duration: 600,
                    queue: false,
                    easing: 'swing'
                });
            });
        },

        showAll : function() {

            Utils.clearTimer('idle');

            $.each(self._idle.trunk, function( i, elem ) {
                self._idle.show( elem );
            });
        },

        show: function(elem) {

            var data = elem.data('idle');

            if (!data.busy && !data.complete) {

                data.busy = true;

                self.trigger( Galleria.IDLE_EXIT );
                
                Utils.clearTimer( 'idle' );

                elem.stop().animate(data.from, {
                    duration: 300,
                    queue: false,
                    easing: 'swing',
                    complete: function() {
                        $(this).data('idle').busy = false;
                        $(this).data('idle').complete = true;
                    }
                });
            }
            idle.addTimer();
        }
    };

    // internal lightbox object
    // creates a predesigned lightbox for simple popups of images in galleria
    var lightbox = this._lightbox = {

        width : 0,

        height : 0,

        initialized : false,

        active : null,

        image : null,

        elems : {},

        init : function() {

            // trigger the event
            self.trigger( Galleria.LIGHTBOX_OPEN );

            if ( lightbox.initialized ) {
                return;
            }
            lightbox.initialized = true;

            // create some elements to work with
            var elems = 'overlay box content shadow title info close prevholder prev nextholder next counter image',
                el = {},
                op = self._options,
                css = '',
                cssMap = {
                    overlay:    'position:fixed;display:none;opacity:'+op.overlay_opacity+';top:0;left:0;width:100%;height:100%;background:'+op.overlay_background+';z-index:99990',
                    box:        'position:fixed;display:none;width:400px;height:400px;top:50%;left:50%;margin-top:-200px;margin-left:-200px;z-index:99991',
                    shadow:     'position:absolute;background:#000;width:100%;height:100%;',
                    content:    'position:absolute;background-color:#fff;top:10px;left:10px;right:10px;bottom:10px;overflow:hidden',
                    info:       'position:absolute;bottom:10px;left:10px;right:10px;color:#444;font:11px/13px arial,sans-serif;height:13px',
                    close:      'position:absolute;top:10px;right:10px;height:20px;width:20px;background:#fff;text-align:center;cursor:pointer;color:#444;font:16px/22px arial,sans-serif;z-index:99999',
                    image:      'position:absolute;top:10px;left:10px;right:10px;bottom:30px;overflow:hidden',
                    prevholder: 'position:absolute;width:50%;height:100%;cursor:pointer',
                    nextholder: 'position:absolute;width:50%;height:100%;right:0;cursor:pointer',
                    prev:       'position:absolute;top:50%;margin-top:-20px;height:40px;width:30px;background:#fff;left:20px;display:none;line-height:40px;text-align:center;color:#000',
                    next:       'position:absolute;top:50%;margin-top:-20px;height:40px;width:30px;background:#fff;right:20px;left:auto;display:none;line-height:40px;text-align:center;color:#000',
                    title:      'float:left',
                    counter:    'float:right;margin-left:8px'
                },
                hover = function(elem) {
                    return elem.hover(
                        function() { $(this).css( 'color', '#bbb' ); },
                        function() { $(this).css( 'color', '#444' ); }
                    );
                };

            // create and insert CSS
            $.each(cssMap, function( key, value ) {
                css += '.galleria-lightbox-'+key+'{'+value+'}';
            });

            Utils.insertStyleTag( css );

            // create the elements
            $.each(elems.split(' '), function( i, elemId ) {
                self.addElement( 'lightbox-' + elemId );
                el[ elemId ] = lightbox.elems[ elemId ] = self.get( 'lightbox-' + elemId );
            });

            // initiate the image
            lightbox.image = new Galleria.Picture();

            // append the elements
            self.append({
                'lightbox-box': ['lightbox-shadow','lightbox-content', 'lightbox-close','lightbox-prevholder','lightbox-nextholder'],
                'lightbox-info': ['lightbox-title','lightbox-counter'],
                'lightbox-content': ['lightbox-info', 'lightbox-image'],
                'lightbox-prevholder': 'lightbox-prev',
                'lightbox-nextholder': 'lightbox-next'
            });

            $( el.image ).append( lightbox.image.container );

            $( DOM().body ).append( el.overlay, el.box );

            // add the prev/next nav and bind some controls

            hover( $( el.close ).bind( CLICK(), lightbox.hide ).html('&#215;') );

            $.each( ['Prev','Next'], function(i, dir) {

                var $d = $( el[ dir.toLowerCase() ] ).html( /v/.test( dir ) ? '‹&nbsp;' : '&nbsp;›' );

                $( el[ dir.toLowerCase()+'holder'] ).hover(function() {
                    $d.show();
                }, function() {
                    $d.fadeOut( 200 );
                }).bind( CLICK(), function() {
                    lightbox[ 'show' + dir ]();
                });

            });
            $( el.overlay ).bind( CLICK(), lightbox.hide );

        },

        rescale: function(event) {

            // calculate
             var width = Math.min( $(window).width()-40, lightbox.width ),
                height = Math.min( $(window).height()-60, lightbox.height ),
                ratio = Math.min( width / lightbox.width, height / lightbox.height ),
                destWidth = ( lightbox.width * ratio ) + 40,
                destHeight = ( lightbox.height * ratio ) + 60,
                to = {
                    width: destWidth,
                    height: destHeight,
                    marginTop: Math.ceil( destHeight / 2 ) *- 1,
                    marginLeft: Math.ceil( destWidth / 2 ) *- 1
                };

            // if rescale event, don't animate
            if ( event ) {
                $( lightbox.elems.box ).css( to );
            } else {
                $( lightbox.elems.box ).animate(
                    to,
                    self._options.lightbox_transition_speed,
                    self._options.easing,
                    function() {
                        var image = lightbox.image,
                            speed = self._options.lightbox_fade_speed;

                        self.trigger({
                            type: Galleria.LIGHTBOX_IMAGE,
                            imageTarget: image.image
                        });

                        image.show();
                        Utils.show( image.image, speed );
                        Utils.show( lightbox.elems.info, speed );
                    }
                );
            }
        },

        hide: function() {

            // remove the image
            lightbox.image.image = null;

            $(window).unbind('resize', lightbox.rescale);

            $( lightbox.elems.box ).hide();

            Utils.hide( lightbox.elems.info );

            Utils.hide( lightbox.elems.overlay, 200, function() {
                $( this ).hide().css( 'opacity', self._options.overlay_opacity );
                self.trigger( Galleria.LIGHTBOX_CLOSE );
            });
        },

        showNext: function() {
            lightbox.show( self.getNext( lightbox.active ) );
        },

        showPrev: function() {
            lightbox.show( self.getPrev( lightbox.active ) );
        },

        show: function(index) {

            lightbox.active = index = typeof index == 'number' ? index : self.getIndex();

            if ( !lightbox.initialized ) {
                lightbox.init();
            }

            $(window).unbind('resize', lightbox.rescale );

            var data = self.getData(index),
                total = self.getDataLength();

            Utils.hide( lightbox.elems.info );

            lightbox.image.load( data.image, function( image ) {

                lightbox.width = image.original.width;
                lightbox.height = image.original.height;

                $( image.image ).css({
                    width: '100.5%',
                    height: '100.5%',
                    top: 0,
                    zIndex: 99998,
                    opacity: 0
                });

                lightbox.elems.title.innerHTML = data.title;
                lightbox.elems.counter.innerHTML = (index + 1) + ' / ' + total;
                $(window).resize( lightbox.rescale );
                lightbox.rescale();
            });

            $( lightbox.elems.overlay ).show();
            $( lightbox.elems.box ).show();
        }
    };

    return this;
};

// end Galleria constructor

Galleria.prototype = {
    
    // bring back the constructor reference
    
    constructor: Galleria,

    /**
        Use this function to initialize the gallery and start loading.
        Should only be called once per instance.

        @param {HTML Element} target The target element
        @param {Object} options The gallery options

        @returns {Galleria}
    */

    init: function( target, options ) {

        var self = this;

        // save the instance
        _galleries.push( this );

        // save the original ingredients
        this._original = {
            target: target,
            options: options,
            data: null
        };

        // save the target here
        this._target = this._dom.target = target.nodeName ? target : $( target ).get(0);

        // raise error if no target is detected
        if ( !this._target ) {
             Galleria.raise('Target not found.');
             return;
        }

        // apply options
        this._options = {
            autoplay: false,
            carousel: true,
            carousel_follow: true,
            carousel_speed: 400,
            carousel_steps: 'auto',
            clicknext: false,
            data_config : function( elem ) { return {}; },
            data_selector: 'img',
            data_source: this._target,
            debug: undef,
            easing: 'galleria',
            extend: function(options) {},
            height: 'auto',
            idle_time: 3000,
            image_crop: false,
            image_margin: 0,
            image_pan: false,
            image_pan_smoothness: 12,
            image_position: '50%',
            keep_source: false,
            lightbox_fade_speed: 200,
            lightbox_transition_speed: 500,
            link_source_images: true,
            max_scale_ratio: undef,
            min_scale_ratio: undef,
            on_image: function(img,thumb) {},
            overlay_opacity: .85,
            overlay_background: '#0b0b0b',
            pause_on_interaction: true, // 1.9.96
            popup_links: false,
            preload: 2,
            queue: true,
            show: 0,
            show_info: true,
            show_counter: true,
            show_imagenav: true,
            thumb_crop: true,
            thumb_event_type: CLICK(),
            thumb_fit: true,
            thumb_margin: 0,
            thumb_quality: 'auto',
            thumbnails: true,
            transition: 'fade',
            transition_initial: undef,
            transition_speed: 400,
            width: 'auto'
        };

        // apply debug
        if ( options && options.debug === true ) {
            DEBUG = true;
        }

        // hide all content
        $( this._target ).children().hide();

        // now we just have to wait for the theme...
        if ( Galleria.theme ) {
            this._init();
        } else {
            Utils.addTimer('themeload', function() {
                Galleria.raise( 'No theme found.', true);
            }, 2000);

            $doc.one( Galleria.THEMELOAD, function() {
                Utils.clearTimer( 'themeload' );
                self._init.call( self );
            });
        }
    },

    // the internal _init is called when the THEMELOAD event is triggered
    // this method should only be called once per instance
    // for manipulation of data, use the .load method

    _init: function() {
        var self = this;

        if ( this._initialized ) {
            Galleria.raise( 'Init failed: Gallery instance already initialized.' );
            return this;
        }

        this._initialized = true;

        if ( !Galleria.theme ) {
            Galleria.raise( 'Init failed: No theme found.' );
            return this;
        }

        // merge the theme & caller options
        $.extend( true, this._options, Galleria.theme.defaults, this._original.options );

        // bind the gallery to run when data is ready
        this.bind( Galleria.DATA, function() {

            // save the new data
            this._original.data = this._data;

            // lets show the counter here
            this.get('total').innerHTML = this.getDataLength();

            // cache the container
            var $container = this.$( 'container' );

            // the gallery is ready, let's just wait for the css
            var num = { width: 0, height: 0 };
            var testElem =  Utils.create('galleria-image');

            // check container and thumbnail height
            Utils.wait({
                until: function() {

                    // keep trying to get the value
                    $.each(['width', 'height'], function( i, m ) {
                        
                        // first check if options is set
                        
                        if (self._options[ m ] && typeof self._options[ m ] == 'number') {
                            num[ m ] = self._options[ m ];
                        } else {
                            
                            // else extract the meassures in the following order:
                            
                            num[m] = Utils.parseValue( $container.css( m ) ) ||         // 1. the container css
                                     Utils.parseValue( self.$( 'target' ).css( m ) ) || // 2. the target css
                                     $container[ m ]() ||                               // 3. the container jQuery method
                                     self.$( 'target' )[ m ]();                         // 4. the container jQuery method
                        }

                    });

                    var thumbHeight = function() {
                        return true;
                    };

                    // make sure thumbnails have a height as well
                    if ( self._options.thumbnails ) {
                        self.$('thumbnails').append( testElem );
                        thumbHeight = function() {
                            return !!$( testElem ).height();
                        };
                    }

                    return thumbHeight() && num.width && num.height > 50;

                },
                success: function() {

                    // remove the testElem
                    $( testElem ).remove();

                    // apply the new meassures
                    $container.width( num.width );
                    $container.height( num.height );

                    // for some strange reason, webkit needs a single setTimeout to play ball
                    if ( Galleria.WEBKIT ) {
                        window.setTimeout( function() {
                            self._run();
                        }, 1);
                    } else {
                        self._run();
                    }
                },
                error: function() {
                    // Height was probably not set, raise a hard error
                    Galleria.raise('Width & Height not found.', true);
                },
                timeout: 2000
            });
        });

        // postrun some stuff after the gallery is ready
        // make sure it only runs once
        var one = false;

        this.bind( Galleria.READY, function() {

            // show counter
            Utils.show( this.get('counter') );

            // bind clicknext
            if ( this._options.clicknext ) {
                $.each( this._data, function( i, data ) {
                    delete data.link;
                });
                this.$( 'stage' ).css({ cursor : 'pointer' }).bind( CLICK(), function(e) {
                    self.next();
                });
            }

            // bind carousel nav
            if ( this._options.carousel ) {
                this._carousel.bindControls();
            }

            // start autoplay
            if ( this._options.autoplay ) {

                this.pause();

                if ( typeof this._options.autoplay == 'number' ) {
                    this._playtime = this._options.autoplay;
                }

                this.trigger( Galleria.PLAY );
                this._playing = true;
            }

            // if second load, just do the show and return
            if ( one ) {
                if ( typeof this._options.show == 'number' ) {
                    this.show( this._options.show );
                }
                return;
            }

            one = true;

            // initialize the History plugin
            if ( Galleria.History ) {

                // bind the show method
                Galleria.History.change(function(e) {

                    // grab history ID
                    var val = parseInt( e.value.replace( /\//, '' ) );

                    // if ID is NaN, the user pressed back from the first image
                    // return to previous address
                    if (isNaN(val)) {
                        window.history.go(-1);

                    // else show the image
                    } else {
                        self.show( val, undef, true );
                    }
                });
            }

            // call the theme init method
            Galleria.theme.init.call( this, this._options );

            // call the extend option
            this._options.extend.call( this, this._options );

            // show the initial image
            // first test for permalinks in history
            if ( /^[0-9]{1,4}$/.test( HASH ) && Galleria.History ) {
                this.show( HASH, undef, true );

            } else {
                this.show( this._options.show );
            }

        });

        // build the gallery frame
        this.append({
            'info-text' :
                ['info-title', 'info-description', 'info-author'],
            'info' :
                ['info-text'],
            'image-nav' :
                ['image-nav-right', 'image-nav-left'],
            'stage' :
                ['images', 'loader', 'counter', 'image-nav'],
            'thumbnails-list' :
                ['thumbnails'],
            'thumbnails-container' :
                ['thumb-nav-left', 'thumbnails-list', 'thumb-nav-right'],
            'container' :
                ['stage', 'thumbnails-container', 'info', 'tooltip']
        });

        Utils.hide( this.$( 'counter' ).append(
            this.get( 'current' ),
            ' / ',
            this.get( 'total' )
        ) );

        this.setCounter('&#8211;');

        // add images to the controls
        $.each( new Array(2), function(i) {

            // create a new Picture instance
            var image = new Galleria.Picture();

            // apply some styles
            $( image.container ).css({
                position: 'absolute',
                top: 0,
                left: 0
            });

            // append the image
            self.$( 'images' ).append( image.container );

            // reload the controls
            self._controls[i] = image;

        });

        // some forced generic styling
        this.$( 'images' ).css({
            position: 'relative',
            top: 0,
            left: 0,
            width: '100%',
            height: '100%'
        });

        this.$( 'thumbnails, thumbnails-list' ).css({
            overflow: 'hidden',
            position: 'relative'
        });

        // bind image navigation arrows
        this.$( 'image-nav-right, image-nav-left' ).bind( CLICK(), function(e) {

            // tune the clicknext option
            if ( self._options.clicknext ) {
                e.stopPropagation();
            }

            // pause if options is set
            if ( self._options.pause_on_interaction ) {
                self.pause();
            }

            // navigate
            var fn = /right/.test( this.className ) ? 'next' : 'prev';
            self[ fn ]();

        });

        // hide controls if chosen to
        $.each( ['info','counter','image-nav'], function( i, el ) {
            if ( self._options[ 'show_' + el.replace(/-/, '') ] === false ) {
                Utils.moveOut( self.get( el ) );
            }
        });

        // load up target content
        this.load();

        // now it's usually safe to remove the content
        // IE will never stop loading if we remove it, so let's keep it hidden for IE (it's usually fast enough anyway)
        if ( !this._options.keep_source && !IE ) {
            this._target.innerHTML = '';
        }

        // append the gallery frame
        this.$( 'target' ).append( this.get( 'container' ) );

        // parse the carousel on each thumb load
        if ( this._options.carousel ) {
            this.bind( Galleria.THUMBNAIL, function() {
                this.updateCarousel();
            });
        }

        // bind on_image helper
        this.bind( Galleria.IMAGE, function( e ) {
            this._options.on_image.call( this, e.imageTarget, e.thumbTarget );
        });

        return this;
    },

    // the internal _run method should be called after loading data into galleria
    // creates thumbnails and makes sure the gallery has proper meassurements
    _run : function() {
        // shortcuts
        var self = this,
            o = this._options,

            // width/height for calculations
            width  = 0,
            height = 0,

            // cache the thumbnail option
            optval = typeof o.thumbnails == 'string' ? o.thumbnails.toLowerCase() : null;

        // loop through data and create thumbnails
        for( var i = 0; this._data[i]; i++ ) {

            var thumb,
                data = this._data[i],
                $container;

            if ( o.thumbnails === true ) {

                // add a new Picture instance
                thumb = new Galleria.Picture(i);

                // get source from thumb or image
                var src = data.thumb || data.image;

                // append the thumbnail
                this.$( 'thumbnails' ).append( thumb.container );

                // cache the container
                $container = $( thumb.container );

                // move some data into the instance
                // for some reason, jQuery cant handle css(property) when zooming in FF, breaking the gallery
                // so we resort to getComputedStyle for browsers who support it
                var getStyle = function( prop ) {
                    return doc.defaultView && doc.defaultView.getComputedStyle ?
                        doc.defaultView.getComputedStyle( thumb.container, null )[ prop ] :
                        $container.css( prop );
                };

                thumb.data = {
                    width  : Utils.parseValue( getStyle( 'width' ) ),
                    height : Utils.parseValue( getStyle( 'height' ) ),
                    order  : i
                };

                // grab & reset size for smoother thumbnail loads
                $container.css(( o.thumb_fit && o.thumb_crop !== true ) ?
                    { width: 0, height: 0 } :
                    { width: thumb.data.width, height: thumb.data.height });

                // load the thumbnail
                thumb.load( src, function( thumb ) {

                    // scale when ready
                    thumb.scale({
                        width:    thumb.data.width,
                        height:   thumb.data.height,
                        crop:     o.thumb_crop,
                        margin:   o.thumb_margin,
                        complete: function( thumb ) {

                            // shrink thumbnails to fit
                            var top = ['left', 'top'];
                            var arr = ['Width', 'Height'];

                            // calculate shrinked positions
                            $.each(arr, function( i, meassure ) {
                                var m = meassure.toLowerCase();
                                if ( (o.thumb_crop !== true || o.thumb_crop == m ) && o.thumb_fit ) {
                                    var css = {};
                                    css[m] = thumb[m];
                                    $( thumb.container ).css( css );
                                    css = {};
                                    css[top[i]] = 0;
                                    $( thumb.image ).css( css);
                                }

                                // cache outer meassures
                                thumb['outer' + meassure] = $( thumb.container )['outer' + meassure]( true );
                            });

                            // set high quality if downscale is moderate
                            Utils.toggleQuality( thumb.image,
                                o.thumb_quality === true ||
                                ( o.thumb_quality == 'auto' && thumb.original.width < thumb.width * 3 )
                            );

                            // trigger the THUMBNAIL event
                            self.trigger({
                                type: Galleria.THUMBNAIL,
                                thumbTarget: thumb.image,
                                index: thumb.data.order
                            });
                        }
                    });
                });

                // preload all images here
                if ( o.preload == 'all' ) {
                    thumb.add( data.image );
                }

            // create empty spans if thumbnails is set to 'empty'
            } else if ( optval == 'empty' || optval == 'numbers' ) {

                thumb = {
                    container:  Utils.create( 'galleria-image' ),
                    image: Utils.create( 'img', 'span' ),
                    ready: true
                };

                // create numbered thumbnails
                if ( optval == 'numbers' ) {
                    $( thumb.image ).text( i + 1 );
                }
                
                this.$( 'thumbnails' ).append( thumb.container );
                
                // we need to "fake" a loading delay before we append and trigger
                // 50+ should be enough
                
                window.setTimeout((function(image, index, container) {
                    return function() {
                        $( container ).append( image );
                        self.trigger({
                            type: Galleria.THUMBNAIL,
                            thumbTarget: image,
                            index: index
                        });
                    }
                })( thumb.image, i, thumb.container ), 50 + (i*20) );
                

            // create null object to silent errors
            } else {
                thumb = {
                    container: null,
                    image: null
                };
            }

            // add events for thumbnails
            // you can control the event type using thumb_event_type
            // we'll add the same event to the source if it's kept

            $( thumb.container ).add( o.keep_source && o.link_source_images ? data.original : null )
                .data('index', i).bind(o.thumb_event_type, function(e) {
                    // pause if option is set
                    if ( o.pause_on_interaction ) {
                        self.pause();
                    }

                    // extract the index from the data
                    var index = $( e.currentTarget ).data( 'index' );
                    if ( self.getIndex() !== index ) {
                        self.show( index );
                    }

                    e.preventDefault();
            });

            this._thumbnails.push( thumb );
        }

        // make sure we have a stageHeight && stageWidth

        Utils.wait({

            until: function() {
                self._stageWidth  = self.$( 'stage' ).width();
                self._stageHeight = self.$( 'stage' ).height();
                return( self._stageWidth && 
                        self._stageHeight > 50 ); // what is an acceptable height?
            },

            success: function() {
                self.trigger( Galleria.READY );
            },

            error: function() {
                Galleria.raise('stage meassures not found');
            }

        });
    },

    /**
        Loads data into the gallery.
        You can call this method on an existing gallery to reload the gallery with new data.

        @param {Array or String} source Optional JSON array of data or selector of where to find data in the document.
        Defaults to the Galleria target or data_source option.

        @param {String} selector Optional element selector of what elements to parse.
        Defaults to 'img'.

        @param {Function} config Optional function to modify the data extraction proceedure from the selector.
        See the data_config option for more information.

        @returns {Galleria}
    */

    load : function( source, selector, config ) {

        var self = this;

        // empty the data array
        this._data = [];

        // empty the thumbnails
        this._thumbnails = [];
        this.$('thumbnails').empty();

        // shorten the arguments
        if ( typeof selector == 'function' ) {
            config = selector;
            selector = null;
        }

        // use the source set by target
        source = source || this._options.data_source;

        // use selector set by option
        selector = selector || this._options.data_selector;

        // use the data_config set by option
        config = config || this._options.data_config;

        // check if the data is an array already
        if ( source.constructor == Array ) {
            if ( this.validate( source) ) {
                this._data = source;
                this.trigger( Galleria.DATA );
            } else {
                Galleria.raise( 'Load failed: JSON Array not valid.' );
            }
            return this;
        }
        // loop through images and set data
        $( source ).find( selector ).each( function( i, img ) {
            var data = {},
                img = $( img ),
                parent = img.parent(),
                href = parent.attr( 'href' );

            // check if it's a link to another image
            if ( /\.(png|gif|jpg|jpeg)(\?.*)?$/i.test(href) ) {
                data.image = href;

            // else assign the href as a link if it exists
            } else if ( href ) {
                data.link = href;
            }

            // mix default extractions with the hrefs and config
            // and push it into the data array
            self._data.push( $.extend({

                title:       img.attr('title'),
                thumb:       img.attr('src'),
                image:       img.attr('src'),
                description: img.attr('alt'),
                link:        img.attr('longdesc'),
                original:    img.get(0) // saved as a reference

            }, data, config( img ) ) );

        });
        // trigger the DATA event and return
        if ( this.getDataLength() ) {
            this.trigger( Galleria.DATA );
        } else {
            Galleria.raise('Load failed: no data found.');
        }
        return this;

    },

    _getActive: function() {
        return this._controls.getActive();
    },

    validate : function( data ) {
        // todo: validate a custom data array
        return true;
    },

    /**
        Bind any event to Galleria

        @param {String} type The Event type to listen for
        @param {Function} fn The function to execute when the event is triggered

        @example this.bind( Galleria.IMAGE, function() { Galleria.log('image shown') });

        @returns {Galleria}
    */

    bind : function(type, fn) {
        this.$( 'container' ).bind( type, this.proxy(fn) );
        return this;
    },

    /**
        Unbind any event to Galleria

        @param {String} type The Event type to forget

        @returns {Galleria}
    */

    unbind : function(type) {
        this.$( 'container' ).unbind( type );
        return this;
    },

    /**
        Manually trigger a Galleria event

        @param {String} type The Event to trigger

        @returns {Galleria}
    */

    trigger : function( type ) {
        type = typeof type == 'object' ?
            $.extend( type, { scope: this } ) :
            { type: type, scope: this };
        this.$( 'container' ).trigger( type );
        return this;
    },

    /**
        Assign an "idle state" to any element.
        The idle state will be applied after a certain amount of idle time
        Useful to hide f.ex navigation when the gallery is inactive

        @param {HTML Element or String} elem The Dom node or selector to apply the idle state to
        @param {Object} styles the CSS styles to apply

        @example addIdleState( this.get('image-nav'), { opacity: 0 });
        @example addIdleState( '.galleria-image-nav', { top: -200 });

        @returns {Galleria}
    */

    addIdleState: function( elem, styles ) {
        this._idle.add.apply( this._idle, Utils.array( arguments ) );
        return this;
    },

    /**
        Removes any idle state previously set using addIdleState()

        @param {HTML Element or String} elem The Dom node or selector to remove the idle state from.

        @returns {Galleria}
    */

    removeIdleState: function( elem ) {
        this._idle.remove.apply( this._idle, Utils.array( arguments ) );
        return this;
    },

    /**
        Force Galleria to enter idle mode.

        @returns {Galleria}
    */

    enterIdleMode: function() {
        this._idle.hide();
        return this;
    },

    /**
        Force Galleria to exit idle mode.

        @returns {Galleria}
    */

    exitIdleMode: function() {
        this.idle._show();
        return this;
    },

    /**
        Enter FullScreen mode

        @param {Function} callback the function to be executed when the fullscreen mode is fully applied.

        @returns {Galleria}
    */

    enterFullscreen: function( callback ) {
        this._fullscreen.enter.apply( this, Utils.array( arguments ) );
        return this;
    },

    /**
        Exits FullScreen mode

        @param {Function} callback the function to be executed when the fullscreen mode is fully applied.

        @returns {Galleria}
    */

    exitFullscreen: function( callback ) {
        this._fullscreen.exit.apply( this, Utils.array( arguments ) );
        return this;
    },

    /**
        Adds a tooltip to any element.
        You can also call this method with an object as argument with elemID:value pairs to apply tooltips to (see examples)

        @param {HTML Element} elem The DOM Node to attach the event to
        @param {String or Function} value The tooltip message. Can also be a function that returns a string.

        @example this.bindTooltip( this.get('thumbnails'), 'My thumbnails');
        @example this.bindTooltip( this.get('thumbnails'), function() { return 'My thumbs' });
        @example this.bindTooltip( { image_nav: 'Navigation' });

        @returns {Galleria}
    */

    bindTooltip: function( elem, value ) {
        this._tooltip.bind.apply( this._tooltip, Utils.array(arguments) );
        return this;
    },

    /**
        Note: this method is deprecated. Use refreshTooltip() instead.
        
        Redefine a tooltip.
        Use this if you want to re-apply a tooltip value to an already bound tooltip element.

        @param {HTML Element} elem The DOM Node to attach the event to
        @param {String or Function} value The tooltip message. Can also be a function that returns a string.

        @returns {Galleria}
    */

    defineTooltip: function( elem, value ) {
        this._tooltip.define.apply( this._tooltip, Utils.array(arguments) );
        return this;
    },

    /**
        Refresh a tooltip value.
        Use this if you want to change the tooltip value at runtime, f.ex if you have a play/pause toggle.

        @param {HTML Element} elem The DOM Node that has a tooltip that should be refreshed

        @returns {Galleria}
    */

    refreshTooltip: function() {
        this._tooltip.show.apply( this._tooltip, Utils.array(arguments) );
        return this;
    },

    /**
        Open a pre-designed lightbox with the currently active image.
        You can control some visuals using gallery options.

        @returns {Galleria}
    */

    openLightbox: function() {
        this._lightbox.show.apply( this._lightbox, Utils.array( arguments ) );
        return this;
    },

    /**
        Close the lightbox.

        @returns {Galleria}
    */

    closeLightbox: function() {
        this._lightbox.hide.apply( this._lightbox, Utils.array( arguments ) );
        return this;
    },

    /**
        Get the currently active image element.

        @returns {HTML Element} The image element
    */

    getActiveImage: function() {
        return this._getActive().image || undef;
    },

    /**
        Get the currently active thumbnail element.

        @returns {HTML Element} The thumbnail element
    */

    getActiveThumb: function() {
        return this._thumbnails[ this._active ].image || undef;
    },

    /**
        Get the mouse position relative to the gallery container

        @param e The mouse event

        @example

var gallery = this;
$(document).mousemove(function(e) {
    console.log( gallery.getMousePosition(e).x );
});

        @returns {Object} Object with x & y of the relative mouse postion
    */

    getMousePosition : function(e) {
        return {
            x: e.pageX - this.$( 'container' ).offset().left,
            y: e.pageY - this.$( 'container' ).offset().top
        };
    },

    /**
        Adds a panning effect to the image

        @param img The optional image element. If not specified it takes the currently active image

        @returns {Galleria}
    */

    addPan : function( img ) {

        if ( this._options.image_crop === false ) {
            return;
        }

        img = $( img || this.getActiveImage() );

        // define some variables and methods
        var self   = this,
            x      = img.width() / 2,
            y      = img.height() / 2,
            curX   = destX = parseInt( img.css( 'left' ) ) || 0,
            curY   = destY = parseInt( img.css( 'top' ) ) || 0,
            distX  = 0,
            distY  = 0,
            active = false,
            ts     = Utils.timestamp(),
            cache  = 0,
            move   = 0,

            // positions the image
            position = function( dist, cur, pos ) {
                if ( dist > 0 ) {
                    move = Math.round( Math.max( dist * -1, Math.min( 0, cur ) ) );
                    if ( cache != move ) {

                        cache = move;

                        if ( IE == 8 ) { // scroll is faster for IE
                            img.parent()[ 'scroll' + pos ]( move * -1 );
                        } else {
                            var css = {};
                            css[ pos.toLowerCase() ] = move;
                            img.css(css);
                        }
                    }
                }
            },

            // calculates mouse position after 50ms
            calculate = function(e) {
                if (Utils.timestamp() - ts < 50) {
                    return;
                }
                active = true;
                x = self.getMousePosition(e).x;
                y = self.getMousePosition(e).y;
            },

            // the main loop to check
            loop = function(e) {

                if (!active) {
                    return;
                }

                distX = img.width() - self._stageWidth;
                distY = img.height() - self._stageHeight;
                destX = x / self._stageWidth * distX * -1;
                destY = y / self._stageHeight * distY * -1;
                curX += ( destX - curX ) / self._options.image_pan_smoothness;
                curY += ( destY - curY ) / self._options.image_pan_smoothness;

                position( distY, curY, 'Top' );
                position( distX, curX, 'Left' );

            };

        // we need to use scroll in IE8 to speed things up
        if ( IE == 8 ) {

            img.parent().scrollTop( curY * -1 ).scrollLeft( curX * -1 );
            img.css({
                top: 0,
                left: 0
            });

        }

        // unbind and bind event
        this.$( 'stage' ).unbind( 'mousemove', calculate ).bind( 'mousemove', calculate );

        // loop the loop
        Utils.addTimer('pan', loop, 50, true);

        return this;
    },

    /**
        Brings the scope into any callback

        @param fn The callback to bring the scope into
        @param scope Optional scope to bring

        @example $('#fullscreen').click( this.proxy(function() { this.enterFullscreen(); }) )

        @returns {Function} Return the callback with the gallery scope
    */

    proxy : function( fn, scope ) {
        if ( typeof fn !== 'function' ) {
            return function() {};
        }
        scope = scope || this;
        return function() {
            return fn.apply( scope, Utils.array( arguments ) );
        };
    },

    /**
        Removes the panning effect set by addPan()

        @returns {Galleria}
    */

    removePan: function() {

        if ( IE == 8 ) {
            // todo: doublecheck this
        }
        this.$( 'stage' ).unbind( 'mousemove' );

        Utils.clearTimer('pan');

        return this;
    },

    /**
        Adds an element to the Galleria DOM array.
        When you add an element here, you can access it using element ID in many API calls

        @param {String} id The element ID you wish to use. You can add many elements by adding more arguments.

        @example addElement('mybutton');
        @example addElement('mybutton','mylink');

        @returns {Galleria}
    */

    addElement : function( id ) {

        var dom = this._dom;

        $.each( Utils.array(arguments), function( i, blueprint ) {
           dom[ blueprint ] = Utils.create( 'galleria-' + blueprint );
        });

        return this;
    },

    /**
        Attach keyboard events to Galleria

        @param {Object} map The map object of events.
        Possible keys are 'UP', 'DOWN', 'LEFT', 'RIGHT', 'RETURN', 'ESCAPE', 'BACKSPACE', and 'SPACE'.

        @example

this.attachKeyboard({
    right: this.next,
    left: this.prev,
    up: function() {
        console.log( 'up key pressed' )
    }
});

        @returns {Galleria}
    */

    attachKeyboard : function( map ) {
        this._keyboard.attach.apply( this._keyboard, Utils.array( arguments ) );
        return this;
    },

    /**
        Detach all keyboard events to Galleria

        @returns {Galleria}
    */

    detachKeyboard : function() {
        this._keyboard.detach.apply( this._keyboard, Utils.array( arguments ) );
        return this;
    },

    /**
        Fast helper for appending galleria elements that you added using addElement()

        @param {String} parentID The parent element ID where the element will be appended
        @param {String} childID the element ID that should be appended

        @example this.addElement('myElement');
        this.appendChild( 'info', 'myElement' );

        @returns {Galleria}
    */

    appendChild : function( parentID, childID ) {
        this.$( parentID ).append( this.get( childID ) || childID );
        return this;
    },

    /**
        Fast helper for appending galleria elements that you added using addElement()

        @param {String} parentID The parent element ID where the element will be preppended
        @param {String} childID the element ID that should be preppended

        @example

this.addElement('myElement');
this.prependChild( 'info', 'myElement' );

        @returns {Galleria}
    */

    prependChild : function( parentID, childID ) {
        this.$( parentID ).prepend( this.get( childID ) || childID );
        return this;
    },

    /**
        Remove an element by blueprint

        @param {String} elemID The element to be removed.
        You can remove multiple elements by adding arguments.

        @returns {Galleria}
    */

    remove : function( elemID ) {
        this.$( Utils.array( arguments ).join(',') ).remove();
        return this;
    },

    // a fast helper for building dom structures
    // leave this out of the API for now

    append : function( data ) {
        for( var i in data) {
            if ( data[i].constructor == Array ) {
                for( var j = 0; data[i][j]; j++ ) {
                    this.appendChild( i, data[i][j] );
                }
            } else {
                this.appendChild( i, data[i] );
            }
        }
        return this;
    },

    // an internal helper for scaling according to options
    _scaleImage : function( image, options ) {
        
        options = $.extend({
            width:    this._stageWidth,
            height:   this._stageHeight,
            crop:     this._options.image_crop,
            max:      this._options.max_scale_ratio,
            min:      this._options.min_scale_ratio,
            margin:   this._options.image_margin,
            position: this._options.image_position
        }, options );

       ( image || this._controls.getActive() ).scale( options );

        return this;
    },

    /**
        Updates the carousel,
        useful if you resize the gallery and want to re-check if the carousel nav is needed.

        @returns {Galleria}
    */

    updateCarousel : function() {
        this._carousel.update();
        return this;
    },

    /**
        Rescales the gallery

        @param {Number} width The target width
        @param {Number} height The target height
        @param {Function} complete The callback to be called when the scaling is complete

        @returns {Galleria}
    */

    rescale : function( width, height, complete ) {

        var self = this;

        // allow rescale(fn)
        if ( typeof width == 'function' ) {
            complete = width;
            width = undef;
        }

        var scale = function() {

            // shortcut
            var o = self._options;

            // set stagewidth
            self._stageWidth = width || self.$( 'stage' ).width();
            self._stageHeight = height || self.$( 'stage' ).height();

            // scale the active image
            self._scaleImage();

            if ( self._options.carousel ) {
                self.updateCarousel();
            }

            self.trigger( Galleria.RESCALE );

            if ( typeof complete == 'function' ) {
                complete.call( self );
            }
        };

        if ( Galleria.WEBKIT && !width && !height ) {
            Utils.addTimer( 'scale', scale, 5 );// webkit is too fast
        } else {
            scale.call( self );
        }

        return this;
    },

    /**
        Refreshes the gallery.
        Useful if you change image options at runtime and want to apply the changes to the active image.

        @returns {Galleria}
    */

    refreshImage : function() {
        this._scaleImage();
        if ( this._options.image_pan ) {
            this.addPan();
        }
        return this;
    },

    /**
        Shows an image by index

        @param {Number} index The index to show
        @param {Boolean} rewind A boolean that should be true if you want the transition to go back

        @returns {Galleria}
    */

    show : function( index, rewind, _history ) {

        // do nothing if index is false or queue is false and transition is in progress
        if ( index === false || !this._options.queue && this._queue.stalled ) {
            return;
        }
        
        index = Math.max( 0, Math.min( parseInt(index), this.getDataLength() - 1 ) );

        rewind = typeof rewind != 'undefined' ? !!rewind : index < this.getIndex();

        _history = _history || false;

        // do the history thing and return
        if ( !_history && Galleria.History ) {
            Galleria.History.value( index.toString() );
            return;
        }

        this._active = index;

        Array.prototype.push.call( this._queue, {
            index : index,
            rewind : rewind
        });
        if ( !this._queue.stalled ) {
            this._show();
        }

        return this;
    },

    // the internal _show method does the actual showing
    _show : function() {

        // shortcuts
        var self   = this,
            queue  = this._queue[ 0 ],
            data   = this.getData( queue.index );
        
        if ( !data ) {
            return;
        }
        
        var src    = data.image,
            active = this._controls.getActive(),
            next   = this._controls.getNext(),
            cached = next.isCached( src ),
            thumb  = this._thumbnails[ queue.index ];

            // to be fired when loading & transition is complete:
        var complete = function() {

            // remove stalled
            self._queue.stalled = false;

            // optimize quality
            Utils.toggleQuality( next.image, self._options.image_quality );

            // swap
            $( active.container ).css({
                zIndex: 0,
                opacity: 0
            });
            $( next.container ).css({
                zIndex: 1,
                opacity: 1
            });
            self._controls.swap();

            // add pan according to option
            if ( self._options.image_pan ) {
                self.addPan( next.image );
            }

            // make the image link
            if ( data.link ) {
                $( next.image ).css({
                    cursor: 'pointer'
                }).bind( CLICK(), function() {

                    // popup link
                    if ( self._options.popup_links ) {
                        var win = window.open( data.link, '_blank' );
                    } else {
                        window.location.href = data.link;
                    }
                });
            }

            // remove the queued image
            Array.prototype.shift.call( self._queue );

            // if we still have images in the queue, show it
            if ( self._queue.length ) {
                self._show();
            }

            // check if we are playing
            self._playCheck();

            // trigger IMAGE event
            self.trigger({
                type:        Galleria.IMAGE,
                index:       queue.index,
                imageTarget: next.image,
                thumbTarget: thumb.image
            });
        };

        // let the carousel follow
        if ( this._options.carousel && this._options.carousel_follow ) {
            this._carousel.follow( queue.index );
        }

        // preload images
        if ( this._options.preload ) {

            var p,
                n = this.getNext();

            try {
                for ( var i = this._options.preload; i > 0; i-- ) {
                    p = new Galleria.Picture();
                    p.add( self.getData( n ).image );
                    n = self.getNext( n );
                }
            } catch(e) {}
        }

        // show the next image, just in case
        Utils.show( next.container );

        // add active classes
        $( self._thumbnails[ queue.index ].container )
            .addClass( 'active' )
            .siblings( '.active' )
            .removeClass( 'active' );

        // trigger the LOADSTART event
        self.trigger( {
            type: Galleria.LOADSTART,
            cached: cached,
            index: queue.index,
            imageTarget: next.image,
            thumbTarget: thumb.image
        });
        // begin loading the next image
        next.load( src, function( next ) {
            self._scaleImage( next, {

                complete: function( next ) {

                    Utils.show( next.container );

                    // toggle low quality for IE
                    if ( 'image' in active ) {
                        Utils.toggleQuality( active.image, false );
                    }
                    Utils.toggleQuality( next.image, false );

                    // stall the queue
                    self._queue.stalled = true;

                    // remove the image panning, if applied
                    // TODO: rethink if this is necessary
                    self.removePan();

                    // set the captions and counter
                    self.setInfo( queue.index );
                    self.setCounter( queue.index );

                    // trigger the LOADFINISH event
                    self.trigger({
                        type: Galleria.LOADFINISH,
                        cached: cached,
                        index: queue.index,
                        imageTarget: next.image,
                        thumbTarget: self._thumbnails[ queue.index ].image
                    });

                    var transition = active.image === null && self._options.transition_initial ?
                        self._options.transition_initial : self._options.transition;

                    // validate the transition
                    if ( transition in _transitions === false ) {

                        complete();

                    } else {
                        var params = {
                            prev:   active.image,
                            next:   next.image,
                            rewind: queue.rewind,
                            speed:  self._options.transition_speed || 400
                        };

                        // call the transition function and send some stuff
                        _transitions[ transition ].call(self, params, complete );

                    }
                }
            });
        });
    },

    /**
        Gets the next index

        @param {Number} base Optional starting point

        @returns {Number} the next index, or the first if you are at the first (looping)
    */

    getNext : function( base ) {
        base = typeof base == 'number' ? base : this.getIndex();
        return base == this.getDataLength() - 1 ? 0 : base + 1;
    },

    /**
        Gets the previous index

        @param {Number} base Optional starting point

        @returns {Number} the previous index, or the last if you are at the first (looping)
    */

    getPrev : function( base ) {
        base = typeof base == 'number' ? base : this.getIndex();
        return base === 0 ? this.getDataLength() - 1 : base - 1;
    },

    /**
        Shows the next image in line

        @returns {Galleria}
    */

    next : function() {
        if ( this.getDataLength() > 1 ) {
            this.show( this.getNext(), false );
        }
        return this;
    },

    /**
        Shows the previous image in line

        @returns {Galleria}
    */

    prev : function() {
        if ( this.getDataLength() > 1 ) {
            this.show( this.getPrev(), true );
        }
        return this;
    },

    /**
        Retrieve a DOM element by element ID

        @param {String} elemId The delement ID to fetch

        @returns {HTML Element} The elements DOM node or null if not found.
    */

    get : function( elemId ) {
        return elemId in this._dom ? this._dom[ elemId ] : null;
    },

    /**
        Retrieve a data object

        @param {Number} index The data index to retrieve.
        If no index specified it will take the currently active image

        @returns {Object} The data object
    */

    getData : function( index ) {
        return index in this._data ?
            this._data[ index ] : this._data[ this._active ];
    },

    /**
        Retrieve the number of data items

        @returns {Number} The data length
    */
    getDataLength : function() {
        return this._data.length;
    },

    /**
        Retrieve the currently active index

        @returns {Number} The active index
    */

    getIndex : function() {
        return typeof this._active === 'number' ? this._active : false;
    },

    /**
        Retrieve the stage height

        @returns {Number} The stage height
    */

    getStageHeight : function() {
        return this._stageHeight;
    },

    /**
        Retrieve the stage width

        @returns {Number} The stage width
    */

    getStageWidth : function() {
        return this._stageWidth;
    },

    /**
        Retrieve the option

        @param {String} key The option key to retrieve. If no key specified it will return all options in an object.

        @returns option or options
    */

    getOptions : function( key ) {
        return typeof key == 'undefined' ? this._options : this._options[ key ];
    },

    /**
        Set options to the instance.
        You can set options using a key & value argument or a single object argument (see examples)

        @param {String} key The option key
        @param {String} value the the options value

        @example setOptions( 'autoplay', true )
        @example setOptions({ autoplay: true });

        @returns {Galleria}
    */

    setOptions : function( key, value ) {
        if ( typeof key == 'object' ) {
            $.extend( this._options, key );
        } else {
            this._options[ key ] = value;
        }
        return this;
    },

    /**
        Starts playing the slideshow

        @param {Number} delay Sets the slideshow interval in milliseconds.
        If you set it once, you can just call play() and get the same interval the next time.

        @returns {Galleria}
    */

    play : function( delay ) {
        
        this._playing = true;
        
        this._playtime = delay || this._playtime;

        this._playCheck();
        
        this.trigger( Galleria.PLAY );

        return this;
    },

    /**
        Stops the slideshow if currently playing

        @returns {Galleria}
    */

    pause : function() {
        
        this._playing = false;
        
        this.trigger( Galleria.PAUSE );
        
        return this;
    },

    /**
        Toggle between play and pause events.

        @param {Number} delay Sets the slideshow interval in milliseconds.

        @returns {Galleria}
    */

    playToggle : function( delay ) {
        return ( this._playing ) ? this.pause() : this.play( delay );
    },
    
    /**
        Checks if the gallery is currently playing

        @returns {Boolean}
    */
    
    isPlaying : function() {
        return this._playing;
    },

    _playCheck : function() {
        var self = this,
            played = 0,
            interval = 20,
            now = Utils.timestamp();

        if ( this._playing ) {

            Utils.clearTimer('play');
            var fn = function() {

                played = Utils.timestamp() - now;
                if ( played >= self._playtime && self._playing ) {
                    Utils.clearTimer('play');
                    self.next();
                    return;
                }
                if ( self._playing ) {

                    // trigger the PROGRESS event
                    self.trigger({
                        type:         Galleria.PROGRESS,
                        percent:      Math.ceil( played / self._playtime * 100 ),
                        seconds:      Math.floor( played / 1000 ),
                        milliseconds: played
                    });

                    Utils.addTimer( 'play', fn, interval );
                }
            };
            Utils.addTimer( 'play', fn, interval );
        }
    },

    setIndex: function( val ) {
        this._active = val;
        return this;
    },

    /**
        Manually modify the counter

        @param {Number} index Optional data index to fectch,
        if no index found it assumes the currently active index

        @returns {Galleria}
    */

    setCounter: function( index ) {

        if ( typeof index == 'number' ) {
            index++;
        } else if ( typeof index == 'undefined' ) {
            index = this.getIndex()+1;
        }

        this.get( 'current' ).innerHTML = index;

        if ( IE == 8 ) { // weird IE8 bug

            var opacity = this.$( 'counter' ).css( 'opacity' );
            this.$( 'counter' ).css( 'opacity', opacity );

        }

        return this;
    },

    /**
        Manually set captions

        @param {Number} index Optional data index to fectch and apply as caption,
        if no index found it assumes the currently active index

        @returns {Galleria}
    */

    setInfo : function( index ) {

        var self = this,
            data = this.getData( index );

        $.each( ['title','description','author'], function( i, type ) {

            var elem = self.$( 'info-' + type );

            if ( !!data[type] ) {
                elem[ data[ type ].length ? 'show' : 'hide' ]().html( data[ type ] );
            } else {
               elem.empty().hide();
            }
        });

        return this;
    },

    /**
        Checks if the data contains any captions

        @param {Number} index Optional data index to fectch,
        if no index found it assumes the currently active index.

        @returns {Boolean}
    */

    hasInfo : function( index ) {

        var d = this.getData( index );
        var check = 'title description'.split(' ');
        for ( var i = 0; check[i]; i++ ) {
            if ( !!this.getData( index )[ check[i] ] ) {
                return true;
            }
        }
        return false;

    },

    jQuery : function( str ) {

        var self = this,
            ret = [];

        $.each( str.split(','), function( i, elemId ) {
            elemId = $.trim( elemId );

            if ( self.get( elemId ) ) {
                ret.push( elemId );
            }
        });

        var jQ = $( self.get( ret.shift() ) );

        $.each( ret, function( i, elemId ) {
            jQ = jQ.add( self.get( elemId ) );
        });

        return jQ;

    },

    /**
        Converts element IDs into a jQuery collection
        You can call for multiple IDs separated with commas.

        @param {String} str One or more element IDs (comma-separated)

        @returns {jQuery}

        @example this.$('info,container').hide();
    */

    $ : function() {
        return this.jQuery.apply( this, Utils.array( arguments ) );
    }

};

// End of Galleria prototype

$.extend( Galleria, {

    // Event placeholders
    DATA:             'g_data',
    READY:            'g_ready',
    THUMBNAIL:        'g_thumbnail',
    LOADSTART:        'g_loadstart',
    LOADFINISH:       'g_loadfinish',
    IMAGE:            'g_image',
    THEMELOAD:        'g_themeload',
    PLAY:             'g_play',
    PAUSE:            'g_pause',
    PROGRESS:         'g_progress',
    FULLSCREEN_ENTER: 'g_fullscreen_enter',
    FULLSCREEN_EXIT:  'g_fullscreen_exit',
    IDLE_ENTER:       'g_idle_enter',
    IDLE_EXIT:        'g_idle_exit',
    RESCALE:          'g_rescale',
    LIGHTBOX_OPEN:    'g_lightbox_open',
    LIGHTBOX_CLOSE:   'g_lightbox_close',
    LIGHTBOX_IMAGE:   'g_lightbox_image',

    // Browser helpers
    IE9:     IE == 9,
    IE8:     IE == 8,
    IE7:     IE == 7,
    IE6:     IE == 6,
    IE:      !!IE,
    WEBKIT:  /webkit/.test( NAV ),
    SAFARI:  /safari/.test( NAV ),
    CHROME:  /chrome/.test( NAV ),
    QUIRK:   ( IE && doc.compatMode && doc.compatMode == "BackCompat" ),
    MAC:     /mac/.test( navigator.platform.toLowerCase() ),
    OPERA:   !!window.opera,
    IPHONE:  /iphone/.test( NAV ),
    IPAD:    /ipad/.test( NAV ),
    ANDROID: /android/.test( NAV ),

    // Todo detect touch devices in a better way, possibly using event detection
    TOUCH:   !!( /iphone/.test( NAV ) || /ipad/.test( NAV ) || /android/.test( NAV ) )

});

// Galleria static methods

/**
    Adds a theme that you can use for your Gallery

    @param {Object} theme Object that should contain all your theme settings.
    <ul>
        <li>name – name of the theme</li>
        <li>author - name of the author</li>
        <li>version - version number</li>
        <li>css - css file name (not path)</li>
        <li>defaults - default options to apply, including theme-specific options</li>
        <li>init - the init function</li>
    </ul>

    @returns {Object} theme
*/

Galleria.addTheme = function( theme ) {

    // make sure we have a name
    if ( !!theme['name'] === false ) {
        Galleria.raise('No theme name specified');
    }

    if ( typeof theme.defaults != 'object' ) {
        theme.defaults = {};
    }

    if ( typeof theme.css == 'string' ) {

        var css;

        // look for the absolute path
        $('script').each(function( i, script ) {

            // look for the theme script
            var reg = new RegExp( 'galleria\\.' + theme.name.toLowerCase() + '\\.' );
            if( reg.test( script.src )) {

                // we have a match
                css = script.src.replace(/[^\/]*$/, '') + theme.css;

                Utils.addTimer( "css", function() {
                    Utils.loadCSS( css, 'galleria-theme', function() {
                        Galleria.theme = theme;
                        $doc.trigger( Galleria.THEMELOAD );
                    });
                }, 1);

            }
        });

        if ( !css ) {
            Galleria.raise('No theme CSS loaded');
        }
    } else {
        Galleria.theme = theme;
        $doc.trigger( Galleria.THEMELOAD );
    }
    return theme;
};

/**
    loadTheme loads a theme js file and attaches a load event to Galleria

    @param {String} src The relative path to the theme source file

    @param {Object} option Optional options you want to apply
*/

Galleria.loadTheme = function( src, options ) {

    var loaded = false,
        length = _galleries.length;

    // first clear the current theme, if exists
    Galleria.theme = undef;

    // load the theme
    Utils.loadScript( src, function() {
        loaded = true;
    } );

    // set a 1 sec timeout, then display a hard error if no theme is loaded
    Utils.wait({
        until: function() {
            return loaded;
        },
        error: function() {
            Galleria.raise( "Theme at " + src + " could not load, check theme path.", true );
        },
        success: function() {

            // check for existing galleries and reload them with the new theme
            if ( length ) {

                // temporary save the new galleries
                var refreshed = [];

                // refresh all instances
                // when adding a new theme to an existing gallery, all options will be resetted but the data will be kept
                // you can apply new options as a second argument
                $.each( Galleria.get(), function(i, instance) {

                    // mix the old data and options into the new instance
                    var op = $.extend( instance._original.options, {
                        data_source: instance._data
                    }, options);

                    // remove the old container
                    instance.$('container').remove();

                    // create a new instance
                    var g = new Galleria();

                    // move the id
                    g._id = instance._id;

                    // initialize the new instance
                    g.init( instance._original.target, op );

                    // push the new instance
                    refreshed.push( g );
                });

                // now overwrite the old holder with the new instances
                _galleries = refreshed;
            }
        },
        timeout: 2000
    });
};

/**
    Retrieves a Galleria instance.

    @param {Number} index Optional index to retrieve.
    If no index is supplied, the method will return all instances in an array.

    @returns {Galleria or Array}
*/

Galleria.get = function( index ) {
    if ( !!_galleries[ index ] ) {
        return _galleries[ index ];
    } else if ( typeof index !== 'number' ) {
        return _galleries;
    } else {
        Galleria.raise('Gallery index ' + index + ' not found');
    }
};

/**
    Creates a transition to be used in your gallery

    @param {String} name The name of the transition that you will use as an option

    @param {Function} fn The function to be executed in the transition.
    The function contains two arguments, params and complete.
    Use the params Object to integrate the transition, and then call complete when you are done.

*/

Galleria.addTransition = function( name, fn ) {
    _transitions[name] = fn;
};

Galleria.utils = Utils;

/**
    A helper metod for cross-browser logging.
    It uses the console log if available otherwise it falls back to the opera
    debugger and finally <code>alert()</code>

    @example Galleria.log("hello", document.body, [1,2,3]);
*/

Galleria.log = function() {
    try {
        window.console.log.apply( window.console, Utils.array(arguments) );
    } catch( e ) {
        try {
            opera.postError.apply( opera, arguments );
        } catch( er ) {
              alert( Utils.array(arguments).split(', ') );
        }
    }
};

/**
    Method for raising errors

    @param {String} msg The message to throw

    @param {Boolean} fatal Set this to true to override debug settings and display a fatal error
*/

Galleria.raise = function( msg, fatal ) {
    if ( DEBUG || fatal ) {
        var type = fatal ? 'Fatal error' : 'Error';
        throw new Error( type + ': ' + msg );
    }
};

/**
    Adds preload, cache, scale and crop functionality

    @constructor

    @requires jQuery

    @param {Number} id Optional id to keep track of instances
*/

Galleria.Picture = function( id ) {

    // save the id
    this.id = id || null;

    // the image should be null until loaded
    this.image = null;

    // Create a new container
    this.container = Utils.create('galleria-image');

    // add container styles
    $( this.container ).css({
        overflow: 'hidden',
        position: 'relative' // for IE Standards mode
    });

    // saves the original meassurements
    this.original = {
        width: 0,
        height: 0
    };

    // flag when the image is ready
    this.ready = false;

    // flag when the image is loaded
    this.loaded = false;

};

Galleria.Picture.prototype = {

    // the inherited cache object
    cache: {},

    // creates a new image and adds it to cache when loaded
    add: function( src ) {

        var self = this;

        // create the image
        var image = new Image();

        // force a block display
        $( image ).css( 'display', 'block');

        if ( self.cache[ src ] ) {
            // no need to onload if the image is cached
            image.src = src;
            self.loaded = true;
            self.original = {
                height: image.height,
                width: image.width
            };
            return image;
        }

        // begin preload and insert in cache when done
        image.onload = function() {
            self.original = {
                height: this.height,
                width: this.width
            };
            self.cache[ src ] = src; // will override old cache
            self.loaded = true;
        };

        image.src = src;
        return image;

    },

    // show the image on stage
    show: function() {
        Utils.show( this.image );
    },

    // hide the image
    hide: function() {
        Utils.moveOut( this.image );
    },

    clear: function() {
        this.image = null;
    },

    /**
        Checks if an image is in cache

        @param {String} src The image source path, ex '/path/to/img.jpg'

        @returns {Boolean}
    */

    isCached: function( src ) {
        return !!this.cache[src];
    },

    /**
        Loads an image and call the callback when ready.
        Will also add the image to cache.

        @param {String} src The image source path, ex '/path/to/img.jpg'
        @param {Function} callback The function to be executed when the image is loaded & scaled

        @returns {jQuery} The image container object
    */

    load: function(src, callback) {

        // save the instance
        var self = this;

        $( this.container ).empty(true);

        // add the image to cache and hide it
        this.image = this.add( src );
        Utils.hide( this.image );

        // append the image into the container
        $( this.container ).append( this.image );

        // check for loaded image using a timeout
        Utils.wait({
            until: function() {
                // TODO this should be properly tested in Opera
                return self.loaded && self.image.complete && self.image.width;
            },
            success: function() {
                // call success
                window.setTimeout(function() { callback.call( self, self ); }, 50 );
            },
            error: function() {
                window.setTimeout(function() { callback.call( self, self ); }, 50 );
                Galleria.raise('image not loaded in 10 seconds: '+ src);
            },
            timeout: 10000
        });

        // return the container
        return this.container;
    },

    /**
        Scales and crops the image

        @param {Object} options The method takes an object with a number of options:

        <ul>
            <li>width - width of the container</li>
            <li>height - height of the container</li>
            <li>min - minimum scale ratio</li>
            <li>max - maximum scale ratio</li>
            <li>margin - distance in pixels from the image border to the container</li>
            <li>complete - a callback that fires when scaling is complete</li>
            <li>position - positions the image, works like the css background-image property.</li>
            <li>crop - defines how to crop. Can be true, false, 'width' or 'height'</li>
        </ul>

        @returns {jQuery} The image container object
    */

    scale: function( options ) {

        // extend some defaults
        options = $.extend({
            width: 0,
            height: 0,
            min: undef,
            max: undef,
            margin: 0,
            complete: function() {},
            position: 'center',
            crop: false
        }, options);

        // return the element if no image found
        if (!this.image) {
            return this.container;
        }

        // store locale variables of width & height
        var width,
            height,
            self = this,
            $container = $( self.container );

        // wait for the width/height
        Utils.wait({
            until: function() {

                width  = options.width
                    || $container.width()
                    || Utils.parseValue( $container.css('width') );

                height = options.height
                    || $container.height()
                    || Utils.parseValue( $container.css('height') );

                return width && height;
            },
            success: function() {
                // calculate some cropping
                var newWidth = ( width - options.margin * 2 ) / self.original.width,
                    newHeight = ( height - options.margin * 2 ) / self.original.height,
                    cropMap = {
                        'true'  : Math.max( newWidth, newHeight ),
                        'width' : newWidth,
                        'height': newHeight,
                        'false' : Math.min( newWidth, newHeight )
                    },
                    ratio = cropMap[ options.crop.toString() ];

                // allow max_scale_ratio
                if ( options.max ) {
                    ratio = Math.min( options.max, ratio );
                }

                // allow min_scale_ratio
                if ( options.min ) {
                    ratio = Math.max( options.min, ratio );
                }

                $( self.container ).width( width ).height( height );

                // round up the width / height
                $.each( ['width','height'], function( i, m ) {
                    $( self.image )[ m ]( self[ m ] = Math.ceil( self.original[ m ] * ratio ) );
                });

                // calculate image_position
                var pos = {},
                    mix = {},
                    getPosition = function(value, meassure, margin) {
                        var result = 0;
                        if (/\%/.test(value)) {
                            var flt = parseInt(value) / 100;
                            result = Math.ceil( $( self.image )[ meassure ]() * -1 * flt + margin * flt );
                        } else {
                            result = Utils.parseValue( value );
                        }
                        return result;
                    },
                    positionMap = {
                        'top': { top: 0 },
                        'left': { left: 0 },
                        'right': { left: '100%' },
                        'bottom': { top: '100%' }
                    };

                $.each( options.position.toLowerCase().split(' '), function( i, value ) {
                    if ( value == 'center' ) {
                        value = '50%';
                    }
                    pos[i ? 'top' : 'left'] = value;
                });

                $.each( pos, function( i, value ) {
                    if ( positionMap.hasOwnProperty( value ) ) {
                        $.extend( mix, positionMap[ value ] );
                    }
                });

                pos = pos.top ? $.extend( pos, mix ) : mix;

                pos = $.extend({
                    top: '50%',
                    left: '50%'
                }, pos);

                // apply position
                $( self.image ).css({
                    position : 'relative',
                    top :  getPosition(pos.top, 'height', height) - options.margin,
                    left : getPosition(pos.left, 'width', width) - options.margin
                });

                // show the image
                self.show();

                // flag ready and call the callback
                self.ready = true;
                options.complete.call( self, self );
            },
            error: function() {
                Galleria.raise('Could not scale image: '+self.image.src);
            },
            timeout: 1000
        });
        return this;
    }
};

// our own easings
$.extend( $.easing, {
    galleria: function (_, t, b, c, d) {
        if ((t/=d/2) < 1) {
            return c/2*t*t*t*t + b;
        }
        return -c/2 * ((t-=2)*t*t*t - 2) + b;
    },
    galleriaIn: function (_, t, b, c, d) {
    return c*(t/=d)*t*t*t + b;
  },
  galleriaOut: function (_, t, b, c, d) {
    return -c * ((t=t/d-1)*t*t*t - 1) + b;
  }
});

// the plugin initializer
$.fn.galleria = function( options ) {

    return this.each(function() {

        var gallery = new Galleria();
        gallery.init( this, options );

    });
};

// expose Galleria
window.Galleria = Galleria;

// phew

})( jQuery );;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * (C) Eduardo Recife, 2001  [www.misprintedtype.com ]
 */
Cufon.registerFont({"w":124,"face":{"font-family":"Dirty Ego","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"288","descent":"-72","bbox":"-45 -302.154 521 49","underline-thickness":"3.51562","underline-position":"-21.6211","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":61},"!":{"d":"45,-222v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm35,-224v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm37,-142v0,2,0,4,-2,3v0,-2,0,-4,2,-3xm37,-203v-4,24,-2,41,-7,61v10,13,-5,29,3,44v-2,7,-7,14,-2,20v-1,9,-19,20,-24,6v1,-48,-7,-104,-2,-148v7,2,35,-3,32,17xm40,-104v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm37,-36v-3,18,4,32,-15,36r2,-1v-3,-5,-13,-2,-19,-1r0,-32v13,-2,23,-2,32,-2xm11,0v1,-1,4,-1,5,0v-2,1,-4,1,-5,0xm5,-179v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm18,-65v2,-1,0,-3,0,-5v-2,1,-3,4,0,5xm9,-72v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm14,-65v2,-1,1,-4,0,-5v-2,1,-3,4,0,5","w":48},"\"":{"d":"38,-243v0,1,0,1,-1,1xm28,-242v0,-2,3,0,1,0r-1,0xm31,-205v-11,3,-7,-20,-8,-35r13,-1v-1,6,-3,14,-1,20r3,0v-6,-1,-4,12,-7,16xm16,-226v0,1,0,1,-1,1xm16,-239v-6,12,7,36,-11,35v-2,-4,-3,-15,-3,-35r5,0v-1,1,-1,1,0,2v0,-3,5,-2,9,-2xm27,-237v2,-1,0,-3,0,-1r0,1xm24,-237v2,-1,0,-3,0,-1r0,1xm9,-238v1,0,1,0,1,-1xm13,-220v0,-1,2,-4,-1,-3xm5,-214v2,-1,0,-3,0,-1r0,1","w":40},"#":{"d":"96,-226v0,2,1,5,-2,4xm90,-188v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm157,-97v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm143,-108r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm147,-97v0,-2,3,-1,4,-1v0,2,-3,1,-4,1xm113,-133v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm174,-97v0,26,-16,41,-28,17v4,0,9,-1,7,5v8,-3,9,-12,2,-16v4,-1,11,-3,19,-6xm134,-91v0,2,-4,3,-4,0v0,-2,4,-3,4,0xm149,-167v3,13,21,6,34,6v6,41,-39,26,-68,26v-15,0,-14,8,-17,4v-2,-8,-24,-3,-21,4v0,4,-2,14,-8,28v8,7,29,9,40,2v0,-6,5,-32,8,-34r26,2v-2,6,0,15,4,17v-10,1,-11,6,-7,13v-5,-1,-7,1,-4,4v-18,-1,-15,34,-44,21v-2,5,-8,5,-13,2v-23,1,-12,37,-23,49r-26,0v0,-13,15,-39,-3,-44v1,3,1,3,-1,4v-3,-1,-1,-4,0,-5v-5,-4,-19,0,-24,-5v-6,-34,29,-8,39,-29v15,-30,-7,-50,-30,-46v1,-9,9,-16,11,-6v5,-13,28,3,31,-19r7,-46r26,-4v2,32,-8,41,-5,62v5,-6,9,-4,11,2r21,0v10,2,14,-58,17,-61r28,-3v-2,16,-9,36,-1,47v-6,0,-8,3,-8,9xm143,-72v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm139,-60v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm121,-78v3,1,3,3,3,6v-2,-1,-6,-3,-3,-6xm128,-44v-2,-1,-5,-6,0,-5r0,5xm102,-42v2,-13,3,-36,19,-21v2,-6,13,1,12,4v-5,7,-14,21,-31,17xm90,-68v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm124,-35v3,0,0,3,0,1r0,-1xm20,-133v-2,-2,-5,-3,-9,-3v1,-6,6,-7,13,-6xm118,-35v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm83,-66v1,0,1,0,1,1xm113,-32v4,5,18,9,0,10r0,-10xm75,-68v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm98,-25v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm69,-52v3,0,0,3,0,1r0,-1xm126,-19v0,27,-9,15,-30,16r2,-16r28,0xm18,-97v0,-2,3,-1,4,-1v0,2,-3,1,-4,1xm60,-19v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm56,-19v1,22,-14,16,-29,20v-3,-27,10,-19,29,-20xm153,-218v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm83,-157v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm73,-123r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm45,-148v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm120,-83v-2,-10,-18,-2,-29,-3v5,7,20,1,29,3xm39,-154v-2,0,-1,5,0,6v2,-2,1,-4,0,-6xm44,-141v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm88,-91v-1,-2,-1,-5,-2,-2v0,1,1,2,2,2xm109,-63v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm117,-51v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm77,-87v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm79,-74v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm71,-76v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm40,-71v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm20,-89v0,-2,-3,-1,-4,-1v0,2,3,2,4,1xm35,-13v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm33,0v2,0,1,-3,0,-4v-2,1,-3,3,0,4","w":185},"$":{"d":"71,-215v1,1,1,3,0,4v-1,-1,-1,-3,0,-4xm63,-211v1,7,33,8,24,22v-6,5,-11,12,-18,16v-7,-4,-20,-16,-27,-14v-3,-9,-2,-28,-2,-42v4,1,14,-3,12,4v0,8,5,19,11,14xm43,-185v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm38,-162v-2,1,-4,1,-6,0v1,-1,5,-2,6,0xm58,-135v-2,2,-4,1,-6,0r6,0xm56,-33v34,-47,-30,-69,-51,-110v-4,-30,3,-70,31,-64v9,28,-20,46,3,66v5,8,35,28,39,36v2,-2,2,-4,5,-2v-7,4,-2,7,4,13v6,16,13,33,8,46r4,3v-13,20,-20,34,-41,40r0,-19r20,0v-7,-3,-22,1,-22,-9xm34,-39v0,-1,4,-2,4,0v-1,1,-3,1,-4,0xm9,-42v17,-17,25,15,43,11r0,4v-16,-1,-35,1,-49,-1v-2,-6,0,-8,6,-14xm52,-23v1,12,4,33,0,43r-12,0v0,-11,2,-34,-10,-25r0,-3v-7,0,-15,-5,-23,-15r45,0","w":101},"%":{"d":"160,-91v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm29,-192v1,1,3,2,0,3v-1,-1,-1,-2,0,-3xm31,-226v24,4,23,39,23,68v0,11,2,17,7,18v-3,2,-17,32,-28,28v-7,-6,-1,-16,4,-26v-3,-27,7,-55,-9,-69v1,-7,-2,-16,3,-19xm157,-53v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm128,-72v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm121,-116v40,-2,23,47,30,80v-4,13,-5,38,-22,36v-21,-7,9,-19,-1,-36r-4,0v19,-21,2,-58,-3,-80xm104,-148v-16,31,-49,85,-48,112v-16,10,-7,39,-37,34v23,-74,63,-132,90,-210v3,-8,11,-11,25,-11v1,7,-34,64,-30,75xm24,-165v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm157,-32v1,3,-2,2,-4,2xm24,-186v-9,15,-3,54,3,75v-42,0,-19,-59,-24,-94v-1,-10,9,-18,19,-18v3,13,-6,32,2,37xm33,-140v1,0,2,5,0,5v-3,0,-2,-5,0,-5xm98,-97v-2,-7,20,-24,22,-9v2,14,-11,20,-3,30v-5,24,0,45,0,74v-11,8,-18,-8,-19,-17r0,-78xm20,-142v2,0,1,-4,0,-4v-2,0,-3,4,0,4","w":162},"&":{"d":"73,-226v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm45,-190v-1,-1,-3,-2,0,-2r0,2xm40,-165r0,2r0,-2xm104,-47v9,5,15,16,20,22v0,15,-5,23,-15,23v-6,-5,-18,-14,-24,-15v-10,0,-19,20,-29,13v1,6,-3,0,-6,3r0,-31v27,-9,2,-37,-11,-50v-12,11,-10,42,6,48v-2,10,4,26,-4,30v-54,1,-39,-84,-17,-113v2,-11,-11,-43,-11,-53v0,-35,11,-52,34,-54v2,24,-15,37,-8,59v-2,1,-3,3,0,4r1,-2v5,31,16,10,22,0v4,-24,-6,-39,-11,-53v0,-5,2,-8,5,-8v32,2,36,17,36,55v-1,14,-19,40,-30,56v0,2,7,15,22,37v3,-1,7,-11,12,-30r23,0v4,12,-2,36,-15,59xm120,-39v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm39,-55v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm50,-1v0,2,-2,1,-3,1xm43,-137v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm121,-15v2,-2,3,-5,0,-8v-2,3,-1,6,0,8xm58,-8v2,-1,1,-4,0,-5v-2,1,-3,4,0,5","w":126},"'":{"d":"20,-259v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm20,-253v0,1,0,1,-1,1v0,-1,0,-1,1,-1xm5,-232r-3,-43r16,0v-1,14,0,30,-3,42xm16,-246v1,0,1,0,1,-1v-1,0,-1,0,-1,1","w":22,"k":{"S":9}},"(":{"d":"40,-166v1,1,3,2,0,3v-1,-1,-1,-2,0,-3xm33,-133v2,0,1,3,0,3v-2,0,-2,-3,0,-3xm66,-223v-6,2,-11,25,-19,33v7,8,-5,5,-7,21v-7,15,-2,29,-14,39v3,3,3,5,4,10v-4,1,-11,-2,-10,3v9,-2,8,5,10,10v-14,1,-10,3,-2,11v16,17,13,50,27,70v-3,0,-6,5,-1,4v11,0,10,14,1,18v-5,2,-8,5,-11,5v-16,-30,-37,-72,-35,-118v7,-2,-1,-9,8,-9r-2,4r7,-2v1,-3,-13,-17,-11,-20v2,-22,24,-119,55,-79xm33,-108v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm30,-101v0,-2,3,0,1,0r-1,0xm48,-70v2,0,2,1,0,1r0,-1xm59,-39v2,1,0,3,0,1r0,-1xm64,-26v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm17,-117v1,-1,2,-4,0,-4v-3,0,-2,3,0,4xm22,-110v0,-3,-3,-5,-5,-3v1,2,3,2,5,3xm35,-80v2,2,4,0,2,-2","w":72},")":{"d":"58,-176r-2,0r2,0xm11,-218v3,-13,22,-19,27,2v4,12,12,19,14,32v3,1,7,2,10,2v-11,3,-10,10,0,13v0,0,-14,13,-2,11r-2,5v11,-3,2,6,6,13v-7,4,2,17,-8,18v8,-5,-15,-12,-2,-11v0,-7,-6,-2,-10,-4v0,3,1,8,-2,8v-1,-7,-13,-38,-7,-49v-1,0,-5,4,-4,0v-2,-4,8,-3,5,-6v-12,6,-17,-24,-25,-34xm65,-117v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm51,-128v1,1,1,3,0,4v-1,-1,-1,-3,0,-4xm49,-122v0,1,-1,1,-2,1v0,-1,1,-1,2,-1xm42,-126v2,1,3,4,0,5r0,-5xm63,-104v1,1,3,2,0,3v-1,-1,-1,-2,0,-3xm48,-95v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm62,-106v1,6,-30,11,-14,17v0,1,0,2,-1,3v4,0,8,-15,15,-13v-4,3,-4,10,-4,11r5,-2v-5,34,-20,67,-37,90v0,-5,-16,-4,-15,-15v11,-15,20,-56,34,-87v-8,2,-4,-7,-5,-12v3,-1,4,7,6,2v-1,-6,5,-3,10,-5v4,5,3,6,-2,11r8,0xm51,-41v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm54,-146v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm47,-146v4,0,6,-7,5,-9v-4,3,-5,6,-5,9xm43,-150v1,-1,2,-1,0,-2v-1,1,-1,1,0,2xm51,-110v1,-1,1,-1,0,-2v-2,0,-1,2,0,2xm54,-101v-1,0,-3,-2,-3,0r3,0xm54,-83v1,1,2,3,2,0r-2,0xm54,-72v2,-7,-5,-9,-5,-2v2,0,5,1,5,2xm40,-84v2,2,4,0,2,-2xm42,-76v1,-1,1,-2,0,-3v-2,1,-2,2,0,3xm47,-65v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm52,-59v1,-4,-1,-4,-3,-2v1,1,1,2,3,2xm37,-56v1,-1,1,-2,0,-3v-2,1,-2,2,0,3","w":71},"*":{"d":"28,-180v7,1,17,-5,17,7v-3,2,-19,11,-5,12v-8,14,-10,13,-17,2v-7,7,-12,13,-17,1v0,-2,2,-5,6,-8v-11,-3,-12,-20,3,-14v4,0,1,-7,2,-10v9,-1,17,2,11,10xm7,-178v3,0,0,-3,0,-1r0,1","w":48},"+":{"d":"86,-134v10,26,-39,-1,-32,32v3,15,-8,14,-18,16v-1,-11,2,-26,-2,-34v-14,-3,-38,11,-30,-13v1,-2,26,2,32,-4v1,-14,1,-24,1,-29v9,1,15,-2,21,-3v-4,3,-4,3,0,6v-7,6,-5,14,-4,23v-1,-1,-1,-3,-1,0v-1,5,7,7,13,6v2,-2,12,1,20,0xm53,-116v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":92},",":{"d":"24,-26v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm2,28v8,-17,1,-25,1,-47v10,1,21,-4,20,10v-2,17,-2,35,-21,37","w":24},"-":{"d":"84,-118v-28,-1,-48,3,-75,0r0,-19v12,2,19,-6,28,0v3,-3,3,-5,4,0r43,0v2,4,2,14,0,19xm31,-138v1,2,3,2,3,-1","w":92,"k":{"y":23,"t":19,"f":-4,"Z":26,"Y":26,"X":30,"W":16,"V":19,"T":26,"S":14,"J":30,"A":19}},"\u2010":{"d":"84,-118v-28,-1,-48,3,-75,0r0,-19v12,2,19,-6,28,0v3,-3,3,-5,4,0r43,0v2,4,2,14,0,19xm31,-138v1,2,3,2,3,-1","w":92},".":{"d":"36,-26v-9,8,1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm18,0v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm15,0v1,-1,3,-2,0,-3v-1,1,-1,2,0,3","w":41},"\/":{"d":"115,-101v-2,3,-4,4,-6,0r6,0xm185,-228v1,3,-20,24,-7,26v-12,3,-22,14,-31,36v1,1,4,1,3,4v-3,1,-18,6,-14,15r5,0v-23,14,-31,49,-50,69v-10,10,-13,15,-6,22v-3,-1,-10,4,-4,6v-11,-3,-35,46,-38,47v-17,3,-29,4,-38,4v2,-11,7,-12,14,-24r96,-155v14,-10,12,-19,32,-50r38,0xm97,-72v0,2,0,2,-2,2v-2,0,-3,0,-3,-2v0,-1,1,-2,3,-2v2,0,2,1,2,2xm73,-36v-2,3,-4,4,-5,0r5,0xm36,-27v2,0,5,-4,0,-4v-4,0,-1,4,0,4","w":194},"0":{"d":"109,-186v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm111,-151v3,0,0,3,0,1r0,-1xm58,-192v0,-2,3,0,1,0r-1,0xm64,-213v36,-12,43,32,40,73r11,0v-19,3,-4,20,-11,31v5,47,4,117,-46,105r0,-23v28,-6,15,-71,19,-98v11,-4,6,-16,4,-27v-1,1,-2,2,-4,2v-3,-12,-2,-16,0,-25v1,-12,-38,-32,-15,-43v0,1,1,3,2,5xm26,-165v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm48,-113v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm109,-53v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm42,-104v0,-3,3,0,1,0r-1,0xm38,-127v3,29,2,38,0,66v5,2,0,3,0,8v3,14,27,30,13,51v-2,0,-6,1,-13,2v0,-5,-8,-12,-12,-8v-7,-3,-4,-25,-13,-17v1,-11,1,-10,-2,-18v-2,-4,15,-6,15,-8v0,-11,-5,-21,-15,-29v5,-42,-12,-100,11,-125v1,2,2,5,4,2v-4,-8,1,-8,11,-17r0,15v0,0,6,-14,8,-13v0,5,-5,14,2,15v0,-5,2,-8,4,-10v2,20,-3,25,-19,31v-1,7,15,8,6,14v-9,0,-30,-1,-22,7v8,-1,18,4,22,-2v3,6,8,16,0,21v3,2,5,9,5,17xm79,-190v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm73,-192v1,1,2,3,2,0r-2,0xm98,-161v2,0,1,-3,0,-4v-2,1,-1,3,0,4xm90,-161v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm81,-161v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm104,-135v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm38,-201v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm92,-131v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm103,-114v0,4,3,2,3,0v0,-1,-1,-1,-2,-2v-1,1,-1,1,-1,2xm106,-99v-1,-7,-2,-6,-3,0v0,1,0,2,1,2v1,0,2,-1,2,-2xm40,-118v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm38,-89v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm33,-45r-3,1v0,0,1,-1,3,-1","w":115,"k":{"7":12}},"1":{"d":"56,-223v3,1,2,1,0,2v-2,-1,-3,-1,0,-2xm56,-220v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm43,-217v0,-2,3,0,1,0r-1,0xm62,-201v3,1,1,6,-1,3v0,-1,0,-2,1,-3xm31,-178v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm9,-194v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm12,-179r-7,0v0,-10,4,-4,7,0xm66,-101v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm65,-126v-4,26,-7,73,-3,101v1,-4,2,-7,3,0v-1,8,-4,28,-15,22v-3,5,-13,2,-20,3v2,-58,-3,-123,5,-173v-3,-3,-13,-14,2,-15v-10,-12,-12,7,-19,9v-8,-4,1,-14,-5,-20v2,0,5,4,9,11v-3,-14,9,-27,19,-21v2,-2,5,-5,9,-7v-1,5,1,5,6,3v6,-2,6,1,4,4v1,19,-1,38,2,51v1,-4,2,-7,3,0v-5,10,-7,27,0,32xm33,-205v-1,-2,-1,-5,-2,-2v0,1,1,2,2,2xm33,-201v-1,-1,-2,-3,-2,0r2,0xm45,-179v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm52,-171v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm28,-192v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm33,-179v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm39,-173v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm44,-168v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm36,-168v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm60,-125v-1,1,-1,4,0,5v1,-1,1,-3,0,-5xm37,-135v2,0,1,-3,0,-4v-2,1,-1,3,0,4xm60,-89v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm45,0v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm41,0v2,0,3,-3,0,-4v-2,1,-1,3,0,4","w":72},"2":{"d":"112,-190v1,2,-1,2,-3,2v-1,-2,1,-2,3,-2xm82,-222v7,9,25,12,23,30v5,17,3,52,-8,65v-14,2,-23,-1,-26,13r4,0v0,9,-9,11,-18,8v6,-4,0,-15,8,-19v10,-10,24,-74,-11,-70v-16,15,-14,13,-16,30v-1,16,-14,7,-26,6v-9,-28,12,-53,28,-63r42,0xm42,-173v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm88,-115v1,3,-1,3,-4,3v1,-2,2,-3,4,-3xm82,-116v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm82,-93r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm76,-97v-4,22,-3,26,-28,54v-3,1,-8,2,-7,7r-30,0v9,-20,27,-39,37,-59v13,2,19,-4,28,-2xm89,-1v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm45,-41v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm103,-4v-16,-4,-20,6,-36,4v1,0,7,-4,2,-4v-10,5,-18,-5,-28,2v-4,-7,9,-4,3,-11r-15,0v10,9,-5,10,-11,15v-1,-4,-4,-3,-8,-3r0,-30r57,0v1,-6,5,-8,4,-1v20,1,42,-7,33,13v1,4,2,12,-1,15xm59,-1v0,1,-1,1,-2,1xm46,0v0,-1,4,-2,4,0v-1,1,-3,1,-4,0xm39,-6v-2,3,3,5,-4,5v0,-2,1,-6,4,-5xm88,-188v-2,0,-5,-1,-4,2v2,0,3,0,4,-2xm76,-186v2,0,5,1,4,-2v-2,0,-5,-1,-4,2xm100,-145v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm80,-146v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm82,-129v1,-1,6,-2,2,-2xm31,-167v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm99,-25v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm82,-21v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm93,-8v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm46,-51v2,0,1,-3,0,-4v-2,1,-1,3,0,4xm38,-55v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm29,-57v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm57,-25v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm36,-38v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm52,-19v2,0,3,-3,0,-4v0,-1,-1,-2,-2,-2v-3,2,1,4,2,6xm27,-40v3,1,9,-3,2,-2v-1,1,-2,1,-2,2xm46,-19v2,0,1,-3,0,-4v-2,1,-1,3,0,4xm48,-17v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm50,-13v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm36,-24v3,0,1,-3,0,-1r0,1xm40,-21v1,-1,1,-1,0,-2v-2,1,-2,1,0,2xm38,-15v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm29,-23v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm23,-25v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm30,-16v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm17,-24v2,-1,0,-3,0,-1r0,1xm31,-6v-7,-7,-6,-2,-2,2v1,0,2,-1,2,-2xm18,-15v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm52,-23v0,1,0,1,-1,2v0,-1,0,-1,1,-2xm28,-8r0,2r0,-2","w":113},"3":{"d":"104,-197v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm13,-165v3,-5,7,-10,1,-13v4,-13,16,-54,38,-47r0,28v-7,8,-11,19,-11,32r-28,0xm107,-93r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm85,-118v22,20,22,46,17,88v-3,2,-12,27,-24,24v3,-4,-3,-7,-2,-2v1,1,2,2,-1,2v-4,-10,-6,-2,-15,2r0,-24v21,-11,14,-53,11,-80v-4,-1,-6,1,-5,5v-16,3,-20,-21,-20,-28v22,-9,25,-8,27,-35v2,-27,-33,-37,-11,-63v19,8,38,10,36,46v9,4,-1,27,4,41v1,3,-18,22,-17,24xm43,-55v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm75,-4v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm37,-66v2,9,8,35,19,36v-2,10,6,29,-9,26v-30,0,-34,-33,-36,-62r26,0xm62,0v0,-1,4,-2,4,0v-1,1,-3,1,-4,0xm88,-188v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm77,-188v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm79,-182v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm66,-195v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm79,-152v1,0,1,0,1,-1xm77,-146v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm31,-169v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm73,-125r0,-4v-2,0,-3,4,0,4xm60,-131v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm24,-167v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm65,-125r0,-4v-2,0,-3,4,0,4xm64,-115v-1,5,10,2,5,1v-3,0,-4,-4,-3,-11v-1,6,-2,9,-2,10xm61,-120v0,-5,-2,-8,-6,-8v0,5,2,8,6,8xm50,-125v3,-3,1,-5,-3,-4xm81,-49v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm75,-36v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm79,-25v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm71,-30v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm83,-13v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm66,-23v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm65,-17v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm69,-17r-1,1xm27,-52v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm22,-42v2,-1,2,-3,0,-5r0,5xm35,-21v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm24,-30v2,-1,2,-3,0,-4r0,4xm18,-32v2,0,1,-3,0,-4v-2,1,-1,3,0,4xm24,-21v2,0,3,-3,0,-4v-2,1,-1,3,0,4","w":110},"4":{"d":"94,-226v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm105,-142v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm124,-89v-1,1,-4,4,-3,0r3,0xm97,-212v-5,35,-3,66,-3,115v0,10,7,16,21,15r0,21v-23,2,-22,21,-19,48v-3,2,-5,13,-14,11r4,-2r-19,0v2,-10,-4,-28,4,-32v-14,-10,-4,-54,-6,-99v-6,-2,-10,-6,0,-5v-2,-5,-1,-11,-5,-14r-25,65v3,6,16,3,25,4v-2,10,6,28,-6,28v-16,0,-31,0,-45,-2v0,-45,5,-44,22,-80v4,-9,16,-37,34,-83v13,0,34,-2,32,10xm102,-53v0,-1,5,-2,5,0v-2,1,-4,1,-5,0xm67,0v1,-3,6,0,2,1xm17,-50v-5,-1,-10,-1,-11,-5v5,0,11,0,11,5xm77,-218v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm69,-218v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm65,-203v1,-1,8,-4,4,-4xm72,-200v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm69,-201v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm82,-156v1,0,1,-1,1,-2xm75,-156v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm62,-158v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm71,-148v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm54,-163v-1,1,-5,2,-3,3v1,0,2,-1,3,-3xm77,-93v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm82,-32v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm69,-42v1,1,2,3,2,0r-2,0xm71,-23v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm71,-17v-2,0,-1,3,-1,4v2,0,2,-3,1,-4","w":122,"k":{"1":19}},"5":{"d":"104,-224v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm108,-140v-1,1,-4,0,-2,0r2,0xm13,-220r77,0v2,-1,6,-9,6,-3r-4,29v-23,1,-65,-8,-51,23v-10,-1,0,22,-3,27v6,0,17,-13,20,-3v0,0,-1,7,-2,20v-8,1,-18,26,-36,17v-2,0,-9,4,-11,0xm104,-110v1,-1,4,-1,5,0v-2,1,-4,1,-5,0xm38,-165v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm106,-91v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm62,-154v47,-7,40,59,38,88v-2,30,-2,49,-23,52v4,9,1,9,-9,14r0,-17r-8,15v-6,-16,10,-31,10,-44v2,-25,-3,-58,0,-77v-4,-1,-4,-7,-10,-2v0,-4,2,-8,6,-4v1,-5,-1,-7,-6,-6v-4,-12,10,-17,2,-19xm104,-49v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm52,-37v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm7,-66v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm13,-63v13,-2,34,-1,23,12v0,14,7,22,20,22r0,17v-3,0,-11,-6,-15,-5v-4,-1,-5,12,-8,11v-16,-1,-27,-26,-24,-47r2,4v1,-5,6,-11,2,-14xm54,-6v0,1,4,5,0,4r0,-4xm33,-1v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm62,-218v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm73,-150v-1,-2,-1,-5,-2,-2v0,1,1,2,2,2xm90,-125v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm85,-125v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm90,-118v1,-1,4,-4,0,-3r0,3xm85,-123v-1,1,-1,4,0,5v1,-1,1,-3,0,-5xm94,-110v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm75,-108v0,-4,9,-17,6,-23v-2,6,-9,13,-6,23xm75,-121r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm87,-110v-1,-1,-2,-3,-2,0r2,0xm81,-114v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm90,-106v-1,1,-3,2,0,2r0,-2xm79,-108r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm30,-161v-1,1,-2,6,0,7v1,-2,2,-5,0,-7xm26,-154v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm85,-99v-5,1,-4,-4,-4,-8v-4,0,-6,1,-8,5v2,-1,4,-3,5,-1v0,4,-1,9,5,7v-2,2,-8,4,-4,7v4,-3,6,-6,6,-10xm18,-157v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm87,-87v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm83,-87v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm87,-80v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm79,-83r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm75,-80v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm79,-74v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm90,-62v1,1,2,2,2,-1xm75,-76v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm96,-51v0,0,0,-2,-1,-2v-1,0,-1,1,-1,2r2,0xm77,-68v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm18,-127v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm13,-125v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm96,-44v-2,-1,-5,-5,-4,0r4,0xm81,-53v2,-7,-8,-5,-2,-2v0,1,1,2,2,2xm96,-38v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm20,-113v3,0,1,-3,0,-1r0,1xm88,-39v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm94,-32v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm87,-28v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm70,-30v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm37,-55v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm30,-51v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm26,-49v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm51,-19v0,0,0,-2,-1,-2v-1,1,-2,2,1,2xm35,-36v-1,-1,-4,-1,-5,0v1,1,3,1,5,0xm40,-28v-1,-1,-2,-3,-2,0r2,0xm13,-42v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm20,-21v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm80,-57v0,1,0,2,-1,2v0,-1,0,-2,1,-2","w":110},"6":{"d":"90,-219v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm109,-179v3,1,1,6,-1,3v0,-1,0,-2,1,-3xm56,-221v26,-13,45,18,49,41v3,17,-14,18,-31,17v0,-14,-6,-26,-18,-37r0,-21xm56,-194v3,0,2,5,0,5v-1,0,-2,-5,0,-5xm48,-166v1,3,-2,2,-4,2xm48,-194v-12,18,-4,46,-8,64v7,9,13,-9,31,-7v4,-6,15,-4,24,-4v-7,1,-8,1,-11,4v8,4,12,11,21,17v-2,54,14,85,-23,113v-10,-2,-16,0,-23,3v5,-3,1,-15,2,-22v22,-12,13,-40,15,-69v0,-5,-9,-17,-14,-16v-30,1,-30,71,-6,85v0,14,2,21,-16,19v1,-8,-4,-3,-9,-3v-34,-21,-18,-94,-21,-145v-3,-41,9,-68,43,-69v-1,18,0,34,-5,30xm114,-43r-5,0v2,-2,2,-2,5,0xm48,-52v-1,-1,-3,-2,0,-2r0,2xm77,-2v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm56,-5v0,4,-7,2,-10,1v2,-4,4,-2,10,-1xm56,1v0,1,-1,2,-2,2v-2,0,-1,-4,0,-4v1,0,2,1,2,2xm36,-10v2,4,1,6,0,9v-3,-3,-2,-5,0,-9xm92,-164v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm80,-134v2,0,3,-5,0,-5v-3,0,-2,5,0,5xm76,-134v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm78,-98v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm82,-31v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm88,-24v1,0,1,0,1,-1xm88,-18v1,-1,3,-2,0,-2r0,2xm71,-20v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm63,-22v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm65,-10v2,0,1,-4,0,-4v-2,0,-1,4,0,4xm50,-22v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm37,-31v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm42,-26v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm43,-26v0,2,3,2,1,0r-1,0xm32,-34v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm18,-43v2,-1,3,-4,0,-5v-2,1,-1,4,0,5xm26,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm21,-24v2,-1,1,-4,0,-5v-2,1,-3,4,0,5","w":114},"7":{"d":"111,-222v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm102,-194v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm101,-222v-2,7,1,13,2,19v-1,11,-14,6,-31,8v-2,1,-35,-1,-56,5r2,-1v-10,-2,-8,-21,-9,-29v31,-4,67,3,92,-2xm67,-192v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm9,-190v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm30,0r38,-180v0,-15,21,-12,30,-7v0,6,-1,12,-4,16v2,-1,8,-2,8,2v-9,5,-14,21,-6,29v-24,-1,-12,96,-33,108v8,8,0,27,-11,32v2,0,1,-3,0,-4v-2,1,-3,3,0,4r-22,0xm66,-33r0,2r0,-2xm33,-207v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm56,-30v2,0,3,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm46,-30v2,0,1,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm47,-2v-3,-3,-5,1,-1,1","w":110},"8":{"d":"91,-223v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm111,-190v-2,-2,-6,-4,0,-3r0,3xm48,-170v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm50,-140v0,0,2,0,2,1xm61,-124v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm58,-125v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2v1,0,2,1,2,2xm92,-112v2,2,5,3,12,2v-2,2,-3,3,-6,4v5,17,3,39,16,49r-10,0v0,7,-3,17,7,14v-6,3,-14,7,-9,13v-2,2,-17,33,-27,19v-2,7,-8,11,-17,11v-2,-17,10,-13,12,-24r-10,0v20,-17,16,-102,-17,-71v-4,15,-12,73,13,59v-6,3,-6,5,0,8r0,25v-8,0,-16,0,-19,3r1,-1v-30,-12,-28,-47,-26,-92v-1,-3,16,-24,14,-27v-20,-26,-21,-113,30,-103r0,30v-9,-6,-14,6,-16,24v2,3,-1,8,0,12v5,-1,1,6,1,9v-2,6,22,15,13,21v-1,0,-3,-1,-4,-1v2,4,1,14,12,10v1,1,0,2,0,3v4,-4,11,-9,4,-16v0,5,-2,4,-4,0v16,-14,15,-57,-2,-64r0,-28v13,3,37,7,34,20v8,5,1,12,8,27r9,0v-11,1,-8,9,-7,22v1,12,-11,27,-19,32v-1,5,12,6,7,10xm43,-80v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm60,-21v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm39,-165v0,-1,2,-4,0,-4v-2,1,-3,3,0,4xm60,-110v-2,-8,-2,-4,-4,0v0,1,1,2,2,2v1,0,2,-1,2,-2xm44,-109v1,1,2,2,2,-1xm39,-97v1,0,1,0,1,-1xm79,-51v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm73,-17v2,0,1,-4,0,-4v-2,0,-3,4,0,4","w":114},"9":{"d":"107,-159v0,2,0,4,-3,3xm11,-132v0,-46,-3,-83,30,-92r40,0v17,12,26,28,26,50v-6,-7,-23,-8,-32,-4v5,-9,-9,-19,-17,-19v-19,0,-17,33,-17,57v0,28,16,30,32,13v-1,19,6,33,-16,36v-30,5,-47,-3,-46,-41xm81,-46v-14,-6,0,-30,-4,-39v0,-27,-1,-47,4,-65v9,-2,19,0,21,8v0,-2,-1,-7,2,-6r0,21v2,0,6,-4,5,0v-5,24,6,75,-24,65v2,-3,12,-14,-2,-12v-4,1,-5,15,-5,20v10,-4,5,4,3,8xm106,-32v0,1,-1,2,-2,2v-2,0,-1,-4,0,-4v1,0,2,1,2,2xm37,-87v-2,0,-1,0,-1,-1xm77,-42v0,3,-5,8,-4,4xm52,-57v-3,-1,-7,-2,0,-2r0,2xm81,-21r1,0r-1,0xm103,-52v-3,-7,0,-11,4,-7v-1,11,-1,36,-17,34v2,1,3,2,6,4v-13,21,-36,20,-61,17v1,-5,-2,-4,-6,-4v-3,-9,-19,-33,-15,-53v18,-1,23,1,28,-5v-5,23,3,44,27,34v0,7,4,11,12,11v-1,2,-2,2,-4,6v19,-2,5,-7,11,-17v-7,-6,4,-22,15,-20xm60,-36v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm50,0v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm94,-142v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm90,-146v2,0,2,0,2,-2xm97,-134v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm94,-137v-1,-1,-2,-3,-2,0r2,0xm88,-139v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm104,-119v1,-1,1,-2,0,-3r0,3xm100,-112v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm82,-124v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm37,-154v2,0,1,-5,0,-5v-1,0,-2,5,0,5xm35,-150v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm40,-144v0,-4,-4,-5,-3,0r3,0xm104,-74v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm83,-87v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm16,-148v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm48,-7v2,-1,2,-1,0,-2v-1,1,-1,1,0,2","w":114},":":{"d":"41,-169v5,13,-2,21,-3,32v-4,-1,-14,-1,-30,-2v1,0,6,-1,5,-4v-5,-5,-4,-23,-5,-26r33,0xm28,-134v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm48,-42v-11,8,-4,22,-7,36v-1,1,-24,3,-33,7r0,-36v19,-5,32,-7,40,-7xm39,-145v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm26,-165r-13,0v1,10,10,7,13,0xm16,-155v0,0,5,9,4,3v-2,-2,-3,-3,-4,-3xm17,-141v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm39,-7v2,0,3,-3,0,-4v-2,1,-1,3,0,4","w":53},";":{"d":"34,-148v2,1,2,3,0,4v-1,-1,-1,-3,0,-4xm31,-143v-9,0,-15,3,-24,0r0,-25v6,0,15,-1,27,-2v0,3,-1,12,-3,27xm7,31r6,-30v-3,-2,-5,-1,-7,1r0,-30r17,0v-2,-7,7,-3,11,-4v-1,8,-5,27,4,30v-12,0,-8,42,-31,33xm29,-148v1,-1,2,-4,0,-4v-3,0,-2,3,0,4","w":37},"<":{"d":"70,-66v10,19,50,33,34,67v-20,-1,-73,-61,-96,-80v-2,-2,-4,-14,-4,-36v34,-29,61,-68,100,-91v0,11,2,18,5,21v-6,5,-8,24,-22,32v-18,21,-28,16,-45,37v-5,6,-9,10,-13,11v5,18,25,34,41,39xm79,-12v2,2,1,3,0,5v-1,-2,-2,-3,0,-5xm45,-130v2,-2,1,-4,0,-6v-2,2,-1,4,0,6xm49,-125v2,-2,1,-4,0,-6v-2,2,-3,4,0,6xm42,-125v1,-1,4,-4,0,-3r0,3xm39,-125v1,-2,2,-3,0,-5v-1,2,-1,3,0,5xm44,-119v2,-2,1,-4,0,-6v-2,2,-3,4,0,6xm30,-126v2,-1,1,-2,0,-3v-2,1,-2,2,0,3xm80,-49v2,-1,1,-5,-1,-5xm12,-116v1,-2,2,-3,0,-5v-2,2,-1,3,0,5xm38,-85v1,-1,1,-2,0,-3v-2,0,0,2,0,3xm24,-97v2,-2,1,-3,0,-5v-1,2,-2,3,0,5xm9,-116v-1,1,-2,5,0,6v2,-1,1,-5,0,-6xm104,-16r0,-5v-2,2,-3,4,0,5xm12,-105v2,-2,1,-3,0,-5v-1,2,-2,3,0,5xm17,-97v2,-2,1,-3,0,-5v-1,2,-2,3,0,5xm7,-99v2,-3,3,-3,0,-5v-2,1,-1,4,0,5xm9,-99v-1,2,-4,2,-3,6xm7,-88v2,-3,3,-3,0,-5v-1,2,-2,3,0,5","w":111},"=":{"d":"105,-133v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm100,-122r-82,2r2,-2r-11,0v0,-6,0,-11,-1,-15v30,4,74,-9,94,6v-1,2,-2,6,-2,9xm75,-84v-1,1,-4,0,-2,0r2,0xm102,-103v-3,4,2,12,-2,15r-91,-1r0,-14v23,0,65,-8,93,0xm12,-119v0,1,0,1,-1,1xm88,-132v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm79,-126r0,-2v-1,1,-1,1,0,2xm65,-125v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm50,-134v2,-1,0,-3,0,-1r0,1xm28,-133v0,-1,2,-2,0,-2r0,2xm57,-102v1,-1,1,-1,0,-2v-2,1,-2,1,0,2xm54,-103v-1,-1,-2,-1,-3,0r3,0xm25,-126v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm19,-126v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm12,-126v1,-1,3,-2,0,-3v-1,1,-1,2,0,3","w":107},">":{"d":"69,-150v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm38,-168v16,11,37,33,54,39v0,5,6,10,20,16v-10,15,3,27,-14,43v-1,-1,0,-4,-3,-3v-10,10,-61,45,-91,74r4,-39r74,-57v2,-13,-23,-21,-52,-44v-1,0,-3,0,-4,1v5,-6,-8,-8,-17,-19r-3,0r0,-34v6,-3,31,26,38,19xm108,-108v2,-2,1,-3,0,-5v-1,2,-2,3,0,5","w":113},"?":{"d":"79,-222v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm64,-222v14,9,34,31,21,53v2,2,5,2,5,6v-16,18,-41,53,-36,85r4,2v-7,17,-15,5,-23,11v-19,-36,14,-85,25,-114v0,-3,-10,-19,-13,-18v-6,-2,-19,23,-24,22v-14,0,-21,-4,-21,-12v-3,-8,30,-18,7,-16v15,-17,20,-18,55,-19xm62,-36v0,-1,6,-2,6,0v-2,2,-4,1,-6,0xm49,0v-8,-1,-18,-4,-23,1v1,-8,1,-20,2,-35v12,-2,23,-4,30,0r0,30v-7,-1,-22,1,-9,4xm45,-209v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm25,-201v7,0,6,-10,5,-15v-3,4,-5,10,-5,15xm14,-188v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm47,-65v3,-1,2,-4,0,-5v-1,1,-2,4,0,5","w":92},"@":{"d":"131,-169v1,-1,6,-2,7,0v-2,1,-5,2,-7,0xm125,-178v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm110,-212v-4,5,25,15,15,24v0,2,-1,5,-1,8v-16,2,-28,-1,-31,-13v0,-2,-34,-8,-23,-17v-4,-1,-2,-8,-3,-13v19,0,33,4,43,11xm116,-174v-1,1,-2,1,-3,0v1,-1,0,-1,3,0xm106,-176v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm83,-197v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm112,-166v-1,5,-42,5,-53,1v18,-12,29,2,53,-1xm108,-146v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm62,-223v4,29,-23,37,-43,19v0,-14,26,-18,43,-19xm47,-188v-2,-1,-4,-2,0,-2r0,2xm36,-188v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm31,-190v-13,0,-19,-3,-19,-7v13,0,19,3,19,7xm78,-93v0,14,20,16,23,4r0,-51r34,0v-25,9,1,57,-12,81r-17,0v0,-4,0,-7,-4,-7v-10,7,-48,16,-47,-8r0,-70v4,1,3,6,2,9v5,-5,9,-8,9,-13v-7,-1,-19,-11,-5,-11r66,0v3,2,2,2,2,5v-18,13,-44,-9,-60,8v15,5,4,34,12,48v0,1,-4,3,-3,5xm38,-165v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm30,-150v-6,4,-7,-13,-15,-12v5,-10,-4,-18,-6,-27v18,1,13,3,27,13v-18,7,-12,15,-6,26xm34,-152v-1,-1,-1,-4,0,-5v1,2,1,4,0,5xm8,-176v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm36,-138v-2,-1,-2,-3,0,-4r0,4xm30,-135v-3,0,-7,-3,-3,-5v2,1,3,3,3,5xm13,-152v-2,2,-2,9,-2,21v-3,-4,-7,-20,2,-21xm36,-106r0,4r0,-4xm44,-93v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm40,-91v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm67,-11v2,-10,31,-30,41,-16v4,4,6,5,8,6v-2,12,-45,35,-49,10xm43,-58v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm28,-107v15,21,-7,77,30,82v9,2,3,15,5,24v-55,2,-56,-47,-57,-98v6,1,19,-6,7,-9v-2,1,-6,3,-7,0v-1,-14,10,-15,27,-15v0,8,-2,14,-7,17v1,-1,1,-1,2,-1xm123,-190v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm102,-214v-1,1,-5,2,-1,2xm121,-106v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm112,-108v2,0,2,0,2,-2xm117,-104v-2,-1,-8,5,-6,9v2,-2,5,-5,6,-9xm106,-104r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm119,-91v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm68,-123v3,4,9,1,7,-4r-1,-6v-4,2,-6,5,-6,10xm63,-89v8,0,11,-2,11,-11v-5,0,-8,8,-11,11xm27,-97v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm32,-85r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm19,-95v-1,-1,-5,-2,-6,0v2,2,4,1,6,0","w":135},"A":{"d":"86,-237v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm97,-197v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm69,-135v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-89v1,2,2,3,0,5v-2,-2,-1,-3,0,-5xm62,-166v8,8,-9,39,-6,49v5,-1,4,-1,8,2v-11,2,-17,26,-5,29v-2,1,-2,2,-1,4r17,0v2,5,7,28,9,14v3,-31,-24,-82,-9,-103v0,-2,-2,-3,-6,-2v-4,-21,-20,-50,-3,-60v3,5,13,2,20,3v1,5,8,12,7,22r8,4r-8,0v2,15,3,31,6,47r14,4v-12,-1,-13,18,-2,22v-3,30,2,62,13,90v-6,8,0,27,9,28v-4,0,-7,2,-7,8r-33,0v1,-16,-7,-43,-9,-55v-2,15,-32,-2,-35,14r8,0v-19,4,-7,63,-42,44v-2,1,-5,1,-9,2v0,-6,5,-33,9,-56r31,-175v17,-3,15,53,16,65xm121,-58v0,-1,-2,-2,0,-2r0,2xm75,-91v0,3,-3,7,-2,2xm64,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm77,-155v1,1,2,3,2,0r-2,0xm77,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-104v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm82,-109v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm108,-78v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm108,-69v1,1,4,5,3,0r-3,0xm102,-70v3,0,0,-3,0,-1r0,1xm32,-1v3,0,4,-3,1,-4v-1,1,-3,3,-1,4","w":136,"k":{"\u0131":5,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":9,"\u00d4":9,"\u00d3":9,"\u00cc":4,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00c8":4,"\u00cb":4,"\u00c1":4,"\u00ca":4,"\u00c2":4,"\u0178":37,"\u00ff":42,"\u00d5":9,"\u00c3":4,"\u00c0":4,"\u00fc":12,"\u00fb":12,"\u00f9":12,"\u00fa":12,"\u00f5":16,"\u00f6":16,"\u00f4":16,"\u00f2":16,"\u00f3":16,"\u00f1":9,"\u00ef":5,"\u00ee":5,"\u00ec":5,"\u00ed":5,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":14,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"\u00d6":9,"\u00c9":4,"\u00c7":9,"\u00c5":4,"\u00c4":4,"y":42,"x":4,"w":35,"v":42,"u":12,"t":39,"s":11,"r":5,"q":14,"p":7,"o":16,"n":9,"m":9,"l":7,"k":5,"i":5,"g":12,"f":5,"e":7,"d":11,"c":14,"b":5,"a":9,"Y":37,"X":4,"W":28,"V":33,"U":9,"T":35,"S":4,"Q":7,"O":9,"L":4,"J":4,"I":4,"H":4,"G":7,"F":2,"E":4,"C":9,"B":7,"A":4,"-":19,"'":25}},"B":{"d":"123,-186v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm26,-237v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm52,-190r-9,2v1,-3,5,-4,9,-2xm54,-156v0,4,-4,6,-11,6v0,-4,4,-6,11,-6xm119,-82v2,1,1,3,0,4v-2,-1,-1,-3,0,-4xm114,-76v13,22,-6,70,-39,71v-12,6,-34,8,-32,-14v1,-12,0,-15,11,-14v18,1,29,-15,29,-33v0,-20,-12,-47,-28,-35r0,-8v-3,1,-7,3,-12,5r0,-30v39,8,50,-61,15,-65r-15,2r0,-31v18,2,28,-11,38,0v42,12,41,81,14,106v5,10,30,28,19,46xm43,-146v3,2,2,6,0,9v-2,-2,-1,-7,0,-9xm63,-102v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm10,0r0,-230v9,1,10,1,29,2r0,224v-13,-1,-19,2,-29,4xm43,-89v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm52,-69v1,4,-3,3,-6,3v-1,-4,3,-3,6,-3xm43,-51v1,-1,6,-2,7,0v-2,2,-5,1,-7,0xm112,-182v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm112,-162v2,-1,3,-3,0,-4v-2,0,-1,3,0,4xm77,-111v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm117,-66v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm59,-120v-1,-1,-2,-3,-2,0r2,0","k":{"\u00cc":2,"\u00cf":2,"\u00ce":2,"\u00cd":2,"\u00c1":11,"\u00c2":11,"\u0178":18,"\u00ff":16,"\u00c3":11,"\u00c0":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"\u00c5":11,"\u00c4":11,"y":16,"a":9,"Z":4,"Y":18,"X":16,"W":12,"V":16,"T":7,"J":12,"I":2,"H":4,"A":11,".":11,"-":16,",":5,"'":12}},"C":{"d":"80,-239v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm97,-226v-1,8,9,22,17,21v-5,11,-1,25,-3,47v-12,2,-21,2,-29,1v-3,-16,-4,-49,-22,-45r0,-31xm86,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm42,-175v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm115,-84v3,2,2,6,0,8v-2,-2,-1,-6,0,-8xm44,-148v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm111,-80v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm109,-73v1,1,3,2,0,2r0,-2xm108,-82v0,8,-6,7,-11,4v2,-3,6,-4,11,-4xm109,-64v-1,1,-4,4,-3,0r3,0xm93,-80v-6,5,3,13,10,12v1,6,-4,6,-5,10r14,0v0,16,-11,9,-3,25v-5,4,-5,7,-12,7v8,-10,1,-5,-13,-14v6,-4,14,5,18,-4v-5,0,-5,2,-10,0v0,-4,-2,-7,-6,-9v4,-3,10,-6,0,-5v2,-2,8,-4,3,-6r-9,2r0,-18r13,0xm38,-126v12,12,-10,35,4,46v-7,23,2,42,14,56v0,11,2,30,-12,22v-12,10,-27,-15,-27,-26r9,0r-2,-8v-8,8,-17,0,-16,-14v7,-68,-30,-178,47,-183r0,29v-14,10,-22,24,-13,41v-1,8,-4,24,-2,32v1,-1,2,-1,2,-2v0,3,-2,5,-4,7xm80,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm83,-47v1,1,0,3,-2,3v-2,-1,2,-3,2,-3xm93,-29v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm97,-20v-1,1,-2,7,-2,3v0,-1,1,-2,2,-3xm84,-26r-3,2xm86,-18v2,1,2,2,0,3v-1,-1,-1,-2,0,-3xm78,-29v1,7,-17,7,-5,11v3,-2,8,-4,7,4v0,5,-4,6,4,4v2,-1,5,-1,7,-1v-8,11,-18,13,-31,9v-1,-11,-2,-35,11,-24v2,-1,4,-2,7,-3xm13,-31v3,1,2,3,0,5v-1,-2,-2,-3,0,-5xm78,-221v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm102,-173v2,0,2,0,2,-2xm51,-221v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm89,-177v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm86,-76v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm104,-46v2,-2,3,-4,0,-5v-3,1,-2,3,0,5xm84,-66r0,-5v-2,1,-2,3,0,5xm95,-51v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm97,-46v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm91,-51v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm102,-36v2,0,1,-3,0,-4v-2,1,-3,4,0,4xm38,-58v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm49,-31v3,-3,-2,-7,-2,-2v0,1,1,2,2,2xm40,-26v1,0,1,0,1,-1xm30,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm22,-22v3,-1,6,-2,0,-2r0,2","w":118,"k":{"\u00c1":7,"\u00c2":7,"\u0178":4,"\u00ff":5,"\u00c3":7,"\u00c0":7,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"\u00c5":7,"\u00c4":7,"y":5,"a":11,"Y":4,"X":4,"W":2,"V":4,"A":7,"-":7}},"D":{"d":"115,-190v0,-2,4,-2,5,0v-2,1,-4,1,-5,0xm46,-179v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm113,-133v-5,22,2,43,-3,62v5,25,-7,72,-39,56r-18,4v5,-4,4,-13,13,-13v-7,-10,-17,23,-20,11v-8,1,-2,-12,-4,-18r11,0r-4,7v5,1,27,-18,28,-22r0,-132v0,-16,-18,-23,-35,-23v2,-15,-7,-32,13,-32v56,0,60,46,55,98v1,0,3,1,3,2xm120,-53r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm115,-53r0,4r0,-4xm42,-126v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm9,-230v13,-3,28,-4,28,11r0,95v-1,6,-8,8,-1,15v-1,9,-9,32,-7,43r-22,13v6,-50,0,-119,2,-177xm42,-73v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm49,-64v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm84,-9v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm51,-38v2,1,1,4,0,5v-2,-1,-3,-4,0,-5xm64,-9v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm57,-4v-3,0,-5,-1,-6,-3v3,0,7,-1,6,3xm44,-7v1,0,1,0,1,1xm23,-51v14,-4,18,25,13,37v-10,1,-15,5,-25,12r2,2r-4,0v5,-19,-14,-53,14,-51xm33,-9v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm26,-5v-1,-1,-3,-2,0,-2r0,2xm20,-4v2,1,2,3,0,3v-2,0,-3,-2,0,-3xm51,-228v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm106,-121v2,1,2,-1,2,-3v-2,-1,-2,1,-2,3xm106,-97v2,0,3,-5,0,-5v-3,0,-2,5,0,5xm86,-55v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm82,-58v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm86,-51v0,-1,-1,-2,-2,-2v-1,0,-2,1,-2,2v0,1,1,2,2,2v1,0,2,-1,2,-2xm28,-100v2,1,5,-1,2,-2v-1,0,-2,1,-2,2xm77,-38v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm73,-33v1,-1,4,-4,0,-3r0,3xm82,-18v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm11,-86v1,-1,3,-2,0,-2r0,2xm69,-20v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm22,-66v2,-2,3,-4,0,-5v-3,1,-2,3,0,5xm13,-58v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm13,-44v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm26,-15v-1,-3,-2,-7,-2,0r2,0xm11,-22v3,1,9,-2,8,-4v-3,0,-6,1,-8,4xm11,-24v3,-1,2,-4,0,-5v-2,1,-3,4,0,5","w":120,"k":{"\u00c1":11,"\u00c2":11,"\u0178":16,"\u00c3":11,"\u00c0":11,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"\u00c5":11,"\u00c4":11,"a":11,"Z":4,"Y":16,"X":18,"W":9,"V":12,"T":5,"J":11,"A":11,"'":7}},"E":{"d":"110,-240v0,2,0,4,-2,3v0,-2,0,-4,2,-3xm62,-231v12,-4,27,4,40,-3v-4,9,3,18,-5,32r-56,3v0,-14,1,-26,3,-34v2,9,20,-3,18,2xm44,-195v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm42,-166v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm44,-155v1,1,1,3,0,4v-2,0,-1,-4,0,-4xm42,-148v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm44,-138v13,-2,23,6,34,0v11,2,7,31,-2,34v-14,-7,-34,9,-35,-11v0,-11,1,-19,3,-23xm37,-171r-1,170v-7,1,-15,-2,-25,-1r0,-226v6,-1,14,-2,26,-3v-1,17,2,36,-1,51v-8,-1,-3,7,-3,12xm42,-95v2,0,1,3,0,4v-2,-1,-3,-3,0,-4xm42,-78v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm42,-60r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm44,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm101,-36v-5,3,0,10,1,14r-7,22v-18,2,-37,-3,-52,-1r1,1v-6,-5,-2,-27,0,-36v9,8,35,-7,47,3xm30,-184v-1,-6,-9,-3,-4,0v1,2,4,3,4,0xm19,-175v2,0,3,-3,0,-4v-2,0,-1,4,0,4xm50,-133v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm22,-155v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm68,-109v0,2,3,0,1,0r-1,0xm26,-146v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm26,-138v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm19,-144v-2,0,-7,-1,-6,2v2,0,4,0,6,-2xm75,-32v2,0,3,-2,0,-2v-3,0,-1,2,0,2xm65,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm88,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm64,-26v-1,-1,-2,-3,-2,0r2,0xm77,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm73,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm28,-186v0,1,-1,2,-2,2v0,-1,1,-2,2,-2","w":106,"k":{"\u00d2":5,"\u00d4":5,"\u00d3":5,"\u00d5":5,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00d6":5,"o":9,"O":5,"K":-2,"-":14}},"F":{"d":"46,-201v-8,-16,-2,-37,22,-31r-5,2r9,0v-2,-1,-3,-3,0,-4v0,8,9,-4,4,4v13,0,27,-3,23,17v0,7,-1,11,-3,12r-50,0xm43,-164v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm48,-155v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm86,-137v-4,9,-5,14,-5,22v2,-1,5,-5,4,0v0,4,0,6,-2,7r-40,0v2,-18,-8,-31,20,-27xm39,-142v1,0,2,5,0,5v-3,0,-2,-5,0,-5xm56,-104v1,-1,4,-1,5,0v-1,1,-3,1,-5,0xm8,-228v15,-3,18,-4,32,-5v-1,35,3,74,-6,100r5,-2v-1,40,3,86,-2,122v4,4,2,14,-6,13v-8,-1,-17,-4,-23,0r0,-228xm14,-221v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm81,-108v2,-1,1,-4,0,-5v-2,0,-3,5,0,5xm56,-126v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm50,-126v3,-2,0,-3,-2,-5v0,3,1,4,2,5xm58,-121v0,-5,-8,-6,-4,0v1,-2,2,3,4,0xm12,-148v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm32,-128v-2,0,-1,6,0,7v1,-2,2,-5,0,-7xm17,-128v1,1,2,3,2,0r-2,0xm28,-93r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm12,-86v3,-1,2,-4,0,-5v-1,0,-2,5,0,5xm30,-62v1,-1,2,-2,2,-4xm32,-53v0,-2,-4,-3,-4,0v0,2,4,3,4,0xm12,-66v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm56,-124v0,1,0,1,-1,2v0,-1,0,-1,1,-2","w":101,"k":{"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c0":32,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00e5":26,"\u00e3":26,"\u00e4":26,"\u00e2":26,"\u00e0":26,"\u00e1":26,"\u00c5":32,"\u00c4":32,"o":9,"a":26,"J":28,"A":32,".":35,",":35}},"G":{"d":"88,-241v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm78,-240v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm109,-202v0,-3,3,0,1,0r-1,0xm121,-193v1,0,2,5,0,5v-3,0,-2,-5,0,-5xm110,-159v-4,0,-6,2,-7,6v-6,-1,-17,4,-15,-5r-9,0v-1,-21,-8,-38,-22,-50v1,-12,-5,-30,14,-25v22,-3,51,38,39,74xm121,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm112,-64v2,1,3,3,0,4v-2,-1,-3,-3,0,-4xm44,-116v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm50,-232v11,25,-16,47,-13,74v1,1,5,1,4,4v2,6,-17,18,-4,19v2,34,-5,66,6,91v-5,4,3,7,9,18v-1,8,2,19,-2,24v-13,-1,-15,-1,-20,2v-8,-8,-26,-29,-24,-51v2,-23,-3,-52,2,-71v-7,-44,-7,-116,42,-110xm112,-102v-5,24,-4,54,-2,74r-11,0v4,10,10,9,15,15v-4,2,-5,4,-6,8r-13,0v0,-4,1,-10,-5,-8v0,-7,-12,-6,-13,0v1,4,-2,11,-12,7r0,6v-13,0,-8,-16,-2,-16v-4,-2,-6,-4,-6,-7v12,-11,37,-46,13,-68v-4,7,-10,-3,-13,2v3,-8,-6,-11,-9,-11v5,-2,9,-8,9,-18v10,8,27,0,46,2v1,-2,3,-5,0,-6r7,0v-1,10,5,8,0,20r2,0xm101,-155v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm95,-156v3,0,0,-3,0,-1r0,1xm30,-204v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm37,-182v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm29,-182v1,0,1,-1,1,-2xm101,-82v0,-1,-1,-2,-2,-2v-1,0,-2,1,-2,2v0,1,1,2,2,2v1,0,2,-1,2,-2xm99,-73v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm61,-111v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm10,-151v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm105,-53v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm97,-55v4,1,9,-5,1,-2v-1,1,-1,1,-1,2xm107,-39v1,-1,1,-1,0,-2v-2,1,-2,1,0,2xm14,-128v4,0,-1,-5,0,-1r0,1xm28,-109v3,-2,1,-5,-2,-4xm17,-120v1,-4,-2,-4,-2,-1v0,1,1,1,2,1xm98,-38v1,0,1,-1,1,-2xm92,-40v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm100,-30v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm26,-100r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm86,-39v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm10,-113v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm88,-29v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm99,-18v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm19,-93r0,-4r0,4xm75,-29v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm72,-18v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm72,-11v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm65,-18v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm61,-22v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm63,-5v2,0,3,-4,0,-4v-2,0,-1,4,0,4","w":119,"k":{"\u00c1":4,"\u00c2":4,"\u0178":11,"\u00ff":12,"\u00c3":4,"\u00c0":4,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"\u00c5":4,"\u00c4":4,"y":12,"w":9,"a":5,"Y":11,"X":5,"W":7,"V":7,"T":5,"A":4}},"H":{"d":"121,-184v0,-2,4,-2,5,0v-2,1,-4,1,-5,0xm114,-146v11,12,-7,38,5,60v-9,5,-1,46,6,42v-14,2,-8,22,-4,30v0,3,-4,7,-11,14v-13,1,-18,-1,-29,-3r0,-101v-4,-8,-12,5,-18,-2v-3,8,-24,3,-17,-5v1,-9,-2,-20,2,-26v13,0,37,0,35,-9r0,-84v8,-7,20,3,30,-3v6,-1,8,8,3,10v3,23,3,25,-6,39v9,6,9,13,4,22v0,3,9,9,12,9v-2,2,-7,4,-12,7xm46,-142v1,0,2,5,0,5v-3,0,-2,-5,0,-5xm50,-13v-5,-3,-8,5,-9,9v-17,-5,-31,14,-31,-10v0,-11,2,-19,7,-22r-5,0r0,-194v19,2,39,-10,34,20v5,6,-11,14,4,20v-7,10,-13,37,2,37v-22,1,-7,42,-11,62v14,23,-2,44,2,73v3,1,5,3,7,5xm52,-51v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm90,-221v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm103,-184v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm108,-133r0,-6v-2,1,-3,5,0,6xm108,-124v-1,-1,-2,-2,-5,-2v2,1,2,2,5,2xm114,-111v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm114,-71v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm57,-102v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm95,-33v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm90,-33v2,-1,3,-4,0,-5v-3,1,-2,4,0,5xm17,-111v0,-2,-4,-3,-4,0v0,2,4,3,4,0xm87,-30v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm88,-24v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm30,-80v1,-1,3,-2,0,-2r0,2xm108,-2v-1,-2,-2,-4,-2,0r2,0xm99,0v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm15,-76v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm43,-51v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm15,-60v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm21,-38r3,-2v-1,1,-3,1,-3,2xm30,-26v4,-3,0,-6,-2,-7v-5,3,2,4,2,7xm21,-29v1,-1,8,-5,1,-4v-6,-1,-6,4,-1,4xm24,-22v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm30,-31v0,1,0,1,-1,2v0,-1,0,-1,1,-2","w":125},"I":{"d":"49,-155v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm45,-163v-4,45,0,96,0,144v0,26,-19,14,-36,19r3,-2r0,-227v17,5,32,-17,31,11v-1,20,-1,36,1,56xm16,-221v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm13,-220v-1,4,3,12,5,8v0,-6,-1,-8,-5,-8","w":54,"k":{"\u00c1":2,"\u00c2":2,"\u00c3":2,"\u00c0":2,"\u00e5":7,"\u00e3":7,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"\u00c5":2,"\u00c4":2,"a":7,"V":2,"A":2}},"J":{"d":"69,-118v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm67,-230v1,29,-5,54,2,79v-7,2,-2,11,1,14v-8,1,1,14,-7,24v6,3,4,13,0,18v12,6,-1,35,4,47v1,39,-25,41,-60,48r2,-31v37,-9,24,-35,26,-71v2,-1,4,-2,3,-5v-3,3,-5,3,-4,-3v2,-27,-2,-60,4,-83v-5,-8,-1,-25,-2,-37r31,0xm60,-211v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm56,-215v-1,0,-2,4,0,4v1,-1,1,-3,0,-4xm47,-204v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm54,-182v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm58,-173v1,-2,4,-3,2,-5v-1,2,-2,2,-2,5xm54,-173v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm45,-182v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm58,-166v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm64,-160v1,0,1,-1,1,-2xm50,-173v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm40,-179v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm65,-151v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm58,-157v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm45,-168v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm47,-164v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm45,-162v3,0,13,0,7,-2v-1,0,-3,0,-7,2xm58,-151v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm60,-146v-1,3,4,6,3,2v-1,-1,-2,-1,-3,-2xm54,-142v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm38,-155v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm50,-133v7,-1,4,-5,0,-5r0,5xm40,-144v3,0,0,-3,0,-1r0,1xm56,-122v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm43,-137v-2,2,2,6,2,2v-1,-1,-1,-2,-2,-2xm63,-107r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm51,-112v1,-6,-6,-16,-8,-9v-1,4,4,9,8,9xm58,-104v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm45,-102v2,-1,1,-4,0,-5v-2,0,-3,5,0,5xm54,-89v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm45,-97v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm42,-102v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm56,-73v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm54,-78v-1,-1,-2,-3,-2,0r2,0xm50,-71v1,-1,3,-2,0,-2r0,2xm41,-68v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm42,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm45,-38v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm40,-44v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm18,-26v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm18,-15v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm14,-7v2,0,1,-3,0,-4v-2,1,-3,3,0,4","w":78,"k":{"\u0131":5,"\u00c1":9,"\u00c2":9,"\u0178":5,"\u00c3":9,"\u00c0":9,"\u00fc":7,"\u00fb":7,"\u00f9":7,"\u00fa":7,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00ef":5,"\u00ee":5,"\u00ec":5,"\u00ed":5,"\u00e5":14,"\u00e3":14,"\u00e4":14,"\u00e2":14,"\u00e0":14,"\u00e1":14,"\u00c5":9,"\u00c4":9,"u":7,"o":5,"i":5,"a":14,"Y":5,"X":9,"J":5,"A":9,".":12}},"K":{"d":"98,-193v2,0,3,5,0,5v-3,0,-2,-5,0,-5xm89,-173v2,0,1,5,0,5v-1,0,-2,-5,0,-5xm49,-210v2,0,3,3,0,4v-2,-1,-3,-3,0,-4xm116,-233v-13,44,-57,70,-27,120r29,105v1,8,-14,9,-22,7r6,0v-4,-7,-12,-2,-18,-1v-9,-42,-17,-62,-28,-100v-13,-1,-4,18,-16,23r0,-67v10,-15,26,-52,38,-83v18,0,26,-2,38,-4xm40,-230v-3,43,-8,129,0,172v-1,11,-10,42,7,45v-8,2,-24,19,-37,11v-1,-1,-2,2,-5,2v3,-17,-3,-42,7,-51r-5,0r0,-179r18,0v1,-7,5,-8,4,0r11,0xm118,-24v2,1,3,3,0,4v-2,-1,-3,-3,0,-4xm126,-14v1,1,1,1,0,2v-2,-1,-2,-1,0,-2xm84,-190v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm15,-140v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm111,-2v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm82,-24v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":118,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00d5":7,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00d6":7,"\u00c7":7,"v":7,"o":9,"Q":7,"O":7,"G":5,"C":7,"-":32}},"L":{"d":"45,-222v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm41,-202r0,-6v2,2,1,4,0,6xm10,-230v4,-1,3,2,2,4v0,2,-1,4,-2,4r0,-8xm41,-193v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm14,-217v0,1,-2,3,-2,1v0,-1,1,-1,2,-1xm36,-191v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm43,-182v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm27,-197v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm36,-179v0,-4,1,-8,5,-7v-2,1,-4,4,-5,7xm17,-183v2,1,0,3,0,1r0,-1xm41,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm10,-153v1,1,2,2,2,5v-1,-2,-2,-2,-2,-5xm38,-118v-8,13,14,23,0,34v8,8,-1,33,5,44r-34,0v7,-7,2,-37,3,-57v0,-2,2,-3,6,-3v-10,-3,-9,-21,-7,-29v1,0,4,1,6,1v1,-7,0,-16,-7,-10v8,-9,6,-20,2,-32v8,-6,8,11,15,4v-1,-3,-7,-8,0,-8v-13,-17,-15,-30,-10,-54r11,0v1,2,-4,4,-2,4v4,0,7,-2,8,-6v6,1,9,4,9,10v-13,-5,0,16,-9,18v2,-5,-2,-6,-8,-6v-1,3,-1,6,1,9v-3,-2,-6,0,-9,2v5,15,18,-1,12,16v5,-3,4,13,11,6v1,23,0,46,-9,57r6,0xm109,-40v1,3,-2,2,-4,2v1,-2,2,-2,4,-2xm45,-82v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm103,-15v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-53v1,1,3,2,0,2r0,-2xm56,-33v15,-8,47,2,47,9v-4,0,-5,25,-11,24v-23,0,-49,-3,-70,-1r1,1v-1,-4,-13,-2,-13,-9r0,-27v5,7,39,-6,46,3xm10,0v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm34,-222v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm25,-213v4,0,10,-3,2,-2v-1,0,-2,1,-2,2xm21,-199v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm32,-166v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm36,-160v2,-2,1,-4,0,-6r0,6xm30,-162v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm25,-158v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm36,-138v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm24,-154r-4,15v6,1,10,-11,4,-15xm27,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm30,-128v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm21,-133v1,-1,3,-2,0,-2r0,2xm23,-118v3,-1,6,-2,0,-2r0,2xm21,-109v0,2,3,0,1,0r-1,0xm13,-112v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm25,-93v1,0,2,-1,2,-3v-1,0,-2,1,-2,3xm14,-91v3,-1,3,-3,0,-4r0,4xm65,-31v1,2,7,-1,2,-1v-1,0,-2,0,-2,1xm15,-81v1,1,2,2,2,-1xm87,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm32,-51v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm78,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm34,-44v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm30,-46v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm67,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm17,-49r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm51,0v2,0,3,-4,1,-5v-2,0,-2,4,-1,5","w":106,"k":{"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u0178":42,"\u00ff":44,"\u00d5":7,"\u00fc":9,"\u00fb":9,"\u00f9":9,"\u00fa":9,"\u00f5":12,"\u00f6":12,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00d6":7,"\u00c7":5,"y":44,"w":35,"u":9,"o":12,"Y":42,"W":32,"V":44,"U":9,"T":33,"Q":7,"O":7,"G":4,"C":5,"-":35,"'":11}},"M":{"d":"162,-192v1,1,1,2,0,3v-2,-1,-2,-2,0,-3xm156,-173v-15,2,-20,3,-31,3r0,-59v11,0,26,2,31,-4r0,60xm71,-200v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm78,-165v1,1,1,1,0,2v-2,-1,-2,-1,0,-2xm81,-155v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm156,-11v0,9,-19,12,-28,10r-3,-165v16,-2,26,-3,31,-3r2,105v-8,7,5,13,-2,15r0,38xm79,-140v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm112,-89v2,2,3,4,0,5v-3,-1,-2,-3,0,-5xm68,-186v-11,17,11,29,6,47v0,8,2,14,6,15r0,20v16,-3,4,-21,12,-24v11,-32,11,-69,17,-100r12,-1v0,34,1,62,0,83v0,9,-10,24,-2,33v-5,14,-20,63,-20,89v-2,5,-9,25,-22,25v-3,-25,-11,-49,-18,-85v-9,-4,1,-10,-5,-25v-7,1,-2,-4,-2,-9v-2,-3,-4,-9,-7,-17v-3,0,-8,16,-1,18v1,-1,3,-1,4,-1v-15,5,0,29,-7,45v4,19,-1,47,0,68v-4,9,-21,4,-32,5r3,-229v8,0,15,1,16,-6v11,6,11,6,17,0v15,5,15,19,20,47xm54,-44v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2v1,0,2,1,2,2xm54,-220v3,0,2,-3,0,-4v-1,1,-2,4,0,4xm43,-221v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm37,-224v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm30,-221v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm23,-224v2,-1,3,-3,0,-4v-2,0,-1,3,0,4xm38,-204v0,0,0,-2,-1,-2v0,0,0,2,1,2xm28,-197v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm17,-206v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm43,-148v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm14,-173v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm19,-166v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm43,-142v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm14,-160v1,-2,5,-5,0,-4r0,4xm19,-151v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm79,-22v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm41,-22v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm32,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm28,-2v-2,-2,-2,-4,-5,-3v1,2,2,4,5,3","w":166,"k":{"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00e5":7,"\u00e3":7,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"u":4,"o":5,"a":7}},"N":{"d":"129,-154v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm120,-149v1,4,-3,6,-5,3v1,-2,2,-3,5,-3xm121,-137v2,1,2,1,0,2v-1,0,0,-1,0,-2xm26,-228v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm111,-144v1,2,-1,2,-3,2xm105,-137v2,0,3,1,1,2xm69,-171v0,2,0,4,-3,3v0,-2,0,-4,3,-3xm129,-101v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm88,-135v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm76,-144v0,8,-3,11,-10,11v7,-3,6,-10,10,-11xm105,-129v7,1,3,-9,10,-8v4,0,6,4,6,14r10,0v-10,4,-16,12,-11,19r1,-5v0,9,-1,14,4,18v-6,-1,-1,8,-4,11v1,14,1,55,-2,75r-29,0v-5,-8,-24,-62,-24,-72v10,-3,21,-7,20,11v4,1,3,-3,3,-6v-5,-11,8,-7,16,-8v1,-7,-24,-1,-15,-9v-1,-7,3,-17,-4,-18v-6,1,-9,4,-9,7r5,-2v-4,6,6,10,0,18r-16,0v2,-1,4,-2,1,-3v-1,0,-3,2,-5,3v0,-7,-25,-37,-16,-47r2,1v-10,-14,6,-28,1,-41r-5,3v3,-13,-2,-35,0,-54v4,0,8,2,5,6v-3,12,17,32,10,37v-1,16,14,24,27,26v-7,0,-18,4,-22,0v0,11,-7,20,5,25v0,4,-2,2,-7,4v11,3,-2,20,5,24v2,-1,7,-29,15,-18v2,-1,6,-5,13,-13v-14,-18,-1,-65,-5,-99v10,0,23,2,25,-6v-2,7,4,6,9,6v-4,31,-1,40,-3,72v-5,7,-17,11,-16,29xm44,-164v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm77,-131v3,4,-3,13,-4,7v0,-2,1,-5,4,-7xm126,-64v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2v1,0,2,1,2,2xm40,-228r1,133v-5,14,-17,9,-30,9r0,-81v6,0,9,-2,9,-8v-2,2,-7,3,-9,0v2,-17,-4,-40,2,-53v-4,8,7,16,10,5v9,1,9,-4,17,-5xm60,-82v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm100,0v0,-2,5,-1,6,0v-2,1,-4,1,-6,0xm92,-1v1,1,1,1,0,2v-2,0,-3,-2,0,-2xm40,-78v5,27,1,57,-4,77v-10,-3,-16,1,-25,1r1,-79v8,-2,19,-1,28,1xm33,-217v2,-2,3,-4,0,-5v-3,1,-2,3,0,5xm36,-198v2,-1,0,-3,0,-1r0,1xm22,-204v4,-4,-2,-11,-7,-10v1,5,3,9,7,10xm111,-115v5,-3,-2,-10,-5,-10v-4,2,2,5,5,10xm57,-166v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm13,-202v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm26,-186v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm115,-97v2,-1,3,-4,0,-5v-2,1,-1,4,0,5xm18,-191v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm13,-193v1,-1,2,-2,2,-4xm106,-109v-2,2,-5,3,-9,2v2,5,7,2,9,-2xm90,-111r0,-7v-6,1,-10,9,0,7xm20,-164v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm108,-76v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm33,-146v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm29,-135v2,-1,3,-6,0,-7r0,7xm60,-102v2,-1,1,-4,0,-5v-2,0,-3,5,0,5xm22,-140v0,2,3,0,1,0r-1,0xm69,-89v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm35,-126v0,-1,-1,-2,-2,-2v-1,0,-2,1,-2,2v0,2,4,3,4,0xm31,-111v1,-4,4,-10,0,-11r0,11xm86,-60v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm31,-104v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm31,-100v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm33,-93v-1,-1,-2,-3,-2,0r2,0xm13,-15v2,-2,3,-4,0,-5v-2,2,-1,3,0,5","w":130},"O":{"d":"98,-211v-2,1,-2,-4,-2,-6v2,1,4,4,2,6xm114,-195v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm45,-182v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm109,-211v2,21,7,45,0,65v-1,4,8,5,3,8r0,98v-10,12,-25,49,-53,35v-8,-21,21,-36,21,-51r0,-92r3,-3v-7,-26,-3,-57,-22,-51v2,-5,-5,-20,-2,-33v10,-1,16,1,13,11v2,-4,6,-15,9,-2v1,-7,9,-2,15,-2v0,1,-5,11,-4,15v-4,-3,-13,-3,-14,2v1,9,29,11,31,0xm50,-109v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm49,-102v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm45,-64v-15,7,6,27,9,35r0,29v-74,-15,-47,-114,-47,-191v0,-13,4,-19,12,-19v-3,-23,24,-7,29,-25v2,0,4,-1,6,-1r0,30v-27,14,-18,113,-9,142xm50,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm43,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm87,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm78,-202v1,1,4,5,3,0r-3,0xm79,-194v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm107,-138v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm25,-215v-1,1,-2,6,0,7v0,-2,2,-5,0,-7xm109,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm110,-118v0,-4,-4,-5,-3,0r3,0xm103,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm102,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm83,-122v-1,0,-2,4,0,4v1,-1,1,-3,0,-4xm37,-142v0,1,-2,2,0,2r0,-2xm40,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2","w":118,"k":{"\u00c1":5,"\u00c2":5,"\u0178":5,"\u00ff":5,"\u00c3":5,"\u00c0":5,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"\u00c5":5,"\u00c4":5,"y":5,"v":4,"a":9,"Y":5,"X":11,"W":4,"V":5,"J":4,"A":5,".":7,",":7,"'":4}},"P":{"d":"122,-179v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm55,-193v2,0,3,5,0,5v-2,0,-1,-5,0,-5xm102,-215v18,15,4,44,13,62v-4,4,-4,11,-2,14v1,12,-27,53,-40,39v-6,0,-21,7,-29,5v-4,-8,-3,-48,10,-33v23,0,39,-49,16,-65v-9,-10,3,-16,-6,-22v-4,5,-5,10,-5,14v-7,-3,-10,-2,-18,0v0,-7,-1,-20,3,-22v17,2,31,-10,49,-3v-1,8,11,1,9,11xm44,-171v0,2,1,6,-2,5xm42,-162v2,0,3,5,0,5v-3,0,-2,-5,0,-5xm42,-151v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm38,-82v4,18,0,31,5,53v-12,8,7,33,-21,29v-3,-3,-9,-4,-15,-5v0,-23,-5,-56,8,-66v-2,0,-3,0,-6,-2r0,-150v4,1,5,-1,4,-5v8,0,15,6,25,7r0,139xm80,-223v-1,-2,-4,-3,-4,0r4,0xm76,-192v1,2,2,3,2,-1xm111,-153v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm82,-177v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm84,-151v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm19,-90v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm11,-89v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm13,-84v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm22,-68v1,-2,2,-2,-2,-1xm38,-38v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm38,-32v3,0,0,-3,0,-1r0,1","w":120,"k":{"\u00c1":25,"\u00c2":25,"\u0178":9,"\u00ff":7,"\u00c3":25,"\u00c0":25,"\u00e5":23,"\u00e3":23,"\u00e4":23,"\u00e2":23,"\u00e0":23,"\u00e1":23,"\u00c5":25,"\u00c4":25,"y":7,"j":32,"a":23,"Z":9,"Y":9,"X":16,"W":5,"V":9,"J":32,"A":25,".":35,"-":4,",":25}},"Q":{"d":"78,-242v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm121,-195v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm121,-157v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm44,-190v2,0,3,3,0,4v-2,-1,-3,-3,0,-4xm106,-30v-1,1,20,13,18,16v-3,8,-3,19,-8,25v-26,5,-28,-19,-49,-13v-12,4,-7,-13,-8,-22v10,-20,23,-16,19,-60v-3,-31,14,-96,-10,-116v-8,-7,-10,-19,-9,-35v29,-9,38,21,52,30v-6,12,10,44,-7,50v4,2,7,2,11,2v-9,5,0,11,-1,22r-3,0r4,31r-5,-4v0,8,-2,38,5,24v1,10,-7,7,-2,16v-7,3,0,13,0,19v0,1,-8,13,-7,15xm121,-73v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm42,-148v1,1,1,1,0,2v-2,-1,-2,-1,0,-2xm48,-118v-2,4,-9,-1,-3,0r3,0xm48,-102v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm42,-106v-9,29,-6,65,13,77r0,24v-8,0,-17,0,-20,3v-16,-17,-36,-34,-24,-67v-9,-9,12,-7,6,-15r-10,2v2,-61,-17,-156,48,-153r0,31v-13,1,-24,29,-13,40v0,8,-11,18,0,25v2,22,-13,21,-5,35xm42,-84v1,1,1,1,0,2v-2,-1,-2,-1,0,-2xm50,-64v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm104,-164v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm90,-166v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm99,-155v-1,0,-5,-4,-4,0r4,0xm110,-111v2,0,4,0,3,-2v-2,0,-4,0,-3,2xm93,-91v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm19,-155v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm101,-66v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm39,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm35,-84v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm24,-89v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm31,-73v2,-1,1,-4,0,-5v-2,1,-3,4,0,5","w":125,"k":{"\u00d9":4,"\u00db":4,"\u00da":4,"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u0178":18,"\u00d5":4,"\u00fc":9,"\u00fb":9,"\u00f9":9,"\u00fa":9,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00d6":4,"u":9,"o":9,"Y":18,"W":12,"V":18,"U":4,"T":12,"Q":2,"O":4,"-":7,"'":12}},"R":{"d":"101,-222v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm116,-184v1,-1,4,-1,5,0v-1,2,-4,1,-5,0xm50,-193v1,0,2,5,0,5v-3,0,-2,-5,0,-5xm47,-153v2,-2,4,0,1,1xm94,-86v11,15,6,42,18,56v-4,7,-4,12,7,16v-6,-1,-11,24,-16,9v-2,8,-33,7,-25,-4v-5,-19,-10,-48,-19,-86r-9,0v2,-1,3,-3,6,-5r-9,0r0,-28v5,5,13,-5,30,-5v-9,-4,3,-25,2,-31v0,-23,-11,-36,-32,-38r0,-26v10,-1,18,-3,23,-5r0,4v25,0,27,9,25,23v4,1,1,-7,7,-5v0,4,-2,7,-5,9v13,-5,15,13,17,44v8,7,-6,7,-6,21v0,20,-36,32,-12,48xm103,-69v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm118,-44v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm35,-128v13,0,5,25,6,31v-2,-7,-12,-5,-20,-5v3,7,11,9,22,9v-3,8,1,19,3,28v-20,2,1,28,-5,47v9,5,-3,11,-8,16v0,0,-19,-1,-26,2r3,-76v9,-4,2,-6,4,-10v-10,1,-4,-9,-4,-18r-3,-126v4,-2,7,-3,12,-3v-6,0,-10,7,-5,13v2,-2,3,-7,6,-8v0,12,8,5,18,6v1,-2,3,-3,5,-6r-2,93v-6,1,-3,6,-6,7xm49,-51v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm41,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm43,-51v0,2,0,2,-2,2xm10,-82v2,1,3,3,0,4v-2,-1,-3,-3,0,-4xm90,-199v1,-1,4,-4,0,-3v-1,0,-5,4,0,3xm105,-173v-3,0,-11,10,-10,11v5,0,9,-3,10,-11xm82,-160v1,0,1,-1,1,-2xm98,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm103,-131v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm94,-131v1,-1,3,-2,0,-2r0,2xm96,-126v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm90,-131v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm94,-115v2,-2,3,-4,0,-5v-3,1,-2,3,0,5xm34,-155v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm76,-111v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm38,-142v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm20,-158v1,0,1,-1,1,-2xm30,-146v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm21,-148v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm12,-155v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm50,-115v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm92,-69v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm27,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm25,-133v-3,-1,-9,2,-4,2v1,0,2,0,4,-2xm78,-71v3,1,7,-2,3,-4r-5,-1v0,2,1,3,2,5xm12,-137v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm38,-109v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm72,-71v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm74,-69v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm28,-114v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm32,-111v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm81,-56r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm30,-104v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm21,-113v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm14,-115v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm80,-51v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm21,-107v0,3,3,0,1,0v-1,0,-1,-1,-1,0xm21,-93v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm96,0v3,0,2,-5,0,-5v-2,1,-1,4,0,5xm23,-64v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm31,-50v1,-1,1,-1,0,-2v-2,0,-1,2,0,2xm25,-53v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm25,-49v0,0,-2,-3,-2,0r2,0","k":{"\u00c1":5,"\u00c2":5,"\u0178":18,"\u00ff":18,"\u00c3":5,"\u00c0":5,"\u00fc":7,"\u00fb":7,"\u00f9":7,"\u00fa":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"\u00c5":5,"\u00c4":5,"y":18,"u":7,"o":7,"a":9,"Y":18,"X":4,"W":12,"V":16,"T":9,"J":5,"A":5,"-":9}},"S":{"d":"83,-238v0,1,-1,3,-1,1xm117,-203v-4,0,-5,-4,0,-3r0,3xm97,-226v-2,5,17,24,13,38v-1,11,-27,10,-28,11v-3,-6,-16,-26,-25,-29v2,-11,-7,-27,9,-27v8,0,18,2,31,7xm64,-153v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm113,-104v0,3,0,5,-3,4xm107,-83v18,13,8,53,-9,58v-5,2,-5,5,-3,10v-6,8,-26,25,-34,8v0,-3,0,-6,1,-7v-3,-1,-2,-2,0,-4v1,1,1,2,1,4r27,0v3,-5,-2,-7,-6,-8v-12,-2,-20,8,-23,-2v21,-21,31,-40,3,-67v3,-1,2,-3,1,-5v-18,2,-60,-46,-57,-64v-5,-41,4,-73,45,-73r0,31v-35,19,11,74,33,78r-3,2v11,4,22,23,24,39xm53,-38v2,1,1,4,0,5v-2,-1,-3,-4,0,-5xm34,-65v-2,16,41,48,19,65v-23,-8,-60,-22,-47,-60v11,-3,21,-4,28,-5xm40,-1v3,0,0,3,0,1r0,-1xm13,-15v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm113,-62r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm64,-97v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm75,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm48,-7v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm38,-10v1,1,2,2,2,-1","w":120,"k":{"\u00c1":4,"\u00c2":4,"\u0178":12,"\u00ff":12,"\u00c3":4,"\u00c0":4,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"\u00c5":4,"\u00c4":4,"y":12,"w":11,"v":12,"t":14,"a":11,"Y":12,"X":14,"W":9,"V":12,"T":4,"J":9,"A":4,".":12,"-":16}},"T":{"d":"81,-199v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm5,-230v25,-5,36,0,60,0v1,-7,5,-8,4,0v17,-1,29,0,42,-3v0,14,-1,28,-4,31r-102,0r0,-28xm82,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm84,-122v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm82,-102v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm71,-195v-2,30,3,65,0,87v3,8,-2,25,0,39v5,1,8,3,8,5r-8,0r0,64r-32,-1r-1,-194v9,-5,26,-4,33,0xm43,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm38,-228v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm34,-228v2,0,2,-3,1,-4v-2,0,-4,0,-3,2v0,1,1,2,2,2xm23,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm51,-82v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm45,0v3,0,2,-5,0,-5v-2,0,-3,5,0,5","w":116,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c1":39,"\u00c2":39,"\u00d5":7,"\u00c3":39,"\u00c0":39,"\u00f5":18,"\u00f6":18,"\u00f4":18,"\u00f2":18,"\u00f3":18,"\u00e5":42,"\u00e3":42,"\u00e4":42,"\u00e2":42,"\u00e0":42,"\u00e1":42,"\u00d6":7,"\u00c7":7,"\u00c5":39,"\u00c4":39,"s":16,"o":18,"a":42,"S":5,"Q":5,"O":7,"J":30,"G":5,"C":7,"A":39,".":32,"-":28,",":26}},"U":{"d":"124,-155v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm113,-233v1,25,-2,58,2,71v-7,33,8,85,-7,111v-8,-6,-29,8,-29,-15r3,-164v16,-1,15,-2,31,-3xm50,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm50,-124v0,0,1,7,-1,3v0,-1,0,-3,1,-3xm108,-44v-1,-1,-3,-2,0,-2r0,2xm44,-53v-8,10,1,15,13,27r0,25v-59,1,-50,-66,-49,-127v2,-2,4,-4,0,-5r0,-96v20,2,29,-9,36,-1v-5,4,-7,23,3,26r-7,0r2,107v-1,0,-2,-1,-2,-3v-1,16,3,30,-1,41v0,5,2,7,5,6xm113,-40v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm50,-102v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm97,-40v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm93,-29v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm46,-66v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm62,-29v4,-1,21,-29,26,-14v3,8,-9,5,-13,9v-1,3,12,1,13,8v-4,-2,-14,4,-6,4r20,0v-1,12,-25,28,-40,20r0,-27xm90,-221v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm17,-217v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm13,-220v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm101,-104v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm95,-100v2,-1,2,-3,0,-4v-2,1,-2,3,0,4xm112,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm20,-118v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm26,-111v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm11,-122v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm84,-44v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm17,-80v2,-1,0,-3,0,-1r0,1xm13,-66v3,1,2,-3,2,-5v-3,-1,-2,3,-2,5xm26,-53v-1,-1,-2,-3,-2,0r2,0xm15,-58v5,-1,6,-4,0,-4r0,4xm15,-49v2,0,6,1,5,-2v-2,0,-6,-1,-5,2","w":123,"k":{"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c0":12,"\u00e5":12,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e0":12,"\u00e1":12,"\u00c5":12,"\u00c4":12,"w":9,"a":12,"X":7,"J":9,"A":12}},"V":{"d":"124,-220v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm128,-208v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm124,-202v0,2,0,4,-2,3v0,-2,0,-4,2,-3xm119,-179v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm102,-111v-5,23,1,67,-19,81v6,8,6,16,1,25v-15,-1,-19,4,-27,6v7,-42,7,-108,23,-145v-2,-31,2,-51,11,-86r31,0v-7,19,-5,44,-9,64v9,11,-19,39,-6,51v-1,2,-2,3,-5,4xm99,-60v2,-2,4,0,1,1xm64,-115v0,20,-6,90,-13,110v-10,-16,-21,-104,-29,-141v4,-10,-19,-64,-15,-84v12,1,29,-1,35,-2v-1,7,6,28,4,42v13,-2,0,6,5,17r4,-2v-6,17,2,43,9,60xm95,-49v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm93,-33v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm78,-1v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm72,-1v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm51,0v0,-4,2,0,2,0r-2,0xm95,-223v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm53,-153v0,-2,-3,-1,-4,-1v0,2,2,2,4,1xm49,-44v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm71,-22v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm73,-11v2,0,2,0,2,-2xm64,-13v4,1,6,-1,5,-5xm49,-29v2,0,1,-3,0,-4v-2,1,-3,3,0,4","w":131,"k":{"\u00d2":9,"\u00d4":9,"\u00d3":9,"\u00c8":7,"\u00cb":7,"\u00c1":31,"\u00ca":7,"\u00c2":31,"\u00ff":5,"\u00d5":9,"\u00c3":31,"\u00c0":31,"\u00fc":9,"\u00fb":9,"\u00f9":9,"\u00fa":9,"\u00f5":16,"\u00f6":16,"\u00f4":16,"\u00f2":16,"\u00f3":16,"\u00e7":9,"\u00e5":39,"\u00e3":39,"\u00e4":39,"\u00e2":39,"\u00e0":39,"\u00e1":39,"\u00d6":9,"\u00c9":7,"\u00c7":11,"\u00c5":31,"\u00c4":31,"y":5,"u":9,"s":16,"r":7,"o":16,"l":7,"c":9,"a":39,"W":7,"S":9,"R":2,"Q":12,"O":9,"J":35,"H":7,"G":12,"E":7,"C":11,"B":5,"A":31,".":35,"-":21,",":28}},"W":{"d":"116,-200v1,-2,2,-3,2,1xm28,-234v0,0,-2,5,-1,1xm49,-177v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm146,-230v12,-5,26,3,31,-5v0,19,4,42,-8,51v3,10,-6,17,2,28v1,2,-8,8,-2,10v0,0,-12,22,-7,42v-9,21,-6,44,-14,65v4,16,4,14,-6,34v-5,-1,-9,3,-5,5r-19,0v-7,-3,-15,-88,-18,-92r-7,0v4,-10,3,-19,-2,-28v-14,11,-7,45,-15,62v7,5,-8,42,-9,49v2,-28,-13,-49,-9,-100v-2,-2,-6,-3,-7,0v-2,26,13,80,12,103v-15,0,-10,8,-25,6v-7,-80,-22,-152,-32,-230v19,-1,16,-2,32,2r-2,11v1,-1,3,-3,6,-3v-3,12,-3,14,2,18v0,25,3,40,5,58v29,-9,16,-23,29,-86v16,-1,30,-2,34,13r-5,0v3,13,1,30,13,34r-7,0v10,15,-2,33,15,37v-15,5,1,6,-6,22v3,2,0,17,9,9xm157,-44v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm86,-82v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm160,-229v3,0,0,-3,0,-1r0,1xm173,-202v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm160,-173v1,1,2,3,2,0r-2,0xm153,-168v-1,-2,-2,-4,-2,0r2,0xm142,-166v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm157,-142v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm89,-204v2,1,6,-3,2,-2xm89,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm140,-137v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm151,-111v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm86,-170r0,-6v-2,0,-3,1,-4,3v0,2,2,3,4,3xm25,-226v1,1,2,3,2,0r-2,0xm111,-137v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm127,-105v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm93,-137v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm128,-97v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm84,-140v0,2,3,0,1,0r-1,0xm90,-130v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm86,-122v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm38,-168v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm69,-137v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm146,-51v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm99,-95v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm54,-144v-1,9,-6,21,-1,29v7,0,10,-10,10,-29r-9,0xm45,-140v1,1,2,1,3,0r-3,0xm146,-24v3,1,2,-3,2,-5v-3,-1,-2,3,-2,5xm27,-140v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm111,-56v1,2,2,4,2,0r-2,0xm111,-44v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm113,-38v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm118,-33v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm115,-20v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm118,-15v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm51,-51v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm36,-46v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm56,-17v3,0,0,-3,0,-1r0,1xm46,-22v2,-1,3,-3,0,-4v-2,0,-1,3,0,4xm46,0v3,0,2,-5,0,-5v-2,1,-1,4,0,5xm43,0v1,-1,1,-4,-1,-5v-2,0,-3,6,1,5xm58,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5","w":185,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c1":30,"\u00c2":30,"\u00ff":9,"\u00d5":7,"\u00c3":30,"\u00c0":30,"\u00f5":12,"\u00f6":12,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00e5":32,"\u00e3":32,"\u00e4":32,"\u00e2":32,"\u00e0":32,"\u00e1":32,"\u00d6":7,"\u00c7":5,"\u00c5":30,"\u00c4":30,"y":9,"x":9,"s":12,"o":12,"m":9,"a":32,"X":2,"S":5,"Q":7,"O":7,"J":32,"G":7,"C":5,"B":4,"A":30,".":32,"-":18,",":23}},"X":{"d":"121,-211v1,2,2,3,0,5v-2,-2,-1,-3,0,-5xm49,-238v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm97,-158v4,2,5,7,-2,7v-5,11,-4,18,-12,20v-22,-33,-13,-71,5,-97v16,-1,28,-2,36,-2v-4,18,-20,48,-27,72xm92,-122v-1,1,-3,1,-4,0v4,-1,0,-1,4,0xm34,-158v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm119,-42v-10,18,25,40,-9,43r0,-5r-18,0v-12,-13,-10,-59,-33,-56v-6,21,-16,50,-22,58v-5,-7,-14,6,-23,1r7,0v-1,-7,-11,0,-16,-1v8,-39,55,-105,32,-149v0,-1,0,-5,2,-11r-7,2v-16,-41,-24,-64,-24,-70v19,0,34,-12,39,9v3,12,12,14,5,17v11,39,20,79,40,104v3,20,13,35,22,60v2,0,3,-1,5,-2xm31,-1v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm10,-2v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm63,-64v4,0,7,-3,2,-5v-4,0,-5,4,-2,5xm101,-22v3,-1,5,-5,0,-4r0,4xm57,-60v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm34,-51v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm32,-40v2,0,2,0,2,-2xm34,-31v2,0,4,0,3,-2v-2,0,-4,0,-3,2xm21,-40v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm21,-26v6,-1,7,-6,0,-5r0,5","w":130,"k":{"\u00d2":9,"\u00d4":9,"\u00d3":9,"\u00c1":2,"\u00c2":2,"\u00ff":5,"\u00d5":9,"\u00c3":2,"\u00c0":2,"\u00fc":5,"\u00fb":5,"\u00f9":5,"\u00fa":5,"\u00f5":14,"\u00f6":14,"\u00f4":14,"\u00f2":14,"\u00f3":14,"\u00d6":9,"\u00c7":5,"\u00c5":2,"\u00c4":2,"y":5,"u":5,"o":14,"S":4,"Q":7,"O":9,"G":4,"C":5,"B":2,"A":2,"-":30}},"Y":{"d":"122,-220v-24,44,-20,60,-41,116v-4,-7,-9,-22,-16,-44v5,-18,11,-46,20,-82r36,0v2,2,-10,12,1,10xm25,-232v-3,0,-1,-1,-1,-1xm63,-179v2,1,3,3,0,4v-2,0,-1,-4,0,-4xm59,-159v1,33,31,64,20,104v1,15,-3,35,2,46v-10,8,-7,8,-20,9v3,-1,11,-5,4,-5v-10,0,-17,7,-22,3v6,-26,2,-66,3,-98v-7,-18,-46,-134,-40,-130v8,1,16,-5,18,2v1,-4,7,-6,14,-5v0,9,4,13,8,13v0,11,5,46,13,43v-3,8,0,14,3,18r-3,0xm90,-33v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm84,-18v2,-2,3,0,1,1xm44,-163v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm37,-166v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm30,-159v3,-1,2,-3,0,-5v-2,2,-3,4,0,5","w":126,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c1":30,"\u00c2":30,"\u00d5":7,"\u00c3":30,"\u00c0":30,"\u00f5":18,"\u00f6":18,"\u00f4":18,"\u00f2":18,"\u00f3":18,"\u00e5":40,"\u00e3":40,"\u00e4":40,"\u00e2":40,"\u00e0":40,"\u00e1":40,"\u00d6":7,"\u00c7":11,"\u00c5":30,"\u00c4":30,"s":12,"o":18,"a":40,"S":5,"Q":9,"O":7,"J":30,"G":7,"C":11,"B":2,"A":30,".":30,"-":26,",":25}},"Z":{"d":"96,-230v2,1,1,3,0,4v-2,0,-1,-3,0,-4xm91,-228v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm87,-228v-2,2,-8,9,-6,5v1,-2,3,-4,-1,-3v-3,0,-4,1,-6,3v0,-6,7,-5,13,-5xm87,-219v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm94,-210v-2,0,-4,0,-5,-2v2,0,6,-1,5,2xm69,-223v0,-2,2,-4,2,-1xm89,-208v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm107,-223v-5,18,-10,46,-27,52v-1,-9,15,-12,5,-24v5,-1,8,-2,11,-5r-7,0v8,-10,7,-15,18,-23xm76,-212v0,2,1,5,-2,4xm71,-212v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm63,-219v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm83,-201v-2,0,-7,4,-7,0r7,0xm67,-204v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm41,-217v4,-3,18,-21,22,-4v-4,0,-6,-1,-9,2v2,11,10,7,13,9r-4,9v-3,-2,-4,-9,-12,-7v0,-2,-1,-5,-1,-9r-9,0xm77,-197v0,4,-4,9,-10,9v-1,-7,1,-9,10,-9xm83,-186v-3,0,-8,3,-9,1v1,-4,4,-4,9,-1xm52,-204v1,0,1,1,1,2xm91,-164v2,1,2,2,0,3v-1,-1,-1,-2,0,-3xm38,-210v8,-2,3,5,3,9v-7,-4,-11,1,-24,0v0,-2,1,-7,-1,-7v-4,-1,-4,5,-6,7r0,-28v14,2,18,-4,31,-5r-7,4v5,2,7,5,7,9v-6,-1,-2,7,-3,11xm61,-171v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm81,-139v0,-2,3,0,1,0r-1,0xm74,-108v-19,19,-18,49,-33,72r-36,0v2,-13,15,-7,9,-19v8,-24,20,-67,38,-87v-2,-1,-3,-2,-3,-4v12,4,4,-9,12,-11v-3,0,-6,-1,-8,2r0,-9v4,6,13,1,12,-8v0,-4,-5,-5,-2,-9v3,1,8,4,5,10v4,0,5,0,8,-2v-4,7,4,9,-2,18v13,3,11,-16,17,-24v9,11,-15,24,-2,33v-9,3,-19,8,-10,13v-8,2,-9,19,-5,25xm56,-62v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm47,-38v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm96,0v-29,2,-54,-13,-71,0r-20,0r0,-31v11,-2,55,4,84,-5v-1,6,8,2,12,3r1,-5v8,4,2,20,3,33v-6,-1,-14,1,-9,5xm36,-2v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm3,-2v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm56,-221v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm34,-221v2,-1,5,-6,0,-5r0,5xm30,-223v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm32,-210v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm25,-212v4,0,5,-3,5,-7v-2,2,-4,4,-5,7xm17,-223v1,1,1,3,1,0r-1,0xm30,-204v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm71,-159v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm18,-212v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm67,-161v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm18,-206v2,0,6,1,5,-2xm69,-155v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm71,-148v2,0,4,0,3,-3xm65,-153v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm70,-140v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm63,-139v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm58,-138v1,1,0,-6,0,-6v-1,3,-1,3,0,6xm50,-131r0,-4v-2,0,-1,4,0,4xm63,-115v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm52,-120v1,-4,-2,-4,-2,-1v0,1,1,1,2,1xm47,-121v1,-2,3,-2,3,-5v-2,1,-4,1,-3,5xm27,-73v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm25,-53v2,0,2,0,2,-2xm18,-53v4,1,3,-2,3,-5xm21,-46v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm7,-22v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm10,-2v3,0,8,2,7,-3v-3,0,-5,1,-7,3","w":112,"k":{"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"o":9,"-":23}},"[":{"d":"67,-245v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm67,-228v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm44,-244v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm37,-142v1,0,2,5,0,5v-2,0,-1,-5,0,-5xm42,-111v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm7,-235r54,-5v-7,13,6,39,-28,37v-1,8,1,9,9,12v-9,3,-11,15,-8,29r5,0v-13,12,2,42,-6,54v4,17,-12,51,12,50v-9,6,-16,7,-10,30r4,0v-5,2,-6,13,0,13r21,0v-4,9,2,23,-6,15v-5,9,-9,-6,-19,4v-5,3,-9,5,-11,5v7,-15,9,-31,-4,-36v0,5,-9,20,-13,21r0,-229xm43,-95v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm58,-19v-5,0,-8,2,-12,0r12,0xm12,2v-2,0,-6,4,-5,0r5,0xm54,-235v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm50,-235v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm56,-216v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm12,-190v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm12,-57v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm9,-40v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm16,-27v3,-1,2,-4,0,-5v-2,1,-3,4,0,5","w":72},"\\":{"d":"51,-229r147,227v-10,0,-23,-1,-40,-4v-3,-1,-27,-48,-39,-46v2,0,3,-1,3,-4v-11,-3,-5,-4,-3,-7v-9,-22,-29,-32,-41,-62v-9,-22,-22,-12,-20,-33v-9,-3,-15,-7,-7,-9v-9,-13,-15,-33,-33,-36v13,-4,-8,-21,-7,-26r40,0xm86,-104v5,0,2,4,0,3v-1,0,-2,0,-3,-1v0,-1,1,-2,3,-2xm107,-74v0,1,-1,2,-3,2v-2,0,-3,-1,-3,-2v0,-1,1,-2,3,-2v2,0,3,1,3,2xm132,-38v-1,2,-4,3,-5,0v0,-1,0,-2,2,-2v2,0,3,1,3,2xm64,-148v0,-2,0,-3,-2,-3v-2,0,-3,1,-3,3v0,1,1,2,3,2v2,0,2,-1,2,-2xm162,-32v2,4,9,0,4,-2v-2,0,-4,1,-4,2","w":209},"]":{"d":"65,-246v0,2,-2,1,-3,1v0,-2,2,-1,3,-1xm63,-231v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm63,-112v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm62,-97v2,0,4,0,3,2xm30,-160v-4,-15,11,-61,-23,-55r0,-24v14,-1,34,3,43,-3v-1,5,5,2,8,3r1,43r7,0v0,2,-3,3,-8,4v2,12,2,24,0,36r4,-2v-10,11,4,39,-6,49v2,22,3,64,2,87r4,-2v-14,17,-5,17,-3,33v-17,3,-22,-1,-45,-1v-2,-3,-3,-4,0,-7v12,7,16,-6,8,-13v0,-9,14,-14,13,-23r-4,0v1,-19,-3,-43,2,-58v-5,-10,-2,-47,-3,-67xm60,-69v3,1,1,6,-1,3v0,-1,0,-2,1,-3xm65,-62v1,3,-3,2,-5,2v-1,-3,3,-2,5,-2xm7,-20v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm9,-14v3,0,2,5,0,5v-1,0,-2,-5,0,-5xm50,-206v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm33,-206v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm50,-128v1,1,2,3,2,0r-2,0xm56,-118v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm50,-118v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm43,-120v3,0,2,-3,0,-4v-1,1,-2,4,0,4xm39,-118v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm33,-120v3,1,2,-4,2,-6xm37,-113v1,2,5,3,4,0r-4,0xm48,-101v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm46,-94v3,0,5,0,4,-3xm39,-92v1,-2,7,-6,0,-5r0,5xm48,-6v0,-5,-3,-8,-9,-8v-7,0,-10,13,1,13v5,-1,8,-2,8,-5","w":72},"^":{"d":"52,-272v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm65,-256r0,2v-1,-1,-1,-1,0,-2xm61,-256r0,2v-1,-1,-1,-1,0,-2xm72,-240v-1,2,-3,0,-1,0r1,0xm5,-232v7,-7,16,-60,41,-43v2,0,23,40,24,43v-24,8,-21,-25,-33,-31v-8,13,-7,35,-32,31xm37,-277r1,0r-1,0","w":73},"_":{"d":"87,-2v-30,-1,-53,3,-82,0r0,-21v11,-3,28,2,33,-3v10,7,33,1,48,3v1,4,4,16,1,21xm31,-21v1,-1,1,-3,-1,-3v-2,1,0,2,1,3","w":93},"`":{"d":"60,-249v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm57,-234v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm32,-251v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm38,-232v2,1,4,-2,2,-2v-1,0,-2,1,-2,2","w":75},"a":{"d":"86,-235v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm143,-87v1,3,-3,2,-5,2v-1,-3,3,-2,5,-2xm132,-83v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm69,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm71,-131v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm132,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm128,-56v2,1,3,2,-1,2xm78,-87v6,-22,-20,-67,-3,-83v-16,0,-14,-46,-14,-60v7,-2,10,2,25,1v10,8,1,24,15,27v-11,-2,-2,8,-6,13v2,11,0,35,17,38v-21,2,3,16,-4,27v3,7,7,11,4,21v2,5,14,7,13,16v-19,5,3,26,-4,39v8,7,0,30,12,34v-4,0,-7,4,-8,10v-12,-2,-37,7,-32,-10v0,-11,-4,-18,-15,-19r0,-4v-12,0,-16,7,-19,-4v-25,1,-6,54,-45,39v-4,3,-7,3,-7,-3v-1,-23,24,-74,5,-93v3,-2,5,-10,5,-24v10,0,14,-8,7,-11v-14,6,-30,2,-21,-11v8,2,16,9,24,5r-7,0v20,-15,14,-64,27,-90v3,0,7,1,9,2v4,34,11,74,6,105v0,-1,-1,-4,-3,-4v1,3,12,15,-1,15v-4,15,-10,25,5,20v5,-7,13,-3,15,4xm69,-100r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm12,-120v0,2,0,2,-2,2xm10,-104v-5,6,-10,6,-20,6v1,-6,11,-7,20,-6xm69,-31v1,1,4,4,0,3r0,-3xm79,-150v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm120,-88v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm64,-89v1,0,2,-1,2,-3v-2,0,-5,2,-2,3xm66,-89v1,1,-4,5,0,4v2,-1,5,-4,1,-5xm10,-135v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm73,-48v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm51,-48v2,-1,3,-3,0,-4v-2,0,-1,3,0,4","w":137,"k":{"\u0131":7,"\u00ff":35,"\u00fc":12,"\u00fb":12,"\u00f9":12,"\u00fa":12,"\u00f5":18,"\u00f6":18,"\u00f4":18,"\u00f2":18,"\u00f3":18,"\u00f1":4,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":16,"\u00e5":7,"\u00e3":7,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"z":11,"y":35,"x":5,"w":33,"v":37,"u":12,"t":40,"s":12,"r":5,"q":12,"p":7,"o":18,"n":4,"m":14,"l":7,"k":4,"j":14,"i":7,"h":7,"g":9,"f":5,"e":5,"d":14,"c":16,"b":5,"a":7,"B":7}},"b":{"d":"126,-183v-1,1,-2,3,-2,0r2,0xm55,-189v0,4,-6,1,-9,2v0,-4,6,-1,9,-2xm2,-238v4,2,1,9,-4,9v0,-4,1,-7,4,-9xm46,-166v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm55,-156v2,8,-6,6,-10,8v0,-5,4,-8,10,-8xm-4,-200v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-24,-212v0,2,-3,1,-4,1v2,-2,1,-2,4,-1xm-33,-214v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm96,-122v27,28,26,44,22,82r8,0v-3,1,-15,11,-14,18r-3,0v1,2,5,3,11,2v-18,6,-67,39,-75,3v-2,-1,-6,13,-6,13v-9,-1,-16,2,-21,4v-6,3,-6,-18,-9,-18v-7,-1,-18,2,-24,-1v3,-2,8,-3,15,-3v2,-8,-6,-18,-7,-24v5,-5,11,-16,6,-25v-9,0,-22,-3,-16,-14v-4,11,15,16,19,7v2,-6,-20,-8,-18,-14v4,-1,6,7,8,3v-1,-17,-15,2,-21,1v1,-13,22,-13,38,-12v4,-4,0,-6,-5,-8r7,0v-1,-27,3,-57,-4,-79v-2,10,-16,11,-9,0v-3,-12,10,-12,4,-23r-15,0v4,-1,9,-3,17,-6v-6,-15,10,-21,20,-13v1,-1,3,-2,4,-6r15,8r0,186v8,6,15,7,15,-6v12,13,27,-1,27,-19v0,-17,-8,-43,-24,-34v-4,-1,-8,-10,-15,-4r0,-40v1,2,6,10,10,9v29,1,35,-62,4,-63r-14,4r0,-33v5,0,22,-1,30,-4v45,13,53,81,20,109xm4,-146v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm46,-89v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm55,-70v0,7,-8,5,-8,0r8,0xm70,-46v0,-4,2,0,2,0r-2,0xm55,-52v0,4,-6,1,-9,2v0,-4,6,-1,9,-2xm52,-41v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-5,-60v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm-6,-26v1,2,-1,2,-3,2xm5,-191v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm60,-119v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm60,-38v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm7,-85v-1,-1,-4,-1,-5,0v1,1,3,1,5,0xm9,-79v3,-2,2,-4,-2,-3xm46,-31v0,-2,0,-3,-2,-4v0,2,-1,5,2,4xm2,-70v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm9,-59v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm4,-39v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm9,-38v-3,0,-5,4,-5,11v4,0,5,-4,5,-11","w":129,"k":{"\u0131":4,"\u00ff":21,"\u00fc":9,"\u00fb":9,"\u00f9":9,"\u00fa":9,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00f1":7,"\u00ef":4,"\u00ee":4,"\u00ec":4,"\u00ed":4,"\u00e7":9,"\u00e5":14,"\u00e3":14,"\u00e4":14,"\u00e2":14,"\u00e0":14,"\u00e1":14,"z":5,"y":21,"x":14,"w":18,"v":19,"u":9,"t":14,"s":5,"r":5,"q":7,"p":9,"o":11,"n":7,"m":12,"l":7,"k":5,"j":9,"i":4,"h":5,"g":5,"f":2,"d":9,"c":9,"b":4,"a":14,"-":14}},"c":{"d":"82,-237v1,2,-1,2,-3,2v-1,-2,1,-2,3,-2xm62,-231v8,-1,32,7,37,7v4,7,6,17,15,19v0,15,-2,25,-2,47v-11,-1,-21,9,-24,6v1,-5,-12,-30,-15,-44v0,-1,-13,-5,-11,-9r0,-26xm32,-231v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm10,-222v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm45,-174v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm5,-211v2,5,0,11,-6,13xm116,-85v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-14,-211v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm48,-147v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm112,-78v0,-1,4,-2,4,0r-4,0xm-5,-196v1,1,3,2,0,2r0,-2xm109,-83v1,7,-7,9,-10,5v2,-3,6,-5,10,-5xm110,-73v3,0,2,5,0,1r0,-1xm-12,-192v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm-18,-185v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm-21,-185v-1,3,-6,6,-8,3v-1,-3,4,-3,8,-3xm94,-81v-3,11,17,12,17,19v-4,1,-11,-2,-10,3r11,0v0,6,1,13,-4,13v8,12,-6,30,-11,11v-3,-1,-7,-3,-11,-6v8,-6,0,-16,6,-24v-3,1,-6,1,-10,2r0,-18r12,0xm58,-198v-1,6,14,9,13,15r-29,0v0,23,5,34,0,52v1,-4,3,-5,6,-5v-11,19,1,49,-6,71v3,2,3,10,0,14v-1,3,17,17,16,20v-2,11,7,36,-10,29v-17,5,-41,-29,-19,-29v-1,-4,-3,-5,-7,-3v-30,-11,5,-115,-19,-151v-11,-4,-3,-5,6,-17v14,-20,32,-29,49,-29r0,33xm82,-57v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm86,-48v1,3,-2,2,-4,2v0,-2,2,-2,4,-2xm95,-31v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm99,-22v0,2,1,6,-2,5v0,-2,0,-4,2,-5xm88,-20v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm74,-26v-4,7,15,10,19,14v-5,10,-22,17,-31,8v2,-13,-7,-30,13,-27v4,1,15,2,9,7xm15,-29v1,-2,2,-3,2,1xm106,-170v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm56,-189v-1,-1,-4,-5,-3,0r3,0xm59,-184v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm53,-183v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm86,-67v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm90,-54v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm99,-39v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm95,-41v-1,-1,-4,-4,-3,0r3,0xm83,-10v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm27,-24v2,0,3,-3,0,-4v-2,1,-1,3,0,4","w":121,"k":{"\u00ff":9,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00e5":12,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e0":12,"\u00e1":12,"z":4,"y":9,"x":11,"w":7,"v":9,"t":4,"q":4,"o":4,"a":12,".":14}},"d":{"d":"45,-240v-8,0,-13,-3,-13,-10v7,1,12,5,13,10xm21,-243v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm59,-187v2,1,8,-2,7,2v-3,2,-8,4,-7,-2xm50,-174v-2,-1,-5,-6,0,-5r0,5xm122,-54v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm114,-179v3,34,-1,72,2,110v1,14,-13,40,7,43v-5,1,-4,7,-8,11v-1,-4,-3,-7,-6,-7v-5,-1,-18,13,-22,13v0,-7,-4,-1,-7,0v-15,-5,-31,-5,-52,-2v1,1,3,3,3,4v0,5,-13,10,-18,5v5,-19,-13,-53,14,-51v9,0,14,9,16,25v1,-8,7,-6,14,-9v3,9,17,-5,24,-8r0,-129v-7,-8,-10,-25,-29,-22v-6,-1,-8,-3,-9,-7r0,83v-6,2,-6,9,-3,16v-5,11,-7,12,-7,36v-6,6,-13,12,-20,14v2,-22,-2,-44,-1,-77v-12,-1,-14,-4,-14,-19r-22,2v1,-9,15,-7,25,-7v0,-6,9,-11,-7,-13v5,-1,24,-5,12,-13v-11,4,-24,1,-23,-12v8,1,20,8,26,4v-2,-12,6,-12,4,-40v13,-1,28,-6,31,8v2,-8,12,-12,3,-21r14,-3v0,6,-7,7,2,10r11,-7v-1,1,-6,10,-2,13v9,-10,24,15,32,5v0,7,6,20,18,37v0,5,-5,4,-8,8xm46,-126v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm118,-54v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm131,-26v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm126,-22v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm46,-74v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm52,-65v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm68,-11v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm61,-4v-2,0,-4,-2,-7,-5v4,0,9,-1,7,5xm50,-7v-1,-1,-3,-2,0,-2r0,2xm37,-11v2,0,1,4,0,4v-2,0,-1,-4,0,-4xm110,-121v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm-4,-183r0,-4v-2,1,-2,3,0,4xm10,-145v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm85,-57v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm15,-85v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm18,-24v1,-1,6,-2,2,-2xm26,-4v3,-1,2,-4,0,-5v-2,1,-3,4,0,5","w":125,"k":{"\u00ff":12,"\u00fc":5,"\u00fb":5,"\u00f9":5,"\u00fa":5,"\u00e5":16,"\u00e3":16,"\u00e4":16,"\u00e2":16,"\u00e0":16,"\u00e1":16,"y":12,"x":7,"w":7,"v":11,"u":5,"q":2,"a":16}},"e":{"d":"110,-233v-2,-1,-5,-6,0,-5r0,5xm140,-149v0,1,-1,3,-1,1xm45,-231v15,3,43,1,57,-1v0,14,0,19,-5,34r-54,1xm132,-157v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm47,-192v-1,1,-2,3,-2,0r2,0xm51,-181v8,1,3,12,-2,15r-2,0v1,-3,2,-8,4,-15xm54,-163v0,3,-1,6,-3,8v1,-3,-2,-9,3,-8xm41,-164v1,-2,2,-3,2,1xm51,-153v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm45,-155v2,1,2,3,0,5r0,-5xm41,-145v1,-1,2,-2,2,1xm-3,-179v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm-12,-170v-4,-4,-9,-1,-14,0v0,-7,11,-14,19,-14v1,4,-9,9,-5,14xm-7,-170v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm39,-4v-4,9,-16,-6,-25,2v-6,-21,-9,-43,-13,-66v1,-1,4,-1,3,-4v-2,0,-8,8,-10,7v-2,-11,6,-11,16,-11v-2,-20,5,-46,-5,-59v8,-6,-11,-11,-9,-20v-5,2,-11,2,-17,0v-1,10,-21,-2,-24,8v0,-21,6,-22,18,-12v16,-4,38,-8,32,-28v14,-6,4,-15,6,-40v14,-1,23,-2,27,-2r0,53v-2,0,-3,0,-4,1v9,6,3,28,5,42v8,-8,29,-3,44,-4v2,5,2,40,-5,35v-12,-1,-23,-7,-34,-2r0,-20r-5,2r0,118xm43,-98r0,39v-3,-3,-3,-36,0,-39xm47,-54v-1,1,-2,3,-2,0r2,0xm45,0r-2,-39v15,7,39,1,58,2v-2,11,1,25,-6,37v-21,5,-40,-11,-50,0xm4,-87v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-3,-83v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm-17,-87v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-18,-83v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-10,-63v-4,-1,-1,-6,-2,-9xm-18,-72v-2,-1,-4,-2,0,-2r0,2xm-17,-50v8,0,7,-8,12,-11v2,16,-6,20,-14,27v1,-5,1,-5,2,-16xm6,-39v0,16,-4,19,-7,8v0,-6,2,-8,7,-8xm-7,-41v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-5,-18v1,0,1,0,1,1xm-14,-28v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-14,-20v3,0,5,2,3,4v0,0,-1,-2,-3,-4xm6,-162v-3,0,-4,2,-5,5v4,-1,5,-2,5,-5xm8,-54v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm12,-50v0,-2,-4,-3,-4,0v0,2,4,3,4,0xm7,-50v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2","w":110,"k":{"\u00f5":14,"\u00f6":14,"\u00f4":14,"\u00f2":14,"\u00f3":14,"\u00e7":7,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"z":2,"x":4,"w":4,"v":2,"s":12,"q":14,"o":14,"g":9,"d":4,"c":7,"a":9}},"f":{"d":"43,-172v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-163v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm47,-155v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm-2,-175v2,2,-4,13,-5,6v0,-4,2,-6,5,-6xm44,-228v11,0,54,-13,54,12v0,8,-1,15,-3,18v-18,2,-43,-5,-54,4v-5,30,-2,50,-1,85r4,0r0,-24v2,-2,34,-5,41,-4v-1,9,-2,15,-5,19r5,0v0,17,-17,7,-27,16v-3,-2,-4,-5,-8,-5v-20,19,-10,64,-9,94v0,22,-24,2,-31,13v-9,-35,7,-97,-11,-128v6,14,-13,15,-6,4v-3,-14,12,-9,5,-23r-16,0v24,3,9,-21,26,-27r0,-52v14,-5,18,-1,32,-6r0,34v8,-3,2,-20,4,-30xm-9,-137v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-33,-148v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm43,-26v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm73,-226v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm50,-126v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm4,-144v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm21,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2","w":102,"k":{"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00e5":37,"\u00e3":37,"\u00e4":37,"\u00e2":37,"\u00e0":37,"\u00e1":37,"z":4,"s":7,"q":9,"o":11,"j":28,"g":5,"a":37,".":30,"-":16,",":19}},"g":{"d":"92,-236v-1,1,-2,3,-2,0r2,0xm112,-202v1,1,4,4,0,3r0,-3xm123,-191v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm162,-128v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm79,-232v24,11,43,37,33,74v-3,12,-23,10,-30,0v-2,-19,-9,-35,-22,-46r0,-26r15,0v2,-5,7,-11,7,-4v-1,1,-2,2,-3,2xm163,-121v0,5,1,11,-5,11v2,-4,-1,-12,5,-11xm56,-202v-5,5,-26,32,-11,49v1,0,-12,23,-3,13v6,-2,17,16,3,8v-9,-1,-3,24,-5,42v7,19,-6,30,9,49v7,9,9,17,9,20v10,-14,31,-40,16,-63v0,-1,-4,3,-5,1v2,-2,-20,-17,-18,-18v0,-4,10,-17,13,-18v-5,-5,-15,-17,7,-15v0,4,-7,3,-5,11v3,-3,13,-9,18,-9v-2,3,-25,13,-13,20v3,-3,18,-19,17,-7v6,2,11,2,18,2r0,-7v9,-1,10,18,8,29v3,5,31,19,7,26v0,-5,-6,-4,-11,-4v6,11,2,36,2,46r-8,0v8,5,21,22,0,24v-5,2,-12,-15,-16,-14v-4,-1,-13,16,-19,13v0,2,1,5,-1,5v-7,0,-11,-4,-11,-12v1,15,-10,7,-21,12v-1,-2,-4,-7,-8,-3v5,9,-10,11,-9,21v-7,-1,2,-16,-5,-16v-1,16,-16,9,-9,0v0,-3,-1,-6,-2,-8v10,0,13,-13,4,-15r-12,1v5,-5,25,0,15,-19r-5,0v0,-4,2,-7,5,-9r0,-142v-1,-22,23,-42,46,-41r0,28xm49,-112v-1,-1,-3,-2,0,-2r0,2xm75,-79v1,6,-4,3,-6,1xm69,-75v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-17,-21v1,4,-5,1,-8,2v3,-1,6,-2,8,-2xm34,-178v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm123,-73v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm101,-54v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm33,-109v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm62,-14v2,-1,3,-4,0,-5v-3,1,-2,4,0,5","k":{"\u00ff":12,"\u00fc":5,"\u00fb":5,"\u00f9":5,"\u00fa":5,"\u00e5":16,"\u00e3":16,"\u00e4":16,"\u00e2":16,"\u00e0":16,"\u00e1":16,"y":12,"x":7,"w":12,"v":12,"u":5,"t":11,"s":5,"a":16}},"h":{"d":"124,-180v-4,0,-5,-4,0,-3r0,3xm118,-114v-13,12,6,22,-3,31v4,8,2,17,0,26v-1,4,10,11,10,13v-12,0,-10,22,-4,30v-5,-3,-8,17,-21,14v-12,0,-18,-1,-20,-4r-1,-100v-10,0,-23,3,-33,6v7,14,-4,22,2,34v-11,6,3,26,-5,42v2,2,8,4,8,8v-6,0,-9,4,-10,10v-10,1,-24,-3,-28,4v-6,-29,0,-71,-2,-104v-17,-13,-29,-25,-11,-35v-2,10,5,16,12,11r0,-101v11,2,37,-7,33,8v6,17,-7,23,5,32v-3,7,-13,28,-2,33v3,2,4,3,4,5v-6,0,-9,2,-9,6v0,5,7,8,19,8v14,0,21,-3,21,-9r0,-83v8,-5,20,3,28,-2v15,0,0,13,4,25v-5,16,4,32,0,44v1,6,15,12,0,16v11,8,-11,26,3,32xm63,-95v1,-1,2,1,2,3v-1,-1,-2,-2,-2,-3xm6,-139v0,-2,3,0,1,0r-1,0xm4,-144v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm54,-92v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm50,-54v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-35,-111v0,-12,10,-23,25,-23v-1,10,-4,19,-10,14v-4,-1,-13,9,-15,9xm-23,-116v0,0,-4,8,-3,2v1,-1,2,-2,3,-2xm105,-136v1,1,2,2,2,-1xm104,-124v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm43,-131v2,0,4,0,3,-2v-2,0,-4,0,-3,2xm43,-102v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm6,-122v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm-1,-123v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm-2,-118r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm19,-33v2,0,4,0,3,-2","w":125,"k":{"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"a":4}},"i":{"d":"47,-152v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-20v1,35,-23,7,-33,20r0,-227v13,4,25,-8,31,-1xm13,-216v0,8,8,8,1,0r-1,0","w":50,"k":{"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"a":5}},"j":{"d":"63,-96v9,26,-9,65,7,80v-6,12,-30,-7,-30,18v-3,11,-4,16,-5,17v3,-17,-3,-28,-18,-17v-2,-1,-13,-3,-10,-14v-6,1,-4,-3,-7,-6v6,-2,7,-3,7,-9v-2,0,-11,11,-16,9v2,-2,15,-22,20,-18v20,-2,20,-21,21,-48r3,-145r30,0r2,113v-8,1,2,12,-4,20xm-11,-40v3,1,1,6,-1,3v0,-1,0,-2,1,-3xm-15,-14v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm54,-209v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm59,-172v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm37,-187v2,-1,1,-4,0,-5v-1,1,-2,4,0,5xm45,-159v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm59,-144v1,1,2,3,2,0r-2,0xm52,-135v-1,-2,-2,-4,-2,0r2,0xm39,-142v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm43,-133v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm43,-123v-1,4,4,11,5,7v0,-5,-2,-7,-5,-7xm37,-103v2,0,1,-3,0,-4v-2,1,-1,3,0,4xm50,-77v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm59,-16v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm63,-14v-1,-1,-2,-3,-2,0r2,0xm56,-12v2,0,3,-3,0,-4v-2,1,-1,3,0,4","w":77,"k":{"\u00ff":5,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00e7":4,"\u00e5":14,"\u00e3":14,"\u00e4":14,"\u00e2":14,"\u00e0":14,"\u00e1":14,"z":5,"y":5,"x":5,"w":5,"o":4,"d":4,"c":4,"a":14}},"k":{"d":"94,-171v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm123,-129v2,2,3,4,0,5v-3,-1,-2,-3,0,-5xm-12,-203v1,5,-6,2,-9,3v2,-1,5,-2,9,-3xm97,-102r24,91v1,8,-16,15,-22,9v5,-1,5,-4,0,-5v-7,6,-11,8,-15,-9v-7,-29,-12,-50,-22,-72v-14,0,-28,25,-10,32v-3,7,-14,35,0,42v-8,3,-23,21,-38,12v-1,2,-2,3,-4,3r0,-44v-12,-7,-22,-12,-27,-25v-3,1,-3,4,-3,8v-6,1,-17,18,-9,3v-7,-1,-6,6,-11,7v-1,-22,23,-18,33,-29v-2,6,3,15,8,11r-2,5v4,-4,8,-1,11,2v-2,-12,7,-31,-14,-26v-6,-1,-13,2,-13,-5v-6,0,-8,-1,-10,-4v9,2,15,-12,20,-13v-2,-9,-8,-17,-6,-26v7,-2,11,6,13,7v11,-5,11,-21,10,-38v-1,1,-6,12,-7,9v3,-17,9,-26,6,-43r-10,0v2,-3,18,-7,9,-20v-1,-16,21,-3,25,-14v2,3,3,8,11,7v4,7,2,18,1,27v4,-3,5,-7,11,-7v-1,5,-11,12,-13,15v1,11,-4,27,5,31v8,-4,30,-54,34,-67v15,2,21,-4,37,-3v-9,41,-39,49,-33,92v7,5,14,-3,20,0r-5,4v6,-1,15,-2,14,5v-10,-2,-21,4,-5,8v5,2,8,5,9,7v-15,2,-22,5,-22,13xm121,-26v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm130,-13v-1,-1,-3,-2,0,-2r0,2xm62,-81v2,0,3,5,0,5v-3,0,-2,-5,0,-5xm-18,-150v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-21,-133v0,2,0,2,-2,2xm-14,-119v1,1,1,1,0,2v-2,-1,-2,-1,0,-2xm58,-34v0,-1,2,3,2,3v-2,-1,-2,-2,-2,-3xm-17,-114v-2,6,-9,5,-15,3v5,-4,5,-5,15,-3xm0,-82v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm-27,-104v5,-1,15,1,7,4v-3,0,-5,-1,-7,-4xm49,-33v3,1,2,4,0,5v-2,-1,-3,-4,0,-5xm-30,-101v1,1,1,2,0,3v0,0,-2,0,-2,-1v0,-1,1,-2,2,-2xm-36,-70v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm45,-157v1,1,2,3,2,0r-2,0xm45,-148v2,-1,2,-1,1,-3xm0,-99v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm0,-93v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm-10,-100v2,-1,4,-2,0,-2r0,2xm-10,-63v3,1,7,-2,3,-3v-1,0,-2,1,-3,3","w":121,"k":{"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00e7":5,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"w":2,"v":4,"s":7,"q":5,"o":7,"c":5,"b":4,"a":11}},"l":{"d":"45,-200v-5,1,-3,-4,-3,-7v2,0,3,3,3,7xm57,-192v10,3,2,20,-4,14v0,-1,1,-5,4,-14xm14,-229v-1,3,2,9,-2,9v1,-3,-2,-9,2,-9xm31,-205v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm60,-174r-3,8v1,-3,-2,-9,3,-8xm44,-181v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm-1,-181r0,2v-1,-1,-1,-1,0,-2xm-22,-180v1,-9,9,-16,21,-14v-1,3,-6,7,-5,13v-5,-5,-11,0,-16,1xm109,-42v1,4,-2,7,-4,3v1,-2,2,-3,4,-3xm49,-65v3,15,-3,32,17,28v0,1,34,-2,37,11v-4,14,-8,22,-11,26v-24,-1,-44,2,-59,-5v-13,4,-11,0,-21,6r0,-37v8,-1,22,3,24,-4r-24,0v2,-22,-5,-48,6,-62v-9,0,-8,-20,-4,-27r4,1v-5,-4,-6,-30,-15,-27v3,-16,-8,-7,-18,-10v1,9,-17,0,-24,6v-1,-18,10,-19,18,-11v7,-8,25,-1,33,-13v-7,-2,4,-8,-3,-9v-2,-3,13,-17,5,-21v4,-2,6,-6,6,-14v13,-2,23,-1,24,7r3,0v1,1,-11,27,-11,20v1,-5,-6,-9,-9,-5v1,2,6,12,2,16v5,-1,6,2,5,6v2,-4,4,-5,8,-6v1,9,-14,12,1,17r0,28r13,-2v0,3,-21,21,-18,26v2,12,8,25,5,38v2,-1,4,-1,6,1v-6,1,-5,9,-5,16r5,0xm-23,-159v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm103,-18v1,1,4,4,0,3r0,-3xm36,-218v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm40,-213v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm29,-209v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm32,-172v0,-3,-3,-5,-8,-7v-1,6,1,7,8,7xm22,-168v2,0,3,-3,0,-4v0,-1,-1,-2,-2,-2v-3,3,1,3,2,6xm7,-168v5,-1,7,-5,0,-4r0,4xm-12,-187v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm18,-148v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm36,-124r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm27,-118r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm-34,-161v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm17,-93v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm44,-46v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm40,-37v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm22,-172r-1,2v0,-1,0,-2,1,-2","w":104,"k":{"\u00ff":42,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00e7":9,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"y":42,"w":32,"v":40,"t":33,"s":4,"q":4,"o":7,"d":5,"c":9,"b":5,"a":9,"-":42,"'":11}},"m":{"d":"163,-187v-1,-1,-4,-4,0,-3r0,3xm73,-200v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm161,-70v-2,8,-7,13,1,19v-16,9,9,43,-16,51v-6,-9,-13,5,-18,-4v-8,-70,1,-145,-2,-224v11,-1,25,3,31,-4v1,33,-3,72,2,101v-1,25,-5,34,2,61xm81,-161v-2,-1,-4,-2,0,-2r0,2xm11,-207v1,4,-5,5,-2,2xm6,-198v4,4,-3,11,-8,8xm-9,-207v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-7,-185v1,-1,2,-2,2,1xm-13,-181v2,1,1,4,0,5v-2,-1,-3,-4,0,-5xm72,-28v-20,5,-22,-19,-27,15v-3,19,-20,13,-32,11r0,-50v-8,-1,0,-25,-13,-11v-13,0,-17,-2,-33,2v-1,-18,8,-18,18,-11v7,-1,15,-6,21,-2v12,-18,9,-82,3,-107r-7,0v1,-6,20,-26,9,-35v5,-19,21,-12,37,-15v16,2,17,17,19,41v16,2,-10,41,16,35v-2,5,-7,7,-4,18v7,0,0,0,1,6v0,6,2,16,5,27v11,-6,0,-20,9,-25v10,-43,12,-76,16,-97v2,-1,6,-2,12,-2v-1,48,3,97,-7,132v12,15,-13,28,-4,45v3,1,8,0,9,3v-4,4,-10,8,-18,15v-7,22,-8,35,-23,31v0,-7,-3,-16,-7,-26xm-25,-176v-1,-7,7,-9,10,-5v-2,4,-6,5,-10,5xm122,-37v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm122,-26v0,-2,-6,-5,-2,-5v1,2,2,2,2,5xm118,-22v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm65,-20v-1,-1,-3,-2,0,-2r0,2xm4,-83v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-16,-80v0,-10,10,-16,20,-16v-2,16,-10,10,-20,16xm52,-28v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-15,-79v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm142,-168v3,0,5,0,4,-3v-2,0,-3,1,-4,3xm115,-81v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm47,-141v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm46,-73v6,-7,18,-19,10,-34v-4,1,-7,9,-6,0v4,-11,2,-15,-2,-26v-14,6,9,17,-2,19r0,41xm109,-39r0,-7v-3,2,-3,5,0,7xm59,-63v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm65,-52v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm60,-52v4,0,4,-8,0,-7v-2,-1,-5,2,-4,5v1,2,3,2,4,2xm52,-50v-1,-3,-5,-5,-6,-2v1,2,5,6,6,2xm-7,-87v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm-31,-65v1,1,4,4,3,0r-3,0xm28,-2v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm50,-52v0,1,-1,2,-2,2v0,-1,1,-2,2,-2","w":169,"k":{"\u00fc":2,"\u00fb":2,"\u00f9":2,"\u00fa":2,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00e7":4,"\u00e5":7,"\u00e3":7,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"v":4,"u":2,"s":5,"o":5,"c":4,"a":7}},"n":{"d":"126,-155v-1,-1,-3,-2,0,-2r0,2xm115,-153v1,4,-1,6,-5,5v0,-3,2,-5,5,-5xm106,-148v0,2,0,2,-2,2xm126,-102v-1,-1,-3,-2,0,-2r0,2xm85,-139v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm150,-67v1,4,-5,1,-7,2v-1,-4,5,-1,7,-2xm121,-92v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm71,-148v6,5,-1,12,-8,11v2,-2,3,-8,8,-11xm139,-63v-1,1,-2,3,-2,0r2,0xm126,-57v-5,14,24,18,24,26v-11,2,-10,5,-29,2v0,18,-8,37,-14,20v-5,9,-15,-1,-20,5v-2,-4,-6,-8,-4,-13v-11,-2,-17,11,-18,-5v-8,-2,-22,5,-22,-5v22,0,14,-22,4,-30v16,6,13,-24,24,-30v-6,-5,-18,8,-15,0v1,-15,-22,-38,-13,-55v-15,10,7,51,-19,57r17,0v-11,14,12,11,11,25v-3,0,-9,-3,-11,-1v0,12,0,39,-6,52v-11,-2,-14,9,-18,0v-1,4,-7,7,-9,2v2,-25,-3,-57,3,-78v2,1,4,1,4,-2v-1,-1,-3,-3,-7,-5r0,-79v6,0,9,-1,9,-5v-4,0,-8,0,-9,-3v2,-16,-4,-40,2,-52v-1,10,7,17,10,3v4,-2,5,-1,8,4v1,-8,17,-11,19,2v-6,14,17,28,9,41v7,4,9,5,9,11v-2,0,-6,-4,-5,0v3,8,11,13,23,14v-1,2,-23,3,-23,6v-2,12,3,22,14,15v1,11,-4,8,-12,7v4,11,-6,20,3,24v2,-14,5,-20,17,-20v0,-5,7,-8,9,-11v-5,-2,-11,-13,-4,-17r0,-81v9,-1,20,3,23,-5v4,2,5,7,10,6v-4,24,1,46,-3,73v-10,5,-15,11,-17,17v24,-4,14,11,27,18v-8,0,-12,4,-12,13r5,-2v-5,18,4,35,10,46v-6,1,-11,6,-4,10xm133,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm130,-26v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm133,-15v-4,0,-5,-1,-5,-5v4,0,5,1,5,5xm75,-10v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm39,-181v0,-14,2,-33,-1,-45xm102,-133v4,1,4,-5,1,-4v-2,0,-4,3,-1,4xm102,-128v-1,2,3,6,2,2v-1,-1,-1,-2,-2,-2xm106,-120v2,-1,4,-2,0,-2r0,2xm19,-207v3,-4,-2,-9,-4,-8v0,3,1,5,4,8xm43,-174v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm39,-172v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm95,-107v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm80,-115v4,0,9,1,7,-5v-2,1,-5,3,-7,5xm46,-172v-11,2,-7,14,-7,26v6,-5,7,-22,7,-26xm121,-65v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-85v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm97,-86v1,-1,1,-1,0,-2v-2,1,-2,1,0,2xm85,-94v-1,-7,3,-18,-7,-15v3,5,1,10,7,15xm26,-142v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm80,-85v1,3,5,2,5,-2v-2,-2,-5,-2,-5,2xm121,-41v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm133,-31v2,0,1,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm76,-85v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm124,-37v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm29,-123v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm28,-102v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm67,-52v2,0,2,0,2,-2xm71,-46v-4,-1,-5,1,-4,5v2,0,3,-1,4,-5xm63,-33v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm41,-168v2,1,3,4,0,5v-2,-1,-1,-4,0,-5","w":132,"k":{"\u00ff":7,"\u00fc":7,"\u00fb":7,"\u00f9":7,"\u00fa":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"y":7,"x":4,"v":4,"u":7,"t":7,"s":9,"p":4,"o":7,"g":5,"d":7,"b":4,"a":9}},"o":{"d":"78,-159v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm112,-198v11,14,-3,43,5,60r-1,90v12,2,24,-7,27,-4v0,1,-1,2,-3,4r16,0v-11,3,-17,7,-17,10v1,-1,4,5,4,5r-7,0v2,7,8,3,13,3v0,8,-24,3,-28,2r2,-5r-8,0v-17,20,-29,40,-53,29v-1,-7,2,-18,-2,-22v-2,8,5,30,-6,24v-14,4,-22,-13,-40,-24r-4,-133r-5,0v0,-3,5,-9,3,-13r-13,9v0,-8,11,-4,13,-14v2,-11,4,-30,16,-29v-2,-19,24,-14,29,-25r5,-1r0,32v-14,9,-5,10,-4,24v2,2,40,18,12,20v1,-6,-10,-2,-14,-3v0,-7,-1,-11,-3,-13v-6,3,-13,90,0,109v0,4,-8,12,0,11v-7,7,7,6,11,15v21,10,23,-12,23,-44v0,-31,15,-115,-17,-115v-5,-4,-4,-25,-4,-36v12,3,47,1,35,19v5,-1,4,2,4,6v-4,-2,-17,-4,-19,0v3,8,18,4,28,5v1,-3,2,-6,5,-3v1,4,-3,6,-3,7xm54,-107v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm51,-102v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-12,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm115,-29v3,0,0,3,0,1r0,-1xm-23,-154v-1,-6,6,-9,9,-5v-2,4,-5,5,-9,5xm54,-70v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm-31,-67v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm84,-189v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm49,-181v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm110,-118v1,2,2,4,2,0r-2,0xm62,-166v0,-1,-1,-2,-2,-2v-5,5,8,9,2,2xm106,-118v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm58,-31v2,0,3,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm61,-163v0,-1,1,-1,1,-2v0,1,-1,1,-1,2","k":{"\u00ff":9,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"y":9,"x":11,"w":9,"v":9,"t":11,"b":4,"a":11}},"p":{"d":"122,-174v-2,-1,-4,-6,0,-5r0,5xm57,-189v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm114,-175v-6,6,0,14,2,21v0,25,-12,45,-37,58v-9,-8,-28,6,-33,0v1,-12,-6,-43,11,-32v14,-10,24,-11,24,-34v0,-11,-19,-34,-11,-45v0,-2,-1,-4,-4,-4v-4,5,-6,9,-6,13v-3,-4,-10,-3,-16,0r2,-24v37,-8,70,-5,68,47xm44,-187v-1,-1,-1,-4,0,-5v1,2,1,4,0,5xm0,-159v0,-6,5,-8,10,-11r0,-52v7,-9,12,-4,31,2r0,74v1,-6,2,-14,5,-24r-6,109v9,13,0,37,1,56v-14,2,-17,8,-32,-2v1,-22,-3,-50,5,-63v-8,-7,-2,-29,-4,-43v-7,-1,-3,9,-11,7v0,-11,4,-11,1,-21v9,0,11,-8,7,-13r-15,0v2,-2,19,-2,16,-10r0,-13v-3,1,-4,4,-8,4xm16,-220v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm11,-122v0,-2,-4,-3,-4,0v0,2,4,3,4,0xm22,-89v3,-1,2,-4,0,-5v-2,1,-3,4,0,5","w":121,"k":{"\u00ff":14,"\u00fc":5,"\u00fb":5,"\u00f9":5,"\u00fa":5,"\u00e5":25,"\u00e3":25,"\u00e4":25,"\u00e2":25,"\u00e0":25,"\u00e1":25,"z":16,"y":14,"x":16,"w":11,"v":12,"u":5,"t":2,"s":9,"j":33,"h":5,"a":25,".":32,",":21}},"q":{"d":"122,-188v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm122,-151v3,1,2,4,0,5v-2,-1,-3,-4,0,-5xm46,-181v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm124,-66v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2v1,0,2,1,2,2xm109,-22v13,0,22,22,26,30v-18,4,-25,13,-49,2v1,-5,-7,-14,-10,-8v1,1,2,2,2,4v-11,8,-16,-10,-19,-15v0,17,-14,6,-22,13v2,-6,-30,-30,-26,-37v0,-17,-3,-37,8,-44r-10,0v1,-24,-1,-41,-3,-63v8,-34,0,-91,50,-87r0,30v-17,8,-17,36,-10,57v-5,-1,-6,2,-3,7v-1,11,-1,22,8,23v-12,-1,-14,2,-13,9r5,0v2,12,-5,22,-2,24v1,0,3,-1,5,-2v-7,11,-8,19,6,22v-6,6,8,4,2,9v-2,-1,-7,-4,-10,-2v-1,23,22,28,32,10v-7,4,-17,-3,-16,-8v0,-3,5,-5,14,-5v1,4,-10,5,0,7v7,-1,4,-14,4,-21v0,-46,15,-111,-15,-132r0,-28r18,-7v-11,10,16,7,20,22v13,15,15,43,8,63v13,3,0,14,6,24v-9,5,1,18,3,24v0,5,-8,21,-7,26v6,2,8,6,2,9v0,12,0,24,-2,34v5,-1,7,2,7,6v-4,0,-11,-2,-9,4xm50,-96v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm98,-146v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm113,-103v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm113,-94v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm126,8v2,-1,3,-3,0,-4v-2,0,-1,3,0,4xm71,-42v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2","w":126,"k":{"\u00ff":18,"\u00fc":9,"\u00fb":9,"\u00f9":9,"\u00fa":9,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00e7":7,"z":2,"y":18,"x":4,"w":16,"v":14,"u":9,"t":19,"s":9,"o":7,"d":4,"c":7}},"r":{"d":"102,-218v-1,1,-2,3,-2,0r2,0xm120,-181v-2,0,-4,0,-5,-2v2,0,6,-1,5,2xm50,-187v-1,-1,-4,-4,0,-3r0,3xm48,-227v22,-6,53,-3,48,22v1,-1,2,-6,4,-4v14,11,8,44,18,56v-3,14,-41,50,-22,64v6,27,10,55,25,75v-5,-4,-12,20,-19,10v-3,7,-28,6,-23,-7v-1,-12,-16,-63,-20,-83v-8,5,-11,-3,-12,-13v0,-10,0,-16,1,-19r24,-7v0,-3,7,-23,7,-29v0,-28,-14,-29,-31,-39r0,-26xm1,-175v0,-2,3,0,1,0r-1,0xm0,-170v0,2,0,2,-2,2xm118,-46v-1,1,-4,5,-3,0r3,0xm-8,-163v1,3,-7,8,-9,7v0,-5,3,-7,9,-7xm9,-229v9,-9,15,8,17,11v5,0,11,-3,17,-9v-1,21,0,43,3,59v15,4,23,9,24,15v-5,-1,-10,6,-13,-2v-2,6,-18,-1,-13,13v-6,17,2,40,-1,68r5,9v-4,1,-8,2,-11,4v17,8,0,23,5,42v2,0,6,2,5,5v-4,5,-21,15,-37,13r1,1v-5,-35,8,-120,-9,-153v-4,0,-6,6,-7,-2v3,-6,21,-19,12,-32v4,-11,1,-28,2,-42xm-21,-155v0,5,-4,7,-11,7v0,-5,4,-7,11,-7xm89,-196v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm100,-166v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm13,-220v4,3,5,-3,5,-9v-3,2,-5,5,-5,9xm52,-157v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm9,-157v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm81,-72v2,-3,-4,-5,-2,-2v1,1,1,2,2,2xm22,-129v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm54,-98v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm41,-104v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm74,-68v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm41,-94v1,-9,-13,-8,-18,-8v-2,8,16,6,18,8xm15,-79v2,0,3,-3,0,-4v-2,1,-1,3,0,4","k":{"\u00ff":19,"\u00fc":9,"\u00fb":9,"\u00f9":9,"\u00fa":9,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00e7":5,"\u00e5":7,"\u00e3":7,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"z":5,"y":19,"x":7,"w":16,"v":18,"u":9,"t":12,"s":7,"q":5,"o":4,"m":5,"g":5,"d":5,"c":5,"b":4,"a":7}},"s":{"d":"120,-197v-6,-1,-6,-5,0,-4r0,4xm87,-229v-1,-1,-3,-2,0,-2r0,2xm108,-201v12,22,2,30,-21,30v-4,2,-6,-13,-15,-22r-8,8v-2,-16,-5,-22,-1,-42v15,-1,24,5,38,7v1,3,2,10,7,19xm68,-175v-6,-1,-1,-11,2,-10xm72,-147v-4,0,-5,-4,0,-3r0,3xm87,-133v0,1,-1,3,-2,3v-2,0,-3,-5,0,-4v1,0,2,0,2,1xm125,-90r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm120,-86v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm8,-203v-5,18,-9,9,-20,14v1,-7,11,-18,20,-14xm10,-175v-14,7,-29,0,-41,7v-1,-14,9,-23,19,-12v0,-9,29,3,20,-10v11,-13,21,-41,48,-37r0,30v-18,15,-7,21,-2,43r12,-2v-16,27,32,22,36,49v0,3,10,8,14,4v0,6,15,13,0,17v-1,12,8,19,2,26v9,6,-5,18,-4,26v-16,6,-18,28,-34,34v-14,2,-20,-12,-12,-19v-13,-14,31,-25,14,-48v-4,-17,-25,0,-26,-23v-7,1,-1,-6,-2,-11v-1,1,-3,2,-6,3v2,-5,-14,-24,-20,-22v-7,-20,-17,-24,-18,-55xm42,-95v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm-23,-160v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm61,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm36,-88v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm26,-85v-2,0,-2,0,-2,-2v-1,-3,4,-3,8,-3v-2,3,-3,5,-6,5xm39,-64v1,16,13,28,22,34v0,13,4,33,-11,26v-9,8,-19,-11,-30,-16v-10,-10,-15,-22,-10,-40v15,-3,25,-4,29,-4xm17,-15v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm92,-115v2,0,3,-6,0,-5v-3,1,-2,4,0,5xm115,-89v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm63,-90v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm94,-17v0,-8,-12,-4,-20,-5v-1,1,-3,3,-3,5r23,0xm43,-8v3,-1,2,-4,0,-5v-1,1,-2,4,0,5","w":126,"k":{"\u00ff":16,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"z":5,"y":16,"x":18,"w":14,"v":16,"u":4,"t":16,"s":7,"o":4,"m":5,"a":11}},"t":{"d":"30,-229v28,-9,55,3,83,-2v7,56,-59,26,-107,33r0,-30v9,-1,15,-6,24,-1xm83,-155v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm83,-124r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm83,-102v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm20,-139v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm17,-133v3,1,2,3,0,5v-1,-2,-2,-3,0,-5xm17,-118v-3,-12,6,-4,2,-1xm33,-107v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm-18,-168v17,-9,27,-17,51,-2v7,0,6,-17,6,-26r35,2v-1,28,2,60,-2,85v4,12,-4,37,8,44r-6,0v-3,8,0,50,-4,65v-13,-5,-30,7,-31,-9r0,-56v-5,-1,-15,3,-13,-5r11,0v3,-16,-15,-18,-7,-28v3,5,6,8,9,8v0,-12,4,-20,-11,-21v2,3,-1,7,-4,11v0,-16,7,-51,-13,-37v4,-7,-15,-15,-4,-22v0,-6,-8,-1,-6,-9v-5,-1,-10,0,-8,6v-3,0,-5,-11,-11,-6xm22,-166v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm18,-169v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm4,-174v2,1,7,3,9,0v0,-3,-9,-3,-9,0xm9,-168v1,1,2,3,2,0r-2,0xm37,-126v2,-1,1,-4,0,-5v-1,1,-2,4,0,5xm33,-126v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm15,-142v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm39,-83v2,0,3,-3,0,-4v-2,1,-3,3,0,4","w":117,"k":{"\u00f5":19,"\u00f6":19,"\u00f4":19,"\u00f2":19,"\u00f3":19,"\u00f1":4,"\u00e7":9,"\u00e5":42,"\u00e3":42,"\u00e4":42,"\u00e2":42,"\u00e0":42,"\u00e1":42,"z":7,"s":12,"q":18,"p":4,"o":19,"n":4,"m":2,"j":30,"g":7,"c":9,"a":42,".":32,"-":35,",":21}},"u":{"d":"162,-150v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm167,-148v3,7,-1,12,-9,11v1,-3,4,-7,9,-11xm167,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm160,-135v0,2,1,5,-2,4xm130,-152v-1,1,-2,3,-2,0r2,0xm119,-133v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm86,-229v13,1,18,-1,31,-3v2,19,-3,44,2,60v-3,29,1,55,-2,83v3,16,2,36,-5,46v-4,-2,-1,-12,-6,-12v-9,1,-11,5,-22,1xm58,-152v-1,1,-2,3,-2,0r2,0xm58,-122v-1,1,-2,3,-2,0r2,0xm58,-100v-1,1,-2,3,-2,0r2,0xm117,-39v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm104,-39v-1,1,-2,3,-2,0r2,0xm62,-72v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm47,-65v0,21,1,23,15,34v-1,9,3,23,-2,29v-9,0,-15,0,-22,2v1,-2,3,-3,3,-4v-1,-6,-35,-14,-24,-21v0,-5,-3,-7,-10,-7r0,-11v-18,4,-30,5,-43,4v0,-2,3,-9,7,-20v5,18,39,10,41,-2v4,-20,4,-86,0,-115v-3,8,-5,11,-8,11r0,-21v9,-1,9,-6,6,-13r-13,0v13,-3,16,-7,15,-23r-8,4v3,-17,27,-6,41,-15v10,5,-9,28,9,31v-20,10,-2,66,-9,89v3,15,3,18,0,41v1,1,12,6,7,9v-2,0,-3,-1,-5,-2xm62,-43v-4,-5,-5,-15,-2,-22v9,1,2,15,2,22xm83,-38v-1,6,13,7,14,10v-5,0,-17,-1,-11,4r21,0v-3,13,-27,31,-40,20r0,-27v4,0,21,-27,26,-13v0,6,-4,7,-10,6xm4,-59v1,2,-1,2,-3,2xm-3,-74v7,3,3,13,0,15v-5,-4,-11,2,-13,1v-2,-7,13,-12,13,-16xm-3,-33v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm99,-100v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm12,-179v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm6,-172v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm23,-59v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm30,-52v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm10,-46v3,1,5,-3,2,-4xm-8,-64v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm-14,-41v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm-31,-39v2,0,1,-3,0,-4v-2,1,-3,3,0,4","w":128,"k":{"\u00ff":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00e5":16,"\u00e3":16,"\u00e4":16,"\u00e2":16,"\u00e0":16,"\u00e1":16,"z":11,"y":4,"x":12,"w":4,"v":5,"s":7,"q":2,"p":4,"o":4,"m":5,"j":5,"g":4,"a":16}},"v":{"d":"127,-205v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm122,-200v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm118,-176v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm120,-163v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm129,-124v-1,0,-2,-4,0,-4v1,1,1,3,0,4xm129,-120v2,1,1,4,0,5v-2,-1,-3,-4,0,-5xm127,-109v2,1,1,4,0,5v-2,-1,-3,-4,0,-5xm122,-111v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm111,-120v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm57,-166v1,0,1,1,1,2xm122,-104r-11,2v1,-8,6,-6,11,-2xm115,-88v2,1,0,1,-1,2xm114,-81v1,3,-3,7,-3,3xm116,-181v-6,9,-6,27,-5,39v-1,-5,11,-11,7,-15v7,-4,8,2,14,1v-3,-3,2,-5,3,-7v7,21,-13,32,-13,50v0,-10,-2,-16,-8,-18v-5,8,-14,9,-7,12v1,0,1,-1,2,-1v-1,3,-1,9,-2,16v-12,9,-15,28,-6,44v-12,-3,-9,29,-17,29v-3,4,2,5,6,5v-3,3,-8,39,-15,20v-7,-2,-12,3,-18,5v2,-43,11,-79,15,-119v-8,-1,-7,8,-8,13v-5,34,1,81,-14,105v-13,-36,-10,-90,-28,-122v-10,1,-34,-11,-33,-20v-2,0,-7,4,-17,11r2,-4r-11,0v2,-6,28,-32,37,-24v1,-6,13,-15,14,-22v0,-8,-8,-37,-7,-46v12,0,25,1,35,-2v4,38,11,41,11,72v-2,2,17,23,9,22v0,6,2,9,6,9v6,0,9,-7,9,-20v-6,-27,12,-50,13,-81r30,0v1,3,3,7,5,13v-6,0,-9,12,-9,35xm94,-50v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm94,-33v0,1,-1,2,-2,2v-2,0,-3,-4,0,-4v1,0,2,1,2,2xm-32,-150v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-34,-135v0,3,0,5,-3,4xm72,0v-1,-1,-3,-2,0,-2r0,2xm129,-148v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm127,-137v2,-3,10,-8,0,-7r0,7xm107,-130v3,1,6,-4,3,-7v-2,0,-3,2,-3,7xm9,-170v2,0,3,-3,0,-4v-2,1,-3,4,0,4xm5,-163v6,4,-12,4,-5,8v3,-3,12,-2,18,-7v-2,-2,-5,-4,-9,-8v-1,3,-2,5,-4,7xm20,-144v-4,-1,-8,-6,-11,-2v2,6,6,4,11,2xm2,-148v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm-2,-144v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm74,-11v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm66,-15v2,1,2,-1,2,-3","w":131,"k":{"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":16,"\u00f6":16,"\u00f4":16,"\u00f2":16,"\u00f3":16,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":9,"\u00e5":35,"\u00e3":35,"\u00e4":35,"\u00e2":35,"\u00e0":35,"\u00e1":35,"z":14,"x":9,"w":4,"v":5,"u":4,"s":16,"r":5,"q":16,"p":7,"o":16,"m":7,"j":32,"g":14,"f":4,"e":4,"d":7,"c":9,"a":35,".":32,",":23}},"w":{"d":"119,-199v0,1,-1,3,-1,1v0,-1,1,-1,1,-1xm185,-120v1,5,-4,3,-7,3v0,-2,3,-3,7,-3xm171,-112r0,-3v1,0,2,0,2,1v0,1,-1,2,-2,2xm182,-97v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm89,-71v-19,5,-6,49,-20,64v-5,1,-15,-2,-14,4v3,1,10,-2,9,3v-11,-3,-25,7,-25,-8v0,-51,-8,-111,-26,-152v2,-1,4,-2,-1,-2v-12,0,-32,-3,-32,-11v-2,-8,29,-10,15,-19r-6,-6r22,0v-2,-5,-3,-14,-3,-28v11,-1,36,-10,29,10r6,0v1,10,5,42,14,43v-7,8,2,19,-4,26v10,1,15,-1,16,-11r10,-69v16,-1,33,-1,33,11v0,18,0,30,10,37r-5,0v3,11,1,27,11,30r-1,2v4,-1,6,0,9,2r11,-82v11,-4,26,3,31,-4v10,21,-13,54,-7,77v-6,14,-17,64,7,63v2,9,6,30,-7,23v0,-1,1,-5,3,-12v-1,-2,-3,-2,-4,-2v-5,9,-6,35,-15,39v-8,2,-3,6,-1,15v-2,5,-10,16,-11,24v-3,-1,-5,1,-4,4v-32,11,-25,-32,-33,-52v-5,0,-8,-7,-7,-13v-6,0,-2,-7,-10,-6xm-9,-184v0,4,-4,3,-3,0v0,-2,0,-2,1,-2v1,0,2,0,2,2xm6,-157v-1,1,-2,1,-2,-1v1,0,2,0,2,1xm163,-166r0,-5v-1,0,-2,0,-2,2v0,2,1,3,2,3xm109,-211r0,-2r0,2xm92,-202v1,-1,4,0,2,-2v-1,0,-2,1,-2,2xm90,-188v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm134,-140r-9,0v4,-1,1,8,4,10v3,0,5,-3,5,-10xm86,-169v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm29,-225r0,-4v-1,0,-2,0,-2,2v0,1,1,2,2,2xm90,-139v-3,-1,-5,1,-2,2v1,0,2,-1,2,-2xm91,-111v1,0,2,-3,0,-3v-2,0,-1,3,0,3xm7,-192v2,1,2,-1,2,-3xm53,-139v-3,-1,-5,1,-2,2v1,0,2,-1,2,-2xm59,-130v6,0,7,-13,1,-13v-5,0,-6,14,-6,26v9,1,7,-9,10,-13r-5,0xm82,-80v10,2,14,-9,5,-18v-2,0,-3,6,-5,18xm55,-106v4,0,4,0,2,-2xm88,-78v0,-2,-1,-2,-2,-2v-1,0,-2,1,-2,2v0,1,1,2,2,2v1,0,2,-1,2,-2xm66,-9v0,-4,7,-10,3,-15r-3,0v-4,-26,-5,-55,-11,-78xm59,-18v2,0,3,-4,0,-4v-2,0,-1,4,0,4","w":184,"k":{"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00e5":24,"\u00e3":24,"\u00e4":24,"\u00e2":24,"\u00e0":24,"\u00e1":24,"z":5,"s":9,"q":9,"p":4,"o":7,"l":4,"j":28,"g":7,"d":4,"a":24,".":30,",":19}},"x":{"d":"118,-207v0,1,-1,3,-1,1v0,-1,1,-1,1,-1xm49,-235v1,2,-1,2,-3,2v-1,-2,1,-2,3,-2xm125,-144r0,5v-2,0,-3,-6,0,-5xm125,-139r0,4v-1,0,-2,-1,-2,-2v0,-2,1,-2,2,-2xm118,-126v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm114,-109r0,5v-2,0,-3,-6,0,-5xm101,-85v-7,22,25,49,23,80v-16,7,-41,4,-42,-17v-10,-34,-20,-55,-30,-21v-4,13,-4,13,-14,39v-11,5,-31,6,-33,-2v-2,-13,24,-53,20,-68v-3,-1,-13,0,-16,-4v16,-2,7,-12,18,-26r-3,0r16,-22v-14,-13,-11,-17,-9,-29v-6,-13,-23,-59,-24,-73v45,-16,37,20,57,60v9,-14,8,-34,21,-58r36,-3v2,2,-17,51,-23,69v0,3,10,8,14,3v1,9,19,10,7,23v-3,5,-4,10,-4,13v1,-2,2,0,3,1r-8,0v-1,8,8,12,-8,13v5,10,-8,17,-1,22xm20,-101r-4,1xm16,-89r0,4r0,-4xm12,-96v-3,0,-9,7,-10,2v-1,-5,8,-5,10,-2xm9,-87v1,0,2,1,2,3v-1,2,-4,1,-3,-1v0,-1,0,-2,1,-2xm60,-31v-5,-5,1,-3,1,-1v0,1,0,1,-1,1xm5,-83v1,0,2,1,2,3v0,1,-1,2,-2,2v-1,0,-2,-5,0,-5xm9,-74v0,1,-1,2,-2,2r0,-4v1,0,2,0,2,2xm9,-56v0,1,-1,2,-2,2v-1,0,-2,-5,0,-5v1,0,2,1,2,3xm3,-57v2,0,3,6,0,5v-1,0,-2,0,-2,-2v0,-1,1,-3,2,-3xm114,-133r0,-4v-1,0,-2,0,-2,2v0,1,1,2,2,2xm97,-146r0,-4v-1,0,-2,0,-2,2v0,1,1,2,2,2xm66,-163r0,-3v-1,1,-1,3,0,3xm99,-92r0,-4v-1,0,-2,0,-2,2v0,1,1,2,2,2xm36,-135v1,-1,3,-2,0,-2r0,2xm35,-113v0,2,0,3,2,1v0,-1,-1,-1,-2,-1xm62,-65v1,0,2,-5,0,-5v-1,0,-2,1,-2,3v0,1,1,2,2,2xm101,-24r0,-4v-2,0,-3,4,0,4xm27,-98v2,0,2,0,2,-2xm30,-92v-3,0,-5,1,-5,5v3,-1,5,-2,5,-5xm35,-41v0,-2,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm36,-31r0,-4v-1,0,-2,1,-2,3v0,1,1,1,2,1xm20,-31v5,0,5,0,2,-2xm31,-5v-1,-1,-3,1,-1,1v1,0,1,0,1,-1xm20,-4v0,-3,-4,-5,-3,0v0,1,0,2,1,2v1,0,2,-1,2,-2","w":128,"k":{"\u00ff":7,"\u00fc":7,"\u00fb":7,"\u00f9":7,"\u00fa":7,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00e7":11,"\u00e5":2,"\u00e3":2,"\u00e4":2,"\u00e2":2,"\u00e0":2,"\u00e1":2,"z":4,"y":7,"x":7,"w":9,"v":5,"u":7,"s":7,"q":9,"p":2,"o":11,"g":4,"d":4,"c":11,"a":2}},"y":{"d":"64,-176v-1,1,-2,3,-2,0r2,0xm44,-218v3,29,14,51,18,74v7,-17,14,-45,22,-84r35,0v-1,2,-3,9,0,15r-3,0v-18,27,-23,93,-39,112v9,18,-5,65,2,89v0,8,-12,16,-20,10v3,0,6,-1,5,-5r-22,6v3,-26,2,-57,2,-86v-14,-2,-38,-4,-41,-13v10,-11,7,-15,15,-4r2,-16v-6,0,-9,-2,-9,-5r22,0v-4,-38,-24,-67,-28,-103v6,-5,22,-3,33,-3v0,9,2,14,6,13xm39,-86v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm89,-34v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm29,-85v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm86,-17v-5,0,-6,-4,0,-3r0,3xm64,-142v0,7,0,11,4,18v0,-8,0,-10,-4,-18xm72,-122v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm75,-107v1,-4,-1,-9,-3,-6v0,2,2,4,3,6xm36,-107v5,-2,2,-16,-7,-13v4,3,7,7,7,13xm40,-102v0,-2,-3,-1,-4,-1v0,2,2,2,4,1xm22,-111v2,0,3,-3,0,-4v-2,1,-1,3,0,4","k":{"\u00fc":2,"\u00fb":2,"\u00f9":2,"\u00fa":2,"\u00f5":16,"\u00f6":16,"\u00f4":16,"\u00f2":16,"\u00f3":16,"\u00f1":4,"\u00e7":12,"\u00e5":35,"\u00e3":35,"\u00e4":35,"\u00e2":35,"\u00e0":35,"\u00e1":35,"z":9,"x":5,"u":2,"s":14,"q":12,"p":4,"o":16,"n":4,"m":9,"l":4,"k":4,"j":32,"g":16,"f":4,"d":9,"c":12,"a":35,".":32,"-":28,",":26}},"z":{"d":"58,-202v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm51,-185v-3,2,-7,1,-10,0v1,-2,8,-2,10,0xm90,-209v10,1,16,-14,20,-11v-1,12,-6,22,-4,35v2,-4,6,-5,8,0v0,8,-10,4,-15,4v1,18,-10,25,-7,38v-14,4,-9,16,-17,30v2,0,3,2,3,6v-5,0,-8,2,-8,9v2,11,-12,20,-12,31v0,3,25,14,22,19v-14,-1,-39,-3,-31,13v8,-3,33,3,44,-2v3,4,10,0,14,-1v3,12,7,33,-8,33v1,4,0,7,-5,6v-18,-2,-53,-15,-64,-1v-7,0,-19,1,-22,-2r2,-32r11,0r-11,-3v2,-5,2,-7,2,-13v-2,0,-6,1,-6,-1v29,-41,27,-47,48,-95v9,1,-1,-22,8,-15v10,-2,0,-16,3,-22v-2,2,-4,8,-9,9v0,-7,0,-14,-2,-20v5,2,8,0,8,-5v2,-8,-10,-6,-15,-4v-6,6,-24,5,-33,3r0,-27v13,3,19,-4,30,-5v3,27,14,-12,21,3v10,1,26,-5,34,3v-1,3,-7,9,-9,17xm75,-46v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm65,-46v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm15,-85v1,-1,4,-1,2,1xm12,-74v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm10,-67v1,2,-3,6,-2,2xm4,-61v1,2,-1,2,-3,2xm-3,-56v0,2,0,2,-2,2xm41,-2r0,2v-1,-1,-1,-1,0,-2xm-12,-50v-2,4,-5,5,-9,5v0,-5,4,-5,9,-5xm71,-216v3,0,2,-3,0,-4v-2,1,-3,4,0,4xm65,-213v-1,-1,-4,-5,-3,0r3,0xm45,-218v0,2,3,0,1,0r-1,0xm39,-221v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm52,-209v0,-3,-2,-4,-7,-4v-1,5,3,4,7,4xm78,-172v2,-3,1,-5,0,-9v-3,4,-2,6,0,9xm32,-211v1,-1,3,-2,0,-2r0,2xm23,-218v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm25,-204v1,0,1,-1,1,-2xm78,-146v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm60,-154v2,1,2,-1,2,-3xm51,-122v2,-1,4,-2,0,-2r0,2xm63,-53v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm68,-49v1,-1,1,-1,0,-2v-2,1,-2,1,0,2xm62,-48v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm34,-35v-1,-1,-6,-2,-7,0v2,1,5,2,7,0xm17,-4v3,0,5,0,4,-3","w":117,"k":{"\u00ff":7,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00e5":7,"\u00e3":7,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"z":4,"y":7,"x":4,"w":4,"v":4,"s":5,"q":4,"o":5,"g":5,"a":7}},"{":{"d":"75,-236v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm67,-218v-14,2,-30,19,-41,9v1,-2,9,-4,0,-6v-1,0,-3,2,-5,4v2,-10,7,-15,15,-16v3,-6,18,-6,31,-5r0,14xm19,-196v5,-8,20,-7,26,-5v-3,7,-16,5,-26,5xm43,-187v-1,-1,-3,-2,0,-2r0,2xm41,-179v-3,0,-1,-1,-1,-1xm19,-187v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm35,-180v-2,5,-12,2,-18,3v2,-5,12,-2,18,-3xm43,-144v-3,3,-16,-10,-24,-10r0,-18v13,3,19,-10,22,4v2,8,-2,20,2,24xm33,-120v2,-2,4,0,2,2xm45,-94v1,1,1,3,0,4v-1,-1,-1,-3,0,-4xm45,-85v-5,12,-4,39,-4,54v0,7,29,10,35,15r-9,0r0,14v-12,0,-15,0,-17,2v1,-4,-34,-7,-26,-21v-7,-1,-2,-10,-2,-15r-3,1v2,-31,1,-56,-10,-74r8,0v-1,-16,9,-24,1,-39v15,-2,14,11,22,13v0,2,-8,8,-12,19v9,9,15,19,12,29v2,0,4,1,5,2xm5,-113v1,1,1,3,0,4v-1,-1,-1,-3,0,-4xm31,-7v1,1,3,2,0,3v-1,-1,-1,-2,0,-3xm56,-230v0,2,3,0,1,0r-1,0xm57,-222v0,0,2,0,2,-1v0,0,-2,0,-2,1xm49,-220v-1,0,-2,-2,-2,0r2,0xm28,-221v2,-1,0,-3,0,-1r0,1xm29,-166v2,-1,2,-3,0,-4v-1,1,-1,3,0,4xm24,-166v2,-1,2,-3,0,-4v-1,1,-1,3,0,4xm24,-115v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm29,-50v2,-1,2,-3,0,-4v-1,1,-1,3,0,4xm31,-47v2,0,2,-3,0,-3v-2,0,-1,3,0,3xm59,-19v0,-1,3,-3,-1,-3xm24,-54v0,2,3,0,1,0r-1,0xm40,-31v2,0,1,-4,0,-4v-2,1,-2,3,0,4xm29,-31v2,-1,2,-3,0,-4v-1,1,-1,3,0,4xm43,-16v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm38,-17v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm45,-12v-1,-3,-7,-6,-4,-1xm28,-22v1,-1,1,-3,0,-4v-2,1,-2,3,0,4xm32,-18v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm35,-12v1,-1,1,-3,0,-4v-2,1,-2,3,0,4xm22,-22v2,-1,2,-3,0,-4v-1,1,-1,3,0,4xm28,-17v1,-1,1,-3,0,-4v-2,1,-2,3,0,4xm31,-10v2,-1,2,-3,0,-4v-1,1,-1,3,0,4","w":85},"|":{"d":"36,-241v3,8,-2,26,9,26v-12,4,-11,21,-8,37v14,4,-9,9,1,18v2,0,5,-1,5,1v-15,15,2,58,-7,81v-5,13,1,18,8,22v-8,0,-5,5,0,6v-13,2,-5,35,-8,47v-11,4,-37,9,-26,-20r-1,-168v8,-10,0,-19,0,-50r27,0xm40,-102v4,-1,8,1,5,4xm43,-74v2,-1,6,4,2,4v0,0,-7,-4,-2,-4xm40,-36v2,-4,9,1,4,3v-1,0,-3,-2,-4,-3xm25,-27v2,-2,0,-4,-3,-4v-1,0,-1,1,-1,2v1,1,3,2,4,2","w":48},"}":{"d":"65,-155v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm61,-137v6,4,17,13,10,26v-19,14,-10,23,-14,41v-1,10,11,18,-1,12v8,25,-2,56,-25,48v3,-5,-3,-5,-8,-5v1,5,-1,7,-5,7v1,-7,1,-6,-1,-11v0,-3,4,-4,7,-2r-1,2v6,0,9,-8,10,-25v2,-4,-5,-67,12,-74v-11,-8,-15,-57,-11,-88v-1,-11,-15,-12,-28,-11r2,-21v26,-2,36,2,50,16v-4,15,0,33,-2,54v0,0,4,-1,0,3v-3,8,8,17,5,28xm65,-44v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm36,-5v2,1,2,3,0,4v-1,-1,-1,-3,0,-4xm17,-16v2,0,1,3,0,4v-1,-1,-2,-4,0,-4xm13,-21v-1,5,-6,7,-5,0r5,0xm26,-2v0,0,2,1,0,1r0,-1xm15,-1v1,-1,6,-2,7,0r-7,0xm8,-10v2,0,1,3,0,3v-1,0,-2,-3,0,-3xm10,-1v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm38,-202v2,-1,2,-3,0,-4v-1,1,-1,3,0,4xm12,-217v3,1,4,-3,1,-3xm38,-93v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm56,-70v1,-1,2,-4,0,-4v-3,0,-2,3,0,4xm42,-30v-1,1,-1,1,0,2r0,-2xm38,-22v1,0,6,-1,5,-4v-2,1,-4,3,-5,4","w":82},"~":{"d":"89,-273v6,1,9,2,10,8v-5,4,-13,18,-16,23v-34,7,-44,-33,-64,4v-15,-10,6,-41,19,-38v14,3,9,6,33,17v8,-4,8,-1,18,-14xm47,-271r0,-3v-1,1,-1,2,0,3","w":109},"\u00c4":{"d":"86,-237v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm97,-197v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm69,-135v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-89v1,2,2,3,0,5v-2,-2,-1,-3,0,-5xm62,-166v8,8,-9,39,-6,49v5,-1,4,-1,8,2v-11,2,-17,26,-5,29v-2,1,-2,2,-1,4r17,0v2,5,7,28,9,14v3,-31,-24,-82,-9,-103v0,-2,-2,-3,-6,-2v-4,-21,-20,-50,-3,-60v3,5,13,2,20,3v1,5,8,12,7,22r8,4r-8,0v2,15,3,31,6,47r14,4v-12,-1,-13,18,-2,22v-3,30,2,62,13,90v-6,8,0,27,9,28v-4,0,-7,2,-7,8r-33,0v1,-16,-7,-43,-9,-55v-2,15,-32,-2,-35,14r8,0v-19,4,-7,63,-42,44v-2,1,-5,1,-9,2v0,-6,5,-33,9,-56r31,-175v17,-3,15,53,16,65xm121,-58v0,-1,-2,-2,0,-2r0,2xm75,-91v0,3,-3,7,-2,2xm64,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm77,-155v1,1,2,3,2,0r-2,0xm77,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-104v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm82,-109v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm108,-78v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm108,-69v1,1,4,5,3,0r-3,0xm102,-70v3,0,0,-3,0,-1r0,1xm32,-1v3,0,4,-3,1,-4v-1,1,-3,3,-1,4xm99,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm56,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm80,-249v2,2,4,0,2,-2xm77,-249v2,2,4,0,2,-2xm38,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm35,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":136,"k":{"y":42,"x":4,"w":35,"v":42,"u":12,"t":39,"s":11,"r":5,"q":14,"p":7,"o":16,"n":9,"m":9,"l":7,"k":5,"i":5,"g":12,"f":5,"e":7,"d":11,"c":14,"b":5,"a":9,"Y":37,"X":4,"W":28,"V":33,"U":9,"T":35,"S":4,"Q":7,"O":9,"L":4,"J":4,"I":4,"H":4,"G":7,"F":2,"E":4,"C":9,"B":7,"A":4}},"\u00c5":{"d":"86,-237v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm97,-197v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm69,-135v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-89v1,2,2,3,0,5v-2,-2,-1,-3,0,-5xm62,-166v8,8,-9,39,-6,49v5,-1,4,-1,8,2v-11,2,-17,26,-5,29v-2,1,-2,2,-1,4r17,0v2,5,7,28,9,14v3,-31,-24,-82,-9,-103v0,-2,-2,-3,-6,-2v-4,-21,-20,-50,-3,-60v3,5,13,2,20,3v1,5,8,12,7,22r8,4r-8,0v2,15,3,31,6,47r14,4v-12,-1,-13,18,-2,22v-3,30,2,62,13,90v-6,8,0,27,9,28v-4,0,-7,2,-7,8r-33,0v1,-16,-7,-43,-9,-55v-2,15,-32,-2,-35,14r8,0v-19,4,-7,63,-42,44v-2,1,-5,1,-9,2v0,-6,5,-33,9,-56r31,-175v17,-3,15,53,16,65xm121,-58v0,-1,-2,-2,0,-2r0,2xm75,-91v0,3,-3,7,-2,2xm64,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm77,-155v1,1,2,3,2,0r-2,0xm77,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-104v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm82,-109v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm108,-78v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm108,-69v1,1,4,5,3,0r-3,0xm102,-70v3,0,0,-3,0,-1r0,1xm32,-1v3,0,4,-3,1,-4v-1,1,-3,3,-1,4xm65,-268v24,-8,-16,-31,6,-34v16,-2,13,16,21,23v-5,14,-1,42,-22,39v-5,0,-8,-3,-8,-9v4,-7,13,-2,7,-18xm71,-276v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,2,1,3,2,2v1,1,2,0,2,-2xm49,-240v-16,-11,-17,-61,8,-61v13,6,-9,18,1,23v-4,8,1,23,0,36v-2,1,-5,1,-9,2","w":136,"k":{"y":42,"x":4,"w":35,"v":42,"u":12,"t":39,"s":11,"r":5,"q":14,"p":7,"o":16,"n":9,"m":9,"l":7,"k":5,"i":5,"g":12,"f":5,"e":7,"d":11,"c":14,"b":5,"a":9,"Y":37,"X":4,"W":28,"V":33,"U":9,"T":35,"S":4,"Q":7,"O":9,"L":4,"J":4,"I":4,"H":4,"G":7,"F":2,"E":4,"C":9,"B":7,"A":4}},"\u00c7":{"d":"79,-236v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm96,-223v0,8,8,21,16,20v-4,14,-2,23,-3,46v-12,0,-15,5,-28,1v-2,-18,-5,-48,-21,-44v-2,-8,-1,-20,-1,-30v8,-1,30,7,37,7xm85,-154v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm42,-173v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm114,-84v2,3,1,7,0,9v-2,-2,-2,-6,0,-9xm44,-147v2,1,3,3,0,4v-2,-1,-3,-3,0,-4xm109,-79v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm107,-73v1,1,3,2,0,2r0,-2xm107,-82v0,7,-6,9,-10,4v2,-3,5,-4,10,-4xm107,-65v-1,2,-2,4,-2,0r2,0xm90,-78v0,6,5,11,12,10v1,6,-4,6,-5,10r13,0v-4,15,-4,10,-5,29v-3,-6,-2,4,-8,2r4,-7v-5,3,-7,-1,-18,-6v3,-5,17,4,18,-5v-7,1,-3,3,-10,0v0,-4,-2,-6,-6,-8v4,-3,10,-6,0,-5v1,0,7,-5,3,-7v-2,1,-5,2,-9,3r0,-17r13,0v-1,0,-2,0,-2,1xm77,-30v1,7,-16,6,-5,11v8,-2,5,-4,7,4v0,4,-3,7,-9,7v3,1,5,3,7,5v-1,0,-1,-1,-2,-1r-22,40v-1,0,-5,1,-13,1v-3,-10,15,-34,2,-38v-1,0,-2,1,-4,2v2,-14,-23,-12,-20,-29r9,0v-1,-7,-4,-8,-9,-5v-17,-3,-8,-40,-9,-62v-2,-56,-16,-134,46,-135r0,29v-14,10,-22,22,-13,40v-1,8,-4,24,-2,31v1,-1,2,-1,2,-2v0,17,-9,39,0,53v-6,19,0,34,6,47v10,-3,5,19,10,22v-1,-11,0,-25,12,-17v3,-1,5,-3,7,-3xm79,-56v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm83,-47v-1,1,-2,4,-4,2v1,-1,2,-2,4,-2xm92,-29v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm97,-21v-1,1,-2,5,-3,3v0,-1,2,-2,3,-3xm83,-27v-1,1,-2,2,-3,2xm85,-19v2,1,1,4,0,1r0,-1xm90,-12v0,2,-8,6,-7,0r7,0xm48,-36v1,0,2,1,2,2xm14,-32v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm77,-219v2,-1,1,-3,0,-4v-2,1,-1,3,0,4xm101,-171v2,0,2,0,2,-2xm51,-219v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm88,-175v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm85,-75v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm103,-47v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm83,-66r0,-5v-2,1,-2,3,0,5xm95,-51v4,-6,-3,-5,-3,-2v0,1,2,1,3,2xm97,-47v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm90,-51v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm101,-36v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm38,-58r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm41,-26v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm30,-33v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm22,-23v3,-1,7,-2,0,-2r0,2","w":117,"k":{"y":5,"a":11,"Y":4,"X":4,"W":2,"V":4,"A":7}},"\u00c9":{"d":"110,-240v0,2,0,4,-2,3v0,-2,0,-4,2,-3xm62,-231v12,-4,27,4,40,-3v-4,9,3,18,-5,32r-56,3v0,-14,1,-26,3,-34v2,9,20,-3,18,2xm44,-195v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm42,-166v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm44,-155v1,1,1,3,0,4v-2,0,-1,-4,0,-4xm42,-148v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm44,-138v13,-2,23,6,34,0v11,2,7,31,-2,34v-14,-7,-34,9,-35,-11v0,-11,1,-19,3,-23xm37,-171r-1,170v-7,1,-15,-2,-25,-1r0,-226v6,-1,14,-2,26,-3v-1,17,2,36,-1,51v-8,-1,-3,7,-3,12xm42,-95v2,0,1,3,0,4v-2,-1,-3,-3,0,-4xm42,-78v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm42,-60r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm44,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm101,-36v-5,3,0,10,1,14r-7,22v-18,2,-37,-3,-52,-1r1,1v-6,-5,-2,-27,0,-36v9,8,35,-7,47,3xm30,-184v-1,-6,-9,-3,-4,0v1,2,4,3,4,0xm19,-175v2,0,3,-3,0,-4v-2,0,-1,4,0,4xm50,-133v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm22,-155v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm68,-109v0,2,3,0,1,0r-1,0xm26,-146v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm26,-138v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm19,-144v-2,0,-7,-1,-6,2v2,0,4,0,6,-2xm75,-32v2,0,3,-2,0,-2v-3,0,-1,2,0,2xm65,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm88,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm64,-26v-1,-1,-2,-3,-2,0r2,0xm77,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm73,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm28,-186v0,1,-1,2,-2,2v0,-1,1,-2,2,-2xm60,-240v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":106,"k":{"o":9,"O":5,"K":-2}},"\u00d1":{"d":"129,-154v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm120,-149v1,4,-3,6,-5,3v1,-2,2,-3,5,-3xm121,-137v2,1,2,1,0,2v-1,0,0,-1,0,-2xm26,-228v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm111,-144v1,2,-1,2,-3,2xm105,-137v2,0,3,1,1,2xm69,-171v0,2,0,4,-3,3v0,-2,0,-4,3,-3xm129,-101v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm88,-135v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm76,-144v0,8,-3,11,-10,11v7,-3,6,-10,10,-11xm105,-129v7,1,3,-9,10,-8v4,0,6,4,6,14r10,0v-10,4,-16,12,-11,19r1,-5v0,9,-1,14,4,18v-6,-1,-1,8,-4,11v1,14,1,55,-2,75r-29,0v-5,-8,-24,-62,-24,-72v10,-3,21,-7,20,11v4,1,3,-3,3,-6v-5,-11,8,-7,16,-8v1,-7,-24,-1,-15,-9v-1,-7,3,-17,-4,-18v-6,1,-9,4,-9,7r5,-2v-4,6,6,10,0,18r-16,0v2,-1,4,-2,1,-3v-1,0,-3,2,-5,3v0,-7,-25,-37,-16,-47r2,1v-10,-14,6,-28,1,-41r-5,3v3,-13,-2,-35,0,-54v4,0,8,2,5,6v-3,12,17,32,10,37v-1,16,14,24,27,26v-7,0,-18,4,-22,0v0,11,-7,20,5,25v0,4,-2,2,-7,4v11,3,-2,20,5,24v2,-1,7,-29,15,-18v2,-1,6,-5,13,-13v-14,-18,-1,-65,-5,-99v10,0,23,2,25,-6v-2,7,4,6,9,6v-4,31,-1,40,-3,72v-5,7,-17,11,-16,29xm44,-164v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm77,-131v3,4,-3,13,-4,7v0,-2,1,-5,4,-7xm126,-64v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2v1,0,2,1,2,2xm40,-228r1,133v-5,14,-17,9,-30,9r0,-81v6,0,9,-2,9,-8v-2,2,-7,3,-9,0v2,-17,-4,-40,2,-53v-4,8,7,16,10,5v9,1,9,-4,17,-5xm60,-82v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm100,0v0,-2,5,-1,6,0v-2,1,-4,1,-6,0xm92,-1v1,1,1,1,0,2v-2,0,-3,-2,0,-2xm40,-78v5,27,1,57,-4,77v-10,-3,-16,1,-25,1r1,-79v8,-2,19,-1,28,1xm33,-217v2,-2,3,-4,0,-5v-3,1,-2,3,0,5xm36,-198v2,-1,0,-3,0,-1r0,1xm22,-204v4,-4,-2,-11,-7,-10v1,5,3,9,7,10xm111,-115v5,-3,-2,-10,-5,-10v-4,2,2,5,5,10xm57,-166v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm13,-202v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm26,-186v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm115,-97v2,-1,3,-4,0,-5v-2,1,-1,4,0,5xm18,-191v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm13,-193v1,-1,2,-2,2,-4xm106,-109v-2,2,-5,3,-9,2v2,5,7,2,9,-2xm90,-111r0,-7v-6,1,-10,9,0,7xm20,-164v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm108,-76v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm33,-146v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm29,-135v2,-1,3,-6,0,-7r0,7xm60,-102v2,-1,1,-4,0,-5v-2,0,-3,5,0,5xm22,-140v0,2,3,0,1,0r-1,0xm69,-89v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm35,-126v0,-1,-1,-2,-2,-2v-1,0,-2,1,-2,2v0,2,4,3,4,0xm31,-111v1,-4,4,-10,0,-11r0,11xm86,-60v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm31,-104v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm31,-100v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm33,-93v-1,-1,-2,-3,-2,0r2,0xm13,-15v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm102,-273v6,1,9,2,10,8v-5,4,-13,18,-16,23v-34,7,-44,-33,-64,4v-15,-10,6,-41,19,-38v14,3,9,6,33,17v8,-4,8,-1,18,-14xm60,-271r0,-3v-1,1,-1,2,0,3","w":130},"\u00d6":{"d":"98,-211v-2,1,-2,-4,-2,-6v2,1,4,4,2,6xm114,-195v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm45,-182v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm109,-211v2,21,7,45,0,65v-1,4,8,5,3,8r0,98v-10,12,-25,49,-53,35v-8,-21,21,-36,21,-51r0,-92r3,-3v-7,-26,-3,-57,-22,-51v2,-5,-5,-20,-2,-33v10,-1,16,1,13,11v2,-4,6,-15,9,-2v1,-7,9,-2,15,-2v0,1,-5,11,-4,15v-4,-3,-13,-3,-14,2v1,9,29,11,31,0xm50,-109v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm49,-102v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm45,-64v-15,7,6,27,9,35r0,29v-74,-15,-47,-114,-47,-191v0,-13,4,-19,12,-19v-3,-23,24,-7,29,-25v2,0,4,-1,6,-1r0,30v-27,14,-18,113,-9,142xm50,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm43,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm87,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm78,-202v1,1,4,5,3,0r-3,0xm79,-194v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm107,-138v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm25,-215v-1,1,-2,6,0,7v0,-2,2,-5,0,-7xm109,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm110,-118v0,-4,-4,-5,-3,0r3,0xm103,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm102,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm83,-122v-1,0,-2,4,0,4v1,-1,1,-3,0,-4xm37,-142v0,1,-2,2,0,2r0,-2xm40,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm93,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm50,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm74,-249v2,2,4,0,2,-2xm71,-249v2,2,4,0,2,-2xm32,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm29,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":118,"k":{"y":5,"v":4,"Y":5,"X":11,"W":4,"V":5,"J":4,"A":5}},"\u00dc":{"d":"124,-155v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm113,-233v1,25,-2,58,2,71v-7,33,8,85,-7,111v-8,-6,-29,8,-29,-15r3,-164v16,-1,15,-2,31,-3xm50,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm50,-124v0,0,1,7,-1,3v0,-1,0,-3,1,-3xm108,-44v-1,-1,-3,-2,0,-2r0,2xm44,-53v-8,10,1,15,13,27r0,25v-59,1,-50,-66,-49,-127v2,-2,4,-4,0,-5r0,-96v20,2,29,-9,36,-1v-5,4,-7,23,3,26r-7,0r2,107v-1,0,-2,-1,-2,-3v-1,16,3,30,-1,41v0,5,2,7,5,6xm113,-40v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm50,-102v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm97,-40v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm93,-29v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm46,-66v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm62,-29v4,-1,21,-29,26,-14v3,8,-9,5,-13,9v-1,3,12,1,13,8v-4,-2,-14,4,-6,4r20,0v-1,12,-25,28,-40,20r0,-27xm90,-221v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm17,-217v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm13,-220v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm101,-104v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm95,-100v2,-1,2,-3,0,-4v-2,1,-2,3,0,4xm112,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm20,-118v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm26,-111v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm11,-122v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm84,-44v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm17,-80v2,-1,0,-3,0,-1r0,1xm13,-66v3,1,2,-3,2,-5v-3,-1,-2,3,-2,5xm26,-53v-1,-1,-2,-3,-2,0r2,0xm15,-58v5,-1,6,-4,0,-4r0,4xm15,-49v2,0,6,1,5,-2v-2,0,-6,-1,-5,2xm99,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm56,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm80,-249v2,2,4,0,2,-2xm77,-249v2,2,4,0,2,-2xm38,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm35,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":123},"\u00e1":{"d":"86,-235v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm143,-87v1,3,-3,2,-5,2v-1,-3,3,-2,5,-2xm132,-83v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm69,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm71,-131v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm132,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm128,-56v2,1,3,2,-1,2xm78,-87v6,-22,-20,-67,-3,-83v-16,0,-14,-46,-14,-60v7,-2,10,2,25,1v10,8,1,24,15,27v-11,-2,-2,8,-6,13v2,11,0,35,17,38v-21,2,3,16,-4,27v3,7,7,11,4,21v2,5,14,7,13,16v-19,5,3,26,-4,39v8,7,0,30,12,34v-4,0,-7,4,-8,10v-12,-2,-37,7,-32,-10v0,-11,-4,-18,-15,-19r0,-4v-12,0,-16,7,-19,-4v-25,1,-6,54,-45,39v-4,3,-7,3,-7,-3v-1,-23,24,-74,5,-93v3,-2,5,-10,5,-24v10,0,14,-8,7,-11v-14,6,-30,2,-21,-11v8,2,16,9,24,5r-7,0v20,-15,14,-64,27,-90v3,0,7,1,9,2v4,34,11,74,6,105v0,-1,-1,-4,-3,-4v1,3,12,15,-1,15v-4,15,-10,25,5,20v5,-7,13,-3,15,4xm69,-100r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm12,-120v0,2,0,2,-2,2xm10,-104v-5,6,-10,6,-20,6v1,-6,11,-7,20,-6xm69,-31v1,1,4,4,0,3r0,-3xm79,-150v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm120,-88v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm64,-89v1,0,2,-1,2,-3v-2,0,-5,2,-2,3xm66,-89v1,1,-4,5,0,4v2,-1,5,-4,1,-5xm10,-135v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm73,-48v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm51,-48v2,-1,3,-3,0,-4v-2,0,-1,3,0,4xm70,-245v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":137,"k":{"z":11,"y":35,"x":5,"w":33,"v":37,"u":12,"t":40,"s":12,"r":5,"q":12,"p":7,"o":18,"n":4,"m":14,"l":7,"k":4,"j":14,"i":7,"h":7,"g":9,"f":5,"e":5,"d":14,"c":16,"b":5,"a":7,"B":7}},"\u00e0":{"d":"82,-255v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm79,-240v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm54,-257v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm60,-238v2,1,4,-2,2,-2v-1,0,-2,1,-2,2xm86,-235v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm143,-87v1,3,-3,2,-5,2v-1,-3,3,-2,5,-2xm132,-83v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm69,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm71,-131v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm132,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm128,-56v2,1,3,2,-1,2xm78,-87v6,-22,-20,-67,-3,-83v-16,0,-14,-46,-14,-60v7,-2,10,2,25,1v10,8,1,24,15,27v-11,-2,-2,8,-6,13v2,11,0,35,17,38v-21,2,3,16,-4,27v3,7,7,11,4,21v2,5,14,7,13,16v-19,5,3,26,-4,39v8,7,0,30,12,34v-4,0,-7,4,-8,10v-12,-2,-37,7,-32,-10v0,-11,-4,-18,-15,-19r0,-4v-12,0,-16,7,-19,-4v-25,1,-6,54,-45,39v-4,3,-7,3,-7,-3v-1,-23,24,-74,5,-93v3,-2,5,-10,5,-24v10,0,14,-8,7,-11v-14,6,-30,2,-21,-11v8,2,16,9,24,5r-7,0v20,-15,14,-64,27,-90v3,0,7,1,9,2v4,34,11,74,6,105v0,-1,-1,-4,-3,-4v1,3,12,15,-1,15v-4,15,-10,25,5,20v5,-7,13,-3,15,4xm69,-100r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm12,-120v0,2,0,2,-2,2xm10,-104v-5,6,-10,6,-20,6v1,-6,11,-7,20,-6xm69,-31v1,1,4,4,0,3r0,-3xm79,-150v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm120,-88v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm64,-89v1,0,2,-1,2,-3v-2,0,-5,2,-2,3xm66,-89v1,1,-4,5,0,4v2,-1,5,-4,1,-5xm10,-135v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm73,-48v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm51,-48v2,-1,3,-3,0,-4v-2,0,-1,3,0,4","w":137,"k":{"z":11,"y":35,"x":5,"w":33,"v":37,"u":12,"t":40,"s":12,"r":5,"q":12,"p":7,"o":18,"n":4,"m":14,"l":7,"k":4,"j":14,"i":7,"h":7,"g":9,"f":5,"e":5,"d":14,"c":16,"b":5,"a":7,"B":7}},"\u00e2":{"d":"81,-277v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm94,-261r0,2v-1,-1,-1,-1,0,-2xm90,-261r0,2v-1,-1,-1,-1,0,-2xm101,-245v-1,2,-3,0,-1,0r1,0xm34,-237v7,-7,16,-60,41,-43v2,0,23,40,24,43v-24,8,-21,-25,-33,-31v-8,13,-7,35,-32,31xm66,-282r1,0r-1,0xm86,-235v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm143,-87v1,3,-3,2,-5,2v-1,-3,3,-2,5,-2xm132,-83v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm69,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm71,-131v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm132,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm128,-56v2,1,3,2,-1,2xm78,-87v6,-22,-20,-67,-3,-83v-16,0,-14,-46,-14,-60v7,-2,10,2,25,1v10,8,1,24,15,27v-11,-2,-2,8,-6,13v2,11,0,35,17,38v-21,2,3,16,-4,27v3,7,7,11,4,21v2,5,14,7,13,16v-19,5,3,26,-4,39v8,7,0,30,12,34v-4,0,-7,4,-8,10v-12,-2,-37,7,-32,-10v0,-11,-4,-18,-15,-19r0,-4v-12,0,-16,7,-19,-4v-25,1,-6,54,-45,39v-4,3,-7,3,-7,-3v-1,-23,24,-74,5,-93v3,-2,5,-10,5,-24v10,0,14,-8,7,-11v-14,6,-30,2,-21,-11v8,2,16,9,24,5r-7,0v20,-15,14,-64,27,-90v3,0,7,1,9,2v4,34,11,74,6,105v0,-1,-1,-4,-3,-4v1,3,12,15,-1,15v-4,15,-10,25,5,20v5,-7,13,-3,15,4xm69,-100r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm12,-120v0,2,0,2,-2,2xm10,-104v-5,6,-10,6,-20,6v1,-6,11,-7,20,-6xm69,-31v1,1,4,4,0,3r0,-3xm79,-150v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm120,-88v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm64,-89v1,0,2,-1,2,-3v-2,0,-5,2,-2,3xm66,-89v1,1,-4,5,0,4v2,-1,5,-4,1,-5xm10,-135v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm73,-48v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm51,-48v2,-1,3,-3,0,-4v-2,0,-1,3,0,4","w":137,"k":{"z":11,"y":35,"x":5,"w":33,"v":37,"u":12,"t":40,"s":12,"r":5,"q":12,"p":7,"o":18,"n":4,"m":14,"l":7,"k":4,"j":14,"i":7,"h":7,"g":9,"f":5,"e":5,"d":14,"c":16,"b":5,"a":7,"B":7}},"\u00e4":{"d":"86,-235v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm143,-87v1,3,-3,2,-5,2v-1,-3,3,-2,5,-2xm132,-83v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm69,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm71,-131v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm132,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm128,-56v2,1,3,2,-1,2xm78,-87v6,-22,-20,-67,-3,-83v-16,0,-14,-46,-14,-60v7,-2,10,2,25,1v10,8,1,24,15,27v-11,-2,-2,8,-6,13v2,11,0,35,17,38v-21,2,3,16,-4,27v3,7,7,11,4,21v2,5,14,7,13,16v-19,5,3,26,-4,39v8,7,0,30,12,34v-4,0,-7,4,-8,10v-12,-2,-37,7,-32,-10v0,-11,-4,-18,-15,-19r0,-4v-12,0,-16,7,-19,-4v-25,1,-6,54,-45,39v-4,3,-7,3,-7,-3v-1,-23,24,-74,5,-93v3,-2,5,-10,5,-24v10,0,14,-8,7,-11v-14,6,-30,2,-21,-11v8,2,16,9,24,5r-7,0v20,-15,14,-64,27,-90v3,0,7,1,9,2v4,34,11,74,6,105v0,-1,-1,-4,-3,-4v1,3,12,15,-1,15v-4,15,-10,25,5,20v5,-7,13,-3,15,4xm69,-100r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm12,-120v0,2,0,2,-2,2xm10,-104v-5,6,-10,6,-20,6v1,-6,11,-7,20,-6xm69,-31v1,1,4,4,0,3r0,-3xm79,-150v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm120,-88v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm64,-89v1,0,2,-1,2,-3v-2,0,-5,2,-2,3xm66,-89v1,1,-4,5,0,4v2,-1,5,-4,1,-5xm10,-135v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm73,-48v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm51,-48v2,-1,3,-3,0,-4v-2,0,-1,3,0,4xm102,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm59,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm83,-249v2,2,4,0,2,-2xm80,-249v2,2,4,0,2,-2xm41,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm38,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":137,"k":{"z":11,"y":35,"x":5,"w":33,"v":37,"u":12,"t":40,"s":12,"r":5,"q":12,"p":7,"o":18,"n":4,"m":14,"l":7,"k":4,"j":14,"i":7,"h":7,"g":9,"f":5,"e":5,"d":14,"c":16,"b":5,"a":7,"B":7}},"\u00e3":{"d":"86,-235v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm143,-87v1,3,-3,2,-5,2v-1,-3,3,-2,5,-2xm132,-83v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm69,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm71,-131v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm132,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm128,-56v2,1,3,2,-1,2xm78,-87v6,-22,-20,-67,-3,-83v-16,0,-14,-46,-14,-60v7,-2,10,2,25,1v10,8,1,24,15,27v-11,-2,-2,8,-6,13v2,11,0,35,17,38v-21,2,3,16,-4,27v3,7,7,11,4,21v2,5,14,7,13,16v-19,5,3,26,-4,39v8,7,0,30,12,34v-4,0,-7,4,-8,10v-12,-2,-37,7,-32,-10v0,-11,-4,-18,-15,-19r0,-4v-12,0,-16,7,-19,-4v-25,1,-6,54,-45,39v-4,3,-7,3,-7,-3v-1,-23,24,-74,5,-93v3,-2,5,-10,5,-24v10,0,14,-8,7,-11v-14,6,-30,2,-21,-11v8,2,16,9,24,5r-7,0v20,-15,14,-64,27,-90v3,0,7,1,9,2v4,34,11,74,6,105v0,-1,-1,-4,-3,-4v1,3,12,15,-1,15v-4,15,-10,25,5,20v5,-7,13,-3,15,4xm69,-100r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm12,-120v0,2,0,2,-2,2xm10,-104v-5,6,-10,6,-20,6v1,-6,11,-7,20,-6xm69,-31v1,1,4,4,0,3r0,-3xm79,-150v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm120,-88v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm64,-89v1,0,2,-1,2,-3v-2,0,-5,2,-2,3xm66,-89v1,1,-4,5,0,4v2,-1,5,-4,1,-5xm10,-135v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm73,-48v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm51,-48v2,-1,3,-3,0,-4v-2,0,-1,3,0,4xm97,-273v6,1,9,2,10,8v-5,4,-13,18,-16,23v-34,7,-44,-33,-64,4v-15,-10,6,-41,19,-38v14,3,9,6,33,17v8,-4,8,-1,18,-14xm55,-271r0,-3v-1,1,-1,2,0,3","w":137,"k":{"z":11,"y":35,"x":5,"w":33,"v":37,"u":12,"t":40,"s":12,"r":5,"q":12,"p":7,"o":18,"n":4,"m":14,"l":7,"k":4,"j":14,"i":7,"h":7,"g":9,"f":5,"e":5,"d":14,"c":16,"b":5,"a":7,"B":7}},"\u00e5":{"d":"86,-235v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm143,-87v1,3,-3,2,-5,2v-1,-3,3,-2,5,-2xm132,-83v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm69,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm71,-131v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm132,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm128,-56v2,1,3,2,-1,2xm78,-87v6,-22,-20,-67,-3,-83v-16,0,-14,-46,-14,-60v7,-2,10,2,25,1v10,8,1,24,15,27v-11,-2,-2,8,-6,13v2,11,0,35,17,38v-21,2,3,16,-4,27v3,7,7,11,4,21v2,5,14,7,13,16v-19,5,3,26,-4,39v8,7,0,30,12,34v-4,0,-7,4,-8,10v-12,-2,-37,7,-32,-10v0,-11,-4,-18,-15,-19r0,-4v-12,0,-16,7,-19,-4v-25,1,-6,54,-45,39v-4,3,-7,3,-7,-3v-1,-23,24,-74,5,-93v3,-2,5,-10,5,-24v10,0,14,-8,7,-11v-14,6,-30,2,-21,-11v8,2,16,9,24,5r-7,0v20,-15,14,-64,27,-90v3,0,7,1,9,2v4,34,11,74,6,105v0,-1,-1,-4,-3,-4v1,3,12,15,-1,15v-4,15,-10,25,5,20v5,-7,13,-3,15,4xm69,-100r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm12,-120v0,2,0,2,-2,2xm10,-104v-5,6,-10,6,-20,6v1,-6,11,-7,20,-6xm69,-31v1,1,4,4,0,3r0,-3xm79,-150v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm120,-88v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm64,-89v1,0,2,-1,2,-3v-2,0,-5,2,-2,3xm66,-89v1,1,-4,5,0,4v2,-1,5,-4,1,-5xm10,-135v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm73,-48v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm51,-48v2,-1,3,-3,0,-4v-2,0,-1,3,0,4xm65,-268v24,-8,-16,-31,6,-34v16,-2,13,16,21,23v-5,14,-1,42,-22,39v-5,0,-8,-3,-8,-9v4,-7,13,-2,7,-18xm71,-276v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,2,1,3,2,2v1,1,2,0,2,-2xm49,-240v-16,-11,-17,-61,8,-61v13,6,-9,18,1,23v-4,8,1,23,0,36v-2,1,-5,1,-9,2","w":137,"k":{"z":11,"y":35,"x":5,"w":33,"v":37,"u":12,"t":40,"s":12,"r":5,"q":12,"p":7,"o":18,"n":4,"m":14,"l":7,"k":4,"j":14,"i":7,"h":7,"g":9,"f":5,"e":5,"d":14,"c":16,"b":5,"a":7,"B":7}},"\u00e7":{"d":"79,-238v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm96,-224v0,8,8,21,16,20v-2,14,-1,26,-2,46v-13,1,-18,4,-29,1v-3,-17,-2,-47,-21,-44v-2,-8,-1,-21,-1,-31v7,-1,30,9,37,8xm85,-155v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm41,-175v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm114,-84v3,3,2,5,0,8v-2,-2,-3,-5,0,-8xm44,-148v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm110,-80v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm108,-73v1,1,3,2,0,2r0,-2xm107,-82v0,7,-6,7,-10,4v2,-3,5,-4,10,-4xm108,-65v-1,1,-4,5,-3,0r3,0xm92,-80v-6,5,4,12,10,12v1,6,-5,5,-5,10r14,0v-1,16,-10,6,-3,24v-5,5,-4,4,-11,7r4,-7v-5,3,-7,-1,-18,-6v3,-5,16,5,18,-5v-7,1,-3,3,-10,0v0,-4,-2,-6,-6,-8v4,-3,10,-6,0,-5v0,0,9,-5,3,-7v-2,1,-5,2,-9,3r0,-18r13,0xm37,-126v12,10,-8,35,4,46v-6,20,1,34,7,48v10,-3,5,19,10,22v-1,-11,0,-25,12,-17v3,-1,8,-6,7,0v-5,1,-12,6,-5,9v9,-4,4,-6,7,4v0,4,-3,6,-9,7v14,6,0,4,-6,23v-7,21,-5,23,-25,21v-1,-8,16,-34,2,-38v-1,0,-2,1,-4,2v6,-10,-24,-15,-20,-29r9,0r-2,-8v-9,8,-17,-1,-16,-17v4,-67,-23,-181,47,-179r0,29v-14,12,-24,24,-13,41v-3,9,-1,21,-5,31v4,4,3,-7,5,-2v0,3,-2,6,-5,7xm79,-56v2,2,3,3,0,4v-1,-1,-1,-3,0,-4xm83,-47v-1,1,-2,4,-4,2v1,-1,2,-2,4,-2xm92,-29v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm97,-21r-2,4v0,-1,1,-3,2,-4xm83,-27v-1,1,-2,2,-3,2xm85,-18v3,0,0,3,0,1r0,-1xm90,-12v0,2,-8,6,-7,0r7,0xm48,-36v1,0,2,1,2,2xm13,-32v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm77,-220v2,-1,1,-4,0,-5v-1,1,-2,4,0,5xm101,-172v2,1,2,-1,2,-3xm50,-220v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm88,-176v2,0,3,-5,0,-5v-3,0,-2,5,0,5xm85,-76v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm103,-47v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm83,-67r0,-4v-2,1,-2,3,0,4xm95,-52v1,-1,1,-3,0,-4v-2,2,-3,3,0,4xm97,-47v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm90,-52v3,-1,2,-2,0,-4v-2,2,-3,3,0,4xm101,-36v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm39,-60v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm40,-27r1,-1xm30,-33v1,-1,1,-1,0,-2v-2,1,-2,1,0,2xm22,-23v3,-1,6,-2,0,-2r0,2","w":117,"k":{"z":4,"y":9,"x":11,"w":7,"v":9,"t":4,"q":4,"o":4,"a":12}},"\u00e9":{"d":"110,-233v-2,-1,-5,-6,0,-5r0,5xm140,-149v0,1,-1,3,-1,1xm45,-231v15,3,43,1,57,-1v0,14,0,19,-5,34r-54,1xm132,-157v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm47,-192v-1,1,-2,3,-2,0r2,0xm51,-181v8,1,3,12,-2,15r-2,0v1,-3,2,-8,4,-15xm54,-163v0,3,-1,6,-3,8v1,-3,-2,-9,3,-8xm41,-164v1,-2,2,-3,2,1xm51,-153v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm45,-155v2,1,2,3,0,5r0,-5xm41,-145v1,-1,2,-2,2,1xm-3,-179v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm-12,-170v-4,-4,-9,-1,-14,0v0,-7,11,-14,19,-14v1,4,-9,9,-5,14xm-7,-170v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm39,-4v-4,9,-16,-6,-25,2v-6,-21,-9,-43,-13,-66v1,-1,4,-1,3,-4v-2,0,-8,8,-10,7v-2,-11,6,-11,16,-11v-2,-20,5,-46,-5,-59v8,-6,-11,-11,-9,-20v-5,2,-11,2,-17,0v-1,10,-21,-2,-24,8v0,-21,6,-22,18,-12v16,-4,38,-8,32,-28v14,-6,4,-15,6,-40v14,-1,23,-2,27,-2r0,53v-2,0,-3,0,-4,1v9,6,3,28,5,42v8,-8,29,-3,44,-4v2,5,2,40,-5,35v-12,-1,-23,-7,-34,-2r0,-20r-5,2r0,118xm43,-98r0,39v-3,-3,-3,-36,0,-39xm47,-54v-1,1,-2,3,-2,0r2,0xm45,0r-2,-39v15,7,39,1,58,2v-2,11,1,25,-6,37v-21,5,-40,-11,-50,0xm4,-87v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-3,-83v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm-17,-87v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-18,-83v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-10,-63v-4,-1,-1,-6,-2,-9xm-18,-72v-2,-1,-4,-2,0,-2r0,2xm-17,-50v8,0,7,-8,12,-11v2,16,-6,20,-14,27v1,-5,1,-5,2,-16xm6,-39v0,16,-4,19,-7,8v0,-6,2,-8,7,-8xm-7,-41v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-5,-18v1,0,1,0,1,1xm-14,-28v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-14,-20v3,0,5,2,3,4v0,0,-1,-2,-3,-4xm6,-162v-3,0,-4,2,-5,5v4,-1,5,-2,5,-5xm8,-54v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm12,-50v0,-2,-4,-3,-4,0v0,2,4,3,4,0xm7,-50v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm58,-244v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":110,"k":{"z":2,"x":4,"w":4,"v":2,"s":12,"q":14,"o":14,"g":9,"d":4,"c":7,"a":9}},"\u00e8":{"d":"72,-257v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm69,-242v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm44,-259v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm50,-240v2,1,4,-2,2,-2v-1,0,-2,1,-2,2xm110,-233v-2,-1,-5,-6,0,-5r0,5xm140,-149v0,1,-1,3,-1,1xm45,-231v15,3,43,1,57,-1v0,14,0,19,-5,34r-54,1xm132,-157v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm47,-192v-1,1,-2,3,-2,0r2,0xm51,-181v8,1,3,12,-2,15r-2,0v1,-3,2,-8,4,-15xm54,-163v0,3,-1,6,-3,8v1,-3,-2,-9,3,-8xm41,-164v1,-2,2,-3,2,1xm51,-153v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm45,-155v2,1,2,3,0,5r0,-5xm41,-145v1,-1,2,-2,2,1xm-3,-179v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm-12,-170v-4,-4,-9,-1,-14,0v0,-7,11,-14,19,-14v1,4,-9,9,-5,14xm-7,-170v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm39,-4v-4,9,-16,-6,-25,2v-6,-21,-9,-43,-13,-66v1,-1,4,-1,3,-4v-2,0,-8,8,-10,7v-2,-11,6,-11,16,-11v-2,-20,5,-46,-5,-59v8,-6,-11,-11,-9,-20v-5,2,-11,2,-17,0v-1,10,-21,-2,-24,8v0,-21,6,-22,18,-12v16,-4,38,-8,32,-28v14,-6,4,-15,6,-40v14,-1,23,-2,27,-2r0,53v-2,0,-3,0,-4,1v9,6,3,28,5,42v8,-8,29,-3,44,-4v2,5,2,40,-5,35v-12,-1,-23,-7,-34,-2r0,-20r-5,2r0,118xm43,-98r0,39v-3,-3,-3,-36,0,-39xm47,-54v-1,1,-2,3,-2,0r2,0xm45,0r-2,-39v15,7,39,1,58,2v-2,11,1,25,-6,37v-21,5,-40,-11,-50,0xm4,-87v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-3,-83v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm-17,-87v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-18,-83v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-10,-63v-4,-1,-1,-6,-2,-9xm-18,-72v-2,-1,-4,-2,0,-2r0,2xm-17,-50v8,0,7,-8,12,-11v2,16,-6,20,-14,27v1,-5,1,-5,2,-16xm6,-39v0,16,-4,19,-7,8v0,-6,2,-8,7,-8xm-7,-41v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-5,-18v1,0,1,0,1,1xm-14,-28v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-14,-20v3,0,5,2,3,4v0,0,-1,-2,-3,-4xm6,-162v-3,0,-4,2,-5,5v4,-1,5,-2,5,-5xm8,-54v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm12,-50v0,-2,-4,-3,-4,0v0,2,4,3,4,0xm7,-50v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2","w":110,"k":{"z":2,"x":4,"w":4,"v":2,"s":12,"q":14,"o":14,"g":9,"d":4,"c":7,"a":9}},"\u00ea":{"d":"68,-277v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm81,-261r0,2v-1,-1,-1,-1,0,-2xm77,-261r0,2v-1,-1,-1,-1,0,-2xm88,-245v-1,2,-3,0,-1,0r1,0xm21,-237v7,-7,16,-60,41,-43v2,0,23,40,24,43v-24,8,-21,-25,-33,-31v-8,13,-7,35,-32,31xm53,-282r1,0r-1,0xm110,-233v-2,-1,-5,-6,0,-5r0,5xm140,-149v0,1,-1,3,-1,1xm45,-231v15,3,43,1,57,-1v0,14,0,19,-5,34r-54,1xm132,-157v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm47,-192v-1,1,-2,3,-2,0r2,0xm51,-181v8,1,3,12,-2,15r-2,0v1,-3,2,-8,4,-15xm54,-163v0,3,-1,6,-3,8v1,-3,-2,-9,3,-8xm41,-164v1,-2,2,-3,2,1xm51,-153v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm45,-155v2,1,2,3,0,5r0,-5xm41,-145v1,-1,2,-2,2,1xm-3,-179v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm-12,-170v-4,-4,-9,-1,-14,0v0,-7,11,-14,19,-14v1,4,-9,9,-5,14xm-7,-170v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm39,-4v-4,9,-16,-6,-25,2v-6,-21,-9,-43,-13,-66v1,-1,4,-1,3,-4v-2,0,-8,8,-10,7v-2,-11,6,-11,16,-11v-2,-20,5,-46,-5,-59v8,-6,-11,-11,-9,-20v-5,2,-11,2,-17,0v-1,10,-21,-2,-24,8v0,-21,6,-22,18,-12v16,-4,38,-8,32,-28v14,-6,4,-15,6,-40v14,-1,23,-2,27,-2r0,53v-2,0,-3,0,-4,1v9,6,3,28,5,42v8,-8,29,-3,44,-4v2,5,2,40,-5,35v-12,-1,-23,-7,-34,-2r0,-20r-5,2r0,118xm43,-98r0,39v-3,-3,-3,-36,0,-39xm47,-54v-1,1,-2,3,-2,0r2,0xm45,0r-2,-39v15,7,39,1,58,2v-2,11,1,25,-6,37v-21,5,-40,-11,-50,0xm4,-87v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-3,-83v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm-17,-87v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-18,-83v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-10,-63v-4,-1,-1,-6,-2,-9xm-18,-72v-2,-1,-4,-2,0,-2r0,2xm-17,-50v8,0,7,-8,12,-11v2,16,-6,20,-14,27v1,-5,1,-5,2,-16xm6,-39v0,16,-4,19,-7,8v0,-6,2,-8,7,-8xm-7,-41v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-5,-18v1,0,1,0,1,1xm-14,-28v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-14,-20v3,0,5,2,3,4v0,0,-1,-2,-3,-4xm6,-162v-3,0,-4,2,-5,5v4,-1,5,-2,5,-5xm8,-54v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm12,-50v0,-2,-4,-3,-4,0v0,2,4,3,4,0xm7,-50v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2","w":110,"k":{"z":2,"x":4,"w":4,"v":2,"s":12,"q":14,"o":14,"g":9,"d":4,"c":7,"a":9}},"\u00eb":{"d":"110,-233v-2,-1,-5,-6,0,-5r0,5xm140,-149v0,1,-1,3,-1,1xm45,-231v15,3,43,1,57,-1v0,14,0,19,-5,34r-54,1xm132,-157v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm47,-192v-1,1,-2,3,-2,0r2,0xm51,-181v8,1,3,12,-2,15r-2,0v1,-3,2,-8,4,-15xm54,-163v0,3,-1,6,-3,8v1,-3,-2,-9,3,-8xm41,-164v1,-2,2,-3,2,1xm51,-153v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm45,-155v2,1,2,3,0,5r0,-5xm41,-145v1,-1,2,-2,2,1xm-3,-179v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm-12,-170v-4,-4,-9,-1,-14,0v0,-7,11,-14,19,-14v1,4,-9,9,-5,14xm-7,-170v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm39,-4v-4,9,-16,-6,-25,2v-6,-21,-9,-43,-13,-66v1,-1,4,-1,3,-4v-2,0,-8,8,-10,7v-2,-11,6,-11,16,-11v-2,-20,5,-46,-5,-59v8,-6,-11,-11,-9,-20v-5,2,-11,2,-17,0v-1,10,-21,-2,-24,8v0,-21,6,-22,18,-12v16,-4,38,-8,32,-28v14,-6,4,-15,6,-40v14,-1,23,-2,27,-2r0,53v-2,0,-3,0,-4,1v9,6,3,28,5,42v8,-8,29,-3,44,-4v2,5,2,40,-5,35v-12,-1,-23,-7,-34,-2r0,-20r-5,2r0,118xm43,-98r0,39v-3,-3,-3,-36,0,-39xm47,-54v-1,1,-2,3,-2,0r2,0xm45,0r-2,-39v15,7,39,1,58,2v-2,11,1,25,-6,37v-21,5,-40,-11,-50,0xm4,-87v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-3,-83v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm-17,-87v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-18,-83v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-10,-63v-4,-1,-1,-6,-2,-9xm-18,-72v-2,-1,-4,-2,0,-2r0,2xm-17,-50v8,0,7,-8,12,-11v2,16,-6,20,-14,27v1,-5,1,-5,2,-16xm6,-39v0,16,-4,19,-7,8v0,-6,2,-8,7,-8xm-7,-41v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-5,-18v1,0,1,0,1,1xm-14,-28v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-14,-20v3,0,5,2,3,4v0,0,-1,-2,-3,-4xm6,-162v-3,0,-4,2,-5,5v4,-1,5,-2,5,-5xm8,-54v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm12,-50v0,-2,-4,-3,-4,0v0,2,4,3,4,0xm7,-50v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm91,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm48,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm72,-249v2,2,4,0,2,-2xm69,-249v2,2,4,0,2,-2xm30,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm27,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":110,"k":{"z":2,"x":4,"w":4,"v":2,"s":12,"q":14,"o":14,"g":9,"d":4,"c":7,"a":9}},"\u00ed":{"d":"47,-152v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-20v1,35,-23,7,-33,20r0,-227v13,4,25,-8,31,-1xm13,-216v0,8,8,8,1,0r-1,0xm32,-242v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":50,"k":{"a":5}},"\u00ec":{"d":"44,-256v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm41,-241v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm16,-258v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm22,-239v2,1,4,-2,2,-2v-1,0,-2,1,-2,2xm47,-152v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-20v1,35,-23,7,-33,20r0,-227v13,4,25,-8,31,-1xm13,-216v0,8,8,8,1,0r-1,0","w":50,"k":{"a":5}},"\u00ee":{"d":"40,-278v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm53,-262r0,2v-1,-1,-1,-1,0,-2xm49,-262r0,2v-1,-1,-1,-1,0,-2xm60,-246v-1,2,-3,0,-1,0r1,0xm-7,-238v7,-7,16,-60,41,-43v2,0,23,40,24,43v-24,8,-21,-25,-33,-31v-8,13,-7,35,-32,31xm25,-283r1,0r-1,0xm47,-152v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-20v1,35,-23,7,-33,20r0,-227v13,4,25,-8,31,-1xm13,-216v0,8,8,8,1,0r-1,0","w":50,"k":{"a":5}},"\u00ef":{"d":"47,-152v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-20v1,35,-23,7,-33,20r0,-227v13,4,25,-8,31,-1xm13,-216v0,8,8,8,1,0r-1,0xm65,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm22,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm46,-249v2,2,4,0,2,-2xm43,-249v2,2,4,0,2,-2xm4,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm1,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":50,"k":{"a":5}},"\u00f1":{"d":"126,-155v-1,-1,-3,-2,0,-2r0,2xm115,-153v1,4,-1,6,-5,5v0,-3,2,-5,5,-5xm106,-148v0,2,0,2,-2,2xm126,-102v-1,-1,-3,-2,0,-2r0,2xm85,-139v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm150,-67v1,4,-5,1,-7,2v-1,-4,5,-1,7,-2xm121,-92v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm71,-148v6,5,-1,12,-8,11v2,-2,3,-8,8,-11xm139,-63v-1,1,-2,3,-2,0r2,0xm126,-57v-5,14,24,18,24,26v-11,2,-10,5,-29,2v0,18,-8,37,-14,20v-5,9,-15,-1,-20,5v-2,-4,-6,-8,-4,-13v-11,-2,-17,11,-18,-5v-8,-2,-22,5,-22,-5v22,0,14,-22,4,-30v16,6,13,-24,24,-30v-6,-5,-18,8,-15,0v1,-15,-22,-38,-13,-55v-15,10,7,51,-19,57r17,0v-11,14,12,11,11,25v-3,0,-9,-3,-11,-1v0,12,0,39,-6,52v-11,-2,-14,9,-18,0v-1,4,-7,7,-9,2v2,-25,-3,-57,3,-78v2,1,4,1,4,-2v-1,-1,-3,-3,-7,-5r0,-79v6,0,9,-1,9,-5v-4,0,-8,0,-9,-3v2,-16,-4,-40,2,-52v-1,10,7,17,10,3v4,-2,5,-1,8,4v1,-8,17,-11,19,2v-6,14,17,28,9,41v7,4,9,5,9,11v-2,0,-6,-4,-5,0v3,8,11,13,23,14v-1,2,-23,3,-23,6v-2,12,3,22,14,15v1,11,-4,8,-12,7v4,11,-6,20,3,24v2,-14,5,-20,17,-20v0,-5,7,-8,9,-11v-5,-2,-11,-13,-4,-17r0,-81v9,-1,20,3,23,-5v4,2,5,7,10,6v-4,24,1,46,-3,73v-10,5,-15,11,-17,17v24,-4,14,11,27,18v-8,0,-12,4,-12,13r5,-2v-5,18,4,35,10,46v-6,1,-11,6,-4,10xm133,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm130,-26v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm133,-15v-4,0,-5,-1,-5,-5v4,0,5,1,5,5xm75,-10v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm39,-181v0,-14,2,-33,-1,-45xm102,-133v4,1,4,-5,1,-4v-2,0,-4,3,-1,4xm102,-128v-1,2,3,6,2,2v-1,-1,-1,-2,-2,-2xm106,-120v2,-1,4,-2,0,-2r0,2xm19,-207v3,-4,-2,-9,-4,-8v0,3,1,5,4,8xm43,-174v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm39,-172v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm95,-107v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm80,-115v4,0,9,1,7,-5v-2,1,-5,3,-7,5xm46,-172v-11,2,-7,14,-7,26v6,-5,7,-22,7,-26xm121,-65v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-85v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm97,-86v1,-1,1,-1,0,-2v-2,1,-2,1,0,2xm85,-94v-1,-7,3,-18,-7,-15v3,5,1,10,7,15xm26,-142v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm80,-85v1,3,5,2,5,-2v-2,-2,-5,-2,-5,2xm121,-41v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm133,-31v2,0,1,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm76,-85v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm124,-37v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm29,-123v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm28,-102v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm67,-52v2,0,2,0,2,-2xm71,-46v-4,-1,-5,1,-4,5v2,0,3,-1,4,-5xm63,-33v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm41,-168v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm92,-273v6,1,9,2,10,8v-5,4,-13,18,-16,23v-34,7,-44,-33,-64,4v-15,-10,6,-41,19,-38v14,3,9,6,33,17v8,-4,8,-1,18,-14xm50,-271r0,-3v-1,1,-1,2,0,3","w":132,"k":{"y":7,"x":4,"v":4,"u":7,"t":7,"s":9,"p":4,"o":7,"g":5,"d":7,"b":4,"a":9}},"\u00f3":{"d":"78,-159v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm112,-198v11,14,-3,43,5,60r-1,90v12,2,24,-7,27,-4v0,1,-1,2,-3,4r16,0v-11,3,-17,7,-17,10v1,-1,4,5,4,5r-7,0v2,7,8,3,13,3v0,8,-24,3,-28,2r2,-5r-8,0v-17,20,-29,40,-53,29v-1,-7,2,-18,-2,-22v-2,8,5,30,-6,24v-14,4,-22,-13,-40,-24r-4,-133r-5,0v0,-3,5,-9,3,-13r-13,9v0,-8,11,-4,13,-14v2,-11,4,-30,16,-29v-2,-19,24,-14,29,-25r5,-1r0,32v-14,9,-5,10,-4,24v2,2,40,18,12,20v1,-6,-10,-2,-14,-3v0,-7,-1,-11,-3,-13v-6,3,-13,90,0,109v0,4,-8,12,0,11v-7,7,7,6,11,15v21,10,23,-12,23,-44v0,-31,15,-115,-17,-115v-5,-4,-4,-25,-4,-36v12,3,47,1,35,19v5,-1,4,2,4,6v-4,-2,-17,-4,-19,0v3,8,18,4,28,5v1,-3,2,-6,5,-3v1,4,-3,6,-3,7xm54,-107v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm51,-102v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-12,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm115,-29v3,0,0,3,0,1r0,-1xm-23,-154v-1,-6,6,-9,9,-5v-2,4,-5,5,-9,5xm54,-70v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm-31,-67v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm84,-189v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm49,-181v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm110,-118v1,2,2,4,2,0r-2,0xm62,-166v0,-1,-1,-2,-2,-2v-5,5,8,9,2,2xm106,-118v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm58,-31v2,0,3,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm61,-163v0,-1,1,-1,1,-2v0,1,-1,1,-1,2xm67,-242v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","k":{"y":9,"x":11,"w":9,"v":9,"t":11,"b":4,"a":11}},"\u00f2":{"d":"72,-258v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm69,-243v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm44,-260v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm50,-241v2,1,4,-2,2,-2v-1,0,-2,1,-2,2xm78,-159v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm112,-198v11,14,-3,43,5,60r-1,90v12,2,24,-7,27,-4v0,1,-1,2,-3,4r16,0v-11,3,-17,7,-17,10v1,-1,4,5,4,5r-7,0v2,7,8,3,13,3v0,8,-24,3,-28,2r2,-5r-8,0v-17,20,-29,40,-53,29v-1,-7,2,-18,-2,-22v-2,8,5,30,-6,24v-14,4,-22,-13,-40,-24r-4,-133r-5,0v0,-3,5,-9,3,-13r-13,9v0,-8,11,-4,13,-14v2,-11,4,-30,16,-29v-2,-19,24,-14,29,-25r5,-1r0,32v-14,9,-5,10,-4,24v2,2,40,18,12,20v1,-6,-10,-2,-14,-3v0,-7,-1,-11,-3,-13v-6,3,-13,90,0,109v0,4,-8,12,0,11v-7,7,7,6,11,15v21,10,23,-12,23,-44v0,-31,15,-115,-17,-115v-5,-4,-4,-25,-4,-36v12,3,47,1,35,19v5,-1,4,2,4,6v-4,-2,-17,-4,-19,0v3,8,18,4,28,5v1,-3,2,-6,5,-3v1,4,-3,6,-3,7xm54,-107v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm51,-102v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-12,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm115,-29v3,0,0,3,0,1r0,-1xm-23,-154v-1,-6,6,-9,9,-5v-2,4,-5,5,-9,5xm54,-70v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm-31,-67v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm84,-189v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm49,-181v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm110,-118v1,2,2,4,2,0r-2,0xm62,-166v0,-1,-1,-2,-2,-2v-5,5,8,9,2,2xm106,-118v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm58,-31v2,0,3,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm61,-163v0,-1,1,-1,1,-2v0,1,-1,1,-1,2","k":{"y":9,"x":11,"w":9,"v":9,"t":11,"b":4,"a":11}},"\u00f4":{"d":"76,-278v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm89,-262r0,2v-1,-1,-1,-1,0,-2xm85,-262r0,2v-1,-1,-1,-1,0,-2xm96,-246v-1,2,-3,0,-1,0r1,0xm29,-238v7,-7,16,-60,41,-43v2,0,23,40,24,43v-24,8,-21,-25,-33,-31v-8,13,-7,35,-32,31xm61,-283r1,0r-1,0xm78,-159v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm112,-198v11,14,-3,43,5,60r-1,90v12,2,24,-7,27,-4v0,1,-1,2,-3,4r16,0v-11,3,-17,7,-17,10v1,-1,4,5,4,5r-7,0v2,7,8,3,13,3v0,8,-24,3,-28,2r2,-5r-8,0v-17,20,-29,40,-53,29v-1,-7,2,-18,-2,-22v-2,8,5,30,-6,24v-14,4,-22,-13,-40,-24r-4,-133r-5,0v0,-3,5,-9,3,-13r-13,9v0,-8,11,-4,13,-14v2,-11,4,-30,16,-29v-2,-19,24,-14,29,-25r5,-1r0,32v-14,9,-5,10,-4,24v2,2,40,18,12,20v1,-6,-10,-2,-14,-3v0,-7,-1,-11,-3,-13v-6,3,-13,90,0,109v0,4,-8,12,0,11v-7,7,7,6,11,15v21,10,23,-12,23,-44v0,-31,15,-115,-17,-115v-5,-4,-4,-25,-4,-36v12,3,47,1,35,19v5,-1,4,2,4,6v-4,-2,-17,-4,-19,0v3,8,18,4,28,5v1,-3,2,-6,5,-3v1,4,-3,6,-3,7xm54,-107v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm51,-102v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-12,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm115,-29v3,0,0,3,0,1r0,-1xm-23,-154v-1,-6,6,-9,9,-5v-2,4,-5,5,-9,5xm54,-70v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm-31,-67v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm84,-189v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm49,-181v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm110,-118v1,2,2,4,2,0r-2,0xm62,-166v0,-1,-1,-2,-2,-2v-5,5,8,9,2,2xm106,-118v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm58,-31v2,0,3,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm61,-163v0,-1,1,-1,1,-2v0,1,-1,1,-1,2","k":{"y":9,"x":11,"w":9,"v":9,"t":11,"b":4,"a":11}},"\u00f6":{"d":"78,-159v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm112,-198v11,14,-3,43,5,60r-1,90v12,2,24,-7,27,-4v0,1,-1,2,-3,4r16,0v-11,3,-17,7,-17,10v1,-1,4,5,4,5r-7,0v2,7,8,3,13,3v0,8,-24,3,-28,2r2,-5r-8,0v-17,20,-29,40,-53,29v-1,-7,2,-18,-2,-22v-2,8,5,30,-6,24v-14,4,-22,-13,-40,-24r-4,-133r-5,0v0,-3,5,-9,3,-13r-13,9v0,-8,11,-4,13,-14v2,-11,4,-30,16,-29v-2,-19,24,-14,29,-25r5,-1r0,32v-14,9,-5,10,-4,24v2,2,40,18,12,20v1,-6,-10,-2,-14,-3v0,-7,-1,-11,-3,-13v-6,3,-13,90,0,109v0,4,-8,12,0,11v-7,7,7,6,11,15v21,10,23,-12,23,-44v0,-31,15,-115,-17,-115v-5,-4,-4,-25,-4,-36v12,3,47,1,35,19v5,-1,4,2,4,6v-4,-2,-17,-4,-19,0v3,8,18,4,28,5v1,-3,2,-6,5,-3v1,4,-3,6,-3,7xm54,-107v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm51,-102v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-12,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm115,-29v3,0,0,3,0,1r0,-1xm-23,-154v-1,-6,6,-9,9,-5v-2,4,-5,5,-9,5xm54,-70v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm-31,-67v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm84,-189v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm49,-181v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm110,-118v1,2,2,4,2,0r-2,0xm62,-166v0,-1,-1,-2,-2,-2v-5,5,8,9,2,2xm106,-118v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm58,-31v2,0,3,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm61,-163v0,-1,1,-1,1,-2v0,1,-1,1,-1,2xm96,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm53,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm77,-249v2,2,4,0,2,-2xm74,-249v2,2,4,0,2,-2xm35,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm32,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","k":{"y":9,"x":11,"w":9,"v":9,"t":11,"b":4,"a":11}},"\u00f5":{"d":"78,-159v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm112,-198v11,14,-3,43,5,60r-1,90v12,2,24,-7,27,-4v0,1,-1,2,-3,4r16,0v-11,3,-17,7,-17,10v1,-1,4,5,4,5r-7,0v2,7,8,3,13,3v0,8,-24,3,-28,2r2,-5r-8,0v-17,20,-29,40,-53,29v-1,-7,2,-18,-2,-22v-2,8,5,30,-6,24v-14,4,-22,-13,-40,-24r-4,-133r-5,0v0,-3,5,-9,3,-13r-13,9v0,-8,11,-4,13,-14v2,-11,4,-30,16,-29v-2,-19,24,-14,29,-25r5,-1r0,32v-14,9,-5,10,-4,24v2,2,40,18,12,20v1,-6,-10,-2,-14,-3v0,-7,-1,-11,-3,-13v-6,3,-13,90,0,109v0,4,-8,12,0,11v-7,7,7,6,11,15v21,10,23,-12,23,-44v0,-31,15,-115,-17,-115v-5,-4,-4,-25,-4,-36v12,3,47,1,35,19v5,-1,4,2,4,6v-4,-2,-17,-4,-19,0v3,8,18,4,28,5v1,-3,2,-6,5,-3v1,4,-3,6,-3,7xm54,-107v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm51,-102v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-12,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm115,-29v3,0,0,3,0,1r0,-1xm-23,-154v-1,-6,6,-9,9,-5v-2,4,-5,5,-9,5xm54,-70v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm-31,-67v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm84,-189v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm49,-181v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm110,-118v1,2,2,4,2,0r-2,0xm62,-166v0,-1,-1,-2,-2,-2v-5,5,8,9,2,2xm106,-118v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm58,-31v2,0,3,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm61,-163v0,-1,1,-1,1,-2v0,1,-1,1,-1,2xm95,-273v6,1,9,2,10,8v-5,4,-13,18,-16,23v-34,7,-44,-33,-64,4v-15,-10,6,-41,19,-38v14,3,9,6,33,17v8,-4,8,-1,18,-14xm53,-271r0,-3v-1,1,-1,2,0,3","k":{"y":9,"x":11,"w":9,"v":9,"t":11,"b":4,"a":11}},"\u00fa":{"d":"162,-150v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm167,-148v3,7,-1,12,-9,11v1,-3,4,-7,9,-11xm167,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm160,-135v0,2,1,5,-2,4xm130,-152v-1,1,-2,3,-2,0r2,0xm119,-133v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm86,-229v13,1,18,-1,31,-3v2,19,-3,44,2,60v-3,29,1,55,-2,83v3,16,2,36,-5,46v-4,-2,-1,-12,-6,-12v-9,1,-11,5,-22,1xm58,-152v-1,1,-2,3,-2,0r2,0xm58,-122v-1,1,-2,3,-2,0r2,0xm58,-100v-1,1,-2,3,-2,0r2,0xm117,-39v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm104,-39v-1,1,-2,3,-2,0r2,0xm62,-72v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm47,-65v0,21,1,23,15,34v-1,9,3,23,-2,29v-9,0,-15,0,-22,2v1,-2,3,-3,3,-4v-1,-6,-35,-14,-24,-21v0,-5,-3,-7,-10,-7r0,-11v-18,4,-30,5,-43,4v0,-2,3,-9,7,-20v5,18,39,10,41,-2v4,-20,4,-86,0,-115v-3,8,-5,11,-8,11r0,-21v9,-1,9,-6,6,-13r-13,0v13,-3,16,-7,15,-23r-8,4v3,-17,27,-6,41,-15v10,5,-9,28,9,31v-20,10,-2,66,-9,89v3,15,3,18,0,41v1,1,12,6,7,9v-2,0,-3,-1,-5,-2xm62,-43v-4,-5,-5,-15,-2,-22v9,1,2,15,2,22xm83,-38v-1,6,13,7,14,10v-5,0,-17,-1,-11,4r21,0v-3,13,-27,31,-40,20r0,-27v4,0,21,-27,26,-13v0,6,-4,7,-10,6xm4,-59v1,2,-1,2,-3,2xm-3,-74v7,3,3,13,0,15v-5,-4,-11,2,-13,1v-2,-7,13,-12,13,-16xm-3,-33v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm99,-100v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm12,-179v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm6,-172v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm23,-59v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm30,-52v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm10,-46v3,1,5,-3,2,-4xm-8,-64v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm-14,-41v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm-31,-39v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm72,-244v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":128,"k":{"z":11,"y":4,"x":12,"w":4,"v":5,"s":7,"q":2,"p":4,"o":4,"m":5,"j":5,"g":4,"a":16}},"\u00f9":{"d":"80,-257v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm77,-242v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm52,-259v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm58,-240v2,1,4,-2,2,-2v-1,0,-2,1,-2,2xm162,-150v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm167,-148v3,7,-1,12,-9,11v1,-3,4,-7,9,-11xm167,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm160,-135v0,2,1,5,-2,4xm130,-152v-1,1,-2,3,-2,0r2,0xm119,-133v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm86,-229v13,1,18,-1,31,-3v2,19,-3,44,2,60v-3,29,1,55,-2,83v3,16,2,36,-5,46v-4,-2,-1,-12,-6,-12v-9,1,-11,5,-22,1xm58,-152v-1,1,-2,3,-2,0r2,0xm58,-122v-1,1,-2,3,-2,0r2,0xm58,-100v-1,1,-2,3,-2,0r2,0xm117,-39v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm104,-39v-1,1,-2,3,-2,0r2,0xm62,-72v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm47,-65v0,21,1,23,15,34v-1,9,3,23,-2,29v-9,0,-15,0,-22,2v1,-2,3,-3,3,-4v-1,-6,-35,-14,-24,-21v0,-5,-3,-7,-10,-7r0,-11v-18,4,-30,5,-43,4v0,-2,3,-9,7,-20v5,18,39,10,41,-2v4,-20,4,-86,0,-115v-3,8,-5,11,-8,11r0,-21v9,-1,9,-6,6,-13r-13,0v13,-3,16,-7,15,-23r-8,4v3,-17,27,-6,41,-15v10,5,-9,28,9,31v-20,10,-2,66,-9,89v3,15,3,18,0,41v1,1,12,6,7,9v-2,0,-3,-1,-5,-2xm62,-43v-4,-5,-5,-15,-2,-22v9,1,2,15,2,22xm83,-38v-1,6,13,7,14,10v-5,0,-17,-1,-11,4r21,0v-3,13,-27,31,-40,20r0,-27v4,0,21,-27,26,-13v0,6,-4,7,-10,6xm4,-59v1,2,-1,2,-3,2xm-3,-74v7,3,3,13,0,15v-5,-4,-11,2,-13,1v-2,-7,13,-12,13,-16xm-3,-33v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm99,-100v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm12,-179v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm6,-172v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm23,-59v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm30,-52v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm10,-46v3,1,5,-3,2,-4xm-8,-64v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm-14,-41v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm-31,-39v2,0,1,-3,0,-4v-2,1,-3,3,0,4","w":128,"k":{"z":11,"y":4,"x":12,"w":4,"v":5,"s":7,"q":2,"p":4,"o":4,"m":5,"j":5,"g":4,"a":16}},"\u00fb":{"d":"77,-278v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm90,-262r0,2v-1,-1,-1,-1,0,-2xm86,-262r0,2v-1,-1,-1,-1,0,-2xm97,-246v-1,2,-3,0,-1,0r1,0xm30,-238v7,-7,16,-60,41,-43v2,0,23,40,24,43v-24,8,-21,-25,-33,-31v-8,13,-7,35,-32,31xm62,-283r1,0r-1,0xm162,-150v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm167,-148v3,7,-1,12,-9,11v1,-3,4,-7,9,-11xm167,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm160,-135v0,2,1,5,-2,4xm130,-152v-1,1,-2,3,-2,0r2,0xm119,-133v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm86,-229v13,1,18,-1,31,-3v2,19,-3,44,2,60v-3,29,1,55,-2,83v3,16,2,36,-5,46v-4,-2,-1,-12,-6,-12v-9,1,-11,5,-22,1xm58,-152v-1,1,-2,3,-2,0r2,0xm58,-122v-1,1,-2,3,-2,0r2,0xm58,-100v-1,1,-2,3,-2,0r2,0xm117,-39v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm104,-39v-1,1,-2,3,-2,0r2,0xm62,-72v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm47,-65v0,21,1,23,15,34v-1,9,3,23,-2,29v-9,0,-15,0,-22,2v1,-2,3,-3,3,-4v-1,-6,-35,-14,-24,-21v0,-5,-3,-7,-10,-7r0,-11v-18,4,-30,5,-43,4v0,-2,3,-9,7,-20v5,18,39,10,41,-2v4,-20,4,-86,0,-115v-3,8,-5,11,-8,11r0,-21v9,-1,9,-6,6,-13r-13,0v13,-3,16,-7,15,-23r-8,4v3,-17,27,-6,41,-15v10,5,-9,28,9,31v-20,10,-2,66,-9,89v3,15,3,18,0,41v1,1,12,6,7,9v-2,0,-3,-1,-5,-2xm62,-43v-4,-5,-5,-15,-2,-22v9,1,2,15,2,22xm83,-38v-1,6,13,7,14,10v-5,0,-17,-1,-11,4r21,0v-3,13,-27,31,-40,20r0,-27v4,0,21,-27,26,-13v0,6,-4,7,-10,6xm4,-59v1,2,-1,2,-3,2xm-3,-74v7,3,3,13,0,15v-5,-4,-11,2,-13,1v-2,-7,13,-12,13,-16xm-3,-33v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm99,-100v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm12,-179v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm6,-172v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm23,-59v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm30,-52v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm10,-46v3,1,5,-3,2,-4xm-8,-64v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm-14,-41v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm-31,-39v2,0,1,-3,0,-4v-2,1,-3,3,0,4","w":128,"k":{"z":11,"y":4,"x":12,"w":4,"v":5,"s":7,"q":2,"p":4,"o":4,"m":5,"j":5,"g":4,"a":16}},"\u00fc":{"d":"162,-150v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm167,-148v3,7,-1,12,-9,11v1,-3,4,-7,9,-11xm167,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm160,-135v0,2,1,5,-2,4xm130,-152v-1,1,-2,3,-2,0r2,0xm119,-133v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm86,-229v13,1,18,-1,31,-3v2,19,-3,44,2,60v-3,29,1,55,-2,83v3,16,2,36,-5,46v-4,-2,-1,-12,-6,-12v-9,1,-11,5,-22,1xm58,-152v-1,1,-2,3,-2,0r2,0xm58,-122v-1,1,-2,3,-2,0r2,0xm58,-100v-1,1,-2,3,-2,0r2,0xm117,-39v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm104,-39v-1,1,-2,3,-2,0r2,0xm62,-72v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm47,-65v0,21,1,23,15,34v-1,9,3,23,-2,29v-9,0,-15,0,-22,2v1,-2,3,-3,3,-4v-1,-6,-35,-14,-24,-21v0,-5,-3,-7,-10,-7r0,-11v-18,4,-30,5,-43,4v0,-2,3,-9,7,-20v5,18,39,10,41,-2v4,-20,4,-86,0,-115v-3,8,-5,11,-8,11r0,-21v9,-1,9,-6,6,-13r-13,0v13,-3,16,-7,15,-23r-8,4v3,-17,27,-6,41,-15v10,5,-9,28,9,31v-20,10,-2,66,-9,89v3,15,3,18,0,41v1,1,12,6,7,9v-2,0,-3,-1,-5,-2xm62,-43v-4,-5,-5,-15,-2,-22v9,1,2,15,2,22xm83,-38v-1,6,13,7,14,10v-5,0,-17,-1,-11,4r21,0v-3,13,-27,31,-40,20r0,-27v4,0,21,-27,26,-13v0,6,-4,7,-10,6xm4,-59v1,2,-1,2,-3,2xm-3,-74v7,3,3,13,0,15v-5,-4,-11,2,-13,1v-2,-7,13,-12,13,-16xm-3,-33v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm99,-100v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm12,-179v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm6,-172v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm23,-59v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm30,-52v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm10,-46v3,1,5,-3,2,-4xm-8,-64v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm-14,-41v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm-31,-39v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm99,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm56,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm80,-249v2,2,4,0,2,-2xm77,-249v2,2,4,0,2,-2xm38,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm35,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":128,"k":{"z":11,"y":4,"x":12,"w":4,"v":5,"s":7,"q":2,"p":4,"o":4,"m":5,"j":5,"g":4,"a":16}},"\u2020":{"d":"56,-241v3,8,-3,27,9,26v-8,2,-12,9,-11,20v11,3,33,-8,29,10r3,0v-1,2,-4,6,-3,9v-16,-2,-35,3,-25,16v2,0,5,-1,5,1v-15,6,2,61,-7,81v-5,12,0,19,8,22v-5,0,-8,5,-1,6v-18,3,10,58,-27,51v-3,-50,1,-118,0,-175v0,0,-19,0,-29,-2r0,-19v11,2,19,-5,29,0v5,-8,-3,-18,-2,-46r22,0xm60,-101v2,-4,9,1,4,3v-1,0,-2,-2,-4,-3xm60,-74v8,-2,7,8,1,2v0,-1,-1,-2,-1,-2xm30,-69v4,-1,2,1,1,3xm59,-36v2,-4,9,1,4,3v-1,0,-3,-2,-4,-3xm30,-197v-1,3,3,4,3,1xm40,-30v2,1,5,5,6,1v-1,-1,-5,-3,-6,-1","w":92},"\u00b0":{"d":"31,-240v24,-8,-16,-31,6,-34v16,-2,13,16,21,23v-5,14,-1,42,-22,39v-5,0,-8,-3,-8,-9v4,-7,13,-2,7,-18xm37,-248v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,2,1,3,2,2v1,1,2,0,2,-2xm15,-212v-16,-11,-17,-61,8,-61v13,6,-9,18,1,23v-4,8,1,23,0,36v-2,1,-5,1,-9,2","w":61},"\u00a2":{"d":"79,-89v0,0,2,1,0,1r0,-1xm59,-236v-4,21,9,26,26,27v1,18,21,18,14,35v2,6,-2,20,0,30v-12,1,-17,3,-25,1v-2,-17,-6,-48,-22,-45r0,-10r0,9v-14,11,-22,25,-14,44v-3,5,-2,4,1,10v-9,23,0,40,-3,60v4,1,6,8,0,9v0,4,4,23,11,20v-1,14,15,9,19,10v-9,1,-13,9,-3,11v2,0,6,-4,5,0v1,4,-5,5,-7,9r14,-1v-3,3,-11,7,-1,6v1,5,-4,6,-6,2v-1,-4,-1,-6,-7,-3v0,7,-1,15,-1,23r-13,0v0,-12,2,-29,-10,-22v-6,0,-12,-6,-17,-18r-2,1r0,-8r9,0v-1,-6,-2,-7,-3,-13v-8,9,-16,2,-15,-11v3,-58,-18,-149,36,-156r0,-20r14,0xm86,-68v4,5,20,-2,12,9v-1,4,-6,6,-2,12v0,-7,-6,-4,-8,0v0,1,0,1,1,2v-4,-2,-10,-2,-12,-6v8,10,24,-8,10,-3v-3,-5,-11,-7,-6,-13v3,3,4,-4,9,-3xm98,-47v-2,2,-3,8,-2,2v0,-2,0,-2,2,-2xm92,-45r0,-1r0,1xm94,-44r-1,0r1,0xm87,-30v2,1,-1,4,-2,5xm70,-33v0,-2,4,-4,5,-3xm68,-204v5,-2,4,-10,-2,-9v-3,3,-3,8,2,9xm94,-63v-3,1,-3,3,-3,7v4,1,10,-5,3,-7xm89,-63v-2,-8,-6,-2,-7,2v2,3,2,-3,7,-2xm94,-54r0,0r0,0xm82,-64v1,-1,1,-1,0,-2r0,2xm85,-56v6,2,9,-4,4,-7v0,5,-8,2,-4,7xm36,-75v-4,2,-4,7,0,9r0,-9xm28,-39v5,-3,5,-5,0,-8v-3,2,-3,6,0,8xm33,-36r-6,0r1,1v-6,0,-14,-1,-8,6","w":108},"\u00a7":{"d":"117,-241v-4,0,-5,-3,0,-2r0,2xm83,-271v0,1,-1,3,-1,1xm97,-261v-3,6,16,19,13,33v-2,10,-27,8,-28,9v-4,-5,-16,-23,-25,-24v2,-10,-6,-26,9,-23v8,0,18,1,31,5xm113,-156v0,2,0,4,-3,3xm68,-198v-1,1,-3,1,-4,0v1,-1,1,-1,4,0xm107,-61v11,2,6,17,10,23v-4,3,-5,29,-18,24v-6,0,-6,3,-4,6v-6,7,-27,23,-34,7v0,-5,-1,-12,2,-6v10,1,39,1,21,-7v-12,-2,-20,8,-23,-2v9,-3,23,-10,21,-22v-6,-40,-31,-31,-56,-63v-22,-27,-26,-55,-6,-78v-27,-29,-13,-93,33,-87r0,26v-31,18,13,65,33,67r-3,2v12,1,21,19,24,33v20,12,5,47,-12,52v1,1,15,20,12,25xm53,-27v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm34,-50v-2,14,41,41,19,55v-22,-6,-59,-17,-47,-51v11,-2,21,-4,28,-4xm42,5v-1,0,-2,2,-2,0r2,0xm13,-8r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm113,-120r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm64,-150v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm74,-101v16,-17,6,-25,-10,-44v2,-1,2,-2,1,-4v-6,0,-13,-3,-21,-8v-16,17,14,45,30,56xm113,-44v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm75,5v1,-4,-2,-4,-2,-1v0,1,1,1,2,1xm50,-2v0,-1,-1,-2,-2,-2v-2,0,-1,4,0,4v1,0,2,-1,2,-2xm38,-3v1,1,2,2,2,-1","w":120},"\u2022":{"d":"58,-97v-14,8,-31,18,-49,3r0,-45v19,-3,36,-3,56,-3r-7,3v1,14,-6,33,0,42xm44,-126v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm53,-104v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm44,-106v2,0,2,0,2,-2xm34,-112v2,0,4,0,3,-2xm34,-101v4,0,7,-6,0,-5r0,5xm29,-88v3,-2,3,-4,0,-6v-3,2,-3,4,0,6xm22,-88v3,-2,3,-4,0,-6v-3,2,-3,4,0,6","w":63},"\u00b6":{"d":"67,-193v1,0,2,5,0,5v-3,0,-2,-5,0,-5xm121,-148v2,-22,0,-27,-2,-51v9,-7,-5,-38,23,-27v4,1,8,3,13,3v0,23,5,57,-9,66v2,0,4,0,7,2r0,150v-6,-3,-5,11,-11,3r-18,-5r0,-139xm78,-171v0,2,4,6,0,5r0,-5xm80,-162v2,0,3,5,0,5v-3,0,-2,-5,0,-5xm80,-151v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm82,-11v4,-10,-7,-41,3,-50v-3,-2,-5,-17,-1,-21r0,-139v9,-1,14,-6,25,-7v0,3,0,6,4,5r0,150v-3,2,-4,2,-6,2v13,8,9,46,8,66v-11,3,-33,10,-33,-6xm11,-144v-8,-10,5,-21,-2,-32v0,-11,1,-33,11,-39v-2,-9,7,-3,9,-11v16,-7,30,4,49,3v4,2,3,15,3,22v-9,-2,-10,-3,-18,0v0,-4,-1,-9,-5,-14v-8,8,1,23,-15,30v-6,27,5,64,30,54v9,-1,7,30,5,36v-12,2,-26,-9,-34,-2v-11,0,-43,-32,-33,-47xm2,-179v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm137,-160v0,1,5,2,5,0v-1,-1,-3,-1,-5,0xm149,-140v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm143,-137v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm42,-223v2,1,6,-1,3,-2v-1,0,-2,1,-3,2xm44,-190v1,-1,3,-2,0,-3r0,3xm40,-177v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm111,-89v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm109,-83v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm104,-89v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm38,-151v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm103,-68v-1,-1,-4,-1,-5,0v2,1,4,1,5,0xm11,-153v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm84,-38v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm83,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":161},"\u00df":{"d":"234,-197v-6,-1,-6,-5,0,-4r0,4xm201,-229v-1,-1,-3,-2,0,-2r0,2xm222,-201v12,22,2,30,-21,30v-4,2,-6,-13,-15,-22r-8,8v-2,-16,-5,-22,-1,-42v15,-1,24,4,37,7v1,3,3,10,8,19xm182,-175v-6,-1,-1,-11,2,-10xm186,-147v-4,0,-5,-4,0,-3r0,3xm201,-133v0,3,-4,4,-4,0v0,-2,4,-1,4,0xm239,-90r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm84,-237v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm234,-86v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm124,-175v-14,7,-29,0,-41,7v1,-11,-9,-30,-22,-32v-2,-7,-9,-33,6,-32v8,0,18,2,31,7v-3,7,11,10,12,25v5,-3,5,-5,12,-3v-6,10,-3,16,-11,10v-3,9,9,13,13,7v0,-14,20,-44,46,-41r0,30v-19,15,-7,21,-2,43r12,-2v-16,27,32,22,36,49v0,3,10,8,14,4v0,6,15,13,0,17v3,18,5,37,-2,52v-16,6,-18,28,-34,34v-14,2,-20,-12,-12,-19v-13,-14,32,-26,13,-48v-3,-17,-24,0,-25,-23v-7,1,-1,-6,-2,-11v-1,1,-3,2,-6,3v2,-5,-14,-24,-20,-22v-7,-20,-17,-24,-18,-55xm156,-95v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm91,-160v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm175,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm150,-88v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm146,-90v-2,4,-7,8,-9,3v0,-3,5,-3,9,-3xm70,-152v-2,2,-4,2,-5,0r5,0xm114,-102v0,2,0,4,-2,3xm153,-64v1,16,13,28,22,34v0,13,4,33,-11,26r-5,4v-16,-14,-45,-27,-35,-60v15,-3,25,-4,29,-4xm85,-120v25,19,44,65,22,93v-3,2,-17,5,-11,13v-5,8,-26,26,-33,8v2,-7,-4,-6,0,-11v1,1,1,2,1,4v10,1,40,0,21,-8v-9,0,-15,1,-20,4v-6,-10,21,-27,18,-37v0,-9,-6,-21,-18,-35v2,-2,2,-3,2,-6v-19,3,-60,-44,-57,-63v-5,-41,4,-72,44,-74r0,31v-33,19,10,75,34,78xm131,-15v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm54,-36v2,0,3,3,0,4v-2,-1,-3,-3,0,-4xm36,-63v-2,15,41,48,18,64v-23,-7,-60,-21,-47,-59v11,-3,22,-4,29,-5xm41,1v1,0,1,0,1,1xm14,-14v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm205,-115v3,0,4,-6,0,-5v-2,1,-1,4,0,5xm229,-89v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm177,-90v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm208,-17v-1,-7,-22,-9,-23,0r23,0xm114,-61r0,-4r0,4xm157,-8v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm65,-96v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm78,-1v0,-1,-1,-2,-2,-2v-2,0,-1,4,0,4v1,0,2,-1,2,-2xm50,-5v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm41,-7v1,-1,1,-2,0,-3v-1,1,-1,2,0,3","w":238},"\u00ae":{"d":"121,-217v3,-1,3,3,3,6v-3,1,-3,-3,-3,-6xm139,-195v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm97,-179r0,2r0,-2xm108,-156v-2,0,-3,-3,0,-2r0,2xm89,-4v-8,-21,21,-34,21,-50r0,-93v5,-15,-2,-44,-10,-52v4,-7,-9,-10,-11,-15r0,-21v12,-2,5,4,5,20v4,-4,11,-21,11,-5v6,-2,4,-13,13,-9v-2,13,-21,5,-15,21v4,0,10,-1,8,5v8,-2,15,0,22,-1v9,21,-6,51,6,64v-9,24,-2,69,-4,101v-9,10,-22,45,-46,35xm108,-118v-1,0,-1,-3,0,-4v1,1,1,3,0,4xm67,-160v-1,-1,-3,-2,0,-2r0,2xm10,-208v-1,-1,-2,-6,0,-7v0,2,2,5,0,7xm65,-184v13,-4,30,-3,29,13r2,-3v9,6,6,22,11,35v-2,9,-25,29,-13,38v3,14,7,33,15,45v-4,2,-15,13,-25,6v0,-12,-9,-39,-12,-54v-5,3,-7,-2,-7,-8r0,-12r15,-4v6,-17,5,-38,-15,-40r0,-16xm38,-154v0,1,0,1,-1,1xm37,-150v0,1,-1,1,-2,1xm106,-75r0,1r0,-1xm42,-185v6,-5,7,2,10,6v3,0,7,-1,11,-5r1,35v9,2,13,6,14,10v-6,0,-7,-1,-16,0v1,17,-2,38,3,52v-8,9,8,47,-23,38v0,-28,6,-69,-5,-90v-2,0,-4,2,-3,-2v10,-7,8,-26,8,-44xm33,-54v8,15,19,27,16,53v-67,-20,-40,-119,-40,-193v0,-10,4,-15,12,-15v-10,-20,23,-10,28,-25r0,24v-22,15,-15,63,-16,102v2,1,4,2,1,4r-1,-1v3,22,-1,34,7,42v-2,3,-2,3,-7,9xm114,-189v6,-4,7,-11,0,-14v-4,4,-4,11,0,14xm111,-199v-1,-7,-5,-8,-13,-9v3,8,9,4,13,9xm104,-201v1,2,2,3,2,-1xm110,-195v0,0,1,4,1,2xm133,-124r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm90,-166r0,-2r0,2xm133,-122v-1,3,1,6,2,3v0,-1,-1,-2,-2,-3xm128,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm97,-147r0,-3r0,3xm127,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm25,-206v5,-6,4,-10,0,-18v-2,1,-7,16,0,18xm46,-179r1,-6v-3,1,-4,5,-1,6xm68,-142v2,0,1,-3,0,-3v-1,0,-2,3,0,3xm30,-179v1,-1,1,-2,0,-3v-2,1,-2,2,0,3xm42,-142v2,0,1,-3,0,-3v-1,0,-2,3,0,3xm85,-91v-1,-1,-1,-4,-2,-2xm50,-125v2,0,1,-3,0,-3v-1,0,-2,3,0,3xm68,-105r0,-3r0,3xm62,-111v1,-2,-2,-3,-2,-1v0,1,1,1,2,1xm81,-88r0,-3r0,3xm62,-104v1,-5,-9,-5,-11,-5v-2,5,10,4,11,5xm20,-140v0,0,3,-1,1,-2xm46,-95r0,-3r0,3xm32,-100v3,0,2,-3,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm34,-66v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm25,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm28,-51v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm113,-195v1,1,1,1,0,2v-1,-1,-1,-1,0,-2","w":143},"\u00a9":{"d":"121,-217v3,-1,3,3,3,6v-3,1,-3,-3,-3,-6xm139,-195v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm84,-185v0,0,0,2,-1,2v0,0,0,-2,1,-2xm72,-181v12,2,27,2,28,15v9,1,-1,19,2,29v-24,15,-12,-18,-30,-28r0,-16xm54,-181v1,1,2,3,0,3r0,-3xm89,-4v-8,-20,21,-34,21,-50r0,-93v5,-15,-2,-44,-10,-52v4,-7,-9,-10,-11,-15r0,-21v10,0,5,4,5,20v4,-4,11,-21,11,-5v6,-2,4,-13,13,-9v-2,13,-21,5,-15,21v4,0,10,-1,8,5v8,-2,15,0,22,-1v9,21,-6,51,6,64v-9,23,-2,69,-4,101v-9,10,-22,45,-46,35xm108,-118v-1,0,-1,-3,0,-4v1,1,1,3,0,4xm10,-208v-1,-1,-2,-6,0,-7v0,2,2,5,0,7xm41,-175r0,2r0,-2xm62,-147r0,3r0,-3xm38,-169v2,1,0,8,-4,8xm105,-93r0,2r0,-2xm63,-130v1,0,1,0,1,1xm102,-89v1,-1,5,-1,2,0r-2,0xm100,-92v1,4,-4,5,-5,3v1,-2,2,-3,5,-3xm101,-86v4,0,1,3,0,1r0,-1xm84,-91v11,-1,12,9,18,12v-2,0,-6,-1,-6,1v11,-1,3,8,5,16v-4,9,-9,-3,-14,-5v7,-4,-3,-9,4,-14v-2,1,-4,1,-7,1r0,-11xm70,-181v-2,15,2,24,8,29r-18,0v0,14,3,20,0,31v0,-2,2,-3,4,-3v-8,15,1,38,-4,51v5,4,18,22,7,31v-10,1,-30,-16,-14,-18v1,-5,-11,-1,-11,-6v-4,-30,7,-72,-9,-90r0,48v2,1,4,2,1,4r-1,-1v3,21,-1,34,7,42v-16,15,18,32,9,62v-67,-20,-40,-119,-40,-193v0,-10,4,-15,12,-15v-4,-7,0,-19,13,-15v9,0,14,-4,15,-10r0,24v-13,10,-17,29,-16,54v10,-7,19,-26,37,-25xm84,-76r0,3r0,-3xm87,-71v0,2,-2,1,-3,1v0,-1,2,-1,3,-1xm92,-60r0,2r0,-2xm95,-55v0,2,0,2,-2,2v0,-1,1,-1,2,-2xm88,-54v0,0,2,1,0,1r0,-1xm79,-58v-1,6,10,6,12,9v-5,7,-13,9,-19,4v-3,-11,2,-21,15,-13v-2,2,-4,0,-8,0xm44,-60v1,0,1,0,1,1xm114,-189v6,-4,7,-11,0,-14v-4,4,-4,11,0,14xm111,-199v-1,-7,-5,-8,-13,-9v3,8,9,4,13,9xm104,-201v1,2,2,3,2,-1xm110,-195v0,0,1,4,1,2xm105,-194r0,-2v-1,1,-1,1,0,2xm133,-124r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm133,-122v-1,3,1,6,2,3v0,-1,0,-2,-2,-3xm128,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm127,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm99,-144r0,-3r0,3xm25,-206v4,-9,4,-9,0,-18v-2,1,-7,16,0,18xm69,-156v-1,0,-2,-2,-2,0r2,0xm70,-153r0,-1r0,1xm67,-152r0,-3r0,3xm30,-179v1,-1,1,-2,0,-3v-2,1,-2,2,0,3xm87,-83r0,-2r0,2xm89,-75v1,0,1,-3,0,-3v-1,0,-2,3,0,3xm20,-140v1,0,1,-1,1,-2xm95,-66r0,-2v-2,0,-1,2,0,2xm91,-67r0,-1r0,1xm32,-100v3,0,2,-3,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm85,-48v0,-1,0,-1,-1,-1xm52,-57v1,-2,-2,-3,-2,-1v0,1,1,1,2,1xm34,-66v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm25,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm28,-51v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm113,-195v1,1,1,1,0,2v-1,-1,-1,-1,0,-2","w":143},"\u2122":{"d":"135,-208v1,1,3,2,0,3v-2,-1,-2,-2,0,-3xm91,-212v1,1,3,2,0,3v-1,-1,-1,-2,0,-3xm133,-197r0,76v-8,8,-16,11,-16,-17r0,-57v2,-3,-1,-21,0,-30v0,0,12,1,16,-2r0,30v-10,2,-5,1,0,0xm93,-194v2,-2,4,0,2,2xm97,-190v1,2,-1,2,-3,2v-1,-2,1,-2,3,-2xm95,-187v0,9,1,8,1,21v9,-8,7,-40,14,-59r6,0v1,41,-4,75,-12,102v-3,5,-6,8,-10,8v-1,-15,-10,-36,-11,-52v-7,1,2,-5,-4,-4v-2,18,3,43,-4,56v-6,-1,-17,3,-14,-6v0,-28,1,-63,2,-104v31,-14,20,23,32,38xm5,-226v11,-2,26,3,32,-3v-1,9,17,-3,21,4v1,14,-4,15,-16,14v1,3,-2,4,-2,1v0,-1,0,-1,1,-1r-36,0r0,-15xm43,-190r0,3v-1,0,-2,0,-2,-1v0,-1,1,-2,2,-2xm82,-139v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm43,-176v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm43,-165v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm38,-209r0,60v5,3,-3,22,0,34v-6,-3,-18,4,-17,-5v2,-29,-4,-65,2,-90xm83,-221r0,0r0,0xm72,-222r0,0r0,0xm69,-223r0,0r0,0xm71,-210r-1,0r1,0xm65,-215r0,1r0,-1xm111,-159v-2,0,-1,4,0,4r0,-4xm65,-199r-1,0r1,0xm66,-196r0,0r0,0xm81,-172v-1,-5,-5,-8,-2,0r2,0xm66,-188r0,0r0,0xm22,-225r0,0r0,0xm20,-225v1,-2,-2,0,0,0r0,0xm14,-225r0,0r0,0xm95,-127r0,0r0,0xm77,-127r0,0r0,0xm73,-117r0,0r0,0xm25,-117r0,0r0,0","w":138},"\u00b4":{"d":"26,-239v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":50},"\u00a8":{"d":"79,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm36,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm60,-249v2,2,4,0,2,-2xm57,-249v2,2,4,0,2,-2xm18,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm15,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":88},"\u00c6":{"d":"181,-240v0,2,0,4,-3,3v0,-2,0,-4,3,-3xm132,-231v12,-4,27,4,40,-3v-3,13,2,17,-5,32r-56,3v0,-14,1,-26,3,-34v2,8,20,-3,18,2xm114,-195v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm112,-166v2,1,3,3,0,4v-2,-1,-3,-3,0,-4xm114,-155v1,1,1,3,0,4v-2,0,-1,-4,0,-4xm112,-148v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm114,-138v13,-2,24,6,34,0v11,2,7,31,-2,34v-14,-7,-34,9,-35,-11v0,-11,1,-19,3,-23xm107,-171r-1,170v-7,1,-15,-2,-25,-1r0,-226v6,-1,14,-2,26,-3v-1,17,2,36,-1,51v-7,0,-3,8,-3,12xm112,-95v2,0,3,3,0,4v-2,-1,-3,-3,0,-4xm112,-78v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm114,-58v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2v1,0,2,1,2,2xm114,-56v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm75,-91v0,3,-3,7,-2,2xm75,-82v4,16,13,19,4,29v-11,2,-29,-7,-30,7r8,0v-19,4,-7,63,-42,44v-2,1,-5,1,-9,2v8,-78,41,-161,59,-234v22,2,2,60,8,69v-2,7,-12,37,-12,47v5,-1,4,-1,8,2v-15,1,-13,26,-11,34r17,0xm172,-36v-6,4,0,9,0,14r-7,22v-18,2,-38,-3,-52,-1r1,1v-4,-4,-2,-26,0,-36v9,8,35,-7,48,3xm99,-182v0,-3,-8,-8,-2,-2xm90,-175v2,0,1,-3,0,-4v-2,0,-3,4,0,4xm121,-133v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm92,-155v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm139,-109v0,2,3,0,1,0r-1,0xm96,-146v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm96,-138v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm90,-144v-2,1,-8,-2,-7,2v2,0,5,0,7,-2xm62,-130v1,-2,2,-3,0,-5v-3,1,-2,4,0,5xm145,-32v2,0,3,-2,0,-2v-3,0,-1,2,0,2xm135,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm159,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm132,-26v1,0,1,-1,1,-2xm147,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm143,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm32,-1v3,0,4,-3,1,-4v-1,1,-3,3,-1,4xm98,-186r-1,2v0,-1,0,-2,1,-2","w":181},"\u00d8":{"d":"114,-195v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm45,-182v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm75,-107v4,0,4,4,1,4v-1,0,-5,-4,-1,-4xm38,-95v14,-31,21,-68,38,-95v-4,-10,-6,-13,-15,-12v2,-5,-5,-20,-2,-33v10,-1,16,1,13,11v2,-4,6,-15,9,-2v2,-9,20,-7,34,-7v-1,9,-11,22,-1,27v-12,1,3,23,0,31v2,10,-13,30,0,35v-6,28,0,68,-2,100v-10,12,-25,49,-53,35v-8,-21,21,-36,21,-51r0,-77v-4,25,-23,47,-25,69v12,4,-8,6,2,10v-11,3,-13,15,-3,25r0,29v-18,-9,-24,-6,-48,-3v-1,-11,4,-12,8,-25v-15,-42,-3,-109,-7,-163v0,-13,4,-19,12,-19v-3,-23,24,-7,29,-25v2,0,4,-1,6,-1r0,30v-25,16,-13,68,-16,111xm65,-78v3,-1,5,4,1,4v-2,0,-3,0,-3,-2v0,-1,0,-2,2,-2xm50,-42v5,0,5,4,1,4v-1,0,-5,-4,-1,-4xm82,-215v-4,1,-5,6,-2,9v1,-3,1,-6,2,-9xm78,-202r0,0r0,0xm107,-138v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm25,-215v-1,1,-2,6,0,7v0,-2,2,-5,0,-7xm109,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm110,-118v0,-4,-4,-5,-3,0r3,0xm103,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm102,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm83,-122v-1,0,-2,4,0,4v1,-1,1,-3,0,-4xm37,-142v0,1,-2,2,0,2r0,-2","w":118},"\u00b1":{"d":"86,-134v10,26,-39,-1,-32,32v3,15,-8,14,-18,16v-1,-11,2,-26,-2,-34v-14,-3,-38,11,-30,-13v1,-2,26,2,32,-4v1,-14,1,-24,1,-29v9,1,15,-2,21,-3v-4,3,-4,3,0,6v-7,6,-5,14,-4,23v-1,-1,-1,-3,-1,0v-1,5,7,7,13,6v2,-2,12,1,20,0xm84,-48v-29,-2,-48,5,-75,0r0,-19v10,2,20,-5,28,0v3,-3,3,-5,4,0r43,0v2,4,3,14,0,19xm53,-116v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm31,-67v1,1,3,1,3,-1v-1,-1,-3,-1,-3,1","w":92},"\u00a5":{"d":"122,-220v-24,44,-20,60,-41,116v-4,-7,-9,-22,-16,-44v5,-18,11,-46,20,-82r36,0v2,2,-10,12,1,10xm63,-179v2,1,3,3,0,4v-2,0,-1,-4,0,-4xm102,-90v-2,3,-4,8,-4,10r-17,0r0,12v9,1,21,-5,18,9r3,0v-2,3,-4,8,-4,10r-19,0v1,13,-3,31,2,40v-10,8,-7,8,-20,9v3,-1,11,-5,4,-5v-10,0,-17,7,-22,3v3,-11,5,-32,2,-46v-4,3,-15,-1,-22,-1r0,-19v10,2,15,-4,23,-2v4,-13,-12,-7,-23,-10r0,-19v10,2,15,-4,22,-2r-12,-35v-18,-53,-27,-85,-27,-94r32,-3v0,9,4,13,8,13v0,11,5,46,13,43v-3,8,0,14,3,18r-3,0v0,18,13,43,18,60v9,2,25,-6,22,9r3,0xm90,-33v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm84,-18v2,-2,3,0,1,1xm25,-232r-3,0v0,2,1,4,2,4v1,0,2,-2,1,-4xm44,-163v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm37,-166v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm30,-159v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm48,-101r1,1xm46,-100r0,1r0,-1xm48,-70r1,1xm46,-69r0,0r0,0","w":126},"\u00b5":{"d":"124,-155v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm113,-233v1,25,-2,58,2,71v-7,33,8,85,-7,111v-8,-6,-29,8,-29,-15r3,-164v16,-1,15,-2,31,-3xm50,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm50,-124v0,0,1,7,-1,3v0,-1,0,-3,1,-3xm108,-44v-1,-1,-3,-2,0,-2r0,2xm113,-40v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm50,-102v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm97,-40v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm44,-53v-8,10,1,15,13,27r0,25v-11,2,-24,-12,-22,6v1,9,2,22,0,30v-4,1,-34,11,-26,-8r-1,-256v20,2,29,-9,36,-1v-5,4,-7,23,3,26r-7,0v1,9,-4,25,4,27v-11,6,4,35,-5,46v3,15,0,22,3,34v-1,0,-2,-1,-2,-3v-1,12,2,30,0,36v1,-2,4,0,5,1v0,1,0,3,-1,3v-2,-1,-5,-5,-5,1v0,5,2,7,5,6xm93,-29v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm46,-66v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm62,-29v4,-1,21,-29,26,-14v3,8,-9,5,-13,9v-1,3,12,1,13,8v-5,-1,-13,2,-6,4r20,0v-1,12,-25,28,-40,20r0,-27xm39,2v2,-4,9,1,4,3v-1,0,-3,-2,-4,-3xm90,-221v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm17,-217v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm13,-220v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm101,-104v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm95,-100v2,-1,2,-3,0,-4v-2,1,-2,3,0,4xm112,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm9,-123r0,-1r0,1xm84,-44v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm24,11v2,-2,0,-4,-3,-4v-1,0,-1,1,-1,2v1,1,3,2,4,2","w":123},"\u03bc":{"d":"124,-155v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm113,-233v1,25,-2,58,2,71v-7,33,8,85,-7,111v-8,-6,-29,8,-29,-15r3,-164v16,-1,15,-2,31,-3xm50,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm50,-124v0,0,1,7,-1,3v0,-1,0,-3,1,-3xm108,-44v-1,-1,-3,-2,0,-2r0,2xm113,-40v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm50,-102v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm97,-40v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm44,-53v-8,10,1,15,13,27r0,25v-11,2,-24,-12,-22,6v1,9,2,22,0,30v-4,1,-34,11,-26,-8r-1,-256v20,2,29,-9,36,-1v-5,4,-7,23,3,26r-7,0v1,9,-4,25,4,27v-11,6,4,35,-5,46v3,15,0,22,3,34v-1,0,-2,-1,-2,-3v-1,12,2,30,0,36v1,-2,4,0,5,1v0,1,0,3,-1,3v-2,-1,-5,-5,-5,1v0,5,2,7,5,6xm93,-29v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm46,-66v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm62,-29v4,-1,21,-29,26,-14v3,8,-9,5,-13,9v-1,3,12,1,13,8v-5,-1,-13,2,-6,4r20,0v-1,12,-25,28,-40,20r0,-27xm39,2v2,-4,9,1,4,3v-1,0,-3,-2,-4,-3xm90,-221v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm17,-217v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm13,-220v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm101,-104v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm95,-100v2,-1,2,-3,0,-4v-2,1,-2,3,0,4xm112,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm9,-123r0,-1r0,1xm84,-44v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm24,11v2,-2,0,-4,-3,-4v-1,0,-1,1,-1,2v1,1,3,2,4,2","w":123},"\u00aa":{"d":"52,-234r0,3r0,-3xm58,-210r0,3r0,-3xm41,-172r0,2r0,-2xm69,-145r0,3r0,-3xm56,-94v0,-11,-4,-39,-8,-29v-6,-1,-27,1,-14,4v-11,3,-6,39,-25,26v-1,0,-3,1,-5,2r23,-139v13,-3,7,33,11,40v1,6,-6,24,-5,29v2,-1,4,-2,5,1v-7,1,-10,16,-2,17v-2,0,-2,1,-1,2v12,-4,11,10,15,11v3,-21,-14,-49,-5,-64v0,-1,-1,-1,-4,-1v-3,-12,-10,-30,-1,-36v3,2,8,1,12,1v2,6,2,13,8,16r-4,0v2,11,-1,30,12,31v-12,8,2,26,0,41v4,14,2,35,12,43v-4,5,-14,6,-24,5xm73,-127r-1,0r1,0xm45,-146v0,1,-1,4,-1,1v0,0,0,-1,1,-1xm38,-229r0,-2r0,2xm46,-184v1,0,2,2,2,0r-2,0xm46,-172r0,-3r0,3xm62,-154r0,-3r0,3xm49,-157v2,0,1,-2,0,-2r0,2xm65,-138r0,-3r0,3xm33,-168v2,-1,0,-5,-1,-2v0,0,0,2,1,2xm65,-133v1,1,1,3,1,0r-1,0xm62,-133v0,-1,0,-1,-1,-1xm19,-92v3,0,2,-4,0,-1r0,1","w":81},"\u00ba":{"d":"58,-222v1,0,1,3,1,4v-2,-2,-2,-1,-1,-4xm68,-209v3,0,-1,5,0,2v0,-1,-1,-2,0,-2xm26,-200v1,0,1,0,1,1xm66,-218v2,33,1,67,1,103v-7,8,-14,27,-32,21v-4,-14,12,-22,13,-31v1,-18,-3,-42,2,-57v-6,-14,-1,-35,-14,-31v3,-2,-3,-11,-1,-19v5,0,9,-1,8,6v3,-8,5,-2,15,-3v-1,8,-4,9,-11,11v0,6,17,7,19,0xm30,-157r0,3r0,-3xm28,-154v1,1,1,2,0,3r0,-3xm33,-215v-17,10,-11,72,-6,85v-10,8,12,19,6,39v-45,-9,-24,-68,-29,-115v0,-8,3,-11,8,-11v-3,-14,14,-4,17,-15v1,0,3,-1,4,-1r0,18xm30,-134r0,3r0,-3xm26,-125r0,3r0,-3xm52,-207v2,-1,0,-3,0,-1r0,1xm47,-213v1,1,1,3,1,0r-1,0xm48,-208v0,-1,0,-1,-1,-1xm65,-174v1,-2,-2,-3,-2,-1v0,1,1,1,2,1xm15,-220r0,3v1,-2,1,-1,0,-3xm65,-166v1,-3,-2,-2,-2,-1v0,1,1,1,2,1xm65,-162v2,0,1,-2,0,-3r0,3xm62,-165r-1,0r1,0xm61,-161v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm50,-165v-1,1,-1,5,0,2r0,-2xm22,-175v0,-1,0,-1,-1,-1xm23,-129r0,-2r0,2","w":71},"\u00e6":{"d":"193,-233v-2,-1,-5,-6,0,-5r0,5xm223,-149v-1,1,-1,3,-2,1xm215,-157v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm120,-235v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm130,-192v-1,1,-2,3,-2,0r2,0xm134,-181v8,1,3,12,-2,15r-2,0v1,-3,2,-8,4,-15xm137,-163v0,3,-1,6,-3,8v1,-3,-2,-9,3,-8xm124,-164v1,-2,2,-3,2,1xm124,-145v1,-1,2,-2,2,1xm151,-87v2,0,5,-1,4,2r-5,0xm144,-83r0,2v-1,-1,-1,-1,0,-2xm138,-87v-19,4,-1,28,-10,39v0,20,36,10,56,11v-2,11,1,25,-6,37v-21,5,-40,-11,-50,0v-1,-8,1,-6,-6,-4v-2,8,-19,-4,-25,2v-11,-10,4,-37,-15,-39r1,-4v-6,-1,-5,11,-10,6v0,0,-8,10,-6,3r-3,2v0,-2,1,-4,1,-7v-15,-4,-21,45,-37,41v-8,-5,-21,6,-20,-5v2,-23,34,-70,18,-93v3,-2,6,-10,8,-24v11,0,16,-7,9,-11v-13,6,-31,2,-19,-11v8,2,15,9,24,5r-8,0v-1,-3,13,-13,12,-13v-3,2,-6,3,-9,-1v0,3,-3,6,-5,6v0,-21,6,-22,18,-12v4,-20,15,-44,22,-70v18,-1,8,24,11,41r3,0v-2,-34,-6,-47,29,-41v-1,10,6,16,1,22v1,0,2,0,4,1r2,-25v19,3,43,1,57,-1v0,14,0,19,-5,34r-54,1v1,-4,-2,-7,-2,-1v0,11,-9,48,10,45v2,1,3,4,0,5v-6,-2,-14,1,-8,12v11,-3,27,0,40,-1v2,6,2,40,-6,35v-12,-1,-24,-9,-33,-1v1,5,13,7,11,16xm141,-61v2,1,1,4,-1,4v-2,-1,-1,-3,1,-4xm135,-54v0,-3,3,0,1,0r-1,0xm30,-120v0,1,-1,2,-3,2xm89,-39v0,16,-4,19,-7,8v0,-6,2,-8,7,-8xm4,-98v2,-6,17,-9,21,-4v-6,0,-8,3,-10,6v-1,-3,-6,-2,-11,-2xm78,-18v1,0,1,0,1,1xm69,-28v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm69,-20v3,0,5,2,3,4v0,0,-1,-2,-3,-4xm122,-160r0,1r0,-1xm126,-124v1,2,1,4,1,0r-1,0xm87,-158v2,-1,3,-4,1,-4v0,1,-1,2,-1,4xm133,-88v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm87,-96v-1,4,5,13,6,4v-5,-7,3,-26,-4,-40v-1,2,-4,1,-3,-1v6,-3,6,-9,-3,-11v-1,3,2,29,-6,18v1,2,9,16,-3,15v0,3,-11,17,-4,22v0,0,2,-1,6,-2v0,1,0,2,1,2v2,-3,7,-6,10,-7xm32,-135v0,-2,0,-2,-2,-2v-1,2,-1,2,2,2xm79,-89v1,1,-4,5,0,4v1,-1,3,-4,1,-5xm80,-56v2,-1,3,-4,1,-5v-2,0,-3,3,-1,5xm58,-48v2,-1,3,-3,1,-4v-2,0,-3,3,-1,4xm90,-131v3,2,-2,8,-2,3v0,-1,1,-2,2,-3xm85,-98v0,2,-5,3,-4,0v0,-1,1,-2,2,-2v1,0,2,1,2,2xm78,-94v2,2,0,3,-2,3v0,-1,1,-3,2,-3","w":190},"\u00f8":{"d":"112,-198v11,14,-3,43,5,60r-1,90v12,2,24,-7,27,-4v0,1,-1,2,-3,4r16,0v-11,3,-17,7,-17,10v1,-1,4,5,4,5r-7,0v2,7,8,3,13,3v0,8,-24,3,-28,2r2,-5r-8,0v-17,20,-29,40,-53,29v-1,-7,2,-18,-2,-22v-2,8,5,30,-6,24v-8,7,-16,-12,-21,-5v-2,0,-18,5,-26,4v-3,-9,8,-15,7,-23r-4,-133r-5,0v0,-3,5,-9,3,-13r-13,9v0,-8,11,-4,13,-14v2,-11,4,-30,16,-29v-2,-19,24,-14,29,-25r5,-1r0,32v-14,9,-5,10,-4,24v0,1,4,4,13,8v-4,-15,22,-23,-1,-28v-5,-4,-4,-25,-4,-36v5,0,14,2,26,5v1,-2,1,-4,1,-6r27,0v-1,8,-11,23,0,27v-3,-1,0,7,-4,8xm-12,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm115,-29v3,0,0,3,0,1r0,-1xm-23,-154v-1,-6,6,-9,9,-5v-2,4,-5,5,-9,5xm-31,-67v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm111,-205v-1,1,-5,3,-1,3xm49,-181v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm110,-118v1,2,2,4,2,0r-2,0xm62,-166v0,-1,-1,-2,-2,-2v-5,5,8,9,2,2xm106,-118v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm63,-159r-11,0v0,-7,-1,-11,-3,-13v-5,7,-7,30,-7,71xm60,-37v21,11,22,-12,23,-44v0,-16,1,-37,1,-62v-5,29,-20,52,-28,79v12,2,-7,8,3,10v-13,3,-8,12,1,17xm58,-31v2,0,3,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm61,-163v0,-1,1,-1,1,-2v0,1,-1,1,-1,2xm76,-107v4,0,4,4,1,4v-1,0,-5,-4,-1,-4xm66,-78v3,-1,5,4,2,4v-3,1,-6,-3,-2,-4"},"\u00bf":{"d":"13,1v0,-2,0,-2,2,-2v0,2,0,2,-2,2xm28,1v-14,-9,-34,-31,-21,-53v-2,-2,-5,-3,-5,-7v17,-17,41,-52,36,-84r-4,-2v7,-15,12,-7,23,-11v2,8,12,10,5,21v1,45,-21,63,-30,93v0,3,9,18,13,17v7,3,20,-22,24,-21v14,0,21,4,21,12v3,7,-28,18,-7,16v-15,17,-21,18,-55,19xm24,-185v1,-2,7,-1,5,0r-5,0xm43,-221v8,1,18,4,23,-1v-1,8,-1,20,-2,35v-10,0,-23,4,-30,0r0,-30v7,1,22,-1,9,-4xm47,-12v-2,0,-3,3,0,4v2,-1,3,-3,0,-4xm67,-21v-7,0,-4,9,-5,15v3,-4,5,-9,5,-15xm79,-33v-2,0,-3,4,0,4v2,0,1,-4,0,-4xm45,-156v-2,0,-3,3,0,4v2,-1,1,-3,0,-4","w":92},"\u00a1":{"d":"3,-1v0,-2,0,-2,2,-2v0,2,0,2,-2,2xm12,-1v0,-1,1,-2,2,-2v2,0,1,4,0,4v-1,0,-2,-1,-2,-2xm12,-81v0,-2,0,-2,2,-2v0,2,0,2,-2,2xm11,-20v0,-28,10,-49,3,-72v8,-14,-1,-34,6,-47v-7,-11,7,-21,16,-18v1,1,2,3,5,6v-1,48,7,104,2,148v-9,0,-37,3,-32,-17xm9,-120v0,3,-3,0,-1,0r1,0xm11,-187v4,-18,-5,-31,15,-36r-2,1v3,6,13,3,19,1r0,32v-15,2,-22,2,-32,2xm37,-223v0,1,-4,2,-4,0v1,-1,3,-1,4,0xm43,-43v-1,1,-1,1,0,2v1,-1,1,-1,0,-2xm31,-158v-3,1,-2,4,0,5v1,-1,2,-4,0,-5xm39,-151v-2,0,-3,3,0,4v2,-1,1,-3,0,-4xm35,-158v-3,1,-2,4,0,5v1,-1,2,-4,0,-5","w":48},"\u00ac":{"d":"138,-57v4,-1,8,3,4,4v-1,0,-5,-1,-4,-4xm108,-92v-37,-2,-69,3,-102,1r0,-27r131,0v0,5,6,16,6,20v-1,1,-3,-3,-3,-1v-2,4,-8,10,-1,12v-1,-1,0,-1,2,-1v3,0,8,4,1,4v-6,0,-5,5,0,6v-16,5,2,37,-32,30v-5,-11,-1,-27,-2,-44xm119,-50v1,2,7,-1,2,-1v-1,0,-2,0,-2,1xm29,-116v2,-2,2,-4,-1,-3","w":144},"\u0192":{"d":"41,-217v1,4,-1,8,-3,4xm23,-195v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm59,-211v-8,-6,-18,-2,-18,-17v6,-1,14,-4,16,2v0,-4,2,-9,5,-6v1,3,1,7,3,8v-3,-11,4,-12,14,-11v2,13,-4,28,-3,33v-18,-6,-13,26,-22,51v4,2,3,8,3,14v20,-6,28,10,20,26r-20,0r-1,116v2,16,-10,16,-11,23v0,17,-28,2,-29,21r-7,0r0,-29v28,-18,12,-84,16,-129r-19,-2r0,-26v41,4,7,-43,22,-68r0,-6v1,12,12,3,22,7v6,0,9,-3,9,-7xm57,-199v1,-1,4,-4,0,-3r0,3xm58,-194v2,-1,0,-1,-1,-2xm50,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm54,-118v1,0,1,-3,0,-4v-1,1,-1,3,0,4xm30,-136v0,-2,2,-5,0,-6v-3,1,-2,4,0,6xm34,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm30,-124r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm34,-118v1,2,2,3,2,-1xm27,-118v3,1,3,-1,3,-4v-2,1,-3,2,-3,4xm32,-35v0,3,3,0,1,0r-1,0xm24,-5v2,-1,2,-1,0,-2r0,2xm44,25v1,-1,1,-2,0,-3v-1,1,0,2,0,3xm29,-139v1,0,3,0,1,1","w":87},"\u00ab":{"d":"57,-112v7,23,57,34,44,64v-11,-1,-44,-37,-57,-49v-1,-1,-2,-8,-2,-21v23,-20,31,-34,60,-55v8,33,-27,40,-45,61xm17,-112v7,23,58,33,45,64v-11,-1,-44,-37,-57,-49v-1,-5,-6,-26,7,-31v19,-16,25,-27,50,-45v9,33,-29,42,-45,61xm87,-56r0,2r0,-2xm47,-56v2,1,-1,3,0,1v0,0,-1,-1,0,-1xm66,-127v2,-1,1,-3,0,-4r0,4xm69,-124r0,-4r0,4xm65,-124v0,-1,2,-2,0,-2r0,2xm63,-124r0,-3r0,3xm66,-121r0,-3r0,3xm58,-126v-2,-1,-2,1,-1,1v0,0,1,0,1,-1xm87,-82v-1,2,1,5,1,1xm47,-119r0,-3r0,3xm63,-100v0,-1,-1,-3,-1,-1xm54,-107r0,-4r0,4xm45,-119v0,1,-2,3,0,4r0,-4xm102,-59r0,-3r0,3xm47,-112r0,-3r0,3xm50,-107r0,-4r0,4xm27,-127v2,-1,1,-3,0,-4v-1,0,-1,4,0,4xm29,-124r0,-4r0,4xm43,-110v0,2,1,2,1,0r0,-2v0,0,-1,1,-1,2xm25,-124v0,-1,2,-2,0,-2r0,2xm45,-109v-1,1,-2,2,-2,4xm24,-124r0,-3r0,3xm26,-121r0,-3r0,3xm44,-102r0,-3r0,3xm19,-126v-2,-1,-2,1,-1,1v0,0,1,0,1,-1xm48,-79v2,-1,0,-3,-1,-3v0,1,0,3,1,3xm7,-119r0,-3r0,3xm23,-100r0,-2v-1,1,-1,1,0,2xm14,-107r0,-4r0,4xm5,-119r0,4r0,-4xm61,-60v2,3,2,-2,2,-2v-2,0,-2,0,-2,2xm7,-112r0,-3r0,3xm10,-107r0,-4r0,4xm4,-108v0,-1,2,-3,0,-4r0,4xm4,-105r0,-2r0,2xm4,-102v2,0,1,-2,1,-3v-2,0,-1,2,-1,3","w":107},"\u00bb":{"d":"86,-136r0,-3v2,0,1,3,0,3xm69,-151v9,12,27,23,43,34v-5,9,1,16,-8,26v-7,-4,-36,28,-57,42r3,-23v14,-13,33,-22,45,-37v-3,1,-15,-17,-35,-23v2,-2,-8,-13,-11,-12r0,-20v5,-1,18,17,24,11v-1,0,-2,1,-4,2xm41,-136r0,-3v2,0,1,3,0,3xm24,-151v10,12,26,23,44,34v-6,8,0,16,-9,26v-7,-4,-36,28,-57,42r3,-23v14,-13,33,-22,45,-37v-3,1,-15,-17,-35,-23v2,-2,-8,-13,-11,-12r0,-20v5,-1,18,17,24,11v-1,0,-2,1,-4,2xm110,-114r0,-3v-1,0,-2,3,0,3xm65,-114r0,-3v-1,0,-2,3,0,3","w":114},"\u2026":{"d":"120,-26v-8,11,1,36,-26,23r0,-21v9,-2,16,-2,26,-2xm78,-26v-10,8,2,37,-26,23r0,-21v9,-2,16,-2,26,-2xm36,-26v-9,8,1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm103,0v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm100,0v1,-1,1,-2,0,-3v-2,1,-2,2,0,3xm61,0v1,-1,1,-2,0,-3v-2,1,-2,2,0,3xm57,0v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm18,0v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm15,0v1,-1,3,-2,0,-3v-1,1,-1,2,0,3"},"\u00a0":{"w":61},"\u00c0":{"d":"86,-237v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm97,-197v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm69,-135v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-89v1,2,2,3,0,5v-2,-2,-1,-3,0,-5xm62,-166v8,8,-9,39,-6,49v5,-1,4,-1,8,2v-11,2,-17,26,-5,29v-2,1,-2,2,-1,4r17,0v2,5,7,28,9,14v3,-31,-24,-82,-9,-103v0,-2,-2,-3,-6,-2v-4,-21,-20,-50,-3,-60v3,5,13,2,20,3v1,5,8,12,7,22r8,4r-8,0v2,15,3,31,6,47r14,4v-12,-1,-13,18,-2,22v-3,30,2,62,13,90v-6,8,0,27,9,28v-4,0,-7,2,-7,8r-33,0v1,-16,-7,-43,-9,-55v-2,15,-32,-2,-35,14r8,0v-19,4,-7,63,-42,44v-2,1,-5,1,-9,2v0,-6,5,-33,9,-56r31,-175v17,-3,15,53,16,65xm121,-58v0,-1,-2,-2,0,-2r0,2xm75,-91v0,3,-3,7,-2,2xm64,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm77,-155v1,1,2,3,2,0r-2,0xm77,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-104v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm82,-109v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm108,-78v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm108,-69v1,1,4,5,3,0r-3,0xm102,-70v3,0,0,-3,0,-1r0,1xm32,-1v3,0,4,-3,1,-4v-1,1,-3,3,-1,4xm81,-257v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm78,-242v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm53,-259v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm59,-240v2,1,4,-2,2,-2v-1,0,-2,1,-2,2","w":136,"k":{"y":42,"x":4,"w":35,"v":42,"u":12,"t":39,"s":11,"r":5,"q":14,"p":7,"o":16,"n":9,"m":9,"l":7,"k":5,"i":5,"g":12,"f":5,"e":7,"d":11,"c":14,"b":5,"a":9,"Y":37,"X":4,"W":28,"V":33,"U":9,"T":35,"S":4,"Q":7,"O":9,"L":4,"J":4,"I":4,"H":4,"G":7,"F":2,"E":4,"C":9,"B":7,"A":4}},"\u00c3":{"d":"86,-237v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm97,-197v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm69,-135v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-89v1,2,2,3,0,5v-2,-2,-1,-3,0,-5xm62,-166v8,8,-9,39,-6,49v5,-1,4,-1,8,2v-11,2,-17,26,-5,29v-2,1,-2,2,-1,4r17,0v2,5,7,28,9,14v3,-31,-24,-82,-9,-103v0,-2,-2,-3,-6,-2v-4,-21,-20,-50,-3,-60v3,5,13,2,20,3v1,5,8,12,7,22r8,4r-8,0v2,15,3,31,6,47r14,4v-12,-1,-13,18,-2,22v-3,30,2,62,13,90v-6,8,0,27,9,28v-4,0,-7,2,-7,8r-33,0v1,-16,-7,-43,-9,-55v-2,15,-32,-2,-35,14r8,0v-19,4,-7,63,-42,44v-2,1,-5,1,-9,2v0,-6,5,-33,9,-56r31,-175v17,-3,15,53,16,65xm121,-58v0,-1,-2,-2,0,-2r0,2xm75,-91v0,3,-3,7,-2,2xm64,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm77,-155v1,1,2,3,2,0r-2,0xm77,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-104v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm82,-109v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm108,-78v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm108,-69v1,1,4,5,3,0r-3,0xm102,-70v3,0,0,-3,0,-1r0,1xm32,-1v3,0,4,-3,1,-4v-1,1,-3,3,-1,4xm99,-274v6,1,9,2,10,8v-5,4,-13,18,-16,23v-34,7,-44,-33,-64,4v-15,-10,6,-41,19,-38v14,3,9,6,33,17v8,-4,8,-1,18,-14xm57,-272r0,-3v-1,1,-1,2,0,3","w":136,"k":{"y":42,"x":4,"w":35,"v":42,"u":12,"t":39,"s":11,"r":5,"q":14,"p":7,"o":16,"n":9,"m":9,"l":7,"k":5,"i":5,"g":12,"f":5,"e":7,"d":11,"c":14,"b":5,"a":9,"Y":37,"X":4,"W":28,"V":33,"U":9,"T":35,"S":4,"Q":7,"O":9,"L":4,"J":4,"I":4,"H":4,"G":7,"F":2,"E":4,"C":9,"B":7,"A":4}},"\u00d5":{"d":"98,-211v-2,1,-2,-4,-2,-6v2,1,4,4,2,6xm114,-195v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm45,-182v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm109,-211v2,21,7,45,0,65v-1,4,8,5,3,8r0,98v-10,12,-25,49,-53,35v-8,-21,21,-36,21,-51r0,-92r3,-3v-7,-26,-3,-57,-22,-51v2,-5,-5,-20,-2,-33v10,-1,16,1,13,11v2,-4,6,-15,9,-2v1,-7,9,-2,15,-2v0,1,-5,11,-4,15v-4,-3,-13,-3,-14,2v1,9,29,11,31,0xm50,-109v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm49,-102v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm45,-64v-15,7,6,27,9,35r0,29v-74,-15,-47,-114,-47,-191v0,-13,4,-19,12,-19v-3,-23,24,-7,29,-25v2,0,4,-1,6,-1r0,30v-27,14,-18,113,-9,142xm50,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm43,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm87,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm78,-202v1,1,4,5,3,0r-3,0xm79,-194v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm107,-138v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm25,-215v-1,1,-2,6,0,7v0,-2,2,-5,0,-7xm109,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm110,-118v0,-4,-4,-5,-3,0r3,0xm103,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm102,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm83,-122v-1,0,-2,4,0,4v1,-1,1,-3,0,-4xm37,-142v0,1,-2,2,0,2r0,-2xm40,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm92,-274v6,1,9,2,10,8v-5,4,-13,18,-16,23v-34,7,-44,-33,-64,4v-15,-10,6,-41,19,-38v14,3,9,6,33,17v8,-4,8,-1,18,-14xm50,-272r0,-3v-1,1,-1,2,0,3","w":118,"k":{"y":5,"v":4,"Y":5,"X":11,"W":4,"V":5,"J":4,"A":5}},"\u0152":{"d":"181,-240v0,2,0,4,-3,3v0,-2,0,-4,3,-3xm132,-231v12,-4,27,4,40,-3v-3,13,2,17,-5,32r-56,3v0,-14,1,-26,3,-34v2,8,20,-3,18,2xm114,-195v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm114,-155v1,1,1,3,0,4v-2,0,-1,-4,0,-4xm112,-148v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm45,-182v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm114,-138v13,-2,24,6,34,0v11,2,7,31,-2,34v-12,0,-20,-6,-31,0v-2,-1,-3,-3,-3,-6v2,39,-2,71,-6,109v-7,1,-15,-2,-25,-1r0,-3v-9,5,-11,3,-22,0v-8,-21,21,-36,21,-51v0,-43,15,-140,-19,-146v2,-5,-5,-20,-2,-33v10,-1,16,1,13,11v3,-3,5,-15,9,-4v7,-4,14,1,26,-3r0,25v2,-3,2,-6,2,1v5,18,5,44,0,59v4,5,4,9,3,21v0,-6,1,-10,2,-13xm114,-56v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm172,-36v-6,4,0,9,0,14r-7,22v-18,2,-38,-3,-52,-1r1,1v-4,-4,-2,-26,0,-36v9,8,35,-7,48,3xm50,-109v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm49,-102v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm45,-64v-15,7,6,27,9,35r0,29v-74,-15,-47,-114,-47,-191v0,-13,4,-19,12,-19v-3,-23,24,-7,29,-25v2,0,4,-1,6,-1r0,30v-27,14,-18,113,-9,142xm50,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm43,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm81,-215v-3,2,-4,7,0,10r0,-10xm78,-202v1,1,4,5,3,0r-3,0xm79,-194v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm121,-133v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm139,-109v0,2,3,0,1,0r-1,0xm107,-138v2,0,3,-4,0,-4r0,4xm25,-215v-1,1,-2,6,0,7v0,-2,2,-5,0,-7xm109,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm110,-118v0,-4,-4,-5,-3,0r3,0xm145,-32v2,0,3,-2,0,-2v-3,0,-1,2,0,2xm37,-142v0,1,-2,2,0,2r0,-2xm135,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm159,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm132,-26v1,0,1,-1,1,-2xm147,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm143,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm40,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2","w":177},"\u0153":{"d":"185,-233v-2,-1,-5,-6,0,-5r0,5xm214,-149v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm119,-231v15,3,44,1,58,-1v0,14,0,19,-5,34r-55,1xm206,-157v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm121,-192v-1,1,-2,3,-2,0r2,0xm126,-181v7,2,2,12,-2,15r-3,0v1,-3,3,-8,5,-15xm129,-163v0,3,-1,6,-3,8v1,-3,-2,-9,3,-8xm126,-153v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm119,-155v2,1,2,3,0,5r0,-5xm117,-146v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm71,-179v3,1,1,6,-1,3v0,-1,0,-2,1,-3xm159,-123v2,38,-21,10,-41,19r0,-20v-3,5,0,17,-2,29v0,-2,1,-3,1,-3v0,10,2,32,0,39v-1,-1,-1,-5,-1,-13r0,24v12,2,24,-7,27,-4v0,1,-1,2,-3,4r16,0v-11,3,-17,7,-17,10v8,0,28,4,37,1v-2,9,0,30,-7,37v-21,5,-40,-11,-50,0v-2,-9,2,-34,-5,-31v1,17,2,40,-16,26v-10,3,-27,7,-36,1r0,-21v-7,3,5,30,-8,23v-14,4,-22,-13,-40,-24r-4,-133r-5,0v0,-3,5,-9,3,-13r-13,9v0,-8,11,-4,13,-14v2,-11,4,-30,16,-29v-2,-19,24,-14,29,-25r5,-1r0,32v-7,5,-14,13,-4,15r0,7v4,-4,9,-6,14,-6v0,4,-12,13,-2,15v8,6,14,-3,14,-12v0,-14,-13,-8,-18,-24r0,-27v7,2,41,6,51,3v-1,28,5,43,3,64v1,-2,1,0,2,1v-9,8,0,20,-2,30v8,-7,28,-1,42,-3v1,1,1,6,1,14xm121,-54v-1,1,-2,3,-2,0r2,0xm-12,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm115,-29v3,0,0,3,0,1r0,-1xm-23,-154v-1,-6,6,-9,9,-5v-2,4,-5,5,-9,5xm-31,-67v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm86,-202r0,-7v-7,0,-2,5,0,7xm84,-189v2,-1,0,-3,0,-5v-3,0,-2,5,0,5xm81,-162v-3,0,-4,2,-5,5v1,-3,5,0,5,-5xm49,-181v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm61,-163v2,0,4,-2,1,-3xm61,-163v1,-2,2,-5,-1,-5v-1,1,-2,6,1,5xm47,-159v6,-1,6,-10,2,-13v-1,2,-6,11,-2,13xm68,-65v-1,-10,5,-10,15,-11v-1,-20,5,-45,-3,-59v5,-7,-12,-11,-10,-20v-6,5,-18,-5,-16,5v-3,1,-10,-5,-10,-2v-1,15,-6,73,5,89v0,4,-8,12,0,11v-5,5,2,7,8,11v-1,-8,9,-12,12,-20v6,16,-18,24,-1,28v19,-5,1,-22,10,-39v-2,0,-8,8,-10,7xm82,-57v-1,1,-1,1,0,2r0,-2xm80,-48v1,-1,4,-4,0,-4r0,4xm58,-31v2,0,3,-3,0,-4v-2,0,-2,1,-2,2v0,1,1,2,2,2xm78,-87v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm54,-107v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm71,-83v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm51,-102v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm58,-87v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm56,-83v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm65,-63v-5,-1,-4,-7,-2,-11xm56,-72v-1,-1,-3,-2,0,-2r0,2xm54,-70v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm67,-41v2,1,3,3,0,4v-2,0,-3,-3,0,-4","w":185},"\u2013":{"d":"63,-118v-21,-1,-32,3,-54,0r0,-19v12,2,19,-6,28,0v4,-5,15,3,26,0v2,4,2,14,0,19xm31,-138v1,2,3,2,3,-1","w":71},"\u2014":{"d":"112,-118r-103,0r0,-19v12,2,19,-6,28,0v3,-3,3,-5,4,0r71,0v2,4,2,14,0,19xm31,-138v1,2,3,2,3,-1","w":120},"\u201c":{"d":"54,-237v2,9,-12,24,0,28r0,20v-10,-1,-23,4,-20,-10v0,-17,3,-35,20,-38xm25,-237v0,10,-12,24,0,28r0,20v-16,2,-25,1,-21,-21v7,-9,5,-27,21,-27xm33,-185v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm2,-184v2,-2,4,0,2,2","w":58},"\u201d":{"d":"53,-237v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm24,-237v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm32,-182v0,-10,12,-24,0,-28r0,-20v16,-2,25,-1,21,21v-8,9,-4,26,-21,27xm2,-182v0,-10,12,-23,1,-28r0,-20v10,1,23,-4,20,10v0,17,-3,35,-21,38","w":58},"\u2018":{"d":"25,-238v-1,10,-12,23,0,28r0,19v-16,2,-25,1,-21,-21v7,-9,5,-26,21,-26xm4,-187v1,1,1,2,0,3v-2,-1,-2,-2,0,-3","w":24},"\u2019":{"d":"24,-238v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm2,-184v8,-17,1,-25,1,-47v10,1,23,-4,20,10v0,17,-3,34,-21,37","w":24},"\u00f7":{"d":"62,-177v-6,11,-2,38,-26,23r0,-21v9,-2,16,-2,26,-2xm84,-118v-28,-1,-48,3,-75,0r0,-19v12,2,19,-6,28,0v3,-3,3,-5,4,0r43,0v2,4,2,14,0,19xm62,-104v-6,10,-1,38,-26,23r0,-21v9,-2,16,-2,26,-2xm45,-151v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm40,-152v2,2,4,0,2,-2xm31,-138v1,2,3,2,3,-1xm45,-78v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm40,-79v2,2,4,0,2,-2","w":92},"\u00ff":{"d":"64,-176v-1,1,-2,3,-2,0r2,0xm44,-218v3,29,14,51,18,74v7,-17,14,-45,22,-84r35,0v-1,2,-3,9,0,15r-3,0v-18,27,-23,93,-39,112v9,18,-5,65,2,89v0,8,-12,16,-20,10v3,0,6,-1,5,-5r-22,6v3,-26,2,-57,2,-86v-14,-2,-38,-4,-41,-13v10,-11,7,-15,15,-4r2,-16v-6,0,-9,-2,-9,-5r22,0v-4,-38,-24,-67,-28,-103v6,-5,22,-3,33,-3v0,9,2,14,6,13xm39,-86v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm89,-34v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm29,-85v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm86,-17v-5,0,-6,-4,0,-3r0,3xm64,-142v0,7,0,11,4,18v0,-8,0,-10,-4,-18xm72,-122v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm75,-107v1,-4,-1,-9,-3,-6v0,2,2,4,3,6xm36,-107v5,-2,2,-16,-7,-13v4,3,7,7,7,13xm40,-102v0,-2,-3,-1,-4,-1v0,2,2,2,4,1xm22,-111v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm96,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm53,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm77,-249v2,2,4,0,2,-2xm74,-249v2,2,4,0,2,-2xm35,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm32,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","k":{"z":9,"x":5,"u":2,"s":14,"q":12,"p":4,"o":16,"n":4,"m":9,"l":4,"k":4,"j":32,"g":16,"f":4,"d":9,"c":12,"a":35}},"\u0178":{"d":"122,-220v-24,44,-20,60,-41,116v-4,-7,-9,-22,-16,-44v5,-18,11,-46,20,-82r36,0v2,2,-10,12,1,10xm25,-232v-3,0,-1,-1,-1,-1xm63,-179v2,1,3,3,0,4v-2,0,-1,-4,0,-4xm59,-159v1,33,31,64,20,104v1,15,-3,35,2,46v-10,8,-7,8,-20,9v3,-1,11,-5,4,-5v-10,0,-17,7,-22,3v6,-26,2,-66,3,-98v-7,-18,-46,-134,-40,-130v8,1,16,-5,18,2v1,-4,7,-6,14,-5v0,9,4,13,8,13v0,11,5,46,13,43v-3,8,0,14,3,18r-3,0xm90,-33v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm84,-18v2,-2,3,0,1,1xm44,-163v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm37,-166v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm30,-159v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm96,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm53,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm77,-249v2,2,4,0,2,-2xm74,-249v2,2,4,0,2,-2xm35,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm32,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":126,"k":{"s":12,"o":18,"S":5,"Q":9,"O":7,"J":30,"G":7,"C":11,"B":2,"A":30}},"\u00a4":{"d":"102,-237v1,2,-1,2,-3,2v-1,-2,1,-2,3,-2xm82,-231v8,-1,31,7,37,7v4,7,5,18,15,19r-2,47v-11,-1,-21,9,-24,6v0,-5,-14,-30,-16,-44v-11,-2,-11,-18,-10,-35xm51,-231v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm30,-222v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm112,-133v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm64,-174v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm25,-211v0,5,0,11,-6,13xm136,-85v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm6,-211v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm68,-147v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm132,-78v0,-2,3,-1,4,-1v0,2,-3,1,-4,1xm14,-196v2,1,4,2,0,2r0,-2xm128,-83v1,7,-6,9,-9,5v2,-3,5,-5,9,-5xm130,-74v5,5,-1,1,-1,1xm8,-192v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm1,-185v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm-1,-185v-1,4,-7,6,-9,3v0,-3,5,-3,9,-3xm77,-198v0,6,15,8,14,15r-29,0v-1,22,4,27,0,46v21,3,54,-7,45,15r-45,0v2,6,4,8,1,16v12,0,22,-1,31,3v2,15,-6,17,-31,15v3,6,0,24,-1,37v-1,3,17,17,15,20v-2,11,7,36,-9,29v-17,5,-41,-29,-19,-29v-1,-4,-3,-5,-7,-3v-21,0,-7,-31,-11,-55r-30,0r0,-14v13,1,17,-1,30,-2r-1,-16v-2,1,-4,1,-5,1r2,-2r-10,0v0,-6,0,-11,-2,-15v8,0,9,1,15,0v1,-20,-2,-35,-7,-48v-11,-4,-3,-5,6,-17v14,-20,31,-29,48,-29r0,33xm114,-81v-3,11,17,12,17,19v-4,1,-11,-2,-10,3r11,0v0,6,1,13,-5,13v9,13,-5,30,-11,11v-7,-2,-12,-8,-4,-13v-8,-3,-2,-12,0,-17v-3,1,-6,1,-10,2r0,-18r12,0xm102,-57v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm106,-48v1,3,-2,2,-4,2v0,-2,2,-2,4,-2xm114,-31v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm19,-119v0,1,0,1,-1,1xm119,-22v0,3,1,6,-3,5v0,-2,1,-4,3,-5xm108,-20v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm93,-26v-5,8,17,9,19,15v-4,10,-22,16,-30,7v2,-13,-7,-30,13,-27v2,1,16,3,9,7v-2,0,-6,-2,-11,-2xm36,-31v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm126,-170v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm75,-189v-1,-2,-2,-4,-2,0r2,0xm78,-184v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm73,-183v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm95,-132v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm86,-126r0,-2v-1,1,-1,1,0,2xm72,-125v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm106,-67v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm110,-54v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm119,-39v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm114,-41v-1,-1,-2,-3,-2,0r2,0xm26,-126v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm19,-126v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm102,-10v3,0,0,-3,0,-1r0,1xm47,-24v2,0,3,-3,0,-4v-2,1,-3,3,0,4","w":138},"\u20ac":{"d":"102,-237v1,2,-1,2,-3,2v-1,-2,1,-2,3,-2xm82,-231v8,-1,31,7,37,7v4,7,5,18,15,19r-2,47v-11,-1,-21,9,-24,6v0,-5,-14,-30,-16,-44v-11,-2,-11,-18,-10,-35xm51,-231v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm30,-222v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm112,-133v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm64,-174v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm25,-211v0,5,0,11,-6,13xm136,-85v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm6,-211v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm68,-147v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm132,-78v0,-2,3,-1,4,-1v0,2,-3,1,-4,1xm14,-196v2,1,4,2,0,2r0,-2xm128,-83v1,7,-6,9,-9,5v2,-3,5,-5,9,-5xm130,-74v5,5,-1,1,-1,1xm8,-192v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm1,-185v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm-1,-185v-1,4,-7,6,-9,3v0,-3,5,-3,9,-3xm77,-198v0,6,15,8,14,15r-29,0v-1,22,4,27,0,46v21,3,54,-7,45,15r-45,0v2,6,4,8,1,16v12,0,22,-1,31,3v2,15,-6,17,-31,15v3,6,0,24,-1,37v-1,3,17,17,15,20v-2,11,7,36,-9,29v-17,5,-41,-29,-19,-29v-1,-4,-3,-5,-7,-3v-21,0,-7,-31,-11,-55r-30,0r0,-14v13,1,17,-1,30,-2r-1,-16v-2,1,-4,1,-5,1r2,-2r-10,0v0,-6,0,-11,-2,-15v8,0,9,1,15,0v1,-20,-2,-35,-7,-48v-11,-4,-3,-5,6,-17v14,-20,31,-29,48,-29r0,33xm114,-81v-3,11,17,12,17,19v-4,1,-11,-2,-10,3r11,0v0,6,1,13,-5,13v9,13,-5,30,-11,11v-7,-2,-12,-8,-4,-13v-8,-3,-2,-12,0,-17v-3,1,-6,1,-10,2r0,-18r12,0xm102,-57v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm106,-48v1,3,-2,2,-4,2v0,-2,2,-2,4,-2xm114,-31v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm19,-119v0,1,0,1,-1,1xm119,-22v0,3,1,6,-3,5v0,-2,1,-4,3,-5xm108,-20v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm93,-26v-5,8,17,9,19,15v-4,10,-22,16,-30,7v2,-13,-7,-30,13,-27v2,1,16,3,9,7v-2,0,-6,-2,-11,-2xm36,-31v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm126,-170v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm75,-189v-1,-2,-2,-4,-2,0r2,0xm78,-184v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm73,-183v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm95,-132v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm86,-126r0,-2v-1,1,-1,1,0,2xm72,-125v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm106,-67v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm110,-54v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm119,-39v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm114,-41v-1,-1,-2,-3,-2,0r2,0xm26,-126v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm19,-126v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm102,-10v3,0,0,-3,0,-1r0,1xm47,-24v2,0,3,-3,0,-4v-2,1,-3,3,0,4","w":138},"\u2039":{"d":"17,-112v7,23,58,33,45,64v-11,-1,-44,-37,-57,-49v-1,-5,-6,-26,7,-31v19,-16,25,-27,50,-45v9,33,-29,42,-45,61xm47,-56v2,1,-1,3,0,1v0,0,-1,-1,0,-1xm27,-127v2,-1,1,-3,0,-4v-1,0,-1,4,0,4xm29,-124r0,-4r0,4xm25,-124v0,-1,2,-2,0,-2r0,2xm24,-124r0,-3r0,3xm26,-121r0,-3r0,3xm19,-126v-2,-1,-2,1,-1,1v0,0,1,0,1,-1xm48,-79v2,-1,0,-3,-1,-3v0,1,0,3,1,3xm7,-119r0,-3r0,3xm23,-100r0,-2v-1,1,-1,1,0,2xm14,-107r0,-4r0,4xm5,-119r0,4r0,-4xm61,-60v2,3,2,-2,2,-2v-2,0,-2,0,-2,2xm7,-112r0,-3r0,3xm10,-107r0,-4r0,4xm4,-108v0,-1,2,-3,0,-4r0,4xm4,-105r0,-2r0,2xm4,-102v2,0,1,-2,1,-3v-2,0,-1,2,-1,3","w":66},"\u203a":{"d":"41,-136r0,-3v2,0,1,3,0,3xm24,-151v10,12,26,23,44,34v-6,8,0,16,-9,26v-7,-4,-36,28,-57,42r3,-23v14,-13,33,-22,45,-37v-3,1,-15,-17,-35,-23v2,-2,-8,-13,-11,-12r0,-20v5,-1,18,17,24,11v-1,0,-2,1,-4,2xm65,-114r0,-3v-1,0,-2,3,0,3","w":67},"\u2021":{"d":"63,-160v-2,9,-9,1,-6,18v4,25,2,52,-2,74v11,3,32,-8,28,10r3,0v-1,2,-4,6,-3,9v-31,-8,-28,16,-28,46v-7,1,-9,5,-19,4v-4,-13,0,-30,-1,-48v-8,0,-18,1,-28,-1r0,-20v11,2,20,-5,28,0r1,-106v0,0,-19,0,-29,-2r0,-19v11,2,19,-5,29,0v5,-8,-3,-18,-2,-46v13,1,28,-6,23,17v0,4,3,10,8,9v-8,2,-12,9,-11,20v11,3,33,-8,29,10r3,0v-1,2,-4,6,-3,9v-16,-2,-35,3,-25,16r5,0xm60,-101v2,-4,9,1,4,3v-1,0,-2,-2,-4,-3xm60,-74v8,-2,7,8,1,2v0,-1,-1,-2,-1,-2xm59,-36v2,-4,9,1,4,3v-1,0,-3,-2,-4,-3xm30,-197v-1,3,3,4,3,1xm31,-66v2,-2,2,-4,-1,-3xm40,-30v2,1,5,5,6,1v-1,-1,-5,-3,-6,-1","w":92},"\u00b7":{"d":"36,-126v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm18,-100v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm15,-100v1,-1,3,-2,0,-3v-1,1,-1,2,0,3","w":41},"\u2219":{"d":"36,-126v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm18,-100v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm15,-100v1,-1,3,-2,0,-3v-1,1,-1,2,0,3","w":41},"\u201a":{"d":"24,-26v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm2,28v8,-17,1,-25,1,-47v10,1,21,-4,20,10v-2,17,-2,35,-21,37","w":24},"\u201e":{"d":"53,-26v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm24,-26v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm32,28v0,-10,12,-23,0,-27r0,-20v16,-2,25,-1,21,21v-8,9,-4,26,-21,26xm2,28v8,-17,1,-25,1,-47v10,1,21,-4,20,10v-2,17,-2,35,-21,37","w":58},"\u2030":{"d":"183,-80v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm185,-115v24,4,23,40,23,68v0,11,2,17,7,18v-3,2,-23,44,-31,22v6,-21,16,-73,-2,-89v1,-8,-2,-15,3,-19xm178,-54v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm178,-75v-9,18,-4,58,3,75v-42,0,-19,-59,-24,-94v-1,-10,9,-18,19,-17v3,14,-6,31,2,36xm29,-192v1,1,3,2,0,3v-1,-1,-1,-2,0,-3xm31,-226v24,4,23,39,23,68v0,11,2,17,7,18v-3,2,-17,32,-28,28v-7,-6,-1,-16,4,-26v-3,-27,7,-55,-9,-69v1,-7,-2,-16,3,-19xm187,-28v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm157,-53v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm128,-72v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm121,-116v40,-2,23,47,30,80v-4,13,-5,38,-22,36v-21,-7,9,-19,-1,-36r-4,0v19,-21,2,-58,-3,-80xm104,-148v-16,31,-49,85,-48,112v-16,10,-7,39,-37,34v23,-74,63,-132,90,-210v3,-8,11,-11,25,-11v1,7,-34,64,-30,75xm24,-165v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm157,-32v1,3,-2,2,-4,2xm24,-186v-9,15,-3,54,3,75v-42,0,-19,-59,-24,-94v-1,-10,9,-18,19,-18v3,13,-6,32,2,37xm33,-140v1,0,2,5,0,5v-3,0,-2,-5,0,-5xm98,-97v-2,-7,20,-24,22,-9v2,14,-11,20,-3,30v-5,24,0,45,0,74v-11,8,-18,-8,-19,-17r0,-78xm160,-87v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm174,-31v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm20,-142v2,0,1,-4,0,-4v-2,0,-3,4,0,4","w":215},"\u00c2":{"d":"86,-237v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm97,-197v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm69,-135v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-89v1,2,2,3,0,5v-2,-2,-1,-3,0,-5xm62,-166v8,8,-9,39,-6,49v5,-1,4,-1,8,2v-11,2,-17,26,-5,29v-2,1,-2,2,-1,4r17,0v2,5,7,28,9,14v3,-31,-24,-82,-9,-103v0,-2,-2,-3,-6,-2v-4,-21,-20,-50,-3,-60v3,5,13,2,20,3v1,5,8,12,7,22r8,4r-8,0v2,15,3,31,6,47r14,4v-12,-1,-13,18,-2,22v-3,30,2,62,13,90v-6,8,0,27,9,28v-4,0,-7,2,-7,8r-33,0v1,-16,-7,-43,-9,-55v-2,15,-32,-2,-35,14r8,0v-19,4,-7,63,-42,44v-2,1,-5,1,-9,2v0,-6,5,-33,9,-56r31,-175v17,-3,15,53,16,65xm121,-58v0,-1,-2,-2,0,-2r0,2xm75,-91v0,3,-3,7,-2,2xm64,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm77,-155v1,1,2,3,2,0r-2,0xm77,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-104v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm82,-109v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm108,-78v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm108,-69v1,1,4,5,3,0r-3,0xm102,-70v3,0,0,-3,0,-1r0,1xm32,-1v3,0,4,-3,1,-4v-1,1,-3,3,-1,4xm78,-282v0,1,0,1,-1,1v0,-1,0,-1,1,-1xm90,-266r0,2v-1,-1,-1,-1,0,-2xm86,-266r0,2v-1,-1,-1,-1,0,-2xm97,-250v-1,2,-3,0,-1,0r1,0xm30,-242v7,-7,16,-60,41,-43v2,0,23,40,24,43v-25,8,-22,-23,-33,-31v-9,12,-7,35,-32,31xm62,-285v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":136,"k":{"y":42,"x":4,"w":35,"v":42,"u":12,"t":39,"s":11,"r":5,"q":14,"p":7,"o":16,"n":9,"m":9,"l":7,"k":5,"i":5,"g":12,"f":5,"e":7,"d":11,"c":14,"b":5,"a":9,"Y":37,"X":4,"W":28,"V":33,"U":9,"T":35,"S":4,"Q":7,"O":9,"L":4,"J":4,"I":4,"H":4,"G":7,"F":2,"E":4,"C":9,"B":7,"A":4}},"\u00ca":{"d":"110,-240v0,2,0,4,-2,3v0,-2,0,-4,2,-3xm62,-231v12,-4,27,4,40,-3v-4,9,3,18,-5,32r-56,3v0,-14,1,-26,3,-34v2,9,20,-3,18,2xm44,-195v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm42,-166v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm44,-155v1,1,1,3,0,4v-2,0,-1,-4,0,-4xm42,-148v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm44,-138v13,-2,23,6,34,0v11,2,7,31,-2,34v-14,-7,-34,9,-35,-11v0,-11,1,-19,3,-23xm37,-171r-1,170v-7,1,-15,-2,-25,-1r0,-226v6,-1,14,-2,26,-3v-1,17,2,36,-1,51v-8,-1,-3,7,-3,12xm42,-95v2,0,1,3,0,4v-2,-1,-3,-3,0,-4xm42,-78v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm42,-60r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm44,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm101,-36v-5,3,0,10,1,14r-7,22v-18,2,-37,-3,-52,-1r1,1v-6,-5,-2,-27,0,-36v9,8,35,-7,47,3xm30,-184v-1,-6,-9,-3,-4,0v1,2,4,3,4,0xm19,-175v2,0,3,-3,0,-4v-2,0,-1,4,0,4xm50,-133v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm22,-155v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm68,-109v0,2,3,0,1,0r-1,0xm26,-146v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm26,-138v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm19,-144v-2,0,-7,-1,-6,2v2,0,4,0,6,-2xm75,-32v2,0,3,-2,0,-2v-3,0,-1,2,0,2xm65,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm88,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm64,-26v-1,-1,-2,-3,-2,0r2,0xm77,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm73,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm28,-186v0,1,-1,2,-2,2v0,-1,1,-2,2,-2xm71,-282v0,1,0,1,-1,1v0,-1,0,-1,1,-1xm83,-266r0,2v-1,-1,-1,-1,0,-2xm79,-266r0,2v-1,-1,-1,-1,0,-2xm90,-250v-1,2,-3,0,-1,0r1,0xm23,-242v7,-7,16,-60,41,-43v2,0,23,40,24,43v-25,8,-22,-23,-33,-31v-9,12,-7,35,-32,31xm55,-285v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":106,"k":{"o":9,"O":5,"K":-2}},"\u00c1":{"d":"86,-237v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm97,-197v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm69,-135v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-89v1,2,2,3,0,5v-2,-2,-1,-3,0,-5xm62,-166v8,8,-9,39,-6,49v5,-1,4,-1,8,2v-11,2,-17,26,-5,29v-2,1,-2,2,-1,4r17,0v2,5,7,28,9,14v3,-31,-24,-82,-9,-103v0,-2,-2,-3,-6,-2v-4,-21,-20,-50,-3,-60v3,5,13,2,20,3v1,5,8,12,7,22r8,4r-8,0v2,15,3,31,6,47r14,4v-12,-1,-13,18,-2,22v-3,30,2,62,13,90v-6,8,0,27,9,28v-4,0,-7,2,-7,8r-33,0v1,-16,-7,-43,-9,-55v-2,15,-32,-2,-35,14r8,0v-19,4,-7,63,-42,44v-2,1,-5,1,-9,2v0,-6,5,-33,9,-56r31,-175v17,-3,15,53,16,65xm121,-58v0,-1,-2,-2,0,-2r0,2xm75,-91v0,3,-3,7,-2,2xm64,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm77,-155v1,1,2,3,2,0r-2,0xm77,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-104v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm82,-109v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm108,-78v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm108,-69v1,1,4,5,3,0r-3,0xm102,-70v3,0,0,-3,0,-1r0,1xm32,-1v3,0,4,-3,1,-4v-1,1,-3,3,-1,4xm70,-242v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":136,"k":{"y":42,"x":4,"w":35,"v":42,"u":12,"t":39,"s":11,"r":5,"q":14,"p":7,"o":16,"n":9,"m":9,"l":7,"k":5,"i":5,"g":12,"f":5,"e":7,"d":11,"c":14,"b":5,"a":9,"Y":37,"X":4,"W":28,"V":33,"U":9,"T":35,"S":4,"Q":7,"O":9,"L":4,"J":4,"I":4,"H":4,"G":7,"F":2,"E":4,"C":9,"B":7,"A":4}},"\u00cb":{"d":"110,-240v0,2,0,4,-2,3v0,-2,0,-4,2,-3xm62,-231v12,-4,27,4,40,-3v-4,9,3,18,-5,32r-56,3v0,-14,1,-26,3,-34v2,9,20,-3,18,2xm44,-195v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm42,-166v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm44,-155v1,1,1,3,0,4v-2,0,-1,-4,0,-4xm42,-148v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm44,-138v13,-2,23,6,34,0v11,2,7,31,-2,34v-14,-7,-34,9,-35,-11v0,-11,1,-19,3,-23xm37,-171r-1,170v-7,1,-15,-2,-25,-1r0,-226v6,-1,14,-2,26,-3v-1,17,2,36,-1,51v-8,-1,-3,7,-3,12xm42,-95v2,0,1,3,0,4v-2,-1,-3,-3,0,-4xm42,-78v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm42,-60r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm44,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm101,-36v-5,3,0,10,1,14r-7,22v-18,2,-37,-3,-52,-1r1,1v-6,-5,-2,-27,0,-36v9,8,35,-7,47,3xm30,-184v-1,-6,-9,-3,-4,0v1,2,4,3,4,0xm19,-175v2,0,3,-3,0,-4v-2,0,-1,4,0,4xm50,-133v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm22,-155v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm68,-109v0,2,3,0,1,0r-1,0xm26,-146v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm26,-138v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm19,-144v-2,0,-7,-1,-6,2v2,0,4,0,6,-2xm75,-32v2,0,3,-2,0,-2v-3,0,-1,2,0,2xm65,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm88,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm64,-26v-1,-1,-2,-3,-2,0r2,0xm77,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm73,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm28,-186v0,1,-1,2,-2,2v0,-1,1,-2,2,-2xm89,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm46,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm70,-249v2,2,4,0,2,-2xm67,-249v2,2,4,0,2,-2xm28,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm25,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":106,"k":{"o":9,"O":5,"K":-2}},"\u00c8":{"d":"110,-240v0,2,0,4,-2,3v0,-2,0,-4,2,-3xm62,-231v12,-4,27,4,40,-3v-4,9,3,18,-5,32r-56,3v0,-14,1,-26,3,-34v2,9,20,-3,18,2xm44,-195v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm42,-166v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm44,-155v1,1,1,3,0,4v-2,0,-1,-4,0,-4xm42,-148v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm44,-138v13,-2,23,6,34,0v11,2,7,31,-2,34v-14,-7,-34,9,-35,-11v0,-11,1,-19,3,-23xm37,-171r-1,170v-7,1,-15,-2,-25,-1r0,-226v6,-1,14,-2,26,-3v-1,17,2,36,-1,51v-8,-1,-3,7,-3,12xm42,-95v2,0,1,3,0,4v-2,-1,-3,-3,0,-4xm42,-78v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm42,-60r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm44,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm101,-36v-5,3,0,10,1,14r-7,22v-18,2,-37,-3,-52,-1r1,1v-6,-5,-2,-27,0,-36v9,8,35,-7,47,3xm30,-184v-1,-6,-9,-3,-4,0v1,2,4,3,4,0xm19,-175v2,0,3,-3,0,-4v-2,0,-1,4,0,4xm50,-133v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm22,-155v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm68,-109v0,2,3,0,1,0r-1,0xm26,-146v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm26,-138v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm19,-144v-2,0,-7,-1,-6,2v2,0,4,0,6,-2xm75,-32v2,0,3,-2,0,-2v-3,0,-1,2,0,2xm65,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm88,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm64,-26v-1,-1,-2,-3,-2,0r2,0xm77,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm73,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm28,-186v0,1,-1,2,-2,2v0,-1,1,-2,2,-2xm72,-257v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm69,-242v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm44,-259v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm50,-240v2,1,4,-2,2,-2v-1,0,-2,1,-2,2","w":106,"k":{"o":9,"O":5,"K":-2}},"\u00cd":{"d":"49,-155v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm45,-163v-4,45,0,96,0,144v0,26,-19,14,-36,19r3,-2r0,-227v17,5,32,-17,31,11v-1,20,-1,36,1,56xm16,-221v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm13,-220v-1,4,3,12,5,8v0,-6,-1,-8,-5,-8xm32,-245v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":54,"k":{"a":7,"V":2,"A":2}},"\u00ce":{"d":"49,-155v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm45,-163v-4,45,0,96,0,144v0,26,-19,14,-36,19r3,-2r0,-227v17,5,32,-17,31,11v-1,20,-1,36,1,56xm16,-221v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm13,-220v-1,4,3,12,5,8v0,-6,-1,-8,-5,-8xm41,-280v0,1,0,1,-1,1v0,-1,0,-1,1,-1xm53,-264r0,2v-1,-1,-1,-1,0,-2xm49,-264r0,2v-1,-1,-1,-1,0,-2xm60,-248v-1,2,-3,0,-1,0r1,0xm-7,-240v7,-7,16,-60,41,-43v2,0,23,40,24,43v-25,8,-22,-23,-33,-31v-9,12,-7,35,-32,31xm25,-283v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":54,"k":{"a":7,"V":2,"A":2}},"\u00cf":{"d":"49,-155v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm45,-163v-4,45,0,96,0,144v0,26,-19,14,-36,19r3,-2r0,-227v17,5,32,-17,31,11v-1,20,-1,36,1,56xm16,-221v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm13,-220v-1,4,3,12,5,8v0,-6,-1,-8,-5,-8xm65,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm22,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm46,-249v2,2,4,0,2,-2xm43,-249v2,2,4,0,2,-2xm4,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm1,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":54,"k":{"a":7,"V":2,"A":2}},"\u00cc":{"d":"49,-155v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm45,-163v-4,45,0,96,0,144v0,26,-19,14,-36,19r3,-2r0,-227v17,5,32,-17,31,11v-1,20,-1,36,1,56xm16,-221v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm13,-220v-1,4,3,12,5,8v0,-6,-1,-8,-5,-8xm43,-257v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm40,-242v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm15,-259v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm21,-240v2,1,4,-2,2,-2v-1,0,-2,1,-2,2","w":54,"k":{"a":7,"V":2,"A":2}},"\u00d3":{"d":"98,-211v-2,1,-2,-4,-2,-6v2,1,4,4,2,6xm114,-195v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm45,-182v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm109,-211v2,21,7,45,0,65v-1,4,8,5,3,8r0,98v-10,12,-25,49,-53,35v-8,-21,21,-36,21,-51r0,-92r3,-3v-7,-26,-3,-57,-22,-51v2,-5,-5,-20,-2,-33v10,-1,16,1,13,11v2,-4,6,-15,9,-2v1,-7,9,-2,15,-2v0,1,-5,11,-4,15v-4,-3,-13,-3,-14,2v1,9,29,11,31,0xm50,-109v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm49,-102v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm45,-64v-15,7,6,27,9,35r0,29v-74,-15,-47,-114,-47,-191v0,-13,4,-19,12,-19v-3,-23,24,-7,29,-25v2,0,4,-1,6,-1r0,30v-27,14,-18,113,-9,142xm50,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm43,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm87,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm78,-202v1,1,4,5,3,0r-3,0xm79,-194v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm107,-138v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm25,-215v-1,1,-2,6,0,7v0,-2,2,-5,0,-7xm109,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm110,-118v0,-4,-4,-5,-3,0r3,0xm103,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm102,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm83,-122v-1,0,-2,4,0,4v1,-1,1,-3,0,-4xm37,-142v0,1,-2,2,0,2r0,-2xm40,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm67,-246v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":118,"k":{"y":5,"v":4,"Y":5,"X":11,"W":4,"V":5,"J":4,"A":5}},"\u00d4":{"d":"98,-211v-2,1,-2,-4,-2,-6v2,1,4,4,2,6xm114,-195v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm45,-182v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm109,-211v2,21,7,45,0,65v-1,4,8,5,3,8r0,98v-10,12,-25,49,-53,35v-8,-21,21,-36,21,-51r0,-92r3,-3v-7,-26,-3,-57,-22,-51v2,-5,-5,-20,-2,-33v10,-1,16,1,13,11v2,-4,6,-15,9,-2v1,-7,9,-2,15,-2v0,1,-5,11,-4,15v-4,-3,-13,-3,-14,2v1,9,29,11,31,0xm50,-109v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm49,-102v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm45,-64v-15,7,6,27,9,35r0,29v-74,-15,-47,-114,-47,-191v0,-13,4,-19,12,-19v-3,-23,24,-7,29,-25v2,0,4,-1,6,-1r0,30v-27,14,-18,113,-9,142xm50,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm43,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm87,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm78,-202v1,1,4,5,3,0r-3,0xm79,-194v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm107,-138v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm25,-215v-1,1,-2,6,0,7v0,-2,2,-5,0,-7xm109,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm110,-118v0,-4,-4,-5,-3,0r3,0xm103,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm102,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm83,-122v-1,0,-2,4,0,4v1,-1,1,-3,0,-4xm37,-142v0,1,-2,2,0,2r0,-2xm40,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm76,-280v0,1,0,1,-1,1v0,-1,0,-1,1,-1xm88,-264r0,2v-1,-1,-1,-1,0,-2xm84,-264r0,2v-1,-1,-1,-1,0,-2xm95,-248v-1,2,-3,0,-1,0r1,0xm28,-240v7,-7,16,-60,41,-43v2,0,23,40,24,43v-25,8,-22,-23,-33,-31v-9,12,-7,35,-32,31xm60,-283v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":118,"k":{"y":5,"v":4,"Y":5,"X":11,"W":4,"V":5,"J":4,"A":5}},"\u00d2":{"d":"98,-211v-2,1,-2,-4,-2,-6v2,1,4,4,2,6xm114,-195v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm45,-182v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm109,-211v2,21,7,45,0,65v-1,4,8,5,3,8r0,98v-10,12,-25,49,-53,35v-8,-21,21,-36,21,-51r0,-92r3,-3v-7,-26,-3,-57,-22,-51v2,-5,-5,-20,-2,-33v10,-1,16,1,13,11v2,-4,6,-15,9,-2v1,-7,9,-2,15,-2v0,1,-5,11,-4,15v-4,-3,-13,-3,-14,2v1,9,29,11,31,0xm50,-109v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm49,-102v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm45,-64v-15,7,6,27,9,35r0,29v-74,-15,-47,-114,-47,-191v0,-13,4,-19,12,-19v-3,-23,24,-7,29,-25v2,0,4,-1,6,-1r0,30v-27,14,-18,113,-9,142xm50,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm43,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm87,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm78,-202v1,1,4,5,3,0r-3,0xm79,-194v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm107,-138v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm25,-215v-1,1,-2,6,0,7v0,-2,2,-5,0,-7xm109,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm110,-118v0,-4,-4,-5,-3,0r3,0xm103,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm102,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm83,-122v-1,0,-2,4,0,4v1,-1,1,-3,0,-4xm37,-142v0,1,-2,2,0,2r0,-2xm40,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm74,-258v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm71,-243v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm46,-260v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm52,-241v2,1,4,-2,2,-2v-1,0,-2,1,-2,2","w":118,"k":{"y":5,"v":4,"Y":5,"X":11,"W":4,"V":5,"J":4,"A":5}},"\u00da":{"d":"124,-155v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm113,-233v1,25,-2,58,2,71v-7,33,8,85,-7,111v-8,-6,-29,8,-29,-15r3,-164v16,-1,15,-2,31,-3xm50,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm50,-124v0,0,1,7,-1,3v0,-1,0,-3,1,-3xm108,-44v-1,-1,-3,-2,0,-2r0,2xm44,-53v-8,10,1,15,13,27r0,25v-59,1,-50,-66,-49,-127v2,-2,4,-4,0,-5r0,-96v20,2,29,-9,36,-1v-5,4,-7,23,3,26r-7,0r2,107v-1,0,-2,-1,-2,-3v-1,16,3,30,-1,41v0,5,2,7,5,6xm113,-40v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm50,-102v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm97,-40v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm93,-29v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm46,-66v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm62,-29v4,-1,21,-29,26,-14v3,8,-9,5,-13,9v-1,3,12,1,13,8v-4,-2,-14,4,-6,4r20,0v-1,12,-25,28,-40,20r0,-27xm90,-221v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm17,-217v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm13,-220v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm101,-104v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm95,-100v2,-1,2,-3,0,-4v-2,1,-2,3,0,4xm112,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm20,-118v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm26,-111v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm11,-122v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm84,-44v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm17,-80v2,-1,0,-3,0,-1r0,1xm13,-66v3,1,2,-3,2,-5v-3,-1,-2,3,-2,5xm26,-53v-1,-1,-2,-3,-2,0r2,0xm15,-58v5,-1,6,-4,0,-4r0,4xm15,-49v2,0,6,1,5,-2v-2,0,-6,-1,-5,2xm69,-246v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":123,"k":{"w":9,"X":7,"J":9,"A":12}},"\u00db":{"d":"124,-155v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm113,-233v1,25,-2,58,2,71v-7,33,8,85,-7,111v-8,-6,-29,8,-29,-15r3,-164v16,-1,15,-2,31,-3xm50,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm50,-124v0,0,1,7,-1,3v0,-1,0,-3,1,-3xm108,-44v-1,-1,-3,-2,0,-2r0,2xm44,-53v-8,10,1,15,13,27r0,25v-59,1,-50,-66,-49,-127v2,-2,4,-4,0,-5r0,-96v20,2,29,-9,36,-1v-5,4,-7,23,3,26r-7,0r2,107v-1,0,-2,-1,-2,-3v-1,16,3,30,-1,41v0,5,2,7,5,6xm113,-40v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm50,-102v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm97,-40v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm93,-29v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm46,-66v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm62,-29v4,-1,21,-29,26,-14v3,8,-9,5,-13,9v-1,3,12,1,13,8v-4,-2,-14,4,-6,4r20,0v-1,12,-25,28,-40,20r0,-27xm90,-221v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm17,-217v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm13,-220v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm101,-104v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm95,-100v2,-1,2,-3,0,-4v-2,1,-2,3,0,4xm112,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm20,-118v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm26,-111v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm11,-122v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm84,-44v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm17,-80v2,-1,0,-3,0,-1r0,1xm13,-66v3,1,2,-3,2,-5v-3,-1,-2,3,-2,5xm26,-53v-1,-1,-2,-3,-2,0r2,0xm15,-58v5,-1,6,-4,0,-4r0,4xm15,-49v2,0,6,1,5,-2v-2,0,-6,-1,-5,2xm76,-280v0,1,0,1,-1,1v0,-1,0,-1,1,-1xm88,-264r0,2v-1,-1,-1,-1,0,-2xm84,-264r0,2v-1,-1,-1,-1,0,-2xm95,-248v-1,2,-3,0,-1,0r1,0xm28,-240v7,-7,16,-60,41,-43v2,0,23,40,24,43v-25,8,-22,-23,-33,-31v-9,12,-7,35,-32,31xm60,-283v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":123,"k":{"w":9,"X":7,"J":9,"A":12}},"\u00d9":{"d":"124,-155v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm113,-233v1,25,-2,58,2,71v-7,33,8,85,-7,111v-8,-6,-29,8,-29,-15r3,-164v16,-1,15,-2,31,-3xm50,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm50,-124v0,0,1,7,-1,3v0,-1,0,-3,1,-3xm108,-44v-1,-1,-3,-2,0,-2r0,2xm44,-53v-8,10,1,15,13,27r0,25v-59,1,-50,-66,-49,-127v2,-2,4,-4,0,-5r0,-96v20,2,29,-9,36,-1v-5,4,-7,23,3,26r-7,0r2,107v-1,0,-2,-1,-2,-3v-1,16,3,30,-1,41v0,5,2,7,5,6xm113,-40v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm50,-102v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm97,-40v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm93,-29v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm46,-66v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm62,-29v4,-1,21,-29,26,-14v3,8,-9,5,-13,9v-1,3,12,1,13,8v-4,-2,-14,4,-6,4r20,0v-1,12,-25,28,-40,20r0,-27xm90,-221v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm17,-217v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm13,-220v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm101,-104v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm95,-100v2,-1,2,-3,0,-4v-2,1,-2,3,0,4xm112,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm20,-118v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm26,-111v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm11,-122v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm84,-44v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm17,-80v2,-1,0,-3,0,-1r0,1xm13,-66v3,1,2,-3,2,-5v-3,-1,-2,3,-2,5xm26,-53v-1,-1,-2,-3,-2,0r2,0xm15,-58v5,-1,6,-4,0,-4r0,4xm15,-49v2,0,6,1,5,-2v-2,0,-6,-1,-5,2xm76,-255v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm73,-240v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm48,-257v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm54,-238v2,1,4,-2,2,-2v-1,0,-2,1,-2,2","w":123,"k":{"w":9,"X":7,"J":9,"A":12}},"\u02c6":{"d":"82,-276v0,1,0,1,-1,1v0,-1,0,-1,1,-1xm94,-260r0,2v-1,-1,-1,-1,0,-2xm90,-260r0,2v-1,-1,-1,-1,0,-2xm101,-244v-1,2,-3,0,-1,0r1,0xm34,-236v7,-7,16,-60,41,-43v2,0,23,40,24,43v-25,8,-22,-23,-33,-31v-9,12,-7,35,-32,31xm66,-279v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":136},"\u02dc":{"d":"89,-273v6,1,9,2,10,8v-5,4,-13,18,-16,23v-34,7,-44,-33,-64,4v-15,-10,6,-41,19,-38v14,3,9,6,33,17v8,-4,8,-1,18,-14xm47,-271r0,-3v-1,1,-1,2,0,3","w":109},"\u00af":{"d":"93,-247v-28,-1,-52,3,-76,0r0,-19v11,1,20,-5,29,0v2,-4,2,-4,4,0r42,0v2,4,4,12,1,19xm40,-268v-1,3,3,4,3,1","w":109},"\u02c9":{"d":"93,-247v-28,-1,-52,3,-76,0r0,-19v11,1,20,-5,29,0v2,-4,2,-4,4,0r42,0v2,4,4,12,1,19xm40,-268v-1,3,3,4,3,1","w":109},"\u0160":{"d":"83,-238v0,1,-1,3,-1,1xm117,-203v-4,0,-5,-4,0,-3r0,3xm97,-226v-2,5,17,24,13,38v-1,11,-27,10,-28,11v-3,-6,-16,-26,-25,-29v2,-11,-7,-27,9,-27v8,0,18,2,31,7xm64,-153v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm113,-104v0,3,0,5,-3,4xm107,-83v18,13,8,53,-9,58v-5,2,-5,5,-3,10v-6,8,-26,25,-34,8v0,-3,0,-6,1,-7v-3,-1,-2,-2,0,-4v1,1,1,2,1,4r27,0v3,-5,-2,-7,-6,-8v-12,-2,-20,8,-23,-2v21,-21,31,-40,3,-67v3,-1,2,-3,1,-5v-18,2,-60,-46,-57,-64v-5,-41,4,-73,45,-73r0,31v-35,19,11,74,33,78r-3,2v11,4,22,23,24,39xm53,-38v2,1,1,4,0,5v-2,-1,-3,-4,0,-5xm34,-65v-2,16,41,48,19,65v-23,-8,-60,-22,-47,-60v11,-3,21,-4,28,-5xm40,-1v3,0,0,3,0,1r0,-1xm13,-15v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm113,-62r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm64,-97v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm75,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm48,-7v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm38,-10v1,1,2,2,2,-1xm58,-254v8,-13,7,-35,32,-31v-6,9,-21,59,-41,43v-2,0,-23,-40,-24,-43v24,-8,22,25,33,31xm23,-278v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm34,-263v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm30,-263v2,1,0,3,0,1r0,-1xm41,-246v1,0,3,1,1,1","w":120},"\u0161":{"d":"120,-197v-6,-1,-6,-5,0,-4r0,4xm87,-229v-1,-1,-3,-2,0,-2r0,2xm108,-201v12,22,2,30,-21,30v-4,2,-6,-13,-15,-22r-8,8v-2,-16,-5,-22,-1,-42v15,-1,24,5,38,7v1,3,2,10,7,19xm68,-175v-6,-1,-1,-11,2,-10xm72,-147v-4,0,-5,-4,0,-3r0,3xm87,-133v0,1,-1,3,-2,3v-2,0,-3,-5,0,-4v1,0,2,0,2,1xm125,-90r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm120,-86v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm8,-203v-5,18,-9,9,-20,14v1,-7,11,-18,20,-14xm10,-175v-14,7,-29,0,-41,7v-1,-14,9,-23,19,-12v0,-9,29,3,20,-10v11,-13,21,-41,48,-37r0,30v-18,15,-7,21,-2,43r12,-2v-16,27,32,22,36,49v0,3,10,8,14,4v0,6,15,13,0,17v-1,12,8,19,2,26v9,6,-5,18,-4,26v-16,6,-18,28,-34,34v-14,2,-20,-12,-12,-19v-13,-14,31,-25,14,-48v-4,-17,-25,0,-26,-23v-7,1,-1,-6,-2,-11v-1,1,-3,2,-6,3v2,-5,-14,-24,-20,-22v-7,-20,-17,-24,-18,-55xm42,-95v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm-23,-160v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm61,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm36,-88v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm26,-85v-2,0,-2,0,-2,-2v-1,-3,4,-3,8,-3v-2,3,-3,5,-6,5xm39,-64v1,16,13,28,22,34v0,13,4,33,-11,26v-9,8,-19,-11,-30,-16v-10,-10,-15,-22,-10,-40v15,-3,25,-4,29,-4xm17,-15v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm92,-115v2,0,3,-6,0,-5v-3,1,-2,4,0,5xm115,-89v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm63,-90v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm94,-17v0,-8,-12,-4,-20,-5v-1,1,-3,3,-3,5r23,0xm43,-8v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm59,-251v8,-13,7,-35,32,-31v-6,9,-21,59,-41,43v-2,0,-23,-40,-24,-43v24,-8,22,25,33,31xm24,-275v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm35,-260v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm31,-260v2,1,0,3,0,1r0,-1xm42,-243v1,0,3,1,1,1","w":126},"\u00a6":{"d":"36,-241v3,8,-2,26,9,26v-12,4,-11,21,-8,37v14,4,-9,9,1,18v2,0,5,-1,5,1v-8,5,-6,19,-5,31v-10,1,-20,2,-28,-1v-3,-48,5,-57,-1,-112r27,0xm40,-102v4,-1,8,1,5,4xm43,-74v2,-1,6,4,2,4v0,0,-7,-4,-2,-4xm36,-33v0,28,0,36,-25,34v-5,-31,1,-81,-1,-119r28,0v4,21,-3,39,-1,58v13,2,-5,8,7,10v-5,1,-8,6,-8,17xm40,-36v2,-4,9,1,4,3v-1,0,-3,-2,-4,-3xm25,-27v2,-2,0,-4,-3,-4v-1,0,-1,1,-1,2v1,1,3,2,4,2","w":48},"\u00d0":{"d":"130,-190v1,-1,4,-1,5,0v-2,1,-4,1,-5,0xm62,-179v1,2,-1,2,-3,2v-1,-2,1,-2,3,-2xm126,-195r2,129v-6,7,-2,18,-2,28v-2,1,-14,30,-23,27v-12,-5,-22,-3,-34,0v4,-4,4,-14,13,-13v-8,-11,-17,22,-20,11r-5,0r0,-18r12,0r-5,7v6,1,28,-18,29,-22r0,-132v0,-15,-19,-23,-36,-23v2,-15,-7,-32,13,-32v35,0,45,17,56,38xm135,-53r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm24,-230v14,-3,29,-3,29,11r0,97r4,0v-2,0,-1,-3,0,-4v2,1,3,3,1,4v8,0,13,-1,11,10r3,0v-1,2,-4,6,-3,9r-19,0r-6,37r-22,13v6,-13,1,-30,2,-47r-18,-3r0,-19v7,0,13,0,18,-2r0,-106xm132,-51v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm57,-73v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm64,-64v2,1,3,3,0,4v-2,-1,-3,-3,0,-4xm99,-9v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm66,-38v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm79,-9v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm66,-7v4,-1,10,1,6,3v-3,0,-5,-1,-6,-3xm59,-7v0,0,2,0,2,1xm38,-51v14,-4,18,25,13,37v-10,2,-15,6,-25,12r3,2r-5,0v5,-19,-14,-53,14,-51xm49,-9v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm42,-5v-1,-1,-3,-2,0,-2r0,2xm35,-4v2,1,2,3,0,3v-2,0,-3,-2,0,-3xm66,-228v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm122,-121v2,1,2,-1,2,-3v-2,-1,-2,1,-2,3xm122,-97v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm102,-55v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm97,-58v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm31,-123r0,0r0,0xm101,-51v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm46,-100v0,0,0,-2,-1,-2v-1,0,-1,1,-1,2r2,0xm93,-38v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm89,-33v1,-1,4,-4,0,-3r0,3xm97,-18v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm26,-86v2,-1,4,-2,0,-2r0,2xm84,-20v2,-1,1,-3,0,-4v-2,1,-1,3,0,4xm37,-66v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm29,-58v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm29,-44v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm42,-15v-1,-3,-2,-7,-2,0r2,0xm26,-22v4,1,9,-2,8,-4v-3,0,-6,1,-8,4xm26,-24v3,-1,2,-4,0,-5v-1,1,-2,4,0,5","w":134},"\u00dd":{"d":"122,-220v-24,44,-20,60,-41,116v-4,-7,-9,-22,-16,-44v5,-18,11,-46,20,-82r36,0v2,2,-10,12,1,10xm25,-232v-3,0,-1,-1,-1,-1xm63,-179v2,1,3,3,0,4v-2,0,-1,-4,0,-4xm59,-159v1,33,31,64,20,104v1,15,-3,35,2,46v-10,8,-7,8,-20,9v3,-1,11,-5,4,-5v-10,0,-17,7,-22,3v6,-26,2,-66,3,-98v-7,-18,-46,-134,-40,-130v8,1,16,-5,18,2v1,-4,7,-6,14,-5v0,9,4,13,8,13v0,11,5,46,13,43v-3,8,0,14,3,18r-3,0xm90,-33v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm84,-18v2,-2,3,0,1,1xm44,-163v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm37,-166v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm30,-159v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm67,-244v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":126},"\u00fd":{"d":"64,-176v-1,1,-2,3,-2,0r2,0xm44,-218v3,29,14,51,18,74v7,-17,14,-45,22,-84r35,0v-1,2,-3,9,0,15r-3,0v-18,27,-23,93,-39,112v9,18,-5,65,2,89v0,8,-12,16,-20,10v3,0,6,-1,5,-5r-22,6v3,-26,2,-57,2,-86v-14,-2,-38,-4,-41,-13v10,-11,7,-15,15,-4r2,-16v-6,0,-9,-2,-9,-5r22,0v-4,-38,-24,-67,-28,-103v6,-5,22,-3,33,-3v0,9,2,14,6,13xm39,-86v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm89,-34v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm29,-85v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm86,-17v-5,0,-6,-4,0,-3r0,3xm64,-142v0,7,0,11,4,18v0,-8,0,-10,-4,-18xm72,-122v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm75,-107v1,-4,-1,-9,-3,-6v0,2,2,4,3,6xm36,-107v5,-2,2,-16,-7,-13v4,3,7,7,7,13xm40,-102v0,-2,-3,-1,-4,-1v0,2,2,2,4,1xm22,-111v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm71,-244v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35"},"\u00de":{"d":"122,-137v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm55,-150v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm102,-173v19,17,3,45,13,63v-4,4,-3,10,-2,14v0,12,-26,50,-40,39r-29,4v-4,-8,-3,-48,10,-33v22,1,39,-48,16,-64v-9,-10,3,-17,-6,-23v-4,5,-5,10,-5,14v-7,-2,-9,-2,-18,0v0,-7,-1,-20,3,-22v17,2,31,-10,49,-3v-2,8,10,2,9,11xm44,-128v0,2,1,5,-2,4xm44,-117v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2v1,0,2,1,2,2xm42,-108v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm38,-82v4,18,0,31,5,53v-12,8,7,33,-21,29v-3,-3,-9,-4,-15,-5v-2,-22,-2,-58,7,-66v-1,0,-2,0,-5,-2r0,-150v4,1,5,-1,4,-5v8,0,15,6,25,7r0,139xm80,-181v-1,-1,-4,-2,-4,0v1,1,3,1,4,0xm76,-149v1,1,2,2,2,-1xm111,-110v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm82,-135v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm84,-108v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm19,-90v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm11,-89v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm13,-84v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm22,-68v1,-2,2,-2,-2,-1xm38,-38v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm38,-32v3,0,0,-3,0,-1r0,1","w":120},"\u00fe":{"d":"122,-95v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm57,-106v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm102,-130v20,16,3,44,13,62v-4,4,-3,10,-2,14v0,12,-26,50,-40,39r-29,4v-4,-8,-3,-48,10,-33v24,2,38,-49,16,-64v-9,-10,4,-16,-6,-22v-4,5,-5,9,-5,13v-7,-2,-9,-2,-18,0v0,-7,-1,-20,3,-22v17,2,31,-10,49,-3v-2,8,11,2,9,12xm44,-86v0,2,1,5,-2,4xm44,-75v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2v1,0,2,1,2,2xm42,-66v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm38,-40v4,18,0,31,5,53v-12,8,7,33,-21,29v-3,-4,-9,-4,-15,-4v-2,-23,-2,-58,7,-67v-1,0,-2,0,-5,-2r0,-150v4,1,5,-1,4,-5v8,0,15,6,25,7r0,139xm80,-139v-1,-1,-4,-2,-4,0v1,1,3,1,4,0xm76,-107v1,1,2,2,2,-1xm111,-68v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm82,-93v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm84,-66v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm18,-49v0,2,3,0,1,0r-1,0xm11,-47v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm13,-42v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm22,-25v2,-2,1,-4,-2,-2xm38,5v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm38,10v3,0,0,-3,0,-1r0,1","w":120},"\u00ad":{"d":"84,-118v-28,-1,-48,3,-75,0r0,-19v12,2,19,-6,28,0v3,-3,3,-5,4,0r43,0v2,4,2,14,0,19xm31,-138v1,2,3,2,3,-1","w":92},"\u2212":{"d":"84,-118v-28,-1,-48,3,-75,0r0,-19v12,2,19,-6,28,0v3,-3,3,-5,4,0r43,0v2,4,2,14,0,19xm31,-138v1,2,3,2,3,-1","w":92},"\u00d7":{"d":"8,-151v8,-20,17,-3,35,9v5,-4,13,-10,22,-19v4,6,12,10,17,12v-7,-1,-5,0,-4,5v-20,2,-28,20,-12,27v0,7,22,16,1,21v-12,-8,-11,-16,-28,-17v-10,11,-17,21,-27,11v2,-2,-2,-3,-4,-4v7,-9,18,-13,22,-25v-8,-6,-13,-15,-22,-20xm43,-115v0,-1,-1,-1,-2,-1v0,1,1,1,2,1","w":92},"\u00b9":{"d":"33,-232v1,0,1,0,1,1xm34,-230r0,2r0,-2xm26,-230v2,1,0,3,0,1r0,-1xm37,-219r0,3r0,-3xm18,-205v2,0,1,3,0,3v-1,0,-2,-3,0,-3xm6,-215v1,0,1,2,0,2r0,-2xm7,-206v-4,1,-5,-1,-3,-4xm40,-159r0,2r0,-2xm38,-196r-1,82v1,-2,1,-2,2,0v0,11,-7,18,-21,16r3,-104v-6,-4,2,-9,-2,-12v-4,0,-7,15,-11,4v2,-1,0,-6,0,-8v1,-1,5,12,5,2v0,-10,12,-7,17,-12v0,3,0,3,3,2v2,0,3,-1,4,-1v-2,10,0,26,0,34xm20,-221v0,-1,0,-5,-1,-2v0,1,0,2,1,2xm20,-219v-1,0,-2,-2,-2,0r2,0xm27,-206r0,-3r0,3xm31,-201r0,-3r0,3xm17,-214v2,0,1,-2,0,-2r0,2xm20,-206r0,-3r0,3xm23,-202v1,0,2,-3,0,-3v-1,0,-1,3,0,3xm26,-199v0,0,2,-1,0,-1r0,1xm21,-199v0,0,2,-1,0,-1r0,1xm36,-171v2,-1,0,-3,0,-1r0,1xm22,-179r0,-3r0,3xm36,-152r0,-2v-2,0,-1,2,0,2xm27,-98r0,-3r0,3xm25,-98r0,-3r0,3","w":43},"\u00b2":{"d":"67,-213v0,0,0,2,-1,2v0,0,0,-2,1,-2xm24,-232v39,-9,51,29,34,57v-9,1,-12,2,-16,8r3,0v0,6,-6,7,-11,5v4,-13,12,-19,12,-41v0,-8,-4,-12,-13,-12v-13,7,-5,15,-14,23v-4,0,-16,0,-13,-9v-1,-9,10,-27,18,-31xm25,-202r0,2r0,-2xm53,-167v0,2,-2,1,-3,1v0,-1,2,-1,3,-1xm49,-168r0,2r0,-2xm49,-154v2,0,1,2,0,2r0,-2xm7,-120r22,-36v7,3,12,-2,17,-1v-4,14,-8,28,-21,34v0,7,-13,1,-18,3xm54,-99v0,1,0,1,-1,1xm26,-123v1,0,1,0,1,1xm62,-110v4,14,-12,9,-22,12v1,-1,5,-2,2,-3v-6,3,-12,-2,-18,1v0,-3,5,-1,3,-6r-10,0v7,5,-2,6,-6,9v-6,-1,-5,-11,-5,-20v12,-1,32,4,37,-4v-1,7,9,3,14,4v5,-5,7,2,7,7r-2,0xm35,-99v0,1,0,1,-1,1xm28,-98v0,-1,1,-1,2,-1v0,1,-1,1,-2,1xm24,-102v-2,1,1,3,-3,3v0,-2,2,-2,3,-3xm50,-210v4,0,3,-1,0,-1r0,1xm46,-210v0,0,2,0,2,-1v0,0,-2,0,-2,1xm60,-185v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm48,-186r0,-3r0,3xm49,-176v1,0,4,-1,1,-1xm19,-199r0,-2r0,2xm59,-114r0,-2v-2,0,-1,2,0,2xm49,-111r0,-3r0,3xm56,-103v1,0,2,-3,0,-3v-2,0,-1,3,0,3xm28,-129r0,-2r0,2xm23,-131r0,-3r0,3xm17,-135r0,2r0,-2xm34,-114r0,-2v-2,0,-1,2,0,2xm21,-121r0,-3r0,3xm31,-110v0,-2,-2,-6,-2,-2v1,1,2,1,2,2xm16,-123v2,0,5,-1,1,-1xm28,-110r0,-2r0,2xm28,-109v1,0,1,0,1,-1xm30,-106r0,-3r0,3xm21,-114v0,2,3,0,1,0r-1,0xm24,-111v0,-1,0,-1,-1,-1xm23,-107r0,-3r0,3xm17,-112v2,-1,0,-3,0,-1r0,1xm14,-114r0,-2v-2,0,-1,2,0,2xm17,-109v0,2,3,0,1,0r-1,0xm10,-113v0,0,2,-1,0,-1r0,1xm17,-101v0,-2,-2,-6,-2,-2v0,2,2,0,2,2xm11,-107r0,-3r0,3xm31,-112r0,1r0,-1xm17,-103r0,1r0,-1","w":67},"\u00b3":{"d":"63,-217v1,0,2,3,0,3v-2,0,-1,-3,0,-3xm31,-233v2,16,-6,22,-6,35v-7,0,-22,2,-14,-5v-7,-7,6,-33,20,-30xm64,-154v2,0,1,2,0,2r0,-2xm51,-169v16,11,19,61,-5,67v1,0,1,-3,0,-3v-3,0,1,4,-1,3v-2,-6,-5,-2,-9,1v1,-22,14,-33,7,-62v-7,7,-17,-4,-16,-14v13,-5,16,-4,17,-21v1,-22,-18,-16,-7,-38v25,3,23,30,25,53xm25,-131v1,0,1,0,1,1xm45,-101r0,3r0,-3xm22,-138v-1,13,18,21,11,37v-20,4,-25,-19,-26,-37r15,0xm40,-99v0,2,-2,1,-3,1xm53,-211r0,-3r0,3xm46,-211r0,-3r0,3xm40,-215v1,0,2,-3,0,-3v-2,0,-1,3,0,3xm47,-208r0,-2r0,2xm47,-190v0,2,3,0,1,0r-1,0xm46,-186r0,-3r0,3xm18,-200r0,-3r0,3xm44,-173r0,-3r0,3xm36,-177r0,-3r0,3xm15,-199r0,-2r0,2xm39,-173v1,-1,2,-3,0,-3r0,3xm38,-168v0,2,3,2,4,1v-2,0,-2,-2,-2,-6v-1,4,-2,5,-2,5xm36,-171v0,-3,-1,-4,-3,-4v0,3,1,4,3,4xm30,-173v2,-2,0,-4,-2,-3xm47,-126r0,-3r0,3xm44,-121v0,2,3,0,1,0r-1,0xm47,-114r0,-2r0,2xm43,-116v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm50,-106r0,-3r0,3xm40,-112v1,-1,2,-3,0,-3r0,3xm39,-109r0,-2r0,2xm41,-108v-1,0,-3,1,-1,1xm17,-130r-1,0r1,0xm13,-124v2,-1,2,-1,0,-2r0,2xm21,-111r0,-3r0,3xm15,-116v1,-1,1,-2,0,-3r0,3xm11,-117r0,-3r0,3xm15,-111r0,-3r0,3","w":65},"\u00bd":{"d":"40,-232v1,0,1,0,1,1xm41,-230r0,2r0,-2xm33,-230v2,1,0,3,0,1r0,-1xm44,-219r0,3r0,-3xm25,-205v2,0,1,3,0,3v-1,0,-2,-3,0,-3xm13,-215v1,0,1,2,0,2r0,-2xm14,-206v-4,1,-5,-1,-3,-4xm47,-159r0,2r0,-2xm45,-196r-1,82v1,-2,1,-2,2,0v0,11,-7,18,-21,16r3,-104v-6,-4,2,-9,-2,-12v-4,0,-7,15,-11,4v2,-1,0,-6,0,-8v1,-1,5,12,5,2v0,-10,12,-7,17,-12v0,3,0,3,3,2v2,0,3,-1,4,-1v-2,10,0,26,0,34xm27,-221v0,-1,0,-5,-1,-2v0,1,0,2,1,2xm27,-219v-1,0,-2,-2,-2,0r2,0xm34,-206r0,-3r0,3xm38,-201r0,-3r0,3xm24,-214v2,0,1,-2,0,-2r0,2xm27,-206r0,-3r0,3xm30,-202v1,0,2,-3,0,-3v-1,0,-1,3,0,3xm33,-199v0,0,2,-1,0,-1r0,1xm28,-199v0,0,2,-1,0,-1r0,1xm43,-171v2,-1,0,-3,0,-1r0,1xm29,-179r0,-3r0,3xm43,-152r0,-2v-2,0,-1,2,0,2xm34,-98r0,-3r0,3xm32,-98r0,-3r0,3xm168,-114v0,0,0,2,-1,2v0,0,0,-2,1,-2xm125,-133v39,-9,51,29,34,57v-9,1,-12,2,-16,8r3,0v0,6,-6,7,-11,5v4,-13,12,-19,12,-41v0,-8,-4,-12,-13,-12v-13,7,-5,15,-14,23v-4,0,-16,0,-13,-9v-1,-9,10,-27,18,-31xm126,-103r0,2r0,-2xm154,-68v0,2,-2,1,-3,1v0,-1,2,-1,3,-1xm150,-69r0,2r0,-2xm150,-55v2,0,1,2,0,2r0,-2xm108,-21r22,-36v7,3,12,-2,17,-1v-4,14,-8,28,-21,34v0,7,-13,1,-18,3xm155,0v0,1,0,1,-1,1xm127,-24v1,0,1,0,1,1xm163,-11v4,14,-12,9,-22,12v1,-1,5,-2,2,-3v-6,3,-12,-2,-18,1v0,-3,5,-1,3,-6r-10,0v7,5,-2,6,-6,9v-6,-1,-5,-11,-5,-20v12,-1,32,4,37,-4v-1,7,9,3,14,4v5,-5,7,2,7,7r-2,0xm136,0v0,1,0,1,-1,1xm129,1v0,-1,1,-1,2,-1v0,1,-1,1,-2,1xm125,-3v-2,1,1,3,-3,3v0,-2,2,-2,3,-3xm151,-111v4,0,3,-1,0,-1r0,1xm147,-111v0,0,2,0,2,-1v0,0,-2,0,-2,1xm161,-86v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm149,-87r0,-3r0,3xm150,-77v1,0,4,-1,1,-1xm120,-100r0,-2r0,2xm160,-15r0,-2v-2,0,-1,2,0,2xm150,-12r0,-3r0,3xm157,-4v1,0,2,-3,0,-3v-2,0,-1,3,0,3xm129,-30r0,-2r0,2xm124,-32r0,-3r0,3xm118,-36r0,2r0,-2xm135,-15r0,-2v-2,0,-1,2,0,2xm122,-22r0,-3r0,3xm132,-11v0,-2,-2,-6,-2,-2v1,1,2,1,2,2xm117,-24v2,0,5,-1,1,-1xm129,-11r0,-2r0,2xm129,-10v1,0,1,0,1,-1xm131,-7r0,-3r0,3xm122,-15v0,2,3,0,1,0r-1,0xm125,-12v0,-1,0,-1,-1,-1xm124,-8r0,-3r0,3xm118,-13v2,-1,0,-3,0,-1r0,1xm115,-15r0,-2v-2,0,-1,2,0,2xm118,-10v0,2,3,0,1,0r-1,0xm111,-14v0,0,2,-1,0,-1r0,1xm118,-2v0,-2,-2,-6,-2,-2v0,2,2,0,2,2xm112,-8r0,-3r0,3xm132,-13r0,1r0,-1xm118,-4r0,1r0,-1xm163,-228v2,4,-20,24,-7,26v-12,3,-22,14,-31,36v2,1,3,2,4,4v-3,1,-18,6,-14,15r5,0v-23,13,-30,52,-51,69v-9,11,-13,15,-6,22v-3,-1,-10,4,-4,6v-11,-2,-34,46,-37,47v-6,0,-13,5,-23,4v2,-11,7,-12,14,-24r96,-155v14,-10,12,-19,32,-50r22,0xm93,-101v-1,4,-3,3,-5,0r5,0xm76,-72v0,2,-1,2,-3,2v-2,0,-2,0,-2,-2v0,-1,0,-2,2,-2v2,0,3,1,3,2xm52,-36v-2,3,-4,4,-6,0r6,0xm30,-27v2,0,5,-4,0,-4v-4,0,-1,4,0,4","w":170},"\u00bc":{"d":"40,-232v1,0,1,0,1,1xm41,-230r0,2r0,-2xm33,-230v2,1,0,3,0,1r0,-1xm44,-219r0,3r0,-3xm25,-205v2,0,1,3,0,3v-1,0,-2,-3,0,-3xm13,-215v1,0,1,2,0,2r0,-2xm14,-206v-4,1,-5,-1,-3,-4xm47,-159r0,2r0,-2xm46,-196v-4,19,-2,60,-2,82v1,-1,2,-3,2,0v-1,11,-7,19,-21,16r3,-104v-6,-4,2,-9,-2,-12v-4,0,-7,15,-11,4v3,-2,1,-5,0,-8v1,-1,5,12,5,2v0,-10,12,-7,17,-12v0,4,1,3,4,2v2,0,2,-1,3,-1v-2,10,0,26,0,34xm27,-221v0,-1,0,-5,-1,-2v0,1,0,2,1,2xm27,-219v-1,0,-2,-2,-2,0r2,0xm34,-206r0,-3r0,3xm38,-201r0,-3r0,3xm24,-214v2,0,1,-2,0,-2r0,2xm27,-206r0,-3r0,3xm30,-205r0,3v1,0,2,-3,0,-3xm33,-199v0,0,2,-1,0,-1r0,1xm28,-199v0,0,2,-1,0,-1r0,1xm43,-171v2,-1,0,-3,0,-1r0,1xm29,-179r0,-3r0,3xm43,-152r0,-2v-2,0,-1,2,0,2xm34,-98r0,-3r0,3xm32,-98r0,-3r0,3xm164,-228v1,3,-20,24,-7,26v-12,3,-22,14,-31,36v1,1,4,1,3,4v-3,1,-18,6,-14,15r5,0v-23,14,-31,49,-50,69v-8,9,-17,17,-6,20v1,4,-14,2,-5,8v-11,-2,-34,46,-37,47v-6,0,-13,5,-23,4v2,-11,7,-12,14,-24r96,-155v14,-10,12,-19,32,-50r23,0xm94,-101v-2,3,-4,4,-6,0r6,0xm76,-72v0,2,0,2,-2,2v-2,0,-3,0,-3,-2v0,-1,1,-2,3,-2v2,0,2,1,2,2xm52,-36v-2,3,-4,4,-5,0r5,0xm31,-27v1,0,4,-4,0,-4v-5,0,-2,4,0,4xm149,-136r0,3r0,-3xm156,-85v2,0,1,3,0,3v-1,0,-2,-3,0,-3xm166,-53r0,1r0,-1xm147,-133v7,15,3,53,2,75v0,6,5,10,13,9v3,22,-20,11,-12,41v-2,2,-3,8,-8,7r2,-2r-11,0v1,-6,-2,-16,2,-19v-9,-1,2,-51,-7,-62v6,0,4,0,2,-7r-1,-2v1,9,-15,27,-13,42r13,0v-1,6,3,17,-4,17v-9,0,-18,-1,-26,-2v-2,-40,23,-63,32,-97r16,0xm157,-32v-1,2,-3,0,-1,0r1,0xm134,-1v2,1,1,1,0,2v-1,-1,-1,-1,0,-2xm103,-30v-3,0,-6,0,-6,-3v4,0,5,1,6,3xm139,-131r0,-2r0,2xm134,-131r0,-2r0,2xm131,-122r3,-2xm135,-120v1,0,1,0,1,-1xm134,-120r0,-3r0,3xm142,-94v1,0,1,0,1,-1xm138,-94v2,0,1,-3,0,-3v-1,0,-2,3,0,3xm130,-95r0,-3v-1,1,-2,3,0,3xm135,-89r0,-1r0,1xm125,-98v-1,1,-2,0,-2,2v1,0,2,-1,2,-2xm139,-56v2,0,1,-2,0,-2r0,2xm142,-19r0,-3r0,3xm134,-25v0,0,1,2,1,0r-1,0xm135,-14v2,0,1,-3,0,-3v-1,0,-2,3,0,3xm135,-8v2,-1,0,-3,0,-1r0,1","w":170},"\u00be":{"d":"60,-217v1,0,2,3,0,3v-2,0,-1,-3,0,-3xm28,-233v2,16,-6,22,-6,35v-7,0,-22,2,-14,-5v-5,-6,6,-33,20,-30xm61,-154v2,0,1,2,0,2r0,-2xm48,-169v18,9,18,61,-4,67r0,-3v-1,1,0,3,-2,3v-2,-6,-5,-2,-9,1v1,-22,14,-33,7,-62v-8,7,-16,-5,-16,-13v11,-6,17,-5,17,-22v0,-22,-18,-16,-7,-38v25,3,23,30,25,53xm22,-131v1,0,1,0,1,1xm42,-101r0,3r0,-3xm19,-138v3,12,16,21,11,37v-10,1,-14,-2,-22,-10r-4,-27r15,0xm34,-98v1,-1,5,-1,2,0r-2,0xm50,-211r0,-3r0,3xm44,-211r0,-3r0,3xm37,-215v1,0,2,-3,0,-3v-2,0,-1,3,0,3xm45,-208r0,-2r0,2xm45,-189v0,0,2,-1,0,-1r0,1xm44,-186r0,-3r0,3xm15,-200r0,-3r0,3xm41,-173v2,-1,0,-5,-1,-2v0,0,0,2,1,2xm33,-180r0,3r0,-3xm12,-199r0,-2r0,2xm36,-173v1,-1,2,-3,0,-3r0,3xm36,-168v0,3,2,2,3,1v-2,0,-2,-2,-2,-6v-1,4,-1,5,-1,5xm34,-171v0,-3,-2,-4,-4,-4v0,3,2,4,4,4xm27,-173v2,-1,0,-3,-1,-3xm45,-126r0,-3r0,3xm41,-121v0,2,3,0,1,0r-1,0xm45,-114r0,-2v-2,0,-1,2,0,2xm40,-116r0,-3r0,3xm47,-106r0,-3r0,3xm37,-112v1,-1,2,-3,0,-3r0,3xm36,-109r0,-2r0,2xm38,-108v-1,0,-3,1,-1,1xm14,-130r-1,0r1,0xm11,-124v1,-1,1,-1,0,-2r0,2xm18,-111r0,-3r0,3xm12,-116v1,-1,1,-2,0,-3r0,3xm8,-117r0,-3r0,3xm12,-111r0,-3r0,3xm164,-228v1,3,-20,24,-7,26v-12,3,-22,14,-31,36v1,1,4,1,3,4v-3,1,-18,6,-14,15r5,0v-23,14,-31,49,-50,69v-8,9,-17,17,-6,20v1,4,-14,2,-5,8v-11,-2,-34,46,-37,47v-6,0,-13,5,-23,4v2,-11,7,-12,14,-24r96,-155v14,-10,12,-19,32,-50r23,0xm94,-101v-2,3,-4,4,-6,0r6,0xm76,-72v0,2,0,2,-2,2v-2,0,-3,0,-3,-2v0,-1,1,-2,3,-2v2,0,2,1,2,2xm52,-36v-2,3,-4,4,-5,0r5,0xm31,-27v1,0,4,-4,0,-4v-5,0,-2,4,0,4xm149,-136r0,3r0,-3xm156,-85v2,0,1,3,0,3v-1,0,-2,-3,0,-3xm166,-53r0,1r0,-1xm147,-133v7,15,3,53,2,75v0,6,5,10,13,9v3,22,-20,11,-12,41v-2,2,-3,8,-8,7r2,-2r-11,0v1,-6,-2,-16,2,-19v-9,-1,2,-51,-7,-62v6,0,4,0,2,-7r-1,-2v1,9,-15,27,-13,42r13,0v-1,6,3,17,-4,17v-9,0,-18,-1,-26,-2v-2,-40,23,-63,32,-97r16,0xm157,-32v-1,2,-3,0,-1,0r1,0xm134,-1v2,1,1,1,0,2v-1,-1,-1,-1,0,-2xm103,-30v-3,0,-6,0,-6,-3v4,0,5,1,6,3xm139,-131r0,-2r0,2xm134,-131r0,-2r0,2xm131,-122r3,-2xm135,-120v1,0,1,0,1,-1xm134,-120r0,-3r0,3xm142,-94v1,0,1,0,1,-1xm138,-94v2,0,1,-3,0,-3v-1,0,-2,3,0,3xm130,-95r0,-3v-1,1,-2,3,0,3xm135,-89r0,-1r0,1xm125,-98v-1,1,-2,0,-2,2v1,0,2,-1,2,-2xm139,-56v2,0,1,-2,0,-2r0,2xm142,-19r0,-3r0,3xm134,-25v0,0,1,2,1,0r-1,0xm135,-14v2,0,1,-3,0,-3v-1,0,-2,3,0,3xm135,-8v2,-1,0,-3,0,-1r0,1","w":170},"\u0141":{"d":"69,-221v1,-1,2,-2,2,1xm66,-202r0,-6v2,2,1,4,0,6xm35,-230v3,-1,3,1,3,4v0,2,-2,4,-3,4r0,-8xm66,-193v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm39,-217v0,1,-2,3,-2,1v0,-1,1,-1,2,-1xm62,-191v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm68,-182v3,1,1,6,-1,3v0,-1,0,-2,1,-3xm53,-197v2,0,1,3,0,4v-2,-1,-3,-3,0,-4xm65,-186v-1,2,-5,11,-3,1v1,-1,2,-1,3,-1xm43,-183v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm39,-173v-2,0,-2,-4,0,-5v1,2,1,4,0,5xm54,-173v2,-6,-16,-15,-14,-22r-3,0v-1,-8,11,-24,5,-33r11,0v1,2,-5,4,-1,4v4,0,6,-2,7,-6v6,1,9,4,9,10v-12,-4,1,17,-9,18v2,-5,-2,-6,-8,-6v-2,3,-1,6,2,9v-3,-2,-6,-1,-9,2v12,12,11,7,18,24r4,-2r0,22v4,-10,31,-13,43,-9v-5,1,-20,7,-20,15r6,0v-14,5,-22,16,-34,29r3,0v-8,12,12,23,0,34v6,10,-2,34,5,44r-35,0v7,-6,2,-34,3,-53v-5,9,-22,7,-36,7v11,-14,33,-27,36,-43r5,1v1,-7,0,-16,-7,-10v8,-8,4,-21,3,-32v6,-4,8,6,15,4v-2,-3,-8,-8,1,-7xm35,-153v1,1,2,2,2,5v-1,-2,-2,-2,-2,-5xm135,-40v1,3,-3,2,-5,2v1,-2,3,-2,5,-2xm69,-81v1,-1,2,-2,2,1xm128,-15v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm68,-53v2,1,4,2,0,2r0,-2xm37,-33v9,-5,34,-1,43,-3v15,-2,44,3,48,12v-4,0,-5,25,-11,24v-23,0,-49,-3,-70,-1r1,1v-1,-4,-13,-2,-13,-9r0,-27xm35,0v0,-1,4,-2,4,0v-1,1,-3,1,-4,0xm59,-222v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm57,-215v-3,0,-7,-1,-7,2v3,0,6,-1,7,-2xm46,-199v2,-1,3,-4,0,-5v-3,1,-2,4,0,5xm57,-166v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm61,-160v3,0,3,-6,0,-6r0,6xm55,-162v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm50,-158v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm49,-154r-3,15v5,1,9,-8,6,-13xm53,-140v-1,0,-2,1,-2,2xm46,-133v1,-1,3,-2,0,-2r0,2xm50,-93v4,0,2,-5,0,-1r0,1xm39,-91v3,-1,4,-4,0,-4r0,4xm90,-31v1,2,8,0,3,-1xm42,-80v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm113,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm57,-51v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm59,-44v2,0,4,0,3,-2v-2,0,-4,0,-3,2xm55,-46v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm93,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm42,-49r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm77,0v3,0,2,-4,0,-5v-2,1,-2,4,0,5","w":132},"\u0142":{"d":"72,-200v-5,1,-3,-4,-3,-7v2,0,3,3,3,7xm84,-192v9,4,1,20,-5,14v0,-1,2,-5,5,-14xm40,-229v-1,3,2,9,-2,9v1,-3,-2,-9,2,-9xm58,-205v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm86,-174r-2,8v1,-3,-2,-9,2,-8xm71,-181v3,1,2,4,0,5v-2,-1,-3,-4,0,-5xm25,-181v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm5,-180v0,-9,9,-16,20,-14v-1,2,-7,8,-4,13v-5,-4,-11,0,-16,1xm136,-42v1,4,-2,7,-4,3v1,-2,2,-3,4,-3xm12,-161v-6,-3,-18,0,-24,2v-1,-18,10,-19,18,-11v5,-8,35,-1,30,-17v3,-7,-1,-11,9,-24v-10,-2,3,-5,1,-16v13,-2,23,-1,24,7r4,0v1,2,-12,27,-12,20v1,-5,-6,-9,-9,-5v2,2,7,11,3,16v5,-1,6,2,5,6v2,-4,4,-5,8,-6v1,8,-14,13,1,17v1,5,-2,14,1,17v5,-9,30,-10,41,-7v-5,1,-20,7,-20,15r5,0v-12,6,-22,15,-32,29v3,12,7,21,5,36v2,-1,4,-2,5,1v-5,1,-4,9,-4,16v13,2,-4,36,22,28v0,1,34,-1,37,11v-4,14,-8,22,-11,26v-24,-1,-44,2,-59,-5v-13,4,-12,1,-22,6r0,-37v8,-1,22,4,24,-4r-24,0r2,-53v-5,9,-22,7,-36,7v12,-14,28,-25,37,-43r3,1v-5,-3,-4,-30,-14,-27v3,-16,-9,-7,-18,-10r0,4xm3,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm130,-18v1,1,4,4,0,3r0,-3xm62,-218v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm66,-213v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm56,-209v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm58,-172v0,-3,-2,-5,-7,-7v0,5,0,7,7,7xm49,-168v2,0,3,-3,0,-4v0,-1,-1,-2,-2,-2v-5,2,1,4,2,6xm34,-168v5,-1,7,-5,0,-4r0,4xm14,-187v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm45,-148v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm-8,-161v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm44,-93v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm71,-46v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm66,-37v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm49,-172v0,1,-1,2,-2,2v0,-1,1,-2,2,-2","w":135},"\u017d":{"d":"96,-230v2,1,1,3,0,4v-2,0,-1,-3,0,-4xm91,-228v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm87,-228v-2,2,-8,9,-6,5v1,-2,3,-4,-1,-3v-3,0,-4,1,-6,3v0,-6,7,-5,13,-5xm87,-219v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm94,-210v-2,0,-4,0,-5,-2v2,0,6,-1,5,2xm69,-223v0,-2,2,-4,2,-1xm89,-208v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm107,-223v-5,18,-10,46,-27,52v-1,-9,15,-12,5,-24v5,-1,8,-2,11,-5r-7,0v8,-10,7,-15,18,-23xm76,-212v0,2,1,5,-2,4xm71,-212v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm63,-219v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm83,-201v-2,0,-7,4,-7,0r7,0xm67,-204v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm41,-217v4,-3,18,-21,22,-4v-4,0,-6,-1,-9,2v2,11,10,7,13,9r-4,9v-3,-2,-4,-9,-12,-7v0,-2,-1,-5,-1,-9r-9,0xm77,-197v0,4,-4,9,-10,9v-1,-7,1,-9,10,-9xm83,-186v-3,0,-8,3,-9,1v1,-4,4,-4,9,-1xm52,-204v1,0,1,1,1,2xm91,-164v2,1,2,2,0,3v-1,-1,-1,-2,0,-3xm38,-210v8,-2,3,5,3,9v-7,-4,-11,1,-24,0v0,-2,1,-7,-1,-7v-4,-1,-4,5,-6,7r0,-28v14,2,18,-4,31,-5r-7,4v5,2,7,5,7,9v-6,-1,-2,7,-3,11xm61,-171v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm81,-139v0,-2,3,0,1,0r-1,0xm74,-108v-19,19,-18,49,-33,72r-36,0v2,-13,15,-7,9,-19v8,-24,20,-67,38,-87v-2,-1,-3,-2,-3,-4v12,4,4,-9,12,-11v-3,0,-6,-1,-8,2r0,-9v4,6,13,1,12,-8v0,-4,-5,-5,-2,-9v3,1,8,4,5,10v4,0,5,0,8,-2v-4,7,4,9,-2,18v13,3,11,-16,17,-24v9,11,-15,24,-2,33v-9,3,-19,8,-10,13v-8,2,-9,19,-5,25xm56,-62v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm47,-38v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm96,0v-29,2,-54,-13,-71,0r-20,0r0,-31v11,-2,55,4,84,-5v-1,6,8,2,12,3r1,-5v8,4,2,20,3,33v-6,-1,-14,1,-9,5xm36,-2v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm3,-2v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm56,-221v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm34,-221v2,-1,5,-6,0,-5r0,5xm30,-223v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm32,-210v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm25,-212v4,0,5,-3,5,-7v-2,2,-4,4,-5,7xm17,-223v1,1,1,3,1,0r-1,0xm30,-204v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm71,-159v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm18,-212v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm67,-161v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm18,-206v2,0,6,1,5,-2xm69,-155v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm71,-148v2,0,4,0,3,-3xm65,-153v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm70,-140v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm63,-139v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm58,-138v1,1,0,-6,0,-6v-1,3,-1,3,0,6xm50,-131r0,-4v-2,0,-1,4,0,4xm63,-115v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm52,-120v1,-4,-2,-4,-2,-1v0,1,1,1,2,1xm47,-121v1,-2,3,-2,3,-5v-2,1,-4,1,-3,5xm27,-73v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm25,-53v2,0,2,0,2,-2xm18,-53v4,1,3,-2,3,-5xm21,-46v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm7,-22v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm10,-2v3,0,8,2,7,-3v-3,0,-5,1,-7,3xm58,-254v8,-13,7,-35,32,-31v-6,9,-21,59,-41,43v-2,0,-23,-40,-24,-43v24,-8,22,25,33,31xm23,-278v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm34,-263v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm30,-263v2,1,0,3,0,1r0,-1xm41,-246v1,0,3,1,1,1","w":112},"\u017e":{"d":"58,-202v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm51,-185v-3,2,-7,1,-10,0v1,-2,8,-2,10,0xm90,-209v10,1,16,-14,20,-11v-1,12,-6,22,-4,35v2,-4,6,-5,8,0v0,8,-10,4,-15,4v1,18,-10,25,-7,38v-14,4,-9,16,-17,30v2,0,3,2,3,6v-5,0,-8,2,-8,9v2,11,-12,20,-12,31v0,3,25,14,22,19v-14,-1,-39,-3,-31,13v8,-3,33,3,44,-2v3,4,10,0,14,-1v3,12,7,33,-8,33v1,4,0,7,-5,6v-18,-2,-53,-15,-64,-1v-7,0,-19,1,-22,-2r2,-32r11,0r-11,-3v2,-5,2,-7,2,-13v-2,0,-6,1,-6,-1v29,-41,27,-47,48,-95v9,1,-1,-22,8,-15v10,-2,0,-16,3,-22v-2,2,-4,8,-9,9v0,-7,0,-14,-2,-20v5,2,8,0,8,-5v2,-8,-10,-6,-15,-4v-6,6,-24,5,-33,3r0,-27v13,3,19,-4,30,-5v3,27,14,-12,21,3v10,1,26,-5,34,3v-1,3,-7,9,-9,17xm75,-46v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm65,-46v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm15,-85v1,-1,4,-1,2,1xm12,-74v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm10,-67v1,2,-3,6,-2,2xm4,-61v1,2,-1,2,-3,2xm-3,-56v0,2,0,2,-2,2xm41,-2r0,2v-1,-1,-1,-1,0,-2xm-12,-50v-2,4,-5,5,-9,5v0,-5,4,-5,9,-5xm71,-216v3,0,2,-3,0,-4v-2,1,-3,4,0,4xm65,-213v-1,-1,-4,-5,-3,0r3,0xm45,-218v0,2,3,0,1,0r-1,0xm39,-221v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm52,-209v0,-3,-2,-4,-7,-4v-1,5,3,4,7,4xm78,-172v2,-3,1,-5,0,-9v-3,4,-2,6,0,9xm32,-211v1,-1,3,-2,0,-2r0,2xm23,-218v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm25,-204v1,0,1,-1,1,-2xm78,-146v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm60,-154v2,1,2,-1,2,-3xm51,-122v2,-1,4,-2,0,-2r0,2xm63,-53v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm68,-49v1,-1,1,-1,0,-2v-2,1,-2,1,0,2xm62,-48v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm34,-35v-1,-1,-6,-2,-7,0v2,1,5,2,7,0xm17,-4v3,0,5,0,4,-3xm59,-254v8,-13,7,-35,32,-31v-6,9,-21,59,-41,43v-2,0,-23,-40,-24,-43v24,-8,22,25,33,31xm24,-278v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm35,-263v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm31,-263v2,1,0,3,0,1r0,-1xm42,-246v1,0,3,1,1,1","w":117},"\u2260":{"d":"105,-133v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm96,-161v0,3,-17,22,-9,26v12,-5,15,2,13,13r-30,0v-3,4,-6,9,-9,16v15,1,30,-2,41,3v-2,6,2,12,-2,15r-51,-1v-3,3,-4,11,3,9v-7,4,-14,10,-17,18r-23,-1r17,-26r-20,0r0,-14v22,3,34,-5,43,-19r-34,2r2,-2r-11,0v0,-6,0,-11,-1,-15r51,0v5,-8,5,-7,14,-24r23,0xm75,-84v-1,1,-4,0,-2,0r2,0xm12,-119v0,1,0,1,-1,1xm88,-132v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm79,-126r0,-2v-1,1,-1,1,0,2xm50,-134v2,-1,0,-3,0,-1r0,1xm28,-133v0,-1,2,-2,0,-2r0,2xm25,-126v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm19,-126v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm12,-126v1,-1,3,-2,0,-3v-1,1,-1,2,0,3","w":107},"\u2264":{"d":"28,-121v12,15,69,23,51,42v-27,-7,-44,-21,-67,-32v-4,-5,-6,-19,9,-21v20,-10,38,-22,60,-30v0,5,2,8,5,9v-14,15,-36,21,-58,32xm9,-67v13,-2,26,2,31,-4r1,4r43,0v2,4,3,14,0,19v-27,-1,-52,5,-75,0r0,-19xm41,-131r0,1r0,-1xm39,-132r0,-1r0,1xm80,-86v0,0,2,-1,0,-1r0,1xm37,-128r1,0r-1,0xm63,-101v0,0,1,2,1,0r-1,0xm24,-119r0,0r0,0xm15,-127r0,0r0,0xm19,-119r0,0r0,0xm13,-124r0,-1r0,1xm15,-123r0,1r0,-1xm12,-120r0,0r0,0xm10,-117v3,0,4,-1,2,-3xm12,-115r0,0r0,0xm31,-67v1,1,3,1,3,-1v-1,-1,-3,-1,-3,1","w":92},"\u2265":{"d":"65,-121v-20,-11,-42,-15,-57,-32v7,-16,15,-5,42,9r34,18v-3,34,-35,22,-54,44v-8,-4,-16,9,-21,-1v2,-20,44,-24,56,-38xm9,-48v-2,-6,-2,-11,0,-19r43,0v3,-6,22,2,33,0r0,19v-27,5,-46,-2,-76,0xm78,-127r0,0r0,0xm80,-124r0,-1r0,1xm82,-120r-1,0r1,0xm78,-123r0,1r0,-1xm82,-117v1,-2,-1,-4,-2,-1xm81,-115r0,-1r0,1xm75,-119r-1,0r1,0xm69,-119r0,-1r0,1xm55,-132v0,-1,0,-1,-1,-1xm56,-128r0,0r0,0xm52,-130r0,-1r0,1xm30,-100v0,0,2,-1,0,-1r0,1xm59,-68v1,3,3,-1,3,-1xm13,-87r0,0r0,0","w":92},"\u222b":{"d":"41,-217v1,4,-1,8,-3,4xm23,-195v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm59,-211v-8,-6,-18,-2,-18,-17v6,-1,14,-4,16,2v0,-4,2,-9,5,-6v1,3,1,7,3,8v-3,-11,4,-12,14,-11v2,13,-4,28,-3,33v-18,-6,-13,26,-22,51v8,40,0,104,2,156v2,16,-10,16,-11,23v0,17,-28,2,-29,21r-7,0r0,-29v29,-24,14,-112,14,-160v13,-5,-2,-25,0,-35v-1,-10,7,-25,5,-36v1,12,12,3,22,7v6,0,9,-3,9,-7xm57,-199v1,-1,4,-4,0,-3r0,3xm58,-194v2,-1,0,-1,-1,-2xm50,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm54,-118v1,0,1,-3,0,-4v-1,1,-1,3,0,4xm30,-136v0,-2,2,-5,0,-6v-3,1,-2,4,0,6xm34,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm30,-124r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm34,-118v1,2,2,3,2,-1xm27,-118v3,1,3,-1,3,-4v-2,1,-3,2,-3,4xm32,-35v0,3,3,0,1,0r-1,0xm24,-5v2,-1,2,-1,0,-2r0,2xm44,25v1,-1,1,-2,0,-3v-1,1,0,2,0,3xm29,-139v1,0,3,0,1,1","w":87},"\u2248":{"d":"89,-147v6,0,8,3,10,9v-4,4,-13,17,-16,22v-36,6,-43,-29,-66,4v-10,-17,8,-43,31,-36v0,3,7,9,23,16v7,-6,8,-1,18,-15xm89,-114v6,1,9,2,10,8v-5,4,-13,18,-16,23v-36,5,-42,-30,-66,4v-10,-16,8,-46,31,-36v0,3,7,8,23,15v8,-4,8,-1,18,-14xm47,-145r0,-3v-1,1,-1,2,0,3xm47,-112r0,-3v-1,1,-1,2,0,3","w":109},"\u22f2":{"d":"89,-147v6,0,8,3,10,9v-4,4,-13,17,-16,22v-36,6,-43,-29,-66,4v-10,-17,8,-43,31,-36v0,3,7,9,23,16v7,-6,8,-1,18,-15xm89,-114v6,1,9,2,10,8v-5,4,-13,18,-16,23v-36,5,-42,-30,-66,4v-10,-16,8,-46,31,-36v0,3,7,8,23,15v8,-4,8,-1,18,-14xm47,-145r0,-3v-1,1,-1,2,0,3xm47,-112r0,-3v-1,1,-1,2,0,3","w":109},"\u25ca":{"d":"521,-34r-369,0r0,-165r369,0r0,165xm82,-220v64,0,68,101,38,139v4,-15,8,-41,1,-53v10,-8,1,-49,-9,-42v-6,-4,-1,-25,-9,-27v-4,1,-2,9,-1,14v-2,-1,-4,-3,-4,-1v0,0,1,3,2,7v-7,-2,-8,2,-8,8v-13,0,-47,3,-56,-1v-18,-1,-25,23,-24,44v-7,-24,1,-40,8,-65v7,2,19,2,14,-8v8,-1,9,0,9,-9v0,-4,13,-6,39,-6xm76,-113v11,0,29,-6,29,8v2,3,5,4,5,5v-11,-4,-22,-1,-14,8v-9,5,-22,-7,-20,-21xm41,-136v-14,-7,12,-22,5,-12v-8,4,1,9,-5,12xm56,-79v7,-9,3,-21,-14,-17v-11,-1,-15,-4,-1,-6v-3,-6,-18,0,-17,-11v16,-13,17,-10,43,-2v-3,10,-1,29,-11,36xm6,-131v9,-1,10,20,6,27v-4,-12,-6,-19,-6,-27xm51,-32v21,26,51,-18,62,-35v8,18,-39,51,-52,51v-19,0,-46,-38,-45,-57v11,0,30,-15,36,-11v0,1,-1,3,-2,6v11,8,13,11,23,11v-1,3,-5,6,-13,8v5,3,31,6,31,-2v1,-4,-8,-17,-8,-18v13,-2,28,26,13,32v-11,-8,-17,-1,-36,2v2,2,7,2,11,2v2,13,-13,9,-20,11xm520,-35r0,-163r-367,0r0,163r367,0xm29,-192v-8,-5,-11,7,-3,4v2,0,3,-1,3,-4xm16,-162v-2,-2,-7,4,-3,4v1,-1,2,-3,3,-4xm52,-66r-5,-10v-6,12,15,20,5,10xm78,-53v-12,0,-21,-1,-29,-3v6,10,15,8,29,3xm181,-170v-8,0,-8,8,-12,11v-4,-3,-4,-10,-10,-11r0,-22r354,0r0,110v-4,6,-6,3,-11,0v1,5,-2,14,2,16r0,-13v3,6,5,6,8,0r1,38r-354,0r2,-122r8,11r8,-11r0,23r4,0r0,-30xm471,-140v21,7,20,-21,12,-30r-12,0r0,30xm417,-140v0,-5,-8,-2,-12,-3r0,-9v3,-1,9,2,8,-3r-7,0r0,-12v4,-1,12,3,11,-3r-15,0r0,30r15,0xm484,-67r0,-15r-9,0r0,15r9,0xm461,-67v3,-1,9,2,8,-2v-8,2,-6,-6,-6,-12v2,0,6,1,6,-1r-8,0r0,15xm452,-67v0,0,2,0,2,-1v0,0,-2,0,-2,1xm361,-167v3,0,8,2,7,-3r-17,0r0,4v2,-1,4,-1,6,0r0,26r4,0r0,-27xm429,-67r0,-6r-20,0r0,-15v7,0,17,3,14,-7r-14,0r0,-21r20,0r0,-6r-27,0r0,55r27,0xm323,-162v5,7,5,19,14,22r0,-30r-4,0r0,22v-5,-7,-5,-19,-14,-22r0,30r4,0r0,-22xm304,-140r0,-30r-3,0r0,30r3,0xm287,-152r0,-18r-16,0r0,30v7,2,3,-7,4,-11v4,4,4,11,12,11r-8,-12r8,0xm340,-89r0,-33r-30,0r0,55r7,0r0,-22r23,0xm258,-152r0,-18r-16,0r0,30v6,1,2,-8,3,-12r13,0xm229,-140r0,-16r-13,0r0,-10v4,-1,13,3,11,-4r-15,0r0,18r13,0r0,9v-4,1,-13,-3,-12,3r16,0xm286,-122v-14,-2,-11,14,-16,21v-5,-7,-2,-22,-15,-21v6,12,15,31,12,55r6,0v-2,-26,3,-36,13,-55xm198,-140r0,-30r-3,0r0,30r3,0xm218,-116v6,-1,16,3,13,-6r-31,0v-2,8,6,6,12,6r0,49r6,0r0,-49xm482,-166v4,5,6,28,-7,23r0,-23r7,0xm482,-80v0,5,2,13,-5,11v0,-5,-2,-13,5,-11xm284,-155r-9,0r0,-11r9,0r0,11xm333,-95r-16,0r0,-20r16,0r0,20xm254,-155r-9,0r0,-11r9,0r0,11","w":529},"\u2044":{"d":"169,-228v2,4,-20,24,-7,26v-12,3,-22,14,-31,36v2,1,3,2,4,4v-3,1,-18,6,-14,15r5,0v-23,13,-30,52,-51,69v-9,11,-13,15,-6,22v-3,-1,-10,4,-4,6v-11,-2,-34,46,-37,47v-6,0,-13,5,-23,4v2,-11,7,-12,14,-24r96,-155v14,-10,12,-19,32,-50r22,0xm99,-101v-1,4,-3,3,-5,0r5,0xm82,-72v0,2,-1,2,-3,2v-2,0,-2,0,-2,-2v0,-1,0,-2,2,-2v2,0,3,1,3,2xm58,-36v-2,3,-4,4,-6,0r6,0xm36,-27v2,0,5,-4,0,-4v-4,0,-1,4,0,4","w":170},"\uf001":{"d":"43,-172v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-163v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm47,-155v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm-2,-175v2,2,-4,13,-5,6v0,-4,2,-6,5,-6xm44,-228v11,0,54,-13,54,12v0,8,-1,15,-3,18v-18,2,-43,-5,-54,4v-5,30,-2,50,-1,85r4,0r0,-24v2,-2,34,-5,41,-4v-1,9,-2,15,-5,19r5,0v0,17,-17,7,-27,16v-3,-2,-4,-5,-8,-5v-20,19,-10,64,-9,94v0,22,-24,2,-31,13v-9,-35,7,-97,-11,-128v6,14,-13,15,-6,4v-3,-14,12,-9,5,-23r-16,0v24,3,9,-21,26,-27r0,-52v14,-5,18,-1,32,-6r0,34v8,-3,2,-20,4,-30xm-9,-137v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-33,-148v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm43,-26v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm73,-226v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm50,-126v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm4,-144v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm21,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm145,-152v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm141,-20v1,35,-23,7,-33,20r0,-227v13,4,25,-8,31,-1xm111,-216v0,8,8,8,1,0r-1,0","w":146},"\uf002":{"d":"43,-172v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-163v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm47,-155v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm-2,-175v2,2,-4,13,-5,6v0,-4,2,-6,5,-6xm44,-228v11,0,54,-13,54,12v0,8,-1,15,-3,18v-18,2,-43,-5,-54,4v-5,30,-2,50,-1,85r4,0r0,-24v2,-2,34,-5,41,-4v-1,9,-2,15,-5,19r5,0v0,17,-17,7,-27,16v-3,-2,-4,-5,-8,-5v-20,19,-10,64,-9,94v0,22,-24,2,-31,13v-9,-35,7,-97,-11,-128v6,14,-13,15,-6,4v-3,-14,12,-9,5,-23r-16,0v24,3,9,-21,26,-27r0,-52v14,-5,18,-1,32,-6r0,34v8,-3,2,-20,4,-30xm-9,-137v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-33,-148v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm43,-26v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm73,-226v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm50,-126v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm4,-144v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm21,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm143,-200v-5,1,-3,-4,-3,-7v2,0,3,3,3,7xm155,-192v10,3,2,20,-4,14v0,-1,1,-5,4,-14xm112,-229v-1,3,2,9,-2,9v1,-3,-2,-9,2,-9xm129,-205v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm158,-174r-3,8v1,-3,-2,-9,3,-8xm142,-181v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm97,-181r0,2v-1,-1,-1,-1,0,-2xm76,-180v1,-9,9,-16,21,-14v-1,3,-6,7,-5,13v-5,-5,-11,0,-16,1xm207,-42v1,4,-2,7,-4,3v1,-2,2,-3,4,-3xm147,-65v3,15,-3,32,17,28v0,1,34,-2,37,11v-4,14,-8,22,-11,26v-24,-1,-44,2,-59,-5v-13,4,-11,0,-21,6r0,-37v8,-1,22,3,24,-4r-24,0v2,-22,-5,-48,6,-62v-9,0,-8,-20,-4,-27r4,1v-5,-4,-6,-30,-15,-27v3,-16,-8,-7,-18,-10v1,9,-17,0,-24,6v-1,-18,10,-19,18,-11v7,-8,25,-1,33,-13v-7,-2,4,-8,-3,-9v-2,-3,13,-17,5,-21v4,-2,6,-6,6,-14v13,-2,23,-1,24,7r3,0v1,1,-11,27,-11,20v1,-5,-6,-9,-9,-5v1,2,6,12,2,16v5,-1,6,2,5,6v2,-4,4,-5,8,-6v1,9,-14,12,1,17r0,28r13,-2v0,3,-21,21,-18,26v2,12,8,25,5,38v2,-1,4,-1,6,1v-6,1,-5,9,-5,16r5,0xm75,-159v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm201,-18v1,1,4,4,0,3r0,-3xm134,-218v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm138,-213v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm127,-209v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm130,-172v0,-3,-3,-5,-8,-7v-1,6,1,7,8,7xm120,-168v2,0,3,-3,0,-4v0,-1,-1,-2,-2,-2v-3,3,1,3,2,6xm105,-168v5,-1,7,-5,0,-4r0,4xm86,-187v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm116,-148v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm134,-124r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm125,-118r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm64,-161v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm115,-93v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm142,-46v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm138,-37v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm120,-172r-1,2v0,-1,0,-2,1,-2","w":207},"\u0131":{"d":"47,-152v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-20v1,35,-23,7,-33,20r0,-227v13,4,25,-8,31,-1xm13,-216v0,8,8,8,1,0r-1,0","w":50,"k":{"a":5}},"\u02d8":{"d":"65,-247v-3,2,-24,46,-31,21v0,-7,10,-19,7,-33r17,-2v0,8,2,13,7,14xm37,-247v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm24,-259v0,14,4,24,7,41v-26,1,-25,-18,-24,-42xm24,-249v2,0,3,-3,0,-4v-2,1,-3,3,0,4","w":65},"\u02d9":{"d":"36,-265v-9,8,1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm18,-239v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm15,-239v1,-1,3,-2,0,-3v-1,1,-1,2,0,3","w":41},"\u02da":{"d":"31,-240v24,-8,-16,-31,6,-34v16,-2,13,16,21,23v-5,14,-1,42,-22,39v-5,0,-8,-3,-8,-9v4,-7,13,-2,7,-18xm37,-248v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,2,1,3,2,2v1,1,2,0,2,-2xm15,-212v-16,-11,-17,-61,8,-61v13,6,-9,18,1,23v-4,8,1,23,0,36v-2,1,-5,1,-9,2","w":61},"\u02dd":{"d":"96,-272v-7,20,-8,54,-39,38v0,-7,0,-15,7,-15v1,-6,4,-12,0,-17v6,-5,19,-7,32,-6xm55,-249v3,1,1,6,-1,3v0,-1,0,-2,1,-3xm54,-272v-7,20,-8,54,-39,38v-4,-15,16,-20,6,-32v7,-5,19,-8,33,-6xm13,-249v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm81,-252v1,1,2,2,2,-1xm74,-232v2,1,3,-2,1,-2v-1,0,-1,1,-1,2xm40,-251v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm32,-232v2,1,3,-2,1,-2v-1,0,-1,1,-1,2","w":103},"\u02c7":{"d":"69,-250v8,-13,7,-35,32,-31v-6,9,-21,59,-41,43v-2,0,-23,-40,-24,-43v24,-8,22,25,33,31xm34,-274v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm45,-259v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm41,-259v2,1,0,3,0,1r0,-1xm52,-242v1,0,3,1,1,1","w":136}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * (C) Eduardo Recife, 2001  [www.misprintedtype.com ]
 */
Cufon.registerFont({"w":124,"face":{"font-family":"Dirty Ego","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"288","descent":"-72","bbox":"-45 -302.154 521 49","underline-thickness":"3.51562","underline-position":"-21.6211","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":61},"!":{"d":"45,-222v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm35,-224v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm37,-142v0,2,0,4,-2,3v0,-2,0,-4,2,-3xm37,-203v-4,24,-2,41,-7,61v10,13,-5,29,3,44v-2,7,-7,14,-2,20v-1,9,-19,20,-24,6v1,-48,-7,-104,-2,-148v7,2,35,-3,32,17xm40,-104v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm37,-36v-3,18,4,32,-15,36r2,-1v-3,-5,-13,-2,-19,-1r0,-32v13,-2,23,-2,32,-2xm11,0v1,-1,4,-1,5,0v-2,1,-4,1,-5,0xm5,-179v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm18,-65v2,-1,0,-3,0,-5v-2,1,-3,4,0,5xm9,-72v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm14,-65v2,-1,1,-4,0,-5v-2,1,-3,4,0,5","w":48},"\"":{"d":"38,-243v0,1,0,1,-1,1xm28,-242v0,-2,3,0,1,0r-1,0xm31,-205v-11,3,-7,-20,-8,-35r13,-1v-1,6,-3,14,-1,20r3,0v-6,-1,-4,12,-7,16xm16,-226v0,1,0,1,-1,1xm16,-239v-6,12,7,36,-11,35v-2,-4,-3,-15,-3,-35r5,0v-1,1,-1,1,0,2v0,-3,5,-2,9,-2xm27,-237v2,-1,0,-3,0,-1r0,1xm24,-237v2,-1,0,-3,0,-1r0,1xm9,-238v1,0,1,0,1,-1xm13,-220v0,-1,2,-4,-1,-3xm5,-214v2,-1,0,-3,0,-1r0,1","w":40},"#":{"d":"96,-226v0,2,1,5,-2,4xm90,-188v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm157,-97v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm143,-108r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm147,-97v0,-2,3,-1,4,-1v0,2,-3,1,-4,1xm113,-133v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm174,-97v0,26,-16,41,-28,17v4,0,9,-1,7,5v8,-3,9,-12,2,-16v4,-1,11,-3,19,-6xm134,-91v0,2,-4,3,-4,0v0,-2,4,-3,4,0xm149,-167v3,13,21,6,34,6v6,41,-39,26,-68,26v-15,0,-14,8,-17,4v-2,-8,-24,-3,-21,4v0,4,-2,14,-8,28v8,7,29,9,40,2v0,-6,5,-32,8,-34r26,2v-2,6,0,15,4,17v-10,1,-11,6,-7,13v-5,-1,-7,1,-4,4v-18,-1,-15,34,-44,21v-2,5,-8,5,-13,2v-23,1,-12,37,-23,49r-26,0v0,-13,15,-39,-3,-44v1,3,1,3,-1,4v-3,-1,-1,-4,0,-5v-5,-4,-19,0,-24,-5v-6,-34,29,-8,39,-29v15,-30,-7,-50,-30,-46v1,-9,9,-16,11,-6v5,-13,28,3,31,-19r7,-46r26,-4v2,32,-8,41,-5,62v5,-6,9,-4,11,2r21,0v10,2,14,-58,17,-61r28,-3v-2,16,-9,36,-1,47v-6,0,-8,3,-8,9xm143,-72v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm139,-60v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm121,-78v3,1,3,3,3,6v-2,-1,-6,-3,-3,-6xm128,-44v-2,-1,-5,-6,0,-5r0,5xm102,-42v2,-13,3,-36,19,-21v2,-6,13,1,12,4v-5,7,-14,21,-31,17xm90,-68v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm124,-35v3,0,0,3,0,1r0,-1xm20,-133v-2,-2,-5,-3,-9,-3v1,-6,6,-7,13,-6xm118,-35v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm83,-66v1,0,1,0,1,1xm113,-32v4,5,18,9,0,10r0,-10xm75,-68v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm98,-25v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm69,-52v3,0,0,3,0,1r0,-1xm126,-19v0,27,-9,15,-30,16r2,-16r28,0xm18,-97v0,-2,3,-1,4,-1v0,2,-3,1,-4,1xm60,-19v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm56,-19v1,22,-14,16,-29,20v-3,-27,10,-19,29,-20xm153,-218v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm83,-157v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm73,-123r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm45,-148v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm120,-83v-2,-10,-18,-2,-29,-3v5,7,20,1,29,3xm39,-154v-2,0,-1,5,0,6v2,-2,1,-4,0,-6xm44,-141v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm88,-91v-1,-2,-1,-5,-2,-2v0,1,1,2,2,2xm109,-63v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm117,-51v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm77,-87v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm79,-74v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm71,-76v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm40,-71v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm20,-89v0,-2,-3,-1,-4,-1v0,2,3,2,4,1xm35,-13v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm33,0v2,0,1,-3,0,-4v-2,1,-3,3,0,4","w":185},"$":{"d":"71,-215v1,1,1,3,0,4v-1,-1,-1,-3,0,-4xm63,-211v1,7,33,8,24,22v-6,5,-11,12,-18,16v-7,-4,-20,-16,-27,-14v-3,-9,-2,-28,-2,-42v4,1,14,-3,12,4v0,8,5,19,11,14xm43,-185v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm38,-162v-2,1,-4,1,-6,0v1,-1,5,-2,6,0xm58,-135v-2,2,-4,1,-6,0r6,0xm56,-33v34,-47,-30,-69,-51,-110v-4,-30,3,-70,31,-64v9,28,-20,46,3,66v5,8,35,28,39,36v2,-2,2,-4,5,-2v-7,4,-2,7,4,13v6,16,13,33,8,46r4,3v-13,20,-20,34,-41,40r0,-19r20,0v-7,-3,-22,1,-22,-9xm34,-39v0,-1,4,-2,4,0v-1,1,-3,1,-4,0xm9,-42v17,-17,25,15,43,11r0,4v-16,-1,-35,1,-49,-1v-2,-6,0,-8,6,-14xm52,-23v1,12,4,33,0,43r-12,0v0,-11,2,-34,-10,-25r0,-3v-7,0,-15,-5,-23,-15r45,0","w":101},"%":{"d":"160,-91v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm29,-192v1,1,3,2,0,3v-1,-1,-1,-2,0,-3xm31,-226v24,4,23,39,23,68v0,11,2,17,7,18v-3,2,-17,32,-28,28v-7,-6,-1,-16,4,-26v-3,-27,7,-55,-9,-69v1,-7,-2,-16,3,-19xm157,-53v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm128,-72v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm121,-116v40,-2,23,47,30,80v-4,13,-5,38,-22,36v-21,-7,9,-19,-1,-36r-4,0v19,-21,2,-58,-3,-80xm104,-148v-16,31,-49,85,-48,112v-16,10,-7,39,-37,34v23,-74,63,-132,90,-210v3,-8,11,-11,25,-11v1,7,-34,64,-30,75xm24,-165v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm157,-32v1,3,-2,2,-4,2xm24,-186v-9,15,-3,54,3,75v-42,0,-19,-59,-24,-94v-1,-10,9,-18,19,-18v3,13,-6,32,2,37xm33,-140v1,0,2,5,0,5v-3,0,-2,-5,0,-5xm98,-97v-2,-7,20,-24,22,-9v2,14,-11,20,-3,30v-5,24,0,45,0,74v-11,8,-18,-8,-19,-17r0,-78xm20,-142v2,0,1,-4,0,-4v-2,0,-3,4,0,4","w":162},"&":{"d":"73,-226v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm45,-190v-1,-1,-3,-2,0,-2r0,2xm40,-165r0,2r0,-2xm104,-47v9,5,15,16,20,22v0,15,-5,23,-15,23v-6,-5,-18,-14,-24,-15v-10,0,-19,20,-29,13v1,6,-3,0,-6,3r0,-31v27,-9,2,-37,-11,-50v-12,11,-10,42,6,48v-2,10,4,26,-4,30v-54,1,-39,-84,-17,-113v2,-11,-11,-43,-11,-53v0,-35,11,-52,34,-54v2,24,-15,37,-8,59v-2,1,-3,3,0,4r1,-2v5,31,16,10,22,0v4,-24,-6,-39,-11,-53v0,-5,2,-8,5,-8v32,2,36,17,36,55v-1,14,-19,40,-30,56v0,2,7,15,22,37v3,-1,7,-11,12,-30r23,0v4,12,-2,36,-15,59xm120,-39v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm39,-55v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm50,-1v0,2,-2,1,-3,1xm43,-137v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm121,-15v2,-2,3,-5,0,-8v-2,3,-1,6,0,8xm58,-8v2,-1,1,-4,0,-5v-2,1,-3,4,0,5","w":126},"'":{"d":"20,-259v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm20,-253v0,1,0,1,-1,1v0,-1,0,-1,1,-1xm5,-232r-3,-43r16,0v-1,14,0,30,-3,42xm16,-246v1,0,1,0,1,-1v-1,0,-1,0,-1,1","w":22,"k":{"S":9}},"(":{"d":"40,-166v1,1,3,2,0,3v-1,-1,-1,-2,0,-3xm33,-133v2,0,1,3,0,3v-2,0,-2,-3,0,-3xm66,-223v-6,2,-11,25,-19,33v7,8,-5,5,-7,21v-7,15,-2,29,-14,39v3,3,3,5,4,10v-4,1,-11,-2,-10,3v9,-2,8,5,10,10v-14,1,-10,3,-2,11v16,17,13,50,27,70v-3,0,-6,5,-1,4v11,0,10,14,1,18v-5,2,-8,5,-11,5v-16,-30,-37,-72,-35,-118v7,-2,-1,-9,8,-9r-2,4r7,-2v1,-3,-13,-17,-11,-20v2,-22,24,-119,55,-79xm33,-108v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm30,-101v0,-2,3,0,1,0r-1,0xm48,-70v2,0,2,1,0,1r0,-1xm59,-39v2,1,0,3,0,1r0,-1xm64,-26v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm17,-117v1,-1,2,-4,0,-4v-3,0,-2,3,0,4xm22,-110v0,-3,-3,-5,-5,-3v1,2,3,2,5,3xm35,-80v2,2,4,0,2,-2","w":72},")":{"d":"58,-176r-2,0r2,0xm11,-218v3,-13,22,-19,27,2v4,12,12,19,14,32v3,1,7,2,10,2v-11,3,-10,10,0,13v0,0,-14,13,-2,11r-2,5v11,-3,2,6,6,13v-7,4,2,17,-8,18v8,-5,-15,-12,-2,-11v0,-7,-6,-2,-10,-4v0,3,1,8,-2,8v-1,-7,-13,-38,-7,-49v-1,0,-5,4,-4,0v-2,-4,8,-3,5,-6v-12,6,-17,-24,-25,-34xm65,-117v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm51,-128v1,1,1,3,0,4v-1,-1,-1,-3,0,-4xm49,-122v0,1,-1,1,-2,1v0,-1,1,-1,2,-1xm42,-126v2,1,3,4,0,5r0,-5xm63,-104v1,1,3,2,0,3v-1,-1,-1,-2,0,-3xm48,-95v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm62,-106v1,6,-30,11,-14,17v0,1,0,2,-1,3v4,0,8,-15,15,-13v-4,3,-4,10,-4,11r5,-2v-5,34,-20,67,-37,90v0,-5,-16,-4,-15,-15v11,-15,20,-56,34,-87v-8,2,-4,-7,-5,-12v3,-1,4,7,6,2v-1,-6,5,-3,10,-5v4,5,3,6,-2,11r8,0xm51,-41v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm54,-146v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm47,-146v4,0,6,-7,5,-9v-4,3,-5,6,-5,9xm43,-150v1,-1,2,-1,0,-2v-1,1,-1,1,0,2xm51,-110v1,-1,1,-1,0,-2v-2,0,-1,2,0,2xm54,-101v-1,0,-3,-2,-3,0r3,0xm54,-83v1,1,2,3,2,0r-2,0xm54,-72v2,-7,-5,-9,-5,-2v2,0,5,1,5,2xm40,-84v2,2,4,0,2,-2xm42,-76v1,-1,1,-2,0,-3v-2,1,-2,2,0,3xm47,-65v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm52,-59v1,-4,-1,-4,-3,-2v1,1,1,2,3,2xm37,-56v1,-1,1,-2,0,-3v-2,1,-2,2,0,3","w":71},"*":{"d":"28,-180v7,1,17,-5,17,7v-3,2,-19,11,-5,12v-8,14,-10,13,-17,2v-7,7,-12,13,-17,1v0,-2,2,-5,6,-8v-11,-3,-12,-20,3,-14v4,0,1,-7,2,-10v9,-1,17,2,11,10xm7,-178v3,0,0,-3,0,-1r0,1","w":48},"+":{"d":"86,-134v10,26,-39,-1,-32,32v3,15,-8,14,-18,16v-1,-11,2,-26,-2,-34v-14,-3,-38,11,-30,-13v1,-2,26,2,32,-4v1,-14,1,-24,1,-29v9,1,15,-2,21,-3v-4,3,-4,3,0,6v-7,6,-5,14,-4,23v-1,-1,-1,-3,-1,0v-1,5,7,7,13,6v2,-2,12,1,20,0xm53,-116v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":92},",":{"d":"24,-26v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm2,28v8,-17,1,-25,1,-47v10,1,21,-4,20,10v-2,17,-2,35,-21,37","w":24},"-":{"d":"84,-118v-28,-1,-48,3,-75,0r0,-19v12,2,19,-6,28,0v3,-3,3,-5,4,0r43,0v2,4,2,14,0,19xm31,-138v1,2,3,2,3,-1","w":92,"k":{"y":23,"t":19,"f":-4,"Z":26,"Y":26,"X":30,"W":16,"V":19,"T":26,"S":14,"J":30,"A":19}},"\u2010":{"d":"84,-118v-28,-1,-48,3,-75,0r0,-19v12,2,19,-6,28,0v3,-3,3,-5,4,0r43,0v2,4,2,14,0,19xm31,-138v1,2,3,2,3,-1","w":92},".":{"d":"36,-26v-9,8,1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm18,0v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm15,0v1,-1,3,-2,0,-3v-1,1,-1,2,0,3","w":41},"\/":{"d":"115,-101v-2,3,-4,4,-6,0r6,0xm185,-228v1,3,-20,24,-7,26v-12,3,-22,14,-31,36v1,1,4,1,3,4v-3,1,-18,6,-14,15r5,0v-23,14,-31,49,-50,69v-10,10,-13,15,-6,22v-3,-1,-10,4,-4,6v-11,-3,-35,46,-38,47v-17,3,-29,4,-38,4v2,-11,7,-12,14,-24r96,-155v14,-10,12,-19,32,-50r38,0xm97,-72v0,2,0,2,-2,2v-2,0,-3,0,-3,-2v0,-1,1,-2,3,-2v2,0,2,1,2,2xm73,-36v-2,3,-4,4,-5,0r5,0xm36,-27v2,0,5,-4,0,-4v-4,0,-1,4,0,4","w":194},"0":{"d":"109,-186v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm111,-151v3,0,0,3,0,1r0,-1xm58,-192v0,-2,3,0,1,0r-1,0xm64,-213v36,-12,43,32,40,73r11,0v-19,3,-4,20,-11,31v5,47,4,117,-46,105r0,-23v28,-6,15,-71,19,-98v11,-4,6,-16,4,-27v-1,1,-2,2,-4,2v-3,-12,-2,-16,0,-25v1,-12,-38,-32,-15,-43v0,1,1,3,2,5xm26,-165v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm48,-113v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm109,-53v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm42,-104v0,-3,3,0,1,0r-1,0xm38,-127v3,29,2,38,0,66v5,2,0,3,0,8v3,14,27,30,13,51v-2,0,-6,1,-13,2v0,-5,-8,-12,-12,-8v-7,-3,-4,-25,-13,-17v1,-11,1,-10,-2,-18v-2,-4,15,-6,15,-8v0,-11,-5,-21,-15,-29v5,-42,-12,-100,11,-125v1,2,2,5,4,2v-4,-8,1,-8,11,-17r0,15v0,0,6,-14,8,-13v0,5,-5,14,2,15v0,-5,2,-8,4,-10v2,20,-3,25,-19,31v-1,7,15,8,6,14v-9,0,-30,-1,-22,7v8,-1,18,4,22,-2v3,6,8,16,0,21v3,2,5,9,5,17xm79,-190v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm73,-192v1,1,2,3,2,0r-2,0xm98,-161v2,0,1,-3,0,-4v-2,1,-1,3,0,4xm90,-161v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm81,-161v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm104,-135v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm38,-201v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm92,-131v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm103,-114v0,4,3,2,3,0v0,-1,-1,-1,-2,-2v-1,1,-1,1,-1,2xm106,-99v-1,-7,-2,-6,-3,0v0,1,0,2,1,2v1,0,2,-1,2,-2xm40,-118v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm38,-89v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm33,-45r-3,1v0,0,1,-1,3,-1","w":115,"k":{"7":12}},"1":{"d":"56,-223v3,1,2,1,0,2v-2,-1,-3,-1,0,-2xm56,-220v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm43,-217v0,-2,3,0,1,0r-1,0xm62,-201v3,1,1,6,-1,3v0,-1,0,-2,1,-3xm31,-178v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm9,-194v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm12,-179r-7,0v0,-10,4,-4,7,0xm66,-101v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm65,-126v-4,26,-7,73,-3,101v1,-4,2,-7,3,0v-1,8,-4,28,-15,22v-3,5,-13,2,-20,3v2,-58,-3,-123,5,-173v-3,-3,-13,-14,2,-15v-10,-12,-12,7,-19,9v-8,-4,1,-14,-5,-20v2,0,5,4,9,11v-3,-14,9,-27,19,-21v2,-2,5,-5,9,-7v-1,5,1,5,6,3v6,-2,6,1,4,4v1,19,-1,38,2,51v1,-4,2,-7,3,0v-5,10,-7,27,0,32xm33,-205v-1,-2,-1,-5,-2,-2v0,1,1,2,2,2xm33,-201v-1,-1,-2,-3,-2,0r2,0xm45,-179v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm52,-171v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm28,-192v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm33,-179v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm39,-173v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm44,-168v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm36,-168v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm60,-125v-1,1,-1,4,0,5v1,-1,1,-3,0,-5xm37,-135v2,0,1,-3,0,-4v-2,1,-1,3,0,4xm60,-89v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm45,0v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm41,0v2,0,3,-3,0,-4v-2,1,-1,3,0,4","w":72},"2":{"d":"112,-190v1,2,-1,2,-3,2v-1,-2,1,-2,3,-2xm82,-222v7,9,25,12,23,30v5,17,3,52,-8,65v-14,2,-23,-1,-26,13r4,0v0,9,-9,11,-18,8v6,-4,0,-15,8,-19v10,-10,24,-74,-11,-70v-16,15,-14,13,-16,30v-1,16,-14,7,-26,6v-9,-28,12,-53,28,-63r42,0xm42,-173v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm88,-115v1,3,-1,3,-4,3v1,-2,2,-3,4,-3xm82,-116v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm82,-93r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm76,-97v-4,22,-3,26,-28,54v-3,1,-8,2,-7,7r-30,0v9,-20,27,-39,37,-59v13,2,19,-4,28,-2xm89,-1v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm45,-41v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm103,-4v-16,-4,-20,6,-36,4v1,0,7,-4,2,-4v-10,5,-18,-5,-28,2v-4,-7,9,-4,3,-11r-15,0v10,9,-5,10,-11,15v-1,-4,-4,-3,-8,-3r0,-30r57,0v1,-6,5,-8,4,-1v20,1,42,-7,33,13v1,4,2,12,-1,15xm59,-1v0,1,-1,1,-2,1xm46,0v0,-1,4,-2,4,0v-1,1,-3,1,-4,0xm39,-6v-2,3,3,5,-4,5v0,-2,1,-6,4,-5xm88,-188v-2,0,-5,-1,-4,2v2,0,3,0,4,-2xm76,-186v2,0,5,1,4,-2v-2,0,-5,-1,-4,2xm100,-145v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm80,-146v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm82,-129v1,-1,6,-2,2,-2xm31,-167v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm99,-25v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm82,-21v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm93,-8v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm46,-51v2,0,1,-3,0,-4v-2,1,-1,3,0,4xm38,-55v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm29,-57v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm57,-25v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm36,-38v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm52,-19v2,0,3,-3,0,-4v0,-1,-1,-2,-2,-2v-3,2,1,4,2,6xm27,-40v3,1,9,-3,2,-2v-1,1,-2,1,-2,2xm46,-19v2,0,1,-3,0,-4v-2,1,-1,3,0,4xm48,-17v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm50,-13v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm36,-24v3,0,1,-3,0,-1r0,1xm40,-21v1,-1,1,-1,0,-2v-2,1,-2,1,0,2xm38,-15v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm29,-23v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm23,-25v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm30,-16v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm17,-24v2,-1,0,-3,0,-1r0,1xm31,-6v-7,-7,-6,-2,-2,2v1,0,2,-1,2,-2xm18,-15v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm52,-23v0,1,0,1,-1,2v0,-1,0,-1,1,-2xm28,-8r0,2r0,-2","w":113},"3":{"d":"104,-197v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm13,-165v3,-5,7,-10,1,-13v4,-13,16,-54,38,-47r0,28v-7,8,-11,19,-11,32r-28,0xm107,-93r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm85,-118v22,20,22,46,17,88v-3,2,-12,27,-24,24v3,-4,-3,-7,-2,-2v1,1,2,2,-1,2v-4,-10,-6,-2,-15,2r0,-24v21,-11,14,-53,11,-80v-4,-1,-6,1,-5,5v-16,3,-20,-21,-20,-28v22,-9,25,-8,27,-35v2,-27,-33,-37,-11,-63v19,8,38,10,36,46v9,4,-1,27,4,41v1,3,-18,22,-17,24xm43,-55v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm75,-4v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm37,-66v2,9,8,35,19,36v-2,10,6,29,-9,26v-30,0,-34,-33,-36,-62r26,0xm62,0v0,-1,4,-2,4,0v-1,1,-3,1,-4,0xm88,-188v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm77,-188v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm79,-182v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm66,-195v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm79,-152v1,0,1,0,1,-1xm77,-146v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm31,-169v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm73,-125r0,-4v-2,0,-3,4,0,4xm60,-131v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm24,-167v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm65,-125r0,-4v-2,0,-3,4,0,4xm64,-115v-1,5,10,2,5,1v-3,0,-4,-4,-3,-11v-1,6,-2,9,-2,10xm61,-120v0,-5,-2,-8,-6,-8v0,5,2,8,6,8xm50,-125v3,-3,1,-5,-3,-4xm81,-49v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm75,-36v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm79,-25v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm71,-30v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm83,-13v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm66,-23v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm65,-17v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm69,-17r-1,1xm27,-52v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm22,-42v2,-1,2,-3,0,-5r0,5xm35,-21v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm24,-30v2,-1,2,-3,0,-4r0,4xm18,-32v2,0,1,-3,0,-4v-2,1,-1,3,0,4xm24,-21v2,0,3,-3,0,-4v-2,1,-1,3,0,4","w":110},"4":{"d":"94,-226v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm105,-142v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm124,-89v-1,1,-4,4,-3,0r3,0xm97,-212v-5,35,-3,66,-3,115v0,10,7,16,21,15r0,21v-23,2,-22,21,-19,48v-3,2,-5,13,-14,11r4,-2r-19,0v2,-10,-4,-28,4,-32v-14,-10,-4,-54,-6,-99v-6,-2,-10,-6,0,-5v-2,-5,-1,-11,-5,-14r-25,65v3,6,16,3,25,4v-2,10,6,28,-6,28v-16,0,-31,0,-45,-2v0,-45,5,-44,22,-80v4,-9,16,-37,34,-83v13,0,34,-2,32,10xm102,-53v0,-1,5,-2,5,0v-2,1,-4,1,-5,0xm67,0v1,-3,6,0,2,1xm17,-50v-5,-1,-10,-1,-11,-5v5,0,11,0,11,5xm77,-218v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm69,-218v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm65,-203v1,-1,8,-4,4,-4xm72,-200v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm69,-201v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm82,-156v1,0,1,-1,1,-2xm75,-156v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm62,-158v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm71,-148v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm54,-163v-1,1,-5,2,-3,3v1,0,2,-1,3,-3xm77,-93v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm82,-32v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm69,-42v1,1,2,3,2,0r-2,0xm71,-23v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm71,-17v-2,0,-1,3,-1,4v2,0,2,-3,1,-4","w":122,"k":{"1":19}},"5":{"d":"104,-224v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm108,-140v-1,1,-4,0,-2,0r2,0xm13,-220r77,0v2,-1,6,-9,6,-3r-4,29v-23,1,-65,-8,-51,23v-10,-1,0,22,-3,27v6,0,17,-13,20,-3v0,0,-1,7,-2,20v-8,1,-18,26,-36,17v-2,0,-9,4,-11,0xm104,-110v1,-1,4,-1,5,0v-2,1,-4,1,-5,0xm38,-165v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm106,-91v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm62,-154v47,-7,40,59,38,88v-2,30,-2,49,-23,52v4,9,1,9,-9,14r0,-17r-8,15v-6,-16,10,-31,10,-44v2,-25,-3,-58,0,-77v-4,-1,-4,-7,-10,-2v0,-4,2,-8,6,-4v1,-5,-1,-7,-6,-6v-4,-12,10,-17,2,-19xm104,-49v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm52,-37v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm7,-66v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm13,-63v13,-2,34,-1,23,12v0,14,7,22,20,22r0,17v-3,0,-11,-6,-15,-5v-4,-1,-5,12,-8,11v-16,-1,-27,-26,-24,-47r2,4v1,-5,6,-11,2,-14xm54,-6v0,1,4,5,0,4r0,-4xm33,-1v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm62,-218v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm73,-150v-1,-2,-1,-5,-2,-2v0,1,1,2,2,2xm90,-125v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm85,-125v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm90,-118v1,-1,4,-4,0,-3r0,3xm85,-123v-1,1,-1,4,0,5v1,-1,1,-3,0,-5xm94,-110v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm75,-108v0,-4,9,-17,6,-23v-2,6,-9,13,-6,23xm75,-121r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm87,-110v-1,-1,-2,-3,-2,0r2,0xm81,-114v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm90,-106v-1,1,-3,2,0,2r0,-2xm79,-108r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm30,-161v-1,1,-2,6,0,7v1,-2,2,-5,0,-7xm26,-154v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm85,-99v-5,1,-4,-4,-4,-8v-4,0,-6,1,-8,5v2,-1,4,-3,5,-1v0,4,-1,9,5,7v-2,2,-8,4,-4,7v4,-3,6,-6,6,-10xm18,-157v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm87,-87v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm83,-87v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm87,-80v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm79,-83r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm75,-80v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm79,-74v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm90,-62v1,1,2,2,2,-1xm75,-76v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm96,-51v0,0,0,-2,-1,-2v-1,0,-1,1,-1,2r2,0xm77,-68v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm18,-127v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm13,-125v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm96,-44v-2,-1,-5,-5,-4,0r4,0xm81,-53v2,-7,-8,-5,-2,-2v0,1,1,2,2,2xm96,-38v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm20,-113v3,0,1,-3,0,-1r0,1xm88,-39v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm94,-32v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm87,-28v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm70,-30v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm37,-55v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm30,-51v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm26,-49v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm51,-19v0,0,0,-2,-1,-2v-1,1,-2,2,1,2xm35,-36v-1,-1,-4,-1,-5,0v1,1,3,1,5,0xm40,-28v-1,-1,-2,-3,-2,0r2,0xm13,-42v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm20,-21v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm80,-57v0,1,0,2,-1,2v0,-1,0,-2,1,-2","w":110},"6":{"d":"90,-219v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm109,-179v3,1,1,6,-1,3v0,-1,0,-2,1,-3xm56,-221v26,-13,45,18,49,41v3,17,-14,18,-31,17v0,-14,-6,-26,-18,-37r0,-21xm56,-194v3,0,2,5,0,5v-1,0,-2,-5,0,-5xm48,-166v1,3,-2,2,-4,2xm48,-194v-12,18,-4,46,-8,64v7,9,13,-9,31,-7v4,-6,15,-4,24,-4v-7,1,-8,1,-11,4v8,4,12,11,21,17v-2,54,14,85,-23,113v-10,-2,-16,0,-23,3v5,-3,1,-15,2,-22v22,-12,13,-40,15,-69v0,-5,-9,-17,-14,-16v-30,1,-30,71,-6,85v0,14,2,21,-16,19v1,-8,-4,-3,-9,-3v-34,-21,-18,-94,-21,-145v-3,-41,9,-68,43,-69v-1,18,0,34,-5,30xm114,-43r-5,0v2,-2,2,-2,5,0xm48,-52v-1,-1,-3,-2,0,-2r0,2xm77,-2v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm56,-5v0,4,-7,2,-10,1v2,-4,4,-2,10,-1xm56,1v0,1,-1,2,-2,2v-2,0,-1,-4,0,-4v1,0,2,1,2,2xm36,-10v2,4,1,6,0,9v-3,-3,-2,-5,0,-9xm92,-164v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm80,-134v2,0,3,-5,0,-5v-3,0,-2,5,0,5xm76,-134v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm78,-98v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm82,-31v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm88,-24v1,0,1,0,1,-1xm88,-18v1,-1,3,-2,0,-2r0,2xm71,-20v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm63,-22v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm65,-10v2,0,1,-4,0,-4v-2,0,-1,4,0,4xm50,-22v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm37,-31v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm42,-26v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm43,-26v0,2,3,2,1,0r-1,0xm32,-34v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm18,-43v2,-1,3,-4,0,-5v-2,1,-1,4,0,5xm26,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm21,-24v2,-1,1,-4,0,-5v-2,1,-3,4,0,5","w":114},"7":{"d":"111,-222v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm102,-194v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm101,-222v-2,7,1,13,2,19v-1,11,-14,6,-31,8v-2,1,-35,-1,-56,5r2,-1v-10,-2,-8,-21,-9,-29v31,-4,67,3,92,-2xm67,-192v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm9,-190v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm30,0r38,-180v0,-15,21,-12,30,-7v0,6,-1,12,-4,16v2,-1,8,-2,8,2v-9,5,-14,21,-6,29v-24,-1,-12,96,-33,108v8,8,0,27,-11,32v2,0,1,-3,0,-4v-2,1,-3,3,0,4r-22,0xm66,-33r0,2r0,-2xm33,-207v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm56,-30v2,0,3,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm46,-30v2,0,1,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm47,-2v-3,-3,-5,1,-1,1","w":110},"8":{"d":"91,-223v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm111,-190v-2,-2,-6,-4,0,-3r0,3xm48,-170v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm50,-140v0,0,2,0,2,1xm61,-124v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm58,-125v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2v1,0,2,1,2,2xm92,-112v2,2,5,3,12,2v-2,2,-3,3,-6,4v5,17,3,39,16,49r-10,0v0,7,-3,17,7,14v-6,3,-14,7,-9,13v-2,2,-17,33,-27,19v-2,7,-8,11,-17,11v-2,-17,10,-13,12,-24r-10,0v20,-17,16,-102,-17,-71v-4,15,-12,73,13,59v-6,3,-6,5,0,8r0,25v-8,0,-16,0,-19,3r1,-1v-30,-12,-28,-47,-26,-92v-1,-3,16,-24,14,-27v-20,-26,-21,-113,30,-103r0,30v-9,-6,-14,6,-16,24v2,3,-1,8,0,12v5,-1,1,6,1,9v-2,6,22,15,13,21v-1,0,-3,-1,-4,-1v2,4,1,14,12,10v1,1,0,2,0,3v4,-4,11,-9,4,-16v0,5,-2,4,-4,0v16,-14,15,-57,-2,-64r0,-28v13,3,37,7,34,20v8,5,1,12,8,27r9,0v-11,1,-8,9,-7,22v1,12,-11,27,-19,32v-1,5,12,6,7,10xm43,-80v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm60,-21v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm39,-165v0,-1,2,-4,0,-4v-2,1,-3,3,0,4xm60,-110v-2,-8,-2,-4,-4,0v0,1,1,2,2,2v1,0,2,-1,2,-2xm44,-109v1,1,2,2,2,-1xm39,-97v1,0,1,0,1,-1xm79,-51v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm73,-17v2,0,1,-4,0,-4v-2,0,-3,4,0,4","w":114},"9":{"d":"107,-159v0,2,0,4,-3,3xm11,-132v0,-46,-3,-83,30,-92r40,0v17,12,26,28,26,50v-6,-7,-23,-8,-32,-4v5,-9,-9,-19,-17,-19v-19,0,-17,33,-17,57v0,28,16,30,32,13v-1,19,6,33,-16,36v-30,5,-47,-3,-46,-41xm81,-46v-14,-6,0,-30,-4,-39v0,-27,-1,-47,4,-65v9,-2,19,0,21,8v0,-2,-1,-7,2,-6r0,21v2,0,6,-4,5,0v-5,24,6,75,-24,65v2,-3,12,-14,-2,-12v-4,1,-5,15,-5,20v10,-4,5,4,3,8xm106,-32v0,1,-1,2,-2,2v-2,0,-1,-4,0,-4v1,0,2,1,2,2xm37,-87v-2,0,-1,0,-1,-1xm77,-42v0,3,-5,8,-4,4xm52,-57v-3,-1,-7,-2,0,-2r0,2xm81,-21r1,0r-1,0xm103,-52v-3,-7,0,-11,4,-7v-1,11,-1,36,-17,34v2,1,3,2,6,4v-13,21,-36,20,-61,17v1,-5,-2,-4,-6,-4v-3,-9,-19,-33,-15,-53v18,-1,23,1,28,-5v-5,23,3,44,27,34v0,7,4,11,12,11v-1,2,-2,2,-4,6v19,-2,5,-7,11,-17v-7,-6,4,-22,15,-20xm60,-36v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm50,0v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm94,-142v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm90,-146v2,0,2,0,2,-2xm97,-134v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm94,-137v-1,-1,-2,-3,-2,0r2,0xm88,-139v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm104,-119v1,-1,1,-2,0,-3r0,3xm100,-112v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm82,-124v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm37,-154v2,0,1,-5,0,-5v-1,0,-2,5,0,5xm35,-150v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm40,-144v0,-4,-4,-5,-3,0r3,0xm104,-74v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm83,-87v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm16,-148v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm48,-7v2,-1,2,-1,0,-2v-1,1,-1,1,0,2","w":114},":":{"d":"41,-169v5,13,-2,21,-3,32v-4,-1,-14,-1,-30,-2v1,0,6,-1,5,-4v-5,-5,-4,-23,-5,-26r33,0xm28,-134v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm48,-42v-11,8,-4,22,-7,36v-1,1,-24,3,-33,7r0,-36v19,-5,32,-7,40,-7xm39,-145v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm26,-165r-13,0v1,10,10,7,13,0xm16,-155v0,0,5,9,4,3v-2,-2,-3,-3,-4,-3xm17,-141v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm39,-7v2,0,3,-3,0,-4v-2,1,-1,3,0,4","w":53},";":{"d":"34,-148v2,1,2,3,0,4v-1,-1,-1,-3,0,-4xm31,-143v-9,0,-15,3,-24,0r0,-25v6,0,15,-1,27,-2v0,3,-1,12,-3,27xm7,31r6,-30v-3,-2,-5,-1,-7,1r0,-30r17,0v-2,-7,7,-3,11,-4v-1,8,-5,27,4,30v-12,0,-8,42,-31,33xm29,-148v1,-1,2,-4,0,-4v-3,0,-2,3,0,4","w":37},"<":{"d":"70,-66v10,19,50,33,34,67v-20,-1,-73,-61,-96,-80v-2,-2,-4,-14,-4,-36v34,-29,61,-68,100,-91v0,11,2,18,5,21v-6,5,-8,24,-22,32v-18,21,-28,16,-45,37v-5,6,-9,10,-13,11v5,18,25,34,41,39xm79,-12v2,2,1,3,0,5v-1,-2,-2,-3,0,-5xm45,-130v2,-2,1,-4,0,-6v-2,2,-1,4,0,6xm49,-125v2,-2,1,-4,0,-6v-2,2,-3,4,0,6xm42,-125v1,-1,4,-4,0,-3r0,3xm39,-125v1,-2,2,-3,0,-5v-1,2,-1,3,0,5xm44,-119v2,-2,1,-4,0,-6v-2,2,-3,4,0,6xm30,-126v2,-1,1,-2,0,-3v-2,1,-2,2,0,3xm80,-49v2,-1,1,-5,-1,-5xm12,-116v1,-2,2,-3,0,-5v-2,2,-1,3,0,5xm38,-85v1,-1,1,-2,0,-3v-2,0,0,2,0,3xm24,-97v2,-2,1,-3,0,-5v-1,2,-2,3,0,5xm9,-116v-1,1,-2,5,0,6v2,-1,1,-5,0,-6xm104,-16r0,-5v-2,2,-3,4,0,5xm12,-105v2,-2,1,-3,0,-5v-1,2,-2,3,0,5xm17,-97v2,-2,1,-3,0,-5v-1,2,-2,3,0,5xm7,-99v2,-3,3,-3,0,-5v-2,1,-1,4,0,5xm9,-99v-1,2,-4,2,-3,6xm7,-88v2,-3,3,-3,0,-5v-1,2,-2,3,0,5","w":111},"=":{"d":"105,-133v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm100,-122r-82,2r2,-2r-11,0v0,-6,0,-11,-1,-15v30,4,74,-9,94,6v-1,2,-2,6,-2,9xm75,-84v-1,1,-4,0,-2,0r2,0xm102,-103v-3,4,2,12,-2,15r-91,-1r0,-14v23,0,65,-8,93,0xm12,-119v0,1,0,1,-1,1xm88,-132v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm79,-126r0,-2v-1,1,-1,1,0,2xm65,-125v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm50,-134v2,-1,0,-3,0,-1r0,1xm28,-133v0,-1,2,-2,0,-2r0,2xm57,-102v1,-1,1,-1,0,-2v-2,1,-2,1,0,2xm54,-103v-1,-1,-2,-1,-3,0r3,0xm25,-126v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm19,-126v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm12,-126v1,-1,3,-2,0,-3v-1,1,-1,2,0,3","w":107},">":{"d":"69,-150v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm38,-168v16,11,37,33,54,39v0,5,6,10,20,16v-10,15,3,27,-14,43v-1,-1,0,-4,-3,-3v-10,10,-61,45,-91,74r4,-39r74,-57v2,-13,-23,-21,-52,-44v-1,0,-3,0,-4,1v5,-6,-8,-8,-17,-19r-3,0r0,-34v6,-3,31,26,38,19xm108,-108v2,-2,1,-3,0,-5v-1,2,-2,3,0,5","w":113},"?":{"d":"79,-222v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm64,-222v14,9,34,31,21,53v2,2,5,2,5,6v-16,18,-41,53,-36,85r4,2v-7,17,-15,5,-23,11v-19,-36,14,-85,25,-114v0,-3,-10,-19,-13,-18v-6,-2,-19,23,-24,22v-14,0,-21,-4,-21,-12v-3,-8,30,-18,7,-16v15,-17,20,-18,55,-19xm62,-36v0,-1,6,-2,6,0v-2,2,-4,1,-6,0xm49,0v-8,-1,-18,-4,-23,1v1,-8,1,-20,2,-35v12,-2,23,-4,30,0r0,30v-7,-1,-22,1,-9,4xm45,-209v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm25,-201v7,0,6,-10,5,-15v-3,4,-5,10,-5,15xm14,-188v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm47,-65v3,-1,2,-4,0,-5v-1,1,-2,4,0,5","w":92},"@":{"d":"131,-169v1,-1,6,-2,7,0v-2,1,-5,2,-7,0xm125,-178v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm110,-212v-4,5,25,15,15,24v0,2,-1,5,-1,8v-16,2,-28,-1,-31,-13v0,-2,-34,-8,-23,-17v-4,-1,-2,-8,-3,-13v19,0,33,4,43,11xm116,-174v-1,1,-2,1,-3,0v1,-1,0,-1,3,0xm106,-176v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm83,-197v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm112,-166v-1,5,-42,5,-53,1v18,-12,29,2,53,-1xm108,-146v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm62,-223v4,29,-23,37,-43,19v0,-14,26,-18,43,-19xm47,-188v-2,-1,-4,-2,0,-2r0,2xm36,-188v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm31,-190v-13,0,-19,-3,-19,-7v13,0,19,3,19,7xm78,-93v0,14,20,16,23,4r0,-51r34,0v-25,9,1,57,-12,81r-17,0v0,-4,0,-7,-4,-7v-10,7,-48,16,-47,-8r0,-70v4,1,3,6,2,9v5,-5,9,-8,9,-13v-7,-1,-19,-11,-5,-11r66,0v3,2,2,2,2,5v-18,13,-44,-9,-60,8v15,5,4,34,12,48v0,1,-4,3,-3,5xm38,-165v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm30,-150v-6,4,-7,-13,-15,-12v5,-10,-4,-18,-6,-27v18,1,13,3,27,13v-18,7,-12,15,-6,26xm34,-152v-1,-1,-1,-4,0,-5v1,2,1,4,0,5xm8,-176v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm36,-138v-2,-1,-2,-3,0,-4r0,4xm30,-135v-3,0,-7,-3,-3,-5v2,1,3,3,3,5xm13,-152v-2,2,-2,9,-2,21v-3,-4,-7,-20,2,-21xm36,-106r0,4r0,-4xm44,-93v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm40,-91v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm67,-11v2,-10,31,-30,41,-16v4,4,6,5,8,6v-2,12,-45,35,-49,10xm43,-58v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm28,-107v15,21,-7,77,30,82v9,2,3,15,5,24v-55,2,-56,-47,-57,-98v6,1,19,-6,7,-9v-2,1,-6,3,-7,0v-1,-14,10,-15,27,-15v0,8,-2,14,-7,17v1,-1,1,-1,2,-1xm123,-190v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm102,-214v-1,1,-5,2,-1,2xm121,-106v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm112,-108v2,0,2,0,2,-2xm117,-104v-2,-1,-8,5,-6,9v2,-2,5,-5,6,-9xm106,-104r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm119,-91v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm68,-123v3,4,9,1,7,-4r-1,-6v-4,2,-6,5,-6,10xm63,-89v8,0,11,-2,11,-11v-5,0,-8,8,-11,11xm27,-97v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm32,-85r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm19,-95v-1,-1,-5,-2,-6,0v2,2,4,1,6,0","w":135},"A":{"d":"86,-237v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm97,-197v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm69,-135v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-89v1,2,2,3,0,5v-2,-2,-1,-3,0,-5xm62,-166v8,8,-9,39,-6,49v5,-1,4,-1,8,2v-11,2,-17,26,-5,29v-2,1,-2,2,-1,4r17,0v2,5,7,28,9,14v3,-31,-24,-82,-9,-103v0,-2,-2,-3,-6,-2v-4,-21,-20,-50,-3,-60v3,5,13,2,20,3v1,5,8,12,7,22r8,4r-8,0v2,15,3,31,6,47r14,4v-12,-1,-13,18,-2,22v-3,30,2,62,13,90v-6,8,0,27,9,28v-4,0,-7,2,-7,8r-33,0v1,-16,-7,-43,-9,-55v-2,15,-32,-2,-35,14r8,0v-19,4,-7,63,-42,44v-2,1,-5,1,-9,2v0,-6,5,-33,9,-56r31,-175v17,-3,15,53,16,65xm121,-58v0,-1,-2,-2,0,-2r0,2xm75,-91v0,3,-3,7,-2,2xm64,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm77,-155v1,1,2,3,2,0r-2,0xm77,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-104v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm82,-109v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm108,-78v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm108,-69v1,1,4,5,3,0r-3,0xm102,-70v3,0,0,-3,0,-1r0,1xm32,-1v3,0,4,-3,1,-4v-1,1,-3,3,-1,4","w":136,"k":{"\u0131":5,"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":9,"\u00d4":9,"\u00d3":9,"\u00cc":4,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00c8":4,"\u00cb":4,"\u00c1":4,"\u00ca":4,"\u00c2":4,"\u0178":37,"\u00ff":42,"\u00d5":9,"\u00c3":4,"\u00c0":4,"\u00fc":12,"\u00fb":12,"\u00f9":12,"\u00fa":12,"\u00f5":16,"\u00f6":16,"\u00f4":16,"\u00f2":16,"\u00f3":16,"\u00f1":9,"\u00ef":5,"\u00ee":5,"\u00ec":5,"\u00ed":5,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":14,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"\u00d6":9,"\u00c9":4,"\u00c7":9,"\u00c5":4,"\u00c4":4,"y":42,"x":4,"w":35,"v":42,"u":12,"t":39,"s":11,"r":5,"q":14,"p":7,"o":16,"n":9,"m":9,"l":7,"k":5,"i":5,"g":12,"f":5,"e":7,"d":11,"c":14,"b":5,"a":9,"Y":37,"X":4,"W":28,"V":33,"U":9,"T":35,"S":4,"Q":7,"O":9,"L":4,"J":4,"I":4,"H":4,"G":7,"F":2,"E":4,"C":9,"B":7,"A":4,"-":19,"'":25}},"B":{"d":"123,-186v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm26,-237v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm52,-190r-9,2v1,-3,5,-4,9,-2xm54,-156v0,4,-4,6,-11,6v0,-4,4,-6,11,-6xm119,-82v2,1,1,3,0,4v-2,-1,-1,-3,0,-4xm114,-76v13,22,-6,70,-39,71v-12,6,-34,8,-32,-14v1,-12,0,-15,11,-14v18,1,29,-15,29,-33v0,-20,-12,-47,-28,-35r0,-8v-3,1,-7,3,-12,5r0,-30v39,8,50,-61,15,-65r-15,2r0,-31v18,2,28,-11,38,0v42,12,41,81,14,106v5,10,30,28,19,46xm43,-146v3,2,2,6,0,9v-2,-2,-1,-7,0,-9xm63,-102v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm10,0r0,-230v9,1,10,1,29,2r0,224v-13,-1,-19,2,-29,4xm43,-89v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm52,-69v1,4,-3,3,-6,3v-1,-4,3,-3,6,-3xm43,-51v1,-1,6,-2,7,0v-2,2,-5,1,-7,0xm112,-182v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm112,-162v2,-1,3,-3,0,-4v-2,0,-1,3,0,4xm77,-111v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm117,-66v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm59,-120v-1,-1,-2,-3,-2,0r2,0","k":{"\u00cc":2,"\u00cf":2,"\u00ce":2,"\u00cd":2,"\u00c1":11,"\u00c2":11,"\u0178":18,"\u00ff":16,"\u00c3":11,"\u00c0":11,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"\u00c5":11,"\u00c4":11,"y":16,"a":9,"Z":4,"Y":18,"X":16,"W":12,"V":16,"T":7,"J":12,"I":2,"H":4,"A":11,".":11,"-":16,",":5,"'":12}},"C":{"d":"80,-239v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm97,-226v-1,8,9,22,17,21v-5,11,-1,25,-3,47v-12,2,-21,2,-29,1v-3,-16,-4,-49,-22,-45r0,-31xm86,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm42,-175v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm115,-84v3,2,2,6,0,8v-2,-2,-1,-6,0,-8xm44,-148v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm111,-80v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm109,-73v1,1,3,2,0,2r0,-2xm108,-82v0,8,-6,7,-11,4v2,-3,6,-4,11,-4xm109,-64v-1,1,-4,4,-3,0r3,0xm93,-80v-6,5,3,13,10,12v1,6,-4,6,-5,10r14,0v0,16,-11,9,-3,25v-5,4,-5,7,-12,7v8,-10,1,-5,-13,-14v6,-4,14,5,18,-4v-5,0,-5,2,-10,0v0,-4,-2,-7,-6,-9v4,-3,10,-6,0,-5v2,-2,8,-4,3,-6r-9,2r0,-18r13,0xm38,-126v12,12,-10,35,4,46v-7,23,2,42,14,56v0,11,2,30,-12,22v-12,10,-27,-15,-27,-26r9,0r-2,-8v-8,8,-17,0,-16,-14v7,-68,-30,-178,47,-183r0,29v-14,10,-22,24,-13,41v-1,8,-4,24,-2,32v1,-1,2,-1,2,-2v0,3,-2,5,-4,7xm80,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm83,-47v1,1,0,3,-2,3v-2,-1,2,-3,2,-3xm93,-29v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm97,-20v-1,1,-2,7,-2,3v0,-1,1,-2,2,-3xm84,-26r-3,2xm86,-18v2,1,2,2,0,3v-1,-1,-1,-2,0,-3xm78,-29v1,7,-17,7,-5,11v3,-2,8,-4,7,4v0,5,-4,6,4,4v2,-1,5,-1,7,-1v-8,11,-18,13,-31,9v-1,-11,-2,-35,11,-24v2,-1,4,-2,7,-3xm13,-31v3,1,2,3,0,5v-1,-2,-2,-3,0,-5xm78,-221v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm102,-173v2,0,2,0,2,-2xm51,-221v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm89,-177v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm86,-76v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm104,-46v2,-2,3,-4,0,-5v-3,1,-2,3,0,5xm84,-66r0,-5v-2,1,-2,3,0,5xm95,-51v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm97,-46v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm91,-51v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm102,-36v2,0,1,-3,0,-4v-2,1,-3,4,0,4xm38,-58v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm49,-31v3,-3,-2,-7,-2,-2v0,1,1,2,2,2xm40,-26v1,0,1,0,1,-1xm30,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm22,-22v3,-1,6,-2,0,-2r0,2","w":118,"k":{"\u00c1":7,"\u00c2":7,"\u0178":4,"\u00ff":5,"\u00c3":7,"\u00c0":7,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"\u00c5":7,"\u00c4":7,"y":5,"a":11,"Y":4,"X":4,"W":2,"V":4,"A":7,"-":7}},"D":{"d":"115,-190v0,-2,4,-2,5,0v-2,1,-4,1,-5,0xm46,-179v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm113,-133v-5,22,2,43,-3,62v5,25,-7,72,-39,56r-18,4v5,-4,4,-13,13,-13v-7,-10,-17,23,-20,11v-8,1,-2,-12,-4,-18r11,0r-4,7v5,1,27,-18,28,-22r0,-132v0,-16,-18,-23,-35,-23v2,-15,-7,-32,13,-32v56,0,60,46,55,98v1,0,3,1,3,2xm120,-53r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm115,-53r0,4r0,-4xm42,-126v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm9,-230v13,-3,28,-4,28,11r0,95v-1,6,-8,8,-1,15v-1,9,-9,32,-7,43r-22,13v6,-50,0,-119,2,-177xm42,-73v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm49,-64v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm84,-9v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm51,-38v2,1,1,4,0,5v-2,-1,-3,-4,0,-5xm64,-9v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm57,-4v-3,0,-5,-1,-6,-3v3,0,7,-1,6,3xm44,-7v1,0,1,0,1,1xm23,-51v14,-4,18,25,13,37v-10,1,-15,5,-25,12r2,2r-4,0v5,-19,-14,-53,14,-51xm33,-9v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm26,-5v-1,-1,-3,-2,0,-2r0,2xm20,-4v2,1,2,3,0,3v-2,0,-3,-2,0,-3xm51,-228v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm106,-121v2,1,2,-1,2,-3v-2,-1,-2,1,-2,3xm106,-97v2,0,3,-5,0,-5v-3,0,-2,5,0,5xm86,-55v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm82,-58v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm86,-51v0,-1,-1,-2,-2,-2v-1,0,-2,1,-2,2v0,1,1,2,2,2v1,0,2,-1,2,-2xm28,-100v2,1,5,-1,2,-2v-1,0,-2,1,-2,2xm77,-38v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm73,-33v1,-1,4,-4,0,-3r0,3xm82,-18v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm11,-86v1,-1,3,-2,0,-2r0,2xm69,-20v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm22,-66v2,-2,3,-4,0,-5v-3,1,-2,3,0,5xm13,-58v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm13,-44v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm26,-15v-1,-3,-2,-7,-2,0r2,0xm11,-22v3,1,9,-2,8,-4v-3,0,-6,1,-8,4xm11,-24v3,-1,2,-4,0,-5v-2,1,-3,4,0,5","w":120,"k":{"\u00c1":11,"\u00c2":11,"\u0178":16,"\u00c3":11,"\u00c0":11,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"\u00c5":11,"\u00c4":11,"a":11,"Z":4,"Y":16,"X":18,"W":9,"V":12,"T":5,"J":11,"A":11,"'":7}},"E":{"d":"110,-240v0,2,0,4,-2,3v0,-2,0,-4,2,-3xm62,-231v12,-4,27,4,40,-3v-4,9,3,18,-5,32r-56,3v0,-14,1,-26,3,-34v2,9,20,-3,18,2xm44,-195v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm42,-166v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm44,-155v1,1,1,3,0,4v-2,0,-1,-4,0,-4xm42,-148v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm44,-138v13,-2,23,6,34,0v11,2,7,31,-2,34v-14,-7,-34,9,-35,-11v0,-11,1,-19,3,-23xm37,-171r-1,170v-7,1,-15,-2,-25,-1r0,-226v6,-1,14,-2,26,-3v-1,17,2,36,-1,51v-8,-1,-3,7,-3,12xm42,-95v2,0,1,3,0,4v-2,-1,-3,-3,0,-4xm42,-78v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm42,-60r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm44,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm101,-36v-5,3,0,10,1,14r-7,22v-18,2,-37,-3,-52,-1r1,1v-6,-5,-2,-27,0,-36v9,8,35,-7,47,3xm30,-184v-1,-6,-9,-3,-4,0v1,2,4,3,4,0xm19,-175v2,0,3,-3,0,-4v-2,0,-1,4,0,4xm50,-133v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm22,-155v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm68,-109v0,2,3,0,1,0r-1,0xm26,-146v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm26,-138v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm19,-144v-2,0,-7,-1,-6,2v2,0,4,0,6,-2xm75,-32v2,0,3,-2,0,-2v-3,0,-1,2,0,2xm65,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm88,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm64,-26v-1,-1,-2,-3,-2,0r2,0xm77,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm73,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm28,-186v0,1,-1,2,-2,2v0,-1,1,-2,2,-2","w":106,"k":{"\u00d2":5,"\u00d4":5,"\u00d3":5,"\u00d5":5,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00d6":5,"o":9,"O":5,"K":-2,"-":14}},"F":{"d":"46,-201v-8,-16,-2,-37,22,-31r-5,2r9,0v-2,-1,-3,-3,0,-4v0,8,9,-4,4,4v13,0,27,-3,23,17v0,7,-1,11,-3,12r-50,0xm43,-164v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm48,-155v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm86,-137v-4,9,-5,14,-5,22v2,-1,5,-5,4,0v0,4,0,6,-2,7r-40,0v2,-18,-8,-31,20,-27xm39,-142v1,0,2,5,0,5v-3,0,-2,-5,0,-5xm56,-104v1,-1,4,-1,5,0v-1,1,-3,1,-5,0xm8,-228v15,-3,18,-4,32,-5v-1,35,3,74,-6,100r5,-2v-1,40,3,86,-2,122v4,4,2,14,-6,13v-8,-1,-17,-4,-23,0r0,-228xm14,-221v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm81,-108v2,-1,1,-4,0,-5v-2,0,-3,5,0,5xm56,-126v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm50,-126v3,-2,0,-3,-2,-5v0,3,1,4,2,5xm58,-121v0,-5,-8,-6,-4,0v1,-2,2,3,4,0xm12,-148v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm32,-128v-2,0,-1,6,0,7v1,-2,2,-5,0,-7xm17,-128v1,1,2,3,2,0r-2,0xm28,-93r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm12,-86v3,-1,2,-4,0,-5v-1,0,-2,5,0,5xm30,-62v1,-1,2,-2,2,-4xm32,-53v0,-2,-4,-3,-4,0v0,2,4,3,4,0xm12,-66v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm56,-124v0,1,0,1,-1,2v0,-1,0,-1,1,-2","w":101,"k":{"\u00c1":32,"\u00c2":32,"\u00c3":32,"\u00c0":32,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00e5":26,"\u00e3":26,"\u00e4":26,"\u00e2":26,"\u00e0":26,"\u00e1":26,"\u00c5":32,"\u00c4":32,"o":9,"a":26,"J":28,"A":32,".":35,",":35}},"G":{"d":"88,-241v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm78,-240v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm109,-202v0,-3,3,0,1,0r-1,0xm121,-193v1,0,2,5,0,5v-3,0,-2,-5,0,-5xm110,-159v-4,0,-6,2,-7,6v-6,-1,-17,4,-15,-5r-9,0v-1,-21,-8,-38,-22,-50v1,-12,-5,-30,14,-25v22,-3,51,38,39,74xm121,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm112,-64v2,1,3,3,0,4v-2,-1,-3,-3,0,-4xm44,-116v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm50,-232v11,25,-16,47,-13,74v1,1,5,1,4,4v2,6,-17,18,-4,19v2,34,-5,66,6,91v-5,4,3,7,9,18v-1,8,2,19,-2,24v-13,-1,-15,-1,-20,2v-8,-8,-26,-29,-24,-51v2,-23,-3,-52,2,-71v-7,-44,-7,-116,42,-110xm112,-102v-5,24,-4,54,-2,74r-11,0v4,10,10,9,15,15v-4,2,-5,4,-6,8r-13,0v0,-4,1,-10,-5,-8v0,-7,-12,-6,-13,0v1,4,-2,11,-12,7r0,6v-13,0,-8,-16,-2,-16v-4,-2,-6,-4,-6,-7v12,-11,37,-46,13,-68v-4,7,-10,-3,-13,2v3,-8,-6,-11,-9,-11v5,-2,9,-8,9,-18v10,8,27,0,46,2v1,-2,3,-5,0,-6r7,0v-1,10,5,8,0,20r2,0xm101,-155v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm95,-156v3,0,0,-3,0,-1r0,1xm30,-204v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm37,-182v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm29,-182v1,0,1,-1,1,-2xm101,-82v0,-1,-1,-2,-2,-2v-1,0,-2,1,-2,2v0,1,1,2,2,2v1,0,2,-1,2,-2xm99,-73v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm61,-111v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm10,-151v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm105,-53v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm97,-55v4,1,9,-5,1,-2v-1,1,-1,1,-1,2xm107,-39v1,-1,1,-1,0,-2v-2,1,-2,1,0,2xm14,-128v4,0,-1,-5,0,-1r0,1xm28,-109v3,-2,1,-5,-2,-4xm17,-120v1,-4,-2,-4,-2,-1v0,1,1,1,2,1xm98,-38v1,0,1,-1,1,-2xm92,-40v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm100,-30v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm26,-100r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm86,-39v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm10,-113v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm88,-29v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm99,-18v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm19,-93r0,-4r0,4xm75,-29v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm72,-18v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm72,-11v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm65,-18v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm61,-22v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm63,-5v2,0,3,-4,0,-4v-2,0,-1,4,0,4","w":119,"k":{"\u00c1":4,"\u00c2":4,"\u0178":11,"\u00ff":12,"\u00c3":4,"\u00c0":4,"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"\u00c5":4,"\u00c4":4,"y":12,"w":9,"a":5,"Y":11,"X":5,"W":7,"V":7,"T":5,"A":4}},"H":{"d":"121,-184v0,-2,4,-2,5,0v-2,1,-4,1,-5,0xm114,-146v11,12,-7,38,5,60v-9,5,-1,46,6,42v-14,2,-8,22,-4,30v0,3,-4,7,-11,14v-13,1,-18,-1,-29,-3r0,-101v-4,-8,-12,5,-18,-2v-3,8,-24,3,-17,-5v1,-9,-2,-20,2,-26v13,0,37,0,35,-9r0,-84v8,-7,20,3,30,-3v6,-1,8,8,3,10v3,23,3,25,-6,39v9,6,9,13,4,22v0,3,9,9,12,9v-2,2,-7,4,-12,7xm46,-142v1,0,2,5,0,5v-3,0,-2,-5,0,-5xm50,-13v-5,-3,-8,5,-9,9v-17,-5,-31,14,-31,-10v0,-11,2,-19,7,-22r-5,0r0,-194v19,2,39,-10,34,20v5,6,-11,14,4,20v-7,10,-13,37,2,37v-22,1,-7,42,-11,62v14,23,-2,44,2,73v3,1,5,3,7,5xm52,-51v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm90,-221v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm103,-184v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm108,-133r0,-6v-2,1,-3,5,0,6xm108,-124v-1,-1,-2,-2,-5,-2v2,1,2,2,5,2xm114,-111v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm114,-71v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm57,-102v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm95,-33v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm90,-33v2,-1,3,-4,0,-5v-3,1,-2,4,0,5xm17,-111v0,-2,-4,-3,-4,0v0,2,4,3,4,0xm87,-30v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm88,-24v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm30,-80v1,-1,3,-2,0,-2r0,2xm108,-2v-1,-2,-2,-4,-2,0r2,0xm99,0v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm15,-76v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm43,-51v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm15,-60v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm21,-38r3,-2v-1,1,-3,1,-3,2xm30,-26v4,-3,0,-6,-2,-7v-5,3,2,4,2,7xm21,-29v1,-1,8,-5,1,-4v-6,-1,-6,4,-1,4xm24,-22v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm30,-31v0,1,0,1,-1,2v0,-1,0,-1,1,-2","w":125},"I":{"d":"49,-155v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm45,-163v-4,45,0,96,0,144v0,26,-19,14,-36,19r3,-2r0,-227v17,5,32,-17,31,11v-1,20,-1,36,1,56xm16,-221v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm13,-220v-1,4,3,12,5,8v0,-6,-1,-8,-5,-8","w":54,"k":{"\u00c1":2,"\u00c2":2,"\u00c3":2,"\u00c0":2,"\u00e5":7,"\u00e3":7,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"\u00c5":2,"\u00c4":2,"a":7,"V":2,"A":2}},"J":{"d":"69,-118v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm67,-230v1,29,-5,54,2,79v-7,2,-2,11,1,14v-8,1,1,14,-7,24v6,3,4,13,0,18v12,6,-1,35,4,47v1,39,-25,41,-60,48r2,-31v37,-9,24,-35,26,-71v2,-1,4,-2,3,-5v-3,3,-5,3,-4,-3v2,-27,-2,-60,4,-83v-5,-8,-1,-25,-2,-37r31,0xm60,-211v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm56,-215v-1,0,-2,4,0,4v1,-1,1,-3,0,-4xm47,-204v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm54,-182v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm58,-173v1,-2,4,-3,2,-5v-1,2,-2,2,-2,5xm54,-173v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm45,-182v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm58,-166v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm64,-160v1,0,1,-1,1,-2xm50,-173v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm40,-179v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm65,-151v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm58,-157v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm45,-168v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm47,-164v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm45,-162v3,0,13,0,7,-2v-1,0,-3,0,-7,2xm58,-151v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm60,-146v-1,3,4,6,3,2v-1,-1,-2,-1,-3,-2xm54,-142v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm38,-155v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm50,-133v7,-1,4,-5,0,-5r0,5xm40,-144v3,0,0,-3,0,-1r0,1xm56,-122v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm43,-137v-2,2,2,6,2,2v-1,-1,-1,-2,-2,-2xm63,-107r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm51,-112v1,-6,-6,-16,-8,-9v-1,4,4,9,8,9xm58,-104v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm45,-102v2,-1,1,-4,0,-5v-2,0,-3,5,0,5xm54,-89v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm45,-97v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm42,-102v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm56,-73v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm54,-78v-1,-1,-2,-3,-2,0r2,0xm50,-71v1,-1,3,-2,0,-2r0,2xm41,-68v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm42,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm45,-38v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm40,-44v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm18,-26v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm18,-15v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm14,-7v2,0,1,-3,0,-4v-2,1,-3,3,0,4","w":78,"k":{"\u0131":5,"\u00c1":9,"\u00c2":9,"\u0178":5,"\u00c3":9,"\u00c0":9,"\u00fc":7,"\u00fb":7,"\u00f9":7,"\u00fa":7,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00ef":5,"\u00ee":5,"\u00ec":5,"\u00ed":5,"\u00e5":14,"\u00e3":14,"\u00e4":14,"\u00e2":14,"\u00e0":14,"\u00e1":14,"\u00c5":9,"\u00c4":9,"u":7,"o":5,"i":5,"a":14,"Y":5,"X":9,"J":5,"A":9,".":12}},"K":{"d":"98,-193v2,0,3,5,0,5v-3,0,-2,-5,0,-5xm89,-173v2,0,1,5,0,5v-1,0,-2,-5,0,-5xm49,-210v2,0,3,3,0,4v-2,-1,-3,-3,0,-4xm116,-233v-13,44,-57,70,-27,120r29,105v1,8,-14,9,-22,7r6,0v-4,-7,-12,-2,-18,-1v-9,-42,-17,-62,-28,-100v-13,-1,-4,18,-16,23r0,-67v10,-15,26,-52,38,-83v18,0,26,-2,38,-4xm40,-230v-3,43,-8,129,0,172v-1,11,-10,42,7,45v-8,2,-24,19,-37,11v-1,-1,-2,2,-5,2v3,-17,-3,-42,7,-51r-5,0r0,-179r18,0v1,-7,5,-8,4,0r11,0xm118,-24v2,1,3,3,0,4v-2,-1,-3,-3,0,-4xm126,-14v1,1,1,1,0,2v-2,-1,-2,-1,0,-2xm84,-190v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm15,-140v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm111,-2v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm82,-24v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":118,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00d5":7,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00d6":7,"\u00c7":7,"v":7,"o":9,"Q":7,"O":7,"G":5,"C":7,"-":32}},"L":{"d":"45,-222v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm41,-202r0,-6v2,2,1,4,0,6xm10,-230v4,-1,3,2,2,4v0,2,-1,4,-2,4r0,-8xm41,-193v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm14,-217v0,1,-2,3,-2,1v0,-1,1,-1,2,-1xm36,-191v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm43,-182v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm27,-197v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm36,-179v0,-4,1,-8,5,-7v-2,1,-4,4,-5,7xm17,-183v2,1,0,3,0,1r0,-1xm41,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm10,-153v1,1,2,2,2,5v-1,-2,-2,-2,-2,-5xm38,-118v-8,13,14,23,0,34v8,8,-1,33,5,44r-34,0v7,-7,2,-37,3,-57v0,-2,2,-3,6,-3v-10,-3,-9,-21,-7,-29v1,0,4,1,6,1v1,-7,0,-16,-7,-10v8,-9,6,-20,2,-32v8,-6,8,11,15,4v-1,-3,-7,-8,0,-8v-13,-17,-15,-30,-10,-54r11,0v1,2,-4,4,-2,4v4,0,7,-2,8,-6v6,1,9,4,9,10v-13,-5,0,16,-9,18v2,-5,-2,-6,-8,-6v-1,3,-1,6,1,9v-3,-2,-6,0,-9,2v5,15,18,-1,12,16v5,-3,4,13,11,6v1,23,0,46,-9,57r6,0xm109,-40v1,3,-2,2,-4,2v1,-2,2,-2,4,-2xm45,-82v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm103,-15v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-53v1,1,3,2,0,2r0,-2xm56,-33v15,-8,47,2,47,9v-4,0,-5,25,-11,24v-23,0,-49,-3,-70,-1r1,1v-1,-4,-13,-2,-13,-9r0,-27v5,7,39,-6,46,3xm10,0v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm34,-222v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm25,-213v4,0,10,-3,2,-2v-1,0,-2,1,-2,2xm21,-199v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm32,-166v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm36,-160v2,-2,1,-4,0,-6r0,6xm30,-162v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm25,-158v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm36,-138v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm24,-154r-4,15v6,1,10,-11,4,-15xm27,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm30,-128v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm21,-133v1,-1,3,-2,0,-2r0,2xm23,-118v3,-1,6,-2,0,-2r0,2xm21,-109v0,2,3,0,1,0r-1,0xm13,-112v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm25,-93v1,0,2,-1,2,-3v-1,0,-2,1,-2,3xm14,-91v3,-1,3,-3,0,-4r0,4xm65,-31v1,2,7,-1,2,-1v-1,0,-2,0,-2,1xm15,-81v1,1,2,2,2,-1xm87,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm32,-51v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm78,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm34,-44v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm30,-46v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm67,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm17,-49r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm51,0v2,0,3,-4,1,-5v-2,0,-2,4,-1,5","w":106,"k":{"\u00d9":9,"\u00db":9,"\u00da":9,"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u0178":42,"\u00ff":44,"\u00d5":7,"\u00fc":9,"\u00fb":9,"\u00f9":9,"\u00fa":9,"\u00f5":12,"\u00f6":12,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00d6":7,"\u00c7":5,"y":44,"w":35,"u":9,"o":12,"Y":42,"W":32,"V":44,"U":9,"T":33,"Q":7,"O":7,"G":4,"C":5,"-":35,"'":11}},"M":{"d":"162,-192v1,1,1,2,0,3v-2,-1,-2,-2,0,-3xm156,-173v-15,2,-20,3,-31,3r0,-59v11,0,26,2,31,-4r0,60xm71,-200v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm78,-165v1,1,1,1,0,2v-2,-1,-2,-1,0,-2xm81,-155v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm156,-11v0,9,-19,12,-28,10r-3,-165v16,-2,26,-3,31,-3r2,105v-8,7,5,13,-2,15r0,38xm79,-140v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm112,-89v2,2,3,4,0,5v-3,-1,-2,-3,0,-5xm68,-186v-11,17,11,29,6,47v0,8,2,14,6,15r0,20v16,-3,4,-21,12,-24v11,-32,11,-69,17,-100r12,-1v0,34,1,62,0,83v0,9,-10,24,-2,33v-5,14,-20,63,-20,89v-2,5,-9,25,-22,25v-3,-25,-11,-49,-18,-85v-9,-4,1,-10,-5,-25v-7,1,-2,-4,-2,-9v-2,-3,-4,-9,-7,-17v-3,0,-8,16,-1,18v1,-1,3,-1,4,-1v-15,5,0,29,-7,45v4,19,-1,47,0,68v-4,9,-21,4,-32,5r3,-229v8,0,15,1,16,-6v11,6,11,6,17,0v15,5,15,19,20,47xm54,-44v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2v1,0,2,1,2,2xm54,-220v3,0,2,-3,0,-4v-1,1,-2,4,0,4xm43,-221v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm37,-224v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm30,-221v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm23,-224v2,-1,3,-3,0,-4v-2,0,-1,3,0,4xm38,-204v0,0,0,-2,-1,-2v0,0,0,2,1,2xm28,-197v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm17,-206v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm43,-148v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm14,-173v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm19,-166v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm43,-142v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm14,-160v1,-2,5,-5,0,-4r0,4xm19,-151v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm79,-22v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm41,-22v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm32,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm28,-2v-2,-2,-2,-4,-5,-3v1,2,2,4,5,3","w":166,"k":{"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00e5":7,"\u00e3":7,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"u":4,"o":5,"a":7}},"N":{"d":"129,-154v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm120,-149v1,4,-3,6,-5,3v1,-2,2,-3,5,-3xm121,-137v2,1,2,1,0,2v-1,0,0,-1,0,-2xm26,-228v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm111,-144v1,2,-1,2,-3,2xm105,-137v2,0,3,1,1,2xm69,-171v0,2,0,4,-3,3v0,-2,0,-4,3,-3xm129,-101v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm88,-135v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm76,-144v0,8,-3,11,-10,11v7,-3,6,-10,10,-11xm105,-129v7,1,3,-9,10,-8v4,0,6,4,6,14r10,0v-10,4,-16,12,-11,19r1,-5v0,9,-1,14,4,18v-6,-1,-1,8,-4,11v1,14,1,55,-2,75r-29,0v-5,-8,-24,-62,-24,-72v10,-3,21,-7,20,11v4,1,3,-3,3,-6v-5,-11,8,-7,16,-8v1,-7,-24,-1,-15,-9v-1,-7,3,-17,-4,-18v-6,1,-9,4,-9,7r5,-2v-4,6,6,10,0,18r-16,0v2,-1,4,-2,1,-3v-1,0,-3,2,-5,3v0,-7,-25,-37,-16,-47r2,1v-10,-14,6,-28,1,-41r-5,3v3,-13,-2,-35,0,-54v4,0,8,2,5,6v-3,12,17,32,10,37v-1,16,14,24,27,26v-7,0,-18,4,-22,0v0,11,-7,20,5,25v0,4,-2,2,-7,4v11,3,-2,20,5,24v2,-1,7,-29,15,-18v2,-1,6,-5,13,-13v-14,-18,-1,-65,-5,-99v10,0,23,2,25,-6v-2,7,4,6,9,6v-4,31,-1,40,-3,72v-5,7,-17,11,-16,29xm44,-164v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm77,-131v3,4,-3,13,-4,7v0,-2,1,-5,4,-7xm126,-64v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2v1,0,2,1,2,2xm40,-228r1,133v-5,14,-17,9,-30,9r0,-81v6,0,9,-2,9,-8v-2,2,-7,3,-9,0v2,-17,-4,-40,2,-53v-4,8,7,16,10,5v9,1,9,-4,17,-5xm60,-82v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm100,0v0,-2,5,-1,6,0v-2,1,-4,1,-6,0xm92,-1v1,1,1,1,0,2v-2,0,-3,-2,0,-2xm40,-78v5,27,1,57,-4,77v-10,-3,-16,1,-25,1r1,-79v8,-2,19,-1,28,1xm33,-217v2,-2,3,-4,0,-5v-3,1,-2,3,0,5xm36,-198v2,-1,0,-3,0,-1r0,1xm22,-204v4,-4,-2,-11,-7,-10v1,5,3,9,7,10xm111,-115v5,-3,-2,-10,-5,-10v-4,2,2,5,5,10xm57,-166v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm13,-202v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm26,-186v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm115,-97v2,-1,3,-4,0,-5v-2,1,-1,4,0,5xm18,-191v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm13,-193v1,-1,2,-2,2,-4xm106,-109v-2,2,-5,3,-9,2v2,5,7,2,9,-2xm90,-111r0,-7v-6,1,-10,9,0,7xm20,-164v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm108,-76v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm33,-146v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm29,-135v2,-1,3,-6,0,-7r0,7xm60,-102v2,-1,1,-4,0,-5v-2,0,-3,5,0,5xm22,-140v0,2,3,0,1,0r-1,0xm69,-89v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm35,-126v0,-1,-1,-2,-2,-2v-1,0,-2,1,-2,2v0,2,4,3,4,0xm31,-111v1,-4,4,-10,0,-11r0,11xm86,-60v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm31,-104v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm31,-100v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm33,-93v-1,-1,-2,-3,-2,0r2,0xm13,-15v2,-2,3,-4,0,-5v-2,2,-1,3,0,5","w":130},"O":{"d":"98,-211v-2,1,-2,-4,-2,-6v2,1,4,4,2,6xm114,-195v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm45,-182v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm109,-211v2,21,7,45,0,65v-1,4,8,5,3,8r0,98v-10,12,-25,49,-53,35v-8,-21,21,-36,21,-51r0,-92r3,-3v-7,-26,-3,-57,-22,-51v2,-5,-5,-20,-2,-33v10,-1,16,1,13,11v2,-4,6,-15,9,-2v1,-7,9,-2,15,-2v0,1,-5,11,-4,15v-4,-3,-13,-3,-14,2v1,9,29,11,31,0xm50,-109v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm49,-102v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm45,-64v-15,7,6,27,9,35r0,29v-74,-15,-47,-114,-47,-191v0,-13,4,-19,12,-19v-3,-23,24,-7,29,-25v2,0,4,-1,6,-1r0,30v-27,14,-18,113,-9,142xm50,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm43,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm87,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm78,-202v1,1,4,5,3,0r-3,0xm79,-194v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm107,-138v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm25,-215v-1,1,-2,6,0,7v0,-2,2,-5,0,-7xm109,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm110,-118v0,-4,-4,-5,-3,0r3,0xm103,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm102,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm83,-122v-1,0,-2,4,0,4v1,-1,1,-3,0,-4xm37,-142v0,1,-2,2,0,2r0,-2xm40,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2","w":118,"k":{"\u00c1":5,"\u00c2":5,"\u0178":5,"\u00ff":5,"\u00c3":5,"\u00c0":5,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"\u00c5":5,"\u00c4":5,"y":5,"v":4,"a":9,"Y":5,"X":11,"W":4,"V":5,"J":4,"A":5,".":7,",":7,"'":4}},"P":{"d":"122,-179v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm55,-193v2,0,3,5,0,5v-2,0,-1,-5,0,-5xm102,-215v18,15,4,44,13,62v-4,4,-4,11,-2,14v1,12,-27,53,-40,39v-6,0,-21,7,-29,5v-4,-8,-3,-48,10,-33v23,0,39,-49,16,-65v-9,-10,3,-16,-6,-22v-4,5,-5,10,-5,14v-7,-3,-10,-2,-18,0v0,-7,-1,-20,3,-22v17,2,31,-10,49,-3v-1,8,11,1,9,11xm44,-171v0,2,1,6,-2,5xm42,-162v2,0,3,5,0,5v-3,0,-2,-5,0,-5xm42,-151v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm38,-82v4,18,0,31,5,53v-12,8,7,33,-21,29v-3,-3,-9,-4,-15,-5v0,-23,-5,-56,8,-66v-2,0,-3,0,-6,-2r0,-150v4,1,5,-1,4,-5v8,0,15,6,25,7r0,139xm80,-223v-1,-2,-4,-3,-4,0r4,0xm76,-192v1,2,2,3,2,-1xm111,-153v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm82,-177v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm84,-151v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm19,-90v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm11,-89v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm13,-84v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm22,-68v1,-2,2,-2,-2,-1xm38,-38v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm38,-32v3,0,0,-3,0,-1r0,1","w":120,"k":{"\u00c1":25,"\u00c2":25,"\u0178":9,"\u00ff":7,"\u00c3":25,"\u00c0":25,"\u00e5":23,"\u00e3":23,"\u00e4":23,"\u00e2":23,"\u00e0":23,"\u00e1":23,"\u00c5":25,"\u00c4":25,"y":7,"j":32,"a":23,"Z":9,"Y":9,"X":16,"W":5,"V":9,"J":32,"A":25,".":35,"-":4,",":25}},"Q":{"d":"78,-242v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm121,-195v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm121,-157v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm44,-190v2,0,3,3,0,4v-2,-1,-3,-3,0,-4xm106,-30v-1,1,20,13,18,16v-3,8,-3,19,-8,25v-26,5,-28,-19,-49,-13v-12,4,-7,-13,-8,-22v10,-20,23,-16,19,-60v-3,-31,14,-96,-10,-116v-8,-7,-10,-19,-9,-35v29,-9,38,21,52,30v-6,12,10,44,-7,50v4,2,7,2,11,2v-9,5,0,11,-1,22r-3,0r4,31r-5,-4v0,8,-2,38,5,24v1,10,-7,7,-2,16v-7,3,0,13,0,19v0,1,-8,13,-7,15xm121,-73v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm42,-148v1,1,1,1,0,2v-2,-1,-2,-1,0,-2xm48,-118v-2,4,-9,-1,-3,0r3,0xm48,-102v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm42,-106v-9,29,-6,65,13,77r0,24v-8,0,-17,0,-20,3v-16,-17,-36,-34,-24,-67v-9,-9,12,-7,6,-15r-10,2v2,-61,-17,-156,48,-153r0,31v-13,1,-24,29,-13,40v0,8,-11,18,0,25v2,22,-13,21,-5,35xm42,-84v1,1,1,1,0,2v-2,-1,-2,-1,0,-2xm50,-64v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm104,-164v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm90,-166v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm99,-155v-1,0,-5,-4,-4,0r4,0xm110,-111v2,0,4,0,3,-2v-2,0,-4,0,-3,2xm93,-91v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm19,-155v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm101,-66v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm39,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm35,-84v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm24,-89v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm31,-73v2,-1,1,-4,0,-5v-2,1,-3,4,0,5","w":125,"k":{"\u00d9":4,"\u00db":4,"\u00da":4,"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u0178":18,"\u00d5":4,"\u00fc":9,"\u00fb":9,"\u00f9":9,"\u00fa":9,"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"\u00d6":4,"u":9,"o":9,"Y":18,"W":12,"V":18,"U":4,"T":12,"Q":2,"O":4,"-":7,"'":12}},"R":{"d":"101,-222v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm116,-184v1,-1,4,-1,5,0v-1,2,-4,1,-5,0xm50,-193v1,0,2,5,0,5v-3,0,-2,-5,0,-5xm47,-153v2,-2,4,0,1,1xm94,-86v11,15,6,42,18,56v-4,7,-4,12,7,16v-6,-1,-11,24,-16,9v-2,8,-33,7,-25,-4v-5,-19,-10,-48,-19,-86r-9,0v2,-1,3,-3,6,-5r-9,0r0,-28v5,5,13,-5,30,-5v-9,-4,3,-25,2,-31v0,-23,-11,-36,-32,-38r0,-26v10,-1,18,-3,23,-5r0,4v25,0,27,9,25,23v4,1,1,-7,7,-5v0,4,-2,7,-5,9v13,-5,15,13,17,44v8,7,-6,7,-6,21v0,20,-36,32,-12,48xm103,-69v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm118,-44v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm35,-128v13,0,5,25,6,31v-2,-7,-12,-5,-20,-5v3,7,11,9,22,9v-3,8,1,19,3,28v-20,2,1,28,-5,47v9,5,-3,11,-8,16v0,0,-19,-1,-26,2r3,-76v9,-4,2,-6,4,-10v-10,1,-4,-9,-4,-18r-3,-126v4,-2,7,-3,12,-3v-6,0,-10,7,-5,13v2,-2,3,-7,6,-8v0,12,8,5,18,6v1,-2,3,-3,5,-6r-2,93v-6,1,-3,6,-6,7xm49,-51v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm41,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm43,-51v0,2,0,2,-2,2xm10,-82v2,1,3,3,0,4v-2,-1,-3,-3,0,-4xm90,-199v1,-1,4,-4,0,-3v-1,0,-5,4,0,3xm105,-173v-3,0,-11,10,-10,11v5,0,9,-3,10,-11xm82,-160v1,0,1,-1,1,-2xm98,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm103,-131v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm94,-131v1,-1,3,-2,0,-2r0,2xm96,-126v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm90,-131v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm94,-115v2,-2,3,-4,0,-5v-3,1,-2,3,0,5xm34,-155v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm76,-111v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm38,-142v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm20,-158v1,0,1,-1,1,-2xm30,-146v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm21,-148v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm12,-155v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm50,-115v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm92,-69v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm27,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm25,-133v-3,-1,-9,2,-4,2v1,0,2,0,4,-2xm78,-71v3,1,7,-2,3,-4r-5,-1v0,2,1,3,2,5xm12,-137v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm38,-109v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm72,-71v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm74,-69v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm28,-114v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm32,-111v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm81,-56r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm30,-104v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm21,-113v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm14,-115v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm80,-51v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm21,-107v0,3,3,0,1,0v-1,0,-1,-1,-1,0xm21,-93v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm96,0v3,0,2,-5,0,-5v-2,1,-1,4,0,5xm23,-64v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm31,-50v1,-1,1,-1,0,-2v-2,0,-1,2,0,2xm25,-53v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm25,-49v0,0,-2,-3,-2,0r2,0","k":{"\u00c1":5,"\u00c2":5,"\u0178":18,"\u00ff":18,"\u00c3":5,"\u00c0":5,"\u00fc":7,"\u00fb":7,"\u00f9":7,"\u00fa":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"\u00c5":5,"\u00c4":5,"y":18,"u":7,"o":7,"a":9,"Y":18,"X":4,"W":12,"V":16,"T":9,"J":5,"A":5,"-":9}},"S":{"d":"83,-238v0,1,-1,3,-1,1xm117,-203v-4,0,-5,-4,0,-3r0,3xm97,-226v-2,5,17,24,13,38v-1,11,-27,10,-28,11v-3,-6,-16,-26,-25,-29v2,-11,-7,-27,9,-27v8,0,18,2,31,7xm64,-153v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm113,-104v0,3,0,5,-3,4xm107,-83v18,13,8,53,-9,58v-5,2,-5,5,-3,10v-6,8,-26,25,-34,8v0,-3,0,-6,1,-7v-3,-1,-2,-2,0,-4v1,1,1,2,1,4r27,0v3,-5,-2,-7,-6,-8v-12,-2,-20,8,-23,-2v21,-21,31,-40,3,-67v3,-1,2,-3,1,-5v-18,2,-60,-46,-57,-64v-5,-41,4,-73,45,-73r0,31v-35,19,11,74,33,78r-3,2v11,4,22,23,24,39xm53,-38v2,1,1,4,0,5v-2,-1,-3,-4,0,-5xm34,-65v-2,16,41,48,19,65v-23,-8,-60,-22,-47,-60v11,-3,21,-4,28,-5xm40,-1v3,0,0,3,0,1r0,-1xm13,-15v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm113,-62r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm64,-97v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm75,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm48,-7v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm38,-10v1,1,2,2,2,-1","w":120,"k":{"\u00c1":4,"\u00c2":4,"\u0178":12,"\u00ff":12,"\u00c3":4,"\u00c0":4,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"\u00c5":4,"\u00c4":4,"y":12,"w":11,"v":12,"t":14,"a":11,"Y":12,"X":14,"W":9,"V":12,"T":4,"J":9,"A":4,".":12,"-":16}},"T":{"d":"81,-199v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm5,-230v25,-5,36,0,60,0v1,-7,5,-8,4,0v17,-1,29,0,42,-3v0,14,-1,28,-4,31r-102,0r0,-28xm82,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm84,-122v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm82,-102v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm71,-195v-2,30,3,65,0,87v3,8,-2,25,0,39v5,1,8,3,8,5r-8,0r0,64r-32,-1r-1,-194v9,-5,26,-4,33,0xm43,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm38,-228v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm34,-228v2,0,2,-3,1,-4v-2,0,-4,0,-3,2v0,1,1,2,2,2xm23,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm51,-82v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm45,0v3,0,2,-5,0,-5v-2,0,-3,5,0,5","w":116,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c1":39,"\u00c2":39,"\u00d5":7,"\u00c3":39,"\u00c0":39,"\u00f5":18,"\u00f6":18,"\u00f4":18,"\u00f2":18,"\u00f3":18,"\u00e5":42,"\u00e3":42,"\u00e4":42,"\u00e2":42,"\u00e0":42,"\u00e1":42,"\u00d6":7,"\u00c7":7,"\u00c5":39,"\u00c4":39,"s":16,"o":18,"a":42,"S":5,"Q":5,"O":7,"J":30,"G":5,"C":7,"A":39,".":32,"-":28,",":26}},"U":{"d":"124,-155v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm113,-233v1,25,-2,58,2,71v-7,33,8,85,-7,111v-8,-6,-29,8,-29,-15r3,-164v16,-1,15,-2,31,-3xm50,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm50,-124v0,0,1,7,-1,3v0,-1,0,-3,1,-3xm108,-44v-1,-1,-3,-2,0,-2r0,2xm44,-53v-8,10,1,15,13,27r0,25v-59,1,-50,-66,-49,-127v2,-2,4,-4,0,-5r0,-96v20,2,29,-9,36,-1v-5,4,-7,23,3,26r-7,0r2,107v-1,0,-2,-1,-2,-3v-1,16,3,30,-1,41v0,5,2,7,5,6xm113,-40v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm50,-102v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm97,-40v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm93,-29v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm46,-66v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm62,-29v4,-1,21,-29,26,-14v3,8,-9,5,-13,9v-1,3,12,1,13,8v-4,-2,-14,4,-6,4r20,0v-1,12,-25,28,-40,20r0,-27xm90,-221v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm17,-217v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm13,-220v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm101,-104v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm95,-100v2,-1,2,-3,0,-4v-2,1,-2,3,0,4xm112,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm20,-118v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm26,-111v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm11,-122v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm84,-44v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm17,-80v2,-1,0,-3,0,-1r0,1xm13,-66v3,1,2,-3,2,-5v-3,-1,-2,3,-2,5xm26,-53v-1,-1,-2,-3,-2,0r2,0xm15,-58v5,-1,6,-4,0,-4r0,4xm15,-49v2,0,6,1,5,-2v-2,0,-6,-1,-5,2","w":123,"k":{"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c0":12,"\u00e5":12,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e0":12,"\u00e1":12,"\u00c5":12,"\u00c4":12,"w":9,"a":12,"X":7,"J":9,"A":12}},"V":{"d":"124,-220v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm128,-208v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm124,-202v0,2,0,4,-2,3v0,-2,0,-4,2,-3xm119,-179v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm102,-111v-5,23,1,67,-19,81v6,8,6,16,1,25v-15,-1,-19,4,-27,6v7,-42,7,-108,23,-145v-2,-31,2,-51,11,-86r31,0v-7,19,-5,44,-9,64v9,11,-19,39,-6,51v-1,2,-2,3,-5,4xm99,-60v2,-2,4,0,1,1xm64,-115v0,20,-6,90,-13,110v-10,-16,-21,-104,-29,-141v4,-10,-19,-64,-15,-84v12,1,29,-1,35,-2v-1,7,6,28,4,42v13,-2,0,6,5,17r4,-2v-6,17,2,43,9,60xm95,-49v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm93,-33v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm78,-1v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm72,-1v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm51,0v0,-4,2,0,2,0r-2,0xm95,-223v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm53,-153v0,-2,-3,-1,-4,-1v0,2,2,2,4,1xm49,-44v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm71,-22v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm73,-11v2,0,2,0,2,-2xm64,-13v4,1,6,-1,5,-5xm49,-29v2,0,1,-3,0,-4v-2,1,-3,3,0,4","w":131,"k":{"\u00d2":9,"\u00d4":9,"\u00d3":9,"\u00c8":7,"\u00cb":7,"\u00c1":31,"\u00ca":7,"\u00c2":31,"\u00ff":5,"\u00d5":9,"\u00c3":31,"\u00c0":31,"\u00fc":9,"\u00fb":9,"\u00f9":9,"\u00fa":9,"\u00f5":16,"\u00f6":16,"\u00f4":16,"\u00f2":16,"\u00f3":16,"\u00e7":9,"\u00e5":39,"\u00e3":39,"\u00e4":39,"\u00e2":39,"\u00e0":39,"\u00e1":39,"\u00d6":9,"\u00c9":7,"\u00c7":11,"\u00c5":31,"\u00c4":31,"y":5,"u":9,"s":16,"r":7,"o":16,"l":7,"c":9,"a":39,"W":7,"S":9,"R":2,"Q":12,"O":9,"J":35,"H":7,"G":12,"E":7,"C":11,"B":5,"A":31,".":35,"-":21,",":28}},"W":{"d":"116,-200v1,-2,2,-3,2,1xm28,-234v0,0,-2,5,-1,1xm49,-177v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm146,-230v12,-5,26,3,31,-5v0,19,4,42,-8,51v3,10,-6,17,2,28v1,2,-8,8,-2,10v0,0,-12,22,-7,42v-9,21,-6,44,-14,65v4,16,4,14,-6,34v-5,-1,-9,3,-5,5r-19,0v-7,-3,-15,-88,-18,-92r-7,0v4,-10,3,-19,-2,-28v-14,11,-7,45,-15,62v7,5,-8,42,-9,49v2,-28,-13,-49,-9,-100v-2,-2,-6,-3,-7,0v-2,26,13,80,12,103v-15,0,-10,8,-25,6v-7,-80,-22,-152,-32,-230v19,-1,16,-2,32,2r-2,11v1,-1,3,-3,6,-3v-3,12,-3,14,2,18v0,25,3,40,5,58v29,-9,16,-23,29,-86v16,-1,30,-2,34,13r-5,0v3,13,1,30,13,34r-7,0v10,15,-2,33,15,37v-15,5,1,6,-6,22v3,2,0,17,9,9xm157,-44v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm86,-82v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm160,-229v3,0,0,-3,0,-1r0,1xm173,-202v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm160,-173v1,1,2,3,2,0r-2,0xm153,-168v-1,-2,-2,-4,-2,0r2,0xm142,-166v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm157,-142v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm89,-204v2,1,6,-3,2,-2xm89,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm140,-137v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm151,-111v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm86,-170r0,-6v-2,0,-3,1,-4,3v0,2,2,3,4,3xm25,-226v1,1,2,3,2,0r-2,0xm111,-137v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm127,-105v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm93,-137v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm128,-97v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm84,-140v0,2,3,0,1,0r-1,0xm90,-130v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm86,-122v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm38,-168v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm69,-137v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm146,-51v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm99,-95v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm54,-144v-1,9,-6,21,-1,29v7,0,10,-10,10,-29r-9,0xm45,-140v1,1,2,1,3,0r-3,0xm146,-24v3,1,2,-3,2,-5v-3,-1,-2,3,-2,5xm27,-140v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm111,-56v1,2,2,4,2,0r-2,0xm111,-44v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm113,-38v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm118,-33v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm115,-20v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm118,-15v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm51,-51v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm36,-46v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm56,-17v3,0,0,-3,0,-1r0,1xm46,-22v2,-1,3,-3,0,-4v-2,0,-1,3,0,4xm46,0v3,0,2,-5,0,-5v-2,1,-1,4,0,5xm43,0v1,-1,1,-4,-1,-5v-2,0,-3,6,1,5xm58,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5","w":185,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c1":30,"\u00c2":30,"\u00ff":9,"\u00d5":7,"\u00c3":30,"\u00c0":30,"\u00f5":12,"\u00f6":12,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00e5":32,"\u00e3":32,"\u00e4":32,"\u00e2":32,"\u00e0":32,"\u00e1":32,"\u00d6":7,"\u00c7":5,"\u00c5":30,"\u00c4":30,"y":9,"x":9,"s":12,"o":12,"m":9,"a":32,"X":2,"S":5,"Q":7,"O":7,"J":32,"G":7,"C":5,"B":4,"A":30,".":32,"-":18,",":23}},"X":{"d":"121,-211v1,2,2,3,0,5v-2,-2,-1,-3,0,-5xm49,-238v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm97,-158v4,2,5,7,-2,7v-5,11,-4,18,-12,20v-22,-33,-13,-71,5,-97v16,-1,28,-2,36,-2v-4,18,-20,48,-27,72xm92,-122v-1,1,-3,1,-4,0v4,-1,0,-1,4,0xm34,-158v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm119,-42v-10,18,25,40,-9,43r0,-5r-18,0v-12,-13,-10,-59,-33,-56v-6,21,-16,50,-22,58v-5,-7,-14,6,-23,1r7,0v-1,-7,-11,0,-16,-1v8,-39,55,-105,32,-149v0,-1,0,-5,2,-11r-7,2v-16,-41,-24,-64,-24,-70v19,0,34,-12,39,9v3,12,12,14,5,17v11,39,20,79,40,104v3,20,13,35,22,60v2,0,3,-1,5,-2xm31,-1v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm10,-2v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm63,-64v4,0,7,-3,2,-5v-4,0,-5,4,-2,5xm101,-22v3,-1,5,-5,0,-4r0,4xm57,-60v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm34,-51v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm32,-40v2,0,2,0,2,-2xm34,-31v2,0,4,0,3,-2v-2,0,-4,0,-3,2xm21,-40v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm21,-26v6,-1,7,-6,0,-5r0,5","w":130,"k":{"\u00d2":9,"\u00d4":9,"\u00d3":9,"\u00c1":2,"\u00c2":2,"\u00ff":5,"\u00d5":9,"\u00c3":2,"\u00c0":2,"\u00fc":5,"\u00fb":5,"\u00f9":5,"\u00fa":5,"\u00f5":14,"\u00f6":14,"\u00f4":14,"\u00f2":14,"\u00f3":14,"\u00d6":9,"\u00c7":5,"\u00c5":2,"\u00c4":2,"y":5,"u":5,"o":14,"S":4,"Q":7,"O":9,"G":4,"C":5,"B":2,"A":2,"-":30}},"Y":{"d":"122,-220v-24,44,-20,60,-41,116v-4,-7,-9,-22,-16,-44v5,-18,11,-46,20,-82r36,0v2,2,-10,12,1,10xm25,-232v-3,0,-1,-1,-1,-1xm63,-179v2,1,3,3,0,4v-2,0,-1,-4,0,-4xm59,-159v1,33,31,64,20,104v1,15,-3,35,2,46v-10,8,-7,8,-20,9v3,-1,11,-5,4,-5v-10,0,-17,7,-22,3v6,-26,2,-66,3,-98v-7,-18,-46,-134,-40,-130v8,1,16,-5,18,2v1,-4,7,-6,14,-5v0,9,4,13,8,13v0,11,5,46,13,43v-3,8,0,14,3,18r-3,0xm90,-33v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm84,-18v2,-2,3,0,1,1xm44,-163v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm37,-166v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm30,-159v3,-1,2,-3,0,-5v-2,2,-3,4,0,5","w":126,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c1":30,"\u00c2":30,"\u00d5":7,"\u00c3":30,"\u00c0":30,"\u00f5":18,"\u00f6":18,"\u00f4":18,"\u00f2":18,"\u00f3":18,"\u00e5":40,"\u00e3":40,"\u00e4":40,"\u00e2":40,"\u00e0":40,"\u00e1":40,"\u00d6":7,"\u00c7":11,"\u00c5":30,"\u00c4":30,"s":12,"o":18,"a":40,"S":5,"Q":9,"O":7,"J":30,"G":7,"C":11,"B":2,"A":30,".":30,"-":26,",":25}},"Z":{"d":"96,-230v2,1,1,3,0,4v-2,0,-1,-3,0,-4xm91,-228v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm87,-228v-2,2,-8,9,-6,5v1,-2,3,-4,-1,-3v-3,0,-4,1,-6,3v0,-6,7,-5,13,-5xm87,-219v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm94,-210v-2,0,-4,0,-5,-2v2,0,6,-1,5,2xm69,-223v0,-2,2,-4,2,-1xm89,-208v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm107,-223v-5,18,-10,46,-27,52v-1,-9,15,-12,5,-24v5,-1,8,-2,11,-5r-7,0v8,-10,7,-15,18,-23xm76,-212v0,2,1,5,-2,4xm71,-212v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm63,-219v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm83,-201v-2,0,-7,4,-7,0r7,0xm67,-204v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm41,-217v4,-3,18,-21,22,-4v-4,0,-6,-1,-9,2v2,11,10,7,13,9r-4,9v-3,-2,-4,-9,-12,-7v0,-2,-1,-5,-1,-9r-9,0xm77,-197v0,4,-4,9,-10,9v-1,-7,1,-9,10,-9xm83,-186v-3,0,-8,3,-9,1v1,-4,4,-4,9,-1xm52,-204v1,0,1,1,1,2xm91,-164v2,1,2,2,0,3v-1,-1,-1,-2,0,-3xm38,-210v8,-2,3,5,3,9v-7,-4,-11,1,-24,0v0,-2,1,-7,-1,-7v-4,-1,-4,5,-6,7r0,-28v14,2,18,-4,31,-5r-7,4v5,2,7,5,7,9v-6,-1,-2,7,-3,11xm61,-171v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm81,-139v0,-2,3,0,1,0r-1,0xm74,-108v-19,19,-18,49,-33,72r-36,0v2,-13,15,-7,9,-19v8,-24,20,-67,38,-87v-2,-1,-3,-2,-3,-4v12,4,4,-9,12,-11v-3,0,-6,-1,-8,2r0,-9v4,6,13,1,12,-8v0,-4,-5,-5,-2,-9v3,1,8,4,5,10v4,0,5,0,8,-2v-4,7,4,9,-2,18v13,3,11,-16,17,-24v9,11,-15,24,-2,33v-9,3,-19,8,-10,13v-8,2,-9,19,-5,25xm56,-62v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm47,-38v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm96,0v-29,2,-54,-13,-71,0r-20,0r0,-31v11,-2,55,4,84,-5v-1,6,8,2,12,3r1,-5v8,4,2,20,3,33v-6,-1,-14,1,-9,5xm36,-2v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm3,-2v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm56,-221v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm34,-221v2,-1,5,-6,0,-5r0,5xm30,-223v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm32,-210v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm25,-212v4,0,5,-3,5,-7v-2,2,-4,4,-5,7xm17,-223v1,1,1,3,1,0r-1,0xm30,-204v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm71,-159v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm18,-212v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm67,-161v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm18,-206v2,0,6,1,5,-2xm69,-155v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm71,-148v2,0,4,0,3,-3xm65,-153v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm70,-140v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm63,-139v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm58,-138v1,1,0,-6,0,-6v-1,3,-1,3,0,6xm50,-131r0,-4v-2,0,-1,4,0,4xm63,-115v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm52,-120v1,-4,-2,-4,-2,-1v0,1,1,1,2,1xm47,-121v1,-2,3,-2,3,-5v-2,1,-4,1,-3,5xm27,-73v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm25,-53v2,0,2,0,2,-2xm18,-53v4,1,3,-2,3,-5xm21,-46v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm7,-22v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm10,-2v3,0,8,2,7,-3v-3,0,-5,1,-7,3","w":112,"k":{"\u00f5":9,"\u00f6":9,"\u00f4":9,"\u00f2":9,"\u00f3":9,"o":9,"-":23}},"[":{"d":"67,-245v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm67,-228v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm44,-244v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm37,-142v1,0,2,5,0,5v-2,0,-1,-5,0,-5xm42,-111v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm7,-235r54,-5v-7,13,6,39,-28,37v-1,8,1,9,9,12v-9,3,-11,15,-8,29r5,0v-13,12,2,42,-6,54v4,17,-12,51,12,50v-9,6,-16,7,-10,30r4,0v-5,2,-6,13,0,13r21,0v-4,9,2,23,-6,15v-5,9,-9,-6,-19,4v-5,3,-9,5,-11,5v7,-15,9,-31,-4,-36v0,5,-9,20,-13,21r0,-229xm43,-95v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm58,-19v-5,0,-8,2,-12,0r12,0xm12,2v-2,0,-6,4,-5,0r5,0xm54,-235v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm50,-235v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm56,-216v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm12,-190v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm12,-57v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm9,-40v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm16,-27v3,-1,2,-4,0,-5v-2,1,-3,4,0,5","w":72},"\\":{"d":"51,-229r147,227v-10,0,-23,-1,-40,-4v-3,-1,-27,-48,-39,-46v2,0,3,-1,3,-4v-11,-3,-5,-4,-3,-7v-9,-22,-29,-32,-41,-62v-9,-22,-22,-12,-20,-33v-9,-3,-15,-7,-7,-9v-9,-13,-15,-33,-33,-36v13,-4,-8,-21,-7,-26r40,0xm86,-104v5,0,2,4,0,3v-1,0,-2,0,-3,-1v0,-1,1,-2,3,-2xm107,-74v0,1,-1,2,-3,2v-2,0,-3,-1,-3,-2v0,-1,1,-2,3,-2v2,0,3,1,3,2xm132,-38v-1,2,-4,3,-5,0v0,-1,0,-2,2,-2v2,0,3,1,3,2xm64,-148v0,-2,0,-3,-2,-3v-2,0,-3,1,-3,3v0,1,1,2,3,2v2,0,2,-1,2,-2xm162,-32v2,4,9,0,4,-2v-2,0,-4,1,-4,2","w":209},"]":{"d":"65,-246v0,2,-2,1,-3,1v0,-2,2,-1,3,-1xm63,-231v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm63,-112v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm62,-97v2,0,4,0,3,2xm30,-160v-4,-15,11,-61,-23,-55r0,-24v14,-1,34,3,43,-3v-1,5,5,2,8,3r1,43r7,0v0,2,-3,3,-8,4v2,12,2,24,0,36r4,-2v-10,11,4,39,-6,49v2,22,3,64,2,87r4,-2v-14,17,-5,17,-3,33v-17,3,-22,-1,-45,-1v-2,-3,-3,-4,0,-7v12,7,16,-6,8,-13v0,-9,14,-14,13,-23r-4,0v1,-19,-3,-43,2,-58v-5,-10,-2,-47,-3,-67xm60,-69v3,1,1,6,-1,3v0,-1,0,-2,1,-3xm65,-62v1,3,-3,2,-5,2v-1,-3,3,-2,5,-2xm7,-20v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm9,-14v3,0,2,5,0,5v-1,0,-2,-5,0,-5xm50,-206v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm33,-206v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm50,-128v1,1,2,3,2,0r-2,0xm56,-118v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm50,-118v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm43,-120v3,0,2,-3,0,-4v-1,1,-2,4,0,4xm39,-118v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm33,-120v3,1,2,-4,2,-6xm37,-113v1,2,5,3,4,0r-4,0xm48,-101v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm46,-94v3,0,5,0,4,-3xm39,-92v1,-2,7,-6,0,-5r0,5xm48,-6v0,-5,-3,-8,-9,-8v-7,0,-10,13,1,13v5,-1,8,-2,8,-5","w":72},"^":{"d":"52,-272v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm65,-256r0,2v-1,-1,-1,-1,0,-2xm61,-256r0,2v-1,-1,-1,-1,0,-2xm72,-240v-1,2,-3,0,-1,0r1,0xm5,-232v7,-7,16,-60,41,-43v2,0,23,40,24,43v-24,8,-21,-25,-33,-31v-8,13,-7,35,-32,31xm37,-277r1,0r-1,0","w":73},"_":{"d":"87,-2v-30,-1,-53,3,-82,0r0,-21v11,-3,28,2,33,-3v10,7,33,1,48,3v1,4,4,16,1,21xm31,-21v1,-1,1,-3,-1,-3v-2,1,0,2,1,3","w":93},"`":{"d":"60,-249v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm57,-234v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm32,-251v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm38,-232v2,1,4,-2,2,-2v-1,0,-2,1,-2,2","w":75},"a":{"d":"86,-235v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm143,-87v1,3,-3,2,-5,2v-1,-3,3,-2,5,-2xm132,-83v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm69,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm71,-131v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm132,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm128,-56v2,1,3,2,-1,2xm78,-87v6,-22,-20,-67,-3,-83v-16,0,-14,-46,-14,-60v7,-2,10,2,25,1v10,8,1,24,15,27v-11,-2,-2,8,-6,13v2,11,0,35,17,38v-21,2,3,16,-4,27v3,7,7,11,4,21v2,5,14,7,13,16v-19,5,3,26,-4,39v8,7,0,30,12,34v-4,0,-7,4,-8,10v-12,-2,-37,7,-32,-10v0,-11,-4,-18,-15,-19r0,-4v-12,0,-16,7,-19,-4v-25,1,-6,54,-45,39v-4,3,-7,3,-7,-3v-1,-23,24,-74,5,-93v3,-2,5,-10,5,-24v10,0,14,-8,7,-11v-14,6,-30,2,-21,-11v8,2,16,9,24,5r-7,0v20,-15,14,-64,27,-90v3,0,7,1,9,2v4,34,11,74,6,105v0,-1,-1,-4,-3,-4v1,3,12,15,-1,15v-4,15,-10,25,5,20v5,-7,13,-3,15,4xm69,-100r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm12,-120v0,2,0,2,-2,2xm10,-104v-5,6,-10,6,-20,6v1,-6,11,-7,20,-6xm69,-31v1,1,4,4,0,3r0,-3xm79,-150v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm120,-88v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm64,-89v1,0,2,-1,2,-3v-2,0,-5,2,-2,3xm66,-89v1,1,-4,5,0,4v2,-1,5,-4,1,-5xm10,-135v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm73,-48v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm51,-48v2,-1,3,-3,0,-4v-2,0,-1,3,0,4","w":137,"k":{"\u0131":7,"\u00ff":35,"\u00fc":12,"\u00fb":12,"\u00f9":12,"\u00fa":12,"\u00f5":18,"\u00f6":18,"\u00f4":18,"\u00f2":18,"\u00f3":18,"\u00f1":4,"\u00ef":7,"\u00ee":7,"\u00ec":7,"\u00ed":7,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":16,"\u00e5":7,"\u00e3":7,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"z":11,"y":35,"x":5,"w":33,"v":37,"u":12,"t":40,"s":12,"r":5,"q":12,"p":7,"o":18,"n":4,"m":14,"l":7,"k":4,"j":14,"i":7,"h":7,"g":9,"f":5,"e":5,"d":14,"c":16,"b":5,"a":7,"B":7}},"b":{"d":"126,-183v-1,1,-2,3,-2,0r2,0xm55,-189v0,4,-6,1,-9,2v0,-4,6,-1,9,-2xm2,-238v4,2,1,9,-4,9v0,-4,1,-7,4,-9xm46,-166v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm55,-156v2,8,-6,6,-10,8v0,-5,4,-8,10,-8xm-4,-200v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-24,-212v0,2,-3,1,-4,1v2,-2,1,-2,4,-1xm-33,-214v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm96,-122v27,28,26,44,22,82r8,0v-3,1,-15,11,-14,18r-3,0v1,2,5,3,11,2v-18,6,-67,39,-75,3v-2,-1,-6,13,-6,13v-9,-1,-16,2,-21,4v-6,3,-6,-18,-9,-18v-7,-1,-18,2,-24,-1v3,-2,8,-3,15,-3v2,-8,-6,-18,-7,-24v5,-5,11,-16,6,-25v-9,0,-22,-3,-16,-14v-4,11,15,16,19,7v2,-6,-20,-8,-18,-14v4,-1,6,7,8,3v-1,-17,-15,2,-21,1v1,-13,22,-13,38,-12v4,-4,0,-6,-5,-8r7,0v-1,-27,3,-57,-4,-79v-2,10,-16,11,-9,0v-3,-12,10,-12,4,-23r-15,0v4,-1,9,-3,17,-6v-6,-15,10,-21,20,-13v1,-1,3,-2,4,-6r15,8r0,186v8,6,15,7,15,-6v12,13,27,-1,27,-19v0,-17,-8,-43,-24,-34v-4,-1,-8,-10,-15,-4r0,-40v1,2,6,10,10,9v29,1,35,-62,4,-63r-14,4r0,-33v5,0,22,-1,30,-4v45,13,53,81,20,109xm4,-146v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm46,-89v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm55,-70v0,7,-8,5,-8,0r8,0xm70,-46v0,-4,2,0,2,0r-2,0xm55,-52v0,4,-6,1,-9,2v0,-4,6,-1,9,-2xm52,-41v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-5,-60v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm-6,-26v1,2,-1,2,-3,2xm5,-191v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm60,-119v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm60,-38v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm7,-85v-1,-1,-4,-1,-5,0v1,1,3,1,5,0xm9,-79v3,-2,2,-4,-2,-3xm46,-31v0,-2,0,-3,-2,-4v0,2,-1,5,2,4xm2,-70v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm9,-59v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm4,-39v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm9,-38v-3,0,-5,4,-5,11v4,0,5,-4,5,-11","w":129,"k":{"\u0131":4,"\u00ff":21,"\u00fc":9,"\u00fb":9,"\u00f9":9,"\u00fa":9,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00f1":7,"\u00ef":4,"\u00ee":4,"\u00ec":4,"\u00ed":4,"\u00e7":9,"\u00e5":14,"\u00e3":14,"\u00e4":14,"\u00e2":14,"\u00e0":14,"\u00e1":14,"z":5,"y":21,"x":14,"w":18,"v":19,"u":9,"t":14,"s":5,"r":5,"q":7,"p":9,"o":11,"n":7,"m":12,"l":7,"k":5,"j":9,"i":4,"h":5,"g":5,"f":2,"d":9,"c":9,"b":4,"a":14,"-":14}},"c":{"d":"82,-237v1,2,-1,2,-3,2v-1,-2,1,-2,3,-2xm62,-231v8,-1,32,7,37,7v4,7,6,17,15,19v0,15,-2,25,-2,47v-11,-1,-21,9,-24,6v1,-5,-12,-30,-15,-44v0,-1,-13,-5,-11,-9r0,-26xm32,-231v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm10,-222v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm45,-174v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm5,-211v2,5,0,11,-6,13xm116,-85v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-14,-211v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm48,-147v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm112,-78v0,-1,4,-2,4,0r-4,0xm-5,-196v1,1,3,2,0,2r0,-2xm109,-83v1,7,-7,9,-10,5v2,-3,6,-5,10,-5xm110,-73v3,0,2,5,0,1r0,-1xm-12,-192v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm-18,-185v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm-21,-185v-1,3,-6,6,-8,3v-1,-3,4,-3,8,-3xm94,-81v-3,11,17,12,17,19v-4,1,-11,-2,-10,3r11,0v0,6,1,13,-4,13v8,12,-6,30,-11,11v-3,-1,-7,-3,-11,-6v8,-6,0,-16,6,-24v-3,1,-6,1,-10,2r0,-18r12,0xm58,-198v-1,6,14,9,13,15r-29,0v0,23,5,34,0,52v1,-4,3,-5,6,-5v-11,19,1,49,-6,71v3,2,3,10,0,14v-1,3,17,17,16,20v-2,11,7,36,-10,29v-17,5,-41,-29,-19,-29v-1,-4,-3,-5,-7,-3v-30,-11,5,-115,-19,-151v-11,-4,-3,-5,6,-17v14,-20,32,-29,49,-29r0,33xm82,-57v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm86,-48v1,3,-2,2,-4,2v0,-2,2,-2,4,-2xm95,-31v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm99,-22v0,2,1,6,-2,5v0,-2,0,-4,2,-5xm88,-20v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm74,-26v-4,7,15,10,19,14v-5,10,-22,17,-31,8v2,-13,-7,-30,13,-27v4,1,15,2,9,7xm15,-29v1,-2,2,-3,2,1xm106,-170v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm56,-189v-1,-1,-4,-5,-3,0r3,0xm59,-184v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm53,-183v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm86,-67v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm90,-54v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm99,-39v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm95,-41v-1,-1,-4,-4,-3,0r3,0xm83,-10v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm27,-24v2,0,3,-3,0,-4v-2,1,-1,3,0,4","w":121,"k":{"\u00ff":9,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00e5":12,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e0":12,"\u00e1":12,"z":4,"y":9,"x":11,"w":7,"v":9,"t":4,"q":4,"o":4,"a":12,".":14}},"d":{"d":"45,-240v-8,0,-13,-3,-13,-10v7,1,12,5,13,10xm21,-243v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm59,-187v2,1,8,-2,7,2v-3,2,-8,4,-7,-2xm50,-174v-2,-1,-5,-6,0,-5r0,5xm122,-54v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm114,-179v3,34,-1,72,2,110v1,14,-13,40,7,43v-5,1,-4,7,-8,11v-1,-4,-3,-7,-6,-7v-5,-1,-18,13,-22,13v0,-7,-4,-1,-7,0v-15,-5,-31,-5,-52,-2v1,1,3,3,3,4v0,5,-13,10,-18,5v5,-19,-13,-53,14,-51v9,0,14,9,16,25v1,-8,7,-6,14,-9v3,9,17,-5,24,-8r0,-129v-7,-8,-10,-25,-29,-22v-6,-1,-8,-3,-9,-7r0,83v-6,2,-6,9,-3,16v-5,11,-7,12,-7,36v-6,6,-13,12,-20,14v2,-22,-2,-44,-1,-77v-12,-1,-14,-4,-14,-19r-22,2v1,-9,15,-7,25,-7v0,-6,9,-11,-7,-13v5,-1,24,-5,12,-13v-11,4,-24,1,-23,-12v8,1,20,8,26,4v-2,-12,6,-12,4,-40v13,-1,28,-6,31,8v2,-8,12,-12,3,-21r14,-3v0,6,-7,7,2,10r11,-7v-1,1,-6,10,-2,13v9,-10,24,15,32,5v0,7,6,20,18,37v0,5,-5,4,-8,8xm46,-126v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm118,-54v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm131,-26v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm126,-22v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm46,-74v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm52,-65v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm68,-11v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm61,-4v-2,0,-4,-2,-7,-5v4,0,9,-1,7,5xm50,-7v-1,-1,-3,-2,0,-2r0,2xm37,-11v2,0,1,4,0,4v-2,0,-1,-4,0,-4xm110,-121v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm-4,-183r0,-4v-2,1,-2,3,0,4xm10,-145v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm85,-57v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm15,-85v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm18,-24v1,-1,6,-2,2,-2xm26,-4v3,-1,2,-4,0,-5v-2,1,-3,4,0,5","w":125,"k":{"\u00ff":12,"\u00fc":5,"\u00fb":5,"\u00f9":5,"\u00fa":5,"\u00e5":16,"\u00e3":16,"\u00e4":16,"\u00e2":16,"\u00e0":16,"\u00e1":16,"y":12,"x":7,"w":7,"v":11,"u":5,"q":2,"a":16}},"e":{"d":"110,-233v-2,-1,-5,-6,0,-5r0,5xm140,-149v0,1,-1,3,-1,1xm45,-231v15,3,43,1,57,-1v0,14,0,19,-5,34r-54,1xm132,-157v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm47,-192v-1,1,-2,3,-2,0r2,0xm51,-181v8,1,3,12,-2,15r-2,0v1,-3,2,-8,4,-15xm54,-163v0,3,-1,6,-3,8v1,-3,-2,-9,3,-8xm41,-164v1,-2,2,-3,2,1xm51,-153v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm45,-155v2,1,2,3,0,5r0,-5xm41,-145v1,-1,2,-2,2,1xm-3,-179v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm-12,-170v-4,-4,-9,-1,-14,0v0,-7,11,-14,19,-14v1,4,-9,9,-5,14xm-7,-170v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm39,-4v-4,9,-16,-6,-25,2v-6,-21,-9,-43,-13,-66v1,-1,4,-1,3,-4v-2,0,-8,8,-10,7v-2,-11,6,-11,16,-11v-2,-20,5,-46,-5,-59v8,-6,-11,-11,-9,-20v-5,2,-11,2,-17,0v-1,10,-21,-2,-24,8v0,-21,6,-22,18,-12v16,-4,38,-8,32,-28v14,-6,4,-15,6,-40v14,-1,23,-2,27,-2r0,53v-2,0,-3,0,-4,1v9,6,3,28,5,42v8,-8,29,-3,44,-4v2,5,2,40,-5,35v-12,-1,-23,-7,-34,-2r0,-20r-5,2r0,118xm43,-98r0,39v-3,-3,-3,-36,0,-39xm47,-54v-1,1,-2,3,-2,0r2,0xm45,0r-2,-39v15,7,39,1,58,2v-2,11,1,25,-6,37v-21,5,-40,-11,-50,0xm4,-87v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-3,-83v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm-17,-87v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-18,-83v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-10,-63v-4,-1,-1,-6,-2,-9xm-18,-72v-2,-1,-4,-2,0,-2r0,2xm-17,-50v8,0,7,-8,12,-11v2,16,-6,20,-14,27v1,-5,1,-5,2,-16xm6,-39v0,16,-4,19,-7,8v0,-6,2,-8,7,-8xm-7,-41v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-5,-18v1,0,1,0,1,1xm-14,-28v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-14,-20v3,0,5,2,3,4v0,0,-1,-2,-3,-4xm6,-162v-3,0,-4,2,-5,5v4,-1,5,-2,5,-5xm8,-54v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm12,-50v0,-2,-4,-3,-4,0v0,2,4,3,4,0xm7,-50v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2","w":110,"k":{"\u00f5":14,"\u00f6":14,"\u00f4":14,"\u00f2":14,"\u00f3":14,"\u00e7":7,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"z":2,"x":4,"w":4,"v":2,"s":12,"q":14,"o":14,"g":9,"d":4,"c":7,"a":9}},"f":{"d":"43,-172v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-163v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm47,-155v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm-2,-175v2,2,-4,13,-5,6v0,-4,2,-6,5,-6xm44,-228v11,0,54,-13,54,12v0,8,-1,15,-3,18v-18,2,-43,-5,-54,4v-5,30,-2,50,-1,85r4,0r0,-24v2,-2,34,-5,41,-4v-1,9,-2,15,-5,19r5,0v0,17,-17,7,-27,16v-3,-2,-4,-5,-8,-5v-20,19,-10,64,-9,94v0,22,-24,2,-31,13v-9,-35,7,-97,-11,-128v6,14,-13,15,-6,4v-3,-14,12,-9,5,-23r-16,0v24,3,9,-21,26,-27r0,-52v14,-5,18,-1,32,-6r0,34v8,-3,2,-20,4,-30xm-9,-137v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-33,-148v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm43,-26v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm73,-226v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm50,-126v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm4,-144v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm21,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2","w":102,"k":{"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00e5":37,"\u00e3":37,"\u00e4":37,"\u00e2":37,"\u00e0":37,"\u00e1":37,"z":4,"s":7,"q":9,"o":11,"j":28,"g":5,"a":37,".":30,"-":16,",":19}},"g":{"d":"92,-236v-1,1,-2,3,-2,0r2,0xm112,-202v1,1,4,4,0,3r0,-3xm123,-191v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm162,-128v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm79,-232v24,11,43,37,33,74v-3,12,-23,10,-30,0v-2,-19,-9,-35,-22,-46r0,-26r15,0v2,-5,7,-11,7,-4v-1,1,-2,2,-3,2xm163,-121v0,5,1,11,-5,11v2,-4,-1,-12,5,-11xm56,-202v-5,5,-26,32,-11,49v1,0,-12,23,-3,13v6,-2,17,16,3,8v-9,-1,-3,24,-5,42v7,19,-6,30,9,49v7,9,9,17,9,20v10,-14,31,-40,16,-63v0,-1,-4,3,-5,1v2,-2,-20,-17,-18,-18v0,-4,10,-17,13,-18v-5,-5,-15,-17,7,-15v0,4,-7,3,-5,11v3,-3,13,-9,18,-9v-2,3,-25,13,-13,20v3,-3,18,-19,17,-7v6,2,11,2,18,2r0,-7v9,-1,10,18,8,29v3,5,31,19,7,26v0,-5,-6,-4,-11,-4v6,11,2,36,2,46r-8,0v8,5,21,22,0,24v-5,2,-12,-15,-16,-14v-4,-1,-13,16,-19,13v0,2,1,5,-1,5v-7,0,-11,-4,-11,-12v1,15,-10,7,-21,12v-1,-2,-4,-7,-8,-3v5,9,-10,11,-9,21v-7,-1,2,-16,-5,-16v-1,16,-16,9,-9,0v0,-3,-1,-6,-2,-8v10,0,13,-13,4,-15r-12,1v5,-5,25,0,15,-19r-5,0v0,-4,2,-7,5,-9r0,-142v-1,-22,23,-42,46,-41r0,28xm49,-112v-1,-1,-3,-2,0,-2r0,2xm75,-79v1,6,-4,3,-6,1xm69,-75v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-17,-21v1,4,-5,1,-8,2v3,-1,6,-2,8,-2xm34,-178v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm123,-73v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm101,-54v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm33,-109v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm62,-14v2,-1,3,-4,0,-5v-3,1,-2,4,0,5","k":{"\u00ff":12,"\u00fc":5,"\u00fb":5,"\u00f9":5,"\u00fa":5,"\u00e5":16,"\u00e3":16,"\u00e4":16,"\u00e2":16,"\u00e0":16,"\u00e1":16,"y":12,"x":7,"w":12,"v":12,"u":5,"t":11,"s":5,"a":16}},"h":{"d":"124,-180v-4,0,-5,-4,0,-3r0,3xm118,-114v-13,12,6,22,-3,31v4,8,2,17,0,26v-1,4,10,11,10,13v-12,0,-10,22,-4,30v-5,-3,-8,17,-21,14v-12,0,-18,-1,-20,-4r-1,-100v-10,0,-23,3,-33,6v7,14,-4,22,2,34v-11,6,3,26,-5,42v2,2,8,4,8,8v-6,0,-9,4,-10,10v-10,1,-24,-3,-28,4v-6,-29,0,-71,-2,-104v-17,-13,-29,-25,-11,-35v-2,10,5,16,12,11r0,-101v11,2,37,-7,33,8v6,17,-7,23,5,32v-3,7,-13,28,-2,33v3,2,4,3,4,5v-6,0,-9,2,-9,6v0,5,7,8,19,8v14,0,21,-3,21,-9r0,-83v8,-5,20,3,28,-2v15,0,0,13,4,25v-5,16,4,32,0,44v1,6,15,12,0,16v11,8,-11,26,3,32xm63,-95v1,-1,2,1,2,3v-1,-1,-2,-2,-2,-3xm6,-139v0,-2,3,0,1,0r-1,0xm4,-144v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm54,-92v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm50,-54v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-35,-111v0,-12,10,-23,25,-23v-1,10,-4,19,-10,14v-4,-1,-13,9,-15,9xm-23,-116v0,0,-4,8,-3,2v1,-1,2,-2,3,-2xm105,-136v1,1,2,2,2,-1xm104,-124v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm43,-131v2,0,4,0,3,-2v-2,0,-4,0,-3,2xm43,-102v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm6,-122v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm-1,-123v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm-2,-118r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm19,-33v2,0,4,0,3,-2","w":125,"k":{"\u00e5":4,"\u00e3":4,"\u00e4":4,"\u00e2":4,"\u00e0":4,"\u00e1":4,"a":4}},"i":{"d":"47,-152v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-20v1,35,-23,7,-33,20r0,-227v13,4,25,-8,31,-1xm13,-216v0,8,8,8,1,0r-1,0","w":50,"k":{"\u00e5":5,"\u00e3":5,"\u00e4":5,"\u00e2":5,"\u00e0":5,"\u00e1":5,"a":5}},"j":{"d":"63,-96v9,26,-9,65,7,80v-6,12,-30,-7,-30,18v-3,11,-4,16,-5,17v3,-17,-3,-28,-18,-17v-2,-1,-13,-3,-10,-14v-6,1,-4,-3,-7,-6v6,-2,7,-3,7,-9v-2,0,-11,11,-16,9v2,-2,15,-22,20,-18v20,-2,20,-21,21,-48r3,-145r30,0r2,113v-8,1,2,12,-4,20xm-11,-40v3,1,1,6,-1,3v0,-1,0,-2,1,-3xm-15,-14v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm54,-209v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm59,-172v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm37,-187v2,-1,1,-4,0,-5v-1,1,-2,4,0,5xm45,-159v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm59,-144v1,1,2,3,2,0r-2,0xm52,-135v-1,-2,-2,-4,-2,0r2,0xm39,-142v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm43,-133v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm43,-123v-1,4,4,11,5,7v0,-5,-2,-7,-5,-7xm37,-103v2,0,1,-3,0,-4v-2,1,-1,3,0,4xm50,-77v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm59,-16v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm63,-14v-1,-1,-2,-3,-2,0r2,0xm56,-12v2,0,3,-3,0,-4v-2,1,-1,3,0,4","w":77,"k":{"\u00ff":5,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00e7":4,"\u00e5":14,"\u00e3":14,"\u00e4":14,"\u00e2":14,"\u00e0":14,"\u00e1":14,"z":5,"y":5,"x":5,"w":5,"o":4,"d":4,"c":4,"a":14}},"k":{"d":"94,-171v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm123,-129v2,2,3,4,0,5v-3,-1,-2,-3,0,-5xm-12,-203v1,5,-6,2,-9,3v2,-1,5,-2,9,-3xm97,-102r24,91v1,8,-16,15,-22,9v5,-1,5,-4,0,-5v-7,6,-11,8,-15,-9v-7,-29,-12,-50,-22,-72v-14,0,-28,25,-10,32v-3,7,-14,35,0,42v-8,3,-23,21,-38,12v-1,2,-2,3,-4,3r0,-44v-12,-7,-22,-12,-27,-25v-3,1,-3,4,-3,8v-6,1,-17,18,-9,3v-7,-1,-6,6,-11,7v-1,-22,23,-18,33,-29v-2,6,3,15,8,11r-2,5v4,-4,8,-1,11,2v-2,-12,7,-31,-14,-26v-6,-1,-13,2,-13,-5v-6,0,-8,-1,-10,-4v9,2,15,-12,20,-13v-2,-9,-8,-17,-6,-26v7,-2,11,6,13,7v11,-5,11,-21,10,-38v-1,1,-6,12,-7,9v3,-17,9,-26,6,-43r-10,0v2,-3,18,-7,9,-20v-1,-16,21,-3,25,-14v2,3,3,8,11,7v4,7,2,18,1,27v4,-3,5,-7,11,-7v-1,5,-11,12,-13,15v1,11,-4,27,5,31v8,-4,30,-54,34,-67v15,2,21,-4,37,-3v-9,41,-39,49,-33,92v7,5,14,-3,20,0r-5,4v6,-1,15,-2,14,5v-10,-2,-21,4,-5,8v5,2,8,5,9,7v-15,2,-22,5,-22,13xm121,-26v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm130,-13v-1,-1,-3,-2,0,-2r0,2xm62,-81v2,0,3,5,0,5v-3,0,-2,-5,0,-5xm-18,-150v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-21,-133v0,2,0,2,-2,2xm-14,-119v1,1,1,1,0,2v-2,-1,-2,-1,0,-2xm58,-34v0,-1,2,3,2,3v-2,-1,-2,-2,-2,-3xm-17,-114v-2,6,-9,5,-15,3v5,-4,5,-5,15,-3xm0,-82v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm-27,-104v5,-1,15,1,7,4v-3,0,-5,-1,-7,-4xm49,-33v3,1,2,4,0,5v-2,-1,-3,-4,0,-5xm-30,-101v1,1,1,2,0,3v0,0,-2,0,-2,-1v0,-1,1,-2,2,-2xm-36,-70v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm45,-157v1,1,2,3,2,0r-2,0xm45,-148v2,-1,2,-1,1,-3xm0,-99v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm0,-93v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm-10,-100v2,-1,4,-2,0,-2r0,2xm-10,-63v3,1,7,-2,3,-3v-1,0,-2,1,-3,3","w":121,"k":{"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00e7":5,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"w":2,"v":4,"s":7,"q":5,"o":7,"c":5,"b":4,"a":11}},"l":{"d":"45,-200v-5,1,-3,-4,-3,-7v2,0,3,3,3,7xm57,-192v10,3,2,20,-4,14v0,-1,1,-5,4,-14xm14,-229v-1,3,2,9,-2,9v1,-3,-2,-9,2,-9xm31,-205v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm60,-174r-3,8v1,-3,-2,-9,3,-8xm44,-181v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm-1,-181r0,2v-1,-1,-1,-1,0,-2xm-22,-180v1,-9,9,-16,21,-14v-1,3,-6,7,-5,13v-5,-5,-11,0,-16,1xm109,-42v1,4,-2,7,-4,3v1,-2,2,-3,4,-3xm49,-65v3,15,-3,32,17,28v0,1,34,-2,37,11v-4,14,-8,22,-11,26v-24,-1,-44,2,-59,-5v-13,4,-11,0,-21,6r0,-37v8,-1,22,3,24,-4r-24,0v2,-22,-5,-48,6,-62v-9,0,-8,-20,-4,-27r4,1v-5,-4,-6,-30,-15,-27v3,-16,-8,-7,-18,-10v1,9,-17,0,-24,6v-1,-18,10,-19,18,-11v7,-8,25,-1,33,-13v-7,-2,4,-8,-3,-9v-2,-3,13,-17,5,-21v4,-2,6,-6,6,-14v13,-2,23,-1,24,7r3,0v1,1,-11,27,-11,20v1,-5,-6,-9,-9,-5v1,2,6,12,2,16v5,-1,6,2,5,6v2,-4,4,-5,8,-6v1,9,-14,12,1,17r0,28r13,-2v0,3,-21,21,-18,26v2,12,8,25,5,38v2,-1,4,-1,6,1v-6,1,-5,9,-5,16r5,0xm-23,-159v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm103,-18v1,1,4,4,0,3r0,-3xm36,-218v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm40,-213v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm29,-209v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm32,-172v0,-3,-3,-5,-8,-7v-1,6,1,7,8,7xm22,-168v2,0,3,-3,0,-4v0,-1,-1,-2,-2,-2v-3,3,1,3,2,6xm7,-168v5,-1,7,-5,0,-4r0,4xm-12,-187v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm18,-148v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm36,-124r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm27,-118r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm-34,-161v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm17,-93v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm44,-46v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm40,-37v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm22,-172r-1,2v0,-1,0,-2,1,-2","w":104,"k":{"\u00ff":42,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00e7":9,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"y":42,"w":32,"v":40,"t":33,"s":4,"q":4,"o":7,"d":5,"c":9,"b":5,"a":9,"-":42,"'":11}},"m":{"d":"163,-187v-1,-1,-4,-4,0,-3r0,3xm73,-200v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm161,-70v-2,8,-7,13,1,19v-16,9,9,43,-16,51v-6,-9,-13,5,-18,-4v-8,-70,1,-145,-2,-224v11,-1,25,3,31,-4v1,33,-3,72,2,101v-1,25,-5,34,2,61xm81,-161v-2,-1,-4,-2,0,-2r0,2xm11,-207v1,4,-5,5,-2,2xm6,-198v4,4,-3,11,-8,8xm-9,-207v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-7,-185v1,-1,2,-2,2,1xm-13,-181v2,1,1,4,0,5v-2,-1,-3,-4,0,-5xm72,-28v-20,5,-22,-19,-27,15v-3,19,-20,13,-32,11r0,-50v-8,-1,0,-25,-13,-11v-13,0,-17,-2,-33,2v-1,-18,8,-18,18,-11v7,-1,15,-6,21,-2v12,-18,9,-82,3,-107r-7,0v1,-6,20,-26,9,-35v5,-19,21,-12,37,-15v16,2,17,17,19,41v16,2,-10,41,16,35v-2,5,-7,7,-4,18v7,0,0,0,1,6v0,6,2,16,5,27v11,-6,0,-20,9,-25v10,-43,12,-76,16,-97v2,-1,6,-2,12,-2v-1,48,3,97,-7,132v12,15,-13,28,-4,45v3,1,8,0,9,3v-4,4,-10,8,-18,15v-7,22,-8,35,-23,31v0,-7,-3,-16,-7,-26xm-25,-176v-1,-7,7,-9,10,-5v-2,4,-6,5,-10,5xm122,-37v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm122,-26v0,-2,-6,-5,-2,-5v1,2,2,2,2,5xm118,-22v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm65,-20v-1,-1,-3,-2,0,-2r0,2xm4,-83v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-16,-80v0,-10,10,-16,20,-16v-2,16,-10,10,-20,16xm52,-28v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-15,-79v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm142,-168v3,0,5,0,4,-3v-2,0,-3,1,-4,3xm115,-81v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm47,-141v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm46,-73v6,-7,18,-19,10,-34v-4,1,-7,9,-6,0v4,-11,2,-15,-2,-26v-14,6,9,17,-2,19r0,41xm109,-39r0,-7v-3,2,-3,5,0,7xm59,-63v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm65,-52v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm60,-52v4,0,4,-8,0,-7v-2,-1,-5,2,-4,5v1,2,3,2,4,2xm52,-50v-1,-3,-5,-5,-6,-2v1,2,5,6,6,2xm-7,-87v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm-31,-65v1,1,4,4,3,0r-3,0xm28,-2v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm50,-52v0,1,-1,2,-2,2v0,-1,1,-2,2,-2","w":169,"k":{"\u00fc":2,"\u00fb":2,"\u00f9":2,"\u00fa":2,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00e7":4,"\u00e5":7,"\u00e3":7,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"v":4,"u":2,"s":5,"o":5,"c":4,"a":7}},"n":{"d":"126,-155v-1,-1,-3,-2,0,-2r0,2xm115,-153v1,4,-1,6,-5,5v0,-3,2,-5,5,-5xm106,-148v0,2,0,2,-2,2xm126,-102v-1,-1,-3,-2,0,-2r0,2xm85,-139v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm150,-67v1,4,-5,1,-7,2v-1,-4,5,-1,7,-2xm121,-92v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm71,-148v6,5,-1,12,-8,11v2,-2,3,-8,8,-11xm139,-63v-1,1,-2,3,-2,0r2,0xm126,-57v-5,14,24,18,24,26v-11,2,-10,5,-29,2v0,18,-8,37,-14,20v-5,9,-15,-1,-20,5v-2,-4,-6,-8,-4,-13v-11,-2,-17,11,-18,-5v-8,-2,-22,5,-22,-5v22,0,14,-22,4,-30v16,6,13,-24,24,-30v-6,-5,-18,8,-15,0v1,-15,-22,-38,-13,-55v-15,10,7,51,-19,57r17,0v-11,14,12,11,11,25v-3,0,-9,-3,-11,-1v0,12,0,39,-6,52v-11,-2,-14,9,-18,0v-1,4,-7,7,-9,2v2,-25,-3,-57,3,-78v2,1,4,1,4,-2v-1,-1,-3,-3,-7,-5r0,-79v6,0,9,-1,9,-5v-4,0,-8,0,-9,-3v2,-16,-4,-40,2,-52v-1,10,7,17,10,3v4,-2,5,-1,8,4v1,-8,17,-11,19,2v-6,14,17,28,9,41v7,4,9,5,9,11v-2,0,-6,-4,-5,0v3,8,11,13,23,14v-1,2,-23,3,-23,6v-2,12,3,22,14,15v1,11,-4,8,-12,7v4,11,-6,20,3,24v2,-14,5,-20,17,-20v0,-5,7,-8,9,-11v-5,-2,-11,-13,-4,-17r0,-81v9,-1,20,3,23,-5v4,2,5,7,10,6v-4,24,1,46,-3,73v-10,5,-15,11,-17,17v24,-4,14,11,27,18v-8,0,-12,4,-12,13r5,-2v-5,18,4,35,10,46v-6,1,-11,6,-4,10xm133,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm130,-26v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm133,-15v-4,0,-5,-1,-5,-5v4,0,5,1,5,5xm75,-10v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm39,-181v0,-14,2,-33,-1,-45xm102,-133v4,1,4,-5,1,-4v-2,0,-4,3,-1,4xm102,-128v-1,2,3,6,2,2v-1,-1,-1,-2,-2,-2xm106,-120v2,-1,4,-2,0,-2r0,2xm19,-207v3,-4,-2,-9,-4,-8v0,3,1,5,4,8xm43,-174v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm39,-172v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm95,-107v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm80,-115v4,0,9,1,7,-5v-2,1,-5,3,-7,5xm46,-172v-11,2,-7,14,-7,26v6,-5,7,-22,7,-26xm121,-65v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-85v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm97,-86v1,-1,1,-1,0,-2v-2,1,-2,1,0,2xm85,-94v-1,-7,3,-18,-7,-15v3,5,1,10,7,15xm26,-142v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm80,-85v1,3,5,2,5,-2v-2,-2,-5,-2,-5,2xm121,-41v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm133,-31v2,0,1,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm76,-85v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm124,-37v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm29,-123v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm28,-102v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm67,-52v2,0,2,0,2,-2xm71,-46v-4,-1,-5,1,-4,5v2,0,3,-1,4,-5xm63,-33v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm41,-168v2,1,3,4,0,5v-2,-1,-1,-4,0,-5","w":132,"k":{"\u00ff":7,"\u00fc":7,"\u00fb":7,"\u00f9":7,"\u00fa":7,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00e5":9,"\u00e3":9,"\u00e4":9,"\u00e2":9,"\u00e0":9,"\u00e1":9,"y":7,"x":4,"v":4,"u":7,"t":7,"s":9,"p":4,"o":7,"g":5,"d":7,"b":4,"a":9}},"o":{"d":"78,-159v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm112,-198v11,14,-3,43,5,60r-1,90v12,2,24,-7,27,-4v0,1,-1,2,-3,4r16,0v-11,3,-17,7,-17,10v1,-1,4,5,4,5r-7,0v2,7,8,3,13,3v0,8,-24,3,-28,2r2,-5r-8,0v-17,20,-29,40,-53,29v-1,-7,2,-18,-2,-22v-2,8,5,30,-6,24v-14,4,-22,-13,-40,-24r-4,-133r-5,0v0,-3,5,-9,3,-13r-13,9v0,-8,11,-4,13,-14v2,-11,4,-30,16,-29v-2,-19,24,-14,29,-25r5,-1r0,32v-14,9,-5,10,-4,24v2,2,40,18,12,20v1,-6,-10,-2,-14,-3v0,-7,-1,-11,-3,-13v-6,3,-13,90,0,109v0,4,-8,12,0,11v-7,7,7,6,11,15v21,10,23,-12,23,-44v0,-31,15,-115,-17,-115v-5,-4,-4,-25,-4,-36v12,3,47,1,35,19v5,-1,4,2,4,6v-4,-2,-17,-4,-19,0v3,8,18,4,28,5v1,-3,2,-6,5,-3v1,4,-3,6,-3,7xm54,-107v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm51,-102v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-12,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm115,-29v3,0,0,3,0,1r0,-1xm-23,-154v-1,-6,6,-9,9,-5v-2,4,-5,5,-9,5xm54,-70v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm-31,-67v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm84,-189v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm49,-181v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm110,-118v1,2,2,4,2,0r-2,0xm62,-166v0,-1,-1,-2,-2,-2v-5,5,8,9,2,2xm106,-118v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm58,-31v2,0,3,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm61,-163v0,-1,1,-1,1,-2v0,1,-1,1,-1,2","k":{"\u00ff":9,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"y":9,"x":11,"w":9,"v":9,"t":11,"b":4,"a":11}},"p":{"d":"122,-174v-2,-1,-4,-6,0,-5r0,5xm57,-189v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm114,-175v-6,6,0,14,2,21v0,25,-12,45,-37,58v-9,-8,-28,6,-33,0v1,-12,-6,-43,11,-32v14,-10,24,-11,24,-34v0,-11,-19,-34,-11,-45v0,-2,-1,-4,-4,-4v-4,5,-6,9,-6,13v-3,-4,-10,-3,-16,0r2,-24v37,-8,70,-5,68,47xm44,-187v-1,-1,-1,-4,0,-5v1,2,1,4,0,5xm0,-159v0,-6,5,-8,10,-11r0,-52v7,-9,12,-4,31,2r0,74v1,-6,2,-14,5,-24r-6,109v9,13,0,37,1,56v-14,2,-17,8,-32,-2v1,-22,-3,-50,5,-63v-8,-7,-2,-29,-4,-43v-7,-1,-3,9,-11,7v0,-11,4,-11,1,-21v9,0,11,-8,7,-13r-15,0v2,-2,19,-2,16,-10r0,-13v-3,1,-4,4,-8,4xm16,-220v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm11,-122v0,-2,-4,-3,-4,0v0,2,4,3,4,0xm22,-89v3,-1,2,-4,0,-5v-2,1,-3,4,0,5","w":121,"k":{"\u00ff":14,"\u00fc":5,"\u00fb":5,"\u00f9":5,"\u00fa":5,"\u00e5":25,"\u00e3":25,"\u00e4":25,"\u00e2":25,"\u00e0":25,"\u00e1":25,"z":16,"y":14,"x":16,"w":11,"v":12,"u":5,"t":2,"s":9,"j":33,"h":5,"a":25,".":32,",":21}},"q":{"d":"122,-188v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm122,-151v3,1,2,4,0,5v-2,-1,-3,-4,0,-5xm46,-181v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm124,-66v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2v1,0,2,1,2,2xm109,-22v13,0,22,22,26,30v-18,4,-25,13,-49,2v1,-5,-7,-14,-10,-8v1,1,2,2,2,4v-11,8,-16,-10,-19,-15v0,17,-14,6,-22,13v2,-6,-30,-30,-26,-37v0,-17,-3,-37,8,-44r-10,0v1,-24,-1,-41,-3,-63v8,-34,0,-91,50,-87r0,30v-17,8,-17,36,-10,57v-5,-1,-6,2,-3,7v-1,11,-1,22,8,23v-12,-1,-14,2,-13,9r5,0v2,12,-5,22,-2,24v1,0,3,-1,5,-2v-7,11,-8,19,6,22v-6,6,8,4,2,9v-2,-1,-7,-4,-10,-2v-1,23,22,28,32,10v-7,4,-17,-3,-16,-8v0,-3,5,-5,14,-5v1,4,-10,5,0,7v7,-1,4,-14,4,-21v0,-46,15,-111,-15,-132r0,-28r18,-7v-11,10,16,7,20,22v13,15,15,43,8,63v13,3,0,14,6,24v-9,5,1,18,3,24v0,5,-8,21,-7,26v6,2,8,6,2,9v0,12,0,24,-2,34v5,-1,7,2,7,6v-4,0,-11,-2,-9,4xm50,-96v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm98,-146v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm113,-103v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm113,-94v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm126,8v2,-1,3,-3,0,-4v-2,0,-1,3,0,4xm71,-42v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2","w":126,"k":{"\u00ff":18,"\u00fc":9,"\u00fb":9,"\u00f9":9,"\u00fa":9,"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00e7":7,"z":2,"y":18,"x":4,"w":16,"v":14,"u":9,"t":19,"s":9,"o":7,"d":4,"c":7}},"r":{"d":"102,-218v-1,1,-2,3,-2,0r2,0xm120,-181v-2,0,-4,0,-5,-2v2,0,6,-1,5,2xm50,-187v-1,-1,-4,-4,0,-3r0,3xm48,-227v22,-6,53,-3,48,22v1,-1,2,-6,4,-4v14,11,8,44,18,56v-3,14,-41,50,-22,64v6,27,10,55,25,75v-5,-4,-12,20,-19,10v-3,7,-28,6,-23,-7v-1,-12,-16,-63,-20,-83v-8,5,-11,-3,-12,-13v0,-10,0,-16,1,-19r24,-7v0,-3,7,-23,7,-29v0,-28,-14,-29,-31,-39r0,-26xm1,-175v0,-2,3,0,1,0r-1,0xm0,-170v0,2,0,2,-2,2xm118,-46v-1,1,-4,5,-3,0r3,0xm-8,-163v1,3,-7,8,-9,7v0,-5,3,-7,9,-7xm9,-229v9,-9,15,8,17,11v5,0,11,-3,17,-9v-1,21,0,43,3,59v15,4,23,9,24,15v-5,-1,-10,6,-13,-2v-2,6,-18,-1,-13,13v-6,17,2,40,-1,68r5,9v-4,1,-8,2,-11,4v17,8,0,23,5,42v2,0,6,2,5,5v-4,5,-21,15,-37,13r1,1v-5,-35,8,-120,-9,-153v-4,0,-6,6,-7,-2v3,-6,21,-19,12,-32v4,-11,1,-28,2,-42xm-21,-155v0,5,-4,7,-11,7v0,-5,4,-7,11,-7xm89,-196v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm100,-166v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm13,-220v4,3,5,-3,5,-9v-3,2,-5,5,-5,9xm52,-157v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm9,-157v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm81,-72v2,-3,-4,-5,-2,-2v1,1,1,2,2,2xm22,-129v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm54,-98v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm41,-104v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm74,-68v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm41,-94v1,-9,-13,-8,-18,-8v-2,8,16,6,18,8xm15,-79v2,0,3,-3,0,-4v-2,1,-1,3,0,4","k":{"\u00ff":19,"\u00fc":9,"\u00fb":9,"\u00f9":9,"\u00fa":9,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00e7":5,"\u00e5":7,"\u00e3":7,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"z":5,"y":19,"x":7,"w":16,"v":18,"u":9,"t":12,"s":7,"q":5,"o":4,"m":5,"g":5,"d":5,"c":5,"b":4,"a":7}},"s":{"d":"120,-197v-6,-1,-6,-5,0,-4r0,4xm87,-229v-1,-1,-3,-2,0,-2r0,2xm108,-201v12,22,2,30,-21,30v-4,2,-6,-13,-15,-22r-8,8v-2,-16,-5,-22,-1,-42v15,-1,24,5,38,7v1,3,2,10,7,19xm68,-175v-6,-1,-1,-11,2,-10xm72,-147v-4,0,-5,-4,0,-3r0,3xm87,-133v0,1,-1,3,-2,3v-2,0,-3,-5,0,-4v1,0,2,0,2,1xm125,-90r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm120,-86v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm8,-203v-5,18,-9,9,-20,14v1,-7,11,-18,20,-14xm10,-175v-14,7,-29,0,-41,7v-1,-14,9,-23,19,-12v0,-9,29,3,20,-10v11,-13,21,-41,48,-37r0,30v-18,15,-7,21,-2,43r12,-2v-16,27,32,22,36,49v0,3,10,8,14,4v0,6,15,13,0,17v-1,12,8,19,2,26v9,6,-5,18,-4,26v-16,6,-18,28,-34,34v-14,2,-20,-12,-12,-19v-13,-14,31,-25,14,-48v-4,-17,-25,0,-26,-23v-7,1,-1,-6,-2,-11v-1,1,-3,2,-6,3v2,-5,-14,-24,-20,-22v-7,-20,-17,-24,-18,-55xm42,-95v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm-23,-160v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm61,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm36,-88v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm26,-85v-2,0,-2,0,-2,-2v-1,-3,4,-3,8,-3v-2,3,-3,5,-6,5xm39,-64v1,16,13,28,22,34v0,13,4,33,-11,26v-9,8,-19,-11,-30,-16v-10,-10,-15,-22,-10,-40v15,-3,25,-4,29,-4xm17,-15v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm92,-115v2,0,3,-6,0,-5v-3,1,-2,4,0,5xm115,-89v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm63,-90v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm94,-17v0,-8,-12,-4,-20,-5v-1,1,-3,3,-3,5r23,0xm43,-8v3,-1,2,-4,0,-5v-1,1,-2,4,0,5","w":126,"k":{"\u00ff":16,"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"z":5,"y":16,"x":18,"w":14,"v":16,"u":4,"t":16,"s":7,"o":4,"m":5,"a":11}},"t":{"d":"30,-229v28,-9,55,3,83,-2v7,56,-59,26,-107,33r0,-30v9,-1,15,-6,24,-1xm83,-155v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm83,-124r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm83,-102v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm20,-139v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm17,-133v3,1,2,3,0,5v-1,-2,-2,-3,0,-5xm17,-118v-3,-12,6,-4,2,-1xm33,-107v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm-18,-168v17,-9,27,-17,51,-2v7,0,6,-17,6,-26r35,2v-1,28,2,60,-2,85v4,12,-4,37,8,44r-6,0v-3,8,0,50,-4,65v-13,-5,-30,7,-31,-9r0,-56v-5,-1,-15,3,-13,-5r11,0v3,-16,-15,-18,-7,-28v3,5,6,8,9,8v0,-12,4,-20,-11,-21v2,3,-1,7,-4,11v0,-16,7,-51,-13,-37v4,-7,-15,-15,-4,-22v0,-6,-8,-1,-6,-9v-5,-1,-10,0,-8,6v-3,0,-5,-11,-11,-6xm22,-166v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm18,-169v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm4,-174v2,1,7,3,9,0v0,-3,-9,-3,-9,0xm9,-168v1,1,2,3,2,0r-2,0xm37,-126v2,-1,1,-4,0,-5v-1,1,-2,4,0,5xm33,-126v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm15,-142v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm39,-83v2,0,3,-3,0,-4v-2,1,-3,3,0,4","w":117,"k":{"\u00f5":19,"\u00f6":19,"\u00f4":19,"\u00f2":19,"\u00f3":19,"\u00f1":4,"\u00e7":9,"\u00e5":42,"\u00e3":42,"\u00e4":42,"\u00e2":42,"\u00e0":42,"\u00e1":42,"z":7,"s":12,"q":18,"p":4,"o":19,"n":4,"m":2,"j":30,"g":7,"c":9,"a":42,".":32,"-":35,",":21}},"u":{"d":"162,-150v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm167,-148v3,7,-1,12,-9,11v1,-3,4,-7,9,-11xm167,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm160,-135v0,2,1,5,-2,4xm130,-152v-1,1,-2,3,-2,0r2,0xm119,-133v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm86,-229v13,1,18,-1,31,-3v2,19,-3,44,2,60v-3,29,1,55,-2,83v3,16,2,36,-5,46v-4,-2,-1,-12,-6,-12v-9,1,-11,5,-22,1xm58,-152v-1,1,-2,3,-2,0r2,0xm58,-122v-1,1,-2,3,-2,0r2,0xm58,-100v-1,1,-2,3,-2,0r2,0xm117,-39v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm104,-39v-1,1,-2,3,-2,0r2,0xm62,-72v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm47,-65v0,21,1,23,15,34v-1,9,3,23,-2,29v-9,0,-15,0,-22,2v1,-2,3,-3,3,-4v-1,-6,-35,-14,-24,-21v0,-5,-3,-7,-10,-7r0,-11v-18,4,-30,5,-43,4v0,-2,3,-9,7,-20v5,18,39,10,41,-2v4,-20,4,-86,0,-115v-3,8,-5,11,-8,11r0,-21v9,-1,9,-6,6,-13r-13,0v13,-3,16,-7,15,-23r-8,4v3,-17,27,-6,41,-15v10,5,-9,28,9,31v-20,10,-2,66,-9,89v3,15,3,18,0,41v1,1,12,6,7,9v-2,0,-3,-1,-5,-2xm62,-43v-4,-5,-5,-15,-2,-22v9,1,2,15,2,22xm83,-38v-1,6,13,7,14,10v-5,0,-17,-1,-11,4r21,0v-3,13,-27,31,-40,20r0,-27v4,0,21,-27,26,-13v0,6,-4,7,-10,6xm4,-59v1,2,-1,2,-3,2xm-3,-74v7,3,3,13,0,15v-5,-4,-11,2,-13,1v-2,-7,13,-12,13,-16xm-3,-33v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm99,-100v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm12,-179v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm6,-172v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm23,-59v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm30,-52v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm10,-46v3,1,5,-3,2,-4xm-8,-64v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm-14,-41v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm-31,-39v2,0,1,-3,0,-4v-2,1,-3,3,0,4","w":128,"k":{"\u00ff":4,"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00e5":16,"\u00e3":16,"\u00e4":16,"\u00e2":16,"\u00e0":16,"\u00e1":16,"z":11,"y":4,"x":12,"w":4,"v":5,"s":7,"q":2,"p":4,"o":4,"m":5,"j":5,"g":4,"a":16}},"v":{"d":"127,-205v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm122,-200v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm118,-176v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm120,-163v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm129,-124v-1,0,-2,-4,0,-4v1,1,1,3,0,4xm129,-120v2,1,1,4,0,5v-2,-1,-3,-4,0,-5xm127,-109v2,1,1,4,0,5v-2,-1,-3,-4,0,-5xm122,-111v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm111,-120v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm57,-166v1,0,1,1,1,2xm122,-104r-11,2v1,-8,6,-6,11,-2xm115,-88v2,1,0,1,-1,2xm114,-81v1,3,-3,7,-3,3xm116,-181v-6,9,-6,27,-5,39v-1,-5,11,-11,7,-15v7,-4,8,2,14,1v-3,-3,2,-5,3,-7v7,21,-13,32,-13,50v0,-10,-2,-16,-8,-18v-5,8,-14,9,-7,12v1,0,1,-1,2,-1v-1,3,-1,9,-2,16v-12,9,-15,28,-6,44v-12,-3,-9,29,-17,29v-3,4,2,5,6,5v-3,3,-8,39,-15,20v-7,-2,-12,3,-18,5v2,-43,11,-79,15,-119v-8,-1,-7,8,-8,13v-5,34,1,81,-14,105v-13,-36,-10,-90,-28,-122v-10,1,-34,-11,-33,-20v-2,0,-7,4,-17,11r2,-4r-11,0v2,-6,28,-32,37,-24v1,-6,13,-15,14,-22v0,-8,-8,-37,-7,-46v12,0,25,1,35,-2v4,38,11,41,11,72v-2,2,17,23,9,22v0,6,2,9,6,9v6,0,9,-7,9,-20v-6,-27,12,-50,13,-81r30,0v1,3,3,7,5,13v-6,0,-9,12,-9,35xm94,-50v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm94,-33v0,1,-1,2,-2,2v-2,0,-3,-4,0,-4v1,0,2,1,2,2xm-32,-150v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-34,-135v0,3,0,5,-3,4xm72,0v-1,-1,-3,-2,0,-2r0,2xm129,-148v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm127,-137v2,-3,10,-8,0,-7r0,7xm107,-130v3,1,6,-4,3,-7v-2,0,-3,2,-3,7xm9,-170v2,0,3,-3,0,-4v-2,1,-3,4,0,4xm5,-163v6,4,-12,4,-5,8v3,-3,12,-2,18,-7v-2,-2,-5,-4,-9,-8v-1,3,-2,5,-4,7xm20,-144v-4,-1,-8,-6,-11,-2v2,6,6,4,11,2xm2,-148v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm-2,-144v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm74,-11v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm66,-15v2,1,2,-1,2,-3","w":131,"k":{"\u00fc":4,"\u00fb":4,"\u00f9":4,"\u00fa":4,"\u00f5":16,"\u00f6":16,"\u00f4":16,"\u00f2":16,"\u00f3":16,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":9,"\u00e5":35,"\u00e3":35,"\u00e4":35,"\u00e2":35,"\u00e0":35,"\u00e1":35,"z":14,"x":9,"w":4,"v":5,"u":4,"s":16,"r":5,"q":16,"p":7,"o":16,"m":7,"j":32,"g":14,"f":4,"e":4,"d":7,"c":9,"a":35,".":32,",":23}},"w":{"d":"119,-199v0,1,-1,3,-1,1v0,-1,1,-1,1,-1xm185,-120v1,5,-4,3,-7,3v0,-2,3,-3,7,-3xm171,-112r0,-3v1,0,2,0,2,1v0,1,-1,2,-2,2xm182,-97v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm89,-71v-19,5,-6,49,-20,64v-5,1,-15,-2,-14,4v3,1,10,-2,9,3v-11,-3,-25,7,-25,-8v0,-51,-8,-111,-26,-152v2,-1,4,-2,-1,-2v-12,0,-32,-3,-32,-11v-2,-8,29,-10,15,-19r-6,-6r22,0v-2,-5,-3,-14,-3,-28v11,-1,36,-10,29,10r6,0v1,10,5,42,14,43v-7,8,2,19,-4,26v10,1,15,-1,16,-11r10,-69v16,-1,33,-1,33,11v0,18,0,30,10,37r-5,0v3,11,1,27,11,30r-1,2v4,-1,6,0,9,2r11,-82v11,-4,26,3,31,-4v10,21,-13,54,-7,77v-6,14,-17,64,7,63v2,9,6,30,-7,23v0,-1,1,-5,3,-12v-1,-2,-3,-2,-4,-2v-5,9,-6,35,-15,39v-8,2,-3,6,-1,15v-2,5,-10,16,-11,24v-3,-1,-5,1,-4,4v-32,11,-25,-32,-33,-52v-5,0,-8,-7,-7,-13v-6,0,-2,-7,-10,-6xm-9,-184v0,4,-4,3,-3,0v0,-2,0,-2,1,-2v1,0,2,0,2,2xm6,-157v-1,1,-2,1,-2,-1v1,0,2,0,2,1xm163,-166r0,-5v-1,0,-2,0,-2,2v0,2,1,3,2,3xm109,-211r0,-2r0,2xm92,-202v1,-1,4,0,2,-2v-1,0,-2,1,-2,2xm90,-188v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm134,-140r-9,0v4,-1,1,8,4,10v3,0,5,-3,5,-10xm86,-169v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm29,-225r0,-4v-1,0,-2,0,-2,2v0,1,1,2,2,2xm90,-139v-3,-1,-5,1,-2,2v1,0,2,-1,2,-2xm91,-111v1,0,2,-3,0,-3v-2,0,-1,3,0,3xm7,-192v2,1,2,-1,2,-3xm53,-139v-3,-1,-5,1,-2,2v1,0,2,-1,2,-2xm59,-130v6,0,7,-13,1,-13v-5,0,-6,14,-6,26v9,1,7,-9,10,-13r-5,0xm82,-80v10,2,14,-9,5,-18v-2,0,-3,6,-5,18xm55,-106v4,0,4,0,2,-2xm88,-78v0,-2,-1,-2,-2,-2v-1,0,-2,1,-2,2v0,1,1,2,2,2v1,0,2,-1,2,-2xm66,-9v0,-4,7,-10,3,-15r-3,0v-4,-26,-5,-55,-11,-78xm59,-18v2,0,3,-4,0,-4v-2,0,-1,4,0,4","w":184,"k":{"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00e5":24,"\u00e3":24,"\u00e4":24,"\u00e2":24,"\u00e0":24,"\u00e1":24,"z":5,"s":9,"q":9,"p":4,"o":7,"l":4,"j":28,"g":7,"d":4,"a":24,".":30,",":19}},"x":{"d":"118,-207v0,1,-1,3,-1,1v0,-1,1,-1,1,-1xm49,-235v1,2,-1,2,-3,2v-1,-2,1,-2,3,-2xm125,-144r0,5v-2,0,-3,-6,0,-5xm125,-139r0,4v-1,0,-2,-1,-2,-2v0,-2,1,-2,2,-2xm118,-126v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm114,-109r0,5v-2,0,-3,-6,0,-5xm101,-85v-7,22,25,49,23,80v-16,7,-41,4,-42,-17v-10,-34,-20,-55,-30,-21v-4,13,-4,13,-14,39v-11,5,-31,6,-33,-2v-2,-13,24,-53,20,-68v-3,-1,-13,0,-16,-4v16,-2,7,-12,18,-26r-3,0r16,-22v-14,-13,-11,-17,-9,-29v-6,-13,-23,-59,-24,-73v45,-16,37,20,57,60v9,-14,8,-34,21,-58r36,-3v2,2,-17,51,-23,69v0,3,10,8,14,3v1,9,19,10,7,23v-3,5,-4,10,-4,13v1,-2,2,0,3,1r-8,0v-1,8,8,12,-8,13v5,10,-8,17,-1,22xm20,-101r-4,1xm16,-89r0,4r0,-4xm12,-96v-3,0,-9,7,-10,2v-1,-5,8,-5,10,-2xm9,-87v1,0,2,1,2,3v-1,2,-4,1,-3,-1v0,-1,0,-2,1,-2xm60,-31v-5,-5,1,-3,1,-1v0,1,0,1,-1,1xm5,-83v1,0,2,1,2,3v0,1,-1,2,-2,2v-1,0,-2,-5,0,-5xm9,-74v0,1,-1,2,-2,2r0,-4v1,0,2,0,2,2xm9,-56v0,1,-1,2,-2,2v-1,0,-2,-5,0,-5v1,0,2,1,2,3xm3,-57v2,0,3,6,0,5v-1,0,-2,0,-2,-2v0,-1,1,-3,2,-3xm114,-133r0,-4v-1,0,-2,0,-2,2v0,1,1,2,2,2xm97,-146r0,-4v-1,0,-2,0,-2,2v0,1,1,2,2,2xm66,-163r0,-3v-1,1,-1,3,0,3xm99,-92r0,-4v-1,0,-2,0,-2,2v0,1,1,2,2,2xm36,-135v1,-1,3,-2,0,-2r0,2xm35,-113v0,2,0,3,2,1v0,-1,-1,-1,-2,-1xm62,-65v1,0,2,-5,0,-5v-1,0,-2,1,-2,3v0,1,1,2,2,2xm101,-24r0,-4v-2,0,-3,4,0,4xm27,-98v2,0,2,0,2,-2xm30,-92v-3,0,-5,1,-5,5v3,-1,5,-2,5,-5xm35,-41v0,-2,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm36,-31r0,-4v-1,0,-2,1,-2,3v0,1,1,1,2,1xm20,-31v5,0,5,0,2,-2xm31,-5v-1,-1,-3,1,-1,1v1,0,1,0,1,-1xm20,-4v0,-3,-4,-5,-3,0v0,1,0,2,1,2v1,0,2,-1,2,-2","w":128,"k":{"\u00ff":7,"\u00fc":7,"\u00fb":7,"\u00f9":7,"\u00fa":7,"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00e7":11,"\u00e5":2,"\u00e3":2,"\u00e4":2,"\u00e2":2,"\u00e0":2,"\u00e1":2,"z":4,"y":7,"x":7,"w":9,"v":5,"u":7,"s":7,"q":9,"p":2,"o":11,"g":4,"d":4,"c":11,"a":2}},"y":{"d":"64,-176v-1,1,-2,3,-2,0r2,0xm44,-218v3,29,14,51,18,74v7,-17,14,-45,22,-84r35,0v-1,2,-3,9,0,15r-3,0v-18,27,-23,93,-39,112v9,18,-5,65,2,89v0,8,-12,16,-20,10v3,0,6,-1,5,-5r-22,6v3,-26,2,-57,2,-86v-14,-2,-38,-4,-41,-13v10,-11,7,-15,15,-4r2,-16v-6,0,-9,-2,-9,-5r22,0v-4,-38,-24,-67,-28,-103v6,-5,22,-3,33,-3v0,9,2,14,6,13xm39,-86v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm89,-34v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm29,-85v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm86,-17v-5,0,-6,-4,0,-3r0,3xm64,-142v0,7,0,11,4,18v0,-8,0,-10,-4,-18xm72,-122v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm75,-107v1,-4,-1,-9,-3,-6v0,2,2,4,3,6xm36,-107v5,-2,2,-16,-7,-13v4,3,7,7,7,13xm40,-102v0,-2,-3,-1,-4,-1v0,2,2,2,4,1xm22,-111v2,0,3,-3,0,-4v-2,1,-1,3,0,4","k":{"\u00fc":2,"\u00fb":2,"\u00f9":2,"\u00fa":2,"\u00f5":16,"\u00f6":16,"\u00f4":16,"\u00f2":16,"\u00f3":16,"\u00f1":4,"\u00e7":12,"\u00e5":35,"\u00e3":35,"\u00e4":35,"\u00e2":35,"\u00e0":35,"\u00e1":35,"z":9,"x":5,"u":2,"s":14,"q":12,"p":4,"o":16,"n":4,"m":9,"l":4,"k":4,"j":32,"g":16,"f":4,"d":9,"c":12,"a":35,".":32,"-":28,",":26}},"z":{"d":"58,-202v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm51,-185v-3,2,-7,1,-10,0v1,-2,8,-2,10,0xm90,-209v10,1,16,-14,20,-11v-1,12,-6,22,-4,35v2,-4,6,-5,8,0v0,8,-10,4,-15,4v1,18,-10,25,-7,38v-14,4,-9,16,-17,30v2,0,3,2,3,6v-5,0,-8,2,-8,9v2,11,-12,20,-12,31v0,3,25,14,22,19v-14,-1,-39,-3,-31,13v8,-3,33,3,44,-2v3,4,10,0,14,-1v3,12,7,33,-8,33v1,4,0,7,-5,6v-18,-2,-53,-15,-64,-1v-7,0,-19,1,-22,-2r2,-32r11,0r-11,-3v2,-5,2,-7,2,-13v-2,0,-6,1,-6,-1v29,-41,27,-47,48,-95v9,1,-1,-22,8,-15v10,-2,0,-16,3,-22v-2,2,-4,8,-9,9v0,-7,0,-14,-2,-20v5,2,8,0,8,-5v2,-8,-10,-6,-15,-4v-6,6,-24,5,-33,3r0,-27v13,3,19,-4,30,-5v3,27,14,-12,21,3v10,1,26,-5,34,3v-1,3,-7,9,-9,17xm75,-46v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm65,-46v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm15,-85v1,-1,4,-1,2,1xm12,-74v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm10,-67v1,2,-3,6,-2,2xm4,-61v1,2,-1,2,-3,2xm-3,-56v0,2,0,2,-2,2xm41,-2r0,2v-1,-1,-1,-1,0,-2xm-12,-50v-2,4,-5,5,-9,5v0,-5,4,-5,9,-5xm71,-216v3,0,2,-3,0,-4v-2,1,-3,4,0,4xm65,-213v-1,-1,-4,-5,-3,0r3,0xm45,-218v0,2,3,0,1,0r-1,0xm39,-221v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm52,-209v0,-3,-2,-4,-7,-4v-1,5,3,4,7,4xm78,-172v2,-3,1,-5,0,-9v-3,4,-2,6,0,9xm32,-211v1,-1,3,-2,0,-2r0,2xm23,-218v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm25,-204v1,0,1,-1,1,-2xm78,-146v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm60,-154v2,1,2,-1,2,-3xm51,-122v2,-1,4,-2,0,-2r0,2xm63,-53v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm68,-49v1,-1,1,-1,0,-2v-2,1,-2,1,0,2xm62,-48v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm34,-35v-1,-1,-6,-2,-7,0v2,1,5,2,7,0xm17,-4v3,0,5,0,4,-3","w":117,"k":{"\u00ff":7,"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00e5":7,"\u00e3":7,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"z":4,"y":7,"x":4,"w":4,"v":4,"s":5,"q":4,"o":5,"g":5,"a":7}},"{":{"d":"75,-236v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm67,-218v-14,2,-30,19,-41,9v1,-2,9,-4,0,-6v-1,0,-3,2,-5,4v2,-10,7,-15,15,-16v3,-6,18,-6,31,-5r0,14xm19,-196v5,-8,20,-7,26,-5v-3,7,-16,5,-26,5xm43,-187v-1,-1,-3,-2,0,-2r0,2xm41,-179v-3,0,-1,-1,-1,-1xm19,-187v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm35,-180v-2,5,-12,2,-18,3v2,-5,12,-2,18,-3xm43,-144v-3,3,-16,-10,-24,-10r0,-18v13,3,19,-10,22,4v2,8,-2,20,2,24xm33,-120v2,-2,4,0,2,2xm45,-94v1,1,1,3,0,4v-1,-1,-1,-3,0,-4xm45,-85v-5,12,-4,39,-4,54v0,7,29,10,35,15r-9,0r0,14v-12,0,-15,0,-17,2v1,-4,-34,-7,-26,-21v-7,-1,-2,-10,-2,-15r-3,1v2,-31,1,-56,-10,-74r8,0v-1,-16,9,-24,1,-39v15,-2,14,11,22,13v0,2,-8,8,-12,19v9,9,15,19,12,29v2,0,4,1,5,2xm5,-113v1,1,1,3,0,4v-1,-1,-1,-3,0,-4xm31,-7v1,1,3,2,0,3v-1,-1,-1,-2,0,-3xm56,-230v0,2,3,0,1,0r-1,0xm57,-222v0,0,2,0,2,-1v0,0,-2,0,-2,1xm49,-220v-1,0,-2,-2,-2,0r2,0xm28,-221v2,-1,0,-3,0,-1r0,1xm29,-166v2,-1,2,-3,0,-4v-1,1,-1,3,0,4xm24,-166v2,-1,2,-3,0,-4v-1,1,-1,3,0,4xm24,-115v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm29,-50v2,-1,2,-3,0,-4v-1,1,-1,3,0,4xm31,-47v2,0,2,-3,0,-3v-2,0,-1,3,0,3xm59,-19v0,-1,3,-3,-1,-3xm24,-54v0,2,3,0,1,0r-1,0xm40,-31v2,0,1,-4,0,-4v-2,1,-2,3,0,4xm29,-31v2,-1,2,-3,0,-4v-1,1,-1,3,0,4xm43,-16v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm38,-17v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm45,-12v-1,-3,-7,-6,-4,-1xm28,-22v1,-1,1,-3,0,-4v-2,1,-2,3,0,4xm32,-18v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm35,-12v1,-1,1,-3,0,-4v-2,1,-2,3,0,4xm22,-22v2,-1,2,-3,0,-4v-1,1,-1,3,0,4xm28,-17v1,-1,1,-3,0,-4v-2,1,-2,3,0,4xm31,-10v2,-1,2,-3,0,-4v-1,1,-1,3,0,4","w":85},"|":{"d":"36,-241v3,8,-2,26,9,26v-12,4,-11,21,-8,37v14,4,-9,9,1,18v2,0,5,-1,5,1v-15,15,2,58,-7,81v-5,13,1,18,8,22v-8,0,-5,5,0,6v-13,2,-5,35,-8,47v-11,4,-37,9,-26,-20r-1,-168v8,-10,0,-19,0,-50r27,0xm40,-102v4,-1,8,1,5,4xm43,-74v2,-1,6,4,2,4v0,0,-7,-4,-2,-4xm40,-36v2,-4,9,1,4,3v-1,0,-3,-2,-4,-3xm25,-27v2,-2,0,-4,-3,-4v-1,0,-1,1,-1,2v1,1,3,2,4,2","w":48},"}":{"d":"65,-155v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm61,-137v6,4,17,13,10,26v-19,14,-10,23,-14,41v-1,10,11,18,-1,12v8,25,-2,56,-25,48v3,-5,-3,-5,-8,-5v1,5,-1,7,-5,7v1,-7,1,-6,-1,-11v0,-3,4,-4,7,-2r-1,2v6,0,9,-8,10,-25v2,-4,-5,-67,12,-74v-11,-8,-15,-57,-11,-88v-1,-11,-15,-12,-28,-11r2,-21v26,-2,36,2,50,16v-4,15,0,33,-2,54v0,0,4,-1,0,3v-3,8,8,17,5,28xm65,-44v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm36,-5v2,1,2,3,0,4v-1,-1,-1,-3,0,-4xm17,-16v2,0,1,3,0,4v-1,-1,-2,-4,0,-4xm13,-21v-1,5,-6,7,-5,0r5,0xm26,-2v0,0,2,1,0,1r0,-1xm15,-1v1,-1,6,-2,7,0r-7,0xm8,-10v2,0,1,3,0,3v-1,0,-2,-3,0,-3xm10,-1v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm38,-202v2,-1,2,-3,0,-4v-1,1,-1,3,0,4xm12,-217v3,1,4,-3,1,-3xm38,-93v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm56,-70v1,-1,2,-4,0,-4v-3,0,-2,3,0,4xm42,-30v-1,1,-1,1,0,2r0,-2xm38,-22v1,0,6,-1,5,-4v-2,1,-4,3,-5,4","w":82},"~":{"d":"89,-273v6,1,9,2,10,8v-5,4,-13,18,-16,23v-34,7,-44,-33,-64,4v-15,-10,6,-41,19,-38v14,3,9,6,33,17v8,-4,8,-1,18,-14xm47,-271r0,-3v-1,1,-1,2,0,3","w":109},"\u00c4":{"d":"86,-237v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm97,-197v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm69,-135v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-89v1,2,2,3,0,5v-2,-2,-1,-3,0,-5xm62,-166v8,8,-9,39,-6,49v5,-1,4,-1,8,2v-11,2,-17,26,-5,29v-2,1,-2,2,-1,4r17,0v2,5,7,28,9,14v3,-31,-24,-82,-9,-103v0,-2,-2,-3,-6,-2v-4,-21,-20,-50,-3,-60v3,5,13,2,20,3v1,5,8,12,7,22r8,4r-8,0v2,15,3,31,6,47r14,4v-12,-1,-13,18,-2,22v-3,30,2,62,13,90v-6,8,0,27,9,28v-4,0,-7,2,-7,8r-33,0v1,-16,-7,-43,-9,-55v-2,15,-32,-2,-35,14r8,0v-19,4,-7,63,-42,44v-2,1,-5,1,-9,2v0,-6,5,-33,9,-56r31,-175v17,-3,15,53,16,65xm121,-58v0,-1,-2,-2,0,-2r0,2xm75,-91v0,3,-3,7,-2,2xm64,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm77,-155v1,1,2,3,2,0r-2,0xm77,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-104v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm82,-109v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm108,-78v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm108,-69v1,1,4,5,3,0r-3,0xm102,-70v3,0,0,-3,0,-1r0,1xm32,-1v3,0,4,-3,1,-4v-1,1,-3,3,-1,4xm99,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm56,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm80,-249v2,2,4,0,2,-2xm77,-249v2,2,4,0,2,-2xm38,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm35,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":136,"k":{"y":42,"x":4,"w":35,"v":42,"u":12,"t":39,"s":11,"r":5,"q":14,"p":7,"o":16,"n":9,"m":9,"l":7,"k":5,"i":5,"g":12,"f":5,"e":7,"d":11,"c":14,"b":5,"a":9,"Y":37,"X":4,"W":28,"V":33,"U":9,"T":35,"S":4,"Q":7,"O":9,"L":4,"J":4,"I":4,"H":4,"G":7,"F":2,"E":4,"C":9,"B":7,"A":4}},"\u00c5":{"d":"86,-237v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm97,-197v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm69,-135v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-89v1,2,2,3,0,5v-2,-2,-1,-3,0,-5xm62,-166v8,8,-9,39,-6,49v5,-1,4,-1,8,2v-11,2,-17,26,-5,29v-2,1,-2,2,-1,4r17,0v2,5,7,28,9,14v3,-31,-24,-82,-9,-103v0,-2,-2,-3,-6,-2v-4,-21,-20,-50,-3,-60v3,5,13,2,20,3v1,5,8,12,7,22r8,4r-8,0v2,15,3,31,6,47r14,4v-12,-1,-13,18,-2,22v-3,30,2,62,13,90v-6,8,0,27,9,28v-4,0,-7,2,-7,8r-33,0v1,-16,-7,-43,-9,-55v-2,15,-32,-2,-35,14r8,0v-19,4,-7,63,-42,44v-2,1,-5,1,-9,2v0,-6,5,-33,9,-56r31,-175v17,-3,15,53,16,65xm121,-58v0,-1,-2,-2,0,-2r0,2xm75,-91v0,3,-3,7,-2,2xm64,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm77,-155v1,1,2,3,2,0r-2,0xm77,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-104v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm82,-109v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm108,-78v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm108,-69v1,1,4,5,3,0r-3,0xm102,-70v3,0,0,-3,0,-1r0,1xm32,-1v3,0,4,-3,1,-4v-1,1,-3,3,-1,4xm65,-268v24,-8,-16,-31,6,-34v16,-2,13,16,21,23v-5,14,-1,42,-22,39v-5,0,-8,-3,-8,-9v4,-7,13,-2,7,-18xm71,-276v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,2,1,3,2,2v1,1,2,0,2,-2xm49,-240v-16,-11,-17,-61,8,-61v13,6,-9,18,1,23v-4,8,1,23,0,36v-2,1,-5,1,-9,2","w":136,"k":{"y":42,"x":4,"w":35,"v":42,"u":12,"t":39,"s":11,"r":5,"q":14,"p":7,"o":16,"n":9,"m":9,"l":7,"k":5,"i":5,"g":12,"f":5,"e":7,"d":11,"c":14,"b":5,"a":9,"Y":37,"X":4,"W":28,"V":33,"U":9,"T":35,"S":4,"Q":7,"O":9,"L":4,"J":4,"I":4,"H":4,"G":7,"F":2,"E":4,"C":9,"B":7,"A":4}},"\u00c7":{"d":"79,-236v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm96,-223v0,8,8,21,16,20v-4,14,-2,23,-3,46v-12,0,-15,5,-28,1v-2,-18,-5,-48,-21,-44v-2,-8,-1,-20,-1,-30v8,-1,30,7,37,7xm85,-154v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm42,-173v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm114,-84v2,3,1,7,0,9v-2,-2,-2,-6,0,-9xm44,-147v2,1,3,3,0,4v-2,-1,-3,-3,0,-4xm109,-79v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm107,-73v1,1,3,2,0,2r0,-2xm107,-82v0,7,-6,9,-10,4v2,-3,5,-4,10,-4xm107,-65v-1,2,-2,4,-2,0r2,0xm90,-78v0,6,5,11,12,10v1,6,-4,6,-5,10r13,0v-4,15,-4,10,-5,29v-3,-6,-2,4,-8,2r4,-7v-5,3,-7,-1,-18,-6v3,-5,17,4,18,-5v-7,1,-3,3,-10,0v0,-4,-2,-6,-6,-8v4,-3,10,-6,0,-5v1,0,7,-5,3,-7v-2,1,-5,2,-9,3r0,-17r13,0v-1,0,-2,0,-2,1xm77,-30v1,7,-16,6,-5,11v8,-2,5,-4,7,4v0,4,-3,7,-9,7v3,1,5,3,7,5v-1,0,-1,-1,-2,-1r-22,40v-1,0,-5,1,-13,1v-3,-10,15,-34,2,-38v-1,0,-2,1,-4,2v2,-14,-23,-12,-20,-29r9,0v-1,-7,-4,-8,-9,-5v-17,-3,-8,-40,-9,-62v-2,-56,-16,-134,46,-135r0,29v-14,10,-22,22,-13,40v-1,8,-4,24,-2,31v1,-1,2,-1,2,-2v0,17,-9,39,0,53v-6,19,0,34,6,47v10,-3,5,19,10,22v-1,-11,0,-25,12,-17v3,-1,5,-3,7,-3xm79,-56v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm83,-47v-1,1,-2,4,-4,2v1,-1,2,-2,4,-2xm92,-29v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm97,-21v-1,1,-2,5,-3,3v0,-1,2,-2,3,-3xm83,-27v-1,1,-2,2,-3,2xm85,-19v2,1,1,4,0,1r0,-1xm90,-12v0,2,-8,6,-7,0r7,0xm48,-36v1,0,2,1,2,2xm14,-32v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm77,-219v2,-1,1,-3,0,-4v-2,1,-1,3,0,4xm101,-171v2,0,2,0,2,-2xm51,-219v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm88,-175v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm85,-75v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm103,-47v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm83,-66r0,-5v-2,1,-2,3,0,5xm95,-51v4,-6,-3,-5,-3,-2v0,1,2,1,3,2xm97,-47v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm90,-51v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm101,-36v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm38,-58r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm41,-26v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm30,-33v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm22,-23v3,-1,7,-2,0,-2r0,2","w":117,"k":{"y":5,"a":11,"Y":4,"X":4,"W":2,"V":4,"A":7}},"\u00c9":{"d":"110,-240v0,2,0,4,-2,3v0,-2,0,-4,2,-3xm62,-231v12,-4,27,4,40,-3v-4,9,3,18,-5,32r-56,3v0,-14,1,-26,3,-34v2,9,20,-3,18,2xm44,-195v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm42,-166v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm44,-155v1,1,1,3,0,4v-2,0,-1,-4,0,-4xm42,-148v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm44,-138v13,-2,23,6,34,0v11,2,7,31,-2,34v-14,-7,-34,9,-35,-11v0,-11,1,-19,3,-23xm37,-171r-1,170v-7,1,-15,-2,-25,-1r0,-226v6,-1,14,-2,26,-3v-1,17,2,36,-1,51v-8,-1,-3,7,-3,12xm42,-95v2,0,1,3,0,4v-2,-1,-3,-3,0,-4xm42,-78v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm42,-60r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm44,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm101,-36v-5,3,0,10,1,14r-7,22v-18,2,-37,-3,-52,-1r1,1v-6,-5,-2,-27,0,-36v9,8,35,-7,47,3xm30,-184v-1,-6,-9,-3,-4,0v1,2,4,3,4,0xm19,-175v2,0,3,-3,0,-4v-2,0,-1,4,0,4xm50,-133v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm22,-155v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm68,-109v0,2,3,0,1,0r-1,0xm26,-146v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm26,-138v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm19,-144v-2,0,-7,-1,-6,2v2,0,4,0,6,-2xm75,-32v2,0,3,-2,0,-2v-3,0,-1,2,0,2xm65,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm88,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm64,-26v-1,-1,-2,-3,-2,0r2,0xm77,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm73,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm28,-186v0,1,-1,2,-2,2v0,-1,1,-2,2,-2xm60,-240v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":106,"k":{"o":9,"O":5,"K":-2}},"\u00d1":{"d":"129,-154v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm120,-149v1,4,-3,6,-5,3v1,-2,2,-3,5,-3xm121,-137v2,1,2,1,0,2v-1,0,0,-1,0,-2xm26,-228v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm111,-144v1,2,-1,2,-3,2xm105,-137v2,0,3,1,1,2xm69,-171v0,2,0,4,-3,3v0,-2,0,-4,3,-3xm129,-101v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm88,-135v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm76,-144v0,8,-3,11,-10,11v7,-3,6,-10,10,-11xm105,-129v7,1,3,-9,10,-8v4,0,6,4,6,14r10,0v-10,4,-16,12,-11,19r1,-5v0,9,-1,14,4,18v-6,-1,-1,8,-4,11v1,14,1,55,-2,75r-29,0v-5,-8,-24,-62,-24,-72v10,-3,21,-7,20,11v4,1,3,-3,3,-6v-5,-11,8,-7,16,-8v1,-7,-24,-1,-15,-9v-1,-7,3,-17,-4,-18v-6,1,-9,4,-9,7r5,-2v-4,6,6,10,0,18r-16,0v2,-1,4,-2,1,-3v-1,0,-3,2,-5,3v0,-7,-25,-37,-16,-47r2,1v-10,-14,6,-28,1,-41r-5,3v3,-13,-2,-35,0,-54v4,0,8,2,5,6v-3,12,17,32,10,37v-1,16,14,24,27,26v-7,0,-18,4,-22,0v0,11,-7,20,5,25v0,4,-2,2,-7,4v11,3,-2,20,5,24v2,-1,7,-29,15,-18v2,-1,6,-5,13,-13v-14,-18,-1,-65,-5,-99v10,0,23,2,25,-6v-2,7,4,6,9,6v-4,31,-1,40,-3,72v-5,7,-17,11,-16,29xm44,-164v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm77,-131v3,4,-3,13,-4,7v0,-2,1,-5,4,-7xm126,-64v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2v1,0,2,1,2,2xm40,-228r1,133v-5,14,-17,9,-30,9r0,-81v6,0,9,-2,9,-8v-2,2,-7,3,-9,0v2,-17,-4,-40,2,-53v-4,8,7,16,10,5v9,1,9,-4,17,-5xm60,-82v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm100,0v0,-2,5,-1,6,0v-2,1,-4,1,-6,0xm92,-1v1,1,1,1,0,2v-2,0,-3,-2,0,-2xm40,-78v5,27,1,57,-4,77v-10,-3,-16,1,-25,1r1,-79v8,-2,19,-1,28,1xm33,-217v2,-2,3,-4,0,-5v-3,1,-2,3,0,5xm36,-198v2,-1,0,-3,0,-1r0,1xm22,-204v4,-4,-2,-11,-7,-10v1,5,3,9,7,10xm111,-115v5,-3,-2,-10,-5,-10v-4,2,2,5,5,10xm57,-166v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm13,-202v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm26,-186v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm115,-97v2,-1,3,-4,0,-5v-2,1,-1,4,0,5xm18,-191v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm13,-193v1,-1,2,-2,2,-4xm106,-109v-2,2,-5,3,-9,2v2,5,7,2,9,-2xm90,-111r0,-7v-6,1,-10,9,0,7xm20,-164v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm108,-76v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm33,-146v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm29,-135v2,-1,3,-6,0,-7r0,7xm60,-102v2,-1,1,-4,0,-5v-2,0,-3,5,0,5xm22,-140v0,2,3,0,1,0r-1,0xm69,-89v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm35,-126v0,-1,-1,-2,-2,-2v-1,0,-2,1,-2,2v0,2,4,3,4,0xm31,-111v1,-4,4,-10,0,-11r0,11xm86,-60v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm31,-104v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm31,-100v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm33,-93v-1,-1,-2,-3,-2,0r2,0xm13,-15v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm102,-273v6,1,9,2,10,8v-5,4,-13,18,-16,23v-34,7,-44,-33,-64,4v-15,-10,6,-41,19,-38v14,3,9,6,33,17v8,-4,8,-1,18,-14xm60,-271r0,-3v-1,1,-1,2,0,3","w":130},"\u00d6":{"d":"98,-211v-2,1,-2,-4,-2,-6v2,1,4,4,2,6xm114,-195v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm45,-182v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm109,-211v2,21,7,45,0,65v-1,4,8,5,3,8r0,98v-10,12,-25,49,-53,35v-8,-21,21,-36,21,-51r0,-92r3,-3v-7,-26,-3,-57,-22,-51v2,-5,-5,-20,-2,-33v10,-1,16,1,13,11v2,-4,6,-15,9,-2v1,-7,9,-2,15,-2v0,1,-5,11,-4,15v-4,-3,-13,-3,-14,2v1,9,29,11,31,0xm50,-109v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm49,-102v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm45,-64v-15,7,6,27,9,35r0,29v-74,-15,-47,-114,-47,-191v0,-13,4,-19,12,-19v-3,-23,24,-7,29,-25v2,0,4,-1,6,-1r0,30v-27,14,-18,113,-9,142xm50,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm43,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm87,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm78,-202v1,1,4,5,3,0r-3,0xm79,-194v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm107,-138v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm25,-215v-1,1,-2,6,0,7v0,-2,2,-5,0,-7xm109,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm110,-118v0,-4,-4,-5,-3,0r3,0xm103,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm102,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm83,-122v-1,0,-2,4,0,4v1,-1,1,-3,0,-4xm37,-142v0,1,-2,2,0,2r0,-2xm40,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm93,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm50,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm74,-249v2,2,4,0,2,-2xm71,-249v2,2,4,0,2,-2xm32,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm29,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":118,"k":{"y":5,"v":4,"Y":5,"X":11,"W":4,"V":5,"J":4,"A":5}},"\u00dc":{"d":"124,-155v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm113,-233v1,25,-2,58,2,71v-7,33,8,85,-7,111v-8,-6,-29,8,-29,-15r3,-164v16,-1,15,-2,31,-3xm50,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm50,-124v0,0,1,7,-1,3v0,-1,0,-3,1,-3xm108,-44v-1,-1,-3,-2,0,-2r0,2xm44,-53v-8,10,1,15,13,27r0,25v-59,1,-50,-66,-49,-127v2,-2,4,-4,0,-5r0,-96v20,2,29,-9,36,-1v-5,4,-7,23,3,26r-7,0r2,107v-1,0,-2,-1,-2,-3v-1,16,3,30,-1,41v0,5,2,7,5,6xm113,-40v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm50,-102v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm97,-40v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm93,-29v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm46,-66v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm62,-29v4,-1,21,-29,26,-14v3,8,-9,5,-13,9v-1,3,12,1,13,8v-4,-2,-14,4,-6,4r20,0v-1,12,-25,28,-40,20r0,-27xm90,-221v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm17,-217v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm13,-220v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm101,-104v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm95,-100v2,-1,2,-3,0,-4v-2,1,-2,3,0,4xm112,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm20,-118v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm26,-111v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm11,-122v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm84,-44v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm17,-80v2,-1,0,-3,0,-1r0,1xm13,-66v3,1,2,-3,2,-5v-3,-1,-2,3,-2,5xm26,-53v-1,-1,-2,-3,-2,0r2,0xm15,-58v5,-1,6,-4,0,-4r0,4xm15,-49v2,0,6,1,5,-2v-2,0,-6,-1,-5,2xm99,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm56,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm80,-249v2,2,4,0,2,-2xm77,-249v2,2,4,0,2,-2xm38,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm35,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":123},"\u00e1":{"d":"86,-235v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm143,-87v1,3,-3,2,-5,2v-1,-3,3,-2,5,-2xm132,-83v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm69,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm71,-131v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm132,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm128,-56v2,1,3,2,-1,2xm78,-87v6,-22,-20,-67,-3,-83v-16,0,-14,-46,-14,-60v7,-2,10,2,25,1v10,8,1,24,15,27v-11,-2,-2,8,-6,13v2,11,0,35,17,38v-21,2,3,16,-4,27v3,7,7,11,4,21v2,5,14,7,13,16v-19,5,3,26,-4,39v8,7,0,30,12,34v-4,0,-7,4,-8,10v-12,-2,-37,7,-32,-10v0,-11,-4,-18,-15,-19r0,-4v-12,0,-16,7,-19,-4v-25,1,-6,54,-45,39v-4,3,-7,3,-7,-3v-1,-23,24,-74,5,-93v3,-2,5,-10,5,-24v10,0,14,-8,7,-11v-14,6,-30,2,-21,-11v8,2,16,9,24,5r-7,0v20,-15,14,-64,27,-90v3,0,7,1,9,2v4,34,11,74,6,105v0,-1,-1,-4,-3,-4v1,3,12,15,-1,15v-4,15,-10,25,5,20v5,-7,13,-3,15,4xm69,-100r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm12,-120v0,2,0,2,-2,2xm10,-104v-5,6,-10,6,-20,6v1,-6,11,-7,20,-6xm69,-31v1,1,4,4,0,3r0,-3xm79,-150v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm120,-88v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm64,-89v1,0,2,-1,2,-3v-2,0,-5,2,-2,3xm66,-89v1,1,-4,5,0,4v2,-1,5,-4,1,-5xm10,-135v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm73,-48v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm51,-48v2,-1,3,-3,0,-4v-2,0,-1,3,0,4xm70,-245v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":137,"k":{"z":11,"y":35,"x":5,"w":33,"v":37,"u":12,"t":40,"s":12,"r":5,"q":12,"p":7,"o":18,"n":4,"m":14,"l":7,"k":4,"j":14,"i":7,"h":7,"g":9,"f":5,"e":5,"d":14,"c":16,"b":5,"a":7,"B":7}},"\u00e0":{"d":"82,-255v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm79,-240v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm54,-257v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm60,-238v2,1,4,-2,2,-2v-1,0,-2,1,-2,2xm86,-235v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm143,-87v1,3,-3,2,-5,2v-1,-3,3,-2,5,-2xm132,-83v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm69,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm71,-131v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm132,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm128,-56v2,1,3,2,-1,2xm78,-87v6,-22,-20,-67,-3,-83v-16,0,-14,-46,-14,-60v7,-2,10,2,25,1v10,8,1,24,15,27v-11,-2,-2,8,-6,13v2,11,0,35,17,38v-21,2,3,16,-4,27v3,7,7,11,4,21v2,5,14,7,13,16v-19,5,3,26,-4,39v8,7,0,30,12,34v-4,0,-7,4,-8,10v-12,-2,-37,7,-32,-10v0,-11,-4,-18,-15,-19r0,-4v-12,0,-16,7,-19,-4v-25,1,-6,54,-45,39v-4,3,-7,3,-7,-3v-1,-23,24,-74,5,-93v3,-2,5,-10,5,-24v10,0,14,-8,7,-11v-14,6,-30,2,-21,-11v8,2,16,9,24,5r-7,0v20,-15,14,-64,27,-90v3,0,7,1,9,2v4,34,11,74,6,105v0,-1,-1,-4,-3,-4v1,3,12,15,-1,15v-4,15,-10,25,5,20v5,-7,13,-3,15,4xm69,-100r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm12,-120v0,2,0,2,-2,2xm10,-104v-5,6,-10,6,-20,6v1,-6,11,-7,20,-6xm69,-31v1,1,4,4,0,3r0,-3xm79,-150v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm120,-88v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm64,-89v1,0,2,-1,2,-3v-2,0,-5,2,-2,3xm66,-89v1,1,-4,5,0,4v2,-1,5,-4,1,-5xm10,-135v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm73,-48v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm51,-48v2,-1,3,-3,0,-4v-2,0,-1,3,0,4","w":137,"k":{"z":11,"y":35,"x":5,"w":33,"v":37,"u":12,"t":40,"s":12,"r":5,"q":12,"p":7,"o":18,"n":4,"m":14,"l":7,"k":4,"j":14,"i":7,"h":7,"g":9,"f":5,"e":5,"d":14,"c":16,"b":5,"a":7,"B":7}},"\u00e2":{"d":"81,-277v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm94,-261r0,2v-1,-1,-1,-1,0,-2xm90,-261r0,2v-1,-1,-1,-1,0,-2xm101,-245v-1,2,-3,0,-1,0r1,0xm34,-237v7,-7,16,-60,41,-43v2,0,23,40,24,43v-24,8,-21,-25,-33,-31v-8,13,-7,35,-32,31xm66,-282r1,0r-1,0xm86,-235v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm143,-87v1,3,-3,2,-5,2v-1,-3,3,-2,5,-2xm132,-83v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm69,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm71,-131v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm132,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm128,-56v2,1,3,2,-1,2xm78,-87v6,-22,-20,-67,-3,-83v-16,0,-14,-46,-14,-60v7,-2,10,2,25,1v10,8,1,24,15,27v-11,-2,-2,8,-6,13v2,11,0,35,17,38v-21,2,3,16,-4,27v3,7,7,11,4,21v2,5,14,7,13,16v-19,5,3,26,-4,39v8,7,0,30,12,34v-4,0,-7,4,-8,10v-12,-2,-37,7,-32,-10v0,-11,-4,-18,-15,-19r0,-4v-12,0,-16,7,-19,-4v-25,1,-6,54,-45,39v-4,3,-7,3,-7,-3v-1,-23,24,-74,5,-93v3,-2,5,-10,5,-24v10,0,14,-8,7,-11v-14,6,-30,2,-21,-11v8,2,16,9,24,5r-7,0v20,-15,14,-64,27,-90v3,0,7,1,9,2v4,34,11,74,6,105v0,-1,-1,-4,-3,-4v1,3,12,15,-1,15v-4,15,-10,25,5,20v5,-7,13,-3,15,4xm69,-100r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm12,-120v0,2,0,2,-2,2xm10,-104v-5,6,-10,6,-20,6v1,-6,11,-7,20,-6xm69,-31v1,1,4,4,0,3r0,-3xm79,-150v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm120,-88v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm64,-89v1,0,2,-1,2,-3v-2,0,-5,2,-2,3xm66,-89v1,1,-4,5,0,4v2,-1,5,-4,1,-5xm10,-135v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm73,-48v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm51,-48v2,-1,3,-3,0,-4v-2,0,-1,3,0,4","w":137,"k":{"z":11,"y":35,"x":5,"w":33,"v":37,"u":12,"t":40,"s":12,"r":5,"q":12,"p":7,"o":18,"n":4,"m":14,"l":7,"k":4,"j":14,"i":7,"h":7,"g":9,"f":5,"e":5,"d":14,"c":16,"b":5,"a":7,"B":7}},"\u00e4":{"d":"86,-235v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm143,-87v1,3,-3,2,-5,2v-1,-3,3,-2,5,-2xm132,-83v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm69,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm71,-131v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm132,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm128,-56v2,1,3,2,-1,2xm78,-87v6,-22,-20,-67,-3,-83v-16,0,-14,-46,-14,-60v7,-2,10,2,25,1v10,8,1,24,15,27v-11,-2,-2,8,-6,13v2,11,0,35,17,38v-21,2,3,16,-4,27v3,7,7,11,4,21v2,5,14,7,13,16v-19,5,3,26,-4,39v8,7,0,30,12,34v-4,0,-7,4,-8,10v-12,-2,-37,7,-32,-10v0,-11,-4,-18,-15,-19r0,-4v-12,0,-16,7,-19,-4v-25,1,-6,54,-45,39v-4,3,-7,3,-7,-3v-1,-23,24,-74,5,-93v3,-2,5,-10,5,-24v10,0,14,-8,7,-11v-14,6,-30,2,-21,-11v8,2,16,9,24,5r-7,0v20,-15,14,-64,27,-90v3,0,7,1,9,2v4,34,11,74,6,105v0,-1,-1,-4,-3,-4v1,3,12,15,-1,15v-4,15,-10,25,5,20v5,-7,13,-3,15,4xm69,-100r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm12,-120v0,2,0,2,-2,2xm10,-104v-5,6,-10,6,-20,6v1,-6,11,-7,20,-6xm69,-31v1,1,4,4,0,3r0,-3xm79,-150v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm120,-88v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm64,-89v1,0,2,-1,2,-3v-2,0,-5,2,-2,3xm66,-89v1,1,-4,5,0,4v2,-1,5,-4,1,-5xm10,-135v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm73,-48v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm51,-48v2,-1,3,-3,0,-4v-2,0,-1,3,0,4xm102,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm59,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm83,-249v2,2,4,0,2,-2xm80,-249v2,2,4,0,2,-2xm41,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm38,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":137,"k":{"z":11,"y":35,"x":5,"w":33,"v":37,"u":12,"t":40,"s":12,"r":5,"q":12,"p":7,"o":18,"n":4,"m":14,"l":7,"k":4,"j":14,"i":7,"h":7,"g":9,"f":5,"e":5,"d":14,"c":16,"b":5,"a":7,"B":7}},"\u00e3":{"d":"86,-235v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm143,-87v1,3,-3,2,-5,2v-1,-3,3,-2,5,-2xm132,-83v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm69,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm71,-131v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm132,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm128,-56v2,1,3,2,-1,2xm78,-87v6,-22,-20,-67,-3,-83v-16,0,-14,-46,-14,-60v7,-2,10,2,25,1v10,8,1,24,15,27v-11,-2,-2,8,-6,13v2,11,0,35,17,38v-21,2,3,16,-4,27v3,7,7,11,4,21v2,5,14,7,13,16v-19,5,3,26,-4,39v8,7,0,30,12,34v-4,0,-7,4,-8,10v-12,-2,-37,7,-32,-10v0,-11,-4,-18,-15,-19r0,-4v-12,0,-16,7,-19,-4v-25,1,-6,54,-45,39v-4,3,-7,3,-7,-3v-1,-23,24,-74,5,-93v3,-2,5,-10,5,-24v10,0,14,-8,7,-11v-14,6,-30,2,-21,-11v8,2,16,9,24,5r-7,0v20,-15,14,-64,27,-90v3,0,7,1,9,2v4,34,11,74,6,105v0,-1,-1,-4,-3,-4v1,3,12,15,-1,15v-4,15,-10,25,5,20v5,-7,13,-3,15,4xm69,-100r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm12,-120v0,2,0,2,-2,2xm10,-104v-5,6,-10,6,-20,6v1,-6,11,-7,20,-6xm69,-31v1,1,4,4,0,3r0,-3xm79,-150v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm120,-88v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm64,-89v1,0,2,-1,2,-3v-2,0,-5,2,-2,3xm66,-89v1,1,-4,5,0,4v2,-1,5,-4,1,-5xm10,-135v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm73,-48v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm51,-48v2,-1,3,-3,0,-4v-2,0,-1,3,0,4xm97,-273v6,1,9,2,10,8v-5,4,-13,18,-16,23v-34,7,-44,-33,-64,4v-15,-10,6,-41,19,-38v14,3,9,6,33,17v8,-4,8,-1,18,-14xm55,-271r0,-3v-1,1,-1,2,0,3","w":137,"k":{"z":11,"y":35,"x":5,"w":33,"v":37,"u":12,"t":40,"s":12,"r":5,"q":12,"p":7,"o":18,"n":4,"m":14,"l":7,"k":4,"j":14,"i":7,"h":7,"g":9,"f":5,"e":5,"d":14,"c":16,"b":5,"a":7,"B":7}},"\u00e5":{"d":"86,-235v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm143,-87v1,3,-3,2,-5,2v-1,-3,3,-2,5,-2xm132,-83v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm69,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm71,-131v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm132,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm128,-56v2,1,3,2,-1,2xm78,-87v6,-22,-20,-67,-3,-83v-16,0,-14,-46,-14,-60v7,-2,10,2,25,1v10,8,1,24,15,27v-11,-2,-2,8,-6,13v2,11,0,35,17,38v-21,2,3,16,-4,27v3,7,7,11,4,21v2,5,14,7,13,16v-19,5,3,26,-4,39v8,7,0,30,12,34v-4,0,-7,4,-8,10v-12,-2,-37,7,-32,-10v0,-11,-4,-18,-15,-19r0,-4v-12,0,-16,7,-19,-4v-25,1,-6,54,-45,39v-4,3,-7,3,-7,-3v-1,-23,24,-74,5,-93v3,-2,5,-10,5,-24v10,0,14,-8,7,-11v-14,6,-30,2,-21,-11v8,2,16,9,24,5r-7,0v20,-15,14,-64,27,-90v3,0,7,1,9,2v4,34,11,74,6,105v0,-1,-1,-4,-3,-4v1,3,12,15,-1,15v-4,15,-10,25,5,20v5,-7,13,-3,15,4xm69,-100r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm12,-120v0,2,0,2,-2,2xm10,-104v-5,6,-10,6,-20,6v1,-6,11,-7,20,-6xm69,-31v1,1,4,4,0,3r0,-3xm79,-150v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm120,-88v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm64,-89v1,0,2,-1,2,-3v-2,0,-5,2,-2,3xm66,-89v1,1,-4,5,0,4v2,-1,5,-4,1,-5xm10,-135v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm73,-48v2,-1,3,-3,0,-4v-2,0,-3,3,0,4xm51,-48v2,-1,3,-3,0,-4v-2,0,-1,3,0,4xm65,-268v24,-8,-16,-31,6,-34v16,-2,13,16,21,23v-5,14,-1,42,-22,39v-5,0,-8,-3,-8,-9v4,-7,13,-2,7,-18xm71,-276v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,2,1,3,2,2v1,1,2,0,2,-2xm49,-240v-16,-11,-17,-61,8,-61v13,6,-9,18,1,23v-4,8,1,23,0,36v-2,1,-5,1,-9,2","w":137,"k":{"z":11,"y":35,"x":5,"w":33,"v":37,"u":12,"t":40,"s":12,"r":5,"q":12,"p":7,"o":18,"n":4,"m":14,"l":7,"k":4,"j":14,"i":7,"h":7,"g":9,"f":5,"e":5,"d":14,"c":16,"b":5,"a":7,"B":7}},"\u00e7":{"d":"79,-238v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm96,-224v0,8,8,21,16,20v-2,14,-1,26,-2,46v-13,1,-18,4,-29,1v-3,-17,-2,-47,-21,-44v-2,-8,-1,-21,-1,-31v7,-1,30,9,37,8xm85,-155v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm41,-175v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm114,-84v3,3,2,5,0,8v-2,-2,-3,-5,0,-8xm44,-148v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm110,-80v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm108,-73v1,1,3,2,0,2r0,-2xm107,-82v0,7,-6,7,-10,4v2,-3,5,-4,10,-4xm108,-65v-1,1,-4,5,-3,0r3,0xm92,-80v-6,5,4,12,10,12v1,6,-5,5,-5,10r14,0v-1,16,-10,6,-3,24v-5,5,-4,4,-11,7r4,-7v-5,3,-7,-1,-18,-6v3,-5,16,5,18,-5v-7,1,-3,3,-10,0v0,-4,-2,-6,-6,-8v4,-3,10,-6,0,-5v0,0,9,-5,3,-7v-2,1,-5,2,-9,3r0,-18r13,0xm37,-126v12,10,-8,35,4,46v-6,20,1,34,7,48v10,-3,5,19,10,22v-1,-11,0,-25,12,-17v3,-1,8,-6,7,0v-5,1,-12,6,-5,9v9,-4,4,-6,7,4v0,4,-3,6,-9,7v14,6,0,4,-6,23v-7,21,-5,23,-25,21v-1,-8,16,-34,2,-38v-1,0,-2,1,-4,2v6,-10,-24,-15,-20,-29r9,0r-2,-8v-9,8,-17,-1,-16,-17v4,-67,-23,-181,47,-179r0,29v-14,12,-24,24,-13,41v-3,9,-1,21,-5,31v4,4,3,-7,5,-2v0,3,-2,6,-5,7xm79,-56v2,2,3,3,0,4v-1,-1,-1,-3,0,-4xm83,-47v-1,1,-2,4,-4,2v1,-1,2,-2,4,-2xm92,-29v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm97,-21r-2,4v0,-1,1,-3,2,-4xm83,-27v-1,1,-2,2,-3,2xm85,-18v3,0,0,3,0,1r0,-1xm90,-12v0,2,-8,6,-7,0r7,0xm48,-36v1,0,2,1,2,2xm13,-32v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm77,-220v2,-1,1,-4,0,-5v-1,1,-2,4,0,5xm101,-172v2,1,2,-1,2,-3xm50,-220v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm88,-176v2,0,3,-5,0,-5v-3,0,-2,5,0,5xm85,-76v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm103,-47v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm83,-67r0,-4v-2,1,-2,3,0,4xm95,-52v1,-1,1,-3,0,-4v-2,2,-3,3,0,4xm97,-47v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm90,-52v3,-1,2,-2,0,-4v-2,2,-3,3,0,4xm101,-36v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm39,-60v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm40,-27r1,-1xm30,-33v1,-1,1,-1,0,-2v-2,1,-2,1,0,2xm22,-23v3,-1,6,-2,0,-2r0,2","w":117,"k":{"z":4,"y":9,"x":11,"w":7,"v":9,"t":4,"q":4,"o":4,"a":12}},"\u00e9":{"d":"110,-233v-2,-1,-5,-6,0,-5r0,5xm140,-149v0,1,-1,3,-1,1xm45,-231v15,3,43,1,57,-1v0,14,0,19,-5,34r-54,1xm132,-157v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm47,-192v-1,1,-2,3,-2,0r2,0xm51,-181v8,1,3,12,-2,15r-2,0v1,-3,2,-8,4,-15xm54,-163v0,3,-1,6,-3,8v1,-3,-2,-9,3,-8xm41,-164v1,-2,2,-3,2,1xm51,-153v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm45,-155v2,1,2,3,0,5r0,-5xm41,-145v1,-1,2,-2,2,1xm-3,-179v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm-12,-170v-4,-4,-9,-1,-14,0v0,-7,11,-14,19,-14v1,4,-9,9,-5,14xm-7,-170v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm39,-4v-4,9,-16,-6,-25,2v-6,-21,-9,-43,-13,-66v1,-1,4,-1,3,-4v-2,0,-8,8,-10,7v-2,-11,6,-11,16,-11v-2,-20,5,-46,-5,-59v8,-6,-11,-11,-9,-20v-5,2,-11,2,-17,0v-1,10,-21,-2,-24,8v0,-21,6,-22,18,-12v16,-4,38,-8,32,-28v14,-6,4,-15,6,-40v14,-1,23,-2,27,-2r0,53v-2,0,-3,0,-4,1v9,6,3,28,5,42v8,-8,29,-3,44,-4v2,5,2,40,-5,35v-12,-1,-23,-7,-34,-2r0,-20r-5,2r0,118xm43,-98r0,39v-3,-3,-3,-36,0,-39xm47,-54v-1,1,-2,3,-2,0r2,0xm45,0r-2,-39v15,7,39,1,58,2v-2,11,1,25,-6,37v-21,5,-40,-11,-50,0xm4,-87v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-3,-83v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm-17,-87v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-18,-83v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-10,-63v-4,-1,-1,-6,-2,-9xm-18,-72v-2,-1,-4,-2,0,-2r0,2xm-17,-50v8,0,7,-8,12,-11v2,16,-6,20,-14,27v1,-5,1,-5,2,-16xm6,-39v0,16,-4,19,-7,8v0,-6,2,-8,7,-8xm-7,-41v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-5,-18v1,0,1,0,1,1xm-14,-28v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-14,-20v3,0,5,2,3,4v0,0,-1,-2,-3,-4xm6,-162v-3,0,-4,2,-5,5v4,-1,5,-2,5,-5xm8,-54v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm12,-50v0,-2,-4,-3,-4,0v0,2,4,3,4,0xm7,-50v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm58,-244v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":110,"k":{"z":2,"x":4,"w":4,"v":2,"s":12,"q":14,"o":14,"g":9,"d":4,"c":7,"a":9}},"\u00e8":{"d":"72,-257v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm69,-242v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm44,-259v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm50,-240v2,1,4,-2,2,-2v-1,0,-2,1,-2,2xm110,-233v-2,-1,-5,-6,0,-5r0,5xm140,-149v0,1,-1,3,-1,1xm45,-231v15,3,43,1,57,-1v0,14,0,19,-5,34r-54,1xm132,-157v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm47,-192v-1,1,-2,3,-2,0r2,0xm51,-181v8,1,3,12,-2,15r-2,0v1,-3,2,-8,4,-15xm54,-163v0,3,-1,6,-3,8v1,-3,-2,-9,3,-8xm41,-164v1,-2,2,-3,2,1xm51,-153v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm45,-155v2,1,2,3,0,5r0,-5xm41,-145v1,-1,2,-2,2,1xm-3,-179v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm-12,-170v-4,-4,-9,-1,-14,0v0,-7,11,-14,19,-14v1,4,-9,9,-5,14xm-7,-170v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm39,-4v-4,9,-16,-6,-25,2v-6,-21,-9,-43,-13,-66v1,-1,4,-1,3,-4v-2,0,-8,8,-10,7v-2,-11,6,-11,16,-11v-2,-20,5,-46,-5,-59v8,-6,-11,-11,-9,-20v-5,2,-11,2,-17,0v-1,10,-21,-2,-24,8v0,-21,6,-22,18,-12v16,-4,38,-8,32,-28v14,-6,4,-15,6,-40v14,-1,23,-2,27,-2r0,53v-2,0,-3,0,-4,1v9,6,3,28,5,42v8,-8,29,-3,44,-4v2,5,2,40,-5,35v-12,-1,-23,-7,-34,-2r0,-20r-5,2r0,118xm43,-98r0,39v-3,-3,-3,-36,0,-39xm47,-54v-1,1,-2,3,-2,0r2,0xm45,0r-2,-39v15,7,39,1,58,2v-2,11,1,25,-6,37v-21,5,-40,-11,-50,0xm4,-87v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-3,-83v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm-17,-87v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-18,-83v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-10,-63v-4,-1,-1,-6,-2,-9xm-18,-72v-2,-1,-4,-2,0,-2r0,2xm-17,-50v8,0,7,-8,12,-11v2,16,-6,20,-14,27v1,-5,1,-5,2,-16xm6,-39v0,16,-4,19,-7,8v0,-6,2,-8,7,-8xm-7,-41v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-5,-18v1,0,1,0,1,1xm-14,-28v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-14,-20v3,0,5,2,3,4v0,0,-1,-2,-3,-4xm6,-162v-3,0,-4,2,-5,5v4,-1,5,-2,5,-5xm8,-54v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm12,-50v0,-2,-4,-3,-4,0v0,2,4,3,4,0xm7,-50v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2","w":110,"k":{"z":2,"x":4,"w":4,"v":2,"s":12,"q":14,"o":14,"g":9,"d":4,"c":7,"a":9}},"\u00ea":{"d":"68,-277v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm81,-261r0,2v-1,-1,-1,-1,0,-2xm77,-261r0,2v-1,-1,-1,-1,0,-2xm88,-245v-1,2,-3,0,-1,0r1,0xm21,-237v7,-7,16,-60,41,-43v2,0,23,40,24,43v-24,8,-21,-25,-33,-31v-8,13,-7,35,-32,31xm53,-282r1,0r-1,0xm110,-233v-2,-1,-5,-6,0,-5r0,5xm140,-149v0,1,-1,3,-1,1xm45,-231v15,3,43,1,57,-1v0,14,0,19,-5,34r-54,1xm132,-157v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm47,-192v-1,1,-2,3,-2,0r2,0xm51,-181v8,1,3,12,-2,15r-2,0v1,-3,2,-8,4,-15xm54,-163v0,3,-1,6,-3,8v1,-3,-2,-9,3,-8xm41,-164v1,-2,2,-3,2,1xm51,-153v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm45,-155v2,1,2,3,0,5r0,-5xm41,-145v1,-1,2,-2,2,1xm-3,-179v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm-12,-170v-4,-4,-9,-1,-14,0v0,-7,11,-14,19,-14v1,4,-9,9,-5,14xm-7,-170v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm39,-4v-4,9,-16,-6,-25,2v-6,-21,-9,-43,-13,-66v1,-1,4,-1,3,-4v-2,0,-8,8,-10,7v-2,-11,6,-11,16,-11v-2,-20,5,-46,-5,-59v8,-6,-11,-11,-9,-20v-5,2,-11,2,-17,0v-1,10,-21,-2,-24,8v0,-21,6,-22,18,-12v16,-4,38,-8,32,-28v14,-6,4,-15,6,-40v14,-1,23,-2,27,-2r0,53v-2,0,-3,0,-4,1v9,6,3,28,5,42v8,-8,29,-3,44,-4v2,5,2,40,-5,35v-12,-1,-23,-7,-34,-2r0,-20r-5,2r0,118xm43,-98r0,39v-3,-3,-3,-36,0,-39xm47,-54v-1,1,-2,3,-2,0r2,0xm45,0r-2,-39v15,7,39,1,58,2v-2,11,1,25,-6,37v-21,5,-40,-11,-50,0xm4,-87v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-3,-83v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm-17,-87v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-18,-83v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-10,-63v-4,-1,-1,-6,-2,-9xm-18,-72v-2,-1,-4,-2,0,-2r0,2xm-17,-50v8,0,7,-8,12,-11v2,16,-6,20,-14,27v1,-5,1,-5,2,-16xm6,-39v0,16,-4,19,-7,8v0,-6,2,-8,7,-8xm-7,-41v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-5,-18v1,0,1,0,1,1xm-14,-28v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-14,-20v3,0,5,2,3,4v0,0,-1,-2,-3,-4xm6,-162v-3,0,-4,2,-5,5v4,-1,5,-2,5,-5xm8,-54v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm12,-50v0,-2,-4,-3,-4,0v0,2,4,3,4,0xm7,-50v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2","w":110,"k":{"z":2,"x":4,"w":4,"v":2,"s":12,"q":14,"o":14,"g":9,"d":4,"c":7,"a":9}},"\u00eb":{"d":"110,-233v-2,-1,-5,-6,0,-5r0,5xm140,-149v0,1,-1,3,-1,1xm45,-231v15,3,43,1,57,-1v0,14,0,19,-5,34r-54,1xm132,-157v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm47,-192v-1,1,-2,3,-2,0r2,0xm51,-181v8,1,3,12,-2,15r-2,0v1,-3,2,-8,4,-15xm54,-163v0,3,-1,6,-3,8v1,-3,-2,-9,3,-8xm41,-164v1,-2,2,-3,2,1xm51,-153v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm45,-155v2,1,2,3,0,5r0,-5xm41,-145v1,-1,2,-2,2,1xm-3,-179v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm-12,-170v-4,-4,-9,-1,-14,0v0,-7,11,-14,19,-14v1,4,-9,9,-5,14xm-7,-170v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm39,-4v-4,9,-16,-6,-25,2v-6,-21,-9,-43,-13,-66v1,-1,4,-1,3,-4v-2,0,-8,8,-10,7v-2,-11,6,-11,16,-11v-2,-20,5,-46,-5,-59v8,-6,-11,-11,-9,-20v-5,2,-11,2,-17,0v-1,10,-21,-2,-24,8v0,-21,6,-22,18,-12v16,-4,38,-8,32,-28v14,-6,4,-15,6,-40v14,-1,23,-2,27,-2r0,53v-2,0,-3,0,-4,1v9,6,3,28,5,42v8,-8,29,-3,44,-4v2,5,2,40,-5,35v-12,-1,-23,-7,-34,-2r0,-20r-5,2r0,118xm43,-98r0,39v-3,-3,-3,-36,0,-39xm47,-54v-1,1,-2,3,-2,0r2,0xm45,0r-2,-39v15,7,39,1,58,2v-2,11,1,25,-6,37v-21,5,-40,-11,-50,0xm4,-87v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-3,-83v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm-17,-87v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-18,-83v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-10,-63v-4,-1,-1,-6,-2,-9xm-18,-72v-2,-1,-4,-2,0,-2r0,2xm-17,-50v8,0,7,-8,12,-11v2,16,-6,20,-14,27v1,-5,1,-5,2,-16xm6,-39v0,16,-4,19,-7,8v0,-6,2,-8,7,-8xm-7,-41v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm-5,-18v1,0,1,0,1,1xm-14,-28v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-14,-20v3,0,5,2,3,4v0,0,-1,-2,-3,-4xm6,-162v-3,0,-4,2,-5,5v4,-1,5,-2,5,-5xm8,-54v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm12,-50v0,-2,-4,-3,-4,0v0,2,4,3,4,0xm7,-50v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm91,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm48,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm72,-249v2,2,4,0,2,-2xm69,-249v2,2,4,0,2,-2xm30,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm27,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":110,"k":{"z":2,"x":4,"w":4,"v":2,"s":12,"q":14,"o":14,"g":9,"d":4,"c":7,"a":9}},"\u00ed":{"d":"47,-152v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-20v1,35,-23,7,-33,20r0,-227v13,4,25,-8,31,-1xm13,-216v0,8,8,8,1,0r-1,0xm32,-242v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":50,"k":{"a":5}},"\u00ec":{"d":"44,-256v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm41,-241v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm16,-258v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm22,-239v2,1,4,-2,2,-2v-1,0,-2,1,-2,2xm47,-152v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-20v1,35,-23,7,-33,20r0,-227v13,4,25,-8,31,-1xm13,-216v0,8,8,8,1,0r-1,0","w":50,"k":{"a":5}},"\u00ee":{"d":"40,-278v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm53,-262r0,2v-1,-1,-1,-1,0,-2xm49,-262r0,2v-1,-1,-1,-1,0,-2xm60,-246v-1,2,-3,0,-1,0r1,0xm-7,-238v7,-7,16,-60,41,-43v2,0,23,40,24,43v-24,8,-21,-25,-33,-31v-8,13,-7,35,-32,31xm25,-283r1,0r-1,0xm47,-152v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-20v1,35,-23,7,-33,20r0,-227v13,4,25,-8,31,-1xm13,-216v0,8,8,8,1,0r-1,0","w":50,"k":{"a":5}},"\u00ef":{"d":"47,-152v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-20v1,35,-23,7,-33,20r0,-227v13,4,25,-8,31,-1xm13,-216v0,8,8,8,1,0r-1,0xm65,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm22,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm46,-249v2,2,4,0,2,-2xm43,-249v2,2,4,0,2,-2xm4,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm1,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":50,"k":{"a":5}},"\u00f1":{"d":"126,-155v-1,-1,-3,-2,0,-2r0,2xm115,-153v1,4,-1,6,-5,5v0,-3,2,-5,5,-5xm106,-148v0,2,0,2,-2,2xm126,-102v-1,-1,-3,-2,0,-2r0,2xm85,-139v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm150,-67v1,4,-5,1,-7,2v-1,-4,5,-1,7,-2xm121,-92v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm71,-148v6,5,-1,12,-8,11v2,-2,3,-8,8,-11xm139,-63v-1,1,-2,3,-2,0r2,0xm126,-57v-5,14,24,18,24,26v-11,2,-10,5,-29,2v0,18,-8,37,-14,20v-5,9,-15,-1,-20,5v-2,-4,-6,-8,-4,-13v-11,-2,-17,11,-18,-5v-8,-2,-22,5,-22,-5v22,0,14,-22,4,-30v16,6,13,-24,24,-30v-6,-5,-18,8,-15,0v1,-15,-22,-38,-13,-55v-15,10,7,51,-19,57r17,0v-11,14,12,11,11,25v-3,0,-9,-3,-11,-1v0,12,0,39,-6,52v-11,-2,-14,9,-18,0v-1,4,-7,7,-9,2v2,-25,-3,-57,3,-78v2,1,4,1,4,-2v-1,-1,-3,-3,-7,-5r0,-79v6,0,9,-1,9,-5v-4,0,-8,0,-9,-3v2,-16,-4,-40,2,-52v-1,10,7,17,10,3v4,-2,5,-1,8,4v1,-8,17,-11,19,2v-6,14,17,28,9,41v7,4,9,5,9,11v-2,0,-6,-4,-5,0v3,8,11,13,23,14v-1,2,-23,3,-23,6v-2,12,3,22,14,15v1,11,-4,8,-12,7v4,11,-6,20,3,24v2,-14,5,-20,17,-20v0,-5,7,-8,9,-11v-5,-2,-11,-13,-4,-17r0,-81v9,-1,20,3,23,-5v4,2,5,7,10,6v-4,24,1,46,-3,73v-10,5,-15,11,-17,17v24,-4,14,11,27,18v-8,0,-12,4,-12,13r5,-2v-5,18,4,35,10,46v-6,1,-11,6,-4,10xm133,-61v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm130,-26v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm133,-15v-4,0,-5,-1,-5,-5v4,0,5,1,5,5xm75,-10v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm39,-181v0,-14,2,-33,-1,-45xm102,-133v4,1,4,-5,1,-4v-2,0,-4,3,-1,4xm102,-128v-1,2,3,6,2,2v-1,-1,-1,-2,-2,-2xm106,-120v2,-1,4,-2,0,-2r0,2xm19,-207v3,-4,-2,-9,-4,-8v0,3,1,5,4,8xm43,-174v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm39,-172v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm95,-107v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm80,-115v4,0,9,1,7,-5v-2,1,-5,3,-7,5xm46,-172v-11,2,-7,14,-7,26v6,-5,7,-22,7,-26xm121,-65v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-85v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm97,-86v1,-1,1,-1,0,-2v-2,1,-2,1,0,2xm85,-94v-1,-7,3,-18,-7,-15v3,5,1,10,7,15xm26,-142v2,0,2,0,2,-2v-2,0,-2,0,-2,2xm80,-85v1,3,5,2,5,-2v-2,-2,-5,-2,-5,2xm121,-41v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm133,-31v2,0,1,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm76,-85v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm124,-37v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm29,-123v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm28,-102v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm67,-52v2,0,2,0,2,-2xm71,-46v-4,-1,-5,1,-4,5v2,0,3,-1,4,-5xm63,-33v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm41,-168v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm92,-273v6,1,9,2,10,8v-5,4,-13,18,-16,23v-34,7,-44,-33,-64,4v-15,-10,6,-41,19,-38v14,3,9,6,33,17v8,-4,8,-1,18,-14xm50,-271r0,-3v-1,1,-1,2,0,3","w":132,"k":{"y":7,"x":4,"v":4,"u":7,"t":7,"s":9,"p":4,"o":7,"g":5,"d":7,"b":4,"a":9}},"\u00f3":{"d":"78,-159v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm112,-198v11,14,-3,43,5,60r-1,90v12,2,24,-7,27,-4v0,1,-1,2,-3,4r16,0v-11,3,-17,7,-17,10v1,-1,4,5,4,5r-7,0v2,7,8,3,13,3v0,8,-24,3,-28,2r2,-5r-8,0v-17,20,-29,40,-53,29v-1,-7,2,-18,-2,-22v-2,8,5,30,-6,24v-14,4,-22,-13,-40,-24r-4,-133r-5,0v0,-3,5,-9,3,-13r-13,9v0,-8,11,-4,13,-14v2,-11,4,-30,16,-29v-2,-19,24,-14,29,-25r5,-1r0,32v-14,9,-5,10,-4,24v2,2,40,18,12,20v1,-6,-10,-2,-14,-3v0,-7,-1,-11,-3,-13v-6,3,-13,90,0,109v0,4,-8,12,0,11v-7,7,7,6,11,15v21,10,23,-12,23,-44v0,-31,15,-115,-17,-115v-5,-4,-4,-25,-4,-36v12,3,47,1,35,19v5,-1,4,2,4,6v-4,-2,-17,-4,-19,0v3,8,18,4,28,5v1,-3,2,-6,5,-3v1,4,-3,6,-3,7xm54,-107v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm51,-102v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-12,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm115,-29v3,0,0,3,0,1r0,-1xm-23,-154v-1,-6,6,-9,9,-5v-2,4,-5,5,-9,5xm54,-70v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm-31,-67v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm84,-189v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm49,-181v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm110,-118v1,2,2,4,2,0r-2,0xm62,-166v0,-1,-1,-2,-2,-2v-5,5,8,9,2,2xm106,-118v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm58,-31v2,0,3,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm61,-163v0,-1,1,-1,1,-2v0,1,-1,1,-1,2xm67,-242v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","k":{"y":9,"x":11,"w":9,"v":9,"t":11,"b":4,"a":11}},"\u00f2":{"d":"72,-258v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm69,-243v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm44,-260v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm50,-241v2,1,4,-2,2,-2v-1,0,-2,1,-2,2xm78,-159v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm112,-198v11,14,-3,43,5,60r-1,90v12,2,24,-7,27,-4v0,1,-1,2,-3,4r16,0v-11,3,-17,7,-17,10v1,-1,4,5,4,5r-7,0v2,7,8,3,13,3v0,8,-24,3,-28,2r2,-5r-8,0v-17,20,-29,40,-53,29v-1,-7,2,-18,-2,-22v-2,8,5,30,-6,24v-14,4,-22,-13,-40,-24r-4,-133r-5,0v0,-3,5,-9,3,-13r-13,9v0,-8,11,-4,13,-14v2,-11,4,-30,16,-29v-2,-19,24,-14,29,-25r5,-1r0,32v-14,9,-5,10,-4,24v2,2,40,18,12,20v1,-6,-10,-2,-14,-3v0,-7,-1,-11,-3,-13v-6,3,-13,90,0,109v0,4,-8,12,0,11v-7,7,7,6,11,15v21,10,23,-12,23,-44v0,-31,15,-115,-17,-115v-5,-4,-4,-25,-4,-36v12,3,47,1,35,19v5,-1,4,2,4,6v-4,-2,-17,-4,-19,0v3,8,18,4,28,5v1,-3,2,-6,5,-3v1,4,-3,6,-3,7xm54,-107v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm51,-102v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-12,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm115,-29v3,0,0,3,0,1r0,-1xm-23,-154v-1,-6,6,-9,9,-5v-2,4,-5,5,-9,5xm54,-70v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm-31,-67v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm84,-189v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm49,-181v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm110,-118v1,2,2,4,2,0r-2,0xm62,-166v0,-1,-1,-2,-2,-2v-5,5,8,9,2,2xm106,-118v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm58,-31v2,0,3,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm61,-163v0,-1,1,-1,1,-2v0,1,-1,1,-1,2","k":{"y":9,"x":11,"w":9,"v":9,"t":11,"b":4,"a":11}},"\u00f4":{"d":"76,-278v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm89,-262r0,2v-1,-1,-1,-1,0,-2xm85,-262r0,2v-1,-1,-1,-1,0,-2xm96,-246v-1,2,-3,0,-1,0r1,0xm29,-238v7,-7,16,-60,41,-43v2,0,23,40,24,43v-24,8,-21,-25,-33,-31v-8,13,-7,35,-32,31xm61,-283r1,0r-1,0xm78,-159v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm112,-198v11,14,-3,43,5,60r-1,90v12,2,24,-7,27,-4v0,1,-1,2,-3,4r16,0v-11,3,-17,7,-17,10v1,-1,4,5,4,5r-7,0v2,7,8,3,13,3v0,8,-24,3,-28,2r2,-5r-8,0v-17,20,-29,40,-53,29v-1,-7,2,-18,-2,-22v-2,8,5,30,-6,24v-14,4,-22,-13,-40,-24r-4,-133r-5,0v0,-3,5,-9,3,-13r-13,9v0,-8,11,-4,13,-14v2,-11,4,-30,16,-29v-2,-19,24,-14,29,-25r5,-1r0,32v-14,9,-5,10,-4,24v2,2,40,18,12,20v1,-6,-10,-2,-14,-3v0,-7,-1,-11,-3,-13v-6,3,-13,90,0,109v0,4,-8,12,0,11v-7,7,7,6,11,15v21,10,23,-12,23,-44v0,-31,15,-115,-17,-115v-5,-4,-4,-25,-4,-36v12,3,47,1,35,19v5,-1,4,2,4,6v-4,-2,-17,-4,-19,0v3,8,18,4,28,5v1,-3,2,-6,5,-3v1,4,-3,6,-3,7xm54,-107v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm51,-102v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-12,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm115,-29v3,0,0,3,0,1r0,-1xm-23,-154v-1,-6,6,-9,9,-5v-2,4,-5,5,-9,5xm54,-70v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm-31,-67v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm84,-189v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm49,-181v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm110,-118v1,2,2,4,2,0r-2,0xm62,-166v0,-1,-1,-2,-2,-2v-5,5,8,9,2,2xm106,-118v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm58,-31v2,0,3,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm61,-163v0,-1,1,-1,1,-2v0,1,-1,1,-1,2","k":{"y":9,"x":11,"w":9,"v":9,"t":11,"b":4,"a":11}},"\u00f6":{"d":"78,-159v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm112,-198v11,14,-3,43,5,60r-1,90v12,2,24,-7,27,-4v0,1,-1,2,-3,4r16,0v-11,3,-17,7,-17,10v1,-1,4,5,4,5r-7,0v2,7,8,3,13,3v0,8,-24,3,-28,2r2,-5r-8,0v-17,20,-29,40,-53,29v-1,-7,2,-18,-2,-22v-2,8,5,30,-6,24v-14,4,-22,-13,-40,-24r-4,-133r-5,0v0,-3,5,-9,3,-13r-13,9v0,-8,11,-4,13,-14v2,-11,4,-30,16,-29v-2,-19,24,-14,29,-25r5,-1r0,32v-14,9,-5,10,-4,24v2,2,40,18,12,20v1,-6,-10,-2,-14,-3v0,-7,-1,-11,-3,-13v-6,3,-13,90,0,109v0,4,-8,12,0,11v-7,7,7,6,11,15v21,10,23,-12,23,-44v0,-31,15,-115,-17,-115v-5,-4,-4,-25,-4,-36v12,3,47,1,35,19v5,-1,4,2,4,6v-4,-2,-17,-4,-19,0v3,8,18,4,28,5v1,-3,2,-6,5,-3v1,4,-3,6,-3,7xm54,-107v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm51,-102v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-12,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm115,-29v3,0,0,3,0,1r0,-1xm-23,-154v-1,-6,6,-9,9,-5v-2,4,-5,5,-9,5xm54,-70v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm-31,-67v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm84,-189v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm49,-181v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm110,-118v1,2,2,4,2,0r-2,0xm62,-166v0,-1,-1,-2,-2,-2v-5,5,8,9,2,2xm106,-118v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm58,-31v2,0,3,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm61,-163v0,-1,1,-1,1,-2v0,1,-1,1,-1,2xm96,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm53,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm77,-249v2,2,4,0,2,-2xm74,-249v2,2,4,0,2,-2xm35,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm32,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","k":{"y":9,"x":11,"w":9,"v":9,"t":11,"b":4,"a":11}},"\u00f5":{"d":"78,-159v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm112,-198v11,14,-3,43,5,60r-1,90v12,2,24,-7,27,-4v0,1,-1,2,-3,4r16,0v-11,3,-17,7,-17,10v1,-1,4,5,4,5r-7,0v2,7,8,3,13,3v0,8,-24,3,-28,2r2,-5r-8,0v-17,20,-29,40,-53,29v-1,-7,2,-18,-2,-22v-2,8,5,30,-6,24v-14,4,-22,-13,-40,-24r-4,-133r-5,0v0,-3,5,-9,3,-13r-13,9v0,-8,11,-4,13,-14v2,-11,4,-30,16,-29v-2,-19,24,-14,29,-25r5,-1r0,32v-14,9,-5,10,-4,24v2,2,40,18,12,20v1,-6,-10,-2,-14,-3v0,-7,-1,-11,-3,-13v-6,3,-13,90,0,109v0,4,-8,12,0,11v-7,7,7,6,11,15v21,10,23,-12,23,-44v0,-31,15,-115,-17,-115v-5,-4,-4,-25,-4,-36v12,3,47,1,35,19v5,-1,4,2,4,6v-4,-2,-17,-4,-19,0v3,8,18,4,28,5v1,-3,2,-6,5,-3v1,4,-3,6,-3,7xm54,-107v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm51,-102v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm-12,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm115,-29v3,0,0,3,0,1r0,-1xm-23,-154v-1,-6,6,-9,9,-5v-2,4,-5,5,-9,5xm54,-70v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm-31,-67v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm84,-189v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm49,-181v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm110,-118v1,2,2,4,2,0r-2,0xm62,-166v0,-1,-1,-2,-2,-2v-5,5,8,9,2,2xm106,-118v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm58,-31v2,0,3,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm61,-163v0,-1,1,-1,1,-2v0,1,-1,1,-1,2xm95,-273v6,1,9,2,10,8v-5,4,-13,18,-16,23v-34,7,-44,-33,-64,4v-15,-10,6,-41,19,-38v14,3,9,6,33,17v8,-4,8,-1,18,-14xm53,-271r0,-3v-1,1,-1,2,0,3","k":{"y":9,"x":11,"w":9,"v":9,"t":11,"b":4,"a":11}},"\u00fa":{"d":"162,-150v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm167,-148v3,7,-1,12,-9,11v1,-3,4,-7,9,-11xm167,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm160,-135v0,2,1,5,-2,4xm130,-152v-1,1,-2,3,-2,0r2,0xm119,-133v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm86,-229v13,1,18,-1,31,-3v2,19,-3,44,2,60v-3,29,1,55,-2,83v3,16,2,36,-5,46v-4,-2,-1,-12,-6,-12v-9,1,-11,5,-22,1xm58,-152v-1,1,-2,3,-2,0r2,0xm58,-122v-1,1,-2,3,-2,0r2,0xm58,-100v-1,1,-2,3,-2,0r2,0xm117,-39v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm104,-39v-1,1,-2,3,-2,0r2,0xm62,-72v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm47,-65v0,21,1,23,15,34v-1,9,3,23,-2,29v-9,0,-15,0,-22,2v1,-2,3,-3,3,-4v-1,-6,-35,-14,-24,-21v0,-5,-3,-7,-10,-7r0,-11v-18,4,-30,5,-43,4v0,-2,3,-9,7,-20v5,18,39,10,41,-2v4,-20,4,-86,0,-115v-3,8,-5,11,-8,11r0,-21v9,-1,9,-6,6,-13r-13,0v13,-3,16,-7,15,-23r-8,4v3,-17,27,-6,41,-15v10,5,-9,28,9,31v-20,10,-2,66,-9,89v3,15,3,18,0,41v1,1,12,6,7,9v-2,0,-3,-1,-5,-2xm62,-43v-4,-5,-5,-15,-2,-22v9,1,2,15,2,22xm83,-38v-1,6,13,7,14,10v-5,0,-17,-1,-11,4r21,0v-3,13,-27,31,-40,20r0,-27v4,0,21,-27,26,-13v0,6,-4,7,-10,6xm4,-59v1,2,-1,2,-3,2xm-3,-74v7,3,3,13,0,15v-5,-4,-11,2,-13,1v-2,-7,13,-12,13,-16xm-3,-33v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm99,-100v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm12,-179v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm6,-172v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm23,-59v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm30,-52v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm10,-46v3,1,5,-3,2,-4xm-8,-64v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm-14,-41v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm-31,-39v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm72,-244v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":128,"k":{"z":11,"y":4,"x":12,"w":4,"v":5,"s":7,"q":2,"p":4,"o":4,"m":5,"j":5,"g":4,"a":16}},"\u00f9":{"d":"80,-257v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm77,-242v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm52,-259v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm58,-240v2,1,4,-2,2,-2v-1,0,-2,1,-2,2xm162,-150v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm167,-148v3,7,-1,12,-9,11v1,-3,4,-7,9,-11xm167,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm160,-135v0,2,1,5,-2,4xm130,-152v-1,1,-2,3,-2,0r2,0xm119,-133v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm86,-229v13,1,18,-1,31,-3v2,19,-3,44,2,60v-3,29,1,55,-2,83v3,16,2,36,-5,46v-4,-2,-1,-12,-6,-12v-9,1,-11,5,-22,1xm58,-152v-1,1,-2,3,-2,0r2,0xm58,-122v-1,1,-2,3,-2,0r2,0xm58,-100v-1,1,-2,3,-2,0r2,0xm117,-39v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm104,-39v-1,1,-2,3,-2,0r2,0xm62,-72v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm47,-65v0,21,1,23,15,34v-1,9,3,23,-2,29v-9,0,-15,0,-22,2v1,-2,3,-3,3,-4v-1,-6,-35,-14,-24,-21v0,-5,-3,-7,-10,-7r0,-11v-18,4,-30,5,-43,4v0,-2,3,-9,7,-20v5,18,39,10,41,-2v4,-20,4,-86,0,-115v-3,8,-5,11,-8,11r0,-21v9,-1,9,-6,6,-13r-13,0v13,-3,16,-7,15,-23r-8,4v3,-17,27,-6,41,-15v10,5,-9,28,9,31v-20,10,-2,66,-9,89v3,15,3,18,0,41v1,1,12,6,7,9v-2,0,-3,-1,-5,-2xm62,-43v-4,-5,-5,-15,-2,-22v9,1,2,15,2,22xm83,-38v-1,6,13,7,14,10v-5,0,-17,-1,-11,4r21,0v-3,13,-27,31,-40,20r0,-27v4,0,21,-27,26,-13v0,6,-4,7,-10,6xm4,-59v1,2,-1,2,-3,2xm-3,-74v7,3,3,13,0,15v-5,-4,-11,2,-13,1v-2,-7,13,-12,13,-16xm-3,-33v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm99,-100v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm12,-179v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm6,-172v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm23,-59v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm30,-52v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm10,-46v3,1,5,-3,2,-4xm-8,-64v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm-14,-41v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm-31,-39v2,0,1,-3,0,-4v-2,1,-3,3,0,4","w":128,"k":{"z":11,"y":4,"x":12,"w":4,"v":5,"s":7,"q":2,"p":4,"o":4,"m":5,"j":5,"g":4,"a":16}},"\u00fb":{"d":"77,-278v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm90,-262r0,2v-1,-1,-1,-1,0,-2xm86,-262r0,2v-1,-1,-1,-1,0,-2xm97,-246v-1,2,-3,0,-1,0r1,0xm30,-238v7,-7,16,-60,41,-43v2,0,23,40,24,43v-24,8,-21,-25,-33,-31v-8,13,-7,35,-32,31xm62,-283r1,0r-1,0xm162,-150v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm167,-148v3,7,-1,12,-9,11v1,-3,4,-7,9,-11xm167,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm160,-135v0,2,1,5,-2,4xm130,-152v-1,1,-2,3,-2,0r2,0xm119,-133v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm86,-229v13,1,18,-1,31,-3v2,19,-3,44,2,60v-3,29,1,55,-2,83v3,16,2,36,-5,46v-4,-2,-1,-12,-6,-12v-9,1,-11,5,-22,1xm58,-152v-1,1,-2,3,-2,0r2,0xm58,-122v-1,1,-2,3,-2,0r2,0xm58,-100v-1,1,-2,3,-2,0r2,0xm117,-39v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm104,-39v-1,1,-2,3,-2,0r2,0xm62,-72v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm47,-65v0,21,1,23,15,34v-1,9,3,23,-2,29v-9,0,-15,0,-22,2v1,-2,3,-3,3,-4v-1,-6,-35,-14,-24,-21v0,-5,-3,-7,-10,-7r0,-11v-18,4,-30,5,-43,4v0,-2,3,-9,7,-20v5,18,39,10,41,-2v4,-20,4,-86,0,-115v-3,8,-5,11,-8,11r0,-21v9,-1,9,-6,6,-13r-13,0v13,-3,16,-7,15,-23r-8,4v3,-17,27,-6,41,-15v10,5,-9,28,9,31v-20,10,-2,66,-9,89v3,15,3,18,0,41v1,1,12,6,7,9v-2,0,-3,-1,-5,-2xm62,-43v-4,-5,-5,-15,-2,-22v9,1,2,15,2,22xm83,-38v-1,6,13,7,14,10v-5,0,-17,-1,-11,4r21,0v-3,13,-27,31,-40,20r0,-27v4,0,21,-27,26,-13v0,6,-4,7,-10,6xm4,-59v1,2,-1,2,-3,2xm-3,-74v7,3,3,13,0,15v-5,-4,-11,2,-13,1v-2,-7,13,-12,13,-16xm-3,-33v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm99,-100v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm12,-179v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm6,-172v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm23,-59v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm30,-52v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm10,-46v3,1,5,-3,2,-4xm-8,-64v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm-14,-41v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm-31,-39v2,0,1,-3,0,-4v-2,1,-3,3,0,4","w":128,"k":{"z":11,"y":4,"x":12,"w":4,"v":5,"s":7,"q":2,"p":4,"o":4,"m":5,"j":5,"g":4,"a":16}},"\u00fc":{"d":"162,-150v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm167,-148v3,7,-1,12,-9,11v1,-3,4,-7,9,-11xm167,-135v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm160,-135v0,2,1,5,-2,4xm130,-152v-1,1,-2,3,-2,0r2,0xm119,-133v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm86,-229v13,1,18,-1,31,-3v2,19,-3,44,2,60v-3,29,1,55,-2,83v3,16,2,36,-5,46v-4,-2,-1,-12,-6,-12v-9,1,-11,5,-22,1xm58,-152v-1,1,-2,3,-2,0r2,0xm58,-122v-1,1,-2,3,-2,0r2,0xm58,-100v-1,1,-2,3,-2,0r2,0xm117,-39v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm104,-39v-1,1,-2,3,-2,0r2,0xm62,-72v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm47,-65v0,21,1,23,15,34v-1,9,3,23,-2,29v-9,0,-15,0,-22,2v1,-2,3,-3,3,-4v-1,-6,-35,-14,-24,-21v0,-5,-3,-7,-10,-7r0,-11v-18,4,-30,5,-43,4v0,-2,3,-9,7,-20v5,18,39,10,41,-2v4,-20,4,-86,0,-115v-3,8,-5,11,-8,11r0,-21v9,-1,9,-6,6,-13r-13,0v13,-3,16,-7,15,-23r-8,4v3,-17,27,-6,41,-15v10,5,-9,28,9,31v-20,10,-2,66,-9,89v3,15,3,18,0,41v1,1,12,6,7,9v-2,0,-3,-1,-5,-2xm62,-43v-4,-5,-5,-15,-2,-22v9,1,2,15,2,22xm83,-38v-1,6,13,7,14,10v-5,0,-17,-1,-11,4r21,0v-3,13,-27,31,-40,20r0,-27v4,0,21,-27,26,-13v0,6,-4,7,-10,6xm4,-59v1,2,-1,2,-3,2xm-3,-74v7,3,3,13,0,15v-5,-4,-11,2,-13,1v-2,-7,13,-12,13,-16xm-3,-33v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm99,-100v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm12,-179v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm6,-172v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm23,-59v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm30,-52v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm10,-46v3,1,5,-3,2,-4xm-8,-64v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm-14,-41v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm-31,-39v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm99,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm56,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm80,-249v2,2,4,0,2,-2xm77,-249v2,2,4,0,2,-2xm38,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm35,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":128,"k":{"z":11,"y":4,"x":12,"w":4,"v":5,"s":7,"q":2,"p":4,"o":4,"m":5,"j":5,"g":4,"a":16}},"\u2020":{"d":"56,-241v3,8,-3,27,9,26v-8,2,-12,9,-11,20v11,3,33,-8,29,10r3,0v-1,2,-4,6,-3,9v-16,-2,-35,3,-25,16v2,0,5,-1,5,1v-15,6,2,61,-7,81v-5,12,0,19,8,22v-5,0,-8,5,-1,6v-18,3,10,58,-27,51v-3,-50,1,-118,0,-175v0,0,-19,0,-29,-2r0,-19v11,2,19,-5,29,0v5,-8,-3,-18,-2,-46r22,0xm60,-101v2,-4,9,1,4,3v-1,0,-2,-2,-4,-3xm60,-74v8,-2,7,8,1,2v0,-1,-1,-2,-1,-2xm30,-69v4,-1,2,1,1,3xm59,-36v2,-4,9,1,4,3v-1,0,-3,-2,-4,-3xm30,-197v-1,3,3,4,3,1xm40,-30v2,1,5,5,6,1v-1,-1,-5,-3,-6,-1","w":92},"\u00b0":{"d":"31,-240v24,-8,-16,-31,6,-34v16,-2,13,16,21,23v-5,14,-1,42,-22,39v-5,0,-8,-3,-8,-9v4,-7,13,-2,7,-18xm37,-248v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,2,1,3,2,2v1,1,2,0,2,-2xm15,-212v-16,-11,-17,-61,8,-61v13,6,-9,18,1,23v-4,8,1,23,0,36v-2,1,-5,1,-9,2","w":61},"\u00a2":{"d":"79,-89v0,0,2,1,0,1r0,-1xm59,-236v-4,21,9,26,26,27v1,18,21,18,14,35v2,6,-2,20,0,30v-12,1,-17,3,-25,1v-2,-17,-6,-48,-22,-45r0,-10r0,9v-14,11,-22,25,-14,44v-3,5,-2,4,1,10v-9,23,0,40,-3,60v4,1,6,8,0,9v0,4,4,23,11,20v-1,14,15,9,19,10v-9,1,-13,9,-3,11v2,0,6,-4,5,0v1,4,-5,5,-7,9r14,-1v-3,3,-11,7,-1,6v1,5,-4,6,-6,2v-1,-4,-1,-6,-7,-3v0,7,-1,15,-1,23r-13,0v0,-12,2,-29,-10,-22v-6,0,-12,-6,-17,-18r-2,1r0,-8r9,0v-1,-6,-2,-7,-3,-13v-8,9,-16,2,-15,-11v3,-58,-18,-149,36,-156r0,-20r14,0xm86,-68v4,5,20,-2,12,9v-1,4,-6,6,-2,12v0,-7,-6,-4,-8,0v0,1,0,1,1,2v-4,-2,-10,-2,-12,-6v8,10,24,-8,10,-3v-3,-5,-11,-7,-6,-13v3,3,4,-4,9,-3xm98,-47v-2,2,-3,8,-2,2v0,-2,0,-2,2,-2xm92,-45r0,-1r0,1xm94,-44r-1,0r1,0xm87,-30v2,1,-1,4,-2,5xm70,-33v0,-2,4,-4,5,-3xm68,-204v5,-2,4,-10,-2,-9v-3,3,-3,8,2,9xm94,-63v-3,1,-3,3,-3,7v4,1,10,-5,3,-7xm89,-63v-2,-8,-6,-2,-7,2v2,3,2,-3,7,-2xm94,-54r0,0r0,0xm82,-64v1,-1,1,-1,0,-2r0,2xm85,-56v6,2,9,-4,4,-7v0,5,-8,2,-4,7xm36,-75v-4,2,-4,7,0,9r0,-9xm28,-39v5,-3,5,-5,0,-8v-3,2,-3,6,0,8xm33,-36r-6,0r1,1v-6,0,-14,-1,-8,6","w":108},"\u00a7":{"d":"117,-241v-4,0,-5,-3,0,-2r0,2xm83,-271v0,1,-1,3,-1,1xm97,-261v-3,6,16,19,13,33v-2,10,-27,8,-28,9v-4,-5,-16,-23,-25,-24v2,-10,-6,-26,9,-23v8,0,18,1,31,5xm113,-156v0,2,0,4,-3,3xm68,-198v-1,1,-3,1,-4,0v1,-1,1,-1,4,0xm107,-61v11,2,6,17,10,23v-4,3,-5,29,-18,24v-6,0,-6,3,-4,6v-6,7,-27,23,-34,7v0,-5,-1,-12,2,-6v10,1,39,1,21,-7v-12,-2,-20,8,-23,-2v9,-3,23,-10,21,-22v-6,-40,-31,-31,-56,-63v-22,-27,-26,-55,-6,-78v-27,-29,-13,-93,33,-87r0,26v-31,18,13,65,33,67r-3,2v12,1,21,19,24,33v20,12,5,47,-12,52v1,1,15,20,12,25xm53,-27v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm34,-50v-2,14,41,41,19,55v-22,-6,-59,-17,-47,-51v11,-2,21,-4,28,-4xm42,5v-1,0,-2,2,-2,0r2,0xm13,-8r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm113,-120r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm64,-150v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm74,-101v16,-17,6,-25,-10,-44v2,-1,2,-2,1,-4v-6,0,-13,-3,-21,-8v-16,17,14,45,30,56xm113,-44v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm75,5v1,-4,-2,-4,-2,-1v0,1,1,1,2,1xm50,-2v0,-1,-1,-2,-2,-2v-2,0,-1,4,0,4v1,0,2,-1,2,-2xm38,-3v1,1,2,2,2,-1","w":120},"\u2022":{"d":"58,-97v-14,8,-31,18,-49,3r0,-45v19,-3,36,-3,56,-3r-7,3v1,14,-6,33,0,42xm44,-126v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm53,-104v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm44,-106v2,0,2,0,2,-2xm34,-112v2,0,4,0,3,-2xm34,-101v4,0,7,-6,0,-5r0,5xm29,-88v3,-2,3,-4,0,-6v-3,2,-3,4,0,6xm22,-88v3,-2,3,-4,0,-6v-3,2,-3,4,0,6","w":63},"\u00b6":{"d":"67,-193v1,0,2,5,0,5v-3,0,-2,-5,0,-5xm121,-148v2,-22,0,-27,-2,-51v9,-7,-5,-38,23,-27v4,1,8,3,13,3v0,23,5,57,-9,66v2,0,4,0,7,2r0,150v-6,-3,-5,11,-11,3r-18,-5r0,-139xm78,-171v0,2,4,6,0,5r0,-5xm80,-162v2,0,3,5,0,5v-3,0,-2,-5,0,-5xm80,-151v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm82,-11v4,-10,-7,-41,3,-50v-3,-2,-5,-17,-1,-21r0,-139v9,-1,14,-6,25,-7v0,3,0,6,4,5r0,150v-3,2,-4,2,-6,2v13,8,9,46,8,66v-11,3,-33,10,-33,-6xm11,-144v-8,-10,5,-21,-2,-32v0,-11,1,-33,11,-39v-2,-9,7,-3,9,-11v16,-7,30,4,49,3v4,2,3,15,3,22v-9,-2,-10,-3,-18,0v0,-4,-1,-9,-5,-14v-8,8,1,23,-15,30v-6,27,5,64,30,54v9,-1,7,30,5,36v-12,2,-26,-9,-34,-2v-11,0,-43,-32,-33,-47xm2,-179v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm137,-160v0,1,5,2,5,0v-1,-1,-3,-1,-5,0xm149,-140v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm143,-137v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm42,-223v2,1,6,-1,3,-2v-1,0,-2,1,-3,2xm44,-190v1,-1,3,-2,0,-3r0,3xm40,-177v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm111,-89v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm109,-83v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm104,-89v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm38,-151v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm103,-68v-1,-1,-4,-1,-5,0v2,1,4,1,5,0xm11,-153v2,0,3,-4,0,-4v-2,0,-3,4,0,4xm84,-38v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm83,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":161},"\u00df":{"d":"234,-197v-6,-1,-6,-5,0,-4r0,4xm201,-229v-1,-1,-3,-2,0,-2r0,2xm222,-201v12,22,2,30,-21,30v-4,2,-6,-13,-15,-22r-8,8v-2,-16,-5,-22,-1,-42v15,-1,24,4,37,7v1,3,3,10,8,19xm182,-175v-6,-1,-1,-11,2,-10xm186,-147v-4,0,-5,-4,0,-3r0,3xm201,-133v0,3,-4,4,-4,0v0,-2,4,-1,4,0xm239,-90r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm84,-237v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm234,-86v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm124,-175v-14,7,-29,0,-41,7v1,-11,-9,-30,-22,-32v-2,-7,-9,-33,6,-32v8,0,18,2,31,7v-3,7,11,10,12,25v5,-3,5,-5,12,-3v-6,10,-3,16,-11,10v-3,9,9,13,13,7v0,-14,20,-44,46,-41r0,30v-19,15,-7,21,-2,43r12,-2v-16,27,32,22,36,49v0,3,10,8,14,4v0,6,15,13,0,17v3,18,5,37,-2,52v-16,6,-18,28,-34,34v-14,2,-20,-12,-12,-19v-13,-14,32,-26,13,-48v-3,-17,-24,0,-25,-23v-7,1,-1,-6,-2,-11v-1,1,-3,2,-6,3v2,-5,-14,-24,-20,-22v-7,-20,-17,-24,-18,-55xm156,-95v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm91,-160v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm175,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm150,-88v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm146,-90v-2,4,-7,8,-9,3v0,-3,5,-3,9,-3xm70,-152v-2,2,-4,2,-5,0r5,0xm114,-102v0,2,0,4,-2,3xm153,-64v1,16,13,28,22,34v0,13,4,33,-11,26r-5,4v-16,-14,-45,-27,-35,-60v15,-3,25,-4,29,-4xm85,-120v25,19,44,65,22,93v-3,2,-17,5,-11,13v-5,8,-26,26,-33,8v2,-7,-4,-6,0,-11v1,1,1,2,1,4v10,1,40,0,21,-8v-9,0,-15,1,-20,4v-6,-10,21,-27,18,-37v0,-9,-6,-21,-18,-35v2,-2,2,-3,2,-6v-19,3,-60,-44,-57,-63v-5,-41,4,-72,44,-74r0,31v-33,19,10,75,34,78xm131,-15v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm54,-36v2,0,3,3,0,4v-2,-1,-3,-3,0,-4xm36,-63v-2,15,41,48,18,64v-23,-7,-60,-21,-47,-59v11,-3,22,-4,29,-5xm41,1v1,0,1,0,1,1xm14,-14v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm205,-115v3,0,4,-6,0,-5v-2,1,-1,4,0,5xm229,-89v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm177,-90v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm208,-17v-1,-7,-22,-9,-23,0r23,0xm114,-61r0,-4r0,4xm157,-8v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm65,-96v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm78,-1v0,-1,-1,-2,-2,-2v-2,0,-1,4,0,4v1,0,2,-1,2,-2xm50,-5v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm41,-7v1,-1,1,-2,0,-3v-1,1,-1,2,0,3","w":238},"\u00ae":{"d":"121,-217v3,-1,3,3,3,6v-3,1,-3,-3,-3,-6xm139,-195v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm97,-179r0,2r0,-2xm108,-156v-2,0,-3,-3,0,-2r0,2xm89,-4v-8,-21,21,-34,21,-50r0,-93v5,-15,-2,-44,-10,-52v4,-7,-9,-10,-11,-15r0,-21v12,-2,5,4,5,20v4,-4,11,-21,11,-5v6,-2,4,-13,13,-9v-2,13,-21,5,-15,21v4,0,10,-1,8,5v8,-2,15,0,22,-1v9,21,-6,51,6,64v-9,24,-2,69,-4,101v-9,10,-22,45,-46,35xm108,-118v-1,0,-1,-3,0,-4v1,1,1,3,0,4xm67,-160v-1,-1,-3,-2,0,-2r0,2xm10,-208v-1,-1,-2,-6,0,-7v0,2,2,5,0,7xm65,-184v13,-4,30,-3,29,13r2,-3v9,6,6,22,11,35v-2,9,-25,29,-13,38v3,14,7,33,15,45v-4,2,-15,13,-25,6v0,-12,-9,-39,-12,-54v-5,3,-7,-2,-7,-8r0,-12r15,-4v6,-17,5,-38,-15,-40r0,-16xm38,-154v0,1,0,1,-1,1xm37,-150v0,1,-1,1,-2,1xm106,-75r0,1r0,-1xm42,-185v6,-5,7,2,10,6v3,0,7,-1,11,-5r1,35v9,2,13,6,14,10v-6,0,-7,-1,-16,0v1,17,-2,38,3,52v-8,9,8,47,-23,38v0,-28,6,-69,-5,-90v-2,0,-4,2,-3,-2v10,-7,8,-26,8,-44xm33,-54v8,15,19,27,16,53v-67,-20,-40,-119,-40,-193v0,-10,4,-15,12,-15v-10,-20,23,-10,28,-25r0,24v-22,15,-15,63,-16,102v2,1,4,2,1,4r-1,-1v3,22,-1,34,7,42v-2,3,-2,3,-7,9xm114,-189v6,-4,7,-11,0,-14v-4,4,-4,11,0,14xm111,-199v-1,-7,-5,-8,-13,-9v3,8,9,4,13,9xm104,-201v1,2,2,3,2,-1xm110,-195v0,0,1,4,1,2xm133,-124r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm90,-166r0,-2r0,2xm133,-122v-1,3,1,6,2,3v0,-1,-1,-2,-2,-3xm128,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm97,-147r0,-3r0,3xm127,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm25,-206v5,-6,4,-10,0,-18v-2,1,-7,16,0,18xm46,-179r1,-6v-3,1,-4,5,-1,6xm68,-142v2,0,1,-3,0,-3v-1,0,-2,3,0,3xm30,-179v1,-1,1,-2,0,-3v-2,1,-2,2,0,3xm42,-142v2,0,1,-3,0,-3v-1,0,-2,3,0,3xm85,-91v-1,-1,-1,-4,-2,-2xm50,-125v2,0,1,-3,0,-3v-1,0,-2,3,0,3xm68,-105r0,-3r0,3xm62,-111v1,-2,-2,-3,-2,-1v0,1,1,1,2,1xm81,-88r0,-3r0,3xm62,-104v1,-5,-9,-5,-11,-5v-2,5,10,4,11,5xm20,-140v0,0,3,-1,1,-2xm46,-95r0,-3r0,3xm32,-100v3,0,2,-3,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm34,-66v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm25,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm28,-51v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm113,-195v1,1,1,1,0,2v-1,-1,-1,-1,0,-2","w":143},"\u00a9":{"d":"121,-217v3,-1,3,3,3,6v-3,1,-3,-3,-3,-6xm139,-195v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm84,-185v0,0,0,2,-1,2v0,0,0,-2,1,-2xm72,-181v12,2,27,2,28,15v9,1,-1,19,2,29v-24,15,-12,-18,-30,-28r0,-16xm54,-181v1,1,2,3,0,3r0,-3xm89,-4v-8,-20,21,-34,21,-50r0,-93v5,-15,-2,-44,-10,-52v4,-7,-9,-10,-11,-15r0,-21v10,0,5,4,5,20v4,-4,11,-21,11,-5v6,-2,4,-13,13,-9v-2,13,-21,5,-15,21v4,0,10,-1,8,5v8,-2,15,0,22,-1v9,21,-6,51,6,64v-9,23,-2,69,-4,101v-9,10,-22,45,-46,35xm108,-118v-1,0,-1,-3,0,-4v1,1,1,3,0,4xm10,-208v-1,-1,-2,-6,0,-7v0,2,2,5,0,7xm41,-175r0,2r0,-2xm62,-147r0,3r0,-3xm38,-169v2,1,0,8,-4,8xm105,-93r0,2r0,-2xm63,-130v1,0,1,0,1,1xm102,-89v1,-1,5,-1,2,0r-2,0xm100,-92v1,4,-4,5,-5,3v1,-2,2,-3,5,-3xm101,-86v4,0,1,3,0,1r0,-1xm84,-91v11,-1,12,9,18,12v-2,0,-6,-1,-6,1v11,-1,3,8,5,16v-4,9,-9,-3,-14,-5v7,-4,-3,-9,4,-14v-2,1,-4,1,-7,1r0,-11xm70,-181v-2,15,2,24,8,29r-18,0v0,14,3,20,0,31v0,-2,2,-3,4,-3v-8,15,1,38,-4,51v5,4,18,22,7,31v-10,1,-30,-16,-14,-18v1,-5,-11,-1,-11,-6v-4,-30,7,-72,-9,-90r0,48v2,1,4,2,1,4r-1,-1v3,21,-1,34,7,42v-16,15,18,32,9,62v-67,-20,-40,-119,-40,-193v0,-10,4,-15,12,-15v-4,-7,0,-19,13,-15v9,0,14,-4,15,-10r0,24v-13,10,-17,29,-16,54v10,-7,19,-26,37,-25xm84,-76r0,3r0,-3xm87,-71v0,2,-2,1,-3,1v0,-1,2,-1,3,-1xm92,-60r0,2r0,-2xm95,-55v0,2,0,2,-2,2v0,-1,1,-1,2,-2xm88,-54v0,0,2,1,0,1r0,-1xm79,-58v-1,6,10,6,12,9v-5,7,-13,9,-19,4v-3,-11,2,-21,15,-13v-2,2,-4,0,-8,0xm44,-60v1,0,1,0,1,1xm114,-189v6,-4,7,-11,0,-14v-4,4,-4,11,0,14xm111,-199v-1,-7,-5,-8,-13,-9v3,8,9,4,13,9xm104,-201v1,2,2,3,2,-1xm110,-195v0,0,1,4,1,2xm105,-194r0,-2v-1,1,-1,1,0,2xm133,-124r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm133,-122v-1,3,1,6,2,3v0,-1,0,-2,-2,-3xm128,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm127,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm99,-144r0,-3r0,3xm25,-206v4,-9,4,-9,0,-18v-2,1,-7,16,0,18xm69,-156v-1,0,-2,-2,-2,0r2,0xm70,-153r0,-1r0,1xm67,-152r0,-3r0,3xm30,-179v1,-1,1,-2,0,-3v-2,1,-2,2,0,3xm87,-83r0,-2r0,2xm89,-75v1,0,1,-3,0,-3v-1,0,-2,3,0,3xm20,-140v1,0,1,-1,1,-2xm95,-66r0,-2v-2,0,-1,2,0,2xm91,-67r0,-1r0,1xm32,-100v3,0,2,-3,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm85,-48v0,-1,0,-1,-1,-1xm52,-57v1,-2,-2,-3,-2,-1v0,1,1,1,2,1xm34,-66v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm25,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm28,-51v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm113,-195v1,1,1,1,0,2v-1,-1,-1,-1,0,-2","w":143},"\u2122":{"d":"135,-208v1,1,3,2,0,3v-2,-1,-2,-2,0,-3xm91,-212v1,1,3,2,0,3v-1,-1,-1,-2,0,-3xm133,-197r0,76v-8,8,-16,11,-16,-17r0,-57v2,-3,-1,-21,0,-30v0,0,12,1,16,-2r0,30v-10,2,-5,1,0,0xm93,-194v2,-2,4,0,2,2xm97,-190v1,2,-1,2,-3,2v-1,-2,1,-2,3,-2xm95,-187v0,9,1,8,1,21v9,-8,7,-40,14,-59r6,0v1,41,-4,75,-12,102v-3,5,-6,8,-10,8v-1,-15,-10,-36,-11,-52v-7,1,2,-5,-4,-4v-2,18,3,43,-4,56v-6,-1,-17,3,-14,-6v0,-28,1,-63,2,-104v31,-14,20,23,32,38xm5,-226v11,-2,26,3,32,-3v-1,9,17,-3,21,4v1,14,-4,15,-16,14v1,3,-2,4,-2,1v0,-1,0,-1,1,-1r-36,0r0,-15xm43,-190r0,3v-1,0,-2,0,-2,-1v0,-1,1,-2,2,-2xm82,-139v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm43,-176v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm43,-165v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm38,-209r0,60v5,3,-3,22,0,34v-6,-3,-18,4,-17,-5v2,-29,-4,-65,2,-90xm83,-221r0,0r0,0xm72,-222r0,0r0,0xm69,-223r0,0r0,0xm71,-210r-1,0r1,0xm65,-215r0,1r0,-1xm111,-159v-2,0,-1,4,0,4r0,-4xm65,-199r-1,0r1,0xm66,-196r0,0r0,0xm81,-172v-1,-5,-5,-8,-2,0r2,0xm66,-188r0,0r0,0xm22,-225r0,0r0,0xm20,-225v1,-2,-2,0,0,0r0,0xm14,-225r0,0r0,0xm95,-127r0,0r0,0xm77,-127r0,0r0,0xm73,-117r0,0r0,0xm25,-117r0,0r0,0","w":138},"\u00b4":{"d":"26,-239v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":50},"\u00a8":{"d":"79,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm36,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm60,-249v2,2,4,0,2,-2xm57,-249v2,2,4,0,2,-2xm18,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm15,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":88},"\u00c6":{"d":"181,-240v0,2,0,4,-3,3v0,-2,0,-4,3,-3xm132,-231v12,-4,27,4,40,-3v-3,13,2,17,-5,32r-56,3v0,-14,1,-26,3,-34v2,8,20,-3,18,2xm114,-195v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm112,-166v2,1,3,3,0,4v-2,-1,-3,-3,0,-4xm114,-155v1,1,1,3,0,4v-2,0,-1,-4,0,-4xm112,-148v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm114,-138v13,-2,24,6,34,0v11,2,7,31,-2,34v-14,-7,-34,9,-35,-11v0,-11,1,-19,3,-23xm107,-171r-1,170v-7,1,-15,-2,-25,-1r0,-226v6,-1,14,-2,26,-3v-1,17,2,36,-1,51v-7,0,-3,8,-3,12xm112,-95v2,0,3,3,0,4v-2,-1,-3,-3,0,-4xm112,-78v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm114,-58v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2v1,0,2,1,2,2xm114,-56v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm75,-91v0,3,-3,7,-2,2xm75,-82v4,16,13,19,4,29v-11,2,-29,-7,-30,7r8,0v-19,4,-7,63,-42,44v-2,1,-5,1,-9,2v8,-78,41,-161,59,-234v22,2,2,60,8,69v-2,7,-12,37,-12,47v5,-1,4,-1,8,2v-15,1,-13,26,-11,34r17,0xm172,-36v-6,4,0,9,0,14r-7,22v-18,2,-38,-3,-52,-1r1,1v-4,-4,-2,-26,0,-36v9,8,35,-7,48,3xm99,-182v0,-3,-8,-8,-2,-2xm90,-175v2,0,1,-3,0,-4v-2,0,-3,4,0,4xm121,-133v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm92,-155v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm139,-109v0,2,3,0,1,0r-1,0xm96,-146v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm96,-138v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm90,-144v-2,1,-8,-2,-7,2v2,0,5,0,7,-2xm62,-130v1,-2,2,-3,0,-5v-3,1,-2,4,0,5xm145,-32v2,0,3,-2,0,-2v-3,0,-1,2,0,2xm135,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm159,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm132,-26v1,0,1,-1,1,-2xm147,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm143,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm32,-1v3,0,4,-3,1,-4v-1,1,-3,3,-1,4xm98,-186r-1,2v0,-1,0,-2,1,-2","w":181},"\u00d8":{"d":"114,-195v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm45,-182v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm75,-107v4,0,4,4,1,4v-1,0,-5,-4,-1,-4xm38,-95v14,-31,21,-68,38,-95v-4,-10,-6,-13,-15,-12v2,-5,-5,-20,-2,-33v10,-1,16,1,13,11v2,-4,6,-15,9,-2v2,-9,20,-7,34,-7v-1,9,-11,22,-1,27v-12,1,3,23,0,31v2,10,-13,30,0,35v-6,28,0,68,-2,100v-10,12,-25,49,-53,35v-8,-21,21,-36,21,-51r0,-77v-4,25,-23,47,-25,69v12,4,-8,6,2,10v-11,3,-13,15,-3,25r0,29v-18,-9,-24,-6,-48,-3v-1,-11,4,-12,8,-25v-15,-42,-3,-109,-7,-163v0,-13,4,-19,12,-19v-3,-23,24,-7,29,-25v2,0,4,-1,6,-1r0,30v-25,16,-13,68,-16,111xm65,-78v3,-1,5,4,1,4v-2,0,-3,0,-3,-2v0,-1,0,-2,2,-2xm50,-42v5,0,5,4,1,4v-1,0,-5,-4,-1,-4xm82,-215v-4,1,-5,6,-2,9v1,-3,1,-6,2,-9xm78,-202r0,0r0,0xm107,-138v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm25,-215v-1,1,-2,6,0,7v0,-2,2,-5,0,-7xm109,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm110,-118v0,-4,-4,-5,-3,0r3,0xm103,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm102,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm83,-122v-1,0,-2,4,0,4v1,-1,1,-3,0,-4xm37,-142v0,1,-2,2,0,2r0,-2","w":118},"\u00b1":{"d":"86,-134v10,26,-39,-1,-32,32v3,15,-8,14,-18,16v-1,-11,2,-26,-2,-34v-14,-3,-38,11,-30,-13v1,-2,26,2,32,-4v1,-14,1,-24,1,-29v9,1,15,-2,21,-3v-4,3,-4,3,0,6v-7,6,-5,14,-4,23v-1,-1,-1,-3,-1,0v-1,5,7,7,13,6v2,-2,12,1,20,0xm84,-48v-29,-2,-48,5,-75,0r0,-19v10,2,20,-5,28,0v3,-3,3,-5,4,0r43,0v2,4,3,14,0,19xm53,-116v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm31,-67v1,1,3,1,3,-1v-1,-1,-3,-1,-3,1","w":92},"\u00a5":{"d":"122,-220v-24,44,-20,60,-41,116v-4,-7,-9,-22,-16,-44v5,-18,11,-46,20,-82r36,0v2,2,-10,12,1,10xm63,-179v2,1,3,3,0,4v-2,0,-1,-4,0,-4xm102,-90v-2,3,-4,8,-4,10r-17,0r0,12v9,1,21,-5,18,9r3,0v-2,3,-4,8,-4,10r-19,0v1,13,-3,31,2,40v-10,8,-7,8,-20,9v3,-1,11,-5,4,-5v-10,0,-17,7,-22,3v3,-11,5,-32,2,-46v-4,3,-15,-1,-22,-1r0,-19v10,2,15,-4,23,-2v4,-13,-12,-7,-23,-10r0,-19v10,2,15,-4,22,-2r-12,-35v-18,-53,-27,-85,-27,-94r32,-3v0,9,4,13,8,13v0,11,5,46,13,43v-3,8,0,14,3,18r-3,0v0,18,13,43,18,60v9,2,25,-6,22,9r3,0xm90,-33v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm84,-18v2,-2,3,0,1,1xm25,-232r-3,0v0,2,1,4,2,4v1,0,2,-2,1,-4xm44,-163v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm37,-166v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm30,-159v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm48,-101r1,1xm46,-100r0,1r0,-1xm48,-70r1,1xm46,-69r0,0r0,0","w":126},"\u00b5":{"d":"124,-155v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm113,-233v1,25,-2,58,2,71v-7,33,8,85,-7,111v-8,-6,-29,8,-29,-15r3,-164v16,-1,15,-2,31,-3xm50,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm50,-124v0,0,1,7,-1,3v0,-1,0,-3,1,-3xm108,-44v-1,-1,-3,-2,0,-2r0,2xm113,-40v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm50,-102v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm97,-40v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm44,-53v-8,10,1,15,13,27r0,25v-11,2,-24,-12,-22,6v1,9,2,22,0,30v-4,1,-34,11,-26,-8r-1,-256v20,2,29,-9,36,-1v-5,4,-7,23,3,26r-7,0v1,9,-4,25,4,27v-11,6,4,35,-5,46v3,15,0,22,3,34v-1,0,-2,-1,-2,-3v-1,12,2,30,0,36v1,-2,4,0,5,1v0,1,0,3,-1,3v-2,-1,-5,-5,-5,1v0,5,2,7,5,6xm93,-29v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm46,-66v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm62,-29v4,-1,21,-29,26,-14v3,8,-9,5,-13,9v-1,3,12,1,13,8v-5,-1,-13,2,-6,4r20,0v-1,12,-25,28,-40,20r0,-27xm39,2v2,-4,9,1,4,3v-1,0,-3,-2,-4,-3xm90,-221v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm17,-217v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm13,-220v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm101,-104v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm95,-100v2,-1,2,-3,0,-4v-2,1,-2,3,0,4xm112,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm9,-123r0,-1r0,1xm84,-44v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm24,11v2,-2,0,-4,-3,-4v-1,0,-1,1,-1,2v1,1,3,2,4,2","w":123},"\u03bc":{"d":"124,-155v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm113,-233v1,25,-2,58,2,71v-7,33,8,85,-7,111v-8,-6,-29,8,-29,-15r3,-164v16,-1,15,-2,31,-3xm50,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm50,-124v0,0,1,7,-1,3v0,-1,0,-3,1,-3xm108,-44v-1,-1,-3,-2,0,-2r0,2xm113,-40v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm50,-102v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm97,-40v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm44,-53v-8,10,1,15,13,27r0,25v-11,2,-24,-12,-22,6v1,9,2,22,0,30v-4,1,-34,11,-26,-8r-1,-256v20,2,29,-9,36,-1v-5,4,-7,23,3,26r-7,0v1,9,-4,25,4,27v-11,6,4,35,-5,46v3,15,0,22,3,34v-1,0,-2,-1,-2,-3v-1,12,2,30,0,36v1,-2,4,0,5,1v0,1,0,3,-1,3v-2,-1,-5,-5,-5,1v0,5,2,7,5,6xm93,-29v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm46,-66v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm62,-29v4,-1,21,-29,26,-14v3,8,-9,5,-13,9v-1,3,12,1,13,8v-5,-1,-13,2,-6,4r20,0v-1,12,-25,28,-40,20r0,-27xm39,2v2,-4,9,1,4,3v-1,0,-3,-2,-4,-3xm90,-221v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm17,-217v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm13,-220v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm101,-104v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm95,-100v2,-1,2,-3,0,-4v-2,1,-2,3,0,4xm112,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm9,-123r0,-1r0,1xm84,-44v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm24,11v2,-2,0,-4,-3,-4v-1,0,-1,1,-1,2v1,1,3,2,4,2","w":123},"\u00aa":{"d":"52,-234r0,3r0,-3xm58,-210r0,3r0,-3xm41,-172r0,2r0,-2xm69,-145r0,3r0,-3xm56,-94v0,-11,-4,-39,-8,-29v-6,-1,-27,1,-14,4v-11,3,-6,39,-25,26v-1,0,-3,1,-5,2r23,-139v13,-3,7,33,11,40v1,6,-6,24,-5,29v2,-1,4,-2,5,1v-7,1,-10,16,-2,17v-2,0,-2,1,-1,2v12,-4,11,10,15,11v3,-21,-14,-49,-5,-64v0,-1,-1,-1,-4,-1v-3,-12,-10,-30,-1,-36v3,2,8,1,12,1v2,6,2,13,8,16r-4,0v2,11,-1,30,12,31v-12,8,2,26,0,41v4,14,2,35,12,43v-4,5,-14,6,-24,5xm73,-127r-1,0r1,0xm45,-146v0,1,-1,4,-1,1v0,0,0,-1,1,-1xm38,-229r0,-2r0,2xm46,-184v1,0,2,2,2,0r-2,0xm46,-172r0,-3r0,3xm62,-154r0,-3r0,3xm49,-157v2,0,1,-2,0,-2r0,2xm65,-138r0,-3r0,3xm33,-168v2,-1,0,-5,-1,-2v0,0,0,2,1,2xm65,-133v1,1,1,3,1,0r-1,0xm62,-133v0,-1,0,-1,-1,-1xm19,-92v3,0,2,-4,0,-1r0,1","w":81},"\u00ba":{"d":"58,-222v1,0,1,3,1,4v-2,-2,-2,-1,-1,-4xm68,-209v3,0,-1,5,0,2v0,-1,-1,-2,0,-2xm26,-200v1,0,1,0,1,1xm66,-218v2,33,1,67,1,103v-7,8,-14,27,-32,21v-4,-14,12,-22,13,-31v1,-18,-3,-42,2,-57v-6,-14,-1,-35,-14,-31v3,-2,-3,-11,-1,-19v5,0,9,-1,8,6v3,-8,5,-2,15,-3v-1,8,-4,9,-11,11v0,6,17,7,19,0xm30,-157r0,3r0,-3xm28,-154v1,1,1,2,0,3r0,-3xm33,-215v-17,10,-11,72,-6,85v-10,8,12,19,6,39v-45,-9,-24,-68,-29,-115v0,-8,3,-11,8,-11v-3,-14,14,-4,17,-15v1,0,3,-1,4,-1r0,18xm30,-134r0,3r0,-3xm26,-125r0,3r0,-3xm52,-207v2,-1,0,-3,0,-1r0,1xm47,-213v1,1,1,3,1,0r-1,0xm48,-208v0,-1,0,-1,-1,-1xm65,-174v1,-2,-2,-3,-2,-1v0,1,1,1,2,1xm15,-220r0,3v1,-2,1,-1,0,-3xm65,-166v1,-3,-2,-2,-2,-1v0,1,1,1,2,1xm65,-162v2,0,1,-2,0,-3r0,3xm62,-165r-1,0r1,0xm61,-161v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm50,-165v-1,1,-1,5,0,2r0,-2xm22,-175v0,-1,0,-1,-1,-1xm23,-129r0,-2r0,2","w":71},"\u00e6":{"d":"193,-233v-2,-1,-5,-6,0,-5r0,5xm223,-149v-1,1,-1,3,-2,1xm215,-157v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm120,-235v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm130,-192v-1,1,-2,3,-2,0r2,0xm134,-181v8,1,3,12,-2,15r-2,0v1,-3,2,-8,4,-15xm137,-163v0,3,-1,6,-3,8v1,-3,-2,-9,3,-8xm124,-164v1,-2,2,-3,2,1xm124,-145v1,-1,2,-2,2,1xm151,-87v2,0,5,-1,4,2r-5,0xm144,-83r0,2v-1,-1,-1,-1,0,-2xm138,-87v-19,4,-1,28,-10,39v0,20,36,10,56,11v-2,11,1,25,-6,37v-21,5,-40,-11,-50,0v-1,-8,1,-6,-6,-4v-2,8,-19,-4,-25,2v-11,-10,4,-37,-15,-39r1,-4v-6,-1,-5,11,-10,6v0,0,-8,10,-6,3r-3,2v0,-2,1,-4,1,-7v-15,-4,-21,45,-37,41v-8,-5,-21,6,-20,-5v2,-23,34,-70,18,-93v3,-2,6,-10,8,-24v11,0,16,-7,9,-11v-13,6,-31,2,-19,-11v8,2,15,9,24,5r-8,0v-1,-3,13,-13,12,-13v-3,2,-6,3,-9,-1v0,3,-3,6,-5,6v0,-21,6,-22,18,-12v4,-20,15,-44,22,-70v18,-1,8,24,11,41r3,0v-2,-34,-6,-47,29,-41v-1,10,6,16,1,22v1,0,2,0,4,1r2,-25v19,3,43,1,57,-1v0,14,0,19,-5,34r-54,1v1,-4,-2,-7,-2,-1v0,11,-9,48,10,45v2,1,3,4,0,5v-6,-2,-14,1,-8,12v11,-3,27,0,40,-1v2,6,2,40,-6,35v-12,-1,-24,-9,-33,-1v1,5,13,7,11,16xm141,-61v2,1,1,4,-1,4v-2,-1,-1,-3,1,-4xm135,-54v0,-3,3,0,1,0r-1,0xm30,-120v0,1,-1,2,-3,2xm89,-39v0,16,-4,19,-7,8v0,-6,2,-8,7,-8xm4,-98v2,-6,17,-9,21,-4v-6,0,-8,3,-10,6v-1,-3,-6,-2,-11,-2xm78,-18v1,0,1,0,1,1xm69,-28v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm69,-20v3,0,5,2,3,4v0,0,-1,-2,-3,-4xm122,-160r0,1r0,-1xm126,-124v1,2,1,4,1,0r-1,0xm87,-158v2,-1,3,-4,1,-4v0,1,-1,2,-1,4xm133,-88v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm87,-96v-1,4,5,13,6,4v-5,-7,3,-26,-4,-40v-1,2,-4,1,-3,-1v6,-3,6,-9,-3,-11v-1,3,2,29,-6,18v1,2,9,16,-3,15v0,3,-11,17,-4,22v0,0,2,-1,6,-2v0,1,0,2,1,2v2,-3,7,-6,10,-7xm32,-135v0,-2,0,-2,-2,-2v-1,2,-1,2,2,2xm79,-89v1,1,-4,5,0,4v1,-1,3,-4,1,-5xm80,-56v2,-1,3,-4,1,-5v-2,0,-3,3,-1,5xm58,-48v2,-1,3,-3,1,-4v-2,0,-3,3,-1,4xm90,-131v3,2,-2,8,-2,3v0,-1,1,-2,2,-3xm85,-98v0,2,-5,3,-4,0v0,-1,1,-2,2,-2v1,0,2,1,2,2xm78,-94v2,2,0,3,-2,3v0,-1,1,-3,2,-3","w":190},"\u00f8":{"d":"112,-198v11,14,-3,43,5,60r-1,90v12,2,24,-7,27,-4v0,1,-1,2,-3,4r16,0v-11,3,-17,7,-17,10v1,-1,4,5,4,5r-7,0v2,7,8,3,13,3v0,8,-24,3,-28,2r2,-5r-8,0v-17,20,-29,40,-53,29v-1,-7,2,-18,-2,-22v-2,8,5,30,-6,24v-8,7,-16,-12,-21,-5v-2,0,-18,5,-26,4v-3,-9,8,-15,7,-23r-4,-133r-5,0v0,-3,5,-9,3,-13r-13,9v0,-8,11,-4,13,-14v2,-11,4,-30,16,-29v-2,-19,24,-14,29,-25r5,-1r0,32v-14,9,-5,10,-4,24v0,1,4,4,13,8v-4,-15,22,-23,-1,-28v-5,-4,-4,-25,-4,-36v5,0,14,2,26,5v1,-2,1,-4,1,-6r27,0v-1,8,-11,23,0,27v-3,-1,0,7,-4,8xm-12,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm115,-29v3,0,0,3,0,1r0,-1xm-23,-154v-1,-6,6,-9,9,-5v-2,4,-5,5,-9,5xm-31,-67v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm111,-205v-1,1,-5,3,-1,3xm49,-181v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm110,-118v1,2,2,4,2,0r-2,0xm62,-166v0,-1,-1,-2,-2,-2v-5,5,8,9,2,2xm106,-118v2,-1,1,-3,0,-4v-2,0,-3,3,0,4xm63,-159r-11,0v0,-7,-1,-11,-3,-13v-5,7,-7,30,-7,71xm60,-37v21,11,22,-12,23,-44v0,-16,1,-37,1,-62v-5,29,-20,52,-28,79v12,2,-7,8,3,10v-13,3,-8,12,1,17xm58,-31v2,0,3,-4,0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm61,-163v0,-1,1,-1,1,-2v0,1,-1,1,-1,2xm76,-107v4,0,4,4,1,4v-1,0,-5,-4,-1,-4xm66,-78v3,-1,5,4,2,4v-3,1,-6,-3,-2,-4"},"\u00bf":{"d":"13,1v0,-2,0,-2,2,-2v0,2,0,2,-2,2xm28,1v-14,-9,-34,-31,-21,-53v-2,-2,-5,-3,-5,-7v17,-17,41,-52,36,-84r-4,-2v7,-15,12,-7,23,-11v2,8,12,10,5,21v1,45,-21,63,-30,93v0,3,9,18,13,17v7,3,20,-22,24,-21v14,0,21,4,21,12v3,7,-28,18,-7,16v-15,17,-21,18,-55,19xm24,-185v1,-2,7,-1,5,0r-5,0xm43,-221v8,1,18,4,23,-1v-1,8,-1,20,-2,35v-10,0,-23,4,-30,0r0,-30v7,1,22,-1,9,-4xm47,-12v-2,0,-3,3,0,4v2,-1,3,-3,0,-4xm67,-21v-7,0,-4,9,-5,15v3,-4,5,-9,5,-15xm79,-33v-2,0,-3,4,0,4v2,0,1,-4,0,-4xm45,-156v-2,0,-3,3,0,4v2,-1,1,-3,0,-4","w":92},"\u00a1":{"d":"3,-1v0,-2,0,-2,2,-2v0,2,0,2,-2,2xm12,-1v0,-1,1,-2,2,-2v2,0,1,4,0,4v-1,0,-2,-1,-2,-2xm12,-81v0,-2,0,-2,2,-2v0,2,0,2,-2,2xm11,-20v0,-28,10,-49,3,-72v8,-14,-1,-34,6,-47v-7,-11,7,-21,16,-18v1,1,2,3,5,6v-1,48,7,104,2,148v-9,0,-37,3,-32,-17xm9,-120v0,3,-3,0,-1,0r1,0xm11,-187v4,-18,-5,-31,15,-36r-2,1v3,6,13,3,19,1r0,32v-15,2,-22,2,-32,2xm37,-223v0,1,-4,2,-4,0v1,-1,3,-1,4,0xm43,-43v-1,1,-1,1,0,2v1,-1,1,-1,0,-2xm31,-158v-3,1,-2,4,0,5v1,-1,2,-4,0,-5xm39,-151v-2,0,-3,3,0,4v2,-1,1,-3,0,-4xm35,-158v-3,1,-2,4,0,5v1,-1,2,-4,0,-5","w":48},"\u00ac":{"d":"138,-57v4,-1,8,3,4,4v-1,0,-5,-1,-4,-4xm108,-92v-37,-2,-69,3,-102,1r0,-27r131,0v0,5,6,16,6,20v-1,1,-3,-3,-3,-1v-2,4,-8,10,-1,12v-1,-1,0,-1,2,-1v3,0,8,4,1,4v-6,0,-5,5,0,6v-16,5,2,37,-32,30v-5,-11,-1,-27,-2,-44xm119,-50v1,2,7,-1,2,-1v-1,0,-2,0,-2,1xm29,-116v2,-2,2,-4,-1,-3","w":144},"\u0192":{"d":"41,-217v1,4,-1,8,-3,4xm23,-195v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm59,-211v-8,-6,-18,-2,-18,-17v6,-1,14,-4,16,2v0,-4,2,-9,5,-6v1,3,1,7,3,8v-3,-11,4,-12,14,-11v2,13,-4,28,-3,33v-18,-6,-13,26,-22,51v4,2,3,8,3,14v20,-6,28,10,20,26r-20,0r-1,116v2,16,-10,16,-11,23v0,17,-28,2,-29,21r-7,0r0,-29v28,-18,12,-84,16,-129r-19,-2r0,-26v41,4,7,-43,22,-68r0,-6v1,12,12,3,22,7v6,0,9,-3,9,-7xm57,-199v1,-1,4,-4,0,-3r0,3xm58,-194v2,-1,0,-1,-1,-2xm50,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm54,-118v1,0,1,-3,0,-4v-1,1,-1,3,0,4xm30,-136v0,-2,2,-5,0,-6v-3,1,-2,4,0,6xm34,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm30,-124r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm34,-118v1,2,2,3,2,-1xm27,-118v3,1,3,-1,3,-4v-2,1,-3,2,-3,4xm32,-35v0,3,3,0,1,0r-1,0xm24,-5v2,-1,2,-1,0,-2r0,2xm44,25v1,-1,1,-2,0,-3v-1,1,0,2,0,3xm29,-139v1,0,3,0,1,1","w":87},"\u00ab":{"d":"57,-112v7,23,57,34,44,64v-11,-1,-44,-37,-57,-49v-1,-1,-2,-8,-2,-21v23,-20,31,-34,60,-55v8,33,-27,40,-45,61xm17,-112v7,23,58,33,45,64v-11,-1,-44,-37,-57,-49v-1,-5,-6,-26,7,-31v19,-16,25,-27,50,-45v9,33,-29,42,-45,61xm87,-56r0,2r0,-2xm47,-56v2,1,-1,3,0,1v0,0,-1,-1,0,-1xm66,-127v2,-1,1,-3,0,-4r0,4xm69,-124r0,-4r0,4xm65,-124v0,-1,2,-2,0,-2r0,2xm63,-124r0,-3r0,3xm66,-121r0,-3r0,3xm58,-126v-2,-1,-2,1,-1,1v0,0,1,0,1,-1xm87,-82v-1,2,1,5,1,1xm47,-119r0,-3r0,3xm63,-100v0,-1,-1,-3,-1,-1xm54,-107r0,-4r0,4xm45,-119v0,1,-2,3,0,4r0,-4xm102,-59r0,-3r0,3xm47,-112r0,-3r0,3xm50,-107r0,-4r0,4xm27,-127v2,-1,1,-3,0,-4v-1,0,-1,4,0,4xm29,-124r0,-4r0,4xm43,-110v0,2,1,2,1,0r0,-2v0,0,-1,1,-1,2xm25,-124v0,-1,2,-2,0,-2r0,2xm45,-109v-1,1,-2,2,-2,4xm24,-124r0,-3r0,3xm26,-121r0,-3r0,3xm44,-102r0,-3r0,3xm19,-126v-2,-1,-2,1,-1,1v0,0,1,0,1,-1xm48,-79v2,-1,0,-3,-1,-3v0,1,0,3,1,3xm7,-119r0,-3r0,3xm23,-100r0,-2v-1,1,-1,1,0,2xm14,-107r0,-4r0,4xm5,-119r0,4r0,-4xm61,-60v2,3,2,-2,2,-2v-2,0,-2,0,-2,2xm7,-112r0,-3r0,3xm10,-107r0,-4r0,4xm4,-108v0,-1,2,-3,0,-4r0,4xm4,-105r0,-2r0,2xm4,-102v2,0,1,-2,1,-3v-2,0,-1,2,-1,3","w":107},"\u00bb":{"d":"86,-136r0,-3v2,0,1,3,0,3xm69,-151v9,12,27,23,43,34v-5,9,1,16,-8,26v-7,-4,-36,28,-57,42r3,-23v14,-13,33,-22,45,-37v-3,1,-15,-17,-35,-23v2,-2,-8,-13,-11,-12r0,-20v5,-1,18,17,24,11v-1,0,-2,1,-4,2xm41,-136r0,-3v2,0,1,3,0,3xm24,-151v10,12,26,23,44,34v-6,8,0,16,-9,26v-7,-4,-36,28,-57,42r3,-23v14,-13,33,-22,45,-37v-3,1,-15,-17,-35,-23v2,-2,-8,-13,-11,-12r0,-20v5,-1,18,17,24,11v-1,0,-2,1,-4,2xm110,-114r0,-3v-1,0,-2,3,0,3xm65,-114r0,-3v-1,0,-2,3,0,3","w":114},"\u2026":{"d":"120,-26v-8,11,1,36,-26,23r0,-21v9,-2,16,-2,26,-2xm78,-26v-10,8,2,37,-26,23r0,-21v9,-2,16,-2,26,-2xm36,-26v-9,8,1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm103,0v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm100,0v1,-1,1,-2,0,-3v-2,1,-2,2,0,3xm61,0v1,-1,1,-2,0,-3v-2,1,-2,2,0,3xm57,0v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm18,0v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm15,0v1,-1,3,-2,0,-3v-1,1,-1,2,0,3"},"\u00a0":{"w":61},"\u00c0":{"d":"86,-237v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm97,-197v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm69,-135v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-89v1,2,2,3,0,5v-2,-2,-1,-3,0,-5xm62,-166v8,8,-9,39,-6,49v5,-1,4,-1,8,2v-11,2,-17,26,-5,29v-2,1,-2,2,-1,4r17,0v2,5,7,28,9,14v3,-31,-24,-82,-9,-103v0,-2,-2,-3,-6,-2v-4,-21,-20,-50,-3,-60v3,5,13,2,20,3v1,5,8,12,7,22r8,4r-8,0v2,15,3,31,6,47r14,4v-12,-1,-13,18,-2,22v-3,30,2,62,13,90v-6,8,0,27,9,28v-4,0,-7,2,-7,8r-33,0v1,-16,-7,-43,-9,-55v-2,15,-32,-2,-35,14r8,0v-19,4,-7,63,-42,44v-2,1,-5,1,-9,2v0,-6,5,-33,9,-56r31,-175v17,-3,15,53,16,65xm121,-58v0,-1,-2,-2,0,-2r0,2xm75,-91v0,3,-3,7,-2,2xm64,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm77,-155v1,1,2,3,2,0r-2,0xm77,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-104v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm82,-109v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm108,-78v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm108,-69v1,1,4,5,3,0r-3,0xm102,-70v3,0,0,-3,0,-1r0,1xm32,-1v3,0,4,-3,1,-4v-1,1,-3,3,-1,4xm81,-257v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm78,-242v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm53,-259v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm59,-240v2,1,4,-2,2,-2v-1,0,-2,1,-2,2","w":136,"k":{"y":42,"x":4,"w":35,"v":42,"u":12,"t":39,"s":11,"r":5,"q":14,"p":7,"o":16,"n":9,"m":9,"l":7,"k":5,"i":5,"g":12,"f":5,"e":7,"d":11,"c":14,"b":5,"a":9,"Y":37,"X":4,"W":28,"V":33,"U":9,"T":35,"S":4,"Q":7,"O":9,"L":4,"J":4,"I":4,"H":4,"G":7,"F":2,"E":4,"C":9,"B":7,"A":4}},"\u00c3":{"d":"86,-237v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm97,-197v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm69,-135v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-89v1,2,2,3,0,5v-2,-2,-1,-3,0,-5xm62,-166v8,8,-9,39,-6,49v5,-1,4,-1,8,2v-11,2,-17,26,-5,29v-2,1,-2,2,-1,4r17,0v2,5,7,28,9,14v3,-31,-24,-82,-9,-103v0,-2,-2,-3,-6,-2v-4,-21,-20,-50,-3,-60v3,5,13,2,20,3v1,5,8,12,7,22r8,4r-8,0v2,15,3,31,6,47r14,4v-12,-1,-13,18,-2,22v-3,30,2,62,13,90v-6,8,0,27,9,28v-4,0,-7,2,-7,8r-33,0v1,-16,-7,-43,-9,-55v-2,15,-32,-2,-35,14r8,0v-19,4,-7,63,-42,44v-2,1,-5,1,-9,2v0,-6,5,-33,9,-56r31,-175v17,-3,15,53,16,65xm121,-58v0,-1,-2,-2,0,-2r0,2xm75,-91v0,3,-3,7,-2,2xm64,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm77,-155v1,1,2,3,2,0r-2,0xm77,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-104v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm82,-109v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm108,-78v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm108,-69v1,1,4,5,3,0r-3,0xm102,-70v3,0,0,-3,0,-1r0,1xm32,-1v3,0,4,-3,1,-4v-1,1,-3,3,-1,4xm99,-274v6,1,9,2,10,8v-5,4,-13,18,-16,23v-34,7,-44,-33,-64,4v-15,-10,6,-41,19,-38v14,3,9,6,33,17v8,-4,8,-1,18,-14xm57,-272r0,-3v-1,1,-1,2,0,3","w":136,"k":{"y":42,"x":4,"w":35,"v":42,"u":12,"t":39,"s":11,"r":5,"q":14,"p":7,"o":16,"n":9,"m":9,"l":7,"k":5,"i":5,"g":12,"f":5,"e":7,"d":11,"c":14,"b":5,"a":9,"Y":37,"X":4,"W":28,"V":33,"U":9,"T":35,"S":4,"Q":7,"O":9,"L":4,"J":4,"I":4,"H":4,"G":7,"F":2,"E":4,"C":9,"B":7,"A":4}},"\u00d5":{"d":"98,-211v-2,1,-2,-4,-2,-6v2,1,4,4,2,6xm114,-195v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm45,-182v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm109,-211v2,21,7,45,0,65v-1,4,8,5,3,8r0,98v-10,12,-25,49,-53,35v-8,-21,21,-36,21,-51r0,-92r3,-3v-7,-26,-3,-57,-22,-51v2,-5,-5,-20,-2,-33v10,-1,16,1,13,11v2,-4,6,-15,9,-2v1,-7,9,-2,15,-2v0,1,-5,11,-4,15v-4,-3,-13,-3,-14,2v1,9,29,11,31,0xm50,-109v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm49,-102v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm45,-64v-15,7,6,27,9,35r0,29v-74,-15,-47,-114,-47,-191v0,-13,4,-19,12,-19v-3,-23,24,-7,29,-25v2,0,4,-1,6,-1r0,30v-27,14,-18,113,-9,142xm50,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm43,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm87,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm78,-202v1,1,4,5,3,0r-3,0xm79,-194v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm107,-138v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm25,-215v-1,1,-2,6,0,7v0,-2,2,-5,0,-7xm109,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm110,-118v0,-4,-4,-5,-3,0r3,0xm103,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm102,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm83,-122v-1,0,-2,4,0,4v1,-1,1,-3,0,-4xm37,-142v0,1,-2,2,0,2r0,-2xm40,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm92,-274v6,1,9,2,10,8v-5,4,-13,18,-16,23v-34,7,-44,-33,-64,4v-15,-10,6,-41,19,-38v14,3,9,6,33,17v8,-4,8,-1,18,-14xm50,-272r0,-3v-1,1,-1,2,0,3","w":118,"k":{"y":5,"v":4,"Y":5,"X":11,"W":4,"V":5,"J":4,"A":5}},"\u0152":{"d":"181,-240v0,2,0,4,-3,3v0,-2,0,-4,3,-3xm132,-231v12,-4,27,4,40,-3v-3,13,2,17,-5,32r-56,3v0,-14,1,-26,3,-34v2,8,20,-3,18,2xm114,-195v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm114,-155v1,1,1,3,0,4v-2,0,-1,-4,0,-4xm112,-148v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm45,-182v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm114,-138v13,-2,24,6,34,0v11,2,7,31,-2,34v-12,0,-20,-6,-31,0v-2,-1,-3,-3,-3,-6v2,39,-2,71,-6,109v-7,1,-15,-2,-25,-1r0,-3v-9,5,-11,3,-22,0v-8,-21,21,-36,21,-51v0,-43,15,-140,-19,-146v2,-5,-5,-20,-2,-33v10,-1,16,1,13,11v3,-3,5,-15,9,-4v7,-4,14,1,26,-3r0,25v2,-3,2,-6,2,1v5,18,5,44,0,59v4,5,4,9,3,21v0,-6,1,-10,2,-13xm114,-56v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm172,-36v-6,4,0,9,0,14r-7,22v-18,2,-38,-3,-52,-1r1,1v-4,-4,-2,-26,0,-36v9,8,35,-7,48,3xm50,-109v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm49,-102v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm45,-64v-15,7,6,27,9,35r0,29v-74,-15,-47,-114,-47,-191v0,-13,4,-19,12,-19v-3,-23,24,-7,29,-25v2,0,4,-1,6,-1r0,30v-27,14,-18,113,-9,142xm50,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm43,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm81,-215v-3,2,-4,7,0,10r0,-10xm78,-202v1,1,4,5,3,0r-3,0xm79,-194v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm121,-133v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm139,-109v0,2,3,0,1,0r-1,0xm107,-138v2,0,3,-4,0,-4r0,4xm25,-215v-1,1,-2,6,0,7v0,-2,2,-5,0,-7xm109,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm110,-118v0,-4,-4,-5,-3,0r3,0xm145,-32v2,0,3,-2,0,-2v-3,0,-1,2,0,2xm37,-142v0,1,-2,2,0,2r0,-2xm135,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm159,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm132,-26v1,0,1,-1,1,-2xm147,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm143,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm40,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2","w":177},"\u0153":{"d":"185,-233v-2,-1,-5,-6,0,-5r0,5xm214,-149v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm119,-231v15,3,44,1,58,-1v0,14,0,19,-5,34r-55,1xm206,-157v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm121,-192v-1,1,-2,3,-2,0r2,0xm126,-181v7,2,2,12,-2,15r-3,0v1,-3,3,-8,5,-15xm129,-163v0,3,-1,6,-3,8v1,-3,-2,-9,3,-8xm126,-153v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm119,-155v2,1,2,3,0,5r0,-5xm117,-146v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm71,-179v3,1,1,6,-1,3v0,-1,0,-2,1,-3xm159,-123v2,38,-21,10,-41,19r0,-20v-3,5,0,17,-2,29v0,-2,1,-3,1,-3v0,10,2,32,0,39v-1,-1,-1,-5,-1,-13r0,24v12,2,24,-7,27,-4v0,1,-1,2,-3,4r16,0v-11,3,-17,7,-17,10v8,0,28,4,37,1v-2,9,0,30,-7,37v-21,5,-40,-11,-50,0v-2,-9,2,-34,-5,-31v1,17,2,40,-16,26v-10,3,-27,7,-36,1r0,-21v-7,3,5,30,-8,23v-14,4,-22,-13,-40,-24r-4,-133r-5,0v0,-3,5,-9,3,-13r-13,9v0,-8,11,-4,13,-14v2,-11,4,-30,16,-29v-2,-19,24,-14,29,-25r5,-1r0,32v-7,5,-14,13,-4,15r0,7v4,-4,9,-6,14,-6v0,4,-12,13,-2,15v8,6,14,-3,14,-12v0,-14,-13,-8,-18,-24r0,-27v7,2,41,6,51,3v-1,28,5,43,3,64v1,-2,1,0,2,1v-9,8,0,20,-2,30v8,-7,28,-1,42,-3v1,1,1,6,1,14xm121,-54v-1,1,-2,3,-2,0r2,0xm-12,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm115,-29v3,0,0,3,0,1r0,-1xm-23,-154v-1,-6,6,-9,9,-5v-2,4,-5,5,-9,5xm-31,-67v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm86,-202r0,-7v-7,0,-2,5,0,7xm84,-189v2,-1,0,-3,0,-5v-3,0,-2,5,0,5xm81,-162v-3,0,-4,2,-5,5v1,-3,5,0,5,-5xm49,-181v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm61,-163v2,0,4,-2,1,-3xm61,-163v1,-2,2,-5,-1,-5v-1,1,-2,6,1,5xm47,-159v6,-1,6,-10,2,-13v-1,2,-6,11,-2,13xm68,-65v-1,-10,5,-10,15,-11v-1,-20,5,-45,-3,-59v5,-7,-12,-11,-10,-20v-6,5,-18,-5,-16,5v-3,1,-10,-5,-10,-2v-1,15,-6,73,5,89v0,4,-8,12,0,11v-5,5,2,7,8,11v-1,-8,9,-12,12,-20v6,16,-18,24,-1,28v19,-5,1,-22,10,-39v-2,0,-8,8,-10,7xm82,-57v-1,1,-1,1,0,2r0,-2xm80,-48v1,-1,4,-4,0,-4r0,4xm58,-31v2,0,3,-3,0,-4v-2,0,-2,1,-2,2v0,1,1,2,2,2xm78,-87v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm54,-107v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm71,-83v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm51,-102v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm58,-87v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm56,-83v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm65,-63v-5,-1,-4,-7,-2,-11xm56,-72v-1,-1,-3,-2,0,-2r0,2xm54,-70v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm67,-41v2,1,3,3,0,4v-2,0,-3,-3,0,-4","w":185},"\u2013":{"d":"63,-118v-21,-1,-32,3,-54,0r0,-19v12,2,19,-6,28,0v4,-5,15,3,26,0v2,4,2,14,0,19xm31,-138v1,2,3,2,3,-1","w":71},"\u2014":{"d":"112,-118r-103,0r0,-19v12,2,19,-6,28,0v3,-3,3,-5,4,0r71,0v2,4,2,14,0,19xm31,-138v1,2,3,2,3,-1","w":120},"\u201c":{"d":"54,-237v2,9,-12,24,0,28r0,20v-10,-1,-23,4,-20,-10v0,-17,3,-35,20,-38xm25,-237v0,10,-12,24,0,28r0,20v-16,2,-25,1,-21,-21v7,-9,5,-27,21,-27xm33,-185v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm2,-184v2,-2,4,0,2,2","w":58},"\u201d":{"d":"53,-237v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm24,-237v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm32,-182v0,-10,12,-24,0,-28r0,-20v16,-2,25,-1,21,21v-8,9,-4,26,-21,27xm2,-182v0,-10,12,-23,1,-28r0,-20v10,1,23,-4,20,10v0,17,-3,35,-21,38","w":58},"\u2018":{"d":"25,-238v-1,10,-12,23,0,28r0,19v-16,2,-25,1,-21,-21v7,-9,5,-26,21,-26xm4,-187v1,1,1,2,0,3v-2,-1,-2,-2,0,-3","w":24},"\u2019":{"d":"24,-238v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm2,-184v8,-17,1,-25,1,-47v10,1,23,-4,20,10v0,17,-3,34,-21,37","w":24},"\u00f7":{"d":"62,-177v-6,11,-2,38,-26,23r0,-21v9,-2,16,-2,26,-2xm84,-118v-28,-1,-48,3,-75,0r0,-19v12,2,19,-6,28,0v3,-3,3,-5,4,0r43,0v2,4,2,14,0,19xm62,-104v-6,10,-1,38,-26,23r0,-21v9,-2,16,-2,26,-2xm45,-151v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm40,-152v2,2,4,0,2,-2xm31,-138v1,2,3,2,3,-1xm45,-78v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm40,-79v2,2,4,0,2,-2","w":92},"\u00ff":{"d":"64,-176v-1,1,-2,3,-2,0r2,0xm44,-218v3,29,14,51,18,74v7,-17,14,-45,22,-84r35,0v-1,2,-3,9,0,15r-3,0v-18,27,-23,93,-39,112v9,18,-5,65,2,89v0,8,-12,16,-20,10v3,0,6,-1,5,-5r-22,6v3,-26,2,-57,2,-86v-14,-2,-38,-4,-41,-13v10,-11,7,-15,15,-4r2,-16v-6,0,-9,-2,-9,-5r22,0v-4,-38,-24,-67,-28,-103v6,-5,22,-3,33,-3v0,9,2,14,6,13xm39,-86v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm89,-34v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm29,-85v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm86,-17v-5,0,-6,-4,0,-3r0,3xm64,-142v0,7,0,11,4,18v0,-8,0,-10,-4,-18xm72,-122v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm75,-107v1,-4,-1,-9,-3,-6v0,2,2,4,3,6xm36,-107v5,-2,2,-16,-7,-13v4,3,7,7,7,13xm40,-102v0,-2,-3,-1,-4,-1v0,2,2,2,4,1xm22,-111v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm96,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm53,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm77,-249v2,2,4,0,2,-2xm74,-249v2,2,4,0,2,-2xm35,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm32,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","k":{"z":9,"x":5,"u":2,"s":14,"q":12,"p":4,"o":16,"n":4,"m":9,"l":4,"k":4,"j":32,"g":16,"f":4,"d":9,"c":12,"a":35}},"\u0178":{"d":"122,-220v-24,44,-20,60,-41,116v-4,-7,-9,-22,-16,-44v5,-18,11,-46,20,-82r36,0v2,2,-10,12,1,10xm25,-232v-3,0,-1,-1,-1,-1xm63,-179v2,1,3,3,0,4v-2,0,-1,-4,0,-4xm59,-159v1,33,31,64,20,104v1,15,-3,35,2,46v-10,8,-7,8,-20,9v3,-1,11,-5,4,-5v-10,0,-17,7,-22,3v6,-26,2,-66,3,-98v-7,-18,-46,-134,-40,-130v8,1,16,-5,18,2v1,-4,7,-6,14,-5v0,9,4,13,8,13v0,11,5,46,13,43v-3,8,0,14,3,18r-3,0xm90,-33v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm84,-18v2,-2,3,0,1,1xm44,-163v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm37,-166v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm30,-159v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm96,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm53,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm77,-249v2,2,4,0,2,-2xm74,-249v2,2,4,0,2,-2xm35,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm32,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":126,"k":{"s":12,"o":18,"S":5,"Q":9,"O":7,"J":30,"G":7,"C":11,"B":2,"A":30}},"\u00a4":{"d":"102,-237v1,2,-1,2,-3,2v-1,-2,1,-2,3,-2xm82,-231v8,-1,31,7,37,7v4,7,5,18,15,19r-2,47v-11,-1,-21,9,-24,6v0,-5,-14,-30,-16,-44v-11,-2,-11,-18,-10,-35xm51,-231v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm30,-222v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm112,-133v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm64,-174v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm25,-211v0,5,0,11,-6,13xm136,-85v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm6,-211v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm68,-147v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm132,-78v0,-2,3,-1,4,-1v0,2,-3,1,-4,1xm14,-196v2,1,4,2,0,2r0,-2xm128,-83v1,7,-6,9,-9,5v2,-3,5,-5,9,-5xm130,-74v5,5,-1,1,-1,1xm8,-192v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm1,-185v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm-1,-185v-1,4,-7,6,-9,3v0,-3,5,-3,9,-3xm77,-198v0,6,15,8,14,15r-29,0v-1,22,4,27,0,46v21,3,54,-7,45,15r-45,0v2,6,4,8,1,16v12,0,22,-1,31,3v2,15,-6,17,-31,15v3,6,0,24,-1,37v-1,3,17,17,15,20v-2,11,7,36,-9,29v-17,5,-41,-29,-19,-29v-1,-4,-3,-5,-7,-3v-21,0,-7,-31,-11,-55r-30,0r0,-14v13,1,17,-1,30,-2r-1,-16v-2,1,-4,1,-5,1r2,-2r-10,0v0,-6,0,-11,-2,-15v8,0,9,1,15,0v1,-20,-2,-35,-7,-48v-11,-4,-3,-5,6,-17v14,-20,31,-29,48,-29r0,33xm114,-81v-3,11,17,12,17,19v-4,1,-11,-2,-10,3r11,0v0,6,1,13,-5,13v9,13,-5,30,-11,11v-7,-2,-12,-8,-4,-13v-8,-3,-2,-12,0,-17v-3,1,-6,1,-10,2r0,-18r12,0xm102,-57v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm106,-48v1,3,-2,2,-4,2v0,-2,2,-2,4,-2xm114,-31v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm19,-119v0,1,0,1,-1,1xm119,-22v0,3,1,6,-3,5v0,-2,1,-4,3,-5xm108,-20v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm93,-26v-5,8,17,9,19,15v-4,10,-22,16,-30,7v2,-13,-7,-30,13,-27v2,1,16,3,9,7v-2,0,-6,-2,-11,-2xm36,-31v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm126,-170v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm75,-189v-1,-2,-2,-4,-2,0r2,0xm78,-184v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm73,-183v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm95,-132v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm86,-126r0,-2v-1,1,-1,1,0,2xm72,-125v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm106,-67v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm110,-54v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm119,-39v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm114,-41v-1,-1,-2,-3,-2,0r2,0xm26,-126v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm19,-126v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm102,-10v3,0,0,-3,0,-1r0,1xm47,-24v2,0,3,-3,0,-4v-2,1,-3,3,0,4","w":138},"\u20ac":{"d":"102,-237v1,2,-1,2,-3,2v-1,-2,1,-2,3,-2xm82,-231v8,-1,31,7,37,7v4,7,5,18,15,19r-2,47v-11,-1,-21,9,-24,6v0,-5,-14,-30,-16,-44v-11,-2,-11,-18,-10,-35xm51,-231v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm30,-222v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm112,-133v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm64,-174v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm25,-211v0,5,0,11,-6,13xm136,-85v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm6,-211v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm68,-147v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm132,-78v0,-2,3,-1,4,-1v0,2,-3,1,-4,1xm14,-196v2,1,4,2,0,2r0,-2xm128,-83v1,7,-6,9,-9,5v2,-3,5,-5,9,-5xm130,-74v5,5,-1,1,-1,1xm8,-192v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm1,-185v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm-1,-185v-1,4,-7,6,-9,3v0,-3,5,-3,9,-3xm77,-198v0,6,15,8,14,15r-29,0v-1,22,4,27,0,46v21,3,54,-7,45,15r-45,0v2,6,4,8,1,16v12,0,22,-1,31,3v2,15,-6,17,-31,15v3,6,0,24,-1,37v-1,3,17,17,15,20v-2,11,7,36,-9,29v-17,5,-41,-29,-19,-29v-1,-4,-3,-5,-7,-3v-21,0,-7,-31,-11,-55r-30,0r0,-14v13,1,17,-1,30,-2r-1,-16v-2,1,-4,1,-5,1r2,-2r-10,0v0,-6,0,-11,-2,-15v8,0,9,1,15,0v1,-20,-2,-35,-7,-48v-11,-4,-3,-5,6,-17v14,-20,31,-29,48,-29r0,33xm114,-81v-3,11,17,12,17,19v-4,1,-11,-2,-10,3r11,0v0,6,1,13,-5,13v9,13,-5,30,-11,11v-7,-2,-12,-8,-4,-13v-8,-3,-2,-12,0,-17v-3,1,-6,1,-10,2r0,-18r12,0xm102,-57v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm106,-48v1,3,-2,2,-4,2v0,-2,2,-2,4,-2xm114,-31v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm19,-119v0,1,0,1,-1,1xm119,-22v0,3,1,6,-3,5v0,-2,1,-4,3,-5xm108,-20v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm93,-26v-5,8,17,9,19,15v-4,10,-22,16,-30,7v2,-13,-7,-30,13,-27v2,1,16,3,9,7v-2,0,-6,-2,-11,-2xm36,-31v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm126,-170v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm75,-189v-1,-2,-2,-4,-2,0r2,0xm78,-184v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm73,-183v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm95,-132v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm86,-126r0,-2v-1,1,-1,1,0,2xm72,-125v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm106,-67v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm110,-54v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm119,-39v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm114,-41v-1,-1,-2,-3,-2,0r2,0xm26,-126v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm19,-126v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm102,-10v3,0,0,-3,0,-1r0,1xm47,-24v2,0,3,-3,0,-4v-2,1,-3,3,0,4","w":138},"\u2039":{"d":"17,-112v7,23,58,33,45,64v-11,-1,-44,-37,-57,-49v-1,-5,-6,-26,7,-31v19,-16,25,-27,50,-45v9,33,-29,42,-45,61xm47,-56v2,1,-1,3,0,1v0,0,-1,-1,0,-1xm27,-127v2,-1,1,-3,0,-4v-1,0,-1,4,0,4xm29,-124r0,-4r0,4xm25,-124v0,-1,2,-2,0,-2r0,2xm24,-124r0,-3r0,3xm26,-121r0,-3r0,3xm19,-126v-2,-1,-2,1,-1,1v0,0,1,0,1,-1xm48,-79v2,-1,0,-3,-1,-3v0,1,0,3,1,3xm7,-119r0,-3r0,3xm23,-100r0,-2v-1,1,-1,1,0,2xm14,-107r0,-4r0,4xm5,-119r0,4r0,-4xm61,-60v2,3,2,-2,2,-2v-2,0,-2,0,-2,2xm7,-112r0,-3r0,3xm10,-107r0,-4r0,4xm4,-108v0,-1,2,-3,0,-4r0,4xm4,-105r0,-2r0,2xm4,-102v2,0,1,-2,1,-3v-2,0,-1,2,-1,3","w":66},"\u203a":{"d":"41,-136r0,-3v2,0,1,3,0,3xm24,-151v10,12,26,23,44,34v-6,8,0,16,-9,26v-7,-4,-36,28,-57,42r3,-23v14,-13,33,-22,45,-37v-3,1,-15,-17,-35,-23v2,-2,-8,-13,-11,-12r0,-20v5,-1,18,17,24,11v-1,0,-2,1,-4,2xm65,-114r0,-3v-1,0,-2,3,0,3","w":67},"\u2021":{"d":"63,-160v-2,9,-9,1,-6,18v4,25,2,52,-2,74v11,3,32,-8,28,10r3,0v-1,2,-4,6,-3,9v-31,-8,-28,16,-28,46v-7,1,-9,5,-19,4v-4,-13,0,-30,-1,-48v-8,0,-18,1,-28,-1r0,-20v11,2,20,-5,28,0r1,-106v0,0,-19,0,-29,-2r0,-19v11,2,19,-5,29,0v5,-8,-3,-18,-2,-46v13,1,28,-6,23,17v0,4,3,10,8,9v-8,2,-12,9,-11,20v11,3,33,-8,29,10r3,0v-1,2,-4,6,-3,9v-16,-2,-35,3,-25,16r5,0xm60,-101v2,-4,9,1,4,3v-1,0,-2,-2,-4,-3xm60,-74v8,-2,7,8,1,2v0,-1,-1,-2,-1,-2xm59,-36v2,-4,9,1,4,3v-1,0,-3,-2,-4,-3xm30,-197v-1,3,3,4,3,1xm31,-66v2,-2,2,-4,-1,-3xm40,-30v2,1,5,5,6,1v-1,-1,-5,-3,-6,-1","w":92},"\u00b7":{"d":"36,-126v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm18,-100v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm15,-100v1,-1,3,-2,0,-3v-1,1,-1,2,0,3","w":41},"\u2219":{"d":"36,-126v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm18,-100v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm15,-100v1,-1,3,-2,0,-3v-1,1,-1,2,0,3","w":41},"\u201a":{"d":"24,-26v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm2,28v8,-17,1,-25,1,-47v10,1,21,-4,20,10v-2,17,-2,35,-21,37","w":24},"\u201e":{"d":"53,-26v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm24,-26v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm32,28v0,-10,12,-23,0,-27r0,-20v16,-2,25,-1,21,21v-8,9,-4,26,-21,26xm2,28v8,-17,1,-25,1,-47v10,1,21,-4,20,10v-2,17,-2,35,-21,37","w":58},"\u2030":{"d":"183,-80v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm185,-115v24,4,23,40,23,68v0,11,2,17,7,18v-3,2,-23,44,-31,22v6,-21,16,-73,-2,-89v1,-8,-2,-15,3,-19xm178,-54v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm178,-75v-9,18,-4,58,3,75v-42,0,-19,-59,-24,-94v-1,-10,9,-18,19,-17v3,14,-6,31,2,36xm29,-192v1,1,3,2,0,3v-1,-1,-1,-2,0,-3xm31,-226v24,4,23,39,23,68v0,11,2,17,7,18v-3,2,-17,32,-28,28v-7,-6,-1,-16,4,-26v-3,-27,7,-55,-9,-69v1,-7,-2,-16,3,-19xm187,-28v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm157,-53v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm128,-72v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm121,-116v40,-2,23,47,30,80v-4,13,-5,38,-22,36v-21,-7,9,-19,-1,-36r-4,0v19,-21,2,-58,-3,-80xm104,-148v-16,31,-49,85,-48,112v-16,10,-7,39,-37,34v23,-74,63,-132,90,-210v3,-8,11,-11,25,-11v1,7,-34,64,-30,75xm24,-165v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm157,-32v1,3,-2,2,-4,2xm24,-186v-9,15,-3,54,3,75v-42,0,-19,-59,-24,-94v-1,-10,9,-18,19,-18v3,13,-6,32,2,37xm33,-140v1,0,2,5,0,5v-3,0,-2,-5,0,-5xm98,-97v-2,-7,20,-24,22,-9v2,14,-11,20,-3,30v-5,24,0,45,0,74v-11,8,-18,-8,-19,-17r0,-78xm160,-87v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm174,-31v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm20,-142v2,0,1,-4,0,-4v-2,0,-3,4,0,4","w":215},"\u00c2":{"d":"86,-237v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm97,-197v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm69,-135v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-89v1,2,2,3,0,5v-2,-2,-1,-3,0,-5xm62,-166v8,8,-9,39,-6,49v5,-1,4,-1,8,2v-11,2,-17,26,-5,29v-2,1,-2,2,-1,4r17,0v2,5,7,28,9,14v3,-31,-24,-82,-9,-103v0,-2,-2,-3,-6,-2v-4,-21,-20,-50,-3,-60v3,5,13,2,20,3v1,5,8,12,7,22r8,4r-8,0v2,15,3,31,6,47r14,4v-12,-1,-13,18,-2,22v-3,30,2,62,13,90v-6,8,0,27,9,28v-4,0,-7,2,-7,8r-33,0v1,-16,-7,-43,-9,-55v-2,15,-32,-2,-35,14r8,0v-19,4,-7,63,-42,44v-2,1,-5,1,-9,2v0,-6,5,-33,9,-56r31,-175v17,-3,15,53,16,65xm121,-58v0,-1,-2,-2,0,-2r0,2xm75,-91v0,3,-3,7,-2,2xm64,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm77,-155v1,1,2,3,2,0r-2,0xm77,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-104v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm82,-109v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm108,-78v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm108,-69v1,1,4,5,3,0r-3,0xm102,-70v3,0,0,-3,0,-1r0,1xm32,-1v3,0,4,-3,1,-4v-1,1,-3,3,-1,4xm78,-282v0,1,0,1,-1,1v0,-1,0,-1,1,-1xm90,-266r0,2v-1,-1,-1,-1,0,-2xm86,-266r0,2v-1,-1,-1,-1,0,-2xm97,-250v-1,2,-3,0,-1,0r1,0xm30,-242v7,-7,16,-60,41,-43v2,0,23,40,24,43v-25,8,-22,-23,-33,-31v-9,12,-7,35,-32,31xm62,-285v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":136,"k":{"y":42,"x":4,"w":35,"v":42,"u":12,"t":39,"s":11,"r":5,"q":14,"p":7,"o":16,"n":9,"m":9,"l":7,"k":5,"i":5,"g":12,"f":5,"e":7,"d":11,"c":14,"b":5,"a":9,"Y":37,"X":4,"W":28,"V":33,"U":9,"T":35,"S":4,"Q":7,"O":9,"L":4,"J":4,"I":4,"H":4,"G":7,"F":2,"E":4,"C":9,"B":7,"A":4}},"\u00ca":{"d":"110,-240v0,2,0,4,-2,3v0,-2,0,-4,2,-3xm62,-231v12,-4,27,4,40,-3v-4,9,3,18,-5,32r-56,3v0,-14,1,-26,3,-34v2,9,20,-3,18,2xm44,-195v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm42,-166v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm44,-155v1,1,1,3,0,4v-2,0,-1,-4,0,-4xm42,-148v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm44,-138v13,-2,23,6,34,0v11,2,7,31,-2,34v-14,-7,-34,9,-35,-11v0,-11,1,-19,3,-23xm37,-171r-1,170v-7,1,-15,-2,-25,-1r0,-226v6,-1,14,-2,26,-3v-1,17,2,36,-1,51v-8,-1,-3,7,-3,12xm42,-95v2,0,1,3,0,4v-2,-1,-3,-3,0,-4xm42,-78v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm42,-60r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm44,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm101,-36v-5,3,0,10,1,14r-7,22v-18,2,-37,-3,-52,-1r1,1v-6,-5,-2,-27,0,-36v9,8,35,-7,47,3xm30,-184v-1,-6,-9,-3,-4,0v1,2,4,3,4,0xm19,-175v2,0,3,-3,0,-4v-2,0,-1,4,0,4xm50,-133v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm22,-155v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm68,-109v0,2,3,0,1,0r-1,0xm26,-146v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm26,-138v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm19,-144v-2,0,-7,-1,-6,2v2,0,4,0,6,-2xm75,-32v2,0,3,-2,0,-2v-3,0,-1,2,0,2xm65,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm88,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm64,-26v-1,-1,-2,-3,-2,0r2,0xm77,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm73,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm28,-186v0,1,-1,2,-2,2v0,-1,1,-2,2,-2xm71,-282v0,1,0,1,-1,1v0,-1,0,-1,1,-1xm83,-266r0,2v-1,-1,-1,-1,0,-2xm79,-266r0,2v-1,-1,-1,-1,0,-2xm90,-250v-1,2,-3,0,-1,0r1,0xm23,-242v7,-7,16,-60,41,-43v2,0,23,40,24,43v-25,8,-22,-23,-33,-31v-9,12,-7,35,-32,31xm55,-285v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":106,"k":{"o":9,"O":5,"K":-2}},"\u00c1":{"d":"86,-237v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm97,-197v2,0,3,3,0,4v-2,-1,-1,-3,0,-4xm69,-135v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-89v1,2,2,3,0,5v-2,-2,-1,-3,0,-5xm62,-166v8,8,-9,39,-6,49v5,-1,4,-1,8,2v-11,2,-17,26,-5,29v-2,1,-2,2,-1,4r17,0v2,5,7,28,9,14v3,-31,-24,-82,-9,-103v0,-2,-2,-3,-6,-2v-4,-21,-20,-50,-3,-60v3,5,13,2,20,3v1,5,8,12,7,22r8,4r-8,0v2,15,3,31,6,47r14,4v-12,-1,-13,18,-2,22v-3,30,2,62,13,90v-6,8,0,27,9,28v-4,0,-7,2,-7,8r-33,0v1,-16,-7,-43,-9,-55v-2,15,-32,-2,-35,14r8,0v-19,4,-7,63,-42,44v-2,1,-5,1,-9,2v0,-6,5,-33,9,-56r31,-175v17,-3,15,53,16,65xm121,-58v0,-1,-2,-2,0,-2r0,2xm75,-91v0,3,-3,7,-2,2xm64,-228v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm77,-155v1,1,2,3,2,0r-2,0xm77,-135v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,-104v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm82,-109v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm108,-78v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm55,-128v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm108,-69v1,1,4,5,3,0r-3,0xm102,-70v3,0,0,-3,0,-1r0,1xm32,-1v3,0,4,-3,1,-4v-1,1,-3,3,-1,4xm70,-242v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":136,"k":{"y":42,"x":4,"w":35,"v":42,"u":12,"t":39,"s":11,"r":5,"q":14,"p":7,"o":16,"n":9,"m":9,"l":7,"k":5,"i":5,"g":12,"f":5,"e":7,"d":11,"c":14,"b":5,"a":9,"Y":37,"X":4,"W":28,"V":33,"U":9,"T":35,"S":4,"Q":7,"O":9,"L":4,"J":4,"I":4,"H":4,"G":7,"F":2,"E":4,"C":9,"B":7,"A":4}},"\u00cb":{"d":"110,-240v0,2,0,4,-2,3v0,-2,0,-4,2,-3xm62,-231v12,-4,27,4,40,-3v-4,9,3,18,-5,32r-56,3v0,-14,1,-26,3,-34v2,9,20,-3,18,2xm44,-195v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm42,-166v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm44,-155v1,1,1,3,0,4v-2,0,-1,-4,0,-4xm42,-148v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm44,-138v13,-2,23,6,34,0v11,2,7,31,-2,34v-14,-7,-34,9,-35,-11v0,-11,1,-19,3,-23xm37,-171r-1,170v-7,1,-15,-2,-25,-1r0,-226v6,-1,14,-2,26,-3v-1,17,2,36,-1,51v-8,-1,-3,7,-3,12xm42,-95v2,0,1,3,0,4v-2,-1,-3,-3,0,-4xm42,-78v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm42,-60r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm44,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm101,-36v-5,3,0,10,1,14r-7,22v-18,2,-37,-3,-52,-1r1,1v-6,-5,-2,-27,0,-36v9,8,35,-7,47,3xm30,-184v-1,-6,-9,-3,-4,0v1,2,4,3,4,0xm19,-175v2,0,3,-3,0,-4v-2,0,-1,4,0,4xm50,-133v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm22,-155v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm68,-109v0,2,3,0,1,0r-1,0xm26,-146v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm26,-138v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm19,-144v-2,0,-7,-1,-6,2v2,0,4,0,6,-2xm75,-32v2,0,3,-2,0,-2v-3,0,-1,2,0,2xm65,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm88,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm64,-26v-1,-1,-2,-3,-2,0r2,0xm77,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm73,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm28,-186v0,1,-1,2,-2,2v0,-1,1,-2,2,-2xm89,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm46,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm70,-249v2,2,4,0,2,-2xm67,-249v2,2,4,0,2,-2xm28,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm25,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":106,"k":{"o":9,"O":5,"K":-2}},"\u00c8":{"d":"110,-240v0,2,0,4,-2,3v0,-2,0,-4,2,-3xm62,-231v12,-4,27,4,40,-3v-4,9,3,18,-5,32r-56,3v0,-14,1,-26,3,-34v2,9,20,-3,18,2xm44,-195v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm42,-166v2,1,1,3,0,4v-2,-1,-3,-3,0,-4xm44,-155v1,1,1,3,0,4v-2,0,-1,-4,0,-4xm42,-148v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm44,-138v13,-2,23,6,34,0v11,2,7,31,-2,34v-14,-7,-34,9,-35,-11v0,-11,1,-19,3,-23xm37,-171r-1,170v-7,1,-15,-2,-25,-1r0,-226v6,-1,14,-2,26,-3v-1,17,2,36,-1,51v-8,-1,-3,7,-3,12xm42,-95v2,0,1,3,0,4v-2,-1,-3,-3,0,-4xm42,-78v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm42,-60r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm44,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm101,-36v-5,3,0,10,1,14r-7,22v-18,2,-37,-3,-52,-1r1,1v-6,-5,-2,-27,0,-36v9,8,35,-7,47,3xm30,-184v-1,-6,-9,-3,-4,0v1,2,4,3,4,0xm19,-175v2,0,3,-3,0,-4v-2,0,-1,4,0,4xm50,-133v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm22,-155v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm68,-109v0,2,3,0,1,0r-1,0xm26,-146v3,0,2,-5,0,-5v-2,0,-3,5,0,5xm26,-138v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm19,-144v-2,0,-7,-1,-6,2v2,0,4,0,6,-2xm75,-32v2,0,3,-2,0,-2v-3,0,-1,2,0,2xm65,-32v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm88,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm64,-26v-1,-1,-2,-3,-2,0r2,0xm77,0v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm73,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm28,-186v0,1,-1,2,-2,2v0,-1,1,-2,2,-2xm72,-257v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm69,-242v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm44,-259v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm50,-240v2,1,4,-2,2,-2v-1,0,-2,1,-2,2","w":106,"k":{"o":9,"O":5,"K":-2}},"\u00cd":{"d":"49,-155v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm45,-163v-4,45,0,96,0,144v0,26,-19,14,-36,19r3,-2r0,-227v17,5,32,-17,31,11v-1,20,-1,36,1,56xm16,-221v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm13,-220v-1,4,3,12,5,8v0,-6,-1,-8,-5,-8xm32,-245v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":54,"k":{"a":7,"V":2,"A":2}},"\u00ce":{"d":"49,-155v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm45,-163v-4,45,0,96,0,144v0,26,-19,14,-36,19r3,-2r0,-227v17,5,32,-17,31,11v-1,20,-1,36,1,56xm16,-221v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm13,-220v-1,4,3,12,5,8v0,-6,-1,-8,-5,-8xm41,-280v0,1,0,1,-1,1v0,-1,0,-1,1,-1xm53,-264r0,2v-1,-1,-1,-1,0,-2xm49,-264r0,2v-1,-1,-1,-1,0,-2xm60,-248v-1,2,-3,0,-1,0r1,0xm-7,-240v7,-7,16,-60,41,-43v2,0,23,40,24,43v-25,8,-22,-23,-33,-31v-9,12,-7,35,-32,31xm25,-283v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":54,"k":{"a":7,"V":2,"A":2}},"\u00cf":{"d":"49,-155v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm45,-163v-4,45,0,96,0,144v0,26,-19,14,-36,19r3,-2r0,-227v17,5,32,-17,31,11v-1,20,-1,36,1,56xm16,-221v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm13,-220v-1,4,3,12,5,8v0,-6,-1,-8,-5,-8xm65,-274v-7,12,-1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm22,-274v-9,9,-1,39,-27,23r0,-21v9,-2,17,-2,27,-2xm46,-249v2,2,4,0,2,-2xm43,-249v2,2,4,0,2,-2xm4,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3xm1,-248v2,-1,2,-2,0,-3v-1,1,-1,2,0,3","w":54,"k":{"a":7,"V":2,"A":2}},"\u00cc":{"d":"49,-155v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm45,-163v-4,45,0,96,0,144v0,26,-19,14,-36,19r3,-2r0,-227v17,5,32,-17,31,11v-1,20,-1,36,1,56xm16,-221v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm13,-220v-1,4,3,12,5,8v0,-6,-1,-8,-5,-8xm43,-257v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm40,-242v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm15,-259v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm21,-240v2,1,4,-2,2,-2v-1,0,-2,1,-2,2","w":54,"k":{"a":7,"V":2,"A":2}},"\u00d3":{"d":"98,-211v-2,1,-2,-4,-2,-6v2,1,4,4,2,6xm114,-195v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm45,-182v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm109,-211v2,21,7,45,0,65v-1,4,8,5,3,8r0,98v-10,12,-25,49,-53,35v-8,-21,21,-36,21,-51r0,-92r3,-3v-7,-26,-3,-57,-22,-51v2,-5,-5,-20,-2,-33v10,-1,16,1,13,11v2,-4,6,-15,9,-2v1,-7,9,-2,15,-2v0,1,-5,11,-4,15v-4,-3,-13,-3,-14,2v1,9,29,11,31,0xm50,-109v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm49,-102v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm45,-64v-15,7,6,27,9,35r0,29v-74,-15,-47,-114,-47,-191v0,-13,4,-19,12,-19v-3,-23,24,-7,29,-25v2,0,4,-1,6,-1r0,30v-27,14,-18,113,-9,142xm50,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm43,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm87,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm78,-202v1,1,4,5,3,0r-3,0xm79,-194v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm107,-138v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm25,-215v-1,1,-2,6,0,7v0,-2,2,-5,0,-7xm109,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm110,-118v0,-4,-4,-5,-3,0r3,0xm103,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm102,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm83,-122v-1,0,-2,4,0,4v1,-1,1,-3,0,-4xm37,-142v0,1,-2,2,0,2r0,-2xm40,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm67,-246v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":118,"k":{"y":5,"v":4,"Y":5,"X":11,"W":4,"V":5,"J":4,"A":5}},"\u00d4":{"d":"98,-211v-2,1,-2,-4,-2,-6v2,1,4,4,2,6xm114,-195v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm45,-182v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm109,-211v2,21,7,45,0,65v-1,4,8,5,3,8r0,98v-10,12,-25,49,-53,35v-8,-21,21,-36,21,-51r0,-92r3,-3v-7,-26,-3,-57,-22,-51v2,-5,-5,-20,-2,-33v10,-1,16,1,13,11v2,-4,6,-15,9,-2v1,-7,9,-2,15,-2v0,1,-5,11,-4,15v-4,-3,-13,-3,-14,2v1,9,29,11,31,0xm50,-109v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm49,-102v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm45,-64v-15,7,6,27,9,35r0,29v-74,-15,-47,-114,-47,-191v0,-13,4,-19,12,-19v-3,-23,24,-7,29,-25v2,0,4,-1,6,-1r0,30v-27,14,-18,113,-9,142xm50,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm43,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm87,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm78,-202v1,1,4,5,3,0r-3,0xm79,-194v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm107,-138v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm25,-215v-1,1,-2,6,0,7v0,-2,2,-5,0,-7xm109,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm110,-118v0,-4,-4,-5,-3,0r3,0xm103,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm102,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm83,-122v-1,0,-2,4,0,4v1,-1,1,-3,0,-4xm37,-142v0,1,-2,2,0,2r0,-2xm40,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm76,-280v0,1,0,1,-1,1v0,-1,0,-1,1,-1xm88,-264r0,2v-1,-1,-1,-1,0,-2xm84,-264r0,2v-1,-1,-1,-1,0,-2xm95,-248v-1,2,-3,0,-1,0r1,0xm28,-240v7,-7,16,-60,41,-43v2,0,23,40,24,43v-25,8,-22,-23,-33,-31v-9,12,-7,35,-32,31xm60,-283v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":118,"k":{"y":5,"v":4,"Y":5,"X":11,"W":4,"V":5,"J":4,"A":5}},"\u00d2":{"d":"98,-211v-2,1,-2,-4,-2,-6v2,1,4,4,2,6xm114,-195v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm45,-182v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm109,-211v2,21,7,45,0,65v-1,4,8,5,3,8r0,98v-10,12,-25,49,-53,35v-8,-21,21,-36,21,-51r0,-92r3,-3v-7,-26,-3,-57,-22,-51v2,-5,-5,-20,-2,-33v10,-1,16,1,13,11v2,-4,6,-15,9,-2v1,-7,9,-2,15,-2v0,1,-5,11,-4,15v-4,-3,-13,-3,-14,2v1,9,29,11,31,0xm50,-109v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm49,-102v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm45,-64v-15,7,6,27,9,35r0,29v-74,-15,-47,-114,-47,-191v0,-13,4,-19,12,-19v-3,-23,24,-7,29,-25v2,0,4,-1,6,-1r0,30v-27,14,-18,113,-9,142xm50,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm43,-56v2,1,3,4,0,5v-3,-1,-2,-4,0,-5xm87,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm78,-202v1,1,4,5,3,0r-3,0xm79,-194v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm107,-138v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm25,-215v-1,1,-2,6,0,7v0,-2,2,-5,0,-7xm109,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm110,-118v0,-4,-4,-5,-3,0r3,0xm103,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm102,-116v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm83,-122v-1,0,-2,4,0,4v1,-1,1,-3,0,-4xm37,-142v0,1,-2,2,0,2r0,-2xm40,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm74,-258v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm71,-243v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm46,-260v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm52,-241v2,1,4,-2,2,-2v-1,0,-2,1,-2,2","w":118,"k":{"y":5,"v":4,"Y":5,"X":11,"W":4,"V":5,"J":4,"A":5}},"\u00da":{"d":"124,-155v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm113,-233v1,25,-2,58,2,71v-7,33,8,85,-7,111v-8,-6,-29,8,-29,-15r3,-164v16,-1,15,-2,31,-3xm50,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm50,-124v0,0,1,7,-1,3v0,-1,0,-3,1,-3xm108,-44v-1,-1,-3,-2,0,-2r0,2xm44,-53v-8,10,1,15,13,27r0,25v-59,1,-50,-66,-49,-127v2,-2,4,-4,0,-5r0,-96v20,2,29,-9,36,-1v-5,4,-7,23,3,26r-7,0r2,107v-1,0,-2,-1,-2,-3v-1,16,3,30,-1,41v0,5,2,7,5,6xm113,-40v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm50,-102v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm97,-40v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm93,-29v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm46,-66v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm62,-29v4,-1,21,-29,26,-14v3,8,-9,5,-13,9v-1,3,12,1,13,8v-4,-2,-14,4,-6,4r20,0v-1,12,-25,28,-40,20r0,-27xm90,-221v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm17,-217v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm13,-220v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm101,-104v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm95,-100v2,-1,2,-3,0,-4v-2,1,-2,3,0,4xm112,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm20,-118v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm26,-111v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm11,-122v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm84,-44v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm17,-80v2,-1,0,-3,0,-1r0,1xm13,-66v3,1,2,-3,2,-5v-3,-1,-2,3,-2,5xm26,-53v-1,-1,-2,-3,-2,0r2,0xm15,-58v5,-1,6,-4,0,-4r0,4xm15,-49v2,0,6,1,5,-2v-2,0,-6,-1,-5,2xm69,-246v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":123,"k":{"w":9,"X":7,"J":9,"A":12}},"\u00db":{"d":"124,-155v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm113,-233v1,25,-2,58,2,71v-7,33,8,85,-7,111v-8,-6,-29,8,-29,-15r3,-164v16,-1,15,-2,31,-3xm50,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm50,-124v0,0,1,7,-1,3v0,-1,0,-3,1,-3xm108,-44v-1,-1,-3,-2,0,-2r0,2xm44,-53v-8,10,1,15,13,27r0,25v-59,1,-50,-66,-49,-127v2,-2,4,-4,0,-5r0,-96v20,2,29,-9,36,-1v-5,4,-7,23,3,26r-7,0r2,107v-1,0,-2,-1,-2,-3v-1,16,3,30,-1,41v0,5,2,7,5,6xm113,-40v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm50,-102v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm97,-40v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm93,-29v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm46,-66v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm62,-29v4,-1,21,-29,26,-14v3,8,-9,5,-13,9v-1,3,12,1,13,8v-4,-2,-14,4,-6,4r20,0v-1,12,-25,28,-40,20r0,-27xm90,-221v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm17,-217v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm13,-220v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm101,-104v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm95,-100v2,-1,2,-3,0,-4v-2,1,-2,3,0,4xm112,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm20,-118v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm26,-111v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm11,-122v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm84,-44v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm17,-80v2,-1,0,-3,0,-1r0,1xm13,-66v3,1,2,-3,2,-5v-3,-1,-2,3,-2,5xm26,-53v-1,-1,-2,-3,-2,0r2,0xm15,-58v5,-1,6,-4,0,-4r0,4xm15,-49v2,0,6,1,5,-2v-2,0,-6,-1,-5,2xm76,-280v0,1,0,1,-1,1v0,-1,0,-1,1,-1xm88,-264r0,2v-1,-1,-1,-1,0,-2xm84,-264r0,2v-1,-1,-1,-1,0,-2xm95,-248v-1,2,-3,0,-1,0r1,0xm28,-240v7,-7,16,-60,41,-43v2,0,23,40,24,43v-25,8,-22,-23,-33,-31v-9,12,-7,35,-32,31xm60,-283v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":123,"k":{"w":9,"X":7,"J":9,"A":12}},"\u00d9":{"d":"124,-155v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm115,-133v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm113,-233v1,25,-2,58,2,71v-7,33,8,85,-7,111v-8,-6,-29,8,-29,-15r3,-164v16,-1,15,-2,31,-3xm50,-155v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm50,-124v0,0,1,7,-1,3v0,-1,0,-3,1,-3xm108,-44v-1,-1,-3,-2,0,-2r0,2xm44,-53v-8,10,1,15,13,27r0,25v-59,1,-50,-66,-49,-127v2,-2,4,-4,0,-5r0,-96v20,2,29,-9,36,-1v-5,4,-7,23,3,26r-7,0r2,107v-1,0,-2,-1,-2,-3v-1,16,3,30,-1,41v0,5,2,7,5,6xm113,-40v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm50,-102v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm97,-40v2,1,3,4,0,4v-3,0,-2,-3,0,-4xm93,-29v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm46,-66v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm62,-29v4,-1,21,-29,26,-14v3,8,-9,5,-13,9v-1,3,12,1,13,8v-4,-2,-14,4,-6,4r20,0v-1,12,-25,28,-40,20r0,-27xm90,-221v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm17,-217v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm13,-220v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm101,-104v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm95,-100v2,-1,2,-3,0,-4v-2,1,-2,3,0,4xm112,-64v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm20,-118v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm26,-111v2,-1,3,-3,0,-4v-2,1,-3,3,0,4xm11,-122v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm84,-44v-2,0,-1,3,-1,4v2,0,2,-3,1,-4xm17,-80v2,-1,0,-3,0,-1r0,1xm13,-66v3,1,2,-3,2,-5v-3,-1,-2,3,-2,5xm26,-53v-1,-1,-2,-3,-2,0r2,0xm15,-58v5,-1,6,-4,0,-4r0,4xm15,-49v2,0,6,1,5,-2v-2,0,-6,-1,-5,2xm76,-255v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm73,-240v-34,15,-28,-15,-39,-38v13,-1,36,-1,31,10v0,4,1,9,2,13v7,0,8,8,6,15xm48,-257v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm54,-238v2,1,4,-2,2,-2v-1,0,-2,1,-2,2","w":123,"k":{"w":9,"X":7,"J":9,"A":12}},"\u02c6":{"d":"82,-276v0,1,0,1,-1,1v0,-1,0,-1,1,-1xm94,-260r0,2v-1,-1,-1,-1,0,-2xm90,-260r0,2v-1,-1,-1,-1,0,-2xm101,-244v-1,2,-3,0,-1,0r1,0xm34,-236v7,-7,16,-60,41,-43v2,0,23,40,24,43v-25,8,-22,-23,-33,-31v-9,12,-7,35,-32,31xm66,-279v1,-1,1,-1,0,-2v-1,1,-1,1,0,2","w":136},"\u02dc":{"d":"89,-273v6,1,9,2,10,8v-5,4,-13,18,-16,23v-34,7,-44,-33,-64,4v-15,-10,6,-41,19,-38v14,3,9,6,33,17v8,-4,8,-1,18,-14xm47,-271r0,-3v-1,1,-1,2,0,3","w":109},"\u00af":{"d":"93,-247v-28,-1,-52,3,-76,0r0,-19v11,1,20,-5,29,0v2,-4,2,-4,4,0r42,0v2,4,4,12,1,19xm40,-268v-1,3,3,4,3,1","w":109},"\u02c9":{"d":"93,-247v-28,-1,-52,3,-76,0r0,-19v11,1,20,-5,29,0v2,-4,2,-4,4,0r42,0v2,4,4,12,1,19xm40,-268v-1,3,3,4,3,1","w":109},"\u0160":{"d":"83,-238v0,1,-1,3,-1,1xm117,-203v-4,0,-5,-4,0,-3r0,3xm97,-226v-2,5,17,24,13,38v-1,11,-27,10,-28,11v-3,-6,-16,-26,-25,-29v2,-11,-7,-27,9,-27v8,0,18,2,31,7xm64,-153v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm113,-104v0,3,0,5,-3,4xm107,-83v18,13,8,53,-9,58v-5,2,-5,5,-3,10v-6,8,-26,25,-34,8v0,-3,0,-6,1,-7v-3,-1,-2,-2,0,-4v1,1,1,2,1,4r27,0v3,-5,-2,-7,-6,-8v-12,-2,-20,8,-23,-2v21,-21,31,-40,3,-67v3,-1,2,-3,1,-5v-18,2,-60,-46,-57,-64v-5,-41,4,-73,45,-73r0,31v-35,19,11,74,33,78r-3,2v11,4,22,23,24,39xm53,-38v2,1,1,4,0,5v-2,-1,-3,-4,0,-5xm34,-65v-2,16,41,48,19,65v-23,-8,-60,-22,-47,-60v11,-3,21,-4,28,-5xm40,-1v3,0,0,3,0,1r0,-1xm13,-15v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm113,-62r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm64,-97v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm75,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm48,-7v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm38,-10v1,1,2,2,2,-1xm58,-254v8,-13,7,-35,32,-31v-6,9,-21,59,-41,43v-2,0,-23,-40,-24,-43v24,-8,22,25,33,31xm23,-278v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm34,-263v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm30,-263v2,1,0,3,0,1r0,-1xm41,-246v1,0,3,1,1,1","w":120},"\u0161":{"d":"120,-197v-6,-1,-6,-5,0,-4r0,4xm87,-229v-1,-1,-3,-2,0,-2r0,2xm108,-201v12,22,2,30,-21,30v-4,2,-6,-13,-15,-22r-8,8v-2,-16,-5,-22,-1,-42v15,-1,24,5,38,7v1,3,2,10,7,19xm68,-175v-6,-1,-1,-11,2,-10xm72,-147v-4,0,-5,-4,0,-3r0,3xm87,-133v0,1,-1,3,-2,3v-2,0,-3,-5,0,-4v1,0,2,0,2,1xm125,-90r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm120,-86v2,2,3,4,0,5v-2,-2,-1,-3,0,-5xm8,-203v-5,18,-9,9,-20,14v1,-7,11,-18,20,-14xm10,-175v-14,7,-29,0,-41,7v-1,-14,9,-23,19,-12v0,-9,29,3,20,-10v11,-13,21,-41,48,-37r0,30v-18,15,-7,21,-2,43r12,-2v-16,27,32,22,36,49v0,3,10,8,14,4v0,6,15,13,0,17v-1,12,8,19,2,26v9,6,-5,18,-4,26v-16,6,-18,28,-34,34v-14,2,-20,-12,-12,-19v-13,-14,31,-25,14,-48v-4,-17,-25,0,-26,-23v-7,1,-1,-6,-2,-11v-1,1,-3,2,-6,3v2,-5,-14,-24,-20,-22v-7,-20,-17,-24,-18,-55xm42,-95v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm-23,-160v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm61,-71v2,2,1,3,0,5v-2,-2,-3,-4,0,-5xm36,-88v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm26,-85v-2,0,-2,0,-2,-2v-1,-3,4,-3,8,-3v-2,3,-3,5,-6,5xm39,-64v1,16,13,28,22,34v0,13,4,33,-11,26v-9,8,-19,-11,-30,-16v-10,-10,-15,-22,-10,-40v15,-3,25,-4,29,-4xm17,-15v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm92,-115v2,0,3,-6,0,-5v-3,1,-2,4,0,5xm115,-89v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm63,-90v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm94,-17v0,-8,-12,-4,-20,-5v-1,1,-3,3,-3,5r23,0xm43,-8v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm59,-251v8,-13,7,-35,32,-31v-6,9,-21,59,-41,43v-2,0,-23,-40,-24,-43v24,-8,22,25,33,31xm24,-275v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm35,-260v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm31,-260v2,1,0,3,0,1r0,-1xm42,-243v1,0,3,1,1,1","w":126},"\u00a6":{"d":"36,-241v3,8,-2,26,9,26v-12,4,-11,21,-8,37v14,4,-9,9,1,18v2,0,5,-1,5,1v-8,5,-6,19,-5,31v-10,1,-20,2,-28,-1v-3,-48,5,-57,-1,-112r27,0xm40,-102v4,-1,8,1,5,4xm43,-74v2,-1,6,4,2,4v0,0,-7,-4,-2,-4xm36,-33v0,28,0,36,-25,34v-5,-31,1,-81,-1,-119r28,0v4,21,-3,39,-1,58v13,2,-5,8,7,10v-5,1,-8,6,-8,17xm40,-36v2,-4,9,1,4,3v-1,0,-3,-2,-4,-3xm25,-27v2,-2,0,-4,-3,-4v-1,0,-1,1,-1,2v1,1,3,2,4,2","w":48},"\u00d0":{"d":"130,-190v1,-1,4,-1,5,0v-2,1,-4,1,-5,0xm62,-179v1,2,-1,2,-3,2v-1,-2,1,-2,3,-2xm126,-195r2,129v-6,7,-2,18,-2,28v-2,1,-14,30,-23,27v-12,-5,-22,-3,-34,0v4,-4,4,-14,13,-13v-8,-11,-17,22,-20,11r-5,0r0,-18r12,0r-5,7v6,1,28,-18,29,-22r0,-132v0,-15,-19,-23,-36,-23v2,-15,-7,-32,13,-32v35,0,45,17,56,38xm135,-53r0,4v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2xm24,-230v14,-3,29,-3,29,11r0,97r4,0v-2,0,-1,-3,0,-4v2,1,3,3,1,4v8,0,13,-1,11,10r3,0v-1,2,-4,6,-3,9r-19,0r-6,37r-22,13v6,-13,1,-30,2,-47r-18,-3r0,-19v7,0,13,0,18,-2r0,-106xm132,-51v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm57,-73v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm64,-64v2,1,3,3,0,4v-2,-1,-3,-3,0,-4xm99,-9v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm66,-38v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm79,-9v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm66,-7v4,-1,10,1,6,3v-3,0,-5,-1,-6,-3xm59,-7v0,0,2,0,2,1xm38,-51v14,-4,18,25,13,37v-10,2,-15,6,-25,12r3,2r-5,0v5,-19,-14,-53,14,-51xm49,-9v2,0,1,4,0,4v-2,0,-3,-4,0,-4xm42,-5v-1,-1,-3,-2,0,-2r0,2xm35,-4v2,1,2,3,0,3v-2,0,-3,-2,0,-3xm66,-228v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm122,-121v2,1,2,-1,2,-3v-2,-1,-2,1,-2,3xm122,-97v1,0,2,-5,0,-5v-3,0,-2,5,0,5xm102,-55v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm97,-58v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm31,-123r0,0r0,0xm101,-51v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm46,-100v0,0,0,-2,-1,-2v-1,0,-1,1,-1,2r2,0xm93,-38v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm89,-33v1,-1,4,-4,0,-3r0,3xm97,-18v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm26,-86v2,-1,4,-2,0,-2r0,2xm84,-20v2,-1,1,-3,0,-4v-2,1,-1,3,0,4xm37,-66v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm29,-58v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm29,-44v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm42,-15v-1,-3,-2,-7,-2,0r2,0xm26,-22v4,1,9,-2,8,-4v-3,0,-6,1,-8,4xm26,-24v3,-1,2,-4,0,-5v-1,1,-2,4,0,5","w":134},"\u00dd":{"d":"122,-220v-24,44,-20,60,-41,116v-4,-7,-9,-22,-16,-44v5,-18,11,-46,20,-82r36,0v2,2,-10,12,1,10xm25,-232v-3,0,-1,-1,-1,-1xm63,-179v2,1,3,3,0,4v-2,0,-1,-4,0,-4xm59,-159v1,33,31,64,20,104v1,15,-3,35,2,46v-10,8,-7,8,-20,9v3,-1,11,-5,4,-5v-10,0,-17,7,-22,3v6,-26,2,-66,3,-98v-7,-18,-46,-134,-40,-130v8,1,16,-5,18,2v1,-4,7,-6,14,-5v0,9,4,13,8,13v0,11,5,46,13,43v-3,8,0,14,3,18r-3,0xm90,-33v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm84,-18v2,-2,3,0,1,1xm44,-163v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm37,-166v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm30,-159v3,-1,2,-3,0,-5v-2,2,-3,4,0,5xm67,-244v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35","w":126},"\u00fd":{"d":"64,-176v-1,1,-2,3,-2,0r2,0xm44,-218v3,29,14,51,18,74v7,-17,14,-45,22,-84r35,0v-1,2,-3,9,0,15r-3,0v-18,27,-23,93,-39,112v9,18,-5,65,2,89v0,8,-12,16,-20,10v3,0,6,-1,5,-5r-22,6v3,-26,2,-57,2,-86v-14,-2,-38,-4,-41,-13v10,-11,7,-15,15,-4r2,-16v-6,0,-9,-2,-9,-5r22,0v-4,-38,-24,-67,-28,-103v6,-5,22,-3,33,-3v0,9,2,14,6,13xm39,-86v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm89,-34v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm29,-85v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm86,-17v-5,0,-6,-4,0,-3r0,3xm64,-142v0,7,0,11,4,18v0,-8,0,-10,-4,-18xm72,-122v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm75,-107v1,-4,-1,-9,-3,-6v0,2,2,4,3,6xm36,-107v5,-2,2,-16,-7,-13v4,3,7,7,7,13xm40,-102v0,-2,-3,-1,-4,-1v0,2,2,2,4,1xm22,-111v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm71,-244v-29,4,-13,-28,-6,-35r26,0v-2,17,-14,23,-20,35"},"\u00de":{"d":"122,-137v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm55,-150v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm102,-173v19,17,3,45,13,63v-4,4,-3,10,-2,14v0,12,-26,50,-40,39r-29,4v-4,-8,-3,-48,10,-33v22,1,39,-48,16,-64v-9,-10,3,-17,-6,-23v-4,5,-5,10,-5,14v-7,-2,-9,-2,-18,0v0,-7,-1,-20,3,-22v17,2,31,-10,49,-3v-2,8,10,2,9,11xm44,-128v0,2,1,5,-2,4xm44,-117v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2v1,0,2,1,2,2xm42,-108v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm38,-82v4,18,0,31,5,53v-12,8,7,33,-21,29v-3,-3,-9,-4,-15,-5v-2,-22,-2,-58,7,-66v-1,0,-2,0,-5,-2r0,-150v4,1,5,-1,4,-5v8,0,15,6,25,7r0,139xm80,-181v-1,-1,-4,-2,-4,0v1,1,3,1,4,0xm76,-149v1,1,2,2,2,-1xm111,-110v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm82,-135v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm84,-108v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm19,-90v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm11,-89v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm13,-84v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm22,-68v1,-2,2,-2,-2,-1xm38,-38v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm38,-32v3,0,0,-3,0,-1r0,1","w":120},"\u00fe":{"d":"122,-95v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm57,-106v0,1,-1,2,-2,2r0,-4v1,0,2,1,2,2xm102,-130v20,16,3,44,13,62v-4,4,-3,10,-2,14v0,12,-26,50,-40,39r-29,4v-4,-8,-3,-48,10,-33v24,2,38,-49,16,-64v-9,-10,4,-16,-6,-22v-4,5,-5,9,-5,13v-7,-2,-9,-2,-18,0v0,-7,-1,-20,3,-22v17,2,31,-10,49,-3v-2,8,11,2,9,12xm44,-86v0,2,1,5,-2,4xm44,-75v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,-1,1,-2,2,-2v1,0,2,1,2,2xm42,-66v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm38,-40v4,18,0,31,5,53v-12,8,7,33,-21,29v-3,-4,-9,-4,-15,-4v-2,-23,-2,-58,7,-67v-1,0,-2,0,-5,-2r0,-150v4,1,5,-1,4,-5v8,0,15,6,25,7r0,139xm80,-139v-1,-1,-4,-2,-4,0v1,1,3,1,4,0xm76,-107v1,1,2,2,2,-1xm111,-68v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm82,-93v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm84,-66v3,0,2,-5,0,-5v-1,0,-2,5,0,5xm18,-49v0,2,3,0,1,0r-1,0xm11,-47v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm13,-42v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm22,-25v2,-2,1,-4,-2,-2xm38,5v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm38,10v3,0,0,-3,0,-1r0,1","w":120},"\u00ad":{"d":"84,-118v-28,-1,-48,3,-75,0r0,-19v12,2,19,-6,28,0v3,-3,3,-5,4,0r43,0v2,4,2,14,0,19xm31,-138v1,2,3,2,3,-1","w":92},"\u2212":{"d":"84,-118v-28,-1,-48,3,-75,0r0,-19v12,2,19,-6,28,0v3,-3,3,-5,4,0r43,0v2,4,2,14,0,19xm31,-138v1,2,3,2,3,-1","w":92},"\u00d7":{"d":"8,-151v8,-20,17,-3,35,9v5,-4,13,-10,22,-19v4,6,12,10,17,12v-7,-1,-5,0,-4,5v-20,2,-28,20,-12,27v0,7,22,16,1,21v-12,-8,-11,-16,-28,-17v-10,11,-17,21,-27,11v2,-2,-2,-3,-4,-4v7,-9,18,-13,22,-25v-8,-6,-13,-15,-22,-20xm43,-115v0,-1,-1,-1,-2,-1v0,1,1,1,2,1","w":92},"\u00b9":{"d":"33,-232v1,0,1,0,1,1xm34,-230r0,2r0,-2xm26,-230v2,1,0,3,0,1r0,-1xm37,-219r0,3r0,-3xm18,-205v2,0,1,3,0,3v-1,0,-2,-3,0,-3xm6,-215v1,0,1,2,0,2r0,-2xm7,-206v-4,1,-5,-1,-3,-4xm40,-159r0,2r0,-2xm38,-196r-1,82v1,-2,1,-2,2,0v0,11,-7,18,-21,16r3,-104v-6,-4,2,-9,-2,-12v-4,0,-7,15,-11,4v2,-1,0,-6,0,-8v1,-1,5,12,5,2v0,-10,12,-7,17,-12v0,3,0,3,3,2v2,0,3,-1,4,-1v-2,10,0,26,0,34xm20,-221v0,-1,0,-5,-1,-2v0,1,0,2,1,2xm20,-219v-1,0,-2,-2,-2,0r2,0xm27,-206r0,-3r0,3xm31,-201r0,-3r0,3xm17,-214v2,0,1,-2,0,-2r0,2xm20,-206r0,-3r0,3xm23,-202v1,0,2,-3,0,-3v-1,0,-1,3,0,3xm26,-199v0,0,2,-1,0,-1r0,1xm21,-199v0,0,2,-1,0,-1r0,1xm36,-171v2,-1,0,-3,0,-1r0,1xm22,-179r0,-3r0,3xm36,-152r0,-2v-2,0,-1,2,0,2xm27,-98r0,-3r0,3xm25,-98r0,-3r0,3","w":43},"\u00b2":{"d":"67,-213v0,0,0,2,-1,2v0,0,0,-2,1,-2xm24,-232v39,-9,51,29,34,57v-9,1,-12,2,-16,8r3,0v0,6,-6,7,-11,5v4,-13,12,-19,12,-41v0,-8,-4,-12,-13,-12v-13,7,-5,15,-14,23v-4,0,-16,0,-13,-9v-1,-9,10,-27,18,-31xm25,-202r0,2r0,-2xm53,-167v0,2,-2,1,-3,1v0,-1,2,-1,3,-1xm49,-168r0,2r0,-2xm49,-154v2,0,1,2,0,2r0,-2xm7,-120r22,-36v7,3,12,-2,17,-1v-4,14,-8,28,-21,34v0,7,-13,1,-18,3xm54,-99v0,1,0,1,-1,1xm26,-123v1,0,1,0,1,1xm62,-110v4,14,-12,9,-22,12v1,-1,5,-2,2,-3v-6,3,-12,-2,-18,1v0,-3,5,-1,3,-6r-10,0v7,5,-2,6,-6,9v-6,-1,-5,-11,-5,-20v12,-1,32,4,37,-4v-1,7,9,3,14,4v5,-5,7,2,7,7r-2,0xm35,-99v0,1,0,1,-1,1xm28,-98v0,-1,1,-1,2,-1v0,1,-1,1,-2,1xm24,-102v-2,1,1,3,-3,3v0,-2,2,-2,3,-3xm50,-210v4,0,3,-1,0,-1r0,1xm46,-210v0,0,2,0,2,-1v0,0,-2,0,-2,1xm60,-185v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm48,-186r0,-3r0,3xm49,-176v1,0,4,-1,1,-1xm19,-199r0,-2r0,2xm59,-114r0,-2v-2,0,-1,2,0,2xm49,-111r0,-3r0,3xm56,-103v1,0,2,-3,0,-3v-2,0,-1,3,0,3xm28,-129r0,-2r0,2xm23,-131r0,-3r0,3xm17,-135r0,2r0,-2xm34,-114r0,-2v-2,0,-1,2,0,2xm21,-121r0,-3r0,3xm31,-110v0,-2,-2,-6,-2,-2v1,1,2,1,2,2xm16,-123v2,0,5,-1,1,-1xm28,-110r0,-2r0,2xm28,-109v1,0,1,0,1,-1xm30,-106r0,-3r0,3xm21,-114v0,2,3,0,1,0r-1,0xm24,-111v0,-1,0,-1,-1,-1xm23,-107r0,-3r0,3xm17,-112v2,-1,0,-3,0,-1r0,1xm14,-114r0,-2v-2,0,-1,2,0,2xm17,-109v0,2,3,0,1,0r-1,0xm10,-113v0,0,2,-1,0,-1r0,1xm17,-101v0,-2,-2,-6,-2,-2v0,2,2,0,2,2xm11,-107r0,-3r0,3xm31,-112r0,1r0,-1xm17,-103r0,1r0,-1","w":67},"\u00b3":{"d":"63,-217v1,0,2,3,0,3v-2,0,-1,-3,0,-3xm31,-233v2,16,-6,22,-6,35v-7,0,-22,2,-14,-5v-7,-7,6,-33,20,-30xm64,-154v2,0,1,2,0,2r0,-2xm51,-169v16,11,19,61,-5,67v1,0,1,-3,0,-3v-3,0,1,4,-1,3v-2,-6,-5,-2,-9,1v1,-22,14,-33,7,-62v-7,7,-17,-4,-16,-14v13,-5,16,-4,17,-21v1,-22,-18,-16,-7,-38v25,3,23,30,25,53xm25,-131v1,0,1,0,1,1xm45,-101r0,3r0,-3xm22,-138v-1,13,18,21,11,37v-20,4,-25,-19,-26,-37r15,0xm40,-99v0,2,-2,1,-3,1xm53,-211r0,-3r0,3xm46,-211r0,-3r0,3xm40,-215v1,0,2,-3,0,-3v-2,0,-1,3,0,3xm47,-208r0,-2r0,2xm47,-190v0,2,3,0,1,0r-1,0xm46,-186r0,-3r0,3xm18,-200r0,-3r0,3xm44,-173r0,-3r0,3xm36,-177r0,-3r0,3xm15,-199r0,-2r0,2xm39,-173v1,-1,2,-3,0,-3r0,3xm38,-168v0,2,3,2,4,1v-2,0,-2,-2,-2,-6v-1,4,-2,5,-2,5xm36,-171v0,-3,-1,-4,-3,-4v0,3,1,4,3,4xm30,-173v2,-2,0,-4,-2,-3xm47,-126r0,-3r0,3xm44,-121v0,2,3,0,1,0r-1,0xm47,-114r0,-2r0,2xm43,-116v1,-3,-2,-4,-2,-1v0,1,1,1,2,1xm50,-106r0,-3r0,3xm40,-112v1,-1,2,-3,0,-3r0,3xm39,-109r0,-2r0,2xm41,-108v-1,0,-3,1,-1,1xm17,-130r-1,0r1,0xm13,-124v2,-1,2,-1,0,-2r0,2xm21,-111r0,-3r0,3xm15,-116v1,-1,1,-2,0,-3r0,3xm11,-117r0,-3r0,3xm15,-111r0,-3r0,3","w":65},"\u00bd":{"d":"40,-232v1,0,1,0,1,1xm41,-230r0,2r0,-2xm33,-230v2,1,0,3,0,1r0,-1xm44,-219r0,3r0,-3xm25,-205v2,0,1,3,0,3v-1,0,-2,-3,0,-3xm13,-215v1,0,1,2,0,2r0,-2xm14,-206v-4,1,-5,-1,-3,-4xm47,-159r0,2r0,-2xm45,-196r-1,82v1,-2,1,-2,2,0v0,11,-7,18,-21,16r3,-104v-6,-4,2,-9,-2,-12v-4,0,-7,15,-11,4v2,-1,0,-6,0,-8v1,-1,5,12,5,2v0,-10,12,-7,17,-12v0,3,0,3,3,2v2,0,3,-1,4,-1v-2,10,0,26,0,34xm27,-221v0,-1,0,-5,-1,-2v0,1,0,2,1,2xm27,-219v-1,0,-2,-2,-2,0r2,0xm34,-206r0,-3r0,3xm38,-201r0,-3r0,3xm24,-214v2,0,1,-2,0,-2r0,2xm27,-206r0,-3r0,3xm30,-202v1,0,2,-3,0,-3v-1,0,-1,3,0,3xm33,-199v0,0,2,-1,0,-1r0,1xm28,-199v0,0,2,-1,0,-1r0,1xm43,-171v2,-1,0,-3,0,-1r0,1xm29,-179r0,-3r0,3xm43,-152r0,-2v-2,0,-1,2,0,2xm34,-98r0,-3r0,3xm32,-98r0,-3r0,3xm168,-114v0,0,0,2,-1,2v0,0,0,-2,1,-2xm125,-133v39,-9,51,29,34,57v-9,1,-12,2,-16,8r3,0v0,6,-6,7,-11,5v4,-13,12,-19,12,-41v0,-8,-4,-12,-13,-12v-13,7,-5,15,-14,23v-4,0,-16,0,-13,-9v-1,-9,10,-27,18,-31xm126,-103r0,2r0,-2xm154,-68v0,2,-2,1,-3,1v0,-1,2,-1,3,-1xm150,-69r0,2r0,-2xm150,-55v2,0,1,2,0,2r0,-2xm108,-21r22,-36v7,3,12,-2,17,-1v-4,14,-8,28,-21,34v0,7,-13,1,-18,3xm155,0v0,1,0,1,-1,1xm127,-24v1,0,1,0,1,1xm163,-11v4,14,-12,9,-22,12v1,-1,5,-2,2,-3v-6,3,-12,-2,-18,1v0,-3,5,-1,3,-6r-10,0v7,5,-2,6,-6,9v-6,-1,-5,-11,-5,-20v12,-1,32,4,37,-4v-1,7,9,3,14,4v5,-5,7,2,7,7r-2,0xm136,0v0,1,0,1,-1,1xm129,1v0,-1,1,-1,2,-1v0,1,-1,1,-2,1xm125,-3v-2,1,1,3,-3,3v0,-2,2,-2,3,-3xm151,-111v4,0,3,-1,0,-1r0,1xm147,-111v0,0,2,0,2,-1v0,0,-2,0,-2,1xm161,-86v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm149,-87r0,-3r0,3xm150,-77v1,0,4,-1,1,-1xm120,-100r0,-2r0,2xm160,-15r0,-2v-2,0,-1,2,0,2xm150,-12r0,-3r0,3xm157,-4v1,0,2,-3,0,-3v-2,0,-1,3,0,3xm129,-30r0,-2r0,2xm124,-32r0,-3r0,3xm118,-36r0,2r0,-2xm135,-15r0,-2v-2,0,-1,2,0,2xm122,-22r0,-3r0,3xm132,-11v0,-2,-2,-6,-2,-2v1,1,2,1,2,2xm117,-24v2,0,5,-1,1,-1xm129,-11r0,-2r0,2xm129,-10v1,0,1,0,1,-1xm131,-7r0,-3r0,3xm122,-15v0,2,3,0,1,0r-1,0xm125,-12v0,-1,0,-1,-1,-1xm124,-8r0,-3r0,3xm118,-13v2,-1,0,-3,0,-1r0,1xm115,-15r0,-2v-2,0,-1,2,0,2xm118,-10v0,2,3,0,1,0r-1,0xm111,-14v0,0,2,-1,0,-1r0,1xm118,-2v0,-2,-2,-6,-2,-2v0,2,2,0,2,2xm112,-8r0,-3r0,3xm132,-13r0,1r0,-1xm118,-4r0,1r0,-1xm163,-228v2,4,-20,24,-7,26v-12,3,-22,14,-31,36v2,1,3,2,4,4v-3,1,-18,6,-14,15r5,0v-23,13,-30,52,-51,69v-9,11,-13,15,-6,22v-3,-1,-10,4,-4,6v-11,-2,-34,46,-37,47v-6,0,-13,5,-23,4v2,-11,7,-12,14,-24r96,-155v14,-10,12,-19,32,-50r22,0xm93,-101v-1,4,-3,3,-5,0r5,0xm76,-72v0,2,-1,2,-3,2v-2,0,-2,0,-2,-2v0,-1,0,-2,2,-2v2,0,3,1,3,2xm52,-36v-2,3,-4,4,-6,0r6,0xm30,-27v2,0,5,-4,0,-4v-4,0,-1,4,0,4","w":170},"\u00bc":{"d":"40,-232v1,0,1,0,1,1xm41,-230r0,2r0,-2xm33,-230v2,1,0,3,0,1r0,-1xm44,-219r0,3r0,-3xm25,-205v2,0,1,3,0,3v-1,0,-2,-3,0,-3xm13,-215v1,0,1,2,0,2r0,-2xm14,-206v-4,1,-5,-1,-3,-4xm47,-159r0,2r0,-2xm46,-196v-4,19,-2,60,-2,82v1,-1,2,-3,2,0v-1,11,-7,19,-21,16r3,-104v-6,-4,2,-9,-2,-12v-4,0,-7,15,-11,4v3,-2,1,-5,0,-8v1,-1,5,12,5,2v0,-10,12,-7,17,-12v0,4,1,3,4,2v2,0,2,-1,3,-1v-2,10,0,26,0,34xm27,-221v0,-1,0,-5,-1,-2v0,1,0,2,1,2xm27,-219v-1,0,-2,-2,-2,0r2,0xm34,-206r0,-3r0,3xm38,-201r0,-3r0,3xm24,-214v2,0,1,-2,0,-2r0,2xm27,-206r0,-3r0,3xm30,-205r0,3v1,0,2,-3,0,-3xm33,-199v0,0,2,-1,0,-1r0,1xm28,-199v0,0,2,-1,0,-1r0,1xm43,-171v2,-1,0,-3,0,-1r0,1xm29,-179r0,-3r0,3xm43,-152r0,-2v-2,0,-1,2,0,2xm34,-98r0,-3r0,3xm32,-98r0,-3r0,3xm164,-228v1,3,-20,24,-7,26v-12,3,-22,14,-31,36v1,1,4,1,3,4v-3,1,-18,6,-14,15r5,0v-23,14,-31,49,-50,69v-8,9,-17,17,-6,20v1,4,-14,2,-5,8v-11,-2,-34,46,-37,47v-6,0,-13,5,-23,4v2,-11,7,-12,14,-24r96,-155v14,-10,12,-19,32,-50r23,0xm94,-101v-2,3,-4,4,-6,0r6,0xm76,-72v0,2,0,2,-2,2v-2,0,-3,0,-3,-2v0,-1,1,-2,3,-2v2,0,2,1,2,2xm52,-36v-2,3,-4,4,-5,0r5,0xm31,-27v1,0,4,-4,0,-4v-5,0,-2,4,0,4xm149,-136r0,3r0,-3xm156,-85v2,0,1,3,0,3v-1,0,-2,-3,0,-3xm166,-53r0,1r0,-1xm147,-133v7,15,3,53,2,75v0,6,5,10,13,9v3,22,-20,11,-12,41v-2,2,-3,8,-8,7r2,-2r-11,0v1,-6,-2,-16,2,-19v-9,-1,2,-51,-7,-62v6,0,4,0,2,-7r-1,-2v1,9,-15,27,-13,42r13,0v-1,6,3,17,-4,17v-9,0,-18,-1,-26,-2v-2,-40,23,-63,32,-97r16,0xm157,-32v-1,2,-3,0,-1,0r1,0xm134,-1v2,1,1,1,0,2v-1,-1,-1,-1,0,-2xm103,-30v-3,0,-6,0,-6,-3v4,0,5,1,6,3xm139,-131r0,-2r0,2xm134,-131r0,-2r0,2xm131,-122r3,-2xm135,-120v1,0,1,0,1,-1xm134,-120r0,-3r0,3xm142,-94v1,0,1,0,1,-1xm138,-94v2,0,1,-3,0,-3v-1,0,-2,3,0,3xm130,-95r0,-3v-1,1,-2,3,0,3xm135,-89r0,-1r0,1xm125,-98v-1,1,-2,0,-2,2v1,0,2,-1,2,-2xm139,-56v2,0,1,-2,0,-2r0,2xm142,-19r0,-3r0,3xm134,-25v0,0,1,2,1,0r-1,0xm135,-14v2,0,1,-3,0,-3v-1,0,-2,3,0,3xm135,-8v2,-1,0,-3,0,-1r0,1","w":170},"\u00be":{"d":"60,-217v1,0,2,3,0,3v-2,0,-1,-3,0,-3xm28,-233v2,16,-6,22,-6,35v-7,0,-22,2,-14,-5v-5,-6,6,-33,20,-30xm61,-154v2,0,1,2,0,2r0,-2xm48,-169v18,9,18,61,-4,67r0,-3v-1,1,0,3,-2,3v-2,-6,-5,-2,-9,1v1,-22,14,-33,7,-62v-8,7,-16,-5,-16,-13v11,-6,17,-5,17,-22v0,-22,-18,-16,-7,-38v25,3,23,30,25,53xm22,-131v1,0,1,0,1,1xm42,-101r0,3r0,-3xm19,-138v3,12,16,21,11,37v-10,1,-14,-2,-22,-10r-4,-27r15,0xm34,-98v1,-1,5,-1,2,0r-2,0xm50,-211r0,-3r0,3xm44,-211r0,-3r0,3xm37,-215v1,0,2,-3,0,-3v-2,0,-1,3,0,3xm45,-208r0,-2r0,2xm45,-189v0,0,2,-1,0,-1r0,1xm44,-186r0,-3r0,3xm15,-200r0,-3r0,3xm41,-173v2,-1,0,-5,-1,-2v0,0,0,2,1,2xm33,-180r0,3r0,-3xm12,-199r0,-2r0,2xm36,-173v1,-1,2,-3,0,-3r0,3xm36,-168v0,3,2,2,3,1v-2,0,-2,-2,-2,-6v-1,4,-1,5,-1,5xm34,-171v0,-3,-2,-4,-4,-4v0,3,2,4,4,4xm27,-173v2,-1,0,-3,-1,-3xm45,-126r0,-3r0,3xm41,-121v0,2,3,0,1,0r-1,0xm45,-114r0,-2v-2,0,-1,2,0,2xm40,-116r0,-3r0,3xm47,-106r0,-3r0,3xm37,-112v1,-1,2,-3,0,-3r0,3xm36,-109r0,-2r0,2xm38,-108v-1,0,-3,1,-1,1xm14,-130r-1,0r1,0xm11,-124v1,-1,1,-1,0,-2r0,2xm18,-111r0,-3r0,3xm12,-116v1,-1,1,-2,0,-3r0,3xm8,-117r0,-3r0,3xm12,-111r0,-3r0,3xm164,-228v1,3,-20,24,-7,26v-12,3,-22,14,-31,36v1,1,4,1,3,4v-3,1,-18,6,-14,15r5,0v-23,14,-31,49,-50,69v-8,9,-17,17,-6,20v1,4,-14,2,-5,8v-11,-2,-34,46,-37,47v-6,0,-13,5,-23,4v2,-11,7,-12,14,-24r96,-155v14,-10,12,-19,32,-50r23,0xm94,-101v-2,3,-4,4,-6,0r6,0xm76,-72v0,2,0,2,-2,2v-2,0,-3,0,-3,-2v0,-1,1,-2,3,-2v2,0,2,1,2,2xm52,-36v-2,3,-4,4,-5,0r5,0xm31,-27v1,0,4,-4,0,-4v-5,0,-2,4,0,4xm149,-136r0,3r0,-3xm156,-85v2,0,1,3,0,3v-1,0,-2,-3,0,-3xm166,-53r0,1r0,-1xm147,-133v7,15,3,53,2,75v0,6,5,10,13,9v3,22,-20,11,-12,41v-2,2,-3,8,-8,7r2,-2r-11,0v1,-6,-2,-16,2,-19v-9,-1,2,-51,-7,-62v6,0,4,0,2,-7r-1,-2v1,9,-15,27,-13,42r13,0v-1,6,3,17,-4,17v-9,0,-18,-1,-26,-2v-2,-40,23,-63,32,-97r16,0xm157,-32v-1,2,-3,0,-1,0r1,0xm134,-1v2,1,1,1,0,2v-1,-1,-1,-1,0,-2xm103,-30v-3,0,-6,0,-6,-3v4,0,5,1,6,3xm139,-131r0,-2r0,2xm134,-131r0,-2r0,2xm131,-122r3,-2xm135,-120v1,0,1,0,1,-1xm134,-120r0,-3r0,3xm142,-94v1,0,1,0,1,-1xm138,-94v2,0,1,-3,0,-3v-1,0,-2,3,0,3xm130,-95r0,-3v-1,1,-2,3,0,3xm135,-89r0,-1r0,1xm125,-98v-1,1,-2,0,-2,2v1,0,2,-1,2,-2xm139,-56v2,0,1,-2,0,-2r0,2xm142,-19r0,-3r0,3xm134,-25v0,0,1,2,1,0r-1,0xm135,-14v2,0,1,-3,0,-3v-1,0,-2,3,0,3xm135,-8v2,-1,0,-3,0,-1r0,1","w":170},"\u0141":{"d":"69,-221v1,-1,2,-2,2,1xm66,-202r0,-6v2,2,1,4,0,6xm35,-230v3,-1,3,1,3,4v0,2,-2,4,-3,4r0,-8xm66,-193v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm39,-217v0,1,-2,3,-2,1v0,-1,1,-1,2,-1xm62,-191v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm68,-182v3,1,1,6,-1,3v0,-1,0,-2,1,-3xm53,-197v2,0,1,3,0,4v-2,-1,-3,-3,0,-4xm65,-186v-1,2,-5,11,-3,1v1,-1,2,-1,3,-1xm43,-183v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm39,-173v-2,0,-2,-4,0,-5v1,2,1,4,0,5xm54,-173v2,-6,-16,-15,-14,-22r-3,0v-1,-8,11,-24,5,-33r11,0v1,2,-5,4,-1,4v4,0,6,-2,7,-6v6,1,9,4,9,10v-12,-4,1,17,-9,18v2,-5,-2,-6,-8,-6v-2,3,-1,6,2,9v-3,-2,-6,-1,-9,2v12,12,11,7,18,24r4,-2r0,22v4,-10,31,-13,43,-9v-5,1,-20,7,-20,15r6,0v-14,5,-22,16,-34,29r3,0v-8,12,12,23,0,34v6,10,-2,34,5,44r-35,0v7,-6,2,-34,3,-53v-5,9,-22,7,-36,7v11,-14,33,-27,36,-43r5,1v1,-7,0,-16,-7,-10v8,-8,4,-21,3,-32v6,-4,8,6,15,4v-2,-3,-8,-8,1,-7xm35,-153v1,1,2,2,2,5v-1,-2,-2,-2,-2,-5xm135,-40v1,3,-3,2,-5,2v1,-2,3,-2,5,-2xm69,-81v1,-1,2,-2,2,1xm128,-15v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm68,-53v2,1,4,2,0,2r0,-2xm37,-33v9,-5,34,-1,43,-3v15,-2,44,3,48,12v-4,0,-5,25,-11,24v-23,0,-49,-3,-70,-1r1,1v-1,-4,-13,-2,-13,-9r0,-27xm35,0v0,-1,4,-2,4,0v-1,1,-3,1,-4,0xm59,-222v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm57,-215v-3,0,-7,-1,-7,2v3,0,6,-1,7,-2xm46,-199v2,-1,3,-4,0,-5v-3,1,-2,4,0,5xm57,-166v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm61,-160v3,0,3,-6,0,-6r0,6xm55,-162v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm50,-158v2,0,3,-4,0,-4v-2,0,-1,4,0,4xm49,-154r-3,15v5,1,9,-8,6,-13xm53,-140v-1,0,-2,1,-2,2xm46,-133v1,-1,3,-2,0,-2r0,2xm50,-93v4,0,2,-5,0,-1r0,1xm39,-91v3,-1,4,-4,0,-4r0,4xm90,-31v1,2,8,0,3,-1xm42,-80v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm113,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm57,-51v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm104,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm59,-44v2,0,4,0,3,-2v-2,0,-4,0,-3,2xm55,-46v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm93,0v2,0,1,-5,0,-5v-2,0,-3,5,0,5xm42,-49r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm77,0v3,0,2,-4,0,-5v-2,1,-2,4,0,5","w":132},"\u0142":{"d":"72,-200v-5,1,-3,-4,-3,-7v2,0,3,3,3,7xm84,-192v9,4,1,20,-5,14v0,-1,2,-5,5,-14xm40,-229v-1,3,2,9,-2,9v1,-3,-2,-9,2,-9xm58,-205v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm86,-174r-2,8v1,-3,-2,-9,2,-8xm71,-181v3,1,2,4,0,5v-2,-1,-3,-4,0,-5xm25,-181v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm5,-180v0,-9,9,-16,20,-14v-1,2,-7,8,-4,13v-5,-4,-11,0,-16,1xm136,-42v1,4,-2,7,-4,3v1,-2,2,-3,4,-3xm12,-161v-6,-3,-18,0,-24,2v-1,-18,10,-19,18,-11v5,-8,35,-1,30,-17v3,-7,-1,-11,9,-24v-10,-2,3,-5,1,-16v13,-2,23,-1,24,7r4,0v1,2,-12,27,-12,20v1,-5,-6,-9,-9,-5v2,2,7,11,3,16v5,-1,6,2,5,6v2,-4,4,-5,8,-6v1,8,-14,13,1,17v1,5,-2,14,1,17v5,-9,30,-10,41,-7v-5,1,-20,7,-20,15r5,0v-12,6,-22,15,-32,29v3,12,7,21,5,36v2,-1,4,-2,5,1v-5,1,-4,9,-4,16v13,2,-4,36,22,28v0,1,34,-1,37,11v-4,14,-8,22,-11,26v-24,-1,-44,2,-59,-5v-13,4,-12,1,-22,6r0,-37v8,-1,22,4,24,-4r-24,0r2,-53v-5,9,-22,7,-36,7v12,-14,28,-25,37,-43r3,1v-5,-3,-4,-30,-14,-27v3,-16,-9,-7,-18,-10r0,4xm3,-159v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm130,-18v1,1,4,4,0,3r0,-3xm62,-218v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm66,-213v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm56,-209v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm58,-172v0,-3,-2,-5,-7,-7v0,5,0,7,7,7xm49,-168v2,0,3,-3,0,-4v0,-1,-1,-2,-2,-2v-5,2,1,4,2,6xm34,-168v5,-1,7,-5,0,-4r0,4xm14,-187v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm45,-148v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm-8,-161v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm44,-93v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm71,-46v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm66,-37v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm49,-172v0,1,-1,2,-2,2v0,-1,1,-2,2,-2","w":135},"\u017d":{"d":"96,-230v2,1,1,3,0,4v-2,0,-1,-3,0,-4xm91,-228v2,1,2,1,0,2v-1,-1,-1,-1,0,-2xm87,-228v-2,2,-8,9,-6,5v1,-2,3,-4,-1,-3v-3,0,-4,1,-6,3v0,-6,7,-5,13,-5xm87,-219v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm94,-210v-2,0,-4,0,-5,-2v2,0,6,-1,5,2xm69,-223v0,-2,2,-4,2,-1xm89,-208v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm107,-223v-5,18,-10,46,-27,52v-1,-9,15,-12,5,-24v5,-1,8,-2,11,-5r-7,0v8,-10,7,-15,18,-23xm76,-212v0,2,1,5,-2,4xm71,-212v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm63,-219v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm83,-201v-2,0,-7,4,-7,0r7,0xm67,-204v1,1,1,2,0,3v-1,-1,-1,-2,0,-3xm41,-217v4,-3,18,-21,22,-4v-4,0,-6,-1,-9,2v2,11,10,7,13,9r-4,9v-3,-2,-4,-9,-12,-7v0,-2,-1,-5,-1,-9r-9,0xm77,-197v0,4,-4,9,-10,9v-1,-7,1,-9,10,-9xm83,-186v-3,0,-8,3,-9,1v1,-4,4,-4,9,-1xm52,-204v1,0,1,1,1,2xm91,-164v2,1,2,2,0,3v-1,-1,-1,-2,0,-3xm38,-210v8,-2,3,5,3,9v-7,-4,-11,1,-24,0v0,-2,1,-7,-1,-7v-4,-1,-4,5,-6,7r0,-28v14,2,18,-4,31,-5r-7,4v5,2,7,5,7,9v-6,-1,-2,7,-3,11xm61,-171v1,2,2,3,0,5v-3,-1,-2,-3,0,-5xm81,-139v0,-2,3,0,1,0r-1,0xm74,-108v-19,19,-18,49,-33,72r-36,0v2,-13,15,-7,9,-19v8,-24,20,-67,38,-87v-2,-1,-3,-2,-3,-4v12,4,4,-9,12,-11v-3,0,-6,-1,-8,2r0,-9v4,6,13,1,12,-8v0,-4,-5,-5,-2,-9v3,1,8,4,5,10v4,0,5,0,8,-2v-4,7,4,9,-2,18v13,3,11,-16,17,-24v9,11,-15,24,-2,33v-9,3,-19,8,-10,13v-8,2,-9,19,-5,25xm56,-62v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm47,-38v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm96,0v-29,2,-54,-13,-71,0r-20,0r0,-31v11,-2,55,4,84,-5v-1,6,8,2,12,3r1,-5v8,4,2,20,3,33v-6,-1,-14,1,-9,5xm36,-2v2,0,3,4,0,4v-2,0,-1,-4,0,-4xm3,-2v2,0,3,4,0,4v-2,0,-3,-4,0,-4xm56,-221v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm34,-221v2,-1,5,-6,0,-5r0,5xm30,-223v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm32,-210v2,-2,1,-3,0,-5v-2,2,-3,4,0,5xm25,-212v4,0,5,-3,5,-7v-2,2,-4,4,-5,7xm17,-223v1,1,1,3,1,0r-1,0xm30,-204v2,-1,1,-3,0,-4v-2,1,-3,3,0,4xm71,-159v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm18,-212v2,-2,3,-4,0,-5v-2,2,-1,3,0,5xm67,-161v3,-1,2,-4,0,-5v-2,1,-3,4,0,5xm18,-206v2,0,6,1,5,-2xm69,-155v2,-1,3,-3,0,-4v-2,1,-1,3,0,4xm71,-148v2,0,4,0,3,-3xm65,-153v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm70,-140v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm63,-139v1,-1,2,-4,0,-5v-3,1,-2,4,0,5xm58,-138v1,1,0,-6,0,-6v-1,3,-1,3,0,6xm50,-131r0,-4v-2,0,-1,4,0,4xm63,-115v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm52,-120v1,-4,-2,-4,-2,-1v0,1,1,1,2,1xm47,-121v1,-2,3,-2,3,-5v-2,1,-4,1,-3,5xm27,-73v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm25,-53v2,0,2,0,2,-2xm18,-53v4,1,3,-2,3,-5xm21,-46v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm7,-22v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm10,-2v3,0,8,2,7,-3v-3,0,-5,1,-7,3xm58,-254v8,-13,7,-35,32,-31v-6,9,-21,59,-41,43v-2,0,-23,-40,-24,-43v24,-8,22,25,33,31xm23,-278v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm34,-263v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm30,-263v2,1,0,3,0,1r0,-1xm41,-246v1,0,3,1,1,1","w":112},"\u017e":{"d":"58,-202v0,2,0,2,-2,2v0,-2,0,-2,2,-2xm51,-185v-3,2,-7,1,-10,0v1,-2,8,-2,10,0xm90,-209v10,1,16,-14,20,-11v-1,12,-6,22,-4,35v2,-4,6,-5,8,0v0,8,-10,4,-15,4v1,18,-10,25,-7,38v-14,4,-9,16,-17,30v2,0,3,2,3,6v-5,0,-8,2,-8,9v2,11,-12,20,-12,31v0,3,25,14,22,19v-14,-1,-39,-3,-31,13v8,-3,33,3,44,-2v3,4,10,0,14,-1v3,12,7,33,-8,33v1,4,0,7,-5,6v-18,-2,-53,-15,-64,-1v-7,0,-19,1,-22,-2r2,-32r11,0r-11,-3v2,-5,2,-7,2,-13v-2,0,-6,1,-6,-1v29,-41,27,-47,48,-95v9,1,-1,-22,8,-15v10,-2,0,-16,3,-22v-2,2,-4,8,-9,9v0,-7,0,-14,-2,-20v5,2,8,0,8,-5v2,-8,-10,-6,-15,-4v-6,6,-24,5,-33,3r0,-27v13,3,19,-4,30,-5v3,27,14,-12,21,3v10,1,26,-5,34,3v-1,3,-7,9,-9,17xm75,-46v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm65,-46v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm15,-85v1,-1,4,-1,2,1xm12,-74v2,1,3,3,0,4v-2,0,-1,-3,0,-4xm10,-67v1,2,-3,6,-2,2xm4,-61v1,2,-1,2,-3,2xm-3,-56v0,2,0,2,-2,2xm41,-2r0,2v-1,-1,-1,-1,0,-2xm-12,-50v-2,4,-5,5,-9,5v0,-5,4,-5,9,-5xm71,-216v3,0,2,-3,0,-4v-2,1,-3,4,0,4xm65,-213v-1,-1,-4,-5,-3,0r3,0xm45,-218v0,2,3,0,1,0r-1,0xm39,-221v1,-1,3,-1,1,-2v-1,1,-3,1,-1,2xm52,-209v0,-3,-2,-4,-7,-4v-1,5,3,4,7,4xm78,-172v2,-3,1,-5,0,-9v-3,4,-2,6,0,9xm32,-211v1,-1,3,-2,0,-2r0,2xm23,-218v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm25,-204v1,0,1,-1,1,-2xm78,-146v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm60,-154v2,1,2,-1,2,-3xm51,-122v2,-1,4,-2,0,-2r0,2xm63,-53v2,-1,2,-1,0,-2v-1,1,-1,1,0,2xm68,-49v1,-1,1,-1,0,-2v-2,1,-2,1,0,2xm62,-48v2,0,3,-3,0,-4v-2,1,-1,3,0,4xm34,-35v-1,-1,-6,-2,-7,0v2,1,5,2,7,0xm17,-4v3,0,5,0,4,-3xm59,-254v8,-13,7,-35,32,-31v-6,9,-21,59,-41,43v-2,0,-23,-40,-24,-43v24,-8,22,25,33,31xm24,-278v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm35,-263v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm31,-263v2,1,0,3,0,1r0,-1xm42,-246v1,0,3,1,1,1","w":117},"\u2260":{"d":"105,-133v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm96,-161v0,3,-17,22,-9,26v12,-5,15,2,13,13r-30,0v-3,4,-6,9,-9,16v15,1,30,-2,41,3v-2,6,2,12,-2,15r-51,-1v-3,3,-4,11,3,9v-7,4,-14,10,-17,18r-23,-1r17,-26r-20,0r0,-14v22,3,34,-5,43,-19r-34,2r2,-2r-11,0v0,-6,0,-11,-1,-15r51,0v5,-8,5,-7,14,-24r23,0xm75,-84v-1,1,-4,0,-2,0r2,0xm12,-119v0,1,0,1,-1,1xm88,-132v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm79,-126r0,-2v-1,1,-1,1,0,2xm50,-134v2,-1,0,-3,0,-1r0,1xm28,-133v0,-1,2,-2,0,-2r0,2xm25,-126v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm19,-126v1,-1,1,-2,0,-3v-1,1,-1,2,0,3xm12,-126v1,-1,3,-2,0,-3v-1,1,-1,2,0,3","w":107},"\u2264":{"d":"28,-121v12,15,69,23,51,42v-27,-7,-44,-21,-67,-32v-4,-5,-6,-19,9,-21v20,-10,38,-22,60,-30v0,5,2,8,5,9v-14,15,-36,21,-58,32xm9,-67v13,-2,26,2,31,-4r1,4r43,0v2,4,3,14,0,19v-27,-1,-52,5,-75,0r0,-19xm41,-131r0,1r0,-1xm39,-132r0,-1r0,1xm80,-86v0,0,2,-1,0,-1r0,1xm37,-128r1,0r-1,0xm63,-101v0,0,1,2,1,0r-1,0xm24,-119r0,0r0,0xm15,-127r0,0r0,0xm19,-119r0,0r0,0xm13,-124r0,-1r0,1xm15,-123r0,1r0,-1xm12,-120r0,0r0,0xm10,-117v3,0,4,-1,2,-3xm12,-115r0,0r0,0xm31,-67v1,1,3,1,3,-1v-1,-1,-3,-1,-3,1","w":92},"\u2265":{"d":"65,-121v-20,-11,-42,-15,-57,-32v7,-16,15,-5,42,9r34,18v-3,34,-35,22,-54,44v-8,-4,-16,9,-21,-1v2,-20,44,-24,56,-38xm9,-48v-2,-6,-2,-11,0,-19r43,0v3,-6,22,2,33,0r0,19v-27,5,-46,-2,-76,0xm78,-127r0,0r0,0xm80,-124r0,-1r0,1xm82,-120r-1,0r1,0xm78,-123r0,1r0,-1xm82,-117v1,-2,-1,-4,-2,-1xm81,-115r0,-1r0,1xm75,-119r-1,0r1,0xm69,-119r0,-1r0,1xm55,-132v0,-1,0,-1,-1,-1xm56,-128r0,0r0,0xm52,-130r0,-1r0,1xm30,-100v0,0,2,-1,0,-1r0,1xm59,-68v1,3,3,-1,3,-1xm13,-87r0,0r0,0","w":92},"\u222b":{"d":"41,-217v1,4,-1,8,-3,4xm23,-195v2,1,3,3,0,4v-2,-1,-1,-3,0,-4xm59,-211v-8,-6,-18,-2,-18,-17v6,-1,14,-4,16,2v0,-4,2,-9,5,-6v1,3,1,7,3,8v-3,-11,4,-12,14,-11v2,13,-4,28,-3,33v-18,-6,-13,26,-22,51v8,40,0,104,2,156v2,16,-10,16,-11,23v0,17,-28,2,-29,21r-7,0r0,-29v29,-24,14,-112,14,-160v13,-5,-2,-25,0,-35v-1,-10,7,-25,5,-36v1,12,12,3,22,7v6,0,9,-3,9,-7xm57,-199v1,-1,4,-4,0,-3r0,3xm58,-194v2,-1,0,-1,-1,-2xm50,-193v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm54,-118v1,0,1,-3,0,-4v-1,1,-1,3,0,4xm30,-136v0,-2,2,-5,0,-6v-3,1,-2,4,0,6xm34,-122v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm30,-124r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm34,-118v1,2,2,3,2,-1xm27,-118v3,1,3,-1,3,-4v-2,1,-3,2,-3,4xm32,-35v0,3,3,0,1,0r-1,0xm24,-5v2,-1,2,-1,0,-2r0,2xm44,25v1,-1,1,-2,0,-3v-1,1,0,2,0,3xm29,-139v1,0,3,0,1,1","w":87},"\u2248":{"d":"89,-147v6,0,8,3,10,9v-4,4,-13,17,-16,22v-36,6,-43,-29,-66,4v-10,-17,8,-43,31,-36v0,3,7,9,23,16v7,-6,8,-1,18,-15xm89,-114v6,1,9,2,10,8v-5,4,-13,18,-16,23v-36,5,-42,-30,-66,4v-10,-16,8,-46,31,-36v0,3,7,8,23,15v8,-4,8,-1,18,-14xm47,-145r0,-3v-1,1,-1,2,0,3xm47,-112r0,-3v-1,1,-1,2,0,3","w":109},"\u22f2":{"d":"89,-147v6,0,8,3,10,9v-4,4,-13,17,-16,22v-36,6,-43,-29,-66,4v-10,-17,8,-43,31,-36v0,3,7,9,23,16v7,-6,8,-1,18,-15xm89,-114v6,1,9,2,10,8v-5,4,-13,18,-16,23v-36,5,-42,-30,-66,4v-10,-16,8,-46,31,-36v0,3,7,8,23,15v8,-4,8,-1,18,-14xm47,-145r0,-3v-1,1,-1,2,0,3xm47,-112r0,-3v-1,1,-1,2,0,3","w":109},"\u25ca":{"d":"521,-34r-369,0r0,-165r369,0r0,165xm82,-220v64,0,68,101,38,139v4,-15,8,-41,1,-53v10,-8,1,-49,-9,-42v-6,-4,-1,-25,-9,-27v-4,1,-2,9,-1,14v-2,-1,-4,-3,-4,-1v0,0,1,3,2,7v-7,-2,-8,2,-8,8v-13,0,-47,3,-56,-1v-18,-1,-25,23,-24,44v-7,-24,1,-40,8,-65v7,2,19,2,14,-8v8,-1,9,0,9,-9v0,-4,13,-6,39,-6xm76,-113v11,0,29,-6,29,8v2,3,5,4,5,5v-11,-4,-22,-1,-14,8v-9,5,-22,-7,-20,-21xm41,-136v-14,-7,12,-22,5,-12v-8,4,1,9,-5,12xm56,-79v7,-9,3,-21,-14,-17v-11,-1,-15,-4,-1,-6v-3,-6,-18,0,-17,-11v16,-13,17,-10,43,-2v-3,10,-1,29,-11,36xm6,-131v9,-1,10,20,6,27v-4,-12,-6,-19,-6,-27xm51,-32v21,26,51,-18,62,-35v8,18,-39,51,-52,51v-19,0,-46,-38,-45,-57v11,0,30,-15,36,-11v0,1,-1,3,-2,6v11,8,13,11,23,11v-1,3,-5,6,-13,8v5,3,31,6,31,-2v1,-4,-8,-17,-8,-18v13,-2,28,26,13,32v-11,-8,-17,-1,-36,2v2,2,7,2,11,2v2,13,-13,9,-20,11xm520,-35r0,-163r-367,0r0,163r367,0xm29,-192v-8,-5,-11,7,-3,4v2,0,3,-1,3,-4xm16,-162v-2,-2,-7,4,-3,4v1,-1,2,-3,3,-4xm52,-66r-5,-10v-6,12,15,20,5,10xm78,-53v-12,0,-21,-1,-29,-3v6,10,15,8,29,3xm181,-170v-8,0,-8,8,-12,11v-4,-3,-4,-10,-10,-11r0,-22r354,0r0,110v-4,6,-6,3,-11,0v1,5,-2,14,2,16r0,-13v3,6,5,6,8,0r1,38r-354,0r2,-122r8,11r8,-11r0,23r4,0r0,-30xm471,-140v21,7,20,-21,12,-30r-12,0r0,30xm417,-140v0,-5,-8,-2,-12,-3r0,-9v3,-1,9,2,8,-3r-7,0r0,-12v4,-1,12,3,11,-3r-15,0r0,30r15,0xm484,-67r0,-15r-9,0r0,15r9,0xm461,-67v3,-1,9,2,8,-2v-8,2,-6,-6,-6,-12v2,0,6,1,6,-1r-8,0r0,15xm452,-67v0,0,2,0,2,-1v0,0,-2,0,-2,1xm361,-167v3,0,8,2,7,-3r-17,0r0,4v2,-1,4,-1,6,0r0,26r4,0r0,-27xm429,-67r0,-6r-20,0r0,-15v7,0,17,3,14,-7r-14,0r0,-21r20,0r0,-6r-27,0r0,55r27,0xm323,-162v5,7,5,19,14,22r0,-30r-4,0r0,22v-5,-7,-5,-19,-14,-22r0,30r4,0r0,-22xm304,-140r0,-30r-3,0r0,30r3,0xm287,-152r0,-18r-16,0r0,30v7,2,3,-7,4,-11v4,4,4,11,12,11r-8,-12r8,0xm340,-89r0,-33r-30,0r0,55r7,0r0,-22r23,0xm258,-152r0,-18r-16,0r0,30v6,1,2,-8,3,-12r13,0xm229,-140r0,-16r-13,0r0,-10v4,-1,13,3,11,-4r-15,0r0,18r13,0r0,9v-4,1,-13,-3,-12,3r16,0xm286,-122v-14,-2,-11,14,-16,21v-5,-7,-2,-22,-15,-21v6,12,15,31,12,55r6,0v-2,-26,3,-36,13,-55xm198,-140r0,-30r-3,0r0,30r3,0xm218,-116v6,-1,16,3,13,-6r-31,0v-2,8,6,6,12,6r0,49r6,0r0,-49xm482,-166v4,5,6,28,-7,23r0,-23r7,0xm482,-80v0,5,2,13,-5,11v0,-5,-2,-13,5,-11xm284,-155r-9,0r0,-11r9,0r0,11xm333,-95r-16,0r0,-20r16,0r0,20xm254,-155r-9,0r0,-11r9,0r0,11","w":529},"\u2044":{"d":"169,-228v2,4,-20,24,-7,26v-12,3,-22,14,-31,36v2,1,3,2,4,4v-3,1,-18,6,-14,15r5,0v-23,13,-30,52,-51,69v-9,11,-13,15,-6,22v-3,-1,-10,4,-4,6v-11,-2,-34,46,-37,47v-6,0,-13,5,-23,4v2,-11,7,-12,14,-24r96,-155v14,-10,12,-19,32,-50r22,0xm99,-101v-1,4,-3,3,-5,0r5,0xm82,-72v0,2,-1,2,-3,2v-2,0,-2,0,-2,-2v0,-1,0,-2,2,-2v2,0,3,1,3,2xm58,-36v-2,3,-4,4,-6,0r6,0xm36,-27v2,0,5,-4,0,-4v-4,0,-1,4,0,4","w":170},"\uf001":{"d":"43,-172v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-163v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm47,-155v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm-2,-175v2,2,-4,13,-5,6v0,-4,2,-6,5,-6xm44,-228v11,0,54,-13,54,12v0,8,-1,15,-3,18v-18,2,-43,-5,-54,4v-5,30,-2,50,-1,85r4,0r0,-24v2,-2,34,-5,41,-4v-1,9,-2,15,-5,19r5,0v0,17,-17,7,-27,16v-3,-2,-4,-5,-8,-5v-20,19,-10,64,-9,94v0,22,-24,2,-31,13v-9,-35,7,-97,-11,-128v6,14,-13,15,-6,4v-3,-14,12,-9,5,-23r-16,0v24,3,9,-21,26,-27r0,-52v14,-5,18,-1,32,-6r0,34v8,-3,2,-20,4,-30xm-9,-137v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-33,-148v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm43,-26v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm73,-226v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm50,-126v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm4,-144v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm21,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm145,-152v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm141,-20v1,35,-23,7,-33,20r0,-227v13,4,25,-8,31,-1xm111,-216v0,8,8,8,1,0r-1,0","w":146},"\uf002":{"d":"43,-172v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-163v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm47,-155v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm-2,-175v2,2,-4,13,-5,6v0,-4,2,-6,5,-6xm44,-228v11,0,54,-13,54,12v0,8,-1,15,-3,18v-18,2,-43,-5,-54,4v-5,30,-2,50,-1,85r4,0r0,-24v2,-2,34,-5,41,-4v-1,9,-2,15,-5,19r5,0v0,17,-17,7,-27,16v-3,-2,-4,-5,-8,-5v-20,19,-10,64,-9,94v0,22,-24,2,-31,13v-9,-35,7,-97,-11,-128v6,14,-13,15,-6,4v-3,-14,12,-9,5,-23r-16,0v24,3,9,-21,26,-27r0,-52v14,-5,18,-1,32,-6r0,34v8,-3,2,-20,4,-30xm-9,-137v2,1,3,3,0,4v-2,0,-3,-3,0,-4xm-33,-148v0,-2,3,-1,4,-1v0,2,-3,2,-4,1xm43,-26v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm73,-226v3,-1,2,-4,0,-5v-1,1,-2,4,0,5xm50,-126v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm4,-144v2,0,1,-4,0,-4v-2,0,-3,4,0,4xm21,-126v0,-1,-1,-2,-2,-2r0,4v1,0,2,-1,2,-2xm143,-200v-5,1,-3,-4,-3,-7v2,0,3,3,3,7xm155,-192v10,3,2,20,-4,14v0,-1,1,-5,4,-14xm112,-229v-1,3,2,9,-2,9v1,-3,-2,-9,2,-9xm129,-205v2,1,3,4,0,5v-2,-1,-1,-4,0,-5xm158,-174r-3,8v1,-3,-2,-9,3,-8xm142,-181v3,1,2,4,0,5v-1,-1,-2,-4,0,-5xm97,-181r0,2v-1,-1,-1,-1,0,-2xm76,-180v1,-9,9,-16,21,-14v-1,3,-6,7,-5,13v-5,-5,-11,0,-16,1xm207,-42v1,4,-2,7,-4,3v1,-2,2,-3,4,-3xm147,-65v3,15,-3,32,17,28v0,1,34,-2,37,11v-4,14,-8,22,-11,26v-24,-1,-44,2,-59,-5v-13,4,-11,0,-21,6r0,-37v8,-1,22,3,24,-4r-24,0v2,-22,-5,-48,6,-62v-9,0,-8,-20,-4,-27r4,1v-5,-4,-6,-30,-15,-27v3,-16,-8,-7,-18,-10v1,9,-17,0,-24,6v-1,-18,10,-19,18,-11v7,-8,25,-1,33,-13v-7,-2,4,-8,-3,-9v-2,-3,13,-17,5,-21v4,-2,6,-6,6,-14v13,-2,23,-1,24,7r3,0v1,1,-11,27,-11,20v1,-5,-6,-9,-9,-5v1,2,6,12,2,16v5,-1,6,2,5,6v2,-4,4,-5,8,-6v1,9,-14,12,1,17r0,28r13,-2v0,3,-21,21,-18,26v2,12,8,25,5,38v2,-1,4,-1,6,1v-6,1,-5,9,-5,16r5,0xm75,-159v2,1,1,3,0,4v-2,0,-3,-3,0,-4xm201,-18v1,1,4,4,0,3r0,-3xm134,-218v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm138,-213v1,-2,2,-3,0,-5v-3,1,-2,3,0,5xm127,-209v2,0,3,-3,0,-4v-2,1,-3,3,0,4xm130,-172v0,-3,-3,-5,-8,-7v-1,6,1,7,8,7xm120,-168v2,0,3,-3,0,-4v0,-1,-1,-2,-2,-2v-3,3,1,3,2,6xm105,-168v5,-1,7,-5,0,-4r0,4xm86,-187v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm116,-148v3,-1,2,-3,0,-5v-1,2,-2,3,0,5xm134,-124r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm125,-118r0,-4v-1,0,-2,1,-2,2v0,1,1,2,2,2xm64,-161v2,-1,1,-4,0,-5v-2,1,-3,4,0,5xm115,-93v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm142,-46v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm138,-37v2,0,1,-3,0,-4v-2,1,-3,3,0,4xm120,-172r-1,2v0,-1,0,-2,1,-2","w":207},"\u0131":{"d":"47,-152v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm43,-20v1,35,-23,7,-33,20r0,-227v13,4,25,-8,31,-1xm13,-216v0,8,8,8,1,0r-1,0","w":50,"k":{"a":5}},"\u02d8":{"d":"65,-247v-3,2,-24,46,-31,21v0,-7,10,-19,7,-33r17,-2v0,8,2,13,7,14xm37,-247v1,1,2,4,0,5v-3,-1,-2,-4,0,-5xm24,-259v0,14,4,24,7,41v-26,1,-25,-18,-24,-42xm24,-249v2,0,3,-3,0,-4v-2,1,-3,3,0,4","w":65},"\u02d9":{"d":"36,-265v-9,8,1,37,-27,23r0,-21v9,-2,17,-2,27,-2xm18,-239v1,-1,3,-2,0,-3v-1,1,-1,2,0,3xm15,-239v1,-1,3,-2,0,-3v-1,1,-1,2,0,3","w":41},"\u02da":{"d":"31,-240v24,-8,-16,-31,6,-34v16,-2,13,16,21,23v-5,14,-1,42,-22,39v-5,0,-8,-3,-8,-9v4,-7,13,-2,7,-18xm37,-248v0,1,-1,2,-2,2v-1,0,-2,-1,-2,-2v0,2,1,3,2,2v1,1,2,0,2,-2xm15,-212v-16,-11,-17,-61,8,-61v13,6,-9,18,1,23v-4,8,1,23,0,36v-2,1,-5,1,-9,2","w":61},"\u02dd":{"d":"96,-272v-7,20,-8,54,-39,38v0,-7,0,-15,7,-15v1,-6,4,-12,0,-17v6,-5,19,-7,32,-6xm55,-249v3,1,1,6,-1,3v0,-1,0,-2,1,-3xm54,-272v-7,20,-8,54,-39,38v-4,-15,16,-20,6,-32v7,-5,19,-8,33,-6xm13,-249v3,2,0,6,-2,3v0,-1,1,-2,2,-3xm81,-252v1,1,2,2,2,-1xm74,-232v2,1,3,-2,1,-2v-1,0,-1,1,-1,2xm40,-251v1,-1,1,-1,0,-2v-1,1,-1,1,0,2xm32,-232v2,1,3,-2,1,-2v-1,0,-1,1,-1,2","w":103},"\u02c7":{"d":"69,-250v8,-13,7,-35,32,-31v-6,9,-21,59,-41,43v-2,0,-23,-40,-24,-43v24,-8,22,25,33,31xm34,-274v1,0,1,0,1,1v-1,0,-1,0,-1,-1xm45,-259v1,1,1,1,0,2v-1,-1,-1,-1,0,-2xm41,-259v2,1,0,3,0,1r0,-1xm52,-242v1,0,3,1,1,1","w":136}}});
;

