Create monitor config icons (not yet used)
If anyone knows how to show images with a transparent background in X over your open windows, let me know!
|
@ -2,7 +2,7 @@
|
|||
|
||||
scriptdir="$(dirname "$0")"
|
||||
|
||||
source "$scriptdir/monitors_config"
|
||||
source "$scriptdir/monitors/config"
|
||||
[[ -n $builtin ]] || { echo "builtin empty"; exit 1; }
|
||||
[[ -n $ext1 ]] || { echo "ext1 empty"; exit 1; }
|
||||
[[ -n $ext2 ]] || { echo "ext2 empty"; exit 1; }
|
||||
|
|
BIN
i3/monitors/icons/actv-edp-1.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
i3/monitors/icons/actv-edp-1_actv-hdmi-1.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
i3/monitors/icons/actv-edp-1_actv-hdmi-1_actv-vga-1.png
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
i3/monitors/icons/actv-edp-1_actv-hdmi-1_non-vga-1.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
i3/monitors/icons/actv-edp-1_actv-vga-1.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
i3/monitors/icons/actv-edp-1_non-hdmi-1.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
i3/monitors/icons/actv-edp-1_non-hdmi-1_actv-vga-1.png
Normal file
After Width: | Height: | Size: 6 KiB |
BIN
i3/monitors/icons/actv-edp-1_non-hdmi-1_non-vga-1.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
i3/monitors/icons/actv-edp-1_non-vga-1.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
53
i3/monitors/icons/make.sh
Executable file
|
@ -0,0 +1,53 @@
|
|||
#!/bin/bash
|
||||
|
||||
laptop=edp-1
|
||||
ext1=hdmi-1; ext1_three=external-hdmi
|
||||
ext2=vga-1; ext2_three=external-vga
|
||||
|
||||
tmp=/tmp/screens-icons-generator.svg
|
||||
|
||||
rm -f *actv*.png
|
||||
|
||||
black() {
|
||||
cp "$1" "$tmp"
|
||||
shift
|
||||
for i in "$@"; do
|
||||
sed -i 's/\(id="'"$i"'" style="fill:#\)ffffff;/\1000000;/' "$tmp"
|
||||
done
|
||||
}
|
||||
|
||||
# One screen
|
||||
inkscape -e "actv-${laptop}.png" ./src/one-screen.svg
|
||||
|
||||
# Two screens
|
||||
inkscape -e "actv-${laptop}_actv-${ext1}.png" ./src/two-screens.svg
|
||||
cp "actv-${laptop}_actv-${ext1}.png" "actv-${laptop}_actv-${ext2}.png"
|
||||
|
||||
black ./src/two-screens.svg laptop
|
||||
inkscape -e "non-${laptop}_actv-${ext1}.png" "$tmp"
|
||||
cp "non-${laptop}_actv-${ext1}.png" "non-${laptop}_actv-${ext2}.png"
|
||||
|
||||
black ./src/two-screens.svg external
|
||||
inkscape -e "actv-${laptop}_non-${ext1}.png" "$tmp"
|
||||
cp "actv-${laptop}_non-${ext1}.png" "actv-${laptop}_non-${ext2}.png"
|
||||
|
||||
# Three screens
|
||||
inkscape -e "actv-${laptop}_actv-${ext1}_actv-${ext2}.png" ./src/three-screens.svg
|
||||
|
||||
black ./src/three-screens.svg laptop
|
||||
inkscape -e "non-${laptop}_actv-${ext1}_actv-${ext2}.png" "$tmp"
|
||||
|
||||
black ./src/three-screens.svg "$ext1_three"
|
||||
inkscape -e "actv-${laptop}_non-${ext1}_actv-${ext2}.png" "$tmp"
|
||||
|
||||
black ./src/three-screens.svg "$ext2_three"
|
||||
inkscape -e "actv-${laptop}_actv-${ext1}_non-${ext2}.png" "$tmp"
|
||||
|
||||
black ./src/three-screens.svg "$ext1_three" "$ext2_three"
|
||||
inkscape -e "actv-${laptop}_non-${ext1}_non-${ext2}.png" "$tmp"
|
||||
|
||||
black ./src/three-screens.svg laptop "$ext2_three"
|
||||
inkscape -e "non-${laptop}_actv-${ext1}_non-${ext2}.png" "$tmp"
|
||||
|
||||
black ./src/three-screens.svg laptop "$ext1_three"
|
||||
inkscape -e "non-${laptop}_non-${ext1}_actv-${ext2}.png" "$tmp"
|
BIN
i3/monitors/icons/non-edp-1_actv-hdmi-1.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
i3/monitors/icons/non-edp-1_actv-hdmi-1_actv-vga-1.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
i3/monitors/icons/non-edp-1_actv-hdmi-1_non-vga-1.png
Normal file
After Width: | Height: | Size: 5.5 KiB |
BIN
i3/monitors/icons/non-edp-1_actv-vga-1.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
i3/monitors/icons/non-edp-1_non-hdmi-1_actv-vga-1.png
Normal file
After Width: | Height: | Size: 5.9 KiB |
16
i3/monitors/icons/src/one-screen.svg
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1"
|
||||
width="200" height="150" viewBox="0 0 52.916708 39.6875">
|
||||
<g transform="translate(-9.1044133,-34.251689)">
|
||||
<g transform="matrix(4.1152856,0,0,4.1152856,-13.577469,-310.82372)">
|
||||
<rect
|
||||
id="laptop" style="fill:#ffffff;stroke:#000000;stroke-width:0.26511249;stroke-linecap:round;stroke-linejoin:round"
|
||||
width="8.3154764" height="5.5751486"
|
||||
x="7.8430066" y="-91.758926"
|
||||
transform="scale(1,-1)" />
|
||||
<path
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 7.8430066,91.758926 h 8.3154764 l 1.606399,1.559152 H 6.2366078 Z" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 738 B |
194
i3/monitors/icons/src/three-screens.svg
Normal file
|
@ -0,0 +1,194 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1"
|
||||
height="150"
|
||||
width="425"
|
||||
viewBox="0 0 112.44792 39.6875">
|
||||
<g transform="translate(18.653931,-34.251689)">
|
||||
<g transform="matrix(4.1152856,0,0,4.1152856,-42.785896,-310.82372)">
|
||||
<rect
|
||||
transform="scale(-1)"
|
||||
id="external-vga" style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:round"
|
||||
width="9.4261389" height="6.3311009"
|
||||
x="-23.69474" y="-90.388763" />
|
||||
<path
|
||||
d="m 18.546815,90.435823 -1.116728,1.400225 h 3.10317 l -1.116728,-1.400225 z"
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:round" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(4.1152856,0,0,4.1152856,19.627739,-310.82372)"
|
||||
style="fill:#ffffff">
|
||||
<rect
|
||||
transform="scale(1,-1)"
|
||||
x="7.8430066" y="-91.758926"
|
||||
width="8.3154764" height="5.5751486"
|
||||
id="laptop" style="fill:#ffffff;stroke:#000000;stroke-width:0.26511249;stroke-linecap:round;stroke-linejoin:round" />
|
||||
<path
|
||||
d="m 7.8430066,91.758926 h 8.3154764 l 1.606399,1.559152 H 6.2366078 Z"
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:round" />
|
||||
</g>
|
||||
<g
|
||||
style="fill:#ffffff"
|
||||
transform="matrix(4.1152856,0,0,4.1152856,-76.03428,-306.35173)">
|
||||
<rect
|
||||
transform="scale(1,-1)"
|
||||
y="-90.388763"
|
||||
x="14.268602"
|
||||
height="6.3311009"
|
||||
width="9.4261389"
|
||||
id="external-hdmi" style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:round" />
|
||||
<path d="m 18.546815,90.435823 -1.116728,1.400225 h 3.10317 l -1.116728,-1.400225 z"
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:round"/>
|
||||
</g>
|
||||
<g
|
||||
style="stroke-width:0.81570345"
|
||||
transform="matrix(5.0226855,0,0,5.0675655,-146.89061,-200.62079)">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:0.35010481;fill-rule:nonzero;stroke:#000000;stroke-width:0.05395538;stroke-miterlimit:4;stroke-dasharray:none;paint-order:markers fill stroke"
|
||||
d="m 28.361251,49.47932 c -0.03117,0 -0.04344,0.0066 -0.06072,0.02408 l -0.223064,0.225609 c -0.0248,0.02509 -0.04275,0.03699 -0.07158,0.04253 l -0.149655,0.02876 c -0.04987,0.0096 -0.105647,0.04453 -0.105647,0.10655 0,0.150198 0,0.300397 0,0.450595 0,0.05982 0.05594,0.09978 0.119527,0.09978 h 3.579168 c 0.06358,0 0.119527,-0.03996 0.119527,-0.09978 0,-0.150198 0,-0.300397 0,-0.450595 0,-0.06202 -0.05577,-0.09697 -0.105647,-0.10655 l -0.149655,-0.02876 c -0.02882,-0.0055 -0.04678,-0.01744 -0.07158,-0.04253 L 31.018862,49.5034 c -0.0173,-0.0175 -0.02957,-0.02408 -0.06073,-0.02408 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 28.408203,49.609375 a 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128906 a 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0 h 0.15039 a 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128906 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.0059 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.0059,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0 h -0.15039 a 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0039,0 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 28.701172,49.609375 a 0.02646098,0.02646098 0 0 0 -0.0059,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128906 a 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.0059,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0 h 0.150391 a 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,-0.0039 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128906 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.0059,0 0.02646098,0.02646098 0 0 0 -0.002,0 h -0.150391 a 0.02646098,0.02646098 0 0 0 -0.0059,0 0.02646098,0.02646098 0 0 0 -0.002,0 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 28.992188,49.609375 a 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.0039,0.0039 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128906 a 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0 h 0.150391 a 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128906 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.0059 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.0059,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0 H 29 a 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0039,0 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 29.285156,49.609375 a 0.02646098,0.02646098 0 0 0 -0.0059,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128906 a 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.0059,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0 h 0.15039 a 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,-0.0039 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128906 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0 h -0.15039 a 0.02646098,0.02646098 0 0 0 -0.0059,0 0.02646098,0.02646098 0 0 0 -0.002,0 z"
|
||||
/>
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 29.576172,49.609375 a 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.0059,0.0039 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128906 a 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0 h 0.150391 a 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128906 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.0059 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.0059,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0 h -0.150391 a 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 29.869141,49.609375 a 0.02646098,0.02646098 0 0 0 -0.0059,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128906 a 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.0059,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0 h 0.150391 a 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.0059,-0.0039 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128906 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0 h -0.150391 a 0.02646098,0.02646098 0 0 0 -0.0059,0 0.02646098,0.02646098 0 0 0 -0.002,0 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 30.160156,49.609375 a 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0.0039 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128906 a 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,0 h 0.15039 a 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128906 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.0059 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.0059,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0 h -0.15039 a 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 30.453125,49.609375 a 0.02646098,0.02646098 0 0 0 -0.0059,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128906 a 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.0059,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0 h 0.15039 a 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,-0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128906 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0 h -0.15039 a 0.02646098,0.02646098 0 0 0 -0.0059,0 0.02646098,0.02646098 0 0 0 -0.002,0 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 30.744141,49.609375 a 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0.0039 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128906 a 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,0 h 0.150391 a 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128906 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.0059 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.0059,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0 h -0.150391 a 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 28.263672,50.169922 a 0.02646098,0.02646098 0 0 0 -0.0059,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128907 a 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.0059,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0 h 0.150391 a 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,-0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.0059,-0.0039 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128907 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0 h -0.150391 a 0.02646098,0.02646098 0 0 0 -0.0059,0 0.02646098,0.02646098 0 0 0 -0.002,0 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 28.554688,50.169922 a 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0.0039 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128907 a 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.0059 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.0039,0.0059 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,0 h 0.150391 a 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128907 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.0059 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.0059,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0 H 28.5625 a 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 28.847656,50.169922 a 0.02646098,0.02646098 0 0 0 -0.0059,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128907 a 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.0059,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0 h 0.15039 a 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,-0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128907 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0 h -0.15039 a 0.02646098,0.02646098 0 0 0 -0.0059,0 0.02646098,0.02646098 0 0 0 -0.002,0 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 29.138672,50.169922 a 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0.0039 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 v 0.128907 a 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.0059 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.0039,0.0059 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,0 h 0.150391 a 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.0059,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128907 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.0059 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.0059,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0 h -0.150391 a 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 29.431641,50.169922 a 0.02646098,0.02646098 0 0 0 -0.0059,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128907 a 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.0059,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0 h 0.150391 a 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,-0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128907 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0 h -0.150391 a 0.02646098,0.02646098 0 0 0 -0.0059,0 0.02646098,0.02646098 0 0 0 -0.002,0 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 29.722656,50.169922 a 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.0059,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.0059 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128907 a 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.0059 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.0039,0.0059 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,0 h 0.15039 a 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.0059,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128907 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.0059 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.0059,-0.0039 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.0059,0 0.02646098,0.02646098 0 0 0 -0.002,0 h -0.15039 a 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 30.013672,50.169922 a 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128907 a 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.0059,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0 h 0.152344 a 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,-0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128907 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0 h -0.152344 a 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0039,0 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 30.306641,50.169922 a 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.0059,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.0059 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128907 a 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.0039,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.0059,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,0 h 0.150391 a 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.0059,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128907 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.0059 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.0059,-0.0039 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.0059,0 0.02646098,0.02646098 0 0 0 -0.002,0 h -0.150391 a 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0059,0 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 30.597656,50.169922 a 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128907 a 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.0059 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0 h 0.152343 a 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,-0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128907 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.0059 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.0059,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0 h -0.152343 a 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.0039,0 z" />
|
||||
<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;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;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;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;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-fill:#000000;stroke:none;stroke-width:0.0431643;stroke-linecap:round;stroke-linejoin:round"
|
||||
d="m 30.890625,50.169922 a 0.02646098,0.02646098 0 0 0 -0.0059,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.002 0.02646098,0.02646098 0 0 0 -0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0,0.002 v 0.128907 a 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.0059 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0.0039 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0 h 0.15039 a 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,0 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,0 0.02646098,0.02646098 0 0 0 0.0059,-0.0039 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0.002,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 v -0.128907 a 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.0059 0.02646098,0.02646098 0 0 0 0,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.002,0 0.02646098,0.02646098 0 0 0 -0.002,-0.002 0.02646098,0.02646098 0 0 0 -0.0059,0 0.02646098,0.02646098 0 0 0 -0.002,0 h -0.15039 a 0.02646098,0.02646098 0 0 0 -0.0059,0 0.02646098,0.02646098 0 0 0 -0.002,0 z" />
|
||||
<path
|
||||
d="m 28.434966,49.875512 c -0.02887,0 -0.05195,0.0067 -0.0708,0.01654 l -0.280085,0.145727 c -0.01494,0.0078 -0.02146,0.01474 -0.02222,0.02274 -9.76e-4,0.01028 0.0079,0.02119 0.02377,0.02119 h 3.14761 c 0.0159,0 0.02526,-0.01091 0.02429,-0.02119 -7.57e-4,-0.008 -0.0073,-0.01496 -0.02222,-0.02274 l -0.280088,-0.145727 c -0.01885,-0.0098 -0.04193,-0.01654 -0.0708,-0.01654 z"
|
||||
style="fill:#000000;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:round" />
|
||||
</g>
|
||||
<g transform="matrix(2.9044117,0,0,2.8503641,-68.186669,-121.33515)">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:0.34901962;fill-rule:nonzero;stroke:#000000;stroke-width:0.18924682;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke"
|
||||
d="m 34.157974,58.572955 c -0.274836,0 -0.539275,0.224671 -0.496094,0.496094 l 0.115756,0.727604 c 0.04318,0.27142 0.221257,0.496094 0.496093,0.496094 h 3.179652 c 0.274836,0 0.452913,-0.224674 0.496093,-0.496094 l 0.115756,-0.727604 c 0.04318,-0.271423 -0.221258,-0.496094 -0.496094,-0.496094 z"/>
|
||||
<g
|
||||
style="stroke-width:1.43027878">
|
||||
<circle
|
||||
r="0.098221555"
|
||||
cy="59.023209"
|
||||
cx="34.547092"
|
||||
style="fill:#000000;stroke:none;stroke-width:0.18921396;stroke-linecap:round;stroke-linejoin:round" />
|
||||
<circle
|
||||
style="fill:#000000;stroke:none;stroke-width:0.18921396;stroke-linecap:round;stroke-linejoin:round"
|
||||
cx="35.245811"
|
||||
cy="59.023209"
|
||||
r="0.098221555" />
|
||||
<circle
|
||||
r="0.098221555"
|
||||
cy="59.023209"
|
||||
cx="35.944523"
|
||||
style="fill:#000000;stroke:none;stroke-width:0.18921396;stroke-linecap:round;stroke-linejoin:round" />
|
||||
<circle
|
||||
style="fill:#000000;stroke:none;stroke-width:0.18921396;stroke-linecap:round;stroke-linejoin:round"
|
||||
cx="36.643238"
|
||||
cy="59.023209"
|
||||
r="0.098221555" />
|
||||
<circle
|
||||
r="0.098221555"
|
||||
cy="59.023209"
|
||||
cx="37.341953"
|
||||
style="fill:#000000;stroke:none;stroke-width:0.18921396;stroke-linecap:round;stroke-linejoin:round" />
|
||||
<circle
|
||||
style="fill:#000000;stroke:none;stroke-width:0.18921396;stroke-linecap:round;stroke-linejoin:round"
|
||||
cx="34.547092"
|
||||
cy="59.841724"
|
||||
r="0.098221555" />
|
||||
<circle
|
||||
r="0.098221555"
|
||||
cy="59.841724"
|
||||
cx="35.245811"
|
||||
style="fill:#000000;stroke:none;stroke-width:0.18921396;stroke-linecap:round;stroke-linejoin:round" />
|
||||
<circle
|
||||
style="fill:#000000;stroke:none;stroke-width:0.18921396;stroke-linecap:round;stroke-linejoin:round"
|
||||
cx="35.944523"
|
||||
cy="59.841724"
|
||||
r="0.098221555" />
|
||||
<circle
|
||||
r="0.098221555"
|
||||
cy="59.841724"
|
||||
cx="36.643238"
|
||||
style="fill:#000000;stroke:none;stroke-width:0.18921396;stroke-linecap:round;stroke-linejoin:round" />
|
||||
<circle
|
||||
style="fill:#000000;stroke:none;stroke-width:0.18921396;stroke-linecap:round;stroke-linejoin:round"
|
||||
cx="37.341953"
|
||||
cy="59.841724"
|
||||
r="0.098221555" />
|
||||
<circle
|
||||
r="0.098221555"
|
||||
cy="59.455853"
|
||||
cx="34.216709"
|
||||
style="fill:#000000;stroke:none;stroke-width:0.18921396;stroke-linecap:round;stroke-linejoin:round" />
|
||||
<circle
|
||||
style="fill:#000000;stroke:none;stroke-width:0.18921396;stroke-linecap:round;stroke-linejoin:round"
|
||||
cx="34.915428"
|
||||
cy="59.455853"
|
||||
r="0.098221555" />
|
||||
<circle
|
||||
r="0.098221555"
|
||||
cy="59.455853"
|
||||
cx="35.61414"
|
||||
style="fill:#000000;stroke:none;stroke-width:0.18921396;stroke-linecap:round;stroke-linejoin:round" />
|
||||
<circle
|
||||
style="fill:#000000;stroke:none;stroke-width:0.18921396;stroke-linecap:round;stroke-linejoin:round"
|
||||
cx="36.312855"
|
||||
cy="59.455853"
|
||||
r="0.098221555" />
|
||||
<circle
|
||||
r="0.098221555"
|
||||
cy="59.455853"
|
||||
cx="37.01157"
|
||||
style="fill:#000000;stroke:none;stroke-width:0.18921396;stroke-linecap:round;stroke-linejoin:round" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 66 KiB |
22
i3/monitors/icons/src/two-screens.svg
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1"
|
||||
height="150" width="300" viewBox="0 0 79.375062 39.6875">
|
||||
<g transform="translate(18.653931,-34.251689)">
|
||||
<g transform="matrix(4.1152856,0,0,4.1152856,-75.991104,-310.82372)">
|
||||
<rect transform="scale(-1)"
|
||||
id="external" style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:round"
|
||||
width="9.4261389" height="6.3311009"
|
||||
x="-23.69474" y="-90.388763" />
|
||||
<path d="m 18.546815,90.435823 -1.116728,1.400225 h 3.10317 l -1.116728,-1.400225 z"
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:round" />
|
||||
</g>
|
||||
<g transform="matrix(4.1152856,0,0,4.1152856,-13.577469,-310.82372)">
|
||||
<rect transform="scale(1,-1)"
|
||||
id="laptop" style="fill:#ffffff;stroke:#000000;stroke-width:0.26511249;stroke-linecap:round;stroke-linejoin:round"
|
||||
width="8.3154764" height="5.5751486"
|
||||
y="-91.758926" x="7.8430066" />
|
||||
<path d="m 7.8430066,91.758926 h 8.3154764 l 1.606399,1.559152 H 6.2366078 Z"
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:round" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |