Html2canvas: SVG Element Getting Zoom

Created on 16 Feb 2018  路  15Comments  路  Source: niklasvh/html2canvas

Hi @niklasvh

On this site http://html2canvas.hertzen.com you have shown the demo of the screenshot, It's awesome and very helpful for me.
Issue:
I just make inspect element and add SVG element via inspecting and take the screenshot,
After taking a screenshot the SVG content getting ZOOM.
For better understanding please see this video

Is there any solution for this issue.

Thanks.

Most helpful comment

@vishal-px thank for your solution, it works with some changes

We need to specify height and width only for SVG, not for all elements, so i move

node.setAttribute("width",$(node)[0].getBoundingClientRect().width);
node.setAttribute("height", $(node)[0].getBoundingClientRect().height);

to if case.

Also i removed call to $, because it's not defined there and i think it's not necessary.

So the final changes:

original

    if (node instanceof node.ownerDocument.defaultView.SVGSVGElement || node instanceof SVGSVGElement) {
        var s = new XMLSerializer();
        return resourceLoader.loadImage('data:image/svg+xml,' + encodeURIComponent(s.serializeToString(node)));
    }

changed

  if (node instanceof node.ownerDocument.defaultView.SVGSVGElement || node instanceof SVGSVGElement) {
        node.setAttribute("width", node.getBoundingClientRect().width);
        node.setAttribute("height", node.getBoundingClientRect().height);
        var s = new XMLSerializer();
        return resourceLoader.loadImage('data:image/svg+xml,' + encodeURIComponent(s.serializeToString(node)));
    }

P.S. To anyone who will be use this fix: don't forget to remove width: "0" and height: "0" from svg element

All 15 comments

@vishal-px What is the window.devicePixelRatio value of the browser you are testing with?

@niklasvh The window.devicePixelRatio is 1 on my browser.

Hi @niklasvh have you get any solution?

try to cleanup your svg with https://jakearchibald.github.io/svgomg/
SVG has many ways to define the same thing, that is often troublesome, each browser handles that differently.

Hi @My6UoT9,

I still getting SVG ZOOm, I tried to clean up my SVG and it's all perfect here is my SVG:

<svg class="placeholder-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1052 400"><path d="M727.6 121.3c-8.3 0-15-6.7-15-15s6.7-15 15-15 15 6.7 15 15-6.7 15-15 15zm0-28.1c-7.2 0-13 5.8-13 13s5.8 13 13 13 13-5.8 13-13-5.8-13-13-13zm-183.5 62.1c-8.3 0-15-6.7-15-15s6.7-15 15-15 15 6.7 15 15-6.7 15-15 15zm0-28.1c-7.2 0-13 5.8-13 13s5.8 13 13 13 13-5.8 13-13-5.8-13-13-13zm235.5 236.1c-8.3 0-15-6.7-15-15s6.7-15 15-15 15 6.7 15 15-6.7 15-15 15zm0-28c-7.2 0-13 5.8-13 13s5.8 13 13 13 13-5.8 13-13-5.8-13-13-13zM43.9 47.9c-8.3 0-15-6.7-15-15s6.7-15 15-15 15 6.7 15 15-6.7 15-15 15zm0-28c-7.2 0-13 5.8-13 13s5.8 13 13 13 13-5.8 13-13-5.8-13-13-13zm252.3 236c-8.3 0-15-6.7-15-15s6.7-15 15-15 15 6.7 15 15-6.7 15-15 15zm0-28c-7.2 0-13 5.8-13 13s5.8 13 13 13 13-5.8 13-13-5.8-13-13-13zm706.2-190.7c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6zM764.7 283.5c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6zM525 40.9c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6zm37.7 327.7c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6zM50.9 276.5c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.5 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.6-6-6-6zM93.6 68.7c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6zm194.1-13.8c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6zm534.9 45c-2.3 0-4.2-1.9-4.2-4.2s1.9-4.2 4.2-4.2c2.3 0 4.2 1.9 4.2 4.2s-1.9 4.2-4.2 4.2zm0-7.4c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2 3.2-1.4 3.2-3.2-1.5-3.2-3.2-3.2zm-124 31.9c-2.3 0-4.2-1.9-4.2-4.2 0-2.3 1.9-4.2 4.2-4.2s4.2 1.9 4.2 4.2c0 2.3-1.9 4.2-4.2 4.2zm0-7.4c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2 3.2-1.4 3.2-3.2-1.4-3.2-3.2-3.2zM544.1 44.1c-2.3 0-4.2-1.9-4.2-4.2 0-2.3 1.9-4.2 4.2-4.2 2.3 0 4.2 1.9 4.2 4.2 0 2.3-1.9 4.2-4.2 4.2zm0-7.4c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2 3.2-1.4 3.2-3.2-1.5-3.2-3.2-3.2zM310.2 268.5c-2.3 0-4.2-1.9-4.2-4.2s1.9-4.2 4.2-4.2c2.3 0 4.2 1.9 4.2 4.2s-1.9 4.2-4.2 4.2zm0-7.4c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2 3.2-1.4 3.2-3.2-1.4-3.2-3.2-3.2zm-9.1-213.3c-2.3 0-4.2-1.9-4.2-4.2 0-2.3 1.9-4.2 4.2-4.2 2.3 0 4.2 1.9 4.2 4.2 0 2.3-1.9 4.2-4.2 4.2zm0-7.4c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2 3.2-1.4 3.2-3.2-1.4-3.2-3.2-3.2zM26.6 64.9c-2.3 0-4.2-1.9-4.2-4.2 0-2.3 1.9-4.2 4.2-4.2 2.3 0 4.2 1.9 4.2 4.2 0 2.3-1.9 4.2-4.2 4.2zm0-7.4c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2 3.2-1.4 3.2-3.2-1.4-3.2-3.2-3.2zm776.9 268c-2.3 0-4.2-1.9-4.2-4.2s1.9-4.2 4.2-4.2c2.3 0 4.2 1.9 4.2 4.2s-1.9 4.2-4.2 4.2zm0-7.4c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2 3.2-1.4 3.2-3.2-1.5-3.2-3.2-3.2zm-234.9 13.1c-2.3 0-4.2-1.9-4.2-4.2 0-2.3 1.9-4.2 4.2-4.2 2.3 0 4.2 1.9 4.2 4.2 0 2.3-1.9 4.2-4.2 4.2zm0-7.4c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2 3.2-1.4 3.2-3.2-1.4-3.2-3.2-3.2zm-528.4-75c-2.3 0-4.2-1.9-4.2-4.2s1.9-4.2 4.2-4.2 4.2 1.9 4.2 4.2-1.8 4.2-4.2 4.2zm0-7.4c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2 3.2-1.4 3.2-3.2-1.4-3.2-3.2-3.2zm980.9-3.2c-2.3 0-4.2-1.9-4.2-4.2 0-2.3 1.9-4.2 4.2-4.2 2.3 0 4.2 1.9 4.2 4.2 0 2.3-1.9 4.2-4.2 4.2zm0-7.4c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2 3.2-1.4 3.2-3.2-1.4-3.2-3.2-3.2zM463.5 272c-2.3 0-4.2-1.9-4.2-4.2 0-2.3 1.9-4.2 4.2-4.2 2.3 0 4.2 1.9 4.2 4.2 0 2.3-1.9 4.2-4.2 4.2zm0-7.4c-1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2 3.2-1.4 3.2-3.2-1.5-3.2-3.2-3.2zm564.4-88.1L897.9 9.1c-.4-.5-1.2-.5-1.6 0L766.2 176.4c-.2.3-.3.8-.1 1.2.2.3.5.7.9.7h260.1c.4 0 .7-.3.9-.7.2-.4.1-.8-.1-1.1zm-156.5-16.7l-4.8 1.5c-1.8-13.9 2.7-25.4 13.2-34.1.2-.2.2-.5.1-.7-.2-.2-.5-.2-.7-.1-10.9 9-15.4 20.9-13.5 35.2-.5.2-1.1.4-1.7.5-1.2.4-2.3.8-3.5 1.2-.7-3.3-1.4-6.2-2.2-8.7-.1-.3-.4-.4-.6-.3-.3.1-.4.4-.3.6.8 2.5 1.5 5.4 2.2 8.7-1.7.6-3.4 1.1-5.1 1.7-5.6-22.4-9.8-21.8-35.3-18.4-3.2.4-6.8.9-10.8 1.4-4.1.5-7.1-.2-9.1-2.1-1.4-1.4-2.3-3.3-2.7-5.5l1.8-2.3c-.1.2-.2.5-.1.8.2.5.7.7 1.2.5.5-.2.7-.7.5-1.2-.2-.5-.7-.7-1.2-.5-.1 0-.2.1-.3.2l2.5-3.2c.2 2.5.9 4.6 2.4 6.1 1.5 1.4 3.5 2.2 6.3 2.2.8 0 1.7-.1 2.6-.2.3 0 .5-.3.4-.6s-.3-.5-.6-.4c-3.8.5-6.4-.1-8.1-1.7-1.5-1.5-2.1-3.9-2.2-6.6l4.2-5.4c9.4-.2 18.1-.9 26-2.1.3 0 .5-.3.4-.6 0-.3-.3-.5-.6-.4-7.5 1.2-15.9 1.9-25 2.1l1.3-1.6c.4.5 1 .8 1.6.8.2 0 .5 0 .7-.1 1.1-.4 1.6-1.6 1.2-2.6-.2-.6-.6-1-1.2-1.2l1.3-1.6c9.1-.6 19.9-1.8 29.8-4.2 22.2-5.3 29.6-19.6 35.6-31.2 4.8-9.3 8.4-16.1 18-13.8l-1.3 6.7c-.1.5.2 1.1.8 1.2h.2c.5 0 .9-.3 1-.8l1.3-6.7c3.7.9 7.1 1.6 10.3 2.2l-1.3 6.4c-.1.5.2 1.1.8 1.2h.2c.5 0 .9-.3 1-.8l1.3-6.4c3 .6 5.8 1.1 8.3 1.6.7.1 1.4.3 2.1.4l-1.3 6.5c-.1.5.2 1.1.8 1.2h.2c.5 0 .9-.3 1-.8l1.3-6.5c4 .8 7.4 1.5 10.2 2.3l-1.2 6.2c-.1.5.2 1.1.8 1.2h.2c.5 0 .9-.3 1-.8l1.2-6c5 1.8 8.2 4.3 10.2 9 0 .1.1.2.1.3 1.6 3.9 2.5 9.3 2.8 16.9-1.5.1-3.3.2-5.3.4-.3 0-.5.3-.5.5 0 .3.2.5.5.5 2-.2 3.8-.3 5.2-.4.1 1.3.1 2.7.1 4.2-3.3.2-14.3.8-26.8 3.4-20.1 4.2-34.3 11.1-42.2 20.5-5.8 7-8 15.2-6.7 24.3zm-61.6-36.2c.4 0 .7.3.9.7.2.5-.1 1.1-.6 1.3-.5.2-1.1-.1-1.3-.6l1-1.4zm87.3-112.3l61.2 78.8c-4.5-.2-8.8-.7-12.7-1.9-2.3-5.2-6-7.9-11.5-9.9l.5-2.6c.1-.5-.2-1.1-.8-1.2-.5-.1-1.1.2-1.2.8l-.5 2.4c-2.9-.9-6.3-1.6-10.2-2.3l.4-2.1c.1-.5-.2-1.1-.8-1.2-.5-.1-1.1.2-1.2.8l-.4 2.1c-.7-.1-1.4-.3-2.1-.4-2.5-.5-5.2-1-8.2-1.6l.4-2.2c.1-.5-.2-1.1-.8-1.2-.5-.1-1.1.2-1.2.8l-.4 2.2c-3.2-.6-6.6-1.4-10.3-2.2l.4-2c.1-.5-.2-1.1-.8-1.2-.5-.1-1.1.2-1.2.8l-.4 1.9c-4.8-1.1-8.3-.3-11.1 1.8l-7.3-1.5c-.4-.1-.9.1-1.1.5-.2.3-3.9 7.6-1.2 14.9-5.7 11-13.1 24.2-33.8 29.2-9.1 2.2-19 3.4-27.6 4l83.9-107.5zm-14.6 62.2c-2.4 2.5-4.4 5.9-6.3 9.7-.9-4.6.6-9.1 1.3-10.7l5 1zm-2.9 63.5c9.4-11.3 27.5-17 41-19.9 14.7-3.1 27.4-3.4 27.5-3.4.5 0 1-.5 1-1-.2-10.1-1-17.1-2.7-22.2 3.6.9 8.2 1.5 13.4 1.6l30.5 39.3c-10.9 5.2-22 9.7-33.4 13.5-15.6 5.2-25.8 5.8-36.7 6.4-11.7.6-24.8 1.4-46.9 7.9-1.1-8.4 1-15.9 6.3-22.2zm-89.5 10.4c.1.4.1.9.2 1.3l1.8-2.3 2.9-3.8c.6 1.9 1.5 3.7 2.9 5 2.4 2.4 6.1 3.3 10.7 2.7 4-.5 7.6-1 10.8-1.4 25.6-3.5 27.9-3.7 33.1 17.1-15.8 5-27.4 8.2-35.6 10.2h-15.5c-5.7-8-8.2-19.1-9.4-29.6l-1.8 2.2c1.2 9.7 3.6 19.4 8.6 27.4h-29.9l21.2-27.4c.1-.5.1-.9 0-1.4L767 177.2l23.1-29.8zm85.1 28.8l6.8-2.5.9 2.5h-7.7zm-2.9 0h-28.7c7.8-3 14.7-4.9 20.6-6.9 6.1-2.1 11.1-3.8 14.6-4.8l2.9 8.1-9.4 3.6zm152.8 0h-140l-4.4-12.1c20.6-5 33.8-5.7 47.8-6.4 2.1-.1 4.3-.2 6.5-.4 8.8-.5 30.2-5.7 59.6-20.5l-1.2-1.6c-28.9 14.5-49.9 19.6-58.5 20.1-2.2.1-4.4.2-6.5.3-14.3.7-27.8 1.4-49 6.6-.1 0-.2 0-.3.1h-.1c-3.7.9-8.9 2.8-15.4 5-7.4 2.5-16.6 5.8-26.9 8.8h-11.2c9.6-3 22.4-6.4 39.2-12 27.6-9.3 42.6-10.2 55.7-10.9 11-.6 21.4-1.2 37.2-6.5 11.7-3.9 23-8.5 34.1-13.8l1.8 2.3 1.2 1.6c.3-.1.6-.3.9-.4l.1.1 31.5 40.7-31.5-40.6c-.3.2-.6.3-.9.4l30.3 39.2z"></path><path d="M855 149.4c.1.2.3.3.4.3.1 0 .2 0 .2-.1.2-.1.3-.4.2-.7-6.3-12.2-16.4-10.7-34.7-8.1-1.4.2-2.9.4-4.4.6-.3 0-.5.3-.4.6 0 .3.3.5.6.4 1.5-.2 3-.4 4.4-.6 17.9-2.6 27.8-4 33.7 7.6zm28.3-25.4c.1.1.3.2.4.2.1 0 .2 0 .3-.1 12.1-8.1 30.3-13.5 53.9-15.9.3 0 .5-.3.4-.5 0-.3-.3-.5-.5-.4-23.8 2.4-42 7.8-54.3 16-.3.2-.3.5-.2.7zm3.1-30.9c.3-.1.4-.4.3-.6-.1-.3-.4-.4-.6-.3-3 1-5.5 2.9-7.2 5.5-1.8 2.8-11.5 16.9-25.4 22.2-4.9 1.8-10.4 3.4-16.4 4.5-.3.1-.4.3-.4.6 0 .2.3.4.5.4h.1c6.1-1.2 11.6-2.7 16.5-4.6 14.2-5.4 24.1-19.7 25.9-22.6 1.6-2.4 4-4.2 6.7-5.1zm4.3-.6c.4 0 .9 0 1.3.1l22.1 2.6h.1c.2 0 .5-.2.5-.4 0-.3-.2-.5-.4-.6l-22.1-2.7c-.5-.1-.9-.2-1.4-.2-.3 0-.5.3-.5.6-.1.2.1.6.4.6zm26.5 2.5c0 .3.2.5.4.6 4.6.5 8.3 3.9 9.2 8.4l.3 1.6c0 .2.3.4.5.4h.1c.3-.1.4-.3.4-.6l-.3-1.6c-1-4.9-5.1-8.6-10.1-9.2-.2 0-.4.2-.5.4z"></path><ellipse transform="rotate(-20.016 944.06 109.69)" cx="944.1" cy="109.7" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 939.31 110.263)" cx="939.4" cy="110.3" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 914.644 113.925)" cx="914.7" cy="113.9" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 924.99 112.103)" cx="925" cy="112.1" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 928.9 111.65)" cx="928.9" cy="111.7" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 909.974 115.297)" cx="910" cy="115.3" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 899.37 118.964)" cx="899.4" cy="119" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 894.725 120.853)" cx="894.7" cy="120.9" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 874.344 136.748)" cx="874.4" cy="136.8" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 881.238 129.294)" cx="881.3" cy="129.3" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 885.095 126.307)" cx="885.1" cy="126.3" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 872.082 140.004)" cx="872.1" cy="140" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 868.997 149.4)" cx="869" cy="149.4" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 868.683 152.79)" cx="868.7" cy="152.8" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 855.214 156.368)" cx="855.2" cy="156.4" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 853.88 152.703)" cx="853.9" cy="152.7" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 847.56 144.56)" cx="847.6" cy="144.6" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 843.473 142.673)" cx="843.5" cy="142.7" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 827.555 143.41)" cx="827.6" cy="143.4" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 832.317 142.79)" cx="832.3" cy="142.8" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 811.065 145.516)" cx="811.1" cy="145.5" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 816.355 144.84)" cx="816.4" cy="144.9" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 800.762 142.79)" cx="800.8" cy="142.8" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 930.208 105.774)" cx="930.3" cy="105.8" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 929.345 101.854)" cx="929.4" cy="101.9" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 927.505 98.355)" cx="927.6" cy="98.4" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 925.4 95.16)" cx="925.4" cy="95.2" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 921.753 93.307)" cx="921.8" cy="93.3" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 917.842 92.26)" cx="917.9" cy="92.3" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 913.847 91.802)" cx="913.8" cy="91.8" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 910.554 91.235)" cx="910.6" cy="91.3" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 906.513 90.77)" cx="906.5" cy="90.8" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 901.752 90.09)" cx="901.8" cy="90.1" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 897.63 89.598)" cx="897.6" cy="89.6" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 893.483 89.146)" cx="893.5" cy="89.2" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 889.072 88.807)" cx="889.1" cy="88.8" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 884.517 89.494)" cx="884.5" cy="89.5" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 880.373 91.976)" cx="880.4" cy="92" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 877.565 94.954)" cx="877.6" cy="95" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 872.024 102.866)" cx="872" cy="102.9" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-20.016 869.188 105.844)" cx="869.2" cy="105.9" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-6.8 861.102 113.444)" cx="861.2" cy="113.5" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-6.8 857.688 115.7)" cx="857.8" cy="115.7" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-6.8 848.15 119.605)" cx="848.2" cy="119.6" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-6.8 843.256 120.825)" cx="843.5" cy="120.9" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-6.8 834.034 122.542)" cx="834.4" cy="122.6" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-6.8 829.758 123.153)" cx="830.1" cy="123.2" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-6.8 818.873 124.066)" cx="819.2" cy="124.1" rx=".9" ry=".9"></ellipse><ellipse transform="rotate(-6.8 814.146 124.62)" cx="814.4" cy="124.6" rx=".9" ry=".9"></ellipse><path d="M874.7 100.6c.2 0 .5 0 .7-.1.5-.2.9-.6 1.1-1.1.2-.5.3-1 .1-1.6-.2-.5-.6-.9-1.1-1.1-.5-.2-1-.3-1.6-.1-1.1.4-1.6 1.6-1.2 2.6.4.9 1.1 1.4 2 1.4zm-.4-3c.1 0 .2-.1.4-.1.1 0 .3 0 .4.1.2.1.4.3.5.6.1.3.1.5 0 .8-.1.2-.3.4-.6.5-.5.2-1.1-.1-1.3-.6-.2-.5.1-1.1.6-1.3zm-10.2 13.5c.3.1.6.2.9.2.2 0 .5 0 .7-.1 1.1-.4 1.6-1.6 1.2-2.6-.2-.5-.6-.9-1.1-1.1-.5-.2-1-.3-1.6-.1-.5.2-.9.6-1.1 1.1-.2.5-.3 1-.1 1.6.3.4.6.8 1.1 1zm0-2.3c.1-.2.3-.4.6-.5.1 0 .2-.1.4-.1.1 0 .3 0 .4.1.2.1.4.3.5.6.2.5-.1 1.1-.6 1.3-.3.1-.5.1-.8 0-.2-.1-.4-.3-.5-.6-.2-.2-.2-.5 0-.8zm-11.3 10.4c.2 0 .5 0 .7-.1 1.1-.4 1.6-1.6 1.2-2.6-.4-1.1-1.6-1.6-2.6-1.2-.5.2-.9.6-1.1 1.1-.2.5-.3 1-.1 1.6.3.7 1.1 1.2 1.9 1.2zm-.9-2.5c.1-.2.3-.4.6-.5.1 0 .2-.1.4-.1.4 0 .8.3 1 .7.2.5-.1 1.1-.6 1.3-.5.2-1.1-.1-1.3-.6-.3-.2-.3-.5-.1-.8zm-13.8 6.4c.3.1.6.2.9.2.2 0 .5 0 .7-.1.5-.2.9-.6 1.1-1.1.2-.5.3-1 .1-1.6-.2-.5-.6-.9-1.1-1.1-.5-.2-1-.3-1.6-.1-1.1.4-1.6 1.6-1.2 2.6.2.5.6.9 1.1 1.2zm.5-2.8c.1 0 .2-.1.4-.1.1 0 .3 0 .4.1.2.1.4.3.5.6.1.3.1.5 0 .8-.1.2-.3.4-.6.5-.3.1-.5.1-.8 0-.2-.1-.4-.3-.5-.6-.2-.6.1-1.2.6-1.3zm-13.1 1.4c-.5-.2-1-.3-1.6-.1-1.1.4-1.6 1.6-1.2 2.6.3.8 1.1 1.3 1.9 1.3.2 0 .5 0 .7-.1.5-.2.9-.6 1.1-1.1.2-.5.3-1 .1-1.6-.2-.4-.5-.8-1-1zm0 2.3c-.1.2-.3.4-.6.5-.5.2-1.1-.1-1.3-.6-.2-.5.1-1.1.6-1.3.1 0 .2-.1.4-.1.1 0 .3 0 .4.1.2.1.4.3.5.6.2.2.2.5 0 .8zm30.3 35.3c-1 .3-1.5 1.4-1.1 2.4.2.5.5.8 1 1 .2.1.5.2.8.2.2 0 .4 0 .6-.1.5-.2.8-.5 1-1 .2-.4.2-1 .1-1.4-.2-.5-.5-.8-1-1-.4-.3-.9-.3-1.4-.1zm1.4 2.1c-.1.2-.3.4-.5.4-.2.1-.4.1-.7 0-.2-.1-.4-.3-.4-.5-.2-.4.1-.9.5-1.1.1 0 .2-.1.3-.1.1 0 .2 0 .4.1s.4.3.4.5c.1.3.1.5 0 .7zm13.2-4.3c-.4-1-1.4-1.5-2.4-1.1-1 .3-1.5 1.4-1.1 2.4.2.5.5.8 1 1 .2.1.5.2.8.2.2 0 .4 0 .6-.1.5-.2.8-.5 1-1 .2-.5.3-1 .1-1.4zm-1 1c-.1.2-.3.4-.5.4s-.4.1-.7 0c-.2-.1-.4-.3-.4-.5-.2-.4.1-.9.5-1.1.1 0 .2-.1.3-.1.3 0 .7.2.8.6.1.2.1.5 0 .7zm2.5-13.5c-.3-1-1.4-1.5-2.4-1.1-1 .4-1.5 1.4-1.1 2.4.3.8 1 1.2 1.7 1.2.2 0 .4 0 .6-.1 1.1-.4 1.6-1.4 1.2-2.4zm-1.4 1.4c-.2.1-.4.1-.7 0-.2-.1-.4-.3-.4-.5-.2-.4.1-.9.5-1.1.1 0 .2-.1.3-.1.1 0 .2 0 .4.1s.4.3.4.5c.1.5-.1 1-.5 1.1zm8.5-12.4c.2-.4.2-1 .1-1.4-.3-1-1.4-1.5-2.4-1.1-1 .4-1.5 1.4-1.1 2.4.3.8 1 1.2 1.7 1.2.2 0 .4 0 .6-.1.5-.3.9-.6 1.1-1zm-.9-.5c-.1.2-.3.4-.5.4-.2.1-.4.1-.7 0-.2-.1-.4-.3-.4-.5-.2-.4.1-.9.5-1.1.1 0 .2-.1.3-.1.3 0 .7.2.8.6.1.3.1.5 0 .7zm10.5-11.3c-1 .4-1.5 1.4-1.1 2.4.2.5.5.8 1 1 .2.1.5.2.8.2.2 0 .4 0 .6-.1.5-.2.8-.5 1-1 .2-.4.2-1 .1-1.4-.4-1-1.5-1.5-2.4-1.1zm1.4 2.1c-.1.2-.3.4-.5.4-.2.1-.4.1-.7 0-.2-.1-.4-.3-.4-.5-.2-.4.1-.9.5-1.1.1 0 .2-.1.3-.1.3 0 .7.2.8.6.1.2.1.4 0 .7zm14.9-8.3c-.4-.2-1-.2-1.4-.1-.5.2-.8.5-1 1-.2.4-.2 1-.1 1.4.3.8 1 1.2 1.7 1.2.2 0 .4 0 .6-.1 1-.4 1.5-1.4 1.1-2.4-.1-.4-.4-.8-.9-1zm-.5 2.5c-.4.2-.9-.1-1.1-.5-.1-.2-.1-.4 0-.7.1-.2.3-.4.5-.4.1 0 .2-.1.3-.1.1 0 .2 0 .4.1s.4.3.4.5c.2.4 0 .9-.5 1.1zm17.1-5.7c-.3-1-1.4-1.5-2.4-1.1-1 .4-1.5 1.4-1.1 2.4.3.8 1 1.2 1.7 1.2.2 0 .4 0 .6-.1 1-.3 1.5-1.4 1.2-2.4zm-1.5 1.5c-.4.2-.9-.1-1.1-.5-.2-.4.1-.9.5-1.1.1 0 .2-.1.3-.1.3 0 .7.2.8.6.2.4 0 .9-.5 1.1zm14.4-4.7c-.4-.2-1-.2-1.4-.1-.5.2-.8.5-1 1-.2.4-.2 1-.1 1.4.3.8 1 1.2 1.7 1.2.2 0 .4 0 .6-.1 1-.3 1.5-1.4 1.1-2.4-.1-.4-.4-.7-.9-1zm-.5 2.5c-.4.2-.9-.1-1.1-.5-.1-.2-.1-.4 0-.7.1-.2.3-.4.5-.4.1 0 .2-.1.3-.1.1 0 .2 0 .4.1s.4.3.4.5c.2.5 0 1-.5 1.1zM853 147.5c-.2-.5-.5-.8-1-1-.4-.2-1-.2-1.4-.1-.5.2-.8.5-1 1-.2.4-.2 1-.1 1.4.2.5.5.8 1 1 .2.1.5.2.8.2.2 0 .4 0 .6-.1.9-.4 1.4-1.5 1.1-2.4zm-1.5 1.4c-.2.1-.4.1-.7 0-.2-.1-.4-.3-.4-.5-.1-.2-.1-.4 0-.7.1-.2.3-.4.5-.4.1 0 .2-.1.3-.1.1 0 .2 0 .4.1s.4.3.4.5c.2.4 0 .9-.5 1.1zm-11.4-7.2c-.3-1-1.4-1.5-2.4-1.1-1 .4-1.5 1.4-1.1 2.4.2.5.5.8 1 1 .2.1.5.2.8.2.2 0 .4 0 .6-.1.5-.2.8-.5 1-1 .3-.4.3-.9.1-1.4zm-.9 1c-.1.2-.3.4-.5.4-.2.1-.4.1-.7 0-.2-.1-.4-.3-.4-.5-.2-.4.1-.9.5-1.1.1 0 .2-.1.3-.1.3 0 .7.2.8.6.1.3.1.5 0 .7zm-17-.4c-.4-.2-1-.2-1.4-.1-1 .3-1.5 1.4-1.1 2.4.2.5.5.8 1 1 .2.1.5.2.8.2.2 0 .4 0 .6-.1 1-.3 1.5-1.4 1.1-2.4-.2-.4-.6-.8-1-1zm-.5 2.5c-.2.1-.4.1-.7 0-.2-.1-.4-.3-.4-.5-.2-.4.1-.9.5-1.1.1 0 .2-.1.3-.1.1 0 .2 0 .4.1s.4.3.4.5c.2.5-.1 1-.5 1.1zm-14.8 0c-.4-1-1.4-1.5-2.4-1.1-1 .3-1.5 1.4-1.1 2.4.2.5.5.8 1 1 .2.1.5.2.8.2.2 0 .4 0 .6-.1.5-.2.8-.5 1-1 .2-.5.2-1 .1-1.4zm-1 1c-.1.2-.3.4-.5.4-.2.1-.4.1-.7 0-.2-.1-.4-.3-.4-.5-.2-.4.1-.9.5-1.1.1 0 .2-.1.3-.1.3 0 .7.2.8.6.1.2.1.5 0 .7zM986.7 210.2h-170c-.6 0-1 .4-1 1v170c0 .6.4 1 1 1h170c.6 0 1-.4 1-1v-170c0-.5-.4-1-1-1zm-126.5 104c2.3.8 33.8 12.3 71.3 30.6 8.6 4.2 16.7 8.4 24.1 12.3v.1c.1.1.3.2.4.2h.1c8.7 4.6 16.4 9 22.8 12.7.1.1.3.2.4.2.1 0 .2 0 .3-.1-.1.1-.1.1-.2.1 2.3 1.3 4.3 2.5 6.3 3.6v6.2h-34.4c-.1 0-.2.1-.3.1h-.2c-.1 0-.3-.1-.4-.1h-10.7c-8.5-3-16.8-6.7-24.7-10.6-22.8-11.2-46.8-27.4-67.3-41.8-.1-.1-.2-.2-.3-.2-2.9-2-5.7-4-8.5-6-8.1-5.7-15.2-10.8-21.2-14.7v-4.6c5 2.8 10.3 6.5 16.5 10.8.1.1.2.1.3.1.2 0 .3-.1.4-.2.2-.2 0-.5-.2-.7-6.5-4.5-12-8.3-17-11.1v-.5c1 .2.9.3 1.3.5 28.5 12.1 39.7 13.1 41.2 13.1zm27.3-46.9c-2.6-3.4-3.9-6.7-4.5-9.6 3.6 4.8 8.4 7.7 9.4 8.3.2 2.1.5 4.2.9 6.5v.1c0 .1 0 .3.1.4.4 2.6 1 5.3 1.7 8.1 0 .1.1.1.1.2.1.1.2 0 .4 0-.1 0-.3.2-.4.1 1.4 5.6 3.4 11.7 6.1 17.7.6.2.9.3 1 .3.2 0 .4.2.4.5 0-.2-.2-.4-.4-.4 0 0-.4-.1-1-.2-2.7-.7-10.6-3.2-18.6-8.3-.6-.8-1.1-1.4-1.5-2l9.7-1.1c.4 0 .8-.4.9-.8s-.1-.9-.5-1.1c-6.8-3.8-10.1-14.1-11.1-17.8l6.5.8c.4 0 .8-.1 1-.5.1-.4 0-.9-.2-1.2zm-4.8-17.2l4.3 2.1c.3.1.6.1.9 0s.5-.4.5-.7c.4-2.1-2.5-8.6-3.7-11 .4-2.1 1.8-4.4 3.5-6.6-1.1 7.1 3.1 13.6 3.7 14.5-.3 4.4-.4 10 .2 16.4-1.8-1.2-6.6-4.5-9.6-9.4-.2-2.3 0-4.2.2-5.3zm14.6 1.6c.4.3.9.3 1.3-.1l8.4-7.9c.2.6.4 1.3.6 2-2.2 2.7-10.5 13-13.7 24.3-1.2-8.8-1.2-16.4-.8-21.9.4-1.5 2.9-9.8 7.1-14.3 1 1.5 1.8 2.9 1.9 3.5.3 1.6-2.7 8.6-5 13.1-.3.5-.2 1 .2 1.3zm42.3-20.1c6.3 3.4 10.1 9.3 14.1 15.5 4.4 6.7 8.9 13.7 16.9 17.6.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1.1-.5-1.3-7.5-3.7-11.9-10.4-16.1-16.9-1.7-2.7-3.5-5.4-5.5-7.9 1.9 1.4 3.7 2.7 5.6 4.1 4.2 3.1 8.4 6.3 13.6 9.3.3.2.6.4.9.5 1.4.8 2.7 1.6 4.2 2.3.4.2.9.4 1.3.6 3.5 1.7 7.1 3 10.1 4.2V353c-17-9.3-41-22.1-70.2-35.2l-1 .7.9-.7 8.9-6.9c.4-.3.5-.8.3-1.2-.2-.4-.7-.7-1.1-.6l-7.5 1.6 5.2-7.9c.3-.4.2-.9-.1-1.2-.3-.3-.8-.4-1.2-.1l-5.5 3.4c1.4-2.6 3.3-5.8 3.9-6.8 3.7-6.3 1.5-14.7-.9-23.6-.6-2.2-1.2-4.5-1.7-6.7-.1-.4-.4-.7-.9-.8-.4 0-.8.2-1 .5l-6.8 13.4c.3-3.4 1.4-9.2 4.9-17.4 1.8-4.2-2.4-18.4-3.3-21.4.7-.8 1.3-1.5 1.7-2 1.6-1.9 5.8-5.8 11.2-8.3 6.7-3.2 12.8-3.2 18.3-.2zM958 356.2l13.1-9c.8.4 1.6.9 2.5 1.3l-13.1 9c-.9-.4-1.7-.8-2.5-1.3zm-6.9-3.6l13.1-9c2 1.1 4 2.1 5.9 3.1l-13.1 9c-1.9-1-3.9-2.1-5.9-3.1zm-51.6-41.9c0-.2-.1-.4-.3-.5l-1.4-1.2 4.6-.1c.5 0 .8-.3 1-.8.1-.4-.1-.9-.5-1.1-8.7-4.7-14.5-9.9-18-13.7 8.1 4.7 15.6 6.9 16.9 6.9.3 1 1 1.2 1 1.8v.2c.6 1.1 1.1 2.3 1.7 3.5 0 .1 0 .1.1.2 1.7 3.1 3.6 6.3 5.7 9.5-3.6-1.6-7.2-3.2-10.8-4.7zm-5.3-38.2c2.5-11.4 10.8-22.2 13.6-25.7.4 1.4.8 2.9 1.1 4.4-2.5 2.7-11.7 13.8-13.7 26.7-.3-1.8-.7-3.6-1-5.4zm1.8 8.5c.7-13.1 10.1-24.8 13.2-28.5 1 4.4 1.5 8.6.8 10.1-6.5 15.1-5.1 22.2-5 22.5.1.4.4.7.9.8.4 0 .8-.2 1-.5l7.4-14.6c.4 1.4.7 2.8 1.1 4.1.1.2.1.4.2.6-.9 4-4.4 17.4-12.4 25.5-3.3-6.9-5.6-13.6-7.2-20 0 .1 0-.1 0 0zm20.5 16c-1.1 1.8-5.8 10.2-5.8 10.3-.2.4-.2.9.2 1.2.3.3.8.4 1.2.1l5-3.1-4 6.1c-.2.3-.2.8 0 1.1.2.3.6.5 1 .4l5.6-1.2-6.3 4.8c-.6-.3-1.3-.6-1.9-.8.1-.1 0-.3 0-.5-2.2-3.3-4.2-6.6-6-9.8 6.3-5.5 10.6-14.7 12.4-19.2.5 4 .3 7.6-1.4 10.6zm-11.5 7.7c-.5-.9-.9-1.9-1.4-2.8 7.4-7.3 11.1-18.9 12.5-24.4.6 2.4 1.2 4.7 1.5 6.9-1.3 3.4-5.8 14.3-12.6 20.3zm-2.5-3c0-.1.1-.2.1-.2 0 .1-.1.2-.1.2zm9.5 16.6l-13.4 9.2-2.7-1.2 13.4-9.2 2.7 1.2zm1.1.5c.9.4 1.8.8 2.6 1.2l-13.2 9.1c-.1 0-.1.1-.1.1l-2.7-1.2 13.4-9.2zm3.7 1.7c2.1 1 4.2 1.9 6.3 2.9l-13.3 9.1c-2.2-1-4.3-1.9-6.4-2.8l13.4-9.2zm7.4 3.3c.9.4 1.7.8 2.6 1.2l-13.2 9.1c-.9-.4-1.8-.8-2.6-1.2l13.2-9.1zm3.6 1.7c2.1 1 4.2 2 6.2 2.9l-13.2 9.1c-2.1-1-4.2-2-6.3-2.9l13.3-9.1zm7.3 3.5c.9.4 1.7.8 2.6 1.2l-13.1 9.1c-.9-.4-1.7-.8-2.6-1.2l13.1-9.1zm3.6 1.7c2.1 1 4.1 2 6.1 3l-13.1 9c-2.1-1-4.1-2-6.2-3l13.2-9zm7.2 3.5c4.8 2.4 9.4 4.7 13.8 7l-13.1 9c-4.4-2.3-9-4.6-13.8-6.9l13.1-9.1zm14.7 7.5c.8.4 1.7.9 2.5 1.3l-13.1 9c-.8-.4-1.7-.9-2.5-1.3l13.1-9zm-67.1-98.2c.4-3.3.8-5.1.9-5.2 0 0 .8-3.6 3.6-7.7.6.8 1.1 1.6 1.6 2.3-2.9 2.9-4.9 7.3-6.1 10.6zm-.1-5.4s-.1.3-.2.7c-.4-2.7-.7-7.2 1.1-10.8.1-.1.1-.3 0-.4.3-.2.5-.5.7-.6.7.9 1.5 1.9 2.2 2.9-2.9 4.2-3.8 8-3.8 8.2zm-.7 3.5c-.2 1.4-.4 3.1-.6 5.1-1.4-2.5-4.3-8.5-2.4-14.5 1.1-1.2 2.2-2.4 3.2-3.3-2 5.6-.3 12-.2 12.7zm-4.8 44.5l-8.6 1c-.3 0-.6.2-.8.5s-.1.7 0 .9c.2.4 5.6 9.7 20.2 18.4l-3.5.1c-.4 0-.8.3-.9.7-.1.3-.1.6.1.9-8.5-3.5-17.3-7-26.3-10.5 3.2-6.7 7.6-14.6 12.8-21.8 1.6 3.5 3.9 7.2 7 9.8zm20.4 30.6l-13.4 9.3c-17.2-7.3-29.6-12-33.1-13.3.1-.2.2-.5.3-.7.9-2.3 2.7-6.7 5.2-12 14.4 5.4 28.1 11 41 16.7zm-90.6 63.5v-59.5c12 4.2 26.9 8.2 28.8 8.7-1.7-1.2-3.3-2.3-4.9-3.5-5.9-1.7-15.9-4.5-23.9-7.4v-9.2c6 3.9 12.6 8.7 20.1 13.9l3.9 2.7c1.6 1.1 3.2 2.3 4.9 3.4h.5-.5c20.5 14.4 44.6 30.8 67.6 42 6.4 3.2 13.1 5.8 20 8.8H817.7zm0-79.5c-.1 0-.2-.1-.3-.1.1.1.2.1.3.1zm-1 0v-.3l.1.1-.1.2.1 1.2c.2.1.4.3.6.4-.3-.1-.7-.2-.7-.4v-1.2zm170 69l-1 .7v1.3c0-.2-.8-.4-1.1-.6l-1.4.9 1.4-.9 1.1-.7 1-.7v-1.2 1.2zm0-13.9v1.2l-1 .7v3.1l-8.6 5.9.9.6 7.7-5.3v-.1l1-.6V360v1.2l-1 .7v3.1l-5.3 3.6.9.6 4.4-3v-.1l1-.6v-1.2 1.2l-1 .7v2.9l-.1.1-2 1.4c-.8-.4-1.6-.9-2.4-1.4-.3-.2-.6-.4-1-.6-.8-.4-1.6-.9-2.4-1.4-.3-.2-.6-.4-1-.6-.8-.4-1.6-.9-2.4-1.4-.3-.2-.6-.4-1-.5-3.7-2.1-7.8-4.4-12.1-6.7l13.1-9 .4-.3-.4.3c4 2.2 7.1 4.2 11.1 6.1.2.3 1.2.4 1.2.7zm0-96.3l-.1-.1v-.1l-.9-.3v-.1c0 .1 1 .2 1 .3v.3zm0-2.1c0-.1 0-.1 0 0v-.2c0-.1-.7-.2-1-.3v-.1c-3-1-5.7-2.1-8.7-3.5-.6-.3-1.2-.5-1.8-.8-1.4-.7-2.8-1.5-4.1-2.2-3.9-2.3-7.5-5-11.3-7.8-3.4-2.5-6.8-5-10.6-7.4-2.6-1.8-5.5-3.6-8.6-5.3-13.8-7.5-27.7 3.8-31.9 8.8-.5.6-1.2 1.5-2.1 2.5-.1.1-.1.2-.1.2l-5.4 5.1c1.5-3.5 3.2-7.7 2.8-9.5-.5-2.9-7.2-11.2-8-12.1-.2-.2-.4-.3-.7-.4-.3 0-.5.1-.7.2-.4.4-10.6 8.7-11.8 15.8 0 .2 0 .4.1.6 1.4 3 2.8 6.5 3.4 8.5l-3.8-1.9c-.3-.1-.6-.1-.8 0-.3.1-.5.3-.6.6-.1.4-2.7 8.6 3.6 18.3l-5.7-.7c-.3 0-.6.1-.9.3-.2.2-.3.6-.2.9.1.3.7 3.4 2.3 7.2-.2.1-.4.2-.5.3-5.5 7.4-10 15.7-13.3 22.7-.7-.3-1.4-.5-2.1-.8-.5-.2-1.1.1-1.3.6s.1 1.1.6 1.3c.6.2 1.3.5 1.9.7-2.5 5.3-4.2 9.6-5.2 12-.2.4-.3.8-.4 1-2.7-.3-14.3-2-39.9-12.7-.7-.3-1.1-.6-2.1-.8v-86.4h168v44.6c0 .1 1 .2 1 .4v.3z"></path><path d="M986.7 357v-1.3c0-.2-1-.4-1-.6v1.4l-12 8.2c.3.2.6.4.9.5l11.1-7.6v-.1l1-.5zm-140.9-35.6c2.7 1.9 5.4 3.8 8.3 5.8.1.1.2.1.3.1.2 0 .3-.1.4-.2.2-.2.1-.5-.1-.7-2.8-2-5.6-3.9-8.3-5.8l-2.2-1.6c-.2-.2-.5-.1-.7.1-.2.2-.1.5.1.7l2.2 1.6zm105.3 57.9c-12.3-4.3-22.7-8.5-31.8-13-20.5-10-41.2-23.8-57-34.6-.2-.2-.5-.1-.7.1-.2.2-.1.5.1.7 15.8 10.9 36.5 24.7 57.1 34.8 9.1 4.4 19.4 8.9 31.6 12.9h.6c.1 0 .2 0 .2-.1h.1c.1 0 .1-.1.1-.2.1-.1 0-.5-.3-.6zm-56-97.8c0-.1-.1-.3-.1-.4v.1c0 .1 0 .2.1.3zM776.7 224.3L648 60.4c-.4-.5-1.2-.5-1.6 0l-128.7 164c-.3.4-.3.9 0 1.2l128.7 164c.2.2.5.4.8.4s.6-.1.8-.4l128.7-164c.3-.4.3-.9 0-1.3zm-129.5 163l-87.1-111 13.9 4.1h.3c.4 0 .8-.3 1-.7l17.2-57.6c2.9 4.3 10.5 16.8 17.5 35.4 8.5 22.6 13.8 34.7 31.1 41.9 13.2 5.5 34.3 8.1 67 10.4l-60.9 77.5zM543.5 255.2l33.9 10.1-1.9 6.2-25.1-7.5-6.9-8.8zm5.8-61.8l-3.9-1.2 4.3-5.5 24.6 7.3c3.4 2.9 6.8 6.1 10.3 9.8l-24.7-7.4c-.3-.1-.5.1-.6.3-.1.3.1.5.3.6l26.3 7.8c2.5 2.7 4.9 5.6 7.3 8.7-.1 0-.2.1-.3.1l-50.5-15.1.5-3.7 1.9-2.4 4.3 1.3h.1c.2 0 .4-.1.5-.4.1.2-.1-.1-.4-.2zm1.1-7.5l4.4-5.6c4.8 2.7 10.9 6.7 17.6 12.2l-22-6.6zm38 42.6l-18.7-5.6c-.3-.1-.5.1-.6.3-.1.3.1.5.3.6l18.7 5.6-1.9 6.2-47.2-14.1 1-6.5 22.6 6.7h.1c.2 0 .4-.1.5-.4.1-.3-.1-.5-.3-.6l-22.7-6.8 1-6.5 49.1 14.7-1.9 6.4zm-8.6 28.7l-44-13.1 1-6.5 37.1 11.1h.1c.2 0 .4-.1.5-.4.1-.3-.1-.5-.3-.6l-37.3-11.1 1-6.5 46 13.7-4.1 13.4zm4.3-14.3L538 229.1l1-6.5 47 14-1.9 6.3zm6.4-21.6l-49.3-14.7 1-6.5 50.2 15-1.9 6.2zm-50.7-21.9l.5.1-1 6.5-.7-.2c-.3-.1-.5.1-.6.3-.1.3.1.5.3.6l.9.3-1 6.5-.7-.2c-.3-.1-.5.1-.6.3-.1.3.1.5.3.6l.9.3-1 6.5-.7-.2c-.3-.1-.5.1-.6.3-.1.3.1.5.3.6l.9.3-1 6.5-.7-.2c-.3-.1-.5.1-.6.3-.1.3.1.5.3.6l.9.3-1 6.5-.6-.2c-.3-.1-.5.1-.6.3-.1.3.1.5.3.6l.8.2-.9 6-14.2-17.9 20.1-25.6zm-4.2 45.7l43.9 13.1-1.9 6.2-35.2-10.5-6.8-8.7v-.1zm39.6 27.4l-1.7 5.7-15.6-4.7-6.4-8.1 23.7 7.1zm36.6-15.6c-8-21.3-17-34.7-18.7-37.2l1.2-4.1c5.7 7.6 11 16.5 15.7 26.8 2.4 5.4 4.5 10.4 6.3 14.9 13.6 32.9 17.5 42.5 95.9 47.1l-2.8 3.6c-78-5.6-82.6-11.2-97.6-51.1zm6.4-.4c-1.8-4.4-3.9-9.5-6.4-14.9-16.2-36.1-41.5-54.7-55.8-62.8l41.1-52.4c-1.8 4.7-3.5 8.8-5 12.4-7.8 19.1-10.7 26.2-2.3 39 10.7 16.1 27.2 32.1 41.5 28.4 6.1-1.6 10.1-6.7 10.8-13.9.4-4.2.7-8.8 1-13.6 1-15.5 2.3-34.9 7-55.8 3.8-16.9 12.7-16.1 26-15 2.3.2 4.6.4 6.9.5l3.4 4.3c-1.5 12.4-5.2 44.2-6.2 66.8-3 70 9.2 77.6 32.7 85.8 8.9 3.1 15.6 7.4 20.1 12.7l-19.3 24.6c-78.4-4.7-82.2-13.9-95.5-46.1zm-6.8-148.2c24.6 5.9 34.3 12.3 36.8 14.2-4.8 21.1-6 40.5-7 56.1-.3 4.8-.6 9.3-1 13.6-.6 6.3-3.9 10.8-9.3 12.1-8.7 2.2-23.6-3.9-39.3-27.6-.5-.7-.9-1.4-1.3-2.1 10.6 15.3 22.4 24.1 32.3 24.1h1.1c.3 0 .5-.3.5-.5 0-.3-.3-.5-.5-.5-10.4.7-23.3-9.2-34.5-26.6-.2-.2-.5-.3-.7-.1-3.6-8.7-.7-15.7 5.7-31.3 2.1-5 4.6-11.2 7.3-18.5l9.9-12.9zm70-2.1c-1.7-.1-3.5-.3-5.1-.4-13.1-1.1-23.6-2-27.9 15.5-3-2.2-12.7-8.3-36.3-14l35.1-44.8 34.2 43.7zm32.3 157.1c-23.3-8.2-34.4-15.2-31.4-83.9.9-21.4 4.3-51.1 5.9-64.6L774.6 225l-40.3 51.3c-4.6-5.4-11.5-9.8-20.6-13z"></path><path d="M632.9 193.5c.2 0 .3-.1.4-.2 1.5-2.2 2.5-4.9 2.8-8 .3-3.6.6-7.6.9-11.4 0-.3-.2-.5-.5-.5-.2 0-.5.2-.5.5-.3 3.8-.6 7.7-.9 11.4-.3 2.9-1.1 5.4-2.6 7.5-.2.2-.1.5.1.7.1-.1.2 0 .3 0zm4.2-28.6s.1 0 0 0c.3 0 .5-.2.5-.5.7-9.7 1.8-21.4 4-34.1 0-.3-.1-.5-.4-.6-.3 0-.5.1-.6.4-2.3 12.7-3.3 24.4-4.1 34.2.1.3.4.5.6.6zM508.7 10.2h-183c-.6 0-1 .4-1 1v181c0 .6.4 1 1 1h183c.6 0 1-.4 1-1v-181c0-.5-.4-1-1-1zm-1 181h-181v-179h181v16H504c-.6 0-1.3.6-1.3 1.1v3.9h-91c-2.5-3-3.7-4.6-3.7-4.7-.2-.4-.7-.6-1.1-.5l-10.8 3.1c-.3.1-.5.2-.6.5s-.2.6-.1.8c0 .1.1-.3.3.7h-7v-3.9c0-.6-.4-1.1-.9-1.1h-17.3c-.6 0-.7.6-.7 1.1v3.9h-25.1c-1.8 0-2.9 1.3-2.9 3.2v15.2c0 12.1-1.5 24.4-2.8 37.5-1.4 14.3-3 29-3 44.5 0 12.5 2.3 17.8 5.9 25.8 1 2.3 2.3 4.9 3.6 8 0 .1.1.2.1.3.1.2 0 .5.1.7 2.3 5.2 7.6 8.9 13.6 8.9h148.4v14zM417.6 52.5l5.7-7.4 4.1 3.1 4.1 3.1-5.7 7.4-8.2-6.2zm6.9 7.8l-.8 1-3.3-2.5.8-1 3.3 2.5zm-8.1-6.2l3.3 2.5-.8 1-3.3-2.5.8-1zm-18.6-21.3l9-2.6c1.3 1.9 5.8 7.8 14.9 13.8l-5.6 7.3c-12.9-9.2-17.1-16.1-18.3-18.5zm26.7 10.7l.7-1 3.3 2.5-.7 1-3.3-2.5zm4.8 3.7l.7-1 3.3 2.5-.7 1-3.3-2.5zm3.7 5.4l10.4 8-2.1 2.7-3.6 4.7-10.4-8 5.7-7.4zm-.9 14.1c.1-.1.1-.2.2-.3l4.2 3.2-.5.7c-.3.4-.3 1.1.2 1.4.2.1.4.2.6.2.3 0 .6-.1.8-.4l9.1-11.9c.3-.4.3-1.1-.2-1.4-.4-.3-1.1-.3-1.4.2l-.4.6-4.2-3.2.1-.1c.5-.7 1.3-1.1 2.2-1.2.9-.1 1.7.1 2.4.6l49.1 37.7c1.4 1.1 1.7 3.1.6 4.5-1.1-.8-2.2-1.5-3.3-2.3l.4-.5c.3-.4.3-1.1-.2-1.4-.4-.3-1.1-.3-1.4.2l-1 1.3-6.9 9-1.1 1.5c-.3.4-.3 1.1.2 1.4.2.1.4.2.6.2.3 0 .6-.1.8-.4l.6-.7 1.9 1.2c.6.4 1.3.8 1.9 1.2-.3 0-.6.1-.8.4-.5.7-1.3 1.1-2.2 1.2-.9.1-1.7-.1-2.4-.6l-49.1-37.7c-.7-.5-1.1-1.3-1.2-2.2-.4-.9-.1-1.7.4-2.4zm54.3 38.3l-1.9-1.1 5.7-7.4c2.3 1.6 4.7 3.2 6.9 4.7 3.6 2.5 6.6 5 10.6 7.3v10c-7-3.9-13.5-8.4-21.3-13.5zm11.9-5.4c-.6-.4-1.3-.8-1.9-1.2 1.7-2.3 1.2-5.5-1-7.2l-49.1-37.7c-1.1-.9-2.5-1.2-3.9-1-1.4.2-2.6.9-3.5 2 0 .1-.1.1-.1.2l-4.7-3.6 1.3-1.7c.3-.4.3-1.1-.2-1.4l-4.1-3.1.3-.4c.3-.4.3-1.1-.2-1.4-.4-.3-1.1-.3-1.4.2l-.3.4-4.1-3.1c-.2-.2-.5-.2-.7-.2-.3 0-.5.2-.7.4l-1.4 1.8v.1c-3.8-2.5-6.8-5.2-9.1-7.2h94.2V106c-3-2-6.2-4.2-9.4-6.4zm6.7-66.4h-.3v-3h3v3H505zm-118.3-3v3h-15v-3h15zM346.5 169c.1 0 .1 0 0 0zm46.4-32.1c.1.2.3.4.3.6s-.2.4-.3.6c.1-.2.2-.4.2-.6s-.1-.5-.2-.6zm.2 22.3c.1.1.3.1.5.1s.3-.1.5-.1h12.1c.1.1.3.1.5.1s.3-.1.5-.1h.6v2h-.4c-.2-.2-.4-.3-.7-.3s-.5.1-.7.3h-11.6c-.2-.2-.4-.3-.7-.3s-.5.1-.7.3h-.2v-2h.3zm6.6-19.4c-.6 0-1 .4-1 1v.4h-4v-19h11v19h-5v-.4c0-.5-.4-1-1-1zm-1 3.4v7.4c-.2-.1-.4-.1-.6.1-1.1 1.1-1.1 2.9 0 4 .6.6 1.3.8 2 .8s1.5-.3 2-.8c1.1-1.1 1.1-2.9 0-4-.2-.2-.5-.2-.7 0s-.2.5 0 .7c.7.7.7 1.9 0 2.6-.7.7-1.9.7-2.6 0-.7-.7-.7-1.8-.1-2.5v.4c0 .6.4 1 1 1s1-.4 1-1v-8.6h5v9.9c-.1.1-.1.3-.1.4s0 .3.1.4v3.3h-11v-3.7c0 .2 0 .4-.2.5.1-.1.2-.3.2-.5v-10.3h4zm-4 15.4c0 .2-.1.3-.3.4.1-.1.2-.3.3-.4zm11.1-5.8c.1-.4.4-.6.8-.6-.3 0-.6.3-.8.6zm3.2 4.4h-1.3v-3h2.6c.6 0 1.4-.1 1.4-.7v-11.7c0-.6-.9-.6-1.4-.6h-2.6v-3.1c0 .2.3.1.7.1h75.1c.1 0 .3.2.3.2v2.8h-2.6c-.6 0-1.4.1-1.4.6v11.7c0 .6.8.7 1.4.7h2.6v3h-1.3c-.6 0-.7.6-.7 1.1v3.6c0 .6.1 1.3.7 1.3h1.3v6.4c0 .3.1.6.4.8l6 4.8h-88.9l-.5.4c-.2.1-.4.2-.6.2.2 0 .4-.1.6-.2l.5-.4 6.1-4.8c.2-.2.4-.5.4-.8v-6.4h1.3c.6 0 .7-.7.7-1.3v-3.6c-.1-.5-.3-1.1-.8-1.1zm-1.3-5v-9h2v9h-2zm77.5 7h12.1c.1.1.3.1.5.1s.3-.1.5-.1h.5v2h-.3c-.2-.2-.4-.3-.7-.3s-.5.1-.7.3h-11.6c-.2-.2-.4-.3-.7-.3s-.5.1-.7.3h-.3v-2h.5c.1.1.3.1.5.1s.3 0 .4-.1zm-.5-7c.5 0 .9.5 1 1-.1-.4-.5-1-1-1zm13.1 0c-.5 0-.9.5-1 1v-.1c0-.5.4-.9 1-.9zm-.4-15c0-.6.4-.9 1-.9-.5-.1-.9.4-1 .9zm-.5 21.6c-.1-.1-.1-.3-.1-.5-.1.2 0 .4.1.5zm-.2-17.6h-4v-.4c0-.6-.4-1-1-1s-1 .4-1 1v.4h-5v-19h11v19zm-6 2v8.6c0 .6.4 1 1 1s1-.4 1-1v-.3c.5.7.5 1.7-.2 2.4s-1.9.7-2.6 0c-.7-.7-.7-1.9 0-2.6.2-.2.2-.5 0-.7s-.5-.2-.7 0c-1.1 1.1-1.1 2.9 0 4 .6.6 1.3.8 2 .8s1.5-.3 2-.8c1.1-1.1 1.1-2.9 0-4-.1-.1-.3-.2-.5-.1v-7.3h4v14h-11v-14h5zm6.1 18.4c0 .1-.1.2-.1.4 0-.2 0-.3.1-.4zm-.1 1.6v6l-5.5 4.4-5.5-4.4v-6h11zm-13-11h-2v-9h2v9zm-89 11h11v6l-5.5 4.4-5.5-4.4v-6zm-.2-1.7zm13 0c.1.1.2.2.2.5 0-.2-.1-.4-.2-.5zm-.1-2.5c.2-.2.3-.4.3-.6 0 .2-.1.5-.3.6zm-14.7-6.8h-2v-9h2v9zm0-13.9v2.9H390c-.6 0-1.2.1-1.2.6v11.7c0 .6.7.7 1.2.7h2.8v3h-1.5c-.6 0-.5.6-.5 1.1v3.6c0 .6 0 1.3.5 1.3h1.5v6.4c0 .3.1.6.3.8l6 4.8h-39.7c-5.3 0-9.8-3.2-11.8-7.7-.1-.2 0-.5-.1-.7-.1-.3-.2-.5-.3-.8-.3-1.2-.4-2.5-.4-3.7v-26.7c2 1.8 4.7 2.6 7.8 2.6h37.5c.2 0 .6.2.6.1s.1-.1.1-.1l-.1.1zm115 36.9h-15.4l-.5.4c-.2.1-.4.2-.6.2.2 0 .4-.1.6-.2l.5-.4 6-4.8c.2-.2.4-.5.4-.8v-6.4h1.4c.6 0 .6-.7.6-1.3v-3.6c0-.6-.1-1.1-.6-1.1h-1.4v-3h2.7c.6 0 1.3-.1 1.3-.7v-11.7c0-.6-.8-.6-1.3-.6h-2.7v-3h9v37zm-9-23v-9h2v9h-2zm9-20.5v-.3c-.1.1-.1.2-.1.3v.2c0 .1 0 .2.1.3v4h-9v-14h2.9c.6 0 1-.4 1-1s-.4-1-1-1h-20.8c-.6 0-1 .4-1 1s.4 1 1 1h2.9v14.3s-.2-.3-.3-.3h-75.1c-.3 0-.7.4-.7.6v-14.6h2.8c.6 0 1-.4 1-1s-.4-1-1-1h-20.8c-.6 0-1 .4-1 1s.4 1 1 1h3v14.4s0 .1.1.1l-.1-.1v-.1c0-.1-.4-.4-.6-.4h-37.5c-6.2 0-10.8-4.9-10.8-11.1V51.6c0 10.5-1 21.1-2 32.2v41.3c0 3.2 1 6.2 3 8.5v25.6c-.5-.2-.7-.4-.9-.7-3.6-8-5.8-12.9-5.9-25 0-15.4 1.6-30.1 3-44.3.2-1.8-.3-3.6.7-5.5 1-11.1 1.8-21.7 1.8-32.2 0-.5-.3-1-.8-1h.1c.6 0 1 .4 1 1V36.4c0-.7.1-1.2.9-1.2h51c.4 0 .7-.3.9-.6-.3-.6-.6-1.1-.7-1.4.2 0 .4.8.7 1.4 1.8 3.2 6.5 9.8 18.3 18.2l-1.4 1.8c-.2.2-.2.5-.2.7 0 .3.2.5.4.7l4.1 3.1-.3.4c-.3.4-.3 1.1.2 1.4.2.1.4.2.6.2.3 0 .6-.1.8-.4l.3-.4 4.1 3.1c.2.1.4.2.6.2.3 0 .6-.1.8-.4l1.4-1.8 4.7 3.6c-.1.1-.2.1-.3.3-.9 1.1-1.2 2.5-1 3.9.2 1.4.9 2.6 2 3.5l49.1 37.7c.9.7 2 1.1 3.2 1.1h.7c1.4-.2 2.6-.9 3.5-2 .2-.3.2-.7.1-1-.1-.2-.2-.3-.3-.4.1.1.4.3.4.4 7 4.6 13.6 8.7 19.6 12.3v10.6c.1-.1.2-.2.4-.2-.3 0-.5.4-.6.5z"></path><path d="M345.6 168.4s.1 0 0 0c0-.1 0 0 0 0zm100.2-89.6c.3 0 .6-.1.8-.4l.5-.7 25.6 19.6-.5.7c-.3.4-.3 1.1.2 1.4.2.1.4.2.6.2.3 0 .6-.1.8-.4l9.1-11.9c.3-.4.3-1.1-.2-1.4-.4-.3-1.1-.3-1.4.2l-.4.6-25.6-19.6.4-.6c.3-.4.3-1.1-.2-1.4-.4-.3-1.1-.3-1.4.2l-1 1.3-6.9 9-1.1 1.5c-.3.4-.3 1.1.2 1.4 0 .3.2.3.5.3zm8.2-10.1l25.6 19.6-5.7 7.5-25.6-19.6 5.7-7.5zm-104.8 39.7c.3 0 .5-.2.5-.5V90.6c0-.3-.2-.5-.5-.5s-.5.2-.5.5V108c0 .2.2.4.5.4zm34.7 22.8h-26.3c-4.4 0-7.8-3.3-7.8-7.7v-7.8c0-.3-.2-.5-.5-.5s-.5.2-.5.5v7.8c0 4.9 3.9 8.7 8.8 8.7h26.3c.3 0 .5-.2.5-.5s-.3-.5-.5-.5zm74.2 0h-43c-.3 0-.5.2-.5.5s.2.5.5.5h43c.3 0 .5-.2.5-.5s-.3-.5-.5-.5zm18.3 0h-11.9c-.3 0-.5.2-.5.5s.2.5.5.5h11.9c.3 0 .5-.2.5-.5s-.2-.5-.5-.5z"></path><g><path d="M529.9 380.5L398.8 210.7c-.4-.5-1.2-.5-1.6 0L266.1 380.5c-.2.3-.3.8-.1 1.1.2.3.5.6.9.6h262.2c.4 0 .7-.3.9-.6.2-.3.2-.8-.1-1.1zm-166-84c5.9-2.7 10.1-3.7 15.6-1.7 5.9 2.2 8.2 5.8 10.6 11.9-.6 1.1-1.1 2.2-1.6 3.3l-13.1-4.3-12.6-5.4h-.1c.4-1.3.7-2.6 1-3.8h.2zm95.4 49c-.5-.2-1.1.1-1.3.6 0 .1-.1.3-.1.4 0-.1 0-.3.1-.4.2-.5.8-.8 1.3-.6l1.1.4c1-1.8 1.8-3.6 2.5-5.5s1.3-3.9 1.7-5.9l2.7 1-4.3 11.4-2.7-1-1-.4zm1.8-5.8c-3.6 9.6-10.7 17.3-20 21.5-9.3 4.2-19.6 4.5-29.1.9-19.7-7.4-29.7-29.7-22.3-49.5 3.6-9.6 10.7-17.3 20-21.5 5-2.3 10.3-3.4 15.7-3.4 4.5 0 9.1.8 13.4 2.5 19.6 7.4 29.7 29.6 22.3 49.5zm-100.9-38.2c-3.6 9.6-10.7 17.3-20 21.5-8.9 4.1-18.9 4.5-28.1 1.3l2.2-2.8c3.4 1 6.8 1.6 10.3 1.6 4.9 0 9.7-1 14.3-3.1 8.5-3.9 15-10.8 18.3-19.7 3.9-10.5 2.5-21.7-2.9-30.6l2.2-2.8c6.3 10 8.1 22.7 3.7 34.6zm-23.1-9.7l14 5.9-8.1-2.8c-2.2-.8-4.5-1.4-6.8-1.9l.9-1.2zm5.2 5l13.1 4.4h.2c-3.3 7.9-9.4 14.2-17.3 17.8-7.5 3.4-15.7 3.9-23.5 1.6l20-25.9c2.5.7 5.1 1.3 7.5 2.1zm14.5 1.3c-.1-.1-.2-.2-.4-.3l-18-7.6 15.1-19.6c4.8 8 6.2 18 3.3 27.5zm-47 27.6c.2 0 .4.1.6.2.1.1.3.1.4.1 4.5 1.6 9.1 2.5 13.7 2.5 5.6 0 11.2-1.2 16.5-3.6 9.5-4.3 16.7-11.9 20.7-21.5l13 4.3 12.7 5.4c-7 20.6 3.5 43.2 23.9 50.9 4.6 1.7 9.4 2.6 14.1 2.6 3.5 0 7.4-.5 10.4-1.4 1-.2 1.4-.4 2-.6v-.3.3c1.4-.5 2.7-1 4.1-1.6.5-.2.9-.4 1.4-.7.9 2.9 1.6 5.8 2 8.8.2 1.4-.3 2.8-1.5 3.7-1.1.9-2.6 1.1-3.9.5-1.5-.6-2.5-2.2-2.4-3.8 0-.5.1-1 .1-1.6.1-1.4.2-3.2.2-5.3-.7.2-1.3.4-2 .6 0 1.8-.1 3.3-.2 4.6 0 .6-.1 1.2-.1 1.7-.1 2.5 1.3 4.8 3.6 5.8.8.3 1.5.5 2.3.5 1.3 0 2.6-.4 3.6-1.3 1.7-1.3 2.5-3.4 2.2-5.6-.5-3.2-1.2-6.4-2.2-9.5v-.1c-.2-.5-.7-.8-1.3-.7-.4.1-.7.5-.7.9 0-.4.3-.7.7-.9.5-.2 1.1.1 1.3.7v.1c5.9-3.3 10.8-8 14.3-13.7l3.9 1.5c.1 0 .2.1.4.1.1 0 .3 0 .4-.1.2-.1.4-.3.5-.6l5-13.3c.2-.5-.1-1.1-.6-1.3l-3.9-1.5c2.9-18.6-7.4-37.3-25.6-44.2-10-3.8-20.9-3.4-30.7 1-7.3 3.3-13.3 8.6-17.5 15.3-2-4.9-4.6-9.2-11.2-11.6-6.3-2.4-11.2-.9-16 1.2 1.6-10.3-.9-20.6-6.5-28.9L398 213l129.1 167.2H269l41.8-54.1c-.1-.1-.3-.1-.4-.2-.3-.1-.5-.1-.6-.2L267 381.2l42.8-55.5z"></path><path d="M437.6 293.3c-8.7-3.3-18.1-3-26.6.9s-15 10.8-18.3 19.7c-6.8 18.1 2.4 38.4 20.4 45.2 4 1.5 8.1 2.3 12.3 2.3 4.9 0 9.7-1 14.3-3.1 8.5-3.9 15-10.8 18.3-19.7 6.7-18.2-2.4-38.5-20.4-45.3zm-24.2 64.8c-17.1-6.4-25.9-25.3-20.3-42.6.1 0 .1.1.2.1l12.7 5.3c7.8 3.3 14.7 8 20.6 13.8v.1c5.2 6.1 8.2 14.1 8.9 23.5 0 .1 0 .2.1.3-7.2 2.4-15 2.2-22.2-.5zm25.8-.9c-.6.3-1.1.5-1.7.7-.4-5-1.4-9.6-3.1-13.8 2.5 3.7 4.7 7.6 6.4 11.8.1.1.1.2.2.3-.5.4-1.1.7-1.8 1zm17.8-19.1c-2.7 7.3-7.7 13.3-14.2 17.2v-.1c-6.9-16.4-19.6-29.2-35.9-36.1l-8-3.4 58.5 19.7c.1 0 .2.1.3.1h.3c-.4.9-.7 1.8-1 2.6zm1.3-4.3c-.1-.1-.2-.2-.4-.3l-63-21.3c-.2-.1-.4-.1-.5 0 3.4-7.7 9.4-13.7 17-17.2 4.4-2 9.2-3 13.9-3 4 0 8 .7 11.9 2.2 16.1 6.1 24.9 23.2 21.1 39.6z"></path></g><g><path d="M299.4 186.4L161.8 11.1c-.4-.5-1.2-.5-1.6 0L22.5 186.4c-.3.4-.3.9 0 1.2l137.6 175.3c.2.2.5.4.8.4s.6-.1.8-.4l137.6-175.3c.4-.3.4-.9.1-1.2zm-71.6-52.5l-2.3-3.7c-.1-.1-.1-.2-.1-.4 0 .1.1.3.1.4l2.3 3.7 3.7 6c-.7 2.7-.5 5.3.6 7.2.9 1.6 2.4 2.8 4.4 3.3.8.2 1.7.4 2.5.6 3.4.7 6.3 1.2 7 5 .1.5.5.8 1 .8h.2c.1 0 .3-.1.4-.1.3 3.8.2 7.9-.2 12-.7 6.8-1.8 13.2-3.3 19.1l-.6 2.3-.9 3.3c-1.9 6.2-4.2 12-6.9 17.3l-7.9-76.8zm-2.6-12.4c0 .1.1.3.1.4l1.5 2.5 10.9 17.9c.3.5.1 1.2-.4 1.5-.2.1-.5.2-.8.1-.3-.1-.5-.2-.7-.5l-8.6-14.2-.5-4.9-1.5-2.5v-.3zm9.1 23c.4.7 1.1 1.2 1.9 1.4.2.1.5.1.7.1.6 0 1.1-.2 1.6-.4 1.4-.9 1.9-2.8 1-4.2l-1.9-3.1c1.2-.4 2.3-.3 3.4.4 3 1.9 5.2 7.5 6.1 14.6-1.6-3-5-3.7-7.8-4.2-.8-.2-1.6-.3-2.4-.5-1.5-.4-2.5-1.2-3.2-2.4-.6-1-.8-2.2-.7-3.6l1.3 1.9zm10 49.9l1.8-6.3v-.1c1.5-6 2.6-12.3 3.2-19.1 1.4-14.8-1.6-28.3-7.2-31.9-1.7-1.1-3.6-1.3-5.6-.5l-9.5-15.6c-.1-.2-.3-.4-.6-.4l-.7-6.4c-.2-2.3-2.1-3.8-4.4-3.8h-36.7c-2-3-4.2-4.9-6.4-6.2v-.1c-1.4-20.5-5.9-40.4-12.9-56.1-4-9.1-8.8-16.6-14.1-22.3l9.7-12.3L297.4 187l-56.9 72.5-4.2-41.8c3.6-8.6 6.1-16.7 8-23.3zM200 174.8c.1-1.1.1-2.3.2-3.4.1.2.4.3.6.4l1.1.2-1.4 7.9-5.7-1-5.7-1 1.4-7.9 1.1.2h.3c-.2 2.1-.4 3.2-.4 3.3 0 .3 0 .5.2.8s.4.4.6.4l6.5 1.1h.2c.2 0 .4-.1.6-.2.3-.3.4-.5.4-.8zm7.3 8.4l-6.1-.9 6.1.9-2.6 34.7c-.1.8-.5 1.5-1.1 2-.6.5-1.4.7-2.2.5l-26.9-4.7c-.8-.1-1.5-.6-1.9-1.3-.4-.7-.6-1.5-.4-2.3l9.5-33.5 6.2 1.1 9.2 1.6-2.6-.5 2.6.5 4.1.9h.1-.1l-4.1-.9 4.1.7-4.1-.7 4.1.7 6.1 1.2zm-9.2-9.7l-4.4-.8c.6-4 2.4-19.5-.7-38.7.6.2 1.1.4 1.7.5 0-.1-.1-.2-.1-.3-.1-.5.2-1.1.7-1.2h.4-.4c-.5.1-.8.7-.7 1.2 0 .1.1.2.1.3 2.2 8.1 4.4 21.3 3.4 39zm-29.4-58.4c-.8-2.4-1.1-4.7-.6-6.5.2 1.1.7 2.1.7 3.1 0 .1.2.2.3.3 0 .1.2.2.3.3 0 .1.1.1.1.2 4.8 8.7 20.9 12.8 30.3 15.2l1 .2v6.3c-23.1-5.9-30.3-13.6-32.1-19.1zm13 16.7l-.2-2c.1 0 .2.1.2.1v1.9zm-1.4-4.6c.5 0 .9.3 1 .8v.1c-.1-.5-.5-.9-1-.9zm3.1 37.8c.1.7-.1 1.1-.6 1.6-.4.5-1.1.6-1.7.6h-14.7c-.7 0-1.3-.1-1.7-.6-.4-.5-.6-.9-.6-1.6l4-35.8h11.2l4.1 35.8zm6.1-41.2h-.2.2zm-1.3-1.4c0 .2.1.4.1.6 0-.2-.2-.5-.3-.7-1.4-.5-2.3-1-4.3-1.6v-3.2c0-.6-.2-1.3-.7-1.3h-4.1l-.1.2v.1c0-1.5 0-3-.1-4.5.1.1.3.2.4.2h3.1c2.5 3 5.1 6.3 6 10.2zm-9.6-12.1v-.1c0-.5 0-1.1-.1-1.6.5.5 1.1.7 1.7 1.7H179c-.1-.1-.2-.1-.4 0zm.2 7.9c-.1 0-.2-.1-.3-.1 0 0 0-.1.1-.1.2.1.4.2.7.2h2.4v1.6c-1-.4-1.5-.6-2.4-1.6h-.5zm-2-1.2c-2.4-1.6-4.4-3.4-5.6-5.6 0 0 0-.1-.1-.1-.1-2.8-.3-5.6-.5-8.5v-.1c-2.2-28.5-10.4-56-24-71.3l3.3-4.2c5.9 6.4 10.4 14.2 13.6 21.5 8.4 18.7 13.2 43.6 13.3 68.3zm13.9 5.9c-2-2.7-4-6.7-6.8-10.7 2.8 4 5 8 6.5 10.7h-.1s.2.1.3.1c0 0 .1 0 .1-.1zm-.4-.1c-.6-3.9-3-7.6-5.4-10.6 2.4 3 4.7 6.6 5.4 10.6zM83.8 110l61-77.7c.2.3.5.5.7.8 4.6 5.3 8.2 11.7 10.9 17.6 6.4 14.2 10.7 32.7 12.3 51.9v.2c-.7.9-2.4 3.4-2.7 7.4 0 0 0-.1 0 0H85l60.4-77.1c-.2-.3-.5-.5-.7-.7l-61 77.8-1.6 2-1.4 1.6 1.4-1.8 1.7-2zm-5.1 8.2v13.5l-.4-3.8c-.1-.5-.5-.7-1-.7h-5.6l6.7-9h.3zM68.8 129l1.6-2 2.6-3.3-2.6 3.5-1.6 2-4.3 5.3-.2 1.9 5.7-7.3h6.3l4 35.9c.1.7-.1 1.1-.6 1.6-.4.5-1.1.6-1.7.6H63.5c-.7 0-1.3-.1-1.7-.6-.4-.5-.6-1.1-.6-1.7l3.2-28.5.2-1.9 4.2-5.5zm9.9 128.5L23.3 187l.1-.1 55.3 70.3.8 1 8.5 11.1-8.5-10.8-.8-1zm153 14.8l-.8-.4-5.7 7.4h-58.9c-2.5 0-5 1.4-7.6 2h-.2 65.2L161 361l-62.6-79.7h14.7c-.5 0-.9-.5-1-1v-.1c.1.5.5.8 1 .8h.1c1-.2 2.2-.3 3.4-.5-1.3.2-2.4.4-3.4.6-.1 0-.1.1-.1.1h45.3c-.5 0-.9-.4-1-.9v-.4.3c.1.5.5.7 1 .7.1 0 .1.1.2.1 2.6-.6 5.2-1.9 7.6-1.9 38.9-11 58-35.7 68.3-57.7l-.4-3.9c-3 6.9-6.8 14-11.7 20.9-14.7 20.5-36.3 33.7-64.2 40.7l-.1-.1c-.1 0-.2.1-.3.1h-31.4c28.6-5 81.3-17.1 107.7-61.7l-.4-3.6c-28.7 51.8-93.1 61.2-117.4 64.7-1.2.2-2.4.6-3.4.6 0 0 0-.1-.1-.1s-.3.1-.4.1H96.8l-16-21h39.7c.3 0 .5-.2.5-.5s-.2-.5-.5-.5H80l-55.4-70.4L62 139.3l.2-1.8-.2 1.9-2.8 25.3c-.1 1.2.3 2.4 1.1 3.3.8.9 2 1.3 3.2 1.3h14.7c1.2 0 2.4-.4 3.2-1.3.8-.9 1.2-2.1 1.1-3.3L79 133.4c.2.3.5.5.8.5.6 0 1-.4 1-1v-15.3c0-.6-.2-1.3-.7-1.3H80l3.6-4H166v-1.9c0 .6-.1.9 0 1.9h.1c.5 0 .9-.5 1-1v.1c0 .6-.4.9-1 .9h-.1c.1 1 .3 2.1.7 3.4.1.3.2.6.3.6h.2c.6 0 1 .6 1 1.1v-.1c0-.5-.5-1.1-1-1.1h-.2s-.1.1-.1 0h-2.3c-.6 0-.9.7-.9 1.3v15.3c0 .6.4 1 1 1s1-.4 1-1v-14.6h1.4c.2 0 .3-.1.5-.2 0 .1.1.2.1.2l.2-.2c-.1.1-.1.2-.2.2 1.8 3.2 4.8 5.9 8.9 8.9h-9.4c-.5 0-.9.3-1 .8l-4.1 36.8c-.1 1.2.3 2.3 1.1 3.2.8.9 2 1.3 3.2 1.3h14.7c1.2 0 2.4-.4 3.2-1.3.8-.9 1.2-2.1 1.1-3.3l-3.5-31.3c.2.3.5.5.8.5.6 0 1-.4 1-1v-2c2 .9 4.5 1.8 7 2.6v-.4c-.1-.5.3-1.1.8-1.2-.5.1-.9.6-.8 1.2 0 .1 0 .3.1.4 2.5 15.1 2 28 1.4 34.9 0 0-.1 0-.1-.1l-2.1-.4c-.3 0-.5 0-.7.2-.2.2-.4.4-.4.6l-1.6 8.9-6.1-1.1-3.9-.7c-.5-.1-1.1.3-1.2.8-.1.5.3 1.1.8 1.2l2.8.5-9.4 33.4c-.4 1.3-.1 2.7.6 3.9s1.9 1.9 3.3 2.2l26.9 4.7c.3 0 .6.1.8.1 1.1 0 2.1-.3 3-1 1.1-.8 1.8-2.1 1.9-3.4l2.6-34.5 2.8.5h.2c.5 0 .9-.3 1-.8.1-.5-.3-1.1-.8-1.2l-9.9-1.8 1.6-8.9c0-.3 0-.5-.2-.7-.2-.2-.4-.4-.6-.4l-2.1-.4c-.4-.1-.7.1-.9.3.5-15.5-1.4-27.2-3.3-34.9 1.3.4 2.7.7 4.1 1.1h.2c.2 0 .7-.1.8-.2.2-.2.6-.5.6-.8V127c0-.5-.5-.9-1-1l-1.6-.4c-2.1-.5-4.6-1.2-7.1-1.9.1.4-.1.9-.5 1.1-.1.1-.3.1-.5.1.1 0 .3 0 .4-.1.4-.2.6-.7.5-1.1l-.1-.1c-1.3-2.7-3.8-7.4-6.7-11.4h35.2c1.2 0 2.3.8 2.4 2l10 99.7.3 3.5v.1l.4 3.9 4.1 40.4-7.1 9.1-15.4-10.2c-.2-.2-.5-.1-.7.1-.2.2-.1.5.1.7l15.3 10.1.8.7z"></path><path d="M201.4 207.1c-.3 0-.5.2-.5.5l-.5 7.1c0 .1-.1.3-.2.4-.1.1-.3.1-.4.1l-12.7-2.2-6.6-1.2-2.6-.5c-.1 0-.3-.1-.3-.2-.1-.1-.1-.3-.1-.4l5.3-18.7c.1-.3-.1-.5-.3-.6-.3-.1-.5.1-.6.3l-5.3 18.7c-.1.4 0 .8.2 1.2.2.4.6.6 1 .7l2.6.5 6.6 1.2 12.7 2.2h.3c.3 0 .7-.1.9-.3.3-.3.5-.6.6-1.1l.5-7.1c-.1-.3-.3-.5-.6-.6zm-18.2-18.9h.1c.2 0 .4-.1.5-.4l1-3.7 14.5 2.6c.3 0 .5-.1.6-.4 0-.3-.1-.5-.4-.6l-15-2.6c-.3 0-.5.1-.6.4l-1.2 4.1c.1.3.3.5.5.6zm18.6 14.5c.3 0 .5-.2.5-.5l.9-12c0-.3-.2-.5-.5-.5s-.5.2-.5.5l-.9 12c0 .3.2.5.5.5zm-24.9 54.5h-18.2c-.3 0-.5.2-.5.5s.2.5.5.5h18.2c.3 0 .5-.2.5-.5s-.2-.5-.5-.5zm-18-139.5c0-.3-.2-.5-.5-.5h-42.5c-.3 0-.5.2-.5.5s.2.5.5.5h42.5c.3 0 .5-.2.5-.5zm-93.8 45.6c.1.1.2 0 .4 0h10.4c.3 0 .5-.2.5-.5s-.2-.5-.5-.5H66l1.4-12.6c0-.3-.2-.4-.4-.4-.3 0-.5.2-.6.5L65 163.1c-.1.1 0 .1.1.2zm2.4-18.7c.1 0 .1 0 0 0 .3 0 .5-.2.6-.4l1.2-10.9c0-.3-.2-.5-.4-.6-.3 0-.5.2-.6.4L67.1 144c0 .3.2.6.4.6zm100.7 18.7c.1.1.2 0 .4 0h6.4c.3 0 .5-.2.5-.5s-.2-.5-.5-.5h-5.9l.5-3.9c0-.3-.2-.4-.4-.4-.3 0-.5.2-.6.5l-.5 4.7.1.1zm1.8-12.7s0 .1 0 0c.3 0 .5-.2.6-.4l1.9-17c0-.3-.2-.5-.4-.6-.3 0-.5.2-.6.4l-1.9 17c-.1.4.1.6.4.6zm-62.6-33.4H89.1c-.3 0-.5.2-.5.5s.2.5.5.5h18.2c.3 0 .5-.2.5-.5s-.1-.5-.4-.5z"></path></g></svg>

I am also getting the same issue. The SVG gets Zoomed .

+1

@niklasvh I'm also facing the same issue. Can you please look in this?

Hi @niklasvh I just tested html2canvas library in MAC & iPhone it's working fine the SVG content not getting a zoom, But in Linux & Windows the SVG content getting zoom.

In html2canvas.js file replace this code may be it solve SVG Zoom Issue.

var getImage = function getImage(node, resourceLoader) {

node.setAttribute("width",$(node)[0].getBoundingClientRect().width);
node.setAttribute("height", $(node)[0].getBoundingClientRect().height);

if (node instanceof node.ownerDocument.defaultView.SVGSVGElement || node instanceof SVGSVGElement) {
    var s = new XMLSerializer();
    return resourceLoader.loadImage('data:image/svg+xml,' + encodeURIComponent(s.serializeToString(node)));
}

switch (node.tagName) {
    case 'IMG':
        // $FlowFixMe
        var img = node;
        return resourceLoader.loadImage(img.currentSrc || img.src);
    case 'CANVAS':
        // $FlowFixMe
        var canvas = node;
        return resourceLoader.loadCanvas(canvas);
    case 'IFRAME':
        var iframeKey = node.getAttribute('data-html2canvas-internal-iframe-key');
        if (iframeKey) {
            return iframeKey;
        }
        break;
  }
    return null; 
};

@vishal-px thanx a lot, worked for me!

@vishal-px thank for your solution, it works with some changes

We need to specify height and width only for SVG, not for all elements, so i move

node.setAttribute("width",$(node)[0].getBoundingClientRect().width);
node.setAttribute("height", $(node)[0].getBoundingClientRect().height);

to if case.

Also i removed call to $, because it's not defined there and i think it's not necessary.

So the final changes:

original

    if (node instanceof node.ownerDocument.defaultView.SVGSVGElement || node instanceof SVGSVGElement) {
        var s = new XMLSerializer();
        return resourceLoader.loadImage('data:image/svg+xml,' + encodeURIComponent(s.serializeToString(node)));
    }

changed

  if (node instanceof node.ownerDocument.defaultView.SVGSVGElement || node instanceof SVGSVGElement) {
        node.setAttribute("width", node.getBoundingClientRect().width);
        node.setAttribute("height", node.getBoundingClientRect().height);
        var s = new XMLSerializer();
        return resourceLoader.loadImage('data:image/svg+xml,' + encodeURIComponent(s.serializeToString(node)));
    }

P.S. To anyone who will be use this fix: don't forget to remove width: "0" and height: "0" from svg element

@105th This works for the position/scale of SVGs. I've been trying to set colors of the SVGs, did you also find any solution for the colors not being applied according to stylesheet?

You should try applying styles inline, not in a separate css file, @venkat4541

I had the same problem with SVG zooming in the current version (1.0.0-rc3). Based on the suggested fixes above, it worked for me to simply add:

          img.setAttribute("width", img.getBoundingClientRect().width);
          img.setAttribute("height", img.getBoundingClientRect().height);

to SVGElementContainer before the call to encodeURIComponent, i.e.:

   var SVGElementContainer = /** @class */ (function (_super) {
        __extends(SVGElementContainer, _super);
        function SVGElementContainer(img) {
            var _this = _super.call(this, img) || this;
            img.setAttribute("width", img.getBoundingClientRect().width);
            img.setAttribute("height", img.getBoundingClientRect().height);
            var s = new XMLSerializer();
            _this.svg = "data:image/svg+xml," + encodeURIComponent(s.serializeToString(img));
            _this.intrinsicWidth = img.width.baseVal.value;
            _this.intrinsicHeight = img.height.baseVal.value;
            CacheStorage.getInstance().addImage(_this.svg);
            return _this;
        }
        return SVGElementContainer;
    }(ElementContainer));

Was this page helpful?
0 / 5 - 0 ratings