改进排版

This commit is contained in:
2025-02-23 20:51:53 +08:00
parent 2bf0000c22
commit 791c17ebdf
21 changed files with 1946 additions and 1827 deletions
@@ -83,7 +83,10 @@ $$\begin{split}
\end{split}$$
其中
$$
\phi_i=2\pi\xi, \theta_i=\dfrac{\pi}{2}\xi
\begin{aligned}
\phi_i&=2\pi\xi\\
\theta_i&=\dfrac{\pi}{2}\xi
\end{aligned}
$$
$\xi$表示均匀分布在[0,1]之间的随机变量
@@ -101,7 +104,10 @@ $$\begin{split}
\end{split}$$
其中
$$
\phi_i=2\pi\xi, \theta_i=\arccos(1-\xi)
\begin{aligned}
\phi_i&=2\pi\xi\\
\theta_i&=\arccos(1-\xi)
\end{aligned}
$$
````cpp :no-line-numbers
vec3 irradiance = vec3(0.0);
@@ -8,11 +8,17 @@ L_{os}(\vec{\omega_o})=\int_{\Omega}f_s(\vec{\omega_i}, \vec{\omega_o})L_i(\vec{
$$
同样使用蒙特卡洛进行近似积分
$$
\int_{\Omega}f_s(\vec{\omega_i}, \vec{\omega_o})L_i(\vec{\omega_i})(\vec{\omega}_i\vec{n})d\omega_i \approx \dfrac{1}{N}\sum_{k=1}^{N}\dfrac{f_s(\vec{\omega_k}, \vec{\omega_o})L_i(\vec{\omega_k})(\vec{\omega_k}\cdot\vec{n})}{\text{pdf}(\vec{\omega_k})}
\begin{aligned}
&\int_{\Omega}f_s(\vec{\omega_i}, \vec{\omega_o})L_i(\vec{\omega_i})(\vec{\omega}_i\vec{n})d\omega_i \\
\approx &\dfrac{1}{N}\sum_{k=1}^{N}\dfrac{f_s(\vec{\omega_k}, \vec{\omega_o})L_i(\vec{\omega_k})(\vec{\omega_k}\cdot\vec{n})}{\text{pdf}(\vec{\omega_k})}
\end{aligned}
$$
EPIC在此基础上提出了一种近似[计算方法](http://blog.selfshadow.com/publications/s2013-shading-course/karis/s2013_pbs_epic_notes_v2.pdf)
$$
\dfrac{1}{N}\sum_{k=1}^{N}\dfrac{f_s(\vec{\omega_k}, \vec{\omega_o})L_i(\vec{\omega_k})(\vec{\omega_k}\cdot\vec{n})}{\text{pdf}(\vec{\omega_k}, \vec{\omega_o})}\approx\left(\dfrac{1}{N}\sum_{k=1}^N L_i(\vec{\omega_k})\right)\left(\dfrac{1}{N}\sum_{k=1}^{N}\dfrac{f_s(\vec{\omega_k}, \vec{\omega_o})(\vec{\omega_k}\cdot\vec{n})}{\text{pdf}(\vec{\omega_k})}\right)
\begin{aligned}
&\dfrac{1}{N}\sum_{k=1}^{N}\dfrac{f_s(\vec{\omega_k}, \vec{\omega_o})L_i(\vec{\omega_k})(\vec{\omega_k}\cdot\vec{n})}{\text{pdf}(\vec{\omega_k}, \vec{\omega_o})}\\
\approx&\left(\dfrac{1}{N}\sum_{k=1}^N L_i(\vec{\omega_k})\right)\left(\dfrac{1}{N}\sum_{k=1}^{N}\dfrac{f_s(\vec{\omega_k}, \vec{\omega_o})(\vec{\omega_k}\cdot\vec{n})}{\text{pdf}(\vec{\omega_k})}\right)
\end{aligned}
$$
这种方法的好处是可以通过分开预计算,尽量减少实际渲染时的计算量,这个公式可以理解为“Env. lighting x BRDF”,左边的第一部分是小平面受到的所有环境光的采样值,第二部分只跟材质的BRDF属性相关。
@@ -71,7 +77,10 @@ $$\begin{split}
\end{split}$$
使用Mathmatica计算可得
$$
\text{cdf}(\theta)=\dfrac{\sin^2\theta}{\cos^2\theta(\alpha^2-1)+1}=\dfrac{1-\cos^2\theta}{\cos^2\theta(\alpha^2-1)+1}
\begin{aligned}
\text{cdf}(\theta)&=\dfrac{\sin^2\theta}{\cos^2\theta(\alpha^2-1)+1}\\
&=\dfrac{1-\cos^2\theta}{\cos^2\theta(\alpha^2-1)+1}
\end{aligned}
$$
根据前面的概率知识,可以得到微表面的法线的球坐标$\theta$和$\phi$的采样函数为
$$\begin{split}
@@ -85,7 +94,7 @@ $$
\dfrac{1}{N}\sum_{k=1}^N L_i(\vec{\omega}_k)\approx\dfrac{1}{\sum_{k=1}^{N}(\vec{n}\cdot\vec{\omega}_k)}\sum_{k=1}^{N}{L_i(\vec{\omega}_k)(\vec{n}\cdot\vec{\omega}_k)}
$$
```cpp
```cpp :no-line-numbers
// make the simplyfying assumption that V equals R equals the normal
vec3 R = N;
vec3 V = R;
@@ -96,7 +105,8 @@ float totalWeight = 0.0;
for(uint i = 0u; i < SAMPLE_COUNT; ++i)
{
// generates a sample vector that's biased towards the preferred alignment direction (importance sampling).
// generates a sample vector that's biased towards the preferred
//alignment direction (importance sampling).
vec2 Xi = Hammersley(i, SAMPLE_COUNT);
vec3 H = ImportanceSampleGGX(Xi, N, roughness);
vec3 L = normalize(2.0 * dot(V, H) * H - V);
+120 -123
View File
@@ -2,21 +2,21 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="600"
width="510"
height="300"
viewBox="0 0 600 300"
viewBox="0 0 510 300"
version="1.1"
id="svg8"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="ibl_02.svg">
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
sodipodi:docname="ibl_02.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
@@ -25,25 +25,31 @@
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4778532"
inkscape:cx="303.36494"
inkscape:cy="115.86812"
inkscape:cx="303.48075"
inkscape:cy="116.04671"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="true"
units="px"
inkscape:window-width="1920"
inkscape:window-height="1017"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-width="2560"
inkscape:window-height="1494"
inkscape:window-x="-11"
inkscape:window-y="-11"
inkscape:window-maximized="1"
inkscape:snap-grids="false"
inkscape:snap-nodes="false"
inkscape:snap-intersection-paths="false">
inkscape:snap-intersection-paths="false"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
spacingy="10"
spacingx="10"
id="grid10"
type="xygrid" />
type="xygrid"
originx="0"
originy="0"
units="px" />
</sodipodi:namedview>
<defs
id="defs2">
@@ -58,7 +64,7 @@
<path
inkscape:connector-curvature="0"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path5360" />
</marker>
@@ -73,7 +79,7 @@
<path
inkscape:connector-curvature="0"
transform="matrix(0.4,0,0,0.4,4,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path5254" />
</marker>
@@ -90,7 +96,7 @@
inkscape:connector-curvature="0"
id="path5142"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
@@ -106,7 +112,7 @@
inkscape:connector-curvature="0"
id="path5048"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
@@ -121,7 +127,7 @@
inkscape:connector-curvature="0"
id="path4972"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
@@ -136,7 +142,7 @@
<path
inkscape:connector-curvature="0"
transform="matrix(0.4,0,0,0.4,4,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path872" />
</marker>
@@ -152,7 +158,7 @@
<path
inkscape:connector-curvature="0"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path4834" />
</marker>
@@ -169,7 +175,7 @@
inkscape:connector-curvature="0"
id="path4776"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
@@ -185,7 +191,7 @@
inkscape:connector-curvature="0"
id="path4098"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
@@ -199,7 +205,7 @@
<path
inkscape:connector-curvature="0"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1214" />
</marker>
@@ -216,7 +222,7 @@
inkscape:connector-curvature="0"
id="path1161"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" />
</marker>
<marker
@@ -231,7 +237,7 @@
<path
inkscape:connector-curvature="0"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path869" />
</marker>
@@ -244,7 +250,6 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
@@ -256,22 +261,22 @@
<path
inkscape:connector-curvature="0"
id="path24"
d="m 60.015326,370.22184 a 240,240 0 0 1 240.000004,-240 240,240 0 0 1 240,240"
d="m 9.9426936,370.22184 a 240,240 0 0 1 240.0000064,-240 240,240 0 0 1 240,240"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:9, 9;stroke-dashoffset:0;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path834"
d="M 90.015326,370.22184 H 510.01533"
d="M 39.942694,370.22184 H 459.9427"
style="fill:none;stroke:#000000;stroke-width:1.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path836"
d="m 300.01533,370.22184 -15,15"
d="m 249.9427,370.22184 -15,15"
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<use
height="100%"
width="100%"
transform="translate(30,5e-6)"
transform="translate(30)"
id="use838"
xlink:href="#path836"
y="0"
@@ -279,7 +284,7 @@
<use
height="100%"
width="100%"
transform="translate(30,5e-6)"
transform="translate(30)"
id="use840"
xlink:href="#use838"
y="0"
@@ -287,7 +292,7 @@
<use
height="100%"
width="100%"
transform="translate(30,5e-6)"
transform="translate(30)"
id="use842"
xlink:href="#use840"
y="0"
@@ -295,7 +300,7 @@
<use
height="100%"
width="100%"
transform="translate(30,5e-6)"
transform="translate(30)"
id="use844"
xlink:href="#use842"
y="0"
@@ -303,7 +308,7 @@
<use
height="100%"
width="100%"
transform="translate(30,5e-6)"
transform="translate(30)"
id="use846"
xlink:href="#use844"
y="0"
@@ -311,7 +316,7 @@
<use
height="100%"
width="100%"
transform="translate(30,5e-6)"
transform="translate(30)"
id="use848"
xlink:href="#use846"
y="0"
@@ -319,7 +324,7 @@
<use
height="100%"
width="100%"
transform="translate(-210,5e-6)"
transform="translate(-210)"
id="use850"
xlink:href="#use848"
y="0"
@@ -327,13 +332,12 @@
<use
height="100%"
width="100%"
transform="translate(-30,5e-6)"
transform="translate(-30)"
id="use852"
xlink:href="#use850"
y="0"
x="0" />
<use
transform="translate(5e-8,5e-6)"
height="100%"
width="100%"
id="use854"
@@ -343,7 +347,7 @@
<use
height="100%"
width="100%"
transform="translate(-30,5e-6)"
transform="translate(-30)"
id="use856"
xlink:href="#use854"
y="0"
@@ -351,7 +355,7 @@
<use
height="100%"
width="100%"
transform="translate(-30,5e-6)"
transform="translate(-30)"
id="use858"
xlink:href="#use856"
y="0"
@@ -359,7 +363,7 @@
<use
height="100%"
width="100%"
transform="translate(-30,5e-6)"
transform="translate(-30)"
id="use860"
xlink:href="#use858"
y="0"
@@ -367,7 +371,7 @@
<use
height="100%"
width="100%"
transform="translate(-30,5e-6)"
transform="translate(-30)"
id="use862"
xlink:href="#use860"
y="0"
@@ -375,27 +379,27 @@
<path
inkscape:connector-curvature="0"
id="path864"
d="m 300.01533,370.22184 v -120"
d="m 249.9427,370.22184 v -120"
style="fill:none;stroke:#000000;stroke-width:1.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend)" />
<path
inkscape:connector-curvature="0"
id="path1153"
d="M 300.01533,370.22185 404.8716,304.60812"
d="M 249.9427,370.22185 354.79897,304.60812"
style="fill:none;stroke:#000000;stroke-width:1.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker1163)" />
<path
inkscape:connector-curvature="0"
id="path1189"
d="m 435.16492,250.13576 a 10.403604,10.403604 0 0 0 -7.15202,9.1039 10.403604,10.403604 0 0 0 -7.03765,-0.22389 10.403604,10.403604 0 0 0 -6.67935,13.10893 10.403604,10.403604 0 0 0 11.03498,7.11296 l -5.56032,3.6118 1.61082,2.48314 -15.5787,6.22624 11.10678,16.93782 11.76329,-11.93912 0.90111,1.38913 30.19165,-19.6057 -9.8033,-15.09723 -2.30997,1.49912 a 10.403604,10.403604 0 0 0 0.62442,-7.92868 10.403604,10.403604 0 0 0 -13.11174,-6.67842 z m -0.60435,19.56627 a 10.403604,10.403604 0 0 0 4.36665,0.70669 l -5.76887,3.74734 a 10.403604,10.403604 0 0 0 1.40222,-4.45403 z"
d="m 385.09229,250.13576 a 10.403604,10.403604 0 0 0 -7.15202,9.1039 10.403604,10.403604 0 0 0 -7.03765,-0.22389 10.403604,10.403604 0 0 0 -6.67935,13.10893 10.403604,10.403604 0 0 0 11.03498,7.11296 l -5.56032,3.6118 1.61082,2.48314 -15.5787,6.22624 11.10678,16.93782 11.76329,-11.93912 0.90111,1.38913 30.19165,-19.6057 -9.8033,-15.09723 -2.30997,1.49912 a 10.403604,10.403604 0 0 0 0.62442,-7.92868 10.403604,10.403604 0 0 0 -13.11174,-6.67842 z m -0.60435,19.56627 a 10.403604,10.403604 0 0 0 4.36665,0.70669 l -5.76887,3.74734 a 10.403604,10.403604 0 0 0 1.40222,-4.45403 z"
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path1206"
d="m 300.01533,130.22184 v 30"
d="m 249.9427,130.22184 v 30"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4100)" />
<use
height="100%"
width="100%"
transform="rotate(-13,300.01531,370.22207)"
transform="rotate(-13,249.94267,370.22207)"
id="use4698"
xlink:href="#path1206"
y="0"
@@ -403,7 +407,7 @@
<use
height="100%"
width="100%"
transform="rotate(-13,300.01523,370.22162)"
transform="rotate(-13,249.94259,370.22162)"
id="use4700"
xlink:href="#use4698"
y="0"
@@ -411,7 +415,7 @@
<use
height="100%"
width="100%"
transform="rotate(-13,300.01516,370.22162)"
transform="rotate(-13,249.94252,370.22162)"
id="use4702"
xlink:href="#use4700"
y="0"
@@ -419,7 +423,7 @@
<use
height="100%"
width="100%"
transform="rotate(-13,300.01546,370.22196)"
transform="rotate(-13,249.94282,370.22196)"
id="use4704"
xlink:href="#use4702"
y="0"
@@ -427,7 +431,7 @@
<use
height="100%"
width="100%"
transform="rotate(-13,300.01558,370.222)"
transform="rotate(-13,249.94294,370.222)"
id="use4706"
xlink:href="#use4704"
y="0"
@@ -435,7 +439,7 @@
<use
height="100%"
width="100%"
transform="rotate(-13,300.01514,370.22178)"
transform="rotate(-13,249.9425,370.22178)"
id="use4708"
xlink:href="#use4706"
y="0"
@@ -443,7 +447,7 @@
<use
height="100%"
width="100%"
transform="matrix(-1,0,0,1,600.03066,5e-6)"
transform="matrix(-1,0,0,1,499.8854,5e-6)"
id="use4710"
xlink:href="#use4698"
y="0"
@@ -451,7 +455,7 @@
<use
height="100%"
width="100%"
transform="matrix(-1,0,0,1,600.03065,-1e-5)"
transform="matrix(-1,0,0,1,499.88539,-1e-5)"
id="use4712"
xlink:href="#use4700"
y="0"
@@ -459,7 +463,7 @@
<use
height="100%"
width="100%"
transform="matrix(-1,0,0,1,600.03065,-1e-5)"
transform="matrix(-1,0,0,1,499.88539,-1e-5)"
id="use4714"
xlink:href="#use4702"
y="0"
@@ -467,7 +471,7 @@
<use
height="100%"
width="100%"
transform="matrix(-1,0,0,1,600.03065,-2.5e-5)"
transform="matrix(-1,0,0,1,499.88539,-2.5e-5)"
id="use4716"
xlink:href="#use4704"
y="0"
@@ -475,7 +479,7 @@
<use
height="100%"
width="100%"
transform="matrix(-1,0,0,1,600.03065,-4e-5)"
transform="matrix(-1,0,0,1,499.88539,-4e-5)"
id="use4718"
xlink:href="#use4706"
y="0"
@@ -483,7 +487,7 @@
<use
height="100%"
width="100%"
transform="matrix(-1,0,0,1,600.03065,-4e-5)"
transform="matrix(-1,0,0,1,499.88539,-4e-5)"
id="use4720"
xlink:href="#use4708"
y="0"
@@ -491,39 +495,39 @@
<path
inkscape:connector-curvature="0"
id="path4760"
d="M 300.01533,370.22184 246.43878,328.45151"
d="M 249.9427,370.22184 196.36615,328.45151"
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4778)" />
<path
inkscape:connector-curvature="0"
id="path4762"
d="m 265.09907,331.50174 34.91626,38.7201 -19.66507,-36.56698"
d="m 215.02644,331.50174 34.91626,38.7201 -19.66507,-36.56698"
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow1Mstart);marker-end:url(#marker4836)" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path4764"
d="m 296.31917,336.52568 3.69616,33.69617 8.46902,-21.14693"
d="m 246.24654,336.52568 3.69616,33.69617 8.46902,-21.14693"
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker5144);marker-end:url(#marker4974)" />
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path4766"
d="m 314.95426,356.34928 -14.93893,13.87257 -57.52392,-23.28949"
d="M 264.88163,356.34928 249.9427,370.22185 192.41878,346.93236"
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker5256);marker-end:url(#marker5050)" />
<path
inkscape:connector-curvature="0"
id="path4768"
d="M 300.01533,370.22184 253.25696,358.9539"
d="M 249.9427,370.22184 203.18433,358.9539"
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5362)" />
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path5456"
d="m 282.50337,369.89888 c 0,0 -26.91387,-18.12201 -30.32296,-23.14593 -3.4091,-5.02394 -4.30623,-6.27991 -2.87082,-8.2536 1.43541,-1.97367 18.48087,0.17943 22.06938,1.07656 3.58852,0.89712 17.27122,4.0705 23.69447,7.68453 5.91577,3.44485 8.64865,5.07008 13.37265,11.80867 2.85148,4.51529 2.51476,5.80834 0.14646,11.14757"
d="m 232.43074,369.89888 c 0,0 -26.91387,-18.12201 -30.32296,-23.14593 -3.4091,-5.02394 -4.30623,-6.27991 -2.87082,-8.2536 1.43541,-1.97367 18.48087,0.17943 22.06938,1.07656 3.58852,0.89712 17.27122,4.0705 23.69447,7.68453 5.91577,3.44485 8.64865,5.07008 13.37265,11.80867 2.85148,4.51529 2.51476,5.80834 0.14646,11.14757"
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
id="g7780"
transform="translate(129.24153,-154.27784)">
transform="translate(79.168898,-154.27784)">
<g
word-spacing="normal"
letter-spacing="normal"
@@ -536,7 +540,7 @@
xml:space="preserve"
transform="matrix(0.42857143,0,0,-0.42857143,-75,450)"
id="g7778"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"><path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"><path
id="path7756"
d="m 484.52,419.06 h -1.25 c -0.55,-5.1 -1.25,-11.31 -10.02,-11.31 h -4.07 c -2.35,0 -2.46,0.34 -2.46,1.98 v 26.56 c 0,1.69 0,2.39 4.74,2.39 h 1.65 v 1.55 c -1.79,-0.16 -6.32,-0.16 -8.37,-0.16 -1.94,0 -5.83,0 -7.58,0.16 v -1.55 h 1.2 c 3.83,0 3.94,-0.54 3.94,-2.34 v -26.25 c 0,-1.8 -0.11,-2.34 -3.94,-2.34 h -1.2 v -1.55 h 25.95 z"
inkscape:connector-curvature="0"
@@ -580,20 +584,21 @@
id="path7776"
d="m 694.67,417.71 0.05,1.05 c 0.3,7.42 4.48,8.66 6.19,8.66 5.12,0 5.62,-6.72 5.62,-8.66 h -11.81 l -0.05,-1.05 h 13.91 c 1.09,0 1.23,0 1.23,1.05 0,4.92 -2.68,9.75 -8.9,9.75 -5.78,0 -10.38,-5.12 -10.38,-11.36 0,-6.67 5.24,-11.5 10.97,-11.5 6.08,0 8.31,5.53 8.31,6.47 0,0.5 -0.39,0.61 -0.64,0.61 -0.45,0 -0.54,-0.3 -0.65,-0.7 -1.74,-5.13 -6.22,-5.13 -6.72,-5.13 -2.5,0 -4.49,1.49 -5.63,3.33 -1.5,2.39 -1.5,5.69 -1.5,7.48 z"
inkscape:connector-curvature="0"
style="fill:#000000;stroke-width:0" /></g> </g>
style="fill:#000000;stroke-width:0" /></g>
</g>
<use
x="0"
y="0"
xlink:href="#path1153"
id="use1088"
transform="matrix(-1,0,0,1,600.03066,-1e-5)"
transform="matrix(-1,0,0,1,499.8854,-1e-5)"
width="100%"
height="100%" />
<g
transform="translate(54.809233,45.674361)"
transform="translate(4.7366006,45.674361)"
id="g1200">
<g
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="g1198"
transform="matrix(0.42857143,0,0,-0.42857143,-75,450)"
xml:space="preserve"
@@ -616,82 +621,71 @@
style="fill:#000000;stroke-width:0"
inkscape:connector-curvature="0"
d="m 494.67,405.79 v 0.02 0.01 l 0.01,0.02 v 0.03 l 0.01,0.03 0.01,0.03 v 0.03 l 0.01,0.04 0.01,0.04 0.01,0.05 0.02,0.04 0.01,0.06 0.01,0.05 0.01,0.05 0.03,0.12 0.04,0.13 0.03,0.13 0.03,0.15 0.04,0.14 0.04,0.15 0.04,0.15 0.08,0.32 0.08,0.31 0.04,0.15 0.04,0.15 0.04,0.14 0.03,0.14 0.04,0.14 0.03,0.12 0.03,0.12 0.02,0.05 0.01,0.05 0.01,0.05 0.02,0.05 0.01,0.04 0.01,0.04 0.01,0.04 0.01,0.03 0.01,0.03 v 0.03 l 0.01,0.02 0.01,0.02 v 0.01 0.01 c 0.08,0.29 1.08,2.02 2.21,2.86 0.37,0.27 1.31,0.97 2.81,0.97 0.34,0 1.22,-0.03 1.92,-0.48 -1.12,-0.31 -1.53,-1.3 -1.53,-1.92 0,-0.77 0.59,-1.29 1.39,-1.29 0.8,0 1.95,0.66 1.95,2.13 0,1.81 -1.92,2.53 -3.7,2.53 -1.81,0 -3.37,-0.72 -4.91,-2.47 -0.62,2.13 -2.75,2.47 -3.59,2.47 -1.28,0 -2.16,-0.8 -2.72,-1.76 -0.79,-1.36 -1.28,-3.4 -1.28,-3.57 0,-0.45 0.49,-0.45 0.59,-0.45 0.49,0 0.52,0.11 0.77,1.05 0.52,2.12 1.19,3.76 2.55,3.76 0.9,0 1.14,-0.76 1.14,-1.7 0,-0.67 -0.31,-1.95 -0.56,-2.89 -0.24,-0.95 -0.58,-2.38 -0.77,-3.14 l -1.11,-4.47 c -0.14,-0.44 -0.34,-1.31 -0.34,-1.42 0,-0.77 0.62,-1.11 1.18,-1.11 0.52,0 1.22,0.31 1.49,1 0.08,0.22 0.45,1.75 0.67,2.62 z"
id="path1196" /></g> </g>
id="path1196" /></g>
</g>
<path
transform="translate(0,100)"
inkscape:connector-curvature="0"
id="path1971"
d="m 276.60948,260.26333 -15.79871,-6.41375 -2.43992,-1.96798 c -3.86158,-3.11468 -5.14033,-4.41259 -6.82006,-6.92227 -1.99106,-2.97483 -2.39477,-3.79778 -2.33058,-4.75081 l 0.0511,-0.75837 21.63596,13.53902 c 11.89978,7.44647 21.67536,13.57842 21.72352,13.62658 0.0482,0.0482 0.0178,0.0817 -0.0675,0.0744 -0.0853,-0.007 -7.26449,-2.8993 -15.95378,-6.42686 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.08458215;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
d="m 226.53685,360.26333 -15.79871,-6.41375 -2.43992,-1.96798 c -3.86158,-3.11468 -5.14033,-4.41259 -6.82006,-6.92227 -1.99106,-2.97483 -2.39477,-3.79778 -2.33058,-4.75081 l 0.0511,-0.75837 21.63596,13.53902 c 11.89978,7.44647 21.67536,13.57842 21.72352,13.62658 0.0482,0.0482 0.0178,0.0817 -0.0675,0.0744 -0.0853,-0.007 -7.26449,-2.8993 -15.95378,-6.42686 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.0845821;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
transform="translate(0,100)"
inkscape:connector-curvature="0"
id="path1973"
d="m 269.51537,250.16076 -18.83287,-11.79248 1.07062,-0.13597 c 0.58884,-0.0748 2.3083,-0.0903 3.82102,-0.0344 l 2.7504,0.10158 15.09643,11.7667 c 8.30304,6.47168 15.12816,11.7968 15.16692,11.8336 0.51169,0.48573 -3.06543,-1.71597 -19.07252,-11.73903 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.08458215;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
d="m 219.44274,350.16076 -18.83287,-11.79248 1.07062,-0.13597 c 0.58884,-0.0748 2.3083,-0.0903 3.82102,-0.0344 l 2.7504,0.10158 15.09643,11.7667 c 8.30304,6.47168 15.12816,11.7968 15.16692,11.8336 0.51169,0.48573 -3.06543,-1.71597 -19.07252,-11.73903 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.0845821;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
transform="translate(0,100)"
inkscape:connector-curvature="0"
id="path1975"
d="m 277.82574,252.35082 c -9.60203,-7.50431 -17.51753,-13.70626 -17.59002,-13.78211 -0.14444,-0.15116 0.0438,-0.1328 4.85243,0.47318 4.67246,0.58882 7.04816,1.06415 7.52504,1.50559 0.21287,0.19705 5.27988,5.80113 11.26002,12.45352 5.98015,6.65238 11.06533,12.30458 11.30041,12.56044 0.23507,0.25587 0.35607,0.45809 0.26888,0.4494 -0.0872,-0.009 -8.01473,-6.1557 -17.61676,-13.66002 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.08458215;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
d="m 227.75311,352.35082 c -9.60203,-7.50431 -17.51753,-13.70626 -17.59002,-13.78211 -0.14444,-0.15116 0.0438,-0.1328 4.85243,0.47318 4.67246,0.58882 7.04816,1.06415 7.52504,1.50559 0.21287,0.19705 5.27988,5.80113 11.26002,12.45352 5.98015,6.65238 11.06533,12.30458 11.30041,12.56044 0.23507,0.25587 0.35607,0.45809 0.26888,0.4494 -0.0872,-0.009 -8.01473,-6.1557 -17.61676,-13.66002 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.0845821;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
transform="translate(0,100)"
inkscape:connector-curvature="0"
id="path1977"
d="m 285.75503,253.71493 c -6.34981,-7.04265 -11.46794,-12.83054 -11.3736,-12.86198 0.18219,-0.0607 7.51638,1.89763 9.65182,2.5772 l 1.26742,0.40335 6.06668,11.27618 c 3.33667,6.2019 6.03656,11.30631 5.99974,11.34312 -0.0368,0.0368 -5.26224,-5.69522 -11.61206,-12.73787 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.08458215;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
d="m 235.6824,353.71493 c -6.34981,-7.04265 -11.46794,-12.83054 -11.3736,-12.86198 0.18219,-0.0607 7.51638,1.89763 9.65182,2.5772 l 1.26742,0.40335 6.06668,11.27618 c 3.33667,6.2019 6.03656,11.30631 5.99974,11.34312 -0.0368,0.0368 -5.26224,-5.69522 -11.61206,-12.73787 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.0845821;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
transform="translate(0,100)"
inkscape:connector-curvature="0"
id="path1979"
d="m 292.94323,256.10236 c -3.42734,-6.37257 -6.19004,-11.62798 -6.13933,-11.67868 0.13789,-0.13789 3.83358,1.23825 5.84463,2.17632 1.35698,0.63298 4.20514,2.15288 4.5418,2.4237 0.069,0.0555 2.07568,18.42306 2.02687,18.55253 -0.0233,0.0619 -2.84663,-5.10131 -6.27397,-11.47387 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.08458215;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
d="m 242.8706,356.10236 c -3.42734,-6.37257 -6.19004,-11.62798 -6.13933,-11.67868 0.13789,-0.13789 3.83358,1.23825 5.84463,2.17632 1.35698,0.63298 4.20514,2.15288 4.5418,2.4237 0.069,0.0555 2.07568,18.42306 2.02687,18.55253 -0.0233,0.0619 -2.84663,-5.10131 -6.27397,-11.47387 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.0845821;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
transform="translate(0,100)"
inkscape:connector-curvature="0"
id="path1981"
d="m 300.79518,259.21183 c -0.0133,-7.69176 -0.011,-7.74397 0.32457,-7.56436 0.43799,0.2344 3.47473,3.13698 3.88548,3.71382 l 0.31556,0.44316 -2.18302,5.40714 c -1.20066,2.97392 -2.21592,5.48326 -2.25613,5.5763 -0.0402,0.093 -0.0791,-3.31619 -0.0865,-7.57606 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.08458215;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
d="m 250.72255,359.21183 c -0.0133,-7.69176 -0.011,-7.74397 0.32457,-7.56436 0.43799,0.2344 3.47473,3.13698 3.88548,3.71382 l 0.31556,0.44316 -2.18302,5.40714 c -1.20066,2.97392 -2.21592,5.48326 -2.25613,5.5763 -0.0402,0.093 -0.0791,-3.31619 -0.0865,-7.57606 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.0845821;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
transform="translate(0,100)"
inkscape:connector-curvature="0"
id="path1983"
d="m 301.32196,268.22578 c 1.85626,-4.74829 4.63058,-11.50317 4.72451,-11.50317 0.17734,0 2.07509,2.62331 2.62351,3.62655 l 0.45663,0.83534 -0.59611,0.51798 c -0.32786,0.28488 -2.10622,1.92626 -3.95192,3.64751 -1.8457,1.72125 -3.31117,3.01535 -3.25662,2.87579 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.08458215;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
d="m 251.24933,368.22578 c 1.85626,-4.74829 4.63058,-11.50317 4.72451,-11.50317 0.17734,0 2.07509,2.62331 2.62351,3.62655 l 0.45663,0.83534 -0.59611,0.51798 c -0.32786,0.28488 -2.10622,1.92626 -3.95192,3.64751 -1.8457,1.72125 -3.31117,3.01535 -3.25662,2.87579 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.0845821;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
transform="translate(0,100)"
inkscape:connector-curvature="0"
id="path1985"
d="m 280.31573,267.89665 c -3.90545,-2.6752 -4.27317,-2.9349 -4.19347,-2.96146 0.0646,-0.0215 18.22758,4.31593 18.49908,4.41773 0.0465,0.0174 -2.66007,0.0347 -6.01464,0.0384 l -6.09922,0.007 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.04229107;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
d="m 230.2431,367.89665 c -3.90545,-2.6752 -4.27317,-2.9349 -4.19347,-2.96146 0.0646,-0.0215 18.22758,4.31593 18.49908,4.41773 0.0465,0.0174 -2.66007,0.0347 -6.01464,0.0384 l -6.09922,0.007 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.0422911;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
transform="translate(0,100)"
inkscape:connector-curvature="0"
id="path1987"
d="m 290.98431,267.6265 c -1.67473,-0.40799 -6.18507,-1.49863 -10.02298,-2.42365 l -6.97803,-1.68185 -3.09813,-2.21178 c -3.37927,-2.41249 -6.97764,-5.04559 -7.1786,-5.25292 -0.11278,-0.11635 -0.11278,-0.12585 0,-0.0855 0.3649,0.13066 30.49725,12.34806 30.5271,12.37746 0.0815,0.0803 -0.35396,-0.0164 -3.24936,-0.72179 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.04229107;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
d="m 240.91168,367.6265 c -1.67473,-0.40799 -6.18507,-1.49863 -10.02298,-2.42365 l -6.97803,-1.68185 -3.09813,-2.21178 c -3.37927,-2.41249 -6.97764,-5.04559 -7.1786,-5.25292 -0.11278,-0.11635 -0.11278,-0.12585 0,-0.0855 0.3649,0.13066 30.49725,12.34806 30.5271,12.37746 0.0815,0.0803 -0.35396,-0.0164 -3.24936,-0.72179 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.0422911;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
transform="translate(0,100)"
inkscape:connector-curvature="0"
id="path1989"
d="m 298.69938,254.40576 c -0.26916,-2.47718 -0.48802,-4.56893 -0.48634,-4.64833 0.002,-0.1179 0.0959,-0.0869 0.50961,0.16917 l 0.50656,0.31353 9.3e-4,4.33483 c 5.1e-4,2.38416 -0.009,4.33482 -0.0202,4.3348 -0.0116,-1e-5 -0.24137,-2.02681 -0.51054,-4.504 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.04229107;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
d="m 248.62675,354.40576 c -0.26916,-2.47718 -0.48802,-4.56893 -0.48634,-4.64833 0.002,-0.1179 0.0959,-0.0869 0.50961,0.16917 l 0.50656,0.31353 9.3e-4,4.33483 c 5.1e-4,2.38416 -0.009,4.33482 -0.0202,4.3348 -0.0116,-1e-5 -0.24137,-2.02681 -0.51054,-4.504 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.0422911;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
transform="translate(0,100)"
inkscape:connector-curvature="0"
id="path1991"
d="m 305.32098,265.89621 c 0,-0.069 4.10533,-3.83979 4.18682,-3.84562 0.0939,-0.007 0.39825,0.81761 0.36156,0.97913 -0.0189,0.0834 -4.40427,2.9004 -4.51515,2.9004 -0.0183,0 -0.0332,-0.0153 -0.0332,-0.0339 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.04229107;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
d="m 255.24835,365.89621 c 0,-0.069 4.10533,-3.83979 4.18682,-3.84562 0.0939,-0.007 0.39825,0.81761 0.36156,0.97913 -0.0189,0.0834 -4.40427,2.9004 -4.51515,2.9004 -0.0183,0 -0.0332,-0.0153 -0.0332,-0.0339 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.0422911;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
transform="translate(0,100)"
inkscape:connector-curvature="0"
id="path1993"
d="m 303.07956,269.24172 c 0.13956,-0.0856 1.74768,-1.09271 3.57359,-2.23802 2.85471,-1.79063 3.31982,-2.05616 3.31964,-1.89517 -4.2e-4,0.37231 -0.41954,1.7345 -0.89038,2.89385 -0.2645,0.65128 -0.49992,1.23173 -0.52316,1.28988 -0.0326,0.0817 -0.69004,0.10565 -2.88784,0.10541 -2.79873,-3.1e-4 -2.84142,-0.003 -2.59185,-0.15595 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.04229107;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
d="m 253.00693,369.24172 c 0.13956,-0.0856 1.74768,-1.09271 3.57359,-2.23802 2.85471,-1.79063 3.31982,-2.05616 3.31964,-1.89517 -4.2e-4,0.37231 -0.41954,1.7345 -0.89038,2.89385 -0.2645,0.65128 -0.49992,1.23173 -0.52316,1.28988 -0.0326,0.0817 -0.69004,0.10565 -2.88784,0.10541 -2.79873,-3.1e-4 -2.84142,-0.003 -2.59185,-0.15595 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:0.0422911;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<g
id="g2114"
transform="translate(235.88516,38.75598)">
transform="translate(185.81253,38.75598)">
<g
word-spacing="normal"
letter-spacing="normal"
@@ -704,7 +698,7 @@
xml:space="preserve"
transform="matrix(0.42857143,0,0,-0.42857143,-75,450)"
id="g2112"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"><path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"><path
id="path2106"
d="m 482.39,435.84 -0.07,-0.06 -0.07,-0.07 -0.08,-0.07 -0.08,-0.07 -0.08,-0.08 -0.09,-0.08 -0.09,-0.09 -0.1,-0.08 -0.09,-0.09 -0.1,-0.1 -0.19,-0.19 -0.2,-0.19 -0.19,-0.21 -0.09,-0.1 -0.09,-0.1 -0.09,-0.1 -0.08,-0.11 -0.08,-0.1 -0.08,-0.1 -0.07,-0.1 -0.06,-0.1 -0.06,-0.1 -0.06,-0.1 -0.04,-0.1 -0.04,-0.09 -0.03,-0.09 -0.02,-0.1 -0.02,-0.08 v -0.09 c 0,-0.5 0.5,-1 1,-1 0.45,0 0.7,0.36 0.95,0.66 0.59,0.75 1.73,2.14 3.94,3.23 0.34,0.21 0.84,0.46 0.84,1.05 0,0.5 -0.34,0.75 -0.7,1 -1.1,0.75 -1.64,1.64 -2.05,2.83 -0.09,0.45 -0.3,1.11 -0.98,1.11 -0.71,0 -1,-0.66 -1,-1.05 0,-0.25 0.39,-1.84 1.18,-2.89 h -16.78 c -0.84,0 -1.75,0 -1.75,-1 0,-1 0.91,-1 1.75,-1 z"
inkscape:connector-curvature="0"
@@ -716,12 +710,13 @@
id="path2110"
d="m 504.98,408.03 -0.01,0.36 -0.02,0.34 -0.04,0.34 -0.06,0.33 -0.07,0.32 -0.09,0.31 -0.1,0.3 -0.11,0.28 -0.13,0.28 -0.14,0.27 -0.16,0.25 -0.16,0.25 -0.18,0.23 -0.19,0.22 -0.2,0.22 -0.21,0.2 -0.22,0.19 -0.23,0.17 -0.24,0.17 -0.25,0.15 -0.25,0.15 -0.27,0.13 -0.27,0.12 -0.28,0.1 -0.28,0.1 -0.29,0.08 -0.3,0.07 -0.3,0.06 -0.3,0.04 -0.31,0.04 -0.32,0.01 -0.32,0.01 c -5.17,0 -10.04,-4.84 -10.04,-9.61 0,-3.48 2.54,-6.09 6.34,-6.09 l 0.03,0.97 c -1.73,0 -3.48,1.12 -3.48,3.87 0,1.42 0.67,4.85 2.03,6.83 1.5,2.16 3.51,3.06 5.08,3.06 1.89,0 3.48,-1.29 3.48,-3.87 0,-0.83 -0.41,-4.28 -1.95,-6.72 -1.31,-2.05 -3.41,-3.17 -5.16,-3.17 v 0 l -0.03,-0.97 c 4.98,0 10,4.59 10,9.61 z"
inkscape:connector-curvature="0"
style="fill:#000000;stroke-width:0" /></g> </g>
style="fill:#000000;stroke-width:0" /></g>
</g>
<g
transform="translate(144.97607,49.760765)"
transform="translate(94.903438,49.760765)"
id="g2353">
<g
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="g2351"
transform="matrix(0.42857143,0,0,-0.42857143,-75,450)"
xml:space="preserve"
@@ -744,10 +739,11 @@
style="fill:#000000;stroke-width:0"
inkscape:connector-curvature="0"
d="m 497.39,421.9 v 0.01 0 0 0.01 h 0.01 v 0.01 0.01 0 0.01 l 0.01,0.01 v 0.01 l 0.01,0.02 v 0.02 l 0.01,0.02 v 0.02 l 0.01,0.02 v 0.02 l 0.01,0.03 0.01,0.02 0.01,0.05 0.01,0.04 0.01,0.03 v 0.02 l 0.01,0.02 v 0.02 l 0.01,0.02 v 0.02 0.02 l 0.01,0.01 v 0.01 0.01 0 0.01 0 0.01 h 0.01 v 0.01 0 0 0.01 0 c 0,0.19 -0.14,0.5 -0.57,0.5 -0.68,0 -3.57,-0.28 -4.45,-0.36 -0.28,-0.03 -0.76,-0.06 -0.76,-0.8 0,-0.48 0.48,-0.48 0.9,-0.48 1.67,0 1.67,-0.25 1.67,-0.53 0,-0.24 -0.07,-0.46 -0.14,-0.77 l -4.92,-19.72 c -0.17,-0.62 -0.17,-0.68 -0.17,-0.76 0,-0.52 0.42,-1.11 1.19,-1.11 0.93,0 1.39,0.69 1.61,1.45 0.06,0.14 1.56,6.28 1.7,6.77 2.47,-0.25 4.45,-1.05 4.45,-2.86 0,-0.17 0,-0.35 -0.06,-0.69 -0.14,-0.53 -0.14,-0.7 -0.14,-1.09 0,-2.47 2.02,-3.58 3.69,-3.58 3.39,0 4.43,5.29 4.43,5.33 0,0.45 -0.45,0.45 -0.56,0.45 -0.48,0 -0.53,-0.17 -0.7,-0.84 -0.41,-1.5 -1.36,-3.97 -3.06,-3.97 -0.94,0 -1.22,0.87 -1.22,1.81 0,0.59 0,0.66 0.2,1.56 0.05,0.11 0.19,0.7 0.19,1.1 0,3.09 -4.19,3.57 -5.66,3.68 1.02,0.63 2.3,1.78 2.89,2.3 1.78,1.67 3.53,3.31 5.47,3.31 0.42,0 0.88,-0.11 1.16,-0.45 -1.5,-0.25 -1.81,-1.42 -1.81,-1.95 0,-0.77 0.59,-1.29 1.39,-1.29 0.95,0 1.98,0.77 1.98,2.22 0,1.16 -0.83,2.44 -2.67,2.44 -1.99,0 -3.8,-1.42 -5.58,-3.06 -1.47,-1.39 -2.61,-2.47 -4.05,-3.06 z"
id="path2349" /></g> </g>
id="path2349" /></g>
</g>
<g
id="g2590"
transform="translate(190.43062,-15.311005)">
transform="translate(140.35799,-15.311005)">
<g
word-spacing="normal"
letter-spacing="normal"
@@ -760,7 +756,7 @@
xml:space="preserve"
transform="matrix(0.42857143,0,0,-0.42857143,-75,450)"
id="g2588"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"><path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"><path
id="path2584"
d="m 480.95,435.84 -0.07,-0.06 -0.07,-0.07 -0.08,-0.07 -0.08,-0.07 -0.08,-0.08 -0.09,-0.08 -0.09,-0.09 -0.1,-0.08 -0.09,-0.09 -0.1,-0.1 -0.19,-0.19 -0.2,-0.19 -0.19,-0.21 -0.09,-0.1 -0.09,-0.1 -0.09,-0.1 -0.08,-0.11 -0.08,-0.1 -0.08,-0.1 -0.07,-0.1 -0.07,-0.1 -0.05,-0.1 -0.06,-0.1 -0.04,-0.1 -0.04,-0.09 -0.03,-0.09 -0.03,-0.1 -0.01,-0.08 v -0.09 c 0,-0.5 0.5,-1 1,-1 0.45,0 0.7,0.36 0.95,0.66 0.59,0.75 1.73,2.14 3.94,3.23 0.34,0.21 0.84,0.46 0.84,1.05 0,0.5 -0.34,0.75 -0.7,1 -1.1,0.75 -1.64,1.64 -2.05,2.83 -0.09,0.45 -0.3,1.11 -0.98,1.11 -0.71,0 -1,-0.66 -1,-1.05 0,-0.25 0.39,-1.84 1.18,-2.89 h -16.78 c -0.84,0 -1.75,0 -1.75,-1 0,-1 0.91,-1 1.75,-1 z"
inkscape:connector-curvature="0"
@@ -768,6 +764,7 @@
id="path2586"
d="m 459.91,409.14 -0.02,-0.07 -0.01,-0.08 -0.02,-0.07 -0.02,-0.08 -0.03,-0.16 -0.04,-0.16 -0.04,-0.16 -0.04,-0.16 -0.03,-0.16 -0.04,-0.16 -0.02,-0.08 -0.01,-0.07 -0.02,-0.07 -0.01,-0.07 -0.02,-0.07 -0.01,-0.07 -0.02,-0.06 -0.01,-0.06 -0.01,-0.06 -0.01,-0.05 -0.01,-0.05 v -0.04 l -0.01,-0.04 v -0.04 l -0.01,-0.03 V 407 c 0,-0.89 0.71,-1.35 1.44,-1.35 0.61,0 1.5,0.39 1.84,1.39 0.07,0.11 0.66,2.44 0.96,3.69 l 1.09,4.48 c 0.3,1.1 0.6,2.19 0.85,3.35 0.2,0.84 0.6,2.28 0.65,2.48 0.75,1.55 3.39,6.08 8.11,6.08 2.25,0 2.7,-1.84 2.7,-3.48 0,-3.1 -2.45,-9.47 -3.25,-11.61 -0.43,-1.14 -0.48,-1.75 -0.48,-2.3 0,-2.33 1.73,-4.08 4.08,-4.08 4.69,0 6.53,7.27 6.53,7.67 0,0.5 -0.45,0.5 -0.61,0.5 -0.48,0 -0.48,-0.15 -0.73,-0.9 -1,-3.38 -2.65,-6.17 -5.1,-6.17 -0.84,0 -1.19,0.5 -1.19,1.64 0,1.25 0.46,2.45 0.89,3.54 0.96,2.64 3.05,8.11 3.05,10.96 0,3.34 -2.14,5.32 -5.73,5.32 -4.49,0 -6.92,-3.18 -7.77,-4.32 -0.25,2.79 -2.3,4.32 -4.59,4.32 -2.28,0 -3.24,-1.93 -3.74,-2.82 -0.79,-1.71 -1.5,-4.64 -1.5,-4.85 0,-0.5 0.5,-0.5 0.61,-0.5 0.5,0 0.55,0.07 0.85,1.16 0.84,3.53 1.84,5.92 3.64,5.92 0.98,0 1.54,-0.64 1.54,-2.28 0,-1.05 -0.15,-1.61 -0.79,-4.19 z"
inkscape:connector-curvature="0"
style="fill:#000000;stroke-width:0" /></g> </g>
style="fill:#000000;stroke-width:0" /></g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

+107 -101
View File
@@ -2,21 +2,21 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="600"
height="300"
viewBox="0 0 600 300"
width="510"
height="280"
viewBox="0 0 510 280"
version="1.1"
id="svg8"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="ibl_03.svg">
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
sodipodi:docname="ibl_03.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
@@ -25,68 +25,74 @@
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.09"
inkscape:cx="211.83765"
inkscape:cy="117.87052"
inkscape:cx="211.72249"
inkscape:cy="117.94258"
inkscape:document-units="px"
inkscape:current-layer="layer2"
showgrid="true"
units="px"
inkscape:window-width="1920"
inkscape:window-height="1017"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-width="2560"
inkscape:window-height="1494"
inkscape:window-x="-11"
inkscape:window-y="-11"
inkscape:window-maximized="1"
inkscape:snap-grids="false"
inkscape:snap-nodes="true"
inkscape:snap-intersection-paths="false">
inkscape:snap-intersection-paths="false"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
spacingy="10"
spacingx="10"
id="grid10"
type="xygrid" />
type="xygrid"
originx="0"
originy="0"
units="px" />
</sodipodi:namedview>
<defs
id="defs2">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0.0"
refX="0.0"
refY="0"
refX="0"
id="marker123519"
style="overflow:visible;"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path123517"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.4) rotate(180) translate(10,0)" />
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0.0"
refX="0.0"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible;"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path4738"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.4) rotate(180) translate(10,0)" />
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
style="overflow:visible"
id="marker122387"
refX="0.0"
refY="0.0"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Mend">
<path
transform="scale(0.4) rotate(180) translate(10,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path122385" />
</marker>
<marker
@@ -100,7 +106,7 @@
<path
inkscape:connector-curvature="0"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path122161" />
</marker>
@@ -114,7 +120,7 @@
inkscape:stockid="Arrow1Mend">
<path
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path121853"
inkscape:connector-curvature="0" />
@@ -130,7 +136,7 @@
<path
id="path121825"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(0.4,0,0,0.4,4,0)"
inkscape:connector-curvature="0" />
</marker>
@@ -144,7 +150,7 @@
inkscape:stockid="Arrow1Mend">
<path
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path5321"
inkscape:connector-curvature="0" />
@@ -159,7 +165,7 @@
inkscape:stockid="Arrow1Mend">
<path
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path5243"
inkscape:connector-curvature="0" />
@@ -175,7 +181,7 @@
<path
id="path3983"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
inkscape:connector-curvature="0" />
</marker>
@@ -191,7 +197,7 @@
inkscape:connector-curvature="0"
id="path3913"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" />
</marker>
<marker
@@ -207,7 +213,7 @@
inkscape:connector-curvature="0"
id="path4098"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<marker
@@ -221,7 +227,7 @@
<path
inkscape:connector-curvature="0"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1214" />
</marker>
@@ -237,7 +243,7 @@
<path
inkscape:connector-curvature="0"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path869" />
</marker>
@@ -250,7 +256,6 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
@@ -262,22 +267,22 @@
<path
inkscape:connector-curvature="0"
id="path24"
d="m 60.015326,370.22184 a 240,240 0 0 1 240.000004,-240 240,240 0 0 1 240,240"
d="m 9.2976227,350.60462 a 240,240 0 0 1 240.0000073,-240 240,240 0 0 1 240,240"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:9, 9;stroke-dashoffset:0;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path834"
d="M 90.015326,370.22184 H 510.01533"
d="M 39.297623,350.60462 H 459.29763"
style="fill:none;stroke:#000000;stroke-width:1.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path836"
d="m 300.01533,370.22184 -15,15"
d="m 249.29763,350.60462 -15,15"
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<use
height="100%"
width="100%"
transform="translate(30,5e-6)"
transform="translate(30)"
id="use838"
xlink:href="#path836"
y="0"
@@ -285,7 +290,7 @@
<use
height="100%"
width="100%"
transform="translate(30,5e-6)"
transform="translate(30)"
id="use840"
xlink:href="#use838"
y="0"
@@ -293,7 +298,7 @@
<use
height="100%"
width="100%"
transform="translate(30,5e-6)"
transform="translate(30)"
id="use842"
xlink:href="#use840"
y="0"
@@ -301,7 +306,7 @@
<use
height="100%"
width="100%"
transform="translate(30,5e-6)"
transform="translate(30)"
id="use844"
xlink:href="#use842"
y="0"
@@ -309,7 +314,7 @@
<use
height="100%"
width="100%"
transform="translate(30,5e-6)"
transform="translate(30)"
id="use846"
xlink:href="#use844"
y="0"
@@ -317,7 +322,7 @@
<use
height="100%"
width="100%"
transform="translate(30,5e-6)"
transform="translate(30)"
id="use848"
xlink:href="#use846"
y="0"
@@ -325,7 +330,7 @@
<use
height="100%"
width="100%"
transform="translate(-210,5e-6)"
transform="translate(-210)"
id="use850"
xlink:href="#use848"
y="0"
@@ -333,13 +338,12 @@
<use
height="100%"
width="100%"
transform="translate(-30,5e-6)"
transform="translate(-30)"
id="use852"
xlink:href="#use850"
y="0"
x="0" />
<use
transform="translate(5e-8,5e-6)"
height="100%"
width="100%"
id="use854"
@@ -349,7 +353,7 @@
<use
height="100%"
width="100%"
transform="translate(-30,5e-6)"
transform="translate(-30)"
id="use856"
xlink:href="#use854"
y="0"
@@ -357,7 +361,7 @@
<use
height="100%"
width="100%"
transform="translate(-30,5e-6)"
transform="translate(-30)"
id="use858"
xlink:href="#use856"
y="0"
@@ -365,7 +369,7 @@
<use
height="100%"
width="100%"
transform="translate(-30,5e-6)"
transform="translate(-30)"
id="use860"
xlink:href="#use858"
y="0"
@@ -373,7 +377,7 @@
<use
height="100%"
width="100%"
transform="translate(-30,5e-6)"
transform="translate(-30)"
id="use862"
xlink:href="#use860"
y="0"
@@ -381,17 +385,17 @@
<path
inkscape:connector-curvature="0"
id="path864"
d="m 300.01533,370.22184 v -120"
d="m 249.29763,350.60462 v -120"
style="fill:none;stroke:#000000;stroke-width:1.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend)" />
<path
inkscape:connector-curvature="0"
id="path1206"
d="m 300.01533,130.22184 v 30"
d="m 249.29763,110.60462 v 30"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4100)" />
<use
height="100%"
width="100%"
transform="rotate(-10,297.71975,354.81728)"
transform="rotate(-10,247.00205,335.20006)"
id="use4698"
xlink:href="#path1206"
y="0"
@@ -399,16 +403,16 @@
<use
height="100%"
width="100%"
transform="rotate(-7,302.08875,378.36757)"
transform="rotate(-7,251.37104,358.75035)"
id="use4700"
xlink:href="#use4698"
y="0"
x="0" />
<g
transform="translate(150.2179,-15.224787)"
transform="translate(99.500197,-34.842012)"
id="g1200">
<g
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="g1198"
transform="matrix(0.42857143,0,0,-0.42857143,-75,450)"
xml:space="preserve"
@@ -431,10 +435,11 @@
style="fill:#000000;stroke-width:0"
inkscape:connector-curvature="0"
d="m 494.67,405.79 v 0.02 0.01 l 0.01,0.02 v 0.03 l 0.01,0.03 0.01,0.03 v 0.03 l 0.01,0.04 0.01,0.04 0.01,0.05 0.02,0.04 0.01,0.06 0.01,0.05 0.01,0.05 0.03,0.12 0.04,0.13 0.03,0.13 0.03,0.15 0.04,0.14 0.04,0.15 0.04,0.15 0.08,0.32 0.08,0.31 0.04,0.15 0.04,0.15 0.04,0.14 0.03,0.14 0.04,0.14 0.03,0.12 0.03,0.12 0.02,0.05 0.01,0.05 0.01,0.05 0.02,0.05 0.01,0.04 0.01,0.04 0.01,0.04 0.01,0.03 0.01,0.03 v 0.03 l 0.01,0.02 0.01,0.02 v 0.01 0.01 c 0.08,0.29 1.08,2.02 2.21,2.86 0.37,0.27 1.31,0.97 2.81,0.97 0.34,0 1.22,-0.03 1.92,-0.48 -1.12,-0.31 -1.53,-1.3 -1.53,-1.92 0,-0.77 0.59,-1.29 1.39,-1.29 0.8,0 1.95,0.66 1.95,2.13 0,1.81 -1.92,2.53 -3.7,2.53 -1.81,0 -3.37,-0.72 -4.91,-2.47 -0.62,2.13 -2.75,2.47 -3.59,2.47 -1.28,0 -2.16,-0.8 -2.72,-1.76 -0.79,-1.36 -1.28,-3.4 -1.28,-3.57 0,-0.45 0.49,-0.45 0.59,-0.45 0.49,0 0.52,0.11 0.77,1.05 0.52,2.12 1.19,3.76 2.55,3.76 0.9,0 1.14,-0.76 1.14,-1.7 0,-0.67 -0.31,-1.95 -0.56,-2.89 -0.24,-0.95 -0.58,-2.38 -0.77,-3.14 l -1.11,-4.47 c -0.14,-0.44 -0.34,-1.31 -0.34,-1.42 0,-0.77 0.62,-1.11 1.18,-1.11 0.52,0 1.22,0.31 1.49,1 0.08,0.22 0.45,1.75 0.67,2.62 z"
id="path1196" /></g> </g>
id="path1196" /></g>
</g>
<g
id="g2114"
transform="translate(191.56411,-14.699938)">
transform="translate(140.84641,-34.317163)">
<g
word-spacing="normal"
letter-spacing="normal"
@@ -447,7 +452,7 @@
xml:space="preserve"
transform="matrix(0.42857143,0,0,-0.42857143,-75,450)"
id="g2112"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"><path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"><path
id="path2106"
d="m 482.39,435.84 -0.07,-0.06 -0.07,-0.07 -0.08,-0.07 -0.08,-0.07 -0.08,-0.08 -0.09,-0.08 -0.09,-0.09 -0.1,-0.08 -0.09,-0.09 -0.1,-0.1 -0.19,-0.19 -0.2,-0.19 -0.19,-0.21 -0.09,-0.1 -0.09,-0.1 -0.09,-0.1 -0.08,-0.11 -0.08,-0.1 -0.08,-0.1 -0.07,-0.1 -0.06,-0.1 -0.06,-0.1 -0.06,-0.1 -0.04,-0.1 -0.04,-0.09 -0.03,-0.09 -0.02,-0.1 -0.02,-0.08 v -0.09 c 0,-0.5 0.5,-1 1,-1 0.45,0 0.7,0.36 0.95,0.66 0.59,0.75 1.73,2.14 3.94,3.23 0.34,0.21 0.84,0.46 0.84,1.05 0,0.5 -0.34,0.75 -0.7,1 -1.1,0.75 -1.64,1.64 -2.05,2.83 -0.09,0.45 -0.3,1.11 -0.98,1.11 -0.71,0 -1,-0.66 -1,-1.05 0,-0.25 0.39,-1.84 1.18,-2.89 h -16.78 c -0.84,0 -1.75,0 -1.75,-1 0,-1 0.91,-1 1.75,-1 z"
inkscape:connector-curvature="0"
@@ -459,12 +464,13 @@
id="path2110"
d="m 504.98,408.03 -0.01,0.36 -0.02,0.34 -0.04,0.34 -0.06,0.33 -0.07,0.32 -0.09,0.31 -0.1,0.3 -0.11,0.28 -0.13,0.28 -0.14,0.27 -0.16,0.25 -0.16,0.25 -0.18,0.23 -0.19,0.22 -0.2,0.22 -0.21,0.2 -0.22,0.19 -0.23,0.17 -0.24,0.17 -0.25,0.15 -0.25,0.15 -0.27,0.13 -0.27,0.12 -0.28,0.1 -0.28,0.1 -0.29,0.08 -0.3,0.07 -0.3,0.06 -0.3,0.04 -0.31,0.04 -0.32,0.01 -0.32,0.01 c -5.17,0 -10.04,-4.84 -10.04,-9.61 0,-3.48 2.54,-6.09 6.34,-6.09 l 0.03,0.97 c -1.73,0 -3.48,1.12 -3.48,3.87 0,1.42 0.67,4.85 2.03,6.83 1.5,2.16 3.51,3.06 5.08,3.06 1.89,0 3.48,-1.29 3.48,-3.87 0,-0.83 -0.41,-4.28 -1.95,-6.72 -1.31,-2.05 -3.41,-3.17 -5.16,-3.17 v 0 l -0.03,-0.97 c 4.98,0 10,4.59 10,9.61 z"
inkscape:connector-curvature="0"
style="fill:#000000;stroke-width:0" /></g> </g>
style="fill:#000000;stroke-width:0" /></g>
</g>
<g
transform="translate(134.2564,73.606243)"
transform="translate(83.538697,53.989018)"
id="g2353">
<g
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="g2351"
transform="matrix(0.42857143,0,0,-0.42857143,-75,450)"
xml:space="preserve"
@@ -487,10 +493,11 @@
style="fill:#000000;stroke-width:0"
inkscape:connector-curvature="0"
d="m 497.39,421.9 v 0.01 0 0 0.01 h 0.01 v 0.01 0.01 0 0.01 l 0.01,0.01 v 0.01 l 0.01,0.02 v 0.02 l 0.01,0.02 v 0.02 l 0.01,0.02 v 0.02 l 0.01,0.03 0.01,0.02 0.01,0.05 0.01,0.04 0.01,0.03 v 0.02 l 0.01,0.02 v 0.02 l 0.01,0.02 v 0.02 0.02 l 0.01,0.01 v 0.01 0.01 0 0.01 0 0.01 h 0.01 v 0.01 0 0 0.01 0 c 0,0.19 -0.14,0.5 -0.57,0.5 -0.68,0 -3.57,-0.28 -4.45,-0.36 -0.28,-0.03 -0.76,-0.06 -0.76,-0.8 0,-0.48 0.48,-0.48 0.9,-0.48 1.67,0 1.67,-0.25 1.67,-0.53 0,-0.24 -0.07,-0.46 -0.14,-0.77 l -4.92,-19.72 c -0.17,-0.62 -0.17,-0.68 -0.17,-0.76 0,-0.52 0.42,-1.11 1.19,-1.11 0.93,0 1.39,0.69 1.61,1.45 0.06,0.14 1.56,6.28 1.7,6.77 2.47,-0.25 4.45,-1.05 4.45,-2.86 0,-0.17 0,-0.35 -0.06,-0.69 -0.14,-0.53 -0.14,-0.7 -0.14,-1.09 0,-2.47 2.02,-3.58 3.69,-3.58 3.39,0 4.43,5.29 4.43,5.33 0,0.45 -0.45,0.45 -0.56,0.45 -0.48,0 -0.53,-0.17 -0.7,-0.84 -0.41,-1.5 -1.36,-3.97 -3.06,-3.97 -0.94,0 -1.22,0.87 -1.22,1.81 0,0.59 0,0.66 0.2,1.56 0.05,0.11 0.19,0.7 0.19,1.1 0,3.09 -4.19,3.57 -5.66,3.68 1.02,0.63 2.3,1.78 2.89,2.3 1.78,1.67 3.53,3.31 5.47,3.31 0.42,0 0.88,-0.11 1.16,-0.45 -1.5,-0.25 -1.81,-1.42 -1.81,-1.95 0,-0.77 0.59,-1.29 1.39,-1.29 0.95,0 1.98,0.77 1.98,2.22 0,1.16 -0.83,2.44 -2.67,2.44 -1.99,0 -3.8,-1.42 -5.58,-3.06 -1.47,-1.39 -2.61,-2.47 -4.05,-3.06 z"
id="path2349" /></g> </g>
id="path2349" /></g>
</g>
<g
id="g2590"
transform="translate(173.85252,-36.287378)">
transform="translate(123.13482,-55.904603)">
<g
word-spacing="normal"
letter-spacing="normal"
@@ -503,7 +510,7 @@
xml:space="preserve"
transform="matrix(0.42857143,0,0,-0.42857143,-75,450)"
id="g2588"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"><path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.433;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"><path
id="path2584"
d="m 480.95,435.84 -0.07,-0.06 -0.07,-0.07 -0.08,-0.07 -0.08,-0.07 -0.08,-0.08 -0.09,-0.08 -0.09,-0.09 -0.1,-0.08 -0.09,-0.09 -0.1,-0.1 -0.19,-0.19 -0.2,-0.19 -0.19,-0.21 -0.09,-0.1 -0.09,-0.1 -0.09,-0.1 -0.08,-0.11 -0.08,-0.1 -0.08,-0.1 -0.07,-0.1 -0.07,-0.1 -0.05,-0.1 -0.06,-0.1 -0.04,-0.1 -0.04,-0.09 -0.03,-0.09 -0.03,-0.1 -0.01,-0.08 v -0.09 c 0,-0.5 0.5,-1 1,-1 0.45,0 0.7,0.36 0.95,0.66 0.59,0.75 1.73,2.14 3.94,3.23 0.34,0.21 0.84,0.46 0.84,1.05 0,0.5 -0.34,0.75 -0.7,1 -1.1,0.75 -1.64,1.64 -2.05,2.83 -0.09,0.45 -0.3,1.11 -0.98,1.11 -0.71,0 -1,-0.66 -1,-1.05 0,-0.25 0.39,-1.84 1.18,-2.89 h -16.78 c -0.84,0 -1.75,0 -1.75,-1 0,-1 0.91,-1 1.75,-1 z"
inkscape:connector-curvature="0"
@@ -511,10 +518,11 @@
id="path2586"
d="m 459.91,409.14 -0.02,-0.07 -0.01,-0.08 -0.02,-0.07 -0.02,-0.08 -0.03,-0.16 -0.04,-0.16 -0.04,-0.16 -0.04,-0.16 -0.03,-0.16 -0.04,-0.16 -0.02,-0.08 -0.01,-0.07 -0.02,-0.07 -0.01,-0.07 -0.02,-0.07 -0.01,-0.07 -0.02,-0.06 -0.01,-0.06 -0.01,-0.06 -0.01,-0.05 -0.01,-0.05 v -0.04 l -0.01,-0.04 v -0.04 l -0.01,-0.03 V 407 c 0,-0.89 0.71,-1.35 1.44,-1.35 0.61,0 1.5,0.39 1.84,1.39 0.07,0.11 0.66,2.44 0.96,3.69 l 1.09,4.48 c 0.3,1.1 0.6,2.19 0.85,3.35 0.2,0.84 0.6,2.28 0.65,2.48 0.75,1.55 3.39,6.08 8.11,6.08 2.25,0 2.7,-1.84 2.7,-3.48 0,-3.1 -2.45,-9.47 -3.25,-11.61 -0.43,-1.14 -0.48,-1.75 -0.48,-2.3 0,-2.33 1.73,-4.08 4.08,-4.08 4.69,0 6.53,7.27 6.53,7.67 0,0.5 -0.45,0.5 -0.61,0.5 -0.48,0 -0.48,-0.15 -0.73,-0.9 -1,-3.38 -2.65,-6.17 -5.1,-6.17 -0.84,0 -1.19,0.5 -1.19,1.64 0,1.25 0.46,2.45 0.89,3.54 0.96,2.64 3.05,8.11 3.05,10.96 0,3.34 -2.14,5.32 -5.73,5.32 -4.49,0 -6.92,-3.18 -7.77,-4.32 -0.25,2.79 -2.3,4.32 -4.59,4.32 -2.28,0 -3.24,-1.93 -3.74,-2.82 -0.79,-1.71 -1.5,-4.64 -1.5,-4.85 0,-0.5 0.5,-0.5 0.61,-0.5 0.5,0 0.55,0.07 0.85,1.16 0.84,3.53 1.84,5.92 3.64,5.92 0.98,0 1.54,-0.64 1.54,-2.28 0,-1.05 -0.15,-1.61 -0.79,-4.19 z"
inkscape:connector-curvature="0"
style="fill:#000000;stroke-width:0" /></g> </g>
style="fill:#000000;stroke-width:0" /></g>
</g>
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 300,370 c 0,0 -15.09423,-30.18847 -15.09423,-40.18847 C 284.90577,319.81153 290,310 300,310 c 10,0 14.41758,9.9807 14.41758,19.9807 C 314.41758,339.9807 300,370 300,370"
d="m 249.2823,350.38278 c 0,0 -15.09423,-30.18847 -15.09423,-40.18847 0,-10 5.09423,-19.81153 15.09423,-19.81153 10,0 14.41758,9.9807 14.41758,19.9807 0,10 -14.41758,40.0193 -14.41758,40.0193"
id="path3943"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csssc" />
@@ -523,7 +531,7 @@
y="0"
xlink:href="#use4698"
id="use5353"
transform="rotate(5,303.40703,368.40873)"
transform="rotate(5,252.68933,348.7915)"
width="100%"
height="100%" />
<use
@@ -531,7 +539,7 @@
y="0"
xlink:href="#use4698"
id="use5355"
transform="matrix(-1,0,0,1,600.83646,0)"
transform="matrix(-1,0,0,1,499.40106,1.1961724e-7)"
width="100%"
height="100%" />
<use
@@ -539,7 +547,7 @@
y="0"
xlink:href="#use4700"
id="use5357"
transform="matrix(-1,0,0,1,600.83646,0)"
transform="matrix(-1,0,0,1,499.40106,1.1961724e-7)"
width="100%"
height="100%" />
<use
@@ -547,34 +555,32 @@
y="0"
xlink:href="#use5353"
id="use5359"
transform="matrix(-1,0,0,1,600.83646,0)"
transform="matrix(-1,0,0,1,499.40106,1.1961724e-7)"
width="100%"
height="100%" />
<path
style="fill:#c8c8c8;fill-opacity:1;stroke:none;stroke-width:0.02148387;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 300.91516,238.72606 -0.007,-28.39318 0.88811,0.11947 c 2.11236,0.28415 4.35995,1.26643 6.04473,2.64178 1.13632,0.92762 2.83473,3.16645 3.63973,4.79786 1.96358,3.97937 2.98348,9.72687 2.46168,13.87241 -0.71309,5.66525 -4.49647,16.38901 -10.72457,30.39811 -0.98026,2.20493 -1.8979,4.22222 -2.03921,4.48285 -0.23068,0.42547 -0.25762,-2.42707 -0.2637,-27.9193 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:none;stroke-width:0.0214839;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 250.19746,319.10884 -0.007,-28.39318 0.88811,0.11947 c 2.11236,0.28415 4.35995,1.26643 6.04473,2.64178 1.13632,0.92762 2.83473,3.16645 3.63973,4.79786 1.96358,3.97937 2.98348,9.72687 2.46168,13.87241 -0.71309,5.66525 -4.49647,16.38901 -10.72457,30.39811 -0.98026,2.20493 -1.8979,4.22222 -2.03921,4.48285 -0.23068,0.42547 -0.25762,-2.42707 -0.2637,-27.9193 z"
id="path122703"
inkscape:connector-curvature="0"
transform="translate(0,100)" />
inkscape:connector-curvature="0" />
<path
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c800;stroke-width:0.02148387;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 298.80061,266.73863 c -5.69583,-11.66931 -11.02084,-24.89044 -12.66787,-31.45227 -0.8265,-3.29281 -1.01576,-5.11624 -0.79496,-7.65914 0.69191,-7.96843 3.99839,-13.68732 9.33855,-16.15193 1.13616,-0.52437 3.35059,-1.11066 4.19495,-1.11066 h 0.34547 v 28.50418 c 0,15.6773 -0.024,28.50419 -0.0533,28.50419 -0.0293,0 -0.19258,-0.28547 -0.36288,-0.63437 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c800;stroke-width:0.0214839;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 248.08291,347.12141 c -5.69583,-11.66931 -11.02084,-24.89044 -12.66787,-31.45227 -0.8265,-3.29281 -1.01576,-5.11624 -0.79496,-7.65914 0.69191,-7.96843 3.99839,-13.68732 9.33855,-16.15193 1.13616,-0.52437 3.35059,-1.11066 4.19495,-1.11066 h 0.34547 v 28.50418 c 0,15.6773 -0.024,28.50419 -0.0533,28.50419 -0.0293,0 -0.19258,-0.28547 -0.36288,-0.63437 z"
id="path122705"
inkscape:connector-curvature="0"
transform="translate(0,100)" />
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker122163)"
d="M 300,370 290,310"
d="m 249.2823,350.38278 -10,-60"
id="path3975"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
d="m 300,370 -4.30081,-63.20953"
d="m 249.2823,350.38278 -4.30081,-63.20953"
id="path123511"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker123519)"
d="M 300.01533,370.22184 283.85769,322.35359"
d="M 249.29763,350.60462 233.13999,302.73637"
id="path123515"
inkscape:connector-curvature="0" />
<use
@@ -582,7 +588,7 @@
y="0"
xlink:href="#path3975"
id="use123593"
transform="matrix(-1,0,0,1,600.01533,-0.22184)"
transform="matrix(-1,0,0,1,498.57993,-0.22183988)"
width="100%"
height="100%" />
<use
@@ -590,7 +596,7 @@
y="0"
xlink:href="#path123511"
id="use123595"
transform="matrix(-1,0,0,1,600.01533,-0.22184)"
transform="matrix(-1,0,0,1,498.57993,-0.22183988)"
width="100%"
height="100%" />
<use
@@ -598,7 +604,7 @@
y="0"
xlink:href="#path123515"
id="use123597"
transform="matrix(-1,0,0,1,600.01533,-0.22184)"
transform="matrix(-1,0,0,1,498.57993,-0.22183988)"
width="100%"
height="100%" />
</g>

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB