Edit in JSFiddle

// EZPZ Tooltip v1.0; Copyright (c) 2009 Mike Enriquez, http://theezpzway.com; Released under the MIT License
(function ($) {
    $.fn.ezpz_tooltip = function (options) {
        var settings = $.extend({}, $.fn.ezpz_tooltip.defaults, options);
        return this.each(function () {
            var content = $("#" + getContentId(this.id));
            var targetMousedOver = $(this).mouseover(function () {
                settings.beforeShow(content, $(this))
            }).mousemove(function (e) {
                contentInfo = getElementDimensionsAndPosition(content);
                targetInfo = getElementDimensionsAndPosition($(this));
                contentInfo = $.fn.ezpz_tooltip.positions[settings.contentPosition](contentInfo, e.pageX, e.pageY, settings.offset, targetInfo);
                contentInfo = keepInWindow(contentInfo);
                content.css('top', contentInfo['top']);
                content.css('left', contentInfo['left']);
                settings.showContent(content)
            });
            if (settings.stayOnContent && this.id != "") {
                $("#" + this.id + ", #" + getContentId(this.id)).mouseover(function () {
                    content.css('display', 'block')
                }).mouseout(function () {
                    content.css('display', 'none');
                    settings.afterHide()
                })
            } else {
                targetMousedOver.mouseout(function () {
                    settings.hideContent(content);
                    settings.afterHide()
                })
            }
        });

        function getContentId(targetId) {
            if (settings.contentId == "") {
                var name = targetId.split('-')[0];
                var id = targetId.split('-')[2];
                return name + '-content-' + id
            } else {
                return settings.contentId
            }
        };

        function getElementDimensionsAndPosition(element) {
            var height = element.outerHeight(true);
            var width = element.outerWidth(true);
            var top = $(element).offset().top;
            var left = $(element).offset().left;
            var info = new Array();
            info['height'] = height;
            info['width'] = width;
            info['top'] = top;
            info['left'] = left;
            return info
        };

        function keepInWindow(contentInfo) {
            var windowWidth = $(window).width();
            var windowTop = $(window).scrollTop();
            var output = new Array();
            output = contentInfo;
            if (contentInfo['top'] < windowTop) {
                output['top'] = windowTop
            }
            if ((contentInfo['left'] + contentInfo['width']) > windowWidth) {
                output['left'] = windowWidth - contentInfo['width']
            }
            if (contentInfo['left'] < 0) {
                output['left'] = 0
            }
            return output
        }
    };
    $.fn.ezpz_tooltip.positionContent = function (contentInfo, mouseX, mouseY, offset, targetInfo) {
        contentInfo['top'] = mouseY - offset - contentInfo['height'];
        contentInfo['left'] = mouseX + offset;
        return contentInfo
    };
    $.fn.ezpz_tooltip.positions = {
        aboveRightFollow: function (contentInfo, mouseX, mouseY, offset, targetInfo) {
            contentInfo['top'] = mouseY - offset - contentInfo['height'];
            contentInfo['left'] = mouseX + offset;
            return contentInfo
        }
    };
    $.fn.ezpz_tooltip.defaults = {
        contentPosition: 'aboveRightFollow',
        stayOnContent: false,
        offset: 10,
        contentId: "",
        beforeShow: function (content) {},
        showContent: function (content) {
            content.show()
        },
        hideContent: function (content) {
            content.hide()
        },
        afterHide: function () {}
    }
})(jQuery);
(function ($) {
    $.fn.ezpz_tooltip.positions.aboveFollow = function (contentInfo, mouseX, mouseY, offset, targetInfo) {
        contentInfo['top'] = mouseY - offset - contentInfo['height'];
        contentInfo['left'] = mouseX - (contentInfo['width'] / 2);
        return contentInfo
    };
    $.fn.ezpz_tooltip.positions.rightFollow = function (contentInfo, mouseX, mouseY, offset, targetInfo) {
        contentInfo['top'] = mouseY - (contentInfo['height'] / 2);
        contentInfo['left'] = mouseX + offset;
        return contentInfo
    };
    $.fn.ezpz_tooltip.positions.belowRightFollow = function (contentInfo, mouseX, mouseY, offset, targetInfo) {
        contentInfo['top'] = mouseY + offset;
        contentInfo['left'] = mouseX + offset;
        return contentInfo
    };
    $.fn.ezpz_tooltip.positions.belowFollow = function (contentInfo, mouseX, mouseY, offset, targetInfo) {
        contentInfo['top'] = mouseY + offset;
        contentInfo['left'] = mouseX - (contentInfo['width'] / 2);
        return contentInfo
    };
    $.fn.ezpz_tooltip.positions.aboveStatic = function (contentInfo, mouseX, mouseY, offset, targetInfo) {
        contentInfo['top'] = targetInfo['top'] - offset - contentInfo['height'];
        contentInfo['left'] = (targetInfo['left'] + (targetInfo['width'] / 2)) - (contentInfo['width'] / 2);
        return contentInfo
    };
    $.fn.ezpz_tooltip.positions.rightStatic = function (contentInfo, mouseX, mouseY, offset, targetInfo) {
        contentInfo['top'] = (targetInfo['top'] + (targetInfo['height'] / 2)) - (contentInfo['height'] / 2);
        contentInfo['left'] = targetInfo['left'] + targetInfo['width'] + offset;
        return contentInfo
    };
    $.fn.ezpz_tooltip.positions.belowStatic = function (contentInfo, mouseX, mouseY, offset, targetInfo) {
        contentInfo['top'] = targetInfo['top'] + targetInfo['height'] + offset;
        contentInfo['left'] = (targetInfo['left'] + (targetInfo['width'] / 2)) - (contentInfo['width'] / 2);
        return contentInfo
    }
})(jQuery);
$.noConflict();
jQuery(document).ready(function ($) {
    $("#example-target-1, #example-target-2, #example-target-3, #example-target-4, #example-target-5").ezpz_tooltip();

    $('#usa, #deutschland, #indien, #southkorea, #japan').mouseover(function () {
        $(this).animate({
            strokeWidth: 1.5,
            fillOpacity: 0.8
        }, 300);
        $(this).css({
            'cursor': 'pointer'
        });
    });
    $('#usa, #deutschland, #indien, #southkorea, #japan').mouseout(function () {
        $(this).animate({
            strokeWidth: 1,
            fillOpacity: 1
        }, 100);
        $(this).css({
            'cursor': 'default'
        });
    });
    $('#usa').click(function () {
        $('#info_usa').fadeIn(400);
    });
    $('#deutschland').click(function () {
        $('#info_deutschland').fadeIn(400);
    });
    $('#southkorea').click(function () {
        $('#info_southkorea').fadeIn(400);
    });
    $('#indien').click(function () {
        $('#info_indien').fadeIn(400);
    });
    $('#japan').click(function () {
        $('#info_japan').fadeIn(400);
    });
    $('#info_usa .close').click(function () {
        $('#info_usa').fadeOut(400);
    });
    $('#info_deutschland .close').click(function () {
        $('#info_deutschland').fadeOut(400);
    });
    $('#info_southkorea .close').click(function () {
        $('#info_southkorea').fadeOut(400);
    });
    $('#info_indien .close').click(function () {
        $('#info_indien').fadeOut(400);
    });
    $('#info_japan .close').click(function () {
        $('#info_japan').fadeOut(400);
    });

});
<h2><small>Eine interaktive Weltkarte</small> Einwohnerzahlen einiger Länder. </h2>

<p>Hover auf die markierten Länder öffnet ein Tooltip zu öffnen, klicken eine Box mit mehr Details&hellip;</p>
<div class="tooltip-content" id="example-content-1">USA</div>
<div class="tooltip-content" id="example-content-2">Deutschland</div>
<div class="tooltip-content" id="example-content-3">Südkorea</div>
<div class="tooltip-content" id="example-content-4">Indien</div>
<div class="tooltip-content" id="example-content-5">Japan</div>
<div id="svg_container">
    <div class="info_box" id="info_usa">
         <h3>USA</h3>  <strong>310.233.000</strong>  <small>Einwohner</small><a href="javascript: void()" title="close" class="close"></a>

    </div>
    <div class="info_box" id="info_deutschland">
         <h3>Deutschland</h3>  <strong>82.283.000</strong>  <small>Einwohner</small><a href="javascript: void()" title="close" class="close"></a>

    </div>
    <div class="info_box" id="info_indien">
         <h3>Indien</h3>  <strong>1.210.193.422</strong>  <small>Einwohner</small><a href="javascript: void()" title="close" class="close"></a>

    </div>
    <div class="info_box" id="info_southkorea">
         <h3>Südkorea</h3>  <strong>48.636.000</strong>  <small>Einwohner</small><a href="javascript: void()" title="close" class="close"></a>

    </div>
    <div class="info_box" id="info_japan">
         <h3>Japan</h3>  <strong>126.804.000</strong>  <small>Einwohner</small><a href="javascript: void()" title="close" class="close"></a>

    </div>
    <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
    <!-- Created with Inkscape (http://www.inkscape.org/) -->
    <svg xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="730" height="390" id="svg2" version="1.1" inkscape:version="0.48.2 r9819" sodipodi:docname="Weltkarte.svg">
        <defs id="defs4">
            <linearGradient id="linearGradient14040" osb:paint="solid">
                <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop14042" />
            </linearGradient>
            <clipPath id="clipPath2999" clipPathUnits="userSpaceOnUse">
                <path id="path3001" d="m 0,595.276 841.89,0 L 841.89,0 0,0 0,595.276 z" inkscape:connector-curvature="0" />
            </clipPath>
            <filter id="filter14187" inkscape:label="Drop shadow" width="1.5" height="1.5" x="-.25" y="-.25">
                <feGaussianBlur id="feGaussianBlur14189" in="SourceAlpha" stdDeviation="2" result="blur" />
                <feColorMatrix id="feColorMatrix14191" result="bluralpha" type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.8 0 " />
                <feOffset id="feOffset14193" in="bluralpha" dx="2" dy="2" result="offsetBlur" />
                <feMerge id="feMerge14195">
                    <feMergeNode id="feMergeNode14197" in="offsetBlur" />
                    <feMergeNode id="feMergeNode14199" in="SourceGraphic" />
                </feMerge>
            </filter>
            <filter id="filter14201" inkscape:label="Drop shadow" width="1.5" height="1.5" x="-.25" y="-.25">
                <feGaussianBlur id="feGaussianBlur14203" in="SourceAlpha" stdDeviation="2" result="blur" />
                <feColorMatrix id="feColorMatrix14205" result="bluralpha" type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.5 0 " />
                <feOffset id="feOffset14207" in="bluralpha" dx="2" dy="2" result="offsetBlur" />
                <feMerge id="feMerge14209">
                    <feMergeNode id="feMergeNode14211" in="offsetBlur" />
                    <feMergeNode id="feMergeNode14213" in="SourceGraphic" />
                </feMerge>
            </filter>
            <filter id="filter14215" inkscape:label="Drop shadow" width="1.5" height="1.5" x="-.25" y="-.25">
                <feGaussianBlur id="feGaussianBlur14217" in="SourceAlpha" stdDeviation="2" result="blur" />
                <feColorMatrix id="feColorMatrix14219" result="bluralpha" type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.5 0 " />
                <feOffset id="feOffset14221" in="bluralpha" dx="2" dy="2" result="offsetBlur" />
                <feMerge id="feMerge14223">
                    <feMergeNode id="feMergeNode14225" in="offsetBlur" />
                    <feMergeNode id="feMergeNode14227" in="SourceGraphic" />
                </feMerge>
            </filter>
            <filter id="filter14229" inkscape:label="Drop shadow" width="1.5" height="1.5" x="-.25" y="-.25">
                <feGaussianBlur id="feGaussianBlur14231" in="SourceAlpha" stdDeviation="2" result="blur" />
                <feColorMatrix id="feColorMatrix14233" result="bluralpha" type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.5 0 " />
                <feOffset id="feOffset14235" in="bluralpha" dx="2" dy="2" result="offsetBlur" />
                <feMerge id="feMerge14237">
                    <feMergeNode id="feMergeNode14239" in="offsetBlur" />
                    <feMergeNode id="feMergeNode14241" in="SourceGraphic" />
                </feMerge>
            </filter>
            <filter id="filter14243" inkscape:label="Drop shadow" width="1.5" height="1.5" x="-.25" y="-.25">
                <feGaussianBlur id="feGaussianBlur14245" in="SourceAlpha" stdDeviation="2" result="blur" />
                <feColorMatrix id="feColorMatrix14247" result="bluralpha" type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.5 0 " />
                <feOffset id="feOffset14249" in="bluralpha" dx="2" dy="2" result="offsetBlur" />
                <feMerge id="feMerge14251">
                    <feMergeNode id="feMergeNode14253" in="offsetBlur" />
                    <feMergeNode id="feMergeNode14255" in="SourceGraphic" />
                </feMerge>
            </filter>
        </defs>
        <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1" inkscape:cx="272.86852" inkscape:cy="134.77246" inkscape:document-units="px" inkscape:current-layer="g14059" showgrid="false" inkscape:window-width="1600" inkscape:window-height="848" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:window-maximized="1" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:showpageshadow="false" showborder="false" showguides="true" inkscape:guide-bbox="true">
            <sodipodi:guide orientation="1,0" position="800.04082,179.80715" id="guide14046" />
            <sodipodi:guide orientation="0,1" position="456.58895,0" id="guide14048" />
            <sodipodi:guide orientation="0,1" position="-5,140" id="guide14050" />
            <sodipodi:guide orientation="1,0" position="-1,466" id="guide14052" />
            <sodipodi:guide orientation="1,0" position="447,614" id="guide14054" />
            <sodipodi:guide orientation="0,1" position="213,40" id="guide14057" />
            <sodipodi:guide orientation="0,1" position="6,530" id="guide14063" />
            <sodipodi:guide orientation="0,1" position="107,340" id="guide14069" /></sodipodi:namedview>
        <metadata id="metadata7">
            <rdf:RDF>
                <cc:Work rdf:about="">
                    <dc:format>image/svg+xml</dc:format>
                    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
                    <dc:title></dc:title>
                </cc:Work>
            </rdf:RDF>
        </metadata>
        <g transform="translate(135.71428,-578.07648)" style="display:inline" inkscape:label="hg Kopie" id="g14059" inkscape:groupmode="layer">
            <rect y="571.07648" x="-136.71428" height="397.70093" width="731.04083" style="fill:#dfe9ec;fill-opacity:1" />
        </g>
        <g inkscape:groupmode="layer" id="layer8" inkscape:label="derrest" style="display:inline" transform="translate(135.71428,-578.07648)">
            <path inkscape:connector-curvature="0" style="fill:#cebc19;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-opacity:1" d="m 582.36116,542.51811 c -2.07969,0.19462 -4.19698,1.68686 -4.09155,5.53563 11.9102,-1.56821 8.06187,-5.90717 4.09155,-5.53563 z m -83.9068,5.29495 c -1.82588,0.075 -3.63677,0.40602 -4.72333,1.05297 1.08955,0.58798 0.87165,2.75323 2.5873,2.5873 13.26248,-1.9038 7.61367,-3.86535 2.13603,-3.64027 z m -15.85474,1.20339 c 1.94672,4.83766 -9.45595,-1.43705 -9.62717,7.13012 3.73279,10.47118 18.50492,-4.84068 13.71872,-1.74492 -3.97935,-1.91063 13.7301,-5.63448 -4.09155,-5.3852 z m 104.96622,4.60299 c -8.3915,0.0912 -13.57794,1.96755 -22.83444,3.55002 6.91219,11.44551 -3.28329,3.93003 -12.42506,7.91233 -8.6019,9.84137 -8.82669,-1.98261 -18.20137,-1.9856 -7.22753,2.31983 -9.6017,7.68233 -17.5395,5.53562 -3.36825,-4.34848 -8.23353,-3.43107 -11.9437,2.22628 -0.15831,-4.55331 -1.93925,-5.15684 -14.47084,-1.83518 -1.9178,0.85034 0.97705,4.79656 0.78221,7.13013 -0.0121,-0.75289 -1.34119,-1.05419 -1.86527,1.35382 1.17816,-0.23837 1.69755,-0.70313 1.83518,-1.11315 -0.24881,1.30936 -1.65737,2.0144 -5.89664,1.11315 -6.34981,2.58198 -6.77954,6.05529 -14.59118,5.65596 -1.239,-6.07714 -14.56089,3.11556 -8.06275,-4.87376 6.71876,-6.91185 -14.45389,-3.98293 -12.51532,-0.69195 5.0304,4.97561 -20.00309,2.65208 -17.84035,6.70893 -8.94667,-6.59957 -3.56372,2.20989 -13.02676,3.55002 -8.96801,9.55688 -1.09043,-3.94535 2.40679,-6.22757 7.77613,-7.25381 4.24434,-10.30464 0.87246,-12.87634 -6.65015,-4.3204 -14.98435,5.95699 -18.11111,1.53433 1.75894,-4.99584 -8.30958,-4.10458 -4.36231,2.82798 -0.58284,1.41722 -2.25635,6.835 -9.62717,7.34072 -4.88068,-0.65883 -11.2241,4.87765 -16.1255,9.567 5.60736,10.81994 3.1637,5.04594 -6.70894,8.9653 -7.48497,6.49903 9.08185,6.1569 9.05556,13.68863 0.48165,6.75615 -0.0358,4.97642 -1.71484,1.5945 0.14139,0.12651 0.29836,0.25512 0.48136,0.3911 -0.15951,-1.82219 -1.05213,-2.28847 -1.29365,-1.95552 -0.0494,-0.0904 -0.0996,-0.17973 -0.15043,-0.27076 0.66694,-0.73549 -0.0824,-1.09144 -0.66187,-1.08306 -2.02625,-3.28264 -4.96932,-6.44419 -8.99538,-5.05426 -9.77055,-0.18571 0.72167,7.43738 -0.51145,7.67165 -10.63914,1.43112 -8.46408,-16.53168 -11.342,-0.03 3.87478,8.91956 5.48854,9.81274 15.25304,12.756 2.41635,2.58096 3.53642,3.68654 4.12163,4.24197 -1.98343,-1.82244 -8.71327,-7.36577 -11.67294,-3.7907 5.90141,13.07242 -18.52905,12.54306 -3.94112,7.34072 5.48945,-9.37307 -6.7927,-14.8154 -6.31783,-23.46622 -6.30001,-10.27247 -12.60439,5.27592 -8.90513,9.56699 4.1005,8.34891 7.97099,11.20293 -7.5814,4.90384 -7.01192,3.76048 -7.48792,6.58433 -17.17848,7.9725 -1.90643,1.74307 0.3425,-5.53547 -12.39498,3.94112 -8.01097,13.64863 -0.19227,-5.61832 -13.02676,-2.25636 12.52157,13.30578 -4.1615,6.55252 -1.23348,17.68992 -16.71485,-5.20255 1.5605,7.85442 -11.91362,2.64747 -2.06975,-7.21142 -12.41947,-10.36568 -8.93522,-11.73311 11.0751,9.41932 29.21492,-2.22804 9.35641,-8.24326 -8.83644,0.26836 -15.15627,-2.9654 -16.99797,-3.45977 1.34044,-4.46604 -7.4479,0.0288 -6.49834,-3.189 -4.60845,1.63483 -4.59588,1.14322 -7.13012,4.33223 -2.94179,-1.44712 -4.62242,-0.89194 -6.40809,0.24068 -1.59379,1.01091 -3.27585,2.47628 -6.04706,3.36951 -2.3952,4.12221 -3.22164,5.66105 -5.68605,9.11572 -0.14435,-0.14822 -0.35056,-0.13797 -0.45127,0.39111 0.065,0.0355 0.0974,0.0388 0.15042,0.0602 -0.39429,0.54814 -0.71132,0.98671 -1.2034,1.65467 4.76506,2.28657 -7.68328,5.17196 -3.00849,9.17589 -2.40813,0.87765 -4.90609,2.26249 -3.189,3.67036 -7.29803,1.48839 -8.37188,7.36819 -9.05555,6.10723 -5.06146,1.42515 -1.58261,3.47222 -2.31654,7.5814 1.21936,2.95672 -0.61443,13.11506 10.22887,6.40808 3.82699,-9.72374 1.5646,0.22499 7.16021,5.9869 -0.10765,9.80772 6.21405,6.38237 10.86064,-0.69195 1.99231,-9.0809 -3.24632,-7.71237 3.76062,-10.10853 -0.012,-0.008 -0.0181,-0.022 -0.03,-0.03 0.0648,-0.0135 0.17433,-0.0488 0.27077,-0.0902 -0.009,0.20569 0.15503,0.60003 0.66186,1.32373 1.12792,-0.26959 0.16914,-1.31282 -0.36102,-1.47416 0.46006,-0.2542 1.13665,-0.71355 2.10595,-1.44407 1.62231,-3.68611 -2.80549,0.63854 -2.91824,1.53433 -9.66195,-6.79729 -0.5109,-13.61069 3.64027,-19.88612 -2.20061,-7.06951 12.57653,-5.42618 7.22038,-1.23349 -9.49252,5.9914 -6.91116,26.44768 6.52843,17.72001 9.62888,-4.4151 9.77231,4.79837 0.27076,3.48985 -11.27979,5.53664 -0.99772,7.58085 -12.63566,11.91362 4.82362,7.28297 -0.6663,9.29833 -4.54282,6.79919 -7.01862,3.52084 -17.75628,6.40967 -20.57807,-0.69195 0.24194,-0.26942 0.47157,-0.50256 0.66186,-0.75212 0.18308,0.68866 0.59404,1.55241 0.99281,1.9856 -0.51515,-0.31648 -0.69358,1.35565 0.27076,0.33093 -0.0646,-0.11601 -0.12171,-0.18171 -0.18051,-0.24068 0.46009,0.43394 0.8481,0.206 0.72204,-1.71484 -0.5608,-0.62219 -0.96712,-0.98911 -1.26357,-1.17331 3.66983,-6.11384 -9.32849,-5.0569 -5.50553,3.15892 3.59282,4.56092 -7.32372,8.00897 -9.23607,7.94241 -2.61948,4.85227 -9.70639,14.0957 -16.30602,10.40938 3.77963,5.39573 -14.01611,3.45527 -0.54152,7.82207 11.5707,8.37408 0.19768,15.82649 -12.00388,13.83906 -9.49018,-3.01729 -2.78174,10.3117 -6.52842,15.49372 -0.45641,6.2744 9.25939,9.53963 16.30601,6.34792 8.24754,-2.92278 12.79666,-15.02264 15.945,-19.70561 10.46085,-2.63243 17.57097,-6.67856 25.72259,4.27205 9.7595,2.90056 10.17977,18.08199 11.10133,3.00849 8.84601,0.83074 -9.25731,-4.81223 -9.98819,-10.71022 -7.87238,-7.6635 3.0229,-7.04028 4.60299,-1.32374 6.18426,4.58712 12.68785,5.2544 14.32042,14.59118 12.34633,5.69379 -0.81719,3.26307 6.04706,8.27335 5.00794,2.6582 1.81513,-9.97733 1.2034,-11.67294 1.1874,-0.64561 20.22023,1.23128 11.49243,-6.70894 2.56313,-6.42166 2.44137,-14.67466 11.52252,-16.00517 -1.34033,1.06555 -0.96479,10.10266 6.49834,6.55851 4.03933,-2.95169 -9.85559,-4.72775 5.83647,-8.78479 9.40379,-2.84911 -8.58033,6.31637 2.13603,10.52972 21.83251,9.59548 -1.29392,10.63678 -11.31193,8.87504 -8.85444,4.34244 -16.59032,3.75994 -17.53949,10.19879 2.28113,7.5277 6.59641,8.32702 17.26873,7.55131 16.05097,-10.36371 8.72706,13.53823 4.81358,15.91491 -9.04441,-3.57726 -16.12419,3.32673 -25.9031,-1.74493 -11.41504,0.46688 -20.02226,6.97736 -34.2667,-3.21908 -2.38856,-9.95424 -3.33279,-13.7927 -17.72001,-10.86065 -11.7858,5.22287 -26.16138,0.40159 -32.85271,9.44666 -8.61093,10.64952 -18.07965,18.61107 -25.75268,31.34847 -7.18212,7.51547 3.10391,12.41276 -1.68475,21.84164 -2.20584,4.98104 3.09214,12.3926 1.80509,9.92802 0.2273,0.20573 0.47954,0.49134 0.75212,0.7822 -0.39862,0.0484 -0.71016,0.31189 0.42119,0.54153 0.0142,-0.0216 0.0189,-0.0401 0.03,-0.0602 3.4665,3.88616 9.76315,12.71352 15.43355,15.85475 11.96468,11.11772 28.83797,-3.98733 42.54006,-0.12034 3.73151,7.36699 15.38592,-0.4793 14.50092,10.04835 -3.16107,9.42169 -5.60299,10.73229 4.93392,19.28443 2.62066,4.18251 9.36297,16.75838 2.85807,23.34588 -7.37323,11.2275 0.84555,17.32388 3.76061,28.18955 1.10104,13.35116 8.92777,21.9392 10.22887,33.99594 6.44925,2.15341 20.72016,1.11029 27.94887,-5.41528 10.52204,-15.00897 21.55559,-20.3889 21.69122,-37.18494 6.25307,-8.61139 20.10399,-11.24515 16.7272,-25.75268 -6.00332,-5.486 -5.28246,-21.52831 2.97841,-25.57216 9.73766,-11.04905 29.86528,-25.18301 25.24123,-39.38114 -11.139,4.9152 -20.57324,5.72927 -25.51199,-3.64027 -8.37149,-6.51123 -13.36696,-15.39195 -16.99797,-25.45183 -3.89479,-4.53139 -21.15029,-33.23825 -9.7776,-15.79457 1.38371,-10.76084 12.40763,11.07143 20.18697,21.75138 11.56767,6.36628 7.23957,30.31543 25.36157,17.41916 11.77129,-4.33336 20.94957,-10.76789 27.82854,-19.25434 5.95825,-7.46969 -12.39283,-23.70399 -14.3505,-12.39498 -10.73981,3.45114 -6.40568,-6.61673 -11.5526,-3.03857 -4.36598,-4.99177 -11.15674,-14.94456 -3.15892,-12.93651 4.38303,6.43668 11.0209,7.61457 17.68993,9.02547 -0.6244,0.39539 -1.01887,0.89218 0.0902,0.90255 0.35995,-0.28499 0.61532,-0.50359 0.8123,-0.69196 3.33398,0.72171 6.66032,1.56711 9.68733,3.21909 6.67305,1.61782 12.17837,-3.70418 19.40477,-0.39111 11.8915,6.04319 7.92735,4.89417 14.80177,13.08694 8.47497,-12.91645 2.46382,5.34479 9.47674,13.1471 7.01411,9.20404 10.37942,31.83656 17.65984,19.73569 3.7852,-9.68108 0.97455,-21.73208 11.82337,-29.45311 6.04197,-3.75443 8.83033,-13.31402 11.46234,-10.01828 4.08589,2.84769 6.56735,-6.25987 8.39369,4.42248 7.52875,1.84929 7.0238,13.55811 11.61278,13.23736 1.54982,1.00916 1.33505,-2.92938 2.94832,-2.5873 3.63756,3.86659 6.89474,13.76574 7.3708,20.09671 -1.76471,9.22433 1.38373,5.2641 5.14451,13.17719 -3.93437,7.49587 16.88023,23.67188 9.83777,10.49963 0.2257,-9.40686 -10.37519,-15.53506 -12.33481,-21.84164 0.64479,-10.57952 0.64739,-14.58165 8.03267,-7.7619 3.6863,3.56476 6.37907,7.52673 8.27335,10.25895 1.33019,-0.10041 14.86011,-7.06596 11.07124,-15.67423 -0.33562,-8.46481 -19.28029,-13.52169 -10.43946,-22.29292 2.50969,-3.68516 8.8268,-4.88598 9.567,0.93263 1.70693,-3.67152 8.56356,-6.5913 11.13141,-8.54411 7.31092,-1.44225 9.21071,-7.01915 11.91362,-11.97379 -1.16165,-3.89449 5.05801,-10.45868 2.10595,-14.98228 -9.98835,1.30973 4.12663,-2.99878 -4.51274,-4.93392 0.76735,0.0142 1.34257,-0.0375 1.74492,-0.15043 -0.0947,0.0505 -0.17887,0.13805 -0.24067,0.27077 2.69566,1.49862 1.17697,-0.54738 0.33093,-0.30085 3.56595,-1.18318 -8.02725,-7.71213 -9.20598,-11.7632 -2.37799,-5.24313 10.66969,-9.09817 3.27925,-9.89793 -4.61807,0.075 -8.56377,4.17875 -11.40217,-1.95552 -2.13907,-1.56893 10.93882,-17.00416 7.7619,-5.17461 -0.16218,7.22865 6.80833,-6.85451 9.80768,-0.63178 -0.17084,4.93346 2.16109,5.46542 6.1674,6.04707 -0.96507,2.83755 2.63775,8.26512 2.73773,11.58268 2.8079,-0.21882 6.37455,-4.00507 7.43097,-5.23477 -0.53871,-8.12754 -16.30925,-12.50977 -6.46825,-20.63824 -1.82146,-6.11423 1.43541,-9.49543 7.28054,-6.79919 5.57319,-6.46112 3.67425,-18.36463 7.06996,-26.32429 -4.64226,-6.36167 -2.86312,-15.86015 -8.1831,-20.27722 0.51001,-2.97508 -10.97636,-7.28487 -8.78479,-1.86527 -4.53569,-3.02505 -2.50645,0.69043 -6.73902,-2.9784 -6.41217,2.01374 4.46648,-10.84091 3.03858,-16.03526 1.15796,-12.72667 10.61587,-9.85978 16.30601,-11.37209 6.22874,-10.38715 6.9919,5.17302 12.81617,-3.91104 4.42729,-0.87009 -4.30531,-12.13958 3.91104,-16.90771 3.40026,-5.16416 6.50568,9.2662 11.85345,-0.72204 -3.53495,-12.3205 2.88727,-6.2875 2.70764,2.61739 -6.3278,3.59498 -1.67825,16.52562 -8.63436,19.64544 2.4277,8.17666 6.64005,17.69946 13.50812,25.18106 7.67089,13.04605 3.64093,-7.42709 4.39239,-11.37209 1.96091,-7.95011 3.48535,-9.57592 -0.42119,-14.32042 -6.75539,-4.3745 -8.0206,-14.13741 -1.68475,-18.20136 -0.17338,0.52347 9.83283,-2.37749 12.42506,-5.50554 -1.63198,-12.46438 19.65365,-17.42632 5.62588,-21.96198 -2.17342,-4.96724 -16.05637,-2.64094 -4.24197,-4.90384 2.06385,-13.31497 -4.25168,-10.69925 8.12292,-9.86784 4.98384,5.31094 16.64577,6.16857 11.1615,-0.57162 -2.42709,-2.33815 6.09796,-12.38452 -9.68734,-10.68014 -2.23548,1.52376 -1.36145,3.60816 -1.11314,4.12163 -0.26139,-0.35261 -1.39565,-1.80782 -4.87375,-5.29494 -5.88927,0.37426 -12.06148,-0.72018 -17.62975,-5.1746 z M 234.73011,636.8042 c 0.61429,-0.59737 2.62584,-4.09972 0.54152,-1.8051 -0.82268,1.74039 -0.82075,2.07663 -0.54152,1.8051 z m 6.04706,-3.36951 c 1.25251,-0.7769 -2.51649,-1.46782 -0.30085,0.18051 0.13159,-0.0517 0.21736,-0.12872 0.30085,-0.18051 z m 229.87874,-77.94998 c -0.61779,-0.0341 -0.50579,2.21534 1.62459,3.27925 -0.62386,-2.41924 -1.25391,-3.2588 -1.62459,-3.27925 z m -437.94592,0.84237 c 3.0182,1.28274 -5.81888,0.26559 -0.90255,1.65467 1.30757,4.03864 4.60212,3.26439 3.24917,6.34792 7.6318,-5.3743 6.24024,6.88295 16.51661,0.30085 3.64517,2.17062 -7.9572,10.00503 -10.46955,3.48985 -7.98737,-3.60066 -1.96241,6.32132 -1.17331,7.19029 -14.24311,-5.87203 -0.29213,4.83555 -2.70764,3.5801 3.65832,8.38174 -10.07548,-7.10733 -10.40938,-0.33093 1.72538,1.56466 -10.625648,2.61531 -2.10594,5.50553 4.06291,0.58072 11.12505,3.07772 9.26615,1.98561 3.23412,-2.36308 6.27133,6.26586 11.13142,1.02288 -3.23747,-3.92499 -8.77832,-6.0743 0.66186,-3.91103 8.7873,-3.00518 8.37292,-4.20125 5.3852,-8.12293 6.581,1.24855 5.46962,-0.41639 11.49243,0.18051 0.62774,-4.17948 13.23389,-3.35442 9.83777,-6.31783 -12.49488,-0.38226 7.68013,0.93534 10.89073,-3.70044 -6.53569,-2.84527 -6.86406,0.47314 -9.20598,-2.82798 -8.75794,-2.51855 -5.6743,-0.82907 -15.04245,-4.45257 -0.34004,-0.11263 -10.35132,4.03256 -13.77889,-1.50424 -6.87048,1.10321 -2.86051,2.22872 -12.63565,-0.0902 z m 345.58527,0.45128 c -1.36527,0.0114 -3.41858,0.8862 -5.95681,3.30934 3.3278,0.65766 -2.29358,0.0202 -0.54153,1.29365 8.95338,0.88447 9.98734,-4.6321 6.49834,-4.60299 z m 9.80768,0.03 c -1.28696,0.009 -4.22716,4.49282 -6.67885,3.61019 -12.90984,4.15612 5.79597,6.07369 7.00978,1.47416 0.54035,-3.86326 0.34319,-5.08872 -0.33093,-5.08435 z m -364.89978,0.39111 c -3.589098,-0.15165 -4.838828,5.55083 -7.220378,5.65596 0.0131,3.02799 14.889248,3.414 1.68475,4.45257 2.30564,3.46901 8.593078,8.9326 10.920818,4.00129 0.3024,0.77291 8.20905,-0.62239 3.76062,-3.7907 0.5175,-4.73647 -5.08608,-2.07229 -6.22758,-9.14581 -1.11946,-0.79603 -2.08998,-1.13832 -2.91823,-1.17331 z m -40.915468,1.11314 c -1.08466,0.0712 -1.74106,0.54428 -1.11314,1.74492 11.54296,1.47761 4.36711,-1.95853 1.11314,-1.74492 z m 28.33998,0.33093 c -0.54142,-0.0231 -0.88633,0.57476 -0.36102,2.46697 3.73689,0.69193 1.55212,-2.4161 0.36102,-2.46697 z m 380.784608,0.45128 c -0.17116,0.0586 -2.9e-4,0.36697 0.81229,1.17331 -2.00025,12.50573 14.94014,0.55506 2.55722,-1.11314 0.78697,1.91066 -2.85603,-0.23616 -3.36951,-0.0602 z m 167.3924,0.12034 c -0.76124,0.0469 -1.03364,0.75341 0.24068,2.67755 5.40671,0.23713 1.43405,-2.78071 -0.24068,-2.67755 z m -582.413628,0.42119 c -0.80266,0.10554 -0.42318,3.38741 1.20339,1.26356 -0.52328,-0.99229 -0.93584,-1.29874 -1.20339,-1.26356 z m 510.300118,0.30084 c -5.67711,4.22394 4.50984,3.94855 0,0 z m -489.300858,0.72204 c -0.69111,0.0235 -0.82556,0.44303 0.03,1.41399 -1.88448,2.66321 6.36648,7.31953 9.65725,5.62588 2.43006,-2.24755 -7.21912,-7.12374 -9.68734,-7.03987 z m -31.19805,0.51149 c -4.28853,0.13173 -9.662663,1.42518 -11.793281,3.70045 l -0.330934,0.81229 1.052972,1.29365 c 7.879013,2.94705 10.003363,-5.3341 13.026763,-0.0602 7.28853,-4.14686 3.5583,-5.91558 -1.95552,-5.74622 z m 523.748068,0.24068 c -9.16286,7.73611 15.51345,0.72892 0,0 z m -508.434848,0.39111 c -1.30699,0.0463 -2.22028,0.76787 -1.23348,2.82798 8.94092,0.27943 4.10887,-2.92995 1.23348,-2.82798 z m 391.916028,0.45127 c -1.67586,0.0713 -4.00629,1.00052 -1.95552,2.55722 4.65267,-1.84198 3.63138,-2.62854 1.95552,-2.55722 z m 101.44629,1.89535 c 2.11639,3.54654 6.36305,1.3933 0,0 z m -610.182,1.17334 c -3.01454,0.11836 -6.49864,0.86992 -8.3636,0.0902 -5.32886,4.02219 -25.86609,2.22789 -18.17129,12.30472 3.98698,9.36146 4.62876,6.91686 -3.03857,7.25046 2.03927,-4.9091 -18.96893,-2.15335 -10.34921,6.07715 5.80924,5.45811 17.5461,3.36731 4.3924,8.90513 -12.71673,-2.21187 -13.37682,15.05636 -13.86914,13.74881 -7.08543,1.27167 8.08096,2.32229 0.30085,11.52251 10.05953,2.52555 13.46826,2.9684 0.30085,10.86065 -7.01506,2.91858 -19.85183,5.4208 -19.76579,7.85216 10.41311,-4.13228 22.04669,-1.59459 30.95737,-9.6572 12.27353,-0.71003 9.12245,-9.8047 20.96918,-13.80897 5.97631,-1.46807 -15.94383,13.52869 4.84367,6.04706 0.75962,-0.66077 1.63354,-0.8526 2.5873,-0.72204 -0.0239,0.061 -0.0515,0.13448 -0.0602,0.2106 0.37884,0.0133 0.63168,-0.0118 0.87246,-0.03 4.69472,1.44258 10.89868,9.41708 14.68143,10.1687 3.89595,6.40314 7.62912,3.83489 7.79199,8.84496 -0.0582,-0.11029 -0.22937,-0.17042 -0.51144,-0.15042 -0.81413,1.91374 0.48049,0.88305 0.51144,0.30084 0.0186,1.10391 -0.1387,2.5976 -0.48136,4.57291 -0.0663,-0.2181 -0.23524,-0.38271 -0.51144,-0.48136 -0.62539,1.2122 -0.94233,1.99619 -1.05297,2.46696 0.1166,-1.01536 -0.65372,-2.20116 -0.90255,-1.14322 -0.0266,-0.0821 -0.0571,-0.14911 -0.0902,-0.24068 -1.22474,0.26876 -0.41446,1.51556 0.0301,1.53433 0.0127,0.26513 0.0236,0.56244 0.0602,0.90255 0.57945,-0.13475 0.84112,-0.55838 0.90255,-1.02289 -0.29094,1.32544 1.09403,-0.01 1.47416,-1.2034 0.33001,0.5817 0.59168,1.21289 0.81229,1.89535 -0.3644,0.37417 -0.0443,1.11308 0.33094,1.29365 0.99216,4.40602 0.47642,10.17328 0.90254,14.89203 4.1e-4,0.0903 0.0134,0.18273 0.03,0.21059 0.004,0.006 -0.005,0.0267 0,0.03 0.0363,0.37095 0.0703,0.72711 0.12034,1.08306 -0.003,0.012 0.003,0.0169 0,0.03 -0.0278,0.10873 -0.0592,0.25893 -0.0902,0.45128 0.25725,2.31996 0.36996,2.00683 0.39111,1.20339 0.0954,0.40123 0.23473,0.77468 0.36102,1.14323 -0.0536,0.24 -0.10822,0.46505 -0.15043,0.69195 -0.68247,0.01 -1.29784,0.47169 -0.48136,1.68476 0.10122,-0.032 0.18078,-0.0582 0.27077,-0.0902 -0.65539,8.31538 7.5949,6.56262 7.10003,17.50941 -5.27062,-3.13798 -3.97049,6.88021 -11.79328,15.49373 -8.58513,13.58151 -6.54579,24.84718 -3.06866,37.6663 8.44199,5.64571 7.74224,23.38237 9.11573,27.94887 3.50136,2.24086 7.56014,21.09522 8.93522,10.71023 -4.97654,-3.62627 -3.25676,-15.35897 -6.94962,-20.81876 0.11468,-15.05141 4.08916,2.20613 7.31063,7.9725 1.15831,8.7493 10.65528,14.24961 9.53692,23.64674 -0.12612,11.16676 13.909429,12.17133 20.668327,18.68272 9.760217,-5.17369 11.826265,5.84716 20.096715,7.52123 10.086886,-1.32015 7.782209,11.49485 14.591178,13.77888 5.024082,6.70138 10.751322,5.73589 16.697122,1.17331 3.33119,5.00979 4.46823,12.6608 0.72204,19.134 -3.35641,2.69472 -12.85881,15.36664 -5.9869,13.29753 -1.91962,5.2685 -6.00544,12.58092 2.16612,16.84754 6.57623,10.26159 9.70539,24.28699 22.56368,28.15947 12.75637,5.60857 5.42638,21.58853 9.44666,31.22813 -2.88631,10.28763 3.64144,20.71912 -0.2106,31.10779 0.11071,1.65243 -0.78402,17.2613 4.48265,16.0352 1.51202,-1.29864 0.56108,7.2399 2.01569,10.3493 0.05,0.1576 0.10799,0.2978 0.15042,0.4512 -0.88075,0 -1.60515,0.5706 0.30085,1.745 0.014,-0.01 0.0165,-0.021 0.03,-0.03 0.37663,3.4561 -1.46631,5.0763 -3.88095,2.3165 -4.53777,4.7287 1.82461,7.9128 2.61738,5.6259 2.26262,5.0525 0.79173,0.2362 0.30085,5.9267 -0.17037,-0.2552 -0.37088,-0.53 -0.69195,-0.8725 -1.80027,1.8792 1.68856,3.0377 0.96272,1.3238 7.07801,7.3298 0.97621,6.2433 0.6017,3.8809 0.32434,2.7682 1.68933,4.6859 6.46825,4.9941 -1.47333,4.4053 5.25667,1.287 2.43688,5.5356 1.44228,-1.7614 2.15833,-1.1568 2.70764,-0.1504 -1.18414,0.3808 -0.0311,3.5614 0.66187,1.2937 0.55224,1.1506 1.14662,1.8311 2.557208,-0.7822 3.22247,-4.8265 1.39492,-5.1623 1.2034,-11.8836 0.71418,-2.1338 10.06849,-12.0918 -0.36102,-15.5539 5.48389,-3.479 3.03536,-12.4649 6.52842,-13.5081 -9.587868,-3.16683 3.05661,-2.58306 2.67756,-9.20597 4.95558,-2.48843 19.14733,-10.00544 7.00978,-16.48653 -1.47146,-4.61863 10.51474,4.01161 12.18439,-3.189 7.57575,-11.69275 -1.22064,-0.88127 4.24197,-9.62717 2.75284,-7.29602 -1.77812,9.25114 3.91104,-5.23477 2.90653,-7.04072 0.94013,-16.1687 11.28183,-17.99077 6.41586,-1.95864 10.67234,-3.12431 12.66575,-11.1615 4.09649,-6.33132 -1.80356,-21.01201 3.36951,-20.96918 4.67539,-6.69859 14.60329,-11.72618 8.30343,-21.48062 -7.17108,-6.20079 -25.25062,-3.78602 -26.83573,-8.45385 -5.8911,-7.77998 -17.88684,2.55792 -14.32042,-0.57162 9.14428,-7.22788 -6.53476,-4.83464 -8.99538,0.2106 -9.77541,3.3007 -0.23468,-0.90136 4.81358,-4.36231 -0.21789,0.68032 3.28758,-2.02853 2.04578,-1.62459 0.6289,-0.64508 0.84694,-1.19803 0.45127,-1.56441 1.92931,-7.89126 -7.89592,-17.24855 -16.69712,-14.38059 -6.332,-1.55383 -5.92332,-5.15396 -12.60558,-9.62717 -3.769378,-5.07981 -4.858048,-6.29278 -10.920818,-4.03137 -7.43817,2.30664 -13.21748,-8.85662 -17.17847,-3.64028 -4.5752,11.07394 -2.78674,0.24307 -2.07586,-3.73052 -7.10739,3.2679 -16.74753,9.92624 -16.57678,11.342 -5.95658,-8.66559 -12.19699,4.67274 -16.57679,-3.61018 -6.890492,-6.44817 6.0842,-21.6649 -9.928018,-18.80307 -12.587129,1.30701 7.964998,-15.45254 0.12034,-18.35179 -8.995733,-1.11881 -11.901598,17.00438 -24.128092,7.25046 -6.198559,-9.73089 -1.0223,-20.34832 3.219084,-29.66371 8.160123,-9.21152 18.271365,-0.87125 21.992064,-2.91824 1.454723,-7.7585 10.204992,1.48946 16.035252,-1.56441 2.19552,4.02526 1.38149,24.6875 7.52123,13.08693 -1.75963,-10.07026 0.27443,-22.79542 12.48524,-24.75987 9.31446,-4.01205 5.14106,-6.42391 6.61867,-12.42507 -0.12786,1.35424 4.3695,0.83709 8.51403,-7.70173 12.23344,-1.4473 8.2499,-5.21491 16.5467,-12.00388 4.566348,-0.54194 18.999828,-6.77902 8.062748,-0.54153 -5.02284,7.64522 18.29856,-1.65589 11.31193,-3.48985 -5.0315,0.53491 -10.87548,-10.85903 -3.85087,-8.93521 -7.42973,-7.88151 -21.455448,6.69128 -2.61739,-7.46106 9.92431,0.80164 25.3929,2.64238 28.76117,-8.9653 -14.94492,-4.89312 2.16136,-0.61312 -8.12293,-9.08564 -1.88119,-4.32937 -2.49068,-7.98698 -2.9784,-11.67294 0.16974,0.0705 0.45865,0.10437 1.05297,0.0902 0.0601,-0.66882 -0.74316,-0.58672 -1.08306,-0.3911 -0.16684,-1.27743 -0.35042,-2.5628 -0.54152,-3.88095 0.0462,0.009 0.0631,0.0246 0.12034,0.03 0.10024,-0.37627 -0.0271,-0.48271 -0.18051,-0.48135 -0.17322,-1.15007 -0.36584,-2.32346 -0.63179,-3.55002 -3.42527,4.19 -11.94116,8.50221 -14.56109,3.33942 5.00309,-6.77826 -1.08758,-14.56449 -8.00258,-15.76449 -9.755548,-5.75132 -6.840098,12.71248 -13.778888,14.44076 4.52849,10.82641 -10.29391,18.48351 -13.38778,27.287 -6.23901,-0.63139 0.49119,-10.7623 -1.80509,-15.79457 -8.32252,0.56893 -12.28456,-11.24789 -19.46494,-11.13142 -3.6885,-8.39206 -2.50075,-15.64846 8.7848,-22.86452 5.56461,-1.24545 3.19415,-4.09494 0.45127,-6.07715 0.99126,0.50532 2.14737,1.08105 3.64027,1.80509 20.07822,2.03758 -0.23433,-13.04756 14.20008,-6.58859 7.35361,-6.51208 6.58358,-0.0652 14.86194,-4.66316 5.951378,-8.95356 -2.3908,-20.39199 -7.76191,-6.79919 -9.46008,11.20682 -0.68631,-13.75413 -9.26615,-1.71484 -0.75179,-8.83965 -0.59986,-8.62543 -0.27076,-18.44204 -8.4918,-5.14591 -10.27941,9.48444 -7.31063,11.9437 -0.39389,5.00006 -12.60364,15.27058 -5.80639,4.60299 -5.40343,-4.88605 -7.69031,3.79456 -15.67423,-3.12883 -10.25002,-7.05454 -5.89317,-5.92648 -11.61278,0.6017 -0.20264,5.7896 -1.12293,-2.54821 -6.468254,-5.02418 -0.07297,-0.37173 -0.507054,-0.41643 -0.842378,-0.33093 -0.441752,-0.13966 -0.917016,-0.25014 -1.41399,-0.30085 0.05093,-0.23293 -0.185381,-0.40265 -0.992802,-0.15043 0.0029,0.0484 0.02445,0.0783 0.03004,0.12034 -0.587719,0.015 -1.203714,0.0815 -1.865264,0.24068 0.338549,-0.10927 0.626199,-0.2463 0.752123,-0.42119 0.0067,0.004 0.02214,-2.2e-4 0.03004,0 0.07923,0.002 0.197714,-0.1763 0.391104,-0.72203 -0.269041,-0.6546 -0.44697,-0.13359 -0.481358,0.30085 -0.241681,-0.20231 -0.889262,-0.37165 -2.075859,-0.39111 -1.904899,-3.34999 -0.06383,-7.25581 -9.717423,-12.30472 -8.350693,-5.09932 -9.771422,1.87549 -11.372093,-8.72462 -0.548248,0.42937 -18.418074,5.59648 -14.711518,2.70764 12.247136,-2.99593 5.460357,-2.70954 -0.902547,-2.25637 0.07692,-0.0927 0.16913,-0.29095 0.300849,-0.66187 -0.362944,-0.90357 -0.574414,0.36679 -0.451273,0.66187 -1.534532,0.1101 -3.120926,0.21735 -4.302141,0.30085 -5.462928,6.45691 -12.631558,-11.83867 -20.367478,-12.09413 -5.78522,-4.82685 -12.40788,-8.69044 -17.7501,-10.31912 0.008,-3.20167 -2.52108,-3.69846 -5.53562,-3.58011 z m 109.328542,0.72204 c -0.39397,-0.0111 -0.58399,0.21996 -0.03,0.93263 2.76814,0.27597 0.89683,-0.90837 0.03,-0.93263 z m 18.41196,0.03 c -0.3245,0.0181 -0.50756,0.75638 -0.30085,2.73773 4.61719,6.24552 1.45979,-2.80225 0.30085,-2.73773 z m 17.90052,0.03 c -0.88064,0.06 -1.3821,0.86021 -0.81229,2.91824 -1.81626,1.12302 0.15577,1.91797 0.96271,2.67755 8.61441,0.71493 2.49149,-5.7756 -0.15042,-5.59579 z m 113.119228,0.63178 c -0.30674,0.12234 0.17117,1.82943 1.41399,2.13603 -0.77612,-1.71213 -1.22995,-2.20942 -1.41399,-2.13603 z m 11.19159,0.0602 c -4.15179,2.45486 -8.32134,2.32867 -11.67295,2.01569 -0.73185,-0.67787 -1.19267,-0.47858 -1.23348,-0.12034 -2.54586,-0.25987 -4.50096,-0.43 -5.3852,0.78221 5.53327,3.36513 9.13184,2.32819 -1.26356,3.45976 -3.94327,-0.72469 -10.01481,-2.16672 -15.97508,-1.29365 -3.71163,-5.41414 -9.94273,-0.94612 -11.01108,0.36102 -6.48754,-6.25979 -7.16899,3.02081 -16.84754,1.92544 7.6776,4.48442 2.5228,4.75867 -6.64877,4.87375 -16.30605,4.09809 16.98122,9.15356 -0.24068,7.94241 -9.78564,0.17217 4.81359,3.41364 -3.45976,5.29495 2.9502,8.92535 9.41747,1.52079 12.756,4.1818 8.91856,3.50674 8.25444,13.10838 11.13141,18.11111 -3.7866,7.07033 0.6516,10.82773 1.17331,5.47545 2.08099,2.5788 6.526,7.04065 -3.189,5.89664 10.54429,2.92348 6.485,6.8082 1.83518,11.28184 1.26058,1.76191 -4.36655,3.88896 -1.9856,6.5886 0.30926,1.57524 -2.26526,1.19215 -0.78221,8.7547 5.85128,-1.37909 -3.3695,6.93244 2.49705,12.72592 3.25836,5.18184 9.78952,2.29376 8.99538,7.67165 3.93935,3.41344 8.20402,-3.91443 8.06276,-9.1759 3.11178,-0.61054 5.05706,-6.06027 8.81487,-11.82337 8.32608,-4.09106 3.45905,0.59108 9.92802,-1.74492 10.58161,-5.16466 6.14576,-11.82146 16.9378,-7.9725 2.3998,-1.00567 4.92748,-1.19149 7.34072,-2.73773 13.84202,-6.60987 -3.70674,-6.1053 -4.96401,-5.32502 0.24259,-1.4614 6.3091,-4.11818 2.10594,-5.92673 -1.33308,-6.35134 10.7163,11.50694 12.48524,3.06866 1.85611,-6.93007 -13.37878,-6.83355 -8.27335,-8.66445 -6.17096,-4.36579 7.60888,-5.35953 5.26486,-4.09155 9.94803,5.00751 -0.56487,-4.86064 8.84496,-4.06146 0.4472,0.0379 0.90241,0.0915 1.44407,0.18051 -0.4583,-0.14032 -0.84319,-0.28999 -1.20339,-0.45127 0.1787,-0.63399 -0.46261,-2.14695 -1.32374,-0.8123 -2.99041,-2.42454 0.38181,-6.11927 -1.20339,-8.33351 6.17908,-0.80579 -0.23351,-3.43787 4.90384,-4.42248 -11.61422,-4.10127 6.90823,-11.07651 0.48135,-12.30473 1.51813,-2.83 2.5143,-0.40437 12.39498,-6.43817 -10.79306,-1.58304 -14.81231,-3.53614 -21.81155,3.82078 9.46955,-11.44141 -6.65521,-3.62317 -5.11443,-6.34791 -6.65616,1.16444 -19.85605,-3.89757 0.54152,-3.30934 16.38262,-3.21603 -8.58185,-6.50719 -15.10262,-3.33942 7.10963,-4.31411 24.62644,-2.21209 0.75213,-5.71614 z m 179.36618,1.2034 c -0.90363,0.0669 -0.65827,2.7876 1.26357,1.08306 -0.53877,-0.82801 -0.96235,-1.10537 -1.26357,-1.08306 z m -200.87689,0.0904 c -0.47835,0.0889 1.06426,5.03358 0.96272,1.35382 -0.52986,-1.03509 -0.82879,-1.3787 -0.96272,-1.35382 z m -143.715578,0.0602 c -1.68402,0.18461 -2.2314,3.06447 -4.12164,1.89535 2.51948,1.58963 -6.08541,5.02197 4.57291,4.87375 11.56759,5.31623 -9.54769,0.66122 3.30934,6.64877 4.25357,-3.5956 18.12942,2.8226 12.33481,-6.46826 -1.57259,4.22606 -3.78493,-12.19768 -5.44536,-1.29365 2.6016,3.55897 -6.06861,3.75191 -4.81359,-0.0602 -3.01264,-4.58514 -4.68425,-5.7221 -5.83647,-5.59579 z m -4.90384,0.33093 c -4.46141,0.42043 -4.37214,5.4527 0,0 z m 135.923588,0.0602 c -0.71888,0.16651 -0.64864,1.66163 2.16611,2.7979 -0.56522,-2.24893 -1.60698,-2.92739 -2.16611,-2.7979 z m 523.11629,0.42119 c -0.96231,-0.0351 2.17126,1.7249 0.69195,0.15043 -0.32987,-0.0927 -0.55448,-0.14541 -0.69195,-0.15043 z m -621.463838,0.0602 c -1.30206,0.0587 -4.1236,0.70827 -0.93263,0.78221 1.95862,-0.6374 1.71387,-0.81745 0.93263,-0.78221 z m 302.142678,1.11314 c -1.33764,-0.0393 -4.15676,0.95906 -0.84238,1.50425 1.9208,-1.07186 1.64496,-1.48065 0.84238,-1.50425 z m 14.71152,0.57162 c -1.99386,0.17765 -6.38476,5.20324 0,3.82078 1.33376,-2.97643 0.9063,-3.90153 0,-3.82078 z m -6.9797,0.6017 c -4.57922,0.36436 -0.26842,4.9655 0,0 z m -9.86785,0.63178 c -1.09994,0.0644 -1.84622,0.53925 -0.9928,1.77501 7.53108,-0.075 3.41268,-1.91674 0.9928,-1.77501 z m 89.74327,0.54153 c -0.97358,-0.0522 -2.3149,0.85833 -2.07586,3.42968 3.98204,-1.70912 3.3276,-3.36261 2.07586,-3.42968 z M 15.802272,573.626 c -2.24326,-0.0173 -5.61275,1.44032 1.29365,1.23348 0.52769,-0.90997 -0.27399,-1.22559 -1.29365,-1.23348 z m -22.1124,0.03 c -2.60974,0.16698 1.03475,5.01444 0.63178,0.03 -0.2324,-0.0348 -0.4578,-0.0412 -0.63178,-0.03 z m 400.189368,0.45132 c -3.90737,1.39036 4.6869,1.43558 0,0 z m -81.74068,0.12034 c -1.38986,-0.0701 -2.56231,0.61661 -1.32374,2.91824 6.56814,-0.55715 3.64018,-2.80136 1.32374,-2.91824 z m 154.45589,0 c -1.09996,1.8176 2.56988,0.0765 0,0 z m -162.51864,0.75212 c -2.61196,-0.006 -7.76863,0.95954 -1.14323,1.38391 3.36381,-1.02754 2.71039,-1.38063 1.14323,-1.38391 z m -359.424337,0.0602 c 4.433012,4.67261 -10.0434,5.58767 -6.43817,11.61278 0.479048,10.55672 14.975004,-2.6325 23.466229,-3.88096 -6.387256,-6.26405 -8.661482,-7.13747 -17.028059,-7.73182 z M 467.34657,575.401 c -0.8166,-0.002 -3.01292,2.60524 0.12034,1.11314 0.28895,-0.83265 0.15186,-1.11244 -0.12034,-1.11314 z m -467.970658,0.33094 c -0.2134,0.002 -0.45482,-0.004 -0.75212,0.03 -1.72765,3.22713 3.95324,-0.055 0.75212,-0.03 z m 12.06405,0 c -0.15142,0.0573 -0.29559,0.30607 -0.36102,0.84237 -7.99496,1.85473 3.88788,8.9187 2.76781,14.83186 4.50893,-0.21968 8.171438,4.35224 15.975078,3.48985 6.37607,7.35056 13.11283,-3.97548 2.85807,-5.9869 -6.09074,0.35993 -14.388298,1.67532 -13.989478,-3.15891 -6.57931,2.88602 4.955178,-7.42591 -5.08435,-5.05426 0.16648,-0.48474 -1.40902,-5.25047 -2.16611,-4.96401 z m -16.87763,0.60169 c -0.47737,-0.0338 -1.1898,0.20939 -1.95552,1.02289 0.71315,0.11022 1.25522,0.12246 1.65467,0.0602 -0.40697,0.20486 -0.89895,0.51065 -1.53433,0.9928 1.27602,3.06008 4.20451,-1.67897 2.22628,-1.26356 0.43985,-0.315 0.20427,-0.77022 -0.3911,-0.8123 z M 392.375,576.45397 c -0.52867,0.0772 -1.27646,0.38778 -2.25637,1.08306 3.31141,0.51069 3.84237,-1.31456 2.25637,-1.08306 z m -85.2907,0.0602 c -0.73817,0.12804 -1.25473,0.88037 -0.27077,2.67756 3.35896,-1.36347 1.50104,-2.89093 0.27077,-2.67756 z m 159.96142,0.36102 c -0.85942,-0.0104 -2.06665,0.52515 -3.55001,2.07586 5.58041,2.89093 6.12829,-2.04472 3.55001,-2.07586 z m -304.94057,0.0602 c -0.42877,0.16296 0.63356,2.35125 1.65467,1.50425 -0.94927,-1.25114 -1.45977,-1.57832 -1.65467,-1.50425 z m -164.654668,0.2106 c -0.28122,0.01 -0.50178,0.25084 -0.36102,0.93263 1.90339,0.13069 0.9797,-0.95369 0.36102,-0.93263 z m 388.937618,0.0902 c -0.48046,0.01 -0.83598,0.3088 -0.24068,1.11314 2.20421,-0.36762 1.04145,-1.12903 0.24068,-1.11314 z m -82.79365,0.03 c -0.76255,0.11126 0.84792,3.279 2.70764,2.40679 -1.53456,-1.8866 -2.36103,-2.45736 -2.70764,-2.40679 z m -3.94112,0.15042 c -3.9713,2.29201 2.74441,0.42226 0,0 z m -9.95811,0.03 c -0.96191,-0.14807 -2.50734,0.80405 -2.82798,3.82078 4.35269,-1.63377 4.06472,-3.63039 2.82798,-3.82078 z m 99.18993,0.0302 c -0.20696,0.0195 -0.5474,0.16767 -1.02289,0.54153 0.60996,1.82183 1.91971,-0.62636 1.02289,-0.54153 z m -389.088048,0.12034 c -0.86336,0.0386 -1.4585,0.74074 -1.17331,2.34662 -8.21083,0.31208 -0.59624,0.36237 1.35382,6.5886 7.60703,-3.413 2.40959,-9.05103 -0.18051,-8.93522 z m 292.786268,0.36102 c -0.58263,0.1264 -1.6197,0.75445 -3.27925,2.1962 -0.11699,6.20722 5.80403,-2.74397 3.27925,-2.1962 z m -131.41085,0.03 c -0.40158,0.0665 1.1347,2.45311 1.17331,0.93263 -0.69246,-0.72641 -1.03945,-0.95481 -1.17331,-0.93263 z m 268.14674,0.0602 c -1.28079,-0.018 -2.52335,0.51831 -0.96272,1.9856 4.30217,-1.02572 2.60944,-1.96251 0.96272,-1.9856 z m -127.7405,0.21064 c -3.91776,-0.0135 5.24001,3.07803 0.96272,0.03 -0.3853,-0.0314 -0.70154,-0.0292 -0.96272,-0.03 z m -305.452018,0.72204 c -0.22112,0.017 -0.61741,0.0805 -1.26356,0.24068 -4.55729,2.4329 2.81145,-0.35989 1.26356,-0.24068 z m 303.075308,0.21059 c -1.58634,0.17097 -3.40923,3.06583 1.26357,1.02289 -0.22417,-0.83102 -0.73479,-1.07988 -1.26357,-1.02289 z m -309.693978,0.6017 c -0.84375,-0.0676 -1.81449,0.49433 -1.14323,2.22628 3.1023,-1.01251 2.22804,-2.1394 1.14323,-2.22628 z m 304.609628,0.45127 c -2.23089,5.02549 3.4644,0.59986 0,0 z m -274.043368,0.6017 c -0.58895,0.1127 -1.50524,2.98163 0.36101,1.08306 -0.0102,-0.85441 -0.1647,-1.12063 -0.36101,-1.08306 z M 58.61309,582.862 c -4.976,0.0389 3.43451,2.83582 0,0 z m 177.9522,0.87246 c -2.93121,4.42437 -4.19078,1.93577 -4.27206,5.53562 7.60191,-1.68358 4.90069,5.33711 16.69712,-0.33093 -4.25248,-10.00528 -11.21916,3.90453 -12.42506,-5.20469 z m 23.46622,0.0602 c -0.36177,-0.2974 -7.99121,3.83616 -2.7979,2.16611 2.24203,-1.45652 2.91849,-2.06698 2.7979,-2.16611 z M 60.1775,584.33619 c -0.24821,-0.11693 2.3289,3.12269 0.69195,0.72204 -0.44756,-0.49598 -0.63467,-0.69506 -0.69195,-0.72204 z m -2.9784,0.12034 c -1.32995,-0.0565 -2.01915,2.67419 1.41399,1.23348 -0.45705,-0.90083 -0.97068,-1.21465 -1.41399,-1.23348 z m -51.234588,0.48136 c -6.63558,5.95265 10.40285,4.74326 0,0 z m -46.75195,0.24068 c -2.980019,-0.11061 -6.827209,0.98212 -10.469543,4.39239 -2.369467,5.12294 13.618163,1.88826 1.564415,4.72333 -4.725621,3.17141 18.302898,7.6915 4.66316,4.69325 -12.100273,-1.99109 -2.226706,10.89339 2.045773,11.5526 6.268495,3.12519 12.511025,-4.94056 16.215765,1.86526 10.80843,3.34591 -1.47343,-4.33616 7.61148,-1.83518 l 0.33094,-0.48135 c 2.69152,-3.28257 -5.44679,-9.17205 -0.96272,-16.69713 -6.28918,-10.19282 -6.7513,10.87309 -10.31912,-4.93392 -4.17811,7.01953 -1.89886,0.66471 -5.41529,-0.54153 -0.19152,-1.33745 -2.28483,-2.62712 -5.26486,-2.73772 z m 22.11241,1.89534 c -3.01981,0.18977 3.73294,8.1759 2.7979,0.84238 -1.34002,-0.64649 -2.23868,-0.87751 -2.7979,-0.84238 z m 21.30011,1.8051 c -1.08482,-0.0802 -0.8322,1.97082 0.96272,0.48136 -0.39019,-0.31266 -0.71237,-0.46287 -0.96272,-0.48136 z m 4.12163,0.96272 c -1.08387,-0.0785 -0.82294,1.93524 0.96272,0.45127 -0.3912,-0.31057 -0.71259,-0.43318 -0.96272,-0.45127 z m 223.771508,0.0602 c -0.92567,0.003 -1.78261,0.24536 -2.43688,0.7822 -0.0762,3.71031 -9.70122,-5.58877 -9.29623,3.7907 5.03092,8.24284 10.45262,-4.50088 10.74031,1.35382 -5.89413,2.93333 -2.62729,9.82996 3.21908,4.36231 6.85362,-5.71501 1.78499,-10.30166 -2.22628,-10.28903 z m -321.366933,0.0903 c 1.783732,-1.44916 -2.018107,1.64966 0,0 z m 87.878005,0.0602 c -0.40574,0.0392 -0.72907,0.28324 -0.72204,0.96272 3.90775,0.84708 1.93925,-1.08021 0.72204,-0.96272 z m -187.820052,0.3911 c -0.27366,0.0992 -0.16184,0.97379 0.63178,3.09875 8.93519,10.5498 0.55406,-3.52846 -0.63178,-3.09875 z m 564.12201,0.0301 c -0.21675,-0.0283 -0.60499,0.0503 -1.23348,0.24068 -0.10691,1.54311 2.17278,-0.11793 1.23348,-0.24068 z m -466.79735,0.18051 c -0.4923,0.0495 -0.94609,0.42416 0.12034,0.96272 0.90278,-0.73629 0.37197,-1.01216 -0.12034,-0.96272 z m 87.667412,0.27076 c -1.67793,0.0958 -2.9509,0.98552 -2.16611,3.21909 -6.9619,-2.42138 -3.64972,8.27758 0.30085,8.72462 2.18666,-0.007 5.93021,-7.28719 2.67755,-7.34072 8.13583,-1.4684 2.74068,-4.80584 -0.81229,-4.60299 z m 337.221668,0 c -4.51951,0.0254 -11.55756,6.108 -15.91491,7.88225 -6.25774,4.11431 -2.35246,6.1637 -6.85936,11.04116 -0.70957,4.79568 10.16994,0.95914 7.3708,-4.9941 4.8568,-2.44281 11.51784,-8.2461 18.08103,-12.87634 -0.71152,-0.76653 -1.6346,-1.05884 -2.67756,-1.05297 z m 34.50739,0.15043 c -3.99991,0.0523 3.30467,2.92816 0,0 z m -325.33814,0.15042 c -1.59728,-0.0465 1.47773,2.80619 1.95552,0.6017 -0.95335,-0.41589 -1.58692,-0.59097 -1.95552,-0.6017 z m 124.9426,0.12034 c -1.69488,0.11636 0.95141,3.97777 0,0 z m 87.84792,0.18051 c -0.67837,0.0936 -6.23274,2.54934 -1.50425,0.93263 1.42095,-0.73181 1.73037,-0.96382 1.50425,-0.93263 z m 109.62938,0.03 c -2.46219,2.10773 3.45679,1.68736 0,0 z m 10.25895,0.54153 c -1.42167,-0.0935 -1.9412,1.86534 1.5945,0.96271 -0.56314,-0.66772 -1.12061,-0.93154 -1.5945,-0.96271 z M 6.024682,592.76004 c -3.58764,0.52805 -3.72369,10.00878 -5.11444,8.09284 0.93544,4.58835 5.53357,-1.13616 3.85087,-2.04577 7.41701,3.74839 14.17053,-5.71927 2.49705,-5.89664 -0.4506,-0.15927 -0.86235,-0.20505 -1.23348,-0.15043 z m 157.524548,0.27077 c -0.18269,0.002 -0.50266,0.0794 -0.99281,0.27076 -2.94175,3.54063 2.2716,-0.28414 0.99281,-0.27076 z m 76.02455,0.9928 c -1.92188,0.1425 -5.01487,1.45104 -1.35383,2.46696 3.63134,-1.98257 2.84862,-2.57779 1.35383,-2.46696 z m 125.36378,0.0602 c -0.49752,-0.009 -1.00854,0.52665 -1.41399,2.04577 4.04638,2.81332 2.90655,-2.02112 1.41399,-2.04577 z m -200.72647,0.84237 c -1.81087,0.0198 0.9541,3.65454 0.42119,0.0602 -0.16377,-0.0339 -0.30046,-0.0615 -0.42119,-0.0602 z m -2.64747,1.8051 c -0.18679,-0.0148 -0.22095,0.20161 0.0902,0.87246 2.35337,1.34987 0.47012,-0.82797 -0.0902,-0.87246 z m 78.88262,0 c -4.42943,0.25416 -1.20074,7.6246 4.36231,1.20339 -1.90216,-0.95857 -3.34014,-1.26204 -4.36231,-1.20339 z m -19.67553,1.08306 c -0.70588,0.18624 4.07097,4.33702 2.94832,1.53433 -1.8786,-1.22595 -2.71302,-1.59642 -2.94832,-1.53433 z m -199.041708,0.2405 c -3.20387,0.1962 -9.02625,2.28822 -9.65726,4.7835 1.63026,12.05867 0.65395,3.0511 -1.20339,11.49244 5.2233,-1.86979 11.326298,6.60275 14.771678,3.91103 6.29989,5.86333 4.914,-7.06082 7.82208,3.70045 0.0353,0.31305 0.072,0.5759 0.12034,0.84237 -1.52995,0.86022 -0.16937,1.66485 0.42119,1.44408 1.35967,3.32346 4.46896,0.62795 5.86655,5.41528 3.49802,4.23543 -5.58178,13.68089 -12.78608,11.88354 -8.375208,6.25915 2.68443,4.49692 4.30214,3.15891 3.69785,7.4438 6.88321,12.8532 15.01237,15.5539 -6.6116,-12.49156 1.35492,-1.06939 5.62587,-5.32503 0.85047,-7.63446 -8.46844,-13.65113 -1.02288,-14.26024 3.91107,2.43386 4.14662,10.50669 8.42377,4.1818 3.27757,-3.09743 5.7775,-6.85382 -0.03,-5.71613 -0.91811,-4.8594 -4.17693,-4.26334 -6.85936,-10.71023 3.40252,-0.33667 3.65155,-6.67151 -0.36101,-4.63307 0.31612,-1.31143 2.36063,-4.28431 -4.15172,-3.73053 -3.45482,-0.0553 3.95145,-2.60884 -2.16611,-5.59579 -2.93433,2.27247 -7.36586,-4.08739 -5.08435,-5.11444 -8.61836,-1.24436 -6.80234,-0.89576 -11.1615,-0.81229 1.56577,-2.14716 2.00566,-3.83644 1.74492,-5.05426 1.94348,2.36163 11.67312,6.72698 7.49114,0.0902 -5.53407,-1.58183 -7.61207,-1.5432 -7.82207,-0.87246 -1.64184,-2.8933 -8.12474,-2.0759 -8.72462,1.8051 -0.563008,5.15266 -6.388838,11.27168 -1.474158,-2.76782 4.313468,-2.82832 3.394438,-3.82294 0.90254,-3.67035 z m 333.671648,3.67036 c -1.80197,0.24866 -0.27898,2.89249 1.80509,0.30085 -0.80516,-0.29206 -1.38925,-0.35823 -1.80509,-0.30085 z m 7.76191,0.66187 c -1.06466,-0.0124 -2.88562,1.10915 -0.0602,1.62458 1.05643,-1.20352 0.69896,-1.61713 0.0602,-1.62458 z m -20.39757,1.65467 c -1.29223,-0.0854 -2.02983,0.51491 0.18051,2.55722 5.68662,-0.37654 1.97322,-2.41484 -0.18051,-2.55722 z m 9.86785,0.51144 c -0.83681,-0.0926 -2.35587,0.64369 -0.18051,1.26357 0.94478,-0.85068 0.6826,-1.20799 0.18051,-1.26357 z m -365.230718,0.69196 c -2.5437,1.3487 2.21885,2.66221 0,0 z m 174.943708,0.90254 c -2.74967,0.067 0.37087,6.05488 0.63178,0.0602 -0.23807,-0.0536 -0.44847,-0.0646 -0.63178,-0.0602 z m -82.52289,1.68476 c 0.91953,2.90889 3.73867,-0.0148 0,0 z m 294.38077,2.85806 c -0.16034,0.0347 -0.31415,0.20084 -0.42118,0.54153 1.96614,1.38913 1.116,-0.69191 0.42118,-0.54153 z m -212.76043,0.84238 c -0.37738,0.069 -0.66498,0.49795 -0.45127,1.5945 2.56135,-0.14497 1.28152,-1.74629 0.45127,-1.5945 z m 213.30196,0.48136 c -0.61312,0.16417 1.46507,2.70294 0.93263,0.36102 -0.4912,-0.30321 -0.79114,-0.3989 -0.93263,-0.36102 z m -387.282948,0.0902 c -0.97182,-0.0318 -1.50471,0.91947 -0.78221,3.73052 10.63005,5.36442 3.69769,-3.63537 0.78221,-3.73052 z m 323.713548,0.12034 c -0.8455,-0.0356 -2.03115,0.2732 -3.67035,1.02288 -0.73635,5.99519 -2.95762,9.41551 2.94832,9.53692 -0.86849,1.80053 5.09014,2.62427 7.3708,0.84237 -7.08118,-1.28493 -2.08302,-11.20975 -6.64877,-11.40217 z m -228.91602,0.1805 c -0.32371,0.0765 -0.6318,0.43288 -0.42119,1.23349 1.56067,-0.70661 0.96071,-1.36109 0.42119,-1.23349 z m -272.35863,0.0902 c -0.72992,0.0386 -1.55459,0.95763 -2.13603,3.55002 5.22292,1.98485 4.00137,-3.64857 2.13603,-3.55002 z m 172.236072,0.0602 c -1.15858,0.0619 0.83439,3.5337 1.35382,0.63178 -0.66126,-0.46756 -1.08645,-0.64608 -1.35382,-0.63178 z m -2.10594,0.0603 c -0.18934,0.0641 -0.40732,0.35096 -0.63178,0.9928 1.76116,2.63728 1.45223,-1.27065 0.63178,-0.9928 z m 12.45515,0.15042 c -0.65289,0.2109 -1.54283,2.57728 0.45127,1.56442 0.0974,-1.32654 -0.1545,-1.66029 -0.45127,-1.56442 z m 10.89074,1.89535 c -0.0833,0.0228 -0.19227,0.0984 -0.36102,0.24068 -0.30952,1.89522 0.94416,-0.40054 0.36102,-0.24068 z m 79.634728,0.0602 c -0.43232,0.064 -0.84666,0.46071 -0.84237,1.41399 2.86573,-0.15272 1.79348,-1.55482 0.84237,-1.41399 z m -120.068848,0.15042 c -0.0808,-0.0358 -0.39567,0.1433 -1.11314,0.72204 -0.51588,1.38514 1.35551,-0.61472 1.11314,-0.72204 z m 41.42692,3.55002 c -0.0831,0.0225 -0.22279,0.099 -0.39111,0.24068 -0.30846,1.89439 0.9728,-0.3984 0.39111,-0.24068 z m 582.443708,1.35382 c -3.02836,10.20526 5.34069,-0.42167 0,0 z m -560.81267,0.48136 c -3.1349,-0.1209 3.86424,2.92574 0.78221,0.0902 -0.30493,-0.0387 -0.57321,-0.0822 -0.78221,-0.0902 z m 5.53562,0.39111 c -1.46254,0.23431 -2.54941,2.02378 1.41399,0.48135 -0.39818,-0.44033 -0.92648,-0.55946 -1.41399,-0.48135 z m 119.22647,0.69195 c -1.31766,-0.0467 -1.35962,0.35907 3.00849,1.65467 4.95952,-0.27719 -0.81239,-1.57692 -3.00849,-1.65467 z m -121.06165,0.6017 c -0.78743,0.11268 -5.14569,4.46668 -0.84237,1.71484 0.99085,-1.32848 1.10485,-1.75241 0.84237,-1.71484 z m 55.56682,0.9928 c -0.24852,-0.0221 -0.51426,0.18519 -0.72204,0.81229 2.01178,1.3416 1.4676,-0.7458 0.72204,-0.81229 z m 66.5478,0.21059 c -0.91508,-0.0343 -1.99387,0.0625 -3.24916,0.30085 7.87777,5.67547 9.65476,-0.0607 3.24916,-0.30085 z m 166.6102,0.24068 c -0.31378,-0.0215 -0.18413,0.2301 0.93263,0.9928 5.0224,1.57888 0.009,-0.92842 -0.93263,-0.9928 z m 3.61018,0.6017 c -0.2123,0.0383 0.099,0.4173 1.35382,1.35382 10.58468,4.73645 -0.43382,-1.51979 -1.35382,-1.35382 z m -467.4893,2.55722 c -0.47741,0.10966 -1.45868,0.7269 -3.21909,2.25636 1.41441,1.70028 4.65132,-2.58535 3.21909,-2.25636 z m 181.5323,0.66186 c -0.84774,2.46621 2.95788,1.67235 0,0 z m 44.97693,0.57162 c -1.49885,0.11269 -2.00204,1.29967 1.50425,4.39239 6.22183,-1.79967 0.99384,-4.58021 -1.50425,-4.39239 z m -48.79771,0.90255 c -1.04935,0.0507 -2.06622,1.10047 -2.22628,4.03137 6.90729,0.49841 4.53485,-4.14295 2.22628,-4.03137 z m 215.49816,0.42118 c -5.85859,0.10205 -4.01621,4.03157 0,0 z M 35.8689,629.40338 c -0.38791,0.0565 -0.44891,0.39716 0.24068,1.23348 4.96515,0.96242 0.92303,-1.40315 -0.24068,-1.23348 z m 52.28756,0.51145 c -0.20978,0.0505 -0.53963,0.2115 -1.05297,0.48135 -2.44522,3.3459 2.52141,-0.83479 1.05297,-0.48135 z m -228.61518,1.02281 c -0.16259,-0.0217 -0.3628,0.0523 -0.54153,0.27077 1.59262,1.59891 1.2461,-0.1764 0.54153,-0.27077 z m 441.91714,0.48136 c -0.68632,0.0348 -1.56756,0.71157 -2.52713,2.5873 4.86145,3.0427 4.58609,-2.69155 2.52713,-2.5873 z m -63.3588,1.17331 c -0.59678,0.18838 -1.75942,1.99228 0.12033,1.14323 0.28947,-0.98952 0.15093,-1.22885 -0.12033,-1.14323 z m -400.97159,0.63179 c -6.68896,3.15929 3.19334,2.58205 0,0 z m 175.304732,2.13602 c -0.4356,0.0672 -0.45195,0.5097 0.90255,1.5945 1.67506,-0.7719 -0.17655,-1.70653 -0.90255,-1.5945 z m 221.785898,0.03 c -0.17711,0.0601 -0.44525,0.22827 -0.84237,0.57161 -1.38057,4.40144 2.08217,-0.99191 0.84237,-0.57161 z M 8.311132,636.47318 c -0.0458,-0.003 -0.0836,0.015 -0.12034,0.03 -8.22735,5.00081 -5.01502,16.18635 2.76781,7.55131 -0.33583,1.63618 7.77323,6.70627 6.10724,1.5945 -1.72583,-0.46275 -7.33566,-9.07677 -8.75471,-9.17589 z m 223.320228,0.27076 c -0.14093,-0.0427 -0.64929,0.13444 -1.71484,0.66187 -3.82379,3.70046 2.32553,-0.47691 1.71484,-0.66187 z m -397.84276,0.15043 c -10.99535,0.041 2.12361,4.75226 0,0 z m 1.98561,0.60169 c -0.0833,0.0222 -0.22203,0.0996 -0.39111,0.24068 -0.31451,1.89181 0.97448,-0.39636 0.39111,-0.24068 z m 765.11925,0.0602 c -1.46233,4.14257 9.12796,3.82283 0,0 z m -368.63032,1.11319 c -0.11297,-0.0329 -0.70934,0.20541 -2.04577,0.87246 -5.82127,4.34116 2.53534,-0.72989 2.04577,-0.87246 z m -404.28092,0.66187 c -0.1773,-0.0196 -0.33657,0.27222 -0.42119,1.11314 1.54976,1.70196 0.95308,-1.0543 0.42119,-1.11314 z m 777.7549,0.0902 c 0.56985,3.75364 6.96761,-0.31782 0,0 z m -378.97951,1.92543 c -0.23794,0.0253 -0.62362,0.16225 -1.2034,0.42119 -2.727,4.00829 2.86895,-0.59826 1.2034,-0.42119 z m -351.09082,0.24068 c -1.18029,1.3772 -4.37851,7.34385 0,0 z m 1.44407,0.63178 c -0.30616,0.0436 -0.73274,0.84353 -1.17331,3.03858 2.01713,1.59458 1.95571,-3.15001 1.17331,-3.03858 z m 346.87894,0.75213 c -1.37449,1.35488 1.86099,0.59879 0,0 z m -1.14323,0.81229 c -0.32483,0.0488 -0.8685,0.96017 0.18051,0.33093 0.005,-0.26273 -0.0722,-0.34721 -0.18051,-0.33093 z m -430.8459,0.54153 c -3.11571,1.47519 2.56981,0.0186 0,0 z m 200.094702,0.42118 -0.0602,0.0602 z m -203.193442,0.33094 c -1.05823,0.0508 -1.19228,2.29414 0.87246,0.3911 -0.32571,-0.29998 -0.62826,-0.40284 -0.87246,-0.3911 z m 86.55426,0.24068 c -0.56614,-0.0795 -2.00845,5.70185 0,3.61019 0.30314,-2.64702 0.22154,-3.57909 0,-3.61019 z m -91.33776,0.99285 c -8.95211,3.7599 6.49101,0.91432 0,0 z m 4.75341,0.0602 c -0.37296,0.0681 -1.04194,0.32219 -2.16611,0.90254 -0.42838,2.22304 3.78228,-1.19732 2.16611,-0.90254 z m 88.41953,0.0602 c -0.15397,-0.004 -0.47433,0.22317 -0.9928,0.84237 -0.48761,3.60228 1.66,-0.82524 0.9928,-0.84237 z m 145.4906,2.5873 c -0.822088,0.0598 2.15013,1.71369 1.26356,0.27076 -0.68882,-0.21366 -1.07385,-0.28456 -1.26356,-0.27076 z m 0.03,0.51144 c -0.0214,0.0253 0.0473,0.0815 0.30085,0.15043 0.008,-0.15582 -0.26525,-0.19258 -0.30085,-0.15043 z M 8.822492,649.831 c -3.09917,0.093 -3.06062,5.20054 2.61739,0.90255 -1.01845,-0.6917 -1.90219,-0.924 -2.61739,-0.90255 z m 12.48529,0.15043 c -0.85243,-0.002 -1.6025,0.38856 0.33093,1.17331 1.476268,-0.77695 0.521498,-1.17136 -0.33093,-1.17331 z m 125.815058,0.75212 c 0.76925,1.70318 -9.55219,4.23526 0.78221,4.09155 -3.88891,3.25413 -2.7165,3.8508 0.54153,7.22037 6.6795,4.59466 24.49515,-1.77433 16.00516,-8.69453 0.12261,-6.67954 -8.6985,2.33941 -11.52251,-0.87247 -0.54123,0.66024 -2.37443,5.89906 -5.80639,-1.74492 z m -94.67719,0.51144 c -0.0434,3.60041 2.1093,-0.2432 0,0 z m -25.12089,0.90255 c -2.21404,2.52362 5.98107,3.16865 0,0 z m -149.58214,0.45127 c -0.1629,-0.021 -0.36137,0.0492 -0.54153,0.27077 1.58924,1.60408 1.24739,-0.17976 0.54153,-0.27077 z m -1.23349,0.42119 c -0.61164,0.50561 1.37045,9.62898 1.23349,2.16611 -0.67969,-1.76001 -1.06222,-2.30768 -1.23349,-2.16611 z m 139.924892,0.2106 c -1.35171,0.0906 -4.07289,2.38101 -0.66186,3.03857 1.78534,-2.35276 1.47288,-3.09293 0.66186,-3.03857 z m 516.858628,2.10594 c -2.46561,4.72368 7.45794,0.55943 0,0 z m -657.11445,0.75212 c -0.0498,0.0286 -0.0668,0.25969 -0.0602,0.81229 0.83911,2.69924 0.27615,-0.93597 0.0602,-0.81229 z m 655.76063,0.69195 c -0.76521,0.0971 -2.05617,1.16766 -0.03,1.29365 0.771,-1.06323 0.48921,-1.35191 0.03,-1.29365 z m 15.25304,0.12034 c -0.22664,0.0973 0.01,1.61247 -0.27076,5.29495 7.35356,10.0819 10.67952,21.18619 17.14839,32.19084 9.50706,-1.98679 -9.02777,-9.26968 -3.48984,-16.7272 11.23873,8.92889 -12.62444,-13.93668 -8.12293,-15.91492 -3.89402,-2.7696 -4.97346,-4.96872 -5.26486,-4.84367 z m -497.1831,0.90255 c -0.13732,0.14719 1.61978,1.0614 0.93264,0.2106 -0.62588,-0.21099 -0.88686,-0.25966 -0.93264,-0.2106 z m -171.84497,0.3911 c -1.50892,0.17933 0.78707,2.42197 0,0 z m -1.86526,0.03 c -0.18295,0.0581 -0.45698,0.54475 -0.78221,1.77501 1.16168,3.3072 1.43561,-1.98283 0.78221,-1.77501 z m -1.53433,1.14323 c -0.31,-0.0155 -0.69606,1.51607 0.24068,1.29365 0.0109,-0.94556 -0.0998,-1.2866 -0.24068,-1.29365 z m 342.45645,0.54153 c -3.33085,2.31568 2.46625,0.85114 0,0 z m -338.3649,0.0902 c -1.37886,-0.12663 0.47805,6.86298 0.54153,0.30085 -0.21737,-0.18804 -0.3989,-0.28775 -0.54153,-0.30085 z m 168.56571,0.48136 c -2.70928,0.82551 1.87325,1.2513 0,0 z m -173.55981,2.07591 c -0.41201,0.0982 -0.94763,1.07064 -1.47416,3.64027 3.00756,3.68238 2.71019,-3.93494 1.47416,-3.64027 z m 4.18181,0.18051 c -0.41713,0.0395 -1.11483,1.7149 0,2.28645 0.39415,-1.74369 0.25027,-2.31016 0,-2.28645 z m 0.9928,0.87246 c -0.0441,-0.006 -0.12533,0.0669 -0.30085,0.27076 -0.2941,1.26244 0.49194,-0.24449 0.30085,-0.27076 z M 212.34691,663.7 c -3.27598,2.09528 0.61734,1.34098 0,0 z m 377.20451,0.0603 c -1.93534,1.68377 2.06104,3.13946 0,0 z m -549.53083,0.9928 c -0.20364,0.0311 -0.43032,0.15999 -0.72204,0.45128 1.51976,4.41741 2.14749,-0.66907 0.72204,-0.45128 z m -161.37543,0.84238 c -2.20599,3.54691 2.33277,2.83897 0,0 z m 331.44538,0.21059 c -1.36296,1.34639 1.86284,0.59294 0,0 z m 379.03969,0.36102 c -1.77081,0.29071 -0.79804,5.62499 0.93263,0.24068 -0.37075,-0.20975 -0.67966,-0.28221 -0.93263,-0.24068 z m -539.90366,0.27077 c -0.13657,0.14685 1.6209,1.03091 0.93263,0.18051 -0.62517,-0.21139 -0.88711,-0.22947 -0.93263,-0.18051 z m -175.5755,1.80509 c -2.77008,0.48308 1.59028,6.92006 0.63178,0 -0.25194,-0.0263 -0.44711,-0.0322 -0.63178,0 z m 713.34313,1.5945 c -1.42146,0.2307 1.88617,6.99662 0.93263,0.36102 -0.42192,-0.29183 -0.72956,-0.39397 -0.93263,-0.36102 z m -713.13251,3.03855 c -1.00012,0.0159 1.88396,1.27953 0.69196,0.0902 -0.32451,-0.0589 -0.54908,-0.0925 -0.69196,-0.0902 z m 372.84221,0.27076 c -0.72755,0.32087 0.78091,0.55701 0,0 z m 0.51144,0.75212 c -0.0827,0.0616 0.0393,0.27219 0.57161,0.66187 1.75216,0.11017 -0.32347,-0.84663 -0.57161,-0.66187 z m 1.11314,0.72204 c -0.11531,0.048 -0.158,0.27157 -0.03,0.75212 1.33727,0.40399 0.37602,-0.89618 0.03,-0.75212 z M 7.739522,674.80143 c -1.89623,0.21006 1.06755,1.37664 0,0 z m 201.809518,0.3911 c -0.51589,0.0864 0.18911,2.62331 0.57162,0.42119 -0.26799,-0.32923 -0.45257,-0.44112 -0.57162,-0.42119 z m 40.16335,0 c -0.65527,-0.002 -2.16773,1.01534 -0.0602,0.84238 0.4709,-0.62293 0.35801,-0.84171 0.0602,-0.84238 z m -198.13917,1.14323 c -0.7342,0.10397 1.12752,1.06909 0,0 z m -42.931158,0.33093 c -0.15549,0.0245 -0.47529,0.17047 -1.05297,0.48136 -5.52812,5.01257 2.14149,-0.6533 1.05297,-0.48136 z m 241.491518,2.13603 c -0.48753,0.0486 -0.76125,0.40496 -0.18051,1.32374 3.39565,-0.0607 1.25307,-1.43077 0.18051,-1.32374 z m -60.50074,0.30085 c -0.7076,0.0328 -1.01612,1.17059 1.23348,1.53433 -0.23468,-1.16844 -0.80892,-1.554 -1.23348,-1.53433 z m 19.97637,0.03 c -0.37817,0.0203 -0.65449,1.61148 0.36102,0.66187 -0.10814,-0.49139 -0.23496,-0.66866 -0.36102,-0.66187 z m 41.93836,1.5945 c -1.082,-0.11573 -4.99702,1.63693 -1.26357,1.65467 1.66751,-1.16192 1.75538,-1.60207 1.26357,-1.65467 z m -68.71392,0.45127 c -0.70536,-0.24475 -6.05303,5.39657 -1.38391,2.73773 1.33998,-1.91225 1.61903,-2.65615 1.38391,-2.73773 z m -303.76727,0.39115 c -1.73511,-0.26513 7.09554,16.06004 7.10004,6.31783 -1.27722,-1.30959 -1.98802,-3.36551 -3.33942,-4.75341 0.4533,0.30653 0.84926,0.33917 0.57161,-0.6017 -1.80343,-1.05963 -1.64374,-0.46609 -1.11314,0.12034 -0.76033,-0.59433 -1.71279,-0.98034 -3.00849,-0.9928 -0.0786,-0.0445 -0.15462,-0.0817 -0.2106,-0.0902 z m 173.22888,0.57162 c -0.41696,0.0302 -0.82357,0.24951 0,0.54153 0.84422,-0.41314 0.41695,-0.57181 0,-0.54153 z m 135.2918,0.54153 c -0.99466,-0.0508 -2.44077,0.66802 -4.66316,2.5873 l 0.45128,1.65467 -1.14323,-1.50425 c -0.42882,4.94874 2.49683,3.38601 1.86527,10.04836 7.92726,-1.29689 3.54912,9.54141 2.07585,10.31912 4.35753,3.14318 -3.85045,5.08368 -1.3839,7.22038 8.18846,-2.92383 18.06903,-1.00966 15.7344,-10.25895 -2.58236,0.0743 -5.56755,-14.92641 -8.78479,-13.41787 -1.87521,-2.74186 -1.96345,-6.53687 -4.15172,-6.64876 z m -1.41399,23.1052 c -0.13197,-0.0952 -0.23538,-0.17331 -0.3911,-0.27076 0.055,0.32236 0.19094,0.37642 0.3911,0.27076 z m 56.01809,-22.23274 c -0.38299,-0.0113 -0.81073,0.75877 -0.9928,3.03857 2.4858,0.72373 1.83537,-3.01378 0.9928,-3.03857 z m 343.05815,0.93263 c -2.45356,1.81167 0.8271,1.27512 0,0 z m -364.8697,0.18051 c -13.67221,9.94872 8.78151,-0.0251 0,0 z m -334.72463,0.54153 c -0.42365,0.0584 0.38879,2.33777 0.51144,0.3911 -0.25357,-0.30269 -0.41368,-0.40459 -0.51144,-0.3911 z m 293.02695,0.0602 c -0.91008,-0.0255 0.95974,2.66112 1.11314,0.54153 -0.56397,-0.38742 -0.90312,-0.53565 -1.11314,-0.54153 z m 60.591,0.42119 c -2.79127,3.88761 -0.17985,4.65965 0,0 z m -16.33611,1.50424 c -0.36322,0.10293 -0.39299,1.25669 0.45128,0.36102 -0.17669,-0.3146 -0.3302,-0.39533 -0.45128,-0.36102 z m 360.2968,1.14323 c -0.14668,0.0149 -0.41632,0.18511 -0.84238,0.60169 -2.97483,7.33521 1.86912,-0.70648 0.84238,-0.60169 z m -401.84405,0.93263 c -0.29196,-0.0128 -0.39984,0.40095 0.12034,1.68475 2.0826,0.45027 0.52198,-1.65661 -0.12034,-1.68475 z m -183.427648,0.0902 c -0.13718,5.96639 4.281,0.19651 0,0 z m 227.953308,1.83517 c -1.6711,0.10907 -2.84695,4.77682 1.86526,2.64748 -0.48333,-2.0327 -1.21135,-2.69015 -1.86526,-2.64748 z m 354.18956,1.08306 c -0.73391,0.29362 -5.74305,7.22934 -1.89535,3.73053 1.80258,-2.94139 2.18253,-3.84542 1.89535,-3.73053 z m -400.88133,1.74493 c -0.53549,0.0192 -1.12341,0.15399 -1.80509,0.3911 -0.53941,0.64031 -4.41316,1.85416 -0.42119,2.10594 -4.46639,1.75558 -8.55185,7.53153 -1.8051,5.9869 -9.66776,3.32303 -1.78749,6.54277 5.23478,3.12883 2.60511,-2.62663 3.97301,-11.79834 -1.2034,-11.61277 z m 46.51126,0.63178 c -0.12613,0.0477 -0.17163,0.19579 -0.12034,0.45127 2.32099,0.69287 0.6669,-0.65806 0.12034,-0.45127 z m -0.6017,0.63178 c -1.83051,0.17032 -1.19066,2.0992 1.65467,0.24068 -0.69049,-0.21463 -1.23225,-0.27999 -1.65467,-0.24068 z m 4.7835,0.6017 c -0.74222,0.0819 -1.32616,0.76147 0.45128,1.80509 1.19146,-1.37122 0.29095,-1.88699 -0.45128,-1.80509 z m 334.90514,0.63178 c -1.5774,0.098 -1.99576,1.13811 0.33093,3.85087 0.74658,6.47142 -7.87756,5.96959 0.6017,11.58269 7.19388,5.40828 -6.11295,-10.70197 7.03987,-2.07586 -6.8193,-5.8112 7.27317,-6.49504 2.9784,-8.12292 1.67617,-1.10506 -7.48062,-5.45038 -10.9509,-5.23478 z m -378.31765,0.48136 c -0.17505,0.0109 -0.56057,0.22992 -1.29365,0.78221 -1.37527,2.98057 2.05218,-0.82957 1.29365,-0.78221 z m 389.74991,0.42119 c -0.287,0.0505 -0.65759,0.87468 -0.48136,2.85807 1.09438,-1.70618 0.85036,-2.92301 0.48136,-2.85807 z m -390.80288,3.30934 c -0.36013,0.0567 -0.54765,0.30692 0.12034,0.84238 1.56414,-0.50063 0.47987,-0.93693 -0.12034,-0.84238 z m -126.05575,2.55722 c -1.97208,-0.14737 -9.13806,8.73875 -8.18309,8.33351 -9.04947,5.92132 9.66659,1.5979 5.1746,6.13732 6.29537,-1.93422 8.74479,4.17997 7.52123,-3.21908 1.73542,-4.18627 -11.81915,-3.29786 -4.1818,-9.32632 0.30827,-1.32963 0.14236,-1.89006 -0.33094,-1.92543 z m -22.1124,3.42967 c -0.92275,6.9e-4 -0.41722,0.84656 3.70044,3.3996 7.28641,0.72236 -1.67037,-3.40109 -3.70044,-3.3996 z m 532.14176,6.22758 c -4.07681,2.55754 0.62554,10.32835 -3.82079,16.81746 -5.13167,-7.05488 0.13922,9.57023 -6.22757,6.378 -5.45697,-2.01832 -11.15602,9.54028 -4.1818,7.61148 1.80679,-3.21982 4.0725,-3.50757 6.19749,-2.85807 0.01,0.003 0.0209,-0.003 0.03,0 0.11069,0.0956 0.20202,0.15451 0.27076,0.0902 1.81188,0.63036 3.52276,1.88861 4.75341,2.52713 -0.0481,-8.62028 1.96627,-1.35148 6.19749,-6.28774 1.42175,1.33267 5.32945,-1.68905 2.70765,-4.12163 -3.25661,-9.14546 1.93266,-13.43922 -5.92673,-20.15689 z m -239.536,3.73053 c 1.67263,-3.4e-4 3.11305,0.7986 3.85087,2.85806 0.9898,5.89373 -3.19045,5.46669 -6.43817,7.73182 4.10225,0.19128 9.55153,14.31684 9.38649,8.12293 3.9873,-2.81583 7.10869,6.45103 1.41399,3.82078 -2.4549,3.21799 1.32252,3.35125 2.70764,7.58139 2.03622,13.58277 -19.34991,-1.71975 -12.756,-1.89534 6.49616,-4.96268 -9.39627,-11.28332 -8.81487,-19.10392 0.45275,-3.76508 6.37558,-9.11487 10.65005,-9.11572 z m -295.58416,1.05297 c 0.0442,0.17296 8.46563,3.70425 3.55001,1.29365 -2.6524,-1.03173 -3.56473,-1.35131 -3.55001,-1.29365 z m 8.27334,0.48136 c -0.3696,0.05 -0.63412,1.10225 -0.57161,4.03137 3.66074,4.79287 1.68043,-4.18123 0.57161,-4.03137 z m 192.03194,12.45515 c 0.002,0.17666 2.01883,2.43769 0.3911,0.30085 -0.28326,-0.25922 -0.39166,-0.34162 -0.3911,-0.30085 z m -0.12034,0.75212 c -0.12217,-0.0293 -0.26163,0.15162 -0.36102,0.69195 1.39618,3.5582 0.89042,-0.56522 0.36102,-0.69195 z m 1.44407,2.31654 c 0.59498,1.89057 1.75157,1.46676 0,0 z m 2.7979,2.07586 c -0.0191,0.0519 0.0322,0.25848 0.27076,0.69195 1.67014,1.64351 -0.18812,-0.91666 -0.27076,-0.69195 z m 1.77501,0.9928 c -0.0984,0.0165 -0.21662,0.0685 -0.30085,0.12034 4.53196,3.04811 1.77658,-0.36703 0.30085,-0.12034 z m 336.01827,0.45127 c -0.18048,-0.009 -0.29059,0.23271 -0.12034,0.9928 1.24429,0.27406 0.51739,-0.97366 0.12034,-0.9928 z m -355.84422,0.63178 c -0.45021,0.0676 -0.88984,0.92584 -1.05297,3.24917 3.39395,1.51897 2.20348,-3.422 1.05297,-3.24917 z m 323.08177,3.189 c -0.35445,0.0804 -0.84888,0.44796 -0.42119,0.87247 0.99009,-0.74607 0.77563,-0.95285 0.42119,-0.87247 z m 17.02805,0.12034 c -2.28851,1.45183 -3.54254,1.14351 -4.12163,3.88096 -0.32182,6.04379 8.50112,-0.86908 4.12163,-3.88096 z m -14.10982,0.87246 c -1.62722,0.18708 1.71991,2.98996 0.3911,0 -0.15559,-0.0133 -0.28262,-0.0125 -0.3911,0 z m -324.70635,1.26357 c -0.58635,-0.046 -1.46714,0.42737 -2.76781,1.74493 0.0751,14.36862 5.93406,-1.49629 2.76781,-1.74493 z m 318.41861,0.57153 c -0.37665,-0.14751 -1.71328,1.09289 -0.0902,0.72203 0.23209,-0.46825 0.2158,-0.67287 0.0902,-0.72203 z m 11.9437,0.24067 c -0.83823,0.0799 -1.77274,0.66313 -2.79789,2.01569 l -0.18051,0.66187 -0.18051,0.81229 c 3.71436,3.91088 3.24218,-0.51123 3.91104,5.47546 5.25886,5.42285 3.77432,-9.39671 -0.75213,-8.96531 z m -4.75341,0.24068 c -0.48386,0.17892 0.79796,1.43039 0.33093,0 -0.15117,-0.0292 -0.26181,-0.0256 -0.33093,0 z m -340.01957,1.53428 c -0.0953,0.006 -0.2038,0.0243 -0.33093,0.0602 -0.20042,2.87278 1.76089,-0.14536 0.33093,-0.0602 z m 57.10114,0.36101 -0.69195,0.48136 z m 138.05962,0.51154 c 0.0127,-0.0436 2.14883,2.7842 3.00849,4.12164 -2.264,-3.03567 -3.01611,-4.09549 -3.00849,-4.12164 z m -153.19232,0.0902 c -0.47062,-0.12625 -0.82552,0.59772 0.6017,1.32374 0.0177,-0.85995 -0.31933,-1.24798 -0.6017,-1.32374 z m 291.40236,0.24068 c -0.23601,9.6e-4 -0.57045,0.1463 -1.08305,0.51144 0.86499,2.06571 2.10578,-0.51712 1.08305,-0.51144 z m -335.53691,0.15047 c -1.41978,0.0962 -2.89486,0.88716 -0.2106,2.10595 2.99486,-1.60333 1.63037,-2.20208 0.2106,-2.10595 z m 341.19288,0.51145 c -0.11004,-0.007 -0.28441,0.14146 -0.51145,0.57161 0.64769,0.8397 0.84156,-0.55117 0.51145,-0.57161 z m 2.13602,0.18051 c -0.43292,0.0462 -1.08953,0.82096 0.0902,0.9928 0.35184,-0.78766 0.16951,-1.02051 -0.0902,-0.9928 z m -288.15319,1.20339 c -1.38239,-0.15427 0.80151,2.81822 2.70764,1.47416 -1.39862,-1.02097 -2.24685,-1.42273 -2.70764,-1.47416 z m -59.50794,0.54153 c -2.53155,0.0986 0.91296,1.6355 0,0 z m 32.91288,1.74492 c -9.34922,-0.10814 3.66578,9.08972 3.67036,0.36102 -1.4847,-0.24054 -2.70319,-0.34983 -3.67036,-0.36102 z m 173.22887,0.72204 c 0.25729,-0.0506 2.39486,2.06203 1.29365,1.83518 -1.14618,-1.33242 -1.4106,-1.81216 -1.29365,-1.83518 z m 3.3996,2.70764 c 0.086,-0.0919 1.33192,1.23058 0.42119,0.69196 -0.35317,-0.4627 -0.44984,-0.6613 -0.42119,-0.69196 z M 272.54683,756.873 c -0.72438,0.23147 -1.84051,2.83038 0.45127,0.81229 -0.0145,-0.70965 -0.20981,-0.88945 -0.45127,-0.81229 z m 140.31598,0 c 0.10086,-0.0542 0.27639,-0.0163 0.57162,0.15042 2.08818,5.01009 -1.27762,0.22919 -0.57162,-0.15042 z m -122.44555,1.17331 c -10.11254,1.36746 -3.54968,7.51107 0,0 z m -20.33739,0.87246 c -1.78657,0.16534 0.72328,3.14943 0.42119,0 -0.15936,-0.0168 -0.30209,-0.011 -0.42119,0 z m -4.27206,1.26357 c -1.24239,-0.0205 -2.9588,0.10721 -5.23477,0.54152 6.96711,2.81159 10.61845,-0.45271 5.23477,-0.54152 z m 286.13751,0.0602 c -0.22647,0.004 -0.41961,0.27306 -0.30085,1.02288 1.53439,0.18583 0.79908,-1.03207 0.30085,-1.02288 z m 1.68475,2.5873 c -2.67172,-0.16455 0.32041,4.85656 0.63179,0.0902 -0.23075,-0.0616 -0.45367,-0.0793 -0.63179,-0.0902 z m -91.69878,5.11443 c 0.38731,-0.16691 2.66199,3.37369 1.17331,3.21909 -1.13169,-2.30881 -1.34936,-3.14322 -1.17331,-3.21909 z m -37.0646,0.48136 c 0.12053,0.004 1.13139,1.13849 0.27076,0.48136 -0.26385,-0.35739 -0.31093,-0.4828 -0.27076,-0.48136 z m 126.98837,1.26357 c -0.0919,0.0421 -0.39085,0.45304 -0.9928,1.47416 -1.96223,5.15884 1.39114,-1.65658 0.9928,-1.47416 z m -18.11111,7.61148 c -6.34875,0.82716 4.05715,18.42894 1.92544,1.92543 l -0.42119,-1.83518 c -0.58077,-0.1089 -1.081,-0.1454 -1.50425,-0.0902 z m -374.01551,2.25636 c -0.21779,0.0208 -0.36876,0.48868 0.12034,1.5945 0.56346,-0.9199 0.15968,-1.62127 -0.12034,-1.5945 z m -11.342,1.26357 c -2.2958,0.21224 1.6126,2.35535 0,0 z m 10.3492,0.69195 c -0.37109,-0.025 -0.8874,0.40987 -1.20339,1.71484 2.01027,-0.39076 1.82187,-1.67313 1.20339,-1.71484 z m -174.763198,0.12034 c -0.37544,0.0239 -0.83177,0.52371 -1.05297,1.92544 2.42463,0.24117 1.87894,-1.97787 1.05297,-1.92544 z m 167.452568,0.15043 c -0.24165,0.0722 -0.56047,0.34524 -0.96272,0.93263 1.58633,2.1955 2.00989,-1.24567 0.96272,-0.93263 z m -171.754708,0.27076 c -0.67847,0.0727 -1.01405,0.37285 -0.0602,1.02289 4.76706,-0.29674 1.55282,-1.18286 0.0602,-1.02289 z m -89.261912,0.72204 c -0.18493,0.0434 -0.49145,0.72825 0,0.87246 0.18181,-0.69694 0.11096,-0.89852 0,-0.87246 z m 263.54375,0.18051 c -0.19114,0.0354 -0.36167,0.34797 -0.48136,1.11314 1.61959,1.03709 1.0548,-1.21946 0.48136,-1.11314 z m -262.97213,0.3911 c -0.18454,0.0435 -0.49077,0.72847 0,0.87246 0.18049,-0.69723 0.11072,-0.89858 0,-0.87246 z m 447.27225,1.41399 c -0.16767,-0.0196 -0.31382,0.16388 -0.36102,0.72204 1.52462,1.19291 0.86401,-0.66323 0.36102,-0.72204 z m -353.828538,0.0602 c -0.042,-0.019 0.46511,0.77461 2.01569,3.09875 3.19407,4.36513 -1.88974,-3.04197 -2.01569,-3.09875 z m -11.49244,1.71484 -0.18051,0.57161 z m -0.60169,0.57161 -0.51145,0.42119 z m 12.39498,2.61734 0.87246,0.87246 z m -3.00849,0.39111 c -0.45882,0.11624 -1.13329,1.13695 0.12033,1.17331 0.36453,-0.98445 0.15495,-1.24306 -0.12033,-1.17331 z m 4.99409,1.35382 c -0.193,0.0905 0.0641,0.62603 1.47416,1.89535 0.42079,-0.96349 -1.1525,-2.04622 -1.47416,-1.89535 z m -17.47933,1.05297 c -6.08153,0.26512 -11.485958,4.9237 -1.44408,1.77501 1.1087,1.92258 8.60749,2.83618 12.72592,6.7691 -5.37865,2.9113 4.82317,1.81925 5.74622,1.77501 10.59779,0.84098 -22.22268,-13.37439 -11.28184,-8.66445 -1.63162,-1.33872 -3.71905,-1.74305 -5.74622,-1.65467 z m 21.20986,2.10594 c -0.11272,-0.0123 -0.17176,0.25517 -0.03,1.08306 0.78716,0.31741 0.27805,-1.05593 0.03,-1.08306 z m 4.09154,1.11314 c -0.16237,-0.007 -0.36388,0.0274 -0.66186,0.12034 -0.0203,1.99142 1.79845,-0.0713 0.66186,-0.12034 z m -28.46032,0.18051 c -0.22913,0.055 -0.46452,0.25396 -0.69195,0.72204 2.38396,1.79112 1.68484,-0.96029 0.69195,-0.72204 z m 539.392218,0.54153 c -4.92872,0.36746 1.81894,13.35553 4.03138,1.32374 -1.81754,-1.03749 -3.11865,-1.39178 -4.03138,-1.32374 z m -509.969178,1.2034 c -0.0646,0.0307 -0.11017,0.18452 -0.12034,0.54152 0.6017,0.34812 0.31409,-0.63355 0.12034,-0.54152 z m 544.897758,1.3839 c -2.17291,-0.0563 -4.39123,3.38336 -2.58731,8.60428 -0.62238,2.75826 2.42628,7.71857 7.00979,7.73182 -0.4473,-2.25881 7.33139,4.53939 3.88095,-0.60169 -1.40633,-2.07752 -9.91757,-1.17233 -5.1746,-8.48395 0.23501,-5.04671 -1.43879,-7.20667 -3.12883,-7.25046 z m -548.177008,0.42119 c -1.17174,0.004 -3.14102,0.68892 -0.03,0.96272 1.15937,-0.71852 0.73313,-0.96495 0.03,-0.96272 z m -38.779448,0.33098 c -0.329807,0.0529 -1.39076,1.90951 -0.03004,0.72204 0.169612,-0.56579 0.140018,-0.73965 0.03004,-0.72204 z m 1.052972,0.33094 c -0.331839,0.0525 -1.402448,1.92473 -0.03004,0.72203 0.17249,-0.5749 0.140701,-0.73952 0.03004,-0.72203 z m 40.193436,3.15891 c -1.31686,-0.008 -2.47697,0.26911 -3.24917,0.96272 1.11721,3.91199 -3.79186,5.80541 6.378,4.30214 2.28397,-0.1384 4.41835,0.011 6.85936,0.12034 -0.65742,-2.64377 -6.03762,-5.36279 -9.98819,-5.3852 z m -44.375238,3.67036 c -0.182146,0.0429 -0.484179,0.75678 0,0.90255 0.178777,-0.69698 0.109288,-0.9283 0,-0.90255 z m 27.497608,0.0602 c -2.24791,0.10622 -1.02388,2.89629 5.08435,2.10594 -2.32496,-1.65238 -4.06258,-2.15422 -5.08435,-2.10594 z m 27.61794,0.96272 c -0.20004,0.10479 2.07005,1.8909 3.70044,2.28645 -2.57224,-1.80157 -3.58042,-2.34933 -3.70044,-2.28645 z m 9.86785,1.83518 c -0.43148,0.0416 0.70281,2.07181 1.05297,0.81229 -0.57254,-0.62586 -0.90914,-0.82615 -1.05297,-0.81229 z m 5.7763,2.94832 c -0.11668,-0.0151 -0.25958,0.0718 -0.42119,0.30084 0.95231,1.55153 0.9268,-0.23545 0.42119,-0.30084 z m 528.501478,0.45127 c -0.26887,-0.0681 -0.52435,0.2053 0,0.9928 0.55113,-0.51531 0.26887,-0.92476 0,-0.9928 z m -9.20598,2.31654 c -1.45673,-0.0511 3.98515,7.73916 2.28645,1.56441 -1.24294,-1.11362 -1.95028,-1.55262 -2.28645,-1.56441 z m 3.91104,0.0602 c -0.0696,-0.002 -0.14652,0.01 -0.24068,0.03 -0.28384,2.40717 1.28446,0.005 0.24068,-0.03 z m 2.5873,1.08305 c -0.0713,0.019 -0.0656,0.17916 0.0902,0.54153 2.03761,1.76569 0.21897,-0.62381 -0.0902,-0.54153 z m -523.23663,0.39111 c -0.14561,0.0404 -0.32424,0.20106 -0.48135,0.6017 1.4431,1.64003 1.11234,-0.77678 0.48135,-0.6017 z m 287.73201,0 c -0.62821,-0.0105 0.80672,1.90192 1.41399,0.84237 -0.77943,-0.60719 -1.20459,-0.83889 -1.41399,-0.84237 z m 233.57919,0.66186 c -0.0922,-0.004 -0.18157,-2.5e-4 -0.30085,0.03 0.18149,3.53671 1.68431,0.024 0.30085,-0.03 z m -414.90089,0.03 c -0.11745,0.0436 -0.26356,0.19448 -0.45128,0.51144 0.81541,1.11021 0.96021,-0.70045 0.45128,-0.51144 z m 416.04411,0.0602 c -0.19296,0.074 0.007,0.9718 0.51145,0.6017 -0.2671,-0.51662 -0.42373,-0.63536 -0.51145,-0.6017 z m -84.56866,0.72209 c -2.61298,1.87967 -0.16675,10.54806 -0.54153,1.71484 z m 90.0742,0 -0.84238,0.33093 c 0.41559,6.19317 8.74548,5.36439 0.84238,-0.33093 z m -4.00129,0.36102 c -0.83839,0.2108 4.17534,3.84137 1.68475,0.54152 -0.98008,-0.44054 -1.49127,-0.59017 -1.68475,-0.54152 z m -411.8924,0.69195 c -0.11713,0.0441 -0.26793,0.1943 -0.45128,0.51144 0.83524,1.10278 0.95882,-0.70271 0.45128,-0.51144 z m 403.49871,0.51144 c -1.00502,0.10775 1.09829,1.83509 0.24068,0 -0.0965,-0.009 -0.17367,-0.007 -0.24068,0 z m 6.16741,1.11314 c -0.65493,4.35819 3.05317,5.11191 2.94832,9.32632 2.17772,-1.20431 0.78172,-9.20549 -2.94832,-9.32632 z m 4.24197,1.08306 c -0.32279,-0.0614 -0.36696,1.48285 0.54152,6.28774 1.27904,-1.59495 -0.004,-6.18544 -0.54152,-6.28774 z m -417.09709,0.21059 c -0.15723,0.0332 -0.35087,0.20819 -0.57162,0.66187 1.26636,2.05839 1.25297,-0.8059 0.57162,-0.66187 z m -108.30565,0.03 c -0.32455,0.0289 -0.61267,0.38829 0.12034,0.9928 0.56518,-0.71987 0.20421,-1.02164 -0.12034,-0.9928 z m 527.71927,0.66187 c -1.19518,-0.12202 -0.133,3.22499 3.03858,2.9784 -1.50339,-2.15682 -2.49531,-2.92294 -3.03858,-2.9784 z m -13.83905,0.33093 c -0.24418,-0.0262 -0.56291,0.0306 -0.9928,0.15043 0.72332,2.22352 -0.26481,2.91177 -1.86527,4.72333 -9.23675,10.97207 6.52085,-4.48039 2.85807,-4.87376 z M 24.1057,824.50388 c -0.54484,0.1201 -1.78591,1.40566 -0.03,0.84238 0.40355,-0.70804 0.27774,-0.89697 0.03,-0.84238 z m 531.44981,0.81229 c -0.34629,0.0273 -0.66937,0.8134 0.27076,1.62459 0.28103,-1.20057 -9.6e-4,-1.64585 -0.27076,-1.62459 z m -205.02861,0.24068 c -0.37106,-0.005 -1.01877,0.0453 -1.98561,0.18051 -5.43395,2.7238 4.583,-0.14488 1.98561,-0.18051 z M 1.391602,826.03821 c -0.0559,0.0498 0.01,0.1907 0.30085,0.48136 1.06087,0.0453 -0.13307,-0.63071 -0.30085,-0.48136 z m -1.53433,0.3911 c -0.33249,0.10635 0.77324,1.63885 0.90255,0.51145 -0.51927,-0.43728 -0.79172,-0.54689 -0.90255,-0.51145 z m 403.017358,0.24068 c -0.0555,0.0178 -0.11023,0.11297 -0.12034,0.36102 0.51423,0.27583 0.28672,-0.41435 0.12034,-0.36102 z m 149.07069,0.30085 c -2.84633,2.11171 2.48339,1.19967 0,0 z m -91.18734,0.0602 c -1.33458,0.46626 0.93998,3.50581 0,0 z m -438.30695,0.27081 c -1.957008,0.14421 1.26488,1.73804 0,0 z m 381.71725,0.69196 c -0.0432,-0.0119 -0.0942,0.002 -0.15043,0.03 0.43082,0.93264 0.45322,0.0532 0.15043,-0.03 z m -1.08306,0.9928 c -0.12413,-0.0174 -0.19389,0.0771 0.03,0.3911 0.54163,-0.0359 0.1768,-0.362 -0.03,-0.3911 z m 152.92156,0.15042 c -0.83985,-0.026 -1.81957,0.83088 -2.9784,2.52713 -3.98267,1.59455 -10.47436,6.0798 -3.3996,5.29495 2.17725,-4.21962 7.86529,11.96093 7.22038,0.21059 1.76185,1.09424 0.22459,4.89742 2.25637,-0.48136 -0.69489,-5.0356 -1.699,-7.50799 -3.09875,-7.55131 z m -151.59782,0.57162 c -0.33439,0.0995 -0.28913,1.65863 0.27076,0.21059 -0.11912,-0.18875 -0.1936,-0.23356 -0.27076,-0.21059 z m -378.91935,0.24068 c -0.42155,0.0228 -0.77321,0.21909 -0.36102,0.75212 1.97763,-0.32741 1.0636,-0.79015 0.36102,-0.75212 z m 378.0168,0.7822 c -0.67173,0.65359 1.07207,0.1419 0,0 z m -388.035068,0.0602 c -0.22584,-0.0585 -0.60307,0.0435 -0.96272,0.54153 1.2898,0.0997 1.3391,-0.44397 0.96272,-0.54153 z m 388.937618,0.96272 c -0.14128,-0.0118 -0.29487,0.0722 -0.36102,0.27076 1.2372,0.47071 0.78485,-0.23534 0.36102,-0.27076 z m -380.8147,0.03 c -4.769458,2.88279 3.8255,0.81885 0,0 z m 403.49871,1.02288 c -0.99279,0.1085 -1.44821,1.2143 -0.42119,3.70045 -2.96459,6.84743 6.24275,9.6638 5.3852,2.16611 -0.17729,-3.48461 -3.30935,-6.04739 -4.96401,-5.86656 z m 103.28147,5.32508 c -0.79956,0.15705 -1.52535,1.32264 -2.43687,4.21189 -1.72468,3.55752 -10.9085,8.96166 -12.756,13.29752 -2.8504,0.48623 -9.7116,2.20069 -4.12163,8.15301 0.57911,3.47065 1.42459,8.42554 6.10723,6.73902 -0.3667,2.79407 9.6566,-1.38862 7.46106,4.81358 7.18356,-3.1013 6.71624,-12.66726 9.567,-15.46364 7.01123,-0.51764 -2.64359,-7.60946 -0.45128,-10.98099 -0.43755,-3.08622 6.77479,-2.60974 2.31654,-6.52842 -2.83178,-1.9786 -4.35344,-4.50371 -5.68605,-4.24197 z m 15.97509,0.75212 c -1.01397,0.0445 -2.4085,0.77601 -0.2106,1.47416 1.5614,-1.12595 0.99925,-1.50876 0.2106,-1.47416 z m -3.51994,2.10594 c 0.1611,2.25504 3.22073,0.27693 0,0 z m 14.68144,1.08306 c -1.32464,0.73108 0.30059,1.25019 0,0 z M 403.717,843.00607 c -0.2733,0.0492 -0.81172,0.52938 -0.12034,0.57162 0.3567,-0.48444 0.28432,-0.60114 0.12034,-0.57162 z m 67.29993,0.48136 c -2.27018,0.0999 -0.63352,4.68714 3.21909,8.21318 8.92251,6.62024 12.14255,24.29732 21.81155,27.28701 0.88609,-0.3428 1.42434,2.22868 2.64747,0.93263 0.39474,-7.89925 0.26542,-10.96501 -3.64027,-14.86194 -1.79251,-2.81016 -3.78449,-5.06142 -5.95681,-7.13013 -3.96143,-3.77247 -8.50534,-6.97713 -13.50812,-12.1543 -2.1898,-1.6685 -3.68458,-2.32553 -4.57291,-2.28645 z m 18.08103,14.44075 c 1.08475,0.93704 4.62973,0.10922 0.12034,-1.56441 -0.57678,0.73604 -0.48193,1.25207 -0.12034,1.56441 z m 52.94943,-13.95939 c -0.27662,0.0174 -0.68357,0.17455 -1.23348,0.57161 1.66566,0.54774 2.06332,-0.62379 1.23348,-0.57161 z m -140.04523,0.54153 c -0.1791,0.0292 -0.27004,0.18001 0.0902,0.54153 0.76676,-0.29167 0.20825,-0.59016 -0.0902,-0.54153 z m 157.97583,0.78221 c -0.46496,0.21954 -1.58265,3.62125 0.12034,1.17331 0.11951,-0.96966 0.0347,-1.2465 -0.12034,-1.17331 z m -155.6292,0.03 c -0.15056,-0.002 -0.21873,0.0845 0.03,0.33094 0.66602,-0.0857 0.22085,-0.32695 -0.03,-0.33094 z m -0.9928,1.05297 c -0.21238,0.004 -0.3281,0.1217 0.27076,0.33094 0.25066,-0.22305 -0.0584,-0.33439 -0.27076,-0.33094 z m 153.01181,0.90255 c -0.13249,0.0103 -0.29426,0.19818 -0.48136,0.66187 1.06076,2.48369 1.05547,-0.70668 0.48136,-0.66187 z m -151.86859,0.12034 c -0.0701,-0.0128 -0.19737,0.003 -0.36102,0.03 -0.6699,0.95312 0.85137,0.0599 0.36102,-0.03 z m -1.41399,0.69195 c -0.23506,-0.0241 -0.39508,0.0601 -0.12034,0.36102 1.08494,0.003 0.51211,-0.32089 0.12034,-0.36102 z m 0.84238,0.93264 c -0.48725,0.0837 0.71606,1.26303 0.33093,0.0602 -0.14772,-0.042 -0.26133,-0.0721 -0.33093,-0.0602 z m 101.77722,0.15042 c -3.10671,1.38553 1.77795,3.69067 0,0 z m -102.80011,1.02289 c -0.25067,0.0482 -0.7063,0.50901 -0.0602,0.54152 0.29692,-0.45217 0.21058,-0.57045 0.0602,-0.54152 z m 1.23348,0.12034 c -1.01811,1.43433 1.11024,0.0702 0,0 z m 152.38003,0.63178 c -1.42425,0.0735 1.23998,1.62121 0,0 z m -151.4474,0.21059 c -0.78837,0.94797 1.32586,0.35492 0,0 z m -182.55518,0.93268 c -0.58469,0.20683 -1.08222,2.69819 0.54152,0.8123 -0.13736,-0.68002 -0.34663,-0.88124 -0.54152,-0.8123 z m 181.74289,0.30085 c -0.68314,0.65832 1.06093,0.14276 0,0 z m 66.45755,0.2106 c -1.29774,-0.0139 3.13,2.84512 0.96272,0.21059 -0.454,-0.14342 -0.77733,-0.20861 -0.96272,-0.21059 z m 94.52677,0.18051 c -0.87455,0.094 -2.25612,1.94225 0.45127,1.35382 0.25808,-1.07259 -0.0537,-1.39654 -0.45127,-1.35382 z m -159.99152,0.63178 c -0.66713,0.65157 1.06732,0.13996 0,0 z m 150.99613,0.03 c -0.10892,0.0459 -0.19332,0.27409 -0.18051,0.7822 1.06869,0.47362 0.50727,-0.92001 0.18051,-0.7822 z m 6.9797,1.02288 c -0.98639,-0.0936 -3.27424,3.84241 -1.41399,6.43817 3.19748,5.72668 6.0344,-5.96292 1.11314,-2.22628 0.96277,-3.01542 0.81753,-4.16286 0.30085,-4.21189 z m -76.3254,0.6017 c -0.13259,0.0373 -0.21892,0.1761 -0.18051,0.54153 2.35109,1.48906 0.75503,-0.70306 0.18051,-0.54153 z m -81.22924,0.63183 c -0.15125,-0.002 -0.25243,0.0567 0,0.30085 0.66811,-0.0885 0.25209,-0.29809 0,-0.30085 z m -1.32373,0.72204 c -0.15049,-0.002 -0.21784,0.0563 0.03,0.30085 0.66604,-0.0865 0.22075,-0.29738 -0.03,-0.30085 z m 70.7296,0.21059 c -2.30118,-0.25743 4.80748,4.17494 0.57162,0.12034 -0.24341,-0.0628 -0.41821,-0.10317 -0.57162,-0.12034 z m 81.68051,0.42119 c -1.90525,1.94446 -12.05935,-0.6737 -14.1399,1.98561 -2.82408,2.83605 -6.32511,11.5092 -4.27206,14.16999 0.41974,4.99416 1.57052,10.93405 3.67036,1.47416 -0.90451,-8.66755 2.5831,-4.12988 2.91824,1.20339 -0.86182,6.95572 7.46958,0.11284 2.73772,-3.15891 -5.15563,-5.51507 4.66304,-9.46242 0.51145,-8.81488 -6.73586,5.19294 -8.65382,-5.19779 -0.51145,-4.3924 3.86883,1.97799 6.89874,1.16449 9.08564,-2.46696 z m -62.9677,0.45128 c -0.69327,0.19963 1.33232,1.69884 0.9928,0.12034 -0.50947,-0.14661 -0.83281,-0.16642 -0.9928,-0.12034 z m -275.09635,0.27076 c -0.16401,0.0382 -0.41286,0.19629 -0.69195,0.57161 1.04176,1.53069 1.40265,-0.73718 0.69195,-0.57161 z m 273.201,0.18051 c -0.22503,0.0424 -0.26263,0.19516 0.39111,0.48136 0.88361,-0.32863 -0.0161,-0.55193 -0.39111,-0.48136 z m 2.70764,0.81229 c -1.33378,0.43994 1.36473,1.23193 0,0 z m -88.29918,0.51145 c -0.0641,0.0562 -0.0707,0.23907 0.12034,0.66186 0.9598,0.22166 0.0722,-0.83043 -0.12034,-0.66186 z m 87.90808,0.81229 c -0.28719,-0.0614 -0.44679,0.0621 0.03,0.63178 1.26949,0.0858 0.44856,-0.52945 -0.03,-0.63178 z m 1.68476,0.96271 c -0.23354,-0.0232 -0.50942,0.17874 -0.75213,0.75213 2.36748,3.65048 1.7641,-0.65143 0.75213,-0.75213 z m -279.48875,0.0902 c -0.21884,0.0568 -0.49242,0.268 -0.84238,0.72204 1.51849,1.68181 1.79071,-0.96813 0.84238,-0.72204 z m 261.55814,0.0602 c -0.0667,-0.005 -0.15436,0.11273 -0.21059,0.45127 0.53903,0.65255 0.41068,-0.43778 0.21059,-0.45127 z m 95.09838,0.78221 c -5.17961,0.0192 3.6652,1.45193 0,0 z m -518.45313,0.18051 c -0.24319,-0.0122 -0.46609,0.20264 -0.3911,0.81229 1.63273,0.25477 0.92613,-0.78533 0.3911,-0.81229 z m -0.81229,0.18051 c -0.50886,0.15137 0.41602,1.34062 0.33094,0.03 -0.13745,-0.03 -0.25824,-0.0517 -0.33094,-0.03 z m 517.06922,0.54153 c -1.08405,0.16832 -0.18222,1.67851 1.08306,0.15042 -0.48236,-0.15812 -0.8329,-0.18927 -1.08306,-0.15042 z m 7.46106,0.3911 c -3.38486,-0.13099 -7.56398,2.49388 -3.42968,4.93392 10.71985,1.75037 -4.8891,0.4181 2.85807,6.52843 4.81604,0.37754 1.58696,-5.58957 6.58859,2.16611 4.98707,2.23917 12.77988,7.85087 9.23606,14.41067 2.64991,3.70295 16.97825,7.49132 9.86785,0.0602 5.42522,-0.54855 10.96654,-4.3033 12.81617,5.89664 1.05638,3.36531 5.27587,3.7713 8.09284,4.03138 4.81555,1.32945 -3.23738,-8.15293 -3.73053,-8.27335 -3.46415,-8.45821 -1.60347,-9.96671 -10.37929,-16.09542 -6.77117,-1.68096 -14.02058,-10.3915 -20.15688,-8.63437 -1.70184,2.26463 -8.13641,6.73562 -8.48395,-1.2034 0.5011,-2.68167 -1.24834,-3.74218 -3.27925,-3.82078 z m -99.22001,0.27076 c -2.21252,1.62117 2.64725,2.86099 0,0 z m 18.50221,1.02289 c -1.08269,0.1198 3.2582,8.54803 3.24917,3.45976 -1.9298,-2.61382 -2.88827,-3.49969 -3.24917,-3.45976 z m 52.97952,0.15042 c -3.96552,0.37695 -0.0984,2.24562 0,0 z m 34.4773,0.18051 c -0.10872,0.0542 0.002,0.30158 0.48136,0.78221 4.48559,1.87532 -0.0103,-1.01709 -0.48136,-0.78221 z m -12.99668,0.03 c -0.35944,-0.007 -0.59509,0.20433 -0.0602,0.81229 1.61345,-0.20901 0.65924,-0.80171 0.0602,-0.81229 z m -8.45386,0.66187 c -0.32072,-0.0312 -0.80445,0.18727 -1.44407,0.90255 1.92762,1.587 2.40624,-0.80897 1.44407,-0.90255 z m -12.66574,0.12034 c -0.41616,0.04 0.322,1.80229 0.51144,0.30085 -0.23702,-0.23671 -0.41541,-0.3101 -0.51144,-0.30085 z m 2.91823,0.48136 c -2.17624,-0.005 -1.5788,2.93469 1.95552,0.57161 -0.79437,-0.41652 -1.45331,-0.57054 -1.95552,-0.57161 z m 6.13732,0 c -0.89562,-0.10726 -1.90415,1.60762 0.72204,0.87246 -0.13322,-0.5991 -0.4235,-0.83671 -0.72204,-0.87246 z m 10.04836,0.18051 c -0.27794,0.0705 -0.57043,0.32396 -0.81229,0.81229 3.08621,1.65857 2.01669,-1.11747 0.81229,-0.81229 z m -13.02676,0.18051 c -0.23747,0.0547 -0.49098,0.2055 -0.69196,0.51144 2.66917,0.86994 1.72096,-0.74822 0.69196,-0.51144 z m -4.9941,0.24067 c -0.039,-0.0132 -0.1015,0.10647 -0.15042,0.45128 0.28627,0.74694 0.2674,-0.4118 0.15042,-0.45128 z m -70.81986,0.36102 c 0.0292,3.34838 2.69969,1.00481 0,0 z m 106.83149,0.24068 c -1.8402,-0.0318 -4.16383,0.24507 -1.47416,0.96272 4.67116,-0.59058 3.31437,-0.93095 1.47416,-0.96272 z m -84.20764,1.11314 c -1.32536,-0.0106 1.84433,4.37251 1.74492,0.84238 -0.87781,-0.62458 -1.43907,-0.83993 -1.74492,-0.84238 z m 62.51643,0.93264 c -2.44866,0.0116 -4.36527,0.78753 -2.61739,2.43687 3.12562,-1.1625 4.96641,-0.99695 8.03267,1.14323 1.73561,-2.33144 -2.267,-3.59509 -5.41528,-3.5801 z m -82.94408,0.0301 c -0.13672,-0.0342 -0.28992,0.075 -0.48136,0.48136 1.10422,2.87132 1.07386,-0.33339 0.48136,-0.48136 z m 18.98357,0.0902 c -0.0659,0.0248 -0.14334,0.11808 -0.1805,0.33093 0.84689,0.81739 0.46602,-0.43849 0.1805,-0.33093 z m 114.83408,0.30084 c -0.301,0.019 -0.62095,0.24178 -0.90255,0.78221 3.2298,2.78403 2.20686,-0.86429 0.90255,-0.78221 z m -112.51754,0.99285 c -0.38582,0.0113 -0.79446,0.20716 -0.0902,0.54153 0.83908,-0.37924 0.47607,-0.55274 0.0902,-0.54153 z m 54.63419,0.27077 c -1.16223,0.0352 -1.8395,0.65178 0.7822,2.07586 2.99811,-1.22062 0.71209,-2.12116 -0.7822,-2.07586 z m -30.56627,1.32373 c -0.30193,-0.0303 -0.70405,0.47669 -0.9928,2.13603 1.91839,0.67317 1.65706,-2.06938 0.9928,-2.13603 z m 34.23662,0.0902 c -1.64461,-0.10603 -1.10476,2.43136 0.36102,0.0602 -0.12941,-0.0328 -0.25137,-0.0531 -0.36102,-0.0602 z m 65.70543,1.26357 0.84238,0.15042 c 8.30243,10.82637 4.32808,0.0961 -0.84238,-0.15042 z m 4.30214,0.75212 c -0.21945,-4.7e-4 -0.27559,0.15371 0.48136,0.48136 0.12086,-0.32578 -0.26191,-0.48089 -0.48136,-0.48136 z m -82.73348,0.33093 c -0.34022,-0.0657 -0.75599,0.27611 -0.24068,1.23348 0.84554,-0.69455 0.58089,-1.16777 0.24068,-1.23348 z m -238.51311,1.38391 c -0.26055,0.22453 0.0271,3.30503 0.45128,1.02289 -0.2275,-0.86868 -0.36443,-1.09773 -0.45128,-1.02289 z m 238.57328,0.3911 c -0.54396,0.19198 -1.33154,1.80584 -0.18051,2.97841 0.87501,-2.40997 0.60359,-3.12772 0.18051,-2.97841 z m -0.81229,0.12034 c -0.0844,-0.0267 -0.31654,0.11694 -0.72204,0.54153 -0.95956,2.85564 1.08802,-0.42587 0.72204,-0.54153 z m -237.91141,0.63179 c -0.0783,-0.0292 -0.21497,0.16127 -0.42119,0.66186 0.0789,3.33003 0.76013,-0.53542 0.42119,-0.66186 z m 318.83979,1.11318 c 1.26515,4.25228 -3.93791,2.25157 -6.79918,4.84367 -1.24628,4.57937 15.93076,-2.64955 6.79918,-4.84367 z m -82.43263,0.36102 c -0.93475,1.46799 1.7199,0.14386 0,0 z m 29.75397,1.62459 c -1.82158,1.29888 -0.14432,2.77319 0,0 z m 4.63308,0.36102 c -4.29138,2.96555 -1.86782,6.4867 -0.48136,2.16611 0.94429,-0.0889 0.67193,-0.84107 0.30085,-1.02289 0.0771,-0.34885 0.11832,-0.72312 0.18051,-1.14322 z m -80.86822,0.33093 c -1.05485,0.0304 -1.92547,0.43505 -2.49705,1.50425 -2.61839,1.98781 -0.0187,0.43414 6.40808,3.55001 6.87081,0.1065 15.43704,6.47914 20.30731,3.67036 -4.63671,-0.81076 -4.86315,-3.66328 -10.92082,-6.34791 -3.37839,2.34438 -9.53022,-2.48526 -13.29752,-2.37671 z m 137.54817,0.9928 c -0.99366,0.0275 -0.81578,1.83523 3.51994,5.9869 0.23586,-3.76086 -2.39379,-6.01814 -3.51994,-5.9869 z m -116.579,1.26357 c -0.23928,-0.0238 -0.8603,0.0654 -2.10594,0.30085 -3.27181,1.72755 3.14282,-0.1979 2.10594,-0.30085 z m 50.36213,2.46696 c -0.54675,-0.20173 -2.82203,3.18735 -0.27076,1.71484 0.44536,-1.1767 0.45301,-1.64759 0.27076,-1.71484 z m 71.87283,1.23348 c -0.52574,0.0978 -0.51175,0.93963 1.32374,3.03858 1.94206,-1.32939 -0.4475,-3.20149 -1.32374,-3.03858 z m -85.95256,0.0902 c -1.03713,0.0956 -5.00339,2.23883 -1.38391,1.5945 1.74178,-1.25139 1.85533,-1.63798 1.38391,-1.5945 z m 33.78534,0.54153 c -7.3397,3.16217 3.61968,7.16352 0,0 z m -42.02861,1.26361 c -0.41556,-0.0304 -0.5757,1.80652 0.33094,0.3911 -0.11114,-0.2674 -0.23504,-0.38408 -0.33094,-0.3911 z m -1.62458,0.03 c -0.40915,0.1506 -0.71089,1.56951 0.3911,0.42119 -0.11515,-0.37023 -0.25472,-0.47139 -0.3911,-0.42119 z m 3.51993,0.12034 c -1.24259,0.0305 -2.77275,1.00602 0.9928,0.75212 0.0813,-0.56879 -0.42798,-0.76601 -0.9928,-0.75212 z m -23.1052,0.12034 c -1.25812,0.0549 -2.45629,0.46422 -0.51145,1.9856 5.51151,0.68054 9.62453,-2.62009 2.16612,-1.86526 -0.10428,-0.072 -0.89981,-0.15327 -1.65467,-0.12034 z m 10.74031,0.12034 c -2.39976,1.61705 -2.46676,2.85266 0.9928,1.86526 9.00968,-1.86554 4.39231,-1.15271 -0.9928,-1.86526 z m 16.66703,1.35382 c -0.84682,-0.0499 -2.79945,0.62751 -6.07715,2.55721 -1.24509,0.16182 -1.85895,1.64318 -1.47416,2.73773 5.99794,-1.57331 9.41433,-5.18531 7.55131,-5.29494 z m 93.35346,0.48136 c -0.10081,0.095 0.005,0.69471 0.48135,2.07585 4.34502,6.36564 -0.0446,-2.48758 -0.48135,-2.07585 z m -56.98081,0.27076 c -0.17192,0.0178 -0.43482,0.27264 -0.75212,0.96272 1.04882,0.0785 1.13035,-1.00191 0.75212,-0.96272 z m 53.09985,1.11314 c -0.75323,4.88421 3.5727,3.53293 0,0 z m -109.23828,0.45132 c -0.589,0.0483 -0.93484,0.49649 -0.72204,1.5945 7.85065,2.99584 2.8256,-1.76702 0.72204,-1.5945 z m 117.90274,1.47416 c -0.74237,-0.24358 0.67785,7.02296 1.56441,3.42968 -0.82724,-2.42931 -1.31696,-3.34848 -1.56441,-3.42968 z m -22.23275,1.05297 c -0.18158,0.0532 -0.42269,0.3036 -0.72203,0.87247 1.20852,2.39603 1.50887,-1.10293 0.72203,-0.87247 z m -6.85936,0.57162 c -0.1677,-0.0204 -0.38202,0.0137 -0.69195,0.12034 -0.0615,2.71438 1.86589,0.0226 0.69195,-0.12034 z m -78.43134,0.66187 c -0.46282,0.10169 -0.86727,0.48365 -0.51144,1.32373 2.20969,-0.8499 1.28283,-1.49322 0.51144,-1.32373 z m 79.24364,0.1805 c -0.8957,0.005 -0.39349,0.66004 0.24068,1.05298 -0.44687,0.20863 0.46555,2.12669 1.56441,1.20339 -0.347,-0.41437 -0.64211,-0.71003 -0.87246,-0.90254 0.41974,0.057 0.65789,-0.20856 0.27076,-1.14323 -0.54913,-0.13994 -0.93534,-0.21195 -1.20339,-0.2106 z m -287.52142,0.03 c -2.20907,-0.17938 -5.33714,5.79776 -6.7691,8.5742 -8.93665,-2.50815 -8.01419,11.64501 -12.87634,18.95349 0.68032,23.10433 20.12739,-2.03584 18.68273,-13.83906 0.68798,-9.0905 4.80741,0.34363 3.30934,-6.9797 -0.28842,-4.81839 -1.1895,-6.61497 -2.34663,-6.70893 z m 230.48044,3.73053 c -5.96117,2.49176 3.80456,4.27523 0,0 z m 86.70469,0.42119 c -0.22474,0.0294 -0.42048,0.33504 -0.54153,1.08305 3.84787,6.90525 1.75514,-1.24149 0.54153,-1.08305 z m -84.77925,0.0902 c -0.0767,0.11727 0.83155,0.64278 3.3695,1.8051 -11.02461,-0.14292 -15.83658,13.69851 -12.78608,11.64286 -4.84392,4.76827 -2.1253,-7.79696 -6.55851,-5.65597 -2.45711,3.98881 -6.41118,2.33079 -6.64876,7.34072 -5.11349,0.33537 -2.67353,7.13166 -6.378,1.5945 -2.29242,9.66167 -11.96197,10.10621 -21.02935,12.39498 -1.00401,0.50409 -1.90307,0.95534 -2.73772,1.38391 0.0412,-0.10969 0.0576,-0.24387 0,-0.42119 -2.08197,0.21358 -1.3692,0.74772 -0.66187,0.75212 -5.45091,2.88662 -7.08594,5.09922 -6.52843,16.45644 -5.07743,-7.84217 0.0644,15.05493 -2.40679,21.3302 -7.89909,4.83302 -1.092,12.61911 5.7763,8.51402 9.22441,-0.2551 16.20339,-2.90208 25.93319,-5.02417 9.00108,-4.48677 18.53188,0.40495 18.47213,6.67884 -1.64437,10.09786 2.56395,4.25882 7.88224,-0.30084 6.36109,-4.08774 3.04665,2.50997 -0.33093,6.01698 1.60596,0.48555 0.55432,6.72448 0.54153,10.28908 -1.21643,8.4476 12.99952,5.4202 12.81617,6.6186 0.43422,7.0513 9.79463,-0.6648 14.77168,-1.8351 6.48775,-13.56131 22.05651,-20.21062 23.61665,-36.67354 1.75965,-2.98212 1.06058,-6.4443 0.24068,-8.93522 -4.06932,-4.53074 -0.18118,-11.04385 -5.05426,-10.1687 1.22067,-10.608 -10.40523,-16.51603 -5.23477,-29.51329 -7.29046,0.64733 -2.38715,-21.61923 -7.9725,-10.31912 -3.97608,7.49217 -5.30866,28.65066 -16.09543,15.19288 -10.82055,-5.3371 6.95266,-16.15516 -1.77501,-14.68143 -1.77274,-1.43475 -10.99144,-4.83446 -11.22166,-4.48266 z m -4.63308,84.5085 c -0.56259,-0.17011 -1.42069,0.34294 -2.7979,1.95551 0.764,-0.11976 1.7786,-0.89715 2.7979,-1.95551 z m -0.0902,-84.14748 c -0.24705,-0.0221 -0.51145,0.29199 -0.66186,1.23348 2.10093,1.9075 1.40302,-1.16698 0.66186,-1.23348 z m 85.35082,4.24202 c -0.22775,0.0195 -0.48101,0.071 -0.7822,0.15043 -0.22194,5.42849 4.1985,-0.44338 0.7822,-0.15043 z m -67.5406,5.92673 c -3.55559,0.61283 2.26527,3.56098 0,0 z m 85.95257,6.34791 c -0.71802,0.0445 -1.8986,4.0173 0.33093,3.189 0.23542,-2.43865 -0.005,-3.20922 -0.33093,-3.189 z m -80.32669,3.33943 c -0.42981,0.0307 -0.75588,0.33329 -0.24068,1.11314 1.97867,-0.46542 0.95701,-1.16431 0.24068,-1.11314 z m 80.86821,1.20339 c -0.20735,0.0398 -0.21883,0.32291 0.2106,1.05298 2.76353,0.93245 0.41145,-1.17225 -0.2106,-1.05298 z m 2.46697,1.74493 c -0.38754,-0.0318 -0.83654,1.79903 0.33093,1.56441 9.6e-4,-1.16029 -0.15479,-1.54996 -0.33093,-1.56441 z m 30.44592,6.04706 c -0.63413,0.11737 0.53715,3.31545 0.75212,0.51145 -0.37405,-0.41445 -0.60579,-0.53853 -0.75212,-0.51145 z m -184.23995,0.0602 c -0.59317,0.0396 -1.18414,0.56512 0.51145,0.18051 -0.11254,-0.14336 -0.31372,-0.19369 -0.51145,-0.18051 z m 178.91492,1.65467 c -0.34622,-0.0992 -3.22325,1.83756 -0.78221,0.96272 0.74063,-0.66228 0.89762,-0.92967 0.78221,-0.96272 z m 1.29365,1.11314 c -8.34091,2.47809 6.33891,6.66688 0,0 z m -26.41454,1.2034 c -0.51138,-0.0426 -1.55968,1.72541 0.0602,1.53433 0.27992,-1.12186 0.17227,-1.51496 -0.0602,-1.53433 z m -0.15043,3.03858 c -0.35622,0.1033 -1.10408,1.35203 0.03,0.84237 0.21534,-0.69731 0.13183,-0.88934 -0.03,-0.84237 z m -16.96788,3.30933 c -2.3868,-0.20505 6.23042,11.00319 7.13012,7.5814 -2.00836,-2.23422 -2.86538,-5.60996 -6.01698,-7.13012 -0.50355,-0.29449 -0.86624,-0.43007 -1.11314,-0.45128 z m 8.84496,1.95552 c -0.5921,-0.0284 -1.23833,2.26881 0.48136,1.02289 -0.0973,-0.74268 -0.284,-1.01342 -0.48136,-1.02289 z m -156.56184,1.77501 c -0.2588,-0.0141 -0.43819,0.33913 -0.0602,1.35382 1.16456,-0.33091 0.49152,-1.33028 0.0602,-1.35382 z m 158.09617,0.90255 c -0.40503,-0.0836 -0.93825,1.15697 0.30085,0.63178 -0.0317,-0.44038 -0.16584,-0.60392 -0.30085,-0.63178 z m -47.41381,7.94241 c -1.21406,5.19184 2.59922,1.31257 0,0 z m -89.50258,24.9103 c -0.32074,-0.005 -1.02261,0.2223 -0.24068,0.33094 0.49282,-0.24013 0.43312,-0.32831 0.24068,-0.33094 z m -2.31654,0.27077 c -0.19767,-0.0218 -0.38181,0.0382 -0.48136,0.21059 1.71835,0.51881 1.07434,-0.14545 0.48136,-0.21059 z m -2.46696,0.36102 c -0.22811,0.0447 -0.53965,0.3553 0.0902,0.33093 0.16449,-0.28175 0.0466,-0.35775 -0.0902,-0.33093 z m 1.47416,0.12034 c -0.0653,-0.0135 -0.11312,0.0782 -0.18051,0.36101 0.50546,0.63802 0.37637,-0.32072 0.18051,-0.36101 z m 2.28645,0.69195 c -0.32134,-0.007 -1.02167,0.24241 -0.24068,0.36102 0.4998,-0.24473 0.43348,-0.3568 0.24068,-0.36102 z m 34.29679,4.69324 c -0.0934,-0.0106 -0.28666,0.0575 -0.63179,0.30085 0.27576,0.53998 0.91209,-0.26898 0.63179,-0.30085 z m -0.2106,1.44408 c -0.32128,-0.005 -1.05369,0.21771 -0.27076,0.33093 0.4945,-0.24463 0.46354,-0.32775 0.27076,-0.33093 z m -1.32373,4.12163 c -5.03728,0.16165 6.36846,3.18265 3.24917,0.15042 -1.48137,-0.11866 -2.52956,-0.17352 -3.24917,-0.15042 z M 3.888662,993.671 c -3.17432,0.2133 2.68416,11.3088 0.75212,0.09 -0.29698,-0.093 -0.5405,-0.1045 -0.75212,-0.09 z m 1.65467,5.1445 c -0.10459,0.029 -0.21082,0.2331 -0.33094,0.7521 0.78782,0.6577 0.6447,-0.8385 0.33094,-0.7521 z m 658.769108,1.775 c -1.08921,0.096 -1.79732,4.4343 0.54153,9.2361 -3.08436,5.1787 -10.71552,15.6787 -7.70174,19.6454 1.33918,0.7098 14.21447,-10.9251 16.06534,-12.4251 -5.89,-0.9255 -5.59483,-13.5654 -6.9797,-9.5068 -0.26807,-5.1025 -1.18018,-7.0153 -1.92543,-6.9496 z m -658.769108,0.1203 c -0.18211,2.0408 2.60492,-0.034 0,0 z m 0.63178,1.9255 c 0.36721,1.1246 1.35829,-0.1409 0,0 z m -0.18051,0.6618 c 0.0144,2.9967 2.60909,-0.083 0,0 z m 0.78221,1.5945 c -0.15934,0.015 -0.3633,0.09 -0.6017,0.2106 0.99836,1.7563 1.71709,-0.3152 0.6017,-0.2106 z m -1.23348,0.331 c -0.18178,0.034 -0.32674,0.3734 -0.2106,1.2635 1.23754,0.028 0.61052,-1.3382 0.2106,-1.2635 z m 1.74492,0.6618 c -0.44242,0.097 -0.94519,1.0386 0.12034,1.8051 0.53951,-1.451 0.22377,-1.8808 -0.12034,-1.8051 z m 567.190668,1.3839 c -0.24254,0.038 -0.59725,0.1805 -1.14323,0.4814 -1.93135,4.369 2.84098,-0.7458 1.14323,-0.4814 z m 9.77759,1.053 c -2.9895,2.0348 3.09208,3.7312 0,0 z m 0.42119,2.3166 c -0.79071,-0.01 0.38694,0.8277 0.45128,0.06 -0.20315,-0.043 -0.33832,-0.059 -0.45128,-0.06 z m -9.62717,0.3309 c -0.79254,-0.011 0.4205,0.8441 0.48136,0.06 -0.2038,-0.044 -0.36813,-0.059 -0.48136,-0.06 z m 10.40938,0.4513 c -2.49725,0.01 0.64546,3.1024 0,0 z m -4.7835,1.9555 c -6.23117,0.079 -8.67462,0.958 -7.67165,10.0784 2.10805,5.8642 10.21683,-4.5243 10.5598,-10.0784 -1.04549,6e-4 -1.99798,-0.011 -2.88815,0 z m -575.283508,0.7822 c -0.95789,0.053 0.69658,2.264 0.6017,0.1504 -0.25526,-0.098 -0.46486,-0.158 -0.6017,-0.1504 z m 0.69196,2.828 c -2.48852,1.7951 1.62327,2.0169 0,0 z m 572.605948,6.4381 c -3.37715,3.1816 2.39759,0.2541 0,0 z m -525.97435,0.9628 c -7.14178,3.8697 1.53771,3.7526 0,0 z m -6.43817,0.3309 c -0.7742,0.01 -0.3386,0.1736 3.67035,0.4212 -0.91217,-0.2797 -2.89616,-0.4292 -3.67035,-0.4212 z m 605.81968,0.9326 c -3.48871,0.1886 -11.39475,9.4784 -19.19417,12.1242 -8.62637,2.9571 -12.16584,8.5253 -1.9856,10.5598 5.84839,-5.3553 11.00184,-8.2228 15.01236,-11.6127 1.84693,-2.7011 11.02869,-6.3576 7.82208,-9.567 -0.27928,-1.1187 -0.84958,-1.5478 -1.65467,-1.5043 z m -639.274098,2.7678 c -0.51309,0.038 1.40007,2.3809 0.8123,0.4212 -0.43595,-0.3184 -0.69389,-0.4298 -0.8123,-0.4212 z m -1.50424,0.1505 c -0.14451,0.056 -0.30118,0.2969 -0.51144,0.7822 1.12168,1.8762 1.13765,-1.024 0.51144,-0.7822 z m 2.40679,1.8953 c -2.86425,1.0673 3.40065,1.4514 0,0 z m 12.064048,0.3309 c -0.68737,0.1543 -1.07767,1.1241 -1.14323,3.4297 0.20033,0.036 10.19492,6.8968 1.38391,2.9483 -5.500058,0.8699 -0.1367,3.7077 6.19749,2.1662 0.31801,-0.394 9.62796,-0.1695 5.11443,-1.8352 -4.96178,-0.273 -9.4905,-7.1716 -11.5526,-6.709 z m -10.078438,0.7522 c -0.35569,-0.066 -0.35702,0.5464 0.84237,1.0229 -0.29082,-0.696 -0.62897,-0.9835 -0.84237,-1.0229 z m -0.78221,0.6317 c -0.071,0.049 -0.0192,0.227 0.27076,0.6318 1.20336,0.2591 -0.0578,-0.7785 -0.27076,-0.6318 z m -1.41399,0.1505 c -0.22499,0.01 -0.23626,0.2105 0.48136,0.8123 0.85801,-0.2713 -0.10638,-0.823 -0.48136,-0.8123 z m 2.79789,0.6318 c 1.77745,3.6331 0.98391,0.2369 0,0 z m -1.32373,0.1805 c -0.0648,0.051 0.12817,0.3035 0.81229,0.9025 1.85362,0.589 -0.61785,-1.0554 -0.81229,-0.9025 z m 9.416568,1.9856 c -0.9785,0.025 -1.86169,0.8451 0.84238,1.7148 0.73082,-1.2698 -0.0814,-1.7346 -0.84238,-1.7148 z m 16.63695,2.4068 c -3.44541,0.8957 2.3728,0.2524 0,0 z m -6.55851,1.8953 c -0.33529,0 -0.78972,0.2914 -1.29365,1.1132 2.31175,1.4903 2.29953,-1.1097 1.29365,-1.1132 z m -2.49704,0.692 c -7.50676,1.4396 -2.23393,4.1981 0,0 z m 0.33093,1.5644 c -0.32186,0.5279 0.13968,1.3362 0,0 z m 640.53766,2.5873 c -2.69229,4.6614 4.27907,1.0969 0,0 z m -42.50996,5.7161 c -5.56763,5.3841 3.33716,1.3459 0,0 z" id="path3005" sodipodi:nodetypes="scscccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccsccccscccccsscscccccccccccscsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscsccccccccsccsscsccccccccccccscsccccccccccccccccccccscsccsccccccccccscccccccccccccccccccccccccccccscccssccccsccscscccccccscsccccccccscscccccccccscscccccccccccccccccccccccccccccccscscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscscccscsscsccscsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscscccccccccccccccccccccccccscscccccccccccccccccccccccccccscsccccccccccccccccccccccscsccccccccccccccccccccccccccccccccccccccccccscscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccsccccccscssccccscccccccccsccccscccccccccccccccscccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscscccccccccccccccccscsccccccscsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccscccccccccscscccsccccscccccccccccccccccscsccccccccccccscsccccccccccccccccccccccccccccccccccccccccccccccccscsccccccccccccccccccccccccccccccccccsccccsccccccccccccccccsccssccccccccscccccccscscccccscccccccccccccccccccccccccccccccccccccccccccscscccccccccccccsccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscsccccccccccccccccccccccccccsccccsccccccccccccccccccccscsccccccccccccccccccccccscscccccccccscsccccccsccccscccccccccccccccccccccccccccccccccccccccccccccccscscccccccccccccccccccccccsccsccccccccccccccccccccccccccccccccscscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
        </g>
        <g inkscape:groupmode="layer" inkscape:label="usa" style="display:inline" transform="translate(135.71428,-578.07648)" class="tooltip-target" id="example-target-1">
            <path inkscape:connector-curvature="0" id="usa" style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-opacity:1;filter:url(#filter14187)" d="m -103.50742,585.64648 c -4.97405,-6.52658 -14.25665,-9.91257 -20.412,-14.16758 -8.4678,-2.25581 -3.80423,-6.94414 -13.58875,-5.9532 -3.67157,-1.63089 -14.18182,3.81342 -23.23999,4.15533 -10.6995,2.80375 8.36736,18.32592 0.38027,14.39141 -0.35923,4.98403 -4.78558,-5.00254 -15.60925,0.25151 -3.19311,3.9476 4.9733,14.30193 12.64529,10.13982 -4.32579,9.10221 -16.92463,2.9409 -22.09796,12.94854 7.77928,6.85628 -8.55915,8.00995 3.41824,8.9512 -7.44868,9.31573 8.85252,14.71556 6.54467,11.41387 1.2742,5.11127 -14.79569,11.42919 -21.58531,12.59234 -16.84422,5.20432 1.63885,1.00293 9.3215,0.51385 8.45717,-2.67861 17.57522,-6.48184 25.08359,-10.57545 -4.49381,-5.99365 23.15043,-13.06664 8.6464,-7.21917 -10.28925,13.15237 12.35045,-4.04333 13.97986,4.91467 7.12281,4.55341 13.77631,12.74238 17.82951,13.07851 0.61894,2.98558 2.1366,11.43134 2.02148,18.80031 5.92108,-0.47442 2.9213,-19.02488 -1.28808,-22.37225 -9.18501,1.83459 -10.83079,-11.01806 -2.76911,-18.28389 6.90655,-11.19327 13.8131,-22.38655 20.71964,-33.57982 z m -9.14292,103.56848 c 24.072733,3.62864 48.145469,7.25728 72.218202,10.88592 5.81285,9.22533 15.68009,3.4909 22.0715,12.56586 13.76217,6.58229 -10.99032,22.61659 7.43819,17.08462 8.41053,-3.96013 16.45858,-10.3211 26.38049,-8.40243 5.93752,-10.75745 14.460668,-4.25442 8.213538,3.86562 -13.063498,0.18975 -5.316198,12.19066 -16.225388,10.5225 -7.2775,0.30817 -11.91301,19.16913 -11.61879,6.74624 -4.14964,5.84544 1.73919,9.97769 -3.51994,12.73313 -11.02198,3.30146 -20.97852,12.76534 -16.13152,25.18467 -5.2759,15.16922 -6.46994,-6.02544 -7.96168,-11.03393 -5.82975,3.05618 -14.586409,-6.2075 -16.041266,1.55238 -3.720054,2.04687 -13.84334,-6.3028 -22.004098,2.90861 -7.850436,18.99094 -5.802949,-7.66814 -15.149284,-6.60198 -4.053548,4.38449 -8.299484,-13.94445 -19.656544,-7.63443 -10.00746,-5.36724 -18.81734,-5.31007 -22.72373,-15.97004 -4.05156,-11.88439 -4.61993,-24.8073 4.74216,-37.19592 5.83053,-11.77891 6.0087,-12.91164 10.8671,-15.84256 l -0.89894,-1.36826 z" inkscape:label="#path8581" />
        </g>
        <g inkscape:groupmode="layer" inkscape:label="deutschland" style="display:inline" transform="translate(135.71428,-578.07648)" class="tooltip-target" id="example-target-2">
            <path style="fill:#888888;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.96271688000000000;stroke-opacity:1;filter:url(#filter14201)" d="m 216.13757,721.18245 c -0.90142,-4.74274 -6.62466,-18.89282 1.46574,-20.94028 0.40225,-7.04756 9.27744,-1.70527 15.49733,-1.39594 7.77473,12.08756 -10.388,10.17221 -0.4621,18.05093 -1.83892,6.50659 -11.56117,3.51669 -16.50097,4.28529 z" id="deutschland" inkscape:connector-curvature="0" inkscape:label="#path8549" />
        </g>
        <g inkscape:groupmode="layer" inkscape:label="Suedkorea" style="display:inline" transform="translate(135.71428,-578.07648)" class="tooltip-target" id="example-target-3">
            <path style="fill:#666666;fill-opacity:1;stroke:#ffffff;stroke-width:0.60169804000000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter14243)" d="m 534.45004,730.80025 c 3.74978,-11.51228 16.50718,10.40285 8.49959,8.45626 1.30296,2.29932 -5.44272,6.36811 -5.06991,1.75335 -1.84288,-5.64724 -1.32903,-6.53868 -3.42968,-10.20961 z" id="southkorea" inkscape:connector-curvature="0" inkscape:label="#path5421" />
        </g>
        <g inkscape:groupmode="layer" inkscape:label="Indien" style="display:inline" transform="translate(135.71428,-578.07648)" class="tooltip-target" id="example-target-4">
            <path style="fill:#444444;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.96271688000000000;stroke-opacity:1;filter:url(#filter14215)" d="m 389.30916,790.10985 c 12.28639,-1.50451 -5.028,-12.89383 7.42249,-15.38083 11.91142,-4.519 -1.13049,-17.85657 4.13801,-20.03162 14.56002,-4.19233 10.06465,8.7448 17.73016,12.39389 -2.23405,8.75525 12.33255,10.23502 19.62258,10.94489 4.5544,-5.90066 12.96518,3.57645 18.85481,-9.11452 12.57038,-2.96847 3.82628,12.57701 0.0987,16.96427 -2.66889,11.85894 -2.82387,-5.16319 -9.66025,-4.94735 -11.90544,-6.66442 4.93044,13.6965 -5.60965,14.24118 -0.88264,7.44455 -15.70531,13.15522 -16.02923,23.92472 5.51737,10.51229 -8.82201,23.29543 -9.29143,13.36853 -5.30446,-12.80287 -16.6818,-25.89105 -14.59599,-39.18739 -8.67701,16.43023 -8.55837,-5.31539 -12.68018,-3.17577 z" id="indien" inkscape:connector-curvature="0" inkscape:label="#path8517" />
        </g>
        <g inkscape:groupmode="layer" inkscape:label="Japan" style="display:inline" transform="translate(135.71428,-578.07648)" class="tooltip-target" id="example-target-5">
            <path inkscape:connector-curvature="0" id="japan" style="fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.60169804000000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter14229)" d="m 560.79311,741.2054 c 4.37694,3.01077 -4.45586,9.92077 -4.13727,3.87614 0.67066,-2.90556 1.78363,-2.29166 4.0386,-3.84124 M 559.86,740.22295 c 4.58003,4.206 9.19158,1.89918 7.21075,-1.65467 5.04334,1.8619 7.37166,-0.80641 9.29142,-4.73416 -5.53944,-8.28553 1.53412,-13.70034 -6.16981,-20.14726 -5.11967,-0.48164 -0.23102,9.7088 -4.41165,15.51058 -5.05197,-6.06547 -0.34602,9.27943 -5.79556,6.46825 -5.11934,-1.26566 -12.16519,8.62181 -4.95317,8.50681 0.32383,-2.99989 3.17588,-1.35762 4.82802,-3.94955 z m -9.06073,8.31451 c 2.98107,0.65431 0.32578,2.64638 3.63786,5.23718 3.53664,1.28479 2.98668,-11.90836 -3.77144,-9.3889 -0.29191,1.70461 -3.58293,3.26906 0.13358,4.15172 z m 14.36325,-48.15582 c -8.43129,-9.667 9.69614,-0.88295 10.60673,1.38029 -1.9782,3.05162 -3.61258,8.60969 -9.8149,6.43817 5.30222,5.84864 1.09619,6.09012 -5.13489,-0.8508 2.5089,-0.0872 4.30795,-3.38974 4.34306,-6.96766 z" inkscape:label="#path8629" />
        </g>
    </svg>
</div>
h2 {
    font: normal 2.5em/1 Georgia, Palatino, 'Palatino Linotype', serif;
    color: #333;
    border-bottom: 1px dotted #ddd;
    padding: 10px;
    margin: 10px 0;
}
h2 small {
    text-transform: uppercase;
    display: block;
    font: .4em/1 Arial, sans-serif;
}
p {
    padding: 0 10px 10px;
    font: .9em/1.5 Arial, sans-serif;
}
#example-content-1, #example-content-2, #example-content-3, #example-content-4, #example-content-5 {
    display: none;
    position: absolute;
    z-index: 100;
    padding: 3px 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    font: bold 10px/1.5 Arial, sans-serif;
}
#svg_container {
    position: relative;
    width: 730px;
    height: 390px;
    overflow: hidden;
}
.info_box {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    font: 12px/1.5 Arial, sans-serif;
    display: none;
}
.info_box h3 {
    color: #000;
    border-bottom: 1px solid #ccc;
    padding: 0 0 2px 0;
    margin: 0 0 10px 0;
}
.close {
    background: url(http://www.freizeitler.de/examples/svg_interaktiv/closer.gif) no-repeat 0 0;
    width: 10px;
    height: 10px;
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
}