diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2015-03-08 16:56:44 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx.marker.es> | 2015-03-08 16:56:44 +0000 |
| commit | 7e306ee20d7adc76d2c3a038434f22d51af3498a (patch) | |
| tree | 57088551477b8efee68bdb0c9fcbd91717e5d0ba /share | |
| parent | allow use multiple lines, added new icon (diff) | |
| parent | Fixed icons files to save circles without 'd' atribute pointed by su_v (diff) | |
| download | inkscape-7e306ee20d7adc76d2c3a038434f22d51af3498a.tar.gz inkscape-7e306ee20d7adc76d2c3a038434f22d51af3498a.zip | |
fixing icons and update to trunk
(bzr r13973.1.4)
Diffstat (limited to 'share')
| -rwxr-xr-x | share/extensions/convert2dashes.py | 9 | ||||
| -rwxr-xr-x | share/extensions/funcplot.py | 2 | ||||
| -rwxr-xr-x | share/extensions/pathalongpath.py | 4 | ||||
| -rwxr-xr-x | share/extensions/pathscatter.py | 6 | ||||
| -rw-r--r-- | share/icons/icons.svg | 10 | ||||
| -rw-r--r-- | share/icons/tango_icons.svg | 10 |
6 files changed, 24 insertions, 17 deletions
diff --git a/share/extensions/convert2dashes.py b/share/extensions/convert2dashes.py index 9e7f6d439..1228b247c 100755 --- a/share/extensions/convert2dashes.py +++ b/share/extensions/convert2dashes.py @@ -54,17 +54,24 @@ class SplitIt(inkex.Effect): for id, node in self.selected.iteritems(): if node.tag == inkex.addNS('path','svg'): dashes = [] + offset = 0 style = simplestyle.parseStyle(node.get('style')) if style.has_key('stroke-dasharray'): if style['stroke-dasharray'].find(',') > 0: dashes = [float (dash) for dash in style['stroke-dasharray'].split(',')] + if style.has_key('stroke-dashoffset'): + offset = style['stroke-dashoffset'] if dashes: p = cubicsuperpath.parsePath(node.get('d')) new = [] for sub in p: idash = 0 dash = dashes[0] - length = 0 + length = float (offset) + while dash < length: + length = length - dash + idash = (idash + 1) % len(dashes) + dash = dashes[idash] new.append([sub[0][:]]) i = 1 while i < len(sub): diff --git a/share/extensions/funcplot.py b/share/extensions/funcplot.py index 606fb0c28..f37bf335e 100755 --- a/share/extensions/funcplot.py +++ b/share/extensions/funcplot.py @@ -45,7 +45,7 @@ def drawfunction(xstart, xend, ybottom, ytop, samples, width, height, left, bott # coords and scales based on the source rect if xstart == xend: - inkex.errormsg(_("x-interval cannot be zero. Please modify 'Start X value' or 'End X alue'")) + inkex.errormsg(_("x-interval cannot be zero. Please modify 'Start X value' or 'End X value'")) return [] scalex = width / (xend - xstart) xoff = left diff --git a/share/extensions/pathalongpath.py b/share/extensions/pathalongpath.py index 7da7f1797..234430acd 100755 --- a/share/extensions/pathalongpath.py +++ b/share/extensions/pathalongpath.py @@ -66,7 +66,7 @@ def stretch(pathcomp,xscale,yscale,org): def linearize(p,tolerance=0.001): ''' - This function recieves a component of a 'cubicsuperpath' and returns two things: + This function receives a component of a 'cubicsuperpath' and returns two things: The path subdivided in many straight segments, and an array containing the length of each segment. We could work with bezier path as well, but bezier arc lengths are (re)computed for each point @@ -153,7 +153,7 @@ class PathAlongPath(pathmodifier.Diffeo): def lengthtotime(self,l): ''' Recieves an arc length l, and returns the index of the segment in self.skelcomp - containing the coresponding point, to gether with the position of the point on this segment. + containing the corresponding point, to gether with the position of the point on this segment. If the deformer is closed, do computations modulo the toal length. ''' diff --git a/share/extensions/pathscatter.py b/share/extensions/pathscatter.py index 268e31069..5c2857979 100755 --- a/share/extensions/pathscatter.py +++ b/share/extensions/pathscatter.py @@ -80,7 +80,7 @@ def stretch(pathcomp,xscale,yscale,org): def linearize(p,tolerance=0.001): ''' - This function recieves a component of a 'cubicsuperpath' and returns two things: + This function receives a component of a 'cubicsuperpath' and returns two things: The path subdivided in many straight segments, and an array containing the length of each segment. We could work with bezier path as well, but bezier arc lengths are (re)computed for each point @@ -186,7 +186,7 @@ class PathScatter(pathmodifier.Diffeo): def lengthtotime(self,l): ''' Recieves an arc length l, and returns the index of the segment in self.skelcomp - containing the coresponding point, to gether with the position of the point on this segment. + containing the corresponding point, to gether with the position of the point on this segment. If the deformer is closed, do computations modulo the toal length. ''' @@ -203,7 +203,7 @@ class PathScatter(pathmodifier.Diffeo): def localTransformAt(self,s,follow=True): ''' - recieves a length, and returns the coresponding point and tangent of self.skelcomp + receives a length, and returns the coresponding point and tangent of self.skelcomp if follow is set to false, returns only the translation ''' i,t=self.lengthtotime(s) diff --git a/share/icons/icons.svg b/share/icons/icons.svg index 4609470c0..ba232e4ca 100644 --- a/share/icons/icons.svg +++ b/share/icons/icons.svg @@ -862,7 +862,7 @@ <stop id="stop1015-3" offset="1.0000000" style="stop-color:#3a7801;stop-opacity:1" /> </linearGradient> </defs> -<sodipodi:namedview inkscape:guide-bbox="true" inkscape:current-layer="svg1" inkscape:grid-bbox="true" inkscape:pageopacity="1.0000000" pagecolor="#e8e8e4" snaptoguides="true" showguides="true" inkscape:window-y="27" inkscape:window-x="0" inkscape:window-height="958" inkscape:window-width="1280" inkscape:cy="328.8988" inkscape:cx="458.8074" inkscape:zoom="2.736" gridtolerance="6" snaptogrid="false" showgrid="false" id="base" inkscape:document-units="px" inkscape:grid-points="true" guidetolerance="8" fill="#8ab3de" stroke="#646464" inkscape:object-nodes="false" objecttolerance="11" inkscape:snap-bbox="false" inkscape:snap-nodes="true" inkscape:bbox-nodes="false" inkscape:bbox-paths="false" inkscape:snap-global="false" inkscape:snap-center="false" inkscape:snap-midpoints="false" inkscape:snap-intersection-paths="true" inkscape:object-paths="false" inkscape:snap-object-midpoints="true" inkscape:window-maximized="1" inkscape:snap-grids="true" inkscape:snap-smooth-nodes="false" inkscape:snap-text-baseline="false" inkscape:snap-page="true" inkscape:snap-bbox-midpoints="false" inkscape:snap-bbox-edge-midpoints="false"> +<sodipodi:namedview inkscape:guide-bbox="true" inkscape:current-layer="svg1" inkscape:grid-bbox="true" inkscape:pageopacity="1.0000000" pagecolor="#e8e8e4" snaptoguides="true" showguides="true" inkscape:window-y="27" inkscape:window-x="0" inkscape:window-height="958" inkscape:window-width="1280" inkscape:cy="331.0498" inkscape:cx="592.0806" inkscape:zoom="2.736" gridtolerance="6" snaptogrid="false" showgrid="false" id="base" inkscape:document-units="px" inkscape:grid-points="true" guidetolerance="8" fill="#8ab3de" stroke="#646464" inkscape:object-nodes="false" objecttolerance="11" inkscape:snap-bbox="false" inkscape:snap-nodes="true" inkscape:bbox-nodes="false" inkscape:bbox-paths="false" inkscape:snap-global="false" inkscape:snap-center="false" inkscape:snap-midpoints="false" inkscape:snap-intersection-paths="true" inkscape:object-paths="false" inkscape:snap-object-midpoints="true" inkscape:window-maximized="1" inkscape:snap-grids="true" inkscape:snap-smooth-nodes="false" inkscape:snap-text-baseline="false" inkscape:snap-page="true" inkscape:snap-bbox-midpoints="false" inkscape:snap-bbox-edge-midpoints="false"> <inkscape:grid type="xygrid" id="grid9252" originx="0px" originy="0px" spacingx="0.5px" spacingy="0.5px" empspacing="2" visible="true" enabled="true" snapvisiblegridlinesonly="true" /> <sodipodi:guide orientation="0,1" position="630.08101,968.02815" id="guide4946" /> <sodipodi:guide orientation="0,1" position="618.47896,943.93157" id="guide4948" /> @@ -3941,12 +3941,12 @@ http://www.inkscape.org/</dc:description> <ellipse style="color:#000000;fill:none;stroke:url(#linearGradient33191);stroke-linejoin:round" id="ellipse10324" cx="18.48884" cy="207.5353" rx="6.611154" ry="6.515604" transform="matrix(0.8723531,0,0,0.8723531,2.360048,9.005643)" /> <rect style="color:#000000;fill:none;stroke-width:0.531496" id="rect9056-0" width="15.99999" height="15.99999" x="10.48885" y="182.0497" /> </g> -<g style="display:inline" inkscape:label="#interactive_simplify" id="interactive_simplify" transform="translate(214.7884,-326.8162)"> +<g inkscape:label="#interactive_simplify" id="interactive_simplify" transform="translate(212.4641,-329.0092)"> <rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect17937" width="24" height="24" x="284.9688" y="527.3309" /> -<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="M 291.8638,531.1819 C 290.9049,531.1594 290.0426,531.449 289.4616,532.0297 288.8807,532.6101 288.6201,533.3798 288.5126,534.1698 288.2973,535.7499 288.6292,537.5849 288.9715,539.3941 289.3139,541.2033 289.6808,542.9869 289.6841,544.1479 289.6857,544.7282 289.5784,545.123 289.4953,545.2546 289.4123,545.386 289.4415,545.4101 289.0814,545.4011 288.2665,545.3804 287.9879,545.1095 287.6986,544.5055 287.4094,543.9014 287.2807,542.9221 287.3071,541.9061 287.3601,539.8742 287.9465,537.7691 287.9465,537.7691 L 286.144,537.2593 C 286.144,537.2593 285.4955,539.507 285.4343,541.8583 285.4037,543.0339 285.5007,544.2557 286.0089,545.3166 286.5171,546.3775 287.6077,547.2377 289.0335,547.2739 289.8622,547.2948 290.6786,546.8914 291.0809,546.2544 291.4832,545.6173 291.5619,544.9005 291.5598,544.1421 291.5553,542.6259 291.15,540.8235 290.8134,539.0449 290.4769,537.2662 290.2226,535.5141 290.3712,534.4234 290.4456,533.8778 290.6049,533.5391 290.7881,533.3561 290.9712,533.173 291.2172,533.0434 291.8189,533.0575 292.4123,533.0714 292.7209,533.1999 292.8918,533.3307 293.0627,533.4614 293.1614,533.6209 293.2325,533.939 293.3747,534.5751 293.2177,535.7526 292.9565,536.9804 292.6954,538.2085 292.3532,539.476 292.3848,540.6557 292.4006,541.2457 292.5143,541.8595 292.9255,542.3792 293.3369,542.8991 294.02,543.1925 294.7448,543.2297 295.3457,543.2607 295.8946,543.172 296.3586,542.9171 296.8226,542.6622 297.1575,542.243 297.3414,541.8217 297.7093,540.979 297.6502,540.1291 297.6174,539.3574 297.5847,538.5857 297.5652,537.871 297.6456,537.5607 297.6857,537.4055 297.7178,537.3838 297.7187,537.3832 297.7195,537.3826 297.7472,537.3435 297.9807,537.3494 298.265,537.3567 298.2928,537.3984 298.3356,537.4339 298.3784,537.4694 298.4555,537.5737 298.589,537.8029 298.7224,538.0321 298.9129,538.3827 299.2902,538.6871 299.6676,538.9916 300.2078,539.1877 300.8194,539.2138 302.3402,539.2787 303.1146,538.6839 303.7427,538.3407 304.8109,537.7577 306.5236,537.907 307.9417,538.3773 L 308.5331,536.6003 C 306.8424,536.0394 304.6745,535.6941 302.8443,536.6932 301.9815,537.1647 302.0191,537.3887 300.8983,537.3409 300.5851,537.3277 300.5237,537.2737 300.4675,537.2283 300.4112,537.1829 300.3372,537.0808 300.2083,536.8595 300.0794,536.638 299.9009,536.295 299.5325,535.9892 299.164,535.6834 298.6247,535.4918 298.0286,535.4766 297.489,535.463 296.9552,535.5985 296.5529,535.9187 296.1505,536.2392 295.9375,536.6822 295.8319,537.0904 295.6206,537.9065 295.7135,538.7059 295.7446,539.439 295.7758,540.1724 295.7344,540.8185 295.6235,541.0724 295.5681,541.1995 295.5368,541.2287 295.4574,541.2724 295.3778,541.3162 295.2025,541.3754 294.8434,541.357 294.4839,541.3384 294.4433,541.2763 294.3957,541.216 294.348,541.156 294.2673,540.9688 294.2577,540.605 294.2382,539.8774 294.5197,538.6399 294.7899,537.3691 295.0601,536.0985 295.3424,534.7803 295.0631,533.5307 294.9234,532.9058 294.5956,532.2768 294.0296,531.8437 293.4635,531.4106 292.7252,531.2021 291.8638,531.1819 Z" id="path14318-5" inkscape:connector-curvature="0" /> +<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="M 291.8638,531.1819 C 290.9049,531.1594 290.0426,531.449 289.4616,532.0297 288.8807,532.6101 288.6201,533.3798 288.5126,534.1698 288.2973,535.7499 288.6292,537.5849 288.9715,539.3941 289.3139,541.2033 289.6808,542.9869 289.6841,544.1479 289.6857,544.7282 289.5784,545.123 289.4953,545.2546 289.4123,545.386 289.4415,545.4101 289.0814,545.4011 288.2665,545.3804 287.9879,545.1095 287.6986,544.5055 287.4094,543.9014 287.2807,542.9221 287.3071,541.9061 287.3601,539.8742 287.9465,537.7691 287.9465,537.7691 L 286.144,537.2593 C 286.144,537.2593 285.4955,539.507 285.4343,541.8583 285.4037,543.0339 285.5007,544.2557 286.0089,545.3166 286.5171,546.3775 287.6077,547.2377 289.0335,547.2739 289.8622,547.2948 290.6786,546.8914 291.0809,546.2544 291.4832,545.6173 291.5619,544.9005 291.5598,544.1421 291.5553,542.6259 291.15,540.8235 290.8134,539.0449 290.4769,537.2662 290.2226,535.5141 290.3712,534.4234 290.4456,533.8778 290.6049,533.5391 290.7881,533.3561 290.9712,533.173 291.2172,533.0434 291.8189,533.0575 292.4123,533.0714 292.7209,533.1999 292.8918,533.3307 293.0627,533.4614 293.1614,533.6209 293.2325,533.939 293.3747,534.5751 293.2177,535.7526 292.9565,536.9804 292.6954,538.2085 292.3532,539.476 292.3848,540.6557 292.4006,541.2457 292.5143,541.8595 292.9255,542.3792 293.3369,542.8991 294.02,543.1925 294.7448,543.2297 295.3457,543.2607 295.8946,543.172 296.3586,542.9171 296.8226,542.6622 297.1575,542.243 297.3414,541.8217 297.7093,540.979 297.6502,540.1291 297.6174,539.3574 297.5847,538.5857 297.5652,537.871 297.6456,537.5607 297.6857,537.4055 297.7178,537.3838 297.7187,537.3832 297.7195,537.3826 297.7472,537.3435 297.9807,537.3494 298.265,537.3567 298.2928,537.3984 298.3356,537.4339 298.3784,537.4694 298.4555,537.5737 298.589,537.8029 298.7224,538.0321 298.9129,538.3827 299.2902,538.6871 299.6676,538.9916 300.2078,539.1877 300.8194,539.2138 302.3402,539.2787 303.1146,538.6839 303.7427,538.3407 304.8109,537.7577 306.5236,537.907 307.9417,538.3773 L 308.5331,536.6003 C 306.8424,536.0394 304.6745,535.6941 302.8443,536.6932 301.9815,537.1647 302.0191,537.3887 300.8983,537.3409 300.5851,537.3277 300.5237,537.2737 300.4675,537.2283 300.4112,537.1829 300.3372,537.0808 300.2083,536.8595 300.0794,536.638 299.9009,536.295 299.5325,535.9892 299.164,535.6834 298.6247,535.4918 298.0286,535.4766 297.489,535.463 296.9552,535.5985 296.5529,535.9187 296.1505,536.2392 295.9375,536.6822 295.8319,537.0904 295.6206,537.9065 295.7135,538.7059 295.7446,539.439 295.7758,540.1724 295.7344,540.8185 295.6235,541.0724 295.5681,541.1995 295.5368,541.2287 295.4574,541.2724 295.3778,541.3162 295.2025,541.3754 294.8434,541.357 294.4839,541.3384 294.4433,541.2763 294.3957,541.216 294.348,541.156 294.2673,540.9688 294.2577,540.605 294.2382,539.8774 294.5197,538.6399 294.7899,537.3691 295.0601,536.0985 295.3424,534.7803 295.0631,533.5307 294.9234,532.9058 294.5956,532.2768 294.0296,531.8437 293.4635,531.4106 292.7252,531.2021 291.8638,531.1819 Z" id="path14318-5" inkscape:connector-curvature="0" /> </g> -<g style="display:inline" transform="matrix(0.6666667,0,0,0.6666667,337.0267,-147.7702)" id="interactive_simplify-16px" inkscape:label="#interactive_simplify-16px"> +<g transform="matrix(0.6666667,0,0,0.6666667,336.0615,-149.1782)" id="interactive_simplify-16px" inkscape:label="#interactive_simplify-16px"> <rect y="527.3309" x="284.9688" height="24" width="24" id="rect17971" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" /> -<path inkscape:connector-curvature="0" id="path17973" d="M 291.8638,531.1819 C 290.9049,531.1594 290.0426,531.449 289.4616,532.0297 288.8807,532.6101 288.6201,533.3798 288.5126,534.1698 288.2973,535.7499 288.6292,537.5849 288.9715,539.3941 289.3139,541.2033 289.6808,542.9869 289.6841,544.1479 289.6857,544.7282 289.5784,545.123 289.4953,545.2546 289.4123,545.386 289.4415,545.4101 289.0814,545.4011 288.2665,545.3804 287.9879,545.1095 287.6986,544.5055 287.4094,543.9014 287.2807,542.9221 287.3071,541.9061 287.3601,539.8742 287.9465,537.7691 287.9465,537.7691 L 286.144,537.2593 C 286.144,537.2593 285.4955,539.507 285.4343,541.8583 285.4037,543.0339 285.5007,544.2557 286.0089,545.3166 286.5171,546.3775 287.6077,547.2377 289.0335,547.2739 289.8622,547.2948 290.6786,546.8914 291.0809,546.2544 291.4832,545.6173 291.5619,544.9005 291.5598,544.1421 291.5553,542.6259 291.15,540.8235 290.8134,539.0449 290.4769,537.2662 290.2226,535.5141 290.3712,534.4234 290.4456,533.8778 290.6049,533.5391 290.7881,533.3561 290.9712,533.173 291.2172,533.0434 291.8189,533.0575 292.4123,533.0714 292.7209,533.1999 292.8918,533.3307 293.0627,533.4614 293.1614,533.6209 293.2325,533.939 293.3747,534.5751 293.2177,535.7526 292.9565,536.9804 292.6954,538.2085 292.3532,539.476 292.3848,540.6557 292.4006,541.2457 292.5143,541.8595 292.9255,542.3792 293.3369,542.8991 294.02,543.1925 294.7448,543.2297 295.3457,543.2607 295.8946,543.172 296.3586,542.9171 296.8226,542.6622 297.1575,542.243 297.3414,541.8217 297.7093,540.979 297.6502,540.1291 297.6174,539.3574 297.5847,538.5857 297.5652,537.871 297.6456,537.5607 297.6857,537.4055 297.7178,537.3838 297.7187,537.3832 297.7195,537.3826 297.7472,537.3435 297.9807,537.3494 298.265,537.3567 298.2928,537.3984 298.3356,537.4339 298.3784,537.4694 298.4555,537.5737 298.589,537.8029 298.7224,538.0321 298.9129,538.3827 299.2902,538.6871 299.6676,538.9916 300.2078,539.1877 300.8194,539.2138 302.3402,539.2787 303.1146,538.6839 303.7427,538.3407 304.8109,537.7577 306.5236,537.907 307.9417,538.3773 L 308.5331,536.6003 C 306.8424,536.0394 304.6745,535.6941 302.8443,536.6932 301.9815,537.1647 302.0191,537.3887 300.8983,537.3409 300.5851,537.3277 300.5237,537.2737 300.4675,537.2283 300.4112,537.1829 300.3372,537.0808 300.2083,536.8595 300.0794,536.638 299.9009,536.295 299.5325,535.9892 299.164,535.6834 298.6247,535.4918 298.0286,535.4766 297.489,535.463 296.9552,535.5985 296.5529,535.9187 296.1505,536.2392 295.9375,536.6822 295.8319,537.0904 295.6206,537.9065 295.7135,538.7059 295.7446,539.439 295.7758,540.1724 295.7344,540.8185 295.6235,541.0724 295.5681,541.1995 295.5368,541.2287 295.4574,541.2724 295.3778,541.3162 295.2025,541.3754 294.8434,541.357 294.4839,541.3384 294.4433,541.2763 294.3957,541.216 294.348,541.156 294.2673,540.9688 294.2577,540.605 294.2382,539.8774 294.5197,538.6399 294.7899,537.3691 295.0601,536.0985 295.3424,534.7803 295.0631,533.5307 294.9234,532.9058 294.5956,532.2768 294.0296,531.8437 293.4635,531.4106 292.7252,531.2021 291.8638,531.1819 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> +<path inkscape:connector-curvature="0" id="path17973" d="M 291.8638,531.1819 C 290.9049,531.1594 290.0426,531.449 289.4616,532.0297 288.8807,532.6101 288.6201,533.3798 288.5126,534.1698 288.2973,535.7499 288.6292,537.5849 288.9715,539.3941 289.3139,541.2033 289.6808,542.9869 289.6841,544.1479 289.6857,544.7282 289.5784,545.123 289.4953,545.2546 289.4123,545.386 289.4415,545.4101 289.0814,545.4011 288.2665,545.3804 287.9879,545.1095 287.6986,544.5055 287.4094,543.9014 287.2807,542.9221 287.3071,541.9061 287.3601,539.8742 287.9465,537.7691 287.9465,537.7691 L 286.144,537.2593 C 286.144,537.2593 285.4955,539.507 285.4343,541.8583 285.4037,543.0339 285.5007,544.2557 286.0089,545.3166 286.5171,546.3775 287.6077,547.2377 289.0335,547.2739 289.8622,547.2948 290.6786,546.8914 291.0809,546.2544 291.4832,545.6173 291.5619,544.9005 291.5598,544.1421 291.5553,542.6259 291.15,540.8235 290.8134,539.0449 290.4769,537.2662 290.2226,535.5141 290.3712,534.4234 290.4456,533.8778 290.6049,533.5391 290.7881,533.3561 290.9712,533.173 291.2172,533.0434 291.8189,533.0575 292.4123,533.0714 292.7209,533.1999 292.8918,533.3307 293.0627,533.4614 293.1614,533.6209 293.2325,533.939 293.3747,534.5751 293.2177,535.7526 292.9565,536.9804 292.6954,538.2085 292.3532,539.476 292.3848,540.6557 292.4006,541.2457 292.5143,541.8595 292.9255,542.3792 293.3369,542.8991 294.02,543.1925 294.7448,543.2297 295.3457,543.2607 295.8946,543.172 296.3586,542.9171 296.8226,542.6622 297.1575,542.243 297.3414,541.8217 297.7093,540.979 297.6502,540.1291 297.6174,539.3574 297.5847,538.5857 297.5652,537.871 297.6456,537.5607 297.6857,537.4055 297.7178,537.3838 297.7187,537.3832 297.7195,537.3826 297.7472,537.3435 297.9807,537.3494 298.265,537.3567 298.2928,537.3984 298.3356,537.4339 298.3784,537.4694 298.4555,537.5737 298.589,537.8029 298.7224,538.0321 298.9129,538.3827 299.2902,538.6871 299.6676,538.9916 300.2078,539.1877 300.8194,539.2138 302.3402,539.2787 303.1146,538.6839 303.7427,538.3407 304.8109,537.7577 306.5236,537.907 307.9417,538.3773 L 308.5331,536.6003 C 306.8424,536.0394 304.6745,535.6941 302.8443,536.6932 301.9815,537.1647 302.0191,537.3887 300.8983,537.3409 300.5851,537.3277 300.5237,537.2737 300.4675,537.2283 300.4112,537.1829 300.3372,537.0808 300.2083,536.8595 300.0794,536.638 299.9009,536.295 299.5325,535.9892 299.164,535.6834 298.6247,535.4918 298.0286,535.4766 297.489,535.463 296.9552,535.5985 296.5529,535.9187 296.1505,536.2392 295.9375,536.6822 295.8319,537.0904 295.6206,537.9065 295.7135,538.7059 295.7446,539.439 295.7758,540.1724 295.7344,540.8185 295.6235,541.0724 295.5681,541.1995 295.5368,541.2287 295.4574,541.2724 295.3778,541.3162 295.2025,541.3754 294.8434,541.357 294.4839,541.3384 294.4433,541.2763 294.3957,541.216 294.348,541.156 294.2673,540.9688 294.2577,540.605 294.2382,539.8774 294.5197,538.6399 294.7899,537.3691 295.0601,536.0985 295.3424,534.7803 295.0631,533.5307 294.9234,532.9058 294.5956,532.2768 294.0296,531.8437 293.4635,531.4106 292.7252,531.2021 291.8638,531.1819 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> </g> </svg> diff --git a/share/icons/tango_icons.svg b/share/icons/tango_icons.svg index 7fe91f22c..d63041c11 100644 --- a/share/icons/tango_icons.svg +++ b/share/icons/tango_icons.svg @@ -2306,7 +2306,7 @@ <stop id="stop1015-3" offset="1.0000000" style="stop-color:#3a7801;stop-opacity:1.0000000;" /> </linearGradient> </defs> -<sodipodi:namedview inkscape:guide-bbox="true" inkscape:current-layer="layer3" inkscape:grid-bbox="true" inkscape:pageopacity="1" pagecolor="#f8f5f2" snaptoguides="true" showguides="true" inkscape:window-y="27" inkscape:window-x="0" inkscape:window-height="958" inkscape:window-width="1280" inkscape:cy="1390.131" inkscape:cx="1251.562" inkscape:zoom="3.54647" gridtolerance="10000" snaptogrid="false" showgrid="true" id="base" inkscape:document-units="px" inkscape:grid-points="true" guidetolerance="19" fill="#8ab3de" stroke="#646464" inkscape:object-nodes="true" objecttolerance="10" inkscape:snap-bbox="true" inkscape:snap-nodes="false" showborder="false" inkscape:showpageshadow="false" inkscape:snap-center="false" inkscape:snap-intersection-grid-guide="false" inkscape:snap-guide="false" inkscape:bbox-paths="true" inkscape:bbox-nodes="true" inkscape:snap-global="true" inkscape:object-paths="true" inkscape:window-maximized="1" width="0px" height="0px" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:snap-intersection-paths="true"> +<sodipodi:namedview inkscape:guide-bbox="true" inkscape:current-layer="layer3" inkscape:grid-bbox="true" inkscape:pageopacity="1" pagecolor="#f8f5f2" snaptoguides="true" showguides="true" inkscape:window-y="27" inkscape:window-x="0" inkscape:window-height="958" inkscape:window-width="1280" inkscape:cy="1390.131" inkscape:cx="1284.967" inkscape:zoom="3.54647" gridtolerance="10000" snaptogrid="false" showgrid="true" id="base" inkscape:document-units="px" inkscape:grid-points="true" guidetolerance="19" fill="#8ab3de" stroke="#646464" inkscape:object-nodes="true" objecttolerance="10" inkscape:snap-bbox="true" inkscape:snap-nodes="false" showborder="false" inkscape:showpageshadow="false" inkscape:snap-center="false" inkscape:snap-intersection-grid-guide="false" inkscape:snap-guide="false" inkscape:bbox-paths="true" inkscape:bbox-nodes="true" inkscape:snap-global="true" inkscape:object-paths="true" inkscape:window-maximized="1" width="0px" height="0px" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:snap-intersection-paths="true"> <inkscape:grid type="xygrid" id="grid12302" empspacing="24" dotted="false" color="#009bcc" opacity="0.1254902" empcolor="#0019cc" empopacity="0.25098039" spacingx="0px" spacingy="0px" originx="0px" originy="0px" visible="true" enabled="true" snapvisiblegridlinesonly="true" /> <inkscape:grid id="GridFromPre046Settings" type="xygrid" originx="0px" originy="0.0000000px" spacingx="0.5px" spacingy="0.5px" color="#0000ff" empcolor="#0000ff" opacity="0.2" empopacity="0.4" empspacing="2" visible="false" enabled="true" snapvisiblegridlinesonly="true" /> </sodipodi:namedview> @@ -5284,13 +5284,13 @@ http://www.inkscape.org/</dc:description> <ellipse transform="matrix(0.8723531,0,0,0.8723531,2.360048,9.005643)" ry="6.515604" rx="6.611154" cy="207.5353" cx="18.48884" id="ellipse47674" style="color:#000000;text-decoration:none;text-decoration-line:none;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" /> <rect y="182.0497" x="10.48885" height="15.99999" width="15.99999" id="rect47676" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.531496;marker:none" /> </g> -<g inkscape:label="#interactive_simplify" id="interactive_simplify" transform="translate(987.0312,52.66913)"> +<g inkscape:label="#interactive_simplify" id="interactive_simplify" transform="translate(987.0312,48.66913)"> <rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect17937" width="24" height="24" x="284.9688" y="527.3309" /> -<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="M 291.8638,531.1819 C 290.9049,531.1594 290.0426,531.449 289.4616,532.0297 288.8807,532.6101 288.6201,533.3798 288.5126,534.1698 288.2973,535.7499 288.6292,537.5849 288.9715,539.3941 289.3139,541.2033 289.6808,542.9869 289.6841,544.1479 289.6857,544.7282 289.5784,545.123 289.4953,545.2546 289.4123,545.386 289.4415,545.4101 289.0814,545.4011 288.2665,545.3804 287.9879,545.1095 287.6986,544.5055 287.4094,543.9014 287.2807,542.9221 287.3071,541.9061 287.3601,539.8742 287.9465,537.7691 287.9465,537.7691 L 286.144,537.2593 C 286.144,537.2593 285.4955,539.507 285.4343,541.8583 285.4037,543.0339 285.5007,544.2557 286.0089,545.3166 286.5171,546.3775 287.6077,547.2377 289.0335,547.2739 289.8622,547.2948 290.6786,546.8914 291.0809,546.2544 291.4832,545.6173 291.5619,544.9005 291.5598,544.1421 291.5553,542.6259 291.15,540.8235 290.8134,539.0449 290.4769,537.2662 290.2226,535.5141 290.3712,534.4234 290.4456,533.8778 290.6049,533.5391 290.7881,533.3561 290.9712,533.173 291.2172,533.0434 291.8189,533.0575 292.4123,533.0714 292.7209,533.1999 292.8918,533.3307 293.0627,533.4614 293.1614,533.6209 293.2325,533.939 293.3747,534.5751 293.2177,535.7526 292.9565,536.9804 292.6954,538.2085 292.3532,539.476 292.3848,540.6557 292.4006,541.2457 292.5143,541.8595 292.9255,542.3792 293.3369,542.8991 294.02,543.1925 294.7448,543.2297 295.3457,543.2607 295.8946,543.172 296.3586,542.9171 296.8226,542.6622 297.1575,542.243 297.3414,541.8217 297.7093,540.979 297.6502,540.1291 297.6174,539.3574 297.5847,538.5857 297.5652,537.871 297.6456,537.5607 297.6857,537.4055 297.7178,537.3838 297.7187,537.3832 297.7195,537.3826 297.7472,537.3435 297.9807,537.3494 298.265,537.3567 298.2928,537.3984 298.3356,537.4339 298.3784,537.4694 298.4555,537.5737 298.589,537.8029 298.7224,538.0321 298.9129,538.3827 299.2902,538.6871 299.6676,538.9916 300.2078,539.1877 300.8194,539.2138 302.3402,539.2787 303.1146,538.6839 303.7427,538.3407 304.8109,537.7577 306.5236,537.907 307.9417,538.3773 L 308.5331,536.6003 C 306.8424,536.0394 304.6745,535.6941 302.8443,536.6932 301.9815,537.1647 302.0191,537.3887 300.8983,537.3409 300.5851,537.3277 300.5237,537.2737 300.4675,537.2283 300.4112,537.1829 300.3372,537.0808 300.2083,536.8595 300.0794,536.638 299.9009,536.295 299.5325,535.9892 299.164,535.6834 298.6247,535.4918 298.0286,535.4766 297.489,535.463 296.9552,535.5985 296.5529,535.9187 296.1505,536.2392 295.9375,536.6822 295.8319,537.0904 295.6206,537.9065 295.7135,538.7059 295.7446,539.439 295.7758,540.1724 295.7344,540.8185 295.6235,541.0724 295.5681,541.1995 295.5368,541.2287 295.4574,541.2724 295.3778,541.3162 295.2025,541.3754 294.8434,541.357 294.4839,541.3384 294.4433,541.2763 294.3957,541.216 294.348,541.156 294.2673,540.9688 294.2577,540.605 294.2382,539.8774 294.5197,538.6399 294.7899,537.3691 295.0601,536.0985 295.3424,534.7803 295.0631,533.5307 294.9234,532.9058 294.5956,532.2768 294.0296,531.8437 293.4635,531.4106 292.7252,531.2021 291.8638,531.1819 Z" id="path14318-5" inkscape:connector-curvature="0" /> +<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="M 291.8638,531.1819 C 290.9049,531.1594 290.0426,531.449 289.4616,532.0297 288.8807,532.6101 288.6201,533.3798 288.5126,534.1698 288.2973,535.7499 288.6292,537.5849 288.9715,539.3941 289.3139,541.2033 289.6808,542.9869 289.6841,544.1479 289.6857,544.7282 289.5784,545.123 289.4953,545.2546 289.4123,545.386 289.4415,545.4101 289.0814,545.4011 288.2665,545.3804 287.9879,545.1095 287.6986,544.5055 287.4094,543.9014 287.2807,542.9221 287.3071,541.9061 287.3601,539.8742 287.9465,537.7691 287.9465,537.7691 L 286.144,537.2593 C 286.144,537.2593 285.4955,539.507 285.4343,541.8583 285.4037,543.0339 285.5007,544.2557 286.0089,545.3166 286.5171,546.3775 287.6077,547.2377 289.0335,547.2739 289.8622,547.2948 290.6786,546.8914 291.0809,546.2544 291.4832,545.6173 291.5619,544.9005 291.5598,544.1421 291.5553,542.6259 291.15,540.8235 290.8134,539.0449 290.4769,537.2662 290.2226,535.5141 290.3712,534.4234 290.4456,533.8778 290.6049,533.5391 290.7881,533.3561 290.9712,533.173 291.2172,533.0434 291.8189,533.0575 292.4123,533.0714 292.7209,533.1999 292.8918,533.3307 293.0627,533.4614 293.1614,533.6209 293.2325,533.939 293.3747,534.5751 293.2177,535.7526 292.9565,536.9804 292.6954,538.2085 292.3532,539.476 292.3848,540.6557 292.4006,541.2457 292.5143,541.8595 292.9255,542.3792 293.3369,542.8991 294.02,543.1925 294.7448,543.2297 295.3457,543.2607 295.8946,543.172 296.3586,542.9171 296.8226,542.6622 297.1575,542.243 297.3414,541.8217 297.7093,540.979 297.6502,540.1291 297.6174,539.3574 297.5847,538.5857 297.5652,537.871 297.6456,537.5607 297.6857,537.4055 297.7178,537.3838 297.7187,537.3832 297.7195,537.3826 297.7472,537.3435 297.9807,537.3494 298.265,537.3567 298.2928,537.3984 298.3356,537.4339 298.3784,537.4694 298.4555,537.5737 298.589,537.8029 298.7224,538.0321 298.9129,538.3827 299.2902,538.6871 299.6676,538.9916 300.2078,539.1877 300.8194,539.2138 302.3402,539.2787 303.1146,538.6839 303.7427,538.3407 304.8109,537.7577 306.5236,537.907 307.9417,538.3773 L 308.5331,536.6003 C 306.8424,536.0394 304.6745,535.6941 302.8443,536.6932 301.9815,537.1647 302.0191,537.3887 300.8983,537.3409 300.5851,537.3277 300.5237,537.2737 300.4675,537.2283 300.4112,537.1829 300.3372,537.0808 300.2083,536.8595 300.0794,536.638 299.9009,536.295 299.5325,535.9892 299.164,535.6834 298.6247,535.4918 298.0286,535.4766 297.489,535.463 296.9552,535.5985 296.5529,535.9187 296.1505,536.2392 295.9375,536.6822 295.8319,537.0904 295.6206,537.9065 295.7135,538.7059 295.7446,539.439 295.7758,540.1724 295.7344,540.8185 295.6235,541.0724 295.5681,541.1995 295.5368,541.2287 295.4574,541.2724 295.3778,541.3162 295.2025,541.3754 294.8434,541.357 294.4839,541.3384 294.4433,541.2763 294.3957,541.216 294.348,541.156 294.2673,540.9688 294.2577,540.605 294.2382,539.8774 294.5197,538.6399 294.7899,537.3691 295.0601,536.0985 295.3424,534.7803 295.0631,533.5307 294.9234,532.9058 294.5956,532.2768 294.0296,531.8437 293.4635,531.4106 292.7252,531.2021 291.8638,531.1819 Z" id="path14318-5" inkscape:connector-curvature="0" /> </g> -<g transform="matrix(0.6666667,0,0,0.6666667,1114.021,232.4461)" id="interactive_simplify-16px" inkscape:label="#interactive_simplify-16px"> +<g transform="matrix(0.6666667,0,0,0.6666667,1110.628,228.5001)" id="interactive_simplify-16px" inkscape:label="#interactive_simplify-16px"> <rect y="527.3309" x="284.9688" height="24" width="24" id="rect17971" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" /> -<path inkscape:connector-curvature="0" id="path17973" d="M 291.8638,531.1819 C 290.9049,531.1594 290.0426,531.449 289.4616,532.0297 288.8807,532.6101 288.6201,533.3798 288.5126,534.1698 288.2973,535.7499 288.6292,537.5849 288.9715,539.3941 289.3139,541.2033 289.6808,542.9869 289.6841,544.1479 289.6857,544.7282 289.5784,545.123 289.4953,545.2546 289.4123,545.386 289.4415,545.4101 289.0814,545.4011 288.2665,545.3804 287.9879,545.1095 287.6986,544.5055 287.4094,543.9014 287.2807,542.9221 287.3071,541.9061 287.3601,539.8742 287.9465,537.7691 287.9465,537.7691 L 286.144,537.2593 C 286.144,537.2593 285.4955,539.507 285.4343,541.8583 285.4037,543.0339 285.5007,544.2557 286.0089,545.3166 286.5171,546.3775 287.6077,547.2377 289.0335,547.2739 289.8622,547.2948 290.6786,546.8914 291.0809,546.2544 291.4832,545.6173 291.5619,544.9005 291.5598,544.1421 291.5553,542.6259 291.15,540.8235 290.8134,539.0449 290.4769,537.2662 290.2226,535.5141 290.3712,534.4234 290.4456,533.8778 290.6049,533.5391 290.7881,533.3561 290.9712,533.173 291.2172,533.0434 291.8189,533.0575 292.4123,533.0714 292.7209,533.1999 292.8918,533.3307 293.0627,533.4614 293.1614,533.6209 293.2325,533.939 293.3747,534.5751 293.2177,535.7526 292.9565,536.9804 292.6954,538.2085 292.3532,539.476 292.3848,540.6557 292.4006,541.2457 292.5143,541.8595 292.9255,542.3792 293.3369,542.8991 294.02,543.1925 294.7448,543.2297 295.3457,543.2607 295.8946,543.172 296.3586,542.9171 296.8226,542.6622 297.1575,542.243 297.3414,541.8217 297.7093,540.979 297.6502,540.1291 297.6174,539.3574 297.5847,538.5857 297.5652,537.871 297.6456,537.5607 297.6857,537.4055 297.7178,537.3838 297.7187,537.3832 297.7195,537.3826 297.7472,537.3435 297.9807,537.3494 298.265,537.3567 298.2928,537.3984 298.3356,537.4339 298.3784,537.4694 298.4555,537.5737 298.589,537.8029 298.7224,538.0321 298.9129,538.3827 299.2902,538.6871 299.6676,538.9916 300.2078,539.1877 300.8194,539.2138 302.3402,539.2787 303.1146,538.6839 303.7427,538.3407 304.8109,537.7577 306.5236,537.907 307.9417,538.3773 L 308.5331,536.6003 C 306.8424,536.0394 304.6745,535.6941 302.8443,536.6932 301.9815,537.1647 302.0191,537.3887 300.8983,537.3409 300.5851,537.3277 300.5237,537.2737 300.4675,537.2283 300.4112,537.1829 300.3372,537.0808 300.2083,536.8595 300.0794,536.638 299.9009,536.295 299.5325,535.9892 299.164,535.6834 298.6247,535.4918 298.0286,535.4766 297.489,535.463 296.9552,535.5985 296.5529,535.9187 296.1505,536.2392 295.9375,536.6822 295.8319,537.0904 295.6206,537.9065 295.7135,538.7059 295.7446,539.439 295.7758,540.1724 295.7344,540.8185 295.6235,541.0724 295.5681,541.1995 295.5368,541.2287 295.4574,541.2724 295.3778,541.3162 295.2025,541.3754 294.8434,541.357 294.4839,541.3384 294.4433,541.2763 294.3957,541.216 294.348,541.156 294.2673,540.9688 294.2577,540.605 294.2382,539.8774 294.5197,538.6399 294.7899,537.3691 295.0601,536.0985 295.3424,534.7803 295.0631,533.5307 294.9234,532.9058 294.5956,532.2768 294.0296,531.8437 293.4635,531.4106 292.7252,531.2021 291.8638,531.1819 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> +<path inkscape:connector-curvature="0" id="path17973" d="M 291.8638,531.1819 C 290.9049,531.1594 290.0426,531.449 289.4616,532.0297 288.8807,532.6101 288.6201,533.3798 288.5126,534.1698 288.2973,535.7499 288.6292,537.5849 288.9715,539.3941 289.3139,541.2033 289.6808,542.9869 289.6841,544.1479 289.6857,544.7282 289.5784,545.123 289.4953,545.2546 289.4123,545.386 289.4415,545.4101 289.0814,545.4011 288.2665,545.3804 287.9879,545.1095 287.6986,544.5055 287.4094,543.9014 287.2807,542.9221 287.3071,541.9061 287.3601,539.8742 287.9465,537.7691 287.9465,537.7691 L 286.144,537.2593 C 286.144,537.2593 285.4955,539.507 285.4343,541.8583 285.4037,543.0339 285.5007,544.2557 286.0089,545.3166 286.5171,546.3775 287.6077,547.2377 289.0335,547.2739 289.8622,547.2948 290.6786,546.8914 291.0809,546.2544 291.4832,545.6173 291.5619,544.9005 291.5598,544.1421 291.5553,542.6259 291.15,540.8235 290.8134,539.0449 290.4769,537.2662 290.2226,535.5141 290.3712,534.4234 290.4456,533.8778 290.6049,533.5391 290.7881,533.3561 290.9712,533.173 291.2172,533.0434 291.8189,533.0575 292.4123,533.0714 292.7209,533.1999 292.8918,533.3307 293.0627,533.4614 293.1614,533.6209 293.2325,533.939 293.3747,534.5751 293.2177,535.7526 292.9565,536.9804 292.6954,538.2085 292.3532,539.476 292.3848,540.6557 292.4006,541.2457 292.5143,541.8595 292.9255,542.3792 293.3369,542.8991 294.02,543.1925 294.7448,543.2297 295.3457,543.2607 295.8946,543.172 296.3586,542.9171 296.8226,542.6622 297.1575,542.243 297.3414,541.8217 297.7093,540.979 297.6502,540.1291 297.6174,539.3574 297.5847,538.5857 297.5652,537.871 297.6456,537.5607 297.6857,537.4055 297.7178,537.3838 297.7187,537.3832 297.7195,537.3826 297.7472,537.3435 297.9807,537.3494 298.265,537.3567 298.2928,537.3984 298.3356,537.4339 298.3784,537.4694 298.4555,537.5737 298.589,537.8029 298.7224,538.0321 298.9129,538.3827 299.2902,538.6871 299.6676,538.9916 300.2078,539.1877 300.8194,539.2138 302.3402,539.2787 303.1146,538.6839 303.7427,538.3407 304.8109,537.7577 306.5236,537.907 307.9417,538.3773 L 308.5331,536.6003 C 306.8424,536.0394 304.6745,535.6941 302.8443,536.6932 301.9815,537.1647 302.0191,537.3887 300.8983,537.3409 300.5851,537.3277 300.5237,537.2737 300.4675,537.2283 300.4112,537.1829 300.3372,537.0808 300.2083,536.8595 300.0794,536.638 299.9009,536.295 299.5325,535.9892 299.164,535.6834 298.6247,535.4918 298.0286,535.4766 297.489,535.463 296.9552,535.5985 296.5529,535.9187 296.1505,536.2392 295.9375,536.6822 295.8319,537.0904 295.6206,537.9065 295.7135,538.7059 295.7446,539.439 295.7758,540.1724 295.7344,540.8185 295.6235,541.0724 295.5681,541.1995 295.5368,541.2287 295.4574,541.2724 295.3778,541.3162 295.2025,541.3754 294.8434,541.357 294.4839,541.3384 294.4433,541.2763 294.3957,541.216 294.348,541.156 294.2673,540.9688 294.2577,540.605 294.2382,539.8774 294.5197,538.6399 294.7899,537.3691 295.0601,536.0985 295.3424,534.7803 295.0631,533.5307 294.9234,532.9058 294.5956,532.2768 294.0296,531.8437 293.4635,531.4106 292.7252,531.2021 291.8638,531.1819 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> </g> </g> <g inkscape:groupmode="layer" id="layer2" inkscape:label="tango" style="display:inline"> |
