Scale path without affecting stroke width

Hi all,
This seems like it should be simple to do but I'm not having any luck here. Basically I have a path parented to a null that controls several things, scaling them down, rotating and moving across the composition. One of those items is a path with a stroke of 32 px.  I want to be able to scale the path itself down, but leave the stroke the same.
I thought I could key the stroke width manually but that has no effect- scaling it up as the path scales down doesn't seem to change the stroke width at all at the end keyframe, only at the beginning keyframe. I see the px count start at 32 and increase up to as it moves along the timeline, even though the stroke width on screen is still getting smaller as if there were no change at all to the width.
Thanks!

You generally don't want to scale the layer that contains the stroke, you want add keyframes to the mask path and animate the size of the path. This is easy. You just start by double-clicking one of the vertices and using the transform box.
If this technique does not work for you then you have two other options, both involving expressions. Both of these options use exactly the same expression to look at the scale of your null layer and both assume that the null is at 100% scale at the start of the animation. The option that I would choose would be to replace the mask path on a layer with stroke applied with shape layer path with stroke applied. You have so many more options and you're dealing with vector information. With either solution this is the expression.
sf = thisComp.layer("Control Null 1").transform.scale[0]/100;
ov = value;
nv = ov / sf
sf (scale factor) is the x scale value of the controlling null that is the parent of the stroke layer or the layer with the stroke effect applied to a mask divided by 100. If you intend to scale X and Y of the parent you'll have to modify the expression and then combine the scale factors and this solution will not work as well.  The original scale value is divided by 100 to turn it into a decimal value
ov (original value)  is the original set value of the stroke.
nv (new value) is calculated by dividing the original value by the scale factor.
This is just basic algebra from the 7th grade. If your controlling parent is scaled below 0 then the stroke will go away because the value will change to a negative number. If this is necessary in your composition you can write an if statement that will change the nv back to a positive number if the scale factor becomes less than or equal to zero and solves the divide by zero error you would get with a scale factor of zero.
One last point, and this is important. This expression will produce accurate results if applied to the brush size of a mask path when using the Effects>Generate>Stroke effect to create your line but when scaled over 100% the line will begin to fall apart and anti aliasing will not be able to keep up with pixilation caused by the scale. Over about 120% the line will start to look thinner and over 140% it will look bad even though the stroke width is numerically accurate.
I'll let you take it from here.

Similar Messages

  • Importing svg's stroke-width not scaled up

      I am trying to import an svg in the illustrator, and it has stroke-width of 30px  but its wasn't scaled up, its showing 1px of the stroke-width always, In preferences i have checked the option ' scale and transform the stroke-width ' and i have changed all the units into pixels. Still i am not getting that.
    Thanks.

    Thanks, Larry. On Mac and Win, double-clicking on the scale tool should also get you that dialog and the checkbox.

  • Scale a Paint's "path" without distorting the Brush "strokes"?

    Anyway to scale a Paint Brush "stroke's" "path" along only one axis without distorting the brush strokes?

    Besides having no idea what you're trying to say, I don't think you're considering the problem.
    Here's the same issue, solved with regards lines and their strokes distorting:
    scale a line, not it's outline/stroke...
    That's a particularly cool trick.
    But I don't see anything similarly possible with Paint Brush based "strokes".
    Please, consider that this is what I'm "painting" the line with, so I'd like the circles (dots) to not distort into ovals when scaling the path in only one dimension, see my answer at bottom:
    Small Circles (dots) on a path instead of dashes?

  • Adjusting Stroke Width Warps Path Shape

    When I try to adjust the width of the stroke on a closed shape by increments of one point at a time it warps the shape a little bit each time i add more width. But if I use the drop down menu, the storke changes width without affecting the shape of the closed path. What the heck is happening?
    Here's whats the shape looks like with 1pt stroke.
    And this is what it looks like after I adjust the stroke with to 386pt by clicking and holding the up arrow to adjust it one point at a time:
    I almost never would use such a thick stroke but i wanted to accentuate how much of the original shape is being lost.
    Any ideas?

    You've got a problem with align to pixel grid:
    Illustrator: Problems with Align to pixel grid

  • How to select paths with the same stroke width

    I would like to know how to select all the paths inside a document whose stroke width are equal to 0.361 points
    I will appreciate any help.

    here you go
    #target illustrator
    // script.name = selectPathsThisSize.jsx;
    // script.description = selects pathItems that have the same supplied stroke width; limited to 3 decimals;
    // script.required = a document with at least one path item;
    // script.parent = CarlosCanto // 6/5/11;
    // script.elegant = false;
    var idoc = app.activeDocument;
    var strokewidth = prompt ("Enter Stroke Width in points of paths to be selected", 0.361, "Select Paths this size:___");
    for (i=0 ; i< idoc.pathItems.length; i++)
              var ipath = idoc.pathItems[i];
                   if ( (ipath.strokeWidth).toFixed(3) == Number(strokewidth).toFixed(3))
                             ipath.selected = true;
    app.redraw();

  • SVG import doesn't scale "stroke-width"

    with Illustrator, when opening svg image that content some scaled objects ("transfom=scale(10)" for example) I have a problem
    filled forms are correctly scaled but the size of the border (""stroke-width"") doesn't change .
    Is this a bug ?
    SVG code:
    <?xml version="1.0" encoding="iso-8859-1"?>
    <!-- Generator: Adobe Illustrator 12.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 51448)  -->
    <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
    <!ENTITY ns_svg "http://www.w3.org/2000/svg">
    <!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
    ]>
    <svg  version="1.1" id="Calque_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="10cm" height="10cm" viewBox="0 0 283.5 283.5"
    style="overflow:visible;enable-background:new 0 0 283.5 283.5;" xml:space="preserve">
    <g transform="scale(10)">
    <rect width="1cm" height="1cm" style="fill:rgb(0,0,255);stroke-width:0.1cm; stroke:rgb(0,0,0)"/>
    </g>
    </svg>

    Sorry nothing changes
    For information, this problem has been detected by Gephi users, but the real problem is a miscomprehension of SVG code by Illustrator
    https://bugs.launchpad.net/gephi/+bug/626378
    New code is
    <?xml version="1.0" encoding="iso-8859-1"?>
    <!-- Generator: Adobe Illustrator 12.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 51448)  -->
    <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
    <!ENTITY ns_svg "http://www.w3.org/2000/svg">
    <!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
    ]>
    <svg  version="1.1" id="Calque_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="10cm" height="10cm" viewBox="0 0 283.5 283.5"
    style="overflow:visible;enable-background:new 0 0 283.5 283.5;" xml:space="preserve">
    <g transform="scale(10)">
    <rect width="10pt" height="10pt" style="fill:rgb(0,0,255);stroke-width:1pt; stroke:rgb(0,0,0)"/>
    </g>
    </svg>

  • Stroke width wasn't scaled up when importing svgs in cs5

    I am tried to open the following svg in the illustrator but it was not scaled the stroke-width of the text, even i have changed the units into px.
    I am struggling a lot with this please help me. And its kinda merged svg from both illustrator and inkscape generated svgs.
    Thanks.
    ==
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!-- Created with Inkscape (http://www.inkscape.org/) -->
    <!-- Added to solve the issuses with ill.adobe genrated svg's -->
    <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
        <!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
        <!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/">
        <!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
        <!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/">
        <!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/">
        <!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/">
        <!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/">
        <!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/">
        <!ENTITY ns_svg "http://www.w3.org/2000/svg">
        <!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
    ]>
    <svg
       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:xlink="http://www.w3.org/1999/xlink"
       xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
       xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
       xmlns:x="&ns_extend;"
       xmlns:i="&ns_ai;"
       xmlns:graph="&ns_graphs;"
       version="1.0"
    height="1228.5" width="877.5"    id="svg2">
      <defs
         id="defs4">
        <filter
           color-interpolation-filters="sRGB"
           id="filter4458">
          <feGaussianBlur
             id="feGaussianBlur4460"
             stdDeviation="13.293611" />
        </filter>
      </defs>
      <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>
          <cc:Work
             rdf:about="">
            <dc:format>image/svg+xml</dc:format>
            <dc:type
               rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
          </cc:Work>
        </rdf:RDF>
      </metadata>
    <g transform=" translate(54.0, 213.75) scale(4.5, 4.5) " ><g transform="matrix(1.25,0,0,-1.25,9.600000000000001,67.08624744415283)" id="g10">
    <g id="g12"><path d="M 27.7189998626709,21.4060001373291 C 28.6560001373291,20.363000869750977 29.347999572753906,19.222999572753906 29.797000885009766,17.98400115966797 30.242000579833984,16.742000579833984 30.46900177001953,15.301000595092773 30.46900177001953,13.656001091003418 30.46900177001953,9.738000869750977 29.020002365112305,6.508001327514648 26.125001907348633,3.969000816345215 23.227001190185547,1.4260008335113525 19.63300132751465,0.15600085258483887 15.344001770019531,0.15600085258483887 13.363001823425293,0.15600085258483887 11.383001327514648,0.46500083804130554 9.406002044677734,1.078000783920288 7.426002025604248,1.6910006999969482 5.719001770019531,2.4380006790161133 4.281002044677734,3.3120007514953613 L 2.938002109527588,1.0310008525848389 0.4380021095275879,1.0310008525848389 L 0.0,16.2189998626709 L 2.5309998989105225,16.2189998626709 C 3.0510001182556152,14.343999862670898 3.6600000858306885,12.64799976348877 4.359000205993652,11.140999794006348 5.054999828338623,9.628999710083008 5.9770002365112305,8.218999862670898 7.125,6.906000137329102 8.206999778747559,5.676000118255615 9.472999572753906,4.695000171661377 10.92199993133545,3.9690001010894775 C 12.366999626159668,3.2380001544952393 14.050999641418457,2.875 15.968999862670898,2.875 17.4060001373291,2.875 18.65999984741211,3.062000036239624 19.733999252319336,3.437999963760376 20.80499839782715,3.812000036239624 21.67599868774414,4.343999862670898 22.3439998626709,5.031000137329102 23.007999420166016,5.719000339508057 23.503999710083008,6.523000240325928 23.827999114990234,7.453000068664551 24.147998809814453,8.378999710083008 24.31199836730957,9.444999694824219 24.31199836730957,10.656000137329102 24.31199836730957,12.426000595092773 23.81199836730957,14.07800006866455 22.81199836730957,15.609000205993652 21.81199836730957,17.141000747680664 20.319997787475586,18.301000595092773 18.343997955322266,19.0939998626709 16.987998962402344,19.632999420166016 15.437997817993164,20.233999252319336 13.687997817993164,20.891000747680664 11.937997817993164,21.547000885009766 10.425997734069824,22.16400146484375 9.155998229980469,22.75 6.655998229980469,23.875 4.710998058319092,25.347999572753906 3.327998161315918,27.172000885009766 1.9409981966018677,28.992000579833984 1.2499980926513672,31.375 1.2499980926513672,34.3120002746582 1.2499980926513672,36.0 1.5939980745315552,37.56999969482422 2.2809982299804688,39.03099822998047 2.9689981937408447,40.487998962402344 3.944998264312744,41.788997650146484 5.218997955322266,42.9379997253418 6.425997734069824,44.02000045776367 7.8519978523254395,44.867000579833984 9.499998092651367,45.48400115966797 11.144998550415039,46.097999572753906 12.862998008728027,46.406002044677734 14.655998229980469,46.406002044677734 16.694997787475586,46.406002044677734 18.522998809814453,46.09400177001953 20.14099884033203,45.46900177001953 21.753999710083008,44.84400177001953 23.226999282836914,44.11300277709961 24.56199836730957,43.281002044677734 L 25.843997955322266,45.406002044677734 28.343997955322266,45.406002044677734 28.593997955322266,30.68800163269043 26.06199836730957,30.68800163269043 C 25.601999282836914,32.375 25.08599853515625,33.98800277709961 24.51599884033203,35.531002044677734 23.940998077392578,37.070003509521484 23.19499969482422,38.46900177001953 22.28099822998047,39.71900177001953 21.382997512817383,40.926002502441406 20.288997650146484,41.8910026550293 18.999998092651367,42.60900115966797 17.706998825073242,43.3280029296875 16.124998092651367,43.6879997253418 14.249998092651367,43.6879997253418 12.269998550415039,43.6879997253418 10.581997871398926,43.05099868774414 9.187997817993164,41.78099822998047 7.788997650146484,40.507999420166016 7.093997955322266,38.95699691772461 7.093997955322266,37.125 7.093997955322266,35.207000732421875 7.538998126983643,33.617000579833984 8.437997817993164,32.35900115966797 9.331997871398926,31.09800148010254 10.632997512817383,30.062000274658203 12.343997955322266,29.250001907348633 13.862998008728027,28.520002365112305 15.35899829864502,27.891002655029297 16.827999114990234,27.35900115966797 18.296998977661133,26.828001022338867 19.7189998626709,26.25800132751465 21.093997955322266,25.656002044677734 22.343997955322266,25.11300277709961 23.5469970703125,24.500001907348633 24.7029972076416,23.812002182006836 25.858997344970703,23.125001907348633 26.86299705505371,22.32000160217285 27.718997955322266,21.406002044677734 Z M 71.81199645996094,40.156002044677734 C 73.7699966430664,38.11300277709961 75.30099487304688,35.64800262451172 76.40599822998047,32.7660026550293 77.50799560546875,29.87900161743164 78.06199645996094,26.688003540039062 78.06199645996094,23.188003540039062 78.06199645996094,19.664003372192383 77.5,16.469003677368164 76.375,13.594003677368164 C 75.25,10.718999862670898 73.68800354003906,8.270000457763672 71.68800354003906,6.25 69.75,4.25 67.5,2.7070000171661377 64.93800354003906,1.625 62.375,0.5429999828338623 59.64500045776367,0.0 56.75,0.0 53.66400146484375,0.0 50.816001892089844,0.578000009059906 48.202999114990234,1.7339999675750732 45.58599853515625,2.8910000324249268 43.34400177001953,4.5 41.46900177001953,6.561999797821045 C 39.59400177001953,8.581999778747559 38.117000579833984,11.03499984741211 37.047000885009766,13.92199993133545 35.972999572753906,16.80500030517578 35.4379997253418,19.895000457763672 35.4379997253418,23.187999725341797 35.4379997253418,26.788999557495117 36.0,30.003999710083008 37.125,32.827999114990234 38.25,35.64799880981445 39.80099868774414,38.093997955322266 41.78099822998047,40.15599822998047 43.737998962402344,42.19499969482422 46.01599884033203,43.757999420166016 48.6089973449707,44.843997955322266 51.202999114990234,45.92599868774414 53.913997650146484,46.468997955322266 56.749996185302734,46.468997955322266 59.68799591064453,46.468997955322266 62.45699691772461,45.913997650146484 65.06199645996094,44.81199645996094 67.66399383544922,43.70699691772461 69.91399383544922,42.15599822998047 71.81199645996094,40.15599822998047 Z M 67.15599822998047,8.718999862670898 C 68.31999969482422,10.61299991607666 69.1719970703125,12.757999420166016 69.70299530029297,15.156000137329102 70.23399353027344,17.551000595092773 70.49999237060547,20.227001190185547 70.49999237060547,23.187999725341797 70.49999237060547,26.226999282836914 70.20299530029297,29.020000457763672 69.60899353027344,31.562000274658203 69.0159912109375,34.10200119018555 68.1449966430664,36.27000045776367 66.99999237060547,38.0620002746582 65.85198974609375,39.832000732421875 64.41399383544922,41.21099853515625 62.687992095947266,42.202999114990234 60.956993103027344,43.19099807739258 58.976993560791016,43.6879997253418 56.74999237060547,43.6879997253418 54.24999237060547,43.6879997253418 52.12499237060547,43.112998962402344 50.37499237060547,41.968997955322266 48.62499237060547,40.81999969482422 47.19499206542969,39.288997650146484 46.093994140625,37.375 45.050994873046875,35.53900146484375 44.27299499511719,33.39500045776367 43.765995025634766,30.937999725341797 C 43.25400161743164,28.476999282836914 43.0,25.895000457763672 43.0,23.187999725341797 C 43.0,20.187999725341797 43.27000045776367,17.476999282836914 43.8120002746582,15.061999320983887 44.35200119018555,12.644999504089355 45.207000732421875,10.5 46.375,8.625 47.5,6.789000034332275 48.91400146484375,5.359000205993652 50.625,4.328000068664551 52.332000732421875,3.296999931335449 54.375,2.7810001373291016 56.75,2.7810001373291016 58.97700119018555,2.7810001373291016 60.987998962402344,3.3010001182556152 62.78099822998047,4.343999862670898 64.56999969482422,5.382999897003174 66.03099822998047,6.843999862670898 67.15599822998047,8.718999862670898 Z M 111.218994140625,21.4060001373291 C 112.15599060058594,20.363000869750977 112.84799194335938,19.222999572753906 113.2969970703125,17.98400115966797 113.74199676513672,16.742000579833984 113.968994140625,15.301000595092773 113.968994140625,13.656001091003418 113.968994140625,9.738000869750977 112.5199966430664,6.508001327514648 109.62499237060547,3.969000816345215 106.72698974609375,1.4260008335113525 103.13299560546875,0.15600085258483887 98.843994140625,0.15600085258483887 96.86299133300781,0.15600085258483887 94.88299560546875,0.46500083804130554 92.90599060058594,1.078000783920288 90.92598724365234,1.6910006999969482 89.218994140625,2.4380006790161133 87.78099060058594,3.3120007514953613 L 86.43798828125,1.0310008525848389 83.93798828125,1.0310008525848389 83.49998474121094,16.2189998626709 86.0309829711914,16.2189998626709 C 86.55097961425781,14.343999862670898 87.15998077392578,12.64799976348877 87.8589859008789,11.140999794006348 88.55498504638672,9.628999710083008 89.47698974609375,8.218999862670898 90.62498474121094,6.905999660491943 91.70698547363281,5.675999641418457 92.97298431396484,4.694999694824219 94.42198181152344,3.9689996242523193 95.86698150634766,3.237999677658081 97.55097961425781,2.874999523162842 99.46897888183594,2.874999523162842 100.90597534179688,2.874999523162842 102.15998077392578,3.061999559402466 103.23397827148438,3.4379994869232178 104.30497741699219,3.811999559402466 105.17597961425781,4.34399938583374 105.84397888183594,5.030999660491943 106.50798034667969,5.718999862670898 107.00398254394531,6.5229997634887695 107.3279800415039,7.452999591827393 107.64797973632812,8.378999710083008 107.81198120117188,9.444999694824219 107.81198120117188,10.656000137329102 107.81198120117188,12.426000595092773 107.31198120117188,14.07800006866455 106.31198120117188,15.609000205993652 105.31198120117188,17.141000747680664 103.81998443603516,18.301000595092773 101.84397888183594,19.0939998626709 100.48797607421875,19.632999420166016 98.93798065185547,20.233999252319336 97.18798065185547,20.891000747680664 95.43798065185547,21.547000885009766 93.92597961425781,22.16400146484375 92.6559829711914,22.75 90.1559829711914,23.875 88.21098327636719,25.347999572753906 86.8279800415039,27.172000885009766 85.44097900390625,28.992000579833984 84.7499771118164,31.375 84.7499771118164,34.3120002746582 84.7499771118164,36.0 85.09397888183594,37.56999969482422 85.78097534179688,39.03099822998047 86.46897888183594,40.487998962402344 87.44497680664062,41.788997650146484 88.71897888183594,42.9379997253418 89.92597961425781,44.02000045776367 91.35198211669922,44.867000579833984 92.9999771118164,45.48400115966797 94.64497375488281,46.097999572753906 96.36297607421875,46.406002044677734 98.15597534179688,46.406002044677734 100.19497680664062,46.406002044677734 102.0229721069336,46.09400177001953 103.64097595214844,45.46900177001953 105.25397491455078,44.84400177001953 106.72697448730469,44.11300277709961 108.06197357177734,43.281002044677734 L 109.3439712524414,45.406002044677734 111.8439712524414,45.406002044677734 112.0939712524414,30.68800163269043 109.56197357177734,30.68800163269043 C 109.10197448730469,32.375 108.58597564697266,33.98800277709961 108.01597595214844,35.531002044677734 107.44097900390625,37.070003509521484 106.69497680664062,38.46900177001953 105.78097534179688,39.71900177001953 104.88297271728516,40.926002502441406 103.78897857666016,41.8910026550293 102.4999771118164,42.60900115966797 101.20697784423828,43.3280029296875 99.6249771118164,43.6879997253418 97.7499771118164,43.6879997253418 95.76997375488281,43.6879997253418 94.08197784423828,43.05099868774414 92.68798065185547,41.78099822998047 91.28897857666016,40.507999420166016 90.59397888183594,38.95699691772461 90.59397888183594,37.125 90.59397888183594,35.207000732421875 91.03897857666016,33.617000579833984 91.93798065185547,32.35900115966797 92.83197784423828,31.09800148010254 94.13298034667969,30.062000274658203 95.84397888183594,29.250001907348633 97.36297607421875,28.520002365112305 98.85897827148438,27.891002655029297 100.3279800415039,27.35900115966797 101.79698181152344,26.828001022338867 103.21897888183594,26.25800132751465 104.59397888183594,25.656002044677734 105.84397888183594,25.11300277709961 107.04698181152344,24.500001907348633 108.2029800415039,23.812002182006836 109.35897827148438,23.125001907348633 110.36298370361328,22.32000160217285 111.21897888183594,21.406002044677734 Z " id="path14" style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#a3d869;stroke-width:12.0;stroke -linejoin:round;"/></g>
    <g id="g12"><path d="M 27.7189998626709,21.4060001373291 C 28.6560001373291,20.363000869750977 29.347999572753906,19.222999572753906 29.797000885009766,17.98400115966797 30.242000579833984,16.742000579833984 30.46900177001953,15.301000595092773 30.46900177001953,13.656001091003418 30.46900177001953,9.738000869750977 29.020002365112305,6.508001327514648 26.125001907348633,3.969000816345215 23.227001190185547,1.4260008335113525 19.63300132751465,0.15600085258483887 15.344001770019531,0.15600085258483887 13.363001823425293,0.15600085258483887 11.383001327514648,0.46500083804130554 9.406002044677734,1.078000783920288 7.426002025604248,1.6910006999969482 5.719001770019531,2.4380006790161133 4.281002044677734,3.3120007514953613 L 2.938002109527588,1.0310008525848389 0.4380021095275879,1.0310008525848389 L 0.0,16.2189998626709 L 2.5309998989105225,16.2189998626709 C 3.0510001182556152,14.343999862670898 3.6600000858306885,12.64799976348877 4.359000205993652,11.140999794006348 5.054999828338623,9.628999710083008 5.9770002365112305,8.218999862670898 7.125,6.906000137329102 8.206999778747559,5.676000118255615 9.472999572753906,4.695000171661377 10.92199993133545,3.9690001010894775 C 12.366999626159668,3.2380001544952393 14.050999641418457,2.875 15.968999862670898,2.875 17.4060001373291,2.875 18.65999984741211,3.062000036239624 19.733999252319336,3.437999963760376 20.80499839782715,3.812000036239624 21.67599868774414,4.343999862670898 22.3439998626709,5.031000137329102 23.007999420166016,5.719000339508057 23.503999710083008,6.523000240325928 23.827999114990234,7.453000068664551 24.147998809814453,8.378999710083008 24.31199836730957,9.444999694824219 24.31199836730957,10.656000137329102 24.31199836730957,12.426000595092773 23.81199836730957,14.07800006866455 22.81199836730957,15.609000205993652 21.81199836730957,17.141000747680664 20.319997787475586,18.301000595092773 18.343997955322266,19.0939998626709 16.987998962402344,19.632999420166016 15.437997817993164,20.233999252319336 13.687997817993164,20.891000747680664 11.937997817993164,21.547000885009766 10.425997734069824,22.16400146484375 9.155998229980469,22.75 6.655998229980469,23.875 4.710998058319092,25.347999572753906 3.327998161315918,27.172000885009766 1.9409981966018677,28.992000579833984 1.2499980926513672,31.375 1.2499980926513672,34.3120002746582 1.2499980926513672,36.0 1.5939980745315552,37.56999969482422 2.2809982299804688,39.03099822998047 2.9689981937408447,40.487998962402344 3.944998264312744,41.788997650146484 5.218997955322266,42.9379997253418 6.425997734069824,44.02000045776367 7.8519978523254395,44.867000579833984 9.499998092651367,45.48400115966797 11.144998550415039,46.097999572753906 12.862998008728027,46.406002044677734 14.655998229980469,46.406002044677734 16.694997787475586,46.406002044677734 18.522998809814453,46.09400177001953 20.14099884033203,45.46900177001953 21.753999710083008,44.84400177001953 23.226999282836914,44.11300277709961 24.56199836730957,43.281002044677734 L 25.843997955322266,45.406002044677734 28.343997955322266,45.406002044677734 28.593997955322266,30.68800163269043 26.06199836730957,30.68800163269043 C 25.601999282836914,32.375 25.08599853515625,33.98800277709961 24.51599884033203,35.531002044677734 23.940998077392578,37.070003509521484 23.19499969482422,38.46900177001953 22.28099822998047,39.71900177001953 21.382997512817383,40.926002502441406 20.288997650146484,41.8910026550293 18.999998092651367,42.60900115966797 17.706998825073242,43.3280029296875 16.124998092651367,43.6879997253418 14.249998092651367,43.6879997253418 12.269998550415039,43.6879997253418 10.581997871398926,43.05099868774414 9.187997817993164,41.78099822998047 7.788997650146484,40.507999420166016 7.093997955322266,38.95699691772461 7.093997955322266,37.125 7.093997955322266,35.207000732421875 7.538998126983643,33.617000579833984 8.437997817993164,32.35900115966797 9.331997871398926,31.09800148010254 10.632997512817383,30.062000274658203 12.343997955322266,29.250001907348633 13.862998008728027,28.520002365112305 15.35899829864502,27.891002655029297 16.827999114990234,27.35900115966797 18.296998977661133,26.828001022338867 19.7189998626709,26.25800132751465 21.093997955322266,25.656002044677734 22.343997955322266,25.11300277709961 23.5469970703125,24.500001907348633 24.7029972076416,23.812002182006836 25.858997344970703,23.125001907348633 26.86299705505371,22.32000160217285 27.718997955322266,21.406002044677734 Z M 71.81199645996094,40.156002044677734 C 73.7699966430664,38.11300277709961 75.30099487304688,35.64800262451172 76.40599822998047,32.7660026550293 77.50799560546875,29.87900161743164 78.06199645996094,26.688003540039062 78.06199645996094,23.188003540039062 78.06199645996094,19.664003372192383 77.5,16.469003677368164 76.375,13.594003677368164 C 75.25,10.718999862670898 73.68800354003906,8.270000457763672 71.68800354003906,6.25 69.75,4.25 67.5,2.7070000171661377 64.93800354003906,1.625 62.375,0.5429999828338623 59.64500045776367,0.0 56.75,0.0 53.66400146484375,0.0 50.816001892089844,0.578000009059906 48.202999114990234,1.7339999675750732 45.58599853515625,2.8910000324249268 43.34400177001953,4.5 41.46900177001953,6.561999797821045 C 39.59400177001953,8.581999778747559 38.117000579833984,11.03499984741211 37.047000885009766,13.92199993133545 35.972999572753906,16.80500030517578 35.4379997253418,19.895000457763672 35.4379997253418,23.187999725341797 35.4379997253418,26.788999557495117 36.0,30.003999710083008 37.125,32.827999114990234 38.25,35.64799880981445 39.80099868774414,38.093997955322266 41.78099822998047,40.15599822998047 43.737998962402344,42.19499969482422 46.01599884033203,43.757999420166016 48.6089973449707,44.843997955322266 51.202999114990234,45.92599868774414 53.913997650146484,46.468997955322266 56.749996185302734,46.468997955322266 59.68799591064453,46.468997955322266 62.45699691772461,45.913997650146484 65.06199645996094,44.81199645996094 67.66399383544922,43.70699691772461 69.91399383544922,42.15599822998047 71.81199645996094,40.15599822998047 Z M 67.15599822998047,8.718999862670898 C 68.31999969482422,10.61299991607666 69.1719970703125,12.757999420166016 69.70299530029297,15.156000137329102 70.23399353027344,17.551000595092773 70.49999237060547,20.227001190185547 70.49999237060547,23.187999725341797 70.49999237060547,26.226999282836914 70.20299530029297,29.020000457763672 69.60899353027344,31.562000274658203 69.0159912109375,34.10200119018555 68.1449966430664,36.27000045776367 66.99999237060547,38.0620002746582 65.85198974609375,39.832000732421875 64.41399383544922,41.21099853515625 62.687992095947266,42.202999114990234 60.956993103027344,43.19099807739258 58.976993560791016,43.6879997253418 56.74999237060547,43.6879997253418 54.24999237060547,43.6879997253418 52.12499237060547,43.112998962402344 50.37499237060547,41.968997955322266 48.62499237060547,40.81999969482422 47.19499206542969,39.288997650146484 46.093994140625,37.375 45.050994873046875,35.53900146484375 44.27299499511719,33.39500045776367 43.765995025634766,30.937999725341797 C 43.25400161743164,28.476999282836914 43.0,25.895000457763672 43.0,23.187999725341797 C 43.0,20.187999725341797 43.27000045776367,17.476999282836914 43.8120002746582,15.061999320983887 44.35200119018555,12.644999504089355 45.207000732421875,10.5 46.375,8.625 47.5,6.789000034332275 48.91400146484375,5.359000205993652 50.625,4.328000068664551 52.332000732421875,3.296999931335449 54.375,2.7810001373291016 56.75,2.7810001373291016 58.97700119018555,2.7810001373291016 60.987998962402344,3.3010001182556152 62.78099822998047,4.343999862670898 64.56999969482422,5.382999897003174 66.03099822998047,6.843999862670898 67.15599822998047,8.718999862670898 Z M 111.218994140625,21.4060001373291 C 112.15599060058594,20.363000869750977 112.84799194335938,19.222999572753906 113.2969970703125,17.98400115966797 113.74199676513672,16.742000579833984 113.968994140625,15.301000595092773 113.968994140625,13.656001091003418 113.968994140625,9.738000869750977 112.5199966430664,6.508001327514648 109.62499237060547,3.969000816345215 106.72698974609375,1.4260008335113525 103.13299560546875,0.15600085258483887 98.843994140625,0.15600085258483887 96.86299133300781,0.15600085258483887 94.88299560546875,0.46500083804130554 92.90599060058594,1.078000783920288 90.92598724365234,1.6910006999969482 89.218994140625,2.4380006790161133 87.78099060058594,3.3120007514953613 L 86.43798828125,1.0310008525848389 83.93798828125,1.0310008525848389 83.49998474121094,16.2189998626709 86.0309829711914,16.2189998626709 C 86.55097961425781,14.343999862670898 87.15998077392578,12.64799976348877 87.8589859008789,11.140999794006348 88.55498504638672,9.628999710083008 89.47698974609375,8.218999862670898 90.62498474121094,6.905999660491943 91.70698547363281,5.675999641418457 92.97298431396484,4.694999694824219 94.42198181152344,3.9689996242523193 95.86698150634766,3.237999677658081 97.55097961425781,2.874999523162842 99.46897888183594,2.874999523162842 100.90597534179688,2.874999523162842 102.15998077392578,3.061999559402466 103.23397827148438,3.4379994869232178 104.30497741699219,3.811999559402466 105.17597961425781,4.34399938583374 105.84397888183594,5.030999660491943 106.50798034667969,5.718999862670898 107.00398254394531,6.5229997634887695 107.3279800415039,7.452999591827393 107.64797973632812,8.378999710083008 107.81198120117188,9.444999694824219 107.81198120117188,10.656000137329102 107.81198120117188,12.426000595092773 107.31198120117188,14.07800006866455 106.31198120117188,15.609000205993652 105.31198120117188,17.141000747680664 103.81998443603516,18.301000595092773 101.84397888183594,19.0939998626709 100.48797607421875,19.632999420166016 98.93798065185547,20.233999252319336 97.18798065185547,20.891000747680664 95.43798065185547,21.547000885009766 93.92597961425781,22.16400146484375 92.6559829711914,22.75 90.1559829711914,23.875 88.21098327636719,25.347999572753906 86.8279800415039,27.172000885009766 85.44097900390625,28.992000579833984 84.7499771118164,31.375 84.7499771118164,34.3120002746582 84.7499771118164,36.0 85.09397888183594,37.56999969482422 85.78097534179688,39.03099822998047 86.46897888183594,40.487998962402344 87.44497680664062,41.788997650146484 88.71897888183594,42.9379997253418 89.92597961425781,44.02000045776367 91.35198211669922,44.867000579833984 92.9999771118164,45.48400115966797 94.64497375488281,46.097999572753906 96.36297607421875,46.406002044677734 98.15597534179688,46.406002044677734 100.19497680664062,46.406002044677734 102.0229721069336,46.09400177001953 103.64097595214844,45.46900177001953 105.25397491455078,44.84400177001953 106.72697448730469,44.11300277709961 108.06197357177734,43.281002044677734 L 109.3439712524414,45.406002044677734 111.8439712524414,45.406002044677734 112.0939712524414,30.68800163269043 109.56197357177734,30.68800163269043 C 109.10197448730469,32.375 108.58597564697266,33.98800277709961 108.01597595214844,35.531002044677734 107.44097900390625,37.070003509521484 106.69497680664062,38.46900177001953 105.78097534179688,39.71900177001953 104.88297271728516,40.926002502441406 103.78897857666016,41.8910026550293 102.4999771118164,42.60900115966797 101.20697784423828,43.3280029296875 99.6249771118164,43.6879997253418 97.7499771118164,43.6879997253418 95.76997375488281,43.6879997253418 94.08197784423828,43.05099868774414 92.68798065185547,41.78099822998047 91.28897857666016,40.507999420166016 90.59397888183594,38.95699691772461 90.59397888183594,37.125 90.59397888183594,35.207000732421875 91.03897857666016,33.617000579833984 91.93798065185547,32.35900115966797 92.83197784423828,31.09800148010254 94.13298034667969,30.062000274658203 95.84397888183594,29.250001907348633 97.36297607421875,28.520002365112305 98.85897827148438,27.891002655029297 100.3279800415039,27.35900115966797 101.79698181152344,26.828001022338867 103.21897888183594,26.25800132751465 104.59397888183594,25.656002044677734 105.84397888183594,25.11300277709961 107.04698181152344,24.500001907348633 108.2029800415039,23.812002182006836 109.35897827148438,23.125001907348633 110.36298370361328,22.32000160217285 111.21897888183594,21.406002044677734 Z " id="path14" style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"/>
    </g></g></g><g transform=" translate(42.75, 573.75) scale(0.611950549450549, 0.576326002587322) " ><g transform='translate() scale()'>
    <g>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M481.743,79.644c-4.054,0-4.054,0.811,0,0.811
            c43.407,4.778,77.463,22.885,111.065,51.074c7.296,5.674,7.15,5.788,0.811-2.432c-9.864-12.7 91-25.671-26.063-43.609-35.898
            c-11.729-5.875-23.949-10.515-36.968-13.812C502.268,77.329,491.606,77.178,481.743,79.644L4 81.743,79.644z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M376.026,119.944c-18.38,16.417-31.529,46.217-44.262,96.707
            c-5.289,20.975-4.864,21.079-8.107,24.321c-7.296,7.296-13.781,18.646-20.267,34.049c-2.432, 4.864-4.054,8.917-4.054,9.728
            c0,0.811,1.622,0,3.243-3.243c1.055-1.875,2.282-3.887,3.623-5.965c0.705-1.695,1.686-3.848, 2.857-6.189
            c6.485-15.403,12.971-26.753,20.267-34.049c3.243-3.243,2.817-3.347,8.107-24.322C348.818,16 5.837,360.535,137.231,376.026,119.944
            L376.026,119.944z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M403.105,105.586c-1.714,0.449-3.387,0.952-5.025,1.51
            c-2.554,1.766-4.959,3.711-7.229,5.813c-0.927,1.001-1.829,2.03-2.707,3.083c4.249-3.498,8.9 42-6.47,14.151-8.785
            c2.432-0.811,4.864-1.621,5.675-2.432C409.591,103.964,407.159,104.775,403.105,105.586L403. 105,105.586z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M553.895,144.499c-3.242,28.375,1.622,63.234,9.729,74.584
            c1.622,2.432,4.865,6.486,7.296,10.54c3.243,4.053,6.486,8.107,7.297,10.539c4.864,9.728-0.8 63-8.084-6.485-20.268
            c-1.282-2.777-2.217-4.931-3-7.318c-6.525-10.2-10.793-35.752-10.113-60.094c-0.932-4.836-1. 924-9.244-3.101-13.657
            C555.517,136.392,554.706,138.014,553.895,144.499L553.895,144.499z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M620.372,158.281c8.918,9.729,12.161,18.646,12.161,35.67
            c0,11.35-0.872,14.586-4.054,44.588c-2.492,23.503-5.676,55.127-4.864,59.181c0.408,2.044,3. 28-9.109,6.448-23.161
            c1-12.086,2.657-28.219,4.085-41.689c3.182-30.002,4.054-33.239,4.054-44.589c0-4.216-0.2-7. 935-0.635-11.292
            c-3.179-8.896-8.385-15.259-15.574-19.519C617.928,155.061,617.939,155.038,620.372,158.281L 620.372,158.281z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M572.396,168.561c1.595,2.688,5.686,8.57,8.252,12.42
            c1.622,2.432,5.676,6.486,8.918,9.729c7.297,6.485,8.107,8.107,6.486,12.971c-3.243,14.592-3 .889,48.611,0,69.72
            c1.786,9.698,1.621,9.728,1.621,4.054c0.555-5.821,1.392-14.015,2.321-22.792c-1.828-20.152- 0.906-44.803,1.727-56.65
            c1.454-4.362,0.95-6.118-4.432-11.111c-0.641-0.375-1.322-0.725-2.049-1.055c-1.621-1.622-9. 729-7.296-17.024-14.593
            c-3.799-3.256-5.42-4.333-6.075-4.446L572.396,168.561L572.396,168.561z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M400.664,192.791c0.646,1.53,1.439,3.52,2.441,6.025
            c6.485,17.835,10.628,29.983,11.35,34.86c2.52,17.011,9.729,42.967,14.593,52.695c3.962,11.8 87-0.317,25.953,6.485,37.292
            c0.811,0.811,0.811,0.811,0.811,0c-2.432-5.675-2.432-14.592-0.811-27.564c0.811-6.485,0.811 -6.485-0.811-10.539
            c-1.077-3.59-2.155-7.5-3.373-13.063c-4.361-12.199-9.243-31.11-11.225-44.49c-0.723-4.877-4 .864-17.025-11.351-34.86l-0.942-2.351
            c-0.809-1.561-1.613-3.092-2.389-4.548c-1.288,4.867-2.291,5.073-1.618-0.313c0-0.875,0.017- 1.746,0.046-2.613l-0.154-0.283
            c-0.467,0.267-0.843,1.575-1.428,3.622C401.71,189.558,401.132,191.624,400.664,192.791L400. 664,192.791z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M396.62,176.116l-1.622,1.622c0,6.041-0.811,11.833-0.811,17.835
            c-0.811,6.485,0.811,4.864,2.433-3.243c1.111-3.892,1.462-5.115,3.141-1.577c0.027-0.267,0.0 59-0.549,0.097-0.85
            c0-4.235,0.405-8.367,0.643-12.553c-0.777-1.291-1.301-2.045-1.448-2.045C399.052,175.306,39 8.241,175.306,396.62,176.116
            L396.62,176.116z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M260.432,353.789c-10.137-0.649-31.185,0.313-36.489,2.302
            c-0.811,0,1.621,0.811,4.864,0.811c10.539,0,29.996,2.432,34.049,4.864c8.918,4.054,17.025,3 .243,25.942-3.243
            c1.544-1.235,5.443-5.061,10.035-9.725c-1.975,1.932-3.522,3.381-4.365,4.055c-8.917,6.486-1 7.024,7.296-25.942,3.243
            C267.196,355.299,264.214,354.5,260.432,353.789L260.432,353.789z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M364.192,245.836c-14.088,28.961-39.514,63.212-70.438,94.727
            c0.393-0.352,0.794-0.721,1.206-1.109c0.368-0.386,0.744-0.783,1.128-1.193c28.362-28.362,52 .384-59.206,67.725-86.563
            c1.047-3.063,1.984-6.099,2.811-9.105C368.188,236.903,368.246,236.919,364.192,245.836L364. 192,245.836z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M199.745,319.781c4.076,0.543,6.535,0.811,6.363,0.639
            c-0.182-0.182-2.904-0.989-7.098-2.147C199.295,318.755,199.541,319.26,199.745,319.781L199. 745,319.781z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M103.419,310.309c3.56-1.446,6.712-3.842,9.311-6.971
            c5.208-6.27,18.683-6.98,18.793-0.753c0.007,0.393,0.037,0.768,0.087,1.13c0.207-0.081,0.417 -0.157,0.633-0.229
            c3.243-1.621,7.296-0.811,10.539,1.621c1.622,1.621,1.622,1.621-0.811,1.621c-1.645,0.329-3. 055,0.89-4.219,1.625
            c0.362,0.221,0.716,0.463,1.061,0.722c1.156,1.157,1.489,1.487,0.701,1.583l0.115,0.034c5.15 8,0.86,23.766,3.77,39.989,6.194
            c0.916-1.203,2.038-2.213,3.34-2.907c-10.803-2.836-22.858-5.925-30.151-7.751c-3.376-0.534- 6.011-0.955-7.508-1.205
            c-5.675-1.622-8.036-4.058-8.107-8.107c-0.098-5.502-10.627-5.588-16.669-1.209c-0.59,0.578- 1.202,1.123-1.836,1.632
            c-0.098,0.107-0.195,0.218-0.287,0.33c-4.189,5.044-9.822,8.187-16.271,8.513c-1.689,0.085-3 .619,0.163-5.75,0.235
            c1.966,0.335,3.923,1.168,5.675,2.624C102.748,309.617,103.183,310.023,103.419,310.309L103. 419,310.309z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M96.578,311.843c1.899-0.106,3.729-0.458,5.469-1.03
            c-0.403-0.046-0.833-0.086-1.222-0.072C99.234,310.796,97.804,311.195,96.578,311.843L96.578 ,311.843z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M79.907,306.79c-0.581,0.053-1.173,0.106-1.778,0.159
            c-20.312,1.748-49.929,1.889-64.658,2.311c-4.989,0.143-10.099,0.373-13.281,1.433c-3.852,1. 926,51.852,2.316,83.213,1.597
            c0.11-0.075,0.222-0.15,0.337-0.222c0.126-0.079,0.255-0.157,0.385-0.232c0.845-1.468,2.032- 2.764,3.583-3.736
            c1.108-0.695,2.391-1.226,3.762-1.539C87.938,306.651,84.037,306.729,79.907,306.79L79.907,3 06.79z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M133.891,316.321c0.56-0.078,0.492-0.297-0.083-0.905
            C133.819,315.716,133.845,316.018,133.891,316.321L133.891,316.321z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M121.253,313.66c-10.602,4.881-7.934,21.353,2.973,21.353
            c4.864,0,5.675-0.811,2.433-4.054c-0.855-0.998-1.482-2.047-1.896-3.105C120.469,325.019,119 .008,318.676,121.253,313.66
            L121.253,313.66z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M92.076,320.415c1.664,0.16,3.191,0.633,0.338-1.738
            c-0.13-0.108-0.26-0.215-0.392-0.316C91.949,319.039,91.964,319.728,92.076,320.415L92.076,3 20.415z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M78.071,317.736c-8.548,5.362-6.153,20.519,4.81,20.519
            c4.053,0,4.864-0.811,2.432-3.243c-1.493-1.307-2.382-2.83-2.761-4.389c-3.888-3.029-5.009-8 .987-2.965-13.687
            C79.056,317.169,78.547,317.438,78.071,317.736L78.071,317.736z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M485.576,339.221c-6.34-0.871-13.196-2.495-21.477-4.841
            c-0.416,0.225-1.474,0.444-3.237,0.666c6.325,5.153,14.45,8.834,23.263,11.023c5.448,0.827,1 1.334,1.626,17.479,2.364
            c11.883,0.344,23.721-1.808,33.132-6.513c17.641,0,43.86-0.031,63.033-1.328c10.449-0.707,10 .113-2.791-0.055-3.613
            c-17.756-1.436-33.328,0.07-51.067,0.07c-0.119,0,0.472-0.296,1.588-0.806c-2.749,0.005-5.37 2,0.007-7.83,0.007
            C525.128,343.888,503.462,344.804,485.576,339.221L485.576,339.221z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M584.701,317.988c-0.749,0.115-1.518,0.243-2.3,0.383
            c-6.601,2.759-14.979,6.309-21.219,9.004c2.715-0.038,5.389-0.102,8.034-0.176c6.774-2.863,1 3.222-5.55,16.295-6.779
            C594.43,316.367,594.43,316.367,584.701,317.988L584.701,317.988z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M601.317,355.025c-1.58,0.037-3.157,0.045-4.718,0.028
            c-4.715-0.051-9-0.206-11.532-0.055c15.468,1.646,27.202,3.822,34.682,6.75c8.549-1.441,15.3 27-5.048,18.827-10.547
            C630.164,356.843,616.278,358.389,601.317,355.025L601.317,355.025z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M621.993,317.988c0,0,1.599,1.637,3.243,4.054
            c5.938,8.723,7.675,15.213,6.595,20.018c1.559-0.62,2.981-1.346,4.235-2.188c1.75-2.785,2.28 -6.336,1.104-10.847
            c-2.523-3.936-6.303-7.755-11.545-11.069C623.697,316.737,621.993,317.04,621.993,317.988L62 1.993,317.988z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M190.694,332.876c0.01-0.289,0.009-0.655,0.009-1.106
            c-0.347-2.778-1.884-5.26-4.102-6.997c-0.148,0.045-0.294,0.095-0.439,0.148c-0.404,1.313-0. 34,2.847,0.397,4.507
            C187.937,331.495,189.316,332.974,190.694,332.876L190.694,332.876z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M195.533,346.705c1.922,0.202,3.901,1.09,5.71,2.899
            c2.432,2.432,2.432,1.622,1.621-1.621c-0.526-2.893-2.244-5.188-4.55-6.748c-0.722,0.175-1.4 13,0.439-2.063,0.779
            C195.518,343.458,195.217,345.084,195.533,346.705L195.533,346.705z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M174.235,323.195c-5.767,2.275-8.525,10.516-6.23,15.871
            c2.432,3.243,7.296,6.486,9.729,5.675c0.81,0,0.81,0.001,0,1.621c-4.052,8.106,1.621,18.646, 10.539,18.646
            c4.054,0,4.864-0.811,1.622-3.243c-2.627-1.751-3.854-3.884-4.082-5.987c-3.528-3.683-4.91-9 .595-2.609-14.662
            c-0.498,0.354-0.973,0.75-1.416,1.193c-1.622,0.811-3.243-0.811-4.864-3.243c-0.463-1.042-0. 66-2.035-0.643-2.954
            c-0.993-0.84-1.902-1.777-2.605-2.715C172.383,330.385,172.692,326.458,174.235,323.195L174. 235,323.195z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M224.475,340.69c-2.986,2.278-4.931,4.204-5.61,5.551
            c-1.634,3.237,1.063,1.49,1.921,0.938c6.565-4.219,43.239-11.203,48.556-8.924c5.504,3.146,1 0.247,0.951,12.006-4.363
            c-1.128,0.234-2.363,0.187-3.671-0.174c-2.009,1.271-4.143,1.021-6.771-0.95c-0.263-0.213-0. 53-0.417-0.806-0.608
            c-11.679,0.374-38.162,5.826-43.645,9.35C225.607,342.055,222.968,343.764,224.475,340.69L22 4.475,340.69z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M210.779,334.307c4.118,0.538,8.409,0.991,11.73,1.267
            c3.432,0,5.004,0.534,5.238,1.392c0.336-0.294,0.697-0.599,1.079-0.91c0.795-1.187,2.374-2.7 21,4.622-4.491
            c0.01-0.292-0.109-0.552-0.375-0.778c-8.987-0.24-18.736-0.527-27.244-0.351C207.809,331.296 ,209.549,332.605,210.779,334.307
            L210.779,334.307z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M347.452,333.517c-9.424,0.398-20.962,1.633-22.984,2.307
            c-1.621,0.811-1.621,0.811,1.622,0.811c21.889,4.864,72.968,7.401,106.2,5.675c29.19-1.516,3 1.609-2.378,19.457-4.054
            c-4.356-0.601-8.702-1.154-13.026-1.656l-0.761,0.041C411.173,338.031,372.796,336.651,347.4 52,333.517L347.452,333.517z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M313.93,353.658c4.124,2.062,25.942,1.057,25.942,4.054
            c0,4.864,5.675,7.296,18.646,7.296c6.485,0,7.351-0.224,17.835,2.432c50.32,12.747,114.344,2 4.908,175.921,34.859
            c18.683,3.02,18.791,2.723-12.16-5.675c-10.608-2.879-21.646-5.77-32.801-8.604c-44.87-8.024 -88.702-16.982-125.291-26.25
            c-10.483-2.656-11.349-2.432-17.835-2.432c-6.122,0-10.616-0.543-13.658-1.627h-0.117c-5.675 ,0-4.864,0.811-4.864-4.054
            c0-3.172-22.77-1.654-31.125-0.699C312.082,353.226,313.844,353.63,313.93,353.658L313.93,35 3.658z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M673.902,391.949c13.947,1.684,28.129,3.074,40.51,3.865
            c4.864,0,4.864-0.812,0-0.812c-2.937-0.587-35.241-7.162-56.823-11.644c-20.18-2.94-37.219-6 .185-43.708-8.618
            c-7.203-3.201-32.575-6.533-62.875-8.83C591.72,373.475,633.938,382.349,673.902,391.949L673 .902,391.949z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M548.241,386.579c36.937,6.398,75.938,12.403,113.477,17.342
            c26.718,3.516,27.563,3.243,12.16,0c-16.934-4.156-34.339-8.188-51.915-12.051c-63.035-9.39- 126.216-20.956-173.644-31.683
            c-7.519-1.066-14.84-2.057-21.926-2.962C461.852,364.685,507.987,375.694,548.241,386.579L54 8.241,386.579z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M390.881,406.607c2.971-0.506,7.14-0.672,8.981,0.557
            c1.622,0.811,0.812,0-1.621-2.433c-1.124-1.405-2.636-2.422-4.337-3.081c-0.364,0.205-0.716, 0.421-1.054,0.649
            C391.955,403.633,391.298,405.091,390.881,406.607L390.881,406.607z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M379.973,403.146c-13.702,8.241-10.387,33.203,6.108,33.203
            c4.864-0.811,5.675-0.811,3.243-2.432c-3.27-1.635-5.594-4.079-6.999-6.863C376.408,421.489, 375.363,410.693,379.973,403.146
            L379.973,403.146z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M302.334,418.603c2.901-0.833,6.277-0.725,9.975,0.722
            c3.243,1.621,3.242,1.62,0-1.621c-1.752-1.752-4.109-3.051-6.681-3.828c-0.461,0.235-0.904,0 .496-1.332,0.781
            C303.475,415.865,302.813,417.195,302.334,418.603L302.334,418.603z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M290.859,415.646c-13.796,8.575-10.898,33.005,6.856,34.484
            c4.864,0,6.485,0,3.243-1.621c-4.126-2.252-6.73-5.416-8.07-8.857C286.996,433.576,286.198,4 23.09,290.859,415.646L290.859,415.646
            z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M540.062,421.549c5.865-1.187,12.327,1.71,14.645,7.504
            c0.811,3.242,1.621,2.432,1.621-0.811c-0.438-5.259-3.484-9.807-7.597-12.62c-2.481-0.065-4. 999,0.548-7.204,1.929
            C540.752,418.81,540.264,420.161,540.062,421.549L540.062,421.549z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M529.912,415.563c-10.895,6.948-11.986,23.538-0.338,29.704
            c5.675,2.433,13.781,1.621,8.917-0.811c-3.922-2.14-6.434-5.065-7.532-8.153C525.855,430.706 ,525.761,422.059,529.912,415.563
            L529.912,415.563z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M26.25,467.634c17.821,10.086,63.791,34.805,95.544,51.406
            c63.944,33.432,161.498,84.296,215.003,110.238c31.879,14.168,35.64,16.654,46.223,54.63c9.2 5,33.193,36.462,40.912,66.301,37.566
            c15.074-1.69,29.054-6.337,36.788-13.469c1.262-1.164,2.181-2.311,2.673-3.248c-8.059,5.766- 20.499,9.557-33.791,11.048
            c-29.84,3.346-57.052-4.374-66.302-37.566c-10.583-37.976-14.344-40.462-46.222-54.63c-48.25 -23.395-132.313-67.054-195.254-99.921
            c-39.516-19.333-79.145-38.534-118.971-57.759C13.727,458.923,19.467,463.795,26.25,467.634L 26.25,467.634z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M432.413,486.677c2.316-0.977,4.982-1.575,7.984-1.686
            c5.675-0.812,5.675-0.812,1.621-2.433c-1.455-0.582-3.121-0.957-4.808-1.159c-1.004,0.482-1. 937,1.038-2.796,1.658
            C433.603,484.188,432.936,485.403,432.413,486.677L432.413,486.677z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M421.374,485.024c-15.732,10.552-11.266,38.266,10.105,39.69
            c6.486,0,7.297-0.811,2.433-2.432c-4.322-2.161-7.482-5.164-9.546-8.534C416.689,506.617,415 .452,493.872,421.374,485.024
            L421.374,485.024z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M500.428,640.012c3.672-2.065,8.303-4.04,13.743-5.853
            c8.107-3.243,7.395-2.309,21.889-13.782c43.875-34.735,92.156-74.895,138.629-114.309c10.102 -8.566,13.617-11.945,13.359-12.306
            c-1.967,1.74-4.494,3.927-7.689,6.637c-46.473,39.414-94.755,79.573-138.63,114.309c-14.494, 11.474-13.781,10.539-21.889,13.781
            c-7.838,2.612-13.992,5.562-18.028,8.63c-0.271,0.394-0.505,0.789-0.702,1.184C500.83,638.86 ,500.598,639.417,500.428,640.012
            L500.428,640.012z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M490.739,635.706c-4.247,3.31-7.086,6.873-8.186,10.613
            c-1.665,5.661-0.725,9.692,4.054,21.078c6.807,16.222,7.15,23.677,6.148,27.463c1.423-0.816, 2.571-1.351,3.473-1.649
            c0.284-0.475,0.857-1.032,1.394-1.994c0.604-4.921,0.09-12.271-2.84-23.138c-0.718-1.954-1.5 45-4.062-2.506-6.351
            c-4.778-11.386-5.719-15.417-4.054-21.079C488.719,638.964,489.567,637.313,490.739,635.706L 490.739,635.706z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M16.404,542.55c0,0.811,34.011,23.572,65.666,43.778
            c82.652,52.755,183.031,113.021,286.986,171.057c28.189,15.737,29.354,15.96,13.781,5.675
            c-28.545-18.854-58.183-37.949-88.063-56.803c-68.486-39.637-133.652-79.135-191.1-115.475
            c-23.177-13.36-45.158-25.759-65.383-36.883C19.866,543.765,16.404,542.55,16.404,542.55L16. 404,542.55z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M665.805,643.888c-44.906,44.739-86.64,90.504-112.721,124.036
            c-4.977,6.398-4.901,6.442,3.243-0.811c13.973-12.445,29.314-27.088,45.377-43.24c-14.005,13 .918-27.388,26.599-39.708,37.57
            c-8.145,7.254-8.219,7.21-3.242,0.811C583.733,730.139,623.071,686.799,665.805,643.888L665. 805,643.888z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M392.727,28.636c21.493-16.228,40.627-14.334,57.399,7.229
            c1.621,2.432,1.553,0.038-1.621-5.675c-4.649-8.369-11.217-14.371-18.717-17.654c-10.123-1.5 35-20.908,2.266-32.362,11.174
            c-0.706,0.593-1.394,1.192-2.06,1.801C394.435,26.535,393.557,27.577,392.727,28.636L392.727 ,28.636z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#fee000" d="M383.195,24.495c-1.584,1.358-3.066,2.73-4.41,4.074
            c-17.835,21.889-17.039,46.222,1.621,69.721c3.228,4.063,3.242,4.052,0-2.432c-4.984-9.969-7 .45-19.579-7.453-28.599
            C369.37,52.616,372.723,38.104,383.195,24.495L383.195,24.495z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M491.381,70.006c-4.054,0-4.054,0.811,0,0.811
            c43.407,4.778,77.463,22.885,111.065,51.074c7.296,5.674,7.15,5.788,0.811-2.432C581.36,91.0 66,530.195,60.303,491.381,70.006
            L491.381,70.006z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M412.743,95.948c-34.049,8.918-53.119,38.806-71.34,111.065
            c-5.29,20.975-4.864,21.079-8.107,24.321c-7.296,7.296-13.781,18.646-20.267,34.049c-2.432,4 .864-4.054,8.917-4.054,9.728
            c0,0.811,1.622,0,3.243-3.243c7.296-12.971,22.734-32.38,28.374-36.481c3.277-2.384,6.705-11 .289,12.972-34.049
            c9.793-35.567,20.576-86.972,58.369-103.769c2.432-0.811,4.864-1.622,5.675-2.432C419.229,94 .327,416.797,95.137,412.743,95.948
            L412.743,95.948z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M563.533,134.861c-3.243,28.374,1.621,63.234,9.729,74.584
            c1.621,2.432,4.864,6.486,7.295,10.539c3.243,4.054,6.486,8.107,7.297,10.54c4.864,9.728-0.8 63-8.084-6.485-20.268
            c-4.104-8.894-4.638-11.381-8.106-35.67c-3.016-21.111-4.864-33.238-8.107-45.399C565.154,12 6.754,564.344,128.375,563.533,134.861
            L563.533,134.861z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M630.01,148.644c8.918,9.729,12.16,18.646,12.16,35.67
            c0,11.35-0.871,14.586-4.053,44.588c-2.492,23.503-5.676,55.127-4.864,59.181c0.811,4.054,11 .31-43.786,14.593-63.234
            c7.254-42.974,1.607-66.455-16.215-77.016C627.565,145.423,627.578,145.4,630.01,148.644L630 .01,148.644z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M581.368,157.561c0,0.811,5.675,8.917,8.917,13.782
            c1.622,2.432,5.676,6.485,8.918,9.729c7.297,6.485,8.107,8.107,6.486,12.971c-3.243,14.592-3 .889,48.611,0,69.72
            c1.786,9.698,1.621,9.728,1.621,4.054c1.621-17.025,5.676-54.318,7.296-67.289c1.621-12.97-0 .811-20.267-9.728-24.32
            c-1.622-1.622-9.729-7.296-17.025-14.593C582.179,156.75,581.368,156.75,581.368,157.561L581 .368,157.561z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M406.258,166.479l-1.621,1.621c0,6.042-0.812,11.833-0.812,17.836
            c-0.811,6.485,0.812,4.864,2.433-3.243c1.621-5.675,1.621-5.675,6.485,6.486c6.485,17.835,10 .628,29.982,11.35,34.86
            c2.52,17.011,9.729,42.967,14.593,52.695c3.962,11.888-0.317,25.954,6.485,37.292c0.811,0.81 1,0.811,0.811,0.811,0
            c-2.432-5.675-2.432-14.592-0.811-27.563c0.811-6.485,0.811-6.485-0.811-10.539c-2.433-8.106 -4.864-17.835-8.917-44.588
            c-3.243-16.214-4.152-20.226-9.729-33.239c-4.15-9.686-16.215-32.428-17.025-32.428
            C408.689,165.667,407.879,165.667,406.258,166.479L406.258,166.479z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M373.83,236.198c-14.592,29.996-41.345,65.667-73.773,98.094
            c-12.16,12.971-16.184,13.696-25.131,10.539c-4.835-1.706-34.86-0.811-41.346,1.622c-0.811,0 ,1.622,0.811,4.864,0.811
            c10.539,0,29.996,2.432,34.049,4.864c8.917,4.054,17.025,3.243,25.942-3.243c4.054-3.243,24. 321-24.32,30.807-31.617
            c23.51-28.375,39.667-57.576,47.019-84.313C377.826,227.266,377.884,227.281,373.83,236.198L 373.83,236.198z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M119.272,286.461c-8.808,7.974-15.934,9.508-31.505,10.849
            c-20.312,1.748-49.928,1.889-64.658,2.311c-4.989,0.143-10.099,0.373-13.281,1.433c-4.481,2. 241,71.642,2.405,96.268,1.158
            c6.45-0.326,12.083-3.468,16.271-8.512c5.208-6.271,18.683-6.98,18.793-0.753c0.071,4.05,2.4 32,6.486,8.107,8.107
            c9.728,1.622,67.288,10.539,66.477,9.728s-51.879-13.946-59.162-15.626c-3.256-0.751-6.504-2 .208-6.504-4.641
            C149.37,276.583,127.073,279.399,119.272,286.461L119.272,286.461z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M132.243,303.486c-12.161,4.053-9.729,21.889,1.622,21.889
            c4.864,0,5.675-0.811,2.432-4.054c-4.864-5.675-2.432-12.971,5.675-14.593c2.432,0,2.432,0,0 .811-1.621
            C139.54,302.676,135.486,301.865,132.243,303.486L132.243,303.486z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M87.709,308.099c-8.548,5.362-6.153,20.519,4.81,20.519
            c4.054,0,4.864-0.811,2.432-3.243c-6.128-5.362-2.119-14.357,5.873-14.634c1.857-0.064,4.596 ,1.097,1.229-1.701
            C97.502,305.26,91.561,305.683,87.709,308.099L87.709,308.099z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M594.339,308.35c-10.539,1.622-24.321,5.676-41.346,11.35
            c-38.912,12.97-49.452,13.782-82.69,4.053c-2.432-0.811-2.432-0.811-0.811,0.811c18.269,15.8 33,53.08,18.617,74.881,7.717
            c17.641,0,43.86-0.031,63.033-1.328c10.449-0.707,10.113-2.791-0.055-3.613c-17.756-1.436-33 .328,0.07-51.066,0.07
            c-0.812,0,30.758-13.387,38.865-16.629C604.067,306.729,604.067,306.729,594.339,308.35L594. 339,308.35z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M631.631,308.35c0,0,1.6,1.637,3.243,4.054
            c19.542,28.711-6.39,33.256-28.636,33.012c-12.298-0.135-21.675-0.958-4.647,4.717c21.068,5. 822,40.754,1.965,47.106-9.367
            c4.783-8.532,2.004-22.69-13.434-32.447C633.336,307.1,631.631,307.402,631.631,308.35L631.6 31,308.35z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M184.938,313.214c-6.485,1.622-9.729,10.539-7.296,16.214
            c2.432,3.242,7.296,6.485,9.729,5.674c0.811,0,0.811,0.001,0,1.622c-4.052,8.106,1.621,18.64 6,10.539,18.646
            c4.053,0,4.864-0.811,1.621-3.243c-10.937-7.291,2.337-21.173,11.35-12.161c2.432,2.432,2.43 2,1.622,1.621-1.621
            c-1.621-8.917-14.592-12.161-21.078-5.675c-1.622,0.811-3.243-0.811-4.864-3.242c-3.243-7.29 6,6.486-12.16,12.16-6.486
            c1.622,1.622,1.622,1.622,1.622-0.811C199.531,315.646,192.234,310.782,184.938,313.214L184. 938,313.214z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M206.773,321.2c-2.432,1.621,15.646,3.926,25.374,4.737
            c6.485,0,6.327,1.911,3.055,4.302c-3.605,2.635-5.94,4.859-6.7,6.365c-1.634,3.237,1.063,1.4 9,1.921,0.938
            c6.565-4.22,43.239-11.203,48.556-8.924c5.675,3.243,10.54,0.811,12.161-4.864c0.811-3.243,0 .811-3.243-2.432-0.811
            c-2.432,2.432-4.922,2.62-8.164,0.188c-4.986-4.053-12.353-4.21-22.081-1.78c-2.025,0.505-6. 09,0.026-7.009,0.009
            C237.43,321.105,219.252,320.214,206.773,321.2L206.773,321.2z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M362.481,323.753c-9.729,0-25.942,1.622-28.375,2.432
            c-1.622,0.811-1.622,0.811,1.621,0.811c21.889,4.864,72.968,7.4,106.2,5.674c29.19-1.516,31. 609-2.377,19.457-4.053
            C426.518,323.809,392.477,322.132,362.481,323.753L362.481,323.753z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M323.567,344.021c4.124,2.062,25.942,1.057,25.942,4.054
            c0,4.864,5.675,7.296,18.646,7.296c6.485,0,7.351-0.224,17.835,2.432c50.32,12.747,114.344,2 4.908,175.921,34.859
            c18.683,3.02,18.791,2.722-12.16-5.675c-73.634-19.978-167.814-40.535-179.974-38.913c-2.433 ,0-6.485,0-9.729,0
            c-5.675,0-4.864,0.811-4.864-4.054c0-3.173-22.77-1.654-31.125-0.699C321.719,343.588,323.48 1,343.992,323.567,344.021
            L323.567,344.021z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M459.764,342.399c1.621,0.811,20.238,7.414,32.428,10.54
            c19.427,4.98,38.113,7.164,61.613,8.917c30.815,2.299,56.749,5.674,64.045,8.917c12.971,4.86 3,68.099,12.971,106.201,15.403
            c4.863,0,4.863-0.812,0-0.812c-4.054-0.811-64.034-13.021-74.584-15.403c-14.581-3.292-22.7- 5.674-27.564-7.295
            c-12.16-5.675-38.923-8.726-77.016-10.54c-30.006-1.428-63.215-5.762-81.069-9.729
            C459.783,341.503,458.953,341.588,459.764,342.399L459.764,342.399z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M412.743,346.453c55.938,15.403,162.104,35.132,258.612,47.831
            c26.718,3.516,27.563,3.243,12.16,0c-89.177-21.889-191.349-40.32-263.476-48.642C407.853,34 4.236,406.258,344.831,412.743,346.453
            L412.743,346.453z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M393.287,391.852c-17.835,5.675-15.403,34.859,2.432,34.859
            c4.864-0.811,5.675-0.811,3.243-2.432c-11.35-5.676-11.35-21.078-0.811-26.753c2.432-0.811,8 .917-1.622,11.349,0
            c1.622,0.811,0.812,0-1.621-2.433C404.637,391.04,398.151,390.229,393.287,391.852L393.287,3 91.852z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M304.921,404.012c-18.646,5.675-17.024,34.86,2.432,36.481
            c4.864,0,6.485,0,3.243-1.621c-17.835-9.729-7.296-36.481,11.35-29.186c3.243,1.621,3.242,1. 62,0-1.621
            C317.893,404.013,310.596,402.391,304.921,404.012L304.921,404.012z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M546.508,403.201c-17.024,3.243-21.078,25.131-7.296,32.428
            c5.675,2.432,13.781,1.621,8.917-0.811c-8.917-4.864-10.537-13.783-4.863-19.457c6.484-6.484 ,17.835-4.054,21.078,4.054
            c0.811,3.242,1.621,2.432,1.621-0.812C565.154,408.876,555.426,401.58,546.508,403.201L546.5 08,403.201z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M35.889,457.996c17.821,10.086,63.791,34.805,95.544,51.406
            c63.944,33.431,161.498,84.296,215.003,110.238c31.878,14.168,35.639,16.654,46.222,54.63c9. 25,33.193,36.462,40.912,66.301,37.566
            c15.074-1.69,29.055-6.337,36.788-13.47c4.455-4.108,4.656-7.973-3.227-3.37c-10.884,6.354-2 7.28,8.812-37.866,8.573
            c-43.398-0.978-44.189-17.639-48.15-35.204c-10.043-44.535-10.381-34.196-51.319-55.195
            C249.75,559.091,144.521,507.77,37.88,456.292C23.365,449.285,29.105,454.157,35.889,457.996 L35.889,457.996z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M438.686,472.11c-24.321,5.675-21.889,41.346,2.432,42.967
            c6.486,0,7.297-0.811,2.433-2.432c-19.457-9.729-15.403-36.481,6.485-37.293c5.675-0.811,5.6 75-0.811,1.621-2.432
            C447.604,471.3,441.928,471.3,438.686,472.11L438.686,472.11z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M670.788,502.641c-36.085,26.489-85.558,64.081-122.659,93.506
            c-9.92,7.867-19.456,15.403-20.267,16.214s-4.054,2.433-7.297,3.243c-15.402,5.675-25.986,12 .958-28.374,21.078
            c-1.665,5.661-0.725,9.692,4.054,21.078c13.854,33.017,0.946,29.731,4.373,33.072c1.028,1.00 3,12.853-1.739,2.923-35.505
            c-4.053-10.539-4.053-13.781-2.432-17.024c2.432-4.863,10.539-9.729,22.699-13.781c8.107-3.2 43,7.395-2.309,21.889-13.782
            c43.875-34.735,92.156-74.895,138.63-114.309C716.843,468.854,681.163,495.024,670.788,502.6 41L670.788,502.641z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M26.042,532.912c0,0.811,34.011,23.572,65.667,43.777
            c82.651,52.756,183.031,113.021,286.986,171.057c28.189,15.738,29.354,15.961,13.782,5.676
            c-115.761-76.46-249.471-156.87-344.546-209.16C29.504,534.127,26.042,532.912,26.042,532.91 2L26.042,532.912z"/>
        <path fill-rule="evenodd" clip-rule="evenodd" fill="#be0f34" d="M720.808,590.472C660.006,647.221,597.47,713.61,562.722,758.286
            c-4.976,6.398-4.901,6.442,3.243-0.812c43.739-38.955,100.894-99.409,151.601-160.518
            C730.096,581.855,729.726,581.554,720.808,590.472L720.808,590.472z"/>
        <path fill-rule="evenodd" clip-rul

    Just need to check,  why the stroke-width is not scaled while importing this one?

  • How do I use the same css style but different attributes, Without affecting another page.

    Hey everyone,
    I am using the "NivoSlider", for my dreamweaver page but I am not sure how to tell styles that one page has one attribute and the other one will have a different attribute.
    For example: in my "about us" I have a small slideshow with its own pictures. I then put  a gallery page with its own pictures, yet, I want to make that slideshow box larger without affecting the other small slideshow.
    I am using just one Style.CSS for the slideshow.
    Anyways, is their a way to tell tell the code that one page is going to be a different width then the other?
    Thank you!

    Embedded CSS rules take priority over styles in external style sheets.   So you can add page specific rules between your document's <head> tags and after all other links to external CSS files.
    <style>
         page specific rules here....
    </style>
    Nancy O.

  • I need to change the size of the view for easier reading.  Is there a way to make the page view larger without affecting the form?

    Hi Guys, good product beginning however it's not as good as many of the other Adobe product's workspaces.  I cannot change the size of the view during form design work, so it's a visual strain to work in Forms Central.  Is there a way to modify the view (not affecting the width, size or font when presented on website or on paper)?

    In Photoshop CC 2014 (Windows only) it is possible to use a setting of 200% to scale the UI. On some monitors it improves readability and on others it cuts part of the application screen. To give it a try go to:
    Edit >> Preferences >> Experimental Features
    Put a check-mark in the box and click OK
    Then close PS and re-start for the change to take effect.

  • Why doesn't the stroke width tool create smooth curves?

    Am I the only one who has edited a stroke with the stroke width tool, then outlined the stroke only to find a countless number of points and noticeably unsmooth edges? Is there a setting or certain way to ensure that the stroke width tool won't corrupt the smoothness of my shapes? The stroke width tool is the most handy new feature I can imagine, but this problem makes it almost entirely useless, unless designing something where precision and smoothness are not important. What can I do?

    ...Am I the only one who has edited a stroke with the stroke width tool, then outlined the stroke only to find a countless number of points ...
    I also have noticed that too, for example using the width tool with the same width on all points and expanding on open path results in a lot more anchor points than expanding the same path with the same weight or offset.
    ... and noticeably unsmooth edges?
    I haven't noticed that yet but creating paths with smooth anchor points are more smooth when created with less points, at least when I do it manually but if I use Object > Path > Add Points, or just click on a path to add points, I don't see loss of smoothness.
    Is there a setting or certain way to ensure that the stroke width tool won't corrupt the smoothness of my shapes? ..
    I'm not aware of such settings
    ... The stroke width tool is the most handy new feature I can imagine, but this problem makes it almost entirely useless, unless designing something where precision and smoothness are not important. What can I do?
    I don't know what your precision requirements are, may be an image example of what you are trying to achieve and what you are getting will help understanding you better but so far I haven't considered this as a problem and have used the width tool a lot in my work.

  • Stroke Width Relative to Resizing

    When I have an oject that has a stroke outline of say, 10 pt., and I resize the object, everything resizes except for the stroke width which remains at 10pt. Is there a way to fix the stroke width so that it resizes with the other attributes of the object?

    Preferences>General>Scale Strokes&Effects

  • Compound Path Without Fills

    I have been trying and trying to turn this whole design into a compound path so I can add a texture to it with the minus front feature. However, every time I attempt it fills in circles or changes the stroke width of lines. I have attached the file so it can be tinkered with. I really want to learn how to do this.  https://www.mediafire.com/?88qnk8wwqxepdwy

    You could use a transparency mask to add the texture. Group your logo, and use it to mask your texture.

  • How to replace a layer which has a mask applied without affecting the mask?

    I have a layer with a photo.  I have animated a mask on this layer, but now the client wants the photo replaced with another one.  When I add a new photo to a new layer and copy the mask properties from the good working layer, the mask winds up in a different place than the original.  I've tried doing a replace footage with the source photo trying to make it the new photo but same results, the mask always gets repositioned.
    How can I replace an image on a layer that has an animated mask on it with another one without affecting the mask?
    Thanks,
    Steve

    Thanks everyone.  Now that I understand more about Track Mattes it works fine.  I can scale and position new layers under the animated mask.  This helps tremendously

  • Stroke width

    I don't seem to be able to change my stroke in brush or pencil. It keeps resetting back to basic stroke 1pt/basic/uniform. The only way I seem to be able to go around this problem is to first paint something and then select the stroke and choose the stroke width, etc., but that's too time consuming and very difficult to work. I am using CS 5. "New Art Has Basic Appearance" is unchecked.

    yisu,
    If you create a brush and use that, or just use a preexisting one, through the Brushes palette, you can have the paths look right while you draw with the Paintbrush Tool.
    You can do the same with the Pencil Tool, or just set the Stroke Weight before you draw the first path.
    Unless something has changed for the worse in the latest version(s).

  • How to move an object with its animation path, without adding a new keyframe?

    Hi,
    If I create an object which has a keyframe animation, how can I change its location/scale without adding new keyframes? That is, I want to move the whole thing with all its animations & keyframes as a single entity.
    thanks
    Arun

    Hi,
    big thanks for that. Unless Im doing something stupid when I did that it made a new copy of the object but did allow me to place that new instance elsewhere.
    Is there any way just to move an object and its path without making a new copy?
    All the best
    Arun

Maybe you are looking for