diff --git a/Doc/Sd1/Ref/Interfaces/P/iface/src/main/java/de/hdm_stuttgart/mi/sd1/MyAutoCloseable.java b/Doc/Sd1/Ref/Interfaces/P/iface/src/main/java/de/hdm_stuttgart/mi/sd1/MyAutoCloseable.java
new file mode 100644
index 0000000000000000000000000000000000000000..839d7d80ba45e9d99f1b0bb3905857122eafb60c
--- /dev/null
+++ b/Doc/Sd1/Ref/Interfaces/P/iface/src/main/java/de/hdm_stuttgart/mi/sd1/MyAutoCloseable.java
@@ -0,0 +1,12 @@
+package de.hdm_stuttgart.mi.sd1;
+
+/**
+ * Support auto-closing of resources
+ */
+public interface MyAutoCloseable {
+  /**
+   * close resource in question. Example: Terminate
+   * a database connection or a file stream.
+   */
+  public void close();
+}
diff --git a/Doc/Sd1/Ref/Interfaces/P/iface/src/main/java/de/hdm_stuttgart/mi/sd1/MyFlushable.java b/Doc/Sd1/Ref/Interfaces/P/iface/src/main/java/de/hdm_stuttgart/mi/sd1/MyFlushable.java
new file mode 100644
index 0000000000000000000000000000000000000000..af9746b3a9a3560882a38c30d296fe0c0194304a
--- /dev/null
+++ b/Doc/Sd1/Ref/Interfaces/P/iface/src/main/java/de/hdm_stuttgart/mi/sd1/MyFlushable.java
@@ -0,0 +1,12 @@
+package de.hdm_stuttgart.mi.sd1;
+
+/**
+ * Flush pending values.
+ */
+public interface MyFlushable extends MyAutoCloseable{
+
+  /**
+   * Save pending i.e. buffered values.
+   */
+  public void flush();
+}
diff --git a/Doc/Sd1/Ref/Interfaces/P/iface/src/main/java/de/hdm_stuttgart/mi/sd1/Text2FileFlushable.java b/Doc/Sd1/Ref/Interfaces/P/iface/src/main/java/de/hdm_stuttgart/mi/sd1/Text2FileFlushable.java
new file mode 100644
index 0000000000000000000000000000000000000000..39051ce232946924ec260d1f89edc0cd0fb91e3e
--- /dev/null
+++ b/Doc/Sd1/Ref/Interfaces/P/iface/src/main/java/de/hdm_stuttgart/mi/sd1/Text2FileFlushable.java
@@ -0,0 +1,51 @@
+package de.hdm_stuttgart.mi.sd1;
+
+
+import java.io.File;
+import java.io.FileNotFoundException;
+import java.io.PrintStream;
+
+/**
+ * Writing text lines to a file of given name
+ */
+
+public class Text2FileFlushable implements MyFlushable {
+
+  private PrintStream out;
+
+  /**
+   * Prepare for writing strings to a file.
+   *
+   * @param fileName Calling {@link #println(String)} will add content to this file.
+   * @throws FileNotFoundException Problem opening file i.e. inexistent parent directory.
+   */
+  public Text2FileFlushable(final String fileName)
+     throws FileNotFoundException {
+    out = new PrintStream(new File(fileName));
+  }
+
+  /**
+   * Append to filename being defined in {@link #Text2File(String)} adding "\n".
+   *
+   * @param s String will be appended to file. Precondition: {@link #close()} ()}
+   *          has not been called.
+   */
+  public void println(final String s) {
+    out.println(s);
+  }
+
+  /**
+   * Flushing pending output to underlying file.
+   */
+  public void flush(){
+    out.flush();
+  }
+  /**
+   * Closing file thereby flushing buffer. Caution: Further calls
+   * to {@link #println(String)} will fail!.
+   */
+  public void close() {
+    out.close();
+    out = null;
+  }
+}
\ No newline at end of file
diff --git a/Doc/Sd1/Ref/Interfaces/flushable.multi.svg b/Doc/Sd1/Ref/Interfaces/flushable.multi.svg
new file mode 100644
index 0000000000000000000000000000000000000000..3e91d61cbc4f556d78eb0ea0929d81056cef638d
--- /dev/null
+++ b/Doc/Sd1/Ref/Interfaces/flushable.multi.svg
@@ -0,0 +1,5417 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:jessyink="https://launchpad.net/jessyink"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="170mm"
+   height="75mm"
+   viewBox="0 0 170.00002 75"
+   version="1.1"
+   id="svg8"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="flushable.multi.svg">
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1.8200176"
+     inkscape:cx="260.18337"
+     inkscape:cy="139.82194"
+     inkscape:document-units="mm"
+     inkscape:current-layer="g18651"
+     showgrid="true"
+     inkscape:window-width="1943"
+     inkscape:window-height="1484"
+     inkscape:window-x="65"
+     inkscape:window-y="24"
+     inkscape:window-maximized="1"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     showguides="true"
+     inkscape:snap-bbox="true"
+     inkscape:bbox-nodes="true"
+     inkscape:snap-global="true"
+     inkscape:snap-to-guides="false"
+     inkscape:bbox-paths="true"
+     inkscape:snap-nodes="false"
+     inkscape:snap-page="false"
+     inkscape:snap-grids="true"
+     inkscape:snap-others="true"
+     inkscape:snap-object-midpoints="true"
+     inkscape:snap-center="false">
+    <inkscape:grid
+       type="xygrid"
+       id="grid153"
+       originx="-1.4239177"
+       originy="-0.32290521" />
+  </sodipodi:namedview>
+  <defs
+     id="defs2">
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker25228"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path25226" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker24774"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path24772"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker24314"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path24312" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker23872"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path23870"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker14524"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path14522" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker14142"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path14140"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker13742"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path13740" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker13372"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path13370"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker12996"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path12994" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker12638"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path12636"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker12274"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path12272" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker11928"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path11926"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker11576"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path11574" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker11242"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path11240"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker10902"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path10900" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker10580"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path10578"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker10252"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path10250" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker9942"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path9940"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker9626"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path9624" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker9328"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path9326"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker6651"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path6649" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker6371"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path6369"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker6085"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path6083" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker5817"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path5815"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker5475"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path5473"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker10399"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path10397" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker10155"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path10153"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker9905"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path9903" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker9673"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path9671"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker6624"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path6622"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="DotM"
+       orient="auto"
+       refY="0.0"
+       refX="0.0"
+       id="marker6428"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path6426"
+         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
+         transform="scale(0.4) translate(7.4, 1)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker4724"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4722"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker14694"
+       refX="0.0"
+       refY="0.0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         transform="scale(0.4) translate(7.4, 1)"
+         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
+         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         id="path14692" />
+    </marker>
+    <marker
+       inkscape:stockid="DotM"
+       orient="auto"
+       refY="0.0"
+       refX="0.0"
+       id="marker11917"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path11915"
+         d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
+         transform="scale(0.4) translate(7.4, 1)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker6297"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path6295"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker12914"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path12912" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker9325"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path9323"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker5341"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path5339"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker2807"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path2805"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="-12.798426 : 47.786656 : 1"
+       inkscape:vp_y="0 : 912.57089 : 0"
+       inkscape:vp_z="201.89029 : 47.786656 : 1"
+       inkscape:persp3d-origin="94.545937 : 36.37952 : 1"
+       id="perspective631" />
+    <marker
+       inkscape:stockid="Arrow2Lend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Lend"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path1067"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Mend-6"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path1073-1"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Mend-5"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path1073-4"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Mend-65"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path1073-6"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Mend-65-5"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path1073-6-4"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Mend-6-8"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path1073-1-8"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Mend-65-5-4"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path1073-6-4-3"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker1003-2"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path1001-3" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Mend-6-8-7"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path1073-1-8-5"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Mend-65-5-4-9"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path1073-6-4-3-2"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Mend-6-8-7-1"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path1073-1-8-5-0"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Mend-65-5-4-9-6"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path1073-6-4-3-2-3"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker1003-7"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path1001-4" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker1003-7-6"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path1001-4-8" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Mend-6-8-7-1-8"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path1073-1-8-5-0-4"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Mend-65-5-4-9-6-3"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path1073-6-4-3-2-3-1"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker1003-1"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path1001-0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker9325-1"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path9323-5"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Mend-6-8-7-1-8-9"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path1073-1-8-5-0-4-4"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Mend-5-9"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path1073-4-0"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker2940"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         inkscape:connector-curvature="0"
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path2938" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker3198"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path3196" />
+    </marker>
+    <marker
+       inkscape:stockid="DotM"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker2321"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2319"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker2615"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path2613"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker5331"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path5329"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker5849"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path5847" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker5331-4"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path5329-3"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker5849-3"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path5847-3" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker11024"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="DotM">
+      <path
+         inkscape:connector-curvature="0"
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         id="path11022" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker11286"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         inkscape:connector-curvature="0"
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path11284" />
+    </marker>
+    <clipPath
+       id="clipPath16"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3829"
+         d="M 0,0 V 80 H 130 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9222"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9220"
+         d="M 0,0 V 80 H 130 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath17"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3832"
+         d="M 0,0 V 78 H 128 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath18"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3835"
+         d="M 0,0 V 76 H 126 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath19"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3838"
+         d="M 0,0 V 48 H 126 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3808"
+         d="M 0,0 V 22 H 54 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath21"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3844-6"
+         d="M 0,0 V 22 H 48 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9236"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9234"
+         d="M 0,0 V 22 H 48 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9240"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9238"
+         d="M 0,0 V 22 H 48 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9244"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9242"
+         d="M 0,0 V 22 H 48 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9248"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9246"
+         d="M 0,0 V 22 H 48 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9252"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9250"
+         d="M 0,0 V 22 H 54 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath23"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3850"
+         d="M 0,0 V 22 H 47 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9258"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9256"
+         d="M 0,0 V 22 H 47 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9262"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9260"
+         d="M 0,0 V 22 H 47 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9266"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9264"
+         d="M 0,0 V 22 H 47 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9270"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9268"
+         d="M 0,0 V 22 H 47 V 0 Z" />
+    </clipPath>
+    <linearGradient
+       spreadMethod="pad"
+       id="linearGradient1"
+       y2="28"
+       y1="0"
+       x2="0"
+       gradientUnits="userSpaceOnUse"
+       x1="0">
+      <stop
+         id="stop3769"
+         offset="0%"
+         stop-color="rgb(255,255,245)"
+         stop-opacity="1" />
+      <stop
+         id="stop3771"
+         offset="100%"
+         stop-color="rgb(215,213,172)"
+         stop-opacity="1" />
+    </linearGradient>
+    <clipPath
+       id="clipPath24"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3853"
+         d="M 0,0 V 28 H 126 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath25"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3856"
+         d="M 0,0 V 22 H 120 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9296"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9294"
+         d="M 0,0 V 22 H 120 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9300"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9298"
+         d="M 0,0 V 22 H 120 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath27"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3862"
+         d="M 0,0 V 56 H 165 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9516"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9514"
+         d="M 0,0 V 56 H 165 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath28"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3865"
+         d="M 0,0 V 54 H 163 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath29"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3868"
+         d="M 0,0 V 52 H 161 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath30"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3871"
+         d="M 0,0 V 24 H 161 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9-7"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3808-5"
+         d="M 0,0 V 22 H 54 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath31"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3874"
+         d="M 0,0 V 22 H 83 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9530"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9528"
+         d="M 0,0 V 22 H 83 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9534"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9532"
+         d="M 0,0 V 22 H 83 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9538"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9536"
+         d="M 0,0 V 22 H 83 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9542"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9540"
+         d="M 0,0 V 22 H 83 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath32"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3877"
+         d="M 0,0 V 28 H 161 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath33"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3880"
+         d="M 0,0 V 22 H 155 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9568"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9566"
+         d="M 0,0 V 22 H 155 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9572"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9570"
+         d="M 0,0 V 22 H 155 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath2"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3787"
+         d="M -20,-20 H 372 V 230 H -20 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9578"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9576"
+         d="M -20,-20 H 372 V 230 H -20 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath4"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3793"
+         d="M 0,0 V 80 H 167 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9584"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9582"
+         d="M 0,0 V 80 H 167 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath5"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3796"
+         d="M 0,0 V 78 H 165 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath6"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3799"
+         d="M 0,0 V 76 H 163 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath7"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3802"
+         d="M 0,0 V 48 H 163 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9594"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9592"
+         d="M 0,0 V 22 H 54 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath10"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3811"
+         d="M 0,0 V 22 H 80 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9600"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9598"
+         d="M 0,0 V 22 H 80 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9604"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9602"
+         d="M 0,0 V 22 H 80 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9608"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9606"
+         d="M 0,0 V 22 H 80 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9612"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9610"
+         d="M 0,0 V 22 H 80 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9616"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9614"
+         d="M 0,0 V 22 H 54 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath12"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3817"
+         d="M 0,0 V 22 H 85 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9622"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9620"
+         d="M 0,0 V 22 H 85 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9626"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9624-6"
+         d="M 0,0 V 22 H 85 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9630"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9628"
+         d="M 0,0 V 22 H 85 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9634"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9632"
+         d="M 0,0 V 22 H 85 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath13"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3820"
+         d="M 0,0 V 28 H 163 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath14"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3823"
+         d="M 0,0 V 22 H 157 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9663"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9661"
+         d="M 0,0 V 22 H 157 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9667"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9665"
+         d="M 0,0 V 22 H 157 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9671"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9669"
+         d="M -20,-20 H 372 V 230 H -20 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9675"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path9673"
+         d="M -20,-20 H 372 V 230 H -20 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath16-1"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3829-2"
+         d="M 0,0 V 80 H 130 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath10153"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path10151"
+         d="M 0,0 V 80 H 130 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath17-7"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3832-0"
+         d="M 0,0 V 78 H 128 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath18-9"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3835-3"
+         d="M 0,0 V 76 H 126 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath19-6"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3838-0"
+         d="M 0,0 V 48 H 126 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath9-6"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3808-2"
+         d="M 0,0 V 22 H 54 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath21-6"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3844-6-1"
+         d="M 0,0 V 22 H 48 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath10167"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path10165"
+         d="M 0,0 V 22 H 48 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath10171"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path10169"
+         d="M 0,0 V 22 H 48 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath10175"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path10173"
+         d="M 0,0 V 22 H 48 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath10179"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path10177"
+         d="M 0,0 V 22 H 48 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath10183"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path10181"
+         d="M 0,0 V 22 H 54 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath23-8"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3850-7"
+         d="M 0,0 V 22 H 47 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath10189"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path10187"
+         d="M 0,0 V 22 H 47 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath10193"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path10191"
+         d="M 0,0 V 22 H 47 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath10197"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path10195"
+         d="M 0,0 V 22 H 47 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath10201"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path10199"
+         d="M 0,0 V 22 H 47 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath24-3"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3853-7"
+         d="M 0,0 V 28 H 126 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath25-5"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3856-9"
+         d="M 0,0 V 22 H 120 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath10228"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path10226"
+         d="M 0,0 V 22 H 120 V 0 Z" />
+    </clipPath>
+    <clipPath
+       id="clipPath10232"
+       clipPathUnits="userSpaceOnUse">
+      <path
+         inkscape:connector-curvature="0"
+         id="path10230"
+         d="M 0,0 V 22 H 120 V 0 Z" />
+    </clipPath>
+    <marker
+       inkscape:stockid="DotM"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker12374"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         inkscape:connector-curvature="0"
+         id="path12372"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker12872"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path12870"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="DotM"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker12374-8"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         inkscape:connector-curvature="0"
+         id="path12372-5"
+         d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         transform="matrix(0.4,0,0,0.4,2.96,0.4)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker12872-9"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path12870-7"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <linearGradient
+       id="2">
+      <stop
+         offset="0%"
+         id="c" />
+      <stop
+         stop-color="#fff"
+         offset="1"
+         id="d" />
+    </linearGradient>
+    <linearGradient
+       id="3">
+      <stop
+         offset="0%"
+         stop-color="#eeeeec"
+         id="e" />
+      <stop
+         stop-opacity="0"
+         stop-color="#eeeeec"
+         offset="1"
+         id="f" />
+    </linearGradient>
+    <linearGradient
+       id="4">
+      <stop
+         offset="0%"
+         stop-color="#555753"
+         id="g" />
+      <stop
+         stop-color="#eeeeec"
+         offset="1"
+         id="h" />
+    </linearGradient>
+    <linearGradient
+       id="5">
+      <stop
+         offset="0%"
+         stop-color="#2e3436"
+         id="i" />
+      <stop
+         stop-color="#2e3436"
+         offset="0.5"
+         id="j" />
+      <stop
+         stop-color="#555753"
+         offset="1"
+         id="k" />
+    </linearGradient>
+    <linearGradient
+       id="6">
+      <stop
+         offset="0%"
+         stop-color="#d3d7cf"
+         id="l" />
+      <stop
+         stop-color="#888a85"
+         offset="1"
+         id="m" />
+    </linearGradient>
+    <linearGradient
+       id="7">
+      <stop
+         offset="0%"
+         stop-color="#2e3436"
+         id="n" />
+      <stop
+         stop-opacity="0"
+         stop-color="#2e3436"
+         offset="1"
+         id="o" />
+    </linearGradient>
+    <linearGradient
+       id="8">
+      <stop
+         offset="0%"
+         stop-color="#555753"
+         id="p" />
+      <stop
+         stop-color="#888a85"
+         offset="0.099"
+         id="q" />
+      <stop
+         stop-color="#888a85"
+         offset="0.502"
+         id="r" />
+      <stop
+         stop-color="#888a85"
+         offset="0.907"
+         id="s" />
+      <stop
+         stop-color="#555753"
+         offset="1"
+         id="t" />
+    </linearGradient>
+    <linearGradient
+       id="9">
+      <stop
+         offset="0%"
+         stop-opacity="0.8"
+         stop-color="#fff"
+         id="u" />
+      <stop
+         stop-opacity="0"
+         stop-color="#fff"
+         offset="1"
+         id="v" />
+    </linearGradient>
+    <linearGradient
+       id="A">
+      <stop
+         offset="0%"
+         stop-color="#888a85"
+         id="w" />
+      <stop
+         stop-color="#d3d7cf"
+         offset="1"
+         id="x" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#9"
+       id="B"
+       y2="31.944"
+       x2="0"
+       y1="4.065" />
+    <radialGradient
+       gradientTransform="matrix(1,0,0,0.1940235,0,33.068877)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#7"
+       id="C"
+       r="24"
+       cy="44.27"
+       cx="24" />
+    <radialGradient
+       gradientTransform="matrix(1,0,0,0.8245614,0,5.2055921)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#6"
+       id="D"
+       r="0.891"
+       cy="29.672"
+       cx="8.297" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#5"
+       id="E"
+       x2="9.344"
+       x1="8.813" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#4"
+       id="F"
+       y2="28.406"
+       x2="8.301"
+       y1="30.949"
+       x1="9.722" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#4"
+       id="G"
+       y2="28.741"
+       x2="9.261"
+       y1="31.483"
+       x1="8.379" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#3"
+       id="H"
+       y2="30.577"
+       x2="9.387"
+       y1="29.678"
+       x1="6.88" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#3"
+       id="I"
+       y2="30.634"
+       x2="9.237"
+       y1="28.34"
+       x1="6.01" />
+    <linearGradient
+       gradientTransform="translate(0,-1.3147774)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#A"
+       id="J"
+       y2="35.75"
+       x2="44.75"
+       y1="3.5"
+       x1="44.5" />
+    <linearGradient
+       gradientTransform="translate(0,-1.3147774)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#8"
+       id="K"
+       x2="44.5"
+       x1="3.5" />
+    <linearGradient
+       id="L">
+      <stop
+         offset="0%"
+         stop-color="#edd400"
+         id="y" />
+      <stop
+         stop-opacity="0"
+         stop-color="#edd400"
+         offset="1"
+         id="z" />
+    </linearGradient>
+    <linearGradient
+       id="M">
+      <stop
+         offset="0%"
+         stop-color="#2e3436"
+         id="10" />
+      <stop
+         stop-color="#040505"
+         offset="1"
+         id="11" />
+    </linearGradient>
+    <radialGradient
+       gradientTransform="matrix(0.9632648,-0.9698801,0.9028944,0.8967362,-37.068441,26.043499)"
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#M"
+       id="N"
+       r="11.85"
+       cy="42.521"
+       cx="23.03" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#L"
+       id="O"
+       y2="35.3"
+       x2="0"
+       y1="40.19" />
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       xlink:href="#2"
+       id="P"
+       y2="41.34"
+       x2="0"
+       y1="18.813" />
+    <marker
+       style="overflow:visible"
+       id="Arrow1Lend"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Lend">
+      <path
+         transform="matrix(-0.8,0,0,-0.8,-10,0)"
+         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5211" />
+    </marker>
+    <marker
+       inkscape:stockid="DistanceEnd"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceEnd"
+       style="overflow:visible">
+      <g
+         id="g3659">
+        <path
+           id="path2316"
+           d="M 0,0 -2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2312"
+           d="M 0,0 -13,4 -9,0 -13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2314"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceStart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceStart"
+       style="overflow:visible">
+      <g
+         id="g2300">
+        <path
+           id="path2306"
+           d="M 0,0 2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2302"
+           d="M 0,0 13,4 9,0 13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2304"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <inkscape:perspective
+       id="perspective10"
+       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+       inkscape:vp_z="744.09448 : 526.18109 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 526.18109 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective4270" />
+    <marker
+       inkscape:stockid="DistanceStart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceStart-5"
+       style="overflow:visible">
+      <g
+         id="g2300-9">
+        <path
+           id="path2306-7"
+           d="M 0,0 2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2302-9"
+           d="M 0,0 13,4 9,0 13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2304-9"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceEnd"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceEnd-0"
+       style="overflow:visible">
+      <g
+         id="g3659-5">
+        <path
+           id="path2316-2"
+           d="M 0,0 -2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2312-1"
+           d="M 0,0 -13,4 -9,0 -13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2314-0"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective4756" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective4853" />
+    <marker
+       inkscape:stockid="DistanceStart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceStart-7"
+       style="overflow:visible">
+      <g
+         id="g2300-6">
+        <path
+           id="path2306-6"
+           d="M 0,0 2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2302-3"
+           d="M 0,0 13,4 9,0 13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2304-6"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceEnd"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceEnd-5"
+       style="overflow:visible">
+      <g
+         id="g3659-6">
+        <path
+           id="path2316-9"
+           d="M 0,0 -2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2312-6"
+           d="M 0,0 -13,4 -9,0 -13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2314-5"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective4914" />
+    <marker
+       inkscape:stockid="DistanceEnd"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceEnd-0-2"
+       style="overflow:visible">
+      <g
+         id="g3659-5-4">
+        <path
+           id="path2316-2-0"
+           d="M 0,0 -2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2312-1-1"
+           d="M 0,0 -13,4 -9,0 -13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2314-0-4"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceStart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceStart-5-8"
+       style="overflow:visible">
+      <g
+         id="g2300-9-7">
+        <path
+           id="path2306-7-2"
+           d="M 0,0 2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2302-9-3"
+           d="M 0,0 13,4 9,0 13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2304-9-2"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective4975" />
+    <marker
+       inkscape:stockid="DistanceStart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceStart-9"
+       style="overflow:visible">
+      <g
+         id="g2300-8">
+        <path
+           id="path2306-1"
+           d="M 0,0 2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2302-6"
+           d="M 0,0 13,4 9,0 13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2304-0"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceEnd"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceEnd-6"
+       style="overflow:visible">
+      <g
+         id="g3659-62">
+        <path
+           id="path2316-1"
+           d="M 0,0 -2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2312-68"
+           d="M 0,0 -13,4 -9,0 -13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2314-4"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective3836" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective3858" />
+    <marker
+       inkscape:stockid="DistanceStart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceStart-2"
+       style="overflow:visible">
+      <g
+         id="g2300-0">
+        <path
+           id="path2306-71"
+           d="M 0,0 2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2302-64"
+           d="M 0,0 13,4 9,0 13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2304-95"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceEnd"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceEnd-3"
+       style="overflow:visible">
+      <g
+         id="g3659-51">
+        <path
+           id="path2316-10"
+           d="M 0,0 -2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2312-0"
+           d="M 0,0 -13,4 -9,0 -13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2314-7"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective3921" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective3947" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective3968" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective4478" />
+    <marker
+       inkscape:stockid="DistanceStart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceStart-3"
+       style="overflow:visible">
+      <g
+         id="g2300-62">
+        <path
+           id="path2306-74"
+           d="M 0,0 2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2302-1"
+           d="M 0,0 13,4 9,0 13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2304-61"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceEnd"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceEnd-4"
+       style="overflow:visible">
+      <g
+         id="g3659-3">
+        <path
+           id="path2316-4"
+           d="M 0,0 -2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2312-7"
+           d="M 0,0 -13,4 -9,0 -13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2314-3"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective4539" />
+    <marker
+       inkscape:stockid="DistanceStart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceStart-77"
+       style="overflow:visible">
+      <g
+         id="g2300-4">
+        <path
+           id="path2306-8"
+           d="M 0,0 2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2302-13"
+           d="M 0,0 13,4 9,0 13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2304-07"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceEnd"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceEnd-2"
+       style="overflow:visible">
+      <g
+         id="g3659-52">
+        <path
+           id="path2316-3"
+           d="M 0,0 -2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2312-12"
+           d="M 0,0 -13,4 -9,0 -13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2314-8"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective4643" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective4664" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective6531" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective6552" />
+    <marker
+       style="overflow:visible"
+       id="Arrow1Lend-9"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Lend">
+      <path
+         transform="matrix(-0.8,0,0,-0.8,-10,0)"
+         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5211-9" />
+    </marker>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective8200" />
+    <marker
+       style="overflow:visible"
+       id="Arrow1Lend-6"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Lend">
+      <path
+         transform="matrix(-0.8,0,0,-0.8,-10,0)"
+         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5211-7" />
+    </marker>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective8234" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective8256" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective8278" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective8299" />
+    <marker
+       style="overflow:visible"
+       id="Arrow1Lend-60"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Lend">
+      <path
+         transform="matrix(-0.8,0,0,-0.8,-10,0)"
+         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5211-2" />
+    </marker>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective8333" />
+    <marker
+       style="overflow:visible"
+       id="Arrow1Lend-3"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Lend">
+      <path
+         transform="matrix(-0.8,0,0,-0.8,-10,0)"
+         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path5211-98" />
+    </marker>
+    <marker
+       style="overflow:visible"
+       id="marker8339"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Lend">
+      <path
+         transform="matrix(-0.8,0,0,-0.8,-10,0)"
+         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path8341" />
+    </marker>
+    <marker
+       style="overflow:visible"
+       id="marker8343"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Lend">
+      <path
+         transform="matrix(-0.8,0,0,-0.8,-10,0)"
+         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path8345" />
+    </marker>
+    <marker
+       style="overflow:visible"
+       id="marker8347"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Lend">
+      <path
+         transform="matrix(-0.8,0,0,-0.8,-10,0)"
+         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
+         d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+         id="path8349" />
+    </marker>
+    <marker
+       inkscape:stockid="DistanceEnd"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceEnd-0-7"
+       style="overflow:visible">
+      <g
+         id="g3659-5-2">
+        <path
+           id="path2316-2-6"
+           d="M 0,0 -2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2312-1-6"
+           d="M 0,0 -13,4 -9,0 -13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2314-0-40"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceStart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceStart-5-89"
+       style="overflow:visible">
+      <g
+         id="g2300-9-2">
+        <path
+           id="path2306-7-8"
+           d="M 0,0 2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2302-9-2"
+           d="M 0,0 13,4 9,0 13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2304-9-8"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceStart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceStart-99"
+       style="overflow:visible">
+      <g
+         id="g2300-5">
+        <path
+           id="path2306-4"
+           d="M 0,0 2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2302-0"
+           d="M 0,0 13,4 9,0 13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2304-8"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceEnd"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="DistanceEnd-51"
+       style="overflow:visible">
+      <g
+         id="g3659-7">
+        <path
+           id="path2316-6"
+           d="M 0,0 -2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path2312-76"
+           d="M 0,0 -13,4 -9,0 -13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path2314-80"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceStart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker8371"
+       style="overflow:visible">
+      <g
+         id="g8373">
+        <path
+           id="path8375"
+           d="M 0,0 2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path8377"
+           d="M 0,0 13,4 9,0 13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path8379"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceEnd"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker8381"
+       style="overflow:visible">
+      <g
+         id="g8383">
+        <path
+           id="path8385"
+           d="M 0,0 -2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path8387"
+           d="M 0,0 -13,4 -9,0 -13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path8389"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceStart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker8391"
+       style="overflow:visible">
+      <g
+         id="g8393">
+        <path
+           id="path8395"
+           d="M 0,0 2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path8397"
+           d="M 0,0 13,4 9,0 13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path8399"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceEnd"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker8401"
+       style="overflow:visible">
+      <g
+         id="g8403">
+        <path
+           id="path8405"
+           d="M 0,0 -2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path8407"
+           d="M 0,0 -13,4 -9,0 -13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path8409"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <linearGradient
+       gradientTransform="translate(0.5,0)"
+       gradientUnits="userSpaceOnUse"
+       y2="384.36218"
+       x2="-109.01785"
+       y1="384.36218"
+       x1="-81"
+       id="linearGradient8190-9"
+       xlink:href="#linearGradient8184-4"
+       inkscape:collect="always" />
+    <linearGradient
+       id="linearGradient8184-4"
+       inkscape:collect="always">
+      <stop
+         id="stop8186-3"
+         offset="0"
+         style="stop-color:#000000;stop-opacity:1;" />
+      <stop
+         id="stop8188-0"
+         offset="1"
+         style="stop-color:#000000;stop-opacity:0;" />
+    </linearGradient>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective8696" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective8717" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective8739" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective8762" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective8786" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective8808" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective8830" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective8852" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective8874" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective9558" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective9604" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective9629" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective10976" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11002" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11030" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11058" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11086" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11114" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11142" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11170" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11224" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11249" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11295" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11344" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11390" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11436" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11482" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11505" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11602" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11624" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11650" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11650-3" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11650-4" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11704" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11704-3" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11704-6" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11704-31" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11704-318" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11704-68" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11704-2" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11704-7" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11853" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11902" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective11924" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective13020" />
+    <marker
+       inkscape:stockid="DistanceStart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker8391-5"
+       style="overflow:visible">
+      <g
+         id="g8393-2">
+        <path
+           id="path8395-3"
+           d="M 0,0 2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path8397-1"
+           d="M 0,0 13,4 9,0 13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path8399-4"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceEnd"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker8401-1"
+       style="overflow:visible">
+      <g
+         id="g8403-8">
+        <path
+           id="path8405-7"
+           d="M 0,0 -2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path8407-6"
+           d="M 0,0 -13,4 -9,0 -13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path8409-1"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective13072" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective13517" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective13517-4" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective14139" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective14178" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective14219" />
+    <marker
+       inkscape:stockid="DistanceStart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker8391-7"
+       style="overflow:visible">
+      <g
+         id="g8393-7">
+        <path
+           id="path8395-8"
+           d="M 0,0 2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path8397-18"
+           d="M 0,0 13,4 9,0 13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path8399-9"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceEnd"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker8401-5"
+       style="overflow:visible">
+      <g
+         id="g8403-0">
+        <path
+           id="path8405-5"
+           d="M 0,0 -2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path8407-7"
+           d="M 0,0 -13,4 -9,0 -13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path8409-8"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceStart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker14233"
+       style="overflow:visible">
+      <g
+         id="g14235">
+        <path
+           id="path14237"
+           d="M 0,0 2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path14239"
+           d="M 0,0 13,4 9,0 13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path14241"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <marker
+       inkscape:stockid="DistanceEnd"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="marker14243"
+       style="overflow:visible">
+      <g
+         id="g14245">
+        <path
+           id="path14247"
+           d="M 0,0 -2,0"
+           style="fill:none;stroke:#ffffff;stroke-width:1.14999998;stroke-linecap:square" />
+        <path
+           id="path14249"
+           d="M 0,0 -13,4 -9,0 -13,-4 0,0 z"
+           style="fill:#000000;fill-rule:evenodd;stroke:none" />
+        <path
+           id="path14251"
+           d="M 0,-4 0,40"
+           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square" />
+      </g>
+    </marker>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective18416" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective18870" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective18892" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective18914" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective18936" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective18958" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective18980" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective19002" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1-3"
+       id="linearGradient5781"
+       gradientUnits="userSpaceOnUse"
+       spreadMethod="pad"
+       x1="0"
+       y1="0"
+       x2="0"
+       y2="33" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1-3"
+       id="linearGradient5783"
+       gradientUnits="userSpaceOnUse"
+       spreadMethod="pad"
+       x1="0"
+       y1="0"
+       x2="0"
+       y2="33" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1-3"
+       id="linearGradient5785"
+       gradientUnits="userSpaceOnUse"
+       spreadMethod="pad"
+       x1="0"
+       y1="0"
+       x2="0"
+       y2="33" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2"
+       id="linearGradient5787"
+       gradientUnits="userSpaceOnUse"
+       spreadMethod="pad"
+       x1="0"
+       y1="0"
+       x2="0"
+       y2="33" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2"
+       id="linearGradient5789"
+       gradientUnits="userSpaceOnUse"
+       spreadMethod="pad"
+       x1="0"
+       y1="0"
+       x2="0"
+       y2="33" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2"
+       id="linearGradient5791"
+       gradientUnits="userSpaceOnUse"
+       spreadMethod="pad"
+       x1="0"
+       y1="0"
+       x2="0"
+       y2="33" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3"
+       id="linearGradient5793"
+       gradientUnits="userSpaceOnUse"
+       spreadMethod="pad"
+       x1="0"
+       y1="0"
+       x2="0"
+       y2="33" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3"
+       id="linearGradient5795"
+       gradientUnits="userSpaceOnUse"
+       spreadMethod="pad"
+       x1="0"
+       y1="0"
+       x2="0"
+       y2="33" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3"
+       id="linearGradient5797"
+       gradientUnits="userSpaceOnUse"
+       spreadMethod="pad"
+       x1="0"
+       y1="0"
+       x2="0"
+       y2="33" />
+    <defs
+       id="defs1">
+      <linearGradient
+         spreadMethod="pad"
+         id="linearGradient1-3"
+         y2="33"
+         y1="0"
+         x2="0"
+         gradientUnits="userSpaceOnUse"
+         x1="0">
+        <stop
+           id="stop5315"
+           offset="0%"
+           stop-color="rgb(255,255,245)"
+           stop-opacity="1" />
+        <stop
+           id="stop5317"
+           offset="100%"
+           stop-color="rgb(215,213,172)"
+           stop-opacity="1" />
+      </linearGradient>
+      <linearGradient
+         spreadMethod="pad"
+         id="linearGradient2"
+         y2="33"
+         y1="0"
+         x2="0"
+         gradientUnits="userSpaceOnUse"
+         x1="0">
+        <stop
+           id="stop5320"
+           offset="0%"
+           stop-color="rgb(255,255,245)"
+           stop-opacity="1" />
+        <stop
+           id="stop5322"
+           offset="100%"
+           stop-color="rgb(215,213,172)"
+           stop-opacity="1" />
+      </linearGradient>
+      <linearGradient
+         spreadMethod="pad"
+         id="linearGradient3"
+         y2="33"
+         y1="0"
+         x2="0"
+         gradientUnits="userSpaceOnUse"
+         x1="0">
+        <stop
+           id="stop5325"
+           offset="0%"
+           stop-color="rgb(255,255,245)"
+           stop-opacity="1" />
+        <stop
+           id="stop5327"
+           offset="100%"
+           stop-color="rgb(215,213,172)"
+           stop-opacity="1" />
+      </linearGradient>
+      <clipPath
+         id="clipPath1"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5330"
+           d="M 0,0 253,0 253,396 0,396 0,0 Z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath2-6"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5333"
+           d="m -20,-20 253,0 0,396 -253,0 0,-396 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath3"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5336"
+           d="m -49.5,-136 253,0 0,396 -253,0 0,-396 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath4-7"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5339-5"
+           d="m 0,0 0,66 154,0 0,-66 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath5-3"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5342"
+           d="m 0,0 0,64 152,0 0,-64 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath6-5"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5345"
+           d="m 0,0 0,62 150,0 0,-62 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath7-6"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5348"
+           d="m 0,0 0,29 150,0 0,-29 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath8"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5351"
+           d="M 0,0 0,27 38,27 38,0 Z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath9-2"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5354"
+           d="M 0,0 0,27 88,27 88,0 Z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath10-9"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5357"
+           d="m 0,0 0,33 150,0 0,-33 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath11"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5360"
+           d="m 0,0 0,27 144,0 0,-27 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath12-1"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5363"
+           d="m -35.5,-20 253,0 0,396 -253,0 0,-396 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath13-2"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5366"
+           d="m 0,0 0,66 182,0 0,-66 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath14-7"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5369"
+           d="m 0,0 0,64 180,0 0,-64 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath15"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5372"
+           d="m 0,0 0,62 178,0 0,-62 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath16-0"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5375"
+           d="m 0,0 0,29 178,0 0,-29 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath17-9"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5378"
+           d="M 0,0 0,27 89,27 89,0 Z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath18-3"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5381"
+           d="m 0,0 0,33 178,0 0,-33 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath19-60"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5384"
+           d="m 0,0 0,27 172,0 0,-27 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath20"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5387"
+           d="m -20,-252 253,0 0,396 -253,0 0,-396 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath21-62"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5390"
+           d="m 0,0 0,124 213,0 0,-124 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath22"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5393"
+           d="m 0,0 0,122 211,0 0,-122 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath23-6"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5396"
+           d="m 0,0 0,120 209,0 0,-120 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath24-1"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5399"
+           d="m 0,0 0,87 209,0 0,-87 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath25-8"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5402"
+           d="m 0,0 0,29 209,0 0,-29 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath26"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5405"
+           d="m 0,0 0,27 147,0 0,-27 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath27-7"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5408"
+           d="m 0,29 0,29 209,0 0,-29 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath28-9"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5411"
+           d="m 0,58 0,29 209,0 0,-29 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath29-2"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5414"
+           d="m 0,0 0,33 209,0 0,-33 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+      <clipPath
+         id="clipPath30-0"
+         clipPathUnits="userSpaceOnUse">
+        <path
+           id="path5417"
+           d="m 0,0 0,27 203,0 0,-27 z"
+           inkscape:connector-curvature="0" />
+      </clipPath>
+    </defs>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2"
+       id="linearGradient6637"
+       gradientUnits="userSpaceOnUse"
+       spreadMethod="pad"
+       x1="0"
+       y1="0"
+       x2="0"
+       y2="33" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2"
+       id="linearGradient6639"
+       gradientUnits="userSpaceOnUse"
+       spreadMethod="pad"
+       x1="0"
+       y1="0"
+       x2="0"
+       y2="33" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2"
+       id="linearGradient6641"
+       gradientUnits="userSpaceOnUse"
+       spreadMethod="pad"
+       x1="0"
+       y1="0"
+       x2="0"
+       y2="33" />
+  </defs>
+  <metadata
+     id="metadata5">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:groupmode="layer"
+     id="g18651"
+     inkscape:label="Layer 3"
+     style="display:inline"
+     transform="translate(-1.4239073,11.675749)">
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="137.26913"
+       y="21.809916"
+       id="text18237"><tspan
+         sodipodi:role="line"
+         id="tspan18235"
+         x="137.26913"
+         y="21.809916"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332" /></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="137.26913"
+       y="16.518251"
+       id="text18241"><tspan
+         sodipodi:role="line"
+         id="tspan18239"
+         x="137.26913"
+         y="16.518251"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332" /></text>
+    <g
+       id="g18419"
+       transform="matrix(0.21648271,0,0,0.39878377,45.535862,-51.791606)"
+       style="fill:#ffb100;fill-opacity:1" />
+    <g
+       id="g6196"
+       transform="translate(8.4666678,40.216672)">
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,64.346666,-50.935076)"
+         id="g5427">
+        <rect
+           style="stroke:none"
+           x="2"
+           width="152"
+           height="1"
+           y="65"
+           clip-path="url(#clipPath4-7)"
+           id="rect5429" />
+        <rect
+           style="stroke:none"
+           x="153"
+           width="1"
+           height="64"
+           y="2"
+           clip-path="url(#clipPath4-7)"
+           id="rect5431" />
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#c0c0c0;fill-opacity:1;stroke:#c0c0c0;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,64.628888,-50.652854)"
+         id="g5433">
+        <path
+           style="fill-rule:evenodd;stroke:none"
+           inkscape:connector-curvature="0"
+           d="M 0,0 152,0 152,64 0,64 0,0 Z M 1,1 151,1 151,63 1,63 1,1 Z"
+           clip-path="url(#clipPath5-3)"
+           id="path5435" />
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#e8e8e8;fill-opacity:1;stroke:#e8e8e8;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,64.91111,-50.370631)"
+         id="g5437">
+        <rect
+           style="stroke:none"
+           x="0"
+           width="150"
+           height="62"
+           y="0"
+           clip-path="url(#clipPath6-5)"
+           id="rect5439" />
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,64.91111,-41.057297)"
+         id="g5441">
+        <rect
+           style="stroke:none"
+           x="0"
+           width="150"
+           height="29"
+           y="0"
+           clip-path="url(#clipPath7-6)"
+           id="rect5443" />
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,95.955559,-40.775074)"
+         id="g5445">
+        <text
+           style="stroke:none"
+           x="3"
+           xml:space="preserve"
+           y="20"
+           clip-path="url(#clipPath8)"
+           id="text5447">void</text>
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,65.475555,-40.775074)"
+         id="g5449">
+        <rect
+           style="stroke:none"
+           x="0"
+           width="36"
+           height="27"
+           y="0"
+           clip-path="url(#clipPath9-2)"
+           id="rect5451" />
+        <image
+           x="2"
+           y="6"
+           clip-path="url(#clipPath9-2)"
+           width="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABIElEQVR42mNgoBAw
+ogv86F2oxvT3r/M/BgYDZHEmBoYL/5iZ93IUx99CE0cDf/8Wo2sGAbAYUA5dHG7A
+rGXrw4h19sxlG1JQDJi1Yp3af0YmZ6I9zsTgN3PJBl24Af8ZGJ1JDTwmZgZfEM0C
+5v1ngvv5xJP7Qv0n9prC+Ar8wu8efHwrBGPDw4SRwQJhABZQaOF8+sqrp0K7791Q
+9lfXv8HDxvZn6eXTOjgDER1YyCi+0xGTBtsYpWv6UIyb7zu6mumL1okxUZKIMuOC
+XkEMYPx3geRA/M9wAu4FRob/e5GdvjIkZSc+NjgQ/zJshhuQFhF0i/H/v71EW/+P
+YVN6TMBllEBMiwpcRaz+9KiAObhjgZm5F5RxsETXBZAcA7UBABLxYB5agt76AAAA
+AElFTkSuQmCC"
+           height="16"
+           preserveAspectRatio="none"
+           id="image5453" />
+        <image
+           x="18"
+           y="6"
+           clip-path="url(#clipPath9-2)"
+           width="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAjElEQVR42mNgGAWM
+6ALJW11q/jP+lwVL/md8PNd7Tws+A1jQBUCamf8z9ILYfxn/FxNyAQs2wdnee2+B
+6KRtzgxkGQD3CsN/kCEz4f7F4iUmdI3zvPamx61zFoaFA7r30MWYsNm+KGjvWzjn
+L8MCRkamVSR7AQ6YGRL+//+HU5oJZ/wC/UuM2ChgYAAAYjIvl7Ex+6kAAAAASUVO
+RK5CYII="
+           height="16"
+           preserveAspectRatio="none"
+           id="image5455" />
+        <rect
+           style="stroke:none"
+           x="36"
+           width="52"
+           height="27"
+           y="0"
+           clip-path="url(#clipPath9-2)"
+           id="rect5457" />
+        <text
+           style="fill:#000000;stroke:none"
+           x="37"
+           xml:space="preserve"
+           y="20"
+           clip-path="url(#clipPath9-2)"
+           id="text5459">flush()</text>
+      </g>
+      <g
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,64.91111,-50.370631)"
+         id="g5461"
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:url(#linearGradient5783);fill-opacity:1;stroke:url(#linearGradient5785);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto">
+        <rect
+           x="0"
+           width="150"
+           height="33"
+           y="0"
+           clip-path="url(#clipPath10-9)"
+           id="rect5463"
+           style="fill:url(#linearGradient5781);stroke:none" />
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#0a7700;fill-opacity:1;stroke:#0a7700;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,65.757777,-49.523965)"
+         id="g5465">
+        <image
+           x="2"
+           y="6"
+           clip-path="url(#clipPath11)"
+           width="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA6klEQVR42mNgoBAw
+ogsU7QlXY2Zkdmb4/88AVSXThb///+7tc1l5C6cBJfsiwxj//XfGbyXT8W7nZQtg
+XGYYo3RvVALj//92hB39X9YqQZfr2MIrV0E8JpizgU62JNrfQFeC9QABC9gZED+j
+KNrffMUdRLPxMH//9eUvp2Otzk5kebAeBoZbTBBXoQUYEMA0SBgIPUTXjKyHidJo
+HCwGABMJugQsEF9ceCcPY6MnLHgsgFIYMwOjAbZAxAVAeuAJ6fiiq29BiYPxP4MS
+Mc7+z8S4t9d5xSGUlAhKWcQYAtLc47R8FdUyE8UAADh9ZrrOoLhQAAAAAElFTkSu
+QmCC"
+           height="16"
+           preserveAspectRatio="none"
+           id="image5467" />
+        <image
+           x="18"
+           y="6"
+           clip-path="url(#clipPath11)"
+           width="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAjElEQVR42mNgGAWM
+6ALJW11q/jP+lwVL/md8PNd7Tws+A1jQBUCamf8z9ILYfxn/FxNyAQs2wdnee2+B
+6KRtzgxkGQD3CsN/kCEz4f7F4iUmdI3zvPamx61zFoaFA7r30MWYsNm+KGjvWzjn
+L8MCRkamVSR7AQ6YGRL+//+HU5oJZ/wC/UuM2ChgYAAAYjIvl7Ex+6kAAAAASUVO
+RK5CYII="
+           height="16"
+           preserveAspectRatio="none"
+           id="image5469" />
+        <text
+           style="stroke:none"
+           x="37"
+           xml:space="preserve"
+           y="20"
+           clip-path="url(#clipPath11)"
+           id="text5471">MyFlushable</text>
+      </g>
+    </g>
+    <g
+       id="g6171"
+       transform="translate(24.687833,33.963686)">
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,-17.91451,-44.682089)"
+         id="g5473">
+        <rect
+           style="stroke:none"
+           x="2"
+           width="180"
+           height="1"
+           y="65"
+           clip-path="url(#clipPath13-2)"
+           id="rect5475" />
+        <rect
+           style="stroke:none"
+           x="181"
+           width="1"
+           height="64"
+           y="2"
+           clip-path="url(#clipPath13-2)"
+           id="rect5477" />
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#c0c0c0;fill-opacity:1;stroke:#c0c0c0;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,-17.632288,-44.399867)"
+         id="g5479">
+        <path
+           style="fill-rule:evenodd;stroke:none"
+           inkscape:connector-curvature="0"
+           d="M 0,0 180,0 180,64 0,64 0,0 Z M 1,1 179,1 179,63 1,63 1,1 Z"
+           clip-path="url(#clipPath14-7)"
+           id="path5481" />
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#e8e8e8;fill-opacity:1;stroke:#e8e8e8;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,-17.350065,-44.117644)"
+         id="g5483">
+        <rect
+           style="stroke:none"
+           x="0"
+           width="178"
+           height="62"
+           y="0"
+           clip-path="url(#clipPath15)"
+           id="rect5485" />
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,-17.350065,-34.80431)"
+         id="g5487">
+        <rect
+           style="stroke:none"
+           x="0"
+           width="178"
+           height="29"
+           y="0"
+           clip-path="url(#clipPath16-0)"
+           id="rect5489" />
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,21.596607,-34.522087)"
+         id="g5491">
+        <text
+           style="stroke:none"
+           x="3"
+           xml:space="preserve"
+           y="20"
+           clip-path="url(#clipPath8)"
+           id="text5493">void</text>
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,-16.785621,-34.522087)"
+         id="g5495">
+        <rect
+           style="stroke:none"
+           x="0"
+           width="36"
+           height="27"
+           y="0"
+           clip-path="url(#clipPath17-9)"
+           id="rect5497" />
+        <image
+           x="2"
+           y="6"
+           clip-path="url(#clipPath17-9)"
+           width="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABIElEQVR42mNgoBAw
+ogv86F2oxvT3r/M/BgYDZHEmBoYL/5iZ93IUx99CE0cDf/8Wo2sGAbAYUA5dHG7A
+rGXrw4h19sxlG1JQDJi1Yp3af0YmZ6I9zsTgN3PJBl24Af8ZGJ1JDTwmZgZfEM0C
+5v1ngvv5xJP7Qv0n9prC+Ar8wu8efHwrBGPDw4SRwQJhABZQaOF8+sqrp0K7791Q
+9lfXv8HDxvZn6eXTOjgDER1YyCi+0xGTBtsYpWv6UIyb7zu6mumL1okxUZKIMuOC
+XkEMYPx3geRA/M9wAu4FRob/e5GdvjIkZSc+NjgQ/zJshhuQFhF0i/H/v71EW/+P
+YVN6TMBllEBMiwpcRaz+9KiAObhjgZm5F5RxsETXBZAcA7UBABLxYB5agt76AAAA
+AElFTkSuQmCC"
+           height="16"
+           preserveAspectRatio="none"
+           id="image5499" />
+        <image
+           x="18"
+           y="6"
+           clip-path="url(#clipPath17-9)"
+           width="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAjElEQVR42mNgGAWM
+6ALJW11q/jP+lwVL/md8PNd7Tws+A1jQBUCamf8z9ILYfxn/FxNyAQs2wdnee2+B
+6KRtzgxkGQD3CsN/kCEz4f7F4iUmdI3zvPamx61zFoaFA7r30MWYsNm+KGjvWzjn
+L8MCRkamVSR7AQ6YGRL+//+HU5oJZ/wC/UuM2ChgYAAAYjIvl7Ex+6kAAAAASUVO
+RK5CYII="
+           height="16"
+           preserveAspectRatio="none"
+           id="image5501" />
+        <rect
+           style="stroke:none"
+           x="36"
+           width="53"
+           height="27"
+           y="0"
+           clip-path="url(#clipPath17-9)"
+           id="rect5503" />
+        <text
+           style="fill:#000000;stroke:none"
+           x="37"
+           xml:space="preserve"
+           y="20"
+           clip-path="url(#clipPath17-9)"
+           id="text5505">close()</text>
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:url(#linearGradient5789);fill-opacity:1;stroke:url(#linearGradient5791);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,-17.350065,-44.117644)"
+         id="g5507">
+        <rect
+           style="fill:url(#linearGradient5787);stroke:none"
+           x="0"
+           width="178"
+           height="33"
+           y="0"
+           clip-path="url(#clipPath18-3)"
+           id="rect5509" />
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#0a7700;fill-opacity:1;stroke:#0a7700;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,-16.503398,-43.270978)"
+         id="g5511">
+        <image
+           x="2"
+           y="6"
+           clip-path="url(#clipPath19-60)"
+           width="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA6klEQVR42mNgoBAw
+ogsU7QlXY2Zkdmb4/88AVSXThb///+7tc1l5C6cBJfsiwxj//XfGbyXT8W7nZQtg
+XGYYo3RvVALj//92hB39X9YqQZfr2MIrV0E8JpizgU62JNrfQFeC9QABC9gZED+j
+KNrffMUdRLPxMH//9eUvp2Otzk5kebAeBoZbTBBXoQUYEMA0SBgIPUTXjKyHidJo
+HCwGABMJugQsEF9ceCcPY6MnLHgsgFIYMwOjAbZAxAVAeuAJ6fiiq29BiYPxP4MS
+Mc7+z8S4t9d5xSGUlAhKWcQYAtLc47R8FdUyE8UAADh9ZrrOoLhQAAAAAElFTkSu
+QmCC"
+           height="16"
+           preserveAspectRatio="none"
+           id="image5513" />
+        <image
+           x="18"
+           y="6"
+           clip-path="url(#clipPath19-60)"
+           width="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAjElEQVR42mNgGAWM
+6ALJW11q/jP+lwVL/md8PNd7Tws+A1jQBUCamf8z9ILYfxn/FxNyAQs2wdnee2+B
+6KRtzgxkGQD3CsN/kCEz4f7F4iUmdI3zvPamx61zFoaFA7r30MWYsNm+KGjvWzjn
+L8MCRkamVSR7AQ6YGRL+//+HU5oJZ/wC/UuM2ChgYAAAYjIvl7Ex+6kAAAAASUVO
+RK5CYII="
+           height="16"
+           preserveAspectRatio="none"
+           id="image5515" />
+        <text
+           style="stroke:none"
+           x="37"
+           xml:space="preserve"
+           y="20"
+           clip-path="url(#clipPath19-60)"
+           id="text5517">MyAutoCloseable</text>
+      </g>
+    </g>
+    <g
+       id="g6130"
+       transform="translate(25.400003,-6.2088896)">
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,41.909996,33.590492)"
+         id="g5519">
+        <rect
+           style="stroke:none"
+           x="2"
+           width="211"
+           height="1"
+           y="123"
+           clip-path="url(#clipPath21-62)"
+           id="rect5521" />
+        <rect
+           style="stroke:none"
+           x="212"
+           width="1"
+           height="122"
+           y="2"
+           clip-path="url(#clipPath21-62)"
+           id="rect5523" />
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#c0c0c0;fill-opacity:1;stroke:#c0c0c0;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,42.192218,33.872714)"
+         id="g5525">
+        <path
+           style="fill-rule:evenodd;stroke:none"
+           inkscape:connector-curvature="0"
+           d="M 0,0 211,0 211,122 0,122 0,0 Z M 1,1 210,1 210,121 1,121 1,1 Z"
+           clip-path="url(#clipPath22)"
+           id="path5527" />
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#e8e8e8;fill-opacity:1;stroke:#e8e8e8;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,42.474441,34.154936)"
+         id="g5529">
+        <rect
+           style="stroke:none"
+           x="0"
+           width="209"
+           height="120"
+           y="0"
+           clip-path="url(#clipPath23-6)"
+           id="rect5531" />
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,42.474441,43.468271)"
+         id="g5533">
+        <rect
+           style="stroke:none"
+           x="0"
+           width="209"
+           height="87"
+           y="0"
+           clip-path="url(#clipPath24-1)"
+           id="rect5535" />
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,90.170003,43.750493)"
+         id="g5537">
+        <text
+           style="stroke:none"
+           x="3"
+           xml:space="preserve"
+           y="20"
+           clip-path="url(#clipPath8)"
+           id="text5539">void</text>
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,43.038885,43.750493)"
+         id="g5541">
+        <rect
+           style="stroke:none"
+           x="0"
+           width="36"
+           height="27"
+           y="0"
+           clip-path="url(#clipPath26)"
+           id="rect5543" />
+        <image
+           x="2"
+           y="6"
+           clip-path="url(#clipPath26)"
+           width="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABC0lEQVR42mNgoBAw
+ogv86F2oxvT3r/M/BgYDZHEmBoYL/5iZ93IUx9/CacDP7rlh//8zOuOzkYnh/3G2
+suQFMD4zjPGra27CfwZGO0JOBqqRrXXz42rZvekq1GUQZ/9jYLQk1t8gV4L0wA0A
++ZnUwIPpYQERyAF24sl9of4Te01hfAV+4XcPPr4VgrE7XQNPI+thwWVDoYXz6Suv
+ngrtvndD2V9d/wYPG9ufpZdP62AGKg5gIaP4TkdM+h2IHaVr+lCMm+879lihEDDB
+EgkZGi/AExI4Sv7+LSbJBGbmXlCqBCekll0b3oISB9A8JaLSP+P/vRwliYdQUiIo
+ZRFjCEgze2nyKqplJooBAPLmaJ/uO4SyAAAAAElFTkSuQmCC"
+           height="16"
+           preserveAspectRatio="none"
+           id="image5545" />
+        <image
+           x="18"
+           y="6"
+           clip-path="url(#clipPath26)"
+           width="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAjElEQVR42mNgGAWM
+6ALJW11q/jP+lwVL/md8PNd7Tws+A1jQBUCamf8z9ILYfxn/FxNyAQs2wdnee2+B
+6KRtzgxkGQD3CsN/kCEz4f7F4iUmdI3zvPamx61zFoaFA7r30MWYsNm+KGjvWzjn
+L8MCRkamVSR7AQ6YGRL+//+HU5oJZ/wC/UuM2ChgYAAAYjIvl7Ex+6kAAAAASUVO
+RK5CYII="
+           height="16"
+           preserveAspectRatio="none"
+           id="image5547" />
+        <rect
+           style="stroke:none"
+           x="36"
+           width="111"
+           height="27"
+           y="0"
+           clip-path="url(#clipPath26)"
+           id="rect5549" />
+        <text
+           style="fill:#000000;stroke:none"
+           x="37"
+           xml:space="preserve"
+           y="20"
+           clip-path="url(#clipPath26)"
+           id="text5551">println(String)</text>
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,90.170003,51.934938)"
+         id="g5553">
+        <text
+           style="stroke:none"
+           x="3"
+           xml:space="preserve"
+           y="20"
+           clip-path="url(#clipPath8)"
+           id="text5555">void</text>
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,43.038885,51.934938)"
+         id="g5557">
+        <rect
+           style="stroke:none"
+           x="0"
+           width="36"
+           height="27"
+           y="0"
+           clip-path="url(#clipPath9-2)"
+           id="rect5559" />
+        <image
+           x="2"
+           y="6"
+           clip-path="url(#clipPath9-2)"
+           width="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABC0lEQVR42mNgoBAw
+ogv86F2oxvT3r/M/BgYDZHEmBoYL/5iZ93IUx9/CacDP7rlh//8zOuOzkYnh/3G2
+suQFMD4zjPGra27CfwZGO0JOBqqRrXXz42rZvekq1GUQZ/9jYLQk1t8gV4L0wA0A
++ZnUwIPpYQERyAF24sl9of4Te01hfAV+4XcPPr4VgrE7XQNPI+thwWVDoYXz6Suv
+ngrtvndD2V9d/wYPG9ufpZdP62AGKg5gIaP4TkdM+h2IHaVr+lCMm+879lihEDDB
+EgkZGi/AExI4Sv7+LSbJBGbmXlCqBCekll0b3oISB9A8JaLSP+P/vRwliYdQUiIo
+ZRFjCEgze2nyKqplJooBAPLmaJ/uO4SyAAAAAElFTkSuQmCC"
+           height="16"
+           preserveAspectRatio="none"
+           id="image5561" />
+        <image
+           x="18"
+           y="6"
+           clip-path="url(#clipPath9-2)"
+           width="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAjElEQVR42mNgGAWM
+6ALJW11q/jP+lwVL/md8PNd7Tws+A1jQBUCamf8z9ILYfxn/FxNyAQs2wdnee2+B
+6KRtzgxkGQD3CsN/kCEz4f7F4iUmdI3zvPamx61zFoaFA7r30MWYsNm+KGjvWzjn
+L8MCRkamVSR7AQ6YGRL+//+HU5oJZ/wC/UuM2ChgYAAAYjIvl7Ex+6kAAAAASUVO
+RK5CYII="
+           height="16"
+           preserveAspectRatio="none"
+           id="image5563" />
+        <rect
+           style="stroke:none"
+           x="36"
+           width="52"
+           height="27"
+           y="0"
+           clip-path="url(#clipPath9-2)"
+           id="rect5565" />
+        <text
+           style="fill:#000000;stroke:none"
+           x="37"
+           xml:space="preserve"
+           y="20"
+           clip-path="url(#clipPath9-2)"
+           id="text5567">flush()</text>
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,90.170003,60.119384)"
+         id="g5569">
+        <text
+           style="stroke:none"
+           x="3"
+           xml:space="preserve"
+           y="20"
+           clip-path="url(#clipPath8)"
+           id="text5571">void</text>
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,43.038885,60.119384)"
+         id="g5573">
+        <rect
+           style="stroke:none"
+           x="0"
+           width="36"
+           height="27"
+           y="0"
+           clip-path="url(#clipPath17-9)"
+           id="rect5575" />
+        <image
+           x="2"
+           y="6"
+           clip-path="url(#clipPath17-9)"
+           width="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABC0lEQVR42mNgoBAw
+ogv86F2oxvT3r/M/BgYDZHEmBoYL/5iZ93IUx9/CacDP7rlh//8zOuOzkYnh/3G2
+suQFMD4zjPGra27CfwZGO0JOBqqRrXXz42rZvekq1GUQZ/9jYLQk1t8gV4L0wA0A
++ZnUwIPpYQERyAF24sl9of4Te01hfAV+4XcPPr4VgrE7XQNPI+thwWVDoYXz6Suv
+ngrtvndD2V9d/wYPG9ufpZdP62AGKg5gIaP4TkdM+h2IHaVr+lCMm+879lihEDDB
+EgkZGi/AExI4Sv7+LSbJBGbmXlCqBCekll0b3oISB9A8JaLSP+P/vRwliYdQUiIo
+ZRFjCEgze2nyKqplJooBAPLmaJ/uO4SyAAAAAElFTkSuQmCC"
+           height="16"
+           preserveAspectRatio="none"
+           id="image5577" />
+        <image
+           x="18"
+           y="6"
+           clip-path="url(#clipPath17-9)"
+           width="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAjElEQVR42mNgGAWM
+6ALJW11q/jP+lwVL/md8PNd7Tws+A1jQBUCamf8z9ILYfxn/FxNyAQs2wdnee2+B
+6KRtzgxkGQD3CsN/kCEz4f7F4iUmdI3zvPamx61zFoaFA7r30MWYsNm+KGjvWzjn
+L8MCRkamVSR7AQ6YGRL+//+HU5oJZ/wC/UuM2ChgYAAAYjIvl7Ex+6kAAAAASUVO
+RK5CYII="
+           height="16"
+           preserveAspectRatio="none"
+           id="image5579" />
+        <rect
+           style="stroke:none"
+           x="36"
+           width="53"
+           height="27"
+           y="0"
+           clip-path="url(#clipPath17-9)"
+           id="rect5581" />
+        <text
+           style="fill:#000000;stroke:none"
+           x="37"
+           xml:space="preserve"
+           y="20"
+           clip-path="url(#clipPath17-9)"
+           id="text5583">close()</text>
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:url(#linearGradient5795);fill-opacity:1;stroke:url(#linearGradient5797);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,42.474441,34.154936)"
+         id="g5585">
+        <rect
+           style="fill:url(#linearGradient5793);stroke:none"
+           x="0"
+           width="209"
+           height="33"
+           y="0"
+           clip-path="url(#clipPath29-2)"
+           id="rect5587" />
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#0a7700;fill-opacity:1;stroke:#0a7700;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         font-size="16"
+         transform="matrix(0.28222226,0,0,0.28222226,43.321108,35.001603)"
+         id="g5589">
+        <image
+           x="2"
+           y="6"
+           clip-path="url(#clipPath30-0)"
+           width="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABGElEQVR42mNgoBAw
+ogs4b72r9oeRyRnINECTusDy/9/evd7Kt3Aa4Lj1Ydg/xn/OeG1kZDh+wFNxAYzP
+DGM4bL+f8J/hvx0RrpZViirierBswlUQhwnm7P//GSyJ9TfIlSA9IDYLiID6GQ7+
+f/3M8n7lRMM/L58IgZ3Nxv5HtHjiXmQ1UD23WKB8lAADaf737ROncEr9IWZRye84
+HGIA9wI6ANnMaeJ8F49mOGCiNB1gNYBFXObd9zN7lf++fs5JyABYGFxADgfB8Pzz
+oHB4O6fRDlcgQvVADAClMGCowg1g5Ob9I5RUcxqvzUA98IR0f9mkt6DE8Z/xvxJR
+/v7PtHeft+IhlJQISlnEGALSvN9bfhXVMhPFAABj9nS+zu6R5QAAAABJRU5ErkJg
+gg=="
+           height="16"
+           preserveAspectRatio="none"
+           id="image5591" />
+        <image
+           x="18"
+           y="6"
+           clip-path="url(#clipPath30-0)"
+           width="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAjElEQVR42mNgGAWM
+6ALJW11q/jP+lwVL/md8PNd7Tws+A1jQBUCamf8z9ILYfxn/FxNyAQs2wdnee2+B
+6KRtzgxkGQD3CsN/kCEz4f7F4iUmdI3zvPamx61zFoaFA7r30MWYsNm+KGjvWzjn
+L8MCRkamVSR7AQ6YGRL+//+HU5oJZ/wC/UuM2ChgYAAAYjIvl7Ex+6kAAAAASUVO
+RK5CYII="
+           height="16"
+           preserveAspectRatio="none"
+           id="image5593" />
+        <text
+           style="stroke:none"
+           x="37"
+           xml:space="preserve"
+           y="20"
+           clip-path="url(#clipPath30-0)"
+           id="text5595">Text2FileFlushable</text>
+      </g>
+    </g>
+    <g
+       id="g5597"
+       transform="matrix(0.28222226,0,0,0.28222226,64.487777,-44.457736)"
+       stroke-miterlimit="1.45"
+       style="font-style:normal;font-weight:normal;font-size:medium;font-family:Dialog;color-interpolation:auto;fill:#008200;fill-opacity:1;stroke:#008200;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.45000005;stroke-dasharray:6, 2;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto">
+      <path
+         id="path5599"
+         clip-path="url(#clipPath2-6)"
+         d="M 105.40111,255.57735 106.5,193.0488"
+         inkscape:connector-curvature="0"
+         style="fill:none"
+         sodipodi:nodetypes="cc" />
+    </g>
+    <path
+       style="font-style:normal;font-weight:normal;font-size:medium;font-family:Dialog;color-interpolation:auto;fill:#008200;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.45000005;stroke-dasharray:6, 2;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+       inkscape:connector-curvature="0"
+       d="m 106.5,182.0488 -6,12 12,0 z"
+       clip-path="url(#clipPath2-6)"
+       id="path5603"
+       transform="matrix(0.28222226,0,0,0.28222226,64.487777,-44.457736)" />
+    <g
+       id="g6224"
+       transform="matrix(0,-1,1,0,72.229074,69.291598)">
+      <path
+         transform="matrix(0.28222226,0,0,0.28222226,41.909996,-31.885073)"
+         id="path5605"
+         clip-path="url(#clipPath2-6)"
+         d="m 106.5,115.9512 0,-38.9024"
+         inkscape:connector-curvature="0"
+         style="font-style:normal;font-weight:normal;font-size:medium;font-family:Dialog;color-interpolation:auto;fill:none;fill-opacity:1;stroke:#008200;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.45000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" />
+      <path
+         transform="matrix(0.28222226,0,0,0.28222226,41.909996,-31.885073)"
+         id="path5607"
+         clip-path="url(#clipPath2-6)"
+         d="m 106.5,66.0488 -6,12 12,0 z"
+         inkscape:connector-curvature="0"
+         style="font-style:normal;font-weight:normal;font-size:medium;font-family:Dialog;color-interpolation:auto;fill:#008200;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.45000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" />
+    </g>
+  </g>
+  <g
+     transform="translate(-1.4239073,11.675749)"
+     style="display:none"
+     inkscape:label="Layer 2"
+     id="g6437"
+     inkscape:groupmode="layer">
+    <text
+       id="text6439"
+       y="21.809916"
+       x="137.26913"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       xml:space="preserve"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332"
+         y="21.809916"
+         x="137.26913"
+         id="tspan6441"
+         sodipodi:role="line" /></text>
+    <text
+       id="text6443"
+       y="16.518251"
+       x="137.26913"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       xml:space="preserve"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332"
+         y="16.518251"
+         x="137.26913"
+         id="tspan6445"
+         sodipodi:role="line" /></text>
+    <g
+       style="fill:#ffb100;fill-opacity:1"
+       transform="matrix(0.21648271,0,0,0.39878377,45.535862,-51.791606)"
+       id="g6447" />
+    <g
+       transform="translate(8.4666678,40.216672)"
+       id="g6449">
+      <g
+         id="g6451"
+         transform="matrix(0.28222226,0,0,0.28222226,64.346666,-50.935076)"
+         font-size="16"
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto">
+        <rect
+           id="rect6453"
+           clip-path="url(#clipPath4-7)"
+           y="65"
+           height="1"
+           width="152"
+           x="2"
+           style="stroke:none" />
+        <rect
+           id="rect6455"
+           clip-path="url(#clipPath4-7)"
+           y="2"
+           height="64"
+           width="1"
+           x="153"
+           style="stroke:none" />
+      </g>
+      <g
+         id="g6457"
+         transform="matrix(0.28222226,0,0,0.28222226,64.628888,-50.652854)"
+         font-size="16"
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#c0c0c0;fill-opacity:1;stroke:#c0c0c0;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto">
+        <path
+           id="path6459"
+           clip-path="url(#clipPath5-3)"
+           d="M 0,0 152,0 152,64 0,64 0,0 Z M 1,1 151,1 151,63 1,63 1,1 Z"
+           inkscape:connector-curvature="0"
+           style="fill-rule:evenodd;stroke:none" />
+      </g>
+      <g
+         id="g6461"
+         transform="matrix(0.28222226,0,0,0.28222226,64.91111,-50.370631)"
+         font-size="16"
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#e8e8e8;fill-opacity:1;stroke:#e8e8e8;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto">
+        <rect
+           id="rect6463"
+           clip-path="url(#clipPath6-5)"
+           y="0"
+           height="62"
+           width="150"
+           x="0"
+           style="stroke:none" />
+      </g>
+      <g
+         id="g6465"
+         transform="matrix(0.28222226,0,0,0.28222226,64.91111,-41.057297)"
+         font-size="16"
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto">
+        <rect
+           id="rect6467"
+           clip-path="url(#clipPath7-6)"
+           y="0"
+           height="29"
+           width="150"
+           x="0"
+           style="stroke:none" />
+      </g>
+      <g
+         id="g6469"
+         transform="matrix(0.28222226,0,0,0.28222226,95.955559,-40.775074)"
+         font-size="16"
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto">
+        <text
+           id="text6471"
+           clip-path="url(#clipPath8)"
+           y="20"
+           xml:space="preserve"
+           x="3"
+           style="stroke:none">void</text>
+      </g>
+      <g
+         id="g6473"
+         transform="matrix(0.28222226,0,0,0.28222226,65.475555,-40.775074)"
+         font-size="16"
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto">
+        <rect
+           id="rect6475"
+           clip-path="url(#clipPath9-2)"
+           y="0"
+           height="27"
+           width="36"
+           x="0"
+           style="stroke:none" />
+        <image
+           id="image6477"
+           preserveAspectRatio="none"
+           height="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABIElEQVR42mNgoBAw
+ogv86F2oxvT3r/M/BgYDZHEmBoYL/5iZ93IUx99CE0cDf/8Wo2sGAbAYUA5dHG7A
+rGXrw4h19sxlG1JQDJi1Yp3af0YmZ6I9zsTgN3PJBl24Af8ZGJ1JDTwmZgZfEM0C
+5v1ngvv5xJP7Qv0n9prC+Ar8wu8efHwrBGPDw4SRwQJhABZQaOF8+sqrp0K7791Q
+9lfXv8HDxvZn6eXTOjgDER1YyCi+0xGTBtsYpWv6UIyb7zu6mumL1okxUZKIMuOC
+XkEMYPx3geRA/M9wAu4FRob/e5GdvjIkZSc+NjgQ/zJshhuQFhF0i/H/v71EW/+P
+YVN6TMBllEBMiwpcRaz+9KiAObhjgZm5F5RxsETXBZAcA7UBABLxYB5agt76AAAA
+AElFTkSuQmCC"
+           width="16"
+           clip-path="url(#clipPath9-2)"
+           y="6"
+           x="2" />
+        <image
+           id="image6479"
+           preserveAspectRatio="none"
+           height="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAjElEQVR42mNgGAWM
+6ALJW11q/jP+lwVL/md8PNd7Tws+A1jQBUCamf8z9ILYfxn/FxNyAQs2wdnee2+B
+6KRtzgxkGQD3CsN/kCEz4f7F4iUmdI3zvPamx61zFoaFA7r30MWYsNm+KGjvWzjn
+L8MCRkamVSR7AQ6YGRL+//+HU5oJZ/wC/UuM2ChgYAAAYjIvl7Ex+6kAAAAASUVO
+RK5CYII="
+           width="16"
+           clip-path="url(#clipPath9-2)"
+           y="6"
+           x="18" />
+        <rect
+           id="rect6481"
+           clip-path="url(#clipPath9-2)"
+           y="0"
+           height="27"
+           width="52"
+           x="36"
+           style="stroke:none" />
+        <text
+           id="text6483"
+           clip-path="url(#clipPath9-2)"
+           y="20"
+           xml:space="preserve"
+           x="37"
+           style="fill:#000000;stroke:none">flush()</text>
+      </g>
+      <g
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:url(#linearGradient5783);fill-opacity:1;stroke:url(#linearGradient5785);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         id="g6485"
+         transform="matrix(0.28222226,0,0,0.28222226,64.91111,-50.370631)"
+         font-size="16">
+        <rect
+           style="fill:url(#linearGradient5781);stroke:none"
+           id="rect6487"
+           clip-path="url(#clipPath10-9)"
+           y="0"
+           height="33"
+           width="150"
+           x="0" />
+      </g>
+      <g
+         id="g6489"
+         transform="matrix(0.28222226,0,0,0.28222226,65.757777,-49.523965)"
+         font-size="16"
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#0a7700;fill-opacity:1;stroke:#0a7700;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto">
+        <image
+           id="image6491"
+           preserveAspectRatio="none"
+           height="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA6klEQVR42mNgoBAw
+ogsU7QlXY2Zkdmb4/88AVSXThb///+7tc1l5C6cBJfsiwxj//XfGbyXT8W7nZQtg
+XGYYo3RvVALj//92hB39X9YqQZfr2MIrV0E8JpizgU62JNrfQFeC9QABC9gZED+j
+KNrffMUdRLPxMH//9eUvp2Otzk5kebAeBoZbTBBXoQUYEMA0SBgIPUTXjKyHidJo
+HCwGABMJugQsEF9ceCcPY6MnLHgsgFIYMwOjAbZAxAVAeuAJ6fiiq29BiYPxP4MS
+Mc7+z8S4t9d5xSGUlAhKWcQYAtLc47R8FdUyE8UAADh9ZrrOoLhQAAAAAElFTkSu
+QmCC"
+           width="16"
+           clip-path="url(#clipPath11)"
+           y="6"
+           x="2" />
+        <image
+           id="image6493"
+           preserveAspectRatio="none"
+           height="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAjElEQVR42mNgGAWM
+6ALJW11q/jP+lwVL/md8PNd7Tws+A1jQBUCamf8z9ILYfxn/FxNyAQs2wdnee2+B
+6KRtzgxkGQD3CsN/kCEz4f7F4iUmdI3zvPamx61zFoaFA7r30MWYsNm+KGjvWzjn
+L8MCRkamVSR7AQ6YGRL+//+HU5oJZ/wC/UuM2ChgYAAAYjIvl7Ex+6kAAAAASUVO
+RK5CYII="
+           width="16"
+           clip-path="url(#clipPath11)"
+           y="6"
+           x="18" />
+        <text
+           id="text6495"
+           clip-path="url(#clipPath11)"
+           y="20"
+           xml:space="preserve"
+           x="37"
+           style="stroke:none">MyFlushable</text>
+      </g>
+    </g>
+    <g
+       transform="translate(24.687833,33.963686)"
+       id="g6497">
+      <g
+         id="g6499"
+         transform="matrix(0.28222226,0,0,0.28222226,-17.91451,-44.682089)"
+         font-size="16"
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto">
+        <rect
+           id="rect6501"
+           clip-path="url(#clipPath13-2)"
+           y="65"
+           height="1"
+           width="180"
+           x="2"
+           style="stroke:none" />
+        <rect
+           id="rect6503"
+           clip-path="url(#clipPath13-2)"
+           y="2"
+           height="64"
+           width="1"
+           x="181"
+           style="stroke:none" />
+      </g>
+      <g
+         id="g6505"
+         transform="matrix(0.28222226,0,0,0.28222226,-17.632288,-44.399867)"
+         font-size="16"
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#c0c0c0;fill-opacity:1;stroke:#c0c0c0;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto">
+        <path
+           id="path6507"
+           clip-path="url(#clipPath14-7)"
+           d="M 0,0 180,0 180,64 0,64 0,0 Z M 1,1 179,1 179,63 1,63 1,1 Z"
+           inkscape:connector-curvature="0"
+           style="fill-rule:evenodd;stroke:none" />
+      </g>
+      <g
+         id="g6509"
+         transform="matrix(0.28222226,0,0,0.28222226,-17.350065,-44.117644)"
+         font-size="16"
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#e8e8e8;fill-opacity:1;stroke:#e8e8e8;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto">
+        <rect
+           id="rect6511"
+           clip-path="url(#clipPath15)"
+           y="0"
+           height="62"
+           width="178"
+           x="0"
+           style="stroke:none" />
+      </g>
+      <g
+         id="g6513"
+         transform="matrix(0.28222226,0,0,0.28222226,-17.350065,-34.80431)"
+         font-size="16"
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto">
+        <rect
+           id="rect6515"
+           clip-path="url(#clipPath16-0)"
+           y="0"
+           height="29"
+           width="178"
+           x="0"
+           style="stroke:none" />
+      </g>
+      <g
+         id="g6517"
+         transform="matrix(0.28222226,0,0,0.28222226,21.596607,-34.522087)"
+         font-size="16"
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto">
+        <text
+           id="text6519"
+           clip-path="url(#clipPath8)"
+           y="20"
+           xml:space="preserve"
+           x="3"
+           style="stroke:none">void</text>
+      </g>
+      <g
+         id="g6521"
+         transform="matrix(0.28222226,0,0,0.28222226,-16.785621,-34.522087)"
+         font-size="16"
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto">
+        <rect
+           id="rect6523"
+           clip-path="url(#clipPath17-9)"
+           y="0"
+           height="27"
+           width="36"
+           x="0"
+           style="stroke:none" />
+        <image
+           id="image6525"
+           preserveAspectRatio="none"
+           height="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABIElEQVR42mNgoBAw
+ogv86F2oxvT3r/M/BgYDZHEmBoYL/5iZ93IUx99CE0cDf/8Wo2sGAbAYUA5dHG7A
+rGXrw4h19sxlG1JQDJi1Yp3af0YmZ6I9zsTgN3PJBl24Af8ZGJ1JDTwmZgZfEM0C
+5v1ngvv5xJP7Qv0n9prC+Ar8wu8efHwrBGPDw4SRwQJhABZQaOF8+sqrp0K7791Q
+9lfXv8HDxvZn6eXTOjgDER1YyCi+0xGTBtsYpWv6UIyb7zu6mumL1okxUZKIMuOC
+XkEMYPx3geRA/M9wAu4FRob/e5GdvjIkZSc+NjgQ/zJshhuQFhF0i/H/v71EW/+P
+YVN6TMBllEBMiwpcRaz+9KiAObhjgZm5F5RxsETXBZAcA7UBABLxYB5agt76AAAA
+AElFTkSuQmCC"
+           width="16"
+           clip-path="url(#clipPath17-9)"
+           y="6"
+           x="2" />
+        <image
+           id="image6527"
+           preserveAspectRatio="none"
+           height="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAjElEQVR42mNgGAWM
+6ALJW11q/jP+lwVL/md8PNd7Tws+A1jQBUCamf8z9ILYfxn/FxNyAQs2wdnee2+B
+6KRtzgxkGQD3CsN/kCEz4f7F4iUmdI3zvPamx61zFoaFA7r30MWYsNm+KGjvWzjn
+L8MCRkamVSR7AQ6YGRL+//+HU5oJZ/wC/UuM2ChgYAAAYjIvl7Ex+6kAAAAASUVO
+RK5CYII="
+           width="16"
+           clip-path="url(#clipPath17-9)"
+           y="6"
+           x="18" />
+        <rect
+           id="rect6529"
+           clip-path="url(#clipPath17-9)"
+           y="0"
+           height="27"
+           width="53"
+           x="36"
+           style="stroke:none" />
+        <text
+           id="text6531"
+           clip-path="url(#clipPath17-9)"
+           y="20"
+           xml:space="preserve"
+           x="37"
+           style="fill:#000000;stroke:none">close()</text>
+      </g>
+      <g
+         id="g6533"
+         transform="matrix(0.28222226,0,0,0.28222226,-17.350065,-44.117644)"
+         font-size="16"
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:url(#linearGradient5789);fill-opacity:1;stroke:url(#linearGradient5791);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto">
+        <rect
+           id="rect6535"
+           clip-path="url(#clipPath18-3)"
+           y="0"
+           height="33"
+           width="178"
+           x="0"
+           style="fill:url(#linearGradient5787);stroke:none" />
+      </g>
+      <g
+         id="g6537"
+         transform="matrix(0.28222226,0,0,0.28222226,-16.503398,-43.270978)"
+         font-size="16"
+         style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#0a7700;fill-opacity:1;stroke:#0a7700;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto">
+        <image
+           id="image6539"
+           preserveAspectRatio="none"
+           height="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA6klEQVR42mNgoBAw
+ogsU7QlXY2Zkdmb4/88AVSXThb///+7tc1l5C6cBJfsiwxj//XfGbyXT8W7nZQtg
+XGYYo3RvVALj//92hB39X9YqQZfr2MIrV0E8JpizgU62JNrfQFeC9QABC9gZED+j
+KNrffMUdRLPxMH//9eUvp2Otzk5kebAeBoZbTBBXoQUYEMA0SBgIPUTXjKyHidJo
+HCwGABMJugQsEF9ceCcPY6MnLHgsgFIYMwOjAbZAxAVAeuAJ6fiiq29BiYPxP4MS
+Mc7+z8S4t9d5xSGUlAhKWcQYAtLc47R8FdUyE8UAADh9ZrrOoLhQAAAAAElFTkSu
+QmCC"
+           width="16"
+           clip-path="url(#clipPath19-60)"
+           y="6"
+           x="2" />
+        <image
+           id="image6541"
+           preserveAspectRatio="none"
+           height="16"
+           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAjElEQVR42mNgGAWM
+6ALJW11q/jP+lwVL/md8PNd7Tws+A1jQBUCamf8z9ILYfxn/FxNyAQs2wdnee2+B
+6KRtzgxkGQD3CsN/kCEz4f7F4iUmdI3zvPamx61zFoaFA7r30MWYsNm+KGjvWzjn
+L8MCRkamVSR7AQ6YGRL+//+HU5oJZ/wC/UuM2ChgYAAAYjIvl7Ex+6kAAAAASUVO
+RK5CYII="
+           width="16"
+           clip-path="url(#clipPath19-60)"
+           y="6"
+           x="18" />
+        <text
+           id="text6543"
+           clip-path="url(#clipPath19-60)"
+           y="20"
+           xml:space="preserve"
+           x="37"
+           style="stroke:none">MyAutoCloseable</text>
+      </g>
+    </g>
+    <g
+       transform="matrix(0,-1,1,0,72.229074,69.291598)"
+       id="g6631">
+      <path
+         style="font-style:normal;font-weight:normal;font-size:medium;font-family:Dialog;color-interpolation:auto;fill:none;fill-opacity:1;stroke:#008200;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.45000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         inkscape:connector-curvature="0"
+         d="m 106.5,115.9512 0,-38.9024"
+         clip-path="url(#clipPath2-6)"
+         id="path6633"
+         transform="matrix(0.28222226,0,0,0.28222226,41.909996,-31.885073)" />
+      <path
+         style="font-style:normal;font-weight:normal;font-size:medium;font-family:Dialog;color-interpolation:auto;fill:#008200;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.45000005;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+         inkscape:connector-curvature="0"
+         d="m 106.5,66.0488 -6,12 12,0 z"
+         clip-path="url(#clipPath2-6)"
+         id="path6635"
+         transform="matrix(0.28222226,0,0,0.28222226,41.909996,-31.885073)" />
+    </g>
+  </g>
+  <g
+     transform="translate(-1.4239073,11.675749)"
+     style="display:none"
+     inkscape:label="Layer 1"
+     id="g6236"
+     inkscape:groupmode="layer">
+    <text
+       id="text6238"
+       y="21.809916"
+       x="137.26913"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       xml:space="preserve"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332"
+         y="21.809916"
+         x="137.26913"
+         id="tspan6240"
+         sodipodi:role="line" /></text>
+    <text
+       id="text6242"
+       y="16.518251"
+       x="137.26913"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       xml:space="preserve"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332"
+         y="16.518251"
+         x="137.26913"
+         id="tspan6244"
+         sodipodi:role="line" /></text>
+    <g
+       style="fill:#ffb100;fill-opacity:1"
+       transform="matrix(0.21648271,0,0,0.39878377,45.535862,-51.791606)"
+       id="g6246" />
+    <g
+       style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+       font-size="16"
+       transform="matrix(0.28222226,0,0,0.28222226,6.773323,-10.718403)"
+       id="g6298">
+      <rect
+         style="stroke:none"
+         x="2"
+         width="180"
+         height="1"
+         y="65"
+         clip-path="url(#clipPath13-2)"
+         id="rect6300" />
+      <rect
+         style="stroke:none"
+         x="181"
+         width="1"
+         height="64"
+         y="2"
+         clip-path="url(#clipPath13-2)"
+         id="rect6302" />
+    </g>
+    <g
+       style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#c0c0c0;fill-opacity:1;stroke:#c0c0c0;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+       font-size="16"
+       transform="matrix(0.28222226,0,0,0.28222226,7.055545,-10.436181)"
+       id="g6304">
+      <path
+         style="fill-rule:evenodd;stroke:none"
+         inkscape:connector-curvature="0"
+         d="M 0,0 180,0 180,64 0,64 0,0 Z M 1,1 179,1 179,63 1,63 1,1 Z"
+         clip-path="url(#clipPath14-7)"
+         id="path6306" />
+    </g>
+    <g
+       style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#e8e8e8;fill-opacity:1;stroke:#e8e8e8;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+       font-size="16"
+       transform="matrix(0.28222226,0,0,0.28222226,7.337768,-10.153958)"
+       id="g6308">
+      <rect
+         style="stroke:none"
+         x="0"
+         width="178"
+         height="62"
+         y="0"
+         clip-path="url(#clipPath15)"
+         id="rect6310" />
+    </g>
+    <g
+       style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+       font-size="16"
+       transform="matrix(0.28222226,0,0,0.28222226,7.337768,-0.840624)"
+       id="g6312">
+      <rect
+         style="stroke:none"
+         x="0"
+         width="178"
+         height="29"
+         y="0"
+         clip-path="url(#clipPath16-0)"
+         id="rect6314" />
+    </g>
+    <g
+       style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+       font-size="16"
+       transform="matrix(0.28222226,0,0,0.28222226,46.28444,-0.558401)"
+       id="g6316">
+      <text
+         style="stroke:none"
+         x="3"
+         xml:space="preserve"
+         y="20"
+         clip-path="url(#clipPath8)"
+         id="text6318">void</text>
+    </g>
+    <g
+       style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+       font-size="16"
+       transform="matrix(0.28222226,0,0,0.28222226,7.902212,-0.558401)"
+       id="g6320">
+      <rect
+         style="stroke:none"
+         x="0"
+         width="36"
+         height="27"
+         y="0"
+         clip-path="url(#clipPath17-9)"
+         id="rect6322" />
+      <image
+         x="2"
+         y="6"
+         clip-path="url(#clipPath17-9)"
+         width="16"
+         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABIElEQVR42mNgoBAw
+ogv86F2oxvT3r/M/BgYDZHEmBoYL/5iZ93IUx99CE0cDf/8Wo2sGAbAYUA5dHG7A
+rGXrw4h19sxlG1JQDJi1Yp3af0YmZ6I9zsTgN3PJBl24Af8ZGJ1JDTwmZgZfEM0C
+5v1ngvv5xJP7Qv0n9prC+Ar8wu8efHwrBGPDw4SRwQJhABZQaOF8+sqrp0K7791Q
+9lfXv8HDxvZn6eXTOjgDER1YyCi+0xGTBtsYpWv6UIyb7zu6mumL1okxUZKIMuOC
+XkEMYPx3geRA/M9wAu4FRob/e5GdvjIkZSc+NjgQ/zJshhuQFhF0i/H/v71EW/+P
+YVN6TMBllEBMiwpcRaz+9KiAObhjgZm5F5RxsETXBZAcA7UBABLxYB5agt76AAAA
+AElFTkSuQmCC"
+         height="16"
+         preserveAspectRatio="none"
+         id="image6324" />
+      <image
+         x="18"
+         y="6"
+         clip-path="url(#clipPath17-9)"
+         width="16"
+         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAjElEQVR42mNgGAWM
+6ALJW11q/jP+lwVL/md8PNd7Tws+A1jQBUCamf8z9ILYfxn/FxNyAQs2wdnee2+B
+6KRtzgxkGQD3CsN/kCEz4f7F4iUmdI3zvPamx61zFoaFA7r30MWYsNm+KGjvWzjn
+L8MCRkamVSR7AQ6YGRL+//+HU5oJZ/wC/UuM2ChgYAAAYjIvl7Ex+6kAAAAASUVO
+RK5CYII="
+         height="16"
+         preserveAspectRatio="none"
+         id="image6326" />
+      <rect
+         style="stroke:none"
+         x="36"
+         width="53"
+         height="27"
+         y="0"
+         clip-path="url(#clipPath17-9)"
+         id="rect6328" />
+      <text
+         style="fill:#000000;stroke:none"
+         x="37"
+         xml:space="preserve"
+         y="20"
+         clip-path="url(#clipPath17-9)"
+         id="text6330">close()</text>
+    </g>
+    <g
+       style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:url(#linearGradient6639);fill-opacity:1;stroke:url(#linearGradient6641);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+       font-size="16"
+       transform="matrix(0.28222226,0,0,0.28222226,7.337768,-10.153958)"
+       id="g6332">
+      <rect
+         style="fill:url(#linearGradient6637);stroke:none"
+         x="0"
+         width="178"
+         height="33"
+         y="0"
+         clip-path="url(#clipPath18-3)"
+         id="rect6334" />
+    </g>
+    <g
+       style="font-style:normal;font-weight:normal;font-size:16px;font-family:'Noto Sans';color-interpolation:auto;fill:#0a7700;fill-opacity:1;stroke:#0a7700;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto"
+       font-size="16"
+       transform="matrix(0.28222226,0,0,0.28222226,8.184435,-9.307292)"
+       id="g6336">
+      <image
+         x="2"
+         y="6"
+         clip-path="url(#clipPath19-60)"
+         width="16"
+         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA6klEQVR42mNgoBAw
+ogsU7QlXY2Zkdmb4/88AVSXThb///+7tc1l5C6cBJfsiwxj//XfGbyXT8W7nZQtg
+XGYYo3RvVALj//92hB39X9YqQZfr2MIrV0E8JpizgU62JNrfQFeC9QABC9gZED+j
+KNrffMUdRLPxMH//9eUvp2Otzk5kebAeBoZbTBBXoQUYEMA0SBgIPUTXjKyHidJo
+HCwGABMJugQsEF9ceCcPY6MnLHgsgFIYMwOjAbZAxAVAeuAJ6fiiq29BiYPxP4MS
+Mc7+z8S4t9d5xSGUlAhKWcQYAtLc47R8FdUyE8UAADh9ZrrOoLhQAAAAAElFTkSu
+QmCC"
+         height="16"
+         preserveAspectRatio="none"
+         id="image6338" />
+      <image
+         x="18"
+         y="6"
+         clip-path="url(#clipPath19-60)"
+         width="16"
+         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAjElEQVR42mNgGAWM
+6ALJW11q/jP+lwVL/md8PNd7Tws+A1jQBUCamf8z9ILYfxn/FxNyAQs2wdnee2+B
+6KRtzgxkGQD3CsN/kCEz4f7F4iUmdI3zvPamx61zFoaFA7r30MWYsNm+KGjvWzjn
+L8MCRkamVSR7AQ6YGRL+//+HU5oJZ/wC/UuM2ChgYAAAYjIvl7Ex+6kAAAAASUVO
+RK5CYII="
+         height="16"
+         preserveAspectRatio="none"
+         id="image6340" />
+      <text
+         style="stroke:none"
+         x="37"
+         xml:space="preserve"
+         y="20"
+         clip-path="url(#clipPath19-60)"
+         id="text6342">MyAutoCloseable</text>
+    </g>
+  </g>
+  <g
+     jessyink:masterSlide="masterSlide"
+     transform="translate(-14.010514,-21.232287)"
+     inkscape:label="Master"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="160.75327"
+       y="74.065605"
+       id="text2361"><tspan
+         sodipodi:role="line"
+         id="tspan2359"
+         x="160.75327"
+         y="74.065605"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332" /></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="84.024094"
+       y="31.732275"
+       id="text4260"><tspan
+         sodipodi:role="line"
+         id="tspan4258"
+         x="84.024094"
+         y="31.732275"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332" /><tspan
+         sodipodi:role="line"
+         x="84.024094"
+         y="37.023941"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332"
+         id="tspan4262" /></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="142.23242"
+       y="82.003105"
+       id="text830"><tspan
+         sodipodi:role="line"
+         id="tspan828"
+         x="142.23242"
+         y="82.003105"
+         style="stroke-width:0.26458332" /></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="61.534512"
+       y="68.773941"
+       id="text5579"><tspan
+         sodipodi:role="line"
+         id="tspan5577"
+         x="61.534512"
+         y="68.773941"
+         style="stroke-width:0.26458332" /><tspan
+         sodipodi:role="line"
+         x="61.534512"
+         y="74.065605"
+         style="stroke-width:0.26458332"
+         id="tspan5581" /></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="70.79493"
+       y="33.055191"
+       id="text10808"><tspan
+         sodipodi:role="line"
+         id="tspan10806"
+         x="70.79493"
+         y="33.055191"
+         style="stroke-width:0.26458332" /></text>
+  </g>
+</svg>
diff --git a/Doc/Sd1/Ref/Interfaces/interfacePrinciple.multi.svg b/Doc/Sd1/Ref/Interfaces/interfacePrinciple.multi.svg
index 240e6945a5851ef34865175cf81646a8a8c60ceb..5270d3daea1cd402d5bddbe87ac1b58c122f2233 100644
--- a/Doc/Sd1/Ref/Interfaces/interfacePrinciple.multi.svg
+++ b/Doc/Sd1/Ref/Interfaces/interfacePrinciple.multi.svg
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <!-- Created with Inkscape (http://www.inkscape.org/) -->
 
 <svg
@@ -16,7 +16,7 @@
    viewBox="0 0 170.00002 75"
    version="1.1"
    id="svg8"
-   inkscape:version="0.92.1 r15371"
+   inkscape:version="0.91 r13725"
    sodipodi:docname="interfacePrinciple.multi.svg">
   <sodipodi:namedview
      id="base"
@@ -26,15 +26,15 @@
      inkscape:pageopacity="0.0"
      inkscape:pageshadow="2"
      inkscape:zoom="1.8200176"
-     inkscape:cx="310.65422"
+     inkscape:cx="260.18337"
      inkscape:cy="139.82194"
      inkscape:document-units="mm"
-     inkscape:current-layer="g18233"
+     inkscape:current-layer="g5915"
      showgrid="true"
-     inkscape:window-width="1600"
-     inkscape:window-height="1074"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
+     inkscape:window-width="1943"
+     inkscape:window-height="1484"
+     inkscape:window-x="65"
+     inkscape:window-y="24"
      inkscape:window-maximized="1"
      fit-margin-top="0"
      fit-margin-left="0"
@@ -1837,7 +1837,7 @@
     <linearGradient
        id="2">
       <stop
-	 offset="0%"
+         offset="0%"
          id="c" />
       <stop
          stop-color="#fff"
@@ -1847,7 +1847,7 @@
     <linearGradient
        id="3">
       <stop
-	 offset="0%"
+         offset="0%"
          stop-color="#eeeeec"
          id="e" />
       <stop
@@ -1859,7 +1859,7 @@
     <linearGradient
        id="4">
       <stop
-	 offset="0%"
+         offset="0%"
          stop-color="#555753"
          id="g" />
       <stop
@@ -1870,7 +1870,7 @@
     <linearGradient
        id="5">
       <stop
-	 offset="0%"
+         offset="0%"
          stop-color="#2e3436"
          id="i" />
       <stop
@@ -1885,7 +1885,7 @@
     <linearGradient
        id="6">
       <stop
-	 offset="0%"
+         offset="0%"
          stop-color="#d3d7cf"
          id="l" />
       <stop
@@ -1896,7 +1896,7 @@
     <linearGradient
        id="7">
       <stop
-	 offset="0%"
+         offset="0%"
          stop-color="#2e3436"
          id="n" />
       <stop
@@ -1908,7 +1908,7 @@
     <linearGradient
        id="8">
       <stop
-	 offset="0%"
+         offset="0%"
          stop-color="#555753"
          id="p" />
       <stop
@@ -1931,7 +1931,7 @@
     <linearGradient
        id="9">
       <stop
-	 offset="0%"
+         offset="0%"
          stop-opacity="0.8"
          stop-color="#fff"
          id="u" />
@@ -1944,7 +1944,7 @@
     <linearGradient
        id="A">
       <stop
-	 offset="0%"
+         offset="0%"
          stop-color="#888a85"
          id="w" />
       <stop
@@ -2032,7 +2032,7 @@
     <linearGradient
        id="L">
       <stop
-	 offset="0%"
+         offset="0%"
          stop-color="#edd400"
          id="y" />
       <stop
@@ -2044,7 +2044,7 @@
     <linearGradient
        id="M">
       <stop
-	 offset="0%"
+         offset="0%"
          stop-color="#2e3436"
          id="10" />
       <stop
@@ -3521,225 +3521,2825 @@
         <dc:format>image/svg+xml</dc:format>
         <dc:type
            rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title></dc:title>
+        <dc:title />
       </cc:Work>
     </rdf:RDF>
   </metadata>
   <g
-     transform="translate(-1.4239073,11.675749)"
+     inkscape:groupmode="layer"
+     id="g5915"
+     inkscape:label="Layer 6"
      style="display:inline"
-     inkscape:label="Layer 4"
-     id="g18233"
-     inkscape:groupmode="layer">
+     transform="translate(-1.4239073,11.675749)">
+    <rect
+       style="fill:#d5fff6;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none"
+       id="rect6347"
+       width="91.113136"
+       height="74.586594"
+       x="79.022224"
+       y="-11.262333" />
+    <rect
+       style="fill:#ffd5d5;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none"
+       id="rect6345"
+       width="74.93116"
+       height="74.896721"
+       x="1.2688416"
+       y="-11.417399" />
     <text
-       id="text17819"
-       y="21.809916"
-       x="137.26913"
+       xml:space="preserve"
        style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-       xml:space="preserve"><tspan
-         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332"
-         y="25.555424"
+       x="137.26913"
+       y="21.809916"
+       id="text5917"><tspan
+         sodipodi:role="line"
+         id="tspan5919"
          x="137.26913"
-         id="tspan17817"
-         sodipodi:role="line" /></text>
+         y="21.809916"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332" /></text>
     <text
-       id="text17823"
-       y="16.518251"
-       x="137.26913"
+       xml:space="preserve"
        style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-       xml:space="preserve"><tspan
-         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332"
-         y="20.26376"
+       x="137.26913"
+       y="16.518251"
+       id="text5921"><tspan
+         sodipodi:role="line"
+         id="tspan5923"
          x="137.26913"
-         id="tspan17821"
-         sodipodi:role="line" /></text>
+         y="16.518251"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332" /></text>
     <g
-       transform="matrix(0.26458333,0,0,0.26458333,26.722906,-4.6643506)"
-       id="g17945">
+       id="g5925"
+       transform="matrix(0.26458333,0,0,0.26458333,26.722906,-4.6643506)">
       <rect
-         style="opacity:0.8;fill:url(#C)"
-         x="0"
-         width="48"
-         height="9.3129997"
+         id="rect5927"
          y="37"
-         id="rect17825" />
+         height="9.3129997"
+         width="48"
+         x="0"
+         style="opacity:0.8;fill:url(#C)" />
       <rect
-         style="fill:url(#K)"
-         width="41"
-         height="41"
-         x="3.5"
+         rx="5"
+         id="rect5929"
          y="2.1849999"
-         id="rect17827"
-         rx="5" />
+         x="3.5"
+         height="41"
+         width="41"
+         style="fill:url(#K)" />
       <path
-         style="fill:url(#J)"
+         id="path5931"
+         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 l 0,23.0937504 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 l 33.1875,0 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 l 0,-23.0937504 c 0,-2.77 -2.23,-5 -5,-5 z"
          inkscape:connector-curvature="0"
-         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 V 30.278973 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 h 33.1875 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 V 7.1852226 c 0,-2.77 -2.23,-5 -5,-5 z"
-         id="path17829" />
+         style="fill:url(#J)" />
       <path
-         style="fill:none;stroke:#555753;stroke-width:0.80000001;stroke-linecap:square"
+         id="path5933"
+         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 l 0,23.0937504 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 l 33.1875,0 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 l 0,-23.0937504 c 0,-2.77 -2.23,-5 -5,-5 z"
          inkscape:connector-curvature="0"
-         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 V 30.278973 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 h 33.1875 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 V 7.1852226 c 0,-2.77 -2.23,-5 -5,-5 z"
-         id="path17831" />
+         style="fill:none;stroke:#555753;stroke-width:0.80000001;stroke-linecap:square" />
       <g
-         transform="translate(3.1482255)"
-         id="g17899">
+         id="g5935"
+         transform="translate(3.1482255,0)">
         <g
-           style="fill:#2e3436"
+           id="g5937"
            transform="translate(-0.299517,-1.6150909)"
-           id="g17853">
+           style="fill:#2e3436">
           <rect
-             width="1.1849999"
-             height="5.388"
-             x="9.5909996"
+             id="rect5939"
              y="37.119999"
-             id="rect17833" />
-          <rect
-             width="1.1849999"
+             x="9.5909996"
              height="5.388"
-             x="11.961"
-             y="37.119999"
-             id="rect17835" />
+             width="1.1849999" />
           <rect
-             width="1.1849999"
-             height="5.388"
-             x="14.332"
+             id="rect5941"
              y="37.119999"
-             id="rect17837" />
-          <rect
-             width="1.1849999"
+             x="11.961"
              height="5.388"
-             x="16.702999"
-             y="37.119999"
-             id="rect17839" />
+             width="1.1849999" />
           <rect
-             width="1.1849999"
-             height="5.388"
-             x="19.07"
+             id="rect5943"
              y="37.119999"
-             id="rect17841" />
-          <rect
-             width="1.1849999"
+             x="14.332"
              height="5.388"
-             x="21.444"
-             y="37.119999"
-             id="rect17843" />
+             width="1.1849999" />
           <rect
-             width="1.1849999"
-             height="5.388"
-             x="23.815001"
+             id="rect5945"
              y="37.119999"
-             id="rect17845" />
+             x="16.702999"
+             height="5.388"
+             width="1.1849999" />
           <rect
-             width="1.1849999"
+             id="rect5947"
+             y="37.119999"
+             x="19.07"
              height="5.388"
-             x="26.190001"
+             width="1.1849999" />
+          <rect
+             id="rect5949"
              y="37.119999"
-             id="rect17847" />
+             x="21.444"
+             height="5.388"
+             width="1.1849999" />
           <rect
-             width="1.1849999"
+             id="rect5951"
+             y="37.119999"
+             x="23.815001"
              height="5.388"
-             x="28.556"
+             width="1.1849999" />
+          <rect
+             id="rect5953"
              y="37.119999"
-             id="rect17849" />
+             x="26.190001"
+             height="5.388"
+             width="1.1849999" />
           <rect
-             width="1.1849999"
+             id="rect5955"
+             y="37.119999"
+             x="28.556"
              height="5.388"
-             x="30.927"
+             width="1.1849999" />
+          <rect
+             id="rect5957"
              y="37.119999"
-             id="rect17851" />
+             x="30.927"
+             height="5.388"
+             width="1.1849999" />
         </g>
         <g
-           style="fill:#eeeeec"
+           id="g5959"
            transform="translate(0.300483,-1.1150909)"
-           id="g17875">
+           style="fill:#eeeeec">
           <rect
-             width="1.1849999"
-             height="5.388"
-             x="9.5909996"
+             id="rect5961"
              y="37.119999"
-             id="rect17855" />
-          <rect
-             width="1.1849999"
+             x="9.5909996"
              height="5.388"
-             x="11.961"
-             y="37.119999"
-             id="rect17857" />
+             width="1.1849999" />
           <rect
-             width="1.1849999"
-             height="5.388"
-             x="14.332"
+             id="rect5963"
              y="37.119999"
-             id="rect17859" />
-          <rect
-             width="1.1849999"
+             x="11.961"
              height="5.388"
-             x="16.702999"
-             y="37.119999"
-             id="rect17861" />
+             width="1.1849999" />
           <rect
-             width="1.1849999"
-             height="5.388"
-             x="19.07"
+             id="rect5965"
              y="37.119999"
-             id="rect17863" />
-          <rect
-             width="1.1849999"
+             x="14.332"
              height="5.388"
-             x="21.444"
-             y="37.119999"
-             id="rect17865" />
+             width="1.1849999" />
           <rect
-             width="1.1849999"
-             height="5.388"
-             x="23.815001"
+             id="rect5967"
              y="37.119999"
-             id="rect17867" />
+             x="16.702999"
+             height="5.388"
+             width="1.1849999" />
           <rect
-             width="1.1849999"
+             id="rect5969"
+             y="37.119999"
+             x="19.07"
              height="5.388"
-             x="26.190001"
+             width="1.1849999" />
+          <rect
+             id="rect5971"
              y="37.119999"
-             id="rect17869" />
+             x="21.444"
+             height="5.388"
+             width="1.1849999" />
           <rect
-             width="1.1849999"
+             id="rect5973"
+             y="37.119999"
+             x="23.815001"
              height="5.388"
-             x="28.556"
+             width="1.1849999" />
+          <rect
+             id="rect5975"
              y="37.119999"
-             id="rect17871" />
+             x="26.190001"
+             height="5.388"
+             width="1.1849999" />
           <rect
-             width="1.1849999"
+             id="rect5977"
+             y="37.119999"
+             x="28.556"
              height="5.388"
-             x="30.927"
+             width="1.1849999" />
+          <rect
+             id="rect5979"
              y="37.119999"
-             id="rect17873" />
+             x="30.927"
+             height="5.388"
+             width="1.1849999" />
         </g>
         <g
-           style="fill:#555753"
+           id="g5981"
            transform="translate(0,-1.3147774)"
-           id="g17897">
+           style="fill:#555753">
           <rect
-             width="1.1849999"
-             height="5.388"
+             id="rect5983"
+             y="37.119999"
              x="9.5909996"
+             height="5.388"
+             width="1.1849999" />
+          <rect
+             id="rect5985"
              y="37.119999"
-             id="rect17877" />
+             x="11.961"
+             height="5.388"
+             width="1.1849999" />
           <rect
-             width="1.1849999"
+             id="rect5987"
+             y="37.119999"
+             x="14.332"
              height="5.388"
-             x="11.961"
+             width="1.1849999" />
+          <rect
+             id="rect5989"
              y="37.119999"
-             id="rect17879" />
+             x="16.702999"
+             height="5.388"
+             width="1.1849999" />
           <rect
-             width="1.1849999"
+             id="rect5991"
+             y="37.119999"
+             x="19.07"
              height="5.388"
-             x="14.332"
+             width="1.1849999" />
+          <rect
+             id="rect5993"
              y="37.119999"
-             id="rect17881" />
+             x="21.444"
+             height="5.388"
+             width="1.1849999" />
           <rect
-             width="1.1849999"
+             id="rect5995"
+             y="37.119999"
+             x="23.815001"
              height="5.388"
-             x="16.702999"
+             width="1.1849999" />
+          <rect
+             id="rect5997"
+             y="37.119999"
+             x="26.190001"
+             height="5.388"
+             width="1.1849999" />
+          <rect
+             id="rect5999"
+             y="37.119999"
+             x="28.556"
+             height="5.388"
+             width="1.1849999" />
+          <rect
+             id="rect6001"
+             y="37.119999"
+             x="30.927"
+             height="5.388"
+             width="1.1849999" />
+        </g>
+      </g>
+      <path
+         id="path6003"
+         transform="matrix(0.9998886,0,0,1.0087936,0.00267394,-1.3527326)"
+         d="M 8.5,4.5625 C 6.3030567,4.5625 4.5625,6.3030567 4.5625,8.5 l 0,23.09375 c 0,1.588297 1.2554529,2.84375 2.84375,2.84375 l 33.1875,0 c 1.588296,0 2.84375,-1.255454 2.84375,-2.84375 l 0,-23.09375 c 0,-2.1969433 -1.740557,-3.9375 -3.9375,-3.9375 z"
+         inkscape:connector-curvature="0"
+         style="opacity:0.8;fill:none;stroke:url(#B);stroke-linecap:square" />
+      <rect
+         rx="5"
+         id="rect6005"
+         y="2.1849999"
+         x="3.5"
+         height="41"
+         width="41"
+         style="fill:none;stroke:#555753;stroke-linecap:square" />
+      <g
+         id="g6007"
+         transform="matrix(1.0001372,0,0,0.9907555,-0.8836787,1.1528607)">
+        <path
+           id="path6009"
+           transform="matrix(1.0027874,0,0,1.1207624,0.7612959,-4.9666618)"
+           d="m 9.7220567,29.677664 a 1.420916,1.2713459 0 1 1 -2.8418319,0 1.420916,1.2713459 0 1 1 2.8418319,0 z"
+           inkscape:connector-curvature="0"
+           style="fill:url(#F)" />
+        <path
+           id="path6011"
+           transform="matrix(1.0027874,0,0,1.1207624,0.7612959,-4.9666618)"
+           d="m 8.3125,28.9375 c -0.5173003,0 -0.9062499,0.384633 -0.90625,0.75 0,0.365367 0.3745491,0.718751 0.90625,0.71875 0.5317017,0 0.8750002,-0.337288 0.875,-0.71875 0,-0.381463 -0.3577006,-0.750001 -0.875,-0.75 z"
+           inkscape:connector-curvature="0"
+           style="fill:url(#radialGradient15919)" />
+        <path
+           id="path6013"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           inkscape:connector-curvature="0"
+           style="opacity:0.6;fill:url(#linearGradient15921)" />
+      </g>
+      <g
+         id="g6015"
+         transform="matrix(0.749538,0.6621686,-0.6559572,0.742507,19.953433,-19.80069)">
+        <path
+           id="path6017"
+           transform="matrix(1.0027874,0,0,1.1207624,0.7612959,-4.9666618)"
+           d="m 9.7220567,29.677664 a 1.420916,1.2713459 0 1 1 -2.8418319,0 1.420916,1.2713459 0 1 1 2.8418319,0 z"
+           inkscape:connector-curvature="0"
+           style="fill:url(#I)" />
+        <path
+           id="path6019"
+           transform="matrix(1.0027874,0,0,1.1207624,0.7612959,-4.9666618)"
+           d="m 8.3125,28.9375 c -0.5173003,0 -0.9062499,0.384633 -0.90625,0.75 0,0.365367 0.3745491,0.718751 0.90625,0.71875 0.5317017,0 0.8750002,-0.337288 0.875,-0.71875 0,-0.381463 -0.3577006,-0.750001 -0.875,-0.75 z"
+           inkscape:connector-curvature="0"
+           style="fill:url(#radialGradient15923)" />
+        <path
+           id="path6021"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           inkscape:connector-curvature="0"
+           style="opacity:0.6;fill:url(#linearGradient15925)" />
+      </g>
+      <g
+         id="g6023"
+         transform="matrix(0.7340578,-0.679289,0.672917,0.727172,14.08737,14.782673)">
+        <path
+           id="path6025"
+           transform="matrix(1.0027874,0,0,1.1207624,0.7612959,-4.9666618)"
+           d="m 9.7220567,29.677664 a 1.420916,1.2713459 0 1 1 -2.8418319,0 1.420916,1.2713459 0 1 1 2.8418319,0 z"
+           inkscape:connector-curvature="0"
+           style="fill:url(#G)" />
+        <path
+           id="path6027"
+           transform="matrix(1.0027874,0,0,1.1207624,0.7612959,-4.9666618)"
+           d="m 8.3125,28.9375 c -0.5173003,0 -0.9062499,0.384633 -0.90625,0.75 0,0.365367 0.3745491,0.718751 0.90625,0.71875 0.5317017,0 0.8750002,-0.337288 0.875,-0.71875 0,-0.381463 -0.3577006,-0.750001 -0.875,-0.75 z"
+           inkscape:connector-curvature="0"
+           style="fill:url(#radialGradient15927)" />
+        <path
+           id="path6029"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           inkscape:connector-curvature="0"
+           style="opacity:0.6;fill:url(#linearGradient15929)" />
+      </g>
+      <g
+         id="g6031"
+         transform="matrix(0.4510298,0.8926626,-0.8842891,0.4467989,60.719907,-13.527817)">
+        <path
+           id="path6033"
+           transform="matrix(1.0027874,0,0,1.1207624,0.7612959,-4.9666618)"
+           d="m 9.7220567,29.677664 a 1.420916,1.2713459 0 1 1 -2.8418319,0 1.420916,1.2713459 0 1 1 2.8418319,0 z"
+           inkscape:connector-curvature="0"
+           style="fill:url(#H)" />
+        <path
+           id="path6035"
+           transform="matrix(1.0027874,0,0,1.1207624,0.7612959,-4.9666618)"
+           d="m 8.3125,28.9375 c -0.5173003,0 -0.9062499,0.384633 -0.90625,0.75 0,0.365367 0.3745491,0.718751 0.90625,0.71875 0.5317017,0 0.8750002,-0.337288 0.875,-0.71875 0,-0.381463 -0.3577006,-0.750001 -0.875,-0.75 z"
+           inkscape:connector-curvature="0"
+           style="fill:url(#D)" />
+        <path
+           id="path6037"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           inkscape:connector-curvature="0"
+           style="opacity:0.6;fill:url(#E)" />
+      </g>
+      <g
+         id="g6039"
+         transform="matrix(1.096757,0,0,1.096757,-1.7737895,-14.588047)">
+        <path
+           id="path6041"
+           d="m 19.53125,19.125 c -0.269725,3e-6 -0.640957,0.168514 -0.8125,0.40625 -0.171543,0.237736 -0.1875,0.45866 -0.1875,0.625 l 0,1.03125 -0.9375,0 c -0.634805,4e-6 -1.21875,0.44842 -1.21875,1.1875 l 0,1.8125 -3.90625,0 c -0.923256,2e-6 -1.6875,0.764243 -1.6875,1.6875 l 0,13.46875 c 0,0.923257 0.764243,1.6875 1.6875,1.6875 l 22.09375,0 c 0.923255,-2e-6 1.65625,-0.80496 1.65625,-1.6875 l 0,-13.46875 c -4e-6,-0.882533 -0.732992,-1.6875 -1.65625,-1.6875 l -3.9375,0 0,-1.8125 c 0,-0.265272 -0.07536,-0.542187 -0.28125,-0.78125 -0.205892,-0.239063 -0.557594,-0.40625 -0.875,-0.40625 l -0.96875,0 0,-1.03125 c 6e-6,-0.539513 -0.491761,-1.03125 -1.03125,-1.03125 z"
+           inkscape:connector-curvature="0"
+           style="fill:url(#P)" />
+        <path
+           id="path6043"
+           d="m 19.546544,20.005656 c -0.08803,0 -0.151282,0.06326 -0.151282,0.151281 l 0,1.89102 -1.815379,0 c -0.174558,0 -0.327776,0.153218 -0.327776,0.327777 l 0,2.697854 -4.790583,0 c -0.446987,0 -0.806835,0.359849 -0.806835,0.806835 l 0,13.464059 c 0,0.446987 0.359848,0.806835 0.806835,0.806835 l 22.087108,0 c 0.446987,0 0.806835,-0.359848 0.806835,-0.806835 l 0,-13.464059 c 0,-0.446986 -0.359848,-0.806835 -0.806835,-0.806835 l -4.790583,0 0,-2.697854 c 0,-0.174559 -0.128004,-0.327777 -0.302563,-0.327777 l -1.815379,0 0,-1.89102 c 0,-0.08802 -0.08848,-0.151281 -0.176495,-0.151281 z"
+           inkscape:connector-curvature="0"
+           style="fill:url(#N)" />
+        <path
+           id="path6045"
+           d="m 16.15625,32.59375 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.96875,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z"
+           inkscape:connector-curvature="0"
+           style="opacity:0.8;fill:url(#O);fill-rule:evenodd" />
+      </g>
+    </g>
+    <g
+       transform="matrix(0.76483345,0,0,0.76483345,-100.74724,-350.64755)"
+       inkscape:label="Layer 1"
+       id="g6047">
+      <g
+         transform="matrix(0.17341,0,0,0.17341,227.14,387.13)"
+         inkscape:label="Layer 1"
+         id="g6049">
+        <path
+           d="m 305,412.36 60,50 -55,10 -60,-50 z"
+           style="fill:#a1a1a1"
+           sodipodi:nodetypes="ccccc"
+           id="path6051"
+           inkscape:connector-curvature="0" />
+        <g
+           transform="translate(-42,-52)"
+           id="g6053">
+          <path
+             d="m 310,472.36 10,10"
+             style="fill:none;stroke:#e8e81f;stroke-width:2;stroke-linecap:round"
+             id="path6055"
+             inkscape:connector-curvature="0" />
+          <path
+             d="m 315,471.36 10,10"
+             style="fill:none;stroke:#e8e81f;stroke-width:2;stroke-linecap:round"
+             id="path6057"
+             inkscape:connector-curvature="0" />
+          <path
+             d="m 321,470.36 10,10"
+             style="fill:none;stroke:#e8e81f;stroke-width:2;stroke-linecap:round"
+             id="path6059"
+             inkscape:connector-curvature="0" />
+          <path
+             d="m 339,467.36 10,10"
+             style="fill:none;stroke:#e8e81f;stroke-width:2;stroke-linecap:round"
+             id="path6061"
+             inkscape:connector-curvature="0" />
+          <path
+             d="m 333,468.36 10,10"
+             style="fill:none;stroke:#e8e81f;stroke-width:2;stroke-linecap:round"
+             id="path6063"
+             inkscape:connector-curvature="0" />
+          <path
+             d="m 327,469.36 10,10"
+             style="fill:none;stroke:#e8e81f;stroke-width:2;stroke-linecap:round"
+             id="path6065"
+             inkscape:connector-curvature="0" />
+        </g>
+        <path
+           d="m 250,392.36 60,50 0,30 -60,-50 z"
+           style="fill:#a1a1a1;fill-opacity:0.63524996;stroke:#000000;stroke-width:0.40000001;stroke-linejoin:round"
+           sodipodi:nodetypes="ccccc"
+           id="path6067"
+           inkscape:connector-curvature="0" />
+        <path
+           d="m 305,382.36 60,50 0,30 -60,-50 z"
+           style="fill:#a1a1a1"
+           sodipodi:nodetypes="ccccc"
+           id="path6069"
+           inkscape:connector-curvature="0" />
+        <path
+           d="m 305,382.36 60,50 -55,10 -60,-50 z"
+           style="fill:#a1a1a1;fill-opacity:0.62705;stroke:#000000;stroke-width:0.40000001;stroke-linejoin:round"
+           sodipodi:nodetypes="ccccc"
+           id="path6071"
+           inkscape:connector-curvature="0" />
+        <path
+           d="m 310,442.36 55,-10 0,30 -55,10 z"
+           style="fill:#a1a1a1;fill-opacity:0.63524996;stroke:#000000;stroke-width:0.40000001;stroke-linejoin:round"
+           sodipodi:nodetypes="ccccc"
+           id="path6073"
+           inkscape:connector-curvature="0" />
+        <path
+           d="M 290.42,385.7 330,417.36 c -1.8181,1.958 -4.6551,2.2826 -6.3333,1.5833 l -50.67,-30.08 17.417,-3.1667 z"
+           style="fill:#a1a1a1;fill-opacity:0.63524996;stroke:#000000;stroke-width:0.63332999;stroke-linejoin:round"
+           sodipodi:nodetypes="ccccc"
+           id="path6075"
+           inkscape:connector-curvature="0" />
+        <path
+           d="m 340,452.36 c 0,0 97.848,64.069 130,110 45,90 -194.43,-107.15 -210,-30 -13.205,65.451 294.15,193.55 310,140 15.502,-52.246 -105.62,-196.4 -80,-230 25.836,-33.874 240,110 240,110"
+           style="fill:none;stroke:#0000d7;stroke-width:16;stroke-linecap:round"
+           sodipodi:nodetypes="cccccc"
+           id="path6077"
+           inkscape:connector-curvature="0" />
+      </g>
+    </g>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="15.459511"
+       y="-5.8969193"
+       id="text6079"><tspan
+         sodipodi:role="line"
+         id="tspan6081"
+         x="15.459511"
+         y="-5.8969193"
+         style="stroke-width:0.26458332">Ethernet port</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="96.157425"
+       y="-7.2198362"
+       id="text6083"><tspan
+         sodipodi:role="line"
+         id="tspan6085"
+         x="96.157425"
+         y="-7.2198362"
+         style="stroke-width:0.26458332">Ethernet jack</tspan></text>
+    <g
+       sodipodi:type="inkscape:box3d"
+       id="g6087"
+       style="fill:#ff0000;stroke:none;stroke-width:2.66666675;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       inkscape:perspectiveID="#perspective631"
+       inkscape:corner0="0.45447413 : 0.053997152 : 0 : 1"
+       inkscape:corner7="0.39213952 : -0.0010228778 : 0.25 : 1">
+      <path
+         sodipodi:type="inkscape:box3dside"
+         id="path6089"
+         style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
+         inkscape:box3dsidetype="6"
+         d="m 62.428349,-10.498683 0,34.520849 20.664122,-1.244456 0,-29.4575789 z"
+         points="62.428349,24.022166 83.092471,22.77771 83.092471,-6.6798689 62.428349,-10.498683 " />
+      <path
+         sodipodi:type="inkscape:box3dside"
+         id="path6091"
+         style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
+         inkscape:box3dsidetype="13"
+         d="M 62.428349,24.022166 65.732955,24.402072 86.67838,23.052541 83.092471,22.77771 Z"
+         points="65.732955,24.402072 86.67838,23.052541 83.092471,22.77771 62.428349,24.022166 " />
+      <path
+         sodipodi:type="inkscape:box3dside"
+         id="path6093"
+         style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
+         inkscape:box3dsidetype="11"
+         d="m 83.092471,-6.6798689 3.585909,-0.8433614 0,30.5757713 -3.585909,-0.274831 z"
+         points="86.67838,-7.5232303 86.67838,23.052541 83.092471,22.77771 83.092471,-6.6798689 " />
+      <path
+         sodipodi:type="inkscape:box3dside"
+         id="path6095"
+         style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
+         inkscape:box3dsidetype="5"
+         d="m 62.428349,-10.498683 3.304606,-1.165804 20.945425,4.1412567 -3.585909,0.8433614 z"
+         points="65.732955,-11.664487 86.67838,-7.5232303 83.092471,-6.6798689 62.428349,-10.498683 " />
+      <path
+         sodipodi:type="inkscape:box3dside"
+         id="path6097"
+         style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
+         inkscape:box3dsidetype="14"
+         d="m 65.732955,-11.664487 0,36.066559 20.945425,-1.349531 0,-30.5757713 z"
+         points="65.732955,24.402072 86.67838,23.052541 86.67838,-7.5232303 65.732955,-11.664487 " />
+      <path
+         sodipodi:type="inkscape:box3dside"
+         id="path6099"
+         style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
+         inkscape:box3dsidetype="3"
+         d="m 62.428349,-10.498683 3.304606,-1.165804 0,36.066559 -3.304606,-0.379906 z"
+         points="65.732955,-11.664487 65.732955,24.402072 62.428349,24.022166 62.428349,-10.498683 " />
+    </g>
+    <g
+       id="g6101"
+       transform="matrix(0.21648271,0,0,0.39878377,45.535862,-51.791606)"
+       style="fill:#ffb100;fill-opacity:1" />
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:0%;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="98.732994"
+       y="54.089088"
+       id="text6103"><tspan
+         sodipodi:role="line"
+         x="98.732994"
+         y="54.089088"
+         id="tspan6105"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';text-align:center;text-anchor:middle;stroke-width:0.21648271">8P8C - T568B</tspan><tspan
+         id="tspan6107"
+         sodipodi:role="line"
+         x="98.732994"
+         y="59.380756"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';text-align:center;text-anchor:middle;stroke-width:0.21648271">wiring</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="49.44912"
+       y="43.960403"
+       id="text6109"><tspan
+         sodipodi:role="line"
+         id="tspan6111"
+         x="49.44912"
+         y="43.960403"
+         style="stroke-width:0.26458332">RJ45</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="50.321365"
+       y="48.757748"
+       id="text6113"><tspan
+         sodipodi:role="line"
+         id="tspan6115"
+         x="50.321365"
+         y="48.757748"
+         style="stroke-width:0.26458332">CAT7</tspan></text>
+    <g
+       id="g6117"
+       transform="matrix(0.21648271,0,0,0.21648271,70.728439,37.570802)">
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccc"
+         id="path6119"
+         d="m -5,-15.15344 0,57 -109,0 0,-57"
+         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cccccc;stroke:#4d4d4d;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccc"
+         id="path6121"
+         d="m -89,31.84656 0,19 59,0 0,-19 z"
+         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f2f2f2;stroke:#666666;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccc"
+         id="path6123"
+         d="m -114,-17.15344 0,49 109,0 0,-49"
+         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e6e6;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+      <g
+         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+         transform="matrix(1,0,0,1.7894822,-253,-288.85402)"
+         id="g6125">
+        <rect
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+           id="rect6127"
+           width="4"
+           height="19"
+           x="156.5"
+           y="154.34656" />
+        <rect
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+           id="rect6129"
+           width="4"
+           height="19"
+           x="226.5"
+           y="154.34656" />
+        <rect
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+           id="rect6131"
+           width="4"
+           height="19"
+           x="216.5"
+           y="154.34656" />
+        <rect
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+           id="rect6133"
+           width="4"
+           height="19"
+           x="196.5"
+           y="154.34656" />
+        <rect
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+           id="rect6135"
+           width="4"
+           height="19"
+           x="176.5"
+           y="154.34656" />
+        <rect
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+           id="rect6137"
+           width="4"
+           height="19"
+           x="206.5"
+           y="154.34656" />
+        <rect
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+           id="rect6139"
+           width="4"
+           height="19"
+           x="186.5"
+           y="154.34656" />
+        <rect
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+           id="rect6141"
+           width="4"
+           height="19"
+           x="166.5"
+           y="154.34656" />
+      </g>
+      <g
+         transform="translate(-233.5,-168.5)"
+         id="g6143">
+        <g
+           id="g6145"
+           transform="translate(1.16e-6,0)">
+          <circle
+             r="6"
+             cy="-31"
+             cx="254"
+             transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+             id="circle6147"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#552200;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
+          <circle
+             r="6"
+             cy="-31"
+             cx="254"
+             transform="matrix(0.41666667,0,0,0.41666667,33.166665,201.76322)"
+             id="circle6149"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.25737929;marker:none;enable-background:accumulate" />
+        </g>
+        <g
+           transform="translate(10.000001,3.21e-6)"
+           id="g6151">
+          <circle
+             r="6"
+             cy="-31"
+             cx="254"
+             transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+             id="circle6153"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#552200;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
+          <g
+             id="g6155">
+            <path
+               sodipodi:type="arc"
+               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+               id="path6157"
+               sodipodi:cx="254"
+               sodipodi:cy="-31"
+               sodipodi:rx="6"
+               sodipodi:ry="6"
+               d="M 259.19615,-28 A 6,6 0 0 1 251,-25.803848 L 254,-31 Z"
+               transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+               sodipodi:start="0.52359878"
+               sodipodi:end="2.0943951" />
+            <path
+               sodipodi:type="arc"
+               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+               id="path6159"
+               sodipodi:cx="254"
+               sodipodi:cy="-31"
+               sodipodi:rx="6"
+               sodipodi:ry="6"
+               d="m 248.80385,-34 a 6,6 0 0 1 3.64324,-2.795555 A 6,6 0 0 1 257,-36.196152 L 254,-31 Z"
+               transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+               sodipodi:start="3.6651914"
+               sodipodi:end="5.2359878" />
+          </g>
+          <circle
+             r="6"
+             cy="-31"
+             cx="254"
+             transform="matrix(0.41666667,0,0,0.41666667,33.166665,201.76322)"
+             id="circle6161"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.25737929;marker:none;enable-background:accumulate" />
+        </g>
+        <g
+           transform="translate(70.000001,3.21e-6)"
+           id="g6163">
+          <circle
+             r="6"
+             cy="-31"
+             cx="254"
+             transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+             id="circle6165"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
+          <g
+             id="g6167">
+            <path
+               sodipodi:type="arc"
+               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+               id="path6169"
+               sodipodi:cx="254"
+               sodipodi:cy="-31"
+               sodipodi:rx="6"
+               sodipodi:ry="6"
+               d="M 259.19615,-28 A 6,6 0 0 1 251,-25.803848 L 254,-31 Z"
+               transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+               sodipodi:start="0.52359878"
+               sodipodi:end="2.0943951" />
+            <path
+               sodipodi:type="arc"
+               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+               id="path6171"
+               sodipodi:cx="254"
+               sodipodi:cy="-31"
+               sodipodi:rx="6"
+               sodipodi:ry="6"
+               d="m 248.80385,-34 a 6,6 0 0 1 3.64324,-2.795555 A 6,6 0 0 1 257,-36.196152 L 254,-31 Z"
+               transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+               sodipodi:start="3.6651914"
+               sodipodi:end="5.2359878" />
+          </g>
+          <circle
+             r="6"
+             cy="-31"
+             cx="254"
+             transform="matrix(0.41666667,0,0,0.41666667,33.166665,201.76322)"
+             id="circle6173"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.25737929;marker:none;enable-background:accumulate" />
+        </g>
+        <g
+           transform="translate(20.000001,3.21e-6)"
+           id="g6175">
+          <circle
+             r="6"
+             cy="-31"
+             cx="254"
+             transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+             id="circle6177"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
+          <circle
+             r="6"
+             cy="-31"
+             cx="254"
+             transform="matrix(0.41666667,0,0,0.41666667,33.166665,201.76322)"
+             id="circle6179"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.25737929;marker:none;enable-background:accumulate" />
+        </g>
+        <g
+           transform="translate(30.000001,3.21e-6)"
+           id="g6181">
+          <circle
+             r="6"
+             cy="-31"
+             cx="254"
+             transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+             id="circle6183"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
+          <g
+             id="g6185">
+            <path
+               sodipodi:type="arc"
+               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+               id="path6187"
+               sodipodi:cx="254"
+               sodipodi:cy="-31"
+               sodipodi:rx="6"
+               sodipodi:ry="6"
+               d="M 259.19615,-28 A 6,6 0 0 1 251,-25.803848 L 254,-31 Z"
+               transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+               sodipodi:start="0.52359878"
+               sodipodi:end="2.0943951" />
+            <path
+               sodipodi:type="arc"
+               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+               id="path6189"
+               sodipodi:cx="254"
+               sodipodi:cy="-31"
+               sodipodi:rx="6"
+               sodipodi:ry="6"
+               d="m 248.80385,-34 a 6,6 0 0 1 3.64324,-2.795555 A 6,6 0 0 1 257,-36.196152 L 254,-31 Z"
+               transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+               sodipodi:start="3.6651914"
+               sodipodi:end="5.2359878" />
+          </g>
+          <circle
+             r="6"
+             cy="-31"
+             cx="254"
+             transform="matrix(0.41666667,0,0,0.41666667,33.166665,201.76322)"
+             id="circle6191"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.25737929;marker:none;enable-background:accumulate" />
+        </g>
+        <g
+           transform="translate(40.000001,3.21e-6)"
+           id="g6193">
+          <circle
+             r="6"
+             cy="-31"
+             cx="254"
+             transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+             id="circle6195"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
+          <circle
+             r="6"
+             cy="-31"
+             cx="254"
+             transform="matrix(0.41666667,0,0,0.41666667,33.166665,201.76322)"
+             id="circle6197"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.25737929;marker:none;enable-background:accumulate" />
+        </g>
+        <g
+           transform="translate(50.000001,3.21e-6)"
+           id="g6199">
+          <circle
+             r="6"
+             cy="-31"
+             cx="254"
+             transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+             id="circle6201"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
+          <g
+             id="g6203">
+            <path
+               sodipodi:type="arc"
+               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+               id="path6205"
+               sodipodi:cx="254"
+               sodipodi:cy="-31"
+               sodipodi:rx="6"
+               sodipodi:ry="6"
+               d="M 259.19615,-28 A 6,6 0 0 1 251,-25.803848 L 254,-31 Z"
+               transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+               sodipodi:start="0.52359878"
+               sodipodi:end="2.0943951" />
+            <path
+               sodipodi:type="arc"
+               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+               id="path6207"
+               sodipodi:cx="254"
+               sodipodi:cy="-31"
+               sodipodi:rx="6"
+               sodipodi:ry="6"
+               d="m 248.80385,-34 a 6,6 0 0 1 3.64324,-2.795555 A 6,6 0 0 1 257,-36.196152 L 254,-31 Z"
+               transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+               sodipodi:start="3.6651914"
+               sodipodi:end="5.2359878" />
+          </g>
+          <circle
+             r="6"
+             cy="-31"
+             cx="254"
+             transform="matrix(0.41666667,0,0,0.41666667,33.166665,201.76322)"
+             id="circle6209"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.25737929;marker:none;enable-background:accumulate" />
+        </g>
+        <g
+           transform="translate(60.000001,3.21e-6)"
+           id="g6211">
+          <circle
+             r="6"
+             cy="-31"
+             cx="254"
+             transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+             id="circle6213"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
+          <circle
+             r="6"
+             cy="-31"
+             cx="254"
+             transform="matrix(0.41666667,0,0,0.41666667,33.166665,201.76322)"
+             id="circle6215"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.25737929;marker:none;enable-background:accumulate" />
+        </g>
+      </g>
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccc"
+         id="path6217"
+         d="m -114,-17.15344 0,49 109,0 0,-49 -16.5,0 0,18 -5.5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 z"
+         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e6e6;fill-opacity:0.13526569;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
+    </g>
+    <g
+       id="g6219"
+       transform="matrix(0.21648271,0,0,0.21648271,70.728439,37.137837)">
+      <g
+         transform="translate(286,-137)"
+         id="g6221">
+        <path
+           inkscape:connector-curvature="0"
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e6e6;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+           d="m -231.5,120.34656 0,61 26,0 0,9 59,0 0,-9 26,0 0,-61 z"
+           id="path6223"
+           sodipodi:nodetypes="ccccccccc" />
+        <g
+           id="g6225"
+           transform="matrix(1,0,0,1.7894822,-369.5,-154.35402)"
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate">
+          <rect
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+             id="rect6227"
+             width="4"
+             height="8.472599"
+             x="206.50014"
+             y="154.34656" />
+          <rect
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+             id="rect6229"
+             width="4"
+             height="8.472599"
+             x="226.5"
+             y="154.34656" />
+          <rect
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+             id="rect6231"
+             width="4"
+             height="8.472599"
+             x="216.5"
+             y="154.34656" />
+          <rect
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+             id="rect6233"
+             width="4"
+             height="8.472599"
+             x="196.5"
+             y="154.34656" />
+          <rect
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+             id="rect6235"
+             width="4"
+             height="8.472599"
+             x="186.5"
+             y="154.34656" />
+          <rect
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+             id="rect6237"
+             width="4"
+             height="8.472599"
+             x="176.5"
+             y="154.34656" />
+          <rect
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+             id="rect6239"
+             width="4"
+             height="8.472599"
+             x="166.5"
+             y="154.34656" />
+          <rect
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+             id="rect6241"
+             width="4"
+             height="8.472599"
+             x="156.5"
+             y="154.34656" />
+        </g>
+      </g>
+    </g>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="57.653225"
+       y="27.795864"
+       id="text6243"><tspan
+         sodipodi:role="line"
+         id="tspan6245"
+         x="57.653225"
+         y="27.795864"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.32965422px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.21648271">Male</tspan></text>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="94.347038"
+       y="28.012346"
+       id="text6247"><tspan
+         sodipodi:role="line"
+         id="tspan6249"
+         x="94.347038"
+         y="28.012346"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.32965422px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';text-align:center;text-anchor:middle;stroke-width:0.21648271">Female</tspan></text>
+    <path
+       inkscape:connector-curvature="0"
+       style="fill:none;stroke:#000000;stroke-width:0.21648271px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker8391);marker-end:url(#marker8401)"
+       d="m 69.754267,57.12927 -23.813098,0"
+       id="path6251"
+       sodipodi:nodetypes="cc" />
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:0%;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="56.627026"
+       y="62.324238"
+       id="text6253"><tspan
+         sodipodi:role="line"
+         id="tspan6255"
+         x="56.627026"
+         y="62.324238"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';text-align:center;text-anchor:middle;stroke-width:0.21648271">11mm</tspan></text>
+    <path
+       inkscape:connector-curvature="0"
+       style="fill:none;stroke:#000000;stroke-width:0.21648271px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker8391);marker-end:url(#marker8401)"
+       d="m 35.549999,46.7381 0,-12.988963"
+       id="path6257"
+       sodipodi:nodetypes="cc" />
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:0%;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="-40.21994"
+       y="33.345322"
+       id="text6259"
+       transform="matrix(0,-1,1,0,0,0)"><tspan
+         sodipodi:role="line"
+         id="tspan6261"
+         x="-40.21994"
+         y="33.345322"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';text-align:center;text-anchor:middle;stroke-width:0.21648271">6mm</tspan></text>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="65.428528"
+       y="32.341999"
+       id="text6263"><tspan
+         sodipodi:role="line"
+         id="tspan6265"
+         x="65.428528"
+         y="32.341999"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271">1</tspan></text>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="63.333637"
+       y="32.341999"
+       id="text6267"><tspan
+         sodipodi:role="line"
+         id="tspan6269"
+         x="63.333637"
+         y="32.341999"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271">2</tspan></text>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="61.167919"
+       y="32.341999"
+       id="text6271"><tspan
+         sodipodi:role="line"
+         id="tspan6273"
+         x="61.167919"
+         y="32.341999"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271">3</tspan></text>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="58.993748"
+       y="32.341999"
+       id="text6275"><tspan
+         sodipodi:role="line"
+         id="tspan6277"
+         x="58.993748"
+         y="32.341999"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271">4</tspan></text>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="56.843891"
+       y="32.341999"
+       id="text6279"><tspan
+         sodipodi:role="line"
+         id="tspan6281"
+         x="56.843891"
+         y="32.341999"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271">5</tspan></text>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="54.669712"
+       y="32.341999"
+       id="text6283"><tspan
+         sodipodi:role="line"
+         id="tspan6285"
+         x="54.669712"
+         y="32.341999"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271">6</tspan></text>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="102.17646"
+       y="32.341999"
+       id="text6287"><tspan
+         sodipodi:role="line"
+         id="tspan6289"
+         x="102.17646"
+         y="32.341999"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271">8</tspan></text>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="100.08157"
+       y="32.341999"
+       id="text6291"><tspan
+         sodipodi:role="line"
+         id="tspan6293"
+         x="100.08157"
+         y="32.341999"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271">7</tspan></text>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="97.915855"
+       y="32.341999"
+       id="text6295"><tspan
+         sodipodi:role="line"
+         id="tspan6297"
+         x="97.915855"
+         y="32.341999"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271">6</tspan></text>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="95.741684"
+       y="32.341999"
+       id="text6299"><tspan
+         sodipodi:role="line"
+         id="tspan6301"
+         x="95.741684"
+         y="32.341999"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271">5</tspan></text>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="93.59182"
+       y="32.341999"
+       id="text6303"><tspan
+         sodipodi:role="line"
+         id="tspan6305"
+         x="93.59182"
+         y="32.341999"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271">4</tspan></text>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="91.417648"
+       y="32.341999"
+       id="text6307"><tspan
+         sodipodi:role="line"
+         id="tspan6309"
+         x="91.417648"
+         y="32.341999"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271">3</tspan></text>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="52.52483"
+       y="32.341999"
+       id="text6311"><tspan
+         sodipodi:role="line"
+         id="tspan6313"
+         x="52.52483"
+         y="32.341999"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271">7</tspan></text>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="50.350655"
+       y="32.341999"
+       id="text6315"><tspan
+         sodipodi:role="line"
+         id="tspan6317"
+         x="50.350655"
+         y="32.341999"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271">8</tspan></text>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="89.262169"
+       y="32.341999"
+       id="text6319"><tspan
+         sodipodi:role="line"
+         id="tspan6321"
+         x="89.262169"
+         y="32.341999"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271">2</tspan></text>
+    <text
+       sodipodi:linespacing="0%"
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       x="87.087997"
+       y="32.341999"
+       id="text6323"><tspan
+         sodipodi:role="line"
+         id="tspan6325"
+         x="87.087997"
+         y="32.341999"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271">1</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="65.974159"
+       y="2.8403857"
+       id="text6327"><tspan
+         sodipodi:role="line"
+         id="tspan6329"
+         x="65.974159"
+         y="2.8403857"
+         style="stroke-width:0.26458332">Interfaces</tspan><tspan
+         id="tspan6331"
+         sodipodi:role="line"
+         x="65.974159"
+         y="8.1320524"
+         style="stroke-width:0.26458332">•8P8C</tspan><tspan
+         id="tspan6333"
+         sodipodi:role="line"
+         x="65.974159"
+         y="13.423718"
+         style="stroke-width:0.26458332">•CAT7</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text6335"
+       y="-0.87293333"
+       x="3.2846954"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333406px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       xml:space="preserve"><tspan
+         y="-0.87293333"
+         x="3.2846954"
+         id="tspan6337"
+         sodipodi:role="line">Service</tspan><tspan
+         id="tspan6339"
+         y="4.4187341"
+         x="3.2846954"
+         sodipodi:role="line">Provider</tspan></text>
+    <text
+       sodipodi:linespacing="125%"
+       id="text6341"
+       y="-6.5142841"
+       x="133.75171"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333406px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#0055d4;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       xml:space="preserve"><tspan
+         y="-6.5142841"
+         x="133.75171"
+         id="tspan6343"
+         sodipodi:role="line">Service client</tspan></text>
+  </g>
+  <g
+     transform="translate(-1.4239073,11.675749)"
+     style="display:none"
+     inkscape:label="Layer 5"
+     id="g6349"
+     inkscape:groupmode="layer">
+    <rect
+       y="-11.417399"
+       x="1.2688416"
+       height="74.896721"
+       width="74.93116"
+       id="rect6353"
+       style="fill:#ffd5d5;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none" />
+    <text
+       id="text6355"
+       y="21.809916"
+       x="137.26913"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       xml:space="preserve"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332"
+         y="21.809916"
+         x="137.26913"
+         id="tspan6357"
+         sodipodi:role="line" /></text>
+    <text
+       id="text6359"
+       y="16.518251"
+       x="137.26913"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       xml:space="preserve"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332"
+         y="16.518251"
+         x="137.26913"
+         id="tspan6361"
+         sodipodi:role="line" /></text>
+    <g
+       transform="matrix(0.26458333,0,0,0.26458333,26.722906,-4.6643506)"
+       id="g6363">
+      <rect
+         style="opacity:0.8;fill:url(#C)"
+         x="0"
+         width="48"
+         height="9.3129997"
+         y="37"
+         id="rect6365" />
+      <rect
+         style="fill:url(#K)"
+         width="41"
+         height="41"
+         x="3.5"
+         y="2.1849999"
+         id="rect6367"
+         rx="5" />
+      <path
+         style="fill:url(#J)"
+         inkscape:connector-curvature="0"
+         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 l 0,23.0937504 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 l 33.1875,0 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 l 0,-23.0937504 c 0,-2.77 -2.23,-5 -5,-5 z"
+         id="path6370" />
+      <path
+         style="fill:none;stroke:#555753;stroke-width:0.80000001;stroke-linecap:square"
+         inkscape:connector-curvature="0"
+         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 l 0,23.0937504 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 l 33.1875,0 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 l 0,-23.0937504 c 0,-2.77 -2.23,-5 -5,-5 z"
+         id="path6372" />
+      <g
+         transform="translate(3.1482255,0)"
+         id="g6374">
+        <g
+           style="fill:#2e3436"
+           transform="translate(-0.299517,-1.6150909)"
+           id="g6376">
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="9.5909996"
+             y="37.119999"
+             id="rect6378" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="11.961"
+             y="37.119999"
+             id="rect6380" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="14.332"
+             y="37.119999"
+             id="rect6382" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="16.702999"
+             y="37.119999"
+             id="rect6384" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="19.07"
+             y="37.119999"
+             id="rect6386" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="21.444"
+             y="37.119999"
+             id="rect6388" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="23.815001"
+             y="37.119999"
+             id="rect6390" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="26.190001"
+             y="37.119999"
+             id="rect6392" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="28.556"
+             y="37.119999"
+             id="rect6394" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="30.927"
+             y="37.119999"
+             id="rect6396" />
+        </g>
+        <g
+           style="fill:#eeeeec"
+           transform="translate(0.300483,-1.1150909)"
+           id="g6398">
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="9.5909996"
+             y="37.119999"
+             id="rect6400" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="11.961"
+             y="37.119999"
+             id="rect6402" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="14.332"
+             y="37.119999"
+             id="rect6404" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="16.702999"
+             y="37.119999"
+             id="rect6406" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="19.07"
+             y="37.119999"
+             id="rect6408" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="21.444"
+             y="37.119999"
+             id="rect6410" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="23.815001"
+             y="37.119999"
+             id="rect6412" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="26.190001"
+             y="37.119999"
+             id="rect6414" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="28.556"
+             y="37.119999"
+             id="rect6416" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="30.927"
+             y="37.119999"
+             id="rect6418" />
+        </g>
+        <g
+           style="fill:#555753"
+           transform="translate(0,-1.3147774)"
+           id="g6420">
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="9.5909996"
+             y="37.119999"
+             id="rect6422" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="11.961"
+             y="37.119999"
+             id="rect6424" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="14.332"
+             y="37.119999"
+             id="rect6426" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="16.702999"
+             y="37.119999"
+             id="rect6428" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="19.07"
+             y="37.119999"
+             id="rect6430" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="21.444"
+             y="37.119999"
+             id="rect6432" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="23.815001"
+             y="37.119999"
+             id="rect6434" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="26.190001"
+             y="37.119999"
+             id="rect6436" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="28.556"
+             y="37.119999"
+             id="rect6438" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="30.927"
+             y="37.119999"
+             id="rect6440" />
+        </g>
+      </g>
+      <path
+         style="opacity:0.8;fill:none;stroke:url(#B);stroke-linecap:square"
+         inkscape:connector-curvature="0"
+         d="M 8.5,4.5625 C 6.3030567,4.5625 4.5625,6.3030567 4.5625,8.5 l 0,23.09375 c 0,1.588297 1.2554529,2.84375 2.84375,2.84375 l 33.1875,0 c 1.588296,0 2.84375,-1.255454 2.84375,-2.84375 l 0,-23.09375 c 0,-2.1969433 -1.740557,-3.9375 -3.9375,-3.9375 z"
+         transform="matrix(0.9998886,0,0,1.0087936,0.00267394,-1.3527326)"
+         id="path6442" />
+      <rect
+         style="fill:none;stroke:#555753;stroke-linecap:square"
+         width="41"
+         height="41"
+         x="3.5"
+         y="2.1849999"
+         id="rect6444"
+         rx="5" />
+      <g
+         transform="matrix(1.0001372,0,0,0.9907555,-0.8836787,1.1528607)"
+         id="g6446">
+        <path
+           style="fill:url(#F)"
+           inkscape:connector-curvature="0"
+           d="m 9.7220567,29.677664 a 1.420916,1.2713459 0 1 1 -2.8418319,0 1.420916,1.2713459 0 1 1 2.8418319,0 z"
+           transform="matrix(1.0027874,0,0,1.1207624,0.7612959,-4.9666618)"
+           id="path6448" />
+        <path
+           style="fill:url(#radialGradient15919)"
+           inkscape:connector-curvature="0"
+           d="m 8.3125,28.9375 c -0.5173003,0 -0.9062499,0.384633 -0.90625,0.75 0,0.365367 0.3745491,0.718751 0.90625,0.71875 0.5317017,0 0.8750002,-0.337288 0.875,-0.71875 0,-0.381463 -0.3577006,-0.750001 -0.875,-0.75 z"
+           transform="matrix(1.0027874,0,0,1.1207624,0.7612959,-4.9666618)"
+           id="path6450" />
+        <path
+           style="opacity:0.6;fill:url(#linearGradient15921)"
+           inkscape:connector-curvature="0"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           id="path6452" />
+      </g>
+      <g
+         transform="matrix(0.749538,0.6621686,-0.6559572,0.742507,19.953433,-19.80069)"
+         id="g6454">
+        <path
+           style="fill:url(#I)"
+           inkscape:connector-curvature="0"
+           d="m 9.7220567,29.677664 a 1.420916,1.2713459 0 1 1 -2.8418319,0 1.420916,1.2713459 0 1 1 2.8418319,0 z"
+           transform="matrix(1.0027874,0,0,1.1207624,0.7612959,-4.9666618)"
+           id="path6456" />
+        <path
+           style="fill:url(#radialGradient15923)"
+           inkscape:connector-curvature="0"
+           d="m 8.3125,28.9375 c -0.5173003,0 -0.9062499,0.384633 -0.90625,0.75 0,0.365367 0.3745491,0.718751 0.90625,0.71875 0.5317017,0 0.8750002,-0.337288 0.875,-0.71875 0,-0.381463 -0.3577006,-0.750001 -0.875,-0.75 z"
+           transform="matrix(1.0027874,0,0,1.1207624,0.7612959,-4.9666618)"
+           id="path6458" />
+        <path
+           style="opacity:0.6;fill:url(#linearGradient15925)"
+           inkscape:connector-curvature="0"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           id="path6460" />
+      </g>
+      <g
+         transform="matrix(0.7340578,-0.679289,0.672917,0.727172,14.08737,14.782673)"
+         id="g6462">
+        <path
+           style="fill:url(#G)"
+           inkscape:connector-curvature="0"
+           d="m 9.7220567,29.677664 a 1.420916,1.2713459 0 1 1 -2.8418319,0 1.420916,1.2713459 0 1 1 2.8418319,0 z"
+           transform="matrix(1.0027874,0,0,1.1207624,0.7612959,-4.9666618)"
+           id="path6464" />
+        <path
+           style="fill:url(#radialGradient15927)"
+           inkscape:connector-curvature="0"
+           d="m 8.3125,28.9375 c -0.5173003,0 -0.9062499,0.384633 -0.90625,0.75 0,0.365367 0.3745491,0.718751 0.90625,0.71875 0.5317017,0 0.8750002,-0.337288 0.875,-0.71875 0,-0.381463 -0.3577006,-0.750001 -0.875,-0.75 z"
+           transform="matrix(1.0027874,0,0,1.1207624,0.7612959,-4.9666618)"
+           id="path6466" />
+        <path
+           style="opacity:0.6;fill:url(#linearGradient15929)"
+           inkscape:connector-curvature="0"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           id="path6468" />
+      </g>
+      <g
+         transform="matrix(0.4510298,0.8926626,-0.8842891,0.4467989,60.719907,-13.527817)"
+         id="g6470">
+        <path
+           style="fill:url(#H)"
+           inkscape:connector-curvature="0"
+           d="m 9.7220567,29.677664 a 1.420916,1.2713459 0 1 1 -2.8418319,0 1.420916,1.2713459 0 1 1 2.8418319,0 z"
+           transform="matrix(1.0027874,0,0,1.1207624,0.7612959,-4.9666618)"
+           id="path6472" />
+        <path
+           style="fill:url(#D)"
+           inkscape:connector-curvature="0"
+           d="m 8.3125,28.9375 c -0.5173003,0 -0.9062499,0.384633 -0.90625,0.75 0,0.365367 0.3745491,0.718751 0.90625,0.71875 0.5317017,0 0.8750002,-0.337288 0.875,-0.71875 0,-0.381463 -0.3577006,-0.750001 -0.875,-0.75 z"
+           transform="matrix(1.0027874,0,0,1.1207624,0.7612959,-4.9666618)"
+           id="path6474" />
+        <path
+           style="opacity:0.6;fill:url(#E)"
+           inkscape:connector-curvature="0"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           id="path6476" />
+      </g>
+      <g
+         transform="matrix(1.096757,0,0,1.096757,-1.7737895,-14.588047)"
+         id="g6478">
+        <path
+           style="fill:url(#P)"
+           inkscape:connector-curvature="0"
+           d="m 19.53125,19.125 c -0.269725,3e-6 -0.640957,0.168514 -0.8125,0.40625 -0.171543,0.237736 -0.1875,0.45866 -0.1875,0.625 l 0,1.03125 -0.9375,0 c -0.634805,4e-6 -1.21875,0.44842 -1.21875,1.1875 l 0,1.8125 -3.90625,0 c -0.923256,2e-6 -1.6875,0.764243 -1.6875,1.6875 l 0,13.46875 c 0,0.923257 0.764243,1.6875 1.6875,1.6875 l 22.09375,0 c 0.923255,-2e-6 1.65625,-0.80496 1.65625,-1.6875 l 0,-13.46875 c -4e-6,-0.882533 -0.732992,-1.6875 -1.65625,-1.6875 l -3.9375,0 0,-1.8125 c 0,-0.265272 -0.07536,-0.542187 -0.28125,-0.78125 -0.205892,-0.239063 -0.557594,-0.40625 -0.875,-0.40625 l -0.96875,0 0,-1.03125 c 6e-6,-0.539513 -0.491761,-1.03125 -1.03125,-1.03125 z"
+           id="path6480" />
+        <path
+           style="fill:url(#N)"
+           inkscape:connector-curvature="0"
+           d="m 19.546544,20.005656 c -0.08803,0 -0.151282,0.06326 -0.151282,0.151281 l 0,1.89102 -1.815379,0 c -0.174558,0 -0.327776,0.153218 -0.327776,0.327777 l 0,2.697854 -4.790583,0 c -0.446987,0 -0.806835,0.359849 -0.806835,0.806835 l 0,13.464059 c 0,0.446987 0.359848,0.806835 0.806835,0.806835 l 22.087108,0 c 0.446987,0 0.806835,-0.359848 0.806835,-0.806835 l 0,-13.464059 c 0,-0.446986 -0.359848,-0.806835 -0.806835,-0.806835 l -4.790583,0 0,-2.697854 c 0,-0.174559 -0.128004,-0.327777 -0.302563,-0.327777 l -1.815379,0 0,-1.89102 c 0,-0.08802 -0.08848,-0.151281 -0.176495,-0.151281 z"
+           id="path6482" />
+        <path
+           style="opacity:0.8;fill:url(#O);fill-rule:evenodd"
+           inkscape:connector-curvature="0"
+           d="m 16.15625,32.59375 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.96875,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z"
+           id="path6484" />
+      </g>
+    </g>
+    <g
+       id="g6486"
+       inkscape:label="Layer 1"
+       transform="matrix(0.76483345,0,0,0.76483345,-100.74724,-350.64755)">
+      <g
+         id="g6488"
+         inkscape:label="Layer 1"
+         transform="matrix(0.17341,0,0,0.17341,227.14,387.13)">
+        <path
+           inkscape:connector-curvature="0"
+           id="path6490"
+           sodipodi:nodetypes="ccccc"
+           style="fill:#a1a1a1"
+           d="m 305,412.36 60,50 -55,10 -60,-50 z" />
+        <g
+           id="g6492"
+           transform="translate(-42,-52)">
+          <path
+             inkscape:connector-curvature="0"
+             id="path6494"
+             style="fill:none;stroke:#e8e81f;stroke-width:2;stroke-linecap:round"
+             d="m 310,472.36 10,10" />
+          <path
+             inkscape:connector-curvature="0"
+             id="path6496"
+             style="fill:none;stroke:#e8e81f;stroke-width:2;stroke-linecap:round"
+             d="m 315,471.36 10,10" />
+          <path
+             inkscape:connector-curvature="0"
+             id="path6498"
+             style="fill:none;stroke:#e8e81f;stroke-width:2;stroke-linecap:round"
+             d="m 321,470.36 10,10" />
+          <path
+             inkscape:connector-curvature="0"
+             id="path6500"
+             style="fill:none;stroke:#e8e81f;stroke-width:2;stroke-linecap:round"
+             d="m 339,467.36 10,10" />
+          <path
+             inkscape:connector-curvature="0"
+             id="path6502"
+             style="fill:none;stroke:#e8e81f;stroke-width:2;stroke-linecap:round"
+             d="m 333,468.36 10,10" />
+          <path
+             inkscape:connector-curvature="0"
+             id="path6504"
+             style="fill:none;stroke:#e8e81f;stroke-width:2;stroke-linecap:round"
+             d="m 327,469.36 10,10" />
+        </g>
+        <path
+           inkscape:connector-curvature="0"
+           id="path6506"
+           sodipodi:nodetypes="ccccc"
+           style="fill:#a1a1a1;fill-opacity:0.63524996;stroke:#000000;stroke-width:0.40000001;stroke-linejoin:round"
+           d="m 250,392.36 60,50 0,30 -60,-50 z" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path6508"
+           sodipodi:nodetypes="ccccc"
+           style="fill:#a1a1a1"
+           d="m 305,382.36 60,50 0,30 -60,-50 z" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path6510"
+           sodipodi:nodetypes="ccccc"
+           style="fill:#a1a1a1;fill-opacity:0.62705;stroke:#000000;stroke-width:0.40000001;stroke-linejoin:round"
+           d="m 305,382.36 60,50 -55,10 -60,-50 z" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path6512"
+           sodipodi:nodetypes="ccccc"
+           style="fill:#a1a1a1;fill-opacity:0.63524996;stroke:#000000;stroke-width:0.40000001;stroke-linejoin:round"
+           d="m 310,442.36 55,-10 0,30 -55,10 z" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path6514"
+           sodipodi:nodetypes="ccccc"
+           style="fill:#a1a1a1;fill-opacity:0.63524996;stroke:#000000;stroke-width:0.63332999;stroke-linejoin:round"
+           d="M 290.42,385.7 330,417.36 c -1.8181,1.958 -4.6551,2.2826 -6.3333,1.5833 l -50.67,-30.08 17.417,-3.1667 z" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path6516"
+           sodipodi:nodetypes="cccccc"
+           style="fill:none;stroke:#0000d7;stroke-width:16;stroke-linecap:round"
+           d="m 340,452.36 c 0,0 97.848,64.069 130,110 45,90 -194.43,-107.15 -210,-30 -13.205,65.451 294.15,193.55 310,140 15.502,-52.246 -105.62,-196.4 -80,-230 25.836,-33.874 240,110 240,110" />
+      </g>
+    </g>
+    <text
+       id="text6518"
+       y="-5.8969193"
+       x="15.459511"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       xml:space="preserve"><tspan
+         style="stroke-width:0.26458332"
+         y="-5.8969193"
+         x="15.459511"
+         id="tspan6520"
+         sodipodi:role="line">Ethernet port</tspan></text>
+    <text
+       id="text6522"
+       y="-7.2198362"
+       x="96.157425"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       xml:space="preserve"><tspan
+         style="stroke-width:0.26458332"
+         y="-7.2198362"
+         x="96.157425"
+         id="tspan6524"
+         sodipodi:role="line">Ethernet jack</tspan></text>
+    <g
+       inkscape:corner7="0.39213952 : -0.0010228778 : 0.25 : 1"
+       inkscape:corner0="0.45447413 : 0.053997152 : 0 : 1"
+       inkscape:perspectiveID="#perspective631"
+       style="fill:#ff0000;stroke:none;stroke-width:2.66666675;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="g6526"
+       sodipodi:type="inkscape:box3d">
+      <path
+         points="62.428349,24.022166 83.092471,22.77771 83.092471,-6.6798689 62.428349,-10.498683 "
+         d="m 62.428349,-10.498683 0,34.520849 20.664122,-1.244456 0,-29.4575789 z"
+         inkscape:box3dsidetype="6"
+         style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
+         id="path6528"
+         sodipodi:type="inkscape:box3dside" />
+      <path
+         points="65.732955,24.402072 86.67838,23.052541 83.092471,22.77771 62.428349,24.022166 "
+         d="M 62.428349,24.022166 65.732955,24.402072 86.67838,23.052541 83.092471,22.77771 Z"
+         inkscape:box3dsidetype="13"
+         style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
+         id="path6530"
+         sodipodi:type="inkscape:box3dside" />
+      <path
+         points="86.67838,-7.5232303 86.67838,23.052541 83.092471,22.77771 83.092471,-6.6798689 "
+         d="m 83.092471,-6.6798689 3.585909,-0.8433614 0,30.5757713 -3.585909,-0.274831 z"
+         inkscape:box3dsidetype="11"
+         style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
+         id="path6532"
+         sodipodi:type="inkscape:box3dside" />
+      <path
+         points="65.732955,-11.664487 86.67838,-7.5232303 83.092471,-6.6798689 62.428349,-10.498683 "
+         d="m 62.428349,-10.498683 3.304606,-1.165804 20.945425,4.1412567 -3.585909,0.8433614 z"
+         inkscape:box3dsidetype="5"
+         style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
+         id="path6534"
+         sodipodi:type="inkscape:box3dside" />
+      <path
+         points="65.732955,24.402072 86.67838,23.052541 86.67838,-7.5232303 65.732955,-11.664487 "
+         d="m 65.732955,-11.664487 0,36.066559 20.945425,-1.349531 0,-30.5757713 z"
+         inkscape:box3dsidetype="14"
+         style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
+         id="path6536"
+         sodipodi:type="inkscape:box3dside" />
+      <path
+         points="65.732955,-11.664487 65.732955,24.402072 62.428349,24.022166 62.428349,-10.498683 "
+         d="m 62.428349,-10.498683 3.304606,-1.165804 0,36.066559 -3.304606,-0.379906 z"
+         inkscape:box3dsidetype="3"
+         style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
+         id="path6538"
+         sodipodi:type="inkscape:box3dside" />
+    </g>
+    <g
+       style="fill:#ffb100;fill-opacity:1"
+       transform="matrix(0.21648271,0,0,0.39878377,45.535862,-51.791606)"
+       id="g6540" />
+    <text
+       id="text6542"
+       y="54.089088"
+       x="98.732994"
+       style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:0%;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';text-align:center;text-anchor:middle;stroke-width:0.21648271"
+         id="tspan6544"
+         y="54.089088"
+         x="98.732994"
+         sodipodi:role="line">8P8C - T568B</tspan><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';text-align:center;text-anchor:middle;stroke-width:0.21648271"
+         y="59.380756"
+         x="98.732994"
+         sodipodi:role="line"
+         id="tspan6546">wiring</tspan></text>
+    <text
+       id="text6548"
+       y="43.960403"
+       x="49.44912"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       xml:space="preserve"><tspan
+         style="stroke-width:0.26458332"
+         y="43.960403"
+         x="49.44912"
+         id="tspan6550"
+         sodipodi:role="line">RJ45</tspan></text>
+    <text
+       id="text6552"
+       y="48.757748"
+       x="50.321365"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       xml:space="preserve"><tspan
+         style="stroke-width:0.26458332"
+         y="48.757748"
+         x="50.321365"
+         id="tspan6554"
+         sodipodi:role="line">CAT7</tspan></text>
+    <g
+       transform="matrix(0.21648271,0,0,0.21648271,70.728439,37.570802)"
+       id="g6556">
+      <path
+         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cccccc;stroke:#4d4d4d;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+         d="m -5,-15.15344 0,57 -109,0 0,-57"
+         id="path6558"
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f2f2f2;stroke:#666666;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+         d="m -89,31.84656 0,19 59,0 0,-19 z"
+         id="path6560"
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e6e6;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+         d="m -114,-17.15344 0,49 109,0 0,-49"
+         id="path6562"
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0" />
+      <g
+         id="g6564"
+         transform="matrix(1,0,0,1.7894822,-253,-288.85402)"
+         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate">
+        <rect
+           y="154.34656"
+           x="156.5"
+           height="19"
+           width="4"
+           id="rect6566"
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate" />
+        <rect
+           y="154.34656"
+           x="226.5"
+           height="19"
+           width="4"
+           id="rect6568"
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate" />
+        <rect
+           y="154.34656"
+           x="216.5"
+           height="19"
+           width="4"
+           id="rect6570"
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate" />
+        <rect
+           y="154.34656"
+           x="196.5"
+           height="19"
+           width="4"
+           id="rect6572"
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate" />
+        <rect
+           y="154.34656"
+           x="176.5"
+           height="19"
+           width="4"
+           id="rect6574"
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate" />
+        <rect
+           y="154.34656"
+           x="206.5"
+           height="19"
+           width="4"
+           id="rect6576"
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate" />
+        <rect
+           y="154.34656"
+           x="186.5"
+           height="19"
+           width="4"
+           id="rect6578"
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate" />
+        <rect
+           y="154.34656"
+           x="166.5"
+           height="19"
+           width="4"
+           id="rect6580"
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate" />
+      </g>
+      <g
+         id="g6582"
+         transform="translate(-233.5,-168.5)">
+        <g
+           transform="translate(1.16e-6,0)"
+           id="g6584">
+          <circle
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#552200;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+             id="circle6586"
+             transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+             cx="254"
+             cy="-31"
+             r="6" />
+          <circle
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.25737929;marker:none;enable-background:accumulate"
+             id="circle6588"
+             transform="matrix(0.41666667,0,0,0.41666667,33.166665,201.76322)"
+             cx="254"
+             cy="-31"
+             r="6" />
+        </g>
+        <g
+           id="g6590"
+           transform="translate(10.000001,3.21e-6)">
+          <circle
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#552200;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+             id="circle6592"
+             transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+             cx="254"
+             cy="-31"
+             r="6" />
+          <g
+             id="g6594">
+            <path
+               sodipodi:end="2.0943951"
+               sodipodi:start="0.52359878"
+               transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+               d="M 259.19615,-28 A 6,6 0 0 1 251,-25.803848 L 254,-31 Z"
+               sodipodi:ry="6"
+               sodipodi:rx="6"
+               sodipodi:cy="-31"
+               sodipodi:cx="254"
+               id="path6596"
+               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+               sodipodi:type="arc" />
+            <path
+               sodipodi:end="5.2359878"
+               sodipodi:start="3.6651914"
+               transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+               d="m 248.80385,-34 a 6,6 0 0 1 3.64324,-2.795555 A 6,6 0 0 1 257,-36.196152 L 254,-31 Z"
+               sodipodi:ry="6"
+               sodipodi:rx="6"
+               sodipodi:cy="-31"
+               sodipodi:cx="254"
+               id="path6598"
+               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+               sodipodi:type="arc" />
+          </g>
+          <circle
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.25737929;marker:none;enable-background:accumulate"
+             id="circle6600"
+             transform="matrix(0.41666667,0,0,0.41666667,33.166665,201.76322)"
+             cx="254"
+             cy="-31"
+             r="6" />
+        </g>
+        <g
+           id="g6602"
+           transform="translate(70.000001,3.21e-6)">
+          <circle
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+             id="circle6604"
+             transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+             cx="254"
+             cy="-31"
+             r="6" />
+          <g
+             id="g6606">
+            <path
+               sodipodi:end="2.0943951"
+               sodipodi:start="0.52359878"
+               transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+               d="M 259.19615,-28 A 6,6 0 0 1 251,-25.803848 L 254,-31 Z"
+               sodipodi:ry="6"
+               sodipodi:rx="6"
+               sodipodi:cy="-31"
+               sodipodi:cx="254"
+               id="path6608"
+               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+               sodipodi:type="arc" />
+            <path
+               sodipodi:end="5.2359878"
+               sodipodi:start="3.6651914"
+               transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+               d="m 248.80385,-34 a 6,6 0 0 1 3.64324,-2.795555 A 6,6 0 0 1 257,-36.196152 L 254,-31 Z"
+               sodipodi:ry="6"
+               sodipodi:rx="6"
+               sodipodi:cy="-31"
+               sodipodi:cx="254"
+               id="path6610"
+               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+               sodipodi:type="arc" />
+          </g>
+          <circle
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.25737929;marker:none;enable-background:accumulate"
+             id="circle6612"
+             transform="matrix(0.41666667,0,0,0.41666667,33.166665,201.76322)"
+             cx="254"
+             cy="-31"
+             r="6" />
+        </g>
+        <g
+           id="g6614"
+           transform="translate(20.000001,3.21e-6)">
+          <circle
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+             id="circle6616"
+             transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+             cx="254"
+             cy="-31"
+             r="6" />
+          <circle
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.25737929;marker:none;enable-background:accumulate"
+             id="circle6618"
+             transform="matrix(0.41666667,0,0,0.41666667,33.166665,201.76322)"
+             cx="254"
+             cy="-31"
+             r="6" />
+        </g>
+        <g
+           id="g6620"
+           transform="translate(30.000001,3.21e-6)">
+          <circle
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+             id="circle6622"
+             transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+             cx="254"
+             cy="-31"
+             r="6" />
+          <g
+             id="g6624">
+            <path
+               sodipodi:end="2.0943951"
+               sodipodi:start="0.52359878"
+               transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+               d="M 259.19615,-28 A 6,6 0 0 1 251,-25.803848 L 254,-31 Z"
+               sodipodi:ry="6"
+               sodipodi:rx="6"
+               sodipodi:cy="-31"
+               sodipodi:cx="254"
+               id="path6626"
+               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+               sodipodi:type="arc" />
+            <path
+               sodipodi:end="5.2359878"
+               sodipodi:start="3.6651914"
+               transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+               d="m 248.80385,-34 a 6,6 0 0 1 3.64324,-2.795555 A 6,6 0 0 1 257,-36.196152 L 254,-31 Z"
+               sodipodi:ry="6"
+               sodipodi:rx="6"
+               sodipodi:cy="-31"
+               sodipodi:cx="254"
+               id="path6628"
+               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+               sodipodi:type="arc" />
+          </g>
+          <circle
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.25737929;marker:none;enable-background:accumulate"
+             id="circle6630"
+             transform="matrix(0.41666667,0,0,0.41666667,33.166665,201.76322)"
+             cx="254"
+             cy="-31"
+             r="6" />
+        </g>
+        <g
+           id="g6632"
+           transform="translate(40.000001,3.21e-6)">
+          <circle
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+             id="circle6634"
+             transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+             cx="254"
+             cy="-31"
+             r="6" />
+          <circle
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.25737929;marker:none;enable-background:accumulate"
+             id="circle6636"
+             transform="matrix(0.41666667,0,0,0.41666667,33.166665,201.76322)"
+             cx="254"
+             cy="-31"
+             r="6" />
+        </g>
+        <g
+           id="g6638"
+           transform="translate(50.000001,3.21e-6)">
+          <circle
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#008000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+             id="circle6640"
+             transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+             cx="254"
+             cy="-31"
+             r="6" />
+          <g
+             id="g6642">
+            <path
+               sodipodi:end="2.0943951"
+               sodipodi:start="0.52359878"
+               transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+               d="M 259.19615,-28 A 6,6 0 0 1 251,-25.803848 L 254,-31 Z"
+               sodipodi:ry="6"
+               sodipodi:rx="6"
+               sodipodi:cy="-31"
+               sodipodi:cx="254"
+               id="path6644"
+               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+               sodipodi:type="arc" />
+            <path
+               sodipodi:end="5.2359878"
+               sodipodi:start="3.6651914"
+               transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+               d="m 248.80385,-34 a 6,6 0 0 1 3.64324,-2.795555 A 6,6 0 0 1 257,-36.196152 L 254,-31 Z"
+               sodipodi:ry="6"
+               sodipodi:rx="6"
+               sodipodi:cy="-31"
+               sodipodi:cx="254"
+               id="path6646"
+               style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+               sodipodi:type="arc" />
+          </g>
+          <circle
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.25737929;marker:none;enable-background:accumulate"
+             id="circle6648"
+             transform="matrix(0.41666667,0,0,0.41666667,33.166665,201.76322)"
+             cx="254"
+             cy="-31"
+             r="6" />
+        </g>
+        <g
+           id="g6650"
+           transform="translate(60.000001,3.21e-6)">
+          <circle
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
+             id="circle6652"
+             transform="matrix(0.83333333,0,0,0.83333333,-72.666667,214.67989)"
+             cx="254"
+             cy="-31"
+             r="6" />
+          <circle
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.25737929;marker:none;enable-background:accumulate"
+             id="circle6654"
+             transform="matrix(0.41666667,0,0,0.41666667,33.166665,201.76322)"
+             cx="254"
+             cy="-31"
+             r="6" />
+        </g>
+      </g>
+      <path
+         style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e6e6;fill-opacity:0.13526569;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+         d="m -114,-17.15344 0,49 109,0 0,-49 -16.5,0 0,18 -5.5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 z"
+         id="path6656"
+         sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccc"
+         inkscape:connector-curvature="0" />
+    </g>
+    <g
+       transform="matrix(0.21648271,0,0,0.21648271,70.728439,37.137837)"
+       id="g6658">
+      <g
+         id="g6660"
+         transform="translate(286,-137)">
+        <path
+           sodipodi:nodetypes="ccccccccc"
+           id="path6662"
+           d="m -231.5,120.34656 0,61 26,0 0,9 59,0 0,-9 26,0 0,-61 z"
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e6e6;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+           inkscape:connector-curvature="0" />
+        <g
+           style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate"
+           transform="matrix(1,0,0,1.7894822,-369.5,-154.35402)"
+           id="g6664">
+          <rect
+             y="154.34656"
+             x="206.50014"
+             height="8.472599"
+             width="4"
+             id="rect6666"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate" />
+          <rect
+             y="154.34656"
+             x="226.5"
+             height="8.472599"
+             width="4"
+             id="rect6668"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate" />
+          <rect
+             y="154.34656"
+             x="216.5"
+             height="8.472599"
+             width="4"
+             id="rect6670"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate" />
+          <rect
+             y="154.34656"
+             x="196.5"
+             height="8.472599"
+             width="4"
+             id="rect6672"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate" />
+          <rect
+             y="154.34656"
+             x="186.5"
+             height="8.472599"
+             width="4"
+             id="rect6674"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate" />
+          <rect
+             y="154.34656"
+             x="176.5"
+             height="8.472599"
+             width="4"
+             id="rect6676"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate" />
+          <rect
+             y="154.34656"
+             x="166.5"
+             height="8.472599"
+             width="4"
+             id="rect6678"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate" />
+          <rect
+             y="154.34656"
+             x="156.5"
+             height="8.472599"
+             width="4"
+             id="rect6680"
+             style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffbe21;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.01459658;marker:none;enable-background:accumulate" />
+        </g>
+      </g>
+    </g>
+    <text
+       id="text6682"
+       y="27.795864"
+       x="57.653225"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.32965422px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.21648271"
+         y="27.795864"
+         x="57.653225"
+         id="tspan6684"
+         sodipodi:role="line">Male</tspan></text>
+    <text
+       id="text6686"
+       y="28.012346"
+       x="94.347038"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.32965422px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';text-align:center;text-anchor:middle;stroke-width:0.21648271"
+         y="28.012346"
+         x="94.347038"
+         id="tspan6688"
+         sodipodi:role="line">Female</tspan></text>
+    <path
+       sodipodi:nodetypes="cc"
+       id="path6690"
+       d="m 69.754267,57.12927 -23.813098,0"
+       style="fill:none;stroke:#000000;stroke-width:0.21648271px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker8391);marker-end:url(#marker8401)"
+       inkscape:connector-curvature="0" />
+    <text
+       id="text6692"
+       y="62.324238"
+       x="56.627026"
+       style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:0%;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';text-align:center;text-anchor:middle;stroke-width:0.21648271"
+         y="62.324238"
+         x="56.627026"
+         id="tspan6694"
+         sodipodi:role="line">11mm</tspan></text>
+    <path
+       sodipodi:nodetypes="cc"
+       id="path6696"
+       d="m 35.549999,46.7381 0,-12.988963"
+       style="fill:none;stroke:#000000;stroke-width:0.21648271px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker8391);marker-end:url(#marker8401)"
+       inkscape:connector-curvature="0" />
+    <text
+       transform="matrix(0,-1,1,0,0,0)"
+       id="text6698"
+       y="33.345322"
+       x="-40.21994"
+       style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:0%;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';text-align:center;text-anchor:middle;stroke-width:0.21648271"
+         y="33.345322"
+         x="-40.21994"
+         id="tspan6700"
+         sodipodi:role="line">6mm</tspan></text>
+    <text
+       id="text6702"
+       y="32.341999"
+       x="65.428528"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
+         y="32.341999"
+         x="65.428528"
+         id="tspan6704"
+         sodipodi:role="line">1</tspan></text>
+    <text
+       id="text6706"
+       y="32.341999"
+       x="63.333637"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
+         y="32.341999"
+         x="63.333637"
+         id="tspan6708"
+         sodipodi:role="line">2</tspan></text>
+    <text
+       id="text6710"
+       y="32.341999"
+       x="61.167919"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
+         y="32.341999"
+         x="61.167919"
+         id="tspan6712"
+         sodipodi:role="line">3</tspan></text>
+    <text
+       id="text6714"
+       y="32.341999"
+       x="58.993748"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
+         y="32.341999"
+         x="58.993748"
+         id="tspan6716"
+         sodipodi:role="line">4</tspan></text>
+    <text
+       id="text6718"
+       y="32.341999"
+       x="56.843891"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
+         y="32.341999"
+         x="56.843891"
+         id="tspan6720"
+         sodipodi:role="line">5</tspan></text>
+    <text
+       id="text6722"
+       y="32.341999"
+       x="54.669712"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
+         y="32.341999"
+         x="54.669712"
+         id="tspan6724"
+         sodipodi:role="line">6</tspan></text>
+    <text
+       id="text6726"
+       y="32.341999"
+       x="102.17646"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
+         y="32.341999"
+         x="102.17646"
+         id="tspan6728"
+         sodipodi:role="line">8</tspan></text>
+    <text
+       id="text6730"
+       y="32.341999"
+       x="100.08157"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
+         y="32.341999"
+         x="100.08157"
+         id="tspan6732"
+         sodipodi:role="line">7</tspan></text>
+    <text
+       id="text6734"
+       y="32.341999"
+       x="97.915855"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
+         y="32.341999"
+         x="97.915855"
+         id="tspan6736"
+         sodipodi:role="line">6</tspan></text>
+    <text
+       id="text6738"
+       y="32.341999"
+       x="95.741684"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
+         y="32.341999"
+         x="95.741684"
+         id="tspan6740"
+         sodipodi:role="line">5</tspan></text>
+    <text
+       id="text6742"
+       y="32.341999"
+       x="93.59182"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
+         y="32.341999"
+         x="93.59182"
+         id="tspan6744"
+         sodipodi:role="line">4</tspan></text>
+    <text
+       id="text6746"
+       y="32.341999"
+       x="91.417648"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
+         y="32.341999"
+         x="91.417648"
+         id="tspan6748"
+         sodipodi:role="line">3</tspan></text>
+    <text
+       id="text6750"
+       y="32.341999"
+       x="52.52483"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
+         y="32.341999"
+         x="52.52483"
+         id="tspan6752"
+         sodipodi:role="line">7</tspan></text>
+    <text
+       id="text6754"
+       y="32.341999"
+       x="50.350655"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
+         y="32.341999"
+         x="50.350655"
+         id="tspan6756"
+         sodipodi:role="line">8</tspan></text>
+    <text
+       id="text6758"
+       y="32.341999"
+       x="89.262169"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
+         y="32.341999"
+         x="89.262169"
+         id="tspan6760"
+         sodipodi:role="line">2</tspan></text>
+    <text
+       id="text6762"
+       y="32.341999"
+       x="87.087997"
+       style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
+         y="32.341999"
+         x="87.087997"
+         id="tspan6764"
+         sodipodi:role="line">1</tspan></text>
+    <text
+       id="text6766"
+       y="2.8403857"
+       x="65.974159"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       xml:space="preserve"><tspan
+         style="stroke-width:0.26458332"
+         y="2.8403857"
+         x="65.974159"
+         id="tspan6768"
+         sodipodi:role="line">Interfaces</tspan><tspan
+         style="stroke-width:0.26458332"
+         y="8.1320524"
+         x="65.974159"
+         sodipodi:role="line"
+         id="tspan6770">•8P8C</tspan><tspan
+         style="stroke-width:0.26458332"
+         y="13.423718"
+         x="65.974159"
+         sodipodi:role="line"
+         id="tspan6772">•CAT7</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333406px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="3.2846954"
+       y="-0.87293333"
+       id="text6774"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
+         id="tspan6776"
+         x="3.2846954"
+         y="-0.87293333">Service</tspan><tspan
+         sodipodi:role="line"
+         x="3.2846954"
+         y="4.4187341"
+         id="tspan6778">Provider</tspan></text>
+  </g>
+  <g
+     transform="translate(-1.4239073,11.675749)"
+     style="display:none"
+     inkscape:label="Layer 4"
+     id="g18233"
+     inkscape:groupmode="layer">
+    <text
+       id="text17819"
+       y="21.809916"
+       x="137.26913"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       xml:space="preserve"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332"
+         y="21.809916"
+         x="137.26913"
+         id="tspan17817"
+         sodipodi:role="line" /></text>
+    <text
+       id="text17823"
+       y="16.518251"
+       x="137.26913"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       xml:space="preserve"><tspan
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332"
+         y="16.518251"
+         x="137.26913"
+         id="tspan17821"
+         sodipodi:role="line" /></text>
+    <g
+       transform="matrix(0.26458333,0,0,0.26458333,26.722906,-4.6643506)"
+       id="g17945">
+      <rect
+         style="opacity:0.8;fill:url(#C)"
+         x="0"
+         width="48"
+         height="9.3129997"
+         y="37"
+         id="rect17825" />
+      <rect
+         style="fill:url(#K)"
+         width="41"
+         height="41"
+         x="3.5"
+         y="2.1849999"
+         id="rect17827"
+         rx="5" />
+      <path
+         style="fill:url(#J)"
+         inkscape:connector-curvature="0"
+         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 l 0,23.0937504 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 l 33.1875,0 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 l 0,-23.0937504 c 0,-2.77 -2.23,-5 -5,-5 z"
+         id="path17829" />
+      <path
+         style="fill:none;stroke:#555753;stroke-width:0.80000001;stroke-linecap:square"
+         inkscape:connector-curvature="0"
+         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 l 0,23.0937504 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 l 33.1875,0 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 l 0,-23.0937504 c 0,-2.77 -2.23,-5 -5,-5 z"
+         id="path17831" />
+      <g
+         transform="translate(3.1482255,0)"
+         id="g17899">
+        <g
+           style="fill:#2e3436"
+           transform="translate(-0.299517,-1.6150909)"
+           id="g17853">
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="9.5909996"
+             y="37.119999"
+             id="rect17833" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="11.961"
+             y="37.119999"
+             id="rect17835" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="14.332"
+             y="37.119999"
+             id="rect17837" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="16.702999"
+             y="37.119999"
+             id="rect17839" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="19.07"
+             y="37.119999"
+             id="rect17841" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="21.444"
+             y="37.119999"
+             id="rect17843" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="23.815001"
+             y="37.119999"
+             id="rect17845" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="26.190001"
+             y="37.119999"
+             id="rect17847" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="28.556"
+             y="37.119999"
+             id="rect17849" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="30.927"
+             y="37.119999"
+             id="rect17851" />
+        </g>
+        <g
+           style="fill:#eeeeec"
+           transform="translate(0.300483,-1.1150909)"
+           id="g17875">
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="9.5909996"
+             y="37.119999"
+             id="rect17855" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="11.961"
+             y="37.119999"
+             id="rect17857" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="14.332"
+             y="37.119999"
+             id="rect17859" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="16.702999"
+             y="37.119999"
+             id="rect17861" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="19.07"
+             y="37.119999"
+             id="rect17863" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="21.444"
+             y="37.119999"
+             id="rect17865" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="23.815001"
+             y="37.119999"
+             id="rect17867" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="26.190001"
+             y="37.119999"
+             id="rect17869" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="28.556"
+             y="37.119999"
+             id="rect17871" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="30.927"
+             y="37.119999"
+             id="rect17873" />
+        </g>
+        <g
+           style="fill:#555753"
+           transform="translate(0,-1.3147774)"
+           id="g17897">
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="9.5909996"
+             y="37.119999"
+             id="rect17877" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="11.961"
+             y="37.119999"
+             id="rect17879" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="14.332"
+             y="37.119999"
+             id="rect17881" />
+          <rect
+             width="1.1849999"
+             height="5.388"
+             x="16.702999"
              y="37.119999"
              id="rect17883" />
           <rect
@@ -3783,7 +6383,7 @@
       <path
          style="opacity:0.8;fill:none;stroke:url(#B);stroke-linecap:square"
          inkscape:connector-curvature="0"
-         d="M 8.5,4.5625 C 6.3030567,4.5625 4.5625,6.3030567 4.5625,8.5 v 23.09375 c 0,1.588297 1.2554529,2.84375 2.84375,2.84375 h 33.1875 c 1.588296,0 2.84375,-1.255454 2.84375,-2.84375 V 8.5 c 0,-2.1969433 -1.740557,-3.9375 -3.9375,-3.9375 z"
+         d="M 8.5,4.5625 C 6.3030567,4.5625 4.5625,6.3030567 4.5625,8.5 l 0,23.09375 c 0,1.588297 1.2554529,2.84375 2.84375,2.84375 l 33.1875,0 c 1.588296,0 2.84375,-1.255454 2.84375,-2.84375 l 0,-23.09375 c 0,-2.1969433 -1.740557,-3.9375 -3.9375,-3.9375 z"
          transform="matrix(0.9998886,0,0,1.0087936,0.00267394,-1.3527326)"
          id="path17901" />
       <rect
@@ -3812,7 +6412,7 @@
         <path
            style="opacity:0.6;fill:url(#linearGradient15921)"
            inkscape:connector-curvature="0"
-           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 v 1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 V 27.5 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
            id="path17909" />
       </g>
       <g
@@ -3833,7 +6433,7 @@
         <path
            style="opacity:0.6;fill:url(#linearGradient15925)"
            inkscape:connector-curvature="0"
-           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 v 1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 V 27.5 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
            id="path17917" />
       </g>
       <g
@@ -3854,7 +6454,7 @@
         <path
            style="opacity:0.6;fill:url(#linearGradient15929)"
            inkscape:connector-curvature="0"
-           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 v 1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 V 27.5 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
            id="path17925" />
       </g>
       <g
@@ -3875,7 +6475,7 @@
         <path
            style="opacity:0.6;fill:url(#E)"
            inkscape:connector-curvature="0"
-           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 v 1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 V 27.5 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
            id="path17933" />
       </g>
       <g
@@ -3884,17 +6484,17 @@
         <path
            style="fill:url(#P)"
            inkscape:connector-curvature="0"
-           d="m 19.53125,19.125 c -0.269725,3e-6 -0.640957,0.168514 -0.8125,0.40625 -0.171543,0.237736 -0.1875,0.45866 -0.1875,0.625 v 1.03125 h -0.9375 c -0.634805,4e-6 -1.21875,0.44842 -1.21875,1.1875 v 1.8125 h -3.90625 c -0.923256,2e-6 -1.6875,0.764243 -1.6875,1.6875 v 13.46875 c 0,0.923257 0.764243,1.6875 1.6875,1.6875 H 34.5625 c 0.923255,-2e-6 1.65625,-0.80496 1.65625,-1.6875 V 25.875 c -4e-6,-0.882533 -0.732992,-1.6875 -1.65625,-1.6875 H 30.625 V 22.375 c 0,-0.265272 -0.07536,-0.542187 -0.28125,-0.78125 -0.205892,-0.239063 -0.557594,-0.40625 -0.875,-0.40625 H 28.5 v -1.03125 c 6e-6,-0.539513 -0.491761,-1.03125 -1.03125,-1.03125 z"
+           d="m 19.53125,19.125 c -0.269725,3e-6 -0.640957,0.168514 -0.8125,0.40625 -0.171543,0.237736 -0.1875,0.45866 -0.1875,0.625 l 0,1.03125 -0.9375,0 c -0.634805,4e-6 -1.21875,0.44842 -1.21875,1.1875 l 0,1.8125 -3.90625,0 c -0.923256,2e-6 -1.6875,0.764243 -1.6875,1.6875 l 0,13.46875 c 0,0.923257 0.764243,1.6875 1.6875,1.6875 l 22.09375,0 c 0.923255,-2e-6 1.65625,-0.80496 1.65625,-1.6875 l 0,-13.46875 c -4e-6,-0.882533 -0.732992,-1.6875 -1.65625,-1.6875 l -3.9375,0 0,-1.8125 c 0,-0.265272 -0.07536,-0.542187 -0.28125,-0.78125 -0.205892,-0.239063 -0.557594,-0.40625 -0.875,-0.40625 l -0.96875,0 0,-1.03125 c 6e-6,-0.539513 -0.491761,-1.03125 -1.03125,-1.03125 z"
            id="path17937" />
         <path
            style="fill:url(#N)"
            inkscape:connector-curvature="0"
-           d="m 19.546544,20.005656 c -0.08803,0 -0.151282,0.06326 -0.151282,0.151281 v 1.89102 h -1.815379 c -0.174558,0 -0.327776,0.153218 -0.327776,0.327777 v 2.697854 h -4.790583 c -0.446987,0 -0.806835,0.359849 -0.806835,0.806835 v 13.464059 c 0,0.446987 0.359848,0.806835 0.806835,0.806835 h 22.087108 c 0.446987,0 0.806835,-0.359848 0.806835,-0.806835 V 25.880423 c 0,-0.446986 -0.359848,-0.806835 -0.806835,-0.806835 h -4.790583 v -2.697854 c 0,-0.174559 -0.128004,-0.327777 -0.302563,-0.327777 h -1.815379 v -1.89102 c 0,-0.08802 -0.08848,-0.151281 -0.176495,-0.151281 z"
+           d="m 19.546544,20.005656 c -0.08803,0 -0.151282,0.06326 -0.151282,0.151281 l 0,1.89102 -1.815379,0 c -0.174558,0 -0.327776,0.153218 -0.327776,0.327777 l 0,2.697854 -4.790583,0 c -0.446987,0 -0.806835,0.359849 -0.806835,0.806835 l 0,13.464059 c 0,0.446987 0.359848,0.806835 0.806835,0.806835 l 22.087108,0 c 0.446987,0 0.806835,-0.359848 0.806835,-0.806835 l 0,-13.464059 c 0,-0.446986 -0.359848,-0.806835 -0.806835,-0.806835 l -4.790583,0 0,-2.697854 c 0,-0.174559 -0.128004,-0.327777 -0.302563,-0.327777 l -1.815379,0 0,-1.89102 c 0,-0.08802 -0.08848,-0.151281 -0.176495,-0.151281 z"
            id="path17939" />
         <path
            style="opacity:0.8;fill:url(#O);fill-rule:evenodd"
            inkscape:connector-curvature="0"
-           d="m 16.15625,32.59375 v 0.28125 6.84375 0.46875 h 0.9375 V 39.71875 32.875 32.59375 Z m 1.90625,0 V 32.875 39.71875 40.1875 H 19 V 39.71875 32.875 32.59375 Z m 1.875,0 V 32.875 39.71875 40.1875 H 20.875 V 39.71875 32.875 32.59375 Z m 1.875,0 V 32.875 39.71875 40.1875 H 22.75 V 39.71875 32.875 32.59375 Z m 1.90625,0 v 0.28125 6.84375 0.46875 h 0.9375 V 39.71875 32.875 32.59375 Z m 1.875,0 v 0.28125 6.84375 0.46875 h 0.9375 V 39.71875 32.875 32.59375 Z m 1.875,0 V 32.875 39.71875 40.1875 H 28.4375 V 39.71875 32.875 32.59375 Z m 1.90625,0 v 0.28125 6.84375 0.46875 h 0.9375 V 39.71875 32.875 32.59375 Z"
+           d="m 16.15625,32.59375 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.96875,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z"
            id="path17941" />
       </g>
     </g>
@@ -3951,13 +6551,13 @@
            id="path17963"
            sodipodi:nodetypes="ccccc"
            style="fill:#a1a1a1;fill-opacity:0.63524996;stroke:#000000;stroke-width:0.40000001;stroke-linejoin:round"
-           d="m 250,392.36 60,50 v 30 l -60,-50 z" />
+           d="m 250,392.36 60,50 0,30 -60,-50 z" />
         <path
            inkscape:connector-curvature="0"
            id="path17965"
            sodipodi:nodetypes="ccccc"
            style="fill:#a1a1a1"
-           d="m 305,382.36 60,50 v 30 l -60,-50 z" />
+           d="m 305,382.36 60,50 0,30 -60,-50 z" />
         <path
            inkscape:connector-curvature="0"
            id="path17967"
@@ -3969,7 +6569,7 @@
            id="path17969"
            sodipodi:nodetypes="ccccc"
            style="fill:#a1a1a1;fill-opacity:0.63524996;stroke:#000000;stroke-width:0.40000001;stroke-linejoin:round"
-           d="m 310,442.36 55,-10 v 30 l -55,10 z" />
+           d="m 310,442.36 55,-10 0,30 -55,10 z" />
         <path
            inkscape:connector-curvature="0"
            id="path17971"
@@ -4014,43 +6614,43 @@
        id="g17999"
        sodipodi:type="inkscape:box3d">
       <path
-         points="62.428345,24.022163 83.092466,22.777707 83.092466,-6.6798698 62.428345,-10.498684 "
-         d="M 62.428345,-10.498684 V 24.022163 L 83.092466,22.777707 V -6.6798698 Z"
+         points="62.428349,24.022166 83.092471,22.77771 83.092471,-6.6798689 62.428349,-10.498683 "
+         d="m 62.428349,-10.498683 0,34.520849 20.664122,-1.244456 0,-29.4575789 z"
          inkscape:box3dsidetype="6"
          style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
          id="path17987"
          sodipodi:type="inkscape:box3dside" />
       <path
-         points="65.732951,24.402069 86.678375,23.052537 83.092466,22.777707 62.428345,24.022163 "
-         d="m 62.428345,24.022163 3.304606,0.379906 20.945424,-1.349532 -3.585909,-0.27483 z"
+         points="65.732955,24.402072 86.67838,23.052541 83.092471,22.77771 62.428349,24.022166 "
+         d="M 62.428349,24.022166 65.732955,24.402072 86.67838,23.052541 83.092471,22.77771 Z"
          inkscape:box3dsidetype="13"
          style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
          id="path17989"
          sodipodi:type="inkscape:box3dside" />
       <path
-         points="86.678375,-7.5232311 86.678375,23.052537 83.092466,22.777707 83.092466,-6.6798698 "
-         d="m 83.092466,-6.6798698 3.585909,-0.8433613 V 23.052537 l -3.585909,-0.27483 z"
+         points="86.67838,-7.5232303 86.67838,23.052541 83.092471,22.77771 83.092471,-6.6798689 "
+         d="m 83.092471,-6.6798689 3.585909,-0.8433614 0,30.5757713 -3.585909,-0.274831 z"
          inkscape:box3dsidetype="11"
          style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
          id="path17991"
          sodipodi:type="inkscape:box3dside" />
       <path
-         points="65.732951,-11.664487 86.678375,-7.5232311 83.092466,-6.6798698 62.428345,-10.498684 "
-         d="m 62.428345,-10.498684 3.304606,-1.165803 20.945424,4.1412559 -3.585909,0.8433613 z"
+         points="65.732955,-11.664487 86.67838,-7.5232303 83.092471,-6.6798689 62.428349,-10.498683 "
+         d="m 62.428349,-10.498683 3.304606,-1.165804 20.945425,4.1412567 -3.585909,0.8433614 z"
          inkscape:box3dsidetype="5"
          style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
          id="path17993"
          sodipodi:type="inkscape:box3dside" />
       <path
-         points="65.732951,24.402069 86.678375,23.052537 86.678375,-7.5232311 65.732951,-11.664487 "
-         d="M 65.732951,-11.664487 V 24.402069 L 86.678375,23.052537 V -7.5232311 Z"
+         points="65.732955,24.402072 86.67838,23.052541 86.67838,-7.5232303 65.732955,-11.664487 "
+         d="m 65.732955,-11.664487 0,36.066559 20.945425,-1.349531 0,-30.5757713 z"
          inkscape:box3dsidetype="14"
          style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
          id="path17995"
          sodipodi:type="inkscape:box3dside" />
       <path
-         points="65.732951,-11.664487 65.732951,24.402069 62.428345,24.022163 62.428345,-10.498684 "
-         d="m 62.428345,-10.498684 3.304606,-1.165803 v 36.066556 l -3.304606,-0.379906 z"
+         points="65.732955,-11.664487 65.732955,24.402072 62.428349,24.022166 62.428349,-10.498683 "
+         d="m 62.428349,-10.498683 3.304606,-1.165804 0,36.066559 -3.304606,-0.379906 z"
          inkscape:box3dsidetype="3"
          style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
          id="path17997"
@@ -4065,7 +6665,8 @@
        y="54.882832"
        x="87.808586"
        style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:0%;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';text-align:center;text-anchor:middle;stroke-width:0.21648271"
          id="tspan18005"
          y="54.882832"
@@ -4103,19 +6704,19 @@
        id="g18117">
       <path
          style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#cccccc;stroke:#4d4d4d;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-         d="m -5,-15.15344 v 57 h -109 v -57"
+         d="m -5,-15.15344 0,57 -109,0 0,-57"
          id="path18017"
          sodipodi:nodetypes="cccc"
          inkscape:connector-curvature="0" />
       <path
          style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#f2f2f2;stroke:#666666;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-         d="m -89,31.84656 v 19 h 59 v -19 z"
+         d="m -89,31.84656 0,19 59,0 0,-19 z"
          id="path18019"
          sodipodi:nodetypes="ccccc"
          inkscape:connector-curvature="0" />
       <path
          style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e6e6;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-         d="m -114,-17.15344 v 49 H -5 v -49"
+         d="m -114,-17.15344 0,49 109,0 0,-49"
          id="path18021"
          sodipodi:nodetypes="cccc"
          inkscape:connector-curvature="0" />
@@ -4184,7 +6785,7 @@
          id="g18113"
          transform="translate(-233.5,-168.5)">
         <g
-           transform="translate(1.16e-6)"
+           transform="translate(1.16e-6,0)"
            id="g18045">
           <circle
              style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#552200;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate"
@@ -4438,7 +7039,7 @@
       </g>
       <path
          style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e6e6;fill-opacity:0.13526569;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
-         d="m -114,-17.15344 v 49 H -5 v -49 h -16.5 v 18 H -27 v -18 h -5 v 18 h -5 v -18 h -5 v 18 h -5 v -18 h -5 v 18 h -5 v -18 h -5 v 18 h -5 v -18 h -5 v 18 h -5 v -18 h -5 v 18 h -5 v -18 h -5 v 18 h -5 v -18 z"
+         d="m -114,-17.15344 0,49 109,0 0,-49 -16.5,0 0,18 -5.5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 -5,0 0,18 -5,0 0,-18 z"
          id="path18115"
          sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccc"
          inkscape:connector-curvature="0" />
@@ -4452,7 +7053,7 @@
         <path
            sodipodi:nodetypes="ccccccccc"
            id="path18119"
-           d="m -231.5,120.34656 v 61 h 26 v 9 h 59 v -9 h 26 v -61 z"
+           d="m -231.5,120.34656 0,61 26,0 0,9 59,0 0,-9 26,0 0,-61 z"
            style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e6e6e6;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
            inkscape:connector-curvature="0" />
         <g
@@ -4523,7 +7124,8 @@
        y="27.795864"
        x="57.653225"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.32965422px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.21648271"
          y="27.795864"
          x="57.653225"
@@ -4534,7 +7136,8 @@
        y="28.012346"
        x="94.347038"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.32965422px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';text-align:center;text-anchor:middle;stroke-width:0.21648271"
          y="28.012346"
          x="94.347038"
@@ -4543,7 +7146,7 @@
     <path
        sodipodi:nodetypes="cc"
        id="path18151"
-       d="M 69.754267,57.12927 H 45.941169"
+       d="m 69.754267,57.12927 -23.813098,0"
        style="fill:none;stroke:#000000;stroke-width:0.21648271px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker8391);marker-end:url(#marker8401)"
        inkscape:connector-curvature="0" />
     <text
@@ -4551,7 +7154,8 @@
        y="62.324238"
        x="56.627026"
        style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:0%;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';text-align:center;text-anchor:middle;stroke-width:0.21648271"
          y="62.324238"
          x="56.627026"
@@ -4560,16 +7164,17 @@
     <path
        sodipodi:nodetypes="cc"
        id="path18157"
-       d="M 35.549999,46.7381 V 33.749137"
+       d="m 35.549999,46.7381 0,-12.988963"
        style="fill:none;stroke:#000000;stroke-width:0.21648271px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#marker8391);marker-end:url(#marker8401)"
        inkscape:connector-curvature="0" />
     <text
-       transform="rotate(-90)"
+       transform="matrix(0,-1,1,0,0,0)"
        id="text18161"
        y="33.345322"
        x="-40.21994"
        style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:0%;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:1.25;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';text-align:center;text-anchor:middle;stroke-width:0.21648271"
          y="33.345322"
          x="-40.21994"
@@ -4580,7 +7185,8 @@
        y="32.341999"
        x="65.428528"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
          y="32.341999"
          x="65.428528"
@@ -4591,7 +7197,8 @@
        y="32.341999"
        x="63.333637"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
          y="32.341999"
          x="63.333637"
@@ -4602,7 +7209,8 @@
        y="32.341999"
        x="61.167919"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
          y="32.341999"
          x="61.167919"
@@ -4613,7 +7221,8 @@
        y="32.341999"
        x="58.993748"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
          y="32.341999"
          x="58.993748"
@@ -4624,7 +7233,8 @@
        y="32.341999"
        x="56.843891"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
          y="32.341999"
          x="56.843891"
@@ -4635,7 +7245,8 @@
        y="32.341999"
        x="54.669712"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
          y="32.341999"
          x="54.669712"
@@ -4646,7 +7257,8 @@
        y="32.341999"
        x="102.17646"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
          y="32.341999"
          x="102.17646"
@@ -4657,7 +7269,8 @@
        y="32.341999"
        x="100.08157"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
          y="32.341999"
          x="100.08157"
@@ -4668,7 +7281,8 @@
        y="32.341999"
        x="97.915855"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
          y="32.341999"
          x="97.915855"
@@ -4679,7 +7293,8 @@
        y="32.341999"
        x="95.741684"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
          y="32.341999"
          x="95.741684"
@@ -4690,7 +7305,8 @@
        y="32.341999"
        x="93.59182"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
          y="32.341999"
          x="93.59182"
@@ -4701,7 +7317,8 @@
        y="32.341999"
        x="91.417648"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
          y="32.341999"
          x="91.417648"
@@ -4712,7 +7329,8 @@
        y="32.341999"
        x="52.52483"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
          y="32.341999"
          x="52.52483"
@@ -4723,7 +7341,8 @@
        y="32.341999"
        x="50.350655"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
          y="32.341999"
          x="50.350655"
@@ -4734,7 +7353,8 @@
        y="32.341999"
        x="89.262169"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
          y="32.341999"
          x="89.262169"
@@ -4745,7 +7365,8 @@
        y="32.341999"
        x="87.087997"
        style="font-style:normal;font-weight:normal;font-size:2.59779263px;line-height:0%;font-family:'Bitstream Vera Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21648271"
-       xml:space="preserve"><tspan
+       xml:space="preserve"
+       sodipodi:linespacing="0%"><tspan
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.16482711px;line-height:1.25;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';stroke-width:0.21648271"
          y="32.341999"
          x="87.087997"
@@ -4788,7 +7409,7 @@
          sodipodi:role="line"
          id="tspan19071"
          x="137.26913"
-         y="25.555424"
+         y="21.809916"
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332" /></text>
     <text
        xml:space="preserve"
@@ -4799,7 +7420,7 @@
          sodipodi:role="line"
          id="tspan19075"
          x="137.26913"
-         y="20.26376"
+         y="16.518251"
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332" /></text>
     <g
        id="g19199"
@@ -4821,17 +7442,17 @@
          style="fill:url(#K)" />
       <path
          id="path19083"
-         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 V 30.278973 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 h 33.1875 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 V 7.1852226 c 0,-2.77 -2.23,-5 -5,-5 z"
+         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 l 0,23.0937504 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 l 33.1875,0 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 l 0,-23.0937504 c 0,-2.77 -2.23,-5 -5,-5 z"
          inkscape:connector-curvature="0"
          style="fill:url(#J)" />
       <path
          id="path19085"
-         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 V 30.278973 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 h 33.1875 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 V 7.1852226 c 0,-2.77 -2.23,-5 -5,-5 z"
+         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 l 0,23.0937504 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 l 33.1875,0 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 l 0,-23.0937504 c 0,-2.77 -2.23,-5 -5,-5 z"
          inkscape:connector-curvature="0"
          style="fill:none;stroke:#555753;stroke-width:0.80000001;stroke-linecap:square" />
       <g
          id="g19153"
-         transform="translate(3.1482255)">
+         transform="translate(3.1482255,0)">
         <g
            id="g19107"
            transform="translate(-0.299517,-1.6150909)"
@@ -5031,7 +7652,7 @@
       <path
          id="path19155"
          transform="matrix(0.9998886,0,0,1.0087936,0.00267394,-1.3527326)"
-         d="M 8.5,4.5625 C 6.3030567,4.5625 4.5625,6.3030567 4.5625,8.5 v 23.09375 c 0,1.588297 1.2554529,2.84375 2.84375,2.84375 h 33.1875 c 1.588296,0 2.84375,-1.255454 2.84375,-2.84375 V 8.5 c 0,-2.1969433 -1.740557,-3.9375 -3.9375,-3.9375 z"
+         d="M 8.5,4.5625 C 6.3030567,4.5625 4.5625,6.3030567 4.5625,8.5 l 0,23.09375 c 0,1.588297 1.2554529,2.84375 2.84375,2.84375 l 33.1875,0 c 1.588296,0 2.84375,-1.255454 2.84375,-2.84375 l 0,-23.09375 c 0,-2.1969433 -1.740557,-3.9375 -3.9375,-3.9375 z"
          inkscape:connector-curvature="0"
          style="opacity:0.8;fill:none;stroke:url(#B);stroke-linecap:square" />
       <rect
@@ -5059,7 +7680,7 @@
            style="fill:url(#radialGradient15919)" />
         <path
            id="path19163"
-           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 v 1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 V 27.5 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
            inkscape:connector-curvature="0"
            style="opacity:0.6;fill:url(#linearGradient15921)" />
       </g>
@@ -5080,7 +7701,7 @@
            style="fill:url(#radialGradient15923)" />
         <path
            id="path19171"
-           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 v 1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 V 27.5 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
            inkscape:connector-curvature="0"
            style="opacity:0.6;fill:url(#linearGradient15925)" />
       </g>
@@ -5101,7 +7722,7 @@
            style="fill:url(#radialGradient15927)" />
         <path
            id="path19179"
-           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 v 1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 V 27.5 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
            inkscape:connector-curvature="0"
            style="opacity:0.6;fill:url(#linearGradient15929)" />
       </g>
@@ -5122,7 +7743,7 @@
            style="fill:url(#D)" />
         <path
            id="path19187"
-           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 v 1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 V 27.5 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
            inkscape:connector-curvature="0"
            style="opacity:0.6;fill:url(#E)" />
       </g>
@@ -5131,17 +7752,17 @@
          transform="matrix(1.096757,0,0,1.096757,-1.7737895,-14.588047)">
         <path
            id="path19191"
-           d="m 19.53125,19.125 c -0.269725,3e-6 -0.640957,0.168514 -0.8125,0.40625 -0.171543,0.237736 -0.1875,0.45866 -0.1875,0.625 v 1.03125 h -0.9375 c -0.634805,4e-6 -1.21875,0.44842 -1.21875,1.1875 v 1.8125 h -3.90625 c -0.923256,2e-6 -1.6875,0.764243 -1.6875,1.6875 v 13.46875 c 0,0.923257 0.764243,1.6875 1.6875,1.6875 H 34.5625 c 0.923255,-2e-6 1.65625,-0.80496 1.65625,-1.6875 V 25.875 c -4e-6,-0.882533 -0.732992,-1.6875 -1.65625,-1.6875 H 30.625 V 22.375 c 0,-0.265272 -0.07536,-0.542187 -0.28125,-0.78125 -0.205892,-0.239063 -0.557594,-0.40625 -0.875,-0.40625 H 28.5 v -1.03125 c 6e-6,-0.539513 -0.491761,-1.03125 -1.03125,-1.03125 z"
+           d="m 19.53125,19.125 c -0.269725,3e-6 -0.640957,0.168514 -0.8125,0.40625 -0.171543,0.237736 -0.1875,0.45866 -0.1875,0.625 l 0,1.03125 -0.9375,0 c -0.634805,4e-6 -1.21875,0.44842 -1.21875,1.1875 l 0,1.8125 -3.90625,0 c -0.923256,2e-6 -1.6875,0.764243 -1.6875,1.6875 l 0,13.46875 c 0,0.923257 0.764243,1.6875 1.6875,1.6875 l 22.09375,0 c 0.923255,-2e-6 1.65625,-0.80496 1.65625,-1.6875 l 0,-13.46875 c -4e-6,-0.882533 -0.732992,-1.6875 -1.65625,-1.6875 l -3.9375,0 0,-1.8125 c 0,-0.265272 -0.07536,-0.542187 -0.28125,-0.78125 -0.205892,-0.239063 -0.557594,-0.40625 -0.875,-0.40625 l -0.96875,0 0,-1.03125 c 6e-6,-0.539513 -0.491761,-1.03125 -1.03125,-1.03125 z"
            inkscape:connector-curvature="0"
            style="fill:url(#P)" />
         <path
            id="path19193"
-           d="m 19.546544,20.005656 c -0.08803,0 -0.151282,0.06326 -0.151282,0.151281 v 1.89102 h -1.815379 c -0.174558,0 -0.327776,0.153218 -0.327776,0.327777 v 2.697854 h -4.790583 c -0.446987,0 -0.806835,0.359849 -0.806835,0.806835 v 13.464059 c 0,0.446987 0.359848,0.806835 0.806835,0.806835 h 22.087108 c 0.446987,0 0.806835,-0.359848 0.806835,-0.806835 V 25.880423 c 0,-0.446986 -0.359848,-0.806835 -0.806835,-0.806835 h -4.790583 v -2.697854 c 0,-0.174559 -0.128004,-0.327777 -0.302563,-0.327777 h -1.815379 v -1.89102 c 0,-0.08802 -0.08848,-0.151281 -0.176495,-0.151281 z"
+           d="m 19.546544,20.005656 c -0.08803,0 -0.151282,0.06326 -0.151282,0.151281 l 0,1.89102 -1.815379,0 c -0.174558,0 -0.327776,0.153218 -0.327776,0.327777 l 0,2.697854 -4.790583,0 c -0.446987,0 -0.806835,0.359849 -0.806835,0.806835 l 0,13.464059 c 0,0.446987 0.359848,0.806835 0.806835,0.806835 l 22.087108,0 c 0.446987,0 0.806835,-0.359848 0.806835,-0.806835 l 0,-13.464059 c 0,-0.446986 -0.359848,-0.806835 -0.806835,-0.806835 l -4.790583,0 0,-2.697854 c 0,-0.174559 -0.128004,-0.327777 -0.302563,-0.327777 l -1.815379,0 0,-1.89102 c 0,-0.08802 -0.08848,-0.151281 -0.176495,-0.151281 z"
            inkscape:connector-curvature="0"
            style="fill:url(#N)" />
         <path
            id="path19195"
-           d="m 16.15625,32.59375 v 0.28125 6.84375 0.46875 h 0.9375 V 39.71875 32.875 32.59375 Z m 1.90625,0 V 32.875 39.71875 40.1875 H 19 V 39.71875 32.875 32.59375 Z m 1.875,0 V 32.875 39.71875 40.1875 H 20.875 V 39.71875 32.875 32.59375 Z m 1.875,0 V 32.875 39.71875 40.1875 H 22.75 V 39.71875 32.875 32.59375 Z m 1.90625,0 v 0.28125 6.84375 0.46875 h 0.9375 V 39.71875 32.875 32.59375 Z m 1.875,0 v 0.28125 6.84375 0.46875 h 0.9375 V 39.71875 32.875 32.59375 Z m 1.875,0 V 32.875 39.71875 40.1875 H 28.4375 V 39.71875 32.875 32.59375 Z m 1.90625,0 v 0.28125 6.84375 0.46875 h 0.9375 V 39.71875 32.875 32.59375 Z"
+           d="m 16.15625,32.59375 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.96875,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z"
            inkscape:connector-curvature="0"
            style="opacity:0.8;fill:url(#O);fill-rule:evenodd" />
       </g>
@@ -5195,13 +7816,13 @@
              inkscape:connector-curvature="0" />
         </g>
         <path
-           d="m 250,392.36 60,50 v 30 l -60,-50 z"
+           d="m 250,392.36 60,50 0,30 -60,-50 z"
            style="fill:#a1a1a1;fill-opacity:0.63524996;stroke:#000000;stroke-width:0.40000001;stroke-linejoin:round"
            sodipodi:nodetypes="ccccc"
            id="path19217"
            inkscape:connector-curvature="0" />
         <path
-           d="m 305,382.36 60,50 v 30 l -60,-50 z"
+           d="m 305,382.36 60,50 0,30 -60,-50 z"
            style="fill:#a1a1a1"
            sodipodi:nodetypes="ccccc"
            id="path19219"
@@ -5213,7 +7834,7 @@
            id="path19221"
            inkscape:connector-curvature="0" />
         <path
-           d="m 310,442.36 55,-10 v 30 l -55,10 z"
+           d="m 310,442.36 55,-10 0,30 -55,10 z"
            style="fill:#a1a1a1;fill-opacity:0.63524996;stroke:#000000;stroke-width:0.40000001;stroke-linejoin:round"
            sodipodi:nodetypes="ccccc"
            id="path19223"
@@ -5266,43 +7887,43 @@
          id="path19241"
          style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
          inkscape:box3dsidetype="6"
-         d="M 62.428345,-10.498684 V 24.022163 L 83.092466,22.777707 V -6.6798698 Z"
-         points="62.428345,24.022163 83.092466,22.777707 83.092466,-6.6798698 62.428345,-10.498684 " />
+         d="m 62.428349,-10.498683 0,34.520849 20.664122,-1.244456 0,-29.4575789 z"
+         points="62.428349,24.022166 83.092471,22.77771 83.092471,-6.6798689 62.428349,-10.498683 " />
       <path
          sodipodi:type="inkscape:box3dside"
          id="path19243"
          style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
          inkscape:box3dsidetype="13"
-         d="m 62.428345,24.022163 3.304606,0.379906 20.945424,-1.349532 -3.585909,-0.27483 z"
-         points="65.732951,24.402069 86.678375,23.052537 83.092466,22.777707 62.428345,24.022163 " />
+         d="M 62.428349,24.022166 65.732955,24.402072 86.67838,23.052541 83.092471,22.77771 Z"
+         points="65.732955,24.402072 86.67838,23.052541 83.092471,22.77771 62.428349,24.022166 " />
       <path
          sodipodi:type="inkscape:box3dside"
          id="path19245"
          style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
          inkscape:box3dsidetype="11"
-         d="m 83.092466,-6.6798698 3.585909,-0.8433613 V 23.052537 l -3.585909,-0.27483 z"
-         points="86.678375,-7.5232311 86.678375,23.052537 83.092466,22.777707 83.092466,-6.6798698 " />
+         d="m 83.092471,-6.6798689 3.585909,-0.8433614 0,30.5757713 -3.585909,-0.274831 z"
+         points="86.67838,-7.5232303 86.67838,23.052541 83.092471,22.77771 83.092471,-6.6798689 " />
       <path
          sodipodi:type="inkscape:box3dside"
          id="path19247"
          style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
          inkscape:box3dsidetype="5"
-         d="m 62.428345,-10.498684 3.304606,-1.165803 20.945424,4.1412559 -3.585909,0.8433613 z"
-         points="65.732951,-11.664487 86.678375,-7.5232311 83.092466,-6.6798698 62.428345,-10.498684 " />
+         d="m 62.428349,-10.498683 3.304606,-1.165804 20.945425,4.1412567 -3.585909,0.8433614 z"
+         points="65.732955,-11.664487 86.67838,-7.5232303 83.092471,-6.6798689 62.428349,-10.498683 " />
       <path
          sodipodi:type="inkscape:box3dside"
          id="path19249"
          style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
          inkscape:box3dsidetype="14"
-         d="M 65.732951,-11.664487 V 24.402069 L 86.678375,23.052537 V -7.5232311 Z"
-         points="65.732951,24.402069 86.678375,23.052537 86.678375,-7.5232311 65.732951,-11.664487 " />
+         d="m 65.732955,-11.664487 0,36.066559 20.945425,-1.349531 0,-30.5757713 z"
+         points="65.732955,24.402072 86.67838,23.052541 86.67838,-7.5232303 65.732955,-11.664487 " />
       <path
          sodipodi:type="inkscape:box3dside"
          id="path19251"
          style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-width:2.86274171;stroke-linejoin:round"
          inkscape:box3dsidetype="3"
-         d="m 62.428345,-10.498684 3.304606,-1.165803 v 36.066556 l -3.304606,-0.379906 z"
-         points="65.732951,-11.664487 65.732951,24.402069 62.428345,24.022163 62.428345,-10.498684 " />
+         d="m 62.428349,-10.498683 3.304606,-1.165804 0,36.066559 -3.304606,-0.379906 z"
+         points="65.732955,-11.664487 65.732955,24.402072 62.428349,24.022166 62.428349,-10.498683 " />
     </g>
     <g
        id="g19255"
@@ -5345,7 +7966,7 @@
          sodipodi:role="line"
          id="tspan18653"
          x="137.26913"
-         y="25.555424"
+         y="21.809916"
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332" /></text>
     <text
        xml:space="preserve"
@@ -5356,7 +7977,7 @@
          sodipodi:role="line"
          id="tspan18657"
          x="137.26913"
-         y="20.26376"
+         y="16.518251"
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332" /></text>
     <g
        id="g18781"
@@ -5378,17 +7999,17 @@
          style="fill:url(#K)" />
       <path
          id="path18665"
-         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 V 30.278973 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 h 33.1875 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 V 7.1852226 c 0,-2.77 -2.23,-5 -5,-5 z"
+         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 l 0,23.0937504 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 l 33.1875,0 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 l 0,-23.0937504 c 0,-2.77 -2.23,-5 -5,-5 z"
          inkscape:connector-curvature="0"
          style="fill:url(#J)" />
       <path
          id="path18667"
-         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 V 30.278973 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 h 33.1875 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 V 7.1852226 c 0,-2.77 -2.23,-5 -5,-5 z"
+         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 l 0,23.0937504 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 l 33.1875,0 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 l 0,-23.0937504 c 0,-2.77 -2.23,-5 -5,-5 z"
          inkscape:connector-curvature="0"
          style="fill:none;stroke:#555753;stroke-width:0.80000001;stroke-linecap:square" />
       <g
          id="g18735"
-         transform="translate(3.1482255)">
+         transform="translate(3.1482255,0)">
         <g
            id="g18689"
            transform="translate(-0.299517,-1.6150909)"
@@ -5588,7 +8209,7 @@
       <path
          id="path18737"
          transform="matrix(0.9998886,0,0,1.0087936,0.00267394,-1.3527326)"
-         d="M 8.5,4.5625 C 6.3030567,4.5625 4.5625,6.3030567 4.5625,8.5 v 23.09375 c 0,1.588297 1.2554529,2.84375 2.84375,2.84375 h 33.1875 c 1.588296,0 2.84375,-1.255454 2.84375,-2.84375 V 8.5 c 0,-2.1969433 -1.740557,-3.9375 -3.9375,-3.9375 z"
+         d="M 8.5,4.5625 C 6.3030567,4.5625 4.5625,6.3030567 4.5625,8.5 l 0,23.09375 c 0,1.588297 1.2554529,2.84375 2.84375,2.84375 l 33.1875,0 c 1.588296,0 2.84375,-1.255454 2.84375,-2.84375 l 0,-23.09375 c 0,-2.1969433 -1.740557,-3.9375 -3.9375,-3.9375 z"
          inkscape:connector-curvature="0"
          style="opacity:0.8;fill:none;stroke:url(#B);stroke-linecap:square" />
       <rect
@@ -5616,7 +8237,7 @@
            style="fill:url(#radialGradient15919)" />
         <path
            id="path18745"
-           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 v 1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 V 27.5 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
            inkscape:connector-curvature="0"
            style="opacity:0.6;fill:url(#linearGradient15921)" />
       </g>
@@ -5637,7 +8258,7 @@
            style="fill:url(#radialGradient15923)" />
         <path
            id="path18753"
-           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 v 1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 V 27.5 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
            inkscape:connector-curvature="0"
            style="opacity:0.6;fill:url(#linearGradient15925)" />
       </g>
@@ -5658,7 +8279,7 @@
            style="fill:url(#radialGradient15927)" />
         <path
            id="path18761"
-           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 v 1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 V 27.5 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
            inkscape:connector-curvature="0"
            style="opacity:0.6;fill:url(#linearGradient15929)" />
       </g>
@@ -5679,7 +8300,7 @@
            style="fill:url(#D)" />
         <path
            id="path18769"
-           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 v 1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 V 27.5 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
            inkscape:connector-curvature="0"
            style="opacity:0.6;fill:url(#E)" />
       </g>
@@ -5688,17 +8309,17 @@
          transform="matrix(1.096757,0,0,1.096757,-1.7737895,-14.588047)">
         <path
            id="path18773"
-           d="m 19.53125,19.125 c -0.269725,3e-6 -0.640957,0.168514 -0.8125,0.40625 -0.171543,0.237736 -0.1875,0.45866 -0.1875,0.625 v 1.03125 h -0.9375 c -0.634805,4e-6 -1.21875,0.44842 -1.21875,1.1875 v 1.8125 h -3.90625 c -0.923256,2e-6 -1.6875,0.764243 -1.6875,1.6875 v 13.46875 c 0,0.923257 0.764243,1.6875 1.6875,1.6875 H 34.5625 c 0.923255,-2e-6 1.65625,-0.80496 1.65625,-1.6875 V 25.875 c -4e-6,-0.882533 -0.732992,-1.6875 -1.65625,-1.6875 H 30.625 V 22.375 c 0,-0.265272 -0.07536,-0.542187 -0.28125,-0.78125 -0.205892,-0.239063 -0.557594,-0.40625 -0.875,-0.40625 H 28.5 v -1.03125 c 6e-6,-0.539513 -0.491761,-1.03125 -1.03125,-1.03125 z"
+           d="m 19.53125,19.125 c -0.269725,3e-6 -0.640957,0.168514 -0.8125,0.40625 -0.171543,0.237736 -0.1875,0.45866 -0.1875,0.625 l 0,1.03125 -0.9375,0 c -0.634805,4e-6 -1.21875,0.44842 -1.21875,1.1875 l 0,1.8125 -3.90625,0 c -0.923256,2e-6 -1.6875,0.764243 -1.6875,1.6875 l 0,13.46875 c 0,0.923257 0.764243,1.6875 1.6875,1.6875 l 22.09375,0 c 0.923255,-2e-6 1.65625,-0.80496 1.65625,-1.6875 l 0,-13.46875 c -4e-6,-0.882533 -0.732992,-1.6875 -1.65625,-1.6875 l -3.9375,0 0,-1.8125 c 0,-0.265272 -0.07536,-0.542187 -0.28125,-0.78125 -0.205892,-0.239063 -0.557594,-0.40625 -0.875,-0.40625 l -0.96875,0 0,-1.03125 c 6e-6,-0.539513 -0.491761,-1.03125 -1.03125,-1.03125 z"
            inkscape:connector-curvature="0"
            style="fill:url(#P)" />
         <path
            id="path18775"
-           d="m 19.546544,20.005656 c -0.08803,0 -0.151282,0.06326 -0.151282,0.151281 v 1.89102 h -1.815379 c -0.174558,0 -0.327776,0.153218 -0.327776,0.327777 v 2.697854 h -4.790583 c -0.446987,0 -0.806835,0.359849 -0.806835,0.806835 v 13.464059 c 0,0.446987 0.359848,0.806835 0.806835,0.806835 h 22.087108 c 0.446987,0 0.806835,-0.359848 0.806835,-0.806835 V 25.880423 c 0,-0.446986 -0.359848,-0.806835 -0.806835,-0.806835 h -4.790583 v -2.697854 c 0,-0.174559 -0.128004,-0.327777 -0.302563,-0.327777 h -1.815379 v -1.89102 c 0,-0.08802 -0.08848,-0.151281 -0.176495,-0.151281 z"
+           d="m 19.546544,20.005656 c -0.08803,0 -0.151282,0.06326 -0.151282,0.151281 l 0,1.89102 -1.815379,0 c -0.174558,0 -0.327776,0.153218 -0.327776,0.327777 l 0,2.697854 -4.790583,0 c -0.446987,0 -0.806835,0.359849 -0.806835,0.806835 l 0,13.464059 c 0,0.446987 0.359848,0.806835 0.806835,0.806835 l 22.087108,0 c 0.446987,0 0.806835,-0.359848 0.806835,-0.806835 l 0,-13.464059 c 0,-0.446986 -0.359848,-0.806835 -0.806835,-0.806835 l -4.790583,0 0,-2.697854 c 0,-0.174559 -0.128004,-0.327777 -0.302563,-0.327777 l -1.815379,0 0,-1.89102 c 0,-0.08802 -0.08848,-0.151281 -0.176495,-0.151281 z"
            inkscape:connector-curvature="0"
            style="fill:url(#N)" />
         <path
            id="path18777"
-           d="m 16.15625,32.59375 v 0.28125 6.84375 0.46875 h 0.9375 V 39.71875 32.875 32.59375 Z m 1.90625,0 V 32.875 39.71875 40.1875 H 19 V 39.71875 32.875 32.59375 Z m 1.875,0 V 32.875 39.71875 40.1875 H 20.875 V 39.71875 32.875 32.59375 Z m 1.875,0 V 32.875 39.71875 40.1875 H 22.75 V 39.71875 32.875 32.59375 Z m 1.90625,0 v 0.28125 6.84375 0.46875 h 0.9375 V 39.71875 32.875 32.59375 Z m 1.875,0 v 0.28125 6.84375 0.46875 h 0.9375 V 39.71875 32.875 32.59375 Z m 1.875,0 V 32.875 39.71875 40.1875 H 28.4375 V 39.71875 32.875 32.59375 Z m 1.90625,0 v 0.28125 6.84375 0.46875 h 0.9375 V 39.71875 32.875 32.59375 Z"
+           d="m 16.15625,32.59375 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.96875,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z"
            inkscape:connector-curvature="0"
            style="opacity:0.8;fill:url(#O);fill-rule:evenodd" />
       </g>
@@ -5752,13 +8373,13 @@
              inkscape:connector-curvature="0" />
         </g>
         <path
-           d="m 250,392.36 60,50 v 30 l -60,-50 z"
+           d="m 250,392.36 60,50 0,30 -60,-50 z"
            style="fill:#a1a1a1;fill-opacity:0.63524996;stroke:#000000;stroke-width:0.40000001;stroke-linejoin:round"
            sodipodi:nodetypes="ccccc"
            id="path18799"
            inkscape:connector-curvature="0" />
         <path
-           d="m 305,382.36 60,50 v 30 l -60,-50 z"
+           d="m 305,382.36 60,50 0,30 -60,-50 z"
            style="fill:#a1a1a1"
            sodipodi:nodetypes="ccccc"
            id="path18801"
@@ -5770,7 +8391,7 @@
            id="path18803"
            inkscape:connector-curvature="0" />
         <path
-           d="m 310,442.36 55,-10 v 30 l -55,10 z"
+           d="m 310,442.36 55,-10 0,30 -55,10 z"
            style="fill:#a1a1a1;fill-opacity:0.63524996;stroke:#000000;stroke-width:0.40000001;stroke-linejoin:round"
            sodipodi:nodetypes="ccccc"
            id="path18805"
@@ -5831,7 +8452,7 @@
          sodipodi:role="line"
          id="tspan18235"
          x="137.26913"
-         y="25.555424"
+         y="21.809916"
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332" /></text>
     <text
        xml:space="preserve"
@@ -5842,7 +8463,7 @@
          sodipodi:role="line"
          id="tspan18239"
          x="137.26913"
-         y="20.26376"
+         y="16.518251"
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332" /></text>
     <g
        id="g18363"
@@ -5864,17 +8485,17 @@
          style="fill:url(#K)" />
       <path
          id="path18247"
-         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 V 30.278973 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 h 33.1875 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 V 7.1852226 c 0,-2.77 -2.23,-5 -5,-5 z"
+         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 l 0,23.0937504 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 l 33.1875,0 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 l 0,-23.0937504 c 0,-2.77 -2.23,-5 -5,-5 z"
          inkscape:connector-curvature="0"
          style="fill:url(#J)" />
       <path
          id="path18249"
-         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 V 30.278973 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 h 33.1875 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 V 7.1852226 c 0,-2.77 -2.23,-5 -5,-5 z"
+         d="m 8.5,2.1852226 c -2.77,0 -5,2.23 -5,5 l 0,23.0937504 c 0,2.162363 1.7438865,3.90625 3.90625,3.90625 l 33.1875,0 c 2.162363,0 3.90625,-1.743887 3.90625,-3.90625 l 0,-23.0937504 c 0,-2.77 -2.23,-5 -5,-5 z"
          inkscape:connector-curvature="0"
          style="fill:none;stroke:#555753;stroke-width:0.80000001;stroke-linecap:square" />
       <g
          id="g18317"
-         transform="translate(3.1482255)">
+         transform="translate(3.1482255,0)">
         <g
            id="g18271"
            transform="translate(-0.299517,-1.6150909)"
@@ -6074,7 +8695,7 @@
       <path
          id="path18319"
          transform="matrix(0.9998886,0,0,1.0087936,0.00267394,-1.3527326)"
-         d="M 8.5,4.5625 C 6.3030567,4.5625 4.5625,6.3030567 4.5625,8.5 v 23.09375 c 0,1.588297 1.2554529,2.84375 2.84375,2.84375 h 33.1875 c 1.588296,0 2.84375,-1.255454 2.84375,-2.84375 V 8.5 c 0,-2.1969433 -1.740557,-3.9375 -3.9375,-3.9375 z"
+         d="M 8.5,4.5625 C 6.3030567,4.5625 4.5625,6.3030567 4.5625,8.5 l 0,23.09375 c 0,1.588297 1.2554529,2.84375 2.84375,2.84375 l 33.1875,0 c 1.588296,0 2.84375,-1.255454 2.84375,-2.84375 l 0,-23.09375 c 0,-2.1969433 -1.740557,-3.9375 -3.9375,-3.9375 z"
          inkscape:connector-curvature="0"
          style="opacity:0.8;fill:none;stroke:url(#B);stroke-linecap:square" />
       <rect
@@ -6102,7 +8723,7 @@
            style="fill:url(#radialGradient15919)" />
         <path
            id="path18327"
-           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 v 1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 V 27.5 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
            inkscape:connector-curvature="0"
            style="opacity:0.6;fill:url(#linearGradient15921)" />
       </g>
@@ -6123,7 +8744,7 @@
            style="fill:url(#radialGradient15923)" />
         <path
            id="path18335"
-           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 v 1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 V 27.5 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
            inkscape:connector-curvature="0"
            style="opacity:0.6;fill:url(#linearGradient15925)" />
       </g>
@@ -6144,7 +8765,7 @@
            style="fill:url(#radialGradient15927)" />
         <path
            id="path18343"
-           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 v 1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 V 27.5 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
            inkscape:connector-curvature="0"
            style="opacity:0.6;fill:url(#linearGradient15929)" />
       </g>
@@ -6165,7 +8786,7 @@
            style="fill:url(#D)" />
         <path
            id="path18351"
-           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 v 1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 V 27.5 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
+           d="m 9.09375,27.46875 c -0.1068608,0 -0.1875974,0.02987 -0.28125,0.0625 l 0,1.53125 c 0.086973,0.02501 0.1819316,0.0625 0.28125,0.0625 0.088864,0 0.1723511,-0.04302 0.25,-0.0625 l 0,-1.5625 c -0.081844,-0.02444 -0.1566266,-0.03125 -0.25,-0.03125 z"
            inkscape:connector-curvature="0"
            style="opacity:0.6;fill:url(#E)" />
       </g>
@@ -6174,17 +8795,17 @@
          transform="matrix(1.096757,0,0,1.096757,-1.7737895,-14.588047)">
         <path
            id="path18355"
-           d="m 19.53125,19.125 c -0.269725,3e-6 -0.640957,0.168514 -0.8125,0.40625 -0.171543,0.237736 -0.1875,0.45866 -0.1875,0.625 v 1.03125 h -0.9375 c -0.634805,4e-6 -1.21875,0.44842 -1.21875,1.1875 v 1.8125 h -3.90625 c -0.923256,2e-6 -1.6875,0.764243 -1.6875,1.6875 v 13.46875 c 0,0.923257 0.764243,1.6875 1.6875,1.6875 H 34.5625 c 0.923255,-2e-6 1.65625,-0.80496 1.65625,-1.6875 V 25.875 c -4e-6,-0.882533 -0.732992,-1.6875 -1.65625,-1.6875 H 30.625 V 22.375 c 0,-0.265272 -0.07536,-0.542187 -0.28125,-0.78125 -0.205892,-0.239063 -0.557594,-0.40625 -0.875,-0.40625 H 28.5 v -1.03125 c 6e-6,-0.539513 -0.491761,-1.03125 -1.03125,-1.03125 z"
+           d="m 19.53125,19.125 c -0.269725,3e-6 -0.640957,0.168514 -0.8125,0.40625 -0.171543,0.237736 -0.1875,0.45866 -0.1875,0.625 l 0,1.03125 -0.9375,0 c -0.634805,4e-6 -1.21875,0.44842 -1.21875,1.1875 l 0,1.8125 -3.90625,0 c -0.923256,2e-6 -1.6875,0.764243 -1.6875,1.6875 l 0,13.46875 c 0,0.923257 0.764243,1.6875 1.6875,1.6875 l 22.09375,0 c 0.923255,-2e-6 1.65625,-0.80496 1.65625,-1.6875 l 0,-13.46875 c -4e-6,-0.882533 -0.732992,-1.6875 -1.65625,-1.6875 l -3.9375,0 0,-1.8125 c 0,-0.265272 -0.07536,-0.542187 -0.28125,-0.78125 -0.205892,-0.239063 -0.557594,-0.40625 -0.875,-0.40625 l -0.96875,0 0,-1.03125 c 6e-6,-0.539513 -0.491761,-1.03125 -1.03125,-1.03125 z"
            inkscape:connector-curvature="0"
            style="fill:url(#P)" />
         <path
            id="path18357"
-           d="m 19.546544,20.005656 c -0.08803,0 -0.151282,0.06326 -0.151282,0.151281 v 1.89102 h -1.815379 c -0.174558,0 -0.327776,0.153218 -0.327776,0.327777 v 2.697854 h -4.790583 c -0.446987,0 -0.806835,0.359849 -0.806835,0.806835 v 13.464059 c 0,0.446987 0.359848,0.806835 0.806835,0.806835 h 22.087108 c 0.446987,0 0.806835,-0.359848 0.806835,-0.806835 V 25.880423 c 0,-0.446986 -0.359848,-0.806835 -0.806835,-0.806835 h -4.790583 v -2.697854 c 0,-0.174559 -0.128004,-0.327777 -0.302563,-0.327777 h -1.815379 v -1.89102 c 0,-0.08802 -0.08848,-0.151281 -0.176495,-0.151281 z"
+           d="m 19.546544,20.005656 c -0.08803,0 -0.151282,0.06326 -0.151282,0.151281 l 0,1.89102 -1.815379,0 c -0.174558,0 -0.327776,0.153218 -0.327776,0.327777 l 0,2.697854 -4.790583,0 c -0.446987,0 -0.806835,0.359849 -0.806835,0.806835 l 0,13.464059 c 0,0.446987 0.359848,0.806835 0.806835,0.806835 l 22.087108,0 c 0.446987,0 0.806835,-0.359848 0.806835,-0.806835 l 0,-13.464059 c 0,-0.446986 -0.359848,-0.806835 -0.806835,-0.806835 l -4.790583,0 0,-2.697854 c 0,-0.174559 -0.128004,-0.327777 -0.302563,-0.327777 l -1.815379,0 0,-1.89102 c 0,-0.08802 -0.08848,-0.151281 -0.176495,-0.151281 z"
            inkscape:connector-curvature="0"
            style="fill:url(#N)" />
         <path
            id="path18359"
-           d="m 16.15625,32.59375 v 0.28125 6.84375 0.46875 h 0.9375 V 39.71875 32.875 32.59375 Z m 1.90625,0 V 32.875 39.71875 40.1875 H 19 V 39.71875 32.875 32.59375 Z m 1.875,0 V 32.875 39.71875 40.1875 H 20.875 V 39.71875 32.875 32.59375 Z m 1.875,0 V 32.875 39.71875 40.1875 H 22.75 V 39.71875 32.875 32.59375 Z m 1.90625,0 v 0.28125 6.84375 0.46875 h 0.9375 V 39.71875 32.875 32.59375 Z m 1.875,0 v 0.28125 6.84375 0.46875 h 0.9375 V 39.71875 32.875 32.59375 Z m 1.875,0 V 32.875 39.71875 40.1875 H 28.4375 V 39.71875 32.875 32.59375 Z m 1.90625,0 v 0.28125 6.84375 0.46875 h 0.9375 V 39.71875 32.875 32.59375 Z"
+           d="m 16.15625,32.59375 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.875,0 0,0.28125 0,6.84375 0,0.46875 0.96875,0 0,-0.46875 0,-6.84375 0,-0.28125 z m 1.90625,0 0,0.28125 0,6.84375 0,0.46875 0.9375,0 0,-0.46875 0,-6.84375 0,-0.28125 z"
            inkscape:connector-curvature="0"
            style="opacity:0.8;fill:url(#O);fill-rule:evenodd" />
       </g>
@@ -6222,7 +8843,7 @@
          sodipodi:role="line"
          id="tspan2359"
          x="160.75327"
-         y="77.811111"
+         y="74.065605"
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332" /></text>
     <text
        xml:space="preserve"
@@ -6233,11 +8854,11 @@
          sodipodi:role="line"
          id="tspan4258"
          x="84.024094"
-         y="35.477783"
+         y="31.732275"
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332" /><tspan
          sodipodi:role="line"
          x="84.024094"
-         y="40.769447"
+         y="37.023941"
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans';stroke-width:0.26458332"
          id="tspan4262" /></text>
     <text
@@ -6249,7 +8870,7 @@
          sodipodi:role="line"
          id="tspan828"
          x="142.23242"
-         y="85.748611"
+         y="82.003105"
          style="stroke-width:0.26458332" /></text>
     <text
        xml:space="preserve"
@@ -6260,11 +8881,11 @@
          sodipodi:role="line"
          id="tspan5577"
          x="61.534512"
-         y="72.519447"
+         y="68.773941"
          style="stroke-width:0.26458332" /><tspan
          sodipodi:role="line"
          x="61.534512"
-         y="77.811111"
+         y="74.065605"
          style="stroke-width:0.26458332"
          id="tspan5581" /></text>
     <text
@@ -6276,7 +8897,7 @@
          sodipodi:role="line"
          id="tspan10806"
          x="70.79493"
-         y="36.800697"
+         y="33.055191"
          style="stroke-width:0.26458332" /></text>
   </g>
 </svg>
diff --git a/Doc/Sd1/Ref/WorkingWithNumbers/P/src/main/java/de/hdm_stuttgart/sd1/PolymorphicNumberParsing.java b/Doc/Sd1/Ref/WorkingWithNumbers/P/src/main/java/de/hdm_stuttgart/sd1/PolymorphicNumberParsing.java
index 6f357105a560d53986dcb3a385c8409d270fc18b..cc874c0db73613be0fec7101c201f469dc8fc7fc 100644
--- a/Doc/Sd1/Ref/WorkingWithNumbers/P/src/main/java/de/hdm_stuttgart/sd1/PolymorphicNumberParsing.java
+++ b/Doc/Sd1/Ref/WorkingWithNumbers/P/src/main/java/de/hdm_stuttgart/sd1/PolymorphicNumberParsing.java
@@ -1,7 +1,5 @@
 package de.hdm_stuttgart.sd1;
 
-import java.text.DecimalFormat;
-import java.text.DecimalFormatSymbols;
 import java.text.NumberFormat;
 import java.text.ParseException;
 import java.util.Locale;
@@ -10,12 +8,12 @@ public class PolymorphicNumberParsing {
 
   public static void main(String[] args) {
 
-    final NumberFormat de = NumberFormat.getInstance(Locale.GERMANY);
+    final NumberFormat de = NumberFormat.getInstance(Locale.GERMANY),
+                       us = NumberFormat.getInstance(Locale.US);
     try {
       final Number[] values = {
-          de.parse("103.234"),
-          de.parse("400.000,234")};
-
+          de.parse("103.234"), de.parse("400.000,234"),
+          us.parse("103.234"), us.parse("400.000,234"),};
       for (final Number n: values) {
         System.out.println(n + "(" + n.getClass().getTypeName() + ")");
       }
diff --git a/Doc/Sd1/interfacesAbstractClasses.xml b/Doc/Sd1/interfacesAbstractClasses.xml
index f16b86784fbe86962b348038aae14e6f08cfae90..3f9f7e7f17d19365867b51a47c48c5fe11e6120b 100644
--- a/Doc/Sd1/interfacesAbstractClasses.xml
+++ b/Doc/Sd1/interfacesAbstractClasses.xml
@@ -120,7 +120,7 @@ output.println("Too late!");</programlisting>
   </figure>
 
   <figure xml:id="sd1_interface_fig_Text2fileProblemPartialSolution">
-    <title>Employ <quote>try-with-resources</quote> </title>
+    <title>Employ <quote>try-with-resources</quote></title>
 
     <informaltable border="0">
       <tr>
@@ -141,6 +141,15 @@ Found:
     </informaltable>
   </figure>
 
+  <figure xml:id="sd1_interface_fig_interfaceSyntax">
+    <title><code language="java">interface</code> syntax</title>
+
+    <programlisting language="java">accessModifier interface interfaceName [throwsClause]?{
+    [field]*
+   [method]*
+}</programlisting>
+  </figure>
+
   <figure xml:id="sd1_interface_fig_AutoCloseablePromise">
     <title>The <classname
     xlink:href="https://docs.oracle.com/javase/9/docs/api/java/lang/AutoCloseable.html">AutoCloseable</classname>
@@ -175,8 +184,7 @@ void close​() <co linkends="sd1_interface_fig_AutoCloseablePromise-2.2"
   public void println(final String s){     
     out.println(s); }
 
-  @Override public void close() <co
-              linkends="sd1_interface_fig_AutoCloseablePromise-3"
+  public void close() <co linkends="sd1_interface_fig_AutoCloseablePromise-3"
               xml:id="sd1_interface_fig_AutoCloseablePromise-3-co"/>{
     out.close(); <co linkends="sd1_interface_fig_AutoCloseablePromise-4"
               xml:id="sd1_interface_fig_AutoCloseablePromise-4-co"/>
@@ -231,6 +239,11 @@ void close​() <co linkends="sd1_interface_fig_AutoCloseablePromise-2.2"
             to <methodname>close()</methodname> keeping the interface promise
             made at <coref
             linkend="sd1_interface_fig_AutoCloseablePromise-1-co"/>.</para>
+
+            <para>Caution: No <classname
+            xlink:href="https://docs.oracle.com/javase/9/docs/api/java/lang/Override.html">@Override</classname>
+            here since close() is being implemented rather tan overriding a
+            base class method not existing anyway.</para>
           </callout>
 
           <callout arearefs="sd1_interface_fig_AutoCloseablePromise-4-co"
@@ -340,6 +353,102 @@ abstract void close​();<co
     </tr>
   </informaltable>
 
+  <figure xml:id="sd1_interface_fig_whyInterfacesVsAbstractClasses">
+    <title><code language="java">interface</code> vs. <code
+    language="java">abstract</code> class</title>
+
+    <itemizedlist>
+      <listitem>
+        <para><xref linkend="glo_Java"/> disallows multiple
+        inheritance.</para>
+      </listitem>
+
+      <listitem>
+        <para>A class may implement an arbitrary number of interfaces:</para>
+
+        <programlisting language="java">public class X implements I1, I2, I3 {...}</programlisting>
+      </listitem>
+    </itemizedlist>
+  </figure>
+
+  <figure xml:id="sd1_interface_fig_interfaceMyAutoCloseable">
+    <title><code language="java">interface</code>
+    <classname>MyAutoCloseable</classname></title>
+
+    <programlisting language="java">/**
+ * Support auto-closing of resources
+ */
+public interface MyAutoCloseable {
+  /**
+   * close resource in question. Example: Terminate
+   * a database connection or a file stream.
+   */
+  public void close();
+}</programlisting>
+  </figure>
+
+  <figure xml:id="sd1_interface_fig_extendMyAutoCloseable">
+    <title>Extending <classname>MyAutoCloseable</classname></title>
+
+    <programlisting language="java">/**
+ * Flush pending values.
+ */
+public interface MyFlushable extends MyAutoCloseable {
+
+  /**
+   * Save pending i.e. buffered values.
+   */
+  public void flush();
+}</programlisting>
+  </figure>
+
+  <figure xml:id="sd1_interface_fig_useFlushable">
+    <title>Using <classname>MyFlushable</classname></title>
+
+    <programlisting language="none">public class Text2FileFlushable implements MyFlushable {
+  private PrintStream out;
+...
+  <emphasis role="red">/**
+   * Flushing pending output to underlying file.
+   */
+  public void flush(){
+    out.flush();
+  }</emphasis>
+  /**
+   * Closing file thereby flushing buffer. Caution: Further calls
+   * to {@link #println(String)} will fail!.
+   */
+  public void close() {
+    out.close();
+    out = null;
+  }
+}</programlisting>
+  </figure>
+
+  <figure xml:id="sd1_interface_fig_MyFlushHierarchy">
+    <title>Inheritance hierarchy</title>
+
+    <mediaobject>
+      <imageobject>
+        <imagedata fileref="Ref/Interfaces/flushable.multi.svg"/>
+      </imageobject>
+    </mediaobject>
+  </figure>
+
+  <figure xml:id="sd1_interface_fig_upcomingTopics">
+    <title>Upcoming topics</title>
+
+    <itemizedlist>
+      <listitem>
+        <para>Default methods.</para>
+      </listitem>
+
+      <listitem>
+        <para>Base classes.</para>
+      </listitem>
+    </itemizedlist>
+  </figure>
+
   <section xml:id="sw1SectNonsenseGenerator">
     <title>A nonsense generator</title>
 
diff --git a/Doc/Sd1/workingWithNumbers.xml b/Doc/Sd1/workingWithNumbers.xml
index e16e22e82bf0df611e99815dd3af3e30513c95ad..8a95db7be8df2669d74bb5b038c0eda600505e8a 100644
--- a/Doc/Sd1/workingWithNumbers.xml
+++ b/Doc/Sd1/workingWithNumbers.xml
@@ -849,21 +849,20 @@ static public void print(final LocalDate date,  final Locale locale) {
     <figure xml:id="sd1_numbers_fig_polymorphicNumberParsing">
       <title>Polymorphic number parsing</title>
 
-      <programlisting language="java">final NumberFormat de = NumberFormat.getInstance(Locale.GERMANY);
+      <programlisting language="java">final NumberFormat de = NumberFormat.getInstance(Locale.GERMANY),
+                       us = NumberFormat.getInstance(Locale.US);
 try {
   final Number[] values = {
-    de.parse("103.234"),
-    de.parse("400.000,234")};
-
+    de.parse("103.234"), de.parse("400.000,234"),
+    us.parse("103.234"), us.parse("400.000,234"),};
   for (final Number n: values) {
     System.out.println(n + "(" + n.getClass().getTypeName() + ")");
-  }
-} catch (ParseException e) {
-  e.printStackTrace();
-}</programlisting>
+  } catch (ParseException e) { ... }</programlisting>
 
       <screen>103234(java.lang.Long)
-400000.234(java.lang.Double)</screen>
+400000.234(java.lang.Double)
+103.234(java.lang.Double)
+400(java.lang.Long)</screen>
     </figure>
   </section>