Add 311 and 111 kinematics. Correct crystal positions

This commit is contained in:
Thomas Dehaeze 2021-12-09 10:17:54 +01:00
parent 37e98a9f40
commit 5c609777f1
42 changed files with 1940 additions and 666 deletions

View File

@ -144,17 +144,17 @@ ans = 1e3*(dz(end) - dz(1))
#+RESULTS:
: 24.963
** Kinematics (111 Crystal)
** Kinematics (311 Crystal)
*** Introduction :ignore:
The reference frame is taken at the center of the 111 second crystal.
The reference frame is taken at the center of the 311 second crystal.
*** Interferometers - 111 Crystal
*** Interferometers - 311 Crystal
Three interferometers are pointed to the bottom surface of the 111 crystal.
Three interferometers are pointed to the bottom surface of the 311 crystal.
The position of the measurement points are shown in Figure [[fig:sensor_111_crystal_points]] as well as the origin where the motion of the crystal is computed.
The position of the measurement points are shown in Figure [[fig:sensor_311_crystal_points]] as well as the origin where the motion of the crystal is computed.
#+begin_src latex :file sensor_111_crystal_points.pdf
#+begin_src latex :file sensor_311_crystal_points.pdf
\begin{tikzpicture}
% Crystal
\draw (-15/2, -3.5/2) rectangle (15/2, 3.5/2);
@ -174,6 +174,255 @@ The position of the measurement points are shown in Figure [[fig:sensor_111_crys
\draw[->] (0, 0) -- ++(0, -1) node[below]{$y$};
\draw[fill, color=black] (0, 0) circle (0.05);
\node[left] at (0,0) {$\mathcal{O}_{311}$};
\end{tikzpicture}
#+end_src
#+name: fig:sensor_311_crystal_points
#+caption: Bottom view of the second crystal 311. Position of the measurement points.
#+RESULTS:
[[file:figs/sensor_311_crystal_points.png]]
The inverse kinematics consisting of deriving the interferometer measurements from the motion of the crystal (see Figure [[fig:schematic_sensor_jacobian_inverse_kinematics_311]]):
\begin{equation}
\begin{bmatrix}
x_1 \\ x_2 \\ x_3
\end{bmatrix}
=
\bm{J}_{s,311}
\begin{bmatrix}
d_z \\ r_y \\ r_x
\end{bmatrix}
\end{equation}
#+begin_src latex :file schematic_sensor_jacobian_inverse_kinematics_311.pdf
\begin{tikzpicture}
% Blocs
\node[block] (Js) {$\bm{J}_{s,311}$};
% Connections and labels
\draw[->] ($(Js.west)+(-1.5,0)$) node[above right]{$\begin{bmatrix} d_z \\ r_y \\ r_x \end{bmatrix}$} -- (Js.west);
\draw[->] (Js.east) -- ++(1.5, 0) node[above left]{$\begin{bmatrix} x_1 \\ x_2 \\ x_3 \end{bmatrix}$};
\end{tikzpicture}
#+end_src
#+name: fig:schematic_sensor_jacobian_inverse_kinematics_311
#+caption: Inverse Kinematics - Interferometers
#+RESULTS:
[[file:figs/schematic_sensor_jacobian_inverse_kinematics_311.png]]
From the Figure [[fig:sensor_311_crystal_points]], the inverse kinematics can be solved as follow (for small motion):
\begin{equation}
\bm{J}_{s,311}
=
\begin{bmatrix}
1 & 0.07 & -0.015 \\
1 & 0 & 0.015 \\
1 & -0.07 & -0.015
\end{bmatrix}
\end{equation}
#+begin_src matlab
%% Sensor Jacobian matrix for 311 crystal
J_s_311 = [1, 0.07, -0.015
1, 0, 0.015
1, -0.07, -0.015];
#+end_src
#+begin_src matlab :exports results :results value table replace :tangle no
data2orgtable(J_s_311, {}, {}, ' %.3f ');
#+end_src
#+name: tab:jacobian_sensor_311
#+caption: Sensor Jacobian $\bm{J}_{s,311}$
#+attr_latex: :environment tabularx :width 0.3\linewidth :align ccc
#+attr_latex: :center t :booktabs t
#+RESULTS:
| 1.0 | 0.07 | -0.015 |
| 1.0 | 0.0 | 0.015 |
| 1.0 | -0.07 | -0.015 |
The forward kinematics is solved by inverting the Jacobian matrix (see Figure [[fig:schematic_sensor_jacobian_forward_kinematics_311]]).
\begin{equation}
\begin{bmatrix}
d_z \\ r_y \\ r_x
\end{bmatrix}
=
\bm{J}_{s,311}^{-1}
\begin{bmatrix}
x_1 \\ x_2 \\ x_3
\end{bmatrix}
\end{equation}
#+begin_src latex :file schematic_sensor_jacobian_forward_kinematics_311.pdf
\begin{tikzpicture}
% Blocs
\node[block] (Js_inv) {$\bm{J}_{s,311}^{-1}$};
% Connections and labels
\draw[->] ($(Js_inv.west)+(-1.5,0)$) node[above right]{$\begin{bmatrix} x_1 \\ x_2 \\ x_3 \end{bmatrix}$} -- (Js_inv.west);
\draw[->] (Js_inv.east) -- ++(1.5, 0) node[above left]{$\begin{bmatrix} d_z \\ r_y \\ r_x \end{bmatrix}$};
\end{tikzpicture}
#+end_src
#+name: fig:schematic_sensor_jacobian_forward_kinematics_311
#+caption: Forward Kinematics - Interferometers
#+RESULTS:
[[file:figs/schematic_sensor_jacobian_forward_kinematics_311.png]]
#+begin_src matlab :exports results :results value table replace :tangle no
data2orgtable(inv(J_s_311), {}, {}, ' %.2f ');
#+end_src
#+name: tab:inverse_jacobian_sensor_311
#+caption: Inverse of the sensor Jacobian $\bm{J}_{s,311}^{-1}$
#+attr_latex: :environment tabularx :width 0.3\linewidth :align ccc
#+attr_latex: :center t :booktabs t
#+RESULTS:
| 0.25 | 0.5 | 0.25 |
| 7.14 | 0.0 | -7.14 |
| -16.67 | 33.33 | -16.67 |
*** Piezo - 311 Crystal
The location of the actuators with respect with the center of the 311 second crystal are shown in Figure [[fig:actuator_jacobian_311_points]].
#+name: fig:actuator_jacobian_311_points
#+caption: Location of actuators with respect to the center of the 311 second crystal (bottom view)
#+attr_latex: :width \linewidth
[[file:figs/actuator_jacobian_311_points.png]]
Inverse Kinematics consist of deriving the axial (z) motion of the 3 actuators from the motion of the crystal's center.
\begin{equation}
\begin{bmatrix}
d_{u_r} \\ d_{u_h} \\ d_{d}
\end{bmatrix}
=
\bm{J}_{a,311}
\begin{bmatrix}
d_z \\ r_y \\ r_x
\end{bmatrix}
\end{equation}
#+begin_src latex :file schematic_actuator_jacobian_inverse_kinematics_311.pdf
\begin{tikzpicture}
% Blocs
\node[block] (Ja) {$\bm{J}_{a,311}$};
% Connections and labels
\draw[->] ($(Ja.west)+(-1.5,0)$) node[above right]{$\begin{bmatrix} d_z \\ r_y \\ r_x \end{bmatrix}$} -- (Ja.west);
\draw[->] (Ja.east) -- ++(1.5, 0) node[above left]{$\begin{bmatrix} d_{u_r} \\ d_{u_h} \\ d_d \end{bmatrix}$};
\end{tikzpicture}
#+end_src
#+name: fig:schematic_sensor_jacobian_inverse_kinematics_311
#+caption: Inverse Kinematics - Actuators
#+RESULTS:
[[file:figs/schematic_actuator_jacobian_inverse_kinematics_311.png]]
Based on the geometry in Figure [[fig:actuator_jacobian_311_points]], we obtain:
\begin{equation}
\bm{J}_{a,311}
=
\begin{bmatrix}
1 & 0.14 & -0.1525 \\
1 & 0.14 & 0.0675 \\
1 & -0.14 & -0.0425
\end{bmatrix}
\end{equation}
#+begin_src matlab
%% Actuator Jacobian - 311 crystal
J_a_311 = [1, 0.14, -0.1525
1, 0.14, 0.0675
1, -0.14, -0.0425];
#+end_src
#+begin_src matlab :exports results :results value table replace :tangle no
data2orgtable(J_a_311, {}, {}, ' %.4f ');
#+end_src
#+name: tab:jacobian_actuator_311
#+caption: Actuator Jacobian $\bm{J}_{a,311}$
#+attr_latex: :environment tabularx :width 0.3\linewidth :align ccc
#+attr_latex: :center t :booktabs t
#+RESULTS:
| 1.0 | 0.14 | -0.1525 |
| 1.0 | 0.14 | 0.0675 |
| 1.0 | -0.14 | -0.0425 |
The forward Kinematics is solved by inverting the Jacobian matrix:
\begin{equation}
\begin{bmatrix}
d_z \\ r_y \\ r_x
\end{bmatrix}
=
\bm{J}_{a,311}^{-1}
\begin{bmatrix}
d_{u_r} \\ d_{u_h} \\ d_{d}
\end{bmatrix}
\end{equation}
#+begin_src latex :file schematic_actuator_jacobian_forward_kinematics_311.pdf
\begin{tikzpicture}
% Blocs
\node[block] (Ja_inv) {$\bm{J}_{a,311}^{-1}$};
% Connections and labels
\draw[->] ($(Ja_inv.west)+(-1.5,0)$) node[above right]{$\begin{bmatrix} d_{u_r} \\ d_{u_h} \\ d_d \end{bmatrix}$} -- (Ja_inv.west);
\draw[->] (Ja_inv.east) -- ++(1.5, 0) node[above left]{$\begin{bmatrix} d_z \\ r_y \\ r_x \end{bmatrix}$};
\end{tikzpicture}
#+end_src
#+name: fig:schematic_actuator_jacobian_forward_kinematics_311
#+caption: Forward Kinematics - Actuators for 311 crystal
#+RESULTS:
[[file:figs/schematic_actuator_jacobian_forward_kinematics_311.png]]
#+begin_src matlab :exports results :results value table replace :tangle no
data2orgtable(inv(J_a_311), {}, {}, ' %.4f ');
#+end_src
#+name: tab:inverse_jacobian_actuator_311
#+caption: Inverse of the actuator Jacobian $\bm{J}_{a,311}^{-1}$
#+attr_latex: :environment tabularx :width 0.3\linewidth :align ccc
#+attr_latex: :center t :booktabs t
#+RESULTS:
| 0.0568 | 0.4432 | 0.5 |
| 1.7857 | 1.7857 | -3.5714 |
| -4.5455 | 4.5455 | 0.0 |
** Kinematics (111 Crystal)
*** Introduction :ignore:
The reference frame is taken at the center of the 111 second crystal.
*** Interferometers - 111 Crystal
Three interferometers are pointed to the bottom surface of the 111 crystal.
The position of the measurement points are shown in Figure [[fig:sensor_111_crystal_points]] as well as the origin where the motion of the crystal is computed.
#+begin_src latex :file sensor_111_crystal_points.pdf
\begin{tikzpicture}
% Crystal
\draw (-15/2, -3.5/2) rectangle (15/2, 3.5/2);
% Measurement Points
\node[branch] (a1) at (-7, -1.5){};
\node[branch] (a2) at ( 0, 1.5){};
\node[branch] (a3) at ( 7, -1.5){};
% Labels
\node[right] at (a1) {$\mathcal{O}_1 = (-0.07, 0.015)$};
\node[right] at (a2) {$\mathcal{O}_2 = (0, -0.015)$};
\node[left] at (a3) {$\mathcal{O}_3 = ( 0.07, 0.015)$};
% Origin
\draw[->] (0, 0) node[] -- ++(1, 0) node[right]{$x$};
\draw[->] (0, 0) -- ++(0, -1) node[below]{$y$};
\draw[fill, color=black] (0, 0) circle (0.05);
\node[left] at (0,0) {$\mathcal{O}_{111}$};
\end{tikzpicture}
#+end_src
@ -183,7 +432,7 @@ The position of the measurement points are shown in Figure [[fig:sensor_111_crys
#+RESULTS:
[[file:figs/sensor_111_crystal_points.png]]
The inverse kinematics consisting of deriving the interferometer measurements from the motion of the crystal (see Figure [[fig:schematic_sensor_jacobian_inverse_kinematics]]):
The inverse kinematics consisting of deriving the interferometer measurements from the motion of the crystal (see Figure [[fig:schematic_sensor_jacobian_inverse_kinematics_111]]):
\begin{equation}
\begin{bmatrix}
x_1 \\ x_2 \\ x_3
@ -195,7 +444,7 @@ d_z \\ r_y \\ r_x
\end{bmatrix}
\end{equation}
#+begin_src latex :file schematic_sensor_jacobian_inverse_kinematics.pdf
#+begin_src latex :file schematic_sensor_jacobian_inverse_kinematics_111.pdf
\begin{tikzpicture}
% Blocs
\node[block] (Js) {$\bm{J}_{s,111}$};
@ -206,10 +455,10 @@ d_z \\ r_y \\ r_x
\end{tikzpicture}
#+end_src
#+name: fig:schematic_sensor_jacobian_inverse_kinematics
#+name: fig:schematic_sensor_jacobian_inverse_kinematics_111
#+caption: Inverse Kinematics - Interferometers
#+RESULTS:
[[file:figs/schematic_sensor_jacobian_inverse_kinematics.png]]
[[file:figs/schematic_sensor_jacobian_inverse_kinematics_111.png]]
From the Figure [[fig:sensor_111_crystal_points]], the inverse kinematics can be solved as follow (for small motion):
@ -217,17 +466,17 @@ From the Figure [[fig:sensor_111_crystal_points]], the inverse kinematics can be
\bm{J}_{s,111}
=
\begin{bmatrix}
1 & 0.07 & -0.015 \\
1 & 0 & 0.015 \\
1 & -0.07 & -0.015
1 & 0.07 & 0.015 \\
1 & 0 & -0.015 \\
1 & -0.07 & 0.015
\end{bmatrix}
\end{equation}
#+begin_src matlab
%% Sensor Jacobian matrix for 111 crystal
J_s_111 = [1, 0.07, -0.015
1, 0, 0.015
1, -0.07, -0.015];
J_s_111 = [1, 0.07, 0.015
1, 0, -0.015
1, -0.07, 0.015];
#+end_src
#+begin_src matlab :exports results :results value table replace :tangle no
@ -239,11 +488,11 @@ data2orgtable(J_s_111, {}, {}, ' %.3f ');
#+attr_latex: :environment tabularx :width 0.3\linewidth :align ccc
#+attr_latex: :center t :booktabs t
#+RESULTS:
| 1.0 | 0.07 | -0.015 |
| 1.0 | 0.0 | 0.015 |
| 1.0 | -0.07 | -0.015 |
| 1.0 | 0.07 | 0.015 |
| 1.0 | 0.0 | -0.015 |
| 1.0 | -0.07 | 0.015 |
The forward kinematics is solved by inverting the Jacobian matrix (see Figure [[fig:schematic_sensor_jacobian_forward_kinematics]]).
The forward kinematics is solved by inverting the Jacobian matrix (see Figure [[fig:schematic_sensor_jacobian_forward_kinematics_111]]).
\begin{equation}
\begin{bmatrix}
d_z \\ r_y \\ r_x
@ -255,7 +504,7 @@ x_1 \\ x_2 \\ x_3
\end{bmatrix}
\end{equation}
#+begin_src latex :file schematic_sensor_jacobian_forward_kinematics.pdf
#+begin_src latex :file schematic_sensor_jacobian_forward_kinematics_111.pdf
\begin{tikzpicture}
% Blocs
\node[block] (Js_inv) {$\bm{J}_{s,111}^{-1}$};
@ -266,10 +515,10 @@ x_1 \\ x_2 \\ x_3
\end{tikzpicture}
#+end_src
#+name: fig:schematic_sensor_jacobian_forward_kinematics
#+name: fig:schematic_sensor_jacobian_forward_kinematics_111
#+caption: Forward Kinematics - Interferometers
#+RESULTS:
[[file:figs/schematic_sensor_jacobian_forward_kinematics.png]]
[[file:figs/schematic_sensor_jacobian_forward_kinematics_111.png]]
#+begin_src matlab :exports results :results value table replace :tangle no
data2orgtable(inv(J_s_111), {}, {}, ' %.2f ');
@ -280,9 +529,9 @@ data2orgtable(inv(J_s_111), {}, {}, ' %.2f ');
#+attr_latex: :environment tabularx :width 0.3\linewidth :align ccc
#+attr_latex: :center t :booktabs t
#+RESULTS:
| 0.25 | 0.5 | 0.25 |
| 7.14 | 0.0 | -7.14 |
| -16.67 | 33.33 | -16.67 |
| 0.25 | 0.5 | 0.25 |
| 7.14 | 0.0 | -7.14 |
| 16.67 | -33.33 | 16.67 |
*** Piezo - 111 Crystal
@ -305,7 +554,7 @@ d_z \\ r_y \\ r_x
\end{bmatrix}
\end{equation}
#+begin_src latex :file schematic_actuator_jacobian_inverse_kinematics.pdf
#+begin_src latex :file schematic_actuator_jacobian_inverse_kinematics_111.pdf
\begin{tikzpicture}
% Blocs
\node[block] (Ja) {$\bm{J}_{a,111}$};
@ -316,10 +565,10 @@ d_z \\ r_y \\ r_x
\end{tikzpicture}
#+end_src
#+name: fig:schematic_sensor_jacobian_inverse_kinematics
#+name: fig:schematic_sensor_jacobian_inverse_kinematics_111
#+caption: Inverse Kinematics - Actuators
#+RESULTS:
[[file:figs/schematic_actuator_jacobian_inverse_kinematics.png]]
[[file:figs/schematic_actuator_jacobian_inverse_kinematics_111.png]]
Based on the geometry in Figure [[fig:actuator_jacobian_111_points]], we obtain:
\begin{equation}
@ -328,7 +577,7 @@ Based on the geometry in Figure [[fig:actuator_jacobian_111_points]], we obtain:
\begin{bmatrix}
1 & 0.14 & -0.1525 \\
1 & 0.14 & 0.0675 \\
1 & -0.14 & -0.0425
1 & -0.14 & 0.0425
\end{bmatrix}
\end{equation}
@ -336,7 +585,7 @@ Based on the geometry in Figure [[fig:actuator_jacobian_111_points]], we obtain:
%% Actuator Jacobian - 111 crystal
J_a_111 = [1, 0.14, -0.1525
1, 0.14, 0.0675
1, -0.14, -0.0425];
1, -0.14, 0.0425];
#+end_src
#+begin_src matlab :exports results :results value table replace :tangle no
@ -350,7 +599,7 @@ data2orgtable(J_a_111, {}, {}, ' %.4f ');
#+RESULTS:
| 1.0 | 0.14 | -0.1525 |
| 1.0 | 0.14 | 0.0675 |
| 1.0 | -0.14 | -0.0425 |
| 1.0 | -0.14 | 0.0425 |
The forward Kinematics is solved by inverting the Jacobian matrix:
\begin{equation}
@ -364,7 +613,7 @@ d_{u_r} \\ d_{u_h} \\ d_{d}
\end{bmatrix}
\end{equation}
#+begin_src latex :file schematic_actuator_jacobian_forward_kinematics.pdf
#+begin_src latex :file schematic_actuator_jacobian_forward_kinematics_111.pdf
\begin{tikzpicture}
% Blocs
\node[block] (Ja_inv) {$\bm{J}_{a,111}^{-1}$};
@ -375,10 +624,10 @@ d_{u_r} \\ d_{u_h} \\ d_{d}
\end{tikzpicture}
#+end_src
#+name: fig:schematic_actuator_jacobian_forward_kinematics
#+name: fig:schematic_actuator_jacobian_forward_kinematics_111
#+caption: Forward Kinematics - Actuators for 111 crystal
#+RESULTS:
[[file:figs/schematic_actuator_jacobian_forward_kinematics.png]]
[[file:figs/schematic_actuator_jacobian_forward_kinematics_111.png]]
#+begin_src matlab :exports results :results value table replace :tangle no
data2orgtable(inv(J_a_111), {}, {}, ' %.4f ');
@ -389,8 +638,8 @@ data2orgtable(inv(J_a_111), {}, {}, ' %.4f ');
#+attr_latex: :environment tabularx :width 0.3\linewidth :align ccc
#+attr_latex: :center t :booktabs t
#+RESULTS:
| 0.0568 | 0.4432 | 0.5 |
| 1.7857 | 1.7857 | -3.5714 |
| 0.25 | 0.25 | 0.5 |
| 0.4058 | 3.1656 | -3.5714 |
| -4.5455 | 4.5455 | 0.0 |
** TODO Inputs and Outputs :noexport:
@ -402,11 +651,11 @@ Disturbances:
** Save Kinematics
#+begin_src matlab :exports none :tangle no
save('matlab/mat/dcm_kinematics.mat', 'J_a_111', 'J_s_111')
save('matlab/mat/dcm_kinematics.mat', 'J_a_311', 'J_s_311', 'J_a_111', 'J_s_111')
#+end_src
#+begin_src matlab :eval no
save('mat/dcm_kinematics.mat', 'J_a_111', 'J_s_111')
save('mat/dcm_kinematics.mat', 'J_a_311', 'J_s_311', 'J_a_111', 'J_s_111')
#+end_src
* Open Loop System Identification
@ -1560,7 +1809,7 @@ load('Kiff.mat');
#+begin_src matlab :exports none
%% Identification of the damped plant with IFF
controller.type = 1; % IFF
G_dp = J_a_111*inv(J_s_111)*linearize(mdl, io);
G_dp = J_a_311*inv(J_s_311)*linearize(mdl, io);
G_dp.InputName = {'u_ur', 'u_uh', 'u_d'};
G_dp.OutputName = {'d_ur', 'd_uh', 'd_d'};
#+end_src

Binary file not shown.

Before

Width:  |  Height:  |  Size: 118 KiB

After

Width:  |  Height:  |  Size: 52 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,185 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="122.048pt" height="58.676pt" viewBox="0 0 122.048 58.676" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 5.953125 -6.125 C 6 -6.28125 6 -6.296875 6.078125 -6.296875 C 6.1875 -6.3125 6.328125 -6.3125 6.453125 -6.3125 C 6.703125 -6.3125 6.859375 -6.3125 6.859375 -6.609375 C 6.859375 -6.625 6.859375 -6.78125 6.65625 -6.78125 C 6.453125 -6.78125 6.234375 -6.765625 6.03125 -6.765625 C 5.8125 -6.765625 5.578125 -6.75 5.34375 -6.75 C 4.96875 -6.75 4.015625 -6.78125 3.625 -6.78125 C 3.515625 -6.78125 3.328125 -6.78125 3.328125 -6.5 C 3.328125 -6.3125 3.484375 -6.3125 3.671875 -6.3125 L 4.015625 -6.3125 C 4.40625 -6.3125 4.421875 -6.3125 4.65625 -6.296875 L 3.46875 -1.5 C 3.21875 -0.484375 2.59375 -0.1875 2.140625 -0.1875 C 2.046875 -0.1875 1.625 -0.203125 1.328125 -0.421875 C 1.859375 -0.546875 2.03125 -1.015625 2.03125 -1.28125 C 2.03125 -1.609375 1.765625 -1.84375 1.4375 -1.84375 C 1.03125 -1.84375 0.546875 -1.53125 0.546875 -0.90625 C 0.546875 -0.234375 1.234375 0.171875 2.1875 0.171875 C 3.296875 0.171875 4.484375 -0.28125 4.78125 -1.4375 Z M 5.953125 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5.421875 -1.734375 C 5.421875 -1.90625 5.265625 -1.90625 5.171875 -1.90625 L 1 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.5625 0.90625 -1.5625 1 -1.5625 L 5.171875 -1.5625 C 5.265625 -1.5625 5.421875 -1.5625 5.421875 -1.734375 Z M 5.421875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.40625 C 2.3125 -4.59375 2.3125 -4.59375 2.109375 -4.59375 C 1.671875 -4.15625 1.03125 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.09375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 3.953125 -0.984375 C 3.953125 -1.078125 3.859375 -1.078125 3.84375 -1.078125 C 3.75 -1.078125 3.734375 -1.046875 3.6875 -0.859375 C 3.609375 -0.53125 3.46875 -0.125 3.1875 -0.125 C 3 -0.125 2.953125 -0.28125 2.953125 -0.46875 C 2.953125 -0.578125 3.015625 -0.828125 3.0625 -1.015625 L 3.21875 -1.640625 C 3.28125 -1.890625 3.28125 -1.9375 3.34375 -2.15625 C 3.390625 -2.34375 3.46875 -2.671875 3.46875 -2.703125 C 3.46875 -2.859375 3.34375 -2.921875 3.234375 -2.921875 C 3.125 -2.921875 2.96875 -2.84375 2.921875 -2.640625 C 2.78125 -2.875 2.546875 -3.046875 2.203125 -3.046875 C 1.328125 -3.046875 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.578125 0 2.984375 0.0625 3.15625 0.0625 C 3.40625 0.0625 3.578125 -0.078125 3.703125 -0.296875 C 3.859375 -0.5625 3.953125 -0.96875 3.953125 -0.984375 Z M 2.796875 -2.15625 L 2.484375 -0.859375 C 2.421875 -0.671875 2.28125 -0.53125 2.125 -0.40625 C 2.0625 -0.34375 1.78125 -0.125 1.484375 -0.125 C 1.234375 -0.125 0.984375 -0.296875 0.984375 -0.796875 C 0.984375 -1.15625 1.1875 -1.921875 1.34375 -2.203125 C 1.65625 -2.75 2.015625 -2.859375 2.203125 -2.859375 C 2.6875 -2.859375 2.828125 -2.328125 2.828125 -2.25 C 2.828125 -2.234375 2.8125 -2.1875 2.796875 -2.15625 Z M 2.796875 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 1.65625 -0.046875 C 1.65625 -0.46875 1.484375 -0.796875 1.171875 -0.796875 C 0.9375 -0.796875 0.78125 -0.609375 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.171875 0 C 1.34375 0 1.453125 -0.109375 1.453125 -0.109375 C 1.453125 0.265625 1.390625 0.71875 0.921875 1.15625 C 0.890625 1.1875 0.875 1.203125 0.875 1.234375 C 0.875 1.28125 0.921875 1.328125 0.96875 1.328125 C 1.0625 1.328125 1.65625 0.78125 1.65625 -0.046875 Z M 1.65625 -0.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 4.34375 -0.984375 C 4.34375 -1.078125 4.25 -1.078125 4.234375 -1.078125 C 4.125 -1.078125 4.125 -1.046875 4.078125 -0.859375 C 4 -0.546875 3.859375 -0.125 3.578125 -0.125 C 3.390625 -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.59375 -1.640625 L 3.765625 -2.25 C 3.796875 -2.421875 3.875 -2.734375 3.875 -2.765625 C 3.875 -2.90625 3.765625 -2.984375 3.640625 -2.984375 C 3.390625 -2.984375 3.34375 -2.78125 3.28125 -2.5625 L 2.921875 -1.125 C 2.890625 -0.984375 2.828125 -0.71875 2.8125 -0.71875 C 2.6875 -0.5 2.40625 -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.59375 1.890625 -2.109375 C 1.9375 -2.25 1.984375 -2.34375 1.984375 -2.453125 C 1.984375 -2.8125 1.6875 -3.046875 1.328125 -3.046875 C 0.640625 -3.046875 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.578125 1.03125 -2.859375 1.3125 -2.859375 C 1.421875 -2.859375 1.484375 -2.78125 1.484375 -2.609375 C 1.484375 -2.453125 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.703125 0.0625 1.953125 0.0625 C 2.390625 0.0625 2.625 -0.171875 2.859375 -0.390625 C 3 0.0625 3.46875 0.0625 3.546875 0.0625 C 3.78125 0.0625 3.96875 -0.0625 4.09375 -0.296875 C 4.25 -0.5625 4.34375 -0.96875 4.34375 -0.984375 Z M 4.34375 -0.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 3.953125 -0.984375 C 3.953125 -1.078125 3.859375 -1.078125 3.84375 -1.078125 C 3.75 -1.078125 3.734375 -1.046875 3.6875 -0.859375 C 3.609375 -0.53125 3.46875 -0.125 3.1875 -0.125 C 3 -0.125 2.953125 -0.28125 2.953125 -0.46875 C 2.953125 -0.59375 2.96875 -0.65625 2.984375 -0.75 L 3.953125 -4.59375 C 3.953125 -4.609375 3.984375 -4.703125 3.984375 -4.703125 C 3.984375 -4.734375 3.953125 -4.796875 3.875 -4.796875 C 3.734375 -4.796875 3.15625 -4.75 2.984375 -4.734375 C 2.921875 -4.734375 2.828125 -4.71875 2.828125 -4.578125 C 2.828125 -4.484375 2.921875 -4.484375 3.015625 -4.484375 C 3.34375 -4.484375 3.34375 -4.4375 3.34375 -4.375 C 3.34375 -4.328125 3.328125 -4.28125 3.3125 -4.21875 L 2.921875 -2.640625 C 2.78125 -2.875 2.546875 -3.046875 2.203125 -3.046875 C 1.328125 -3.046875 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.578125 0 2.984375 0.0625 3.15625 0.0625 C 3.40625 0.0625 3.578125 -0.078125 3.703125 -0.296875 C 3.859375 -0.5625 3.953125 -0.96875 3.953125 -0.984375 Z M 2.796875 -2.15625 L 2.484375 -0.859375 C 2.421875 -0.671875 2.28125 -0.53125 2.125 -0.40625 C 2.0625 -0.34375 1.78125 -0.125 1.484375 -0.125 C 1.234375 -0.125 0.984375 -0.296875 0.984375 -0.796875 C 0.984375 -1.15625 1.1875 -1.921875 1.34375 -2.203125 C 1.65625 -2.75 2.015625 -2.859375 2.203125 -2.859375 C 2.6875 -2.859375 2.828125 -2.328125 2.828125 -2.25 C 2.828125 -2.234375 2.8125 -2.1875 2.796875 -2.15625 Z M 2.796875 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 3.453125 -1 C 3.453125 -1.09375 3.375 -1.09375 3.328125 -1.09375 C 3.25 -1.09375 3.234375 -1.0625 3.203125 -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.609375 1.453125 -0.609375 1.328125 -0.609375 C 1.328125 -0.609375 1.203125 -0.609375 1.15625 -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.53125 3.609375 -2.890625 3.609375 -2.96875 C 3.609375 -3.046875 3.515625 -3.046875 3.484375 -3.046875 C 3.421875 -3.046875 3.40625 -3.03125 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.5625 2.453125 -2.765625 C 2.21875 -3 2.0625 -3.046875 1.90625 -3.046875 C 1.34375 -3.046875 0.96875 -2.453125 0.96875 -2.25 C 0.96875 -2.1875 1.046875 -2.15625 1.09375 -2.15625 C 1.171875 -2.15625 1.1875 -2.1875 1.21875 -2.25 C 1.328125 -2.5 1.703125 -2.515625 1.828125 -2.515625 C 1.984375 -2.515625 2.15625 -2.46875 2.25 -2.453125 C 2.640625 -2.375 2.6875 -2.375 2.859375 -2.375 C 2.671875 -2.1875 2.546875 -2.0625 1.890625 -1.53125 C 1.359375 -1.09375 1.171875 -0.921875 1.03125 -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.875 -0.03125 2.015625 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="glyph3-6">
<path style="stroke:none;" d="M 3.84375 -2.609375 C 3.875 -2.703125 3.875 -2.71875 3.875 -2.765625 C 3.875 -2.90625 3.765625 -2.984375 3.640625 -2.984375 C 3.578125 -2.984375 3.4375 -2.953125 3.359375 -2.8125 C 3.34375 -2.78125 3.28125 -2.546875 3.25 -2.421875 L 3.109375 -1.84375 L 2.828125 -0.734375 C 2.828125 -0.734375 2.515625 -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.953125 -2.265625 2 -2.34375 2 -2.46875 C 2 -2.796875 1.703125 -3.046875 1.328125 -3.046875 C 0.640625 -3.046875 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.03125 -2.859375 1.3125 -2.859375 C 1.4375 -2.859375 1.484375 -2.78125 1.484375 -2.609375 C 1.484375 -2.453125 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.359375 1.265625 -0.140625 C 1.46875 0.03125 1.765625 0.0625 1.953125 0.0625 C 2.234375 0.0625 2.484375 -0.03125 2.703125 -0.25 C 2.609375 0.140625 2.546875 0.421875 2.25 0.78125 C 2.0625 0.984375 1.78125 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.796875 C 0.609375 1.15625 0.9375 1.40625 1.421875 1.40625 C 2.125 1.40625 2.96875 0.875 3.1875 0 Z M 3.84375 -2.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 3.875 -0.984375 C 3.875 -1.078125 3.78125 -1.078125 3.765625 -1.078125 C 3.671875 -1.078125 3.65625 -1.046875 3.640625 -0.96875 C 3.484375 -0.484375 3.078125 -0.125 2.6875 -0.125 C 2.40625 -0.125 2.265625 -0.3125 2.265625 -0.578125 C 2.265625 -0.75 2.421875 -1.390625 2.625 -2.15625 C 2.765625 -2.6875 3.078125 -2.859375 3.296875 -2.859375 C 3.296875 -2.859375 3.53125 -2.859375 3.671875 -2.765625 C 3.453125 -2.703125 3.375 -2.5 3.375 -2.375 C 3.375 -2.234375 3.484375 -2.125 3.640625 -2.125 C 3.8125 -2.125 4.03125 -2.25 4.03125 -2.546875 C 4.03125 -2.9375 3.59375 -3.046875 3.3125 -3.046875 C 2.96875 -3.046875 2.6875 -2.828125 2.546875 -2.5625 C 2.421875 -2.84375 2.09375 -3.046875 1.703125 -3.046875 C 0.9375 -3.046875 0.484375 -2.203125 0.484375 -2 C 0.484375 -1.90625 0.59375 -1.90625 0.609375 -1.90625 C 0.703125 -1.90625 0.703125 -1.9375 0.734375 -2.015625 C 0.90625 -2.5625 1.34375 -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.015625 -1.921875 1.953125 -1.6875 L 1.71875 -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.65625 -0.125 1.828125 -0.421875 C 2 -0.0625 2.375 0.0625 2.65625 0.0625 C 3.453125 0.0625 3.875 -0.796875 3.875 -0.984375 Z M 3.875 -0.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 6.515625 0.296875 L 6.515625 -0.390625 L 3.21875 -0.390625 L 3.21875 17.40625 L 3.90625 17.40625 L 3.90625 0.296875 Z M 6.515625 0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 6.515625 17.390625 L 6.515625 16.71875 L 3.90625 16.71875 L 3.90625 -0.390625 L 3.21875 -0.390625 L 3.21875 17.390625 Z M 6.515625 17.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M 3.359375 17.40625 L 3.359375 -0.390625 L 0.0625 -0.390625 L 0.0625 0.296875 L 2.6875 0.296875 L 2.6875 17.40625 Z M 3.359375 17.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M 3.359375 17.390625 L 3.359375 -0.390625 L 2.6875 -0.390625 L 2.6875 16.71875 L 0.0625 16.71875 L 0.0625 17.390625 Z M 3.359375 17.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 4.921875 -1.421875 C 4.921875 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.703125 -1.515625 4.703125 -1.46875 4.671875 -1.328125 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.671875 -1.03125 L 5.109375 -6.75 C 5.109375 -6.75 5.109375 -6.859375 4.96875 -6.859375 C 4.828125 -6.859375 3.890625 -6.78125 3.71875 -6.75 C 3.640625 -6.75 3.578125 -6.703125 3.578125 -6.5625 C 3.578125 -6.453125 3.671875 -6.453125 3.8125 -6.453125 C 4.296875 -6.453125 4.3125 -6.375 4.3125 -6.28125 L 4.28125 -6.078125 L 3.6875 -3.734375 C 3.515625 -4.109375 3.21875 -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.890625 0.109375 C 4.25 0.109375 4.46875 -0.125 4.625 -0.4375 C 4.796875 -0.796875 4.921875 -1.421875 4.921875 -1.421875 Z M 3.546875 -3.109375 L 3.046875 -1.171875 C 3 -1 3 -0.984375 2.84375 -0.8125 C 2.40625 -0.265625 2 -0.109375 1.734375 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.03125 C 1.09375 -1.53125 1.421875 -2.75 1.640625 -3.203125 C 1.953125 -3.78125 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.21875 3.546875 -3.171875 3.546875 -3.109375 Z M 3.546875 -3.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 4.3125 -3.734375 C 4.3125 -4.078125 4 -4.375 3.484375 -4.375 C 2.84375 -4.375 2.40625 -3.890625 2.21875 -3.609375 C 2.140625 -4.0625 1.796875 -4.375 1.328125 -4.375 C 0.875 -4.375 0.6875 -3.984375 0.59375 -3.8125 C 0.421875 -3.46875 0.28125 -2.875 0.28125 -2.84375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.578125 -2.984375 C 0.734375 -3.671875 0.9375 -4.15625 1.296875 -4.15625 C 1.46875 -4.15625 1.609375 -4.078125 1.609375 -3.703125 C 1.609375 -3.484375 1.578125 -3.375 1.4375 -2.875 L 0.875 -0.578125 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.0625 0.109375 C 1.1875 0.109375 1.359375 0.03125 1.4375 -0.171875 C 1.453125 -0.203125 1.796875 -1.546875 1.828125 -1.734375 L 2.140625 -3.015625 C 2.1875 -3.140625 2.46875 -3.609375 2.703125 -3.828125 C 2.78125 -3.890625 3.0625 -4.15625 3.484375 -4.15625 C 3.75 -4.15625 3.90625 -4.03125 3.90625 -4.03125 C 3.609375 -3.984375 3.390625 -3.75 3.390625 -3.484375 C 3.390625 -3.328125 3.5 -3.140625 3.765625 -3.140625 C 4.03125 -3.140625 4.3125 -3.375 4.3125 -3.734375 Z M 4.3125 -3.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph6-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph6-1">
<path style="stroke:none;" d="M 3.21875 -1.78125 C 3.21875 -2.140625 2.703125 -2.1875 2.453125 -2.1875 C 2.34375 -2.1875 2 -2.1875 1.671875 -1.796875 C 1.609375 -2.0625 1.328125 -2.1875 1.078125 -2.1875 C 0.90625 -2.1875 0.765625 -2.109375 0.640625 -1.90625 C 0.515625 -1.703125 0.453125 -1.453125 0.453125 -1.421875 C 0.453125 -1.34375 0.515625 -1.34375 0.546875 -1.34375 C 0.640625 -1.34375 0.640625 -1.359375 0.671875 -1.484375 C 0.75 -1.78125 0.875 -2.015625 1.0625 -2.015625 C 1.21875 -2.015625 1.265625 -1.859375 1.265625 -1.75 C 1.265625 -1.6875 1.203125 -1.5 1.1875 -1.375 L 1.078125 -0.921875 L 0.953125 -0.484375 C 0.921875 -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.21875 0.015625 1.28125 -0.078125 C 1.296875 -0.109375 1.328125 -0.265625 1.359375 -0.375 L 1.46875 -0.8125 C 1.484375 -0.890625 1.53125 -1.078125 1.546875 -1.140625 L 1.609375 -1.359375 C 1.625 -1.453125 1.78125 -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.6875 -1.859375 2.6875 -1.640625 2.6875 -1.640625 C 2.6875 -1.5625 2.75 -1.4375 2.90625 -1.4375 C 3.046875 -1.4375 3.21875 -1.5625 3.21875 -1.78125 Z M 3.21875 -1.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph6-2">
<path style="stroke:none;" d="M 3.640625 -0.71875 C 3.640625 -0.78125 3.5625 -0.78125 3.53125 -0.78125 C 3.453125 -0.78125 3.453125 -0.765625 3.421875 -0.671875 C 3.328125 -0.390625 3.109375 -0.109375 2.859375 -0.109375 C 2.75 -0.109375 2.71875 -0.1875 2.71875 -0.296875 C 2.71875 -0.40625 2.78125 -0.546875 2.8125 -0.65625 C 2.875 -0.796875 3.09375 -1.328125 3.09375 -1.59375 C 3.09375 -1.9375 2.859375 -2.1875 2.359375 -2.1875 C 1.859375 -2.1875 1.578125 -1.875 1.4375 -1.703125 L 1.8125 -3.234375 C 1.84375 -3.3125 1.84375 -3.3125 1.84375 -3.34375 C 1.84375 -3.421875 1.765625 -3.421875 1.6875 -3.421875 L 1.078125 -3.375 C 1 -3.375 0.984375 -3.375 0.953125 -3.34375 C 0.9375 -3.328125 0.921875 -3.265625 0.921875 -3.234375 C 0.921875 -3.15625 1 -3.15625 1.078125 -3.15625 C 1.078125 -3.15625 1.171875 -3.15625 1.234375 -3.140625 C 1.328125 -3.125 1.34375 -3.109375 1.34375 -3.078125 C 1.34375 -3.0625 1.34375 -3.046875 1.3125 -2.96875 L 0.625 -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 -0.015625 1.03125 -0.140625 C 1.046875 -0.1875 1.078125 -0.25 1.140625 -0.578125 L 1.234375 -0.90625 C 1.3125 -1.203125 1.3125 -1.21875 1.453125 -1.4375 C 1.65625 -1.734375 1.9375 -2.015625 2.328125 -2.015625 C 2.578125 -2.015625 2.671875 -1.875 2.671875 -1.65625 C 2.671875 -1.375 2.46875 -0.859375 2.390625 -0.6875 C 2.328125 -0.5 2.3125 -0.46875 2.3125 -0.375 C 2.3125 -0.125 2.546875 0.046875 2.84375 0.046875 C 3.375 0.046875 3.640625 -0.59375 3.640625 -0.71875 Z M 3.640625 -0.71875 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 23 27 L 56 27 L 56 58.289062 L 23 58.289062 Z M 23 27 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 100 27 L 121.101562 27 L 121.101562 58.289062 L 100 58.289062 Z M 100 27 "/>
</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 -17.007538 -14.17196 L 17.009655 -14.17196 L 17.009655 14.172421 L -17.007538 14.172421 Z M -17.007538 -14.17196 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="47.955934" y="45.587252"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="55.191495" y="41.359232"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="61.370299" y="41.359232"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="54.196258" y="48.223688"/>
<use xlink:href="#glyph3-2" x="58.484473" y="48.223688"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="60.831502" y="48.223688"/>
<use xlink:href="#glyph2-1" x="64.771649" y="48.223688"/>
<use xlink:href="#glyph2-1" x="68.711797" y="48.223688"/>
</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.02801 0.00023036 L -22.141021 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 41.773438 43.234375 L 37.363281 41.566406 L 38.832031 43.234375 L 37.363281 44.90625 Z M 41.773438 43.234375 "/>
<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.053539 0.00023036 L 1.608983 1.68121 L 3.089189 0.00023036 L 1.608983 -1.684686 Z M 6.053539 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,35.766752,43.234604)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="4.779717" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="4.779717" y="22.046872"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="11.669972" y="12.160984"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="16.815833" y="13.643421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="21.489378" y="14.632704"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="11.370309" y="24.023455"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="16.515178" y="25.505891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-2" x="21.188724" y="26.555703"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="13.941255" y="35.885925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="19.087116" y="37.369354"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="26.268103" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-4" x="26.268103" y="22.046872"/>
</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 17.505682 0.00023036 L 55.392671 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 118.707031 43.234375 L 114.296875 41.566406 L 115.761719 43.234375 L 114.296875 44.90625 Z M 118.707031 43.234375 "/>
<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 6.054671 0.00023036 L 1.610115 1.68121 L 3.086384 0.00023036 L 1.610115 -1.684686 Z M 6.054671 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,112.699222,43.234604)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="93.442132" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="93.442132" y="22.046872"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="100.032724" y="12.160984"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-5" x="105.177593" y="13.643421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="100.27682" y="24.023455"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-6" x="104.737029" y="25.505891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="100.164694" y="35.885925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-7" x="104.623912" y="37.369354"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="109.733059" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-4" x="109.733059" y="22.046872"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1,188 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="122.048pt" height="58.676pt" viewBox="0 0 122.048 58.676" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 5.953125 -6.125 C 6 -6.28125 6 -6.296875 6.078125 -6.296875 C 6.1875 -6.3125 6.328125 -6.3125 6.453125 -6.3125 C 6.703125 -6.3125 6.859375 -6.3125 6.859375 -6.609375 C 6.859375 -6.625 6.859375 -6.78125 6.65625 -6.78125 C 6.453125 -6.78125 6.234375 -6.765625 6.03125 -6.765625 C 5.8125 -6.765625 5.578125 -6.75 5.34375 -6.75 C 4.96875 -6.75 4.015625 -6.78125 3.625 -6.78125 C 3.515625 -6.78125 3.328125 -6.78125 3.328125 -6.5 C 3.328125 -6.3125 3.484375 -6.3125 3.671875 -6.3125 L 4.015625 -6.3125 C 4.40625 -6.3125 4.421875 -6.3125 4.65625 -6.296875 L 3.46875 -1.5 C 3.21875 -0.484375 2.59375 -0.1875 2.140625 -0.1875 C 2.046875 -0.1875 1.625 -0.203125 1.328125 -0.421875 C 1.859375 -0.546875 2.03125 -1.015625 2.03125 -1.28125 C 2.03125 -1.609375 1.765625 -1.84375 1.4375 -1.84375 C 1.03125 -1.84375 0.546875 -1.53125 0.546875 -0.90625 C 0.546875 -0.234375 1.234375 0.171875 2.1875 0.171875 C 3.296875 0.171875 4.484375 -0.28125 4.78125 -1.4375 Z M 5.953125 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5.421875 -1.734375 C 5.421875 -1.90625 5.265625 -1.90625 5.171875 -1.90625 L 1 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.5625 0.90625 -1.5625 1 -1.5625 L 5.171875 -1.5625 C 5.265625 -1.5625 5.421875 -1.5625 5.421875 -1.734375 Z M 5.421875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.40625 C 2.3125 -4.59375 2.3125 -4.59375 2.109375 -4.59375 C 1.671875 -4.15625 1.03125 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.09375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.5625 -1.203125 C 3.5625 -1.734375 3.109375 -2.28125 2.359375 -2.4375 C 3.078125 -2.703125 3.34375 -3.21875 3.34375 -3.640625 C 3.34375 -4.1875 2.71875 -4.59375 1.9375 -4.59375 C 1.171875 -4.59375 0.59375 -4.21875 0.59375 -3.671875 C 0.59375 -3.4375 0.734375 -3.296875 0.953125 -3.296875 C 1.15625 -3.296875 1.296875 -3.453125 1.296875 -3.65625 C 1.296875 -3.859375 1.15625 -4 0.953125 -4.015625 C 1.1875 -4.3125 1.671875 -4.390625 1.921875 -4.390625 C 2.234375 -4.390625 2.671875 -4.25 2.671875 -3.640625 C 2.671875 -3.34375 2.578125 -3.03125 2.390625 -2.8125 C 2.171875 -2.546875 1.96875 -2.546875 1.625 -2.515625 C 1.453125 -2.5 1.4375 -2.5 1.40625 -2.5 C 1.40625 -2.5 1.328125 -2.484375 1.328125 -2.40625 C 1.328125 -2.3125 1.390625 -2.3125 1.515625 -2.3125 L 1.890625 -2.3125 C 2.421875 -2.3125 2.8125 -1.9375 2.8125 -1.203125 C 2.8125 -0.34375 2.3125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.734375 -0.5625 C 1.0625 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.171875 0.96875 -1.328125 0.765625 -1.328125 C 0.5625 -1.328125 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.890625 0.140625 3.5625 -0.5 3.5625 -1.203125 Z M 3.5625 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 3.953125 -0.984375 C 3.953125 -1.078125 3.859375 -1.078125 3.84375 -1.078125 C 3.75 -1.078125 3.734375 -1.046875 3.6875 -0.859375 C 3.609375 -0.53125 3.46875 -0.125 3.1875 -0.125 C 3 -0.125 2.953125 -0.28125 2.953125 -0.46875 C 2.953125 -0.578125 3.015625 -0.828125 3.0625 -1.015625 L 3.21875 -1.640625 C 3.28125 -1.890625 3.28125 -1.9375 3.34375 -2.15625 C 3.390625 -2.34375 3.46875 -2.671875 3.46875 -2.703125 C 3.46875 -2.859375 3.34375 -2.921875 3.234375 -2.921875 C 3.125 -2.921875 2.96875 -2.84375 2.921875 -2.640625 C 2.78125 -2.875 2.546875 -3.046875 2.203125 -3.046875 C 1.328125 -3.046875 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.578125 0 2.984375 0.0625 3.15625 0.0625 C 3.40625 0.0625 3.578125 -0.078125 3.703125 -0.296875 C 3.859375 -0.5625 3.953125 -0.96875 3.953125 -0.984375 Z M 2.796875 -2.15625 L 2.484375 -0.859375 C 2.421875 -0.671875 2.28125 -0.53125 2.125 -0.40625 C 2.0625 -0.34375 1.78125 -0.125 1.484375 -0.125 C 1.234375 -0.125 0.984375 -0.296875 0.984375 -0.796875 C 0.984375 -1.15625 1.1875 -1.921875 1.34375 -2.203125 C 1.65625 -2.75 2.015625 -2.859375 2.203125 -2.859375 C 2.6875 -2.859375 2.828125 -2.328125 2.828125 -2.25 C 2.828125 -2.234375 2.8125 -2.1875 2.796875 -2.15625 Z M 2.796875 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 1.65625 -0.046875 C 1.65625 -0.46875 1.484375 -0.796875 1.171875 -0.796875 C 0.9375 -0.796875 0.78125 -0.609375 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.171875 0 C 1.34375 0 1.453125 -0.109375 1.453125 -0.109375 C 1.453125 0.265625 1.390625 0.71875 0.921875 1.15625 C 0.890625 1.1875 0.875 1.203125 0.875 1.234375 C 0.875 1.28125 0.921875 1.328125 0.96875 1.328125 C 1.0625 1.328125 1.65625 0.78125 1.65625 -0.046875 Z M 1.65625 -0.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 4.34375 -0.984375 C 4.34375 -1.078125 4.25 -1.078125 4.234375 -1.078125 C 4.125 -1.078125 4.125 -1.046875 4.078125 -0.859375 C 4 -0.546875 3.859375 -0.125 3.578125 -0.125 C 3.390625 -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.59375 -1.640625 L 3.765625 -2.25 C 3.796875 -2.421875 3.875 -2.734375 3.875 -2.765625 C 3.875 -2.90625 3.765625 -2.984375 3.640625 -2.984375 C 3.390625 -2.984375 3.34375 -2.78125 3.28125 -2.5625 L 2.921875 -1.125 C 2.890625 -0.984375 2.828125 -0.71875 2.8125 -0.71875 C 2.6875 -0.5 2.40625 -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.59375 1.890625 -2.109375 C 1.9375 -2.25 1.984375 -2.34375 1.984375 -2.453125 C 1.984375 -2.8125 1.6875 -3.046875 1.328125 -3.046875 C 0.640625 -3.046875 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.578125 1.03125 -2.859375 1.3125 -2.859375 C 1.421875 -2.859375 1.484375 -2.78125 1.484375 -2.609375 C 1.484375 -2.453125 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.703125 0.0625 1.953125 0.0625 C 2.390625 0.0625 2.625 -0.171875 2.859375 -0.390625 C 3 0.0625 3.46875 0.0625 3.546875 0.0625 C 3.78125 0.0625 3.96875 -0.0625 4.09375 -0.296875 C 4.25 -0.5625 4.34375 -0.96875 4.34375 -0.984375 Z M 4.34375 -0.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 3.953125 -0.984375 C 3.953125 -1.078125 3.859375 -1.078125 3.84375 -1.078125 C 3.75 -1.078125 3.734375 -1.046875 3.6875 -0.859375 C 3.609375 -0.53125 3.46875 -0.125 3.1875 -0.125 C 3 -0.125 2.953125 -0.28125 2.953125 -0.46875 C 2.953125 -0.59375 2.96875 -0.65625 2.984375 -0.75 L 3.953125 -4.59375 C 3.953125 -4.609375 3.984375 -4.703125 3.984375 -4.703125 C 3.984375 -4.734375 3.953125 -4.796875 3.875 -4.796875 C 3.734375 -4.796875 3.15625 -4.75 2.984375 -4.734375 C 2.921875 -4.734375 2.828125 -4.71875 2.828125 -4.578125 C 2.828125 -4.484375 2.921875 -4.484375 3.015625 -4.484375 C 3.34375 -4.484375 3.34375 -4.4375 3.34375 -4.375 C 3.34375 -4.328125 3.328125 -4.28125 3.3125 -4.21875 L 2.921875 -2.640625 C 2.78125 -2.875 2.546875 -3.046875 2.203125 -3.046875 C 1.328125 -3.046875 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.578125 0 2.984375 0.0625 3.15625 0.0625 C 3.40625 0.0625 3.578125 -0.078125 3.703125 -0.296875 C 3.859375 -0.5625 3.953125 -0.96875 3.953125 -0.984375 Z M 2.796875 -2.15625 L 2.484375 -0.859375 C 2.421875 -0.671875 2.28125 -0.53125 2.125 -0.40625 C 2.0625 -0.34375 1.78125 -0.125 1.484375 -0.125 C 1.234375 -0.125 0.984375 -0.296875 0.984375 -0.796875 C 0.984375 -1.15625 1.1875 -1.921875 1.34375 -2.203125 C 1.65625 -2.75 2.015625 -2.859375 2.203125 -2.859375 C 2.6875 -2.859375 2.828125 -2.328125 2.828125 -2.25 C 2.828125 -2.234375 2.8125 -2.1875 2.796875 -2.15625 Z M 2.796875 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 3.453125 -1 C 3.453125 -1.09375 3.375 -1.09375 3.328125 -1.09375 C 3.25 -1.09375 3.234375 -1.0625 3.203125 -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.609375 1.453125 -0.609375 1.328125 -0.609375 C 1.328125 -0.609375 1.203125 -0.609375 1.15625 -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.53125 3.609375 -2.890625 3.609375 -2.96875 C 3.609375 -3.046875 3.515625 -3.046875 3.484375 -3.046875 C 3.421875 -3.046875 3.40625 -3.03125 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.5625 2.453125 -2.765625 C 2.21875 -3 2.0625 -3.046875 1.90625 -3.046875 C 1.34375 -3.046875 0.96875 -2.453125 0.96875 -2.25 C 0.96875 -2.1875 1.046875 -2.15625 1.09375 -2.15625 C 1.171875 -2.15625 1.1875 -2.1875 1.21875 -2.25 C 1.328125 -2.5 1.703125 -2.515625 1.828125 -2.515625 C 1.984375 -2.515625 2.15625 -2.46875 2.25 -2.453125 C 2.640625 -2.375 2.6875 -2.375 2.859375 -2.375 C 2.671875 -2.1875 2.546875 -2.0625 1.890625 -1.53125 C 1.359375 -1.09375 1.171875 -0.921875 1.03125 -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.875 -0.03125 2.015625 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="glyph3-6">
<path style="stroke:none;" d="M 3.84375 -2.609375 C 3.875 -2.703125 3.875 -2.71875 3.875 -2.765625 C 3.875 -2.90625 3.765625 -2.984375 3.640625 -2.984375 C 3.578125 -2.984375 3.4375 -2.953125 3.359375 -2.8125 C 3.34375 -2.78125 3.28125 -2.546875 3.25 -2.421875 L 3.109375 -1.84375 L 2.828125 -0.734375 C 2.828125 -0.734375 2.515625 -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.953125 -2.265625 2 -2.34375 2 -2.46875 C 2 -2.796875 1.703125 -3.046875 1.328125 -3.046875 C 0.640625 -3.046875 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.03125 -2.859375 1.3125 -2.859375 C 1.4375 -2.859375 1.484375 -2.78125 1.484375 -2.609375 C 1.484375 -2.453125 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.359375 1.265625 -0.140625 C 1.46875 0.03125 1.765625 0.0625 1.953125 0.0625 C 2.234375 0.0625 2.484375 -0.03125 2.703125 -0.25 C 2.609375 0.140625 2.546875 0.421875 2.25 0.78125 C 2.0625 0.984375 1.78125 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.796875 C 0.609375 1.15625 0.9375 1.40625 1.421875 1.40625 C 2.125 1.40625 2.96875 0.875 3.1875 0 Z M 3.84375 -2.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-7">
<path style="stroke:none;" d="M 3.875 -0.984375 C 3.875 -1.078125 3.78125 -1.078125 3.765625 -1.078125 C 3.671875 -1.078125 3.65625 -1.046875 3.640625 -0.96875 C 3.484375 -0.484375 3.078125 -0.125 2.6875 -0.125 C 2.40625 -0.125 2.265625 -0.3125 2.265625 -0.578125 C 2.265625 -0.75 2.421875 -1.390625 2.625 -2.15625 C 2.765625 -2.6875 3.078125 -2.859375 3.296875 -2.859375 C 3.296875 -2.859375 3.53125 -2.859375 3.671875 -2.765625 C 3.453125 -2.703125 3.375 -2.5 3.375 -2.375 C 3.375 -2.234375 3.484375 -2.125 3.640625 -2.125 C 3.8125 -2.125 4.03125 -2.25 4.03125 -2.546875 C 4.03125 -2.9375 3.59375 -3.046875 3.3125 -3.046875 C 2.96875 -3.046875 2.6875 -2.828125 2.546875 -2.5625 C 2.421875 -2.84375 2.09375 -3.046875 1.703125 -3.046875 C 0.9375 -3.046875 0.484375 -2.203125 0.484375 -2 C 0.484375 -1.90625 0.59375 -1.90625 0.609375 -1.90625 C 0.703125 -1.90625 0.703125 -1.9375 0.734375 -2.015625 C 0.90625 -2.5625 1.34375 -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.015625 -1.921875 1.953125 -1.6875 L 1.71875 -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.65625 -0.125 1.828125 -0.421875 C 2 -0.0625 2.375 0.0625 2.65625 0.0625 C 3.453125 0.0625 3.875 -0.796875 3.875 -0.984375 Z M 3.875 -0.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 6.515625 0.296875 L 6.515625 -0.390625 L 3.21875 -0.390625 L 3.21875 17.40625 L 3.90625 17.40625 L 3.90625 0.296875 Z M 6.515625 0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 6.515625 17.390625 L 6.515625 16.71875 L 3.90625 16.71875 L 3.90625 -0.390625 L 3.21875 -0.390625 L 3.21875 17.390625 Z M 6.515625 17.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M 3.359375 17.40625 L 3.359375 -0.390625 L 0.0625 -0.390625 L 0.0625 0.296875 L 2.6875 0.296875 L 2.6875 17.40625 Z M 3.359375 17.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M 3.359375 17.390625 L 3.359375 -0.390625 L 2.6875 -0.390625 L 2.6875 16.71875 L 0.0625 16.71875 L 0.0625 17.390625 Z M 3.359375 17.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 4.921875 -1.421875 C 4.921875 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.703125 -1.515625 4.703125 -1.46875 4.671875 -1.328125 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.671875 -1.03125 L 5.109375 -6.75 C 5.109375 -6.75 5.109375 -6.859375 4.96875 -6.859375 C 4.828125 -6.859375 3.890625 -6.78125 3.71875 -6.75 C 3.640625 -6.75 3.578125 -6.703125 3.578125 -6.5625 C 3.578125 -6.453125 3.671875 -6.453125 3.8125 -6.453125 C 4.296875 -6.453125 4.3125 -6.375 4.3125 -6.28125 L 4.28125 -6.078125 L 3.6875 -3.734375 C 3.515625 -4.109375 3.21875 -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.890625 0.109375 C 4.25 0.109375 4.46875 -0.125 4.625 -0.4375 C 4.796875 -0.796875 4.921875 -1.421875 4.921875 -1.421875 Z M 3.546875 -3.109375 L 3.046875 -1.171875 C 3 -1 3 -0.984375 2.84375 -0.8125 C 2.40625 -0.265625 2 -0.109375 1.734375 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.03125 C 1.09375 -1.53125 1.421875 -2.75 1.640625 -3.203125 C 1.953125 -3.78125 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.21875 3.546875 -3.171875 3.546875 -3.109375 Z M 3.546875 -3.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 4.3125 -3.734375 C 4.3125 -4.078125 4 -4.375 3.484375 -4.375 C 2.84375 -4.375 2.40625 -3.890625 2.21875 -3.609375 C 2.140625 -4.0625 1.796875 -4.375 1.328125 -4.375 C 0.875 -4.375 0.6875 -3.984375 0.59375 -3.8125 C 0.421875 -3.46875 0.28125 -2.875 0.28125 -2.84375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.578125 -2.984375 C 0.734375 -3.671875 0.9375 -4.15625 1.296875 -4.15625 C 1.46875 -4.15625 1.609375 -4.078125 1.609375 -3.703125 C 1.609375 -3.484375 1.578125 -3.375 1.4375 -2.875 L 0.875 -0.578125 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.0625 0.109375 C 1.1875 0.109375 1.359375 0.03125 1.4375 -0.171875 C 1.453125 -0.203125 1.796875 -1.546875 1.828125 -1.734375 L 2.140625 -3.015625 C 2.1875 -3.140625 2.46875 -3.609375 2.703125 -3.828125 C 2.78125 -3.890625 3.0625 -4.15625 3.484375 -4.15625 C 3.75 -4.15625 3.90625 -4.03125 3.90625 -4.03125 C 3.609375 -3.984375 3.390625 -3.75 3.390625 -3.484375 C 3.390625 -3.328125 3.5 -3.140625 3.765625 -3.140625 C 4.03125 -3.140625 4.3125 -3.375 4.3125 -3.734375 Z M 4.3125 -3.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph6-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph6-1">
<path style="stroke:none;" d="M 3.21875 -1.78125 C 3.21875 -2.140625 2.703125 -2.1875 2.453125 -2.1875 C 2.34375 -2.1875 2 -2.1875 1.671875 -1.796875 C 1.609375 -2.0625 1.328125 -2.1875 1.078125 -2.1875 C 0.90625 -2.1875 0.765625 -2.109375 0.640625 -1.90625 C 0.515625 -1.703125 0.453125 -1.453125 0.453125 -1.421875 C 0.453125 -1.34375 0.515625 -1.34375 0.546875 -1.34375 C 0.640625 -1.34375 0.640625 -1.359375 0.671875 -1.484375 C 0.75 -1.78125 0.875 -2.015625 1.0625 -2.015625 C 1.21875 -2.015625 1.265625 -1.859375 1.265625 -1.75 C 1.265625 -1.6875 1.203125 -1.5 1.1875 -1.375 L 1.078125 -0.921875 L 0.953125 -0.484375 C 0.921875 -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.21875 0.015625 1.28125 -0.078125 C 1.296875 -0.109375 1.328125 -0.265625 1.359375 -0.375 L 1.46875 -0.8125 C 1.484375 -0.890625 1.53125 -1.078125 1.546875 -1.140625 L 1.609375 -1.359375 C 1.625 -1.453125 1.78125 -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.6875 -1.859375 2.6875 -1.640625 2.6875 -1.640625 C 2.6875 -1.5625 2.75 -1.4375 2.90625 -1.4375 C 3.046875 -1.4375 3.21875 -1.5625 3.21875 -1.78125 Z M 3.21875 -1.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph6-2">
<path style="stroke:none;" d="M 3.640625 -0.71875 C 3.640625 -0.78125 3.5625 -0.78125 3.53125 -0.78125 C 3.453125 -0.78125 3.453125 -0.765625 3.421875 -0.671875 C 3.328125 -0.390625 3.109375 -0.109375 2.859375 -0.109375 C 2.75 -0.109375 2.71875 -0.1875 2.71875 -0.296875 C 2.71875 -0.40625 2.78125 -0.546875 2.8125 -0.65625 C 2.875 -0.796875 3.09375 -1.328125 3.09375 -1.59375 C 3.09375 -1.9375 2.859375 -2.1875 2.359375 -2.1875 C 1.859375 -2.1875 1.578125 -1.875 1.4375 -1.703125 L 1.8125 -3.234375 C 1.84375 -3.3125 1.84375 -3.3125 1.84375 -3.34375 C 1.84375 -3.421875 1.765625 -3.421875 1.6875 -3.421875 L 1.078125 -3.375 C 1 -3.375 0.984375 -3.375 0.953125 -3.34375 C 0.9375 -3.328125 0.921875 -3.265625 0.921875 -3.234375 C 0.921875 -3.15625 1 -3.15625 1.078125 -3.15625 C 1.078125 -3.15625 1.171875 -3.15625 1.234375 -3.140625 C 1.328125 -3.125 1.34375 -3.109375 1.34375 -3.078125 C 1.34375 -3.0625 1.34375 -3.046875 1.3125 -2.96875 L 0.625 -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 -0.015625 1.03125 -0.140625 C 1.046875 -0.1875 1.078125 -0.25 1.140625 -0.578125 L 1.234375 -0.90625 C 1.3125 -1.203125 1.3125 -1.21875 1.453125 -1.4375 C 1.65625 -1.734375 1.9375 -2.015625 2.328125 -2.015625 C 2.578125 -2.015625 2.671875 -1.875 2.671875 -1.65625 C 2.671875 -1.375 2.46875 -0.859375 2.390625 -0.6875 C 2.328125 -0.5 2.3125 -0.46875 2.3125 -0.375 C 2.3125 -0.125 2.546875 0.046875 2.84375 0.046875 C 3.375 0.046875 3.640625 -0.59375 3.640625 -0.71875 Z M 3.640625 -0.71875 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 23 27 L 56 27 L 56 58.289062 L 23 58.289062 Z M 23 27 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 100 27 L 121.101562 27 L 121.101562 58.289062 L 100 58.289062 Z M 100 27 "/>
</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 -17.007538 -14.17196 L 17.009655 -14.17196 L 17.009655 14.172421 L -17.007538 14.172421 Z M -17.007538 -14.17196 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="47.955934" y="45.587252"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="55.191495" y="41.359232"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="61.370299" y="41.359232"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="54.196258" y="48.223688"/>
<use xlink:href="#glyph3-2" x="58.484473" y="48.223688"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="60.831502" y="48.223688"/>
<use xlink:href="#glyph2-1" x="64.771649" y="48.223688"/>
<use xlink:href="#glyph2-1" x="68.711797" y="48.223688"/>
</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.02801 0.00023036 L -22.141021 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 41.773438 43.234375 L 37.363281 41.566406 L 38.832031 43.234375 L 37.363281 44.90625 Z M 41.773438 43.234375 "/>
<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.053539 0.00023036 L 1.608983 1.68121 L 3.089189 0.00023036 L 1.608983 -1.684686 Z M 6.053539 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,35.766752,43.234604)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="4.779717" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="4.779717" y="22.046872"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="11.669972" y="12.160984"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="16.815833" y="13.643421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="21.489378" y="14.632704"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="11.370309" y="24.023455"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="16.515178" y="25.505891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-2" x="21.188724" y="26.555703"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="13.941255" y="35.885925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="19.087116" y="37.369354"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="26.268103" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-4" x="26.268103" y="22.046872"/>
</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 17.505682 0.00023036 L 55.392671 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 118.707031 43.234375 L 114.296875 41.566406 L 115.761719 43.234375 L 114.296875 44.90625 Z M 118.707031 43.234375 "/>
<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 6.054671 0.00023036 L 1.610115 1.68121 L 3.086384 0.00023036 L 1.610115 -1.684686 Z M 6.054671 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,112.699222,43.234604)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="93.442132" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="93.442132" y="22.046872"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="100.032724" y="12.160984"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-5" x="105.177593" y="13.643421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="100.27682" y="24.023455"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-6" x="104.737029" y="25.505891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="100.164694" y="35.885925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-7" x="104.623912" y="37.369354"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="109.733059" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-4" x="109.733059" y="22.046872"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,173 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="122.048pt" height="58.676pt" viewBox="0 0 122.048 58.676" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 5.953125 -6.125 C 6 -6.28125 6 -6.296875 6.078125 -6.296875 C 6.1875 -6.3125 6.328125 -6.3125 6.453125 -6.3125 C 6.703125 -6.3125 6.859375 -6.3125 6.859375 -6.609375 C 6.859375 -6.625 6.859375 -6.78125 6.65625 -6.78125 C 6.453125 -6.78125 6.234375 -6.765625 6.03125 -6.765625 C 5.8125 -6.765625 5.578125 -6.75 5.34375 -6.75 C 4.96875 -6.75 4.015625 -6.78125 3.625 -6.78125 C 3.515625 -6.78125 3.328125 -6.78125 3.328125 -6.5 C 3.328125 -6.3125 3.484375 -6.3125 3.671875 -6.3125 L 4.015625 -6.3125 C 4.40625 -6.3125 4.421875 -6.3125 4.65625 -6.296875 L 3.46875 -1.5 C 3.21875 -0.484375 2.59375 -0.1875 2.140625 -0.1875 C 2.046875 -0.1875 1.625 -0.203125 1.328125 -0.421875 C 1.859375 -0.546875 2.03125 -1.015625 2.03125 -1.28125 C 2.03125 -1.609375 1.765625 -1.84375 1.4375 -1.84375 C 1.03125 -1.84375 0.546875 -1.53125 0.546875 -0.90625 C 0.546875 -0.234375 1.234375 0.171875 2.1875 0.171875 C 3.296875 0.171875 4.484375 -0.28125 4.78125 -1.4375 Z M 5.953125 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 3.953125 -0.984375 C 3.953125 -1.078125 3.859375 -1.078125 3.84375 -1.078125 C 3.75 -1.078125 3.734375 -1.046875 3.6875 -0.859375 C 3.609375 -0.53125 3.46875 -0.125 3.1875 -0.125 C 3 -0.125 2.953125 -0.28125 2.953125 -0.46875 C 2.953125 -0.578125 3.015625 -0.828125 3.0625 -1.015625 L 3.21875 -1.640625 C 3.28125 -1.890625 3.28125 -1.9375 3.34375 -2.15625 C 3.390625 -2.34375 3.46875 -2.671875 3.46875 -2.703125 C 3.46875 -2.859375 3.34375 -2.921875 3.234375 -2.921875 C 3.125 -2.921875 2.96875 -2.84375 2.921875 -2.640625 C 2.78125 -2.875 2.546875 -3.046875 2.203125 -3.046875 C 1.328125 -3.046875 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.578125 0 2.984375 0.0625 3.15625 0.0625 C 3.40625 0.0625 3.578125 -0.078125 3.703125 -0.296875 C 3.859375 -0.5625 3.953125 -0.96875 3.953125 -0.984375 Z M 2.796875 -2.15625 L 2.484375 -0.859375 C 2.421875 -0.671875 2.28125 -0.53125 2.125 -0.40625 C 2.0625 -0.34375 1.78125 -0.125 1.484375 -0.125 C 1.234375 -0.125 0.984375 -0.296875 0.984375 -0.796875 C 0.984375 -1.15625 1.1875 -1.921875 1.34375 -2.203125 C 1.65625 -2.75 2.015625 -2.859375 2.203125 -2.859375 C 2.6875 -2.859375 2.828125 -2.328125 2.828125 -2.25 C 2.828125 -2.234375 2.8125 -2.1875 2.796875 -2.15625 Z M 2.796875 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 1.65625 -0.046875 C 1.65625 -0.46875 1.484375 -0.796875 1.171875 -0.796875 C 0.9375 -0.796875 0.78125 -0.609375 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.171875 0 C 1.34375 0 1.453125 -0.109375 1.453125 -0.109375 C 1.453125 0.265625 1.390625 0.71875 0.921875 1.15625 C 0.890625 1.1875 0.875 1.203125 0.875 1.234375 C 0.875 1.28125 0.921875 1.328125 0.96875 1.328125 C 1.0625 1.328125 1.65625 0.78125 1.65625 -0.046875 Z M 1.65625 -0.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 3.453125 -1 C 3.453125 -1.09375 3.375 -1.09375 3.328125 -1.09375 C 3.25 -1.09375 3.234375 -1.0625 3.203125 -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.609375 1.453125 -0.609375 1.328125 -0.609375 C 1.328125 -0.609375 1.203125 -0.609375 1.15625 -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.53125 3.609375 -2.890625 3.609375 -2.96875 C 3.609375 -3.046875 3.515625 -3.046875 3.484375 -3.046875 C 3.421875 -3.046875 3.40625 -3.03125 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.5625 2.453125 -2.765625 C 2.21875 -3 2.0625 -3.046875 1.90625 -3.046875 C 1.34375 -3.046875 0.96875 -2.453125 0.96875 -2.25 C 0.96875 -2.1875 1.046875 -2.15625 1.09375 -2.15625 C 1.171875 -2.15625 1.1875 -2.1875 1.21875 -2.25 C 1.328125 -2.5 1.703125 -2.515625 1.828125 -2.515625 C 1.984375 -2.515625 2.15625 -2.46875 2.25 -2.453125 C 2.640625 -2.375 2.6875 -2.375 2.859375 -2.375 C 2.671875 -2.1875 2.546875 -2.0625 1.890625 -1.53125 C 1.359375 -1.09375 1.171875 -0.921875 1.03125 -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.875 -0.03125 2.015625 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="glyph1-4">
<path style="stroke:none;" d="M 3.84375 -2.609375 C 3.875 -2.703125 3.875 -2.71875 3.875 -2.765625 C 3.875 -2.90625 3.765625 -2.984375 3.640625 -2.984375 C 3.578125 -2.984375 3.4375 -2.953125 3.359375 -2.8125 C 3.34375 -2.78125 3.28125 -2.546875 3.25 -2.421875 L 3.109375 -1.84375 L 2.828125 -0.734375 C 2.828125 -0.734375 2.515625 -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.953125 -2.265625 2 -2.34375 2 -2.46875 C 2 -2.796875 1.703125 -3.046875 1.328125 -3.046875 C 0.640625 -3.046875 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.03125 -2.859375 1.3125 -2.859375 C 1.4375 -2.859375 1.484375 -2.78125 1.484375 -2.609375 C 1.484375 -2.453125 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.359375 1.265625 -0.140625 C 1.46875 0.03125 1.765625 0.0625 1.953125 0.0625 C 2.234375 0.0625 2.484375 -0.03125 2.703125 -0.25 C 2.609375 0.140625 2.546875 0.421875 2.25 0.78125 C 2.0625 0.984375 1.78125 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.796875 C 0.609375 1.15625 0.9375 1.40625 1.421875 1.40625 C 2.125 1.40625 2.96875 0.875 3.1875 0 Z M 3.84375 -2.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 3.875 -0.984375 C 3.875 -1.078125 3.78125 -1.078125 3.765625 -1.078125 C 3.671875 -1.078125 3.65625 -1.046875 3.640625 -0.96875 C 3.484375 -0.484375 3.078125 -0.125 2.6875 -0.125 C 2.40625 -0.125 2.265625 -0.3125 2.265625 -0.578125 C 2.265625 -0.75 2.421875 -1.390625 2.625 -2.15625 C 2.765625 -2.6875 3.078125 -2.859375 3.296875 -2.859375 C 3.296875 -2.859375 3.53125 -2.859375 3.671875 -2.765625 C 3.453125 -2.703125 3.375 -2.5 3.375 -2.375 C 3.375 -2.234375 3.484375 -2.125 3.640625 -2.125 C 3.8125 -2.125 4.03125 -2.25 4.03125 -2.546875 C 4.03125 -2.9375 3.59375 -3.046875 3.3125 -3.046875 C 2.96875 -3.046875 2.6875 -2.828125 2.546875 -2.5625 C 2.421875 -2.84375 2.09375 -3.046875 1.703125 -3.046875 C 0.9375 -3.046875 0.484375 -2.203125 0.484375 -2 C 0.484375 -1.90625 0.59375 -1.90625 0.609375 -1.90625 C 0.703125 -1.90625 0.703125 -1.9375 0.734375 -2.015625 C 0.90625 -2.5625 1.34375 -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.015625 -1.921875 1.953125 -1.6875 L 1.71875 -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.65625 -0.125 1.828125 -0.421875 C 2 -0.0625 2.375 0.0625 2.65625 0.0625 C 3.453125 0.0625 3.875 -0.796875 3.875 -0.984375 Z M 3.875 -0.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 4.34375 -0.984375 C 4.34375 -1.078125 4.25 -1.078125 4.234375 -1.078125 C 4.125 -1.078125 4.125 -1.046875 4.078125 -0.859375 C 4 -0.546875 3.859375 -0.125 3.578125 -0.125 C 3.390625 -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.59375 -1.640625 L 3.765625 -2.25 C 3.796875 -2.421875 3.875 -2.734375 3.875 -2.765625 C 3.875 -2.90625 3.765625 -2.984375 3.640625 -2.984375 C 3.390625 -2.984375 3.34375 -2.78125 3.28125 -2.5625 L 2.921875 -1.125 C 2.890625 -0.984375 2.828125 -0.71875 2.8125 -0.71875 C 2.6875 -0.5 2.40625 -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.59375 1.890625 -2.109375 C 1.9375 -2.25 1.984375 -2.34375 1.984375 -2.453125 C 1.984375 -2.8125 1.6875 -3.046875 1.328125 -3.046875 C 0.640625 -3.046875 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.578125 1.03125 -2.859375 1.3125 -2.859375 C 1.421875 -2.859375 1.484375 -2.78125 1.484375 -2.609375 C 1.484375 -2.453125 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.703125 0.0625 1.953125 0.0625 C 2.390625 0.0625 2.625 -0.171875 2.859375 -0.390625 C 3 0.0625 3.46875 0.0625 3.546875 0.0625 C 3.78125 0.0625 3.96875 -0.0625 4.09375 -0.296875 C 4.25 -0.5625 4.34375 -0.96875 4.34375 -0.984375 Z M 4.34375 -0.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 3.953125 -0.984375 C 3.953125 -1.078125 3.859375 -1.078125 3.84375 -1.078125 C 3.75 -1.078125 3.734375 -1.046875 3.6875 -0.859375 C 3.609375 -0.53125 3.46875 -0.125 3.1875 -0.125 C 3 -0.125 2.953125 -0.28125 2.953125 -0.46875 C 2.953125 -0.59375 2.96875 -0.65625 2.984375 -0.75 L 3.953125 -4.59375 C 3.953125 -4.609375 3.984375 -4.703125 3.984375 -4.703125 C 3.984375 -4.734375 3.953125 -4.796875 3.875 -4.796875 C 3.734375 -4.796875 3.15625 -4.75 2.984375 -4.734375 C 2.921875 -4.734375 2.828125 -4.71875 2.828125 -4.578125 C 2.828125 -4.484375 2.921875 -4.484375 3.015625 -4.484375 C 3.34375 -4.484375 3.34375 -4.4375 3.34375 -4.375 C 3.34375 -4.328125 3.328125 -4.28125 3.3125 -4.21875 L 2.921875 -2.640625 C 2.78125 -2.875 2.546875 -3.046875 2.203125 -3.046875 C 1.328125 -3.046875 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.578125 0 2.984375 0.0625 3.15625 0.0625 C 3.40625 0.0625 3.578125 -0.078125 3.703125 -0.296875 C 3.859375 -0.5625 3.953125 -0.96875 3.953125 -0.984375 Z M 2.796875 -2.15625 L 2.484375 -0.859375 C 2.421875 -0.671875 2.28125 -0.53125 2.125 -0.40625 C 2.0625 -0.34375 1.78125 -0.125 1.484375 -0.125 C 1.234375 -0.125 0.984375 -0.296875 0.984375 -0.796875 C 0.984375 -1.15625 1.1875 -1.921875 1.34375 -2.203125 C 1.65625 -2.75 2.015625 -2.859375 2.203125 -2.859375 C 2.6875 -2.859375 2.828125 -2.328125 2.828125 -2.25 C 2.828125 -2.234375 2.8125 -2.1875 2.796875 -2.15625 Z M 2.796875 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.40625 C 2.3125 -4.59375 2.3125 -4.59375 2.109375 -4.59375 C 1.671875 -4.15625 1.03125 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.09375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 6.515625 0.296875 L 6.515625 -0.390625 L 3.21875 -0.390625 L 3.21875 17.40625 L 3.90625 17.40625 L 3.90625 0.296875 Z M 6.515625 0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 6.515625 17.390625 L 6.515625 16.71875 L 3.90625 16.71875 L 3.90625 -0.390625 L 3.21875 -0.390625 L 3.21875 17.390625 Z M 6.515625 17.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 3.359375 17.40625 L 3.359375 -0.390625 L 0.0625 -0.390625 L 0.0625 0.296875 L 2.6875 0.296875 L 2.6875 17.40625 Z M 3.359375 17.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 3.359375 17.390625 L 3.359375 -0.390625 L 2.6875 -0.390625 L 2.6875 16.71875 L 0.0625 16.71875 L 0.0625 17.390625 Z M 3.359375 17.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 4.921875 -1.421875 C 4.921875 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.703125 -1.515625 4.703125 -1.46875 4.671875 -1.328125 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.671875 -1.03125 L 5.109375 -6.75 C 5.109375 -6.75 5.109375 -6.859375 4.96875 -6.859375 C 4.828125 -6.859375 3.890625 -6.78125 3.71875 -6.75 C 3.640625 -6.75 3.578125 -6.703125 3.578125 -6.5625 C 3.578125 -6.453125 3.671875 -6.453125 3.8125 -6.453125 C 4.296875 -6.453125 4.3125 -6.375 4.3125 -6.28125 L 4.28125 -6.078125 L 3.6875 -3.734375 C 3.515625 -4.109375 3.21875 -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.890625 0.109375 C 4.25 0.109375 4.46875 -0.125 4.625 -0.4375 C 4.796875 -0.796875 4.921875 -1.421875 4.921875 -1.421875 Z M 3.546875 -3.109375 L 3.046875 -1.171875 C 3 -1 3 -0.984375 2.84375 -0.8125 C 2.40625 -0.265625 2 -0.109375 1.734375 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.03125 C 1.09375 -1.53125 1.421875 -2.75 1.640625 -3.203125 C 1.953125 -3.78125 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.21875 3.546875 -3.171875 3.546875 -3.109375 Z M 3.546875 -3.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 4.3125 -3.734375 C 4.3125 -4.078125 4 -4.375 3.484375 -4.375 C 2.84375 -4.375 2.40625 -3.890625 2.21875 -3.609375 C 2.140625 -4.0625 1.796875 -4.375 1.328125 -4.375 C 0.875 -4.375 0.6875 -3.984375 0.59375 -3.8125 C 0.421875 -3.46875 0.28125 -2.875 0.28125 -2.84375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.578125 -2.984375 C 0.734375 -3.671875 0.9375 -4.15625 1.296875 -4.15625 C 1.46875 -4.15625 1.609375 -4.078125 1.609375 -3.703125 C 1.609375 -3.484375 1.578125 -3.375 1.4375 -2.875 L 0.875 -0.578125 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.0625 0.109375 C 1.1875 0.109375 1.359375 0.03125 1.4375 -0.171875 C 1.453125 -0.203125 1.796875 -1.546875 1.828125 -1.734375 L 2.140625 -3.015625 C 2.1875 -3.140625 2.46875 -3.609375 2.703125 -3.828125 C 2.78125 -3.890625 3.0625 -4.15625 3.484375 -4.15625 C 3.75 -4.15625 3.90625 -4.03125 3.90625 -4.03125 C 3.609375 -3.984375 3.390625 -3.75 3.390625 -3.484375 C 3.390625 -3.328125 3.5 -3.140625 3.765625 -3.140625 C 4.03125 -3.140625 4.3125 -3.375 4.3125 -3.734375 Z M 4.3125 -3.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 3.21875 -1.78125 C 3.21875 -2.140625 2.703125 -2.1875 2.453125 -2.1875 C 2.34375 -2.1875 2 -2.1875 1.671875 -1.796875 C 1.609375 -2.0625 1.328125 -2.1875 1.078125 -2.1875 C 0.90625 -2.1875 0.765625 -2.109375 0.640625 -1.90625 C 0.515625 -1.703125 0.453125 -1.453125 0.453125 -1.421875 C 0.453125 -1.34375 0.515625 -1.34375 0.546875 -1.34375 C 0.640625 -1.34375 0.640625 -1.359375 0.671875 -1.484375 C 0.75 -1.78125 0.875 -2.015625 1.0625 -2.015625 C 1.21875 -2.015625 1.265625 -1.859375 1.265625 -1.75 C 1.265625 -1.6875 1.203125 -1.5 1.1875 -1.375 L 1.078125 -0.921875 L 0.953125 -0.484375 C 0.921875 -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.21875 0.015625 1.28125 -0.078125 C 1.296875 -0.109375 1.328125 -0.265625 1.359375 -0.375 L 1.46875 -0.8125 C 1.484375 -0.890625 1.53125 -1.078125 1.546875 -1.140625 L 1.609375 -1.359375 C 1.625 -1.453125 1.78125 -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.6875 -1.859375 2.6875 -1.640625 2.6875 -1.640625 C 2.6875 -1.5625 2.75 -1.4375 2.90625 -1.4375 C 3.046875 -1.4375 3.21875 -1.5625 3.21875 -1.78125 Z M 3.21875 -1.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 3.640625 -0.71875 C 3.640625 -0.78125 3.5625 -0.78125 3.53125 -0.78125 C 3.453125 -0.78125 3.453125 -0.765625 3.421875 -0.671875 C 3.328125 -0.390625 3.109375 -0.109375 2.859375 -0.109375 C 2.75 -0.109375 2.71875 -0.1875 2.71875 -0.296875 C 2.71875 -0.40625 2.78125 -0.546875 2.8125 -0.65625 C 2.875 -0.796875 3.09375 -1.328125 3.09375 -1.59375 C 3.09375 -1.9375 2.859375 -2.1875 2.359375 -2.1875 C 1.859375 -2.1875 1.578125 -1.875 1.4375 -1.703125 L 1.8125 -3.234375 C 1.84375 -3.3125 1.84375 -3.3125 1.84375 -3.34375 C 1.84375 -3.421875 1.765625 -3.421875 1.6875 -3.421875 L 1.078125 -3.375 C 1 -3.375 0.984375 -3.375 0.953125 -3.34375 C 0.9375 -3.328125 0.921875 -3.265625 0.921875 -3.234375 C 0.921875 -3.15625 1 -3.15625 1.078125 -3.15625 C 1.078125 -3.15625 1.171875 -3.15625 1.234375 -3.140625 C 1.328125 -3.125 1.34375 -3.109375 1.34375 -3.078125 C 1.34375 -3.0625 1.34375 -3.046875 1.3125 -2.96875 L 0.625 -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 -0.015625 1.03125 -0.140625 C 1.046875 -0.1875 1.078125 -0.25 1.140625 -0.578125 L 1.234375 -0.90625 C 1.3125 -1.203125 1.3125 -1.21875 1.453125 -1.4375 C 1.65625 -1.734375 1.9375 -2.015625 2.328125 -2.015625 C 2.578125 -2.015625 2.671875 -1.875 2.671875 -1.65625 C 2.671875 -1.375 2.46875 -0.859375 2.390625 -0.6875 C 2.328125 -0.5 2.3125 -0.46875 2.3125 -0.375 C 2.3125 -0.125 2.546875 0.046875 2.84375 0.046875 C 3.375 0.046875 3.640625 -0.59375 3.640625 -0.71875 Z M 3.640625 -0.71875 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 23 27 L 56 27 L 56 58.289062 L 23 58.289062 Z M 23 27 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 100 27 L 121.101562 27 L 121.101562 58.289062 L 100 58.289062 Z M 100 27 "/>
</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 -17.007538 -14.17196 L 17.009655 -14.17196 L 17.009655 14.172421 L -17.007538 14.172421 Z M -17.007538 -14.17196 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="47.955934" y="45.211186"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="54.196258" y="46.694615"/>
<use xlink:href="#glyph1-2" x="58.484473" y="46.694615"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="60.831502" y="46.694615"/>
<use xlink:href="#glyph2-1" x="64.771649" y="46.694615"/>
<use xlink:href="#glyph2-1" x="68.711797" y="46.694615"/>
</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.02801 0.00023036 L -22.141021 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 41.773438 43.234375 L 37.363281 41.566406 L 38.832031 43.234375 L 37.363281 44.90625 Z M 41.773438 43.234375 "/>
<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.053539 0.00023036 L 1.608983 1.68121 L 3.089189 0.00023036 L 1.608983 -1.684686 Z M 6.053539 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,35.766752,43.234604)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="4.779717" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="4.779717" y="22.046872"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="11.370309" y="12.160984"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="16.515178" y="13.643421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="11.614405" y="24.023455"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="16.074615" y="25.505891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="11.501288" y="35.885925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="15.961497" y="37.369354"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="21.070645" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="21.070645" y="22.046872"/>
</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 17.505682 0.00023036 L 55.392671 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 118.707031 43.234375 L 114.296875 41.566406 L 115.761719 43.234375 L 114.296875 44.90625 Z M 118.707031 43.234375 "/>
<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 6.054671 0.00023036 L 1.610115 1.68121 L 3.086384 0.00023036 L 1.610115 -1.684686 Z M 6.054671 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,112.699222,43.234604)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="88.244673" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="88.244673" y="22.046872"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="95.134928" y="12.160984"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="100.280789" y="13.643421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="104.954334" y="14.632704"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="94.835265" y="24.023455"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="99.980134" y="25.505891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="104.653679" y="26.555703"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="97.406211" y="35.885925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="102.552072" y="37.369354"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="109.733059" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="109.733059" y="22.046872"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,176 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="122.048pt" height="58.676pt" viewBox="0 0 122.048 58.676" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 5.953125 -6.125 C 6 -6.28125 6 -6.296875 6.078125 -6.296875 C 6.1875 -6.3125 6.328125 -6.3125 6.453125 -6.3125 C 6.703125 -6.3125 6.859375 -6.3125 6.859375 -6.609375 C 6.859375 -6.625 6.859375 -6.78125 6.65625 -6.78125 C 6.453125 -6.78125 6.234375 -6.765625 6.03125 -6.765625 C 5.8125 -6.765625 5.578125 -6.75 5.34375 -6.75 C 4.96875 -6.75 4.015625 -6.78125 3.625 -6.78125 C 3.515625 -6.78125 3.328125 -6.78125 3.328125 -6.5 C 3.328125 -6.3125 3.484375 -6.3125 3.671875 -6.3125 L 4.015625 -6.3125 C 4.40625 -6.3125 4.421875 -6.3125 4.65625 -6.296875 L 3.46875 -1.5 C 3.21875 -0.484375 2.59375 -0.1875 2.140625 -0.1875 C 2.046875 -0.1875 1.625 -0.203125 1.328125 -0.421875 C 1.859375 -0.546875 2.03125 -1.015625 2.03125 -1.28125 C 2.03125 -1.609375 1.765625 -1.84375 1.4375 -1.84375 C 1.03125 -1.84375 0.546875 -1.53125 0.546875 -0.90625 C 0.546875 -0.234375 1.234375 0.171875 2.1875 0.171875 C 3.296875 0.171875 4.484375 -0.28125 4.78125 -1.4375 Z M 5.953125 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 3.953125 -0.984375 C 3.953125 -1.078125 3.859375 -1.078125 3.84375 -1.078125 C 3.75 -1.078125 3.734375 -1.046875 3.6875 -0.859375 C 3.609375 -0.53125 3.46875 -0.125 3.1875 -0.125 C 3 -0.125 2.953125 -0.28125 2.953125 -0.46875 C 2.953125 -0.578125 3.015625 -0.828125 3.0625 -1.015625 L 3.21875 -1.640625 C 3.28125 -1.890625 3.28125 -1.9375 3.34375 -2.15625 C 3.390625 -2.34375 3.46875 -2.671875 3.46875 -2.703125 C 3.46875 -2.859375 3.34375 -2.921875 3.234375 -2.921875 C 3.125 -2.921875 2.96875 -2.84375 2.921875 -2.640625 C 2.78125 -2.875 2.546875 -3.046875 2.203125 -3.046875 C 1.328125 -3.046875 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.578125 0 2.984375 0.0625 3.15625 0.0625 C 3.40625 0.0625 3.578125 -0.078125 3.703125 -0.296875 C 3.859375 -0.5625 3.953125 -0.96875 3.953125 -0.984375 Z M 2.796875 -2.15625 L 2.484375 -0.859375 C 2.421875 -0.671875 2.28125 -0.53125 2.125 -0.40625 C 2.0625 -0.34375 1.78125 -0.125 1.484375 -0.125 C 1.234375 -0.125 0.984375 -0.296875 0.984375 -0.796875 C 0.984375 -1.15625 1.1875 -1.921875 1.34375 -2.203125 C 1.65625 -2.75 2.015625 -2.859375 2.203125 -2.859375 C 2.6875 -2.859375 2.828125 -2.328125 2.828125 -2.25 C 2.828125 -2.234375 2.8125 -2.1875 2.796875 -2.15625 Z M 2.796875 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 1.65625 -0.046875 C 1.65625 -0.46875 1.484375 -0.796875 1.171875 -0.796875 C 0.9375 -0.796875 0.78125 -0.609375 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.171875 0 C 1.34375 0 1.453125 -0.109375 1.453125 -0.109375 C 1.453125 0.265625 1.390625 0.71875 0.921875 1.15625 C 0.890625 1.1875 0.875 1.203125 0.875 1.234375 C 0.875 1.28125 0.921875 1.328125 0.96875 1.328125 C 1.0625 1.328125 1.65625 0.78125 1.65625 -0.046875 Z M 1.65625 -0.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 3.453125 -1 C 3.453125 -1.09375 3.375 -1.09375 3.328125 -1.09375 C 3.25 -1.09375 3.234375 -1.0625 3.203125 -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.609375 1.453125 -0.609375 1.328125 -0.609375 C 1.328125 -0.609375 1.203125 -0.609375 1.15625 -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.53125 3.609375 -2.890625 3.609375 -2.96875 C 3.609375 -3.046875 3.515625 -3.046875 3.484375 -3.046875 C 3.421875 -3.046875 3.40625 -3.03125 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.5625 2.453125 -2.765625 C 2.21875 -3 2.0625 -3.046875 1.90625 -3.046875 C 1.34375 -3.046875 0.96875 -2.453125 0.96875 -2.25 C 0.96875 -2.1875 1.046875 -2.15625 1.09375 -2.15625 C 1.171875 -2.15625 1.1875 -2.1875 1.21875 -2.25 C 1.328125 -2.5 1.703125 -2.515625 1.828125 -2.515625 C 1.984375 -2.515625 2.15625 -2.46875 2.25 -2.453125 C 2.640625 -2.375 2.6875 -2.375 2.859375 -2.375 C 2.671875 -2.1875 2.546875 -2.0625 1.890625 -1.53125 C 1.359375 -1.09375 1.171875 -0.921875 1.03125 -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.875 -0.03125 2.015625 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="glyph1-4">
<path style="stroke:none;" d="M 3.84375 -2.609375 C 3.875 -2.703125 3.875 -2.71875 3.875 -2.765625 C 3.875 -2.90625 3.765625 -2.984375 3.640625 -2.984375 C 3.578125 -2.984375 3.4375 -2.953125 3.359375 -2.8125 C 3.34375 -2.78125 3.28125 -2.546875 3.25 -2.421875 L 3.109375 -1.84375 L 2.828125 -0.734375 C 2.828125 -0.734375 2.515625 -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.953125 -2.265625 2 -2.34375 2 -2.46875 C 2 -2.796875 1.703125 -3.046875 1.328125 -3.046875 C 0.640625 -3.046875 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.03125 -2.859375 1.3125 -2.859375 C 1.4375 -2.859375 1.484375 -2.78125 1.484375 -2.609375 C 1.484375 -2.453125 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.359375 1.265625 -0.140625 C 1.46875 0.03125 1.765625 0.0625 1.953125 0.0625 C 2.234375 0.0625 2.484375 -0.03125 2.703125 -0.25 C 2.609375 0.140625 2.546875 0.421875 2.25 0.78125 C 2.0625 0.984375 1.78125 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.796875 C 0.609375 1.15625 0.9375 1.40625 1.421875 1.40625 C 2.125 1.40625 2.96875 0.875 3.1875 0 Z M 3.84375 -2.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 3.875 -0.984375 C 3.875 -1.078125 3.78125 -1.078125 3.765625 -1.078125 C 3.671875 -1.078125 3.65625 -1.046875 3.640625 -0.96875 C 3.484375 -0.484375 3.078125 -0.125 2.6875 -0.125 C 2.40625 -0.125 2.265625 -0.3125 2.265625 -0.578125 C 2.265625 -0.75 2.421875 -1.390625 2.625 -2.15625 C 2.765625 -2.6875 3.078125 -2.859375 3.296875 -2.859375 C 3.296875 -2.859375 3.53125 -2.859375 3.671875 -2.765625 C 3.453125 -2.703125 3.375 -2.5 3.375 -2.375 C 3.375 -2.234375 3.484375 -2.125 3.640625 -2.125 C 3.8125 -2.125 4.03125 -2.25 4.03125 -2.546875 C 4.03125 -2.9375 3.59375 -3.046875 3.3125 -3.046875 C 2.96875 -3.046875 2.6875 -2.828125 2.546875 -2.5625 C 2.421875 -2.84375 2.09375 -3.046875 1.703125 -3.046875 C 0.9375 -3.046875 0.484375 -2.203125 0.484375 -2 C 0.484375 -1.90625 0.59375 -1.90625 0.609375 -1.90625 C 0.703125 -1.90625 0.703125 -1.9375 0.734375 -2.015625 C 0.90625 -2.5625 1.34375 -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.015625 -1.921875 1.953125 -1.6875 L 1.71875 -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.65625 -0.125 1.828125 -0.421875 C 2 -0.0625 2.375 0.0625 2.65625 0.0625 C 3.453125 0.0625 3.875 -0.796875 3.875 -0.984375 Z M 3.875 -0.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 4.34375 -0.984375 C 4.34375 -1.078125 4.25 -1.078125 4.234375 -1.078125 C 4.125 -1.078125 4.125 -1.046875 4.078125 -0.859375 C 4 -0.546875 3.859375 -0.125 3.578125 -0.125 C 3.390625 -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.59375 -1.640625 L 3.765625 -2.25 C 3.796875 -2.421875 3.875 -2.734375 3.875 -2.765625 C 3.875 -2.90625 3.765625 -2.984375 3.640625 -2.984375 C 3.390625 -2.984375 3.34375 -2.78125 3.28125 -2.5625 L 2.921875 -1.125 C 2.890625 -0.984375 2.828125 -0.71875 2.8125 -0.71875 C 2.6875 -0.5 2.40625 -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.59375 1.890625 -2.109375 C 1.9375 -2.25 1.984375 -2.34375 1.984375 -2.453125 C 1.984375 -2.8125 1.6875 -3.046875 1.328125 -3.046875 C 0.640625 -3.046875 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.578125 1.03125 -2.859375 1.3125 -2.859375 C 1.421875 -2.859375 1.484375 -2.78125 1.484375 -2.609375 C 1.484375 -2.453125 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.703125 0.0625 1.953125 0.0625 C 2.390625 0.0625 2.625 -0.171875 2.859375 -0.390625 C 3 0.0625 3.46875 0.0625 3.546875 0.0625 C 3.78125 0.0625 3.96875 -0.0625 4.09375 -0.296875 C 4.25 -0.5625 4.34375 -0.96875 4.34375 -0.984375 Z M 4.34375 -0.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 3.953125 -0.984375 C 3.953125 -1.078125 3.859375 -1.078125 3.84375 -1.078125 C 3.75 -1.078125 3.734375 -1.046875 3.6875 -0.859375 C 3.609375 -0.53125 3.46875 -0.125 3.1875 -0.125 C 3 -0.125 2.953125 -0.28125 2.953125 -0.46875 C 2.953125 -0.59375 2.96875 -0.65625 2.984375 -0.75 L 3.953125 -4.59375 C 3.953125 -4.609375 3.984375 -4.703125 3.984375 -4.703125 C 3.984375 -4.734375 3.953125 -4.796875 3.875 -4.796875 C 3.734375 -4.796875 3.15625 -4.75 2.984375 -4.734375 C 2.921875 -4.734375 2.828125 -4.71875 2.828125 -4.578125 C 2.828125 -4.484375 2.921875 -4.484375 3.015625 -4.484375 C 3.34375 -4.484375 3.34375 -4.4375 3.34375 -4.375 C 3.34375 -4.328125 3.328125 -4.28125 3.3125 -4.21875 L 2.921875 -2.640625 C 2.78125 -2.875 2.546875 -3.046875 2.203125 -3.046875 C 1.328125 -3.046875 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.578125 0 2.984375 0.0625 3.15625 0.0625 C 3.40625 0.0625 3.578125 -0.078125 3.703125 -0.296875 C 3.859375 -0.5625 3.953125 -0.96875 3.953125 -0.984375 Z M 2.796875 -2.15625 L 2.484375 -0.859375 C 2.421875 -0.671875 2.28125 -0.53125 2.125 -0.40625 C 2.0625 -0.34375 1.78125 -0.125 1.484375 -0.125 C 1.234375 -0.125 0.984375 -0.296875 0.984375 -0.796875 C 0.984375 -1.15625 1.1875 -1.921875 1.34375 -2.203125 C 1.65625 -2.75 2.015625 -2.859375 2.203125 -2.859375 C 2.6875 -2.859375 2.828125 -2.328125 2.828125 -2.25 C 2.828125 -2.234375 2.8125 -2.1875 2.796875 -2.15625 Z M 2.796875 -2.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.5625 -1.203125 C 3.5625 -1.734375 3.109375 -2.28125 2.359375 -2.4375 C 3.078125 -2.703125 3.34375 -3.21875 3.34375 -3.640625 C 3.34375 -4.1875 2.71875 -4.59375 1.9375 -4.59375 C 1.171875 -4.59375 0.59375 -4.21875 0.59375 -3.671875 C 0.59375 -3.4375 0.734375 -3.296875 0.953125 -3.296875 C 1.15625 -3.296875 1.296875 -3.453125 1.296875 -3.65625 C 1.296875 -3.859375 1.15625 -4 0.953125 -4.015625 C 1.1875 -4.3125 1.671875 -4.390625 1.921875 -4.390625 C 2.234375 -4.390625 2.671875 -4.25 2.671875 -3.640625 C 2.671875 -3.34375 2.578125 -3.03125 2.390625 -2.8125 C 2.171875 -2.546875 1.96875 -2.546875 1.625 -2.515625 C 1.453125 -2.5 1.4375 -2.5 1.40625 -2.5 C 1.40625 -2.5 1.328125 -2.484375 1.328125 -2.40625 C 1.328125 -2.3125 1.390625 -2.3125 1.515625 -2.3125 L 1.890625 -2.3125 C 2.421875 -2.3125 2.8125 -1.9375 2.8125 -1.203125 C 2.8125 -0.34375 2.3125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.734375 -0.5625 C 1.0625 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.171875 0.96875 -1.328125 0.765625 -1.328125 C 0.5625 -1.328125 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.890625 0.140625 3.5625 -0.5 3.5625 -1.203125 Z M 3.5625 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.40625 C 2.3125 -4.59375 2.3125 -4.59375 2.109375 -4.59375 C 1.671875 -4.15625 1.03125 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.09375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 6.515625 0.296875 L 6.515625 -0.390625 L 3.21875 -0.390625 L 3.21875 17.40625 L 3.90625 17.40625 L 3.90625 0.296875 Z M 6.515625 0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 6.515625 17.390625 L 6.515625 16.71875 L 3.90625 16.71875 L 3.90625 -0.390625 L 3.21875 -0.390625 L 3.21875 17.390625 Z M 6.515625 17.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 3.359375 17.40625 L 3.359375 -0.390625 L 0.0625 -0.390625 L 0.0625 0.296875 L 2.6875 0.296875 L 2.6875 17.40625 Z M 3.359375 17.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 3.359375 17.390625 L 3.359375 -0.390625 L 2.6875 -0.390625 L 2.6875 16.71875 L 0.0625 16.71875 L 0.0625 17.390625 Z M 3.359375 17.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 4.921875 -1.421875 C 4.921875 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.703125 -1.515625 4.703125 -1.46875 4.671875 -1.328125 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.671875 -1.03125 L 5.109375 -6.75 C 5.109375 -6.75 5.109375 -6.859375 4.96875 -6.859375 C 4.828125 -6.859375 3.890625 -6.78125 3.71875 -6.75 C 3.640625 -6.75 3.578125 -6.703125 3.578125 -6.5625 C 3.578125 -6.453125 3.671875 -6.453125 3.8125 -6.453125 C 4.296875 -6.453125 4.3125 -6.375 4.3125 -6.28125 L 4.28125 -6.078125 L 3.6875 -3.734375 C 3.515625 -4.109375 3.21875 -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.890625 0.109375 C 4.25 0.109375 4.46875 -0.125 4.625 -0.4375 C 4.796875 -0.796875 4.921875 -1.421875 4.921875 -1.421875 Z M 3.546875 -3.109375 L 3.046875 -1.171875 C 3 -1 3 -0.984375 2.84375 -0.8125 C 2.40625 -0.265625 2 -0.109375 1.734375 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.03125 C 1.09375 -1.53125 1.421875 -2.75 1.640625 -3.203125 C 1.953125 -3.78125 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.21875 3.546875 -3.171875 3.546875 -3.109375 Z M 3.546875 -3.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 4.3125 -3.734375 C 4.3125 -4.078125 4 -4.375 3.484375 -4.375 C 2.84375 -4.375 2.40625 -3.890625 2.21875 -3.609375 C 2.140625 -4.0625 1.796875 -4.375 1.328125 -4.375 C 0.875 -4.375 0.6875 -3.984375 0.59375 -3.8125 C 0.421875 -3.46875 0.28125 -2.875 0.28125 -2.84375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.578125 -2.984375 C 0.734375 -3.671875 0.9375 -4.15625 1.296875 -4.15625 C 1.46875 -4.15625 1.609375 -4.078125 1.609375 -3.703125 C 1.609375 -3.484375 1.578125 -3.375 1.4375 -2.875 L 0.875 -0.578125 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.0625 0.109375 C 1.1875 0.109375 1.359375 0.03125 1.4375 -0.171875 C 1.453125 -0.203125 1.796875 -1.546875 1.828125 -1.734375 L 2.140625 -3.015625 C 2.1875 -3.140625 2.46875 -3.609375 2.703125 -3.828125 C 2.78125 -3.890625 3.0625 -4.15625 3.484375 -4.15625 C 3.75 -4.15625 3.90625 -4.03125 3.90625 -4.03125 C 3.609375 -3.984375 3.390625 -3.75 3.390625 -3.484375 C 3.390625 -3.328125 3.5 -3.140625 3.765625 -3.140625 C 4.03125 -3.140625 4.3125 -3.375 4.3125 -3.734375 Z M 4.3125 -3.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 3.21875 -1.78125 C 3.21875 -2.140625 2.703125 -2.1875 2.453125 -2.1875 C 2.34375 -2.1875 2 -2.1875 1.671875 -1.796875 C 1.609375 -2.0625 1.328125 -2.1875 1.078125 -2.1875 C 0.90625 -2.1875 0.765625 -2.109375 0.640625 -1.90625 C 0.515625 -1.703125 0.453125 -1.453125 0.453125 -1.421875 C 0.453125 -1.34375 0.515625 -1.34375 0.546875 -1.34375 C 0.640625 -1.34375 0.640625 -1.359375 0.671875 -1.484375 C 0.75 -1.78125 0.875 -2.015625 1.0625 -2.015625 C 1.21875 -2.015625 1.265625 -1.859375 1.265625 -1.75 C 1.265625 -1.6875 1.203125 -1.5 1.1875 -1.375 L 1.078125 -0.921875 L 0.953125 -0.484375 C 0.921875 -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.21875 0.015625 1.28125 -0.078125 C 1.296875 -0.109375 1.328125 -0.265625 1.359375 -0.375 L 1.46875 -0.8125 C 1.484375 -0.890625 1.53125 -1.078125 1.546875 -1.140625 L 1.609375 -1.359375 C 1.625 -1.453125 1.78125 -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.6875 -1.859375 2.6875 -1.640625 2.6875 -1.640625 C 2.6875 -1.5625 2.75 -1.4375 2.90625 -1.4375 C 3.046875 -1.4375 3.21875 -1.5625 3.21875 -1.78125 Z M 3.21875 -1.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 3.640625 -0.71875 C 3.640625 -0.78125 3.5625 -0.78125 3.53125 -0.78125 C 3.453125 -0.78125 3.453125 -0.765625 3.421875 -0.671875 C 3.328125 -0.390625 3.109375 -0.109375 2.859375 -0.109375 C 2.75 -0.109375 2.71875 -0.1875 2.71875 -0.296875 C 2.71875 -0.40625 2.78125 -0.546875 2.8125 -0.65625 C 2.875 -0.796875 3.09375 -1.328125 3.09375 -1.59375 C 3.09375 -1.9375 2.859375 -2.1875 2.359375 -2.1875 C 1.859375 -2.1875 1.578125 -1.875 1.4375 -1.703125 L 1.8125 -3.234375 C 1.84375 -3.3125 1.84375 -3.3125 1.84375 -3.34375 C 1.84375 -3.421875 1.765625 -3.421875 1.6875 -3.421875 L 1.078125 -3.375 C 1 -3.375 0.984375 -3.375 0.953125 -3.34375 C 0.9375 -3.328125 0.921875 -3.265625 0.921875 -3.234375 C 0.921875 -3.15625 1 -3.15625 1.078125 -3.15625 C 1.078125 -3.15625 1.171875 -3.15625 1.234375 -3.140625 C 1.328125 -3.125 1.34375 -3.109375 1.34375 -3.078125 C 1.34375 -3.0625 1.34375 -3.046875 1.3125 -2.96875 L 0.625 -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 -0.015625 1.03125 -0.140625 C 1.046875 -0.1875 1.078125 -0.25 1.140625 -0.578125 L 1.234375 -0.90625 C 1.3125 -1.203125 1.3125 -1.21875 1.453125 -1.4375 C 1.65625 -1.734375 1.9375 -2.015625 2.328125 -2.015625 C 2.578125 -2.015625 2.671875 -1.875 2.671875 -1.65625 C 2.671875 -1.375 2.46875 -0.859375 2.390625 -0.6875 C 2.328125 -0.5 2.3125 -0.46875 2.3125 -0.375 C 2.3125 -0.125 2.546875 0.046875 2.84375 0.046875 C 3.375 0.046875 3.640625 -0.59375 3.640625 -0.71875 Z M 3.640625 -0.71875 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 23 27 L 56 27 L 56 58.289062 L 23 58.289062 Z M 23 27 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 100 27 L 121.101562 27 L 121.101562 58.289062 L 100 58.289062 Z M 100 27 "/>
</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 -17.007538 -14.17196 L 17.009655 -14.17196 L 17.009655 14.172421 L -17.007538 14.172421 Z M -17.007538 -14.17196 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="47.955934" y="45.211186"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="54.196258" y="46.694615"/>
<use xlink:href="#glyph1-2" x="58.484473" y="46.694615"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="60.831502" y="46.694615"/>
<use xlink:href="#glyph2-2" x="64.771649" y="46.694615"/>
<use xlink:href="#glyph2-2" x="68.711797" y="46.694615"/>
</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.02801 0.00023036 L -22.141021 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 41.773438 43.234375 L 37.363281 41.566406 L 38.832031 43.234375 L 37.363281 44.90625 Z M 41.773438 43.234375 "/>
<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.053539 0.00023036 L 1.608983 1.68121 L 3.089189 0.00023036 L 1.608983 -1.684686 Z M 6.053539 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,35.766752,43.234604)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="4.779717" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="4.779717" y="22.046872"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="11.370309" y="12.160984"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="16.515178" y="13.643421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="11.614405" y="24.023455"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="16.074615" y="25.505891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="11.501288" y="35.885925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="15.961497" y="37.369354"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="21.070645" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="21.070645" y="22.046872"/>
</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 17.505682 0.00023036 L 55.392671 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 118.707031 43.234375 L 114.296875 41.566406 L 115.761719 43.234375 L 114.296875 44.90625 Z M 118.707031 43.234375 "/>
<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 6.054671 0.00023036 L 1.610115 1.68121 L 3.086384 0.00023036 L 1.610115 -1.684686 Z M 6.054671 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,112.699222,43.234604)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="88.244673" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="88.244673" y="22.046872"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="95.134928" y="12.160984"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="100.280789" y="13.643421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="104.954334" y="14.632704"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="94.835265" y="24.023455"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="99.980134" y="25.505891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="104.653679" y="26.555703"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="97.406211" y="35.885925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="102.552072" y="37.369354"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="109.733059" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="109.733059" y="22.046872"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,173 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="122.048pt" height="58.676pt" viewBox="0 0 122.048 58.676" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 5.953125 -6.125 C 6 -6.28125 6 -6.296875 6.078125 -6.296875 C 6.1875 -6.3125 6.328125 -6.3125 6.453125 -6.3125 C 6.703125 -6.3125 6.859375 -6.3125 6.859375 -6.609375 C 6.859375 -6.625 6.859375 -6.78125 6.65625 -6.78125 C 6.453125 -6.78125 6.234375 -6.765625 6.03125 -6.765625 C 5.8125 -6.765625 5.578125 -6.75 5.34375 -6.75 C 4.96875 -6.75 4.015625 -6.78125 3.625 -6.78125 C 3.515625 -6.78125 3.328125 -6.78125 3.328125 -6.5 C 3.328125 -6.3125 3.484375 -6.3125 3.671875 -6.3125 L 4.015625 -6.3125 C 4.40625 -6.3125 4.421875 -6.3125 4.65625 -6.296875 L 3.46875 -1.5 C 3.21875 -0.484375 2.59375 -0.1875 2.140625 -0.1875 C 2.046875 -0.1875 1.625 -0.203125 1.328125 -0.421875 C 1.859375 -0.546875 2.03125 -1.015625 2.03125 -1.28125 C 2.03125 -1.609375 1.765625 -1.84375 1.4375 -1.84375 C 1.03125 -1.84375 0.546875 -1.53125 0.546875 -0.90625 C 0.546875 -0.234375 1.234375 0.171875 2.1875 0.171875 C 3.296875 0.171875 4.484375 -0.28125 4.78125 -1.4375 Z M 5.953125 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5.421875 -1.734375 C 5.421875 -1.90625 5.265625 -1.90625 5.171875 -1.90625 L 1 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.5625 0.90625 -1.5625 1 -1.5625 L 5.171875 -1.5625 C 5.265625 -1.5625 5.421875 -1.5625 5.421875 -1.734375 Z M 5.421875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.40625 C 2.3125 -4.59375 2.3125 -4.59375 2.109375 -4.59375 C 1.671875 -4.15625 1.03125 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.09375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.5 -1.265625 L 3.265625 -1.265625 C 3.234375 -1.109375 3.171875 -0.703125 3.078125 -0.625 C 3.03125 -0.59375 2.484375 -0.59375 2.390625 -0.59375 L 1.125 -0.59375 C 1.84375 -1.234375 2.09375 -1.421875 2.5 -1.75 C 3.015625 -2.15625 3.5 -2.59375 3.5 -3.25 C 3.5 -4.078125 2.765625 -4.59375 1.875 -4.59375 C 1.015625 -4.59375 0.4375 -4 0.4375 -3.359375 C 0.4375 -3 0.734375 -2.96875 0.796875 -2.96875 C 0.96875 -2.96875 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.453125 1.125 -3.703125 0.765625 -3.703125 C 0.96875 -4.1875 1.453125 -4.34375 1.765625 -4.34375 C 2.46875 -4.34375 2.828125 -3.8125 2.828125 -3.25 C 2.828125 -2.640625 2.390625 -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.28125 0 Z M 3.5 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 3.5625 -1.203125 C 3.5625 -1.734375 3.109375 -2.28125 2.359375 -2.4375 C 3.078125 -2.703125 3.34375 -3.21875 3.34375 -3.640625 C 3.34375 -4.1875 2.71875 -4.59375 1.9375 -4.59375 C 1.171875 -4.59375 0.59375 -4.21875 0.59375 -3.671875 C 0.59375 -3.4375 0.734375 -3.296875 0.953125 -3.296875 C 1.15625 -3.296875 1.296875 -3.453125 1.296875 -3.65625 C 1.296875 -3.859375 1.15625 -4 0.953125 -4.015625 C 1.1875 -4.3125 1.671875 -4.390625 1.921875 -4.390625 C 2.234375 -4.390625 2.671875 -4.25 2.671875 -3.640625 C 2.671875 -3.34375 2.578125 -3.03125 2.390625 -2.8125 C 2.171875 -2.546875 1.96875 -2.546875 1.625 -2.515625 C 1.453125 -2.5 1.4375 -2.5 1.40625 -2.5 C 1.40625 -2.5 1.328125 -2.484375 1.328125 -2.40625 C 1.328125 -2.3125 1.390625 -2.3125 1.515625 -2.3125 L 1.890625 -2.3125 C 2.421875 -2.3125 2.8125 -1.9375 2.8125 -1.203125 C 2.8125 -0.34375 2.3125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.734375 -0.5625 C 1.0625 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.171875 0.96875 -1.328125 0.765625 -1.328125 C 0.5625 -1.328125 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.890625 0.140625 3.5625 -0.5 3.5625 -1.203125 Z M 3.5625 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 3.109375 -1.078125 C 3.109375 -1.703125 2.421875 -1.828125 2.15625 -1.875 C 2.09375 -1.890625 1.921875 -1.921875 1.875 -1.9375 C 1.625 -1.984375 1.5 -2.125 1.5 -2.28125 C 1.5 -2.4375 1.625 -2.625 1.78125 -2.734375 C 1.96875 -2.84375 2.203125 -2.859375 2.328125 -2.859375 C 2.46875 -2.859375 2.828125 -2.84375 2.984375 -2.609375 C 2.796875 -2.5625 2.6875 -2.421875 2.6875 -2.28125 C 2.6875 -2.125 2.828125 -2.0625 2.921875 -2.0625 C 2.984375 -2.0625 3.25 -2.09375 3.25 -2.453125 C 3.25 -2.90625 2.75 -3.046875 2.328125 -3.046875 C 1.25 -3.046875 1.0625 -2.25 1.0625 -2.046875 C 1.0625 -1.78125 1.203125 -1.625 1.296875 -1.53125 C 1.484375 -1.390625 1.609375 -1.375 2.078125 -1.28125 C 2.234375 -1.265625 2.671875 -1.171875 2.671875 -0.828125 C 2.671875 -0.71875 2.59375 -0.453125 2.3125 -0.28125 C 2.03125 -0.125 1.703125 -0.125 1.609375 -0.125 C 1.328125 -0.125 0.9375 -0.1875 0.78125 -0.421875 C 1.015625 -0.4375 1.15625 -0.609375 1.15625 -0.8125 C 1.15625 -0.984375 1.03125 -1.0625 0.890625 -1.0625 C 0.6875 -1.0625 0.484375 -0.90625 0.484375 -0.609375 C 0.484375 -0.1875 0.9375 0.0625 1.609375 0.0625 C 2.875 0.0625 3.109375 -0.796875 3.109375 -1.078125 Z M 3.109375 -1.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 1.65625 -0.046875 C 1.65625 -0.46875 1.484375 -0.796875 1.171875 -0.796875 C 0.9375 -0.796875 0.78125 -0.609375 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.171875 0 C 1.34375 0 1.453125 -0.109375 1.453125 -0.109375 C 1.453125 0.265625 1.390625 0.71875 0.921875 1.15625 C 0.890625 1.1875 0.875 1.203125 0.875 1.234375 C 0.875 1.28125 0.921875 1.328125 0.96875 1.328125 C 1.0625 1.328125 1.65625 0.78125 1.65625 -0.046875 Z M 1.65625 -0.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 3.453125 -1 C 3.453125 -1.09375 3.375 -1.09375 3.328125 -1.09375 C 3.25 -1.09375 3.234375 -1.0625 3.203125 -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.609375 1.453125 -0.609375 1.328125 -0.609375 C 1.328125 -0.609375 1.203125 -0.609375 1.15625 -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.53125 3.609375 -2.890625 3.609375 -2.96875 C 3.609375 -3.046875 3.515625 -3.046875 3.484375 -3.046875 C 3.421875 -3.046875 3.40625 -3.03125 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.5625 2.453125 -2.765625 C 2.21875 -3 2.0625 -3.046875 1.90625 -3.046875 C 1.34375 -3.046875 0.96875 -2.453125 0.96875 -2.25 C 0.96875 -2.1875 1.046875 -2.15625 1.09375 -2.15625 C 1.171875 -2.15625 1.1875 -2.1875 1.21875 -2.25 C 1.328125 -2.5 1.703125 -2.515625 1.828125 -2.515625 C 1.984375 -2.515625 2.15625 -2.46875 2.25 -2.453125 C 2.640625 -2.375 2.6875 -2.375 2.859375 -2.375 C 2.671875 -2.1875 2.546875 -2.0625 1.890625 -1.53125 C 1.359375 -1.09375 1.171875 -0.921875 1.03125 -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.875 -0.03125 2.015625 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="glyph3-4">
<path style="stroke:none;" d="M 3.84375 -2.609375 C 3.875 -2.703125 3.875 -2.71875 3.875 -2.765625 C 3.875 -2.90625 3.765625 -2.984375 3.640625 -2.984375 C 3.578125 -2.984375 3.4375 -2.953125 3.359375 -2.8125 C 3.34375 -2.78125 3.28125 -2.546875 3.25 -2.421875 L 3.109375 -1.84375 L 2.828125 -0.734375 C 2.828125 -0.734375 2.515625 -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.953125 -2.265625 2 -2.34375 2 -2.46875 C 2 -2.796875 1.703125 -3.046875 1.328125 -3.046875 C 0.640625 -3.046875 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.03125 -2.859375 1.3125 -2.859375 C 1.4375 -2.859375 1.484375 -2.78125 1.484375 -2.609375 C 1.484375 -2.453125 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.359375 1.265625 -0.140625 C 1.46875 0.03125 1.765625 0.0625 1.953125 0.0625 C 2.234375 0.0625 2.484375 -0.03125 2.703125 -0.25 C 2.609375 0.140625 2.546875 0.421875 2.25 0.78125 C 2.0625 0.984375 1.78125 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.796875 C 0.609375 1.15625 0.9375 1.40625 1.421875 1.40625 C 2.125 1.40625 2.96875 0.875 3.1875 0 Z M 3.84375 -2.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 3.875 -0.984375 C 3.875 -1.078125 3.78125 -1.078125 3.765625 -1.078125 C 3.671875 -1.078125 3.65625 -1.046875 3.640625 -0.96875 C 3.484375 -0.484375 3.078125 -0.125 2.6875 -0.125 C 2.40625 -0.125 2.265625 -0.3125 2.265625 -0.578125 C 2.265625 -0.75 2.421875 -1.390625 2.625 -2.15625 C 2.765625 -2.6875 3.078125 -2.859375 3.296875 -2.859375 C 3.296875 -2.859375 3.53125 -2.859375 3.671875 -2.765625 C 3.453125 -2.703125 3.375 -2.5 3.375 -2.375 C 3.375 -2.234375 3.484375 -2.125 3.640625 -2.125 C 3.8125 -2.125 4.03125 -2.25 4.03125 -2.546875 C 4.03125 -2.9375 3.59375 -3.046875 3.3125 -3.046875 C 2.96875 -3.046875 2.6875 -2.828125 2.546875 -2.5625 C 2.421875 -2.84375 2.09375 -3.046875 1.703125 -3.046875 C 0.9375 -3.046875 0.484375 -2.203125 0.484375 -2 C 0.484375 -1.90625 0.59375 -1.90625 0.609375 -1.90625 C 0.703125 -1.90625 0.703125 -1.9375 0.734375 -2.015625 C 0.90625 -2.5625 1.34375 -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.015625 -1.921875 1.953125 -1.6875 L 1.71875 -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.65625 -0.125 1.828125 -0.421875 C 2 -0.0625 2.375 0.0625 2.65625 0.0625 C 3.453125 0.0625 3.875 -0.796875 3.875 -0.984375 Z M 3.875 -0.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 6.515625 0.296875 L 6.515625 -0.390625 L 3.21875 -0.390625 L 3.21875 17.40625 L 3.90625 17.40625 L 3.90625 0.296875 Z M 6.515625 0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 6.515625 17.390625 L 6.515625 16.71875 L 3.90625 16.71875 L 3.90625 -0.390625 L 3.21875 -0.390625 L 3.21875 17.390625 Z M 6.515625 17.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M 3.359375 17.40625 L 3.359375 -0.390625 L 0.0625 -0.390625 L 0.0625 0.296875 L 2.6875 0.296875 L 2.6875 17.40625 Z M 3.359375 17.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M 3.359375 17.390625 L 3.359375 -0.390625 L 2.6875 -0.390625 L 2.6875 16.71875 L 0.0625 16.71875 L 0.0625 17.390625 Z M 3.359375 17.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 4.90625 -1.421875 C 4.90625 -1.515625 4.8125 -1.515625 4.78125 -1.515625 C 4.703125 -1.515625 4.671875 -1.46875 4.65625 -1.40625 C 4.328125 -0.34375 3.65625 -0.109375 3.34375 -0.109375 C 2.953125 -0.109375 2.796875 -0.421875 2.796875 -0.765625 C 2.796875 -0.984375 2.859375 -1.203125 2.96875 -1.625 L 3.296875 -2.984375 C 3.359375 -3.25 3.59375 -4.15625 4.28125 -4.15625 C 4.328125 -4.15625 4.5625 -4.15625 4.78125 -4.03125 C 4.5 -3.96875 4.296875 -3.734375 4.296875 -3.484375 C 4.296875 -3.328125 4.40625 -3.140625 4.671875 -3.140625 C 4.890625 -3.140625 5.21875 -3.328125 5.21875 -3.71875 C 5.21875 -4.234375 4.625 -4.375 4.296875 -4.375 C 3.71875 -4.375 3.375 -3.84375 3.25 -3.625 C 3 -4.265625 2.46875 -4.375 2.1875 -4.375 C 1.15625 -4.375 0.59375 -3.09375 0.59375 -2.84375 C 0.59375 -2.75 0.71875 -2.75 0.71875 -2.75 C 0.796875 -2.75 0.828125 -2.765625 0.84375 -2.859375 C 1.171875 -3.90625 1.828125 -4.15625 2.171875 -4.15625 C 2.359375 -4.15625 2.703125 -4.0625 2.703125 -3.484375 C 2.703125 -3.1875 2.53125 -2.515625 2.171875 -1.140625 C 2 -0.53125 1.65625 -0.109375 1.21875 -0.109375 C 1.171875 -0.109375 0.9375 -0.109375 0.734375 -0.234375 C 0.984375 -0.28125 1.203125 -0.5 1.203125 -0.765625 C 1.203125 -1.03125 0.984375 -1.125 0.828125 -1.125 C 0.53125 -1.125 0.28125 -0.859375 0.28125 -0.546875 C 0.28125 -0.09375 0.78125 0.109375 1.21875 0.109375 C 1.875 0.109375 2.21875 -0.578125 2.25 -0.640625 C 2.375 -0.28125 2.734375 0.109375 3.328125 0.109375 C 4.34375 0.109375 4.90625 -1.171875 4.90625 -1.421875 Z M 4.90625 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 4.921875 -1.421875 C 4.921875 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.703125 -1.515625 4.703125 -1.46875 4.671875 -1.328125 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.671875 -1.03125 L 5.109375 -6.75 C 5.109375 -6.75 5.109375 -6.859375 4.96875 -6.859375 C 4.828125 -6.859375 3.890625 -6.78125 3.71875 -6.75 C 3.640625 -6.75 3.578125 -6.703125 3.578125 -6.5625 C 3.578125 -6.453125 3.671875 -6.453125 3.8125 -6.453125 C 4.296875 -6.453125 4.3125 -6.375 4.3125 -6.28125 L 4.28125 -6.078125 L 3.6875 -3.734375 C 3.515625 -4.109375 3.21875 -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.890625 0.109375 C 4.25 0.109375 4.46875 -0.125 4.625 -0.4375 C 4.796875 -0.796875 4.921875 -1.421875 4.921875 -1.421875 Z M 3.546875 -3.109375 L 3.046875 -1.171875 C 3 -1 3 -0.984375 2.84375 -0.8125 C 2.40625 -0.265625 2 -0.109375 1.734375 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.03125 C 1.09375 -1.53125 1.421875 -2.75 1.640625 -3.203125 C 1.953125 -3.78125 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.21875 3.546875 -3.171875 3.546875 -3.109375 Z M 3.546875 -3.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-3">
<path style="stroke:none;" d="M 4.3125 -3.734375 C 4.3125 -4.078125 4 -4.375 3.484375 -4.375 C 2.84375 -4.375 2.40625 -3.890625 2.21875 -3.609375 C 2.140625 -4.0625 1.796875 -4.375 1.328125 -4.375 C 0.875 -4.375 0.6875 -3.984375 0.59375 -3.8125 C 0.421875 -3.46875 0.28125 -2.875 0.28125 -2.84375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.578125 -2.984375 C 0.734375 -3.671875 0.9375 -4.15625 1.296875 -4.15625 C 1.46875 -4.15625 1.609375 -4.078125 1.609375 -3.703125 C 1.609375 -3.484375 1.578125 -3.375 1.4375 -2.875 L 0.875 -0.578125 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.0625 0.109375 C 1.1875 0.109375 1.359375 0.03125 1.4375 -0.171875 C 1.453125 -0.203125 1.796875 -1.546875 1.828125 -1.734375 L 2.140625 -3.015625 C 2.1875 -3.140625 2.46875 -3.609375 2.703125 -3.828125 C 2.78125 -3.890625 3.0625 -4.15625 3.484375 -4.15625 C 3.75 -4.15625 3.90625 -4.03125 3.90625 -4.03125 C 3.609375 -3.984375 3.390625 -3.75 3.390625 -3.484375 C 3.390625 -3.328125 3.5 -3.140625 3.765625 -3.140625 C 4.03125 -3.140625 4.3125 -3.375 4.3125 -3.734375 Z M 4.3125 -3.734375 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 23 27 L 56 27 L 56 58.289062 L 23 58.289062 Z M 23 27 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 100 27 L 121.101562 27 L 121.101562 58.289062 L 100 58.289062 Z M 100 27 "/>
</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 -17.007538 -14.17196 L 17.009655 -14.17196 L 17.009655 14.172421 L -17.007538 14.172421 Z M -17.007538 -14.17196 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="48.233767" y="45.587252"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="55.469328" y="41.359232"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="61.648132" y="41.359232"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="54.474091" y="48.223688"/>
<use xlink:href="#glyph3-2" x="58.20526" y="48.223688"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="60.553669" y="48.223688"/>
<use xlink:href="#glyph2-1" x="64.493816" y="48.223688"/>
<use xlink:href="#glyph2-1" x="68.433964" y="48.223688"/>
</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.02801 0.00023036 L -22.141021 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 41.773438 43.234375 L 37.363281 41.566406 L 38.832031 43.234375 L 37.363281 44.90625 Z M 41.773438 43.234375 "/>
<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.053539 0.00023036 L 1.608983 1.68121 L 3.089189 0.00023036 L 1.608983 -1.684686 Z M 6.053539 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,35.766752,43.234604)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="4.779717" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="4.779717" y="22.046872"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="11.370309" y="12.160984"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="17.020239" y="13.643421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="11.370309" y="24.023455"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="17.020239" y="25.505891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="11.370309" y="35.885925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="17.020239" y="37.369354"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="21.454649" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-4" x="21.454649" y="22.046872"/>
</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 17.505682 0.00023036 L 55.392671 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 118.707031 43.234375 L 114.296875 41.566406 L 115.761719 43.234375 L 114.296875 44.90625 Z M 118.707031 43.234375 "/>
<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 6.054671 0.00023036 L 1.610115 1.68121 L 3.086384 0.00023036 L 1.610115 -1.684686 Z M 6.054671 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,112.699222,43.234604)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="93.442132" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="93.442132" y="22.046872"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="100.032724" y="12.160984"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="105.177593" y="13.643421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="100.27682" y="24.023455"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="104.737029" y="25.505891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="100.164694" y="35.885925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-5" x="104.623912" y="37.369354"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="109.733059" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-4" x="109.733059" y="22.046872"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,173 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="122.048pt" height="58.676pt" viewBox="0 0 122.048 58.676" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 5.953125 -6.125 C 6 -6.28125 6 -6.296875 6.078125 -6.296875 C 6.1875 -6.3125 6.328125 -6.3125 6.453125 -6.3125 C 6.703125 -6.3125 6.859375 -6.3125 6.859375 -6.609375 C 6.859375 -6.625 6.859375 -6.78125 6.65625 -6.78125 C 6.453125 -6.78125 6.234375 -6.765625 6.03125 -6.765625 C 5.8125 -6.765625 5.578125 -6.75 5.34375 -6.75 C 4.96875 -6.75 4.015625 -6.78125 3.625 -6.78125 C 3.515625 -6.78125 3.328125 -6.78125 3.328125 -6.5 C 3.328125 -6.3125 3.484375 -6.3125 3.671875 -6.3125 L 4.015625 -6.3125 C 4.40625 -6.3125 4.421875 -6.3125 4.65625 -6.296875 L 3.46875 -1.5 C 3.21875 -0.484375 2.59375 -0.1875 2.140625 -0.1875 C 2.046875 -0.1875 1.625 -0.203125 1.328125 -0.421875 C 1.859375 -0.546875 2.03125 -1.015625 2.03125 -1.28125 C 2.03125 -1.609375 1.765625 -1.84375 1.4375 -1.84375 C 1.03125 -1.84375 0.546875 -1.53125 0.546875 -0.90625 C 0.546875 -0.234375 1.234375 0.171875 2.1875 0.171875 C 3.296875 0.171875 4.484375 -0.28125 4.78125 -1.4375 Z M 5.953125 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 5.421875 -1.734375 C 5.421875 -1.90625 5.265625 -1.90625 5.171875 -1.90625 L 1 -1.90625 C 0.90625 -1.90625 0.75 -1.90625 0.75 -1.734375 C 0.75 -1.5625 0.90625 -1.5625 1 -1.5625 L 5.171875 -1.5625 C 5.265625 -1.5625 5.421875 -1.5625 5.421875 -1.734375 Z M 5.421875 -1.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.40625 C 2.3125 -4.59375 2.3125 -4.59375 2.109375 -4.59375 C 1.671875 -4.15625 1.03125 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.09375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.5625 -1.203125 C 3.5625 -1.734375 3.109375 -2.28125 2.359375 -2.4375 C 3.078125 -2.703125 3.34375 -3.21875 3.34375 -3.640625 C 3.34375 -4.1875 2.71875 -4.59375 1.9375 -4.59375 C 1.171875 -4.59375 0.59375 -4.21875 0.59375 -3.671875 C 0.59375 -3.4375 0.734375 -3.296875 0.953125 -3.296875 C 1.15625 -3.296875 1.296875 -3.453125 1.296875 -3.65625 C 1.296875 -3.859375 1.15625 -4 0.953125 -4.015625 C 1.1875 -4.3125 1.671875 -4.390625 1.921875 -4.390625 C 2.234375 -4.390625 2.671875 -4.25 2.671875 -3.640625 C 2.671875 -3.34375 2.578125 -3.03125 2.390625 -2.8125 C 2.171875 -2.546875 1.96875 -2.546875 1.625 -2.515625 C 1.453125 -2.5 1.4375 -2.5 1.40625 -2.5 C 1.40625 -2.5 1.328125 -2.484375 1.328125 -2.40625 C 1.328125 -2.3125 1.390625 -2.3125 1.515625 -2.3125 L 1.890625 -2.3125 C 2.421875 -2.3125 2.8125 -1.9375 2.8125 -1.203125 C 2.8125 -0.34375 2.3125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.734375 -0.5625 C 1.0625 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.171875 0.96875 -1.328125 0.765625 -1.328125 C 0.5625 -1.328125 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.890625 0.140625 3.5625 -0.5 3.5625 -1.203125 Z M 3.5625 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 3.5 -1.265625 L 3.265625 -1.265625 C 3.234375 -1.109375 3.171875 -0.703125 3.078125 -0.625 C 3.03125 -0.59375 2.484375 -0.59375 2.390625 -0.59375 L 1.125 -0.59375 C 1.84375 -1.234375 2.09375 -1.421875 2.5 -1.75 C 3.015625 -2.15625 3.5 -2.59375 3.5 -3.25 C 3.5 -4.078125 2.765625 -4.59375 1.875 -4.59375 C 1.015625 -4.59375 0.4375 -4 0.4375 -3.359375 C 0.4375 -3 0.734375 -2.96875 0.796875 -2.96875 C 0.96875 -2.96875 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.453125 1.125 -3.703125 0.765625 -3.703125 C 0.96875 -4.1875 1.453125 -4.34375 1.765625 -4.34375 C 2.46875 -4.34375 2.828125 -3.8125 2.828125 -3.25 C 2.828125 -2.640625 2.390625 -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.28125 0 Z M 3.5 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 3.109375 -1.078125 C 3.109375 -1.703125 2.421875 -1.828125 2.15625 -1.875 C 2.09375 -1.890625 1.921875 -1.921875 1.875 -1.9375 C 1.625 -1.984375 1.5 -2.125 1.5 -2.28125 C 1.5 -2.4375 1.625 -2.625 1.78125 -2.734375 C 1.96875 -2.84375 2.203125 -2.859375 2.328125 -2.859375 C 2.46875 -2.859375 2.828125 -2.84375 2.984375 -2.609375 C 2.796875 -2.5625 2.6875 -2.421875 2.6875 -2.28125 C 2.6875 -2.125 2.828125 -2.0625 2.921875 -2.0625 C 2.984375 -2.0625 3.25 -2.09375 3.25 -2.453125 C 3.25 -2.90625 2.75 -3.046875 2.328125 -3.046875 C 1.25 -3.046875 1.0625 -2.25 1.0625 -2.046875 C 1.0625 -1.78125 1.203125 -1.625 1.296875 -1.53125 C 1.484375 -1.390625 1.609375 -1.375 2.078125 -1.28125 C 2.234375 -1.265625 2.671875 -1.171875 2.671875 -0.828125 C 2.671875 -0.71875 2.59375 -0.453125 2.3125 -0.28125 C 2.03125 -0.125 1.703125 -0.125 1.609375 -0.125 C 1.328125 -0.125 0.9375 -0.1875 0.78125 -0.421875 C 1.015625 -0.4375 1.15625 -0.609375 1.15625 -0.8125 C 1.15625 -0.984375 1.03125 -1.0625 0.890625 -1.0625 C 0.6875 -1.0625 0.484375 -0.90625 0.484375 -0.609375 C 0.484375 -0.1875 0.9375 0.0625 1.609375 0.0625 C 2.875 0.0625 3.109375 -0.796875 3.109375 -1.078125 Z M 3.109375 -1.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 1.65625 -0.046875 C 1.65625 -0.46875 1.484375 -0.796875 1.171875 -0.796875 C 0.9375 -0.796875 0.78125 -0.609375 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.171875 0 C 1.34375 0 1.453125 -0.109375 1.453125 -0.109375 C 1.453125 0.265625 1.390625 0.71875 0.921875 1.15625 C 0.890625 1.1875 0.875 1.203125 0.875 1.234375 C 0.875 1.28125 0.921875 1.328125 0.96875 1.328125 C 1.0625 1.328125 1.65625 0.78125 1.65625 -0.046875 Z M 1.65625 -0.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 3.453125 -1 C 3.453125 -1.09375 3.375 -1.09375 3.328125 -1.09375 C 3.25 -1.09375 3.234375 -1.0625 3.203125 -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.609375 1.453125 -0.609375 1.328125 -0.609375 C 1.328125 -0.609375 1.203125 -0.609375 1.15625 -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.53125 3.609375 -2.890625 3.609375 -2.96875 C 3.609375 -3.046875 3.515625 -3.046875 3.484375 -3.046875 C 3.421875 -3.046875 3.40625 -3.03125 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.5625 2.453125 -2.765625 C 2.21875 -3 2.0625 -3.046875 1.90625 -3.046875 C 1.34375 -3.046875 0.96875 -2.453125 0.96875 -2.25 C 0.96875 -2.1875 1.046875 -2.15625 1.09375 -2.15625 C 1.171875 -2.15625 1.1875 -2.1875 1.21875 -2.25 C 1.328125 -2.5 1.703125 -2.515625 1.828125 -2.515625 C 1.984375 -2.515625 2.15625 -2.46875 2.25 -2.453125 C 2.640625 -2.375 2.6875 -2.375 2.859375 -2.375 C 2.671875 -2.1875 2.546875 -2.0625 1.890625 -1.53125 C 1.359375 -1.09375 1.171875 -0.921875 1.03125 -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.875 -0.03125 2.015625 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="glyph3-4">
<path style="stroke:none;" d="M 3.84375 -2.609375 C 3.875 -2.703125 3.875 -2.71875 3.875 -2.765625 C 3.875 -2.90625 3.765625 -2.984375 3.640625 -2.984375 C 3.578125 -2.984375 3.4375 -2.953125 3.359375 -2.8125 C 3.34375 -2.78125 3.28125 -2.546875 3.25 -2.421875 L 3.109375 -1.84375 L 2.828125 -0.734375 C 2.828125 -0.734375 2.515625 -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.953125 -2.265625 2 -2.34375 2 -2.46875 C 2 -2.796875 1.703125 -3.046875 1.328125 -3.046875 C 0.640625 -3.046875 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.03125 -2.859375 1.3125 -2.859375 C 1.4375 -2.859375 1.484375 -2.78125 1.484375 -2.609375 C 1.484375 -2.453125 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.359375 1.265625 -0.140625 C 1.46875 0.03125 1.765625 0.0625 1.953125 0.0625 C 2.234375 0.0625 2.484375 -0.03125 2.703125 -0.25 C 2.609375 0.140625 2.546875 0.421875 2.25 0.78125 C 2.0625 0.984375 1.78125 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.796875 C 0.609375 1.15625 0.9375 1.40625 1.421875 1.40625 C 2.125 1.40625 2.96875 0.875 3.1875 0 Z M 3.84375 -2.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-5">
<path style="stroke:none;" d="M 3.875 -0.984375 C 3.875 -1.078125 3.78125 -1.078125 3.765625 -1.078125 C 3.671875 -1.078125 3.65625 -1.046875 3.640625 -0.96875 C 3.484375 -0.484375 3.078125 -0.125 2.6875 -0.125 C 2.40625 -0.125 2.265625 -0.3125 2.265625 -0.578125 C 2.265625 -0.75 2.421875 -1.390625 2.625 -2.15625 C 2.765625 -2.6875 3.078125 -2.859375 3.296875 -2.859375 C 3.296875 -2.859375 3.53125 -2.859375 3.671875 -2.765625 C 3.453125 -2.703125 3.375 -2.5 3.375 -2.375 C 3.375 -2.234375 3.484375 -2.125 3.640625 -2.125 C 3.8125 -2.125 4.03125 -2.25 4.03125 -2.546875 C 4.03125 -2.9375 3.59375 -3.046875 3.3125 -3.046875 C 2.96875 -3.046875 2.6875 -2.828125 2.546875 -2.5625 C 2.421875 -2.84375 2.09375 -3.046875 1.703125 -3.046875 C 0.9375 -3.046875 0.484375 -2.203125 0.484375 -2 C 0.484375 -1.90625 0.59375 -1.90625 0.609375 -1.90625 C 0.703125 -1.90625 0.703125 -1.9375 0.734375 -2.015625 C 0.90625 -2.5625 1.34375 -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.015625 -1.921875 1.953125 -1.6875 L 1.71875 -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.65625 -0.125 1.828125 -0.421875 C 2 -0.0625 2.375 0.0625 2.65625 0.0625 C 3.453125 0.0625 3.875 -0.796875 3.875 -0.984375 Z M 3.875 -0.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 6.515625 0.296875 L 6.515625 -0.390625 L 3.21875 -0.390625 L 3.21875 17.40625 L 3.90625 17.40625 L 3.90625 0.296875 Z M 6.515625 0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 6.515625 17.390625 L 6.515625 16.71875 L 3.90625 16.71875 L 3.90625 -0.390625 L 3.21875 -0.390625 L 3.21875 17.390625 Z M 6.515625 17.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M 3.359375 17.40625 L 3.359375 -0.390625 L 0.0625 -0.390625 L 0.0625 0.296875 L 2.6875 0.296875 L 2.6875 17.40625 Z M 3.359375 17.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-4">
<path style="stroke:none;" d="M 3.359375 17.390625 L 3.359375 -0.390625 L 2.6875 -0.390625 L 2.6875 16.71875 L 0.0625 16.71875 L 0.0625 17.390625 Z M 3.359375 17.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 4.90625 -1.421875 C 4.90625 -1.515625 4.8125 -1.515625 4.78125 -1.515625 C 4.703125 -1.515625 4.671875 -1.46875 4.65625 -1.40625 C 4.328125 -0.34375 3.65625 -0.109375 3.34375 -0.109375 C 2.953125 -0.109375 2.796875 -0.421875 2.796875 -0.765625 C 2.796875 -0.984375 2.859375 -1.203125 2.96875 -1.625 L 3.296875 -2.984375 C 3.359375 -3.25 3.59375 -4.15625 4.28125 -4.15625 C 4.328125 -4.15625 4.5625 -4.15625 4.78125 -4.03125 C 4.5 -3.96875 4.296875 -3.734375 4.296875 -3.484375 C 4.296875 -3.328125 4.40625 -3.140625 4.671875 -3.140625 C 4.890625 -3.140625 5.21875 -3.328125 5.21875 -3.71875 C 5.21875 -4.234375 4.625 -4.375 4.296875 -4.375 C 3.71875 -4.375 3.375 -3.84375 3.25 -3.625 C 3 -4.265625 2.46875 -4.375 2.1875 -4.375 C 1.15625 -4.375 0.59375 -3.09375 0.59375 -2.84375 C 0.59375 -2.75 0.71875 -2.75 0.71875 -2.75 C 0.796875 -2.75 0.828125 -2.765625 0.84375 -2.859375 C 1.171875 -3.90625 1.828125 -4.15625 2.171875 -4.15625 C 2.359375 -4.15625 2.703125 -4.0625 2.703125 -3.484375 C 2.703125 -3.1875 2.53125 -2.515625 2.171875 -1.140625 C 2 -0.53125 1.65625 -0.109375 1.21875 -0.109375 C 1.171875 -0.109375 0.9375 -0.109375 0.734375 -0.234375 C 0.984375 -0.28125 1.203125 -0.5 1.203125 -0.765625 C 1.203125 -1.03125 0.984375 -1.125 0.828125 -1.125 C 0.53125 -1.125 0.28125 -0.859375 0.28125 -0.546875 C 0.28125 -0.09375 0.78125 0.109375 1.21875 0.109375 C 1.875 0.109375 2.21875 -0.578125 2.25 -0.640625 C 2.375 -0.28125 2.734375 0.109375 3.328125 0.109375 C 4.34375 0.109375 4.90625 -1.171875 4.90625 -1.421875 Z M 4.90625 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 4.921875 -1.421875 C 4.921875 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.703125 -1.515625 4.703125 -1.46875 4.671875 -1.328125 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.671875 -1.03125 L 5.109375 -6.75 C 5.109375 -6.75 5.109375 -6.859375 4.96875 -6.859375 C 4.828125 -6.859375 3.890625 -6.78125 3.71875 -6.75 C 3.640625 -6.75 3.578125 -6.703125 3.578125 -6.5625 C 3.578125 -6.453125 3.671875 -6.453125 3.8125 -6.453125 C 4.296875 -6.453125 4.3125 -6.375 4.3125 -6.28125 L 4.28125 -6.078125 L 3.6875 -3.734375 C 3.515625 -4.109375 3.21875 -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.890625 0.109375 C 4.25 0.109375 4.46875 -0.125 4.625 -0.4375 C 4.796875 -0.796875 4.921875 -1.421875 4.921875 -1.421875 Z M 3.546875 -3.109375 L 3.046875 -1.171875 C 3 -1 3 -0.984375 2.84375 -0.8125 C 2.40625 -0.265625 2 -0.109375 1.734375 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.03125 C 1.09375 -1.53125 1.421875 -2.75 1.640625 -3.203125 C 1.953125 -3.78125 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.21875 3.546875 -3.171875 3.546875 -3.109375 Z M 3.546875 -3.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-3">
<path style="stroke:none;" d="M 4.3125 -3.734375 C 4.3125 -4.078125 4 -4.375 3.484375 -4.375 C 2.84375 -4.375 2.40625 -3.890625 2.21875 -3.609375 C 2.140625 -4.0625 1.796875 -4.375 1.328125 -4.375 C 0.875 -4.375 0.6875 -3.984375 0.59375 -3.8125 C 0.421875 -3.46875 0.28125 -2.875 0.28125 -2.84375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.578125 -2.984375 C 0.734375 -3.671875 0.9375 -4.15625 1.296875 -4.15625 C 1.46875 -4.15625 1.609375 -4.078125 1.609375 -3.703125 C 1.609375 -3.484375 1.578125 -3.375 1.4375 -2.875 L 0.875 -0.578125 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.0625 0.109375 C 1.1875 0.109375 1.359375 0.03125 1.4375 -0.171875 C 1.453125 -0.203125 1.796875 -1.546875 1.828125 -1.734375 L 2.140625 -3.015625 C 2.1875 -3.140625 2.46875 -3.609375 2.703125 -3.828125 C 2.78125 -3.890625 3.0625 -4.15625 3.484375 -4.15625 C 3.75 -4.15625 3.90625 -4.03125 3.90625 -4.03125 C 3.609375 -3.984375 3.390625 -3.75 3.390625 -3.484375 C 3.390625 -3.328125 3.5 -3.140625 3.765625 -3.140625 C 4.03125 -3.140625 4.3125 -3.375 4.3125 -3.734375 Z M 4.3125 -3.734375 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 23 27 L 56 27 L 56 58.289062 L 23 58.289062 Z M 23 27 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 100 27 L 121.101562 27 L 121.101562 58.289062 L 100 58.289062 Z M 100 27 "/>
</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 -17.007538 -14.17196 L 17.009655 -14.17196 L 17.009655 14.172421 L -17.007538 14.172421 Z M -17.007538 -14.17196 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="48.233767" y="45.587252"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="55.469328" y="41.359232"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="61.648132" y="41.359232"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="54.474091" y="48.223688"/>
<use xlink:href="#glyph3-2" x="58.20526" y="48.223688"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="60.553669" y="48.223688"/>
<use xlink:href="#glyph2-1" x="64.493816" y="48.223688"/>
<use xlink:href="#glyph2-1" x="68.433964" y="48.223688"/>
</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.02801 0.00023036 L -22.141021 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 41.773438 43.234375 L 37.363281 41.566406 L 38.832031 43.234375 L 37.363281 44.90625 Z M 41.773438 43.234375 "/>
<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.053539 0.00023036 L 1.608983 1.68121 L 3.089189 0.00023036 L 1.608983 -1.684686 Z M 6.053539 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,35.766752,43.234604)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="4.779717" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="4.779717" y="22.046872"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="11.370309" y="12.160984"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="17.020239" y="13.643421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="11.370309" y="24.023455"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="17.020239" y="25.505891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="11.370309" y="35.885925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="17.020239" y="37.369354"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="21.454649" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-4" x="21.454649" y="22.046872"/>
</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 17.505682 0.00023036 L 55.392671 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 118.707031 43.234375 L 114.296875 41.566406 L 115.761719 43.234375 L 114.296875 44.90625 Z M 118.707031 43.234375 "/>
<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 6.054671 0.00023036 L 1.610115 1.68121 L 3.086384 0.00023036 L 1.610115 -1.684686 Z M 6.054671 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,112.699222,43.234604)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="93.442132" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="93.442132" y="22.046872"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="100.032724" y="12.160984"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="105.177593" y="13.643421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="100.27682" y="24.023455"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="104.737029" y="25.505891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="100.164694" y="35.885925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-5" x="104.623912" y="37.369354"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="109.733059" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-4" x="109.733059" y="22.046872"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -30,13 +30,13 @@
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.40625 C 2.3125 -4.59375 2.3125 -4.59375 2.109375 -4.59375 C 1.671875 -4.15625 1.03125 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.09375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.28125 0 "/>
<path style="stroke:none;" d="M 3.5625 -1.203125 C 3.5625 -1.734375 3.109375 -2.28125 2.359375 -2.4375 C 3.078125 -2.703125 3.34375 -3.21875 3.34375 -3.640625 C 3.34375 -4.1875 2.71875 -4.59375 1.9375 -4.59375 C 1.171875 -4.59375 0.59375 -4.21875 0.59375 -3.671875 C 0.59375 -3.4375 0.734375 -3.296875 0.953125 -3.296875 C 1.15625 -3.296875 1.296875 -3.453125 1.296875 -3.65625 C 1.296875 -3.859375 1.15625 -4 0.953125 -4.015625 C 1.1875 -4.3125 1.671875 -4.390625 1.921875 -4.390625 C 2.234375 -4.390625 2.671875 -4.25 2.671875 -3.640625 C 2.671875 -3.34375 2.578125 -3.03125 2.390625 -2.8125 C 2.171875 -2.546875 1.96875 -2.546875 1.625 -2.515625 C 1.453125 -2.5 1.4375 -2.5 1.40625 -2.5 C 1.40625 -2.5 1.328125 -2.484375 1.328125 -2.40625 C 1.328125 -2.3125 1.390625 -2.3125 1.515625 -2.3125 L 1.890625 -2.3125 C 2.421875 -2.3125 2.8125 -1.9375 2.8125 -1.203125 C 2.8125 -0.34375 2.3125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.734375 -0.5625 C 1.0625 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.171875 0.96875 -1.328125 0.765625 -1.328125 C 0.5625 -1.328125 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.890625 0.140625 3.5625 -0.5 3.5625 -1.203125 Z M 3.5625 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.5 -1.265625 L 3.265625 -1.265625 C 3.234375 -1.109375 3.171875 -0.703125 3.078125 -0.625 C 3.03125 -0.59375 2.484375 -0.59375 2.390625 -0.59375 L 1.125 -0.59375 C 1.84375 -1.234375 2.09375 -1.421875 2.5 -1.75 C 3.015625 -2.15625 3.5 -2.59375 3.5 -3.25 C 3.5 -4.078125 2.765625 -4.59375 1.875 -4.59375 C 1.015625 -4.59375 0.4375 -4 0.4375 -3.359375 C 0.4375 -3 0.734375 -2.96875 0.796875 -2.96875 C 0.96875 -2.96875 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.453125 1.125 -3.703125 0.765625 -3.703125 C 0.96875 -4.1875 1.453125 -4.34375 1.765625 -4.34375 C 2.46875 -4.34375 2.828125 -3.8125 2.828125 -3.25 C 2.828125 -2.640625 2.390625 -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.28125 0 Z M 3.5 -1.265625 "/>
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.40625 C 2.3125 -4.59375 2.3125 -4.59375 2.109375 -4.59375 C 1.671875 -4.15625 1.03125 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.09375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 3.5625 -1.203125 C 3.5625 -1.734375 3.109375 -2.28125 2.359375 -2.4375 C 3.078125 -2.703125 3.34375 -3.21875 3.34375 -3.640625 C 3.34375 -4.1875 2.71875 -4.59375 1.9375 -4.59375 C 1.171875 -4.59375 0.59375 -4.21875 0.59375 -3.671875 C 0.59375 -3.4375 0.734375 -3.296875 0.953125 -3.296875 C 1.15625 -3.296875 1.296875 -3.453125 1.296875 -3.65625 C 1.296875 -3.859375 1.15625 -4 0.953125 -4.015625 C 1.1875 -4.3125 1.671875 -4.390625 1.921875 -4.390625 C 2.234375 -4.390625 2.671875 -4.25 2.671875 -3.640625 C 2.671875 -3.34375 2.578125 -3.03125 2.390625 -2.8125 C 2.171875 -2.546875 1.96875 -2.546875 1.625 -2.515625 C 1.453125 -2.5 1.4375 -2.5 1.40625 -2.5 C 1.40625 -2.5 1.328125 -2.484375 1.328125 -2.40625 C 1.328125 -2.3125 1.390625 -2.3125 1.515625 -2.3125 L 1.890625 -2.3125 C 2.421875 -2.3125 2.8125 -1.9375 2.8125 -1.203125 C 2.8125 -0.34375 2.3125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.734375 -0.5625 C 1.0625 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.171875 0.96875 -1.328125 0.765625 -1.328125 C 0.5625 -1.328125 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.890625 0.140625 3.5625 -0.5 3.5625 -1.203125 Z M 3.5625 -1.203125 "/>
<path style="stroke:none;" d="M 3.5 -1.265625 L 3.265625 -1.265625 C 3.234375 -1.109375 3.171875 -0.703125 3.078125 -0.625 C 3.03125 -0.59375 2.484375 -0.59375 2.390625 -0.59375 L 1.125 -0.59375 C 1.84375 -1.234375 2.09375 -1.421875 2.5 -1.75 C 3.015625 -2.15625 3.5 -2.59375 3.5 -3.25 C 3.5 -4.078125 2.765625 -4.59375 1.875 -4.59375 C 1.015625 -4.59375 0.4375 -4 0.4375 -3.359375 C 0.4375 -3 0.734375 -2.96875 0.796875 -2.96875 C 0.96875 -2.96875 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.453125 1.125 -3.703125 0.765625 -3.703125 C 0.96875 -4.1875 1.453125 -4.34375 1.765625 -4.34375 C 2.46875 -4.34375 2.828125 -3.8125 2.828125 -3.25 C 2.828125 -2.640625 2.390625 -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.28125 0 Z M 3.5 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
@ -84,8 +84,8 @@
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="60.553669" y="46.694615"/>
<use xlink:href="#glyph2-1" x="64.493816" y="46.694615"/>
<use xlink:href="#glyph2-1" x="68.433964" y="46.694615"/>
<use xlink:href="#glyph2-2" x="64.493816" y="46.694615"/>
<use xlink:href="#glyph2-2" x="68.433964" y="46.694615"/>
</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.02801 0.00023036 L -22.141021 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 41.773438 43.234375 L 37.363281 41.566406 L 38.832031 43.234375 L 37.363281 44.90625 Z M 41.773438 43.234375 "/>
@ -137,19 +137,19 @@
<use xlink:href="#glyph4-3" x="99.648719" y="12.160984"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="105.298648" y="13.643421"/>
<use xlink:href="#glyph2-2" x="105.298648" y="13.643421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="99.648719" y="24.023455"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="105.298648" y="25.505891"/>
<use xlink:href="#glyph2-3" x="105.298648" y="25.505891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="99.648719" y="35.885925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="105.298648" y="37.369354"/>
<use xlink:href="#glyph2-1" x="105.298648" y="37.369354"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="109.733059" y="4.252671"/>

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,161 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="122.048pt" height="58.676pt" viewBox="0 0 122.048 58.676" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 5.953125 -6.125 C 6 -6.28125 6 -6.296875 6.078125 -6.296875 C 6.1875 -6.3125 6.328125 -6.3125 6.453125 -6.3125 C 6.703125 -6.3125 6.859375 -6.3125 6.859375 -6.609375 C 6.859375 -6.625 6.859375 -6.78125 6.65625 -6.78125 C 6.453125 -6.78125 6.234375 -6.765625 6.03125 -6.765625 C 5.8125 -6.765625 5.578125 -6.75 5.34375 -6.75 C 4.96875 -6.75 4.015625 -6.78125 3.625 -6.78125 C 3.515625 -6.78125 3.328125 -6.78125 3.328125 -6.5 C 3.328125 -6.3125 3.484375 -6.3125 3.671875 -6.3125 L 4.015625 -6.3125 C 4.40625 -6.3125 4.421875 -6.3125 4.65625 -6.296875 L 3.46875 -1.5 C 3.21875 -0.484375 2.59375 -0.1875 2.140625 -0.1875 C 2.046875 -0.1875 1.625 -0.203125 1.328125 -0.421875 C 1.859375 -0.546875 2.03125 -1.015625 2.03125 -1.28125 C 2.03125 -1.609375 1.765625 -1.84375 1.4375 -1.84375 C 1.03125 -1.84375 0.546875 -1.53125 0.546875 -0.90625 C 0.546875 -0.234375 1.234375 0.171875 2.1875 0.171875 C 3.296875 0.171875 4.484375 -0.28125 4.78125 -1.4375 Z M 5.953125 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 3.109375 -1.078125 C 3.109375 -1.703125 2.421875 -1.828125 2.15625 -1.875 C 2.09375 -1.890625 1.921875 -1.921875 1.875 -1.9375 C 1.625 -1.984375 1.5 -2.125 1.5 -2.28125 C 1.5 -2.4375 1.625 -2.625 1.78125 -2.734375 C 1.96875 -2.84375 2.203125 -2.859375 2.328125 -2.859375 C 2.46875 -2.859375 2.828125 -2.84375 2.984375 -2.609375 C 2.796875 -2.5625 2.6875 -2.421875 2.6875 -2.28125 C 2.6875 -2.125 2.828125 -2.0625 2.921875 -2.0625 C 2.984375 -2.0625 3.25 -2.09375 3.25 -2.453125 C 3.25 -2.90625 2.75 -3.046875 2.328125 -3.046875 C 1.25 -3.046875 1.0625 -2.25 1.0625 -2.046875 C 1.0625 -1.78125 1.203125 -1.625 1.296875 -1.53125 C 1.484375 -1.390625 1.609375 -1.375 2.078125 -1.28125 C 2.234375 -1.265625 2.671875 -1.171875 2.671875 -0.828125 C 2.671875 -0.71875 2.59375 -0.453125 2.3125 -0.28125 C 2.03125 -0.125 1.703125 -0.125 1.609375 -0.125 C 1.328125 -0.125 0.9375 -0.1875 0.78125 -0.421875 C 1.015625 -0.4375 1.15625 -0.609375 1.15625 -0.8125 C 1.15625 -0.984375 1.03125 -1.0625 0.890625 -1.0625 C 0.6875 -1.0625 0.484375 -0.90625 0.484375 -0.609375 C 0.484375 -0.1875 0.9375 0.0625 1.609375 0.0625 C 2.875 0.0625 3.109375 -0.796875 3.109375 -1.078125 Z M 3.109375 -1.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 1.65625 -0.046875 C 1.65625 -0.46875 1.484375 -0.796875 1.171875 -0.796875 C 0.9375 -0.796875 0.78125 -0.609375 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.171875 0 C 1.34375 0 1.453125 -0.109375 1.453125 -0.109375 C 1.453125 0.265625 1.390625 0.71875 0.921875 1.15625 C 0.890625 1.1875 0.875 1.203125 0.875 1.234375 C 0.875 1.28125 0.921875 1.328125 0.96875 1.328125 C 1.0625 1.328125 1.65625 0.78125 1.65625 -0.046875 Z M 1.65625 -0.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 3.453125 -1 C 3.453125 -1.09375 3.375 -1.09375 3.328125 -1.09375 C 3.25 -1.09375 3.234375 -1.0625 3.203125 -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.609375 1.453125 -0.609375 1.328125 -0.609375 C 1.328125 -0.609375 1.203125 -0.609375 1.15625 -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.53125 3.609375 -2.890625 3.609375 -2.96875 C 3.609375 -3.046875 3.515625 -3.046875 3.484375 -3.046875 C 3.421875 -3.046875 3.40625 -3.03125 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.5625 2.453125 -2.765625 C 2.21875 -3 2.0625 -3.046875 1.90625 -3.046875 C 1.34375 -3.046875 0.96875 -2.453125 0.96875 -2.25 C 0.96875 -2.1875 1.046875 -2.15625 1.09375 -2.15625 C 1.171875 -2.15625 1.1875 -2.1875 1.21875 -2.25 C 1.328125 -2.5 1.703125 -2.515625 1.828125 -2.515625 C 1.984375 -2.515625 2.15625 -2.46875 2.25 -2.453125 C 2.640625 -2.375 2.6875 -2.375 2.859375 -2.375 C 2.671875 -2.1875 2.546875 -2.0625 1.890625 -1.53125 C 1.359375 -1.09375 1.171875 -0.921875 1.03125 -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.875 -0.03125 2.015625 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="glyph1-4">
<path style="stroke:none;" d="M 3.84375 -2.609375 C 3.875 -2.703125 3.875 -2.71875 3.875 -2.765625 C 3.875 -2.90625 3.765625 -2.984375 3.640625 -2.984375 C 3.578125 -2.984375 3.4375 -2.953125 3.359375 -2.8125 C 3.34375 -2.78125 3.28125 -2.546875 3.25 -2.421875 L 3.109375 -1.84375 L 2.828125 -0.734375 C 2.828125 -0.734375 2.515625 -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.953125 -2.265625 2 -2.34375 2 -2.46875 C 2 -2.796875 1.703125 -3.046875 1.328125 -3.046875 C 0.640625 -3.046875 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.03125 -2.859375 1.3125 -2.859375 C 1.4375 -2.859375 1.484375 -2.78125 1.484375 -2.609375 C 1.484375 -2.453125 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.359375 1.265625 -0.140625 C 1.46875 0.03125 1.765625 0.0625 1.953125 0.0625 C 2.234375 0.0625 2.484375 -0.03125 2.703125 -0.25 C 2.609375 0.140625 2.546875 0.421875 2.25 0.78125 C 2.0625 0.984375 1.78125 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.796875 C 0.609375 1.15625 0.9375 1.40625 1.421875 1.40625 C 2.125 1.40625 2.96875 0.875 3.1875 0 Z M 3.84375 -2.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 3.875 -0.984375 C 3.875 -1.078125 3.78125 -1.078125 3.765625 -1.078125 C 3.671875 -1.078125 3.65625 -1.046875 3.640625 -0.96875 C 3.484375 -0.484375 3.078125 -0.125 2.6875 -0.125 C 2.40625 -0.125 2.265625 -0.3125 2.265625 -0.578125 C 2.265625 -0.75 2.421875 -1.390625 2.625 -2.15625 C 2.765625 -2.6875 3.078125 -2.859375 3.296875 -2.859375 C 3.296875 -2.859375 3.53125 -2.859375 3.671875 -2.765625 C 3.453125 -2.703125 3.375 -2.5 3.375 -2.375 C 3.375 -2.234375 3.484375 -2.125 3.640625 -2.125 C 3.8125 -2.125 4.03125 -2.25 4.03125 -2.546875 C 4.03125 -2.9375 3.59375 -3.046875 3.3125 -3.046875 C 2.96875 -3.046875 2.6875 -2.828125 2.546875 -2.5625 C 2.421875 -2.84375 2.09375 -3.046875 1.703125 -3.046875 C 0.9375 -3.046875 0.484375 -2.203125 0.484375 -2 C 0.484375 -1.90625 0.59375 -1.90625 0.609375 -1.90625 C 0.703125 -1.90625 0.703125 -1.9375 0.734375 -2.015625 C 0.90625 -2.5625 1.34375 -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.015625 -1.921875 1.953125 -1.6875 L 1.71875 -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.65625 -0.125 1.828125 -0.421875 C 2 -0.0625 2.375 0.0625 2.65625 0.0625 C 3.453125 0.0625 3.875 -0.796875 3.875 -0.984375 Z M 3.875 -0.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.40625 C 2.3125 -4.59375 2.3125 -4.59375 2.109375 -4.59375 C 1.671875 -4.15625 1.03125 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.09375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.5 -1.265625 L 3.265625 -1.265625 C 3.234375 -1.109375 3.171875 -0.703125 3.078125 -0.625 C 3.03125 -0.59375 2.484375 -0.59375 2.390625 -0.59375 L 1.125 -0.59375 C 1.84375 -1.234375 2.09375 -1.421875 2.5 -1.75 C 3.015625 -2.15625 3.5 -2.59375 3.5 -3.25 C 3.5 -4.078125 2.765625 -4.59375 1.875 -4.59375 C 1.015625 -4.59375 0.4375 -4 0.4375 -3.359375 C 0.4375 -3 0.734375 -2.96875 0.796875 -2.96875 C 0.96875 -2.96875 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.453125 1.125 -3.703125 0.765625 -3.703125 C 0.96875 -4.1875 1.453125 -4.34375 1.765625 -4.34375 C 2.46875 -4.34375 2.828125 -3.8125 2.828125 -3.25 C 2.828125 -2.640625 2.390625 -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.28125 0 Z M 3.5 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 3.5625 -1.203125 C 3.5625 -1.734375 3.109375 -2.28125 2.359375 -2.4375 C 3.078125 -2.703125 3.34375 -3.21875 3.34375 -3.640625 C 3.34375 -4.1875 2.71875 -4.59375 1.9375 -4.59375 C 1.171875 -4.59375 0.59375 -4.21875 0.59375 -3.671875 C 0.59375 -3.4375 0.734375 -3.296875 0.953125 -3.296875 C 1.15625 -3.296875 1.296875 -3.453125 1.296875 -3.65625 C 1.296875 -3.859375 1.15625 -4 0.953125 -4.015625 C 1.1875 -4.3125 1.671875 -4.390625 1.921875 -4.390625 C 2.234375 -4.390625 2.671875 -4.25 2.671875 -3.640625 C 2.671875 -3.34375 2.578125 -3.03125 2.390625 -2.8125 C 2.171875 -2.546875 1.96875 -2.546875 1.625 -2.515625 C 1.453125 -2.5 1.4375 -2.5 1.40625 -2.5 C 1.40625 -2.5 1.328125 -2.484375 1.328125 -2.40625 C 1.328125 -2.3125 1.390625 -2.3125 1.515625 -2.3125 L 1.890625 -2.3125 C 2.421875 -2.3125 2.8125 -1.9375 2.8125 -1.203125 C 2.8125 -0.34375 2.3125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.734375 -0.5625 C 1.0625 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.171875 0.96875 -1.328125 0.765625 -1.328125 C 0.5625 -1.328125 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.890625 0.140625 3.5625 -0.5 3.5625 -1.203125 Z M 3.5625 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 6.515625 0.296875 L 6.515625 -0.390625 L 3.21875 -0.390625 L 3.21875 17.40625 L 3.90625 17.40625 L 3.90625 0.296875 Z M 6.515625 0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 6.515625 17.390625 L 6.515625 16.71875 L 3.90625 16.71875 L 3.90625 -0.390625 L 3.21875 -0.390625 L 3.21875 17.390625 Z M 6.515625 17.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 3.359375 17.40625 L 3.359375 -0.390625 L 0.0625 -0.390625 L 0.0625 0.296875 L 2.6875 0.296875 L 2.6875 17.40625 Z M 3.359375 17.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 3.359375 17.390625 L 3.359375 -0.390625 L 2.6875 -0.390625 L 2.6875 16.71875 L 0.0625 16.71875 L 0.0625 17.390625 Z M 3.359375 17.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 4.921875 -1.421875 C 4.921875 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.703125 -1.515625 4.703125 -1.46875 4.671875 -1.328125 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.671875 -1.03125 L 5.109375 -6.75 C 5.109375 -6.75 5.109375 -6.859375 4.96875 -6.859375 C 4.828125 -6.859375 3.890625 -6.78125 3.71875 -6.75 C 3.640625 -6.75 3.578125 -6.703125 3.578125 -6.5625 C 3.578125 -6.453125 3.671875 -6.453125 3.8125 -6.453125 C 4.296875 -6.453125 4.3125 -6.375 4.3125 -6.28125 L 4.28125 -6.078125 L 3.6875 -3.734375 C 3.515625 -4.109375 3.21875 -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.890625 0.109375 C 4.25 0.109375 4.46875 -0.125 4.625 -0.4375 C 4.796875 -0.796875 4.921875 -1.421875 4.921875 -1.421875 Z M 3.546875 -3.109375 L 3.046875 -1.171875 C 3 -1 3 -0.984375 2.84375 -0.8125 C 2.40625 -0.265625 2 -0.109375 1.734375 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.03125 C 1.09375 -1.53125 1.421875 -2.75 1.640625 -3.203125 C 1.953125 -3.78125 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.21875 3.546875 -3.171875 3.546875 -3.109375 Z M 3.546875 -3.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 4.3125 -3.734375 C 4.3125 -4.078125 4 -4.375 3.484375 -4.375 C 2.84375 -4.375 2.40625 -3.890625 2.21875 -3.609375 C 2.140625 -4.0625 1.796875 -4.375 1.328125 -4.375 C 0.875 -4.375 0.6875 -3.984375 0.59375 -3.8125 C 0.421875 -3.46875 0.28125 -2.875 0.28125 -2.84375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.578125 -2.984375 C 0.734375 -3.671875 0.9375 -4.15625 1.296875 -4.15625 C 1.46875 -4.15625 1.609375 -4.078125 1.609375 -3.703125 C 1.609375 -3.484375 1.578125 -3.375 1.4375 -2.875 L 0.875 -0.578125 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.0625 0.109375 C 1.1875 0.109375 1.359375 0.03125 1.4375 -0.171875 C 1.453125 -0.203125 1.796875 -1.546875 1.828125 -1.734375 L 2.140625 -3.015625 C 2.1875 -3.140625 2.46875 -3.609375 2.703125 -3.828125 C 2.78125 -3.890625 3.0625 -4.15625 3.484375 -4.15625 C 3.75 -4.15625 3.90625 -4.03125 3.90625 -4.03125 C 3.609375 -3.984375 3.390625 -3.75 3.390625 -3.484375 C 3.390625 -3.328125 3.5 -3.140625 3.765625 -3.140625 C 4.03125 -3.140625 4.3125 -3.375 4.3125 -3.734375 Z M 4.3125 -3.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M 4.90625 -1.421875 C 4.90625 -1.515625 4.8125 -1.515625 4.78125 -1.515625 C 4.703125 -1.515625 4.671875 -1.46875 4.65625 -1.40625 C 4.328125 -0.34375 3.65625 -0.109375 3.34375 -0.109375 C 2.953125 -0.109375 2.796875 -0.421875 2.796875 -0.765625 C 2.796875 -0.984375 2.859375 -1.203125 2.96875 -1.625 L 3.296875 -2.984375 C 3.359375 -3.25 3.59375 -4.15625 4.28125 -4.15625 C 4.328125 -4.15625 4.5625 -4.15625 4.78125 -4.03125 C 4.5 -3.96875 4.296875 -3.734375 4.296875 -3.484375 C 4.296875 -3.328125 4.40625 -3.140625 4.671875 -3.140625 C 4.890625 -3.140625 5.21875 -3.328125 5.21875 -3.71875 C 5.21875 -4.234375 4.625 -4.375 4.296875 -4.375 C 3.71875 -4.375 3.375 -3.84375 3.25 -3.625 C 3 -4.265625 2.46875 -4.375 2.1875 -4.375 C 1.15625 -4.375 0.59375 -3.09375 0.59375 -2.84375 C 0.59375 -2.75 0.71875 -2.75 0.71875 -2.75 C 0.796875 -2.75 0.828125 -2.765625 0.84375 -2.859375 C 1.171875 -3.90625 1.828125 -4.15625 2.171875 -4.15625 C 2.359375 -4.15625 2.703125 -4.0625 2.703125 -3.484375 C 2.703125 -3.1875 2.53125 -2.515625 2.171875 -1.140625 C 2 -0.53125 1.65625 -0.109375 1.21875 -0.109375 C 1.171875 -0.109375 0.9375 -0.109375 0.734375 -0.234375 C 0.984375 -0.28125 1.203125 -0.5 1.203125 -0.765625 C 1.203125 -1.03125 0.984375 -1.125 0.828125 -1.125 C 0.53125 -1.125 0.28125 -0.859375 0.28125 -0.546875 C 0.28125 -0.09375 0.78125 0.109375 1.21875 0.109375 C 1.875 0.109375 2.21875 -0.578125 2.25 -0.640625 C 2.375 -0.28125 2.734375 0.109375 3.328125 0.109375 C 4.34375 0.109375 4.90625 -1.171875 4.90625 -1.421875 Z M 4.90625 -1.421875 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 23 27 L 56 27 L 56 58.289062 L 23 58.289062 Z M 23 27 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 100 27 L 121.101562 27 L 121.101562 58.289062 L 100 58.289062 Z M 100 27 "/>
</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 -17.007538 -14.17196 L 17.009655 -14.17196 L 17.009655 14.172421 L -17.007538 14.172421 Z M -17.007538 -14.17196 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="48.233767" y="45.211186"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="54.474091" y="46.694615"/>
<use xlink:href="#glyph1-2" x="58.20526" y="46.694615"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="60.553669" y="46.694615"/>
<use xlink:href="#glyph2-1" x="64.493816" y="46.694615"/>
<use xlink:href="#glyph2-1" x="68.433964" y="46.694615"/>
</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.02801 0.00023036 L -22.141021 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 41.773438 43.234375 L 37.363281 41.566406 L 38.832031 43.234375 L 37.363281 44.90625 Z M 41.773438 43.234375 "/>
<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.053539 0.00023036 L 1.608983 1.68121 L 3.089189 0.00023036 L 1.608983 -1.684686 Z M 6.053539 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,35.766752,43.234604)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="4.779717" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="4.779717" y="22.046872"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="11.370309" y="12.160984"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="16.515178" y="13.643421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="11.614405" y="24.023455"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="16.074615" y="25.505891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="11.501288" y="35.885925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="15.961497" y="37.369354"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="21.069652" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="21.069652" y="22.046872"/>
</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 17.505682 0.00023036 L 55.392671 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 118.707031 43.234375 L 114.296875 41.566406 L 115.761719 43.234375 L 114.296875 44.90625 Z M 118.707031 43.234375 "/>
<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 6.054671 0.00023036 L 1.610115 1.68121 L 3.086384 0.00023036 L 1.610115 -1.684686 Z M 6.054671 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,112.699222,43.234604)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="93.058127" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="93.058127" y="22.046872"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="99.648719" y="12.160984"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="105.298648" y="13.643421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="99.648719" y="24.023455"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="105.298648" y="25.505891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="99.648719" y="35.885925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="105.298648" y="37.369354"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="109.733059" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="109.733059" y="22.046872"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,161 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="122.048pt" height="58.676pt" viewBox="0 0 122.048 58.676" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 5.953125 -6.125 C 6 -6.28125 6 -6.296875 6.078125 -6.296875 C 6.1875 -6.3125 6.328125 -6.3125 6.453125 -6.3125 C 6.703125 -6.3125 6.859375 -6.3125 6.859375 -6.609375 C 6.859375 -6.625 6.859375 -6.78125 6.65625 -6.78125 C 6.453125 -6.78125 6.234375 -6.765625 6.03125 -6.765625 C 5.8125 -6.765625 5.578125 -6.75 5.34375 -6.75 C 4.96875 -6.75 4.015625 -6.78125 3.625 -6.78125 C 3.515625 -6.78125 3.328125 -6.78125 3.328125 -6.5 C 3.328125 -6.3125 3.484375 -6.3125 3.671875 -6.3125 L 4.015625 -6.3125 C 4.40625 -6.3125 4.421875 -6.3125 4.65625 -6.296875 L 3.46875 -1.5 C 3.21875 -0.484375 2.59375 -0.1875 2.140625 -0.1875 C 2.046875 -0.1875 1.625 -0.203125 1.328125 -0.421875 C 1.859375 -0.546875 2.03125 -1.015625 2.03125 -1.28125 C 2.03125 -1.609375 1.765625 -1.84375 1.4375 -1.84375 C 1.03125 -1.84375 0.546875 -1.53125 0.546875 -0.90625 C 0.546875 -0.234375 1.234375 0.171875 2.1875 0.171875 C 3.296875 0.171875 4.484375 -0.28125 4.78125 -1.4375 Z M 5.953125 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 3.109375 -1.078125 C 3.109375 -1.703125 2.421875 -1.828125 2.15625 -1.875 C 2.09375 -1.890625 1.921875 -1.921875 1.875 -1.9375 C 1.625 -1.984375 1.5 -2.125 1.5 -2.28125 C 1.5 -2.4375 1.625 -2.625 1.78125 -2.734375 C 1.96875 -2.84375 2.203125 -2.859375 2.328125 -2.859375 C 2.46875 -2.859375 2.828125 -2.84375 2.984375 -2.609375 C 2.796875 -2.5625 2.6875 -2.421875 2.6875 -2.28125 C 2.6875 -2.125 2.828125 -2.0625 2.921875 -2.0625 C 2.984375 -2.0625 3.25 -2.09375 3.25 -2.453125 C 3.25 -2.90625 2.75 -3.046875 2.328125 -3.046875 C 1.25 -3.046875 1.0625 -2.25 1.0625 -2.046875 C 1.0625 -1.78125 1.203125 -1.625 1.296875 -1.53125 C 1.484375 -1.390625 1.609375 -1.375 2.078125 -1.28125 C 2.234375 -1.265625 2.671875 -1.171875 2.671875 -0.828125 C 2.671875 -0.71875 2.59375 -0.453125 2.3125 -0.28125 C 2.03125 -0.125 1.703125 -0.125 1.609375 -0.125 C 1.328125 -0.125 0.9375 -0.1875 0.78125 -0.421875 C 1.015625 -0.4375 1.15625 -0.609375 1.15625 -0.8125 C 1.15625 -0.984375 1.03125 -1.0625 0.890625 -1.0625 C 0.6875 -1.0625 0.484375 -0.90625 0.484375 -0.609375 C 0.484375 -0.1875 0.9375 0.0625 1.609375 0.0625 C 2.875 0.0625 3.109375 -0.796875 3.109375 -1.078125 Z M 3.109375 -1.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 1.65625 -0.046875 C 1.65625 -0.46875 1.484375 -0.796875 1.171875 -0.796875 C 0.9375 -0.796875 0.78125 -0.609375 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.171875 0 C 1.34375 0 1.453125 -0.109375 1.453125 -0.109375 C 1.453125 0.265625 1.390625 0.71875 0.921875 1.15625 C 0.890625 1.1875 0.875 1.203125 0.875 1.234375 C 0.875 1.28125 0.921875 1.328125 0.96875 1.328125 C 1.0625 1.328125 1.65625 0.78125 1.65625 -0.046875 Z M 1.65625 -0.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 3.453125 -1 C 3.453125 -1.09375 3.375 -1.09375 3.328125 -1.09375 C 3.25 -1.09375 3.234375 -1.0625 3.203125 -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.609375 1.453125 -0.609375 1.328125 -0.609375 C 1.328125 -0.609375 1.203125 -0.609375 1.15625 -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.53125 3.609375 -2.890625 3.609375 -2.96875 C 3.609375 -3.046875 3.515625 -3.046875 3.484375 -3.046875 C 3.421875 -3.046875 3.40625 -3.03125 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.5625 2.453125 -2.765625 C 2.21875 -3 2.0625 -3.046875 1.90625 -3.046875 C 1.34375 -3.046875 0.96875 -2.453125 0.96875 -2.25 C 0.96875 -2.1875 1.046875 -2.15625 1.09375 -2.15625 C 1.171875 -2.15625 1.1875 -2.1875 1.21875 -2.25 C 1.328125 -2.5 1.703125 -2.515625 1.828125 -2.515625 C 1.984375 -2.515625 2.15625 -2.46875 2.25 -2.453125 C 2.640625 -2.375 2.6875 -2.375 2.859375 -2.375 C 2.671875 -2.1875 2.546875 -2.0625 1.890625 -1.53125 C 1.359375 -1.09375 1.171875 -0.921875 1.03125 -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.875 -0.03125 2.015625 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="glyph1-4">
<path style="stroke:none;" d="M 3.84375 -2.609375 C 3.875 -2.703125 3.875 -2.71875 3.875 -2.765625 C 3.875 -2.90625 3.765625 -2.984375 3.640625 -2.984375 C 3.578125 -2.984375 3.4375 -2.953125 3.359375 -2.8125 C 3.34375 -2.78125 3.28125 -2.546875 3.25 -2.421875 L 3.109375 -1.84375 L 2.828125 -0.734375 C 2.828125 -0.734375 2.515625 -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.953125 -2.265625 2 -2.34375 2 -2.46875 C 2 -2.796875 1.703125 -3.046875 1.328125 -3.046875 C 0.640625 -3.046875 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.03125 -2.859375 1.3125 -2.859375 C 1.4375 -2.859375 1.484375 -2.78125 1.484375 -2.609375 C 1.484375 -2.453125 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.359375 1.265625 -0.140625 C 1.46875 0.03125 1.765625 0.0625 1.953125 0.0625 C 2.234375 0.0625 2.484375 -0.03125 2.703125 -0.25 C 2.609375 0.140625 2.546875 0.421875 2.25 0.78125 C 2.0625 0.984375 1.78125 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.796875 C 0.609375 1.15625 0.9375 1.40625 1.421875 1.40625 C 2.125 1.40625 2.96875 0.875 3.1875 0 Z M 3.84375 -2.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 3.875 -0.984375 C 3.875 -1.078125 3.78125 -1.078125 3.765625 -1.078125 C 3.671875 -1.078125 3.65625 -1.046875 3.640625 -0.96875 C 3.484375 -0.484375 3.078125 -0.125 2.6875 -0.125 C 2.40625 -0.125 2.265625 -0.3125 2.265625 -0.578125 C 2.265625 -0.75 2.421875 -1.390625 2.625 -2.15625 C 2.765625 -2.6875 3.078125 -2.859375 3.296875 -2.859375 C 3.296875 -2.859375 3.53125 -2.859375 3.671875 -2.765625 C 3.453125 -2.703125 3.375 -2.5 3.375 -2.375 C 3.375 -2.234375 3.484375 -2.125 3.640625 -2.125 C 3.8125 -2.125 4.03125 -2.25 4.03125 -2.546875 C 4.03125 -2.9375 3.59375 -3.046875 3.3125 -3.046875 C 2.96875 -3.046875 2.6875 -2.828125 2.546875 -2.5625 C 2.421875 -2.84375 2.09375 -3.046875 1.703125 -3.046875 C 0.9375 -3.046875 0.484375 -2.203125 0.484375 -2 C 0.484375 -1.90625 0.59375 -1.90625 0.609375 -1.90625 C 0.703125 -1.90625 0.703125 -1.9375 0.734375 -2.015625 C 0.90625 -2.5625 1.34375 -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.015625 -1.921875 1.953125 -1.6875 L 1.71875 -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.65625 -0.125 1.828125 -0.421875 C 2 -0.0625 2.375 0.0625 2.65625 0.0625 C 3.453125 0.0625 3.875 -0.796875 3.875 -0.984375 Z M 3.875 -0.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.5625 -1.203125 C 3.5625 -1.734375 3.109375 -2.28125 2.359375 -2.4375 C 3.078125 -2.703125 3.34375 -3.21875 3.34375 -3.640625 C 3.34375 -4.1875 2.71875 -4.59375 1.9375 -4.59375 C 1.171875 -4.59375 0.59375 -4.21875 0.59375 -3.671875 C 0.59375 -3.4375 0.734375 -3.296875 0.953125 -3.296875 C 1.15625 -3.296875 1.296875 -3.453125 1.296875 -3.65625 C 1.296875 -3.859375 1.15625 -4 0.953125 -4.015625 C 1.1875 -4.3125 1.671875 -4.390625 1.921875 -4.390625 C 2.234375 -4.390625 2.671875 -4.25 2.671875 -3.640625 C 2.671875 -3.34375 2.578125 -3.03125 2.390625 -2.8125 C 2.171875 -2.546875 1.96875 -2.546875 1.625 -2.515625 C 1.453125 -2.5 1.4375 -2.5 1.40625 -2.5 C 1.40625 -2.5 1.328125 -2.484375 1.328125 -2.40625 C 1.328125 -2.3125 1.390625 -2.3125 1.515625 -2.3125 L 1.890625 -2.3125 C 2.421875 -2.3125 2.8125 -1.9375 2.8125 -1.203125 C 2.8125 -0.34375 2.3125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.734375 -0.5625 C 1.0625 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.171875 0.96875 -1.328125 0.765625 -1.328125 C 0.5625 -1.328125 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.890625 0.140625 3.5625 -0.5 3.5625 -1.203125 Z M 3.5625 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.3125 -0.25 2.3125 -0.34375 2.3125 -0.5625 L 2.3125 -4.40625 C 2.3125 -4.59375 2.3125 -4.59375 2.109375 -4.59375 C 1.671875 -4.15625 1.03125 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.09375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.796875 -0.25 L 0.796875 0 L 2.03125 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 3.5 -1.265625 L 3.265625 -1.265625 C 3.234375 -1.109375 3.171875 -0.703125 3.078125 -0.625 C 3.03125 -0.59375 2.484375 -0.59375 2.390625 -0.59375 L 1.125 -0.59375 C 1.84375 -1.234375 2.09375 -1.421875 2.5 -1.75 C 3.015625 -2.15625 3.5 -2.59375 3.5 -3.25 C 3.5 -4.078125 2.765625 -4.59375 1.875 -4.59375 C 1.015625 -4.59375 0.4375 -4 0.4375 -3.359375 C 0.4375 -3 0.734375 -2.96875 0.796875 -2.96875 C 0.96875 -2.96875 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.453125 1.125 -3.703125 0.765625 -3.703125 C 0.96875 -4.1875 1.453125 -4.34375 1.765625 -4.34375 C 2.46875 -4.34375 2.828125 -3.8125 2.828125 -3.25 C 2.828125 -2.640625 2.390625 -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.28125 0 Z M 3.5 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 6.515625 0.296875 L 6.515625 -0.390625 L 3.21875 -0.390625 L 3.21875 17.40625 L 3.90625 17.40625 L 3.90625 0.296875 Z M 6.515625 0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 6.515625 17.390625 L 6.515625 16.71875 L 3.90625 16.71875 L 3.90625 -0.390625 L 3.21875 -0.390625 L 3.21875 17.390625 Z M 6.515625 17.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 3.359375 17.40625 L 3.359375 -0.390625 L 0.0625 -0.390625 L 0.0625 0.296875 L 2.6875 0.296875 L 2.6875 17.40625 Z M 3.359375 17.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 3.359375 17.390625 L 3.359375 -0.390625 L 2.6875 -0.390625 L 2.6875 16.71875 L 0.0625 16.71875 L 0.0625 17.390625 Z M 3.359375 17.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 4.921875 -1.421875 C 4.921875 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.703125 -1.515625 4.703125 -1.46875 4.671875 -1.328125 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.671875 -1.03125 L 5.109375 -6.75 C 5.109375 -6.75 5.109375 -6.859375 4.96875 -6.859375 C 4.828125 -6.859375 3.890625 -6.78125 3.71875 -6.75 C 3.640625 -6.75 3.578125 -6.703125 3.578125 -6.5625 C 3.578125 -6.453125 3.671875 -6.453125 3.8125 -6.453125 C 4.296875 -6.453125 4.3125 -6.375 4.3125 -6.28125 L 4.28125 -6.078125 L 3.6875 -3.734375 C 3.515625 -4.109375 3.21875 -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.890625 0.109375 C 4.25 0.109375 4.46875 -0.125 4.625 -0.4375 C 4.796875 -0.796875 4.921875 -1.421875 4.921875 -1.421875 Z M 3.546875 -3.109375 L 3.046875 -1.171875 C 3 -1 3 -0.984375 2.84375 -0.8125 C 2.40625 -0.265625 2 -0.109375 1.734375 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.03125 C 1.09375 -1.53125 1.421875 -2.75 1.640625 -3.203125 C 1.953125 -3.78125 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.21875 3.546875 -3.171875 3.546875 -3.109375 Z M 3.546875 -3.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 4.3125 -3.734375 C 4.3125 -4.078125 4 -4.375 3.484375 -4.375 C 2.84375 -4.375 2.40625 -3.890625 2.21875 -3.609375 C 2.140625 -4.0625 1.796875 -4.375 1.328125 -4.375 C 0.875 -4.375 0.6875 -3.984375 0.59375 -3.8125 C 0.421875 -3.46875 0.28125 -2.875 0.28125 -2.84375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.765625 0.578125 -2.984375 C 0.734375 -3.671875 0.9375 -4.15625 1.296875 -4.15625 C 1.46875 -4.15625 1.609375 -4.078125 1.609375 -3.703125 C 1.609375 -3.484375 1.578125 -3.375 1.4375 -2.875 L 0.875 -0.578125 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.0625 0.109375 C 1.1875 0.109375 1.359375 0.03125 1.4375 -0.171875 C 1.453125 -0.203125 1.796875 -1.546875 1.828125 -1.734375 L 2.140625 -3.015625 C 2.1875 -3.140625 2.46875 -3.609375 2.703125 -3.828125 C 2.78125 -3.890625 3.0625 -4.15625 3.484375 -4.15625 C 3.75 -4.15625 3.90625 -4.03125 3.90625 -4.03125 C 3.609375 -3.984375 3.390625 -3.75 3.390625 -3.484375 C 3.390625 -3.328125 3.5 -3.140625 3.765625 -3.140625 C 4.03125 -3.140625 4.3125 -3.375 4.3125 -3.734375 Z M 4.3125 -3.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-3">
<path style="stroke:none;" d="M 4.90625 -1.421875 C 4.90625 -1.515625 4.8125 -1.515625 4.78125 -1.515625 C 4.703125 -1.515625 4.671875 -1.46875 4.65625 -1.40625 C 4.328125 -0.34375 3.65625 -0.109375 3.34375 -0.109375 C 2.953125 -0.109375 2.796875 -0.421875 2.796875 -0.765625 C 2.796875 -0.984375 2.859375 -1.203125 2.96875 -1.625 L 3.296875 -2.984375 C 3.359375 -3.25 3.59375 -4.15625 4.28125 -4.15625 C 4.328125 -4.15625 4.5625 -4.15625 4.78125 -4.03125 C 4.5 -3.96875 4.296875 -3.734375 4.296875 -3.484375 C 4.296875 -3.328125 4.40625 -3.140625 4.671875 -3.140625 C 4.890625 -3.140625 5.21875 -3.328125 5.21875 -3.71875 C 5.21875 -4.234375 4.625 -4.375 4.296875 -4.375 C 3.71875 -4.375 3.375 -3.84375 3.25 -3.625 C 3 -4.265625 2.46875 -4.375 2.1875 -4.375 C 1.15625 -4.375 0.59375 -3.09375 0.59375 -2.84375 C 0.59375 -2.75 0.71875 -2.75 0.71875 -2.75 C 0.796875 -2.75 0.828125 -2.765625 0.84375 -2.859375 C 1.171875 -3.90625 1.828125 -4.15625 2.171875 -4.15625 C 2.359375 -4.15625 2.703125 -4.0625 2.703125 -3.484375 C 2.703125 -3.1875 2.53125 -2.515625 2.171875 -1.140625 C 2 -0.53125 1.65625 -0.109375 1.21875 -0.109375 C 1.171875 -0.109375 0.9375 -0.109375 0.734375 -0.234375 C 0.984375 -0.28125 1.203125 -0.5 1.203125 -0.765625 C 1.203125 -1.03125 0.984375 -1.125 0.828125 -1.125 C 0.53125 -1.125 0.28125 -0.859375 0.28125 -0.546875 C 0.28125 -0.09375 0.78125 0.109375 1.21875 0.109375 C 1.875 0.109375 2.21875 -0.578125 2.25 -0.640625 C 2.375 -0.28125 2.734375 0.109375 3.328125 0.109375 C 4.34375 0.109375 4.90625 -1.171875 4.90625 -1.421875 Z M 4.90625 -1.421875 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 23 27 L 56 27 L 56 58.289062 L 23 58.289062 Z M 23 27 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 100 27 L 121.101562 27 L 121.101562 58.289062 L 100 58.289062 Z M 100 27 "/>
</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 -17.007538 -14.17196 L 17.009655 -14.17196 L 17.009655 14.172421 L -17.007538 14.172421 Z M -17.007538 -14.17196 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="48.233767" y="45.211186"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="54.474091" y="46.694615"/>
<use xlink:href="#glyph1-2" x="58.20526" y="46.694615"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="60.553669" y="46.694615"/>
<use xlink:href="#glyph2-2" x="64.493816" y="46.694615"/>
<use xlink:href="#glyph2-2" x="68.433964" y="46.694615"/>
</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.02801 0.00023036 L -22.141021 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 41.773438 43.234375 L 37.363281 41.566406 L 38.832031 43.234375 L 37.363281 44.90625 Z M 41.773438 43.234375 "/>
<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.053539 0.00023036 L 1.608983 1.68121 L 3.089189 0.00023036 L 1.608983 -1.684686 Z M 6.053539 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,35.766752,43.234604)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="4.779717" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="4.779717" y="22.046872"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="11.370309" y="12.160984"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="16.515178" y="13.643421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="11.614405" y="24.023455"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="16.074615" y="25.505891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-2" x="11.501288" y="35.885925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="15.961497" y="37.369354"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="21.069652" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="21.069652" y="22.046872"/>
</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 17.505682 0.00023036 L 55.392671 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,60.551684,43.234604)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 118.707031 43.234375 L 114.296875 41.566406 L 115.761719 43.234375 L 114.296875 44.90625 Z M 118.707031 43.234375 "/>
<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 6.054671 0.00023036 L 1.610115 1.68121 L 3.086384 0.00023036 L 1.610115 -1.684686 Z M 6.054671 0.00023036 " transform="matrix(0.99226,0,0,-0.99226,112.699222,43.234604)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="93.058127" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="93.058127" y="22.046872"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="99.648719" y="12.160984"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="105.298648" y="13.643421"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="99.648719" y="24.023455"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="105.298648" y="25.505891"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-3" x="99.648719" y="35.885925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="105.298648" y="37.369354"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="109.733059" y="4.252671"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="109.733059" y="22.046872"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 6.5 KiB

View File

@ -71,117 +71,114 @@
<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 -212.60266 -49.606943 L -212.60266 49.608032 L 212.601575 49.608032 L 212.601575 -49.606943 Z M -212.60266 -49.606943 " transform="matrix(0.996534,0,0,-0.996534,213.1939,51.14312)"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 17.441406 8.769531 C 17.441406 7.671875 16.550781 6.785156 15.453125 6.785156 C 14.355469 6.785156 13.46875 7.671875 13.46875 8.769531 C 13.46875 9.867188 14.355469 10.757812 15.453125 10.757812 C 16.550781 10.757812 17.441406 9.867188 17.441406 8.769531 Z M 17.441406 8.769531 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 215.179688 93.515625 C 215.179688 92.417969 214.289062 91.53125 213.195312 91.53125 C 212.097656 91.53125 211.207031 92.417969 211.207031 93.515625 C 211.207031 94.613281 212.097656 95.5 213.195312 95.5 C 214.289062 95.5 215.179688 94.613281 215.179688 93.515625 Z M 215.179688 93.515625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 412.917969 8.769531 C 412.917969 7.671875 412.03125 6.785156 410.933594 6.785156 C 409.835938 6.785156 408.949219 7.671875 408.949219 8.769531 C 408.949219 9.867188 409.835938 10.757812 410.933594 10.757812 C 412.03125 10.757812 412.917969 9.867188 412.917969 8.769531 Z M 412.917969 8.769531 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 17.441406 93.515625 C 17.441406 92.417969 16.550781 91.53125 15.453125 91.53125 C 14.355469 91.53125 13.46875 92.417969 13.46875 93.515625 C 13.46875 94.613281 14.355469 95.5 15.453125 95.5 C 16.550781 95.5 17.441406 94.613281 17.441406 93.515625 Z M 17.441406 93.515625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 215.179688 8.769531 C 215.179688 7.671875 214.289062 6.785156 213.195312 6.785156 C 212.097656 6.785156 211.207031 7.671875 211.207031 8.769531 C 211.207031 9.867188 212.097656 10.757812 213.195312 10.757812 C 214.289062 10.757812 215.179688 9.867188 215.179688 8.769531 Z M 215.179688 8.769531 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 412.917969 93.515625 C 412.917969 92.417969 412.03125 91.53125 410.933594 91.53125 C 409.835938 91.53125 408.949219 92.417969 408.949219 93.515625 C 408.949219 94.613281 409.835938 95.5 410.933594 95.5 C 412.03125 95.5 412.917969 94.613281 412.917969 93.515625 Z M 412.917969 93.515625 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.262408" y="11.252862"/>
<use xlink:href="#glyph0-1" x="19.262408" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="27.165919" y="12.74268"/>
<use xlink:href="#glyph1-1" x="27.165919" y="97.486933"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="34.377836" y="11.252862"/>
<use xlink:href="#glyph2-1" x="34.377836" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="44.859892" y="11.252862"/>
<use xlink:href="#glyph2-2" x="44.859892" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="48.718956" y="11.252862"/>
<use xlink:href="#glyph0-2" x="48.718956" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="56.440102" y="11.252862"/>
<use xlink:href="#glyph2-3" x="56.440102" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="61.404834" y="11.252862"/>
<use xlink:href="#glyph3-1" x="61.404834" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="64.162243" y="11.252862"/>
<use xlink:href="#glyph2-4" x="69.126278" y="11.252862"/>
<use xlink:href="#glyph2-3" x="64.162243" y="95.998111"/>
<use xlink:href="#glyph2-4" x="69.126278" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="74.090712" y="11.252862"/>
<use xlink:href="#glyph3-2" x="74.090712" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="78.503364" y="11.252862"/>
<use xlink:href="#glyph2-3" x="78.503364" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="86.224509" y="11.252862"/>
<use xlink:href="#glyph3-1" x="83.4671" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="91.189242" y="11.252862"/>
<use xlink:href="#glyph2-3" x="86.224509" y="95.998111"/>
<use xlink:href="#glyph2-5" x="91.188544" y="95.998111"/>
<use xlink:href="#glyph2-6" x="96.152579" y="95.998111"/>
<use xlink:href="#glyph2-7" x="101.116613" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="93.946651" y="11.252862"/>
<use xlink:href="#glyph2-5" x="98.910686" y="11.252862"/>
<use xlink:href="#glyph2-6" x="103.874721" y="11.252862"/>
<use xlink:href="#glyph2-7" x="108.838755" y="11.252862"/>
<use xlink:href="#glyph0-1" x="216.999664" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="216.999664" y="95.998111"/>
<use xlink:href="#glyph1-2" x="224.903175" y="12.74268"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="224.903175" y="97.486933"/>
<use xlink:href="#glyph2-1" x="232.115091" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="232.115091" y="95.998111"/>
<use xlink:href="#glyph2-2" x="242.597147" y="11.252862"/>
<use xlink:href="#glyph2-3" x="246.458173" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="242.597147" y="95.998111"/>
<use xlink:href="#glyph2-3" x="246.458173" y="95.998111"/>
<use xlink:href="#glyph3-2" x="251.419947" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="251.419947" y="95.998111"/>
<use xlink:href="#glyph0-2" x="255.8326" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="255.8326" y="95.998111"/>
<use xlink:href="#glyph2-3" x="263.554742" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="260.796335" y="95.998111"/>
<use xlink:href="#glyph3-1" x="268.518477" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="263.554742" y="95.998111"/>
<use xlink:href="#glyph2-5" x="268.518776" y="95.998111"/>
<use xlink:href="#glyph2-6" x="273.482811" y="95.998111"/>
<use xlink:href="#glyph2-7" x="278.446846" y="95.998111"/>
<use xlink:href="#glyph2-3" x="271.275887" y="11.252862"/>
<use xlink:href="#glyph2-5" x="276.239922" y="11.252862"/>
<use xlink:href="#glyph2-6" x="281.203956" y="11.252862"/>
<use xlink:href="#glyph2-7" x="286.167991" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="321.410515" y="11.252862"/>
<use xlink:href="#glyph0-1" x="329.132657" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="329.314026" y="12.74268"/>
<use xlink:href="#glyph1-3" x="337.036168" y="97.486933"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="336.525942" y="11.252862"/>
<use xlink:href="#glyph2-1" x="344.248084" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="347.007998" y="11.252862"/>
<use xlink:href="#glyph2-3" x="350.869024" y="11.252862"/>
<use xlink:href="#glyph2-2" x="354.73014" y="95.998111"/>
<use xlink:href="#glyph2-3" x="358.591166" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="355.830799" y="11.252862"/>
<use xlink:href="#glyph3-1" x="363.55294" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="358.588208" y="11.252862"/>
<use xlink:href="#glyph2-4" x="363.552243" y="11.252862"/>
<use xlink:href="#glyph2-3" x="366.31035" y="95.998111"/>
<use xlink:href="#glyph2-4" x="371.274385" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="368.516676" y="11.252862"/>
<use xlink:href="#glyph3-2" x="376.238818" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="372.929329" y="11.252862"/>
<use xlink:href="#glyph2-3" x="380.65147" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="380.65147" y="11.252862"/>
<use xlink:href="#glyph3-1" x="385.615206" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="385.615206" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="388.372616" y="11.252862"/>
<use xlink:href="#glyph2-5" x="393.33665" y="11.252862"/>
<use xlink:href="#glyph2-6" x="398.300685" y="11.252862"/>
<use xlink:href="#glyph2-7" x="403.26472" y="11.252862"/>
<use xlink:href="#glyph2-3" x="388.372616" y="95.998111"/>
<use xlink:href="#glyph2-5" x="393.33665" y="95.998111"/>
<use xlink:href="#glyph2-6" x="398.300685" y="95.998111"/>
<use xlink:href="#glyph2-7" x="403.26472" y="95.998111"/>
</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 0.00141714 -0.00141574 L 23.712506 -0.00141574 " transform="matrix(0.996534,0,0,-0.996534,213.1939,51.14312)"/>
<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.052042 -0.00141574 L 1.606948 1.684114 L 3.088646 -0.00141574 L 1.606948 -1.683025 Z M 6.052042 -0.00141574 " transform="matrix(0.996534,0,0,-0.996534,233.996278,51.14312)"/>

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

View File

@ -0,0 +1,206 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="427.193pt" height="102.643pt" viewBox="0 0 427.193 102.643" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 7.703125 -4.78125 C 7.703125 -6.125 7.078125 -7 5.953125 -7 C 4.875 -7 4.015625 -6.125 3.984375 -6.109375 C 3.15625 -5.296875 2.875 -4.4375 2.875 -4.40625 C 2.875 -4.34375 2.921875 -4.328125 2.96875 -4.328125 C 3.140625 -4.328125 3.390625 -4.484375 3.390625 -4.484375 C 3.640625 -4.640625 3.671875 -4.703125 3.75 -4.90625 C 3.984375 -5.421875 4.203125 -5.75 4.421875 -6 C 4.703125 -6.3125 4.90625 -6.453125 5.296875 -6.453125 C 6.21875 -6.453125 6.859375 -5.6875 6.859375 -4.359375 C 6.859375 -2.359375 5.453125 -0.328125 3.578125 -0.328125 C 2.1875 -0.328125 1.40625 -1.4375 1.40625 -2.875 C 1.40625 -3.65625 1.671875 -5.46875 3.625 -6.59375 C 3.765625 -6.671875 3.953125 -6.828125 3.953125 -6.921875 C 3.953125 -7 3.875 -7 3.84375 -7 C 3.515625 -7 0.5625 -5.421875 0.5625 -2.4375 C 0.5625 -0.984375 1.34375 0.21875 2.921875 0.21875 C 4.875 0.21875 7.703125 -1.734375 7.703125 -4.78125 Z M 7.703125 -4.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 6.890625 -2.484375 C 6.890625 -2.671875 6.703125 -2.671875 6.5625 -2.671875 L 1.15625 -2.671875 C 1.015625 -2.671875 0.828125 -2.671875 0.828125 -2.484375 C 0.828125 -2.28125 1.015625 -2.28125 1.15625 -2.28125 L 6.5625 -2.28125 C 6.703125 -2.28125 6.890625 -2.28125 6.890625 -2.484375 Z M 6.890625 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.25 -1.109375 3.1875 -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.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.59375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.609375 1.890625 -4.609375 C 1.015625 -4.609375 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.015625 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.484375 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.21875 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.171875 2.1875 -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.515625 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 3.578125 -1.203125 C 3.578125 -1.75 3.125 -2.28125 2.359375 -2.453125 C 3.09375 -2.71875 3.359375 -3.234375 3.359375 -3.65625 C 3.359375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.1875 -4.609375 0.59375 -4.234375 0.59375 -3.6875 C 0.59375 -3.453125 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.3125 -3.484375 1.3125 -3.671875 C 1.3125 -3.875 1.171875 -4.015625 0.953125 -4.03125 C 1.203125 -4.34375 1.671875 -4.421875 1.9375 -4.421875 C 2.25 -4.421875 2.6875 -4.265625 2.6875 -3.65625 C 2.6875 -3.359375 2.59375 -3.046875 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.640625 -2.53125 C 1.453125 -2.515625 1.453125 -2.515625 1.40625 -2.515625 C 1.40625 -2.515625 1.34375 -2.5 1.34375 -2.421875 C 1.34375 -2.328125 1.40625 -2.328125 1.515625 -2.328125 L 1.890625 -2.328125 C 2.4375 -2.328125 2.828125 -1.953125 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.078125 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.1875 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.578125 -0.5 3.578125 -1.203125 Z M 3.578125 -1.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 7.15625 -3.4375 C 7.15625 -3.640625 6.96875 -3.640625 6.828125 -3.640625 L 0.890625 -3.640625 C 0.75 -3.640625 0.5625 -3.640625 0.5625 -3.4375 C 0.5625 -3.25 0.75 -3.25 0.890625 -3.25 L 6.8125 -3.25 C 6.96875 -3.25 7.15625 -3.25 7.15625 -3.4375 Z M 7.15625 -1.515625 C 7.15625 -1.71875 6.96875 -1.71875 6.8125 -1.71875 L 0.890625 -1.71875 C 0.75 -1.71875 0.5625 -1.71875 0.5625 -1.515625 C 0.5625 -1.3125 0.75 -1.3125 0.890625 -1.3125 L 6.828125 -1.3125 C 6.96875 -1.3125 7.15625 -1.3125 7.15625 -1.515625 Z M 7.15625 -1.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.28125 2.375 C 3.28125 2.34375 3.28125 2.328125 3.109375 2.15625 C 1.875 0.90625 1.5625 -0.96875 1.5625 -2.484375 C 1.5625 -4.203125 1.9375 -5.9375 3.15625 -7.171875 C 3.28125 -7.296875 3.28125 -7.3125 3.28125 -7.34375 C 3.28125 -7.40625 3.25 -7.4375 3.1875 -7.4375 C 3.078125 -7.4375 2.1875 -6.765625 1.609375 -5.5 C 1.09375 -4.421875 0.984375 -3.3125 0.984375 -2.484375 C 0.984375 -1.703125 1.09375 -0.5 1.640625 0.609375 C 2.234375 1.828125 3.078125 2.484375 3.1875 2.484375 C 3.25 2.484375 3.28125 2.453125 3.28125 2.375 Z M 3.28125 2.375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 4.5625 -3.171875 C 4.5625 -3.96875 4.515625 -4.765625 4.171875 -5.5 C 3.703125 -6.453125 2.890625 -6.609375 2.484375 -6.609375 C 1.890625 -6.609375 1.15625 -6.34375 0.75 -5.421875 C 0.4375 -4.75 0.390625 -3.96875 0.390625 -3.171875 C 0.390625 -2.4375 0.421875 -1.53125 0.828125 -0.78125 C 1.265625 0.015625 1.984375 0.21875 2.46875 0.21875 C 3 0.21875 3.765625 0.015625 4.203125 -0.9375 C 4.515625 -1.625 4.5625 -2.390625 4.5625 -3.171875 Z M 3.734375 -3.296875 C 3.734375 -2.546875 3.734375 -1.875 3.625 -1.234375 C 3.484375 -0.296875 2.921875 0 2.46875 0 C 2.078125 0 1.5 -0.25 1.3125 -1.203125 C 1.203125 -1.796875 1.203125 -2.703125 1.203125 -3.296875 C 1.203125 -3.921875 1.203125 -4.578125 1.296875 -5.125 C 1.484375 -6.296875 2.21875 -6.390625 2.46875 -6.390625 C 2.796875 -6.390625 3.453125 -6.21875 3.640625 -5.234375 C 3.734375 -4.671875 3.734375 -3.921875 3.734375 -3.296875 Z M 3.734375 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 4.8125 -6.390625 L 2.40625 -6.390625 C 1.1875 -6.390625 1.171875 -6.515625 1.125 -6.703125 L 0.890625 -6.703125 L 0.5625 -4.65625 L 0.796875 -4.65625 C 0.828125 -4.828125 0.921875 -5.453125 1.046875 -5.5625 C 1.125 -5.625 1.890625 -5.625 2.03125 -5.625 L 4.078125 -5.625 L 2.96875 -4.0625 C 2.078125 -2.71875 1.75 -1.34375 1.75 -0.328125 C 1.75 -0.234375 1.75 0.21875 2.203125 0.21875 C 2.65625 0.21875 2.65625 -0.234375 2.65625 -0.328125 L 2.65625 -0.828125 C 2.65625 -1.375 2.6875 -1.921875 2.765625 -2.453125 C 2.8125 -2.6875 2.953125 -3.546875 3.390625 -4.15625 L 4.71875 -6.046875 C 4.8125 -6.15625 4.8125 -6.1875 4.8125 -6.390625 Z M 4.8125 -6.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 4.15625 0 L 4.15625 -0.3125 L 3.84375 -0.3125 C 2.953125 -0.3125 2.921875 -0.421875 2.921875 -0.78125 L 2.921875 -6.34375 C 2.921875 -6.59375 2.921875 -6.609375 2.6875 -6.609375 C 2.078125 -5.96875 1.203125 -5.96875 0.890625 -5.96875 L 0.890625 -5.671875 C 1.078125 -5.671875 1.671875 -5.671875 2.1875 -5.921875 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.296875 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.953125 -0.03125 3.8125 -0.03125 4.15625 0 Z M 4.15625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 4.453125 -2 C 4.453125 -3.171875 3.640625 -4.171875 2.5625 -4.171875 C 2.09375 -4.171875 1.671875 -4.015625 1.3125 -3.65625 L 1.3125 -5.59375 C 1.515625 -5.53125 1.828125 -5.46875 2.15625 -5.46875 C 3.375 -5.46875 4.0625 -6.375 4.0625 -6.5 C 4.0625 -6.5625 4.03125 -6.609375 3.96875 -6.609375 C 3.96875 -6.609375 3.9375 -6.609375 3.890625 -6.578125 C 3.6875 -6.484375 3.203125 -6.296875 2.546875 -6.296875 C 2.140625 -6.296875 1.6875 -6.359375 1.21875 -6.5625 C 1.140625 -6.59375 1.09375 -6.59375 1.09375 -6.59375 C 1 -6.59375 1 -6.515625 1 -6.359375 L 1 -3.421875 C 1 -3.25 1 -3.171875 1.140625 -3.171875 C 1.203125 -3.171875 1.234375 -3.1875 1.265625 -3.25 C 1.375 -3.40625 1.75 -3.953125 2.546875 -3.953125 C 3.0625 -3.953125 3.3125 -3.5 3.390625 -3.3125 C 3.546875 -2.953125 3.578125 -2.5625 3.578125 -2.0625 C 3.578125 -1.71875 3.578125 -1.125 3.328125 -0.703125 C 3.09375 -0.3125 2.734375 -0.0625 2.265625 -0.0625 C 1.546875 -0.0625 0.984375 -0.578125 0.8125 -1.171875 C 0.84375 -1.15625 0.875 -1.15625 0.984375 -1.15625 C 1.3125 -1.15625 1.484375 -1.40625 1.484375 -1.640625 C 1.484375 -1.875 1.3125 -2.125 0.984375 -2.125 C 0.84375 -2.125 0.5 -2.046875 0.5 -1.59375 C 0.5 -0.75 1.1875 0.21875 2.296875 0.21875 C 3.4375 0.21875 4.453125 -0.734375 4.453125 -2 Z M 4.453125 -2 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 2.875 -2.484375 C 2.875 -3.25 2.765625 -4.453125 2.21875 -5.578125 C 1.625 -6.796875 0.765625 -7.4375 0.671875 -7.4375 C 0.609375 -7.4375 0.5625 -7.40625 0.5625 -7.34375 C 0.5625 -7.3125 0.5625 -7.296875 0.75 -7.109375 C 1.71875 -6.125 2.296875 -4.546875 2.296875 -2.484375 C 2.296875 -0.78125 1.921875 0.96875 0.6875 2.21875 C 0.5625 2.328125 0.5625 2.34375 0.5625 2.375 C 0.5625 2.4375 0.609375 2.484375 0.671875 2.484375 C 0.765625 2.484375 1.65625 1.8125 2.25 0.546875 C 2.75 -0.546875 2.875 -1.640625 2.875 -2.484375 Z M 2.875 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.046875 1.375 -1.046875 C 1.09375 -1.046875 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.375 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 2.015625 -0.015625 C 2.015625 -0.671875 1.765625 -1.046875 1.375 -1.046875 C 1.046875 -1.046875 0.859375 -0.796875 0.859375 -0.53125 C 0.859375 -0.265625 1.046875 0 1.375 0 C 1.5 0 1.625 -0.046875 1.71875 -0.125 C 1.75 -0.15625 1.78125 -0.15625 1.78125 -0.15625 C 1.78125 -0.15625 1.796875 -0.15625 1.796875 -0.015625 C 1.796875 0.71875 1.453125 1.3125 1.125 1.640625 C 1.015625 1.75 1.015625 1.78125 1.015625 1.8125 C 1.015625 1.875 1.0625 1.921875 1.109375 1.921875 C 1.21875 1.921875 2.015625 1.15625 2.015625 -0.015625 Z M 2.015625 -0.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 4.921875 -1.421875 C 4.921875 -1.515625 4.828125 -1.515625 4.796875 -1.515625 C 4.71875 -1.515625 4.6875 -1.484375 4.671875 -1.40625 C 4.34375 -0.34375 3.671875 -0.109375 3.359375 -0.109375 C 2.96875 -0.109375 2.8125 -0.421875 2.8125 -0.765625 C 2.8125 -0.984375 2.875 -1.203125 2.96875 -1.640625 L 3.3125 -3 C 3.375 -3.25 3.609375 -4.171875 4.296875 -4.171875 C 4.34375 -4.171875 4.578125 -4.171875 4.796875 -4.03125 C 4.515625 -3.984375 4.3125 -3.734375 4.3125 -3.5 C 4.3125 -3.34375 4.421875 -3.15625 4.6875 -3.15625 C 4.90625 -3.15625 5.234375 -3.328125 5.234375 -3.734375 C 5.234375 -4.25 4.640625 -4.390625 4.3125 -4.390625 C 3.734375 -4.390625 3.390625 -3.859375 3.265625 -3.625 C 3.015625 -4.28125 2.484375 -4.390625 2.1875 -4.390625 C 1.15625 -4.390625 0.59375 -3.109375 0.59375 -2.859375 C 0.59375 -2.765625 0.71875 -2.765625 0.71875 -2.765625 C 0.796875 -2.765625 0.828125 -2.78125 0.84375 -2.875 C 1.1875 -3.921875 1.828125 -4.171875 2.171875 -4.171875 C 2.359375 -4.171875 2.703125 -4.078125 2.703125 -3.5 C 2.703125 -3.1875 2.546875 -2.53125 2.171875 -1.140625 C 2.015625 -0.53125 1.671875 -0.109375 1.234375 -0.109375 C 1.171875 -0.109375 0.9375 -0.109375 0.734375 -0.234375 C 0.984375 -0.28125 1.203125 -0.5 1.203125 -0.78125 C 1.203125 -1.046875 0.984375 -1.125 0.828125 -1.125 C 0.53125 -1.125 0.28125 -0.859375 0.28125 -0.546875 C 0.28125 -0.09375 0.78125 0.109375 1.21875 0.109375 C 1.875 0.109375 2.234375 -0.578125 2.265625 -0.640625 C 2.375 -0.28125 2.734375 0.109375 3.328125 0.109375 C 4.359375 0.109375 4.921875 -1.171875 4.921875 -1.421875 Z M 4.921875 -1.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 4.828125 -3.78125 C 4.859375 -3.921875 4.859375 -3.9375 4.859375 -4.015625 C 4.859375 -4.1875 4.71875 -4.28125 4.578125 -4.28125 C 4.46875 -4.28125 4.3125 -4.21875 4.234375 -4.0625 C 4.203125 -4.015625 4.125 -3.703125 4.09375 -3.53125 L 3.890625 -2.734375 L 3.4375 -0.953125 C 3.40625 -0.796875 2.96875 -0.109375 2.328125 -0.109375 C 1.8125 -0.109375 1.703125 -0.546875 1.703125 -0.90625 C 1.703125 -1.375 1.875 -1.984375 2.21875 -2.859375 C 2.375 -3.265625 2.40625 -3.375 2.40625 -3.578125 C 2.40625 -4.015625 2.09375 -4.390625 1.59375 -4.390625 C 0.65625 -4.390625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.9375 C 0.828125 -3.875 1.234375 -4.171875 1.5625 -4.171875 C 1.640625 -4.171875 1.8125 -4.171875 1.8125 -3.84375 C 1.8125 -3.609375 1.71875 -3.34375 1.640625 -3.15625 C 1.25 -2.109375 1.078125 -1.53125 1.078125 -1.078125 C 1.078125 -0.1875 1.703125 0.109375 2.28125 0.109375 C 2.671875 0.109375 3 -0.0625 3.28125 -0.34375 C 3.15625 0.171875 3.03125 0.671875 2.640625 1.1875 C 2.375 1.53125 2 1.8125 1.546875 1.8125 C 1.40625 1.8125 0.96875 1.78125 0.796875 1.40625 C 0.953125 1.40625 1.078125 1.40625 1.21875 1.28125 C 1.3125 1.1875 1.421875 1.0625 1.421875 0.875 C 1.421875 0.5625 1.15625 0.53125 1.046875 0.53125 C 0.828125 0.53125 0.5 0.6875 0.5 1.171875 C 0.5 1.671875 0.9375 2.03125 1.546875 2.03125 C 2.5625 2.03125 3.59375 1.125 3.875 0.015625 Z M 4.828125 -3.78125 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 0.339844 1 L 426 1 L 426 102 L 0.339844 102 Z M 0.339844 1 "/>
</clipPath>
</defs>
<g id="surface1">
<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 -212.60266 -49.606943 L -212.60266 49.608032 L 212.601575 49.608032 L 212.601575 -49.606943 Z M -212.60266 -49.606943 " transform="matrix(0.996534,0,0,-0.996534,213.1939,51.14312)"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 17.441406 8.769531 C 17.441406 7.671875 16.550781 6.785156 15.453125 6.785156 C 14.355469 6.785156 13.46875 7.671875 13.46875 8.769531 C 13.46875 9.867188 14.355469 10.757812 15.453125 10.757812 C 16.550781 10.757812 17.441406 9.867188 17.441406 8.769531 Z M 17.441406 8.769531 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 215.179688 93.515625 C 215.179688 92.417969 214.289062 91.53125 213.195312 91.53125 C 212.097656 91.53125 211.207031 92.417969 211.207031 93.515625 C 211.207031 94.613281 212.097656 95.5 213.195312 95.5 C 214.289062 95.5 215.179688 94.613281 215.179688 93.515625 Z M 215.179688 93.515625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 412.917969 8.769531 C 412.917969 7.671875 412.03125 6.785156 410.933594 6.785156 C 409.835938 6.785156 408.949219 7.671875 408.949219 8.769531 C 408.949219 9.867188 409.835938 10.757812 410.933594 10.757812 C 412.03125 10.757812 412.917969 9.867188 412.917969 8.769531 Z M 412.917969 8.769531 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="19.262408" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="27.165919" y="12.74268"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="34.377836" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="44.859892" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="48.718956" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="56.440102" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="61.404834" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="64.162243" y="11.252862"/>
<use xlink:href="#glyph2-4" x="69.126278" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="74.090712" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="78.503364" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="86.224509" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="91.189242" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="93.946651" y="11.252862"/>
<use xlink:href="#glyph2-5" x="98.910686" y="11.252862"/>
<use xlink:href="#glyph2-6" x="103.874721" y="11.252862"/>
<use xlink:href="#glyph2-7" x="108.838755" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="216.999664" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="224.903175" y="97.486933"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="232.115091" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="242.597147" y="95.998111"/>
<use xlink:href="#glyph2-3" x="246.458173" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="251.419947" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="255.8326" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="260.796335" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="263.554742" y="95.998111"/>
<use xlink:href="#glyph2-5" x="268.518776" y="95.998111"/>
<use xlink:href="#glyph2-6" x="273.482811" y="95.998111"/>
<use xlink:href="#glyph2-7" x="278.446846" y="95.998111"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="321.410515" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="329.314026" y="12.74268"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="336.525942" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="347.007998" y="11.252862"/>
<use xlink:href="#glyph2-3" x="350.869024" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="355.830799" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="358.588208" y="11.252862"/>
<use xlink:href="#glyph2-4" x="363.552243" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="368.516676" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="372.929329" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="380.65147" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="385.615206" y="11.252862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="388.372616" y="11.252862"/>
<use xlink:href="#glyph2-5" x="393.33665" y="11.252862"/>
<use xlink:href="#glyph2-6" x="398.300685" y="11.252862"/>
<use xlink:href="#glyph2-7" x="403.26472" y="11.252862"/>
</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 0.00141714 -0.00141574 L 23.712506 -0.00141574 " transform="matrix(0.996534,0,0,-0.996534,213.1939,51.14312)"/>
<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.052042 -0.00141574 L 1.606948 1.684114 L 3.088646 -0.00141574 L 1.606948 -1.683025 Z M 6.052042 -0.00141574 " transform="matrix(0.996534,0,0,-0.996534,233.996278,51.14312)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="245.248412" y="53.280686"/>
</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 0.00141714 -0.00141574 L 0.00141714 -23.712505 " transform="matrix(0.996534,0,0,-0.996534,213.1939,51.14312)"/>
<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.052041 0.00141714 L 1.606947 1.683027 L 3.088645 0.00141714 L 1.606947 -1.684112 Z M 6.052041 0.00141714 " transform="matrix(0,0.996534,0.996534,0,213.1939,71.945498)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="210.581985" y="87.471767"/>
</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 1.416478 -0.00141574 C 1.416478 0.782552 0.781465 1.417565 0.00141714 1.417565 C -0.78255 1.417565 -1.417564 0.782552 -1.417564 -0.00141574 C -1.417564 -0.781463 -0.78255 -1.416477 0.00141714 -1.416477 C 0.781465 -1.416477 1.416478 -0.781463 1.416478 -0.00141574 Z M 1.416478 -0.00141574 " transform="matrix(0.996534,0,0,-0.996534,213.1939,51.14312)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="189.116643" y="53.790911"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="197.020154" y="55.28073"/>
<use xlink:href="#glyph1-1" x="200.977272" y="55.28073"/>
<use xlink:href="#glyph1-1" x="204.934391" y="55.28073"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.