Update report about HAC-IFF
@ -1310,22 +1310,19 @@ The HAC-LAC architecture is shown in Figure [[fig:schematic_jacobian_frame_fastj
|
||||
#+begin_src latex :file schematic_jacobian_frame_fastjack_hac_iff.pdf
|
||||
\begin{tikzpicture}
|
||||
% Blocs
|
||||
\node[block={4.0cm}{3.0cm}] (G) {$\bm{G}(s)$};
|
||||
\node[block={3.0cm}{3.0cm}] (G) {$\bm{G}(s)$};
|
||||
\coordinate[] (inputF) at ($(G.south west)!0.5!(G.north west)$);
|
||||
\coordinate[] (outputF) at ($(G.south east)!0.8!(G.north east)$);
|
||||
\coordinate[] (outputL) at ($(G.south east)!0.2!(G.north east)$);
|
||||
|
||||
\node[block, right=1.3 of outputL] (Js) {$\bm{J}_{s}^{-1}$};
|
||||
\node[block, right=1.2 of outputL] (Js) {$\bm{J}_{s}^{-1}$};
|
||||
|
||||
\node[addb, left= of G] (addF) {};
|
||||
\node[block, above=0.5 of G] (Kiff) {$\bm{K}_{\text{IFF}}(s)$};
|
||||
|
||||
\node[block, left=1.3 of addF] (Khac) {$\bm{K}_{\text{HAC}}(s)$};
|
||||
\node[block, left=1.3 of Khac] (Ja) {$\bm{J}_{a}$};
|
||||
\node[addb={+}{}{}{}{-}, left=1.3 of Ja] (subL) {};
|
||||
\coordinate[left=1.3 of subL] (mux);
|
||||
\node[block] (bragg2d) at ($(mux) + (-1.2, 0.8)$) {$\frac{d_{\text{off}}}{2 \cos \theta_b}$};
|
||||
\coordinate (rx) at ($(mux) + (0, -0.8)$);
|
||||
\node[block, left=1.2 of addF] (Khac) {$\bm{K}_{\text{HAC}}(s)$};
|
||||
\node[block, left=1.2 of Khac] (Ja) {$\bm{J}_{a}$};
|
||||
\node[addb={+}{}{}{}{-}, left=1.0 of Ja] (subL) {};
|
||||
|
||||
|
||||
% Connections and labels
|
||||
@ -1338,21 +1335,17 @@ The HAC-LAC architecture is shown in Figure [[fig:schematic_jacobian_frame_fastj
|
||||
\draw[->] (Js.east) -- ++(1.0, 0);
|
||||
|
||||
|
||||
\draw[line width=4pt] ($(mux) + (0, -1.0)$) -- ($(mux) + (0, 1.0)$);
|
||||
\draw[->] (mux) -- node[midway, above]{$\begin{bmatrix} r_{d_z} \\ r_{r_y} \\ r_{r_x} \end{bmatrix}$} (subL.west);
|
||||
\draw[->] ($(subL.west) + (-0.8, 0)$) -- node[midway, above]{$\begin{bmatrix} r_{d_z} \\ r_{r_y} \\ r_{r_x} \end{bmatrix}$} (subL.west);
|
||||
\draw[->] (subL.east) -- node[midway, above]{$\begin{bmatrix} \epsilon_{d_z} \\ \epsilon_{r_y} \\ \epsilon_{r_x} \end{bmatrix}$} (Ja.west);
|
||||
\draw[->] (Ja.east) -- node[midway, above]{$\begin{bmatrix} \epsilon_{d_{u_r}} \\ \epsilon_{d_{u_h}} \\ \epsilon_{d_d} \end{bmatrix}$} (Khac.west);
|
||||
|
||||
\draw[->] ($(Js.east) + (0.6, 0)$)node[branch]{}node[above]{$\begin{bmatrix} d_z \\ r_y \\ r_x \end{bmatrix}$} -- ++(0, -1.0) -| (subL.south);
|
||||
\draw[->] ($(bragg2d.west) + (-0.6, 0)$)coordinate(ref_input)node[above right]{$\theta_b$} -- (bragg2d.west);
|
||||
\draw[->] (bragg2d.east) --node[midway, above]{$r_{d_z}$} (bragg2d-|mux);
|
||||
\draw[->] (ref_input|-mux)node[above right]{$r_{r_y}$} -- (mux);
|
||||
\draw[->] (ref_input|-rx) node[above right]{$r_{r_x}$} -- (rx-|mux);
|
||||
\end{tikzpicture}
|
||||
#+end_src
|
||||
|
||||
#+name: fig:schematic_jacobian_frame_fastjack_hac_iff
|
||||
#+caption: HAC-LAC architecture
|
||||
#+attr_latex: :width \linewidth
|
||||
#+RESULTS:
|
||||
[[file:figs/schematic_jacobian_frame_fastjack_hac_iff.png]]
|
||||
|
||||
@ -1561,19 +1554,28 @@ As shown in the Root Locus plot in Figure [[fig:loci_hac_iff_fast_jack]], the cl
|
||||
%% Plot of the eigenvalues of L in the complex plane
|
||||
figure;
|
||||
hold on;
|
||||
% Angle used to draw the circles
|
||||
theta = linspace(0, 2*pi, 100);
|
||||
% Unit circle
|
||||
plot(cos(theta), sin(theta), '--');
|
||||
% Circle for module margin
|
||||
plot(-1 + min(min(abs(Ldet + 1)))*cos(theta), min(min(abs(Ldet + 1)))*sin(theta), '--');
|
||||
|
||||
for i = 1:3
|
||||
plot(real(squeeze(Ldet(i,:))), imag(squeeze(Ldet(i,:))), 'k.');
|
||||
plot(real(squeeze(Ldet(i,:))), -imag(squeeze(Ldet(i,:))), 'k.');
|
||||
end
|
||||
% Unstable Point
|
||||
plot(-1, 0, 'kx', 'HandleVisibility', 'off');
|
||||
hold off;
|
||||
set(gca, 'XScale', 'lin'); set(gca, 'YScale', 'lin');
|
||||
xlabel('Real'); ylabel('Imag');
|
||||
axis square;
|
||||
xlim([-3, 1]); ylim([-2, 2]);
|
||||
#+end_src
|
||||
|
||||
#+begin_src matlab :tangle no :exports results :results file replace
|
||||
exportFig('figs/loci_hac_iff_fast_jack.pdf', 'width', 'wide', 'height', 'tall');
|
||||
exportFig('figs/loci_hac_iff_fast_jack.pdf', 'width', 'normal', 'height', 'normal');
|
||||
#+end_src
|
||||
|
||||
#+name: fig:loci_hac_iff_fast_jack
|
||||
@ -1658,7 +1660,7 @@ xlim([f(1), f(end)]);
|
||||
#+end_src
|
||||
|
||||
#+begin_src matlab :tangle no :exports results :results file replace
|
||||
exportFig('figs/stepper_transmissibility_comp_ol_hac_iff.pdf', 'width', 'wide', 'height', 'tall');
|
||||
exportFig('figs/stepper_transmissibility_comp_ol_hac_iff.pdf', 'width', 'wide', 'height', 'normal');
|
||||
#+end_src
|
||||
|
||||
#+name: fig:stepper_transmissibility_comp_ol_hac_iff
|
||||
|
BIN
dcm-simscape.pdf
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 21 KiB |
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="586.206pt" height="142.189pt" viewBox="0 0 586.206 142.189" version="1.2">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="462.9pt" height="142.189pt" viewBox="0 0 462.9 142.189" version="1.2">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
@ -47,9 +47,6 @@
|
||||
<symbol overflow="visible" id="glyph2-7">
|
||||
<path style="stroke:none;" d="M 4.9375 -1.421875 C 4.9375 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.71875 -1.515625 4.703125 -1.46875 4.671875 -1.34375 C 4.5 -0.6875 4.328125 -0.109375 3.921875 -0.109375 C 3.65625 -0.109375 3.625 -0.359375 3.625 -0.5625 C 3.625 -0.796875 3.640625 -0.875 3.6875 -1.046875 L 5.109375 -6.765625 C 5.109375 -6.765625 5.109375 -6.875 4.984375 -6.875 C 4.828125 -6.875 3.890625 -6.78125 3.71875 -6.765625 C 3.640625 -6.75 3.59375 -6.703125 3.59375 -6.578125 C 3.59375 -6.453125 3.671875 -6.453125 3.828125 -6.453125 C 4.296875 -6.453125 4.3125 -6.390625 4.3125 -6.296875 L 4.296875 -6.09375 L 3.6875 -3.75 C 3.515625 -4.109375 3.234375 -4.375 2.78125 -4.375 C 1.625 -4.375 0.390625 -2.921875 0.390625 -1.46875 C 0.390625 -0.546875 0.9375 0.109375 1.71875 0.109375 C 1.90625 0.109375 2.40625 0.0625 3 -0.640625 C 3.078125 -0.21875 3.421875 0.109375 3.90625 0.109375 C 4.25 0.109375 4.484375 -0.125 4.640625 -0.4375 C 4.796875 -0.796875 4.9375 -1.421875 4.9375 -1.421875 Z M 3.546875 -3.125 L 3.046875 -1.171875 C 3 -1 3 -0.984375 2.859375 -0.8125 C 2.421875 -0.265625 2.015625 -0.109375 1.734375 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.046875 C 1.09375 -1.53125 1.421875 -2.75 1.640625 -3.203125 C 1.953125 -3.796875 2.390625 -4.15625 2.796875 -4.15625 C 3.4375 -4.15625 3.578125 -3.34375 3.578125 -3.28125 C 3.578125 -3.234375 3.5625 -3.171875 3.546875 -3.125 Z M 3.546875 -3.125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-8">
|
||||
<path style="stroke:none;" d="M 4.5 -4.953125 C 4.5 -5.609375 4.328125 -6.984375 3.3125 -6.984375 C 1.9375 -6.984375 0.421875 -4.1875 0.421875 -1.921875 C 0.421875 -0.984375 0.703125 0.109375 1.609375 0.109375 C 3 0.109375 4.5 -2.734375 4.5 -4.953125 Z M 3.53125 -3.59375 L 1.46875 -3.59375 C 1.640625 -4.234375 1.828125 -5.015625 2.234375 -5.71875 C 2.5 -6.21875 2.859375 -6.765625 3.3125 -6.765625 C 3.796875 -6.765625 3.859375 -6.125 3.859375 -5.5625 C 3.859375 -5.078125 3.78125 -4.578125 3.53125 -3.59375 Z M 3.453125 -3.28125 C 3.34375 -2.828125 3.125 -1.984375 2.75 -1.265625 C 2.40625 -0.59375 2.03125 -0.109375 1.609375 -0.109375 C 1.28125 -0.109375 1.0625 -0.390625 1.0625 -1.3125 C 1.0625 -1.734375 1.125 -2.3125 1.390625 -3.28125 Z M 3.453125 -3.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph3-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
@ -84,15 +81,6 @@
|
||||
<path style="stroke:none;" d="M 3.5 -1.265625 L 3.265625 -1.265625 C 3.25 -1.109375 3.171875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.421875 2.515625 -1.75 C 3.03125 -2.171875 3.5 -2.59375 3.5 -3.25 C 3.5 -4.09375 2.765625 -4.609375 1.875 -4.609375 C 1.015625 -4.609375 0.4375 -4 0.4375 -3.359375 C 0.4375 -3.015625 0.734375 -2.96875 0.8125 -2.96875 C 0.96875 -2.96875 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.46875 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.203125 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.828125 -3.8125 2.828125 -3.25 C 2.828125 -2.65625 2.40625 -2.171875 2.171875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.5 -1.265625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-8">
|
||||
<path style="stroke:none;" d="M 3.25 -0.828125 C 3.25 -0.921875 3.15625 -0.921875 3.125 -0.921875 C 3.03125 -0.921875 3.03125 -0.890625 3 -0.796875 C 2.84375 -0.375 2.484375 -0.15625 2.046875 -0.15625 C 1.578125 -0.15625 0.953125 -0.5 0.953125 -1.5 C 0.953125 -2.390625 1.375 -2.875 2.03125 -2.875 C 2.109375 -2.875 2.453125 -2.875 2.703125 -2.765625 C 2.578125 -2.71875 2.5 -2.609375 2.5 -2.46875 C 2.5 -2.28125 2.640625 -2.140625 2.828125 -2.140625 C 3.015625 -2.140625 3.15625 -2.25 3.15625 -2.484375 C 3.15625 -3.09375 2.203125 -3.09375 2 -3.09375 C 0.96875 -3.09375 0.3125 -2.296875 0.3125 -1.5 C 0.3125 -0.625 1.0625 0.0625 1.96875 0.0625 C 3 0.0625 3.25 -0.75 3.25 -0.828125 Z M 3.25 -0.828125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-9">
|
||||
<path style="stroke:none;" d="M 3.671875 -1.484375 C 3.671875 -2.34375 2.921875 -3.09375 1.96875 -3.09375 C 1.015625 -3.09375 0.265625 -2.34375 0.265625 -1.484375 C 0.265625 -0.625 1.03125 0.0625 1.96875 0.0625 C 2.90625 0.0625 3.671875 -0.625 3.671875 -1.484375 Z M 3.03125 -1.546875 C 3.03125 -1.203125 3.015625 -0.84375 2.8125 -0.5625 C 2.625 -0.296875 2.3125 -0.15625 1.96875 -0.15625 C 1.71875 -0.15625 1.34375 -0.234375 1.109375 -0.578125 C 0.921875 -0.859375 0.90625 -1.21875 0.90625 -1.546875 C 0.90625 -1.84375 0.90625 -2.25 1.15625 -2.546875 C 1.328125 -2.75 1.609375 -2.90625 1.96875 -2.90625 C 2.375 -2.90625 2.671875 -2.703125 2.828125 -2.484375 C 3.015625 -2.21875 3.03125 -1.875 3.03125 -1.546875 Z M 3.03125 -1.546875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-10">
|
||||
<path style="stroke:none;" d="M 2.828125 -0.90625 C 2.828125 -1.171875 2.703125 -1.375 2.53125 -1.546875 C 2.265625 -1.796875 1.9375 -1.84375 1.703125 -1.890625 C 1.140625 -1.984375 0.6875 -2.0625 0.6875 -2.4375 C 0.6875 -2.65625 0.875 -2.921875 1.546875 -2.921875 C 2.34375 -2.921875 2.375 -2.359375 2.390625 -2.171875 C 2.40625 -2.09375 2.484375 -2.09375 2.515625 -2.09375 C 2.625 -2.09375 2.625 -2.140625 2.625 -2.265625 L 2.625 -2.90625 C 2.625 -3.03125 2.625 -3.09375 2.53125 -3.09375 C 2.5 -3.09375 2.484375 -3.09375 2.390625 -3.015625 C 2.375 -3 2.3125 -2.9375 2.265625 -2.90625 C 2.0625 -3.046875 1.796875 -3.09375 1.546875 -3.09375 C 0.546875 -3.09375 0.3125 -2.578125 0.3125 -2.234375 C 0.3125 -2 0.40625 -1.828125 0.578125 -1.6875 C 0.84375 -1.453125 1.109375 -1.40625 1.53125 -1.34375 C 1.875 -1.28125 2.4375 -1.171875 2.4375 -0.71875 C 2.4375 -0.4375 2.25 -0.125 1.59375 -0.125 C 0.921875 -0.125 0.6875 -0.5625 0.5625 -1.03125 C 0.53125 -1.125 0.53125 -1.15625 0.4375 -1.15625 C 0.3125 -1.15625 0.3125 -1.109375 0.3125 -0.96875 L 0.3125 -0.109375 C 0.3125 0 0.3125 0.0625 0.40625 0.0625 C 0.46875 0.0625 0.609375 -0.078125 0.75 -0.234375 C 1.046875 0.0625 1.421875 0.0625 1.59375 0.0625 C 2.484375 0.0625 2.828125 -0.421875 2.828125 -0.90625 Z M 2.828125 -0.90625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph4-11">
|
||||
<path style="stroke:none;" d="M 3.5625 -1.203125 C 3.5625 -1.734375 3.125 -2.28125 2.359375 -2.4375 C 3.09375 -2.703125 3.34375 -3.21875 3.34375 -3.65625 C 3.34375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.171875 -4.609375 0.59375 -4.234375 0.59375 -3.671875 C 0.59375 -3.4375 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.296875 -3.46875 1.296875 -3.65625 C 1.296875 -3.859375 1.171875 -4.015625 0.953125 -4.03125 C 1.1875 -4.328125 1.671875 -4.40625 1.921875 -4.40625 C 2.234375 -4.40625 2.671875 -4.25 2.671875 -3.65625 C 2.671875 -3.359375 2.578125 -3.03125 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.625 -2.53125 C 1.453125 -2.515625 1.4375 -2.515625 1.40625 -2.5 C 1.40625 -2.5 1.34375 -2.484375 1.34375 -2.421875 C 1.34375 -2.3125 1.40625 -2.3125 1.515625 -2.3125 L 1.890625 -2.3125 C 2.4375 -2.3125 2.828125 -1.9375 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.0625 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.171875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.5625 -0.5 3.5625 -1.203125 Z M 3.5625 -1.203125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-0">
|
||||
@ -105,29 +93,23 @@
|
||||
<path style="stroke:none;" d="M 3.96875 -0.984375 C 3.96875 -1.078125 3.875 -1.078125 3.84375 -1.078125 C 3.75 -1.078125 3.75 -1.046875 3.703125 -0.875 C 3.609375 -0.53125 3.484375 -0.125 3.1875 -0.125 C 3.015625 -0.125 2.96875 -0.28125 2.96875 -0.46875 C 2.96875 -0.578125 3.015625 -0.828125 3.0625 -1.015625 L 3.21875 -1.640625 C 3.28125 -1.890625 3.296875 -1.9375 3.359375 -2.171875 C 3.40625 -2.34375 3.484375 -2.671875 3.484375 -2.703125 C 3.484375 -2.859375 3.359375 -2.921875 3.25 -2.921875 C 3.125 -2.921875 2.96875 -2.84375 2.921875 -2.65625 C 2.78125 -2.875 2.546875 -3.0625 2.21875 -3.0625 C 1.328125 -3.0625 0.421875 -2.078125 0.421875 -1.078125 C 0.421875 -0.40625 0.875 0.0625 1.46875 0.0625 C 1.84375 0.0625 2.171875 -0.140625 2.453125 -0.421875 C 2.59375 0 2.984375 0.0625 3.171875 0.0625 C 3.421875 0.0625 3.59375 -0.078125 3.71875 -0.296875 C 3.875 -0.5625 3.96875 -0.96875 3.96875 -0.984375 Z M 2.8125 -2.171875 L 2.484375 -0.875 C 2.4375 -0.671875 2.28125 -0.53125 2.125 -0.40625 C 2.0625 -0.34375 1.796875 -0.125 1.484375 -0.125 C 1.234375 -0.125 0.984375 -0.3125 0.984375 -0.796875 C 0.984375 -1.171875 1.1875 -1.921875 1.34375 -2.203125 C 1.671875 -2.765625 2.015625 -2.859375 2.21875 -2.859375 C 2.703125 -2.859375 2.828125 -2.34375 2.828125 -2.265625 C 2.828125 -2.234375 2.8125 -2.1875 2.8125 -2.171875 Z M 2.8125 -2.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-3">
|
||||
<path style="stroke:none;" d="M 3.96875 -0.984375 C 3.96875 -1.078125 3.875 -1.078125 3.84375 -1.078125 C 3.75 -1.078125 3.75 -1.046875 3.703125 -0.875 C 3.609375 -0.53125 3.484375 -0.125 3.1875 -0.125 C 3.015625 -0.125 2.96875 -0.28125 2.96875 -0.46875 C 2.96875 -0.59375 2.96875 -0.65625 3 -0.75 L 3.96875 -4.609375 C 3.96875 -4.625 3.984375 -4.71875 3.984375 -4.71875 C 3.984375 -4.75 3.96875 -4.8125 3.875 -4.8125 C 3.734375 -4.8125 3.15625 -4.765625 2.984375 -4.75 C 2.9375 -4.734375 2.84375 -4.734375 2.84375 -4.578125 C 2.84375 -4.484375 2.9375 -4.484375 3.015625 -4.484375 C 3.34375 -4.484375 3.34375 -4.4375 3.34375 -4.390625 C 3.34375 -4.34375 3.34375 -4.296875 3.328125 -4.234375 L 2.921875 -2.65625 C 2.78125 -2.875 2.546875 -3.0625 2.21875 -3.0625 C 1.328125 -3.0625 0.421875 -2.078125 0.421875 -1.078125 C 0.421875 -0.40625 0.875 0.0625 1.46875 0.0625 C 1.84375 0.0625 2.171875 -0.140625 2.453125 -0.421875 C 2.59375 0 2.984375 0.0625 3.171875 0.0625 C 3.421875 0.0625 3.59375 -0.078125 3.71875 -0.296875 C 3.875 -0.5625 3.96875 -0.96875 3.96875 -0.984375 Z M 2.8125 -2.171875 L 2.484375 -0.875 C 2.4375 -0.671875 2.28125 -0.53125 2.125 -0.40625 C 2.0625 -0.34375 1.796875 -0.125 1.484375 -0.125 C 1.234375 -0.125 0.984375 -0.3125 0.984375 -0.796875 C 0.984375 -1.171875 1.1875 -1.921875 1.34375 -2.203125 C 1.671875 -2.765625 2.015625 -2.859375 2.21875 -2.859375 C 2.703125 -2.859375 2.828125 -2.34375 2.828125 -2.265625 C 2.828125 -2.234375 2.8125 -2.1875 2.8125 -2.171875 Z M 2.8125 -2.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-4">
|
||||
<path style="stroke:none;" d="M 3.546875 -3.375 C 3.546875 -4.109375 3.265625 -4.890625 2.59375 -4.890625 C 1.546875 -4.890625 0.4375 -3.03125 0.4375 -1.4375 C 0.4375 -0.609375 0.75 0.0625 1.390625 0.0625 C 2.453125 0.0625 3.546875 -1.828125 3.546875 -3.375 Z M 2.828125 -2.53125 L 1.21875 -2.53125 C 1.578125 -4.03125 2.171875 -4.6875 2.578125 -4.6875 C 3.03125 -4.6875 3.03125 -3.921875 3.03125 -3.78125 C 3.03125 -3.515625 2.96875 -3.109375 2.828125 -2.53125 Z M 2.765625 -2.28125 C 2.5625 -1.53125 2.40625 -1.15625 2.203125 -0.8125 C 1.984375 -0.453125 1.703125 -0.125 1.40625 -0.125 C 1.015625 -0.125 0.953125 -0.65625 0.953125 -1.03125 C 0.953125 -1.484375 1.09375 -2.03125 1.15625 -2.28125 Z M 2.765625 -2.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-5">
|
||||
<path style="stroke:none;" d="M 4.359375 -0.984375 C 4.359375 -1.078125 4.265625 -1.078125 4.234375 -1.078125 C 4.140625 -1.078125 4.140625 -1.046875 4.09375 -0.875 C 4 -0.546875 3.875 -0.125 3.578125 -0.125 C 3.40625 -0.125 3.34375 -0.28125 3.34375 -0.46875 C 3.34375 -0.578125 3.40625 -0.828125 3.453125 -1.015625 L 3.609375 -1.640625 L 3.765625 -2.25 C 3.8125 -2.421875 3.890625 -2.734375 3.890625 -2.765625 C 3.890625 -2.90625 3.78125 -2.984375 3.65625 -2.984375 C 3.40625 -2.984375 3.34375 -2.78125 3.296875 -2.5625 L 2.9375 -1.125 C 2.90625 -0.984375 2.84375 -0.71875 2.828125 -0.71875 C 2.6875 -0.5 2.421875 -0.125 1.984375 -0.125 C 1.5 -0.125 1.5 -0.578125 1.5 -0.703125 C 1.5 -1.109375 1.703125 -1.609375 1.890625 -2.109375 C 1.953125 -2.25 1.984375 -2.359375 1.984375 -2.46875 C 1.984375 -2.828125 1.6875 -3.0625 1.328125 -3.0625 C 0.640625 -3.0625 0.328125 -2.109375 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.9375 0.5625 -2.015625 C 0.734375 -2.59375 1.046875 -2.859375 1.3125 -2.859375 C 1.421875 -2.859375 1.484375 -2.78125 1.484375 -2.625 C 1.484375 -2.46875 1.421875 -2.3125 1.359375 -2.15625 C 0.984375 -1.203125 0.984375 -1 0.984375 -0.8125 C 0.984375 -0.6875 0.984375 -0.375 1.234375 -0.15625 C 1.4375 0.015625 1.71875 0.0625 1.953125 0.0625 C 2.390625 0.0625 2.625 -0.171875 2.859375 -0.390625 C 3.015625 0.0625 3.46875 0.0625 3.5625 0.0625 C 3.796875 0.0625 3.96875 -0.0625 4.109375 -0.296875 C 4.265625 -0.5625 4.359375 -0.96875 4.359375 -0.984375 Z M 4.359375 -0.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-6">
|
||||
<symbol overflow="visible" id="glyph5-4">
|
||||
<path style="stroke:none;" d="M 3.96875 -0.984375 C 3.96875 -1.078125 3.875 -1.078125 3.84375 -1.078125 C 3.75 -1.078125 3.75 -1.046875 3.703125 -0.875 C 3.609375 -0.53125 3.484375 -0.125 3.1875 -0.125 C 3.015625 -0.125 2.96875 -0.28125 2.96875 -0.46875 C 2.96875 -0.59375 2.96875 -0.65625 3 -0.75 L 3.96875 -4.609375 C 3.96875 -4.625 3.984375 -4.71875 3.984375 -4.71875 C 3.984375 -4.75 3.96875 -4.8125 3.875 -4.8125 C 3.734375 -4.8125 3.15625 -4.765625 2.984375 -4.75 C 2.9375 -4.734375 2.84375 -4.734375 2.84375 -4.578125 C 2.84375 -4.484375 2.9375 -4.484375 3.015625 -4.484375 C 3.34375 -4.484375 3.34375 -4.4375 3.34375 -4.390625 C 3.34375 -4.34375 3.34375 -4.296875 3.328125 -4.234375 L 2.921875 -2.65625 C 2.78125 -2.875 2.546875 -3.0625 2.21875 -3.0625 C 1.328125 -3.0625 0.421875 -2.078125 0.421875 -1.078125 C 0.421875 -0.40625 0.875 0.0625 1.46875 0.0625 C 1.84375 0.0625 2.171875 -0.140625 2.453125 -0.421875 C 2.59375 0 2.984375 0.0625 3.171875 0.0625 C 3.421875 0.0625 3.59375 -0.078125 3.71875 -0.296875 C 3.875 -0.5625 3.96875 -0.96875 3.96875 -0.984375 Z M 2.8125 -2.171875 L 2.484375 -0.875 C 2.4375 -0.671875 2.28125 -0.53125 2.125 -0.40625 C 2.0625 -0.34375 1.796875 -0.125 1.484375 -0.125 C 1.234375 -0.125 0.984375 -0.3125 0.984375 -0.796875 C 0.984375 -1.171875 1.1875 -1.921875 1.34375 -2.203125 C 1.671875 -2.765625 2.015625 -2.859375 2.21875 -2.859375 C 2.703125 -2.859375 2.828125 -2.34375 2.828125 -2.265625 C 2.828125 -2.234375 2.8125 -2.1875 2.8125 -2.171875 Z M 2.8125 -2.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-5">
|
||||
<path style="stroke:none;" d="M 3.546875 -2.546875 C 3.546875 -2.90625 3.171875 -3.0625 2.8125 -3.0625 C 2.453125 -3.0625 2.140625 -2.90625 1.84375 -2.5625 C 1.71875 -2.984375 1.296875 -3.0625 1.125 -3.0625 C 0.875 -3.0625 0.6875 -2.90625 0.578125 -2.703125 C 0.421875 -2.4375 0.328125 -2.03125 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.921875 0.59375 -2.109375 C 0.703125 -2.546875 0.828125 -2.859375 1.109375 -2.859375 C 1.28125 -2.859375 1.328125 -2.71875 1.328125 -2.53125 C 1.328125 -2.390625 1.265625 -2.140625 1.21875 -1.953125 L 1.0625 -1.328125 L 0.84375 -0.4375 C 0.8125 -0.34375 0.78125 -0.171875 0.78125 -0.15625 C 0.78125 0 0.90625 0.0625 1.015625 0.0625 C 1.109375 0.0625 1.25 0 1.3125 -0.125 C 1.328125 -0.171875 1.40625 -0.484375 1.4375 -0.65625 L 1.625 -1.40625 C 1.640625 -1.4375 1.796875 -2.0625 1.8125 -2.109375 C 1.828125 -2.15625 2.03125 -2.5 2.25 -2.671875 C 2.328125 -2.71875 2.515625 -2.859375 2.8125 -2.859375 C 2.875 -2.859375 3.046875 -2.859375 3.1875 -2.765625 C 2.96875 -2.703125 2.890625 -2.515625 2.890625 -2.390625 C 2.890625 -2.234375 3 -2.125 3.15625 -2.125 C 3.328125 -2.125 3.546875 -2.265625 3.546875 -2.546875 Z M 3.546875 -2.546875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-7">
|
||||
<symbol overflow="visible" id="glyph5-6">
|
||||
<path style="stroke:none;" d="M 3.453125 -1 C 3.453125 -1.09375 3.375 -1.09375 3.34375 -1.09375 C 3.25 -1.09375 3.234375 -1.0625 3.21875 -0.984375 C 3.078125 -0.640625 2.671875 -0.46875 2.328125 -0.46875 C 2.171875 -0.46875 2 -0.5 1.828125 -0.546875 C 1.5 -0.625 1.453125 -0.625 1.328125 -0.625 C 1.328125 -0.625 1.203125 -0.625 1.171875 -0.609375 C 1.34375 -0.796875 1.46875 -0.921875 2.0625 -1.390625 C 2.203125 -1.515625 2.71875 -1.921875 2.921875 -2.125 C 3.34375 -2.546875 3.609375 -2.890625 3.609375 -2.96875 C 3.609375 -3.0625 3.53125 -3.0625 3.5 -3.0625 C 3.4375 -3.0625 3.40625 -3.046875 3.375 -2.984375 C 3.15625 -2.671875 3.015625 -2.5625 2.84375 -2.5625 C 2.765625 -2.5625 2.65625 -2.578125 2.453125 -2.78125 C 2.21875 -3.015625 2.0625 -3.0625 1.90625 -3.0625 C 1.359375 -3.0625 0.984375 -2.453125 0.984375 -2.25 C 0.984375 -2.1875 1.046875 -2.171875 1.09375 -2.171875 C 1.171875 -2.171875 1.1875 -2.1875 1.21875 -2.265625 C 1.328125 -2.5 1.71875 -2.515625 1.828125 -2.515625 C 1.984375 -2.515625 2.171875 -2.484375 2.265625 -2.453125 C 2.640625 -2.375 2.6875 -2.375 2.859375 -2.375 C 2.6875 -2.1875 2.5625 -2.0625 1.90625 -1.53125 C 1.359375 -1.109375 1.171875 -0.921875 1.046875 -0.796875 C 0.625 -0.375 0.421875 -0.078125 0.421875 -0.015625 C 0.421875 0.0625 0.515625 0.0625 0.546875 0.0625 C 0.609375 0.0625 0.625 0.0625 0.65625 0 C 0.84375 -0.265625 1.0625 -0.421875 1.296875 -0.421875 C 1.375 -0.421875 1.484375 -0.421875 1.671875 -0.25 C 1.890625 -0.03125 2.03125 0.0625 2.25 0.0625 C 2.984375 0.0625 3.453125 -0.765625 3.453125 -1 Z M 3.453125 -1 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-8">
|
||||
<symbol overflow="visible" id="glyph5-7">
|
||||
<path style="stroke:none;" d="M 3.859375 -2.609375 C 3.890625 -2.71875 3.890625 -2.71875 3.890625 -2.765625 C 3.890625 -2.90625 3.78125 -2.984375 3.65625 -2.984375 C 3.578125 -2.984375 3.453125 -2.953125 3.375 -2.828125 C 3.34375 -2.78125 3.296875 -2.5625 3.265625 -2.421875 L 3.109375 -1.84375 L 2.84375 -0.734375 C 2.84375 -0.734375 2.53125 -0.125 1.984375 -0.125 C 1.515625 -0.125 1.515625 -0.578125 1.515625 -0.703125 C 1.515625 -1.078125 1.671875 -1.515625 1.875 -2.046875 C 1.96875 -2.265625 2 -2.359375 2 -2.46875 C 2 -2.796875 1.71875 -3.0625 1.34375 -3.0625 C 0.640625 -3.0625 0.328125 -2.109375 0.328125 -2 C 0.328125 -1.90625 0.421875 -1.90625 0.4375 -1.90625 C 0.546875 -1.90625 0.546875 -1.9375 0.5625 -2.015625 C 0.75 -2.59375 1.046875 -2.859375 1.3125 -2.859375 C 1.4375 -2.859375 1.484375 -2.78125 1.484375 -2.625 C 1.484375 -2.46875 1.421875 -2.3125 1.390625 -2.21875 C 1.0625 -1.375 0.984375 -1.109375 0.984375 -0.8125 C 0.984375 -0.6875 0.984375 -0.375 1.265625 -0.140625 C 1.484375 0.03125 1.765625 0.0625 1.953125 0.0625 C 2.234375 0.0625 2.484375 -0.03125 2.71875 -0.25 C 2.625 0.140625 2.546875 0.4375 2.25 0.78125 C 2.0625 0.984375 1.796875 1.21875 1.421875 1.21875 C 1.375 1.21875 1.046875 1.21875 0.90625 0.984375 C 1.28125 0.953125 1.28125 0.609375 1.28125 0.609375 C 1.28125 0.390625 1.078125 0.34375 1 0.34375 C 0.828125 0.34375 0.609375 0.484375 0.609375 0.8125 C 0.609375 1.15625 0.9375 1.421875 1.421875 1.421875 C 2.125 1.421875 2.984375 0.875 3.203125 0 Z M 3.859375 -2.609375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-9">
|
||||
<symbol overflow="visible" id="glyph5-8">
|
||||
<path style="stroke:none;" d="M 3.890625 -0.984375 C 3.890625 -1.078125 3.796875 -1.078125 3.78125 -1.078125 C 3.671875 -1.078125 3.671875 -1.046875 3.640625 -0.96875 C 3.5 -0.484375 3.078125 -0.125 2.6875 -0.125 C 2.421875 -0.125 2.265625 -0.3125 2.265625 -0.578125 C 2.265625 -0.75 2.4375 -1.390625 2.625 -2.15625 C 2.765625 -2.6875 3.078125 -2.859375 3.3125 -2.859375 C 3.3125 -2.859375 3.53125 -2.859375 3.6875 -2.765625 C 3.46875 -2.703125 3.375 -2.515625 3.375 -2.390625 C 3.375 -2.234375 3.5 -2.125 3.65625 -2.125 C 3.8125 -2.125 4.046875 -2.265625 4.046875 -2.546875 C 4.046875 -2.9375 3.59375 -3.0625 3.328125 -3.0625 C 2.96875 -3.0625 2.703125 -2.828125 2.546875 -2.5625 C 2.421875 -2.84375 2.109375 -3.0625 1.71875 -3.0625 C 0.9375 -3.0625 0.5 -2.203125 0.5 -2 C 0.5 -1.90625 0.59375 -1.90625 0.609375 -1.90625 C 0.703125 -1.90625 0.703125 -1.9375 0.75 -2.03125 C 0.921875 -2.5625 1.359375 -2.859375 1.6875 -2.859375 C 1.921875 -2.859375 2.109375 -2.734375 2.109375 -2.40625 C 2.109375 -2.265625 2.03125 -1.921875 1.96875 -1.6875 L 1.734375 -0.734375 C 1.65625 -0.5 1.421875 -0.125 1.078125 -0.125 C 1.046875 -0.125 0.84375 -0.125 0.703125 -0.21875 C 0.984375 -0.3125 1 -0.5625 1 -0.609375 C 1 -0.75 0.890625 -0.859375 0.734375 -0.859375 C 0.53125 -0.859375 0.328125 -0.6875 0.328125 -0.4375 C 0.328125 -0.09375 0.71875 0.0625 1.0625 0.0625 C 1.375 0.0625 1.671875 -0.125 1.84375 -0.421875 C 2 -0.0625 2.390625 0.0625 2.65625 0.0625 C 3.46875 0.0625 3.890625 -0.796875 3.890625 -0.984375 Z M 3.890625 -0.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph5-10">
|
||||
<path style="stroke:none;" d="M 3.265625 -1.90625 C 3.265625 -2.71875 2.703125 -3.0625 2.234375 -3.0625 C 1.859375 -3.0625 1.5625 -2.859375 1.359375 -2.671875 L 1.828125 -4.609375 C 1.84375 -4.625 1.859375 -4.71875 1.859375 -4.71875 C 1.859375 -4.75 1.828125 -4.8125 1.75 -4.8125 C 1.609375 -4.8125 1.03125 -4.765625 0.859375 -4.75 C 0.8125 -4.734375 0.703125 -4.734375 0.703125 -4.578125 C 0.703125 -4.484375 0.8125 -4.484375 0.890625 -4.484375 C 1.21875 -4.484375 1.21875 -4.4375 1.21875 -4.390625 C 1.21875 -4.34375 1.15625 -4.0625 1.109375 -3.90625 L 0.953125 -3.265625 L 0.5 -1.421875 C 0.453125 -1.25 0.453125 -1.15625 0.453125 -1.078125 C 0.453125 -0.375 0.90625 0.0625 1.484375 0.0625 C 2.34375 0.0625 3.265625 -0.875 3.265625 -1.90625 Z M 2.71875 -2.1875 C 2.71875 -1.90625 2.5625 -1.203125 2.359375 -0.796875 C 2.1875 -0.453125 1.84375 -0.125 1.484375 -0.125 C 1.140625 -0.125 0.953125 -0.421875 0.953125 -0.828125 C 0.953125 -1.09375 1.015625 -1.328125 1.203125 -2.109375 C 1.25 -2.234375 1.25 -2.25 1.375 -2.40625 C 1.640625 -2.71875 1.953125 -2.859375 2.203125 -2.859375 C 2.484375 -2.859375 2.71875 -2.65625 2.71875 -2.1875 Z M 2.71875 -2.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph6-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
@ -144,553 +126,455 @@
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-1">
|
||||
<path style="stroke:none;" d="M 3.046875 -1.0625 C 3.046875 -1.671875 2.46875 -2.21875 1.6875 -2.21875 C 0.90625 -2.21875 0.328125 -1.671875 0.328125 -1.0625 C 0.328125 -0.453125 0.90625 0.046875 1.6875 0.046875 C 2.46875 0.046875 3.046875 -0.453125 3.046875 -1.0625 Z M 2.546875 -1.109375 C 2.546875 -0.859375 2.546875 -0.125 1.6875 -0.125 C 0.8125 -0.125 0.8125 -0.859375 0.8125 -1.109375 C 0.8125 -1.328125 0.8125 -2.0625 1.6875 -2.0625 C 2.546875 -2.0625 2.546875 -1.328125 2.546875 -1.109375 Z M 2.546875 -1.109375 "/>
|
||||
<path style="stroke:none;" d="M 6.53125 0.296875 L 6.53125 -0.390625 L 3.234375 -0.390625 L 3.234375 17.4375 L 3.90625 17.4375 L 3.90625 0.296875 Z M 6.53125 0.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-2">
|
||||
<path style="stroke:none;" d="M 4.484375 -3.109375 C 4.484375 -3.3125 4.28125 -3.484375 3.9375 -3.484375 C 3.734375 -3.484375 3.515625 -3.421875 3.328125 -3.3125 C 3.28125 -3.4375 3.078125 -3.484375 2.375 -3.484375 C 1.640625 -3.484375 0.828125 -3.21875 0.828125 -2.671875 L 0.828125 -2.140625 L 0.34375 -2.140625 L 0.34375 -1.921875 L 0.828125 -1.921875 L 0.828125 -0.421875 C 0.828125 -0.265625 0.828125 -0.21875 0.5 -0.21875 L 0.421875 -0.21875 L 0.421875 0 C 0.625 -0.015625 0.84375 -0.015625 1.0625 -0.015625 L 1.765625 0 L 1.765625 -0.21875 L 1.625 -0.21875 C 1.25 -0.21875 1.25 -0.265625 1.25 -0.421875 L 1.25 -1.921875 L 3 -1.921875 L 3 -0.421875 C 3 -0.265625 3 -0.21875 2.671875 -0.21875 L 2.578125 -0.21875 L 2.578125 0 C 2.796875 -0.015625 3.015625 -0.015625 3.21875 -0.015625 L 3.9375 0 L 3.9375 -0.21875 L 3.796875 -0.21875 C 3.421875 -0.21875 3.421875 -0.265625 3.421875 -0.421875 L 3.421875 -1.921875 L 4.125 -1.921875 L 4.125 -2.140625 L 3.390625 -2.140625 L 3.390625 -2.671875 C 3.390625 -3.140625 3.703125 -3.328125 3.9375 -3.328125 C 3.96875 -3.328125 4.0625 -3.3125 4.0625 -3.296875 C 4.03125 -3.265625 3.984375 -3.203125 3.984375 -3.09375 C 3.984375 -2.96875 4.078125 -2.84375 4.234375 -2.84375 C 4.390625 -2.84375 4.484375 -2.96875 4.484375 -3.109375 Z M 3.015625 -2.859375 C 3 -2.796875 3 -2.734375 3 -2.671875 L 3 -2.140625 L 1.234375 -2.140625 L 1.234375 -2.671875 C 1.234375 -3.140625 1.828125 -3.328125 2.359375 -3.328125 C 2.390625 -3.328125 2.9375 -3.3125 2.9375 -3.296875 L 2.921875 -3.296875 C 2.890625 -3.265625 2.84375 -3.203125 2.84375 -3.09375 C 2.84375 -2.984375 2.90625 -2.890625 3.015625 -2.859375 Z M 3.015625 -2.859375 "/>
|
||||
<path style="stroke:none;" d="M 6.53125 17.421875 L 6.53125 16.734375 L 3.90625 16.734375 L 3.90625 -0.390625 L 3.234375 -0.390625 L 3.234375 17.421875 Z M 6.53125 17.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-3">
|
||||
<path style="stroke:none;" d="M 3.375 17.4375 L 3.375 -0.390625 L 0.0625 -0.390625 L 0.0625 0.296875 L 2.6875 0.296875 L 2.6875 17.4375 Z M 3.375 17.4375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph8-4">
|
||||
<path style="stroke:none;" d="M 3.375 17.421875 L 3.375 -0.390625 L 2.6875 -0.390625 L 2.6875 16.734375 L 0.0625 16.734375 L 0.0625 17.421875 Z M 3.375 17.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph9-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph9-1">
|
||||
<path style="stroke:none;" d="M 2.78125 -1.328125 C 2.78125 -1.8125 2.4375 -2.1875 1.921875 -2.1875 C 1.71875 -2.1875 1.46875 -2.109375 1.234375 -1.921875 L 1.5625 -3.25 C 1.578125 -3.3125 1.578125 -3.328125 1.578125 -3.359375 C 1.578125 -3.4375 1.5 -3.4375 1.421875 -3.4375 L 0.8125 -3.390625 C 0.734375 -3.390625 0.71875 -3.375 0.703125 -3.359375 C 0.671875 -3.328125 0.65625 -3.28125 0.65625 -3.25 C 0.65625 -3.15625 0.75 -3.15625 0.8125 -3.15625 C 0.8125 -3.15625 0.90625 -3.15625 0.984375 -3.15625 C 1.078125 -3.140625 1.078125 -3.125 1.078125 -3.078125 C 1.078125 -3.0625 1.03125 -2.859375 1 -2.75 L 0.59375 -1.09375 C 0.5625 -0.984375 0.546875 -0.90625 0.546875 -0.796875 C 0.546875 -0.28125 0.921875 0.046875 1.390625 0.046875 C 2.109375 0.046875 2.78125 -0.640625 2.78125 -1.328125 Z M 2.34375 -1.515625 C 2.34375 -1.328125 2.25 -0.859375 2.09375 -0.578125 C 1.921875 -0.28125 1.640625 -0.109375 1.40625 -0.109375 C 1.1875 -0.109375 0.953125 -0.25 0.953125 -0.640625 C 0.953125 -0.796875 0.984375 -0.953125 1.03125 -1.125 C 1.046875 -1.1875 1.125 -1.515625 1.125 -1.546875 C 1.140625 -1.59375 1.484375 -2.015625 1.90625 -2.015625 C 2.125 -2.015625 2.34375 -1.890625 2.34375 -1.515625 Z M 2.34375 -1.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph9-2">
|
||||
<path style="stroke:none;" d="M 3.234375 -1.78125 C 3.234375 -2.15625 2.703125 -2.1875 2.46875 -2.1875 C 2.34375 -2.1875 2.015625 -2.1875 1.671875 -1.796875 C 1.609375 -2.0625 1.328125 -2.1875 1.078125 -2.1875 C 0.921875 -2.1875 0.765625 -2.109375 0.640625 -1.921875 C 0.515625 -1.703125 0.453125 -1.453125 0.453125 -1.421875 C 0.453125 -1.359375 0.53125 -1.359375 0.5625 -1.359375 C 0.640625 -1.359375 0.640625 -1.359375 0.671875 -1.484375 C 0.765625 -1.796875 0.875 -2.015625 1.0625 -2.015625 C 1.234375 -2.015625 1.265625 -1.859375 1.265625 -1.765625 C 1.265625 -1.6875 1.21875 -1.5 1.1875 -1.375 L 1.078125 -0.921875 L 0.953125 -0.484375 C 0.9375 -0.359375 0.875 -0.140625 0.875 -0.125 C 0.875 -0.015625 0.96875 0.046875 1.0625 0.046875 C 1.140625 0.046875 1.234375 0.015625 1.28125 -0.078125 C 1.296875 -0.109375 1.34375 -0.265625 1.359375 -0.375 L 1.46875 -0.8125 C 1.484375 -0.890625 1.546875 -1.078125 1.5625 -1.15625 L 1.609375 -1.359375 C 1.640625 -1.453125 1.796875 -1.703125 1.953125 -1.84375 C 2.125 -1.984375 2.28125 -2.015625 2.453125 -2.015625 C 2.515625 -2.015625 2.75 -2.015625 2.90625 -1.9375 C 2.703125 -1.859375 2.703125 -1.65625 2.703125 -1.65625 C 2.703125 -1.5625 2.765625 -1.453125 2.921875 -1.453125 C 3.0625 -1.453125 3.234375 -1.5625 3.234375 -1.78125 Z M 3.234375 -1.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph9-3">
|
||||
<symbol overflow="visible" id="glyph9-2">
|
||||
<path style="stroke:none;" d="M 3.65625 -0.71875 C 3.65625 -0.78125 3.5625 -0.78125 3.546875 -0.78125 C 3.46875 -0.78125 3.453125 -0.765625 3.421875 -0.671875 C 3.34375 -0.390625 3.125 -0.109375 2.875 -0.109375 C 2.765625 -0.109375 2.71875 -0.1875 2.71875 -0.296875 C 2.71875 -0.40625 2.78125 -0.546875 2.828125 -0.65625 C 2.875 -0.796875 3.09375 -1.34375 3.09375 -1.59375 C 3.09375 -1.9375 2.875 -2.1875 2.359375 -2.1875 C 1.875 -2.1875 1.578125 -1.875 1.4375 -1.71875 L 1.828125 -3.25 C 1.84375 -3.3125 1.84375 -3.328125 1.84375 -3.359375 C 1.84375 -3.4375 1.765625 -3.4375 1.6875 -3.4375 L 1.078125 -3.390625 C 1 -3.390625 0.984375 -3.375 0.953125 -3.359375 C 0.9375 -3.328125 0.921875 -3.28125 0.921875 -3.25 C 0.921875 -3.15625 1 -3.15625 1.078125 -3.15625 C 1.078125 -3.15625 1.171875 -3.15625 1.25 -3.15625 C 1.34375 -3.140625 1.34375 -3.125 1.34375 -3.078125 C 1.34375 -3.078125 1.34375 -3.0625 1.3125 -2.96875 L 0.640625 -0.234375 C 0.609375 -0.15625 0.609375 -0.15625 0.609375 -0.125 C 0.609375 -0.015625 0.703125 0.046875 0.796875 0.046875 C 0.90625 0.046875 1.015625 -0.015625 1.046875 -0.140625 C 1.0625 -0.1875 1.078125 -0.25 1.15625 -0.578125 L 1.234375 -0.921875 C 1.3125 -1.21875 1.3125 -1.21875 1.453125 -1.4375 C 1.65625 -1.75 1.953125 -2.015625 2.34375 -2.015625 C 2.59375 -2.015625 2.6875 -1.875 2.6875 -1.671875 C 2.6875 -1.390625 2.46875 -0.859375 2.40625 -0.6875 C 2.328125 -0.5 2.3125 -0.46875 2.3125 -0.375 C 2.3125 -0.125 2.5625 0.046875 2.859375 0.046875 C 3.375 0.046875 3.65625 -0.59375 3.65625 -0.71875 Z M 3.65625 -0.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph9-4">
|
||||
<symbol overflow="visible" id="glyph9-3">
|
||||
<path style="stroke:none;" d="M 2.96875 -0.734375 C 2.96875 -0.796875 2.875 -0.796875 2.859375 -0.796875 C 2.78125 -0.796875 2.78125 -0.78125 2.75 -0.71875 C 2.640625 -0.421875 2.25 -0.375 2.0625 -0.375 C 1.953125 -0.375 1.828125 -0.390625 1.6875 -0.40625 C 1.40625 -0.453125 1.328125 -0.453125 1.265625 -0.453125 C 1.171875 -0.453125 1.171875 -0.453125 1.140625 -0.453125 C 1.34375 -0.640625 1.59375 -0.828125 1.875 -1.015625 C 2.203125 -1.265625 2.40625 -1.421875 2.625 -1.625 C 2.875 -1.859375 3.03125 -2.078125 3.03125 -2.125 C 3.03125 -2.1875 2.96875 -2.1875 2.9375 -2.1875 C 2.859375 -2.1875 2.859375 -2.1875 2.8125 -2.125 C 2.625 -1.875 2.515625 -1.84375 2.4375 -1.84375 C 2.359375 -1.84375 2.28125 -1.859375 2.125 -1.96875 C 1.953125 -2.109375 1.84375 -2.1875 1.65625 -2.1875 C 1.203125 -2.1875 0.921875 -1.75 0.921875 -1.59375 C 0.921875 -1.53125 0.984375 -1.53125 1.015625 -1.53125 C 1.078125 -1.53125 1.09375 -1.53125 1.125 -1.578125 C 1.140625 -1.640625 1.1875 -1.765625 1.59375 -1.765625 C 1.734375 -1.765625 1.828125 -1.75 2.09375 -1.703125 C 2.28125 -1.671875 2.328125 -1.671875 2.421875 -1.671875 C 2.28125 -1.546875 2.125 -1.421875 1.75 -1.15625 C 1.390625 -0.90625 1.171875 -0.75 0.953125 -0.53125 C 0.75 -0.359375 0.515625 -0.078125 0.515625 -0.015625 C 0.515625 0.046875 0.59375 0.046875 0.625 0.046875 C 0.6875 0.046875 0.703125 0.046875 0.734375 0.015625 C 0.875 -0.1875 1.046875 -0.28125 1.21875 -0.28125 C 1.359375 -0.28125 1.4375 -0.234375 1.609375 -0.09375 C 1.75 0 1.859375 0.046875 2 0.046875 C 2.578125 0.046875 2.96875 -0.53125 2.96875 -0.734375 Z M 2.96875 -0.734375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph9-5">
|
||||
<symbol overflow="visible" id="glyph9-4">
|
||||
<path style="stroke:none;" d="M 3.28125 -1.84375 C 3.296875 -1.921875 3.296875 -1.96875 3.296875 -1.96875 C 3.296875 -2.078125 3.203125 -2.140625 3.109375 -2.140625 C 2.921875 -2.140625 2.875 -1.96875 2.84375 -1.828125 L 2.734375 -1.421875 L 2.578125 -0.796875 C 2.5625 -0.734375 2.546875 -0.625 2.53125 -0.59375 C 2.53125 -0.578125 2.265625 -0.109375 1.84375 -0.109375 C 1.609375 -0.109375 1.4375 -0.21875 1.4375 -0.546875 C 1.4375 -0.8125 1.578125 -1.171875 1.734375 -1.53125 C 1.75 -1.59375 1.78125 -1.671875 1.78125 -1.75 C 1.78125 -2 1.5625 -2.1875 1.25 -2.1875 C 0.734375 -2.1875 0.453125 -1.5625 0.453125 -1.421875 C 0.453125 -1.359375 0.53125 -1.359375 0.5625 -1.359375 C 0.640625 -1.359375 0.640625 -1.375 0.671875 -1.453125 C 0.765625 -1.796875 1 -2.015625 1.234375 -2.015625 C 1.328125 -2.015625 1.375 -1.96875 1.375 -1.828125 C 1.375 -1.734375 1.34375 -1.671875 1.3125 -1.578125 C 1.0625 -0.984375 1.03125 -0.8125 1.03125 -0.609375 C 1.03125 -0.0625 1.484375 0.046875 1.8125 0.046875 C 2.09375 0.046875 2.3125 -0.078125 2.4375 -0.1875 C 2.359375 0.09375 2.3125 0.3125 2.078125 0.546875 C 1.96875 0.65625 1.734375 0.84375 1.421875 0.84375 C 1.328125 0.84375 1.15625 0.828125 1.03125 0.734375 C 1.265625 0.671875 1.28125 0.484375 1.28125 0.4375 C 1.28125 0.28125 1.171875 0.234375 1.0625 0.234375 C 0.921875 0.234375 0.75 0.34375 0.75 0.578125 C 0.75 0.828125 1 1.015625 1.421875 1.015625 C 1.984375 1.015625 2.65625 0.640625 2.8125 0 Z M 3.28125 -1.84375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph9-6">
|
||||
<symbol overflow="visible" id="glyph9-5">
|
||||
<path style="stroke:none;" d="M 3.3125 -0.71875 C 3.3125 -0.78125 3.21875 -0.78125 3.203125 -0.78125 C 3.125 -0.78125 3.109375 -0.75 3.09375 -0.703125 C 2.953125 -0.265625 2.578125 -0.109375 2.359375 -0.109375 C 2.203125 -0.109375 2 -0.171875 2 -0.453125 C 2 -0.5 2 -0.546875 2.046875 -0.703125 C 2.125 -1.0625 2.265625 -1.609375 2.296875 -1.6875 C 2.359375 -1.828125 2.53125 -2.015625 2.78125 -2.015625 C 2.796875 -2.015625 2.96875 -2.015625 3.078125 -1.9375 C 2.84375 -1.875 2.84375 -1.65625 2.84375 -1.65625 C 2.84375 -1.5625 2.90625 -1.453125 3.078125 -1.453125 C 3.203125 -1.453125 3.375 -1.5625 3.375 -1.78125 C 3.375 -2.078125 3.046875 -2.1875 2.78125 -2.1875 C 2.46875 -2.1875 2.265625 -1.984375 2.15625 -1.859375 C 2 -2.140625 1.671875 -2.1875 1.5 -2.1875 C 0.875 -2.1875 0.53125 -1.609375 0.53125 -1.421875 C 0.53125 -1.359375 0.609375 -1.359375 0.640625 -1.359375 C 0.671875 -1.359375 0.71875 -1.359375 0.734375 -1.40625 C 0.890625 -1.890625 1.296875 -2.015625 1.484375 -2.015625 C 1.640625 -2.015625 1.828125 -1.953125 1.828125 -1.6875 C 1.828125 -1.5625 1.75 -1.21875 1.578125 -0.5625 C 1.5 -0.28125 1.265625 -0.109375 1.0625 -0.109375 C 1.03125 -0.109375 0.875 -0.109375 0.765625 -0.1875 C 0.984375 -0.265625 0.984375 -0.453125 0.984375 -0.484375 C 0.984375 -0.625 0.875 -0.6875 0.765625 -0.6875 C 0.640625 -0.6875 0.453125 -0.59375 0.453125 -0.359375 C 0.453125 -0.046875 0.796875 0.046875 1.046875 0.046875 C 1.328125 0.046875 1.546875 -0.109375 1.671875 -0.28125 C 1.859375 0.015625 2.171875 0.046875 2.328125 0.046875 C 2.953125 0.046875 3.3125 -0.53125 3.3125 -0.71875 Z M 3.3125 -0.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph9-7">
|
||||
<symbol overflow="visible" id="glyph9-6">
|
||||
<path style="stroke:none;" d="M 3.75 -0.71875 C 3.75 -0.78125 3.65625 -0.78125 3.640625 -0.78125 C 3.546875 -0.78125 3.546875 -0.75 3.515625 -0.671875 C 3.421875 -0.296875 3.296875 -0.109375 3.125 -0.109375 C 2.984375 -0.109375 2.9375 -0.21875 2.9375 -0.375 C 2.9375 -0.484375 3.078125 -1.078125 3.28125 -1.84375 C 3.296875 -1.921875 3.296875 -1.9375 3.296875 -1.96875 C 3.296875 -2.078125 3.21875 -2.140625 3.125 -2.140625 C 2.921875 -2.140625 2.875 -1.96875 2.84375 -1.828125 L 2.75 -1.421875 L 2.59375 -0.796875 C 2.578125 -0.734375 2.546875 -0.625 2.546875 -0.59375 C 2.53125 -0.578125 2.265625 -0.109375 1.84375 -0.109375 C 1.65625 -0.109375 1.4375 -0.1875 1.4375 -0.546875 C 1.4375 -0.796875 1.5625 -1.140625 1.703125 -1.46875 C 1.765625 -1.609375 1.78125 -1.671875 1.78125 -1.75 C 1.78125 -2 1.5625 -2.1875 1.25 -2.1875 C 0.734375 -2.1875 0.453125 -1.5625 0.453125 -1.421875 C 0.453125 -1.359375 0.53125 -1.359375 0.5625 -1.359375 C 0.640625 -1.359375 0.640625 -1.375 0.671875 -1.453125 C 0.765625 -1.78125 1 -2.015625 1.234375 -2.015625 C 1.328125 -2.015625 1.375 -1.96875 1.375 -1.828125 C 1.375 -1.734375 1.359375 -1.671875 1.296875 -1.53125 C 1.03125 -0.875 1.03125 -0.75 1.03125 -0.609375 C 1.03125 -0.046875 1.5 0.046875 1.8125 0.046875 C 2.09375 0.046875 2.34375 -0.078125 2.53125 -0.28125 C 2.65625 0.03125 3.015625 0.046875 3.109375 0.046875 C 3.28125 0.046875 3.421875 -0.03125 3.546875 -0.21875 C 3.671875 -0.40625 3.75 -0.6875 3.75 -0.71875 Z M 3.75 -0.71875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph9-8">
|
||||
<symbol overflow="visible" id="glyph9-7">
|
||||
<path style="stroke:none;" d="M 3.390625 -0.71875 C 3.390625 -0.78125 3.296875 -0.78125 3.28125 -0.78125 C 3.1875 -0.78125 3.1875 -0.75 3.171875 -0.671875 C 3.078125 -0.3125 2.953125 -0.109375 2.78125 -0.109375 C 2.640625 -0.109375 2.578125 -0.21875 2.578125 -0.375 C 2.578125 -0.4375 2.578125 -0.484375 2.59375 -0.53125 L 3.28125 -3.25 C 3.296875 -3.3125 3.296875 -3.328125 3.296875 -3.359375 C 3.296875 -3.4375 3.21875 -3.4375 3.140625 -3.4375 L 2.53125 -3.390625 C 2.453125 -3.390625 2.4375 -3.375 2.421875 -3.359375 C 2.390625 -3.328125 2.375 -3.28125 2.375 -3.25 C 2.375 -3.15625 2.46875 -3.15625 2.53125 -3.15625 C 2.53125 -3.15625 2.625 -3.15625 2.703125 -3.15625 C 2.796875 -3.140625 2.796875 -3.125 2.796875 -3.078125 C 2.796875 -3.0625 2.765625 -2.90625 2.734375 -2.828125 L 2.5 -1.890625 C 2.40625 -2.015625 2.21875 -2.1875 1.90625 -2.1875 C 1.21875 -2.1875 0.515625 -1.515625 0.515625 -0.8125 C 0.515625 -0.296875 0.890625 0.046875 1.390625 0.046875 C 1.796875 0.046875 2.109375 -0.234375 2.171875 -0.296875 C 2.265625 -0.046875 2.53125 0.046875 2.75 0.046875 C 2.953125 0.046875 3.078125 -0.0625 3.1875 -0.21875 C 3.3125 -0.421875 3.390625 -0.671875 3.390625 -0.71875 Z M 2.203125 -0.65625 C 2.171875 -0.578125 2.171875 -0.578125 2.09375 -0.46875 C 1.90625 -0.265625 1.65625 -0.109375 1.40625 -0.109375 C 1.234375 -0.109375 0.96875 -0.203125 0.96875 -0.625 C 0.96875 -0.84375 1.078125 -1.359375 1.265625 -1.625 C 1.453125 -1.890625 1.703125 -2.015625 1.90625 -2.015625 C 2.140625 -2.015625 2.34375 -1.890625 2.421875 -1.59375 Z M 2.203125 -0.65625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph10-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph10-1">
|
||||
<path style="stroke:none;" d="M 6.53125 0.296875 L 6.53125 -0.390625 L 3.234375 -0.390625 L 3.234375 17.4375 L 3.90625 17.4375 L 3.90625 0.296875 Z M 6.53125 0.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph10-2">
|
||||
<path style="stroke:none;" d="M 6.53125 17.421875 L 6.53125 16.734375 L 3.90625 16.734375 L 3.90625 -0.390625 L 3.234375 -0.390625 L 3.234375 17.421875 Z M 6.53125 17.421875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph10-3">
|
||||
<path style="stroke:none;" d="M 3.375 17.4375 L 3.375 -0.390625 L 0.0625 -0.390625 L 0.0625 0.296875 L 2.6875 0.296875 L 2.6875 17.4375 Z M 3.375 17.4375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph10-4">
|
||||
<path style="stroke:none;" d="M 3.375 17.421875 L 3.375 -0.390625 L 2.6875 -0.390625 L 2.6875 16.734375 L 0.0625 16.734375 L 0.0625 17.421875 Z M 3.375 17.421875 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
<clipPath id="clip1">
|
||||
<path d="M 560 96 L 584.148438 96 L 584.148438 128 L 560 128 Z M 560 96 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2">
|
||||
<path d="M 1.265625 63 L 16 63 L 16 65 L 1.265625 65 Z M 1.265625 63 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3">
|
||||
<path d="M 1.265625 48 L 32 48 L 32 80 L 1.265625 80 Z M 1.265625 48 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4">
|
||||
<path d="M 1.265625 86 L 67 86 L 67 88 L 1.265625 88 Z M 1.265625 86 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip5">
|
||||
<path d="M 1.265625 108 L 67 108 L 67 110 L 1.265625 110 Z M 1.265625 108 "/>
|
||||
<path d="M 437 96 L 461.539062 96 L 461.539062 128 L 437 128 Z M 437 96 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -56.692661 -42.522062 L 56.692571 -42.522062 L 56.692571 42.518827 L -56.692661 42.518827 Z M -56.692661 -42.522062 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -42.521898 -42.522062 L 42.518991 -42.522062 L 42.518991 42.518827 L -42.521898 42.518827 Z M -42.521898 -42.522062 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="413.085658" y="89.01628"/>
|
||||
<use xlink:href="#glyph0-1" x="307.386881" y="89.01628"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="421.870552" y="89.01628"/>
|
||||
<use xlink:href="#glyph1-1" x="316.17078" y="89.01628"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="425.722581" y="89.01628"/>
|
||||
<use xlink:href="#glyph2-1" x="320.023804" y="89.01628"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="430.366096" y="89.01628"/>
|
||||
<use xlink:href="#glyph1-2" x="324.667319" y="89.01628"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.540029 -39.984231 L 128.55717 -39.984231 L 128.55717 -11.635959 L 94.540029 -11.635959 Z M 94.540029 -39.984231 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.533979 -39.984231 L 111.547191 -39.984231 L 111.547191 -11.635959 L 77.533979 -11.635959 Z M 77.533979 -39.984231 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="525.623777" y="115.012009"/>
|
||||
<use xlink:href="#glyph0-2" x="403.013458" y="115.012009"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-1" x="532.875416" y="111.416516"/>
|
||||
<use xlink:href="#glyph3-1" x="410.264102" y="111.416516"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="539.066106" y="111.416516"/>
|
||||
<use xlink:href="#glyph4-1" x="416.455787" y="111.416516"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-1" x="531.87711" y="117.46104"/>
|
||||
<use xlink:href="#glyph5-1" x="409.266791" y="117.46104"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -85.539857 0.000346718 C -85.539857 5.504217 -89.998738 9.963099 -95.502609 9.963099 C -101.002551 9.963099 -105.465361 5.504217 -105.465361 0.000346718 C -105.465361 -5.503524 -101.002551 -9.962405 -95.502609 -9.962405 C -89.998738 -9.962405 -85.539857 -5.503524 -85.539857 0.000346718 Z M -85.539857 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -71.365165 0.000346718 C -71.365165 5.504217 -75.824046 9.963099 -81.327917 9.963099 C -86.831787 9.963099 -91.290669 5.504217 -91.290669 0.000346718 C -91.290669 -5.503524 -86.831787 -9.962405 -81.327917 -9.962405 C -75.824046 -9.962405 -71.365165 -5.503524 -71.365165 0.000346718 Z M -71.365165 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="322.53314" y="90.682775"/>
|
||||
<use xlink:href="#glyph6-1" x="230.925989" y="90.682775"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -21.198393 57.69081 L 21.198303 57.69081 L 21.198303 86.035153 L -21.198393 86.035153 Z M -21.198393 57.69081 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -21.197837 57.69081 L 21.198859 57.69081 L 21.198859 86.035153 L -21.197837 86.035153 Z M -21.197837 57.69081 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="405.877769" y="17.561833"/>
|
||||
<use xlink:href="#glyph0-3" x="300.177998" y="17.561833"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-2" x="415.497899" y="19.04736"/>
|
||||
<use xlink:href="#glyph4-3" x="418.359664" y="19.04736"/>
|
||||
<use xlink:href="#glyph4-3" x="423.470899" y="19.04736"/>
|
||||
<use xlink:href="#glyph4-2" x="309.799122" y="19.04736"/>
|
||||
<use xlink:href="#glyph4-3" x="312.660887" y="19.04736"/>
|
||||
<use xlink:href="#glyph4-3" x="317.772122" y="19.04736"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="429.07844" y="17.561833"/>
|
||||
<use xlink:href="#glyph1-1" x="323.379663" y="17.561833"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="432.931464" y="17.561833"/>
|
||||
<use xlink:href="#glyph2-1" x="327.231692" y="17.561833"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="437.574979" y="17.561833"/>
|
||||
<use xlink:href="#glyph1-2" x="331.875207" y="17.561833"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -189.280548 -14.173789 L -142.813896 -14.173789 L -142.813896 14.174483 L -189.280548 14.174483 Z M -189.280548 -14.173789 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -172.273386 -14.173789 L -125.806733 -14.173789 L -125.806733 14.174483 L -172.273386 14.174483 Z M -172.273386 -14.173789 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="238.748023" y="89.01628"/>
|
||||
<use xlink:href="#glyph0-3" x="149.959794" y="89.01628"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-4" x="248.368153" y="90.502801"/>
|
||||
<use xlink:href="#glyph4-5" x="254.215806" y="90.502801"/>
|
||||
<use xlink:href="#glyph4-4" x="159.580918" y="90.502801"/>
|
||||
<use xlink:href="#glyph4-5" x="165.42857" y="90.502801"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-6" x="259.848496" y="90.502801"/>
|
||||
<use xlink:href="#glyph4-6" x="171.061261" y="90.502801"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="266.000583" y="89.01628"/>
|
||||
<use xlink:href="#glyph1-1" x="177.213348" y="89.01628"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="269.853607" y="89.01628"/>
|
||||
<use xlink:href="#glyph2-1" x="181.065378" y="89.01628"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-2" x="274.497122" y="89.01628"/>
|
||||
<use xlink:href="#glyph1-2" x="185.708892" y="89.01628"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -261.145147 -14.173789 L -227.128006 -14.173789 L -227.128006 14.174483 L -261.145147 14.174483 Z M -261.145147 -14.173789 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -241.301586 -14.173789 L -207.284445 -14.173789 L -207.284445 14.174483 L -241.301586 14.174483 Z M -241.301586 -14.173789 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="175.380451" y="89.195259"/>
|
||||
<use xlink:href="#glyph0-2" x="89.411144" y="89.195259"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-2" x="181.633784" y="90.680786"/>
|
||||
<use xlink:href="#glyph5-2" x="95.664477" y="90.680786"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -298.493682 0.000346718 C -298.493682 5.504217 -302.956492 9.963099 -308.456434 9.963099 C -313.960304 9.963099 -318.419186 5.504217 -318.419186 0.000346718 C -318.419186 -5.503524 -313.960304 -9.962405 -308.456434 -9.962405 C -302.956492 -9.962405 -298.493682 -5.503524 -298.493682 0.000346718 Z M -298.493682 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -270.148782 0.000346718 C -270.148782 5.504217 -274.607664 9.963099 -280.111534 9.963099 C -285.611476 9.963099 -290.074286 5.504217 -290.074286 0.000346718 C -290.074286 -5.503524 -285.611476 -9.962405 -280.111534 -9.962405 C -274.607664 -9.962405 -270.148782 -5.503524 -270.148782 0.000346718 Z M -270.148782 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph6-1" x="110.787866" y="90.682775"/>
|
||||
<use xlink:href="#glyph6-1" x="33.27433" y="90.682775"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph7-1" x="107.262971" y="104.205645"/>
|
||||
<use xlink:href="#glyph7-1" x="29.749435" y="104.205645"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -406.296473 8.505614 L -372.279332 8.505614 L -372.279332 36.849958 L -406.296473 36.849958 Z M -406.296473 8.505614 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -125.30781 0.000346718 L -95.922406 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053902 0.000346718 L 1.606806 1.681758 L 3.087862 0.000346718 L 1.606806 -1.684993 Z M 6.053902 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,219.749963,86.539407)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="30.41628" y="62.117701"/>
|
||||
<use xlink:href="#glyph8-1" x="195.943517" y="47.476211"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph8-1" x="34.539761" y="63.141859"/>
|
||||
<use xlink:href="#glyph8-2" x="37.910806" y="63.141859"/>
|
||||
<use xlink:href="#glyph8-2" x="195.943517" y="65.307507"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.398;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00130749 -0.00182376 L 24.811288 -0.00182376 " transform="matrix(0.994329,0,0,-0.994329,24.243488,63.736468)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-7" x="24.243488" y="69.62886"/>
|
||||
<use xlink:href="#glyph2-2" x="202.84913" y="55.402005"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-8" x="29.544028" y="69.62886"/>
|
||||
<use xlink:href="#glyph4-9" x="33.065933" y="69.62886"/>
|
||||
<use xlink:href="#glyph4-10" x="37.014294" y="69.62886"/>
|
||||
<use xlink:href="#glyph3-2" x="208.519787" y="51.806512"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-4" x="41.507022" y="69.62886"/>
|
||||
<use xlink:href="#glyph5-3" x="208.519787" y="57.851036"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-1" x="45.280499" y="70.679865"/>
|
||||
<use xlink:href="#glyph9-1" x="213.203075" y="58.841388"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -142.314972 0.000346718 L -110.097098 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05263 0.000346718 L 1.609462 1.681758 L 3.086589 0.000346718 L 1.609462 -1.684993 Z M 6.05263 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,311.356697,86.539407)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-1" x="286.140711" y="47.476211"/>
|
||||
<use xlink:href="#glyph2-2" x="202.547849" y="67.289204"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-2" x="286.140711" y="65.307507"/>
|
||||
<use xlink:href="#glyph3-2" x="208.218505" y="63.693712"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="293.046323" y="55.402005"/>
|
||||
<use xlink:href="#glyph5-3" x="208.218505" y="69.738236"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="298.71698" y="51.806512"/>
|
||||
<use xlink:href="#glyph9-2" x="212.902787" y="70.789241"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-5" x="298.71698" y="57.851036"/>
|
||||
<use xlink:href="#glyph2-2" x="205.125148" y="79.176403"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-2" x="303.400268" y="58.841388"/>
|
||||
<use xlink:href="#glyph3-2" x="210.795805" y="75.581905"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="292.745042" y="67.289204"/>
|
||||
<use xlink:href="#glyph5-4" x="210.795805" y="81.982399"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="298.415698" y="63.693712"/>
|
||||
<use xlink:href="#glyph8-3" x="217.991761" y="47.476211"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-5" x="298.415698" y="69.738236"/>
|
||||
<use xlink:href="#glyph8-4" x="217.991761" y="65.307507"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -71.365165 0.000346718 L -47.652558 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055328 0.000346718 L 1.608232 1.681758 L 3.089288 0.000346718 L 1.608232 -1.684993 Z M 6.055328 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,267.748545,86.539407)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-3" x="303.09998" y="70.789241"/>
|
||||
<use xlink:href="#glyph8-1" x="246.760673" y="47.476211"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="295.322342" y="79.176403"/>
|
||||
<use xlink:href="#glyph8-2" x="246.760673" y="65.307507"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph3-2" x="300.992998" y="75.581905"/>
|
||||
<use xlink:href="#glyph2-2" x="253.665291" y="55.402005"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="300.992998" y="81.982399"/>
|
||||
<use xlink:href="#glyph5-3" x="259.335948" y="56.887532"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-3" x="308.188955" y="47.476211"/>
|
||||
<use xlink:href="#glyph9-1" x="264.02023" y="57.877883"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-4" x="308.188955" y="65.307507"/>
|
||||
<use xlink:href="#glyph2-2" x="253.36401" y="67.289204"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -85.539857 0.000346718 L -61.82725 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054046 0.000346718 L 1.60695 1.681758 L 3.088006 0.000346718 L 1.60695 -1.684993 Z M 6.054046 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,359.355288,86.539407)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-1" x="338.36683" y="47.476211"/>
|
||||
<use xlink:href="#glyph5-3" x="259.03566" y="68.774731"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-2" x="338.36683" y="65.307507"/>
|
||||
<use xlink:href="#glyph9-2" x="263.718948" y="69.825737"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="345.271448" y="55.402005"/>
|
||||
<use xlink:href="#glyph2-2" x="255.94131" y="79.176403"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-5" x="350.943099" y="56.887532"/>
|
||||
<use xlink:href="#glyph5-4" x="261.611966" y="80.66193"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-2" x="355.626387" y="57.877883"/>
|
||||
<use xlink:href="#glyph8-3" x="268.807923" y="47.476211"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="344.971161" y="67.289204"/>
|
||||
<use xlink:href="#glyph8-4" x="268.807923" y="65.307507"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.017914 25.810789 L 95.078793 25.810789 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052451 -0.000491282 L 1.609284 1.684848 L 3.086411 -0.000491282 L 1.609284 -1.681902 Z M 6.052451 -0.000491282 " transform="matrix(0.994329,0,0,-0.994329,409.669374,60.874512)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-5" x="350.641817" y="68.774731"/>
|
||||
<use xlink:href="#glyph8-1" x="385.989556" y="21.812588"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-3" x="355.325105" y="69.825737"/>
|
||||
<use xlink:href="#glyph8-2" x="385.989556" y="39.64289"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="347.547466" y="79.176403"/>
|
||||
<use xlink:href="#glyph2-3" x="392.894175" y="29.737388"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="353.219117" y="80.66193"/>
|
||||
<use xlink:href="#glyph5-3" x="397.224476" y="31.222915"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-3" x="360.415074" y="47.476211"/>
|
||||
<use xlink:href="#glyph9-1" x="401.908758" y="32.213266"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-4" x="360.415074" y="65.307507"/>
|
||||
<use xlink:href="#glyph2-3" x="392.592893" y="41.624587"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.191494 25.810789 L 109.252374 25.810789 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052611 -0.000491282 L 1.609444 1.684848 L 3.086571 -0.000491282 L 1.609444 -1.681902 Z M 6.052611 -0.000491282 " transform="matrix(0.994329,0,0,-0.994329,529.462184,60.874512)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-1" x="505.780954" y="21.812588"/>
|
||||
<use xlink:href="#glyph5-3" x="396.924189" y="43.110114"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-2" x="505.780954" y="39.64289"/>
|
||||
<use xlink:href="#glyph9-2" x="401.607477" y="44.161119"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="512.686566" y="29.737388"/>
|
||||
<use xlink:href="#glyph2-3" x="395.170193" y="53.511786"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-5" x="517.016868" y="31.222915"/>
|
||||
<use xlink:href="#glyph5-4" x="399.500494" y="54.997313"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-2" x="521.70115" y="32.213266"/>
|
||||
<use xlink:href="#glyph8-3" x="406.697445" y="21.811594"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="512.385285" y="41.624587"/>
|
||||
<use xlink:href="#glyph8-4" x="406.697445" y="39.64289"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.028449 25.810789 L 60.028449 71.864946 L 26.329519 71.864946 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.055047 -0.00166573 L 1.607951 1.683674 L 3.089007 -0.00166573 L 1.607951 -1.683077 Z M 6.055047 -0.00166573 " transform="matrix(-0.994329,0,0,0.994329,346.954301,15.083688)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 379.621094 60.875 C 379.621094 59.78125 378.734375 58.894531 377.640625 58.894531 C 376.542969 58.894531 375.65625 59.78125 375.65625 60.875 C 375.65625 61.96875 376.542969 62.855469 377.640625 62.855469 C 378.734375 62.855469 379.621094 61.96875 379.621094 60.875 Z M 379.621094 60.875 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -21.69676 71.864946 L -81.327917 71.864946 L -81.327917 14.594836 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053542 0.000013062 L 1.610375 1.681424 L 3.087502 0.000013062 L 1.610375 -1.681398 Z M 6.053542 0.000013062 " transform="matrix(0,0.994329,0.994329,0,237.085925,69.203446)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.017914 -25.810095 L 72.39939 -25.810095 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054506 0.00118472 L 1.60741 1.682596 L 3.088466 0.00118472 L 1.60741 -1.684155 Z M 6.054506 0.00118472 " transform="matrix(0.994329,0,0,-0.994329,387.120456,112.204303)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-5" x="516.715586" y="43.110114"/>
|
||||
<use xlink:href="#glyph8-1" x="365.981675" y="73.140828"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-3" x="521.399869" y="44.161119"/>
|
||||
<use xlink:href="#glyph8-2" x="365.981675" y="90.972124"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-3" x="514.962585" y="53.511786"/>
|
||||
<use xlink:href="#glyph2-4" x="372.585012" y="81.066622"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="519.292886" y="54.997313"/>
|
||||
<use xlink:href="#glyph4-1" x="378.246719" y="82.552149"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-3" x="526.488843" y="21.811594"/>
|
||||
<use xlink:href="#glyph2-4" x="372.585012" y="92.953822"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-4" x="526.488843" y="39.64289"/>
|
||||
<use xlink:href="#glyph4-7" x="378.246719" y="94.439349"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 74.198101 25.810789 L 74.198101 71.864946 L 26.328963 71.864946 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051675 -0.00166573 L 1.608507 1.683674 L 3.085635 -0.00166573 L 1.608507 -1.683077 Z M 6.051675 -0.00166573 " transform="matrix(-0.994329,0,0,0.994329,452.654072,15.083688)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 499.414062 60.875 C 499.414062 59.78125 498.527344 58.894531 497.429688 58.894531 C 496.335938 58.894531 495.449219 59.78125 495.449219 60.875 C 495.449219 61.96875 496.335938 62.855469 497.429688 62.855469 C 498.527344 62.855469 499.414062 61.96875 499.414062 60.875 Z M 499.414062 60.875 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -21.693388 71.864946 L -95.502609 71.864946 L -95.502609 14.594836 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053542 -0.00126901 L 1.610375 1.68407 L 3.087502 -0.00126901 L 1.610375 -1.68268 Z M 6.053542 -0.00126901 " transform="matrix(0,0.994329,0.994329,0,328.692668,69.203446)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.191494 -25.810095 L 89.409369 -25.810095 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052306 0.00118472 L 1.609139 1.682596 L 3.086266 0.00118472 L 1.609139 -1.684155 Z M 6.052306 0.00118472 " transform="matrix(0.994329,0,0,-0.994329,509.732018,112.204303)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-1" x="487.18303" y="73.140828"/>
|
||||
<use xlink:href="#glyph2-4" x="372.585012" y="104.841021"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-2" x="487.18303" y="90.972124"/>
|
||||
<use xlink:href="#glyph4-8" x="378.246719" y="106.326548"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="493.787361" y="81.066622"/>
|
||||
<use xlink:href="#glyph8-3" x="382.691368" y="73.140828"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-1" x="499.449069" y="82.552149"/>
|
||||
<use xlink:href="#glyph8-4" x="382.691368" y="90.972124"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="493.787361" y="92.953822"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-7" x="499.449069" y="94.439349"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="493.787361" y="104.841021"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph4-11" x="499.449069" y="106.326548"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-3" x="503.892724" y="73.140828"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-4" x="503.892724" y="90.972124"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.056093 -25.810095 L 152.7687 -25.810095 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 578.75 112.203125 L 574.332031 110.53125 L 575.800781 112.203125 L 574.332031 113.878906 Z M 578.75 112.203125 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.046115 -25.810095 L 135.758721 -25.810095 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 456.140625 112.203125 L 451.71875 110.53125 L 453.191406 112.203125 L 451.71875 113.878906 Z M 456.140625 112.203125 "/>
|
||||
<g clip-path="url(#clip1)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052438 0.00118472 L 1.609271 1.682596 L 3.086398 0.00118472 L 1.609271 -1.684155 Z M 6.052438 0.00118472 " transform="matrix(0.994329,0,0,-0.994329,572.731887,112.204303)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054668 0.00118472 L 1.607572 1.682596 L 3.088627 0.00118472 L 1.607572 -1.684155 Z M 6.054668 0.00118472 " transform="matrix(0.994329,0,0,-0.994329,450.120295,112.204303)"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:3.9851;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -355.272726 -28.347926 L -355.272726 28.348619 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -355.272726 0.000346718 L -323.054851 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054535 0.000346718 L 1.607439 1.681758 L 3.088495 0.000346718 L 1.607439 -1.684993 Z M 6.054535 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,99.608709,86.539407)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -312.749761 0.000346718 L -294.706023 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.052194 0.000346718 L 1.609027 1.681758 L 3.086154 0.000346718 L 1.609027 -1.684993 Z M 6.052194 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,22.095411,86.539407)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-1" x="75.528972" y="47.476211"/>
|
||||
<use xlink:href="#glyph8-1" x="5.062242" y="47.476211"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-2" x="75.528972" y="65.307507"/>
|
||||
<use xlink:href="#glyph8-2" x="5.062242" y="65.307507"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="82.132308" y="55.402005"/>
|
||||
<use xlink:href="#glyph2-5" x="11.665579" y="55.402005"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="86.601816" y="56.887532"/>
|
||||
<use xlink:href="#glyph5-4" x="16.135087" y="56.887532"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-4" x="90.725297" y="57.877883"/>
|
||||
<use xlink:href="#glyph9-3" x="20.258568" y="57.877883"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="82.254611" y="67.289204"/>
|
||||
<use xlink:href="#glyph2-5" x="11.787882" y="67.289204"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-6" x="86.724118" y="68.774731"/>
|
||||
<use xlink:href="#glyph5-5" x="16.257389" y="68.774731"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-5" x="90.40214" y="69.766077"/>
|
||||
<use xlink:href="#glyph9-4" x="19.935411" y="69.766077"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="82.191968" y="79.176403"/>
|
||||
<use xlink:href="#glyph2-5" x="11.725239" y="79.176403"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-6" x="86.661476" y="80.66193"/>
|
||||
<use xlink:href="#glyph5-5" x="16.194746" y="80.66193"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-6" x="90.339497" y="81.653276"/>
|
||||
<use xlink:href="#glyph9-5" x="19.872768" y="81.653276"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-3" x="95.311141" y="47.476211"/>
|
||||
<use xlink:href="#glyph8-3" x="24.844411" y="47.476211"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-4" x="95.311141" y="65.307507"/>
|
||||
<use xlink:href="#glyph8-4" x="24.844411" y="65.307507"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -298.493682 0.000346718 L -266.275807 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.05318 0.000346718 L 1.610013 1.681758 L 3.08714 0.000346718 L 1.610013 -1.684993 Z M 6.05318 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,156.063181,86.539407)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -270.148782 0.000346718 L -246.432247 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053631 0.000346718 L 1.610464 1.681758 L 3.087591 0.000346718 L 1.610464 -1.684993 Z M 6.053631 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,70.093982,86.539407)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-1" x="132.2067" y="47.476211"/>
|
||||
<use xlink:href="#glyph8-1" x="50.465278" y="47.476211"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-2" x="132.2067" y="65.307507"/>
|
||||
<use xlink:href="#glyph8-2" x="50.465278" y="65.307507"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-6" x="138.811031" y="55.402005"/>
|
||||
<use xlink:href="#glyph2-6" x="57.069609" y="55.402005"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="142.831102" y="56.887532"/>
|
||||
<use xlink:href="#glyph5-4" x="61.090674" y="56.887532"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-4" x="146.955578" y="57.877883"/>
|
||||
<use xlink:href="#glyph9-3" x="65.214155" y="57.877883"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-6" x="138.93234" y="67.289204"/>
|
||||
<use xlink:href="#glyph2-6" x="57.191912" y="67.289204"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-6" x="142.953405" y="68.774731"/>
|
||||
<use xlink:href="#glyph5-5" x="61.211983" y="68.774731"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-5" x="146.631426" y="69.766077"/>
|
||||
<use xlink:href="#glyph9-4" x="64.890004" y="69.766077"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-6" x="138.869697" y="79.176403"/>
|
||||
<use xlink:href="#glyph2-6" x="57.129269" y="79.176403"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-6" x="142.890762" y="80.66193"/>
|
||||
<use xlink:href="#glyph5-5" x="61.150334" y="80.66193"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-6" x="146.568784" y="81.653276"/>
|
||||
<use xlink:href="#glyph9-5" x="64.828356" y="81.653276"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-3" x="151.540427" y="47.476211"/>
|
||||
<use xlink:href="#glyph8-3" x="69.799005" y="47.476211"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-4" x="151.540427" y="65.307507"/>
|
||||
<use xlink:href="#glyph8-4" x="69.799005" y="65.307507"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -226.629083 0.000346718 L -194.415137 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054469 0.000346718 L 1.607373 1.681758 L 3.088429 0.000346718 L 1.607373 -1.684993 Z M 6.054469 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,227.51893,86.539407)"/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -206.789451 0.000346718 L -177.404046 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.053371 0.000346718 L 1.610204 1.681758 L 3.087331 0.000346718 L 1.610204 -1.684993 Z M 6.053371 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,138.730959,86.539407)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-1" x="201.06595" y="47.155043"/>
|
||||
<use xlink:href="#glyph8-1" x="113.687678" y="47.155043"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-2" x="201.06595" y="64.986339"/>
|
||||
<use xlink:href="#glyph8-2" x="113.687678" y="64.986339"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-6" x="207.971562" y="54.75768"/>
|
||||
<use xlink:href="#glyph2-6" x="120.592296" y="54.75768"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="211.991633" y="56.244201"/>
|
||||
<use xlink:href="#glyph5-4" x="124.613362" y="56.244201"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-7" x="216.116108" y="57.234553"/>
|
||||
<use xlink:href="#glyph9-6" x="128.737837" y="57.234553"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-2" x="220.306209" y="58.224904"/>
|
||||
<use xlink:href="#glyph9-1" x="132.927938" y="58.224904"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-6" x="207.670281" y="66.645874"/>
|
||||
<use xlink:href="#glyph2-6" x="120.292009" y="66.645874"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="211.691346" y="68.131401"/>
|
||||
<use xlink:href="#glyph5-4" x="124.313074" y="68.131401"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-7" x="215.814827" y="69.121752"/>
|
||||
<use xlink:href="#glyph9-6" x="128.436555" y="69.121752"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-3" x="220.005922" y="70.855861"/>
|
||||
<use xlink:href="#glyph9-2" x="132.627651" y="70.855861"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-6" x="210.230677" y="79.176403"/>
|
||||
<use xlink:href="#glyph2-6" x="122.852406" y="79.176403"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="214.251742" y="80.662925"/>
|
||||
<use xlink:href="#glyph5-4" x="126.873471" y="80.662925"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-8" x="218.375223" y="81.71393"/>
|
||||
<use xlink:href="#glyph9-7" x="130.996952" y="81.71393"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-3" x="225.590072" y="47.155043"/>
|
||||
<use xlink:href="#glyph8-3" x="138.2118" y="47.155043"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-4" x="225.590072" y="64.986339"/>
|
||||
<use xlink:href="#glyph8-4" x="138.2118" y="64.986339"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.0627 -25.810095 L 146.0627 -54.158368 L -308.456434 -54.158368 L -308.456434 -14.598071 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054235 -0.000646109 L 1.607139 1.684693 L 3.088195 -0.000646109 L 1.607139 -1.682057 Z M 6.054235 -0.000646109 " transform="matrix(0,-0.994329,-0.994329,0,116.94467,103.875369)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 570.867188 112.203125 C 570.867188 111.109375 569.980469 110.222656 568.886719 110.222656 C 567.792969 110.222656 566.90625 111.109375 566.90625 112.203125 C 566.90625 113.296875 567.792969 114.1875 568.886719 114.1875 C 569.980469 114.1875 570.867188 113.296875 570.867188 112.203125 Z M 570.867188 112.203125 "/>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.056649 -25.810095 L 129.056649 -54.158368 L -280.111534 -54.158368 L -280.111534 -14.598071 " transform="matrix(0.994329,0,0,-0.994329,317.952617,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.054235 0.00170417 L 1.607139 1.683115 L 3.088195 0.00170417 L 1.607139 -1.683635 Z M 6.054235 0.00170417 " transform="matrix(0,-0.994329,-0.994329,0,39.431382,103.875369)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 448.257812 112.203125 C 448.257812 111.109375 447.371094 110.222656 446.277344 110.222656 C 445.179688 110.222656 444.292969 111.109375 444.292969 112.203125 C 444.292969 113.296875 445.179688 114.1875 446.277344 114.1875 C 447.371094 114.1875 448.257812 113.296875 448.257812 112.203125 Z M 448.257812 112.203125 "/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-1" x="557.421413" y="73.140828"/>
|
||||
<use xlink:href="#glyph8-1" x="434.8101" y="73.140828"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-2" x="557.421413" y="90.972124"/>
|
||||
<use xlink:href="#glyph8-2" x="434.8101" y="90.972124"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-7" x="564.02475" y="81.066622"/>
|
||||
<use xlink:href="#glyph2-7" x="441.414431" y="81.066622"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-7" x="569.181339" y="82.552149"/>
|
||||
<use xlink:href="#glyph5-6" x="446.570025" y="82.552149"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="564.270349" y="92.953822"/>
|
||||
<use xlink:href="#glyph2-5" x="441.659036" y="92.953822"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-8" x="568.738862" y="94.439349"/>
|
||||
<use xlink:href="#glyph5-7" x="446.128543" y="94.439349"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="564.156996" y="104.841021"/>
|
||||
<use xlink:href="#glyph2-5" x="441.545682" y="104.841021"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-9" x="568.626503" y="106.326548"/>
|
||||
<use xlink:href="#glyph5-8" x="446.01519" y="106.326548"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-3" x="573.745307" y="73.140828"/>
|
||||
<use xlink:href="#glyph8-3" x="451.134988" y="73.140828"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph10-4" x="573.745307" y="90.972124"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip2)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -423.802003 22.675822 L -411.427133 22.675822 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
</g>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 17.753906 63.992188 L 13.335938 62.316406 L 14.808594 63.992188 L 13.335938 65.664062 Z M 17.753906 63.992188 "/>
|
||||
<g clip-path="url(#clip3)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051524 -0.00169821 L 1.608357 1.683641 L 3.089413 -0.00169821 L 1.608357 -1.683109 Z M 6.051524 -0.00169821 " transform="matrix(0.994329,0,0,-0.994329,11.736702,63.990499)"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-8" x="6.057216" y="58.708148"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-10" x="10.707691" y="60.194669"/>
|
||||
</g>
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -371.780409 22.675822 L -359.904463 22.675822 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051915 -0.00169821 L 1.608748 1.683641 L 3.085875 -0.00169821 L 1.608748 -1.683109 Z M 6.051915 -0.00169821 " transform="matrix(0.994329,0,0,-0.994329,62.966782,63.990499)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="55.60362" y="57.717796"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-3" x="60.073127" y="59.203323"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-4" x="64.196608" y="60.194669"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip4)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -423.802003 0.000346718 L -359.904463 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051915 0.000346718 L 1.608748 1.681758 L 3.085875 0.000346718 L 1.608748 -1.684993 Z M 6.051915 0.000346718 " transform="matrix(0.994329,0,0,-0.994329,62.966782,86.539407)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="6.057216" y="79.303678"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-6" x="10.526724" y="80.789205"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-5" x="14.204745" y="81.779556"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip5)" clip-rule="nonzero">
|
||||
<path style="fill:none;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -423.802003 -22.679057 L -359.904463 -22.679057 " transform="matrix(0.994329,0,0,-0.994329,423.652389,86.539407)"/>
|
||||
</g>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.99628;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.051915 -0.00153688 L 1.608748 1.683802 L 3.085875 -0.00153688 L 1.608748 -1.682948 Z M 6.051915 -0.00153688 " transform="matrix(0.994329,0,0,-0.994329,62.966782,109.088316)"/>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="6.057216" y="102.814579"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph5-6" x="10.526724" y="104.3011"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph9-6" x="14.204745" y="105.291452"/>
|
||||
<use xlink:href="#glyph8-4" x="451.134988" y="90.972124"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 73 KiB |
Before Width: | Height: | Size: 113 KiB After Width: | Height: | Size: 80 KiB |