diff --git a/Documentation/debugger.rst b/Documentation/debugger.rst
new file mode 100644
index 0000000000000000000000000000000000000000..10818291bde26eef8ded420972a2cf2222259f5b
--- /dev/null
+++ b/Documentation/debugger.rst
@@ -0,0 +1,94 @@
+.. _debugger:
+
+Debugger
+========
+If you have one of our debuggers for card10, this page details how you can use
+it.  The debugger looks like either one in the following pictures:
+
+.. todo::
+
+   Debugger Picture
+
+OpenOCD
+-------
+For debugging card10, you need our `own fork`_ of OpenOCD.  It contains a patch
+which allows flashing both flash-banks instead of just one.  Install it using
+the following commands:
+
+.. _own fork: https://git.card10.badge.events.ccc.de/card10/openocd
+
+.. code-block:: shell-session
+
+   $ git clone https://git.card10.badge.events.ccc.de/card10/openocd.git
+   $ cd openocd
+
+   $ git submodule update --init
+   $ ./bootstrap
+   $ ./configure --disable-werror
+   $ make -j8
+
+Make sure ``CMSIS-DAP Compliant Debugger`` is set to **yes (auto)** after
+running ``./configure`` (if it is not, you might need to install libusb).  If
+you get errors making the documentation you can ``touch doc/openocd.info`` to
+skip it and continue with ``make``.
+
+Please run ``make install`` after removing any already installed OpenOCD
+version. Otherwise please always specify the full path to OpenOCD (the binary
+is under ``src/openocd``).
+
+GDB (``arm-none-eabi-gdb``)
+---------------------------
+Apart from OpenOCD you also need ``arm-none-eabi-gdb``.  You should install
+that package from your distros repositories:
+
+* Ubuntu: ``gdb-arm-none-eabi``
+* Arch: ``arm-none-eabi-gdb``
+
+Debugging
+---------
+First of all, you need to connect your debugger and card10.  There are three
+connections that you need (take a look at the above diagram for more info):
+
+* ``HDK``: This connection provides debugging (SWD) and UART.
+* ``DEV``: This connection provides power (battery charger) and the native USB
+  connection (bootloader).
+* ``USB-C``: Connect the proved USB-C cable with the side which has the blue
+  dot, so the blue dots have the same side.
+
+Run OpenOCD from the ``openocd/scripts`` directory in the firmware repository.
+Call it as ``openocd -f interface/cmsis-dap.cfg -f target/max32665.cfg``.  If
+the debugger and card10 are connected correctly, you should see the following
+output:
+
+.. code-block:: shell-session
+
+   $ openocd -f interface/cmsis-dap.cfg -f target/max32665.cfg
+   Info : CMSIS-DAP: SWD  Supported
+   Info : CMSIS-DAP: FW Version = 1.0
+   Info : CMSIS-DAP: Interface Initialised (SWD)
+   Info : SWCLK/TCK = 0 SWDIO/TMS = 1 TDI = 0 TDO = 0 nTRST = 0 nRESET = 1
+   Info : CMSIS-DAP: Interface ready
+   Info : clock speed 2000 kHz
+   Info : SWD DPIDR 0x2ba01477
+   Info : max32xxx.cpu: hardware has 6 breakpoints, 4 watchpoints
+   Info : Listening on port 3333 for gdb connections
+
+Next, start *gdb* in parallel and connect it to OpenOCD.  You can do this easily
+if you run gdb from the firmware repository root where we have provided a
+``.gdbinit`` file.  Apart from automatically connecting to OpenOCD, this script
+file also defines a ``reset`` command to soft-reset card10.
+
+.. code-block:: shell-session
+
+   $ arm-none-eabi-gdb build/hw-tests/hello-world/hello-world.elf
+   ...
+   (gdb)
+
+You are now connected to card10 and ready to start debugging!  If card10 is
+still running, stop it using
+
+.. code-block:: text
+
+   (gdb) mon reset halt
+
+Following that, you can debug as you would normally.
diff --git a/Documentation/epicardium/api.rst b/Documentation/epicardium/api.rst
index 5394eefeca79e020d779800dd13f657c3d253dad..4f40a79a26b7eacb2735233fdf5581db82bc1afc 100644
--- a/Documentation/epicardium/api.rst
+++ b/Documentation/epicardium/api.rst
@@ -5,8 +5,17 @@ Epicardium API
 
    .. warning::
 
-      This version of the documentation was built without
-      `Hawkmoth <https://github.com/jnikula/hawkmoth>`_ available.  This means,
-      no documentation for the Epicardium API was generated.
+      This version of the documentation was built without `Hawkmoth`_ working
+      (most likely python3-clang was not installed).  This means, no
+      documentation for the Epicardium API was generated.
+
+   .. _Hawkmoth: https://github.com/jnikula/hawkmoth
+
+This page details all available *Epicardium API* functions.  All these
+functions are defined in
+
+.. code-block:: c++
+
+   #include "epicardium.h"
 
 .. c:autodoc:: epicardium/epicardium.h
diff --git a/Documentation/epicardium/intro.rst b/Documentation/epicardium/intro.rst
deleted file mode 100644
index 6ef7e92cbacc7dbda7a1060c8f9d46020b664a53..0000000000000000000000000000000000000000
--- a/Documentation/epicardium/intro.rst
+++ /dev/null
@@ -1,49 +0,0 @@
-Epicardium Intro
-================
-Epicardium is the main component of the firmware.  It runs on core0 and is
-based on FreeRTOS.  Epicardium provides an API to a payload running on the
-other core which exposes most functionality.
-
-API Design
-----------
-.. note::
-
-   This is the current design.  We might adjust it in the future to allow for
-   more performance in cases where this approach is too slow.
-
-The API is strictly synchroneous.  This means, an API call looks exactly the
-same as calling any other function.  Internally, the call will wake up
-Epicardium and dispatch the call.  Once the call has finished, it will return a
-result.
-
-
-API Conventions
----------------
-The API functions follow the kernel convention of either returning a boolean if
-the function is a predicate or returning a success integer (with negative
-values denoting errors) if it is an action or imperative command.  To quote:
-
-      **16) Function return values and names**
-
-      Functions can return values of many different kinds, and one of the
-      most common is a value indicating whether the function succeeded or
-      failed.  Such a value can be represented as an error-code integer
-      (-Exxx = failure, 0 = success) or a ``succeeded`` boolean (0 = failure,
-      non-zero = success).
-
-      Mixing up these two sorts of representations is a fertile source of
-      difficult-to-find bugs.  If the C language included a strong distinction
-      between integers and booleans then the compiler would find these mistakes
-      for us... but it doesn't.  To help prevent such bugs, always follow this
-      convention:
-
-      .. code-block:: text
-
-              If the name of a function is an action or an imperative command,
-              the function should return an error-code integer.  If the name
-              is a predicate, the function should return a "succeeded" boolean.
-
-      For example, ``add work`` is a command, and the add_work() function returns 0
-      for success or -EBUSY for failure.  In the same way, ``PCI device present`` is
-      a predicate, and the pci_dev_present() function returns 1 if it succeeds in
-      finding a matching device or 0 if it doesn't.
diff --git a/Documentation/epicardium/overview.rst b/Documentation/epicardium/overview.rst
new file mode 100644
index 0000000000000000000000000000000000000000..6425fed710ba60fca78d27917157ae8fac6b8c23
--- /dev/null
+++ b/Documentation/epicardium/overview.rst
@@ -0,0 +1,59 @@
+Overview
+========
+Epicardium, the "main" firmware running on core 0, exposes a lot of
+functionality to user-code via the so-called *Epicardium API*.  This API
+consists of a number of calls that can be issued by core 1 using an
+auto-generated library.
+
+API Design
+----------
+.. note::
+
+   This is the current design.  We might adjust it in the future to allow for
+   more performance in cases where this approach is too slow.  This will most
+   likely be the addition of some form of asynchroneous calls.
+
+The API is strictly synchroneous.  This means, an API call looks exactly the
+same as calling any other function.  Internally, the call will wake up
+Epicardium and there the call will be dispatched.  It will then block until
+Epicardium finished executing the call and return whatever the call has as a
+return value.  In code:
+
+.. code-block:: c++
+
+   #include "epicardium.h"
+
+   int main(void)
+   {
+   	/* ... */
+
+   	/* Call the API to write to UART. */
+   	epic_uart_write_str("Hello from core 1!\r\n", 20);
+
+   	/*
+   	 * Call the API to receive a byte from UART.
+   	 * This will block until at least one character is received.
+   	 */
+   	char chr = epic_uart_read_chr();
+
+   	/* ... */
+   }
+
+Internals
+---------
+In most cases, you won't need to care about the actual implementation of the
+API as it is well hidden inside the auto-generated library.  If you want to
+know anyway, here is a rough overview:
+
+The current design is based around a shared memory region, the semaphore
+peripherals provided by MAX32666, and the SEV/WFE mechanism.  When issuing a
+call, this is what happens:
+
+.. image:: ../static/synchroneous-api-call.svg
+
+There is one important thing to note here:  Right now, the API is only ever
+polled for new calls from Epicardium inside the idle task.  This means, that if
+it is busy with other things, the API will have the least priority.  For now,
+this has not been an issue as Epicardium is sleeping most of the time anyway.
+If it becomes one in the future we will have to introduce another
+synchronization point.
diff --git a/Documentation/how-to-build.rst b/Documentation/how-to-build.rst
new file mode 100644
index 0000000000000000000000000000000000000000..36b5343f5c9095b7aa89ec360bbeb7465a27eac6
--- /dev/null
+++ b/Documentation/how-to-build.rst
@@ -0,0 +1,52 @@
+How To Build
+============
+If you just want to write MicroPython code for card10, you probably **won't**
+need to build the firmware yourself.  This page is for people who want to work
+on the underlying firmware itself.
+
+Dependencies
+------------
+* **gcc**, **binutils** & **newlib** for ``arm-none-eabi``:  The packages have
+  slightly different names on different distros.
+
+  - Ubuntu: ``gcc-arm-none-eabi``, ``binutils-arm-none-eabi``, ``libnewlib-arm-none-eabi``
+  - Arch: ``arm-none-eabi-gcc``, ``arm-none-eabi-binutils``, ``arm-none-eabi-newlib``
+  - Alternative: Download `ARM's GNU toolchain`_.  **TODO**
+* **python3**:  For meson and various scripts needed for building.
+* **meson** (>0.43.0):  Unfortunately most distros only have very old versions
+  of meson in their repositories.  Instead, you'll probably save yourself a lot
+  of headaches by installing meson from ``pip3 install --user meson``.
+* **python3-crc16**: Install with ``pip3 install --user crc16``.
+
+.. _ARM's GNU toolchain: https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads
+
+Building
+--------
+Build using the following two commands:
+
+.. code-block:: shell-session
+
+   $ ./bootstrap.sh
+   $ ninja -C build/
+
+``bootstrap.sh`` initializes git submodules and runs *meson*.  Afterwards you
+can build with *ninja*.
+
+.. note::
+
+   Our build-system contains a few workarounds around short-comings in meson.
+   These workarounds might break on some setups which we did not yet test.  If
+   this is the case for you, please open an issue in our `issue tracker`_!
+
+.. _issue tracker: https://git.card10.badge.events.ccc.de/card10/firmware/issues
+
+If ninja succeeds, the binaries are in ``build/``.  They are available in two
+formats:  As an ``.elf`` which can be flashed using a debugger and as a
+``.bin`` which can be loaded using the provided bootloader.  Here is a list of
+the binaries:
+
+- ``build/bootloader/bootloader.elf``: Our bootloader.  It should already be on
+  your card10.  The bootloader can only be flashed using a debugger.
+- ``build/pycardium/pycardium_epicardium.bin``: The entire firmware in one ``.bin``.
+- ``build/epicardium/epicardium.elf``: The core 0 part of the firmware, called Epicardium.
+- ``build/pycardium/pycardium.elf``: Our MicroPython port, the core 1 part of the firmware.
diff --git a/Documentation/how-to-flash.rst b/Documentation/how-to-flash.rst
new file mode 100644
index 0000000000000000000000000000000000000000..b0afeac6c627d5c35e399a06dacfd928e9510f74
--- /dev/null
+++ b/Documentation/how-to-flash.rst
@@ -0,0 +1,63 @@
+How To Flash
+============
+Depending on whether you have a debugger or not, you have to use a different
+method of flashing:
+
+Flash Without Debugger
+----------------------
+If you do not have a debugger, you have to update the firmware using our
+bootloader.  To do so, you need to reboot card10 while keeping the buttom on
+the bottom right pressed.  Rebooting is done by either short pressing the power
+button (top left) while you have a working firmware, or turning the card10 off
+completely (by pressing the power button for 8 seconds) and then starting it again.
+
+.. todo::
+
+   Image showing the location of the buttons
+
+If you did everything correctly, the bootloader will display:
+
+.. code-block:: text
+
+   Bootloader
+   Jul 12 2019
+   USB activated.
+    Waiting.
+
+On your host, you should now see an 8MB flash-device appear.  You can now drop
+the firmware's ``.bin`` (from ``build/pycardium/pycardium_epicardium.bin`` in
+most cases) into this flash-storage.  You **must** call the file ``card10.bin``
+for the bootloader to use it.
+
+Afterwards **eject** the flash device and reboot card10.  You should now see
+your new firmware boot up!
+
+.. warning::
+
+   **You must EJECT the flash device!**  ``umount`` & ``sync`` is **not**
+   enough and will result in the bootloader not loading the new binary.
+
+Flash Using Debugger
+--------------------
+
+.. warning::
+
+   With the current version of the bootloader, before attempting to flash using
+   the debugger, make sure there is not ``card10.bin`` stored on the device.
+   If there is, the bootloader will overwrite whatever you just flashed after
+   reboot every time.
+
+First, setup everything as explained on the :ref:`debugger` page.  Following
+that and after connecting to card10, you can flash your binary using the
+``load`` command.  After loading, you need to use ``reset`` to reboot card10
+using your new firmware.
+
+.. code-block:: text
+
+   (gdb) load
+   Loading section .text, size 0x12514 lma 0x10010000
+   Loading section .ARM.exidx, size 0x8 lma 0x10022514
+   Loading section .data, size 0x8d8 lma 0x1002251c
+   Start address 0x10012160, load size 77300
+   Transfer rate: 19 KB/sec, 11042 bytes/write.
+   (gdb)
diff --git a/Documentation/index.rst b/Documentation/index.rst
index 8a8d9ea2577c89596a79d7ce12dedfb6e4a4b5a6..be83c75d96d32005983b95590e9f8b6949b3b558 100644
--- a/Documentation/index.rst
+++ b/Documentation/index.rst
@@ -1,26 +1,44 @@
 card10 firmware docs
 ====================
 
-This is the API documentation for card10's default firmware.
+**Dear traveller,**
 
-Overview
---------
+these transcripts describe how you can write code for your card10.  This
+includes the Python modules that are available but also documentation of the
+lower level firmware components.
 
-The design roughly looks like this:
+If you want to write Python code for card10, you will want to take a look at
+the :ref:`pycardium_index` docs.  If you are interested in writing applications
+in other languages, you'll probably want to interface with
+:ref:`epicardium_api_index` directly.
 
-.. image:: static/overview.svg
+Last but not least, if you want to start hacking the lower-level firmware, the
+:ref:`firmware_index` section of these docs is a good starting place.
 
-.. toctree::
-   :maxdepth: 2
-   :caption: Epicardium
-
-   epicardium/intro
-   epicardium/api
 
+.. _pycardium_index:
 .. toctree::
-   :maxdepth: 2
+   :maxdepth: 1
    :caption: Pycardium
 
-   pycardium/intro
+   pycardium/overview
    pycardium/color
    pycardium/leds
+
+.. _epicardium_api_index:
+.. toctree::
+   :maxdepth: 1
+   :caption: Epicardium API
+
+   epicardium/overview
+   epicardium/api
+
+.. _firmware_index:
+.. toctree::
+   :maxdepth: 1
+   :caption: Firmware
+
+   overview
+   how-to-build
+   how-to-flash
+   debugger
diff --git a/Documentation/overview.rst b/Documentation/overview.rst
new file mode 100644
index 0000000000000000000000000000000000000000..8fdc0336049dfdc8eef1305c37bb17d278d5c628
--- /dev/null
+++ b/Documentation/overview.rst
@@ -0,0 +1,43 @@
+Overview
+========
+To make the most of card10's dual-core processor, its firmware will have been
+divided into two parts: The "main" firmware running on core 0 which will have
+been called *Epicardium* and the "user-code" running on core 1.  In most cases
+this will have been *Pycardium*, our MicroPython port.
+
+.. image:: ./static/overview.svg
+
+Epicardium
+----------
+Epicardium is based on `FreeRTOS`_.  There are a number of tasks that will have
+been keeping card10 running.  These are:
+
+* **Dispatcher**:  The dispatcher task handles API calls from core 1.
+* **PMIC**:  The power manager task checks the battery level and other interesting
+  statistics that can be gathered from our power manager IC (MAX77650).
+* **Serial**:  Handles serial communication via *UART*, *CDC ACM* and possibly
+  Bluetooth.
+
+.. todo::
+
+   The following tasks have not yet been implemented/are currently in the works:
+
+   - **Bluetooth**: The bluetooth stack
+   - **Payload Controller**: Control what is running on core 1
+
+.. _FreeRTOS: https://www.freertos.org/
+
+Pycardium
+---------
+Pycardium is our MicroPython fork.  Its purpose is to make it as easy as
+possible to interact with card10.
+
+\*cardium
+---------
+.. warning::
+
+   We have not yet been able to determine if card10 will have had the abilities
+   described in this section.  And if yes, how they will have been implemented.
+
+Next to Pycardium, other bare-metal code can also run on core 1.  For example,
+a Rustcardium or Cccardium.
diff --git a/Documentation/pycardium/intro.rst b/Documentation/pycardium/intro.rst
deleted file mode 100644
index fc4721e35fc341ba84a755a9bc485adb3c3818ad..0000000000000000000000000000000000000000
--- a/Documentation/pycardium/intro.rst
+++ /dev/null
@@ -1,13 +0,0 @@
-Pycardium Intro
-===============
-Pycardium is a core1 payload based on MicroPython.  It can interface with
-card10 using the Epicardium API, which is wrapped in a bunch of python modules.
-Pycardium also contains a number of Python stdlib modules.  To see the full
-list, type:
-
-.. code-block:: python
-
-   help("modules")
-
-
-The following pages detail card10 specific modules.
diff --git a/Documentation/pycardium/overview.rst b/Documentation/pycardium/overview.rst
new file mode 100644
index 0000000000000000000000000000000000000000..ded98271b5fea36e26cac734ac9f604ab5379637
--- /dev/null
+++ b/Documentation/pycardium/overview.rst
@@ -0,0 +1,23 @@
+Overview
+========
+Pycardium is what we call our MicroPython port for card10.  For the most part,
+it will behave like a normal MicroPython, enhanced by a few modules to
+interface with card10's hardware.  We have also included modules from Python's
+standard library so you have lots of familiar functionality at hand to start
+hacking!
+
+.. note::
+
+   Right now, MicroPython is only available via the serial console.  card10
+   makes its console available as a CDC ACM device via USB or, if you have a
+   debugger, on the debugging serial port.
+
+   This means, you can only interact with Python through a REPL for now.
+   However, this will soon change, once `#10`_ and `#11`_ are implemented.
+
+   .. _#10: https://git.card10.badge.events.ccc.de/card10/firmware/issues/10
+   .. _#11: https://git.card10.badge.events.ccc.de/card10/firmware/issues/11
+
+.. todo::
+
+   Getting Started Guide for people interested in writing Python code.
diff --git a/Documentation/static/overview.svg b/Documentation/static/overview.svg
index 761fe089dba13ab9a66a66c6699f6b1724df29a8..a11ea615a73d84720cdab58412b55f75328f52ed 100644
--- a/Documentation/static/overview.svg
+++ b/Documentation/static/overview.svg
@@ -148,15 +148,15 @@
      inkscape:pageopacity="0"
      inkscape:pageshadow="2"
      inkscape:zoom="1.4"
-     inkscape:cx="374.3184"
+     inkscape:cx="254.67554"
      inkscape:cy="190.35742"
      inkscape:document-units="mm"
-     inkscape:current-layer="g6159"
+     inkscape:current-layer="g8661"
      showgrid="false"
      inkscape:pagecheckerboard="true"
      inkscape:window-width="1920"
      inkscape:window-height="1020"
-     inkscape:window-x="1920"
+     inkscape:window-x="0"
      inkscape:window-y="0"
      inkscape:window-maximized="1"
      fit-margin-top="0"
@@ -301,20 +301,20 @@
              xlink:title="Epicardium">
             <text
                xml:space="preserve"
-               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0000ee;fill-opacity:1;stroke:none;stroke-width:0.26458332;"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0000ee;fill-opacity:1;stroke:none;stroke-width:0.26458332"
                x="40.307911"
                y="111.83552"
                id="text6791"><tspan
                  sodipodi:role="line"
                  x="40.307911"
                  y="111.83552"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332;fill:#0000ee;fill-opacity:1;"
-                 id="tspan6793">epicardium</tspan><tspan
+                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;font-family:monospace;-inkscape-font-specification:monospace;fill:#0000ee;fill-opacity:1;stroke-width:0.26458332"
+                 id="tspan6793">Epicardium</tspan><tspan
                  sodipodi:role="line"
                  x="40.307911"
                  y="119.77302"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.58611107px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332;fill:#0000ee;fill-opacity:1;"
-                 id="tspan1028">(core0)</tspan></text>
+                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.58611107px;font-family:monospace;-inkscape-font-specification:monospace;fill:#0000ee;fill-opacity:1;stroke-width:0.26458332"
+                 id="tspan1028">(core 0)</tspan></text>
           </a>
         </g>
         <g
@@ -393,7 +393,7 @@
              xlink:title="Pycardium">
             <text
                xml:space="preserve"
-               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0000ee;fill-opacity:1;stroke:none;stroke-width:0.26458332;"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0000ee;fill-opacity:1;stroke:none;stroke-width:0.26458332"
                x="147.18329"
                y="111.80997"
                id="text6799"><tspan
@@ -401,12 +401,12 @@
                  id="tspan6797"
                  x="147.18329"
                  y="111.80997"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332;fill:#0000ee;fill-opacity:1;">pycardium</tspan><tspan
+                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.3499999px;font-family:monospace;-inkscape-font-specification:monospace;fill:#0000ee;fill-opacity:1;stroke-width:0.26458332">Pycardium</tspan><tspan
                  sodipodi:role="line"
                  x="147.18329"
                  y="119.74747"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.58611107px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332;fill:#0000ee;fill-opacity:1;"
-                 id="tspan1032">(core1)</tspan></text>
+                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.58611107px;font-family:monospace;-inkscape-font-specification:monospace;fill:#0000ee;fill-opacity:1;stroke-width:0.26458332"
+                 id="tspan1032">(core 1)</tspan></text>
           </a>
         </g>
       </g>
@@ -420,7 +420,7 @@
            style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46666622px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
            y="84.910851"
            x="104.47012"
-           sodipodi:role="line">max32665</tspan></text>
+           sodipodi:role="line">MAX32666</tspan></text>
       <path
          style="display:inline;fill:none;stroke:#b7b7b7;stroke-width:3.5999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutS)"
          d="M 19.222455,122.34974 H 10.72299 v 46.42197 h 23.044261"
@@ -456,6 +456,17 @@
              x="63.567005"
              sodipodi:role="line">Core</tspan></text>
       </g>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:3.52777767px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+         x="161.65434"
+         y="102.35806"
+         id="text4680"><tspan
+           sodipodi:role="line"
+           id="tspan4678"
+           x="162.2159"
+           y="102.35806"
+           style="stroke-width:0.26458332"> </tspan></text>
     </g>
   </g>
 </svg>
diff --git a/Documentation/static/synchroneous-api-call.dia b/Documentation/static/synchroneous-api-call.dia
new file mode 100644
index 0000000000000000000000000000000000000000..0bc9ed7c94da2db3121038dd28ceb8e0335c905d
Binary files /dev/null and b/Documentation/static/synchroneous-api-call.dia differ
diff --git a/Documentation/static/synchroneous-api-call.svg b/Documentation/static/synchroneous-api-call.svg
new file mode 100644
index 0000000000000000000000000000000000000000..127b48fcedf04b57c6f18e864d70ab4f2f35c0e4
--- /dev/null
+++ b/Documentation/static/synchroneous-api-call.svg
@@ -0,0 +1,687 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="475pt" height="288pt" viewBox="0 0 475 288" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.453125 1.578125 L 0.453125 -6.3125 L 4.921875 -6.3125 L 4.921875 1.578125 Z M 0.953125 1.078125 L 4.421875 1.078125 L 4.421875 -5.8125 L 0.953125 -5.8125 Z M 0.953125 1.078125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 6 -0.359375 C 5.6875 -0.203125 5.363281 -0.0820312 5.03125 0 C 4.695312 0.0820312 4.347656 0.125 3.984375 0.125 C 2.898438 0.125 2.039062 -0.175781 1.40625 -0.78125 C 0.769531 -1.394531 0.453125 -2.21875 0.453125 -3.25 C 0.453125 -4.300781 0.769531 -5.128906 1.40625 -5.734375 C 2.039062 -6.335938 2.898438 -6.640625 3.984375 -6.640625 C 4.347656 -6.640625 4.695312 -6.597656 5.03125 -6.515625 C 5.363281 -6.441406 5.6875 -6.320312 6 -6.15625 L 6 -4.8125 C 5.6875 -5.019531 5.378906 -5.171875 5.078125 -5.265625 C 4.773438 -5.367188 4.457031 -5.421875 4.125 -5.421875 C 3.519531 -5.421875 3.046875 -5.226562 2.703125 -4.84375 C 2.359375 -4.457031 2.1875 -3.925781 2.1875 -3.25 C 2.1875 -2.582031 2.359375 -2.054688 2.703125 -1.671875 C 3.046875 -1.285156 3.519531 -1.09375 4.125 -1.09375 C 4.457031 -1.09375 4.773438 -1.140625 5.078125 -1.234375 C 5.378906 -1.335938 5.6875 -1.492188 6 -1.703125 Z M 6 -0.359375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 2.953125 -2.203125 C 2.617188 -2.203125 2.367188 -2.144531 2.203125 -2.03125 C 2.046875 -1.925781 1.96875 -1.765625 1.96875 -1.546875 C 1.96875 -1.347656 2.03125 -1.191406 2.15625 -1.078125 C 2.289062 -0.960938 2.476562 -0.90625 2.71875 -0.90625 C 3.007812 -0.90625 3.253906 -1.007812 3.453125 -1.21875 C 3.660156 -1.4375 3.765625 -1.707031 3.765625 -2.03125 L 3.765625 -2.203125 Z M 5.34375 -2.796875 L 5.34375 0 L 3.765625 0 L 3.765625 -0.71875 C 3.546875 -0.425781 3.304688 -0.210938 3.046875 -0.078125 C 2.785156 0.0546875 2.46875 0.125 2.09375 0.125 C 1.582031 0.125 1.171875 -0.0195312 0.859375 -0.3125 C 0.546875 -0.613281 0.390625 -1 0.390625 -1.46875 C 0.390625 -2.039062 0.582031 -2.460938 0.96875 -2.734375 C 1.363281 -3.003906 1.988281 -3.140625 2.84375 -3.140625 L 3.765625 -3.140625 L 3.765625 -3.25 C 3.765625 -3.5 3.664062 -3.679688 3.46875 -3.796875 C 3.269531 -3.910156 2.960938 -3.96875 2.546875 -3.96875 C 2.210938 -3.96875 1.898438 -3.929688 1.609375 -3.859375 C 1.328125 -3.796875 1.0625 -3.703125 0.8125 -3.578125 L 0.8125 -4.765625 C 1.144531 -4.847656 1.476562 -4.910156 1.8125 -4.953125 C 2.15625 -4.992188 2.5 -5.015625 2.84375 -5.015625 C 3.71875 -5.015625 4.351562 -4.835938 4.75 -4.484375 C 5.144531 -4.140625 5.34375 -3.578125 5.34375 -2.796875 Z M 5.34375 -2.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.75 -6.796875 L 2.3125 -6.796875 L 2.3125 0 L 0.75 0 Z M 0.75 -6.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 5.640625 -2.46875 L 5.640625 -2.015625 L 1.984375 -2.015625 C 2.015625 -1.648438 2.144531 -1.375 2.375 -1.1875 C 2.601562 -1 2.921875 -0.90625 3.328125 -0.90625 C 3.660156 -0.90625 4 -0.953125 4.34375 -1.046875 C 4.6875 -1.148438 5.039062 -1.300781 5.40625 -1.5 L 5.40625 -0.296875 C 5.039062 -0.160156 4.671875 -0.0546875 4.296875 0.015625 C 3.921875 0.0859375 3.550781 0.125 3.1875 0.125 C 2.300781 0.125 1.613281 -0.0976562 1.125 -0.546875 C 0.632812 -0.992188 0.390625 -1.625 0.390625 -2.4375 C 0.390625 -3.238281 0.628906 -3.867188 1.109375 -4.328125 C 1.585938 -4.785156 2.25 -5.015625 3.09375 -5.015625 C 3.863281 -5.015625 4.476562 -4.78125 4.9375 -4.3125 C 5.40625 -3.851562 5.640625 -3.238281 5.640625 -2.46875 Z M 4.03125 -2.984375 C 4.03125 -3.273438 3.941406 -3.507812 3.765625 -3.6875 C 3.597656 -3.875 3.375 -3.96875 3.09375 -3.96875 C 2.789062 -3.96875 2.539062 -3.882812 2.34375 -3.71875 C 2.15625 -3.550781 2.039062 -3.304688 2 -2.984375 Z M 4.03125 -2.984375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 4.390625 -3.5625 C 4.253906 -3.625 4.117188 -3.671875 3.984375 -3.703125 C 3.847656 -3.734375 3.710938 -3.75 3.578125 -3.75 C 3.171875 -3.75 2.859375 -3.617188 2.640625 -3.359375 C 2.421875 -3.109375 2.3125 -2.738281 2.3125 -2.25 L 2.3125 0 L 0.75 0 L 0.75 -4.890625 L 2.3125 -4.890625 L 2.3125 -4.09375 C 2.519531 -4.414062 2.753906 -4.648438 3.015625 -4.796875 C 3.273438 -4.941406 3.585938 -5.015625 3.953125 -5.015625 C 4.003906 -5.015625 4.054688 -5.007812 4.109375 -5 C 4.171875 -5 4.265625 -4.992188 4.390625 -4.984375 Z M 4.390625 -3.5625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 3.375 1.1875 L 2.078125 1.1875 C 1.628906 0.457031 1.296875 -0.226562 1.078125 -0.875 C 0.867188 -1.519531 0.765625 -2.160156 0.765625 -2.796875 C 0.765625 -3.441406 0.867188 -4.085938 1.078125 -4.734375 C 1.296875 -5.390625 1.628906 -6.078125 2.078125 -6.796875 L 3.375 -6.796875 C 3 -6.097656 2.71875 -5.421875 2.53125 -4.765625 C 2.34375 -4.109375 2.25 -3.457031 2.25 -2.8125 C 2.25 -2.164062 2.34375 -1.507812 2.53125 -0.84375 C 2.71875 -0.1875 3 0.488281 3.375 1.1875 Z M 3.375 1.1875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 4.703125 -4.75 L 4.703125 -3.46875 C 4.492188 -3.613281 4.28125 -3.71875 4.0625 -3.78125 C 3.851562 -3.851562 3.632812 -3.890625 3.40625 -3.890625 C 2.96875 -3.890625 2.625 -3.757812 2.375 -3.5 C 2.132812 -3.25 2.015625 -2.894531 2.015625 -2.4375 C 2.015625 -1.976562 2.132812 -1.625 2.375 -1.375 C 2.625 -1.125 2.96875 -1 3.40625 -1 C 3.644531 -1 3.875 -1.035156 4.09375 -1.109375 C 4.3125 -1.179688 4.515625 -1.285156 4.703125 -1.421875 L 4.703125 -0.140625 C 4.460938 -0.0546875 4.210938 0.00390625 3.953125 0.046875 C 3.703125 0.0976562 3.453125 0.125 3.203125 0.125 C 2.316406 0.125 1.625 -0.0976562 1.125 -0.546875 C 0.632812 -1.003906 0.390625 -1.632812 0.390625 -2.4375 C 0.390625 -3.25 0.632812 -3.878906 1.125 -4.328125 C 1.625 -4.785156 2.316406 -5.015625 3.203125 -5.015625 C 3.460938 -5.015625 3.71875 -4.988281 3.96875 -4.9375 C 4.21875 -4.894531 4.460938 -4.832031 4.703125 -4.75 Z M 4.703125 -4.75 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 3.078125 -3.890625 C 2.734375 -3.890625 2.46875 -3.765625 2.28125 -3.515625 C 2.101562 -3.265625 2.015625 -2.90625 2.015625 -2.4375 C 2.015625 -1.96875 2.101562 -1.609375 2.28125 -1.359375 C 2.46875 -1.117188 2.734375 -1 3.078125 -1 C 3.421875 -1 3.679688 -1.117188 3.859375 -1.359375 C 4.046875 -1.609375 4.140625 -1.96875 4.140625 -2.4375 C 4.140625 -2.90625 4.046875 -3.265625 3.859375 -3.515625 C 3.679688 -3.765625 3.421875 -3.890625 3.078125 -3.890625 Z M 3.078125 -5.015625 C 3.921875 -5.015625 4.578125 -4.785156 5.046875 -4.328125 C 5.523438 -3.878906 5.765625 -3.25 5.765625 -2.4375 C 5.765625 -1.632812 5.523438 -1.003906 5.046875 -0.546875 C 4.578125 -0.0976562 3.921875 0.125 3.078125 0.125 C 2.234375 0.125 1.570312 -0.0976562 1.09375 -0.546875 C 0.625 -1.003906 0.390625 -1.632812 0.390625 -2.4375 C 0.390625 -3.25 0.625 -3.878906 1.09375 -4.328125 C 1.570312 -4.785156 2.234375 -5.015625 3.078125 -5.015625 Z M 3.078125 -5.015625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph0-10">
+<path style="stroke:none;" d="M 1.046875 -1.15625 L 2.53125 -1.15625 L 2.53125 -5.375 L 1.015625 -5.0625 L 1.015625 -6.21875 L 2.53125 -6.53125 L 4.125 -6.53125 L 4.125 -1.15625 L 5.609375 -1.15625 L 5.609375 0 L 1.046875 0 Z M 1.046875 -1.15625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-11">
+<path style="stroke:none;" d="M 0.71875 1.1875 C 1.09375 0.488281 1.375 -0.1875 1.5625 -0.84375 C 1.75 -1.507812 1.84375 -2.164062 1.84375 -2.8125 C 1.84375 -3.457031 1.75 -4.109375 1.5625 -4.765625 C 1.375 -5.421875 1.09375 -6.097656 0.71875 -6.796875 L 2.015625 -6.796875 C 2.460938 -6.078125 2.789062 -5.390625 3 -4.734375 C 3.21875 -4.085938 3.328125 -3.441406 3.328125 -2.796875 C 3.328125 -2.160156 3.21875 -1.519531 3 -0.875 C 2.789062 -0.226562 2.460938 0.457031 2.015625 1.1875 Z M 0.71875 1.1875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-12">
+<path style="stroke:none;" d="M 0.828125 -6.53125 L 5.359375 -6.53125 L 5.359375 -5.25 L 2.5 -5.25 L 2.5 -4.046875 L 5.1875 -4.046875 L 5.1875 -2.765625 L 2.5 -2.765625 L 2.5 -1.265625 L 5.453125 -1.265625 L 5.453125 0 L 0.828125 0 Z M 0.828125 -6.53125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-13">
+<path style="stroke:none;" d="M 2.3125 -0.703125 L 2.3125 1.859375 L 0.75 1.859375 L 0.75 -4.890625 L 2.3125 -4.890625 L 2.3125 -4.171875 C 2.53125 -4.460938 2.769531 -4.675781 3.03125 -4.8125 C 3.289062 -4.945312 3.59375 -5.015625 3.9375 -5.015625 C 4.539062 -5.015625 5.035156 -4.773438 5.421875 -4.296875 C 5.804688 -3.816406 6 -3.195312 6 -2.4375 C 6 -1.6875 5.804688 -1.070312 5.421875 -0.59375 C 5.035156 -0.113281 4.539062 0.125 3.9375 0.125 C 3.59375 0.125 3.289062 0.0546875 3.03125 -0.078125 C 2.769531 -0.210938 2.53125 -0.421875 2.3125 -0.703125 Z M 3.359375 -3.875 C 3.023438 -3.875 2.765625 -3.75 2.578125 -3.5 C 2.398438 -3.257812 2.3125 -2.90625 2.3125 -2.4375 C 2.3125 -1.976562 2.398438 -1.625 2.578125 -1.375 C 2.765625 -1.132812 3.023438 -1.015625 3.359375 -1.015625 C 3.691406 -1.015625 3.945312 -1.132812 4.125 -1.375 C 4.300781 -1.625 4.390625 -1.976562 4.390625 -2.4375 C 4.390625 -2.90625 4.300781 -3.257812 4.125 -3.5 C 3.945312 -3.75 3.691406 -3.875 3.359375 -3.875 Z M 3.359375 -3.875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-14">
+<path style="stroke:none;" d="M 0.75 -4.890625 L 2.3125 -4.890625 L 2.3125 0 L 0.75 0 Z M 0.75 -6.796875 L 2.3125 -6.796875 L 2.3125 -5.53125 L 0.75 -5.53125 Z M 0.75 -6.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-15">
+<path style="stroke:none;" d="M 4.078125 -4.171875 L 4.078125 -6.796875 L 5.65625 -6.796875 L 5.65625 0 L 4.078125 0 L 4.078125 -0.703125 C 3.867188 -0.421875 3.632812 -0.210938 3.375 -0.078125 C 3.113281 0.0546875 2.8125 0.125 2.46875 0.125 C 1.863281 0.125 1.367188 -0.113281 0.984375 -0.59375 C 0.597656 -1.070312 0.40625 -1.6875 0.40625 -2.4375 C 0.40625 -3.195312 0.597656 -3.816406 0.984375 -4.296875 C 1.367188 -4.773438 1.863281 -5.015625 2.46875 -5.015625 C 2.8125 -5.015625 3.113281 -4.945312 3.375 -4.8125 C 3.632812 -4.675781 3.867188 -4.460938 4.078125 -4.171875 Z M 3.046875 -1.015625 C 3.378906 -1.015625 3.632812 -1.132812 3.8125 -1.375 C 3.988281 -1.625 4.078125 -1.976562 4.078125 -2.4375 C 4.078125 -2.90625 3.988281 -3.257812 3.8125 -3.5 C 3.632812 -3.75 3.378906 -3.875 3.046875 -3.875 C 2.710938 -3.875 2.457031 -3.75 2.28125 -3.5 C 2.113281 -3.257812 2.03125 -2.90625 2.03125 -2.4375 C 2.03125 -1.976562 2.113281 -1.625 2.28125 -1.375 C 2.457031 -1.132812 2.710938 -1.015625 3.046875 -1.015625 Z M 3.046875 -1.015625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-16">
+<path style="stroke:none;" d="M 0.703125 -1.90625 L 0.703125 -4.890625 L 2.265625 -4.890625 L 2.265625 -4.40625 C 2.265625 -4.144531 2.265625 -3.8125 2.265625 -3.40625 C 2.265625 -3.007812 2.265625 -2.742188 2.265625 -2.609375 C 2.265625 -2.210938 2.273438 -1.925781 2.296875 -1.75 C 2.316406 -1.582031 2.351562 -1.457031 2.40625 -1.375 C 2.46875 -1.269531 2.550781 -1.191406 2.65625 -1.140625 C 2.757812 -1.085938 2.875 -1.0625 3 -1.0625 C 3.332031 -1.0625 3.59375 -1.1875 3.78125 -1.4375 C 3.96875 -1.6875 4.0625 -2.035156 4.0625 -2.484375 L 4.0625 -4.890625 L 5.625 -4.890625 L 5.625 0 L 4.0625 0 L 4.0625 -0.703125 C 3.820312 -0.421875 3.566406 -0.210938 3.296875 -0.078125 C 3.035156 0.0546875 2.75 0.125 2.4375 0.125 C 1.875 0.125 1.441406 -0.046875 1.140625 -0.390625 C 0.847656 -0.734375 0.703125 -1.238281 0.703125 -1.90625 Z M 0.703125 -1.90625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-17">
+<path style="stroke:none;" d="M 5.296875 -4.078125 C 5.492188 -4.378906 5.726562 -4.609375 6 -4.765625 C 6.269531 -4.929688 6.566406 -5.015625 6.890625 -5.015625 C 7.453125 -5.015625 7.878906 -4.835938 8.171875 -4.484375 C 8.472656 -4.140625 8.625 -3.640625 8.625 -2.984375 L 8.625 0 L 7.046875 0 L 7.046875 -2.546875 C 7.046875 -2.585938 7.046875 -2.628906 7.046875 -2.671875 C 7.054688 -2.710938 7.0625 -2.769531 7.0625 -2.84375 C 7.0625 -3.1875 7.007812 -3.4375 6.90625 -3.59375 C 6.800781 -3.75 6.632812 -3.828125 6.40625 -3.828125 C 6.113281 -3.828125 5.882812 -3.703125 5.71875 -3.453125 C 5.5625 -3.210938 5.476562 -2.863281 5.46875 -2.40625 L 5.46875 0 L 3.890625 0 L 3.890625 -2.546875 C 3.890625 -3.085938 3.84375 -3.4375 3.75 -3.59375 C 3.65625 -3.75 3.488281 -3.828125 3.25 -3.828125 C 2.957031 -3.828125 2.726562 -3.703125 2.5625 -3.453125 C 2.394531 -3.210938 2.3125 -2.863281 2.3125 -2.40625 L 2.3125 0 L 0.75 0 L 0.75 -4.890625 L 2.3125 -4.890625 L 2.3125 -4.171875 C 2.507812 -4.453125 2.734375 -4.660156 2.984375 -4.796875 C 3.234375 -4.941406 3.503906 -5.015625 3.796875 -5.015625 C 4.140625 -5.015625 4.441406 -4.929688 4.703125 -4.765625 C 4.960938 -4.609375 5.160156 -4.378906 5.296875 -4.078125 Z M 5.296875 -4.078125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-18">
+<path style="stroke:none;" d="M 4.125 -3.265625 C 4.125 -4.085938 4.046875 -4.664062 3.890625 -5 C 3.734375 -5.332031 3.472656 -5.5 3.109375 -5.5 C 2.753906 -5.5 2.5 -5.332031 2.34375 -5 C 2.1875 -4.664062 2.109375 -4.085938 2.109375 -3.265625 C 2.109375 -2.441406 2.1875 -1.859375 2.34375 -1.515625 C 2.5 -1.179688 2.753906 -1.015625 3.109375 -1.015625 C 3.472656 -1.015625 3.734375 -1.179688 3.890625 -1.515625 C 4.046875 -1.859375 4.125 -2.441406 4.125 -3.265625 Z M 5.796875 -3.25 C 5.796875 -2.175781 5.5625 -1.34375 5.09375 -0.75 C 4.632812 -0.164062 3.972656 0.125 3.109375 0.125 C 2.253906 0.125 1.59375 -0.164062 1.125 -0.75 C 0.65625 -1.34375 0.421875 -2.175781 0.421875 -3.25 C 0.421875 -4.34375 0.65625 -5.179688 1.125 -5.765625 C 1.59375 -6.347656 2.253906 -6.640625 3.109375 -6.640625 C 3.972656 -6.640625 4.632812 -6.347656 5.09375 -5.765625 C 5.5625 -5.179688 5.796875 -4.34375 5.796875 -3.25 Z M 5.796875 -3.25 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-19">
+<path style="stroke:none;" d="M 5.359375 -6.328125 L 5.359375 -4.9375 C 5.003906 -5.101562 4.65625 -5.222656 4.3125 -5.296875 C 3.96875 -5.378906 3.644531 -5.421875 3.34375 -5.421875 C 2.945312 -5.421875 2.648438 -5.363281 2.453125 -5.25 C 2.265625 -5.144531 2.171875 -4.976562 2.171875 -4.75 C 2.171875 -4.570312 2.234375 -4.429688 2.359375 -4.328125 C 2.492188 -4.234375 2.726562 -4.148438 3.0625 -4.078125 L 3.78125 -3.9375 C 4.507812 -3.789062 5.023438 -3.566406 5.328125 -3.265625 C 5.640625 -2.972656 5.796875 -2.550781 5.796875 -2 C 5.796875 -1.28125 5.582031 -0.742188 5.15625 -0.390625 C 4.726562 -0.046875 4.078125 0.125 3.203125 0.125 C 2.785156 0.125 2.367188 0.0820312 1.953125 0 C 1.535156 -0.0703125 1.117188 -0.1875 0.703125 -0.34375 L 0.703125 -1.765625 C 1.117188 -1.535156 1.519531 -1.363281 1.90625 -1.25 C 2.289062 -1.144531 2.664062 -1.09375 3.03125 -1.09375 C 3.394531 -1.09375 3.675781 -1.148438 3.875 -1.265625 C 4.070312 -1.390625 4.171875 -1.566406 4.171875 -1.796875 C 4.171875 -2.003906 4.101562 -2.160156 3.96875 -2.265625 C 3.832031 -2.378906 3.566406 -2.484375 3.171875 -2.578125 L 2.53125 -2.71875 C 1.875 -2.851562 1.394531 -3.070312 1.09375 -3.375 C 0.789062 -3.6875 0.640625 -4.101562 0.640625 -4.625 C 0.640625 -5.269531 0.847656 -5.765625 1.265625 -6.109375 C 1.691406 -6.460938 2.296875 -6.640625 3.078125 -6.640625 C 3.441406 -6.640625 3.8125 -6.613281 4.1875 -6.5625 C 4.5625 -6.507812 4.953125 -6.429688 5.359375 -6.328125 Z M 5.359375 -6.328125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-20">
+<path style="stroke:none;" d="M 5.671875 -2.984375 L 5.671875 0 L 4.09375 0 L 4.09375 -2.265625 C 4.09375 -2.703125 4.082031 -3 4.0625 -3.15625 C 4.050781 -3.3125 4.019531 -3.429688 3.96875 -3.515625 C 3.90625 -3.609375 3.820312 -3.679688 3.71875 -3.734375 C 3.613281 -3.796875 3.492188 -3.828125 3.359375 -3.828125 C 3.035156 -3.828125 2.78125 -3.703125 2.59375 -3.453125 C 2.40625 -3.203125 2.3125 -2.851562 2.3125 -2.40625 L 2.3125 0 L 0.75 0 L 0.75 -6.796875 L 2.3125 -6.796875 L 2.3125 -4.171875 C 2.550781 -4.460938 2.800781 -4.675781 3.0625 -4.8125 C 3.332031 -4.945312 3.628906 -5.015625 3.953125 -5.015625 C 4.515625 -5.015625 4.941406 -4.835938 5.234375 -4.484375 C 5.523438 -4.140625 5.671875 -3.640625 5.671875 -2.984375 Z M 5.671875 -2.984375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-21">
+<path style="stroke:none;" d="M 0.828125 -6.53125 L 2.96875 -6.53125 L 4.453125 -3.03125 L 5.953125 -6.53125 L 8.078125 -6.53125 L 8.078125 0 L 6.484375 0 L 6.484375 -4.78125 L 4.984375 -1.25 L 3.921875 -1.25 L 2.421875 -4.78125 L 2.421875 0 L 0.828125 0 Z M 0.828125 -6.53125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-22">
+<path style="stroke:none;" d="M 0.109375 -4.890625 L 1.671875 -4.890625 L 2.984375 -1.578125 L 4.109375 -4.890625 L 5.671875 -4.890625 L 3.609375 0.46875 C 3.410156 1.007812 3.171875 1.390625 2.890625 1.609375 C 2.617188 1.828125 2.253906 1.9375 1.796875 1.9375 L 0.890625 1.9375 L 0.890625 0.90625 L 1.390625 0.90625 C 1.648438 0.90625 1.835938 0.863281 1.953125 0.78125 C 2.078125 0.695312 2.175781 0.546875 2.25 0.328125 L 2.296875 0.1875 Z M 0.109375 -4.890625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.453125 1.578125 L 0.453125 -6.3125 L 4.921875 -6.3125 L 4.921875 1.578125 Z M 0.953125 1.078125 L 4.421875 1.078125 L 4.421875 -5.8125 L 0.953125 -5.8125 Z M 0.953125 1.078125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.296875 -6.53125 L 1.1875 -6.53125 L 2.5625 -1.015625 L 3.9375 -6.53125 L 4.921875 -6.53125 L 6.296875 -1.015625 L 7.65625 -6.53125 L 8.5625 -6.53125 L 6.921875 0 L 5.8125 0 L 4.4375 -5.671875 L 3.046875 0 L 1.9375 0 Z M 0.296875 -6.53125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-2">
+<path style="stroke:none;" d="M 3.6875 -4.140625 C 3.59375 -4.191406 3.488281 -4.226562 3.375 -4.25 C 3.269531 -4.28125 3.15625 -4.296875 3.03125 -4.296875 C 2.582031 -4.296875 2.234375 -4.144531 1.984375 -3.84375 C 1.742188 -3.550781 1.625 -3.128906 1.625 -2.578125 L 1.625 0 L 0.8125 0 L 0.8125 -4.890625 L 1.625 -4.890625 L 1.625 -4.140625 C 1.789062 -4.429688 2.007812 -4.648438 2.28125 -4.796875 C 2.550781 -4.941406 2.878906 -5.015625 3.265625 -5.015625 C 3.328125 -5.015625 3.390625 -5.007812 3.453125 -5 C 3.515625 -5 3.585938 -4.988281 3.671875 -4.96875 Z M 3.6875 -4.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-3">
+<path style="stroke:none;" d="M 0.84375 -4.890625 L 1.640625 -4.890625 L 1.640625 0 L 0.84375 0 Z M 0.84375 -6.796875 L 1.640625 -6.796875 L 1.640625 -5.78125 L 0.84375 -5.78125 Z M 0.84375 -6.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-4">
+<path style="stroke:none;" d="M 1.640625 -6.28125 L 1.640625 -4.890625 L 3.296875 -4.890625 L 3.296875 -4.265625 L 1.640625 -4.265625 L 1.640625 -1.609375 C 1.640625 -1.210938 1.691406 -0.957031 1.796875 -0.84375 C 1.910156 -0.726562 2.132812 -0.671875 2.46875 -0.671875 L 3.296875 -0.671875 L 3.296875 0 L 2.46875 0 C 1.84375 0 1.410156 -0.113281 1.171875 -0.34375 C 0.941406 -0.570312 0.828125 -0.992188 0.828125 -1.609375 L 0.828125 -4.265625 L 0.234375 -4.265625 L 0.234375 -4.890625 L 0.828125 -4.890625 L 0.828125 -6.28125 Z M 1.640625 -6.28125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-5">
+<path style="stroke:none;" d="M 5.03125 -2.65625 L 5.03125 -2.25 L 1.328125 -2.25 C 1.367188 -1.695312 1.535156 -1.273438 1.828125 -0.984375 C 2.128906 -0.703125 2.546875 -0.5625 3.078125 -0.5625 C 3.390625 -0.5625 3.691406 -0.597656 3.984375 -0.671875 C 4.273438 -0.742188 4.5625 -0.859375 4.84375 -1.015625 L 4.84375 -0.25 C 4.550781 -0.125 4.253906 -0.03125 3.953125 0.03125 C 3.648438 0.09375 3.34375 0.125 3.03125 0.125 C 2.25 0.125 1.628906 -0.0976562 1.171875 -0.546875 C 0.722656 -1.003906 0.5 -1.625 0.5 -2.40625 C 0.5 -3.207031 0.710938 -3.84375 1.140625 -4.3125 C 1.578125 -4.78125 2.160156 -5.015625 2.890625 -5.015625 C 3.546875 -5.015625 4.066406 -4.800781 4.453125 -4.375 C 4.835938 -3.945312 5.03125 -3.375 5.03125 -2.65625 Z M 4.234375 -2.890625 C 4.222656 -3.328125 4.097656 -3.675781 3.859375 -3.9375 C 3.617188 -4.195312 3.300781 -4.328125 2.90625 -4.328125 C 2.457031 -4.328125 2.097656 -4.203125 1.828125 -3.953125 C 1.554688 -3.703125 1.398438 -3.34375 1.359375 -2.875 Z M 4.234375 -2.890625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-6">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph1-7">
+<path style="stroke:none;" d="M 5.765625 -6.03125 L 5.765625 -5.09375 C 5.460938 -5.375 5.144531 -5.582031 4.8125 -5.71875 C 4.476562 -5.851562 4.117188 -5.921875 3.734375 -5.921875 C 2.992188 -5.921875 2.425781 -5.691406 2.03125 -5.234375 C 1.632812 -4.773438 1.4375 -4.113281 1.4375 -3.25 C 1.4375 -2.394531 1.632812 -1.738281 2.03125 -1.28125 C 2.425781 -0.820312 2.992188 -0.59375 3.734375 -0.59375 C 4.117188 -0.59375 4.476562 -0.660156 4.8125 -0.796875 C 5.144531 -0.941406 5.460938 -1.148438 5.765625 -1.421875 L 5.765625 -0.5 C 5.453125 -0.289062 5.125 -0.132812 4.78125 -0.03125 C 4.4375 0.0703125 4.070312 0.125 3.6875 0.125 C 2.695312 0.125 1.914062 -0.175781 1.34375 -0.78125 C 0.78125 -1.382812 0.5 -2.207031 0.5 -3.25 C 0.5 -4.300781 0.78125 -5.128906 1.34375 -5.734375 C 1.914062 -6.335938 2.695312 -6.640625 3.6875 -6.640625 C 4.082031 -6.640625 4.453125 -6.585938 4.796875 -6.484375 C 5.140625 -6.378906 5.460938 -6.226562 5.765625 -6.03125 Z M 5.765625 -6.03125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-8">
+<path style="stroke:none;" d="M 3.0625 -2.46875 C 2.414062 -2.46875 1.96875 -2.390625 1.71875 -2.234375 C 1.46875 -2.085938 1.34375 -1.835938 1.34375 -1.484375 C 1.34375 -1.191406 1.4375 -0.960938 1.625 -0.796875 C 1.8125 -0.628906 2.066406 -0.546875 2.390625 -0.546875 C 2.835938 -0.546875 3.195312 -0.703125 3.46875 -1.015625 C 3.738281 -1.335938 3.875 -1.757812 3.875 -2.28125 L 3.875 -2.46875 Z M 4.671875 -2.796875 L 4.671875 0 L 3.875 0 L 3.875 -0.75 C 3.6875 -0.445312 3.453125 -0.222656 3.171875 -0.078125 C 2.898438 0.0546875 2.566406 0.125 2.171875 0.125 C 1.671875 0.125 1.269531 -0.015625 0.96875 -0.296875 C 0.675781 -0.578125 0.53125 -0.953125 0.53125 -1.421875 C 0.53125 -1.972656 0.710938 -2.390625 1.078125 -2.671875 C 1.453125 -2.953125 2.003906 -3.09375 2.734375 -3.09375 L 3.875 -3.09375 L 3.875 -3.171875 C 3.875 -3.535156 3.75 -3.816406 3.5 -4.015625 C 3.257812 -4.222656 2.921875 -4.328125 2.484375 -4.328125 C 2.203125 -4.328125 1.925781 -4.289062 1.65625 -4.21875 C 1.394531 -4.15625 1.140625 -4.0625 0.890625 -3.9375 L 0.890625 -4.671875 C 1.191406 -4.785156 1.476562 -4.867188 1.75 -4.921875 C 2.03125 -4.984375 2.300781 -5.015625 2.5625 -5.015625 C 3.269531 -5.015625 3.796875 -4.828125 4.140625 -4.453125 C 4.492188 -4.085938 4.671875 -3.535156 4.671875 -2.796875 Z M 4.671875 -2.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-9">
+<path style="stroke:none;" d="M 0.84375 -6.796875 L 1.640625 -6.796875 L 1.640625 0 L 0.84375 0 Z M 0.84375 -6.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-10">
+<path style="stroke:none;" d="M 0.875 -6.53125 L 1.765625 -6.53125 L 1.765625 0 L 0.875 0 Z M 0.875 -6.53125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-11">
+<path style="stroke:none;" d="M 1.765625 -5.796875 L 1.765625 -0.71875 L 2.828125 -0.71875 C 3.722656 -0.71875 4.378906 -0.921875 4.796875 -1.328125 C 5.222656 -1.742188 5.4375 -2.390625 5.4375 -3.265625 C 5.4375 -4.140625 5.222656 -4.78125 4.796875 -5.1875 C 4.378906 -5.59375 3.722656 -5.796875 2.828125 -5.796875 Z M 0.875 -6.53125 L 2.6875 -6.53125 C 3.957031 -6.53125 4.882812 -6.265625 5.46875 -5.734375 C 6.0625 -5.210938 6.359375 -4.390625 6.359375 -3.265625 C 6.359375 -2.140625 6.0625 -1.3125 5.46875 -0.78125 C 4.875 -0.257812 3.945312 0 2.6875 0 L 0.875 0 Z M 0.875 -6.53125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-12">
+<path style="stroke:none;" d="M 2.171875 -3.515625 C 1.910156 -3.273438 1.71875 -3.035156 1.59375 -2.796875 C 1.46875 -2.566406 1.40625 -2.320312 1.40625 -2.0625 C 1.40625 -1.632812 1.554688 -1.28125 1.859375 -1 C 2.171875 -0.71875 2.5625 -0.578125 3.03125 -0.578125 C 3.3125 -0.578125 3.570312 -0.625 3.8125 -0.71875 C 4.050781 -0.8125 4.28125 -0.953125 4.5 -1.140625 Z M 2.796875 -4 L 5.015625 -1.734375 C 5.179688 -1.984375 5.3125 -2.253906 5.40625 -2.546875 C 5.507812 -2.847656 5.570312 -3.164062 5.59375 -3.5 L 6.40625 -3.5 C 6.363281 -3.113281 6.265625 -2.734375 6.109375 -2.359375 C 5.960938 -1.984375 5.753906 -1.613281 5.484375 -1.25 L 6.703125 0 L 5.609375 0 L 4.984375 -0.640625 C 4.679688 -0.378906 4.363281 -0.1875 4.03125 -0.0625 C 3.695312 0.0625 3.335938 0.125 2.953125 0.125 C 2.253906 0.125 1.679688 -0.0703125 1.234375 -0.46875 C 0.785156 -0.875 0.5625 -1.390625 0.5625 -2.015625 C 0.5625 -2.390625 0.660156 -2.738281 0.859375 -3.0625 C 1.054688 -3.394531 1.347656 -3.703125 1.734375 -3.984375 C 1.597656 -4.171875 1.492188 -4.351562 1.421875 -4.53125 C 1.347656 -4.71875 1.3125 -4.898438 1.3125 -5.078125 C 1.3125 -5.546875 1.472656 -5.921875 1.796875 -6.203125 C 2.117188 -6.492188 2.546875 -6.640625 3.078125 -6.640625 C 3.316406 -6.640625 3.554688 -6.613281 3.796875 -6.5625 C 4.046875 -6.507812 4.289062 -6.429688 4.53125 -6.328125 L 4.53125 -5.53125 C 4.28125 -5.664062 4.039062 -5.769531 3.8125 -5.84375 C 3.582031 -5.914062 3.367188 -5.953125 3.171875 -5.953125 C 2.859375 -5.953125 2.609375 -5.867188 2.421875 -5.703125 C 2.234375 -5.546875 2.140625 -5.335938 2.140625 -5.078125 C 2.140625 -4.929688 2.179688 -4.78125 2.265625 -4.625 C 2.347656 -4.476562 2.523438 -4.269531 2.796875 -4 Z M 2.796875 -4 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-13">
+<path style="stroke:none;" d="M 1.765625 -5.796875 L 1.765625 -3.34375 L 2.875 -3.34375 C 3.28125 -3.34375 3.59375 -3.445312 3.8125 -3.65625 C 4.039062 -3.875 4.15625 -4.179688 4.15625 -4.578125 C 4.15625 -4.960938 4.039062 -5.257812 3.8125 -5.46875 C 3.59375 -5.6875 3.28125 -5.796875 2.875 -5.796875 Z M 0.875 -6.53125 L 2.875 -6.53125 C 3.601562 -6.53125 4.15625 -6.363281 4.53125 -6.03125 C 4.90625 -5.695312 5.09375 -5.210938 5.09375 -4.578125 C 5.09375 -3.929688 4.90625 -3.441406 4.53125 -3.109375 C 4.15625 -2.785156 3.601562 -2.625 2.875 -2.625 L 1.765625 -2.625 L 1.765625 0 L 0.875 0 Z M 0.875 -6.53125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-14">
+<path style="stroke:none;" d="M 4.65625 -3.953125 C 4.851562 -4.316406 5.09375 -4.582031 5.375 -4.75 C 5.65625 -4.925781 5.984375 -5.015625 6.359375 -5.015625 C 6.867188 -5.015625 7.257812 -4.832031 7.53125 -4.46875 C 7.8125 -4.113281 7.953125 -3.609375 7.953125 -2.953125 L 7.953125 0 L 7.15625 0 L 7.15625 -2.921875 C 7.15625 -3.398438 7.070312 -3.75 6.90625 -3.96875 C 6.738281 -4.195312 6.484375 -4.3125 6.140625 -4.3125 C 5.722656 -4.3125 5.394531 -4.171875 5.15625 -3.890625 C 4.914062 -3.617188 4.796875 -3.242188 4.796875 -2.765625 L 4.796875 0 L 3.984375 0 L 3.984375 -2.921875 C 3.984375 -3.398438 3.898438 -3.75 3.734375 -3.96875 C 3.566406 -4.195312 3.3125 -4.3125 2.96875 -4.3125 C 2.550781 -4.3125 2.222656 -4.171875 1.984375 -3.890625 C 1.742188 -3.617188 1.625 -3.242188 1.625 -2.765625 L 1.625 0 L 0.8125 0 L 0.8125 -4.890625 L 1.625 -4.890625 L 1.625 -4.140625 C 1.800781 -4.429688 2.019531 -4.648438 2.28125 -4.796875 C 2.539062 -4.941406 2.847656 -5.015625 3.203125 -5.015625 C 3.554688 -5.015625 3.859375 -4.921875 4.109375 -4.734375 C 4.359375 -4.554688 4.539062 -4.296875 4.65625 -3.953125 Z M 4.65625 -3.953125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-15">
+<path style="stroke:none;" d="M 3.96875 -4.75 L 3.96875 -3.984375 C 3.738281 -4.109375 3.5 -4.195312 3.25 -4.25 C 3.007812 -4.3125 2.757812 -4.34375 2.5 -4.34375 C 2.09375 -4.34375 1.789062 -4.28125 1.59375 -4.15625 C 1.394531 -4.03125 1.296875 -3.847656 1.296875 -3.609375 C 1.296875 -3.421875 1.367188 -3.269531 1.515625 -3.15625 C 1.660156 -3.050781 1.945312 -2.953125 2.375 -2.859375 L 2.65625 -2.796875 C 3.21875 -2.679688 3.617188 -2.507812 3.859375 -2.28125 C 4.109375 -2.0625 4.234375 -1.75 4.234375 -1.34375 C 4.234375 -0.894531 4.050781 -0.535156 3.6875 -0.265625 C 3.320312 -0.00390625 2.828125 0.125 2.203125 0.125 C 1.941406 0.125 1.664062 0.0976562 1.375 0.046875 C 1.09375 -0.00390625 0.796875 -0.078125 0.484375 -0.171875 L 0.484375 -1.015625 C 0.785156 -0.859375 1.078125 -0.738281 1.359375 -0.65625 C 1.648438 -0.582031 1.9375 -0.546875 2.21875 -0.546875 C 2.601562 -0.546875 2.894531 -0.609375 3.09375 -0.734375 C 3.300781 -0.867188 3.40625 -1.054688 3.40625 -1.296875 C 3.40625 -1.515625 3.328125 -1.679688 3.171875 -1.796875 C 3.023438 -1.910156 2.707031 -2.019531 2.21875 -2.125 L 1.9375 -2.1875 C 1.4375 -2.300781 1.070312 -2.460938 0.84375 -2.671875 C 0.625 -2.890625 0.515625 -3.191406 0.515625 -3.578125 C 0.515625 -4.035156 0.675781 -4.390625 1 -4.640625 C 1.332031 -4.890625 1.800781 -5.015625 2.40625 -5.015625 C 2.695312 -5.015625 2.972656 -4.992188 3.234375 -4.953125 C 3.503906 -4.910156 3.75 -4.84375 3.96875 -4.75 Z M 3.96875 -4.75 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-16">
+<path style="stroke:none;" d="M 0.8125 -6.796875 L 1.625 -6.796875 L 1.625 -2.78125 L 4.015625 -4.890625 L 5.046875 -4.890625 L 2.453125 -2.609375 L 5.15625 0 L 4.109375 0 L 1.625 -2.390625 L 1.625 0 L 0.8125 0 Z M 0.8125 -6.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-17">
+<path style="stroke:none;" d="M 0.765625 -1.9375 L 0.765625 -4.890625 L 1.5625 -4.890625 L 1.5625 -1.96875 C 1.5625 -1.5 1.648438 -1.148438 1.828125 -0.921875 C 2.015625 -0.691406 2.289062 -0.578125 2.65625 -0.578125 C 3.082031 -0.578125 3.421875 -0.710938 3.671875 -0.984375 C 3.929688 -1.265625 4.0625 -1.644531 4.0625 -2.125 L 4.0625 -4.890625 L 4.859375 -4.890625 L 4.859375 0 L 4.0625 0 L 4.0625 -0.75 C 3.863281 -0.457031 3.632812 -0.238281 3.375 -0.09375 C 3.113281 0.0507812 2.816406 0.125 2.484375 0.125 C 1.921875 0.125 1.492188 -0.046875 1.203125 -0.390625 C 0.910156 -0.742188 0.765625 -1.257812 0.765625 -1.9375 Z M 2.78125 -5.015625 Z M 2.78125 -5.015625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-18">
+<path style="stroke:none;" d="M 1.625 -0.734375 L 1.625 1.859375 L 0.8125 1.859375 L 0.8125 -4.890625 L 1.625 -4.890625 L 1.625 -4.15625 C 1.789062 -4.445312 2.003906 -4.660156 2.265625 -4.796875 C 2.523438 -4.941406 2.832031 -5.015625 3.1875 -5.015625 C 3.78125 -5.015625 4.257812 -4.773438 4.625 -4.296875 C 5 -3.828125 5.1875 -3.207031 5.1875 -2.4375 C 5.1875 -1.675781 5 -1.054688 4.625 -0.578125 C 4.257812 -0.109375 3.78125 0.125 3.1875 0.125 C 2.832031 0.125 2.523438 0.0546875 2.265625 -0.078125 C 2.003906 -0.222656 1.789062 -0.441406 1.625 -0.734375 Z M 4.359375 -2.4375 C 4.359375 -3.03125 4.234375 -3.492188 3.984375 -3.828125 C 3.742188 -4.171875 3.410156 -4.34375 2.984375 -4.34375 C 2.566406 -4.34375 2.234375 -4.171875 1.984375 -3.828125 C 1.742188 -3.492188 1.625 -3.03125 1.625 -2.4375 C 1.625 -1.851562 1.742188 -1.390625 1.984375 -1.046875 C 2.234375 -0.710938 2.566406 -0.546875 2.984375 -0.546875 C 3.410156 -0.546875 3.742188 -0.710938 3.984375 -1.046875 C 4.234375 -1.390625 4.359375 -1.851562 4.359375 -2.4375 Z M 4.359375 -2.4375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-19">
+<path style="stroke:none;" d="M 0.875 -6.53125 L 5 -6.53125 L 5 -5.78125 L 1.765625 -5.78125 L 1.765625 -3.84375 L 4.875 -3.84375 L 4.875 -3.109375 L 1.765625 -3.109375 L 1.765625 -0.75 L 5.078125 -0.75 L 5.078125 0 L 0.875 0 Z M 0.875 -6.53125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-20">
+<path style="stroke:none;" d="M 4.375 -4.703125 L 4.375 -3.953125 C 4.144531 -4.078125 3.914062 -4.171875 3.6875 -4.234375 C 3.457031 -4.296875 3.222656 -4.328125 2.984375 -4.328125 C 2.460938 -4.328125 2.054688 -4.160156 1.765625 -3.828125 C 1.484375 -3.503906 1.34375 -3.039062 1.34375 -2.4375 C 1.34375 -1.84375 1.484375 -1.378906 1.765625 -1.046875 C 2.054688 -0.722656 2.460938 -0.5625 2.984375 -0.5625 C 3.222656 -0.5625 3.457031 -0.59375 3.6875 -0.65625 C 3.914062 -0.71875 4.144531 -0.8125 4.375 -0.9375 L 4.375 -0.1875 C 4.144531 -0.0820312 3.910156 -0.00390625 3.671875 0.046875 C 3.429688 0.0976562 3.175781 0.125 2.90625 0.125 C 2.164062 0.125 1.578125 -0.101562 1.140625 -0.5625 C 0.710938 -1.03125 0.5 -1.65625 0.5 -2.4375 C 0.5 -3.238281 0.71875 -3.867188 1.15625 -4.328125 C 1.59375 -4.785156 2.191406 -5.015625 2.953125 -5.015625 C 3.203125 -5.015625 3.441406 -4.988281 3.671875 -4.9375 C 3.910156 -4.882812 4.144531 -4.804688 4.375 -4.703125 Z M 4.375 -4.703125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-21">
+<path style="stroke:none;" d="M 4.0625 -4.15625 L 4.0625 -6.796875 L 4.875 -6.796875 L 4.875 0 L 4.0625 0 L 4.0625 -0.734375 C 3.894531 -0.441406 3.679688 -0.222656 3.421875 -0.078125 C 3.160156 0.0546875 2.851562 0.125 2.5 0.125 C 1.90625 0.125 1.421875 -0.109375 1.046875 -0.578125 C 0.679688 -1.054688 0.5 -1.675781 0.5 -2.4375 C 0.5 -3.207031 0.679688 -3.828125 1.046875 -4.296875 C 1.421875 -4.773438 1.90625 -5.015625 2.5 -5.015625 C 2.851562 -5.015625 3.160156 -4.941406 3.421875 -4.796875 C 3.679688 -4.660156 3.894531 -4.445312 4.0625 -4.15625 Z M 1.328125 -2.4375 C 1.328125 -1.851562 1.445312 -1.390625 1.6875 -1.046875 C 1.925781 -0.710938 2.257812 -0.546875 2.6875 -0.546875 C 3.113281 -0.546875 3.445312 -0.710938 3.6875 -1.046875 C 3.9375 -1.390625 4.0625 -1.851562 4.0625 -2.4375 C 4.0625 -3.03125 3.9375 -3.492188 3.6875 -3.828125 C 3.445312 -4.171875 3.113281 -4.34375 2.6875 -4.34375 C 2.257812 -4.34375 1.925781 -4.171875 1.6875 -3.828125 C 1.445312 -3.492188 1.328125 -3.03125 1.328125 -2.4375 Z M 1.328125 -2.4375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-22">
+<path style="stroke:none;" d="M 4.90625 -2.953125 L 4.90625 0 L 4.109375 0 L 4.109375 -2.921875 C 4.109375 -3.390625 4.015625 -3.738281 3.828125 -3.96875 C 3.648438 -4.195312 3.382812 -4.3125 3.03125 -4.3125 C 2.59375 -4.3125 2.25 -4.171875 2 -3.890625 C 1.75 -3.617188 1.625 -3.242188 1.625 -2.765625 L 1.625 0 L 0.8125 0 L 0.8125 -4.890625 L 1.625 -4.890625 L 1.625 -4.140625 C 1.8125 -4.429688 2.035156 -4.648438 2.296875 -4.796875 C 2.554688 -4.941406 2.859375 -5.015625 3.203125 -5.015625 C 3.765625 -5.015625 4.1875 -4.835938 4.46875 -4.484375 C 4.757812 -4.140625 4.90625 -3.628906 4.90625 -2.953125 Z M 4.90625 -2.953125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-23">
+<path style="stroke:none;" d="M 4.0625 -2.5 C 4.0625 -3.082031 3.941406 -3.535156 3.703125 -3.859375 C 3.460938 -4.179688 3.125 -4.34375 2.6875 -4.34375 C 2.257812 -4.34375 1.925781 -4.179688 1.6875 -3.859375 C 1.445312 -3.535156 1.328125 -3.082031 1.328125 -2.5 C 1.328125 -1.925781 1.445312 -1.476562 1.6875 -1.15625 C 1.925781 -0.832031 2.257812 -0.671875 2.6875 -0.671875 C 3.125 -0.671875 3.460938 -0.832031 3.703125 -1.15625 C 3.941406 -1.476562 4.0625 -1.925781 4.0625 -2.5 Z M 4.875 -0.609375 C 4.875 0.222656 4.6875 0.84375 4.3125 1.25 C 3.945312 1.65625 3.378906 1.859375 2.609375 1.859375 C 2.328125 1.859375 2.0625 1.835938 1.8125 1.796875 C 1.5625 1.753906 1.316406 1.691406 1.078125 1.609375 L 1.078125 0.828125 C 1.316406 0.953125 1.550781 1.046875 1.78125 1.109375 C 2.007812 1.171875 2.242188 1.203125 2.484375 1.203125 C 3.015625 1.203125 3.410156 1.0625 3.671875 0.78125 C 3.929688 0.507812 4.0625 0.09375 4.0625 -0.46875 L 4.0625 -0.859375 C 3.894531 -0.566406 3.679688 -0.347656 3.421875 -0.203125 C 3.160156 -0.0664062 2.851562 0 2.5 0 C 1.894531 0 1.410156 -0.226562 1.046875 -0.6875 C 0.679688 -1.144531 0.5 -1.75 0.5 -2.5 C 0.5 -3.257812 0.679688 -3.867188 1.046875 -4.328125 C 1.410156 -4.785156 1.894531 -5.015625 2.5 -5.015625 C 2.851562 -5.015625 3.160156 -4.941406 3.421875 -4.796875 C 3.679688 -4.648438 3.894531 -4.4375 4.0625 -4.15625 L 4.0625 -4.890625 L 4.875 -4.890625 Z M 4.875 -0.609375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-24">
+<path style="stroke:none;" d="M 4.796875 -6.3125 L 4.796875 -5.453125 C 4.453125 -5.609375 4.128906 -5.722656 3.828125 -5.796875 C 3.535156 -5.878906 3.253906 -5.921875 2.984375 -5.921875 C 2.503906 -5.921875 2.132812 -5.828125 1.875 -5.640625 C 1.613281 -5.460938 1.484375 -5.203125 1.484375 -4.859375 C 1.484375 -4.566406 1.566406 -4.347656 1.734375 -4.203125 C 1.910156 -4.054688 2.238281 -3.9375 2.71875 -3.84375 L 3.25 -3.734375 C 3.914062 -3.609375 4.40625 -3.382812 4.71875 -3.0625 C 5.03125 -2.75 5.1875 -2.328125 5.1875 -1.796875 C 5.1875 -1.171875 4.972656 -0.691406 4.546875 -0.359375 C 4.117188 -0.0351562 3.5 0.125 2.6875 0.125 C 2.375 0.125 2.039062 0.0859375 1.6875 0.015625 C 1.34375 -0.046875 0.984375 -0.144531 0.609375 -0.28125 L 0.609375 -1.203125 C 0.972656 -0.992188 1.328125 -0.835938 1.671875 -0.734375 C 2.015625 -0.640625 2.351562 -0.59375 2.6875 -0.59375 C 3.1875 -0.59375 3.570312 -0.691406 3.84375 -0.890625 C 4.125 -1.085938 4.265625 -1.367188 4.265625 -1.734375 C 4.265625 -2.054688 4.164062 -2.304688 3.96875 -2.484375 C 3.769531 -2.671875 3.445312 -2.804688 3 -2.890625 L 2.46875 -3 C 1.800781 -3.132812 1.320312 -3.335938 1.03125 -3.609375 C 0.738281 -3.890625 0.59375 -4.28125 0.59375 -4.78125 C 0.59375 -5.351562 0.796875 -5.804688 1.203125 -6.140625 C 1.609375 -6.472656 2.164062 -6.640625 2.875 -6.640625 C 3.1875 -6.640625 3.5 -6.613281 3.8125 -6.5625 C 4.132812 -6.507812 4.460938 -6.425781 4.796875 -6.3125 Z M 4.796875 -6.3125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-25">
+<path style="stroke:none;" d="M 2.5625 0 L 0.0625 -6.53125 L 1 -6.53125 L 3.0625 -1.03125 L 5.125 -6.53125 L 6.046875 -6.53125 L 3.5625 0 Z M 2.5625 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-26">
+<path style="stroke:none;" d="M 0.875 -6.53125 L 4.625 -6.53125 L 4.625 -5.78125 L 1.765625 -5.78125 L 1.765625 -3.859375 L 4.34375 -3.859375 L 4.34375 -3.109375 L 1.765625 -3.109375 L 1.765625 0 L 0.875 0 Z M 0.875 -6.53125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-27">
+<path style="stroke:none;" d="M 3.96875 -3.0625 C 4.164062 -3 4.351562 -2.859375 4.53125 -2.640625 C 4.707031 -2.429688 4.882812 -2.144531 5.0625 -1.78125 L 5.96875 0 L 5.015625 0 L 4.171875 -1.671875 C 3.960938 -2.109375 3.753906 -2.398438 3.546875 -2.546875 C 3.347656 -2.691406 3.070312 -2.765625 2.71875 -2.765625 L 1.765625 -2.765625 L 1.765625 0 L 0.875 0 L 0.875 -6.53125 L 2.875 -6.53125 C 3.613281 -6.53125 4.164062 -6.375 4.53125 -6.0625 C 4.90625 -5.75 5.09375 -5.273438 5.09375 -4.640625 C 5.09375 -4.234375 4.992188 -3.894531 4.796875 -3.625 C 4.609375 -3.351562 4.332031 -3.164062 3.96875 -3.0625 Z M 1.765625 -5.796875 L 1.765625 -3.484375 L 2.875 -3.484375 C 3.300781 -3.484375 3.617188 -3.582031 3.828125 -3.78125 C 4.046875 -3.976562 4.15625 -4.265625 4.15625 -4.640625 C 4.15625 -5.023438 4.046875 -5.3125 3.828125 -5.5 C 3.617188 -5.695312 3.300781 -5.796875 2.875 -5.796875 Z M 1.765625 -5.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-28">
+<path style="stroke:none;" d="M -0.03125 -6.53125 L 5.5 -6.53125 L 5.5 -5.78125 L 3.171875 -5.78125 L 3.171875 0 L 2.296875 0 L 2.296875 -5.78125 L -0.03125 -5.78125 Z M -0.03125 -6.53125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-29">
+<path style="stroke:none;" d="M 3.53125 -5.921875 C 2.882812 -5.921875 2.375 -5.679688 2 -5.203125 C 1.625 -4.734375 1.4375 -4.082031 1.4375 -3.25 C 1.4375 -2.4375 1.625 -1.789062 2 -1.3125 C 2.375 -0.832031 2.882812 -0.59375 3.53125 -0.59375 C 4.164062 -0.59375 4.671875 -0.832031 5.046875 -1.3125 C 5.421875 -1.789062 5.609375 -2.4375 5.609375 -3.25 C 5.609375 -4.082031 5.421875 -4.734375 5.046875 -5.203125 C 4.671875 -5.679688 4.164062 -5.921875 3.53125 -5.921875 Z M 3.53125 -6.640625 C 4.445312 -6.640625 5.175781 -6.332031 5.71875 -5.71875 C 6.269531 -5.101562 6.546875 -4.28125 6.546875 -3.25 C 6.546875 -2.226562 6.269531 -1.410156 5.71875 -0.796875 C 5.175781 -0.179688 4.445312 0.125 3.53125 0.125 C 2.613281 0.125 1.878906 -0.175781 1.328125 -0.78125 C 0.773438 -1.394531 0.5 -2.21875 0.5 -3.25 C 0.5 -4.28125 0.773438 -5.101562 1.328125 -5.71875 C 1.878906 -6.332031 2.613281 -6.640625 3.53125 -6.640625 Z M 3.53125 -6.640625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-30">
+<path style="stroke:none;" d="M 4.90625 -2.953125 L 4.90625 0 L 4.109375 0 L 4.109375 -2.921875 C 4.109375 -3.390625 4.015625 -3.738281 3.828125 -3.96875 C 3.648438 -4.195312 3.382812 -4.3125 3.03125 -4.3125 C 2.59375 -4.3125 2.25 -4.171875 2 -3.890625 C 1.75 -3.617188 1.625 -3.242188 1.625 -2.765625 L 1.625 0 L 0.8125 0 L 0.8125 -6.796875 L 1.625 -6.796875 L 1.625 -4.140625 C 1.8125 -4.429688 2.035156 -4.648438 2.296875 -4.796875 C 2.554688 -4.941406 2.859375 -5.015625 3.203125 -5.015625 C 3.765625 -5.015625 4.1875 -4.835938 4.46875 -4.484375 C 4.757812 -4.140625 4.90625 -3.628906 4.90625 -2.953125 Z M 4.90625 -2.953125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-31">
+<path style="stroke:none;" d="M 3.328125 -6.796875 L 3.328125 -6.140625 L 2.546875 -6.140625 C 2.265625 -6.140625 2.066406 -6.078125 1.953125 -5.953125 C 1.835938 -5.835938 1.78125 -5.628906 1.78125 -5.328125 L 1.78125 -4.890625 L 3.109375 -4.890625 L 3.109375 -4.265625 L 1.78125 -4.265625 L 1.78125 0 L 0.96875 0 L 0.96875 -4.265625 L 0.203125 -4.265625 L 0.203125 -4.890625 L 0.96875 -4.890625 L 0.96875 -5.234375 C 0.96875 -5.785156 1.09375 -6.179688 1.34375 -6.421875 C 1.601562 -6.671875 2.007812 -6.796875 2.5625 -6.796875 Z M 3.328125 -6.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-32">
+<path style="stroke:none;" d="M 2.734375 -4.328125 C 2.304688 -4.328125 1.96875 -4.160156 1.71875 -3.828125 C 1.46875 -3.492188 1.34375 -3.03125 1.34375 -2.4375 C 1.34375 -1.851562 1.46875 -1.394531 1.71875 -1.0625 C 1.96875 -0.726562 2.304688 -0.5625 2.734375 -0.5625 C 3.171875 -0.5625 3.515625 -0.726562 3.765625 -1.0625 C 4.015625 -1.394531 4.140625 -1.851562 4.140625 -2.4375 C 4.140625 -3.019531 4.015625 -3.476562 3.765625 -3.8125 C 3.515625 -4.15625 3.171875 -4.328125 2.734375 -4.328125 Z M 2.734375 -5.015625 C 3.441406 -5.015625 3.992188 -4.785156 4.390625 -4.328125 C 4.785156 -3.878906 4.984375 -3.25 4.984375 -2.4375 C 4.984375 -1.632812 4.785156 -1.003906 4.390625 -0.546875 C 3.992188 -0.0976562 3.441406 0.125 2.734375 0.125 C 2.035156 0.125 1.488281 -0.0976562 1.09375 -0.546875 C 0.695312 -1.003906 0.5 -1.632812 0.5 -2.4375 C 0.5 -3.25 0.695312 -3.878906 1.09375 -4.328125 C 1.488281 -4.785156 2.035156 -5.015625 2.734375 -5.015625 Z M 2.734375 -5.015625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-33">
+<path style="stroke:none;" d="M 1.109375 -0.75 L 2.546875 -0.75 L 2.546875 -5.71875 L 0.984375 -5.40625 L 0.984375 -6.21875 L 2.546875 -6.53125 L 3.421875 -6.53125 L 3.421875 -0.75 L 4.875 -0.75 L 4.875 0 L 1.109375 0 Z M 1.109375 -0.75 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-34">
+<path style="stroke:none;" d="M 3.0625 -5.65625 L 1.859375 -2.40625 L 4.265625 -2.40625 Z M 2.5625 -6.53125 L 3.5625 -6.53125 L 6.046875 0 L 5.125 0 L 4.53125 -1.671875 L 1.59375 -1.671875 L 1 0 L 0.0625 0 Z M 2.5625 -6.53125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-35">
+<path style="stroke:none;" d="M 1.046875 -1.109375 L 1.96875 -1.109375 L 1.96875 -0.359375 L 1.25 1.046875 L 0.6875 1.046875 L 1.046875 -0.359375 Z M 1.046875 -1.109375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-36">
+<path style="stroke:none;" d="M 0.375 -4.890625 L 1.1875 -4.890625 L 2.1875 -1.078125 L 3.1875 -4.890625 L 4.140625 -4.890625 L 5.140625 -1.078125 L 6.140625 -4.890625 L 6.953125 -4.890625 L 5.671875 0 L 4.71875 0 L 3.65625 -4.015625 L 2.609375 0 L 1.65625 0 Z M 0.375 -4.890625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-37">
+<path style="stroke:none;" d="M 0.953125 -1.109375 L 1.875 -1.109375 L 1.875 0 L 0.953125 0 Z M 0.953125 -1.109375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-38">
+<path style="stroke:none;" d="M 2.875 0.453125 C 2.65625 1.035156 2.4375 1.414062 2.21875 1.59375 C 2 1.769531 1.707031 1.859375 1.34375 1.859375 L 0.703125 1.859375 L 0.703125 1.1875 L 1.1875 1.1875 C 1.40625 1.1875 1.570312 1.132812 1.6875 1.03125 C 1.8125 0.925781 1.953125 0.675781 2.109375 0.28125 L 2.25 -0.078125 L 0.265625 -4.890625 L 1.125 -4.890625 L 2.65625 -1.0625 L 4.171875 -4.890625 L 5.03125 -4.890625 Z M 2.875 0.453125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-39">
+<path style="stroke:none;" d="M 4.359375 -2.4375 C 4.359375 -3.03125 4.234375 -3.492188 3.984375 -3.828125 C 3.742188 -4.171875 3.410156 -4.34375 2.984375 -4.34375 C 2.566406 -4.34375 2.234375 -4.171875 1.984375 -3.828125 C 1.742188 -3.492188 1.625 -3.03125 1.625 -2.4375 C 1.625 -1.851562 1.742188 -1.390625 1.984375 -1.046875 C 2.234375 -0.710938 2.566406 -0.546875 2.984375 -0.546875 C 3.410156 -0.546875 3.742188 -0.710938 3.984375 -1.046875 C 4.234375 -1.390625 4.359375 -1.851562 4.359375 -2.4375 Z M 1.625 -4.15625 C 1.789062 -4.445312 2.003906 -4.660156 2.265625 -4.796875 C 2.523438 -4.941406 2.832031 -5.015625 3.1875 -5.015625 C 3.78125 -5.015625 4.257812 -4.773438 4.625 -4.296875 C 5 -3.828125 5.1875 -3.207031 5.1875 -2.4375 C 5.1875 -1.675781 5 -1.054688 4.625 -0.578125 C 4.257812 -0.109375 3.78125 0.125 3.1875 0.125 C 2.832031 0.125 2.523438 0.0546875 2.265625 -0.078125 C 2.003906 -0.222656 1.789062 -0.441406 1.625 -0.734375 L 1.625 0 L 0.8125 0 L 0.8125 -6.796875 L 1.625 -6.796875 Z M 1.625 -4.15625 "/>
+</symbol>
+</g>
+</defs>
+<g id="surface631297">
+<rect x="0" y="0" width="475" height="288" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:0.0714286;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.4,0.4;stroke-miterlimit:10;" d="M 36.000022 23.999933 L 36.000022 25.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<path style="fill:none;stroke-width:0.0714286;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.4,0.4;stroke-miterlimit:10;" d="M 36.000022 41.999933 L 36.000022 42.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 35.650134 25.999933 L 36.35019 25.999933 L 36.35019 41.999933 L 35.650134 41.999933 Z M 35.650134 25.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="5.128906" y="8.332492"/>
+  <use xlink:href="#glyph0-2" x="11.704508" y="8.332492"/>
+  <use xlink:href="#glyph0-3" x="17.750705" y="8.332492"/>
+  <use xlink:href="#glyph0-3" x="20.82194" y="8.332492"/>
+  <use xlink:href="#glyph0-4" x="23.893175" y="8.332492"/>
+  <use xlink:href="#glyph0-5" x="29.969943" y="8.332492"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-6" x="0.015625" y="19.535617"/>
+  <use xlink:href="#glyph0-7" x="4.110541" y="19.535617"/>
+  <use xlink:href="#glyph0-8" x="9.421685" y="19.535617"/>
+  <use xlink:href="#glyph0-5" x="15.577257" y="19.535617"/>
+  <use xlink:href="#glyph0-4" x="19.995931" y="19.535617"/>
+  <use xlink:href="#glyph0-9" x="26.072699" y="19.535617"/>
+  <use xlink:href="#glyph0-10" x="29.191975" y="19.535617"/>
+  <use xlink:href="#glyph0-11" x="35.42635" y="19.535617"/>
+</g>
+<path style="fill:none;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 46.150134 26.499933 L 36.349911 26.499933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 46.150134 26.749933 L 46.950078 26.499933 L 46.150134 26.249933 Z M 46.150134 26.749933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="32.769531" y="66.469211"/>
+  <use xlink:href="#glyph1-2" x="41.226725" y="66.469211"/>
+  <use xlink:href="#glyph1-3" x="44.910536" y="66.469211"/>
+  <use xlink:href="#glyph1-4" x="47.399956" y="66.469211"/>
+  <use xlink:href="#glyph1-5" x="50.913059" y="66.469211"/>
+  <use xlink:href="#glyph1-6" x="56.425482" y="66.469211"/>
+  <use xlink:href="#glyph1-7" x="59.2736" y="66.469211"/>
+  <use xlink:href="#glyph1-8" x="65.529812" y="66.469211"/>
+  <use xlink:href="#glyph1-9" x="71.020399" y="66.469211"/>
+  <use xlink:href="#glyph1-9" x="73.509819" y="66.469211"/>
+  <use xlink:href="#glyph1-6" x="75.99924" y="66.469211"/>
+  <use xlink:href="#glyph1-10" x="78.847357" y="66.469211"/>
+  <use xlink:href="#glyph1-11" x="81.489827" y="66.469211"/>
+  <use xlink:href="#glyph1-6" x="88.389186" y="66.469211"/>
+  <use xlink:href="#glyph1-12" x="91.237304" y="66.469211"/>
+  <use xlink:href="#glyph1-6" x="98.224201" y="66.469211"/>
+  <use xlink:href="#glyph1-13" x="101.072319" y="66.469211"/>
+  <use xlink:href="#glyph1-8" x="106.073187" y="66.469211"/>
+  <use xlink:href="#glyph1-2" x="111.563774" y="66.469211"/>
+  <use xlink:href="#glyph1-8" x="115.247584" y="66.469211"/>
+  <use xlink:href="#glyph1-14" x="120.738171" y="66.469211"/>
+  <use xlink:href="#glyph1-5" x="129.466334" y="66.469211"/>
+  <use xlink:href="#glyph1-4" x="134.978758" y="66.469211"/>
+  <use xlink:href="#glyph1-5" x="138.49186" y="66.469211"/>
+  <use xlink:href="#glyph1-2" x="144.004284" y="66.469211"/>
+  <use xlink:href="#glyph1-15" x="147.688095" y="66.469211"/>
+</g>
+<path style="fill:none;stroke-width:0.0714286;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.4,0.4;stroke-miterlimit:10;" d="M 67.000023 26.999933 L 67.000023 27.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<path style="fill:none;stroke-width:0.0714286;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.4,0.4;stroke-miterlimit:10;" d="M 67.000023 28.999933 L 67.000023 42.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66.650134 27.999933 L 67.35019 27.999933 L 67.35019 28.999933 L 66.650134 28.999933 Z M 66.650134 27.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-12" x="397.46875" y="8.332492"/>
+  <use xlink:href="#glyph0-13" x="403.589382" y="8.332492"/>
+  <use xlink:href="#glyph0-14" x="410.003011" y="8.332492"/>
+  <use xlink:href="#glyph0-7" x="413.074246" y="8.332492"/>
+  <use xlink:href="#glyph0-2" x="418.385389" y="8.332492"/>
+  <use xlink:href="#glyph0-5" x="424.431586" y="8.332492"/>
+  <use xlink:href="#glyph0-15" x="428.85026" y="8.332492"/>
+  <use xlink:href="#glyph0-14" x="435.263888" y="8.332492"/>
+  <use xlink:href="#glyph0-16" x="438.335123" y="8.332492"/>
+  <use xlink:href="#glyph0-17" x="444.713812" y="8.332492"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-6" x="406.015625" y="19.535617"/>
+  <use xlink:href="#glyph0-7" x="410.110541" y="19.535617"/>
+  <use xlink:href="#glyph0-8" x="415.421685" y="19.535617"/>
+  <use xlink:href="#glyph0-5" x="421.577257" y="19.535617"/>
+  <use xlink:href="#glyph0-4" x="425.995931" y="19.535617"/>
+  <use xlink:href="#glyph0-9" x="432.072699" y="19.535617"/>
+  <use xlink:href="#glyph0-18" x="435.191975" y="19.535617"/>
+  <use xlink:href="#glyph0-11" x="441.42635" y="19.535617"/>
+</g>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 47.000023 25.999933 L 49.000023 25.999933 L 49.000023 26.999933 L 47.000023 26.999933 Z M 47.000023 25.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-10" x="183" y="59.398899"/>
+  <use xlink:href="#glyph1-11" x="185.64247" y="59.398899"/>
+</g>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.000023 25.999933 L 55.000023 25.999933 L 55.000023 26.999933 L 49.000023 26.999933 Z M 49.000023 25.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-13" x="218.121094" y="59.398899"/>
+  <use xlink:href="#glyph1-8" x="223.121962" y="59.398899"/>
+  <use xlink:href="#glyph1-2" x="228.612549" y="59.398899"/>
+  <use xlink:href="#glyph1-8" x="232.296359" y="59.398899"/>
+  <use xlink:href="#glyph1-14" x="237.786946" y="59.398899"/>
+  <use xlink:href="#glyph1-5" x="246.515109" y="59.398899"/>
+  <use xlink:href="#glyph1-4" x="252.027533" y="59.398899"/>
+  <use xlink:href="#glyph1-5" x="255.540635" y="59.398899"/>
+  <use xlink:href="#glyph1-2" x="261.053059" y="59.398899"/>
+  <use xlink:href="#glyph1-15" x="264.73687" y="59.398899"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-19" x="189.945312" y="19.535617"/>
+  <use xlink:href="#glyph0-20" x="196.398437" y="19.535617"/>
+  <use xlink:href="#glyph0-2" x="202.777127" y="19.535617"/>
+  <use xlink:href="#glyph0-5" x="208.823323" y="19.535617"/>
+  <use xlink:href="#glyph0-4" x="213.241997" y="19.535617"/>
+  <use xlink:href="#glyph0-15" x="219.318766" y="19.535617"/>
+  <use xlink:href="#glyph0-9" x="225.732394" y="19.535617"/>
+  <use xlink:href="#glyph0-21" x="228.85167" y="19.535617"/>
+  <use xlink:href="#glyph0-4" x="237.767821" y="19.535617"/>
+  <use xlink:href="#glyph0-17" x="243.84459" y="19.535617"/>
+  <use xlink:href="#glyph0-8" x="253.180771" y="19.535617"/>
+  <use xlink:href="#glyph0-5" x="259.336343" y="19.535617"/>
+  <use xlink:href="#glyph0-22" x="263.755017" y="19.535617"/>
+</g>
+<path style="fill:none;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.799967 27.999933 L 36.349911 27.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.799967 28.249933 L 66.599911 27.999933 L 65.799967 27.749933 Z M 65.799967 28.249933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="165.878906" y="88.867649"/>
+  <use xlink:href="#glyph1-8" x="174.165581" y="88.867649"/>
+  <use xlink:href="#glyph1-16" x="179.656168" y="88.867649"/>
+  <use xlink:href="#glyph1-5" x="184.525634" y="88.867649"/>
+  <use xlink:href="#glyph1-6" x="190.038058" y="88.867649"/>
+  <use xlink:href="#glyph1-17" x="192.886176" y="88.867649"/>
+  <use xlink:href="#glyph1-18" x="198.564941" y="88.867649"/>
+  <use xlink:href="#glyph1-6" x="204.252441" y="88.867649"/>
+  <use xlink:href="#glyph1-19" x="207.100558" y="88.867649"/>
+  <use xlink:href="#glyph1-18" x="212.761854" y="88.867649"/>
+  <use xlink:href="#glyph1-3" x="218.449353" y="88.867649"/>
+  <use xlink:href="#glyph1-20" x="220.938774" y="88.867649"/>
+  <use xlink:href="#glyph1-8" x="225.865016" y="88.867649"/>
+  <use xlink:href="#glyph1-2" x="231.355603" y="88.867649"/>
+  <use xlink:href="#glyph1-21" x="234.881998" y="88.867649"/>
+  <use xlink:href="#glyph1-3" x="240.569497" y="88.867649"/>
+  <use xlink:href="#glyph1-17" x="243.058918" y="88.867649"/>
+  <use xlink:href="#glyph1-14" x="248.737683" y="88.867649"/>
+  <use xlink:href="#glyph1-6" x="257.465846" y="88.867649"/>
+  <use xlink:href="#glyph1-17" x="260.313963" y="88.867649"/>
+  <use xlink:href="#glyph1-15" x="265.992728" y="88.867649"/>
+  <use xlink:href="#glyph1-3" x="270.660914" y="88.867649"/>
+  <use xlink:href="#glyph1-22" x="273.150335" y="88.867649"/>
+  <use xlink:href="#glyph1-23" x="278.8291" y="88.867649"/>
+  <use xlink:href="#glyph1-6" x="284.5166" y="88.867649"/>
+  <use xlink:href="#glyph1-24" x="287.364717" y="88.867649"/>
+  <use xlink:href="#glyph1-19" x="293.052217" y="88.867649"/>
+  <use xlink:href="#glyph1-25" x="298.713512" y="88.867649"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-26" x="432.359375" y="50.332492"/>
+  <use xlink:href="#glyph1-2" x="436.861789" y="50.332492"/>
+  <use xlink:href="#glyph1-5" x="440.348877" y="50.332492"/>
+  <use xlink:href="#glyph1-5" x="445.861301" y="50.332492"/>
+  <use xlink:href="#glyph1-27" x="451.373725" y="50.332492"/>
+  <use xlink:href="#glyph1-28" x="456.948052" y="50.332492"/>
+  <use xlink:href="#glyph1-29" x="462.421169" y="50.332492"/>
+  <use xlink:href="#glyph1-24" x="469.473578" y="50.332492"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-10" x="434.507812" y="61.535617"/>
+  <use xlink:href="#glyph1-21" x="437.150282" y="61.535617"/>
+  <use xlink:href="#glyph1-9" x="442.837782" y="61.535617"/>
+  <use xlink:href="#glyph1-5" x="445.327203" y="61.535617"/>
+  <use xlink:href="#glyph1-6" x="450.839626" y="61.535617"/>
+  <use xlink:href="#glyph1-28" x="453.687744" y="61.535617"/>
+  <use xlink:href="#glyph1-8" x="457.678982" y="61.535617"/>
+  <use xlink:href="#glyph1-15" x="463.169569" y="61.535617"/>
+  <use xlink:href="#glyph1-16" x="467.837754" y="61.535617"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-11" x="373.488281" y="50.332492"/>
+  <use xlink:href="#glyph1-3" x="380.387641" y="50.332492"/>
+  <use xlink:href="#glyph1-15" x="382.877061" y="50.332492"/>
+  <use xlink:href="#glyph1-18" x="387.545247" y="50.332492"/>
+  <use xlink:href="#glyph1-8" x="393.232747" y="50.332492"/>
+  <use xlink:href="#glyph1-4" x="398.723334" y="50.332492"/>
+  <use xlink:href="#glyph1-20" x="402.236436" y="50.332492"/>
+  <use xlink:href="#glyph1-30" x="407.162678" y="50.332492"/>
+  <use xlink:href="#glyph1-5" x="412.841444" y="50.332492"/>
+  <use xlink:href="#glyph1-2" x="418.353868" y="50.332492"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-28" x="388.089844" y="61.535617"/>
+  <use xlink:href="#glyph1-8" x="392.081082" y="61.535617"/>
+  <use xlink:href="#glyph1-15" x="397.571669" y="61.535617"/>
+  <use xlink:href="#glyph1-16" x="402.239854" y="61.535617"/>
+</g>
+<path style="fill:none;stroke-width:0.0714286;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.4,0.4;stroke-miterlimit:10;" d="M 63.000023 26.999933 L 63.000023 28.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<path style="fill:none;stroke-width:0.0714286;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.4,0.4;stroke-miterlimit:10;" d="M 63.000023 38.999933 L 63.000023 42.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 62.650134 28.999933 L 63.35019 28.999933 L 63.35019 38.999933 L 62.650134 38.999933 Z M 62.650134 28.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<path style="fill:none;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.200079 28.999933 L 66.650134 28.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.200079 28.749933 L 63.400134 28.999933 L 64.200079 29.249933 Z M 64.200079 28.749933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 47.000023 29.499933 L 49.000023 29.499933 L 49.000023 30.499933 L 47.000023 30.499933 Z M 47.000023 29.499933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-10" x="183" y="108.398899"/>
+  <use xlink:href="#glyph1-11" x="185.64247" y="108.398899"/>
+</g>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.000023 29.499933 L 55.000023 29.499933 L 55.000023 30.499933 L 49.000023 30.499933 Z M 49.000023 29.499933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-13" x="218.121094" y="108.398899"/>
+  <use xlink:href="#glyph1-8" x="223.121962" y="108.398899"/>
+  <use xlink:href="#glyph1-2" x="228.612549" y="108.398899"/>
+  <use xlink:href="#glyph1-8" x="232.296359" y="108.398899"/>
+  <use xlink:href="#glyph1-14" x="237.786946" y="108.398899"/>
+  <use xlink:href="#glyph1-5" x="246.515109" y="108.398899"/>
+  <use xlink:href="#glyph1-4" x="252.027533" y="108.398899"/>
+  <use xlink:href="#glyph1-5" x="255.540635" y="108.398899"/>
+  <use xlink:href="#glyph1-2" x="261.053059" y="108.398899"/>
+  <use xlink:href="#glyph1-15" x="264.73687" y="108.398899"/>
+</g>
+<path style="fill:none;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.799967 29.999933 L 55.000023 29.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.799967 30.249933 L 62.599911 29.999933 L 61.799967 29.749933 Z M 61.799967 30.249933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-27" x="305.21875" y="116.867649"/>
+  <use xlink:href="#glyph1-5" x="311.042209" y="116.867649"/>
+  <use xlink:href="#glyph1-8" x="316.554633" y="116.867649"/>
+  <use xlink:href="#glyph1-21" x="322.04522" y="116.867649"/>
+  <use xlink:href="#glyph1-6" x="327.73272" y="116.867649"/>
+  <use xlink:href="#glyph1-7" x="330.580837" y="116.867649"/>
+  <use xlink:href="#glyph1-8" x="336.837049" y="116.867649"/>
+  <use xlink:href="#glyph1-9" x="342.327636" y="116.867649"/>
+  <use xlink:href="#glyph1-9" x="344.817057" y="116.867649"/>
+  <use xlink:href="#glyph1-6" x="347.306477" y="116.867649"/>
+  <use xlink:href="#glyph1-10" x="350.154595" y="116.867649"/>
+  <use xlink:href="#glyph1-22" x="352.797064" y="116.867649"/>
+  <use xlink:href="#glyph1-31" x="358.475829" y="116.867649"/>
+  <use xlink:href="#glyph1-32" x="361.630234" y="116.867649"/>
+</g>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 47.000023 36.999933 L 49.000023 36.999933 L 49.000023 37.999933 L 47.000023 37.999933 Z M 47.000023 36.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.000023 36.999933 L 55.000023 36.999933 L 55.000023 37.999933 L 49.000023 37.999933 Z M 49.000023 36.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-27" x="215.167969" y="213.398899"/>
+  <use xlink:href="#glyph1-5" x="220.991428" y="213.398899"/>
+  <use xlink:href="#glyph1-4" x="226.503852" y="213.398899"/>
+  <use xlink:href="#glyph1-17" x="230.016954" y="213.398899"/>
+  <use xlink:href="#glyph1-2" x="235.695719" y="213.398899"/>
+  <use xlink:href="#glyph1-22" x="239.222113" y="213.398899"/>
+  <use xlink:href="#glyph1-6" x="244.900878" y="213.398899"/>
+  <use xlink:href="#glyph1-25" x="247.748996" y="213.398899"/>
+  <use xlink:href="#glyph1-8" x="253.183376" y="213.398899"/>
+  <use xlink:href="#glyph1-9" x="258.673963" y="213.398899"/>
+  <use xlink:href="#glyph1-17" x="261.163384" y="213.398899"/>
+  <use xlink:href="#glyph1-5" x="266.842149" y="213.398899"/>
+</g>
+<path style="fill:none;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 55.849911 37.499933 L 62.650134 37.499933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 55.849911 37.249933 L 55.049967 37.499933 L 55.849911 37.749933 Z M 55.849911 37.249933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="305.523437" y="220.469211"/>
+  <use xlink:href="#glyph1-2" x="313.980631" y="220.469211"/>
+  <use xlink:href="#glyph1-3" x="317.664442" y="220.469211"/>
+  <use xlink:href="#glyph1-4" x="320.153863" y="220.469211"/>
+  <use xlink:href="#glyph1-5" x="323.666965" y="220.469211"/>
+  <use xlink:href="#glyph1-6" x="329.179389" y="220.469211"/>
+  <use xlink:href="#glyph1-27" x="332.027506" y="220.469211"/>
+  <use xlink:href="#glyph1-5" x="337.850965" y="220.469211"/>
+  <use xlink:href="#glyph1-4" x="343.363389" y="220.469211"/>
+  <use xlink:href="#glyph1-17" x="346.876491" y="220.469211"/>
+  <use xlink:href="#glyph1-2" x="352.555256" y="220.469211"/>
+  <use xlink:href="#glyph1-22" x="356.081651" y="220.469211"/>
+  <use xlink:href="#glyph1-6" x="361.760416" y="220.469211"/>
+  <use xlink:href="#glyph1-25" x="364.608533" y="220.469211"/>
+  <use xlink:href="#glyph1-8" x="370.042913" y="220.469211"/>
+  <use xlink:href="#glyph1-9" x="375.5335" y="220.469211"/>
+  <use xlink:href="#glyph1-17" x="378.022921" y="220.469211"/>
+  <use xlink:href="#glyph1-5" x="383.701686" y="220.469211"/>
+</g>
+<path style="fill:none;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 37.200078 38.999933 L 62.650134 38.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 37.200078 38.749933 L 36.400134 38.999933 L 37.200078 39.249933 Z M 37.200078 38.749933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="151.886719" y="242.867649"/>
+  <use xlink:href="#glyph1-8" x="160.173394" y="242.867649"/>
+  <use xlink:href="#glyph1-16" x="165.663981" y="242.867649"/>
+  <use xlink:href="#glyph1-5" x="170.533447" y="242.867649"/>
+  <use xlink:href="#glyph1-6" x="176.045871" y="242.867649"/>
+  <use xlink:href="#glyph1-17" x="178.893988" y="242.867649"/>
+  <use xlink:href="#glyph1-18" x="184.572753" y="242.867649"/>
+  <use xlink:href="#glyph1-6" x="190.260253" y="242.867649"/>
+  <use xlink:href="#glyph1-20" x="193.108371" y="242.867649"/>
+  <use xlink:href="#glyph1-32" x="198.034613" y="242.867649"/>
+  <use xlink:href="#glyph1-2" x="203.516465" y="242.867649"/>
+  <use xlink:href="#glyph1-5" x="207.003553" y="242.867649"/>
+  <use xlink:href="#glyph1-6" x="212.515977" y="242.867649"/>
+  <use xlink:href="#glyph1-33" x="215.364094" y="242.867649"/>
+  <use xlink:href="#glyph1-6" x="221.064696" y="242.867649"/>
+  <use xlink:href="#glyph1-17" x="223.912813" y="242.867649"/>
+  <use xlink:href="#glyph1-15" x="229.591579" y="242.867649"/>
+  <use xlink:href="#glyph1-3" x="234.259764" y="242.867649"/>
+  <use xlink:href="#glyph1-22" x="236.749185" y="242.867649"/>
+  <use xlink:href="#glyph1-23" x="242.42795" y="242.867649"/>
+  <use xlink:href="#glyph1-6" x="248.11545" y="242.867649"/>
+  <use xlink:href="#glyph1-24" x="250.963567" y="242.867649"/>
+  <use xlink:href="#glyph1-19" x="256.651067" y="242.867649"/>
+  <use xlink:href="#glyph1-25" x="262.312362" y="242.867649"/>
+</g>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 47.000023 40.499933 L 49.000023 40.499933 L 49.000023 41.499933 L 47.000023 41.499933 Z M 47.000023 40.499933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.000023 40.499933 L 55.000023 40.499933 L 55.000023 41.499933 L 49.000023 41.499933 Z M 49.000023 40.499933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-27" x="215.167969" y="262.398899"/>
+  <use xlink:href="#glyph1-5" x="220.991428" y="262.398899"/>
+  <use xlink:href="#glyph1-4" x="226.503852" y="262.398899"/>
+  <use xlink:href="#glyph1-17" x="230.016954" y="262.398899"/>
+  <use xlink:href="#glyph1-2" x="235.695719" y="262.398899"/>
+  <use xlink:href="#glyph1-22" x="239.222113" y="262.398899"/>
+  <use xlink:href="#glyph1-6" x="244.900878" y="262.398899"/>
+  <use xlink:href="#glyph1-25" x="247.748996" y="262.398899"/>
+  <use xlink:href="#glyph1-8" x="253.183376" y="262.398899"/>
+  <use xlink:href="#glyph1-9" x="258.673963" y="262.398899"/>
+  <use xlink:href="#glyph1-17" x="261.163384" y="262.398899"/>
+  <use xlink:href="#glyph1-5" x="266.842149" y="262.398899"/>
+</g>
+<path style="fill:none;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 37.200078 40.999933 L 47.000023 40.999933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 37.200078 40.749933 L 36.400134 40.999933 L 37.200078 41.249933 Z M 37.200078 40.749933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-27" x="59.695312" y="270.867649"/>
+  <use xlink:href="#glyph1-5" x="65.518772" y="270.867649"/>
+  <use xlink:href="#glyph1-8" x="71.031196" y="270.867649"/>
+  <use xlink:href="#glyph1-21" x="76.521782" y="270.867649"/>
+  <use xlink:href="#glyph1-6" x="82.209282" y="270.867649"/>
+  <use xlink:href="#glyph1-27" x="85.0574" y="270.867649"/>
+  <use xlink:href="#glyph1-5" x="90.880859" y="270.867649"/>
+  <use xlink:href="#glyph1-4" x="96.393283" y="270.867649"/>
+  <use xlink:href="#glyph1-17" x="99.906385" y="270.867649"/>
+  <use xlink:href="#glyph1-2" x="105.58515" y="270.867649"/>
+  <use xlink:href="#glyph1-22" x="109.111544" y="270.867649"/>
+  <use xlink:href="#glyph1-6" x="114.790309" y="270.867649"/>
+  <use xlink:href="#glyph1-25" x="117.638427" y="270.867649"/>
+  <use xlink:href="#glyph1-8" x="123.072807" y="270.867649"/>
+  <use xlink:href="#glyph1-9" x="128.563394" y="270.867649"/>
+  <use xlink:href="#glyph1-17" x="131.052815" y="270.867649"/>
+  <use xlink:href="#glyph1-5" x="136.73158" y="270.867649"/>
+</g>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 63.000023 30.499933 L 64.500023 30.499933 L 64.500023 36.999933 L 63.000023 36.999933 Z M 63.000023 30.499933 " transform="matrix(14,0,0,14,-484.242492,-314.334995)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-34" x="243.945312" y="139.269992"/>
+  <use xlink:href="#glyph1-4" x="249.917263" y="139.269992"/>
+  <use xlink:href="#glyph1-6" x="253.430366" y="139.269992"/>
+  <use xlink:href="#glyph1-4" x="256.278483" y="139.269992"/>
+  <use xlink:href="#glyph1-30" x="259.791585" y="139.269992"/>
+  <use xlink:href="#glyph1-3" x="265.47035" y="139.269992"/>
+  <use xlink:href="#glyph1-15" x="267.959771" y="139.269992"/>
+  <use xlink:href="#glyph1-6" x="272.627956" y="139.269992"/>
+  <use xlink:href="#glyph1-18" x="275.476074" y="139.269992"/>
+  <use xlink:href="#glyph1-32" x="281.163574" y="139.269992"/>
+  <use xlink:href="#glyph1-3" x="286.645426" y="139.269992"/>
+  <use xlink:href="#glyph1-22" x="289.134846" y="139.269992"/>
+  <use xlink:href="#glyph1-4" x="294.813611" y="139.269992"/>
+  <use xlink:href="#glyph1-35" x="298.326713" y="139.269992"/>
+  <use xlink:href="#glyph1-6" x="301.174831" y="139.269992"/>
+  <use xlink:href="#glyph1-4" x="304.022948" y="139.269992"/>
+  <use xlink:href="#glyph1-30" x="307.53605" y="139.269992"/>
+  <use xlink:href="#glyph1-5" x="313.214815" y="139.269992"/>
+  <use xlink:href="#glyph1-6" x="318.727239" y="139.269992"/>
+  <use xlink:href="#glyph1-21" x="321.575357" y="139.269992"/>
+  <use xlink:href="#glyph1-3" x="327.262857" y="139.269992"/>
+  <use xlink:href="#glyph1-15" x="329.752277" y="139.269992"/>
+  <use xlink:href="#glyph1-18" x="334.420463" y="139.269992"/>
+  <use xlink:href="#glyph1-8" x="340.107963" y="139.269992"/>
+  <use xlink:href="#glyph1-4" x="345.59855" y="139.269992"/>
+  <use xlink:href="#glyph1-20" x="349.111652" y="139.269992"/>
+  <use xlink:href="#glyph1-30" x="354.037894" y="139.269992"/>
+  <use xlink:href="#glyph1-5" x="359.716659" y="139.269992"/>
+  <use xlink:href="#glyph1-2" x="365.229083" y="139.269992"/>
+  <use xlink:href="#glyph1-6" x="368.912894" y="139.269992"/>
+  <use xlink:href="#glyph1-36" x="371.761011" y="139.269992"/>
+  <use xlink:href="#glyph1-3" x="379.089136" y="139.269992"/>
+  <use xlink:href="#glyph1-9" x="381.578557" y="139.269992"/>
+  <use xlink:href="#glyph1-9" x="384.067977" y="139.269992"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-20" x="237.847656" y="150.469211"/>
+  <use xlink:href="#glyph1-8" x="242.773899" y="150.469211"/>
+  <use xlink:href="#glyph1-9" x="248.264485" y="150.469211"/>
+  <use xlink:href="#glyph1-9" x="250.753906" y="150.469211"/>
+  <use xlink:href="#glyph1-6" x="253.243327" y="150.469211"/>
+  <use xlink:href="#glyph1-4" x="256.091444" y="150.469211"/>
+  <use xlink:href="#glyph1-30" x="259.604546" y="150.469211"/>
+  <use xlink:href="#glyph1-5" x="265.283311" y="150.469211"/>
+  <use xlink:href="#glyph1-6" x="270.795735" y="150.469211"/>
+  <use xlink:href="#glyph1-8" x="273.643852" y="150.469211"/>
+  <use xlink:href="#glyph1-20" x="279.134439" y="150.469211"/>
+  <use xlink:href="#glyph1-4" x="284.060682" y="150.469211"/>
+  <use xlink:href="#glyph1-17" x="287.573784" y="150.469211"/>
+  <use xlink:href="#glyph1-8" x="293.252549" y="150.469211"/>
+  <use xlink:href="#glyph1-9" x="298.743136" y="150.469211"/>
+  <use xlink:href="#glyph1-6" x="301.232556" y="150.469211"/>
+  <use xlink:href="#glyph1-3" x="304.080674" y="150.469211"/>
+  <use xlink:href="#glyph1-14" x="306.570094" y="150.469211"/>
+  <use xlink:href="#glyph1-18" x="315.298257" y="150.469211"/>
+  <use xlink:href="#glyph1-9" x="320.985757" y="150.469211"/>
+  <use xlink:href="#glyph1-5" x="323.475178" y="150.469211"/>
+  <use xlink:href="#glyph1-14" x="328.987602" y="150.469211"/>
+  <use xlink:href="#glyph1-5" x="337.715764" y="150.469211"/>
+  <use xlink:href="#glyph1-22" x="343.228188" y="150.469211"/>
+  <use xlink:href="#glyph1-4" x="348.906953" y="150.469211"/>
+  <use xlink:href="#glyph1-8" x="352.420056" y="150.469211"/>
+  <use xlink:href="#glyph1-4" x="357.910642" y="150.469211"/>
+  <use xlink:href="#glyph1-3" x="361.423745" y="150.469211"/>
+  <use xlink:href="#glyph1-32" x="363.913165" y="150.469211"/>
+  <use xlink:href="#glyph1-22" x="369.395017" y="150.469211"/>
+  <use xlink:href="#glyph1-6" x="375.073782" y="150.469211"/>
+  <use xlink:href="#glyph1-32" x="377.9219" y="150.469211"/>
+  <use xlink:href="#glyph1-31" x="383.403752" y="150.469211"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-4" x="252.914062" y="161.66843"/>
+  <use xlink:href="#glyph1-30" x="256.427165" y="161.66843"/>
+  <use xlink:href="#glyph1-5" x="262.10593" y="161.66843"/>
+  <use xlink:href="#glyph1-6" x="267.618354" y="161.66843"/>
+  <use xlink:href="#glyph1-20" x="270.466471" y="161.66843"/>
+  <use xlink:href="#glyph1-8" x="275.392713" y="161.66843"/>
+  <use xlink:href="#glyph1-9" x="280.8833" y="161.66843"/>
+  <use xlink:href="#glyph1-9" x="283.372721" y="161.66843"/>
+  <use xlink:href="#glyph1-37" x="285.862141" y="161.66843"/>
+  <use xlink:href="#glyph1-6" x="288.710259" y="161.66843"/>
+  <use xlink:href="#glyph1-6" x="291.558376" y="161.66843"/>
+  <use xlink:href="#glyph1-28" x="294.406493" y="161.66843"/>
+  <use xlink:href="#glyph1-30" x="299.879611" y="161.66843"/>
+  <use xlink:href="#glyph1-3" x="305.558376" y="161.66843"/>
+  <use xlink:href="#glyph1-15" x="308.047796" y="161.66843"/>
+  <use xlink:href="#glyph1-6" x="312.715982" y="161.66843"/>
+  <use xlink:href="#glyph1-3" x="315.564099" y="161.66843"/>
+  <use xlink:href="#glyph1-14" x="318.05352" y="161.66843"/>
+  <use xlink:href="#glyph1-18" x="326.781683" y="161.66843"/>
+  <use xlink:href="#glyph1-9" x="332.469183" y="161.66843"/>
+  <use xlink:href="#glyph1-5" x="334.958603" y="161.66843"/>
+  <use xlink:href="#glyph1-14" x="340.471027" y="161.66843"/>
+  <use xlink:href="#glyph1-5" x="349.19919" y="161.66843"/>
+  <use xlink:href="#glyph1-22" x="354.711614" y="161.66843"/>
+  <use xlink:href="#glyph1-4" x="360.390379" y="161.66843"/>
+  <use xlink:href="#glyph1-8" x="363.903481" y="161.66843"/>
+  <use xlink:href="#glyph1-4" x="369.394068" y="161.66843"/>
+  <use xlink:href="#glyph1-3" x="372.90717" y="161.66843"/>
+  <use xlink:href="#glyph1-32" x="375.396591" y="161.66843"/>
+  <use xlink:href="#glyph1-22" x="380.878443" y="161.66843"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-14" x="237.65625" y="172.867649"/>
+  <use xlink:href="#glyph1-3" x="246.384413" y="172.867649"/>
+  <use xlink:href="#glyph1-23" x="248.873833" y="172.867649"/>
+  <use xlink:href="#glyph1-30" x="254.561333" y="172.867649"/>
+  <use xlink:href="#glyph1-4" x="260.240098" y="172.867649"/>
+  <use xlink:href="#glyph1-6" x="263.753201" y="172.867649"/>
+  <use xlink:href="#glyph1-18" x="266.601318" y="172.867649"/>
+  <use xlink:href="#glyph1-32" x="272.288818" y="172.867649"/>
+  <use xlink:href="#glyph1-4" x="277.77067" y="172.867649"/>
+  <use xlink:href="#glyph1-5" x="281.283772" y="172.867649"/>
+  <use xlink:href="#glyph1-22" x="286.796196" y="172.867649"/>
+  <use xlink:href="#glyph1-4" x="292.474961" y="172.867649"/>
+  <use xlink:href="#glyph1-3" x="295.988063" y="172.867649"/>
+  <use xlink:href="#glyph1-8" x="298.477484" y="172.867649"/>
+  <use xlink:href="#glyph1-9" x="303.968071" y="172.867649"/>
+  <use xlink:href="#glyph1-9" x="306.457491" y="172.867649"/>
+  <use xlink:href="#glyph1-38" x="308.946912" y="172.867649"/>
+  <use xlink:href="#glyph1-6" x="314.249321" y="172.867649"/>
+  <use xlink:href="#glyph1-39" x="317.097438" y="172.867649"/>
+  <use xlink:href="#glyph1-9" x="322.784938" y="172.867649"/>
+  <use xlink:href="#glyph1-32" x="325.274358" y="172.867649"/>
+  <use xlink:href="#glyph1-20" x="330.75621" y="172.867649"/>
+  <use xlink:href="#glyph1-16" x="335.682453" y="172.867649"/>
+  <use xlink:href="#glyph1-6" x="340.871119" y="172.867649"/>
+  <use xlink:href="#glyph1-31" x="343.719236" y="172.867649"/>
+  <use xlink:href="#glyph1-32" x="346.873642" y="172.867649"/>
+  <use xlink:href="#glyph1-2" x="352.355494" y="172.867649"/>
+  <use xlink:href="#glyph1-6" x="356.039305" y="172.867649"/>
+  <use xlink:href="#glyph1-8" x="358.887422" y="172.867649"/>
+  <use xlink:href="#glyph1-6" x="364.378009" y="172.867649"/>
+  <use xlink:href="#glyph1-9" x="367.226126" y="172.867649"/>
+  <use xlink:href="#glyph1-32" x="369.715547" y="172.867649"/>
+  <use xlink:href="#glyph1-22" x="375.197399" y="172.867649"/>
+  <use xlink:href="#glyph1-23" x="380.876164" y="172.867649"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-4" x="287.683594" y="184.070774"/>
+  <use xlink:href="#glyph1-3" x="291.196696" y="184.070774"/>
+  <use xlink:href="#glyph1-14" x="293.686116" y="184.070774"/>
+  <use xlink:href="#glyph1-5" x="302.414279" y="184.070774"/>
+  <use xlink:href="#glyph1-6" x="307.926703" y="184.070774"/>
+  <use xlink:href="#glyph1-39" x="310.774821" y="184.070774"/>
+  <use xlink:href="#glyph1-5" x="316.46232" y="184.070774"/>
+  <use xlink:href="#glyph1-31" x="321.974744" y="184.070774"/>
+  <use xlink:href="#glyph1-32" x="325.12915" y="184.070774"/>
+  <use xlink:href="#glyph1-2" x="330.611002" y="184.070774"/>
+  <use xlink:href="#glyph1-5" x="334.098089" y="184.070774"/>
+  <use xlink:href="#glyph1-6" x="339.610513" y="184.070774"/>
+  <use xlink:href="#glyph1-2" x="342.458631" y="184.070774"/>
+  <use xlink:href="#glyph1-5" x="345.945718" y="184.070774"/>
+  <use xlink:href="#glyph1-4" x="351.458142" y="184.070774"/>
+  <use xlink:href="#glyph1-17" x="354.971245" y="184.070774"/>
+  <use xlink:href="#glyph1-2" x="360.65001" y="184.070774"/>
+  <use xlink:href="#glyph1-22" x="364.176404" y="184.070774"/>
+  <use xlink:href="#glyph1-3" x="369.855169" y="184.070774"/>
+  <use xlink:href="#glyph1-22" x="372.344589" y="184.070774"/>
+  <use xlink:href="#glyph1-23" x="378.023355" y="184.070774"/>
+  <use xlink:href="#glyph1-37" x="383.710854" y="184.070774"/>
+</g>
+</g>
+</svg>