Adding support for importing into project some files to be transfered with PLC
authorlaurent
Mon, 04 Jun 2012 00:39:49 +0200
changeset 757 3151495ae5bb
parent 756 35cd28825be7
child 758 699a7bad5a8c
Adding support for importing into project some files to be transfered with PLC
ProjectController.py
images/ImportFile.png
images/icons.svg
--- a/ProjectController.py	Sun Jun 03 23:53:45 2012 +0200
+++ b/ProjectController.py	Mon Jun 04 00:39:49 2012 +0200
@@ -230,6 +230,12 @@
                 return True
         return False
     
+    def _getProjectFilesPath(self):
+        projectfiles_path = os.path.join(self.GetProjectPath(), "project_files")
+        if not os.path.exists(projectfiles_path):
+            os.mkdir(projectfiles_path)
+        return projectfiles_path
+    
     def NewProject(self, ProjectPath, BuildPath=None):
         """
         Create a new project in an empty folder
@@ -1358,12 +1364,15 @@
                 _("Latest build already matches current target. Transfering anyway...\n"))
 
         # Get temprary directory path
-        extrafilespath = self._getExtraFilesPath()
-        extrafiles = [(name, open(os.path.join(extrafilespath, name), 
+        extrafiles = []
+        for extrafilespath in [self._getExtraFilesPath(),
+                               self._getProjectFilesPath()]:
+        
+            extrafiles.extend(
+                     [(name, open(os.path.join(extrafilespath, name), 
                                   'rb').read()) \
-                      for name in os.listdir(extrafilespath) \
-                      if not name=="CVS"]
-
+                      for name in os.listdir(extrafilespath)])
+        
         # Send PLC on target
         builder = self.GetBuilder()
         if builder is not None:
@@ -1383,6 +1392,16 @@
 
         wx.CallAfter(self.UpdateMethodsFromPLCStatus)
 
+    def _ImportProjectFile(self):
+        dialog = wx.FileDialog(self.AppFrame, _("Choose a file"), os.getcwd(), "",  _("All files|*.*"), wx.OPEN)
+        if dialog.ShowModal() == wx.ID_OK:
+            filepath = dialog.GetPath()
+            if os.path.isfile(filepath):
+                shutil.copy(filepath, self._getProjectFilesPath())
+            else:
+                self.logger.write_error(_("No such file: %s\n") % filepath)
+        dialog.Destroy()  
+
     StatusMethods = [
         {"bitmap" : "Build",
          "name" : _("Build"),
@@ -1429,6 +1448,10 @@
          "name" : _("Raw IEC code"),
          "tooltip" : _("Edit raw IEC code added to code generated by PLCGenerator"),
          "method" : "_editIECrawcode"},
+        {"bitmap" : "ImportFile",
+         "name" : _("Import file"),
+         "tooltip" : _("Import into project a file to be transfered with PLC"),
+         "method" : "_ImportProjectFile"},
     ]
 
 
Binary file images/ImportFile.png has changed
--- a/images/icons.svg	Sun Jun 03 23:53:45 2012 +0200
+++ b/images/icons.svg	Mon Jun 04 00:39:49 2012 +0200
@@ -43,9 +43,9 @@
      pagecolor="#ffffff"
      id="base"
      showgrid="false"
-     inkscape:zoom="7.2407736"
-     inkscape:cx="412.79813"
-     inkscape:cy="698.07641"
+     inkscape:zoom="1.8101934"
+     inkscape:cx="497.7697"
+     inkscape:cy="737.93251"
      inkscape:window-x="0"
      inkscape:window-y="24"
      inkscape:current-layer="svg2"
@@ -80264,7 +80264,7 @@
        xlink:href="#linearGradient13895"
        id="linearGradient16508"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(8.7427824e-2,0,0,8.7427824e-2,-1117.1329,266.53756)"
+       gradientTransform="matrix(0.08742782,0,0,0.08742782,-1117.1329,266.53756)"
        x1="104.06748"
        y1="258.89557"
        x2="88.826271"
@@ -80274,7 +80274,7 @@
        xlink:href="#linearGradient10975"
        id="linearGradient16510"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-4.7416815e-2,-1.7551198e-2,-1.7551198e-2,4.7416815e-2,-1054.1523,448.07226)"
+       gradientTransform="matrix(-0.04741681,-0.0175512,-0.0175512,0.04741681,-1054.1523,448.07226)"
        x1="-31.694756"
        y1="75.012749"
        x2="-290.08447"
@@ -80284,7 +80284,7 @@
        xlink:href="#linearGradient13895"
        id="linearGradient16512"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(4.8425382e-2,1.4538951e-2,-1.4538951e-2,4.8425382e-2,-1038.9665,455.43377)"
+       gradientTransform="matrix(0.04842538,0.01453895,-0.01453895,0.04842538,-1038.9665,455.43377)"
        x1="-126.98681"
        y1="156.70712"
        x2="-126.31135"
@@ -80294,7 +80294,7 @@
        xlink:href="#linearGradient10975"
        id="linearGradient16514"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-4.7416815e-2,-1.7551198e-2,-1.7551198e-2,4.7416815e-2,-1054.1523,448.07226)"
+       gradientTransform="matrix(-0.04741681,-0.0175512,-0.0175512,0.04741681,-1054.1523,448.07226)"
        x1="-167.55049"
        y1="211.97607"
        x2="-173.6147"
@@ -80304,7 +80304,7 @@
        xlink:href="#linearGradient13895"
        id="linearGradient16516"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(4.8425382e-2,1.4538951e-2,-1.4538951e-2,4.8425382e-2,-1038.9665,455.43377)"
+       gradientTransform="matrix(0.04842538,0.01453895,-0.01453895,0.04842538,-1038.9665,455.43377)"
        x1="-126.98681"
        y1="156.70712"
        x2="-126.31135"
@@ -80314,7 +80314,7 @@
        xlink:href="#linearGradient16246"
        id="linearGradient16518"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-4.7470749e-2,-1.7404791e-2,-1.7404791e-2,4.7470749e-2,-1039.0637,456.07313)"
+       gradientTransform="matrix(-0.04747075,-0.01740479,-0.01740479,0.04747075,-1039.0637,456.07313)"
        x1="332.10507"
        y1="140.96875"
        x2="341.28439"
@@ -80324,7 +80324,7 @@
        xlink:href="#linearGradient16319"
        id="linearGradient16520"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(4.7470749e-2,1.7404791e-2,-1.7404791e-2,4.7470749e-2,-1039.0637,456.07313)"
+       gradientTransform="matrix(0.04747075,0.01740479,-0.01740479,0.04747075,-1039.0637,456.07313)"
        x1="-341.78363"
        y1="115.58839"
        x2="-341.53033"
@@ -80334,7 +80334,7 @@
        xlink:href="#linearGradient16246"
        id="linearGradient16522"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(-1.7404791e-2,4.7470749e-2,4.7470749e-2,1.7404791e-2,-1045.1082,441.41035)"
+       gradientTransform="matrix(-0.01740479,0.04747075,0.04747075,0.01740479,-1045.1082,441.41035)"
        x1="332.10507"
        y1="140.96875"
        x2="341.28439"
@@ -80344,7 +80344,7 @@
        xlink:href="#linearGradient16319"
        id="linearGradient16524"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.7404791e-2,-4.7470749e-2,4.7470749e-2,1.7404791e-2,-1045.1082,441.41035)"
+       gradientTransform="matrix(0.01740479,-0.04747075,0.04747075,0.01740479,-1045.1082,441.41035)"
        x1="-341.78363"
        y1="115.58839"
        x2="-341.53033"
@@ -80354,7 +80354,7 @@
        xlink:href="#linearGradient1513"
        id="linearGradient16526"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(7.8592444e-2,0,0,7.8592444e-2,-648.89236,261.66181)"
+       gradientTransform="matrix(0.07859244,0,0,0.07859244,-648.89236,261.66181)"
        x1="131.52188"
        y1="198.01724"
        x2="131.52188"
@@ -80394,7 +80394,7 @@
        xlink:href="#linearGradient1513"
        id="linearGradient16534"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(7.8592437e-2,0,0,7.8592437e-2,-648.89236,292.44662)"
+       gradientTransform="matrix(0.07859244,0,0,0.07859244,-648.89236,292.44662)"
        x1="131.52188"
        y1="198.01724"
        x2="131.52188"
@@ -80510,40 +80510,6 @@
        y1="5.1423945"
        x2="-77.844841"
        y2="14.276564" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient9073"
-       id="radialGradient18001"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.6730924,6.1221359e-3,-6.9425482e-3,1.8972995,-23.992621,-6.8292465)"
-       cx="35.721348"
-       cy="7.3671589"
-       fx="35.721348"
-       fy="7.3671589"
-       r="13.002643" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3296"
-       id="radialGradient18003"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(14.85662,0,0,7.656836,118.7844,-641.5134)"
-       spreadMethod="pad"
-       cx="4.9853168"
-       cy="108.47158"
-       fx="5.2520976"
-       fy="108.73115"
-       r="34.222183" />
-    <radialGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient5177"
-       id="radialGradient18005"
-       gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(1.4617839,-2.8861501e-2,3.1134805e-2,1.5769227,-19.270392,2.2543889)"
-       cx="41.852623"
-       cy="-1.8138641"
-       fx="41.852623"
-       fy="-1.8138641"
-       r="12.374369" />
     <linearGradient
        inkscape:collect="always"
        xlink:href="#linearGradient20398"
@@ -83189,7 +83155,7 @@
        xlink:href="#linearGradient4098"
        id="linearGradient16669"
        gradientUnits="userSpaceOnUse"
-       gradientTransform="matrix(0.1929179,7.8479621e-2,-0.1935223,7.6977181e-2,-73.464826,663.03339)"
+       gradientTransform="matrix(0.1929179,0.07847962,-0.1935223,0.07697718,-73.464826,663.03339)"
        x1="-2921.3145"
        y1="-3640.7598"
        x2="-2435.4211"
@@ -85288,6 +85254,329 @@
        id="linearGradient18010"
        xlink:href="#linearGradient5175-3-7-9-2"
        inkscape:collect="always" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9073"
+       id="radialGradient17762"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.6730924,0.00612214,-0.00694255,1.8972995,-23.992621,-6.8292465)"
+       cx="35.721348"
+       cy="7.3671589"
+       fx="35.721348"
+       fy="7.3671589"
+       r="13.002643" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3296"
+       id="radialGradient17764"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(14.85662,0,0,7.656836,118.7844,-641.5134)"
+       spreadMethod="pad"
+       cx="4.9853168"
+       cy="108.47158"
+       fx="5.2520976"
+       fy="108.73115"
+       r="34.222183" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5177"
+       id="radialGradient17766"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.4617839,-0.0288615,0.03113481,1.5769227,-19.270392,2.2543889)"
+       cx="41.852623"
+       cy="-1.8138641"
+       fx="41.852623"
+       fy="-1.8138641"
+       r="12.374369" />
+    <linearGradient
+       id="linearGradient2425-2"
+       y2="5.4565001"
+       gradientUnits="userSpaceOnUse"
+       x2="36.358002"
+       gradientTransform="matrix(0.47785,0,0,0.55248,274.11443,192.2392)"
+       y1="8.059"
+       x1="32.891998">
+      <stop
+         id="stop8591-7"
+         style="stop-color:#fefefe"
+         offset="0" />
+      <stop
+         id="stop8593"
+         style="stop-color:#cbcbcb"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2429-7"
+       y2="46.016998"
+       gradientUnits="userSpaceOnUse"
+       x2="24"
+       gradientTransform="matrix(0.45454,0,0,0.46512,274.83308,192.65256)"
+       y1="2"
+       x1="24">
+      <stop
+         id="stop3213"
+         style="stop-color:#fff"
+         offset="0" />
+      <stop
+         id="stop3215"
+         style="stop-color:#fff;stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <radialGradient
+       id="radialGradient2432"
+       gradientUnits="userSpaceOnUse"
+       cy="102.7"
+       cx="92.089996"
+       gradientTransform="matrix(0.17021,0,0,-0.19072,274.84858,216.03233)"
+       r="139.56">
+      <stop
+         id="stop41"
+         style="stop-color:#b7b8b9"
+         offset="0" />
+      <stop
+         id="stop47"
+         style="stop-color:#ececec"
+         offset=".17403" />
+      <stop
+         id="stop49"
+         style="stop-color:#fafafa;stop-opacity:0"
+         offset=".23908" />
+      <stop
+         id="stop51"
+         style="stop-color:#fff;stop-opacity:0"
+         offset=".30111" />
+      <stop
+         id="stop53"
+         style="stop-color:#fafafa;stop-opacity:0"
+         offset=".53130" />
+      <stop
+         id="stop55"
+         style="stop-color:#ebecec;stop-opacity:0"
+         offset=".84490" />
+      <stop
+         id="stop57"
+         style="stop-color:#e1e2e3;stop-opacity:0"
+         offset="1" />
+    </radialGradient>
+    <linearGradient
+       id="linearGradient2435-0"
+       y2="47.013"
+       gradientUnits="userSpaceOnUse"
+       x2="25.132"
+       gradientTransform="matrix(0.48572,0,0,0.47803,274.08501,191.60938)"
+       y1="0.98521"
+       x1="25.132">
+      <stop
+         id="stop3602"
+         style="stop-color:#f4f4f4"
+         offset="0" />
+      <stop
+         id="stop3604"
+         style="stop-color:#dbdbdb"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2438-2"
+       y2="2.9061999"
+       gradientUnits="userSpaceOnUse"
+       x2="-51.785999"
+       gradientTransform="matrix(0.39221,0,0,0.44736,302.94118,191.07663)"
+       y1="50.785999"
+       x1="-51.785999">
+      <stop
+         id="stop3106"
+         style="stop-color:#aaa"
+         offset="0" />
+      <stop
+         id="stop3108"
+         style="stop-color:#c8c8c8"
+         offset="1" />
+    </linearGradient>
+    <radialGradient
+       id="radialGradient2441"
+       xlink:href="#linearGradient5060"
+       gradientUnits="userSpaceOnUse"
+       cy="486.64999"
+       cx="605.71002"
+       gradientTransform="matrix(0.012049,0,0,0.0082353,286.98118,211.29633)"
+       r="117.14" />
+    <linearGradient
+       id="linearGradient5060">
+      <stop
+         id="stop5062"
+         offset="0" />
+      <stop
+         id="stop5064"
+         style="stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <radialGradient
+       id="radialGradient2444"
+       xlink:href="#linearGradient5060"
+       gradientUnits="userSpaceOnUse"
+       cy="486.64999"
+       cx="605.71002"
+       gradientTransform="matrix(-0.012049,0,0,0.0082353,284.50318,211.29633)"
+       r="117.14" />
+    <linearGradient
+       id="linearGradient3067">
+      <stop
+         id="stop3069"
+         offset="0" />
+      <stop
+         id="stop3071"
+         style="stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2447-4"
+       y2="609.51001"
+       gradientUnits="userSpaceOnUse"
+       x2="302.85999"
+       gradientTransform="matrix(0.035207,0,0,0.0082353,-0.72485,18.981)"
+       y1="366.64999"
+       x1="302.85999">
+      <stop
+         id="stop5050-7"
+         style="stop-opacity:0"
+         offset="0" />
+      <stop
+         id="stop5056"
+         offset=".5" />
+      <stop
+         id="stop5052"
+         style="stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       y2="609.51001"
+       x2="302.85999"
+       y1="366.64999"
+       x1="302.85999"
+       gradientTransform="matrix(0.035207,0,0,0.0082353,273.01733,211.29633)"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient3085"
+       xlink:href="#linearGradient2447-4"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1513-6"
+       id="linearGradient16526-7"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.07859244,0,0,0.07859244,-648.89236,261.66181)"
+       x1="131.52188"
+       y1="198.01724"
+       x2="131.52188"
+       y2="41.586746" />
+    <linearGradient
+       id="linearGradient1513-6">
+      <stop
+         id="stop1514-8"
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop1515-3"
+         style="stop-color:#ffffff;stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1291-0"
+       id="linearGradient16528-1"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3316761,0,0,0.3316761,48.927852,9.2318583)"
+       x1="75.847473"
+       y1="79.6325"
+       x2="109.0923"
+       y2="124.12687" />
+    <linearGradient
+       id="linearGradient1291-0">
+      <stop
+         id="stop1292-9"
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="0" />
+      <stop
+         id="stop1293-1"
+         style="stop-color:#ffffff;stop-opacity:0"
+         offset="1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2447-4"
+       id="linearGradient17971"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.035207,0,0,0.0082353,273.01733,211.29633)"
+       x1="302.85999"
+       y1="366.64999"
+       x2="302.85999"
+       y2="609.51001" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5060"
+       id="radialGradient17973"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.012049,0,0,0.0082353,284.50318,211.29633)"
+       cx="605.71002"
+       cy="486.64999"
+       r="117.14" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient5060"
+       id="radialGradient17975"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.012049,0,0,0.0082353,286.98118,211.29633)"
+       cx="605.71002"
+       cy="486.64999"
+       r="117.14" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2435-0"
+       id="linearGradient17977"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.48572,0,0,0.47803,274.08501,191.60938)"
+       x1="25.132"
+       y1="0.98521"
+       x2="25.132"
+       y2="47.013" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2438-2"
+       id="linearGradient17979"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.39221,0,0,0.44736,302.94118,191.07663)"
+       x1="-51.785999"
+       y1="50.785999"
+       x2="-51.785999"
+       y2="2.9061999" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#radialGradient2432"
+       id="radialGradient17981"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.17021,0,0,-0.19072,274.84858,216.03233)"
+       cx="92.089996"
+       cy="102.7"
+       r="139.56" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2429-7"
+       id="linearGradient17983"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.45454,0,0,0.46512,274.83308,192.65256)"
+       x1="24"
+       y1="2"
+       x2="24"
+       y2="46.016998" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient2425-2"
+       id="linearGradient17985"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.47785,0,0,0.55248,274.11443,192.2392)"
+       x1="32.891998"
+       y1="8.059"
+       x2="36.358002"
+       y2="5.4565001" />
   </defs>
   <g
      id="g19063"
@@ -85408,7 +85697,7 @@
     </g>
   </g>
   <g
-     transform="matrix(1.2234367,0,0,1.2234367,1268.4713,-281.46094)"
+     transform="matrix(1.2234367,0,0,1.2234367,1234.4713,-281.46094)"
      id="g17987">
     <g
        style="display:inline"
@@ -85416,7 +85705,7 @@
        id="LED4_off">
       <path
          sodipodi:type="arc"
-         style="opacity:1;fill:url(#radialGradient18001);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25654912;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+         style="fill:url(#radialGradient17762);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25654912;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
          id="path10124"
          sodipodi:cx="38.638336"
          sodipodi:cy="1.7575644"
@@ -85426,7 +85715,7 @@
          transform="matrix(1.5916608,0,0,1.5916608,-4.534839,45.738269)" />
       <path
          sodipodi:type="arc"
-         style="opacity:1;fill:url(#radialGradient18003);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+         style="fill:url(#radialGradient17764);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
          id="path10126"
          sodipodi:cx="38.638336"
          sodipodi:cy="1.7575644"
@@ -85447,7 +85736,7 @@
          sodipodi:cy="1.7575644"
          sodipodi:cx="38.638336"
          id="path10096"
-         style="opacity:1;fill:#46e837;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+         style="fill:#46e837;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
          sodipodi:type="arc" />
       <path
          transform="matrix(0.9170232,0,0,0.9170232,61.532035,48.923988)"
@@ -85457,13 +85746,13 @@
          sodipodi:cy="1.7575644"
          sodipodi:cx="38.638336"
          id="path10098"
-         style="opacity:1;fill:url(#radialGradient18005);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+         style="fill:url(#radialGradient17766);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible"
          sodipodi:type="arc" />
     </g>
   </g>
   <text
      sodipodi:linespacing="125%"
-     style="font-size:12.76095104px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
+     style="font-size:12.76095104px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans"
      xml:space="preserve"
      id="text2713"
      y="181.52583"
@@ -85471,16 +85760,16 @@
        y="181.52583"
        x="33.295933"
        id="tspan16193"
-       sodipodi:role="line">%% Build Clean editPLC HMIEditor ImportDEF ImportSVG NetworkEdit ShowMaster Run ShowIECcode Stop Unknown %%</tspan></text>
+       sodipodi:role="line">%% Build Clean editPLC HMIEditor ImportFile ImportDEF ImportSVG NetworkEdit ShowMaster Run ShowIECcode Stop Unknown %%</tspan></text>
   <rect
-     style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+     style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
      id="Unknown"
      y="191.36218"
-     x="720"
+     x="800"
      height="24"
      width="24" />
   <g
-     transform="translate(1181,-219.4776)"
+     transform="translate(1163,-219.4776)"
      id="g16213">
     <rect
        width="24"
@@ -85488,68 +85777,79 @@
        x="-1061"
        y="410.83978"
        id="Clean"
-       style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <g
-       transform="matrix(8.6972395e-2,0,0,8.6972395e-2,-1060.0948,411.54901)"
+       transform="matrix(0.08697239,0,0,0.08697239,-1060.0948,411.54901)"
        id="g3311">
       <g
          transform="matrix(1.2726368,0,0,1.2726368,3.5622627,-40.569974)"
          id="g16977">
         <path
-           d="M 40.481863,36.421127 C 40.481863,41.058603 33.477476,44.818021 24.837126,44.818021 C 16.196776,44.818021 9.1923885,41.058603 9.1923885,36.421127 C 9.1923885,31.783651 16.196776,28.024233 24.837126,28.024233 C 33.477476,28.024233 40.481863,31.783651 40.481863,36.421127 L 40.481863,36.421127 z"
+           d="m 40.481863,36.421127 c 0,4.637476 -7.004387,8.396894 -15.644737,8.396894 -8.64035,0 -15.6447375,-3.759418 -15.6447375,-8.396894 0,-4.637476 7.0043875,-8.396894 15.6447375,-8.396894 8.64035,0 15.644737,3.759418 15.644737,8.396894 l 0,0 z"
            transform="matrix(5.2282251,0,0,2.6863605,-35.5946,112.63847)"
            id="path31290"
-           style="opacity:0.20454544;fill:url(#radialGradient16352);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+           style="opacity:0.20454544;fill:url(#radialGradient16352);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
+           inkscape:connector-curvature="0" />
         <path
-           d="M 166.6263,36.035142 C 167.24239,35.904072 154.54651,53.869371 153.18066,58.456432 C 149.25963,64.96332 144.35629,80.514424 142.48054,86.814127 C 139.79071,95.847805 131.93057,106.20687 131.61223,111.9474 C 132.88242,117.43692 139.61557,121.01906 144.42883,118.73457 C 145.21602,114.9508 147.41009,106.52924 151.31958,96.561826 C 155.8766,84.471607 173.08462,59.815482 173.82624,57.32493 C 174.90332,53.707539 182.75377,45.159996 181.58535,42.63362 C 178.68574,36.363785 171.50353,34.997646 166.6263,36.035142 z"
+           d="m 166.6263,36.035142 c 0.61609,-0.13107 -12.07979,17.834229 -13.44564,22.42129 -3.92103,6.506888 -8.82437,22.057992 -10.70012,28.357695 -2.68983,9.033678 -10.54997,19.392743 -10.86831,25.133273 1.27019,5.48952 8.00334,9.07166 12.8166,6.78717 0.78719,-3.78377 2.98126,-12.20533 6.89075,-22.172744 4.55702,-12.090219 21.76504,-36.746344 22.50666,-39.236896 1.07708,-3.617391 8.92753,-12.164934 7.75911,-14.69131 -2.89961,-6.269835 -10.08182,-7.635974 -14.95905,-6.598478 z"
            id="path919"
-           style="fill:url(#linearGradient16354);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
+           style="fill:url(#linearGradient16354);fill-opacity:1;fill-rule:evenodd;stroke:none"
+           inkscape:connector-curvature="0" />
         <path
-           d="M 59.294226,184.53485 C 68.519634,172.92655 79.636149,153.59512 79.794901,149.05149 C 87.787261,122.95926 102.58924,120.22667 114.81687,125.48462 C 117.86424,113.52666 123.03908,109.16237 130.0657,107.66768 C 134.84088,109.76395 144.51241,110.55481 149.335,120.98248 C 151.91254,126.55589 148.39913,140.54867 141.8987,143.86838 C 144.16814,146.63712 146.41635,149.65638 148.66435,152.98863 C 154.02278,165.71007 146.85884,176.50379 142.45141,185.53907 C 136.79243,202.57788 121.07023,216.73906 104.90945,226.33187 C 103.2739,225.14684 98.740248,221.9245 97.286849,224.49529 C 93.763152,221.68458 87.728694,211.73496 84.990438,213.89628 C 80.93406,210.4315 78.567067,200.79589 75.215558,204.18116 C 70.998231,200.2653 67.123971,188.68613 66.336971,196.80718 C 62.583014,193.08381 61.960478,187.42206 59.294226,184.53485 z"
+           d="m 59.294226,184.53485 c 9.225408,-11.6083 20.341923,-30.93973 20.500675,-35.48336 7.99236,-26.09223 22.794339,-28.82482 35.021969,-23.56687 3.04737,-11.95796 8.22221,-16.32225 15.24883,-17.81694 4.77518,2.09627 14.44671,2.88713 19.2693,13.3148 2.57754,5.57341 -0.93587,19.56619 -7.4363,22.8859 2.26944,2.76874 4.51765,5.788 6.76565,9.12025 5.35843,12.72144 -1.80551,23.51516 -6.21294,32.55044 -5.65898,17.03881 -21.38118,31.19999 -37.54196,40.7928 -1.63555,-1.18503 -6.169202,-4.40737 -7.622601,-1.83658 -3.523697,-2.81071 -9.558155,-12.76033 -12.296411,-10.59901 -4.056378,-3.46478 -6.423371,-13.10039 -9.77488,-9.71512 -4.217327,-3.91586 -8.091587,-15.49503 -8.878587,-7.37398 -3.753957,-3.72337 -4.376493,-9.38512 -7.042745,-12.27233 z"
            id="path920"
-           style="fill:url(#radialGradient16356);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
+           style="fill:url(#radialGradient16356);fill-opacity:1;fill-rule:evenodd;stroke:none"
+           inkscape:connector-curvature="0" />
         <path
-           d="M 56.814118,184.81542 C 64.437783,174.87573 71.290612,164.31844 76.512415,152.83728 C 77.996557,147.89924 79.383704,142.86604 81.815089,138.3711 C 85.844237,130.45445 92.569356,122.71167 103.38987,122.54304 C 106.88936,122.41506 110.46868,123.52591 113.93914,124.93032 C 117.01329,112.16023 122.62476,107.33624 130.10826,105.74433 L 130.5609,105.64806 L 130.97378,105.86898 C 131.22893,105.981 131.86271,106.18518 132.16498,106.29485 C 133.54827,102.76646 135.36352,99.397021 136.97725,96.00855 C 139.71179,91.212141 141.60488,85.962837 143.12997,80.558775 C 145.74667,72.371411 148.5204,64.211548 152.48207,56.709585 C 155.8641,49.49616 160.64715,43.125874 164.8468,36.418601 C 165.74934,34.204233 166.4984,34.579613 168.10037,34.182725 C 173.2285,33.438489 180.03296,36.03392 182.63029,41.280803 C 184.21854,44.620375 181.31757,47.047404 180.02731,49.491638 C 177.93518,52.557419 175.81755,55.613705 174.3984,59.08715 C 167.16333,70.845904 159.21835,82.226148 153.40998,94.859506 C 150.80349,101.08617 148.75913,107.6312 147.05441,114.30451 C 148.54507,115.8649 149.99668,117.57632 151.08566,119.93082 C 152.76904,123.57082 152.23633,129.04602 150.56431,134.12093 C 149.01241,138.83133 146.36097,143.04821 142.49356,144.48286 C 143.21331,145.38231 150.09181,152.55261 150.7464,156.26091 C 153.48511,165.49796 149.56566,174.77335 145.77622,181.94667 C 144.72212,184.3856 143.68476,185.19773 142.07222,186.33018 C 142.09808,188.48853 140.20577,194.00167 138.68605,196.17556 C 130.01004,209.20077 117.97559,219.86857 104.14054,228.1627 C 102.11547,226.87259 98.145525,223.40825 97.053143,226.27404 C 95.458187,226.59793 92.98164,222.76122 91.537225,221.33403 C 89.633222,219.64653 86.909108,214.17197 84.360695,215.75927 C 81.868919,214.35291 80.150302,211.11365 78.726801,208.68309 C 77.68516,205.61359 75.681664,205.0758 74.142356,205.89148 C 70.8988,203.0954 69.36671,199.31193 66.925577,196.06446 C 66.159818,196.66842 67.316505,201.13034 65.532914,198.83074 C 61.137626,195.16471 60.578802,189.84119 57.486994,185.59854 C 57.262703,185.3375 57.038409,185.07646 56.814118,184.81542 z M 59.832529,185.16135 C 62.024435,187.44221 62.962747,193.84374 65.354964,193.74327 C 67.169098,190.84459 68.618819,186.96421 71.040438,184.13573 C 77.716247,176.31622 84.01947,171.14803 88.141715,159.44089 C 89.564128,157.54524 90.882427,151.75765 93.674056,147.88989 C 93.534885,156.76268 88.487045,163.72954 84.084845,170.55451 C 79.21625,178.00289 73.128629,184.67423 68.989415,192.59964 C 67.799353,195.66144 72.280424,199.10476 73.909527,202.2977 C 77.523762,204.56495 76.672167,197.41051 79.197827,195.8622 C 86.039834,185.51961 94.117114,183.17037 98.100293,171.0312 C 99.452104,169.38331 100.11318,164.46458 102.95085,161.23076 C 102.39526,170.68574 96.071613,179.01161 90.843546,185.97481 C 86.517212,191.80135 81.313569,195.72668 78.667989,202.644 C 77.823032,204.38518 77.359638,203.45768 79.397706,205.69982 C 81.434387,208.32918 84.179661,215.99922 86.805134,211.10198 C 96.435717,200.74437 103.30362,197.82286 109.89866,185.25596 C 111.10579,183.51951 114.9911,177.71739 116.8439,174.20716 C 113.13292,184.72264 105.89011,193.21747 98.967743,201.6604 C 95.32821,205.93185 91.541435,210.09771 87.565415,214.08954 C 90.875514,216.69979 93.142006,220.18524 96.132285,223.07363 C 106.31011,210.8088 108.63286,207.94469 119.923,196.5853 C 120.48522,194.22271 131.63805,185.13868 131.3807,187.23191 C 121.40517,196.64077 112.87027,207.28493 104.07664,217.67863 C 103.2121,220.07406 96.749044,222.93505 102.20278,224.37583 C 105.26082,226.45557 107.51103,222.13884 110.06488,221.2214 C 122.79049,211.98936 134.13348,200.8656 140.79968,186.77208 C 141.00668,186.18789 141.40949,186.0395 141.64387,185.46459 C 137.47969,184.48859 129.56477,178.44522 127.18831,176.82327 C 115.71745,167.44123 113.67315,163.51726 103.99274,152.73451 C 103.27225,152.04572 98.0585,146.58125 97.222808,146.02348 C 103.15599,149.50069 104.91212,151.81421 108.03111,154.34549 C 117.07761,164.95563 129.61622,176.83741 141.65573,184.86095 C 144.62527,177.67487 149.28339,171.05595 148.76481,162.47689 C 148.5031,158.13687 148.2176,153.32597 144.89361,149.46816 C 143.80059,147.90186 138.34514,141.47032 137.10309,139.94843 C 135.78795,140.15701 126.50568,130.55914 113.69627,126.95802 C 113.68568,126.95318 113.68087,126.90664 113.67027,126.90179 C 111.7788,126.03869 109.89062,125.33324 107.87033,125.10976 C 98.26087,123.35514 90.986542,128.84242 86.814749,135.20804 C 83.043344,140.71696 80.778887,147.17078 79.033952,153.72117 C 74.021825,165.02243 67.240319,175.38758 59.832529,185.16135 z M 116.39951,125.95073 C 117.06631,126.25678 134.78891,135.49838 140.8007,142.43469 C 143.73946,141.51786 146.61043,137.65815 148.13454,133.03227 C 149.71037,128.24917 149.90295,122.74806 148.82268,120.4122 C 148.1291,118.91247 147.22256,117.95547 146.37115,116.85811 C 146.19566,117.60618 142.80271,113.60221 139.14118,111.97398 C 138.82795,111.36071 131.06849,108.18158 130.89146,108.10952 C 124.15251,109.62325 119.31213,113.69691 116.39951,125.95073 z M 133.43127,108.49552 C 136.47728,109.4537 140.39961,110.90485 144.04511,113.70961 C 144.2819,112.65557 145.27452,110.18906 145.64094,109.23284 C 148.31975,100.16169 151.51759,91.272378 156.33222,83.30799 C 161.42101,74.283418 167.29917,65.747316 172.54485,56.826123 C 174.43735,51.698073 178.78867,48.039004 180.63508,42.878493 C 180.22957,40.204925 177.13627,37.80482 174.36829,36.986716 C 171.71744,36.391298 167.63103,35.392575 166.88826,38.145614 C 162.46019,45.069987 157.57128,51.748891 154.18268,59.31187 C 149.17443,68.884647 146.36357,79.572448 142.84359,89.88234 C 140.5565,95.885181 135.83027,102.56261 133.43127,108.49552 z"
+           d="m 56.814118,184.81542 c 7.623665,-9.93969 14.476494,-20.49698 19.698297,-31.97814 1.484142,-4.93804 2.871289,-9.97124 5.302674,-14.46618 4.029148,-7.91665 10.754267,-15.65943 21.574781,-15.82806 3.49949,-0.12798 7.07881,0.98287 10.54927,2.38728 3.07415,-12.77009 8.68562,-17.59408 16.16912,-19.18599 l 0.45264,-0.0963 0.41288,0.22092 c 0.25515,0.11202 0.88893,0.3162 1.1912,0.42587 1.38329,-3.52839 3.19854,-6.897829 4.81227,-10.2863 2.73454,-4.796409 4.62763,-10.045713 6.15272,-15.449775 2.6167,-8.187364 5.39043,-16.347227 9.3521,-23.84919 3.38203,-7.213425 8.16508,-13.583711 12.36473,-20.290984 0.90254,-2.214368 1.6516,-1.838988 3.25357,-2.235876 5.12813,-0.744236 11.93259,1.851195 14.52992,7.098078 1.58825,3.339572 -1.31272,5.766601 -2.60298,8.210835 -2.09213,3.065781 -4.20976,6.122067 -5.62891,9.595512 -7.23507,11.758754 -15.18005,23.138998 -20.98842,35.772356 -2.60649,6.226664 -4.65085,12.771694 -6.35557,19.445004 1.49066,1.56039 2.94227,3.27181 4.03125,5.62631 1.68338,3.64 1.15067,9.1152 -0.52135,14.19011 -1.5519,4.7104 -4.20334,8.92728 -8.07075,10.36193 0.71975,0.89945 7.59825,8.06975 8.25284,11.77805 2.73871,9.23705 -1.18074,18.51244 -4.97018,25.68576 -1.0541,2.43893 -2.09146,3.25106 -3.704,4.38351 0.0259,2.15835 -1.86645,7.67149 -3.38617,9.84538 -8.67601,13.02521 -20.71046,23.69301 -34.54551,31.98714 -2.02507,-1.29011 -5.995015,-4.75445 -7.087397,-1.88866 -1.594956,0.32389 -4.071503,-3.51282 -5.515918,-4.94001 -1.904003,-1.6875 -4.628117,-7.16206 -7.17653,-5.57476 -2.491776,-1.40636 -4.210393,-4.64562 -5.633894,-7.07618 -1.041641,-3.0695 -3.045137,-3.60729 -4.584445,-2.79161 -3.243556,-2.79608 -4.775646,-6.57955 -7.216779,-9.82702 -0.765759,0.60396 0.390928,5.06588 -1.392663,2.76628 -4.395288,-3.66603 -4.954112,-8.98955 -8.04592,-13.2322 -0.224291,-0.26104 -0.448585,-0.52208 -0.672876,-0.78312 z m 3.018411,0.34593 c 2.191906,2.28086 3.130218,8.68239 5.522435,8.58192 1.814134,-2.89868 3.263855,-6.77906 5.685474,-9.60754 6.675809,-7.81951 12.979032,-12.9877 17.101277,-24.69484 1.422413,-1.89565 2.740712,-7.68324 5.532341,-11.551 -0.139171,8.87279 -5.187011,15.83965 -9.589211,22.66462 -4.868595,7.44838 -10.956216,14.11972 -15.09543,22.04513 -1.190062,3.0618 3.291009,6.50512 4.920112,9.69806 3.614235,2.26725 2.76264,-4.88719 5.2883,-6.4355 6.842007,-10.34259 14.919287,-12.69183 18.902466,-24.831 1.351811,-1.64789 2.012887,-6.56662 4.850557,-9.80044 -0.55559,9.45498 -6.879237,17.78085 -12.107304,24.74405 -4.326334,5.82654 -9.529977,9.75187 -12.175557,16.66919 -0.844957,1.74118 -1.308351,0.81368 0.729717,3.05582 2.036681,2.62936 4.781955,10.2994 7.407428,5.40216 9.630583,-10.35761 16.498486,-13.27912 23.093526,-25.84602 1.20713,-1.73645 5.09244,-7.53857 6.94524,-11.0488 -3.71098,10.51548 -10.95379,19.01031 -17.876157,27.45324 -3.639533,4.27145 -7.426308,8.43731 -11.402328,12.42914 3.310099,2.61025 5.576591,6.0957 8.56687,8.98409 10.177825,-12.26483 12.500575,-15.12894 23.790715,-26.48833 0.56222,-2.36259 11.71505,-11.44662 11.4577,-9.35339 -9.97553,9.40886 -18.51043,20.05302 -27.30406,30.44672 -0.86454,2.39543 -7.327596,5.25642 -1.87386,6.6972 3.05804,2.07974 5.30825,-2.23699 7.8621,-3.15443 12.72561,-9.23204 24.0686,-20.3558 30.7348,-34.44932 0.207,-0.58419 0.60981,-0.73258 0.84419,-1.30749 -4.16418,-0.976 -12.0791,-7.01937 -14.45556,-8.64132 -11.47086,-9.38204 -13.51516,-13.30601 -23.19557,-24.08876 -0.72049,-0.68879 -5.93424,-6.15326 -6.769932,-6.71103 5.933182,3.47721 7.689312,5.79073 10.808302,8.32201 9.0465,10.61014 21.58511,22.49192 33.62462,30.51546 2.96954,-7.18608 7.62766,-13.805 7.10908,-22.38406 -0.26171,-4.34002 -0.54721,-9.15092 -3.8712,-13.00873 -1.09302,-1.5663 -6.54847,-7.99784 -7.79052,-9.51973 -1.31514,0.20858 -10.59741,-9.38929 -23.40682,-12.99041 -0.0106,-0.005 -0.0154,-0.0514 -0.026,-0.0562 -1.89147,-0.8631 -3.77965,-1.56855 -5.79994,-1.79203 -9.60946,-1.75462 -16.883788,3.73266 -21.055581,10.09828 -3.771405,5.50892 -6.035862,11.96274 -7.780797,18.51313 -5.012127,11.30126 -11.793633,21.66641 -19.201423,31.44018 z m 56.566981,-59.21062 c 0.6668,0.30605 18.3894,9.54765 24.40119,16.48396 2.93876,-0.91683 5.80973,-4.77654 7.33384,-9.40242 1.57583,-4.7831 1.76841,-10.28421 0.68814,-12.62007 -0.69358,-1.49973 -1.60012,-2.45673 -2.45153,-3.55409 -0.17549,0.74807 -3.56844,-3.2559 -7.22997,-4.88413 -0.31323,-0.61327 -8.07269,-3.7924 -8.24972,-3.86446 -6.73895,1.51373 -11.57933,5.58739 -14.49195,17.84121 z m 17.03176,-17.45521 c 3.04601,0.95818 6.96834,2.40933 10.61384,5.21409 0.23679,-1.05404 1.22941,-3.52055 1.59583,-4.47677 2.67881,-9.07115 5.87665,-17.960462 10.69128,-25.92485 5.08879,-9.024572 10.96695,-17.560674 16.21263,-26.481867 1.8925,-5.12805 6.24382,-8.787119 8.09023,-13.94763 -0.40551,-2.673568 -3.49881,-5.073673 -6.26679,-5.891777 -2.65085,-0.595418 -6.73726,-1.594141 -7.48003,1.158898 -4.42807,6.924373 -9.31698,13.603277 -12.70558,21.166256 -5.00825,9.572777 -7.81911,20.260578 -11.33909,30.57047 -2.28709,6.002841 -7.01332,12.68027 -9.41232,18.61318 z"
            id="path1621"
-           style="fill:#8f5902;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" />
+           style="fill:#8f5902;fill-opacity:1;fill-rule:evenodd;stroke:none"
+           inkscape:connector-curvature="0" />
         <path
-           d="M 64.52389,193.42766 L 59.966896,184.92767 C 67.193419,176.46251 85.128802,148.77361 85.128802,148.77361 C 85.128802,148.77361 72.36439,182.5249 64.52389,193.42766 z"
+           d="m 64.52389,193.42766 -4.556994,-8.49999 c 7.226523,-8.46516 25.161906,-36.15406 25.161906,-36.15406 0,0 -12.764412,33.75129 -20.604912,44.65405 z"
            id="path3565"
-           style="opacity:0.31730772;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+           style="opacity:0.31730772;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
+           inkscape:connector-curvature="0" />
         <path
-           d="M 146.9924,151.3587 C 136.81468,146.81864 113.52166,131.83429 106.50034,124.34491 C 102.99254,120.6033 110.27813,115.37872 115.40514,117.66577 C 124.15276,121.56791 140.74136,135.03736 148.12429,142.91248 C 151.27048,146.26834 150.68931,153.00781 146.9924,151.3587 z"
+           d="m 146.9924,151.3587 c -10.17772,-4.54006 -33.47074,-19.52441 -40.49206,-27.01379 -3.5078,-3.74161 3.77779,-8.96619 8.9048,-6.67914 8.74762,3.90214 25.33622,17.37159 32.71915,25.24671 3.14619,3.35586 2.56502,10.09533 -1.13189,8.44622 z"
            id="path2541"
-           style="font-size:12px;fill:#d12121;fill-opacity:1;fill-rule:evenodd;stroke:#941717;stroke-width:0.39012098;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1" />
+           style="font-size:12px;fill:#d12121;fill-opacity:1;fill-rule:evenodd;stroke:#941717;stroke-width:0.39012098;stroke-linejoin:bevel;stroke-opacity:1;stroke-dasharray:none"
+           inkscape:connector-curvature="0" />
         <path
-           d="M 73.306243,202.13544 L 68.749249,193.63544 C 75.975769,185.17028 93.91113,157.48138 93.91113,157.48138 C 93.91113,157.48138 81.146746,191.23267 73.306243,202.13544 z"
+           d="m 73.306243,202.13544 -4.556994,-8.5 c 7.22652,-8.46516 25.161881,-36.15406 25.161881,-36.15406 0,0 -12.764384,33.75129 -20.604887,44.65406 z"
            id="path3319"
-           style="opacity:0.31730772;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+           style="opacity:0.31730772;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
+           inkscape:connector-curvature="0" />
         <path
-           d="M 83.411203,211.47843 L 78.950506,203.39761 C 80.942797,197.34598 103.47181,170.4938 103.47181,170.4938 C 103.47181,170.4938 91.903153,200.9662 83.411203,211.47843 z"
+           d="m 83.411203,211.47843 -4.460697,-8.08082 c 1.992291,-6.05163 24.521304,-32.90381 24.521304,-32.90381 0,0 -11.568657,30.4724 -20.060607,40.98463 z"
            id="path3321"
-           style="opacity:0.31730772;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+           style="opacity:0.31730772;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
+           inkscape:connector-curvature="0" />
         <path
-           d="M 96.132952,222.49562 L 87.85467,214.09099 C 95.630905,205.91682 115.71643,178.56932 115.71643,178.56932 C 115.71643,178.56932 104.62487,211.98339 96.132952,222.49562 z"
+           d="m 96.132952,222.49562 -8.278282,-8.40463 c 7.776235,-8.17417 27.86176,-35.52167 27.86176,-35.52167 0,0 -11.09156,33.41407 -19.583478,43.9263 z"
            id="path3323"
-           style="opacity:0.31730772;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+           style="opacity:0.31730772;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
+           inkscape:connector-curvature="0" />
         <path
-           d="M 105.78884,122.14699 L 111.78624,117.54948 C 119.17717,116.92073 147.6818,143.73188 147.6818,143.73188 C 147.6818,143.73188 119.40639,121.21692 105.78884,122.14699 z"
+           d="m 105.78884,122.14699 5.9974,-4.59751 c 7.39093,-0.62875 35.89556,26.1824 35.89556,26.1824 0,0 -28.27541,-22.51496 -41.89296,-21.58489 z"
            id="path3325"
-           style="opacity:0.31730772;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+           style="opacity:0.31730772;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
+           inkscape:connector-curvature="0" />
         <path
-           d="M 169.1472,36.079513 L 178.77052,39.505968 C 161.66587,42.902417 139.0239,107.91963 139.0239,107.91963 C 139.0239,107.91963 151.25487,55.688019 169.1472,36.079513 z"
+           d="m 169.1472,36.079513 9.62332,3.426455 c -17.10465,3.396449 -39.74662,68.413662 -39.74662,68.413662 0,0 12.23097,-52.231611 30.1233,-71.840117 z"
            id="path3324"
-           style="opacity:0.31730772;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+           style="opacity:0.31730772;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
+           inkscape:connector-curvature="0" />
       </g>
     </g>
   </g>
   <g
-     transform="translate(1240.7988,-249.49646)"
+     transform="translate(1208.7988,-249.49646)"
      id="g16489">
     <g
        id="g16229">
       <rect
-         style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
          id="editPLC"
          y="440.85864"
          x="-1060.7988"
@@ -85557,15 +85857,15 @@
          width="24" />
     </g>
     <rect
-       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.83570683;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter19484);enable-background:accumulate"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.83570683;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter19484);enable-background:accumulate"
        id="rect16397"
-       transform="matrix(9.4027353e-2,-1.522803e-2,1.522803e-2,9.4027353e-2,-1062.4584,443.67328)"
+       transform="matrix(0.09402735,-0.01522803,0.01522803,0.09402735,-1062.4584,443.67328)"
        y="15.285714"
        x="39.285713"
        height="202.85715"
        width="151.42857" />
     <rect
-       style="fill:url(#linearGradient16508);fill-opacity:1;fill-rule:nonzero;stroke:#8b8b8b;stroke-width:0.17485557;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="fill:url(#linearGradient16508);fill-opacity:1;fill-rule:nonzero;stroke:#8b8b8b;stroke-width:0.17485557;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="rect16399"
        transform="matrix(0.987138,-0.1598702,0.1598702,0.987138,0,0)"
        y="269.56735"
@@ -85573,7 +85873,7 @@
        height="19.322639"
        width="14.423948" />
     <rect
-       style="fill:#85f785;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="fill:#85f785;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="rect16403"
        transform="matrix(0.987138,-0.1598702,0.1598702,0.987138,0,0)"
        y="270.73697"
@@ -85583,7 +85883,7 @@
        height="2.4448969"
        width="12.22449" />
     <text
-       style="font-size:1.14302945px;font-style:normal;font-weight:normal;fill:#333333;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
+       style="font-size:1.14302945px;font-style:normal;font-weight:normal;fill:#333333;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
        xml:space="preserve"
        id="text17374"
        transform="matrix(0.987138,-0.1598702,0.1598702,0.987138,0,0)"
@@ -85594,11 +85894,12 @@
          y="272.39679"
          x="-1114.1569">Main Program</tspan></text>
     <path
-       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999976;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="path4270"
-       d="M -1053.1533,448.8911 L -1053.197,448.89657 C -1053.1989,448.89744 -1053.2007,448.89835 -1053.2025,448.8993 L -1055.7789,449.31732 C -1055.7798,449.31731 -1055.7807,449.31731 -1055.7816,449.31732 L -1055.8253,449.32551 C -1055.9025,449.33968 -1055.9552,449.41158 -1055.9455,449.48944 L -1055.9401,449.53315 C -1055.9392,449.53499 -1055.9383,449.53681 -1055.9373,449.53862 L -1055.5794,451.73251 L -1055.5767,451.77076 C -1055.5713,451.81114 -1055.5494,451.84751 -1055.5164,451.87129 C -1055.4833,451.89507 -1055.4419,451.90416 -1055.4018,451.89644 L -1055.3581,451.88824 L -1052.7817,451.47023 L -1052.7462,451.46749 C -1052.707,451.4626 -1052.6714,451.44223 -1052.6473,451.41093 C -1052.6232,451.37963 -1052.6126,451.33999 -1052.6178,451.30083 L -1052.6233,451.25712 C -1052.6232,451.2553 -1052.6232,451.25348 -1052.6233,451.25166 L -1052.7681,450.34186 L -1051.4649,450.13149 L -1050.8201,454.12311 C -1050.8133,454.1625 -1050.7909,454.19748 -1050.758,454.22012 C -1050.7251,454.24276 -1050.6844,454.25113 -1050.6452,454.24333 L -1050.5578,454.22693 C -1050.5494,454.22493 -1050.5411,454.22218 -1050.5332,454.21874 L -1050.5305,454.21874 L -1048.6699,453.9182 L -1048.5251,454.81707 C -1048.5251,454.81889 -1048.5251,454.82072 -1048.5251,454.82254 L -1048.5169,454.86352 C -1048.5015,454.93959 -1048.43,454.99085 -1048.353,454.981 L -1048.3093,454.97554 C -1048.3074,454.97466 -1048.3056,454.97375 -1048.3038,454.9728 L -1044.069,454.28704 C -1044.0681,454.28705 -1044.0672,454.28705 -1044.0663,454.28704 L -1044.0226,454.27884 C -1043.9454,454.26468 -1043.8927,454.19278 -1043.9024,454.11492 L -1043.9078,454.0712 C -1043.9087,454.06936 -1043.9096,454.06754 -1043.9105,454.06574 L -1044.263,451.89644 C -1044.263,451.89553 -1044.263,451.89462 -1044.263,451.8937 L -1044.2712,451.84999 C -1044.2866,451.77025 -1044.3634,451.71784 -1044.4433,451.73251 L -1044.487,451.74071 L -1048.7191,452.42647 L -1048.7573,452.4292 C -1048.7965,452.4341 -1048.8322,452.45446 -1048.8563,452.48576 C -1048.8804,452.51706 -1048.891,452.5567 -1048.8857,452.59586 L -1048.8803,452.63957 C -1048.8794,452.64141 -1048.8785,452.64323 -1048.8775,452.64504 L -1048.7327,453.54117 L -1050.4786,453.81985 L -1051.1261,449.83369 C -1051.1389,449.75299 -1051.2148,449.69796 -1051.2955,449.71074 L -1051.3802,449.7244 C -1051.3924,449.72654 -1051.4043,449.73021 -1051.4157,449.73533 C -1051.4175,449.7362 -1051.4193,449.73711 -1051.4211,449.73806 L -1052.8337,449.96483 L -1052.9785,449.05776 C -1052.9794,449.05684 -1052.9803,449.05593 -1052.9812,449.05503 L -1052.9894,449.01132 C -1053.0035,448.93415 -1053.0754,448.88142 -1053.1533,448.8911 z M -1053.3254,449.30639 L -1053.0331,451.12598 L -1055.2352,451.48115 L -1055.5275,449.66156 L -1053.3254,449.30639 z M -1044.61,452.14779 L -1044.3231,453.94279 L -1048.1781,454.56572 L -1048.465,452.77071 L -1044.61,452.14779 z" />
+       d="m -1053.1533,448.8911 -0.044,0.005 c 0,8.7e-4 0,0.002 -0.01,0.003 l -2.5764,0.41802 c -9e-4,-10e-6 0,-10e-6 0,0 l -0.044,0.008 c -0.077,0.0142 -0.1299,0.0861 -0.1202,0.16393 l 0.01,0.0437 c 9e-4,0.002 0,0.004 0,0.005 l 0.3579,2.19389 0,0.0383 c 0.01,0.0404 0.027,0.0768 0.06,0.10053 0.033,0.0238 0.074,0.0329 0.1146,0.0251 l 0.044,-0.008 2.5764,-0.41801 0.035,-0.003 c 0.039,-0.005 0.075,-0.0253 0.099,-0.0566 0.024,-0.0313 0.035,-0.0709 0.03,-0.1101 l -0.01,-0.0437 c 10e-5,-0.002 10e-5,-0.004 0,-0.005 l -0.1448,-0.9098 1.3032,-0.21037 0.6448,3.99162 c 0.01,0.0394 0.029,0.0744 0.062,0.097 0.033,0.0226 0.074,0.031 0.1128,0.0232 l 0.087,-0.0164 c 0.01,-0.002 0.017,-0.005 0.025,-0.008 l 0,0 1.8606,-0.30054 0.1448,0.89887 c 0,0.002 0,0.004 0,0.005 l 0.01,0.041 c 0.015,0.0761 0.087,0.12733 0.1639,0.11748 l 0.044,-0.005 c 0,-8.8e-4 0,-0.002 0.01,-0.003 l 4.2348,-0.68576 c 9e-4,1e-5 0,1e-5 0,0 l 0.044,-0.008 c 0.077,-0.0142 0.1299,-0.0861 0.1202,-0.16392 l -0.01,-0.0437 c -9e-4,-0.002 0,-0.004 0,-0.005 l -0.3525,-2.1693 c 0,-9.1e-4 0,-0.002 0,-0.003 l -0.01,-0.0437 c -0.015,-0.0797 -0.092,-0.13215 -0.1721,-0.11748 l -0.044,0.008 -4.2321,0.68576 -0.038,0.003 c -0.039,0.005 -0.075,0.0253 -0.099,0.0566 -0.024,0.0313 -0.035,0.0709 -0.029,0.1101 l 0.01,0.0437 c 9e-4,0.002 0,0.004 0,0.005 l 0.1448,0.89613 -1.7459,0.27868 -0.6475,-3.98616 c -0.013,-0.0807 -0.089,-0.13573 -0.1694,-0.12295 l -0.085,0.0137 c -0.012,0.002 -0.024,0.006 -0.035,0.0109 0,8.7e-4 0,0.002 -0.01,0.003 l -1.4126,0.22677 -0.1448,-0.90707 c -9e-4,-9.2e-4 0,-0.002 0,-0.003 l -0.01,-0.0437 c -0.014,-0.0772 -0.086,-0.1299 -0.1639,-0.12022 z m -0.1721,0.41529 0.2923,1.81959 -2.2021,0.35517 -0.2923,-1.81959 2.2021,-0.35517 z m 8.7154,2.8414 0.2869,1.795 -3.855,0.62293 -0.2869,-1.79501 3.855,-0.62292 z"
+       inkscape:connector-curvature="0" />
     <text
-       style="font-size:1.51333988px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
+       style="font-size:1.51333988px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
        xml:space="preserve"
        id="text19318"
        transform="matrix(0.987138,-0.1598702,0.1598702,0.987138,0,0)"
@@ -85608,7 +85909,7 @@
          y="276.60452"
          x="-1113.516">IN</tspan></text>
     <text
-       style="font-size:1.51333988px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-family:Bitstream Vera Sans"
+       style="font-size:1.51333988px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
        xml:space="preserve"
        id="text19324"
        transform="matrix(0.987138,-0.1598702,0.1598702,0.987138,0,0)"
@@ -85618,34 +85919,39 @@
          y="280.78931"
          x="-1107.0702">OUT</tspan></text>
     <path
-       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:6.50510311;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4228);enable-background:accumulate"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:6.50510311;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4228);enable-background:accumulate"
        id="path13903"
-       transform="matrix(4.8425382e-2,1.4538951e-2,-1.4538951e-2,4.8425382e-2,-1038.9665,455.43377)"
-       d="M -47.371749,-132.80209 L -63.533979,124.06495 L -65.992851,163.14392 L -105.07182,160.68505 L -361.93886,144.52282 L -359.47999,105.44385 L -102.61295,121.60608 L -86.450719,-135.26096 L -47.371749,-132.80209 z" />
+       transform="matrix(0.04842538,0.01453895,-0.01453895,0.04842538,-1038.9665,455.43377)"
+       d="m -47.371749,-132.80209 -16.16223,256.86704 -2.458872,39.07897 -39.078969,-2.45887 -256.86704,-16.16223 2.45887,-39.07897 256.86704,16.16223 16.162231,-256.86704 39.07897,2.45887 z"
+       inkscape:connector-curvature="0" />
     <path
-       style="fill:url(#linearGradient16510);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient16512);stroke-width:0.09281488;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="fill:url(#linearGradient16510);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient16512);stroke-width:0.09281488;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="rect9996"
-       d="M -1039.3297,448.31404 L -1043.847,460.51794 L -1044.5342,462.37461 L -1046.3909,461.68737 L -1058.5948,457.17013 L -1057.9075,455.31346 L -1045.7036,459.8307 L -1041.1864,447.6268 L -1039.3297,448.31404 z" />
+       d="m -1039.3297,448.31404 -4.5173,12.2039 -0.6872,1.85667 -1.8567,-0.68724 -12.2039,-4.51724 0.6873,-1.85667 12.2039,4.51724 4.5172,-12.2039 1.8567,0.68724 z"
+       inkscape:connector-curvature="0" />
     <path
-       style="opacity:0.28440372;fill:url(#linearGradient16514);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient16516);stroke-width:0.09281488;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="opacity:0.28440372;fill:url(#linearGradient16514);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient16516);stroke-width:0.09281488;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="path15855"
-       d="M -1039.3297,448.31404 L -1043.847,460.51794 L -1044.5342,462.37461 L -1046.3909,461.68737 L -1058.5948,457.17013 L -1057.9075,455.31346 L -1045.7036,459.8307 L -1041.1864,447.6268 L -1039.3297,448.31404 z" />
+       d="m -1039.3297,448.31404 -4.5173,12.2039 -0.6872,1.85667 -1.8567,-0.68724 -12.2039,-4.51724 0.6873,-1.85667 12.2039,4.51724 4.5172,-12.2039 1.8567,0.68724 z"
+       inkscape:connector-curvature="0" />
     <path
-       style="fill:url(#linearGradient16518);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient16520);stroke-width:0.04640744;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="fill:url(#linearGradient16518);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient16520);stroke-width:0.04640744;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="rect15859"
-       d="M -1057.5079,455.55417 L -1057.9349,456.71868 L -1057.9097,456.72793 L -1057.4827,455.56341 L -1057.5079,455.55417 z M -1057.1148,455.6983 L -1057.3291,456.28278 L -1057.3039,456.29203 L -1057.0896,455.70755 L -1057.1148,455.6983 z M -1056.7232,455.84189 L -1056.9375,456.42637 L -1056.9108,456.43616 L -1056.6965,455.85168 L -1056.7232,455.84189 z M -1056.3301,455.98602 L -1056.5444,456.57051 L -1056.5191,456.57975 L -1056.3048,455.99527 L -1056.3301,455.98602 z M -1055.937,456.13016 L -1056.1512,456.71464 L -1056.126,456.72389 L -1055.9117,456.1394 L -1055.937,456.13016 z M -1055.5438,456.27429 L -1055.9708,457.43881 L -1055.9456,457.44805 L -1055.5186,456.28354 L -1055.5438,456.27429 z M -1055.1507,456.41842 L -1055.365,457.00291 L -1055.3398,457.01215 L -1055.1255,456.42767 L -1055.1507,456.41842 z M -1054.7591,456.56201 L -1054.9734,457.1465 L -1054.9467,457.15629 L -1054.7324,456.5718 L -1054.7591,456.56201 z M -1054.366,456.70615 L -1054.5803,457.29063 L -1054.555,457.29988 L -1054.3407,456.71539 L -1054.366,456.70615 z M -1053.9728,456.85028 L -1054.1871,457.43476 L -1054.1619,457.44401 L -1053.9476,456.85953 L -1053.9728,456.85028 z M -1053.5797,456.99441 L -1054.0067,458.15893 L -1053.9815,458.16818 L -1053.5545,457.00366 L -1053.5797,456.99441 z M -1053.1866,457.13855 L -1053.4009,457.72303 L -1053.3757,457.73228 L -1053.1614,457.14779 L -1053.1866,457.13855 z M -1052.7935,457.28268 L -1053.0078,457.86716 L -1052.9826,457.87641 L -1052.7683,457.29193 L -1052.7935,457.28268 z M -1052.4019,457.42627 L -1052.6162,458.01075 L -1052.5895,458.02054 L -1052.3752,457.43606 L -1052.4019,457.42627 z M -1052.0087,457.5704 L -1052.223,458.15489 L -1052.1978,458.16413 L -1051.9835,457.57965 L -1052.0087,457.5704 z M -1051.6156,457.71454 L -1052.0426,458.87905 L -1052.0174,458.8883 L -1051.5904,457.72378 L -1051.6156,457.71454 z M -1051.2225,457.85867 L -1051.4368,458.44315 L -1051.4116,458.4524 L -1051.1973,457.86792 L -1051.2225,457.85867 z M -1050.8294,458.0028 L -1051.0437,458.58729 L -1051.0185,458.59653 L -1050.8042,458.01205 L -1050.8294,458.0028 z M -1050.4378,458.14639 L -1050.6521,458.73088 L -1050.6254,458.74067 L -1050.4111,458.15618 L -1050.4378,458.14639 z M -1050.0446,458.29053 L -1050.2589,458.87501 L -1050.2337,458.88426 L -1050.0194,458.29977 L -1050.0446,458.29053 z M -1049.6515,458.43466 L -1050.0785,459.59918 L -1050.0533,459.60842 L -1049.6263,458.44391 L -1049.6515,458.43466 z M -1049.2584,458.57879 L -1049.4727,459.16328 L -1049.4475,459.17252 L -1049.2332,458.58804 L -1049.2584,458.57879 z M -1048.8653,458.72293 L -1049.0796,459.30741 L -1049.0544,459.31666 L -1048.8401,458.73217 L -1048.8653,458.72293 z M -1048.4737,458.86652 L -1048.688,459.451 L -1048.6613,459.46079 L -1048.447,458.87631 L -1048.4737,458.86652 z M -1048.0805,459.01065 L -1048.2948,459.59513 L -1048.2696,459.60438 L -1048.0553,459.0199 L -1048.0805,459.01065 z M -1047.6874,459.15478 L -1048.1144,460.3193 L -1048.0892,460.32855 L -1047.6622,459.16403 L -1047.6874,459.15478 z M -1047.2943,459.29892 L -1047.5086,459.8834 L -1047.4834,459.89265 L -1047.2691,459.30816 L -1047.2943,459.29892 z M -1046.9012,459.44305 L -1047.1155,460.02753 L -1047.0903,460.03678 L -1046.876,459.4523 L -1046.9012,459.44305 z M -1046.5096,459.58664 L -1046.7239,460.17112 L -1046.6972,460.18091 L -1046.4829,459.59643 L -1046.5096,459.58664 z M -1046.1164,459.73077 L -1046.3307,460.31526 L -1046.3055,460.3245 L -1046.0912,459.74002 L -1046.1164,459.73077 z M -1045.7233,459.87491 L -1046.1503,461.03942 L -1046.1251,461.04867 L -1045.6981,459.88415 L -1045.7233,459.87491 z" />
+       d="m -1057.5079,455.55417 -0.427,1.16451 0.025,0.009 0.427,-1.16452 -0.025,-0.009 z m 0.3931,0.14413 -0.2143,0.58448 0.025,0.009 0.2143,-0.58448 -0.025,-0.009 z m 0.3916,0.14359 -0.2143,0.58448 0.027,0.01 0.2143,-0.58448 -0.027,-0.01 z m 0.3931,0.14413 -0.2143,0.58449 0.025,0.009 0.2143,-0.58448 -0.025,-0.009 z m 0.3931,0.14414 -0.2142,0.58448 0.025,0.009 0.2143,-0.58449 -0.025,-0.009 z m 0.3932,0.14413 -0.427,1.16452 0.025,0.009 0.427,-1.16451 -0.025,-0.009 z m 0.3931,0.14413 -0.2143,0.58449 0.025,0.009 0.2143,-0.58448 -0.025,-0.009 z m 0.3916,0.14359 -0.2143,0.58449 0.027,0.01 0.2143,-0.58449 -0.027,-0.01 z m 0.3931,0.14414 -0.2143,0.58448 0.025,0.009 0.2143,-0.58449 -0.025,-0.009 z m 0.3932,0.14413 -0.2143,0.58448 0.025,0.009 0.2143,-0.58448 -0.025,-0.009 z m 0.3931,0.14413 -0.427,1.16452 0.025,0.009 0.427,-1.16452 -0.025,-0.009 z m 0.3931,0.14414 -0.2143,0.58448 0.025,0.009 0.2143,-0.58449 -0.025,-0.009 z m 0.3931,0.14413 -0.2143,0.58448 0.025,0.009 0.2143,-0.58448 -0.025,-0.009 z m 0.3916,0.14359 -0.2143,0.58448 0.027,0.01 0.2143,-0.58448 -0.027,-0.01 z m 0.3932,0.14413 -0.2143,0.58449 0.025,0.009 0.2143,-0.58448 -0.025,-0.009 z m 0.3931,0.14414 -0.427,1.16451 0.025,0.009 0.427,-1.16452 -0.025,-0.009 z m 0.3931,0.14413 -0.2143,0.58448 0.025,0.009 0.2143,-0.58448 -0.025,-0.009 z m 0.3931,0.14413 -0.2143,0.58449 0.025,0.009 0.2143,-0.58448 -0.025,-0.009 z m 0.3916,0.14359 -0.2143,0.58449 0.027,0.01 0.2143,-0.58449 -0.027,-0.01 z m 0.3932,0.14414 -0.2143,0.58448 0.025,0.009 0.2143,-0.58449 -0.025,-0.009 z m 0.3931,0.14413 -0.427,1.16452 0.025,0.009 0.427,-1.16451 -0.025,-0.009 z m 0.3931,0.14413 -0.2143,0.58449 0.025,0.009 0.2143,-0.58448 -0.025,-0.009 z m 0.3931,0.14414 -0.2143,0.58448 0.025,0.009 0.2143,-0.58449 -0.025,-0.009 z m 0.3916,0.14359 -0.2143,0.58448 0.027,0.01 0.2143,-0.58448 -0.027,-0.01 z m 0.3932,0.14413 -0.2143,0.58448 0.025,0.009 0.2143,-0.58448 -0.025,-0.009 z m 0.3931,0.14413 -0.427,1.16452 0.025,0.009 0.427,-1.16452 -0.025,-0.009 z m 0.3931,0.14414 -0.2143,0.58448 0.025,0.009 0.2143,-0.58449 -0.025,-0.009 z m 0.3931,0.14413 -0.2143,0.58448 0.025,0.009 0.2143,-0.58448 -0.025,-0.009 z m 0.3916,0.14359 -0.2143,0.58448 0.027,0.01 0.2143,-0.58448 -0.027,-0.01 z m 0.3932,0.14413 -0.2143,0.58449 0.025,0.009 0.2143,-0.58448 -0.025,-0.009 z m 0.3931,0.14414 -0.427,1.16451 0.025,0.009 0.427,-1.16452 -0.025,-0.009 z"
+       inkscape:connector-curvature="0" />
     <path
-       style="opacity:0.42889907;fill:url(#linearGradient16522);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient16524);stroke-width:0.04640744;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="opacity:0.42889907;fill:url(#linearGradient16522);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient16524);stroke-width:0.04640744;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="path16325"
-       d="M -1045.6271,459.85458 L -1044.4626,460.28154 L -1044.4534,460.25632 L -1045.6179,459.82936 L -1045.6271,459.85458 z M -1045.483,459.46147 L -1044.8985,459.67576 L -1044.8893,459.65054 L -1045.4737,459.43625 L -1045.483,459.46147 z M -1045.3394,459.06983 L -1044.7549,459.28413 L -1044.7451,459.25743 L -1045.3296,459.04313 L -1045.3394,459.06983 z M -1045.1953,458.67671 L -1044.6108,458.89101 L -1044.6015,458.86579 L -1045.186,458.6515 L -1045.1953,458.67671 z M -1045.0511,458.2836 L -1044.4666,458.49789 L -1044.4574,458.47267 L -1045.0419,458.25838 L -1045.0511,458.2836 z M -1044.907,457.89048 L -1043.7425,458.31744 L -1043.7332,458.29222 L -1044.8977,457.86526 L -1044.907,457.89048 z M -1044.7629,457.49736 L -1044.1784,457.71166 L -1044.1691,457.68644 L -1044.7536,457.47214 L -1044.7629,457.49736 z M -1044.6193,457.10573 L -1044.0348,457.32003 L -1044.025,457.29332 L -1044.6095,457.07903 L -1044.6193,457.10573 z M -1044.4751,456.71261 L -1043.8907,456.92691 L -1043.8814,456.90169 L -1044.4659,456.68739 L -1044.4751,456.71261 z M -1044.331,456.3195 L -1043.7465,456.53379 L -1043.7373,456.50857 L -1044.3218,456.29428 L -1044.331,456.3195 z M -1044.1869,455.92638 L -1043.0224,456.35334 L -1043.0131,456.32812 L -1044.1776,455.90116 L -1044.1869,455.92638 z M -1044.0427,455.53326 L -1043.4583,455.74756 L -1043.449,455.72234 L -1044.0335,455.50804 L -1044.0427,455.53326 z M -1043.8986,455.14014 L -1043.3141,455.35444 L -1043.3049,455.32922 L -1043.8894,455.11493 L -1043.8986,455.14014 z M -1043.755,454.74851 L -1043.1705,454.96281 L -1043.1607,454.9361 L -1043.7452,454.72181 L -1043.755,454.74851 z M -1043.6109,454.35539 L -1043.0264,454.56969 L -1043.0172,454.54447 L -1043.6016,454.33017 L -1043.6109,454.35539 z M -1043.4667,453.96228 L -1042.3022,454.38924 L -1042.293,454.36402 L -1043.4575,453.93706 L -1043.4667,453.96228 z M -1043.3226,453.56916 L -1042.7381,453.78346 L -1042.7289,453.75824 L -1043.3134,453.54394 L -1043.3226,453.56916 z M -1043.1785,453.17604 L -1042.594,453.39034 L -1042.5848,453.36512 L -1043.1692,453.15082 L -1043.1785,453.17604 z M -1043.0349,452.78441 L -1042.4504,452.9987 L -1042.4406,452.972 L -1043.0251,452.75771 L -1043.0349,452.78441 z M -1042.8908,452.39129 L -1042.3063,452.60559 L -1042.297,452.58037 L -1042.8815,452.36607 L -1042.8908,452.39129 z M -1042.7466,451.99817 L -1041.5821,452.42513 L -1041.5729,452.39992 L -1042.7374,451.97295 L -1042.7466,451.99817 z M -1042.6025,451.60506 L -1042.018,451.81935 L -1042.0088,451.79413 L -1042.5932,451.57984 L -1042.6025,451.60506 z M -1042.4584,451.21194 L -1041.8739,451.42624 L -1041.8646,451.40102 L -1042.4491,451.18672 L -1042.4584,451.21194 z M -1042.3148,450.82031 L -1041.7303,451.0346 L -1041.7205,451.0079 L -1042.305,450.7936 L -1042.3148,450.82031 z M -1042.1706,450.42719 L -1041.5862,450.64148 L -1041.5769,450.61627 L -1042.1614,450.40197 L -1042.1706,450.42719 z M -1042.0265,450.03407 L -1040.862,450.46103 L -1040.8527,450.43581 L -1042.0173,450.00885 L -1042.0265,450.03407 z M -1041.8824,449.64095 L -1041.2979,449.85525 L -1041.2886,449.83003 L -1041.8731,449.61573 L -1041.8824,449.64095 z M -1041.7382,449.24784 L -1041.1538,449.46213 L -1041.1445,449.43692 L -1041.729,449.22262 L -1041.7382,449.24784 z M -1041.5946,448.8562 L -1041.0102,449.0705 L -1041.0004,449.0438 L -1041.5849,448.8295 L -1041.5946,448.8562 z M -1041.4505,448.46309 L -1040.866,448.67738 L -1040.8568,448.65216 L -1041.4413,448.43787 L -1041.4505,448.46309 z M -1041.3064,448.06997 L -1040.1419,448.49693 L -1040.1326,448.47171 L -1041.2971,448.04475 L -1041.3064,448.06997 z" />
+       d="m -1045.6271,459.85458 1.1645,0.42696 0.01,-0.0252 -1.1645,-0.42696 -0.01,0.0252 z m 0.1441,-0.39311 0.5845,0.21429 0.01,-0.0252 -0.5844,-0.21429 -0.01,0.0252 z m 0.1436,-0.39164 0.5845,0.2143 0.01,-0.0267 -0.5845,-0.2143 -0.01,0.0267 z m 0.1441,-0.39312 0.5845,0.2143 0.01,-0.0252 -0.5845,-0.21429 -0.01,0.0252 z m 0.1442,-0.39311 0.5845,0.21429 0.01,-0.0252 -0.5845,-0.21429 -0.01,0.0252 z m 0.1441,-0.39312 1.1645,0.42696 0.01,-0.0252 -1.1645,-0.42696 -0.01,0.0252 z m 0.1441,-0.39312 0.5845,0.2143 0.01,-0.0252 -0.5845,-0.2143 -0.01,0.0252 z m 0.1436,-0.39163 0.5845,0.2143 0.01,-0.0267 -0.5845,-0.21429 -0.01,0.0267 z m 0.1442,-0.39312 0.5844,0.2143 0.01,-0.0252 -0.5845,-0.2143 -0.01,0.0252 z m 0.1441,-0.39311 0.5845,0.21429 0.01,-0.0252 -0.5845,-0.21429 -0.01,0.0252 z m 0.1441,-0.39312 1.1645,0.42696 0.01,-0.0252 -1.1645,-0.42696 -0.01,0.0252 z m 0.1442,-0.39312 0.5844,0.2143 0.01,-0.0252 -0.5845,-0.2143 -0.01,0.0252 z m 0.1441,-0.39312 0.5845,0.2143 0.01,-0.0252 -0.5845,-0.21429 -0.01,0.0252 z m 0.1436,-0.39163 0.5845,0.2143 0.01,-0.0267 -0.5845,-0.21429 -0.01,0.0267 z m 0.1441,-0.39312 0.5845,0.2143 0.01,-0.0252 -0.5844,-0.2143 -0.01,0.0252 z m 0.1442,-0.39311 1.1645,0.42696 0.01,-0.0252 -1.1645,-0.42696 -0.01,0.0252 z m 0.1441,-0.39312 0.5845,0.2143 0.01,-0.0252 -0.5845,-0.2143 -0.01,0.0252 z m 0.1441,-0.39312 0.5845,0.2143 0.01,-0.0252 -0.5844,-0.2143 -0.01,0.0252 z m 0.1436,-0.39163 0.5845,0.21429 0.01,-0.0267 -0.5845,-0.21429 -0.01,0.0267 z m 0.1441,-0.39312 0.5845,0.2143 0.01,-0.0252 -0.5845,-0.2143 -0.01,0.0252 z m 0.1442,-0.39312 1.1645,0.42696 0.01,-0.0252 -1.1645,-0.42697 -0.01,0.0252 z m 0.1441,-0.39311 0.5845,0.21429 0.01,-0.0252 -0.5844,-0.21429 -0.01,0.0252 z m 0.1441,-0.39312 0.5845,0.2143 0.01,-0.0252 -0.5845,-0.2143 -0.01,0.0252 z m 0.1436,-0.39163 0.5845,0.21429 0.01,-0.0267 -0.5845,-0.2143 -0.01,0.0267 z m 0.1442,-0.39312 0.5844,0.21429 0.01,-0.0252 -0.5845,-0.2143 -0.01,0.0252 z m 0.1441,-0.39312 1.1645,0.42696 0.01,-0.0252 -1.1646,-0.42696 -0.01,0.0252 z m 0.1441,-0.39312 0.5845,0.2143 0.01,-0.0252 -0.5845,-0.2143 -0.01,0.0252 z m 0.1442,-0.39311 0.5844,0.21429 0.01,-0.0252 -0.5845,-0.2143 -0.01,0.0252 z m 0.1436,-0.39164 0.5844,0.2143 0.01,-0.0267 -0.5845,-0.2143 -0.01,0.0267 z m 0.1441,-0.39311 0.5845,0.21429 0.01,-0.0252 -0.5845,-0.21429 -0.01,0.0252 z m 0.1441,-0.39312 1.1645,0.42696 0.01,-0.0252 -1.1645,-0.42696 -0.01,0.0252 z"
+       inkscape:connector-curvature="0" />
   </g>
   <g
-     transform="translate(1601.0897,-400.03854)"
+     transform="translate(1695.0897,-400.03854)"
      id="g16620">
     <g
        id="g16343">
       <rect
-         style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
          id="Run"
          y="591.4007"
          x="-1061.0897"
@@ -85655,15 +85961,16 @@
     <path
        style="fill:#160379;fill-rule:evenodd"
        id="path14701"
-       d="M -1043.3148,591.51852 C -1042.1671,591.51852 -1041.2381,592.51591 -1041.2381,593.74961 C -1041.2381,594.98052 -1042.1671,595.97828 -1043.3148,595.97828 C -1044.4596,595.97828 -1045.3867,594.98052 -1045.3867,593.74961 C -1045.3867,592.51591 -1044.4596,591.51852 -1043.3148,591.51852 z M -1048.4282,594.44426 C -1047.4919,594.46171 -1046.5801,594.73882 -1046.0331,595.02798 C -1045.4412,595.33917 -1045.4725,595.99227 -1045.1141,596.27013 C -1044.75,596.52298 -1044.2166,596.30364 -1043.8888,596.59817 C -1043.5554,596.88714 -1043.3383,597.38735 -1043.1411,598.02366 C -1042.941,598.65718 -1043.2194,599.51581 -1042.6997,600.36329 C -1042.1579,601.20798 -1041.1693,601.98435 -1039.9838,603.03094 C -1039.7383,603.24774 -1039.4784,603.67038 -1039.5738,603.94508 C -1039.7674,604.50302 -1040.1089,604.66757 -1040.459,604.7121 C -1040.8091,604.74545 -1041.1452,604.49515 -1041.6481,604.16458 C -1042.14,603.81725 -1042.8525,603.29754 -1043.4137,602.70291 C -1043.9722,602.10273 -1044.4846,601.4192 -1044.979,600.61895 L -1046.3032,602.37247 C -1045.4751,603.03656 -1044.7728,603.68364 -1044.1614,604.34789 C -1043.5363,605.00904 -1042.891,605.58171 -1042.6659,606.32089 C -1042.4436,607.04889 -1042.5963,607.49919 -1042.8686,608.73288 C -1043.1436,609.97493 -1043.8931,612.61785 -1044.2989,613.70159 C -1044.6934,614.763 -1044.8709,614.98822 -1045.2516,615.12708 C -1045.6323,615.25775 -1046.3979,615.17954 -1046.5758,614.50719 C -1046.7396,613.82374 -1046.4196,612.25651 -1046.2695,611.07011 C -1046.1167,609.87237 -1045.929,608.683 -1045.693,607.41594 L -1048.4475,605.33439 C -1050.0729,607.62951 -1051.3606,609.44427 -1052.3887,610.85301 C -1053.4056,612.24789 -1053.9336,613.01256 -1054.5281,613.70159 C -1055.1089,614.38782 -1055.4351,614.80205 -1055.8909,614.94375 C -1056.3466,615.06872 -1057.1123,614.96846 -1057.2151,614.47102 C -1057.2957,613.96539 -1057.1611,613.44582 -1056.3998,611.94807 C -1055.6162,610.42825 -1054.0144,607.99671 -1052.6251,605.47911 C -1051.2276,602.95351 -1049.7723,600.14902 -1048.1412,596.92861 C -1048.9386,596.61185 -1049.7389,596.5703 -1050.5532,596.78147 C -1051.3756,596.99266 -1052.3594,597.95412 -1053.0013,598.20696 C -1053.6348,598.44592 -1054.0888,598.45432 -1054.2917,598.24314 C -1054.4806,598.02363 -1054.5035,597.44543 -1054.1229,596.92861 C -1053.7201,596.40067 -1052.9063,595.5533 -1051.9811,595.1365 C -1051.0501,594.71693 -1049.6111,594.46093 -1048.6163,594.44426 C -1048.5538,594.44305 -1048.4906,594.44309 -1048.4282,594.44426 z" />
+       d="m -1043.3148,591.51852 c 1.1477,0 2.0767,0.99739 2.0767,2.23109 0,1.23091 -0.929,2.22867 -2.0767,2.22867 -1.1448,0 -2.0719,-0.99776 -2.0719,-2.22867 0,-1.2337 0.9271,-2.23109 2.0719,-2.23109 z m -5.1134,2.92574 c 0.9363,0.0175 1.8481,0.29456 2.3951,0.58372 0.5919,0.31119 0.5606,0.96429 0.919,1.24215 0.3641,0.25285 0.8975,0.0335 1.2253,0.32804 0.3334,0.28897 0.5505,0.78918 0.7477,1.42549 0.2001,0.63352 -0.078,1.49215 0.4414,2.33963 0.5418,0.84469 1.5304,1.62106 2.7159,2.66765 0.2455,0.2168 0.5054,0.63944 0.41,0.91414 -0.1936,0.55794 -0.5351,0.72249 -0.8852,0.76702 -0.3501,0.0334 -0.6862,-0.21695 -1.1891,-0.54752 -0.4919,-0.34733 -1.2044,-0.86704 -1.7656,-1.46167 -0.5585,-0.60018 -1.0709,-1.28371 -1.5653,-2.08396 l -1.3242,1.75352 c 0.8281,0.66409 1.5304,1.31117 2.1418,1.97542 0.6251,0.66115 1.2704,1.23382 1.4955,1.973 0.2223,0.728 0.07,1.1783 -0.2027,2.41199 -0.275,1.24205 -1.0245,3.88497 -1.4303,4.96871 -0.3945,1.06141 -0.572,1.28663 -0.9527,1.42549 -0.3807,0.13067 -1.1463,0.0525 -1.3242,-0.61989 -0.1638,-0.68345 0.1562,-2.25068 0.3063,-3.43708 0.1528,-1.19774 0.3405,-2.38711 0.5765,-3.65417 l -2.7545,-2.08155 c -1.6254,2.29512 -2.9131,4.10988 -3.9412,5.51862 -1.0169,1.39488 -1.5449,2.15955 -2.1394,2.84858 -0.5808,0.68623 -0.907,1.10046 -1.3628,1.24216 -0.4557,0.12497 -1.2214,0.0247 -1.3242,-0.47273 -0.081,-0.50563 0.054,-1.0252 0.8153,-2.52295 0.7836,-1.51982 2.3854,-3.95136 3.7747,-6.46896 1.3975,-2.5256 2.8528,-5.33009 4.4839,-8.5505 -0.7974,-0.31676 -1.5977,-0.35831 -2.412,-0.14714 -0.8224,0.21119 -1.8062,1.17265 -2.4481,1.42549 -0.6335,0.23896 -1.0875,0.24736 -1.2904,0.0362 -0.1889,-0.21951 -0.2118,-0.79771 0.1688,-1.31453 0.4028,-0.52794 1.2166,-1.37531 2.1418,-1.79211 0.931,-0.41957 2.37,-0.67557 3.3648,-0.69224 0.062,-0.001 0.1257,-0.001 0.1881,0 z"
+       inkscape:connector-curvature="0" />
   </g>
   <g
-     transform="translate(1480.1847,-369.94418)"
+     transform="translate(1560.1847,-369.94418)"
      id="g16552">
     <g
        id="g16340">
       <rect
-         style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
          id="NetworkEdit"
          y="561.30634"
          x="-1061.1847"
@@ -85677,19 +85984,21 @@
          id="g9192"
          transform="matrix(0.1559743,0,0,0.1559743,-2069.3916,1123.0816)">
         <path
-           style="fill:url(#linearGradient16604);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.7415247;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+           style="fill:url(#linearGradient16604);fill-opacity:1;fill-rule:evenodd;stroke:none"
            id="path10587"
            transform="translate(155,579.35335)"
-           d="M -512.21875,33.03125 L -826.0625,157.4375 L -826.0625,161.59375 L -709.90625,115.65625 L -673.90625,129.84375 L -672.5625,126.375 L -704.84375,113.625 L -656.96875,94.59375 L -629.65625,83.78125 L -593.65625,98 L -592.3125,94.53125 L -624.59375,81.78125 L -510.8125,36.53125 L -512.21875,33.03125 z" />
+           d="m -512.21875,33.03125 -313.84375,124.40625 0,4.15625 116.15625,-45.9375 36,14.1875 1.34375,-3.46875 -32.28125,-12.75 47.875,-19.03125 27.3125,-10.8125 36,14.21875 1.34375,-3.46875 -32.28125,-12.75 113.78125,-45.25 -1.40625,-3.5 z"
+           inkscape:connector-curvature="0" />
         <path
-           style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient16606);stroke-width:1.0106318;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+           style="fill:none;stroke:url(#linearGradient16606);stroke-width:1.0106318;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
            id="path8200"
-           d="M -660.24451,734.57791 L -356.6252,614.08615" />
+           d="M -660.24451,734.57791 -356.6252,614.08615"
+           inkscape:connector-curvature="0" />
         <g
            id="g5077"
-           transform="matrix(9.090112e-2,0,0,9.090112e-2,-708.74866,934.66705)">
+           transform="matrix(0.09090112,0,0,0.09090112,-708.74866,934.66705)">
           <rect
-             style="opacity:1;fill:#3d993d;fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+             style="fill:#3d993d;fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
              id="rect5079"
              transform="matrix(0.926956,0.375171,0,1,0,0)"
              y="-2666.4033"
@@ -85697,7 +86006,7 @@
              height="419.39819"
              width="996.81232" />
           <rect
-             style="opacity:1;fill:url(#linearGradient16608);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+             style="fill:url(#linearGradient16608);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
              id="rect5081"
              transform="matrix(0.929224,-0.369517,0,1,0,0)"
              y="-1753.9264"
@@ -85705,7 +86014,7 @@
              height="420.25934"
              width="593.28876" />
           <rect
-             style="opacity:1;fill:url(#linearGradient16610);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+             style="fill:url(#linearGradient16610);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
              id="rect5083"
              transform="matrix(0.926288,0.376817,-0.92919,0.369603,0,0)"
              y="-4162.4521"
@@ -85716,34 +86025,40 @@
              id="g5085"
              transform="matrix(1,0.428039,0,1,508,-889.8732)">
             <path
-               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible"
                id="path5087"
-               d="M -171.2884,-1442.3646 L -193.54603,-1442.3646 C -233.29689,-1442.3646 -261.95449,-1409.0137 -261.95449,-1368.5517 C -261.95449,-1327.8764 -233.22578,-1294.4544 -193.54603,-1294.4544 L -171.2884,-1294.4544 L -171.2884,-1330.0098 L -186.71941,-1330.0098 C -207.48372,-1330.0098 -223.55473,-1342.5252 -223.55473,-1368.5517 C -223.55473,-1394.5782 -207.48372,-1406.8093 -186.71941,-1406.8093 L -171.2884,-1406.8093 L -171.2884,-1442.3646 z" />
+               d="m -171.2884,-1442.3646 -22.25763,0 c -39.75086,0 -68.40846,33.3509 -68.40846,73.8129 0,40.6753 28.72871,74.0973 68.40846,74.0973 l 22.25763,0 0,-35.5554 -15.43101,0 c -20.76431,0 -36.83532,-12.5154 -36.83532,-38.5419 0,-26.0265 16.07101,-38.2576 36.83532,-38.2576 l 15.43101,0 0,-35.5553 z"
+               inkscape:connector-curvature="0" />
             <path
-               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible"
                id="path5089"
-               d="M -103.37772,-1294.4544 L -103.37772,-1393.5116 C -103.37772,-1404.5337 -97.546644,-1411.5026 -88.586701,-1411.5026 C -79.484536,-1411.5026 -73.511241,-1404.3915 -73.511241,-1393.5116 L -73.511241,-1379.7872 L -96.622205,-1379.7872 L -96.622205,-1346.3652 L -73.511241,-1346.3652 L -73.511241,-1294.4544 L -36.533698,-1294.4544 L -36.533698,-1391.8049 C -36.533698,-1423.5203 -57.582453,-1444.9246 -88.586701,-1444.9246 C -119.51984,-1444.9246 -140.35526,-1423.4492 -140.35526,-1391.8049 L -140.35526,-1294.4544 L -103.37772,-1294.4544 z" />
+               d="m -103.37772,-1294.4544 0,-99.0572 c 0,-11.0221 5.831076,-17.991 14.791019,-17.991 9.102165,0 15.07546,7.1111 15.07546,17.991 l 0,13.7244 -23.110964,0 0,33.422 23.110964,0 0,51.9108 36.977543,0 0,-97.3505 c 0,-31.7154 -21.048755,-53.1197 -52.053003,-53.1197 -30.933139,0 -51.768559,21.4754 -51.768559,53.1197 l 0,97.3505 36.97754,0 z"
+               inkscape:connector-curvature="0" />
             <path
-               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible"
                id="path5091"
-               d="M 34.576962,-1294.4544 L 34.576962,-1381.2094 L 34.576962,-1381.2094 L 68.923411,-1315.2187 C 78.594461,-1296.3744 85.634416,-1291.8944 95.163245,-1291.8944 C 104.40763,-1291.8944 114.93201,-1299.9299 114.93201,-1313.5121 L 114.93201,-1442.3646 L 77.954465,-1442.3646 L 77.954465,-1364.2851 L 77.38558,-1364.2851 L 44.532455,-1429.4936 C 39.056934,-1440.3024 31.661425,-1444.9246 19.145949,-1444.9246 C 6.7015837,-1444.9246 -2.4005808,-1436.5335 -2.4005808,-1424.8003 L -2.4005808,-1294.4544 L 34.576962,-1294.4544 z" />
+               d="m 34.576962,-1294.4544 0,-86.755 0,0 34.346449,65.9907 c 9.67105,18.8443 16.711005,23.3243 26.239834,23.3243 9.244385,0 19.768765,-8.0355 19.768765,-21.6177 l 0,-128.8525 -36.977545,0 0,78.0795 -0.568885,0 -32.853125,-65.2085 c -5.475521,-10.8088 -12.87103,-15.431 -25.386506,-15.431 -12.4443653,0 -21.5465298,8.3911 -21.5465298,20.1243 l 0,130.3459 36.9775428,0 z"
+               inkscape:connector-curvature="0" />
             <path
-               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Exmouth"
+               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Exmouth"
                id="path5093"
-               d="M 252.34055,-1353.787 L 261.74631,-1354.8885 C 268.4121,-1362.9102 273.7505,-1366.921 277.76151,-1366.9211 C 280.47292,-1366.921 281.82871,-1365.8195 281.82886,-1363.6164 C 281.82871,-1361.0742 279.68205,-1358.6451 275.38889,-1356.3291 C 272.05577,-1354.4648 268.77929,-1353.222 265.55945,-1352.6006 C 264.09054,-1349.2111 262.62178,-1345.7934 261.15315,-1342.3475 C 258.89338,-1337.8282 256.549,-1335.5686 254.12002,-1335.5686 C 253.55498,-1335.5686 252.76411,-1335.5968 251.7474,-1335.6533 C 250.73043,-1335.7098 249.99605,-1335.7663 249.54425,-1335.8228 L 248.52741,-1336.3312 C 248.64027,-1337.6305 250.2785,-1340.342 253.44213,-1344.4659 C 256.04058,-1347.7989 258.24373,-1350.3974 260.05158,-1352.2617 L 251.06951,-1351.1601 C 240.05364,-1332.2356 228.78369,-1318.1976 217.25963,-1309.0461 C 202.91083,-1297.5784 186.246,-1291.8446 167.26508,-1291.8446 C 159.80823,-1291.8446 153.53773,-1292.8331 148.45357,-1294.8103 C 141.2227,-1297.6349 137.60728,-1302.1824 137.6073,-1308.4529 C 137.60728,-1310.5996 138.28517,-1312.379 139.64097,-1313.7913 C 141.05323,-1315.2601 142.80445,-1315.9944 144.89464,-1315.9945 C 146.30689,-1315.9944 147.52145,-1315.373 148.53831,-1314.1303 C 149.61161,-1312.9439 150.14828,-1311.6164 150.1483,-1310.1476 C 150.14828,-1308.9048 149.72459,-1307.6903 148.87726,-1306.504 C 147.97337,-1305.1482 146.92829,-1304.4703 145.742,-1304.4703 C 143.87778,-1304.4703 142.15481,-1305.0352 140.57308,-1306.165 C 142.26779,-1297.9738 150.99564,-1293.8782 166.75666,-1293.8782 C 178.50674,-1293.8782 188.95757,-1296.7593 198.10918,-1302.5214 C 205.33995,-1307.0971 212.68377,-1314.1585 220.14067,-1323.7055 C 226.52406,-1332.631 232.90753,-1341.5284 239.29113,-1350.3975 C 228.38826,-1349.776 217.96568,-1347.7424 208.02335,-1344.2965 C 201.18786,-1341.9803 198.08086,-1340.8222 198.70233,-1340.8223 L 198.10918,-1340.8223 L 197.43128,-1341.8391 L 198.19391,-1342.8559 C 208.58818,-1348.166 222.76741,-1351.4143 240.73165,-1352.6006 C 246.21116,-1359.8879 254.6848,-1369.3219 266.15261,-1380.9026 C 278.52399,-1393.4435 287.84499,-1401.663 294.11566,-1405.561 L 295.21724,-1405.8152 L 295.89513,-1405.0526 L 295.55618,-1404.1205 C 293.91777,-1402.1996 291.51691,-1399.94 288.35358,-1397.3415 C 284.39905,-1394.065 281.8852,-1391.9183 280.81203,-1390.9016 C 269.00526,-1379.7162 259.51478,-1367.3447 252.34055,-1353.787 M 279.45624,-1363.108 C 279.45609,-1364.1247 278.94767,-1364.6332 277.93098,-1364.6332 C 276.06663,-1364.6332 273.86348,-1363.4751 271.32154,-1361.159 C 269.17473,-1359.2383 267.50825,-1357.2611 266.32208,-1355.2275 C 268.29912,-1355.6229 270.81297,-1356.6114 273.86363,-1358.1933 C 277.59188,-1360.0574 279.45609,-1361.6956 279.45624,-1363.108 M 245.13795,-1411.4925 C 231.46701,-1411.4924 218.55883,-1408.8656 206.41336,-1403.612 C 190.82177,-1396.8895 183.02602,-1387.5685 183.02608,-1375.649 C 183.02602,-1371.0731 185.42688,-1367.5989 190.22868,-1365.2264 C 193.95702,-1363.3056 198.36331,-1362.3453 203.44758,-1362.3453 C 211.13027,-1362.3453 219.88637,-1364.6614 229.7159,-1369.2937 C 241.18346,-1374.7168 246.91729,-1380.8178 246.91742,-1387.5968 C 246.91729,-1390.6472 245.67449,-1393.0199 243.18901,-1394.7147 C 241.04223,-1396.1834 238.4154,-1396.9177 235.30851,-1396.9178 C 222.14601,-1396.9177 209.26607,-1391.2969 196.66866,-1380.0553 C 194.86087,-1378.078 192.06457,-1375.2817 188.27974,-1371.6664 L 187.51711,-1371.5816 L 186.92396,-1372.2595 L 187.17817,-1373.1916 C 190.05914,-1379.0101 197.09227,-1384.8287 208.27756,-1390.6473 C 218.95427,-1396.2399 227.7951,-1399.0362 234.80009,-1399.0363 C 238.4154,-1399.0362 241.55065,-1398.217 244.20585,-1396.5789 C 247.36922,-1394.6581 248.95097,-1391.9748 248.95109,-1388.5289 C 248.95097,-1380.5636 243.16064,-1373.6435 231.5801,-1367.7685 C 221.63759,-1362.6842 212.26009,-1360.1421 203.44758,-1360.1422 C 197.62893,-1360.1421 192.65772,-1361.3002 188.53395,-1363.6164 C 183.4497,-1366.4409 180.9076,-1370.5647 180.90766,-1375.9879 C 180.9076,-1380.8461 182.17865,-1385.0829 184.72081,-1388.6984 C 193.58983,-1401.3523 208.30572,-1409.4305 228.86854,-1412.9331 C 238.07646,-1414.4582 255.56041,-1415.2208 281.32045,-1415.2209 C 287.76026,-1415.2208 297.39197,-1415.1643 310.2156,-1415.0515 C 323.09535,-1414.9949 332.72706,-1414.9666 339.11076,-1414.9667 C 344.30771,-1414.9666 348.23383,-1415.5315 350.88913,-1416.6615 C 352.75311,-1417.3957 355.97309,-1419.5141 360.5491,-1423.0167 L 361.39646,-1423.3556 L 362.32856,-1422.1693 L 362.07435,-1421.322 C 352.75311,-1411.2664 337.30283,-1406.2388 315.72348,-1406.2389 C 307.81455,-1406.2388 296.03618,-1407.1144 280.38834,-1408.8657 C 264.74019,-1410.6168 252.99007,-1411.4924 245.13795,-1411.4925" />
+               d="m 252.34055,-1353.787 9.40576,-1.1015 c 6.66579,-8.0217 12.00419,-12.0325 16.0152,-12.0326 2.71141,10e-5 4.0672,1.1016 4.06735,3.3047 -1.5e-4,2.5422 -2.14681,4.9713 -6.43997,7.2873 -3.33312,1.8643 -6.6096,3.1071 -9.82944,3.7285 -1.46891,3.3895 -2.93767,6.8072 -4.4063,10.2531 -2.25977,4.5193 -4.60415,6.7789 -7.03313,6.7789 -0.56504,0 -1.35591,-0.028 -2.37262,-0.085 -1.01697,-0.057 -1.75135,-0.113 -2.20315,-0.1695 l -1.01684,-0.5084 c 0.11286,-1.2993 1.75109,-4.0108 4.91472,-8.1347 2.59845,-3.333 4.8016,-5.9315 6.60945,-7.7958 l -8.98207,1.1016 c -11.01587,18.9245 -22.28582,32.9625 -33.80988,42.114 -14.3488,11.4677 -31.01363,17.2015 -49.99455,17.2015 -7.45685,0 -13.72735,-0.9885 -18.81151,-2.9657 -7.23087,-2.8246 -10.84629,-7.3721 -10.84627,-13.6426 -2e-5,-2.1467 0.67787,-3.9261 2.03367,-5.3384 1.41226,-1.4688 3.16348,-2.2031 5.25367,-2.2032 1.41225,10e-5 2.62681,0.6215 3.64367,1.8642 1.0733,1.1864 1.60997,2.5139 1.60999,3.9827 -2e-5,1.2428 -0.42371,2.4573 -1.27104,3.6436 -0.90389,1.3558 -1.94897,2.0337 -3.13526,2.0337 -1.86422,0 -3.58719,-0.5649 -5.16892,-1.6947 1.69471,8.1912 10.42256,12.2868 26.18358,12.2868 11.75008,0 22.20091,-2.8811 31.35252,-8.6432 7.23077,-4.5757 14.57459,-11.6371 22.03149,-21.1841 6.38339,-8.9255 12.76686,-17.8229 19.15046,-26.692 -10.90287,0.6215 -21.32545,2.6551 -31.26778,6.101 -6.83549,2.3162 -9.94249,3.4743 -9.32102,3.4742 l -0.59315,0 -0.6779,-1.0168 0.76263,-1.0168 c 10.39427,-5.3101 24.5735,-8.5584 42.53774,-9.7447 5.47951,-7.2873 13.95315,-16.7213 25.42096,-28.302 12.37138,-12.5409 21.69238,-20.7604 27.96305,-24.6584 l 1.10158,-0.2542 0.67789,0.7626 -0.33895,0.9321 c -1.63841,1.9209 -4.03927,4.1805 -7.2026,6.779 -3.95453,3.2765 -6.46838,5.4232 -7.54155,6.4399 -11.80677,11.1854 -21.29725,23.5569 -28.47148,37.1146 m 27.11569,-9.321 c -1.5e-4,-1.0167 -0.50857,-1.5252 -1.52526,-1.5252 -1.86435,0 -4.0675,1.1581 -6.60944,3.4742 -2.14681,1.9207 -3.81329,3.8979 -4.99946,5.9315 1.97704,-0.3954 4.49089,-1.3839 7.54155,-2.9658 3.72825,-1.8641 5.59246,-3.5023 5.59261,-4.9147 m -34.31829,-48.3845 c -13.67094,10e-5 -26.57912,2.6269 -38.72459,7.8805 -15.59159,6.7225 -23.38734,16.0435 -23.38728,27.963 -6e-5,4.5759 2.4008,8.0501 7.2026,10.4226 3.72834,1.9208 8.13463,2.8811 13.2189,2.8811 7.68269,0 16.43879,-2.3161 26.26832,-6.9484 11.46756,-5.4231 17.20139,-11.5241 17.20152,-18.3031 -1.3e-4,-3.0504 -1.24293,-5.4231 -3.72841,-7.1179 -2.14678,-1.4687 -4.77361,-2.203 -7.8805,-2.2031 -13.1625,1e-4 -26.04244,5.6209 -38.63985,16.8625 -1.80779,1.9773 -4.60409,4.7736 -8.38892,8.3889 l -0.76263,0.085 -0.59315,-0.6779 0.25421,-0.9321 c 2.88097,-5.8185 9.9141,-11.6371 21.09939,-17.4557 10.67671,-5.5926 19.51754,-8.3889 26.52253,-8.389 3.61531,10e-5 6.75056,0.8193 9.40576,2.4574 3.16337,1.9208 4.74512,4.6041 4.74524,8.05 -1.2e-4,7.9653 -5.79045,14.8854 -17.37099,20.7604 -9.94251,5.0843 -19.32001,7.6264 -28.13252,7.6263 -5.81865,10e-5 -10.78986,-1.158 -14.91363,-3.4742 -5.08425,-2.8245 -7.62635,-6.9483 -7.62629,-12.3715 -6e-5,-4.8582 1.27099,-9.095 3.81315,-12.7105 8.86902,-12.6539 23.58491,-20.7321 44.14773,-24.2347 9.20792,-1.5251 26.69187,-2.2877 52.45191,-2.2878 6.43981,10e-5 16.07152,0.057 28.89515,0.1694 12.87975,0.057 22.51146,0.085 28.89516,0.085 5.19695,10e-5 9.12307,-0.5648 11.77837,-1.6948 1.86398,-0.7342 5.08396,-2.8526 9.65997,-6.3552 l 0.84736,-0.3389 0.9321,1.1863 -0.25421,0.8473 c -9.32124,10.0556 -24.77152,15.0832 -46.35087,15.0831 -7.90893,10e-5 -19.6873,-0.8755 -35.33514,-2.6268 -15.64815,-1.7511 -27.39827,-2.6267 -35.25039,-2.6268"
+               inkscape:connector-curvature="0" />
             <path
-               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Exmouth"
+               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Exmouth"
                id="path5095"
-               d="M 600.625,-1391.1562 C 594.66668,-1390.8552 586.27312,-1385.8817 575.4375,-1376.25 C 567.41574,-1369.0191 558.08905,-1359.2151 547.46875,-1346.8438 C 541.81963,-1340.0648 536.18031,-1333.2789 530.53125,-1326.5 C 527.93266,-1323.5059 524.31977,-1320.4135 519.6875,-1317.25 C 515.62015,-1314.6514 485.27559,-1291.8844 480.375,-1293.7188 C 479.84163,-1293.9185 479.10702,-1294.2969 479,-1294.8125 C 478.76166,-1295.9608 483.197,-1301.2366 491.21875,-1310.2188 C 496.18993,-1315.6419 501.15375,-1321.0768 506.125,-1326.5 L 496.375,-1326.5 C 491.8557,-1321.2463 488.91226,-1317.9122 487.5,-1316.5 C 487.89541,-1317.7993 488.06247,-1318.9518 488.0625,-1319.9688 C 488.06247,-1324.3185 485.23681,-1326.5 479.53125,-1326.5 C 472.63934,-1326.5 465.18397,-1323.7609 457.21875,-1318.2812 C 452.88726,-1315.3086 449.78577,-1312.9412 447.625,-1309.8125 C 447.62501,-1309.8124 444.92066,-1308.9918 443,-1308.0312 C 441.07928,-1307.0709 439.36899,-1306.5935 437.84375,-1306.5938 C 436.7704,-1306.5938 435.78483,-1306.9531 434.9375,-1307.6875 C 443.18516,-1314.3534 447.31246,-1319.9493 447.3125,-1324.4688 C 447.31247,-1325.9375 446.59373,-1326.6562 445.125,-1326.6562 C 442.30042,-1326.6561 439.16468,-1324.5118 435.71875,-1320.2188 C 432.38576,-1316.1513 430.71873,-1312.6561 430.71875,-1309.7188 C 430.71873,-1309.7186 430.84251,-1309.1611 431.125,-1308.0312 C 420.10924,-1298.3713 411.37747,-1293.5312 404.9375,-1293.5312 C 402.79085,-1293.5312 401.71876,-1294.0457 401.71875,-1295.0625 C 401.71876,-1296.1924 404.89178,-1299.8053 411.21875,-1305.9062 C 417.54574,-1312.0637 420.71873,-1316.9038 420.71875,-1320.4062 C 420.71874,-1324.4735 419.09498,-1326.5 415.875,-1326.5 C 413.50238,-1326.5 408.8979,-1323.9221 402.0625,-1318.7812 C 396.24747,-1314.4438 386.48772,-1305.525 380.375,-1301.4062 C 372.69222,-1296.209 367.05295,-1293.7056 363.4375,-1293.875 L 362,-1294.8125 C 362.113,-1295.9988 366.16577,-1301.1181 374.1875,-1310.1562 C 379.10221,-1315.636 384.02278,-1321.0768 388.9375,-1326.5 L 379.375,-1326.5 C 373.44344,-1321.4158 350.68937,-1301.074 326.90625,-1293.875 C 326.90292,-1293.8751 326.87779,-1293.875 326.875,-1293.875 C 326.86825,-1293.8737 326.85105,-1293.8759 326.84375,-1293.875 C 326.82062,-1293.8733 326.77455,-1293.874 326.75,-1293.875 C 326.73383,-1293.8762 326.7025,-1293.8729 326.6875,-1293.875 C 326.43459,-1293.9202 326.13441,-1294.1012 325.9375,-1294.25 C 325.86661,-1294.3058 325.79572,-1294.3728 325.75,-1294.4375 C 325.73632,-1294.4583 325.70212,-1294.5059 325.6875,-1294.5312 C 325.67728,-1294.5563 325.66164,-1294.5991 325.65625,-1294.625 C 325.65636,-1294.6281 325.6562,-1294.6535 325.65625,-1294.6562 C 325.65598,-1294.6607 325.65634,-1294.6828 325.65625,-1294.6875 C 325.65635,-1294.6924 325.65596,-1294.7137 325.65625,-1294.7188 C 325.77511,-1296.0299 331.77518,-1303.0575 342.65625,-1315.3125 C 349.43516,-1322.8257 356.22105,-1330.3304 363,-1337.8438 C 370.66156,-1337.646 375.06535,-1337.9334 376.15625,-1338.6875 C 376.16166,-1338.6929 376.18213,-1338.7132 376.1875,-1338.7188 C 376.21612,-1338.7444 376.2576,-1338.7854 376.28125,-1338.8125 C 376.28404,-1338.8152 376.30926,-1338.8406 376.3125,-1338.8438 C 376.34255,-1338.8848 376.38932,-1338.9555 376.40625,-1339 C 376.40624,-1339.0027 376.40644,-1339.0284 376.40625,-1339.0312 L 375.28125,-1340.2188 L 364.625,-1340.2188 L 379.53125,-1356.75 L 369.625,-1356.75 L 354.875,-1340.2188 C 350.86104,-1340.3604 348.34934,-1340.0935 347.375,-1339.4062 C 347.27002,-1339.3291 347.16564,-1339.2205 347.09375,-1339.125 C 347.05986,-1339.0771 347.02254,-1339.0155 347,-1338.9688 L 348.4375,-1337.8438 L 352.84375,-1337.8438 C 345.6129,-1329.7654 324.65713,-1313.4626 317.8125,-1309.2812 C 311.01344,-1305.1278 307.82814,-1304.3955 305.625,-1304 C 307.65866,-1307.333 308.68749,-1310.989 308.6875,-1315 C 308.68749,-1316.0168 308.52644,-1317.5228 308.1875,-1319.5 C 307.90504,-1321.4772 307.74999,-1322.9832 307.75,-1324 C 307.74999,-1325.5253 307.83052,-1326.7582 308,-1327.7188 C 311.50243,-1330.5432 314.15502,-1332.6502 315.90625,-1334.0625 L 314.625,-1335.5 C 314.62176,-1335.4999 314.60041,-1335.5 314.59375,-1335.5 C 314.59097,-1335.5002 314.56523,-1335.5 314.5625,-1335.5 C 313.33562,-1335.0933 306.73704,-1330.633 294.78125,-1322.125 C 283.86923,-1314.3597 271.71049,-1305.7091 264.03125,-1300.625 C 255.89654,-1295.2019 249.1479,-1292.5 243.78125,-1292.5 C 242.35133,-1292.5 241.31292,-1292.8306 240.6875,-1293.4688 C 240.21828,-1293.9631 239.96875,-1294.6577 239.96875,-1295.5312 C 239.96876,-1299.5986 242.67064,-1303.0504 248.09375,-1305.875 C 253.12146,-1308.0781 258.15979,-1310.2595 263.1875,-1312.4062 C 268.61062,-1315.0049 271.31249,-1317.9855 271.3125,-1321.375 C 271.31249,-1324.3125 269.52768,-1325.7812 265.96875,-1325.7812 C 259.75474,-1325.7812 252.96282,-1322.8381 245.5625,-1316.9062 C 237.82325,-1310.6923 233.93754,-1304.5385 233.9375,-1298.4375 C 233.93753,-1292.7319 237.66219,-1289.875 245.0625,-1289.875 C 250.93757,-1289.875 261.57796,-1295.4336 277,-1306.5625 C 277,-1306.5625 302.61056,-1324.3317 304.53125,-1325.6875 C 297.52637,-1303.5995 289.18521,-1292.5624 279.46875,-1292.5625 C 277.81773,-1292.5625 276.6748,-1292.9258 276.09375,-1293.6562 C 276.05453,-1293.7072 276.00289,-1293.7891 275.96875,-1293.8438 C 275.78567,-1294.1464 275.68538,-1294.4987 275.65625,-1294.9062 C 279.8366,-1294.7933 281.90626,-1296.5346 281.90625,-1300.0938 C 281.90626,-1302.1839 280.71038,-1303.2188 278.28125,-1303.2188 C 274.55286,-1303.2187 272.68753,-1300.9941 272.6875,-1296.5312 C 272.68752,-1292.238 275.38937,-1290.0935 280.8125,-1290.0938 C 287.59143,-1290.0938 295.1766,-1293.8244 303.59375,-1301.2812 C 305.51444,-1301.3942 311.02431,-1303.1064 314.90625,-1305.0625 C 318.83811,-1307.0438 331.12012,-1315.4711 336.65625,-1319.3125 C 333.2103,-1315.8665 329.75845,-1312.4147 326.3125,-1308.9688 C 322.41464,-1304.4495 320.46877,-1300.1671 320.46875,-1296.1562 C 320.46877,-1292.5974 322.21654,-1290.851 325.71875,-1290.8125 C 336.95076,-1290.6875 363.62424,-1311.3699 365.875,-1313.0312 C 361.97713,-1308.1729 359.95073,-1305.6324 359.78125,-1305.4062 C 357.57812,-1302.1862 356.46875,-1299.168 356.46875,-1296.3438 C 356.46876,-1292.6718 358.21031,-1290.8124 361.65625,-1290.8125 C 364.42432,-1290.8125 370.29919,-1293.1922 379.28125,-1297.9375 C 387.58277,-1302.2643 397.28732,-1311.2605 402.0625,-1315.8125 C 408.10704,-1321.5745 412.3954,-1324.4255 414.9375,-1324.3125 L 416.125,-1323.4375 C 416.12538,-1323.4266 416.12499,-1323.3862 416.125,-1323.375 C 416.1232,-1323.3735 416.10075,-1323.3508 416.09375,-1323.3438 C 415.72203,-1322.5118 412.59294,-1319.106 406.71875,-1313.125 C 400.50475,-1306.798 397.40627,-1301.8774 397.40625,-1298.375 C 397.40626,-1293.5167 400.1021,-1291.0935 405.46875,-1291.0938 C 411.68276,-1291.0938 420.85441,-1296.0575 433,-1306 C 434.41225,-1304.7007 435.9615,-1304.0312 437.65625,-1304.0312 C 440.36569,-1304.0312 443.11356,-1304.8649 445.90625,-1306.4688 C 444.80167,-1304.2055 444.28125,-1301.9051 444.28125,-1299.5625 C 444.28127,-1293.6874 447.26198,-1290.75 453.25,-1290.75 C 459.01209,-1290.75 466.07682,-1294.0467 474.4375,-1300.6562 C 473.92908,-1299.2439 473.6875,-1297.7752 473.6875,-1296.25 C 473.68749,-1292.6345 475.36053,-1290.8125 478.75,-1290.8125 C 488.86059,-1290.8125 514.72718,-1311.3365 517.15625,-1313.0312 C 513.31488,-1308.2859 511.25122,-1305.7452 510.96875,-1305.4062 C 508.76561,-1302.1862 507.65626,-1299.1683 507.65625,-1296.3438 C 507.65627,-1292.6718 509.44106,-1290.8124 513,-1290.8125 C 516.27649,-1290.8125 522.23187,-1293.0685 530.875,-1297.5312 C 538.28254,-1302.0011 542.38101,-1305.3761 545.21875,-1307.9062 L 544,-1309.375 C 543.99545,-1309.3737 543.9752,-1309.3777 543.96875,-1309.375 C 543.45891,-1309.1302 539.40437,-1306.3789 531.8125,-1301.1562 C 524.52516,-1296.1286 518.61822,-1294.5288 514.5,-1293.875 C 513.63137,-1293.7371 512.81714,-1294.0255 513.0625,-1294.8125 C 513.5224,-1296.2877 514.3726,-1297.2536 514.9375,-1297.875 C 520.30415,-1304.3714 525.70185,-1310.81 531.125,-1317.25 C 537.67794,-1325.1022 543.43501,-1331.2499 548.40625,-1335.6562 C 550.60937,-1337.5205 557.3953,-1341.7715 568.75,-1348.4375 C 580.50007,-1355.3293 589.07678,-1361.0432 594.5,-1365.5625 C 602.91708,-1372.5673 607.1249,-1378.9998 607.125,-1384.875 C 607.12492,-1386.5131 606.52998,-1387.9759 605.34375,-1389.2188 C 604.21385,-1390.5179 602.82567,-1391.1562 601.1875,-1391.1562 C 601.00037,-1391.1562 600.8172,-1391.166 600.625,-1391.1562 z M 600,-1388.9375 C 600.23304,-1388.9543 600.46109,-1388.9375 600.6875,-1388.9375 C 603.51197,-1388.9374 604.93744,-1387.5864 604.9375,-1384.875 C 604.93742,-1378.8868 597.32104,-1370.4652 582.125,-1359.5625 C 578.34005,-1356.8509 567.78018,-1350.1022 550.4375,-1339.3125 C 562.24408,-1354.9605 569.86649,-1364.7271 573.3125,-1368.625 C 584.70399,-1381.7061 593.60434,-1388.4775 600,-1388.9375 z M 479.9375,-1324.0312 C 479.96959,-1324.0342 479.99941,-1324.0287 480.03125,-1324.0312 C 480.23171,-1324.0474 480.43434,-1324.0312 480.625,-1324.0312 C 483.90146,-1324.0313 485.53122,-1322.5996 485.53125,-1319.7188 C 485.53123,-1314.8605 481.24288,-1309.1408 472.65625,-1302.5312 C 464.35207,-1296.2042 457.6467,-1293.0313 452.5625,-1293.0312 C 451.27204,-1293.0312 450.32365,-1293.3323 449.71875,-1293.9062 C 449.70262,-1293.922 449.67189,-1293.9525 449.65625,-1293.9688 C 449.1868,-1294.4717 448.93751,-1295.2002 448.9375,-1296.0938 C 448.93752,-1300.0481 453.18861,-1305.6875 461.71875,-1313.0312 C 469.78551,-1319.9761 475.86178,-1323.6539 479.9375,-1324.0312 z M 266.03125,-1323.25 C 266.06455,-1323.2545 266.09185,-1323.246 266.125,-1323.25 C 266.13701,-1323.2506 266.17617,-1323.2507 266.1875,-1323.25 C 266.19137,-1323.2499 266.21476,-1323.2499 266.21875,-1323.25 C 266.23077,-1323.2505 266.26994,-1323.2506 266.28125,-1323.25 C 266.28512,-1323.2499 266.30851,-1323.2499 266.3125,-1323.25 C 266.32454,-1323.2504 266.36371,-1323.2505 266.375,-1323.25 C 266.37887,-1323.2499 266.40225,-1323.2499 266.40625,-1323.25 C 266.4183,-1323.2504 266.45748,-1323.2504 266.46875,-1323.25 C 266.47261,-1323.2499 266.496,-1323.2499 266.5,-1323.25 C 266.63863,-1323.2587 266.77032,-1323.25 266.90625,-1323.25 C 268.14904,-1323.2499 268.78122,-1322.6118 268.78125,-1321.3125 C 268.78123,-1317.923 262.42923,-1314.118 249.71875,-1309.9375 C 256.34901,-1318.1989 261.80237,-1322.6812 266.03125,-1323.25 z" />
+               d="m 600.625,-1391.1562 c -5.95832,0.301 -14.35188,5.2745 -25.1875,14.9062 -8.02176,7.2309 -17.34845,17.0349 -27.96875,29.4062 -5.64912,6.779 -11.28844,13.5649 -16.9375,20.3438 -2.59859,2.9941 -6.21148,6.0865 -10.84375,9.25 -4.06735,2.5986 -34.41191,25.3656 -39.3125,23.5312 -0.53337,-0.1997 -1.26798,-0.5781 -1.375,-1.0937 -0.23834,-1.1483 4.197,-6.4241 12.21875,-15.4063 4.97118,-5.4231 9.935,-10.858 14.90625,-16.2812 l -9.75,0 c -4.5193,5.2537 -7.46274,8.5878 -8.875,10 0.39541,-1.2993 0.56247,-2.4518 0.5625,-3.4688 -3e-5,-4.3497 -2.82569,-6.5312 -8.53125,-6.5312 -6.89191,0 -14.34728,2.7391 -22.3125,8.2188 -4.33149,2.9726 -7.43298,5.34 -9.59375,8.4687 10e-6,10e-5 -2.70434,0.8207 -4.625,1.7813 -1.92072,0.9603 -3.63101,1.4377 -5.15625,1.4374 -1.07335,0 -2.05892,-0.3593 -2.90625,-1.0937 8.24766,-6.6659 12.37496,-12.2618 12.375,-16.7813 -3e-5,-1.4687 -0.71877,-2.1874 -2.1875,-2.1874 -2.82458,10e-5 -5.96032,2.1444 -9.40625,6.4374 -3.33299,4.0675 -5.00002,7.5627 -5,10.5 -2e-5,2e-4 0.12376,0.5577 0.40625,1.6876 -11.01576,9.6599 -19.74753,14.5 -26.1875,14.5 -2.14665,0 -3.21874,-0.5145 -3.21875,-1.5313 10e-6,-1.1299 3.17303,-4.7428 9.5,-10.8437 6.32699,-6.1575 9.49998,-10.9976 9.5,-14.5 -10e-6,-4.0673 -1.62377,-6.0938 -4.84375,-6.0938 -2.37262,0 -6.9771,2.5779 -13.8125,7.7188 -5.81503,4.3374 -15.57478,13.2562 -21.6875,17.375 -7.68278,5.1972 -13.32205,7.7006 -16.9375,7.5312 L 362,-1294.8125 c 0.113,-1.1863 4.16577,-6.3056 12.1875,-15.3437 4.91471,-5.4798 9.83528,-10.9206 14.75,-16.3438 l -9.5625,0 c -5.93156,5.0842 -28.68563,25.426 -52.46875,32.625 -0.003,-10e-5 -0.0285,0 -0.0312,0 -0.007,0 -0.024,-9e-4 -0.0312,0 -0.0231,0 -0.0692,10e-4 -0.0937,0 -0.0162,0 -0.0475,0 -0.0625,0 -0.25291,-0.045 -0.55309,-0.2262 -0.75,-0.375 -0.0709,-0.056 -0.14178,-0.1228 -0.1875,-0.1875 -0.0137,-0.021 -0.0479,-0.068 -0.0625,-0.094 -0.0102,-0.025 -0.0259,-0.068 -0.0312,-0.094 1.1e-4,0 -5e-5,-0.028 0,-0.031 -2.7e-4,0 9e-5,-0.027 0,-0.031 10e-5,0 -2.9e-4,-0.026 0,-0.031 0.11886,-1.3111 6.11893,-8.3387 17,-20.5937 6.77891,-7.5132 13.5648,-15.0179 20.34375,-22.5313 7.66156,0.1978 12.06535,-0.09 13.15625,-0.8437 0.005,-0.01 0.0259,-0.026 0.0312,-0.031 0.0286,-0.026 0.0701,-0.067 0.0937,-0.094 0.003,0 0.028,-0.028 0.0312,-0.031 0.0301,-0.041 0.0768,-0.1117 0.0937,-0.1562 -10e-6,0 1.9e-4,-0.028 0,-0.031 l -1.125,-1.1876 -10.65625,0 14.90625,-16.5312 -9.90625,0 -14.75,16.5312 c -4.01396,-0.1416 -6.52566,0.1253 -7.5,0.8126 -0.10498,0.077 -0.20936,0.1857 -0.28125,0.2812 -0.0339,0.048 -0.0712,0.1095 -0.0937,0.1562 l 1.4375,1.125 4.40625,0 c -7.23085,8.0784 -28.18662,24.3812 -35.03125,28.5626 -6.79906,4.1534 -9.98436,4.8857 -12.1875,5.2812 2.03366,-3.333 3.06249,-6.989 3.0625,-11 -10e-6,-1.0168 -0.16106,-2.5228 -0.5,-4.5 -0.28246,-1.9772 -0.43751,-3.4832 -0.4375,-4.5 -10e-6,-1.5253 0.0805,-2.7582 0.25,-3.7188 3.50243,-2.8244 6.15502,-4.9314 7.90625,-6.3437 l -1.2813,-1.4383 c -0.003,10e-5 -0.0246,0 -0.0312,0 -0.003,-2e-4 -0.0285,0 -0.0312,0 -1.22688,0.4067 -7.82546,4.867 -19.78125,13.375 -10.91202,7.7653 -23.07076,16.4159 -30.75,21.5 -8.13471,5.4231 -14.88335,8.125 -20.25,8.125 -1.42992,0 -2.46833,-0.3306 -3.09375,-0.9688 -0.46922,-0.4943 -0.71875,-1.1889 -0.71875,-2.0624 1e-5,-4.0674 2.70189,-7.5192 8.125,-10.3438 5.02771,-2.2031 10.06604,-4.3845 15.09375,-6.5312 5.42312,-2.5987 8.12499,-5.5793 8.125,-8.9688 -10e-6,-2.9375 -1.78482,-4.4062 -5.34375,-4.4062 -6.21401,0 -13.00593,2.9431 -20.40625,8.875 -7.73925,6.2139 -11.62496,12.3677 -11.625,18.4687 3e-5,5.7056 3.72469,8.5625 11.125,8.5625 5.87507,0 16.51546,-5.5586 31.9375,-16.6875 0,0 25.61056,-17.7692 27.53125,-19.125 -7.00488,22.088 -15.34604,33.1251 -25.0625,33.125 -1.65102,0 -2.79395,-0.3633 -3.375,-1.0937 -0.0392,-0.051 -0.0909,-0.1329 -0.125,-0.1876 -0.18308,-0.3026 -0.28337,-0.6549 -0.3125,-1.0624 4.18035,0.1129 6.25001,-1.6284 6.25,-5.1876 1e-5,-2.0901 -1.19587,-3.125 -3.625,-3.125 -3.72839,1e-4 -5.59372,2.2247 -5.59375,6.6876 2e-5,4.2932 2.70187,6.4377 8.125,6.4374 6.77893,0 14.3641,-3.7306 22.78125,-11.1874 1.92069,-0.113 7.43056,-1.8252 11.3125,-3.7813 3.93186,-1.9813 16.21387,-10.4086 21.75,-14.25 -3.44595,3.446 -6.8978,6.8978 -10.34375,10.3437 -3.89786,4.5193 -5.84373,8.8017 -5.84375,12.8126 2e-5,3.5588 1.74779,5.3052 5.25,5.3437 11.23201,0.125 37.90549,-20.5574 40.15625,-22.2187 -3.89787,4.8583 -5.92427,7.3988 -6.09375,7.625 -2.20313,3.22 -3.3125,6.2382 -3.3125,9.0624 1e-5,3.672 1.74156,5.5314 5.1875,5.5313 2.76807,0 8.64294,-2.3797 17.625,-7.125 8.30152,-4.3268 18.00607,-13.323 22.78125,-17.875 6.04454,-5.762 10.3329,-8.613 12.875,-8.5 l 1.1875,0.875 c 3.8e-4,0.011 -10e-6,0.051 0,0.062 -0.002,0 -0.0242,0.024 -0.0312,0.031 -0.37172,0.832 -3.50081,4.2378 -9.375,10.2188 -6.214,6.327 -9.31248,11.2476 -9.3125,14.75 10e-6,4.8583 2.69585,7.2815 8.0625,7.2812 6.21401,0 15.38566,-4.9637 27.53125,-14.9062 1.41225,1.2993 2.9615,1.9688 4.65625,1.9688 2.70944,0 5.45731,-0.8337 8.25,-2.4376 -1.10458,2.2633 -1.625,4.5637 -1.625,6.9063 2e-5,5.8751 2.98073,8.8125 8.96875,8.8125 5.76209,0 12.82682,-3.2967 21.1875,-9.9062 -0.50842,1.4123 -0.75,2.881 -0.75,4.4062 -1e-5,3.6155 1.67303,5.4375 5.0625,5.4375 10.11059,0 35.97718,-20.524 38.40625,-22.2187 -3.84137,4.7453 -5.90503,7.286 -6.1875,7.625 -2.20314,3.22 -3.31249,6.2379 -3.3125,9.0624 2e-5,3.672 1.78481,5.5314 5.34375,5.5313 3.27649,0 9.23187,-2.256 17.875,-6.7187 7.40754,-4.4699 11.50601,-7.8449 14.34375,-10.375 L 544,-1309.375 c -0.005,0 -0.0248,0 -0.0312,0 -0.50984,0.2448 -4.56438,2.9961 -12.15625,8.2188 -7.28734,5.0276 -13.19428,6.6274 -17.3125,7.2812 -0.86863,0.1379 -1.68286,-0.1505 -1.4375,-0.9375 0.4599,-1.4752 1.3101,-2.4411 1.875,-3.0625 5.36665,-6.4964 10.76435,-12.935 16.1875,-19.375 6.55294,-7.8522 12.31001,-13.9999 17.28125,-18.4062 2.20312,-1.8643 8.98905,-6.1153 20.34375,-12.7813 11.75007,-6.8918 20.32678,-12.6057 25.75,-17.125 8.41708,-7.0048 12.6249,-13.4373 12.625,-19.3125 -8e-5,-1.6381 -0.59502,-3.1009 -1.78125,-4.3438 -1.1299,-1.2991 -2.51808,-1.9374 -4.15625,-1.9374 -0.18713,0 -0.3703,-0.01 -0.5625,0 z m -0.625,2.2187 c 0.23304,-0.017 0.46109,0 0.6875,0 2.82447,10e-5 4.24994,1.3511 4.25,4.0625 -8e-5,5.9882 -7.61646,14.4098 -22.8125,25.3125 -3.78495,2.7116 -14.34482,9.4603 -31.6875,20.25 11.80658,-15.648 19.42899,-25.4146 22.875,-29.3125 11.39149,-13.0811 20.29184,-19.8525 26.6875,-20.3125 z m -120.0625,64.9063 c 0.0321,0 0.0619,0 0.0937,0 0.20046,-0.016 0.40309,0 0.59375,0 3.27646,-1e-4 4.90622,1.4316 4.90625,4.3124 -2e-5,4.8583 -4.28837,10.578 -12.875,17.1876 -8.30418,6.327 -15.00955,9.4999 -20.09375,9.5 -1.29046,0 -2.23885,-0.3011 -2.84375,-0.875 -0.0161,-0.016 -0.0469,-0.046 -0.0625,-0.063 -0.46945,-0.5029 -0.71874,-1.2314 -0.71875,-2.125 2e-5,-3.9543 4.25111,-9.5937 12.78125,-16.9374 8.06676,-6.9449 14.14303,-10.6227 18.21875,-11 z m -213.90625,0.7812 c 0.0333,0 0.0606,0 0.0937,0 0.012,-6e-4 0.0512,-7e-4 0.0625,0 0.004,10e-5 0.0273,10e-5 0.0312,0 0.012,-5e-4 0.0512,-6e-4 0.0625,0 0.004,10e-5 0.0273,10e-5 0.0312,0 0.012,-4e-4 0.0512,-5e-4 0.0625,0 0.004,10e-5 0.0272,10e-5 0.0312,0 0.012,-4e-4 0.0512,-4e-4 0.0625,0 0.004,10e-5 0.0272,10e-5 0.0312,0 0.13863,-0.01 0.27032,0 0.40625,0 1.24279,10e-5 1.87497,0.6382 1.875,1.9375 -2e-5,3.3895 -6.35202,7.1945 -19.0625,11.375 6.63026,-8.2614 12.08362,-12.7437 16.3125,-13.3125 z"
+               inkscape:connector-curvature="0" />
             <path
-               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Exmouth"
+               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Exmouth"
                id="path5097"
-               d="M 406.81523,-1346.1607 C 406.02433,-1344.1834 404.18837,-1342.2627 401.30736,-1340.3986 C 399.21717,-1341.8108 397.55068,-1343.6185 396.3079,-1345.8217 C 397.38121,-1348.1943 399.10418,-1350.0302 401.47683,-1351.3296 C 403.22802,-1350.4822 405.00749,-1348.7592 406.81523,-1346.1607" />
+               d="m 406.81523,-1346.1607 c -0.7909,1.9773 -2.62686,3.898 -5.50787,5.7621 -2.09019,-1.4122 -3.75668,-3.2199 -4.99946,-5.4231 1.07331,-2.3726 2.79628,-4.2085 5.16893,-5.5079 1.75119,0.8474 3.53066,2.5704 5.3384,5.1689"
+               inkscape:connector-curvature="0" />
           </g>
         </g>
         <text
            sodipodi:linespacing="125%"
-           style="font-size:23.17712593px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Nimbus Mono L"
+           style="font-size:23.17712593px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Nimbus Mono L"
            xml:space="preserve"
            id="text5103"
            transform="matrix(0.9283219,0.3717759,-1.4068749,0.5137849,0,0)"
@@ -85753,14 +86068,15 @@
              y="892.03345"
              x="633.36249">Master</tspan></text>
         <path
-           style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.18643951;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+           style="fill:none;stroke:#ffffff;stroke-width:1.18643951;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
            id="path8204"
-           d="M -424.19823,680.94807 L -474.66946,661.13739" />
+           d="m -424.19823,680.94807 -50.47123,-19.81068"
+           inkscape:connector-curvature="0" />
         <g
            id="g8206"
-           transform="matrix(-5.230834e-2,0,0,5.230834e-2,-370.7166,804.48617)">
+           transform="matrix(-0.05230834,0,0,0.05230834,-370.7166,804.48617)">
           <rect
-             style="opacity:1;fill:url(#linearGradient16612);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+             style="fill:url(#linearGradient16612);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
              id="rect8208"
              transform="matrix(0.926956,0.375171,0,1,0,0)"
              y="-2666.4033"
@@ -85768,7 +86084,7 @@
              height="419.39819"
              width="996.81232" />
           <rect
-             style="opacity:1;fill:#3d993d;fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+             style="fill:#3d993d;fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
              id="rect8210"
              transform="matrix(0.929224,-0.369517,0,1,0,0)"
              y="-1753.9264"
@@ -85776,7 +86092,7 @@
              height="420.25934"
              width="593.28876" />
           <rect
-             style="opacity:1;fill:url(#linearGradient16614);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+             style="fill:url(#linearGradient16614);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
              id="rect8212"
              transform="matrix(0.926288,0.376817,-0.92919,0.369603,0,0)"
              y="-4162.4521"
@@ -85787,34 +86103,40 @@
              id="g8214"
              transform="matrix(-1,-0.473054,0,1,853.1705,-734.3579)">
             <path
-               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible"
                id="path8216"
-               d="M -171.2884,-1442.3646 L -193.54603,-1442.3646 C -233.29689,-1442.3646 -261.95449,-1409.0137 -261.95449,-1368.5517 C -261.95449,-1327.8764 -233.22578,-1294.4544 -193.54603,-1294.4544 L -171.2884,-1294.4544 L -171.2884,-1330.0098 L -186.71941,-1330.0098 C -207.48372,-1330.0098 -223.55473,-1342.5252 -223.55473,-1368.5517 C -223.55473,-1394.5782 -207.48372,-1406.8093 -186.71941,-1406.8093 L -171.2884,-1406.8093 L -171.2884,-1442.3646 z" />
+               d="m -171.2884,-1442.3646 -22.25763,0 c -39.75086,0 -68.40846,33.3509 -68.40846,73.8129 0,40.6753 28.72871,74.0973 68.40846,74.0973 l 22.25763,0 0,-35.5554 -15.43101,0 c -20.76431,0 -36.83532,-12.5154 -36.83532,-38.5419 0,-26.0265 16.07101,-38.2576 36.83532,-38.2576 l 15.43101,0 0,-35.5553 z"
+               inkscape:connector-curvature="0" />
             <path
-               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible"
                id="path8218"
-               d="M -103.37772,-1294.4544 L -103.37772,-1393.5116 C -103.37772,-1404.5337 -97.546644,-1411.5026 -88.586701,-1411.5026 C -79.484536,-1411.5026 -73.511241,-1404.3915 -73.511241,-1393.5116 L -73.511241,-1379.7872 L -96.622205,-1379.7872 L -96.622205,-1346.3652 L -73.511241,-1346.3652 L -73.511241,-1294.4544 L -36.533698,-1294.4544 L -36.533698,-1391.8049 C -36.533698,-1423.5203 -57.582453,-1444.9246 -88.586701,-1444.9246 C -119.51984,-1444.9246 -140.35526,-1423.4492 -140.35526,-1391.8049 L -140.35526,-1294.4544 L -103.37772,-1294.4544 z" />
+               d="m -103.37772,-1294.4544 0,-99.0572 c 0,-11.0221 5.831076,-17.991 14.791019,-17.991 9.102165,0 15.07546,7.1111 15.07546,17.991 l 0,13.7244 -23.110964,0 0,33.422 23.110964,0 0,51.9108 36.977543,0 0,-97.3505 c 0,-31.7154 -21.048755,-53.1197 -52.053003,-53.1197 -30.933139,0 -51.768559,21.4754 -51.768559,53.1197 l 0,97.3505 36.97754,0 z"
+               inkscape:connector-curvature="0" />
             <path
-               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible"
                id="path8220"
-               d="M 34.576962,-1294.4544 L 34.576962,-1381.2094 L 34.576962,-1381.2094 L 68.923411,-1315.2187 C 78.594461,-1296.3744 85.634416,-1291.8944 95.163245,-1291.8944 C 104.40763,-1291.8944 114.93201,-1299.9299 114.93201,-1313.5121 L 114.93201,-1442.3646 L 77.954465,-1442.3646 L 77.954465,-1364.2851 L 77.38558,-1364.2851 L 44.532455,-1429.4936 C 39.056934,-1440.3024 31.661425,-1444.9246 19.145949,-1444.9246 C 6.7015837,-1444.9246 -2.4005808,-1436.5335 -2.4005808,-1424.8003 L -2.4005808,-1294.4544 L 34.576962,-1294.4544 z" />
+               d="m 34.576962,-1294.4544 0,-86.755 0,0 34.346449,65.9907 c 9.67105,18.8443 16.711005,23.3243 26.239834,23.3243 9.244385,0 19.768765,-8.0355 19.768765,-21.6177 l 0,-128.8525 -36.977545,0 0,78.0795 -0.568885,0 -32.853125,-65.2085 c -5.475521,-10.8088 -12.87103,-15.431 -25.386506,-15.431 -12.4443653,0 -21.5465298,8.3911 -21.5465298,20.1243 l 0,130.3459 36.9775428,0 z"
+               inkscape:connector-curvature="0" />
             <path
-               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Exmouth"
+               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Exmouth"
                id="path8222"
-               d="M 252.34055,-1353.787 L 261.74631,-1354.8885 C 268.4121,-1362.9102 273.7505,-1366.921 277.76151,-1366.9211 C 280.47292,-1366.921 281.82871,-1365.8195 281.82886,-1363.6164 C 281.82871,-1361.0742 279.68205,-1358.6451 275.38889,-1356.3291 C 272.05577,-1354.4648 268.77929,-1353.222 265.55945,-1352.6006 C 264.09054,-1349.2111 262.62178,-1345.7934 261.15315,-1342.3475 C 258.89338,-1337.8282 256.549,-1335.5686 254.12002,-1335.5686 C 253.55498,-1335.5686 252.76411,-1335.5968 251.7474,-1335.6533 C 250.73043,-1335.7098 249.99605,-1335.7663 249.54425,-1335.8228 L 248.52741,-1336.3312 C 248.64027,-1337.6305 250.2785,-1340.342 253.44213,-1344.4659 C 256.04058,-1347.7989 258.24373,-1350.3974 260.05158,-1352.2617 L 251.06951,-1351.1601 C 240.05364,-1332.2356 228.78369,-1318.1976 217.25963,-1309.0461 C 202.91083,-1297.5784 186.246,-1291.8446 167.26508,-1291.8446 C 159.80823,-1291.8446 153.53773,-1292.8331 148.45357,-1294.8103 C 141.2227,-1297.6349 137.60728,-1302.1824 137.6073,-1308.4529 C 137.60728,-1310.5996 138.28517,-1312.379 139.64097,-1313.7913 C 141.05323,-1315.2601 142.80445,-1315.9944 144.89464,-1315.9945 C 146.30689,-1315.9944 147.52145,-1315.373 148.53831,-1314.1303 C 149.61161,-1312.9439 150.14828,-1311.6164 150.1483,-1310.1476 C 150.14828,-1308.9048 149.72459,-1307.6903 148.87726,-1306.504 C 147.97337,-1305.1482 146.92829,-1304.4703 145.742,-1304.4703 C 143.87778,-1304.4703 142.15481,-1305.0352 140.57308,-1306.165 C 142.26779,-1297.9738 150.99564,-1293.8782 166.75666,-1293.8782 C 178.50674,-1293.8782 188.95757,-1296.7593 198.10918,-1302.5214 C 205.33995,-1307.0971 212.68377,-1314.1585 220.14067,-1323.7055 C 226.52406,-1332.631 232.90753,-1341.5284 239.29113,-1350.3975 C 228.38826,-1349.776 217.96568,-1347.7424 208.02335,-1344.2965 C 201.18786,-1341.9803 198.08086,-1340.8222 198.70233,-1340.8223 L 198.10918,-1340.8223 L 197.43128,-1341.8391 L 198.19391,-1342.8559 C 208.58818,-1348.166 222.76741,-1351.4143 240.73165,-1352.6006 C 246.21116,-1359.8879 254.6848,-1369.3219 266.15261,-1380.9026 C 278.52399,-1393.4435 287.84499,-1401.663 294.11566,-1405.561 L 295.21724,-1405.8152 L 295.89513,-1405.0526 L 295.55618,-1404.1205 C 293.91777,-1402.1996 291.51691,-1399.94 288.35358,-1397.3415 C 284.39905,-1394.065 281.8852,-1391.9183 280.81203,-1390.9016 C 269.00526,-1379.7162 259.51478,-1367.3447 252.34055,-1353.787 M 279.45624,-1363.108 C 279.45609,-1364.1247 278.94767,-1364.6332 277.93098,-1364.6332 C 276.06663,-1364.6332 273.86348,-1363.4751 271.32154,-1361.159 C 269.17473,-1359.2383 267.50825,-1357.2611 266.32208,-1355.2275 C 268.29912,-1355.6229 270.81297,-1356.6114 273.86363,-1358.1933 C 277.59188,-1360.0574 279.45609,-1361.6956 279.45624,-1363.108 M 245.13795,-1411.4925 C 231.46701,-1411.4924 218.55883,-1408.8656 206.41336,-1403.612 C 190.82177,-1396.8895 183.02602,-1387.5685 183.02608,-1375.649 C 183.02602,-1371.0731 185.42688,-1367.5989 190.22868,-1365.2264 C 193.95702,-1363.3056 198.36331,-1362.3453 203.44758,-1362.3453 C 211.13027,-1362.3453 219.88637,-1364.6614 229.7159,-1369.2937 C 241.18346,-1374.7168 246.91729,-1380.8178 246.91742,-1387.5968 C 246.91729,-1390.6472 245.67449,-1393.0199 243.18901,-1394.7147 C 241.04223,-1396.1834 238.4154,-1396.9177 235.30851,-1396.9178 C 222.14601,-1396.9177 209.26607,-1391.2969 196.66866,-1380.0553 C 194.86087,-1378.078 192.06457,-1375.2817 188.27974,-1371.6664 L 187.51711,-1371.5816 L 186.92396,-1372.2595 L 187.17817,-1373.1916 C 190.05914,-1379.0101 197.09227,-1384.8287 208.27756,-1390.6473 C 218.95427,-1396.2399 227.7951,-1399.0362 234.80009,-1399.0363 C 238.4154,-1399.0362 241.55065,-1398.217 244.20585,-1396.5789 C 247.36922,-1394.6581 248.95097,-1391.9748 248.95109,-1388.5289 C 248.95097,-1380.5636 243.16064,-1373.6435 231.5801,-1367.7685 C 221.63759,-1362.6842 212.26009,-1360.1421 203.44758,-1360.1422 C 197.62893,-1360.1421 192.65772,-1361.3002 188.53395,-1363.6164 C 183.4497,-1366.4409 180.9076,-1370.5647 180.90766,-1375.9879 C 180.9076,-1380.8461 182.17865,-1385.0829 184.72081,-1388.6984 C 193.58983,-1401.3523 208.30572,-1409.4305 228.86854,-1412.9331 C 238.07646,-1414.4582 255.56041,-1415.2208 281.32045,-1415.2209 C 287.76026,-1415.2208 297.39197,-1415.1643 310.2156,-1415.0515 C 323.09535,-1414.9949 332.72706,-1414.9666 339.11076,-1414.9667 C 344.30771,-1414.9666 348.23383,-1415.5315 350.88913,-1416.6615 C 352.75311,-1417.3957 355.97309,-1419.5141 360.5491,-1423.0167 L 361.39646,-1423.3556 L 362.32856,-1422.1693 L 362.07435,-1421.322 C 352.75311,-1411.2664 337.30283,-1406.2388 315.72348,-1406.2389 C 307.81455,-1406.2388 296.03618,-1407.1144 280.38834,-1408.8657 C 264.74019,-1410.6168 252.99007,-1411.4924 245.13795,-1411.4925" />
+               d="m 252.34055,-1353.787 9.40576,-1.1015 c 6.66579,-8.0217 12.00419,-12.0325 16.0152,-12.0326 2.71141,10e-5 4.0672,1.1016 4.06735,3.3047 -1.5e-4,2.5422 -2.14681,4.9713 -6.43997,7.2873 -3.33312,1.8643 -6.6096,3.1071 -9.82944,3.7285 -1.46891,3.3895 -2.93767,6.8072 -4.4063,10.2531 -2.25977,4.5193 -4.60415,6.7789 -7.03313,6.7789 -0.56504,0 -1.35591,-0.028 -2.37262,-0.085 -1.01697,-0.057 -1.75135,-0.113 -2.20315,-0.1695 l -1.01684,-0.5084 c 0.11286,-1.2993 1.75109,-4.0108 4.91472,-8.1347 2.59845,-3.333 4.8016,-5.9315 6.60945,-7.7958 l -8.98207,1.1016 c -11.01587,18.9245 -22.28582,32.9625 -33.80988,42.114 -14.3488,11.4677 -31.01363,17.2015 -49.99455,17.2015 -7.45685,0 -13.72735,-0.9885 -18.81151,-2.9657 -7.23087,-2.8246 -10.84629,-7.3721 -10.84627,-13.6426 -2e-5,-2.1467 0.67787,-3.9261 2.03367,-5.3384 1.41226,-1.4688 3.16348,-2.2031 5.25367,-2.2032 1.41225,10e-5 2.62681,0.6215 3.64367,1.8642 1.0733,1.1864 1.60997,2.5139 1.60999,3.9827 -2e-5,1.2428 -0.42371,2.4573 -1.27104,3.6436 -0.90389,1.3558 -1.94897,2.0337 -3.13526,2.0337 -1.86422,0 -3.58719,-0.5649 -5.16892,-1.6947 1.69471,8.1912 10.42256,12.2868 26.18358,12.2868 11.75008,0 22.20091,-2.8811 31.35252,-8.6432 7.23077,-4.5757 14.57459,-11.6371 22.03149,-21.1841 6.38339,-8.9255 12.76686,-17.8229 19.15046,-26.692 -10.90287,0.6215 -21.32545,2.6551 -31.26778,6.101 -6.83549,2.3162 -9.94249,3.4743 -9.32102,3.4742 l -0.59315,0 -0.6779,-1.0168 0.76263,-1.0168 c 10.39427,-5.3101 24.5735,-8.5584 42.53774,-9.7447 5.47951,-7.2873 13.95315,-16.7213 25.42096,-28.302 12.37138,-12.5409 21.69238,-20.7604 27.96305,-24.6584 l 1.10158,-0.2542 0.67789,0.7626 -0.33895,0.9321 c -1.63841,1.9209 -4.03927,4.1805 -7.2026,6.779 -3.95453,3.2765 -6.46838,5.4232 -7.54155,6.4399 -11.80677,11.1854 -21.29725,23.5569 -28.47148,37.1146 m 27.11569,-9.321 c -1.5e-4,-1.0167 -0.50857,-1.5252 -1.52526,-1.5252 -1.86435,0 -4.0675,1.1581 -6.60944,3.4742 -2.14681,1.9207 -3.81329,3.8979 -4.99946,5.9315 1.97704,-0.3954 4.49089,-1.3839 7.54155,-2.9658 3.72825,-1.8641 5.59246,-3.5023 5.59261,-4.9147 m -34.31829,-48.3845 c -13.67094,10e-5 -26.57912,2.6269 -38.72459,7.8805 -15.59159,6.7225 -23.38734,16.0435 -23.38728,27.963 -6e-5,4.5759 2.4008,8.0501 7.2026,10.4226 3.72834,1.9208 8.13463,2.8811 13.2189,2.8811 7.68269,0 16.43879,-2.3161 26.26832,-6.9484 11.46756,-5.4231 17.20139,-11.5241 17.20152,-18.3031 -1.3e-4,-3.0504 -1.24293,-5.4231 -3.72841,-7.1179 -2.14678,-1.4687 -4.77361,-2.203 -7.8805,-2.2031 -13.1625,1e-4 -26.04244,5.6209 -38.63985,16.8625 -1.80779,1.9773 -4.60409,4.7736 -8.38892,8.3889 l -0.76263,0.085 -0.59315,-0.6779 0.25421,-0.9321 c 2.88097,-5.8185 9.9141,-11.6371 21.09939,-17.4557 10.67671,-5.5926 19.51754,-8.3889 26.52253,-8.389 3.61531,10e-5 6.75056,0.8193 9.40576,2.4574 3.16337,1.9208 4.74512,4.6041 4.74524,8.05 -1.2e-4,7.9653 -5.79045,14.8854 -17.37099,20.7604 -9.94251,5.0843 -19.32001,7.6264 -28.13252,7.6263 -5.81865,10e-5 -10.78986,-1.158 -14.91363,-3.4742 -5.08425,-2.8245 -7.62635,-6.9483 -7.62629,-12.3715 -6e-5,-4.8582 1.27099,-9.095 3.81315,-12.7105 8.86902,-12.6539 23.58491,-20.7321 44.14773,-24.2347 9.20792,-1.5251 26.69187,-2.2877 52.45191,-2.2878 6.43981,10e-5 16.07152,0.057 28.89515,0.1694 12.87975,0.057 22.51146,0.085 28.89516,0.085 5.19695,10e-5 9.12307,-0.5648 11.77837,-1.6948 1.86398,-0.7342 5.08396,-2.8526 9.65997,-6.3552 l 0.84736,-0.3389 0.9321,1.1863 -0.25421,0.8473 c -9.32124,10.0556 -24.77152,15.0832 -46.35087,15.0831 -7.90893,10e-5 -19.6873,-0.8755 -35.33514,-2.6268 -15.64815,-1.7511 -27.39827,-2.6267 -35.25039,-2.6268"
+               inkscape:connector-curvature="0" />
             <path
-               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Exmouth"
+               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Exmouth"
                id="path8224"
-               d="M 600.625,-1391.1562 C 594.66668,-1390.8552 586.27312,-1385.8817 575.4375,-1376.25 C 567.41574,-1369.0191 558.08905,-1359.2151 547.46875,-1346.8438 C 541.81963,-1340.0648 536.18031,-1333.2789 530.53125,-1326.5 C 527.93266,-1323.5059 524.31977,-1320.4135 519.6875,-1317.25 C 515.62015,-1314.6514 485.27559,-1291.8844 480.375,-1293.7188 C 479.84163,-1293.9185 479.10702,-1294.2969 479,-1294.8125 C 478.76166,-1295.9608 483.197,-1301.2366 491.21875,-1310.2188 C 496.18993,-1315.6419 501.15375,-1321.0768 506.125,-1326.5 L 496.375,-1326.5 C 491.8557,-1321.2463 488.91226,-1317.9122 487.5,-1316.5 C 487.89541,-1317.7993 488.06247,-1318.9518 488.0625,-1319.9688 C 488.06247,-1324.3185 485.23681,-1326.5 479.53125,-1326.5 C 472.63934,-1326.5 465.18397,-1323.7609 457.21875,-1318.2812 C 452.88726,-1315.3086 449.78577,-1312.9412 447.625,-1309.8125 C 447.62501,-1309.8124 444.92066,-1308.9918 443,-1308.0312 C 441.07928,-1307.0709 439.36899,-1306.5935 437.84375,-1306.5938 C 436.7704,-1306.5938 435.78483,-1306.9531 434.9375,-1307.6875 C 443.18516,-1314.3534 447.31246,-1319.9493 447.3125,-1324.4688 C 447.31247,-1325.9375 446.59373,-1326.6562 445.125,-1326.6562 C 442.30042,-1326.6561 439.16468,-1324.5118 435.71875,-1320.2188 C 432.38576,-1316.1513 430.71873,-1312.6561 430.71875,-1309.7188 C 430.71873,-1309.7186 430.84251,-1309.1611 431.125,-1308.0312 C 420.10924,-1298.3713 411.37747,-1293.5312 404.9375,-1293.5312 C 402.79085,-1293.5312 401.71876,-1294.0457 401.71875,-1295.0625 C 401.71876,-1296.1924 404.89178,-1299.8053 411.21875,-1305.9062 C 417.54574,-1312.0637 420.71873,-1316.9038 420.71875,-1320.4062 C 420.71874,-1324.4735 419.09498,-1326.5 415.875,-1326.5 C 413.50238,-1326.5 408.8979,-1323.9221 402.0625,-1318.7812 C 396.24747,-1314.4438 386.48772,-1305.525 380.375,-1301.4062 C 372.69222,-1296.209 367.05295,-1293.7056 363.4375,-1293.875 L 362,-1294.8125 C 362.113,-1295.9988 366.16577,-1301.1181 374.1875,-1310.1562 C 379.10221,-1315.636 384.02278,-1321.0768 388.9375,-1326.5 L 379.375,-1326.5 C 373.44344,-1321.4158 350.68937,-1301.074 326.90625,-1293.875 C 326.90292,-1293.8751 326.87779,-1293.875 326.875,-1293.875 C 326.86825,-1293.8737 326.85105,-1293.8759 326.84375,-1293.875 C 326.82062,-1293.8733 326.77455,-1293.874 326.75,-1293.875 C 326.73383,-1293.8762 326.7025,-1293.8729 326.6875,-1293.875 C 326.43459,-1293.9202 326.13441,-1294.1012 325.9375,-1294.25 C 325.86661,-1294.3058 325.79572,-1294.3728 325.75,-1294.4375 C 325.73632,-1294.4583 325.70212,-1294.5059 325.6875,-1294.5312 C 325.67728,-1294.5563 325.66164,-1294.5991 325.65625,-1294.625 C 325.65636,-1294.6281 325.6562,-1294.6535 325.65625,-1294.6562 C 325.65598,-1294.6607 325.65634,-1294.6828 325.65625,-1294.6875 C 325.65635,-1294.6924 325.65596,-1294.7137 325.65625,-1294.7188 C 325.77511,-1296.0299 331.77518,-1303.0575 342.65625,-1315.3125 C 349.43516,-1322.8257 356.22105,-1330.3304 363,-1337.8438 C 370.66156,-1337.646 375.06535,-1337.9334 376.15625,-1338.6875 C 376.16166,-1338.6929 376.18213,-1338.7132 376.1875,-1338.7188 C 376.21612,-1338.7444 376.2576,-1338.7854 376.28125,-1338.8125 C 376.28404,-1338.8152 376.30926,-1338.8406 376.3125,-1338.8438 C 376.34255,-1338.8848 376.38932,-1338.9555 376.40625,-1339 C 376.40624,-1339.0027 376.40644,-1339.0284 376.40625,-1339.0312 L 375.28125,-1340.2188 L 364.625,-1340.2188 L 379.53125,-1356.75 L 369.625,-1356.75 L 354.875,-1340.2188 C 350.86104,-1340.3604 348.34934,-1340.0935 347.375,-1339.4062 C 347.27002,-1339.3291 347.16564,-1339.2205 347.09375,-1339.125 C 347.05986,-1339.0771 347.02254,-1339.0155 347,-1338.9688 L 348.4375,-1337.8438 L 352.84375,-1337.8438 C 345.6129,-1329.7654 324.65713,-1313.4626 317.8125,-1309.2812 C 311.01344,-1305.1278 307.82814,-1304.3955 305.625,-1304 C 307.65866,-1307.333 308.68749,-1310.989 308.6875,-1315 C 308.68749,-1316.0168 308.52644,-1317.5228 308.1875,-1319.5 C 307.90504,-1321.4772 307.74999,-1322.9832 307.75,-1324 C 307.74999,-1325.5253 307.83052,-1326.7582 308,-1327.7188 C 311.50243,-1330.5432 314.15502,-1332.6502 315.90625,-1334.0625 L 314.625,-1335.5 C 314.62176,-1335.4999 314.60041,-1335.5 314.59375,-1335.5 C 314.59097,-1335.5002 314.56523,-1335.5 314.5625,-1335.5 C 313.33562,-1335.0933 306.73704,-1330.633 294.78125,-1322.125 C 283.86923,-1314.3597 271.71049,-1305.7091 264.03125,-1300.625 C 255.89654,-1295.2019 249.1479,-1292.5 243.78125,-1292.5 C 242.35133,-1292.5 241.31292,-1292.8306 240.6875,-1293.4688 C 240.21828,-1293.9631 239.96875,-1294.6577 239.96875,-1295.5312 C 239.96876,-1299.5986 242.67064,-1303.0504 248.09375,-1305.875 C 253.12146,-1308.0781 258.15979,-1310.2595 263.1875,-1312.4062 C 268.61062,-1315.0049 271.31249,-1317.9855 271.3125,-1321.375 C 271.31249,-1324.3125 269.52768,-1325.7812 265.96875,-1325.7812 C 259.75474,-1325.7812 252.96282,-1322.8381 245.5625,-1316.9062 C 237.82325,-1310.6923 233.93754,-1304.5385 233.9375,-1298.4375 C 233.93753,-1292.7319 237.66219,-1289.875 245.0625,-1289.875 C 250.93757,-1289.875 261.57796,-1295.4336 277,-1306.5625 C 277,-1306.5625 302.61056,-1324.3317 304.53125,-1325.6875 C 297.52637,-1303.5995 289.18521,-1292.5624 279.46875,-1292.5625 C 277.81773,-1292.5625 276.6748,-1292.9258 276.09375,-1293.6562 C 276.05453,-1293.7072 276.00289,-1293.7891 275.96875,-1293.8438 C 275.78567,-1294.1464 275.68538,-1294.4987 275.65625,-1294.9062 C 279.8366,-1294.7933 281.90626,-1296.5346 281.90625,-1300.0938 C 281.90626,-1302.1839 280.71038,-1303.2188 278.28125,-1303.2188 C 274.55286,-1303.2187 272.68753,-1300.9941 272.6875,-1296.5312 C 272.68752,-1292.238 275.38937,-1290.0935 280.8125,-1290.0938 C 287.59143,-1290.0938 295.1766,-1293.8244 303.59375,-1301.2812 C 305.51444,-1301.3942 311.02431,-1303.1064 314.90625,-1305.0625 C 318.83811,-1307.0438 331.12012,-1315.4711 336.65625,-1319.3125 C 333.2103,-1315.8665 329.75845,-1312.4147 326.3125,-1308.9688 C 322.41464,-1304.4495 320.46877,-1300.1671 320.46875,-1296.1562 C 320.46877,-1292.5974 322.21654,-1290.851 325.71875,-1290.8125 C 336.95076,-1290.6875 363.62424,-1311.3699 365.875,-1313.0312 C 361.97713,-1308.1729 359.95073,-1305.6324 359.78125,-1305.4062 C 357.57812,-1302.1862 356.46875,-1299.168 356.46875,-1296.3438 C 356.46876,-1292.6718 358.21031,-1290.8124 361.65625,-1290.8125 C 364.42432,-1290.8125 370.29919,-1293.1922 379.28125,-1297.9375 C 387.58277,-1302.2643 397.28732,-1311.2605 402.0625,-1315.8125 C 408.10704,-1321.5745 412.3954,-1324.4255 414.9375,-1324.3125 L 416.125,-1323.4375 C 416.12538,-1323.4266 416.12499,-1323.3862 416.125,-1323.375 C 416.1232,-1323.3735 416.10075,-1323.3508 416.09375,-1323.3438 C 415.72203,-1322.5118 412.59294,-1319.106 406.71875,-1313.125 C 400.50475,-1306.798 397.40627,-1301.8774 397.40625,-1298.375 C 397.40626,-1293.5167 400.1021,-1291.0935 405.46875,-1291.0938 C 411.68276,-1291.0938 420.85441,-1296.0575 433,-1306 C 434.41225,-1304.7007 435.9615,-1304.0312 437.65625,-1304.0312 C 440.36569,-1304.0312 443.11356,-1304.8649 445.90625,-1306.4688 C 444.80167,-1304.2055 444.28125,-1301.9051 444.28125,-1299.5625 C 444.28127,-1293.6874 447.26198,-1290.75 453.25,-1290.75 C 459.01209,-1290.75 466.07682,-1294.0467 474.4375,-1300.6562 C 473.92908,-1299.2439 473.6875,-1297.7752 473.6875,-1296.25 C 473.68749,-1292.6345 475.36053,-1290.8125 478.75,-1290.8125 C 488.86059,-1290.8125 514.72718,-1311.3365 517.15625,-1313.0312 C 513.31488,-1308.2859 511.25122,-1305.7452 510.96875,-1305.4062 C 508.76561,-1302.1862 507.65626,-1299.1683 507.65625,-1296.3438 C 507.65627,-1292.6718 509.44106,-1290.8124 513,-1290.8125 C 516.27649,-1290.8125 522.23187,-1293.0685 530.875,-1297.5312 C 538.28254,-1302.0011 542.38101,-1305.3761 545.21875,-1307.9062 L 544,-1309.375 C 543.99545,-1309.3737 543.9752,-1309.3777 543.96875,-1309.375 C 543.45891,-1309.1302 539.40437,-1306.3789 531.8125,-1301.1562 C 524.52516,-1296.1286 518.61822,-1294.5288 514.5,-1293.875 C 513.63137,-1293.7371 512.81714,-1294.0255 513.0625,-1294.8125 C 513.5224,-1296.2877 514.3726,-1297.2536 514.9375,-1297.875 C 520.30415,-1304.3714 525.70185,-1310.81 531.125,-1317.25 C 537.67794,-1325.1022 543.43501,-1331.2499 548.40625,-1335.6562 C 550.60937,-1337.5205 557.3953,-1341.7715 568.75,-1348.4375 C 580.50007,-1355.3293 589.07678,-1361.0432 594.5,-1365.5625 C 602.91708,-1372.5673 607.1249,-1378.9998 607.125,-1384.875 C 607.12492,-1386.5131 606.52998,-1387.9759 605.34375,-1389.2188 C 604.21385,-1390.5179 602.82567,-1391.1562 601.1875,-1391.1562 C 601.00037,-1391.1562 600.8172,-1391.166 600.625,-1391.1562 z M 600,-1388.9375 C 600.23304,-1388.9543 600.46109,-1388.9375 600.6875,-1388.9375 C 603.51197,-1388.9374 604.93744,-1387.5864 604.9375,-1384.875 C 604.93742,-1378.8868 597.32104,-1370.4652 582.125,-1359.5625 C 578.34005,-1356.8509 567.78018,-1350.1022 550.4375,-1339.3125 C 562.24408,-1354.9605 569.86649,-1364.7271 573.3125,-1368.625 C 584.70399,-1381.7061 593.60434,-1388.4775 600,-1388.9375 z M 479.9375,-1324.0312 C 479.96959,-1324.0342 479.99941,-1324.0287 480.03125,-1324.0312 C 480.23171,-1324.0474 480.43434,-1324.0312 480.625,-1324.0312 C 483.90146,-1324.0313 485.53122,-1322.5996 485.53125,-1319.7188 C 485.53123,-1314.8605 481.24288,-1309.1408 472.65625,-1302.5312 C 464.35207,-1296.2042 457.6467,-1293.0313 452.5625,-1293.0312 C 451.27204,-1293.0312 450.32365,-1293.3323 449.71875,-1293.9062 C 449.70262,-1293.922 449.67189,-1293.9525 449.65625,-1293.9688 C 449.1868,-1294.4717 448.93751,-1295.2002 448.9375,-1296.0938 C 448.93752,-1300.0481 453.18861,-1305.6875 461.71875,-1313.0312 C 469.78551,-1319.9761 475.86178,-1323.6539 479.9375,-1324.0312 z M 266.03125,-1323.25 C 266.06455,-1323.2545 266.09185,-1323.246 266.125,-1323.25 C 266.13701,-1323.2506 266.17617,-1323.2507 266.1875,-1323.25 C 266.19137,-1323.2499 266.21476,-1323.2499 266.21875,-1323.25 C 266.23077,-1323.2505 266.26994,-1323.2506 266.28125,-1323.25 C 266.28512,-1323.2499 266.30851,-1323.2499 266.3125,-1323.25 C 266.32454,-1323.2504 266.36371,-1323.2505 266.375,-1323.25 C 266.37887,-1323.2499 266.40225,-1323.2499 266.40625,-1323.25 C 266.4183,-1323.2504 266.45748,-1323.2504 266.46875,-1323.25 C 266.47261,-1323.2499 266.496,-1323.2499 266.5,-1323.25 C 266.63863,-1323.2587 266.77032,-1323.25 266.90625,-1323.25 C 268.14904,-1323.2499 268.78122,-1322.6118 268.78125,-1321.3125 C 268.78123,-1317.923 262.42923,-1314.118 249.71875,-1309.9375 C 256.34901,-1318.1989 261.80237,-1322.6812 266.03125,-1323.25 z" />
+               d="m 600.625,-1391.1562 c -5.95832,0.301 -14.35188,5.2745 -25.1875,14.9062 -8.02176,7.2309 -17.34845,17.0349 -27.96875,29.4062 -5.64912,6.779 -11.28844,13.5649 -16.9375,20.3438 -2.59859,2.9941 -6.21148,6.0865 -10.84375,9.25 -4.06735,2.5986 -34.41191,25.3656 -39.3125,23.5312 -0.53337,-0.1997 -1.26798,-0.5781 -1.375,-1.0937 -0.23834,-1.1483 4.197,-6.4241 12.21875,-15.4063 4.97118,-5.4231 9.935,-10.858 14.90625,-16.2812 l -9.75,0 c -4.5193,5.2537 -7.46274,8.5878 -8.875,10 0.39541,-1.2993 0.56247,-2.4518 0.5625,-3.4688 -3e-5,-4.3497 -2.82569,-6.5312 -8.53125,-6.5312 -6.89191,0 -14.34728,2.7391 -22.3125,8.2188 -4.33149,2.9726 -7.43298,5.34 -9.59375,8.4687 10e-6,10e-5 -2.70434,0.8207 -4.625,1.7813 -1.92072,0.9603 -3.63101,1.4377 -5.15625,1.4374 -1.07335,0 -2.05892,-0.3593 -2.90625,-1.0937 8.24766,-6.6659 12.37496,-12.2618 12.375,-16.7813 -3e-5,-1.4687 -0.71877,-2.1874 -2.1875,-2.1874 -2.82458,10e-5 -5.96032,2.1444 -9.40625,6.4374 -3.33299,4.0675 -5.00002,7.5627 -5,10.5 -2e-5,2e-4 0.12376,0.5577 0.40625,1.6876 -11.01576,9.6599 -19.74753,14.5 -26.1875,14.5 -2.14665,0 -3.21874,-0.5145 -3.21875,-1.5313 10e-6,-1.1299 3.17303,-4.7428 9.5,-10.8437 6.32699,-6.1575 9.49998,-10.9976 9.5,-14.5 -10e-6,-4.0673 -1.62377,-6.0938 -4.84375,-6.0938 -2.37262,0 -6.9771,2.5779 -13.8125,7.7188 -5.81503,4.3374 -15.57478,13.2562 -21.6875,17.375 -7.68278,5.1972 -13.32205,7.7006 -16.9375,7.5312 L 362,-1294.8125 c 0.113,-1.1863 4.16577,-6.3056 12.1875,-15.3437 4.91471,-5.4798 9.83528,-10.9206 14.75,-16.3438 l -9.5625,0 c -5.93156,5.0842 -28.68563,25.426 -52.46875,32.625 -0.003,-10e-5 -0.0285,0 -0.0312,0 -0.007,0 -0.024,-9e-4 -0.0312,0 -0.0231,0 -0.0692,10e-4 -0.0937,0 -0.0162,0 -0.0475,0 -0.0625,0 -0.25291,-0.045 -0.55309,-0.2262 -0.75,-0.375 -0.0709,-0.056 -0.14178,-0.1228 -0.1875,-0.1875 -0.0137,-0.021 -0.0479,-0.068 -0.0625,-0.094 -0.0102,-0.025 -0.0259,-0.068 -0.0312,-0.094 1.1e-4,0 -5e-5,-0.028 0,-0.031 -2.7e-4,0 9e-5,-0.027 0,-0.031 10e-5,0 -2.9e-4,-0.026 0,-0.031 0.11886,-1.3111 6.11893,-8.3387 17,-20.5937 6.77891,-7.5132 13.5648,-15.0179 20.34375,-22.5313 7.66156,0.1978 12.06535,-0.09 13.15625,-0.8437 0.005,-0.01 0.0259,-0.026 0.0312,-0.031 0.0286,-0.026 0.0701,-0.067 0.0937,-0.094 0.003,0 0.028,-0.028 0.0312,-0.031 0.0301,-0.041 0.0768,-0.1117 0.0937,-0.1562 -10e-6,0 1.9e-4,-0.028 0,-0.031 l -1.125,-1.1876 -10.65625,0 14.90625,-16.5312 -9.90625,0 -14.75,16.5312 c -4.01396,-0.1416 -6.52566,0.1253 -7.5,0.8126 -0.10498,0.077 -0.20936,0.1857 -0.28125,0.2812 -0.0339,0.048 -0.0712,0.1095 -0.0937,0.1562 l 1.4375,1.125 4.40625,0 c -7.23085,8.0784 -28.18662,24.3812 -35.03125,28.5626 -6.79906,4.1534 -9.98436,4.8857 -12.1875,5.2812 2.03366,-3.333 3.06249,-6.989 3.0625,-11 -10e-6,-1.0168 -0.16106,-2.5228 -0.5,-4.5 -0.28246,-1.9772 -0.43751,-3.4832 -0.4375,-4.5 -10e-6,-1.5253 0.0805,-2.7582 0.25,-3.7188 3.50243,-2.8244 6.15502,-4.9314 7.90625,-6.3437 l -1.2813,-1.4383 c -0.003,10e-5 -0.0246,0 -0.0312,0 -0.003,-2e-4 -0.0285,0 -0.0312,0 -1.22688,0.4067 -7.82546,4.867 -19.78125,13.375 -10.91202,7.7653 -23.07076,16.4159 -30.75,21.5 -8.13471,5.4231 -14.88335,8.125 -20.25,8.125 -1.42992,0 -2.46833,-0.3306 -3.09375,-0.9688 -0.46922,-0.4943 -0.71875,-1.1889 -0.71875,-2.0624 1e-5,-4.0674 2.70189,-7.5192 8.125,-10.3438 5.02771,-2.2031 10.06604,-4.3845 15.09375,-6.5312 5.42312,-2.5987 8.12499,-5.5793 8.125,-8.9688 -10e-6,-2.9375 -1.78482,-4.4062 -5.34375,-4.4062 -6.21401,0 -13.00593,2.9431 -20.40625,8.875 -7.73925,6.2139 -11.62496,12.3677 -11.625,18.4687 3e-5,5.7056 3.72469,8.5625 11.125,8.5625 5.87507,0 16.51546,-5.5586 31.9375,-16.6875 0,0 25.61056,-17.7692 27.53125,-19.125 -7.00488,22.088 -15.34604,33.1251 -25.0625,33.125 -1.65102,0 -2.79395,-0.3633 -3.375,-1.0937 -0.0392,-0.051 -0.0909,-0.1329 -0.125,-0.1876 -0.18308,-0.3026 -0.28337,-0.6549 -0.3125,-1.0624 4.18035,0.1129 6.25001,-1.6284 6.25,-5.1876 1e-5,-2.0901 -1.19587,-3.125 -3.625,-3.125 -3.72839,1e-4 -5.59372,2.2247 -5.59375,6.6876 2e-5,4.2932 2.70187,6.4377 8.125,6.4374 6.77893,0 14.3641,-3.7306 22.78125,-11.1874 1.92069,-0.113 7.43056,-1.8252 11.3125,-3.7813 3.93186,-1.9813 16.21387,-10.4086 21.75,-14.25 -3.44595,3.446 -6.8978,6.8978 -10.34375,10.3437 -3.89786,4.5193 -5.84373,8.8017 -5.84375,12.8126 2e-5,3.5588 1.74779,5.3052 5.25,5.3437 11.23201,0.125 37.90549,-20.5574 40.15625,-22.2187 -3.89787,4.8583 -5.92427,7.3988 -6.09375,7.625 -2.20313,3.22 -3.3125,6.2382 -3.3125,9.0624 1e-5,3.672 1.74156,5.5314 5.1875,5.5313 2.76807,0 8.64294,-2.3797 17.625,-7.125 8.30152,-4.3268 18.00607,-13.323 22.78125,-17.875 6.04454,-5.762 10.3329,-8.613 12.875,-8.5 l 1.1875,0.875 c 3.8e-4,0.011 -10e-6,0.051 0,0.062 -0.002,0 -0.0242,0.024 -0.0312,0.031 -0.37172,0.832 -3.50081,4.2378 -9.375,10.2188 -6.214,6.327 -9.31248,11.2476 -9.3125,14.75 10e-6,4.8583 2.69585,7.2815 8.0625,7.2812 6.21401,0 15.38566,-4.9637 27.53125,-14.9062 1.41225,1.2993 2.9615,1.9688 4.65625,1.9688 2.70944,0 5.45731,-0.8337 8.25,-2.4376 -1.10458,2.2633 -1.625,4.5637 -1.625,6.9063 2e-5,5.8751 2.98073,8.8125 8.96875,8.8125 5.76209,0 12.82682,-3.2967 21.1875,-9.9062 -0.50842,1.4123 -0.75,2.881 -0.75,4.4062 -1e-5,3.6155 1.67303,5.4375 5.0625,5.4375 10.11059,0 35.97718,-20.524 38.40625,-22.2187 -3.84137,4.7453 -5.90503,7.286 -6.1875,7.625 -2.20314,3.22 -3.31249,6.2379 -3.3125,9.0624 2e-5,3.672 1.78481,5.5314 5.34375,5.5313 3.27649,0 9.23187,-2.256 17.875,-6.7187 7.40754,-4.4699 11.50601,-7.8449 14.34375,-10.375 L 544,-1309.375 c -0.005,0 -0.0248,0 -0.0312,0 -0.50984,0.2448 -4.56438,2.9961 -12.15625,8.2188 -7.28734,5.0276 -13.19428,6.6274 -17.3125,7.2812 -0.86863,0.1379 -1.68286,-0.1505 -1.4375,-0.9375 0.4599,-1.4752 1.3101,-2.4411 1.875,-3.0625 5.36665,-6.4964 10.76435,-12.935 16.1875,-19.375 6.55294,-7.8522 12.31001,-13.9999 17.28125,-18.4062 2.20312,-1.8643 8.98905,-6.1153 20.34375,-12.7813 11.75007,-6.8918 20.32678,-12.6057 25.75,-17.125 8.41708,-7.0048 12.6249,-13.4373 12.625,-19.3125 -8e-5,-1.6381 -0.59502,-3.1009 -1.78125,-4.3438 -1.1299,-1.2991 -2.51808,-1.9374 -4.15625,-1.9374 -0.18713,0 -0.3703,-0.01 -0.5625,0 z m -0.625,2.2187 c 0.23304,-0.017 0.46109,0 0.6875,0 2.82447,10e-5 4.24994,1.3511 4.25,4.0625 -8e-5,5.9882 -7.61646,14.4098 -22.8125,25.3125 -3.78495,2.7116 -14.34482,9.4603 -31.6875,20.25 11.80658,-15.648 19.42899,-25.4146 22.875,-29.3125 11.39149,-13.0811 20.29184,-19.8525 26.6875,-20.3125 z m -120.0625,64.9063 c 0.0321,0 0.0619,0 0.0937,0 0.20046,-0.016 0.40309,0 0.59375,0 3.27646,-1e-4 4.90622,1.4316 4.90625,4.3124 -2e-5,4.8583 -4.28837,10.578 -12.875,17.1876 -8.30418,6.327 -15.00955,9.4999 -20.09375,9.5 -1.29046,0 -2.23885,-0.3011 -2.84375,-0.875 -0.0161,-0.016 -0.0469,-0.046 -0.0625,-0.063 -0.46945,-0.5029 -0.71874,-1.2314 -0.71875,-2.125 2e-5,-3.9543 4.25111,-9.5937 12.78125,-16.9374 8.06676,-6.9449 14.14303,-10.6227 18.21875,-11 z m -213.90625,0.7812 c 0.0333,0 0.0606,0 0.0937,0 0.012,-6e-4 0.0512,-7e-4 0.0625,0 0.004,10e-5 0.0273,10e-5 0.0312,0 0.012,-5e-4 0.0512,-6e-4 0.0625,0 0.004,10e-5 0.0273,10e-5 0.0312,0 0.012,-4e-4 0.0512,-5e-4 0.0625,0 0.004,10e-5 0.0272,10e-5 0.0312,0 0.012,-4e-4 0.0512,-4e-4 0.0625,0 0.004,10e-5 0.0272,10e-5 0.0312,0 0.13863,-0.01 0.27032,0 0.40625,0 1.24279,10e-5 1.87497,0.6382 1.875,1.9375 -2e-5,3.3895 -6.35202,7.1945 -19.0625,11.375 6.63026,-8.2614 12.08362,-12.7437 16.3125,-13.3125 z"
+               inkscape:connector-curvature="0" />
             <path
-               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Exmouth"
+               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Exmouth"
                id="path8226"
-               d="M 406.81523,-1346.1607 C 406.02433,-1344.1834 404.18837,-1342.2627 401.30736,-1340.3986 C 399.21717,-1341.8108 397.55068,-1343.6185 396.3079,-1345.8217 C 397.38121,-1348.1943 399.10418,-1350.0302 401.47683,-1351.3296 C 403.22802,-1350.4822 405.00749,-1348.7592 406.81523,-1346.1607" />
+               d="m 406.81523,-1346.1607 c -0.7909,1.9773 -2.62686,3.898 -5.50787,5.7621 -2.09019,-1.4122 -3.75668,-3.2199 -4.99946,-5.4231 1.07331,-2.3726 2.79628,-4.2085 5.16893,-5.5079 1.75119,0.8474 3.53066,2.5704 5.3384,5.1689"
+               inkscape:connector-curvature="0" />
           </g>
         </g>
         <text
            sodipodi:linespacing="125%"
-           style="font-size:16.01663589px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999946px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Nimbus Mono L"
+           style="font-size:16.01663589px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999946px;marker:none;visibility:visible;display:inline;overflow:visible;font-family:Nimbus Mono L"
            xml:space="preserve"
            id="text8228"
            transform="matrix(0.9225601,-0.385853,1.2237141,0.5721321,0,0)"
@@ -85824,14 +86146,15 @@
              y="462.98654"
              x="-1088.8175">Slave</tspan></text>
         <path
-           style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.18643951;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+           style="fill:none;stroke:#ffffff;stroke-width:1.18643951;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
            id="path8299"
-           d="M -504.19823,712.94807 L -554.66946,693.13739" />
+           d="m -504.19823,712.94807 -50.47123,-19.81068"
+           inkscape:connector-curvature="0" />
         <g
            id="g8301"
-           transform="matrix(-5.230834e-2,0,0,5.230834e-2,-450.7166,836.48617)">
+           transform="matrix(-0.05230834,0,0,0.05230834,-450.7166,836.48617)">
           <rect
-             style="opacity:1;fill:url(#linearGradient16616);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+             style="fill:url(#linearGradient16616);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
              id="rect8303"
              transform="matrix(0.926956,0.375171,0,1,0,0)"
              y="-2666.4033"
@@ -85839,7 +86162,7 @@
              height="419.39819"
              width="996.81232" />
           <rect
-             style="opacity:1;fill:#3d993d;fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+             style="fill:#3d993d;fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
              id="rect8305"
              transform="matrix(0.929224,-0.369517,0,1,0,0)"
              y="-1753.9264"
@@ -85847,7 +86170,7 @@
              height="420.25934"
              width="593.28876" />
           <rect
-             style="opacity:1;fill:url(#linearGradient16618);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+             style="fill:url(#linearGradient16618);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
              id="rect8307"
              transform="matrix(0.926288,0.376817,-0.92919,0.369603,0,0)"
              y="-4162.4521"
@@ -85858,34 +86181,40 @@
              id="g8309"
              transform="matrix(-1,-0.473054,0,1,853.1705,-734.3579)">
             <path
-               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible"
                id="path8311"
-               d="M -171.2884,-1442.3646 L -193.54603,-1442.3646 C -233.29689,-1442.3646 -261.95449,-1409.0137 -261.95449,-1368.5517 C -261.95449,-1327.8764 -233.22578,-1294.4544 -193.54603,-1294.4544 L -171.2884,-1294.4544 L -171.2884,-1330.0098 L -186.71941,-1330.0098 C -207.48372,-1330.0098 -223.55473,-1342.5252 -223.55473,-1368.5517 C -223.55473,-1394.5782 -207.48372,-1406.8093 -186.71941,-1406.8093 L -171.2884,-1406.8093 L -171.2884,-1442.3646 z" />
+               d="m -171.2884,-1442.3646 -22.25763,0 c -39.75086,0 -68.40846,33.3509 -68.40846,73.8129 0,40.6753 28.72871,74.0973 68.40846,74.0973 l 22.25763,0 0,-35.5554 -15.43101,0 c -20.76431,0 -36.83532,-12.5154 -36.83532,-38.5419 0,-26.0265 16.07101,-38.2576 36.83532,-38.2576 l 15.43101,0 0,-35.5553 z"
+               inkscape:connector-curvature="0" />
             <path
-               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible"
                id="path8313"
-               d="M -103.37772,-1294.4544 L -103.37772,-1393.5116 C -103.37772,-1404.5337 -97.546644,-1411.5026 -88.586701,-1411.5026 C -79.484536,-1411.5026 -73.511241,-1404.3915 -73.511241,-1393.5116 L -73.511241,-1379.7872 L -96.622205,-1379.7872 L -96.622205,-1346.3652 L -73.511241,-1346.3652 L -73.511241,-1294.4544 L -36.533698,-1294.4544 L -36.533698,-1391.8049 C -36.533698,-1423.5203 -57.582453,-1444.9246 -88.586701,-1444.9246 C -119.51984,-1444.9246 -140.35526,-1423.4492 -140.35526,-1391.8049 L -140.35526,-1294.4544 L -103.37772,-1294.4544 z" />
+               d="m -103.37772,-1294.4544 0,-99.0572 c 0,-11.0221 5.831076,-17.991 14.791019,-17.991 9.102165,0 15.07546,7.1111 15.07546,17.991 l 0,13.7244 -23.110964,0 0,33.422 23.110964,0 0,51.9108 36.977543,0 0,-97.3505 c 0,-31.7154 -21.048755,-53.1197 -52.053003,-53.1197 -30.933139,0 -51.768559,21.4754 -51.768559,53.1197 l 0,97.3505 36.97754,0 z"
+               inkscape:connector-curvature="0" />
             <path
-               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible"
                id="path8315"
-               d="M 34.576962,-1294.4544 L 34.576962,-1381.2094 L 34.576962,-1381.2094 L 68.923411,-1315.2187 C 78.594461,-1296.3744 85.634416,-1291.8944 95.163245,-1291.8944 C 104.40763,-1291.8944 114.93201,-1299.9299 114.93201,-1313.5121 L 114.93201,-1442.3646 L 77.954465,-1442.3646 L 77.954465,-1364.2851 L 77.38558,-1364.2851 L 44.532455,-1429.4936 C 39.056934,-1440.3024 31.661425,-1444.9246 19.145949,-1444.9246 C 6.7015837,-1444.9246 -2.4005808,-1436.5335 -2.4005808,-1424.8003 L -2.4005808,-1294.4544 L 34.576962,-1294.4544 z" />
+               d="m 34.576962,-1294.4544 0,-86.755 0,0 34.346449,65.9907 c 9.67105,18.8443 16.711005,23.3243 26.239834,23.3243 9.244385,0 19.768765,-8.0355 19.768765,-21.6177 l 0,-128.8525 -36.977545,0 0,78.0795 -0.568885,0 -32.853125,-65.2085 c -5.475521,-10.8088 -12.87103,-15.431 -25.386506,-15.431 -12.4443653,0 -21.5465298,8.3911 -21.5465298,20.1243 l 0,130.3459 36.9775428,0 z"
+               inkscape:connector-curvature="0" />
             <path
-               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Exmouth"
+               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Exmouth"
                id="path8317"
-               d="M 252.34055,-1353.787 L 261.74631,-1354.8885 C 268.4121,-1362.9102 273.7505,-1366.921 277.76151,-1366.9211 C 280.47292,-1366.921 281.82871,-1365.8195 281.82886,-1363.6164 C 281.82871,-1361.0742 279.68205,-1358.6451 275.38889,-1356.3291 C 272.05577,-1354.4648 268.77929,-1353.222 265.55945,-1352.6006 C 264.09054,-1349.2111 262.62178,-1345.7934 261.15315,-1342.3475 C 258.89338,-1337.8282 256.549,-1335.5686 254.12002,-1335.5686 C 253.55498,-1335.5686 252.76411,-1335.5968 251.7474,-1335.6533 C 250.73043,-1335.7098 249.99605,-1335.7663 249.54425,-1335.8228 L 248.52741,-1336.3312 C 248.64027,-1337.6305 250.2785,-1340.342 253.44213,-1344.4659 C 256.04058,-1347.7989 258.24373,-1350.3974 260.05158,-1352.2617 L 251.06951,-1351.1601 C 240.05364,-1332.2356 228.78369,-1318.1976 217.25963,-1309.0461 C 202.91083,-1297.5784 186.246,-1291.8446 167.26508,-1291.8446 C 159.80823,-1291.8446 153.53773,-1292.8331 148.45357,-1294.8103 C 141.2227,-1297.6349 137.60728,-1302.1824 137.6073,-1308.4529 C 137.60728,-1310.5996 138.28517,-1312.379 139.64097,-1313.7913 C 141.05323,-1315.2601 142.80445,-1315.9944 144.89464,-1315.9945 C 146.30689,-1315.9944 147.52145,-1315.373 148.53831,-1314.1303 C 149.61161,-1312.9439 150.14828,-1311.6164 150.1483,-1310.1476 C 150.14828,-1308.9048 149.72459,-1307.6903 148.87726,-1306.504 C 147.97337,-1305.1482 146.92829,-1304.4703 145.742,-1304.4703 C 143.87778,-1304.4703 142.15481,-1305.0352 140.57308,-1306.165 C 142.26779,-1297.9738 150.99564,-1293.8782 166.75666,-1293.8782 C 178.50674,-1293.8782 188.95757,-1296.7593 198.10918,-1302.5214 C 205.33995,-1307.0971 212.68377,-1314.1585 220.14067,-1323.7055 C 226.52406,-1332.631 232.90753,-1341.5284 239.29113,-1350.3975 C 228.38826,-1349.776 217.96568,-1347.7424 208.02335,-1344.2965 C 201.18786,-1341.9803 198.08086,-1340.8222 198.70233,-1340.8223 L 198.10918,-1340.8223 L 197.43128,-1341.8391 L 198.19391,-1342.8559 C 208.58818,-1348.166 222.76741,-1351.4143 240.73165,-1352.6006 C 246.21116,-1359.8879 254.6848,-1369.3219 266.15261,-1380.9026 C 278.52399,-1393.4435 287.84499,-1401.663 294.11566,-1405.561 L 295.21724,-1405.8152 L 295.89513,-1405.0526 L 295.55618,-1404.1205 C 293.91777,-1402.1996 291.51691,-1399.94 288.35358,-1397.3415 C 284.39905,-1394.065 281.8852,-1391.9183 280.81203,-1390.9016 C 269.00526,-1379.7162 259.51478,-1367.3447 252.34055,-1353.787 M 279.45624,-1363.108 C 279.45609,-1364.1247 278.94767,-1364.6332 277.93098,-1364.6332 C 276.06663,-1364.6332 273.86348,-1363.4751 271.32154,-1361.159 C 269.17473,-1359.2383 267.50825,-1357.2611 266.32208,-1355.2275 C 268.29912,-1355.6229 270.81297,-1356.6114 273.86363,-1358.1933 C 277.59188,-1360.0574 279.45609,-1361.6956 279.45624,-1363.108 M 245.13795,-1411.4925 C 231.46701,-1411.4924 218.55883,-1408.8656 206.41336,-1403.612 C 190.82177,-1396.8895 183.02602,-1387.5685 183.02608,-1375.649 C 183.02602,-1371.0731 185.42688,-1367.5989 190.22868,-1365.2264 C 193.95702,-1363.3056 198.36331,-1362.3453 203.44758,-1362.3453 C 211.13027,-1362.3453 219.88637,-1364.6614 229.7159,-1369.2937 C 241.18346,-1374.7168 246.91729,-1380.8178 246.91742,-1387.5968 C 246.91729,-1390.6472 245.67449,-1393.0199 243.18901,-1394.7147 C 241.04223,-1396.1834 238.4154,-1396.9177 235.30851,-1396.9178 C 222.14601,-1396.9177 209.26607,-1391.2969 196.66866,-1380.0553 C 194.86087,-1378.078 192.06457,-1375.2817 188.27974,-1371.6664 L 187.51711,-1371.5816 L 186.92396,-1372.2595 L 187.17817,-1373.1916 C 190.05914,-1379.0101 197.09227,-1384.8287 208.27756,-1390.6473 C 218.95427,-1396.2399 227.7951,-1399.0362 234.80009,-1399.0363 C 238.4154,-1399.0362 241.55065,-1398.217 244.20585,-1396.5789 C 247.36922,-1394.6581 248.95097,-1391.9748 248.95109,-1388.5289 C 248.95097,-1380.5636 243.16064,-1373.6435 231.5801,-1367.7685 C 221.63759,-1362.6842 212.26009,-1360.1421 203.44758,-1360.1422 C 197.62893,-1360.1421 192.65772,-1361.3002 188.53395,-1363.6164 C 183.4497,-1366.4409 180.9076,-1370.5647 180.90766,-1375.9879 C 180.9076,-1380.8461 182.17865,-1385.0829 184.72081,-1388.6984 C 193.58983,-1401.3523 208.30572,-1409.4305 228.86854,-1412.9331 C 238.07646,-1414.4582 255.56041,-1415.2208 281.32045,-1415.2209 C 287.76026,-1415.2208 297.39197,-1415.1643 310.2156,-1415.0515 C 323.09535,-1414.9949 332.72706,-1414.9666 339.11076,-1414.9667 C 344.30771,-1414.9666 348.23383,-1415.5315 350.88913,-1416.6615 C 352.75311,-1417.3957 355.97309,-1419.5141 360.5491,-1423.0167 L 361.39646,-1423.3556 L 362.32856,-1422.1693 L 362.07435,-1421.322 C 352.75311,-1411.2664 337.30283,-1406.2388 315.72348,-1406.2389 C 307.81455,-1406.2388 296.03618,-1407.1144 280.38834,-1408.8657 C 264.74019,-1410.6168 252.99007,-1411.4924 245.13795,-1411.4925" />
+               d="m 252.34055,-1353.787 9.40576,-1.1015 c 6.66579,-8.0217 12.00419,-12.0325 16.0152,-12.0326 2.71141,10e-5 4.0672,1.1016 4.06735,3.3047 -1.5e-4,2.5422 -2.14681,4.9713 -6.43997,7.2873 -3.33312,1.8643 -6.6096,3.1071 -9.82944,3.7285 -1.46891,3.3895 -2.93767,6.8072 -4.4063,10.2531 -2.25977,4.5193 -4.60415,6.7789 -7.03313,6.7789 -0.56504,0 -1.35591,-0.028 -2.37262,-0.085 -1.01697,-0.057 -1.75135,-0.113 -2.20315,-0.1695 l -1.01684,-0.5084 c 0.11286,-1.2993 1.75109,-4.0108 4.91472,-8.1347 2.59845,-3.333 4.8016,-5.9315 6.60945,-7.7958 l -8.98207,1.1016 c -11.01587,18.9245 -22.28582,32.9625 -33.80988,42.114 -14.3488,11.4677 -31.01363,17.2015 -49.99455,17.2015 -7.45685,0 -13.72735,-0.9885 -18.81151,-2.9657 -7.23087,-2.8246 -10.84629,-7.3721 -10.84627,-13.6426 -2e-5,-2.1467 0.67787,-3.9261 2.03367,-5.3384 1.41226,-1.4688 3.16348,-2.2031 5.25367,-2.2032 1.41225,10e-5 2.62681,0.6215 3.64367,1.8642 1.0733,1.1864 1.60997,2.5139 1.60999,3.9827 -2e-5,1.2428 -0.42371,2.4573 -1.27104,3.6436 -0.90389,1.3558 -1.94897,2.0337 -3.13526,2.0337 -1.86422,0 -3.58719,-0.5649 -5.16892,-1.6947 1.69471,8.1912 10.42256,12.2868 26.18358,12.2868 11.75008,0 22.20091,-2.8811 31.35252,-8.6432 7.23077,-4.5757 14.57459,-11.6371 22.03149,-21.1841 6.38339,-8.9255 12.76686,-17.8229 19.15046,-26.692 -10.90287,0.6215 -21.32545,2.6551 -31.26778,6.101 -6.83549,2.3162 -9.94249,3.4743 -9.32102,3.4742 l -0.59315,0 -0.6779,-1.0168 0.76263,-1.0168 c 10.39427,-5.3101 24.5735,-8.5584 42.53774,-9.7447 5.47951,-7.2873 13.95315,-16.7213 25.42096,-28.302 12.37138,-12.5409 21.69238,-20.7604 27.96305,-24.6584 l 1.10158,-0.2542 0.67789,0.7626 -0.33895,0.9321 c -1.63841,1.9209 -4.03927,4.1805 -7.2026,6.779 -3.95453,3.2765 -6.46838,5.4232 -7.54155,6.4399 -11.80677,11.1854 -21.29725,23.5569 -28.47148,37.1146 m 27.11569,-9.321 c -1.5e-4,-1.0167 -0.50857,-1.5252 -1.52526,-1.5252 -1.86435,0 -4.0675,1.1581 -6.60944,3.4742 -2.14681,1.9207 -3.81329,3.8979 -4.99946,5.9315 1.97704,-0.3954 4.49089,-1.3839 7.54155,-2.9658 3.72825,-1.8641 5.59246,-3.5023 5.59261,-4.9147 m -34.31829,-48.3845 c -13.67094,10e-5 -26.57912,2.6269 -38.72459,7.8805 -15.59159,6.7225 -23.38734,16.0435 -23.38728,27.963 -6e-5,4.5759 2.4008,8.0501 7.2026,10.4226 3.72834,1.9208 8.13463,2.8811 13.2189,2.8811 7.68269,0 16.43879,-2.3161 26.26832,-6.9484 11.46756,-5.4231 17.20139,-11.5241 17.20152,-18.3031 -1.3e-4,-3.0504 -1.24293,-5.4231 -3.72841,-7.1179 -2.14678,-1.4687 -4.77361,-2.203 -7.8805,-2.2031 -13.1625,1e-4 -26.04244,5.6209 -38.63985,16.8625 -1.80779,1.9773 -4.60409,4.7736 -8.38892,8.3889 l -0.76263,0.085 -0.59315,-0.6779 0.25421,-0.9321 c 2.88097,-5.8185 9.9141,-11.6371 21.09939,-17.4557 10.67671,-5.5926 19.51754,-8.3889 26.52253,-8.389 3.61531,10e-5 6.75056,0.8193 9.40576,2.4574 3.16337,1.9208 4.74512,4.6041 4.74524,8.05 -1.2e-4,7.9653 -5.79045,14.8854 -17.37099,20.7604 -9.94251,5.0843 -19.32001,7.6264 -28.13252,7.6263 -5.81865,10e-5 -10.78986,-1.158 -14.91363,-3.4742 -5.08425,-2.8245 -7.62635,-6.9483 -7.62629,-12.3715 -6e-5,-4.8582 1.27099,-9.095 3.81315,-12.7105 8.86902,-12.6539 23.58491,-20.7321 44.14773,-24.2347 9.20792,-1.5251 26.69187,-2.2877 52.45191,-2.2878 6.43981,10e-5 16.07152,0.057 28.89515,0.1694 12.87975,0.057 22.51146,0.085 28.89516,0.085 5.19695,10e-5 9.12307,-0.5648 11.77837,-1.6948 1.86398,-0.7342 5.08396,-2.8526 9.65997,-6.3552 l 0.84736,-0.3389 0.9321,1.1863 -0.25421,0.8473 c -9.32124,10.0556 -24.77152,15.0832 -46.35087,15.0831 -7.90893,10e-5 -19.6873,-0.8755 -35.33514,-2.6268 -15.64815,-1.7511 -27.39827,-2.6267 -35.25039,-2.6268"
+               inkscape:connector-curvature="0" />
             <path
-               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Exmouth"
+               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Exmouth"
                id="path8319"
-               d="M 600.625,-1391.1562 C 594.66668,-1390.8552 586.27312,-1385.8817 575.4375,-1376.25 C 567.41574,-1369.0191 558.08905,-1359.2151 547.46875,-1346.8438 C 541.81963,-1340.0648 536.18031,-1333.2789 530.53125,-1326.5 C 527.93266,-1323.5059 524.31977,-1320.4135 519.6875,-1317.25 C 515.62015,-1314.6514 485.27559,-1291.8844 480.375,-1293.7188 C 479.84163,-1293.9185 479.10702,-1294.2969 479,-1294.8125 C 478.76166,-1295.9608 483.197,-1301.2366 491.21875,-1310.2188 C 496.18993,-1315.6419 501.15375,-1321.0768 506.125,-1326.5 L 496.375,-1326.5 C 491.8557,-1321.2463 488.91226,-1317.9122 487.5,-1316.5 C 487.89541,-1317.7993 488.06247,-1318.9518 488.0625,-1319.9688 C 488.06247,-1324.3185 485.23681,-1326.5 479.53125,-1326.5 C 472.63934,-1326.5 465.18397,-1323.7609 457.21875,-1318.2812 C 452.88726,-1315.3086 449.78577,-1312.9412 447.625,-1309.8125 C 447.62501,-1309.8124 444.92066,-1308.9918 443,-1308.0312 C 441.07928,-1307.0709 439.36899,-1306.5935 437.84375,-1306.5938 C 436.7704,-1306.5938 435.78483,-1306.9531 434.9375,-1307.6875 C 443.18516,-1314.3534 447.31246,-1319.9493 447.3125,-1324.4688 C 447.31247,-1325.9375 446.59373,-1326.6562 445.125,-1326.6562 C 442.30042,-1326.6561 439.16468,-1324.5118 435.71875,-1320.2188 C 432.38576,-1316.1513 430.71873,-1312.6561 430.71875,-1309.7188 C 430.71873,-1309.7186 430.84251,-1309.1611 431.125,-1308.0312 C 420.10924,-1298.3713 411.37747,-1293.5312 404.9375,-1293.5312 C 402.79085,-1293.5312 401.71876,-1294.0457 401.71875,-1295.0625 C 401.71876,-1296.1924 404.89178,-1299.8053 411.21875,-1305.9062 C 417.54574,-1312.0637 420.71873,-1316.9038 420.71875,-1320.4062 C 420.71874,-1324.4735 419.09498,-1326.5 415.875,-1326.5 C 413.50238,-1326.5 408.8979,-1323.9221 402.0625,-1318.7812 C 396.24747,-1314.4438 386.48772,-1305.525 380.375,-1301.4062 C 372.69222,-1296.209 367.05295,-1293.7056 363.4375,-1293.875 L 362,-1294.8125 C 362.113,-1295.9988 366.16577,-1301.1181 374.1875,-1310.1562 C 379.10221,-1315.636 384.02278,-1321.0768 388.9375,-1326.5 L 379.375,-1326.5 C 373.44344,-1321.4158 350.68937,-1301.074 326.90625,-1293.875 C 326.90292,-1293.8751 326.87779,-1293.875 326.875,-1293.875 C 326.86825,-1293.8737 326.85105,-1293.8759 326.84375,-1293.875 C 326.82062,-1293.8733 326.77455,-1293.874 326.75,-1293.875 C 326.73383,-1293.8762 326.7025,-1293.8729 326.6875,-1293.875 C 326.43459,-1293.9202 326.13441,-1294.1012 325.9375,-1294.25 C 325.86661,-1294.3058 325.79572,-1294.3728 325.75,-1294.4375 C 325.73632,-1294.4583 325.70212,-1294.5059 325.6875,-1294.5312 C 325.67728,-1294.5563 325.66164,-1294.5991 325.65625,-1294.625 C 325.65636,-1294.6281 325.6562,-1294.6535 325.65625,-1294.6562 C 325.65598,-1294.6607 325.65634,-1294.6828 325.65625,-1294.6875 C 325.65635,-1294.6924 325.65596,-1294.7137 325.65625,-1294.7188 C 325.77511,-1296.0299 331.77518,-1303.0575 342.65625,-1315.3125 C 349.43516,-1322.8257 356.22105,-1330.3304 363,-1337.8438 C 370.66156,-1337.646 375.06535,-1337.9334 376.15625,-1338.6875 C 376.16166,-1338.6929 376.18213,-1338.7132 376.1875,-1338.7188 C 376.21612,-1338.7444 376.2576,-1338.7854 376.28125,-1338.8125 C 376.28404,-1338.8152 376.30926,-1338.8406 376.3125,-1338.8438 C 376.34255,-1338.8848 376.38932,-1338.9555 376.40625,-1339 C 376.40624,-1339.0027 376.40644,-1339.0284 376.40625,-1339.0312 L 375.28125,-1340.2188 L 364.625,-1340.2188 L 379.53125,-1356.75 L 369.625,-1356.75 L 354.875,-1340.2188 C 350.86104,-1340.3604 348.34934,-1340.0935 347.375,-1339.4062 C 347.27002,-1339.3291 347.16564,-1339.2205 347.09375,-1339.125 C 347.05986,-1339.0771 347.02254,-1339.0155 347,-1338.9688 L 348.4375,-1337.8438 L 352.84375,-1337.8438 C 345.6129,-1329.7654 324.65713,-1313.4626 317.8125,-1309.2812 C 311.01344,-1305.1278 307.82814,-1304.3955 305.625,-1304 C 307.65866,-1307.333 308.68749,-1310.989 308.6875,-1315 C 308.68749,-1316.0168 308.52644,-1317.5228 308.1875,-1319.5 C 307.90504,-1321.4772 307.74999,-1322.9832 307.75,-1324 C 307.74999,-1325.5253 307.83052,-1326.7582 308,-1327.7188 C 311.50243,-1330.5432 314.15502,-1332.6502 315.90625,-1334.0625 L 314.625,-1335.5 C 314.62176,-1335.4999 314.60041,-1335.5 314.59375,-1335.5 C 314.59097,-1335.5002 314.56523,-1335.5 314.5625,-1335.5 C 313.33562,-1335.0933 306.73704,-1330.633 294.78125,-1322.125 C 283.86923,-1314.3597 271.71049,-1305.7091 264.03125,-1300.625 C 255.89654,-1295.2019 249.1479,-1292.5 243.78125,-1292.5 C 242.35133,-1292.5 241.31292,-1292.8306 240.6875,-1293.4688 C 240.21828,-1293.9631 239.96875,-1294.6577 239.96875,-1295.5312 C 239.96876,-1299.5986 242.67064,-1303.0504 248.09375,-1305.875 C 253.12146,-1308.0781 258.15979,-1310.2595 263.1875,-1312.4062 C 268.61062,-1315.0049 271.31249,-1317.9855 271.3125,-1321.375 C 271.31249,-1324.3125 269.52768,-1325.7812 265.96875,-1325.7812 C 259.75474,-1325.7812 252.96282,-1322.8381 245.5625,-1316.9062 C 237.82325,-1310.6923 233.93754,-1304.5385 233.9375,-1298.4375 C 233.93753,-1292.7319 237.66219,-1289.875 245.0625,-1289.875 C 250.93757,-1289.875 261.57796,-1295.4336 277,-1306.5625 C 277,-1306.5625 302.61056,-1324.3317 304.53125,-1325.6875 C 297.52637,-1303.5995 289.18521,-1292.5624 279.46875,-1292.5625 C 277.81773,-1292.5625 276.6748,-1292.9258 276.09375,-1293.6562 C 276.05453,-1293.7072 276.00289,-1293.7891 275.96875,-1293.8438 C 275.78567,-1294.1464 275.68538,-1294.4987 275.65625,-1294.9062 C 279.8366,-1294.7933 281.90626,-1296.5346 281.90625,-1300.0938 C 281.90626,-1302.1839 280.71038,-1303.2188 278.28125,-1303.2188 C 274.55286,-1303.2187 272.68753,-1300.9941 272.6875,-1296.5312 C 272.68752,-1292.238 275.38937,-1290.0935 280.8125,-1290.0938 C 287.59143,-1290.0938 295.1766,-1293.8244 303.59375,-1301.2812 C 305.51444,-1301.3942 311.02431,-1303.1064 314.90625,-1305.0625 C 318.83811,-1307.0438 331.12012,-1315.4711 336.65625,-1319.3125 C 333.2103,-1315.8665 329.75845,-1312.4147 326.3125,-1308.9688 C 322.41464,-1304.4495 320.46877,-1300.1671 320.46875,-1296.1562 C 320.46877,-1292.5974 322.21654,-1290.851 325.71875,-1290.8125 C 336.95076,-1290.6875 363.62424,-1311.3699 365.875,-1313.0312 C 361.97713,-1308.1729 359.95073,-1305.6324 359.78125,-1305.4062 C 357.57812,-1302.1862 356.46875,-1299.168 356.46875,-1296.3438 C 356.46876,-1292.6718 358.21031,-1290.8124 361.65625,-1290.8125 C 364.42432,-1290.8125 370.29919,-1293.1922 379.28125,-1297.9375 C 387.58277,-1302.2643 397.28732,-1311.2605 402.0625,-1315.8125 C 408.10704,-1321.5745 412.3954,-1324.4255 414.9375,-1324.3125 L 416.125,-1323.4375 C 416.12538,-1323.4266 416.12499,-1323.3862 416.125,-1323.375 C 416.1232,-1323.3735 416.10075,-1323.3508 416.09375,-1323.3438 C 415.72203,-1322.5118 412.59294,-1319.106 406.71875,-1313.125 C 400.50475,-1306.798 397.40627,-1301.8774 397.40625,-1298.375 C 397.40626,-1293.5167 400.1021,-1291.0935 405.46875,-1291.0938 C 411.68276,-1291.0938 420.85441,-1296.0575 433,-1306 C 434.41225,-1304.7007 435.9615,-1304.0312 437.65625,-1304.0312 C 440.36569,-1304.0312 443.11356,-1304.8649 445.90625,-1306.4688 C 444.80167,-1304.2055 444.28125,-1301.9051 444.28125,-1299.5625 C 444.28127,-1293.6874 447.26198,-1290.75 453.25,-1290.75 C 459.01209,-1290.75 466.07682,-1294.0467 474.4375,-1300.6562 C 473.92908,-1299.2439 473.6875,-1297.7752 473.6875,-1296.25 C 473.68749,-1292.6345 475.36053,-1290.8125 478.75,-1290.8125 C 488.86059,-1290.8125 514.72718,-1311.3365 517.15625,-1313.0312 C 513.31488,-1308.2859 511.25122,-1305.7452 510.96875,-1305.4062 C 508.76561,-1302.1862 507.65626,-1299.1683 507.65625,-1296.3438 C 507.65627,-1292.6718 509.44106,-1290.8124 513,-1290.8125 C 516.27649,-1290.8125 522.23187,-1293.0685 530.875,-1297.5312 C 538.28254,-1302.0011 542.38101,-1305.3761 545.21875,-1307.9062 L 544,-1309.375 C 543.99545,-1309.3737 543.9752,-1309.3777 543.96875,-1309.375 C 543.45891,-1309.1302 539.40437,-1306.3789 531.8125,-1301.1562 C 524.52516,-1296.1286 518.61822,-1294.5288 514.5,-1293.875 C 513.63137,-1293.7371 512.81714,-1294.0255 513.0625,-1294.8125 C 513.5224,-1296.2877 514.3726,-1297.2536 514.9375,-1297.875 C 520.30415,-1304.3714 525.70185,-1310.81 531.125,-1317.25 C 537.67794,-1325.1022 543.43501,-1331.2499 548.40625,-1335.6562 C 550.60937,-1337.5205 557.3953,-1341.7715 568.75,-1348.4375 C 580.50007,-1355.3293 589.07678,-1361.0432 594.5,-1365.5625 C 602.91708,-1372.5673 607.1249,-1378.9998 607.125,-1384.875 C 607.12492,-1386.5131 606.52998,-1387.9759 605.34375,-1389.2188 C 604.21385,-1390.5179 602.82567,-1391.1562 601.1875,-1391.1562 C 601.00037,-1391.1562 600.8172,-1391.166 600.625,-1391.1562 z M 600,-1388.9375 C 600.23304,-1388.9543 600.46109,-1388.9375 600.6875,-1388.9375 C 603.51197,-1388.9374 604.93744,-1387.5864 604.9375,-1384.875 C 604.93742,-1378.8868 597.32104,-1370.4652 582.125,-1359.5625 C 578.34005,-1356.8509 567.78018,-1350.1022 550.4375,-1339.3125 C 562.24408,-1354.9605 569.86649,-1364.7271 573.3125,-1368.625 C 584.70399,-1381.7061 593.60434,-1388.4775 600,-1388.9375 z M 479.9375,-1324.0312 C 479.96959,-1324.0342 479.99941,-1324.0287 480.03125,-1324.0312 C 480.23171,-1324.0474 480.43434,-1324.0312 480.625,-1324.0312 C 483.90146,-1324.0313 485.53122,-1322.5996 485.53125,-1319.7188 C 485.53123,-1314.8605 481.24288,-1309.1408 472.65625,-1302.5312 C 464.35207,-1296.2042 457.6467,-1293.0313 452.5625,-1293.0312 C 451.27204,-1293.0312 450.32365,-1293.3323 449.71875,-1293.9062 C 449.70262,-1293.922 449.67189,-1293.9525 449.65625,-1293.9688 C 449.1868,-1294.4717 448.93751,-1295.2002 448.9375,-1296.0938 C 448.93752,-1300.0481 453.18861,-1305.6875 461.71875,-1313.0312 C 469.78551,-1319.9761 475.86178,-1323.6539 479.9375,-1324.0312 z M 266.03125,-1323.25 C 266.06455,-1323.2545 266.09185,-1323.246 266.125,-1323.25 C 266.13701,-1323.2506 266.17617,-1323.2507 266.1875,-1323.25 C 266.19137,-1323.2499 266.21476,-1323.2499 266.21875,-1323.25 C 266.23077,-1323.2505 266.26994,-1323.2506 266.28125,-1323.25 C 266.28512,-1323.2499 266.30851,-1323.2499 266.3125,-1323.25 C 266.32454,-1323.2504 266.36371,-1323.2505 266.375,-1323.25 C 266.37887,-1323.2499 266.40225,-1323.2499 266.40625,-1323.25 C 266.4183,-1323.2504 266.45748,-1323.2504 266.46875,-1323.25 C 266.47261,-1323.2499 266.496,-1323.2499 266.5,-1323.25 C 266.63863,-1323.2587 266.77032,-1323.25 266.90625,-1323.25 C 268.14904,-1323.2499 268.78122,-1322.6118 268.78125,-1321.3125 C 268.78123,-1317.923 262.42923,-1314.118 249.71875,-1309.9375 C 256.34901,-1318.1989 261.80237,-1322.6812 266.03125,-1323.25 z" />
+               d="m 600.625,-1391.1562 c -5.95832,0.301 -14.35188,5.2745 -25.1875,14.9062 -8.02176,7.2309 -17.34845,17.0349 -27.96875,29.4062 -5.64912,6.779 -11.28844,13.5649 -16.9375,20.3438 -2.59859,2.9941 -6.21148,6.0865 -10.84375,9.25 -4.06735,2.5986 -34.41191,25.3656 -39.3125,23.5312 -0.53337,-0.1997 -1.26798,-0.5781 -1.375,-1.0937 -0.23834,-1.1483 4.197,-6.4241 12.21875,-15.4063 4.97118,-5.4231 9.935,-10.858 14.90625,-16.2812 l -9.75,0 c -4.5193,5.2537 -7.46274,8.5878 -8.875,10 0.39541,-1.2993 0.56247,-2.4518 0.5625,-3.4688 -3e-5,-4.3497 -2.82569,-6.5312 -8.53125,-6.5312 -6.89191,0 -14.34728,2.7391 -22.3125,8.2188 -4.33149,2.9726 -7.43298,5.34 -9.59375,8.4687 10e-6,10e-5 -2.70434,0.8207 -4.625,1.7813 -1.92072,0.9603 -3.63101,1.4377 -5.15625,1.4374 -1.07335,0 -2.05892,-0.3593 -2.90625,-1.0937 8.24766,-6.6659 12.37496,-12.2618 12.375,-16.7813 -3e-5,-1.4687 -0.71877,-2.1874 -2.1875,-2.1874 -2.82458,10e-5 -5.96032,2.1444 -9.40625,6.4374 -3.33299,4.0675 -5.00002,7.5627 -5,10.5 -2e-5,2e-4 0.12376,0.5577 0.40625,1.6876 -11.01576,9.6599 -19.74753,14.5 -26.1875,14.5 -2.14665,0 -3.21874,-0.5145 -3.21875,-1.5313 10e-6,-1.1299 3.17303,-4.7428 9.5,-10.8437 6.32699,-6.1575 9.49998,-10.9976 9.5,-14.5 -10e-6,-4.0673 -1.62377,-6.0938 -4.84375,-6.0938 -2.37262,0 -6.9771,2.5779 -13.8125,7.7188 -5.81503,4.3374 -15.57478,13.2562 -21.6875,17.375 -7.68278,5.1972 -13.32205,7.7006 -16.9375,7.5312 L 362,-1294.8125 c 0.113,-1.1863 4.16577,-6.3056 12.1875,-15.3437 4.91471,-5.4798 9.83528,-10.9206 14.75,-16.3438 l -9.5625,0 c -5.93156,5.0842 -28.68563,25.426 -52.46875,32.625 -0.003,-10e-5 -0.0285,0 -0.0312,0 -0.007,0 -0.024,-9e-4 -0.0312,0 -0.0231,0 -0.0692,10e-4 -0.0937,0 -0.0162,0 -0.0475,0 -0.0625,0 -0.25291,-0.045 -0.55309,-0.2262 -0.75,-0.375 -0.0709,-0.056 -0.14178,-0.1228 -0.1875,-0.1875 -0.0137,-0.021 -0.0479,-0.068 -0.0625,-0.094 -0.0102,-0.025 -0.0259,-0.068 -0.0312,-0.094 1.1e-4,0 -5e-5,-0.028 0,-0.031 -2.7e-4,0 9e-5,-0.027 0,-0.031 10e-5,0 -2.9e-4,-0.026 0,-0.031 0.11886,-1.3111 6.11893,-8.3387 17,-20.5937 6.77891,-7.5132 13.5648,-15.0179 20.34375,-22.5313 7.66156,0.1978 12.06535,-0.09 13.15625,-0.8437 0.005,-0.01 0.0259,-0.026 0.0312,-0.031 0.0286,-0.026 0.0701,-0.067 0.0937,-0.094 0.003,0 0.028,-0.028 0.0312,-0.031 0.0301,-0.041 0.0768,-0.1117 0.0937,-0.1562 -10e-6,0 1.9e-4,-0.028 0,-0.031 l -1.125,-1.1876 -10.65625,0 14.90625,-16.5312 -9.90625,0 -14.75,16.5312 c -4.01396,-0.1416 -6.52566,0.1253 -7.5,0.8126 -0.10498,0.077 -0.20936,0.1857 -0.28125,0.2812 -0.0339,0.048 -0.0712,0.1095 -0.0937,0.1562 l 1.4375,1.125 4.40625,0 c -7.23085,8.0784 -28.18662,24.3812 -35.03125,28.5626 -6.79906,4.1534 -9.98436,4.8857 -12.1875,5.2812 2.03366,-3.333 3.06249,-6.989 3.0625,-11 -10e-6,-1.0168 -0.16106,-2.5228 -0.5,-4.5 -0.28246,-1.9772 -0.43751,-3.4832 -0.4375,-4.5 -10e-6,-1.5253 0.0805,-2.7582 0.25,-3.7188 3.50243,-2.8244 6.15502,-4.9314 7.90625,-6.3437 l -1.2813,-1.4383 c -0.003,10e-5 -0.0246,0 -0.0312,0 -0.003,-2e-4 -0.0285,0 -0.0312,0 -1.22688,0.4067 -7.82546,4.867 -19.78125,13.375 -10.91202,7.7653 -23.07076,16.4159 -30.75,21.5 -8.13471,5.4231 -14.88335,8.125 -20.25,8.125 -1.42992,0 -2.46833,-0.3306 -3.09375,-0.9688 -0.46922,-0.4943 -0.71875,-1.1889 -0.71875,-2.0624 1e-5,-4.0674 2.70189,-7.5192 8.125,-10.3438 5.02771,-2.2031 10.06604,-4.3845 15.09375,-6.5312 5.42312,-2.5987 8.12499,-5.5793 8.125,-8.9688 -10e-6,-2.9375 -1.78482,-4.4062 -5.34375,-4.4062 -6.21401,0 -13.00593,2.9431 -20.40625,8.875 -7.73925,6.2139 -11.62496,12.3677 -11.625,18.4687 3e-5,5.7056 3.72469,8.5625 11.125,8.5625 5.87507,0 16.51546,-5.5586 31.9375,-16.6875 0,0 25.61056,-17.7692 27.53125,-19.125 -7.00488,22.088 -15.34604,33.1251 -25.0625,33.125 -1.65102,0 -2.79395,-0.3633 -3.375,-1.0937 -0.0392,-0.051 -0.0909,-0.1329 -0.125,-0.1876 -0.18308,-0.3026 -0.28337,-0.6549 -0.3125,-1.0624 4.18035,0.1129 6.25001,-1.6284 6.25,-5.1876 1e-5,-2.0901 -1.19587,-3.125 -3.625,-3.125 -3.72839,1e-4 -5.59372,2.2247 -5.59375,6.6876 2e-5,4.2932 2.70187,6.4377 8.125,6.4374 6.77893,0 14.3641,-3.7306 22.78125,-11.1874 1.92069,-0.113 7.43056,-1.8252 11.3125,-3.7813 3.93186,-1.9813 16.21387,-10.4086 21.75,-14.25 -3.44595,3.446 -6.8978,6.8978 -10.34375,10.3437 -3.89786,4.5193 -5.84373,8.8017 -5.84375,12.8126 2e-5,3.5588 1.74779,5.3052 5.25,5.3437 11.23201,0.125 37.90549,-20.5574 40.15625,-22.2187 -3.89787,4.8583 -5.92427,7.3988 -6.09375,7.625 -2.20313,3.22 -3.3125,6.2382 -3.3125,9.0624 1e-5,3.672 1.74156,5.5314 5.1875,5.5313 2.76807,0 8.64294,-2.3797 17.625,-7.125 8.30152,-4.3268 18.00607,-13.323 22.78125,-17.875 6.04454,-5.762 10.3329,-8.613 12.875,-8.5 l 1.1875,0.875 c 3.8e-4,0.011 -10e-6,0.051 0,0.062 -0.002,0 -0.0242,0.024 -0.0312,0.031 -0.37172,0.832 -3.50081,4.2378 -9.375,10.2188 -6.214,6.327 -9.31248,11.2476 -9.3125,14.75 10e-6,4.8583 2.69585,7.2815 8.0625,7.2812 6.21401,0 15.38566,-4.9637 27.53125,-14.9062 1.41225,1.2993 2.9615,1.9688 4.65625,1.9688 2.70944,0 5.45731,-0.8337 8.25,-2.4376 -1.10458,2.2633 -1.625,4.5637 -1.625,6.9063 2e-5,5.8751 2.98073,8.8125 8.96875,8.8125 5.76209,0 12.82682,-3.2967 21.1875,-9.9062 -0.50842,1.4123 -0.75,2.881 -0.75,4.4062 -1e-5,3.6155 1.67303,5.4375 5.0625,5.4375 10.11059,0 35.97718,-20.524 38.40625,-22.2187 -3.84137,4.7453 -5.90503,7.286 -6.1875,7.625 -2.20314,3.22 -3.31249,6.2379 -3.3125,9.0624 2e-5,3.672 1.78481,5.5314 5.34375,5.5313 3.27649,0 9.23187,-2.256 17.875,-6.7187 7.40754,-4.4699 11.50601,-7.8449 14.34375,-10.375 L 544,-1309.375 c -0.005,0 -0.0248,0 -0.0312,0 -0.50984,0.2448 -4.56438,2.9961 -12.15625,8.2188 -7.28734,5.0276 -13.19428,6.6274 -17.3125,7.2812 -0.86863,0.1379 -1.68286,-0.1505 -1.4375,-0.9375 0.4599,-1.4752 1.3101,-2.4411 1.875,-3.0625 5.36665,-6.4964 10.76435,-12.935 16.1875,-19.375 6.55294,-7.8522 12.31001,-13.9999 17.28125,-18.4062 2.20312,-1.8643 8.98905,-6.1153 20.34375,-12.7813 11.75007,-6.8918 20.32678,-12.6057 25.75,-17.125 8.41708,-7.0048 12.6249,-13.4373 12.625,-19.3125 -8e-5,-1.6381 -0.59502,-3.1009 -1.78125,-4.3438 -1.1299,-1.2991 -2.51808,-1.9374 -4.15625,-1.9374 -0.18713,0 -0.3703,-0.01 -0.5625,0 z m -0.625,2.2187 c 0.23304,-0.017 0.46109,0 0.6875,0 2.82447,10e-5 4.24994,1.3511 4.25,4.0625 -8e-5,5.9882 -7.61646,14.4098 -22.8125,25.3125 -3.78495,2.7116 -14.34482,9.4603 -31.6875,20.25 11.80658,-15.648 19.42899,-25.4146 22.875,-29.3125 11.39149,-13.0811 20.29184,-19.8525 26.6875,-20.3125 z m -120.0625,64.9063 c 0.0321,0 0.0619,0 0.0937,0 0.20046,-0.016 0.40309,0 0.59375,0 3.27646,-1e-4 4.90622,1.4316 4.90625,4.3124 -2e-5,4.8583 -4.28837,10.578 -12.875,17.1876 -8.30418,6.327 -15.00955,9.4999 -20.09375,9.5 -1.29046,0 -2.23885,-0.3011 -2.84375,-0.875 -0.0161,-0.016 -0.0469,-0.046 -0.0625,-0.063 -0.46945,-0.5029 -0.71874,-1.2314 -0.71875,-2.125 2e-5,-3.9543 4.25111,-9.5937 12.78125,-16.9374 8.06676,-6.9449 14.14303,-10.6227 18.21875,-11 z m -213.90625,0.7812 c 0.0333,0 0.0606,0 0.0937,0 0.012,-6e-4 0.0512,-7e-4 0.0625,0 0.004,10e-5 0.0273,10e-5 0.0312,0 0.012,-5e-4 0.0512,-6e-4 0.0625,0 0.004,10e-5 0.0273,10e-5 0.0312,0 0.012,-4e-4 0.0512,-5e-4 0.0625,0 0.004,10e-5 0.0272,10e-5 0.0312,0 0.012,-4e-4 0.0512,-4e-4 0.0625,0 0.004,10e-5 0.0272,10e-5 0.0312,0 0.13863,-0.01 0.27032,0 0.40625,0 1.24279,10e-5 1.87497,0.6382 1.875,1.9375 -2e-5,3.3895 -6.35202,7.1945 -19.0625,11.375 6.63026,-8.2614 12.08362,-12.7437 16.3125,-13.3125 z"
+               inkscape:connector-curvature="0" />
             <path
-               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Exmouth"
+               style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Exmouth"
                id="path8321"
-               d="M 406.81523,-1346.1607 C 406.02433,-1344.1834 404.18837,-1342.2627 401.30736,-1340.3986 C 399.21717,-1341.8108 397.55068,-1343.6185 396.3079,-1345.8217 C 397.38121,-1348.1943 399.10418,-1350.0302 401.47683,-1351.3296 C 403.22802,-1350.4822 405.00749,-1348.7592 406.81523,-1346.1607" />
+               d="m 406.81523,-1346.1607 c -0.7909,1.9773 -2.62686,3.898 -5.50787,5.7621 -2.09019,-1.4122 -3.75668,-3.2199 -4.99946,-5.4231 1.07331,-2.3726 2.79628,-4.2085 5.16893,-5.5079 1.75119,0.8474 3.53066,2.5704 5.3384,5.1689"
+               inkscape:connector-curvature="0" />
           </g>
         </g>
         <text
            sodipodi:linespacing="125%"
-           style="font-size:16.01663589px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999946px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Nimbus Mono L"
+           style="font-size:16.01663589px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999946px;marker:none;visibility:visible;display:inline;overflow:visible;font-family:Nimbus Mono L"
            xml:space="preserve"
            id="text8323"
            transform="matrix(0.9225601,-0.385853,1.2237141,0.5721321,0,0)"
@@ -85899,32 +86228,34 @@
          id="g9184"
          transform="matrix(0.7769546,0,0,0.7769546,-2279.9093,796.92596)">
         <path
-           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.33726069px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.33726069px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
            id="path1352"
-           d="M 150.89899,513.89563 L 148.03405,513.89563 C 142.91743,513.89563 139.2287,518.18846 139.2287,523.39662 C 139.2287,528.63223 142.92658,532.93421 148.03405,532.93421 L 150.89899,532.93421 L 150.89899,528.35762 L 148.91275,528.35762 C 146.24003,528.35762 144.17142,526.74667 144.17142,523.39662 C 144.17142,520.04656 146.24003,518.47221 148.91275,518.47221 L 150.89899,518.47221 L 150.89899,513.89563 z M 159.64026,532.93421 L 159.64026,520.18385 C 159.64026,518.76512 160.39082,517.8681 161.54411,517.8681 C 162.71572,517.8681 163.48459,518.78342 163.48459,520.18385 L 163.48459,521.95041 L 160.50981,521.95041 L 160.50981,526.2524 L 163.48459,526.2524 L 163.48459,532.93421 L 168.24423,532.93421 L 168.24423,520.40353 C 168.24423,516.32121 165.5349,513.56611 161.54411,513.56611 C 157.56249,513.56611 154.88061,516.33037 154.88061,520.40353 L 154.88061,532.93421 L 159.64026,532.93421 z M 177.3974,532.93421 L 177.3974,521.76735 L 177.3974,521.76735 L 181.81837,530.26149 C 183.0632,532.68707 183.96936,533.26373 185.19589,533.26373 C 186.38579,533.26373 187.74046,532.22942 187.74046,530.48116 L 187.74046,513.89563 L 182.98083,513.89563 L 182.98083,523.9458 L 182.9076,523.9458 L 178.67884,515.55235 C 177.97404,514.16107 177.02211,513.56611 175.41116,513.56611 C 173.80935,513.56611 172.63774,514.64619 172.63774,516.15646 L 172.63774,532.93421 L 177.3974,532.93421 z" />
+           d="m 150.89899,513.89563 -2.86494,0 c -5.11662,0 -8.80535,4.29283 -8.80535,9.50099 0,5.23561 3.69788,9.53759 8.80535,9.53759 l 2.86494,0 0,-4.57659 -1.98624,0 c -2.67272,0 -4.74133,-1.61095 -4.74133,-4.961 0,-3.35006 2.06861,-4.92441 4.74133,-4.92441 l 1.98624,0 0,-4.57658 z m 8.74127,19.03858 0,-12.75036 c 0,-1.41873 0.75056,-2.31575 1.90385,-2.31575 1.17161,0 1.94048,0.91532 1.94048,2.31575 l 0,1.76656 -2.97478,0 0,4.30199 2.97478,0 0,6.68181 4.75964,0 0,-12.53068 c 0,-4.08232 -2.70933,-6.83742 -6.70012,-6.83742 -3.98162,0 -6.6635,2.76426 -6.6635,6.83742 l 0,12.53068 4.75965,0 z m 17.75714,0 0,-11.16686 0,0 4.42097,8.49414 c 1.24483,2.42558 2.15099,3.00224 3.37752,3.00224 1.1899,0 2.54457,-1.03431 2.54457,-2.78257 l 0,-16.58553 -4.75963,0 0,10.05017 -0.0732,0 -4.22876,-8.39345 c -0.7048,-1.39128 -1.65673,-1.98624 -3.26768,-1.98624 -1.60181,0 -2.77342,1.08008 -2.77342,2.59035 l 0,16.77775 4.75966,0 z"
+           inkscape:connector-curvature="0" />
         <path
-           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.33726069px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.33726069px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
            id="path9170"
-           d="M 140.71151,538.18631 L 141.00441,538.19546 L 141.29731,538.22292 L 141.58106,538.25954 L 141.85565,538.31445 L 142.12109,538.37853 L 142.38653,538.4609 L 142.64282,538.55243 L 142.89911,538.66228 L 143.13709,538.78127 L 143.37508,538.90941 L 143.60391,539.05586 L 143.82358,539.21147 L 144.0341,539.37623 L 144.23547,539.55013 L 144.42769,539.7332 L 144.61075,539.92541 L 144.78466,540.12679 L 144.94942,540.3373 L 145.11418,540.55699 L 145.25148,540.78581 L 145.38877,541.01464 L 145.51692,541.26178 L 145.63591,541.49976 L 145.73659,541.75605 L 145.82812,542.01234 L 145.9105,542.26863 L 145.97458,542.53407 L 146.03865,542.79951 L 146.08441,543.0741 L 146.11187,543.3487 L 146.13018,543.62329 L 146.13933,543.90704 C 146.13933,546.90012 143.86019,549.62776 140.71151,549.62776 C 137.55366,549.62776 135.24707,546.89097 135.24707,543.90704 C 135.24707,540.90481 137.54451,538.18631 140.71151,538.18631 z M 140.71151,537.17946 L 140.37284,537.18861 L 140.03417,537.21608 L 139.6955,537.26184 L 139.36599,537.31676 L 139.04563,537.39914 L 138.73442,537.49067 L 138.42321,537.60051 L 138.12116,537.71951 L 137.83741,537.8568 L 137.55366,538.00325 L 137.27907,538.16801 L 137.00447,538.35107 L 136.74818,538.53413 L 136.50105,538.7355 L 136.27222,538.95518 L 136.04339,539.17486 L 135.82372,539.41283 L 135.62235,539.65082 L 135.43013,539.90711 L 135.24707,540.17255 L 135.08231,540.44714 L 134.9267,540.7309 L 134.78025,541.01464 L 134.65211,541.31669 L 134.54227,541.61875 L 134.44159,541.92996 L 134.35006,542.25031 L 134.27683,542.57068 L 134.22191,542.89104 L 134.1853,543.22971 L 134.15784,543.56838 L 134.14869,543.90704 C 134.14869,547.55 136.99532,550.63462 140.71151,550.63462 C 144.41854,550.63462 147.23771,547.55 147.23771,543.90704 C 147.23771,540.25493 144.40938,537.17946 140.71151,537.17946 z M 151.72276,556.54756 L 151.72276,543.90704 C 151.72276,540.90481 153.88291,538.18631 156.99499,538.18631 C 159.61279,538.18631 162.15737,540.60275 162.15737,543.90704 C 162.15737,547.22963 159.58533,549.62776 156.99499,549.62776 C 155.28334,549.62776 154.08428,548.92297 152.96759,547.76968 L 152.96759,548.9962 C 153.75477,549.64607 155.00875,550.63462 156.99499,550.63462 C 160.5098,550.63462 163.25575,547.79714 163.25575,543.90704 C 163.25575,540.00779 160.4915,537.17946 156.99499,537.17946 C 153.48017,537.17946 150.71591,540.00779 150.71591,543.90704 L 150.71591,556.54756 L 151.72276,556.54756 z M 169.15039,546.59807 L 178.38593,540.3373 C 177.21433,538.45175 175.11825,537.17946 172.63774,537.17946 C 168.66527,537.17946 165.91017,540.28238 165.91017,543.9345 C 165.91017,547.71476 168.81172,550.63462 172.85742,550.63462 C 176.50953,550.63462 179.28294,547.60492 179.36532,544.17249 L 178.26694,544.17249 C 178.21202,547.1198 175.74982,549.62776 172.63774,549.62776 C 169.42498,549.62776 167.00855,547.01912 167.00855,543.98942 C 167.00855,540.90481 169.33345,538.18631 172.63774,538.18631 C 174.35854,538.18631 175.85966,538.93687 176.81159,540.11762 L 168.50051,545.72852 L 169.15039,546.59807 z M 192.82047,550.36002 L 192.82047,542.4883 C 192.82047,539.303 190.53218,537.17946 187.63978,537.17946 C 184.74738,537.17946 182.4774,539.303 182.4774,542.4883 L 182.4774,550.36002 L 183.48424,550.36002 L 183.48424,542.6256 C 183.48424,539.92541 185.3698,538.18631 187.63978,538.18631 C 189.90061,538.18631 191.81363,539.94371 191.81363,542.6256 L 191.81363,550.36002 L 192.82047,550.36002 z" />
+           d="m 140.71151,538.18631 0.2929,0.009 0.2929,0.0275 0.28375,0.0366 0.27459,0.0549 0.26544,0.0641 0.26544,0.0824 0.25629,0.0915 0.25629,0.10985 0.23798,0.11899 0.23799,0.12814 0.22883,0.14645 0.21967,0.15561 0.21052,0.16476 0.20137,0.1739 0.19222,0.18307 0.18306,0.19221 0.17391,0.20138 0.16476,0.21051 0.16476,0.21969 0.1373,0.22882 0.13729,0.22883 0.12815,0.24714 0.11899,0.23798 0.10068,0.25629 0.0915,0.25629 0.0824,0.25629 0.0641,0.26544 0.0641,0.26544 0.0458,0.27459 0.0275,0.2746 0.0183,0.27459 0.009,0.28375 c 0,2.99308 -2.27914,5.72072 -5.42782,5.72072 -3.15785,0 -5.46444,-2.73679 -5.46444,-5.72072 0,-3.00223 2.29744,-5.72073 5.46444,-5.72073 z m 0,-1.00685 -0.33867,0.009 -0.33867,0.0275 -0.33867,0.0458 -0.32951,0.0549 -0.32036,0.0824 -0.31121,0.0915 -0.31121,0.10984 -0.30205,0.119 -0.28375,0.13729 -0.28375,0.14645 -0.27459,0.16476 -0.2746,0.18306 -0.25629,0.18306 -0.24713,0.20137 -0.22883,0.21968 -0.22883,0.21968 -0.21967,0.23797 -0.20137,0.23799 -0.19222,0.25629 -0.18306,0.26544 -0.16476,0.27459 -0.15561,0.28376 -0.14645,0.28374 -0.12814,0.30205 -0.10984,0.30206 -0.10068,0.31121 -0.0915,0.32035 -0.0732,0.32037 -0.0549,0.32036 -0.0366,0.33867 -0.0275,0.33867 -0.009,0.33866 c 0,3.64296 2.84663,6.72758 6.56282,6.72758 3.70703,0 6.5262,-3.08462 6.5262,-6.72758 0,-3.65211 -2.82833,-6.72758 -6.5262,-6.72758 z m 11.01125,19.3681 0,-12.64052 c 0,-3.00223 2.16015,-5.72073 5.27223,-5.72073 2.6178,0 5.16238,2.41644 5.16238,5.72073 0,3.32259 -2.57204,5.72072 -5.16238,5.72072 -1.71165,0 -2.91071,-0.70479 -4.0274,-1.85808 l 0,1.22652 c 0.78718,0.64987 2.04116,1.63842 4.0274,1.63842 3.51481,0 6.26076,-2.83748 6.26076,-6.72758 0,-3.89925 -2.76425,-6.72758 -6.26076,-6.72758 -3.51482,0 -6.27908,2.82833 -6.27908,6.72758 l 0,12.64052 1.00685,0 z m 17.42763,-9.94949 9.23554,-6.26077 c -1.1716,-1.88555 -3.26768,-3.15784 -5.74819,-3.15784 -3.97247,0 -6.72757,3.10292 -6.72757,6.75504 0,3.78026 2.90155,6.70012 6.94725,6.70012 3.65211,0 6.42552,-3.0297 6.5079,-6.46213 l -1.09838,0 c -0.0549,2.94731 -2.51712,5.45527 -5.6292,5.45527 -3.21276,0 -5.62919,-2.60864 -5.62919,-5.63834 0,-3.08461 2.3249,-5.80311 5.62919,-5.80311 1.7208,0 3.22192,0.75056 4.17385,1.93131 l -8.31108,5.6109 0.64988,0.86955 z m 23.67008,3.76195 0,-7.87172 c 0,-3.1853 -2.28829,-5.30884 -5.18069,-5.30884 -2.8924,0 -5.16238,2.12354 -5.16238,5.30884 l 0,7.87172 1.00684,0 0,-7.73442 c 0,-2.70019 1.88556,-4.43929 4.15554,-4.43929 2.26083,0 4.17385,1.7574 4.17385,4.43929 l 0,7.73442 1.00684,0 z"
+           inkscape:connector-curvature="0" />
       </g>
     </g>
   </g>
   <g
      id="g16346"
-     transform="translate(1660.9892,-430.1329)">
+     transform="translate(1748.9892,-430.1329)">
     <rect
        width="24"
        height="24"
        x="-1060.9891"
        y="621.49512"
        id="ShowIECcode"
-       style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
   </g>
   <flowRoot
-     transform="matrix(1.6473499,0,0,1.6473499,740.92343,183.57576)"
+     transform="matrix(1.6473499,0,0,1.6473499,828.92343,183.57576)"
      id="flowRoot29856"
      xml:space="preserve"
-     style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient19976);fill-opacity:1;stroke:#547c1b;stroke-width:0.1061436;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-family:Andale Mono"><flowRegion
+     style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient19976);fill-opacity:1;stroke:#547c1b;stroke-width:0.1061436;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Andale Mono"><flowRegion
        id="flowRegion29858"
        style="fill:url(#linearGradient34169);fill-opacity:1;stroke:url(#linearGradient30904)"><rect
          width="382.57648"
@@ -85932,88 +86263,105 @@
          x="-85.494621"
          y="2.3818817"
          id="rect29860"
-         style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient34167);fill-opacity:1;stroke:#547c1b;stroke-width:0.1061436;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;font-family:Andale Mono" /></flowRegion><flowPara
+         style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient34167);fill-opacity:1;stroke:#547c1b;stroke-width:0.1061436;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Andale Mono" /></flowRegion><flowPara
        id="flowPara29862"
-       style="fill:url(#linearGradient19974);fill-opacity:1;stroke:#547c1b;stroke-width:0.1061436;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">ST</flowPara></flowRoot>  <g
-     transform="matrix(7.1599763e-2,0,0,7.1599763e-2,603.18029,195.95335)"
+       style="fill:url(#linearGradient19974);fill-opacity:1;stroke:#547c1b;stroke-width:0.1061436;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none">ST</flowPara></flowRoot>  <g
+     transform="matrix(0.07159976,0,0,0.07159976,691.18029,195.95335)"
      id="g2248">
     <path
-       d="M 144.80549,88.557517 C 144.80549,127.69251 113.04391,159.45419 73.909089,159.45419 C 34.773922,159.45419 3.0123414,127.69251 3.0123414,88.557517 C 3.0123414,49.42256 34.773922,17.660874 73.909089,17.660874 C 113.04391,17.660874 144.80549,49.42256 144.80549,88.557517 z"
+       d="m 144.80549,88.557517 c 0,39.134993 -31.76158,70.896673 -70.896401,70.896673 -39.135167,0 -70.8967476,-31.76168 -70.8967476,-70.896673 0,-39.134957 31.7615806,-70.896643 70.8967476,-70.896643 39.134821,0 70.896401,31.761686 70.896401,70.896643 z"
        id="path3190"
-       style="fill:#373737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.61199999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+       style="fill:#373737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.61199999;marker:none;visibility:visible;display:inline;overflow:visible"
+       inkscape:connector-curvature="0" />
     <path
-       d="M 202.60774,194.21232 C 206.53396,198.1377 206.53396,204.50243 202.60774,208.42864 L 193.39155,217.64481 C 189.46533,221.57186 183.1005,221.57018 179.17498,217.64481 L 28.710589,67.179433 C 24.785075,63.25322 24.785075,56.888486 28.710589,52.963112 L 37.927485,43.746112 C 41.852999,39.820703 48.218536,39.819899 52.14405,43.746112 L 202.60774,194.21232 z"
+       d="m 202.60774,194.21232 c 3.92622,3.92538 3.92622,10.29011 0,14.21632 l -9.21619,9.21617 c -3.92622,3.92705 -10.29105,3.92537 -14.21657,0 L 28.710589,67.179433 c -3.925514,-3.926213 -3.925514,-10.290947 0,-14.216321 l 9.216896,-9.217 c 3.925514,-3.925409 10.291051,-3.926213 14.216565,0 L 202.60774,194.21232 z"
        id="path1329"
-       style="fill:#373737;fill-opacity:1;stroke:none" />
+       style="fill:#373737;fill-opacity:1;stroke:none"
+       inkscape:connector-curvature="0" />
     <path
-       d="M 199.13799,197.60713 C 201.91414,200.38255 201.91414,204.88271 199.13799,207.65872 L 192.6217,214.17498 C 189.84589,216.95159 185.3457,216.9504 182.57024,214.17498 L 76.185068,107.78914 C 73.409612,105.01316 73.409612,100.513 76.185068,97.737581 L 82.701708,91.220731 C 85.477165,88.445309 89.978058,88.444715 92.753514,91.220731 L 199.13799,197.60713 z"
+       d="m 199.13799,197.60713 c 2.77615,2.77542 2.77615,7.27558 0,10.05159 l -6.51629,6.51626 c -2.77581,2.77661 -7.276,2.77542 -10.05146,0 L 76.185068,107.78914 c -2.775456,-2.77598 -2.775456,-7.27614 0,-10.051559 l 6.51664,-6.51685 c 2.775457,-2.775422 7.27635,-2.776016 10.051806,0 L 199.13799,197.60713 z"
        id="path3180"
-       style="fill:#483737;fill-opacity:1;stroke:none" />
+       style="fill:#483737;fill-opacity:1;stroke:none"
+       inkscape:connector-curvature="0" />
     <path
-       d="M 122.71901,137.13232 C 96.07357,163.77768 51.576017,163.78789 24.921487,137.15278 C -1.7256976,110.50332 -1.7256976,66.003808 24.921487,39.354384 C 51.570071,12.70699 96.070422,12.70699 122.71901,39.354384 C 149.36934,65.987473 149.36934,110.49821 122.71901,137.13232"
+       d="m 122.71901,137.13232 c -26.64544,26.64536 -71.142993,26.65557 -97.797523,0.0205 -26.6471846,-26.64946 -26.6471846,-71.148972 0,-97.798396 26.648584,-26.647394 71.148935,-26.647394 97.797523,0 26.65033,26.633089 26.65033,71.143826 0,97.777936"
        id="path35536"
-       style="fill:#d3d3d3" />
+       style="fill:#d3d3d3"
+       inkscape:connector-curvature="0" />
     <path
-       d="M 119.72914,131.79305 C 96.539469,154.98447 58.641452,157.67301 32.468212,137.86093 C 5.2505454,117.25588 -1.9740372,78.180456 16.213163,49.255298 C -15.910434,97.006413 24.656009,162.35931 81.618108,155.06621 C 137.97055,147.85076 159.82233,77.723686 120.43603,38.336577 C 145.41374,64.115378 145.10524,106.4005 119.72914,131.79305"
+       d="M 119.72914,131.79305 C 96.539469,154.98447 58.641452,157.67301 32.468212,137.86093 5.2505454,117.25588 -1.9740372,78.180456 16.213163,49.255298 -15.910434,97.006413 24.656009,162.35931 81.618108,155.06621 137.97055,147.85076 159.82233,77.723686 120.43603,38.336577 c 24.97771,25.778801 24.66921,68.063923 -0.70689,93.456473"
        id="path35538"
-       style="fill:#aaaaaa" />
+       style="fill:#aaaaaa"
+       inkscape:connector-curvature="0" />
     <path
-       d="M 35.564411,48.442913 C 54.720486,29.286873 86.052194,27.495541 107.43703,44.037614 C 129.36541,61.002773 135.32486,92.743158 120.53921,116.31268 C 146.97723,76.924557 112.85188,23.262925 66.150052,29.558683 C 21.626965,35.557098 1.2907536,93.929556 35.237373,124.97001 C 14.812318,103.89896 14.724525,69.267689 35.564411,48.442913"
+       d="M 35.564411,48.442913 C 54.720486,29.286873 86.052194,27.495541 107.43703,44.037614 129.36541,61.002773 135.32486,92.743158 120.53921,116.31268 146.97723,76.924557 112.85188,23.262925 66.150052,29.558683 21.626965,35.557098 1.2907536,93.929556 35.237373,124.97001 14.812318,103.89896 14.724525,69.267689 35.564411,48.442913"
        id="path35540"
-       style="opacity:0.32790701;fill:#7c7c7c" />
+       style="opacity:0.32790701;fill:#7c7c7c"
+       inkscape:connector-curvature="0" />
     <path
-       d="M 6.4268355,77.270973 C 12.631477,38.853648 51.158387,13.082017 89.041013,21.675965 C 122.98658,29.373722 145.9461,62.537617 141.54279,96.976788 C 136.88206,133.41579 102.86723,160.1061 66.344176,156.11364 C 27.956476,151.91782 0.27291119,115.34192 6.4268355,77.270973 M 73.8143,18.290503 C 36.041503,18.290503 4.4544597,49.455578 3.868938,87.153524 C 3.2711742,125.67508 35.201696,158.20645 73.812201,158.20645 C 111.5836,158.20645 143.18288,127.04336 143.77365,89.343389 C 144.37771,50.807525 112.4318,18.290503 73.8143,18.290503"
+       d="M 6.4268355,77.270973 C 12.631477,38.853648 51.158387,13.082017 89.041013,21.675965 122.98658,29.373722 145.9461,62.537617 141.54279,96.976788 136.88206,133.41579 102.86723,160.1061 66.344176,156.11364 27.956476,151.91782 0.27291119,115.34192 6.4268355,77.270973 M 73.8143,18.290503 c -37.772797,0 -69.3598403,31.165075 -69.945362,68.863021 -0.5977638,38.521556 31.332758,71.052926 69.943263,71.052926 37.771399,0 69.370679,-31.16309 69.961449,-68.863061 C 144.37771,50.807525 112.4318,18.290503 73.8143,18.290503"
        id="path35542"
-       style="fill:url(#linearGradient19978)" />
+       style="fill:url(#linearGradient19978)"
+       inkscape:connector-curvature="0" />
     <path
-       d="M 127.15904,88.252024 C 127.15904,117.32332 102.88857,141.59078 73.819197,141.59078 C 44.750177,141.59078 20.481456,117.32129 20.481456,88.252024 C 20.481456,59.178702 44.740733,34.897983 73.819197,34.897983 C 102.90081,34.896969 127.15904,59.176673 127.15904,88.252024"
+       d="m 127.15904,88.252024 c 0,29.071296 -24.27047,53.338756 -53.339843,53.338756 -29.06902,0 -53.337741,-24.26949 -53.337741,-53.338756 0,-29.073322 24.259277,-53.354041 53.337741,-53.354041 29.081613,-0.001 53.339843,24.27869 53.339843,53.354041"
        id="path18"
-       style="opacity:0.32790701;fill:#ffffff" />
+       style="opacity:0.32790701;fill:#ffffff"
+       inkscape:connector-curvature="0" />
     <path
-       d="M 73.819197,140.73953 C 45.584038,140.73953 21.921475,117.52157 21.337003,89.339297 C 20.735042,60.324247 44.737935,35.749193 73.820246,35.749193 C 102.06905,35.749193 125.73651,58.963101 126.31293,87.160694 C 126.90475,116.16861 102.89276,140.73953 73.819197,140.73953 M 73.83039,34.11421 C 43.875392,34.11421 19.08166,59.439284 19.708105,89.392462 C 20.377223,121.34236 49.544529,146.16264 81.142066,141.88403 C 108.49649,138.18283 129.01669,113.57405 127.9163,86.056038 C 126.77289,57.399646 102.53599,34.11421 73.83039,34.11421"
+       d="m 73.819197,140.73953 c -28.235159,0 -51.897722,-23.21796 -52.482194,-51.400233 -0.601961,-29.01505 23.400932,-53.590104 52.483243,-53.590104 28.248804,0 51.916264,23.213908 52.492684,51.411501 0.59182,29.007916 -23.42017,53.578836 -52.493733,53.578836 M 73.83039,34.11421 c -29.954998,0 -54.74873,25.325074 -54.122285,55.278252 0.669118,31.949898 29.836424,56.770178 61.433961,52.491568 C 108.49649,138.18283 129.01669,113.57405 127.9163,86.056038 126.77289,57.399646 102.53599,34.11421 73.83039,34.11421"
        id="path35545"
-       style="opacity:0.32790701;fill:url(#linearGradient19980)" />
+       style="opacity:0.32790701;fill:url(#linearGradient19980)"
+       inkscape:connector-curvature="0" />
     <path
-       d="M 28.153749,44.866368 C 50.655412,22.362642 87.40407,19.643463 112.92218,38.70342 C 139.70648,58.707626 146.88734,97.037089 129.0772,125.35014 C 160.21058,79.127714 121.42939,15.757264 66.209513,22.062221 C 12.268761,28.223106 -13.149317,98.215302 27.461896,135.99293 C 3.0945383,110.85893 3.3949942,69.623269 28.153749,44.866368"
+       d="M 28.153749,44.866368 C 50.655412,22.362642 87.40407,19.643463 112.92218,38.70342 139.70648,58.707626 146.88734,97.037089 129.0772,125.35014 160.21058,79.127714 121.42939,15.757264 66.209513,22.062221 12.268761,28.223106 -13.149317,98.215302 27.461896,135.99293 3.0945383,110.85893 3.3949942,69.623269 28.153749,44.866368"
        id="path35547"
-       style="fill:#e5e5e5" />
+       style="fill:#e5e5e5"
+       inkscape:connector-curvature="0" />
     <path
-       d="M 134.07092,88.35101 C 134.07092,121.65058 107.07571,148.64572 73.776175,148.64572 C 40.476638,148.64572 13.481428,121.65058 13.481428,88.35101 C 13.481428,55.051473 40.476638,28.056298 73.776175,28.056298 C 107.07571,28.056298 134.07092,55.051473 134.07092,88.35101 z"
+       d="m 134.07092,88.35101 c 0,33.29957 -26.99521,60.29471 -60.294745,60.29471 -33.299537,0 -60.294747,-26.99514 -60.294747,-60.29471 0,-33.299537 26.99521,-60.294712 60.294747,-60.294712 33.299535,0 60.294745,26.995175 60.294745,60.294712 z"
        id="path1336"
-       style="opacity:0.32790701;fill:url(#linearGradient19982);stroke:none" />
+       style="opacity:0.32790701;fill:url(#linearGradient19982);stroke:none"
+       inkscape:connector-curvature="0" />
     <path
-       d="M 113.21565,127.99475 C 93.854253,147.36845 62.271058,150.60166 39.848094,134.53678 C 15.699345,117.24158 9.6569986,83.200902 25.45804,58.257992 C -2.0681264,98.926533 31.780556,154.8455 80.752768,148.06741 C 128.1391,141.51005 148.27,81.978757 114.42446,48.287578 C 135.79601,70.367204 134.79146,106.43422 113.21565,127.99475"
+       d="M 113.21565,127.99475 C 93.854253,147.36845 62.271058,150.60166 39.848094,134.53678 15.699345,117.24158 9.6569986,83.200902 25.45804,58.257992 -2.0681264,98.926533 31.780556,154.8455 80.752768,148.06741 128.1391,141.51005 148.27,81.978757 114.42446,48.287578 c 21.37155,22.079626 20.367,58.146642 -1.20881,79.707172"
        id="path29"
-       style="opacity:0.32790701;fill:#e5e5e5" />
+       style="opacity:0.32790701;fill:#e5e5e5"
+       inkscape:connector-curvature="0" />
     <path
-       d="M 25.527645,85.282478 C 25.527645,87.117777 28.546195,80.212958 28.993906,79.384238 C 33.015958,71.950106 38.624934,65.430528 45.413348,60.384513 C 55.11608,53.174201 67.398745,48.453126 79.542899,48.190516 C 83.571946,48.104681 87.597146,48.547145 91.516014,49.480098 C 93.141764,49.867402 102.27751,53.859863 102.27751,50.948554 C 102.27751,46.027198 89.26172,43.500116 86.075629,42.817497 C 75.87237,40.632738 64.630633,40.486603 54.776799,44.264477 C 39.1419,50.2588 25.527645,68.122144 25.527645,85.282478"
+       d="m 25.527645,85.282478 c 0,1.835299 3.01855,-5.06952 3.466261,-5.89824 4.022052,-7.434132 9.631028,-13.95371 16.419442,-18.999725 9.702732,-7.210312 21.985397,-11.931387 34.129551,-12.193997 4.029047,-0.08584 8.054247,0.356629 11.973115,1.289582 1.62575,0.387304 10.761496,4.379765 10.761496,1.468456 0,-4.921356 -13.01579,-7.448438 -16.201881,-8.131057 C 75.87237,40.632738 64.630633,40.486603 54.776799,44.264477 39.1419,50.2588 25.527645,68.122144 25.527645,85.282478"
        id="path31"
-       style="opacity:0.32790701;fill:#e5e5e5" />
+       style="opacity:0.32790701;fill:#e5e5e5"
+       inkscape:connector-curvature="0" />
     <path
-       d="M 122.26955,92.346689 C 122.26955,90.513453 119.2489,97.416209 118.80014,98.244928 C 114.77599,105.68007 109.16281,112.20067 102.3716,117.24567 C 92.666771,124.45192 80.379559,129.18828 68.234705,129.45296 C 64.205658,129.54082 60.180458,129.09836 56.26159,128.16233 C 54.643885,127.7781 45.51863,123.79791 45.51863,126.6796 C 45.51863,131.60092 58.529175,134.13517 61.719464,134.8188 C 71.916426,137.00356 83.157114,137.15176 93.005002,133.36777 C 108.62941,127.36627 122.26955,109.50702 122.26955,92.346689"
+       d="m 122.26955,92.346689 c 0,-1.833236 -3.02065,5.06952 -3.46941,5.898239 -4.02415,7.435142 -9.63733,13.955742 -16.42854,19.000742 -9.704829,7.20625 -21.992041,11.94261 -34.136895,12.20729 -4.029047,0.0879 -8.054247,-0.3546 -11.973115,-1.29063 -1.617705,-0.38423 -10.74296,-4.36442 -10.74296,-1.48273 0,4.92132 13.010545,7.45557 16.200834,8.1392 10.196962,2.18476 21.43765,2.33296 31.285538,-1.45103 15.624408,-6.0015 29.264548,-23.86075 29.264548,-41.021081"
        id="path34119"
-       style="opacity:0.32790701;fill:#efefef" />
+       style="opacity:0.32790701;fill:#efefef"
+       inkscape:connector-curvature="0" />
     <path
-       d="M 75.557224,82.95634 C 103.00539,65.59034 125.55078,82.012265 125.55078,82.012265 C 124.53153,54.537131 101.93578,32.576428 74.210944,32.576428 C 45.836925,32.576428 22.835085,55.577533 22.835085,83.952357 C 22.835785,83.951517 48.108707,100.32234 75.557224,82.95634 z"
+       d="m 75.557224,82.95634 c 27.448166,-17.366 49.993556,-0.944075 49.993556,-0.944075 -1.01925,-27.475134 -23.615,-49.435837 -51.339836,-49.435837 -28.374019,0 -51.375859,23.001105 -51.375859,51.375929 7e-4,-8.4e-4 25.273622,16.369983 52.722139,-0.996017 z"
        id="path1355"
-       style="opacity:0.47906979;fill:url(#linearGradient19984);stroke:none" />
+       style="opacity:0.47906979;fill:url(#linearGradient19984);stroke:none"
+       inkscape:connector-curvature="0" />
     <path
-       d="M 40.481863,36.421127 C 40.481863,41.058603 33.477476,44.818021 24.837126,44.818021 C 16.196776,44.818021 9.1923885,41.058603 9.1923885,36.421127 C 9.1923885,31.783651 16.196776,28.024233 24.837126,28.024233 C 33.477476,28.024233 40.481863,31.783651 40.481863,36.421127 L 40.481863,36.421127 z"
+       d="m 40.481863,36.421127 c 0,4.637476 -7.004387,8.396894 -15.644737,8.396894 -8.64035,0 -15.6447375,-3.759418 -15.6447375,-8.396894 0,-4.637476 7.0043875,-8.396894 15.6447375,-8.396894 8.64035,0 15.644737,3.759418 15.644737,8.396894 l 0,0 z"
        transform="matrix(5.8942914,0,0,3.3456793,14.375906,106.05328)"
        id="path38874"
-       style="opacity:0.20454544;fill:url(#radialGradient19986);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+       style="opacity:0.20454544;fill:url(#radialGradient19986);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
+       inkscape:connector-curvature="0" />
     <path
-       d="M 33.301821,46.978562 C 23.534419,56.099372 16.980918,68.647207 15.626087,82.709839 C 16.866775,83.41338 18.20503,83.899097 19.599475,84.141427 C 18.137474,84.396002 16.743749,84.899127 15.45079,85.660664 C 15.413973,86.496835 15.363142,87.328 15.363142,88.173248 C 15.363142,94.886475 16.569864,101.33866 18.722992,107.30978 C 19.72825,107.56109 20.760059,107.68963 21.849114,107.68959 C 24.864794,107.68971 27.504769,106.56247 29.766674,104.30053 C 31.478194,102.58903 32.609815,100.75265 33.15574,98.807904 C 33.647758,100.74978 34.626539,102.59129 36.164997,104.30053 C 38.67802,106.56246 41.575004,107.6897 44.842176,107.68959 C 47.857828,107.68971 50.497803,106.56247 52.759736,104.30053 C 54.702237,102.35803 55.883034,100.26202 56.324099,98.01907 C 56.720858,100.2623 57.78926,102.35782 59.537869,104.30053 C 62.050882,106.56246 64.947847,107.6897 68.215047,107.68959 C 71.230681,107.68971 73.870656,106.56247 76.132607,104.30053 C 78.075071,102.35803 79.255887,100.26202 79.69697,98.01907 C 80.09372,100.2623 81.162113,102.35782 82.91074,104.30053 C 84.827381,106.02569 86.982911,107.10497 89.33828,107.5143 C 86.984314,107.92417 84.826409,108.97474 82.91074,110.69885 C 80.648788,112.96078 79.521533,115.85775 79.521674,119.37603 C 79.521533,122.39189 80.648779,125.16036 82.91074,127.6734 C 84.58607,129.18134 86.451263,130.18005 88.461797,130.68265 C 86.451263,131.1853 84.586061,132.18409 82.91074,133.69191 C 80.648788,135.95383 79.521533,138.85079 79.521674,142.36909 C 79.521646,142.92417 79.561931,143.46715 79.638538,144.00519 C 87.517047,142.90164 94.863056,140.15551 101.34608,136.14606 C 100.83166,135.41364 100.22711,134.72126 99.505475,134.07172 C 97.974265,132.37056 96.269212,131.26151 94.392663,130.71187 C 96.270371,130.21753 97.973468,129.20537 99.505475,127.6734 C 101.44792,125.73089 102.62874,123.63488 103.06983,121.39194 C 103.46657,123.63516 104.53496,125.73067 106.2836,127.6734 C 107.3375,128.62201 108.45689,129.37228 109.64345,129.92304 C 115.32408,124.75999 119.94189,118.42886 123.14129,111.3416 C 123.05058,111.25537 122.97258,111.16348 122.87834,111.07866 C 121.12852,109.13464 119.14827,107.95454 116.94748,107.5143 C 119.14859,107.11829 121.12829,106.05053 122.87834,104.30053 C 124.82079,102.35803 126.00161,100.26202 126.44271,98.01907 C 126.5489,98.619541 126.70709,99.193097 126.91016,99.772032 C 127.61991,96.377774 128.00971,92.871988 128.07881,89.283459 C 127.23291,90.612238 126.69739,92.125629 126.44271,93.782737 C 125.99181,91.461387 124.8026,89.437855 122.87834,87.70579 C 121.12852,85.761795 119.14827,84.581675 116.94748,84.141427 C 119.14859,83.745434 121.12829,82.677672 122.87834,80.927657 C 124.84625,78.959714 126.04498,76.834909 126.47192,74.55855 C 125.58153,70.971284 124.33129,67.524257 122.79069,64.24527 C 120.54767,61.794727 117.93867,60.564202 114.96078,60.564043 C 111.69354,60.564204 108.79657,61.69145 106.2836,63.95311 C 104.51993,65.716761 103.45827,67.882503 103.06983,70.409865 C 102.61895,68.088525 101.42975,66.065002 99.505475,64.332919 C 97.243496,61.819945 94.603524,60.564204 91.587919,60.564043 C 88.320681,60.564204 85.423726,61.69145 82.91074,63.95311 C 80.648788,66.215085 79.521533,69.112054 79.521674,72.630288 C 79.521533,69.363366 78.394288,66.594893 76.132607,64.332919 C 73.870637,61.819945 71.230681,60.564204 68.215047,60.564043 C 64.947856,60.564204 62.050882,61.69145 59.537869,63.95311 C 57.275936,66.215085 56.14869,69.112054 56.148802,72.630288 C 56.148671,69.363366 55.021445,66.594893 52.759736,64.332919 C 50.497812,61.819945 47.857828,60.564204 44.842176,60.564043 C 41.575004,60.564204 38.67803,61.69145 36.164997,63.95311 C 34.603269,65.51487 33.609922,67.401969 33.126524,69.562599 C 32.57197,67.591233 31.4537,65.851401 29.766674,64.332919 C 28.016924,62.388942 26.036635,61.208814 23.835808,60.768556 C 26.036962,60.372572 28.0167,59.304819 29.766674,57.554786 C 32.279725,55.04182 33.535456,52.273345 33.535549,49.257417 C 33.535531,48.470646 33.447592,47.707048 33.301821,46.978562 z M 56.324099,74.646198 C 56.720858,76.889441 57.78926,78.984965 59.537869,80.927657 C 61.454519,82.652835 63.610049,83.732109 65.965408,84.141427 C 63.611452,84.551312 61.453556,85.601882 59.537869,87.325981 C 57.275936,89.587933 56.14869,92.484902 56.148802,96.003159 C 56.148671,92.736215 55.021445,89.967741 52.759736,87.70579 C 51.009968,85.761795 49.029687,84.581675 46.82887,84.141427 C 49.030015,83.745434 51.009744,82.677672 52.759736,80.927657 C 54.702237,78.985184 55.883034,76.889156 56.324099,74.646198 z M 79.69697,74.646198 C 80.09372,76.889441 81.162113,78.984965 82.91074,80.927657 C 84.827381,82.652835 86.982911,83.732109 89.33828,84.141427 C 86.984314,84.551312 84.826409,85.601882 82.91074,87.325981 C 81.147107,89.089614 80.085427,91.255365 79.69697,93.782737 C 79.246108,91.461387 78.056905,89.437855 76.132607,87.70579 C 74.382802,85.761795 72.40255,84.581675 70.201741,84.141427 C 72.402877,83.745434 74.382596,82.677672 76.132607,80.927657 C 78.075071,78.985184 79.255887,76.889156 79.69697,74.646198 z M 103.06983,74.646198 C 103.46657,76.889441 104.53496,78.984965 106.2836,80.927657 C 108.20022,82.652835 110.35576,83.732109 112.71114,84.141427 C 110.35717,84.551312 108.19925,85.601882 106.2836,87.325981 C 104.51993,89.089614 103.45827,91.255365 103.06983,93.782737 C 102.61895,91.461387 101.42975,89.437855 99.505475,87.70579 C 97.755661,85.761795 95.775412,84.581675 93.574613,84.141427 C 95.775739,83.745434 97.755446,82.677672 99.505475,80.927657 C 101.44792,78.985184 102.62874,76.889156 103.06983,74.646198 z M 33.15574,75.435033 C 33.647758,77.376916 34.626539,79.218427 36.164997,80.927657 C 38.081666,82.652835 40.237178,83.732109 42.592537,84.141427 C 40.23859,84.551312 38.080703,85.601882 36.164997,87.325981 C 34.603269,88.887725 33.609922,90.774834 33.126524,92.93547 C 32.57197,90.9641 31.4537,89.224256 29.766674,87.70579 C 28.016924,85.761795 26.036635,84.581675 23.835808,84.141427 C 26.036962,83.745434 28.0167,82.677672 29.766674,80.927657 C 31.478194,79.216177 32.609815,77.37978 33.15574,75.435033 z M 103.06983,98.01907 C 103.46657,100.2623 104.53496,102.35782 106.2836,104.30053 C 108.20022,106.02569 110.35576,107.10497 112.71114,107.5143 C 110.35717,107.92417 108.19925,108.97474 106.2836,110.69885 C 104.51993,112.46246 103.45827,114.62822 103.06983,117.15561 C 102.61895,114.83425 101.42975,112.81071 99.505475,111.07866 C 97.755661,109.13464 95.775412,107.95454 93.574613,107.5143 C 95.775739,107.11829 97.755446,106.05053 99.505475,104.30053 C 101.44792,102.35803 102.62874,100.26202 103.06983,98.01907 z"
+       d="m 33.301821,46.978562 c -9.767402,9.12081 -16.320903,21.668645 -17.675734,35.731277 1.240688,0.703541 2.578943,1.189258 3.973388,1.431588 -1.462001,0.254575 -2.855726,0.7577 -4.148685,1.519237 -0.03682,0.836171 -0.08765,1.667336 -0.08765,2.512584 0,6.713227 1.206722,13.165412 3.35985,19.136532 1.005258,0.25131 2.037067,0.37985 3.126122,0.37981 3.01568,1.2e-4 5.655655,-1.12712 7.91756,-3.38906 1.71152,-1.7115 2.843141,-3.54788 3.389066,-5.492626 0.492018,1.941876 1.470799,3.783386 3.009257,5.492626 2.513023,2.26193 5.410007,3.38917 8.677179,3.38906 3.015652,1.2e-4 5.655627,-1.12712 7.91756,-3.38906 1.942501,-1.9425 3.123298,-4.03851 3.564363,-6.28146 0.396759,2.24323 1.465161,4.33875 3.21377,6.28146 2.513013,2.26193 5.409978,3.38917 8.677178,3.38906 3.015634,1.2e-4 5.655609,-1.12712 7.91756,-3.38906 1.942464,-1.9425 3.12328,-4.03851 3.564363,-6.28146 0.39675,2.24323 1.465143,4.33875 3.21377,6.28146 1.916641,1.72516 4.072171,2.80444 6.42754,3.21377 -2.353966,0.40987 -4.511871,1.46044 -6.42754,3.18455 -2.261952,2.26193 -3.389207,5.1589 -3.389066,8.67718 -1.41e-4,3.01586 1.127105,5.78433 3.389066,8.29737 1.67533,1.50794 3.540523,2.50665 5.551057,3.00925 -2.010534,0.50265 -3.875736,1.50144 -5.551057,3.00926 -2.261952,2.26192 -3.389207,5.15888 -3.389066,8.67718 -2.8e-5,0.55508 0.04026,1.09806 0.116864,1.6361 7.878509,-1.10355 15.224518,-3.84968 21.707544,-7.85913 -0.51442,-0.73242 -1.11897,-1.4248 -1.840607,-2.07434 -1.53121,-1.70116 -3.236263,-2.81021 -5.112812,-3.35985 1.877708,-0.49434 3.580805,-1.5065 5.112812,-3.03847 1.942447,-1.94251 3.123267,-4.03852 3.564357,-6.28146 0.39674,2.24322 1.46513,4.33873 3.21377,6.28146 1.0539,0.94861 2.17329,1.69888 3.35985,2.24964 5.68063,-5.16305 10.29844,-11.49418 13.49784,-18.58144 -0.0907,-0.0862 -0.16871,-0.17812 -0.26295,-0.26294 -1.74982,-1.94402 -3.73007,-3.12412 -5.93086,-3.56436 2.20111,-0.39601 4.18081,-1.46377 5.93086,-3.21377 1.94245,-1.9425 3.12327,-4.03851 3.56437,-6.28146 0.10619,0.600471 0.26438,1.174027 0.46745,1.752962 0.70975,-3.394258 1.09955,-6.900044 1.16865,-10.488573 -0.8459,1.328779 -1.38142,2.84217 -1.6361,4.499278 -0.4509,-2.32135 -1.64011,-4.344882 -3.56437,-6.076947 -1.74982,-1.943995 -3.73007,-3.124115 -5.93086,-3.564363 2.20111,-0.395993 4.18081,-1.463755 5.93086,-3.21377 1.96791,-1.967943 3.16664,-4.092748 3.59358,-6.369107 -0.89039,-3.587266 -2.14063,-7.034293 -3.68123,-10.31328 -2.24302,-2.450543 -4.85202,-3.681068 -7.82991,-3.681227 -3.26724,1.61e-4 -6.16421,1.127407 -8.67718,3.389067 -1.76367,1.763651 -2.82533,3.929393 -3.21377,6.456755 -0.45088,-2.32134 -1.64008,-4.344863 -3.564357,-6.076946 -2.261979,-2.512974 -4.901951,-3.768715 -7.917556,-3.768876 -3.267238,1.61e-4 -6.164193,1.127407 -8.677179,3.389067 -2.261952,2.261975 -3.389207,5.158944 -3.389066,8.677178 -1.41e-4,-3.266922 -1.127386,-6.035395 -3.389067,-8.297369 -2.26197,-2.512974 -4.901926,-3.768715 -7.91756,-3.768876 -3.267191,1.61e-4 -6.164165,1.127407 -8.677178,3.389067 -2.261933,2.261975 -3.389179,5.158944 -3.389067,8.677178 -1.31e-4,-3.266922 -1.127357,-6.035395 -3.389066,-8.297369 -2.261924,-2.512974 -4.901908,-3.768715 -7.91756,-3.768876 -3.267172,1.61e-4 -6.164146,1.127407 -8.677179,3.389067 -1.561728,1.56176 -2.555075,3.448859 -3.038473,5.609489 -0.554554,-1.971366 -1.672824,-3.711198 -3.35985,-5.22968 -1.74975,-1.943977 -3.730039,-3.124105 -5.930866,-3.564363 2.201154,-0.395984 4.180892,-1.463737 5.930866,-3.21377 2.513051,-2.512966 3.768782,-5.281441 3.768875,-8.297369 -1.8e-5,-0.786771 -0.08796,-1.550369 -0.233728,-2.278855 z m 23.022278,27.667636 c 0.396759,2.243243 1.465161,4.338767 3.21377,6.281459 1.91665,1.725178 4.07218,2.804452 6.427539,3.21377 -2.353956,0.409885 -4.511852,1.460455 -6.427539,3.184554 -2.261933,2.261952 -3.389179,5.158921 -3.389067,8.677178 -1.31e-4,-3.266944 -1.127357,-6.035418 -3.389066,-8.297369 -1.749768,-1.943995 -3.730049,-3.124115 -5.930866,-3.564363 2.201145,-0.395993 4.180874,-1.463755 5.930866,-3.21377 1.942501,-1.942473 3.123298,-4.038501 3.564363,-6.281459 z m 23.372871,0 c 0.39675,2.243243 1.465143,4.338767 3.21377,6.281459 1.916641,1.725178 4.072171,2.804452 6.42754,3.21377 -2.353966,0.409885 -4.511871,1.460455 -6.42754,3.184554 -1.763633,1.763633 -2.825313,3.929384 -3.21377,6.456756 -0.450862,-2.32135 -1.640065,-4.344882 -3.564363,-6.076947 -1.749805,-1.943995 -3.730057,-3.124115 -5.930866,-3.564363 2.201136,-0.395993 4.180855,-1.463755 5.930866,-3.21377 1.942464,-1.942473 3.12328,-4.038501 3.564363,-6.281459 z m 23.37286,0 c 0.39674,2.243243 1.46513,4.338767 3.21377,6.281459 1.91662,1.725178 4.07216,2.804452 6.42754,3.21377 -2.35397,0.409885 -4.51189,1.460455 -6.42754,3.184554 -1.76367,1.763633 -2.82533,3.929384 -3.21377,6.456756 -0.45088,-2.32135 -1.64008,-4.344882 -3.564355,-6.076947 -1.749814,-1.943995 -3.730063,-3.124115 -5.930862,-3.564363 2.201126,-0.395993 4.180833,-1.463755 5.930862,-3.21377 1.942445,-1.942473 3.123265,-4.038501 3.564355,-6.281459 z m -69.91409,0.788835 c 0.492018,1.941883 1.470799,3.783394 3.009257,5.492624 1.916669,1.725178 4.072181,2.804452 6.42754,3.21377 -2.353947,0.409885 -4.511834,1.460455 -6.42754,3.184554 -1.561728,1.561744 -2.555075,3.448853 -3.038473,5.609489 -0.554554,-1.97137 -1.672824,-3.711214 -3.35985,-5.22968 -1.74975,-1.943995 -3.730039,-3.124115 -5.930866,-3.564363 2.201154,-0.395993 4.180892,-1.463755 5.930866,-3.21377 1.71152,-1.71148 2.843141,-3.547877 3.389066,-5.492624 z m 69.91409,22.584037 c 0.39674,2.24323 1.46513,4.33875 3.21377,6.28146 1.91662,1.72516 4.07216,2.80444 6.42754,3.21377 -2.35397,0.40987 -4.51189,1.46044 -6.42754,3.18455 -1.76367,1.76361 -2.82533,3.92937 -3.21377,6.45676 -0.45088,-2.32136 -1.64008,-4.3449 -3.564355,-6.07695 -1.749814,-1.94402 -3.730063,-3.12412 -5.930862,-3.56436 2.201126,-0.39601 4.180833,-1.46377 5.930862,-3.21377 1.942445,-1.9425 3.123265,-4.03851 3.564355,-6.28146 z"
        id="path29864"
-       style="opacity:0.84418604;fill:#6d9d37;fill-opacity:1;stroke:none" />
+       style="opacity:0.84418604;fill:#6d9d37;fill-opacity:1;stroke:none"
+       inkscape:connector-curvature="0" />
   </g>
   <g
-     transform="translate(1720.8886,-460.22727)"
+     transform="translate(1816.8886,-460.22727)"
      id="g16694">
     <g
        id="g16349">
       <rect
-         style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
          id="Stop"
          y="651.58948"
          x="-1060.8887"
@@ -86024,20 +86372,21 @@
        transform="matrix(0.9826948,0,0,0.9826948,-1169.7897,134.87392)"
        id="g34197">
       <g
-         transform="matrix(6.1599468e-2,0,0,6.1599468e-2,104.19067,516.14489)"
+         transform="matrix(0.06159947,0,0,0.06159947,104.19067,516.14489)"
          id="g3172">
         <path
-           d="M 305.7143,160.59776 L 443.33253,217.6011 L 500.33586,355.21934 L 443.33252,492.83756 L 305.71429,549.8409 L 168.09606,492.83756 L 111.09273,355.21932 L 168.09607,217.6011 L 305.7143,160.59776 z"
+           d="M 305.7143,160.59776 443.33253,217.6011 500.33586,355.21934 443.33252,492.83756 305.71429,549.8409 168.09606,492.83756 111.09273,355.21932 168.09607,217.6011 305.7143,160.59776 z"
            transform="matrix(0.9238795,-0.3826834,0.3826834,0.9238795,-112.54277,144.03126)"
            id="path2388"
-           style="opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:30.00000191;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+           style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:30.00000191;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           inkscape:connector-curvature="0" />
         <text
            x="160.73796"
            y="355.54837"
            transform="scale(0.8717267,1.1471486)"
            id="text3168"
            xml:space="preserve"
-           style="font-size:126.07830811px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
+           style="font-size:126.07830811px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"
            sodipodi:linespacing="125%"><tspan
              x="160.73796"
              y="355.54837"
@@ -86103,7 +86452,7 @@
      id="g1161"
      transform="matrix(0.5724346,-0.3079575,0.3079575,0.5724346,131.42904,887.47867)" />
   <g
-     transform="translate(1360.788,-309.831)"
+     transform="translate(1402.788,-309.831)"
      id="g16313">
     <rect
        width="24"
@@ -86111,9 +86460,9 @@
        x="-1060.788"
        y="501.19318"
        id="ImportDEF"
-       style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <g
-       transform="matrix(8.6041405e-2,0,0,8.6041405e-2,-1059.9338,502.14288)"
+       transform="matrix(0.08604141,0,0,0.08604141,-1059.9338,502.14288)"
        id="g74019">
       <text
          sodipodi:linespacing="125%"
@@ -86122,7 +86471,7 @@
          transform="scale(0.9460798,1.0569933)"
          id="text10478"
          xml:space="preserve"
-         style="font-size:184.97383118px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans Mono"><tspan
+         style="font-size:184.97383118px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans Mono"><tspan
            x="-13.388169"
            y="239.68744"
            id="tspan10480">D</tspan></text>
@@ -86133,7 +86482,7 @@
          transform="scale(0.9460798,1.0569933)"
          id="text10482"
          xml:space="preserve"
-         style="font-size:184.97383118px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans Mono"><tspan
+         style="font-size:184.97383118px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans Mono"><tspan
            x="80.957664"
            y="239.68744"
            id="tspan10484">E</tspan></text>
@@ -86144,15 +86493,16 @@
          transform="scale(0.9460798,1.0569933)"
          id="text10486"
          xml:space="preserve"
-         style="font-size:184.97383118px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans Mono"><tspan
+         style="font-size:184.97383118px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans Mono"><tspan
            x="170.1553"
            y="239.68744"
            id="tspan10488">F</tspan></text>
       <path
-         d="M -648.96875,271.71875 L -648.96875,274.8125 C -648.39211,275.14939 -647.72443,275.4733 -647,275.75 L -647,273.71875 L -646.4375,273.71875 C -645.65847,273.71875 -645.11255,273.98604 -644.78125,274.53125 C -644.52135,274.95893 -644.36932,275.63434 -644.3125,276.53125 C -643.6504,276.68214 -642.97029,276.83486 -642.25,276.9375 C -642.29735,275.16212 -642.64095,273.84215 -643.3125,273.03125 C -644.0333,272.1559 -645.20513,271.71875 -646.84375,271.71875 L -648.96875,271.71875 z M -641.75,271.71875 L -641.75,277 C -640.55631,277.14822 -639.3026,277.21875 -638,277.21875 C -637.28669,277.21875 -636.59019,277.17088 -635.90625,277.125 L -635.90625,276.09375 L -639.75,276.09375 L -639.75,273.65625 L -635.5,273.65625 L -635.5,271.71875 L -641.75,271.71875 z M -635.03125,271.71875 L -635.03125,277.0625 C -633.17576,276.88306 -631.45618,276.56464 -629.96875,276.09375 L -633.03125,276.09375 L -633.03125,273.65625 L -628.78125,273.65625 L -628.78125,271.71875 L -635.03125,271.71875 z"
+         d="m -648.96875,271.71875 0,3.09375 c 0.57664,0.33689 1.24432,0.6608 1.96875,0.9375 l 0,-2.03125 0.5625,0 c 0.77903,0 1.32495,0.26729 1.65625,0.8125 0.2599,0.42768 0.41193,1.10309 0.46875,2 0.6621,0.15089 1.34221,0.30361 2.0625,0.40625 -0.0474,-1.77538 -0.39095,-3.09535 -1.0625,-3.90625 -0.7208,-0.87535 -1.89263,-1.3125 -3.53125,-1.3125 l -2.125,0 z m 7.21875,0 0,5.28125 c 1.19369,0.14822 2.4474,0.21875 3.75,0.21875 0.71331,0 1.40981,-0.0479 2.09375,-0.0937 l 0,-1.03125 -3.84375,0 0,-2.4375 4.25,0 0,-1.9375 -6.25,0 z m 6.71875,0 0,5.34375 c 1.85549,-0.17944 3.57507,-0.49786 5.0625,-0.96875 l -3.0625,0 0,-2.4375 4.25,0 0,-1.9375 -6.25,0 z"
          transform="matrix(12.723869,0,0,12.723869,8256.4217,-3346.4426)"
          id="path40832"
-         style="opacity:0.31627909;fill:url(#linearGradient16526);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:13;stroke-linecap:round;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+         style="opacity:0.31627909;fill:url(#linearGradient16526);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:13;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         inkscape:connector-curvature="0" />
       <g
          transform="matrix(5.0027792,0,0,5.0027792,-215.17835,-168.84627)"
          id="g39828">
@@ -86169,18 +86519,20 @@
            style="fill:#84c225;fill-rule:evenodd;stroke:#5d9d35;stroke-width:2.82220006"
            d="m 134.431,110.081 c 0,18.85721 -15.28679,34.144 -34.144,34.144 -18.857208,0 -34.143998,-15.28679 -34.143998,-34.144 0,-18.85721 15.28679,-34.144 34.143998,-34.144 18.85721,0 34.144,15.28679 34.144,34.144 z" />
         <path
-           d="M 84.515333,38.943636 L 84.515333,42.92513 L 88.496827,42.92513 L 88.496827,47.724769 L 84.515333,47.724769 L 84.515333,51.706263 L 79.732961,51.706263 L 79.732961,47.724769 L 75.751467,47.724769 L 75.751467,42.92513 L 79.732961,42.92513 L 79.732961,38.943636 L 84.515333,38.943636"
+           d="m 84.515333,38.943636 0,3.981494 3.981494,0 0,4.799639 -3.981494,0 0,3.981494 -4.782372,0 0,-3.981494 -3.981494,0 0,-4.799639 3.981494,0 0,-3.981494 4.782372,0"
            id="text1332"
-           style="font-size:12px;font-style:normal;font-weight:normal;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans" />
+           style="font-size:12px;font-style:normal;font-weight:normal;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
+           inkscape:connector-curvature="0" />
         <path
-           d="M 82.190677,35.644078 C 87.216601,35.644078 91.385544,39.317659 92.159906,44.125543 C 85.237989,38.299313 74.201592,44.218448 75.692244,53.47185 C 73.491207,51.619172 72.091798,48.8444 72.091798,45.742961 C 72.091798,40.166453 76.614175,35.644078 82.190677,35.644078 z"
+           d="m 82.190677,35.644078 c 5.025924,0 9.194867,3.673581 9.969229,8.481465 -6.921917,-5.82623 -17.958314,0.09291 -16.467662,9.346307 -2.201037,-1.852678 -3.600446,-4.62745 -3.600446,-7.728889 0,-5.576508 4.522377,-10.098883 10.098879,-10.098883 z"
            id="path33"
-           style="fill:url(#linearGradient16528);fill-opacity:1;fill-rule:evenodd" />
+           style="fill:url(#linearGradient16528);fill-opacity:1;fill-rule:evenodd"
+           inkscape:connector-curvature="0" />
       </g>
     </g>
   </g>
   <g
-     transform="translate(1420.788,-339.84989)"
+     transform="translate(1474.788,-339.84989)"
      id="g16328">
     <rect
        width="24"
@@ -86188,9 +86540,9 @@
        x="-1060.788"
        y="531.2121"
        id="ImportSVG"
-       style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <g
-       transform="matrix(8.6041405e-2,0,0,8.6041405e-2,-1060.0447,532.23602)"
+       transform="matrix(0.08604141,0,0,0.08604141,-1060.0447,532.23602)"
        id="g99155">
       <g
          transform="matrix(1.824846,0,0,1.824846,58.301023,-6.9917586)"
@@ -86200,9 +86552,10 @@
            id="g7207"
            style="fill:url(#linearGradient16530);fill-opacity:1">
           <path
-             d="M 379.91222,232.49347 L 363.39162,312.24537 L 349.70562,312.24537 L 333.18502,232.49347 L 346.87442,232.49347 L 356.54879,279.20447 L 366.22287,232.49347 L 379.91227,232.49347 L 379.91222,232.49347 z M 293.30182,272.36877 C 289.07338,268.14146 286.45785,262.30177 286.45785,255.85237 C 286.45785,242.95387 296.92025,232.49347 309.82155,232.49377 C 322.72255,232.49348 333.18495,242.95387 333.18495,255.85237 L 319.49895,255.85237 C 319.49895,250.50963 315.16534,246.17687 309.82147,246.17687 C 304.47759,246.17687 300.1437,250.50963 300.1437,255.85237 C 300.1437,258.52119 301.22512,260.93801 302.97381,262.68869 L 302.97835,262.68869 C 304.72931,264.44079 307.14897,265.52447 309.82147,265.52475 L 309.82147,265.52786 C 316.27199,265.52786 322.11247,268.14367 326.34067,272.37098 L 326.34123,272.37042 C 330.56939,276.59773 333.18492,282.43742 333.18492,288.88682 C 333.18492,301.78532 322.72252,312.24542 309.82152,312.24542 C 296.92022,312.24542 286.45782,301.78532 286.45782,288.88682 L 300.14382,288.88682 C 300.14382,294.22956 304.47771,298.56232 309.82159,298.56232 C 315.16547,298.56232 319.49907,294.22956 319.49907,288.88682 C 319.49907,286.218 318.41765,283.80118 316.66924,282.0505 L 316.66471,282.0505 C 314.91347,280.2984 312.49381,279.21444 309.82159,279.21444 L 309.82159,279.21132 C 303.37107,279.21132 297.53059,276.59551 293.30239,272.3682 L 293.30182,272.36877 L 293.30182,272.36877 z M 403.27882,265.52962 L 426.64252,265.52962 L 426.64252,288.88512 L 426.64592,288.88512 C 426.64592,301.78442 416.18272,312.24542 403.28052,312.24542 C 390.37922,312.24542 379.91622,301.78562 379.91542,288.88682 L 379.91542,288.88512 L 379.91542,255.85412 L 379.91202,255.85412 C 379.91202,242.95482 390.37522,232.49352 403.27712,232.49352 C 416.17932,232.49352 426.64252,242.95482 426.64252,255.85412 L 412.95312,255.85412 C 412.95312,250.51308 408.62093,246.18174 403.27875,246.18174 C 397.93686,246.18174 393.60467,250.51308 393.60467,255.85412 L 393.60467,288.88682 L 393.60467,288.88682 C 393.60552,294.22701 397.93743,298.55722 403.27904,298.5575 C 408.6198,298.55721 412.95142,294.22786 412.95312,288.88852 L 412.95312,288.88511 L 412.95312,279.21613 L 403.27875,279.21613 L 403.27875,265.52963 L 403.27882,265.52962 z"
+             d="m 379.91222,232.49347 -16.5206,79.7519 -13.686,0 -16.5206,-79.7519 13.6894,0 9.67437,46.711 9.67408,-46.711 13.6894,0 -5e-5,0 z m -86.6104,39.8753 c -4.22844,-4.22731 -6.84397,-10.067 -6.84397,-16.5164 0,-12.8985 10.4624,-23.3589 23.3637,-23.3586 12.901,-2.9e-4 23.3634,10.4601 23.3634,23.3586 l -13.686,0 c 0,-5.34274 -4.33361,-9.6755 -9.67748,-9.6755 -5.34388,0 -9.67777,4.33276 -9.67777,9.6755 0,2.66882 1.08142,5.08564 2.83011,6.83632 l 0.005,0 c 1.75096,1.7521 4.17062,2.83578 6.84312,2.83606 l 0,0.003 c 6.45052,0 12.291,2.61581 16.5192,6.84312 l 5.6e-4,-5.6e-4 c 4.22816,4.22731 6.84369,10.067 6.84369,16.5164 0,12.8985 -10.4624,23.3586 -23.3634,23.3586 -12.9013,0 -23.3637,-10.4601 -23.3637,-23.3586 l 13.686,0 c 0,5.34274 4.33389,9.6755 9.67777,9.6755 5.34388,0 9.67748,-4.33276 9.67748,-9.6755 0,-2.66882 -1.08142,-5.08564 -2.82983,-6.83632 l -0.005,0 c -1.75124,-1.7521 -4.1709,-2.83606 -6.84312,-2.83606 l 0,-0.003 c -6.45052,0 -12.291,-2.61581 -16.5192,-6.84312 l -5.7e-4,5.7e-4 0,0 z m 109.977,-6.83915 23.3637,0 0,23.3555 0.003,0 c 0,12.8993 -10.4632,23.3603 -23.3654,23.3603 -12.9013,0 -23.3643,-10.4598 -23.3651,-23.3586 l 0,-0.002 0,-33.031 -0.003,0 c 0,-12.8993 10.4632,-23.3606 23.3651,-23.3606 12.9022,0 23.3654,10.4613 23.3654,23.3606 l -13.6894,0 c 0,-5.34104 -4.33219,-9.67238 -9.67437,-9.67238 -5.34189,0 -9.67408,4.33134 -9.67408,9.67238 l 0,33.0327 0,0 c 8.5e-4,5.34019 4.33276,9.6704 9.67437,9.67068 5.34076,-2.9e-4 9.67238,-4.32964 9.67408,-9.66898 l 0,-0.003 0,-9.66898 -9.67437,0 0,-13.6865 7e-5,-1e-5 z"
              id="SVG"
-             style="font-size:103.41152191px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.55906028px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans" />
+             style="font-size:103.41152191px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.55906028px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans Mono;-inkscape-font-specification:Bitstream Vera Sans"
+             inkscape:connector-curvature="0" />
         </g>
         <g
            transform="matrix(2.7414802,0,0,2.7414802,-149.86436,-88.69471)"
@@ -86220,24 +86573,27 @@
              style="fill:#84c225;fill-rule:evenodd;stroke:#5d9d35;stroke-width:2.82220006"
              d="m 134.431,110.081 c 0,18.85721 -15.28679,34.144 -34.144,34.144 -18.857208,0 -34.143998,-15.28679 -34.143998,-34.144 0,-18.85721 15.28679,-34.144 34.143998,-34.144 18.85721,0 34.144,15.28679 34.144,34.144 z" />
           <path
-             d="M 84.515333,38.943636 L 84.515333,42.92513 L 88.496827,42.92513 L 88.496827,47.724769 L 84.515333,47.724769 L 84.515333,51.706263 L 79.732961,51.706263 L 79.732961,47.724769 L 75.751467,47.724769 L 75.751467,42.92513 L 79.732961,42.92513 L 79.732961,38.943636 L 84.515333,38.943636"
+             d="m 84.515333,38.943636 0,3.981494 3.981494,0 0,4.799639 -3.981494,0 0,3.981494 -4.782372,0 0,-3.981494 -3.981494,0 0,-4.799639 3.981494,0 0,-3.981494 4.782372,0"
              id="path99166"
-             style="font-size:12px;font-style:normal;font-weight:normal;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans" />
+             style="font-size:12px;font-style:normal;font-weight:normal;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
+             inkscape:connector-curvature="0" />
           <path
-             d="M 82.190677,35.644078 C 87.216601,35.644078 91.385544,39.317659 92.159906,44.125543 C 85.237989,38.299313 74.201592,44.218448 75.692244,53.47185 C 73.491207,51.619172 72.091798,48.8444 72.091798,45.742961 C 72.091798,40.166453 76.614175,35.644078 82.190677,35.644078 z"
+             d="m 82.190677,35.644078 c 5.025924,0 9.194867,3.673581 9.969229,8.481465 -6.921917,-5.82623 -17.958314,0.09291 -16.467662,9.346307 -2.201037,-1.852678 -3.600446,-4.62745 -3.600446,-7.728889 0,-5.576508 4.522377,-10.098883 10.098879,-10.098883 z"
              id="path99168"
-             style="fill:url(#linearGradient16532);fill-opacity:1;fill-rule:evenodd" />
+             style="fill:url(#linearGradient16532);fill-opacity:1;fill-rule:evenodd"
+             inkscape:connector-curvature="0" />
         </g>
         <path
-           d="M -645.40625,301.71875 C -647.21991,301.71871 -648.68747,303.18675 -648.6875,305 C -648.6875,305.29529 -648.63563,305.57152 -648.5625,305.84375 C -647.06415,306.63335 -645.08218,307.2548 -642.84375,307.625 C -642.92459,307.52231 -643.00144,307.40479 -643.09375,307.3125 C -643.68815,306.71823 -644.49945,306.34374 -645.40625,306.34375 C -645.78195,306.34371 -646.12883,306.18381 -646.375,305.9375 C -646.62083,305.69139 -646.74997,305.3752 -646.75,305 C -646.75,304.24892 -646.1575,303.625 -645.40625,303.625 C -644.65501,303.625 -644.03128,304.24893 -644.03125,305 L -642.125,305 C -642.125,303.18673 -643.59263,301.7187 -645.40625,301.71875 z M -642.125,301.71875 L -640.84375,307.875 C -640.21092,307.93341 -639.56801,307.94991 -638.90625,307.96875 L -640.1875,301.71875 L -642.125,301.71875 z M -637.46875,301.71875 L -638.78125,307.96875 C -638.52275,307.97509 -638.26213,308 -638,308 C -637.61216,308 -637.22344,307.98255 -636.84375,307.96875 L -635.5625,301.71875 L -637.46875,301.71875 z M -632.25,301.71875 C -634.06374,301.71875 -635.56248,303.18661 -635.5625,305 L -635.5625,307.90625 C -634.89697,307.85399 -634.25338,307.78008 -633.625,307.6875 L -633.625,305 C -633.625,304.24916 -633.00097,303.62499 -632.25,303.625 C -631.499,303.625 -630.90623,304.24914 -630.90625,305 L -628.96875,305 C -628.96875,303.18662 -630.43621,301.71874 -632.25,301.71875 z M -632.25,306.34375 L -632.25,307.4375 C -631.05305,307.19468 -629.94706,306.90721 -628.96875,306.53125 L -628.96875,306.34375 L -632.25,306.34375 z"
+           d="m -645.40625,301.71875 c -1.81366,-4e-5 -3.28122,1.468 -3.28125,3.28125 0,0.29529 0.0519,0.57152 0.125,0.84375 1.49835,0.7896 3.48032,1.41105 5.71875,1.78125 -0.0808,-0.10269 -0.15769,-0.22021 -0.25,-0.3125 -0.5944,-0.59427 -1.4057,-0.96876 -2.3125,-0.96875 -0.3757,-4e-5 -0.72258,-0.15994 -0.96875,-0.40625 -0.24583,-0.24611 -0.37497,-0.5623 -0.375,-0.9375 0,-0.75108 0.5925,-1.375 1.34375,-1.375 0.75124,0 1.37497,0.62393 1.375,1.375 l 1.90625,0 c 0,-1.81327 -1.46763,-3.2813 -3.28125,-3.28125 z m 3.28125,0 1.28125,6.15625 c 0.63283,0.0584 1.27574,0.0749 1.9375,0.0937 l -1.28125,-6.25 -1.9375,0 z m 4.65625,0 -1.3125,6.25 c 0.2585,0.006 0.51912,0.0312 0.78125,0.0312 0.38784,0 0.77656,-0.0174 1.15625,-0.0312 l 1.28125,-6.25 -1.90625,0 z m 5.21875,0 c -1.81374,0 -3.31248,1.46786 -3.3125,3.28125 l 0,2.90625 c 0.66553,-0.0523 1.30912,-0.12617 1.9375,-0.21875 l 0,-2.6875 c 0,-0.75084 0.62403,-1.37501 1.375,-1.375 0.751,0 1.34377,0.62414 1.34375,1.375 l 1.9375,0 c 0,-1.81338 -1.46746,-3.28126 -3.28125,-3.28125 z m 0,4.625 0,1.09375 c 1.19695,-0.24282 2.30294,-0.53029 3.28125,-0.90625 l 0,-0.1875 -3.28125,0 z"
            transform="matrix(6.9725717,0,0,6.9725717,4492.5,-2039.1599)"
            id="path99160"
-           style="opacity:0.31627909;fill:url(#linearGradient16534);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:13;stroke-linecap:round;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+           style="opacity:0.31627909;fill:url(#linearGradient16534);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:13;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           inkscape:connector-curvature="0" />
       </g>
     </g>
   </g>
   <g
-     transform="translate(1121,-189.38324)"
+     transform="translate(1125,-189.38324)"
      id="g16199">
     <rect
        width="24"
@@ -86245,58 +86601,68 @@
        x="-1061"
        y="380.74542"
        id="Build"
-       style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <g
        transform="matrix(0.1791056,0,0,0.1791056,-1060.8773,380.80176)"
        id="g13983"
        style="overflow:visible">
       <path
-         d="M 132.103,66.405 C 132.103,97.187 109.77,124.568 79.563,130.639 C 49.208,136.739 17.907,120.1 6.038,91.493 C -5.862,62.811 4.631,28.805 30.502,11.708 C 56.422,-5.424 91.881,-1.536 113.532,20.706 C 125.378,32.871 132.103,49.424 132.103,66.405"
+         d="m 132.103,66.405 c 0,30.782 -22.333,58.163 -52.54,64.234 C 49.208,136.739 17.907,120.1 6.038,91.493 -5.862,62.811 4.631,28.805 30.502,11.708 c 25.92,-17.132 61.379,-13.244 83.03,8.998 11.846,12.165 18.571,28.718 18.571,45.699"
          id="path3"
-         style="fill:#ffff3e" />
+         style="fill:#ffff3e"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 66.583,17.514 C 96.573,17.514 118.984,43.827 121.512,72.39 C 124.381,39.845 101.382,5.542 66.583,5.542 C 31.784,5.542 8.785,39.845 11.653,72.39 C 14.183,43.827 36.595,17.514 66.583,17.514"
+         d="m 66.583,17.514 c 29.99,0 52.401,26.313 54.929,54.876 C 124.381,39.845 101.382,5.542 66.583,5.542 31.784,5.542 8.785,39.845 11.653,72.39 14.183,43.827 36.595,17.514 66.583,17.514"
          id="path7"
-         style="fill:#ffe600" />
+         style="fill:#ffe600"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 66.583,118.623 C 35.532,118.623 15.062,88.721 12.737,60.258 C 10.136,92.48 30.356,131.359 66.583,131.359 C 102.812,131.359 123.031,92.481 120.43,60.258 C 118.107,88.723 97.636,118.623 66.583,118.623"
+         d="m 66.583,118.623 c -31.051,0 -51.521,-29.902 -53.846,-58.365 -2.601,32.222 17.619,71.101 53.846,71.101 36.229,0 56.448,-38.878 53.847,-71.101 -2.323,28.465 -22.794,58.365 -53.847,58.365"
          id="path9"
-         style="fill:#ffb600" />
+         style="fill:#ffb600"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 1.062,66.405 C 1.062,69.033 7.805,67.731 9.964,67.731 C 17.582,67.731 25.2,67.731 32.817,67.731 C 44.284,67.731 55.749,67.731 67.216,67.731 C 63.562,61.578 59.906,55.424 56.253,49.271 C 52.904,43.63 49.555,37.99 46.205,32.35 C 42.839,26.681 40.574,20.403 37.26,14.821 C 36.861,14.148 34.838,9.696 33.941,9.509 C 31.123,11.116 28.43,12.942 25.889,14.959 C 20.819,18.986 16.363,23.778 12.692,29.111 C 5.179,40.029 1.062,53.147 1.062,66.405"
+         d="m 1.062,66.405 c 0,2.628 6.743,1.326 8.902,1.326 7.618,0 15.236,0 22.853,0 11.467,0 22.932,0 34.399,0 C 63.562,61.578 59.906,55.424 56.253,49.271 52.904,43.63 49.555,37.99 46.205,32.35 42.839,26.681 40.574,20.403 37.26,14.821 36.861,14.148 34.838,9.696 33.941,9.509 c -2.818,1.607 -5.511,3.433 -8.052,5.45 -5.07,4.027 -9.526,8.819 -13.197,14.152 C 5.179,40.029 1.062,53.147 1.062,66.405"
          id="path11"
-         style="fill:#494848" />
+         style="fill:#494848"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 40.183,19.026 C 39.15,17.662 38.159,16.275 37.26,14.821 C 28.926,20.929 22.078,28.997 17.601,38.323 C 15.274,43.172 13.594,48.324 12.581,53.608 C 12.259,55.283 10.861,68.434 12.246,67.731 C 13.931,57.207 18.199,47.141 24.839,38.781 C 27.911,34.912 31.464,31.426 35.399,28.437 C 39.139,25.597 44.146,24.362 40.183,19.026"
+         d="M 40.183,19.026 C 39.15,17.662 38.159,16.275 37.26,14.821 28.926,20.929 22.078,28.997 17.601,38.323 c -2.327,4.849 -4.007,10.001 -5.02,15.285 -0.322,1.675 -1.72,14.826 -0.335,14.123 1.685,-10.524 5.953,-20.59 12.593,-28.95 3.072,-3.869 6.625,-7.355 10.56,-10.344 3.74,-2.84 8.747,-4.075 4.784,-9.411"
          id="path13"
-         style="fill:#5e5d5d" />
+         style="fill:#5e5d5d"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 98.885,9.51 C 95.424,14.728 93.641,20.531 90.473,25.867 C 86.823,32.011 83.174,38.153 79.525,44.297 C 74.886,52.109 70.247,59.92 65.608,67.732 C 84.036,67.732 102.461,67.732 120.888,67.732 C 124.091,67.732 127.291,67.732 130.494,67.732 C 133.902,67.732 130.8,54.918 130.246,52.389 C 126.32,34.509 114.811,18.594 98.885,9.51"
+         d="m 98.885,9.51 c -3.461,5.218 -5.244,11.021 -8.412,16.357 -3.65,6.144 -7.299,12.286 -10.948,18.43 -4.639,7.812 -9.278,15.623 -13.917,23.435 18.428,0 36.853,0 55.28,0 3.203,0 6.403,0 9.606,0 3.408,0 0.306,-12.814 -0.248,-15.343 C 126.32,34.509 114.811,18.594 98.885,9.51"
          id="path15"
-         style="fill:#494848" />
+         style="fill:#494848"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 92.644,19.026 C 93.676,17.663 94.666,16.275 95.565,14.821 C 103.899,20.929 110.748,28.997 115.224,38.323 C 117.552,43.172 119.232,48.324 120.245,53.608 C 120.567,55.281 121.967,68.434 120.581,67.731 C 118.895,57.207 114.626,47.141 107.987,38.781 C 104.913,34.912 101.359,31.426 97.424,28.437 C 93.684,25.597 88.679,24.362 92.644,19.026"
+         d="m 92.644,19.026 c 1.032,-1.363 2.022,-2.751 2.921,-4.205 8.334,6.108 15.183,14.176 19.659,23.502 2.328,4.849 4.008,10.001 5.021,15.285 0.322,1.673 1.722,14.826 0.336,14.123 -1.686,-10.524 -5.955,-20.59 -12.594,-28.95 -3.074,-3.869 -6.628,-7.355 -10.563,-10.344 -3.74,-2.84 -8.745,-4.075 -4.78,-9.411"
          id="path17"
-         style="fill:#5e5d5d" />
+         style="fill:#5e5d5d"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 100.081,122.834 C 88.898,104.225 77.714,85.616 66.531,67.005 C 54.472,85.07 42.411,103.135 30.352,121.2 C 51.119,134.967 78.694,135.62 100.081,122.834"
+         d="M 100.081,122.834 C 88.898,104.225 77.714,85.616 66.531,67.005 54.472,85.07 42.411,103.135 30.352,121.2 c 20.767,13.767 48.342,14.42 69.729,1.634"
          id="path19"
-         style="fill:#494848" />
+         style="fill:#494848"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 66.583,131.358 C 78.212,131.358 89.739,128.193 99.724,122.23 C 97.858,119.045 95.993,115.862 94.126,112.678 C 94.076,112.594 84.272,116.175 83.142,116.476 C 77.746,117.904 72.164,118.622 66.583,118.622 C 56.347,118.622 46.169,116.18 37.062,111.505 C 35.021,112.21 32.096,118.681 30.796,120.559 C 41.359,127.584 53.898,131.358 66.583,131.358"
+         d="m 66.583,131.358 c 11.629,0 23.156,-3.165 33.141,-9.128 -1.866,-3.185 -3.731,-6.368 -5.598,-9.552 -0.05,-0.084 -9.854,3.497 -10.984,3.798 -5.396,1.428 -10.978,2.146 -16.559,2.146 -10.236,0 -20.414,-2.442 -29.521,-7.117 -2.041,0.705 -4.966,7.176 -6.266,9.054 10.563,7.025 23.102,10.799 35.787,10.799"
          id="path21"
-         style="fill:#383838" />
+         style="fill:#383838"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 0,66.405 C 0,97.084 21.91,124.552 51.843,131.343 C 81.986,138.181 113.645,122.664 126.83,94.741 C 140.073,66.701 131.574,32.36 107.01,13.533 C 82.4,-5.329 46.987,-4.37 23.409,15.756 C 8.68,28.328 0,47.031 0,66.405 M 2.125,66.405 C 2.125,35.547 25.004,8.251 55.414,2.917 C 85.959,-2.44 116.804,15.505 127.276,44.689 C 137.787,73.977 125.137,107.426 98.062,122.641 C 70.898,137.906 35.772,130.946 16.303,106.698 C 7.17,95.324 2.125,80.992 2.125,66.405"
+         d="m 0,66.405 c 0,30.679 21.91,58.147 51.843,64.938 30.143,6.838 61.802,-8.679 74.987,-36.602 C 140.073,66.701 131.574,32.36 107.01,13.533 82.4,-5.329 46.987,-4.37 23.409,15.756 8.68,28.328 0,47.031 0,66.405 m 2.125,0 c 0,-30.858 22.879,-58.154 53.289,-63.488 30.545,-5.357 61.39,12.588 71.862,41.772 10.511,29.288 -2.139,62.737 -29.214,77.952 -27.164,15.265 -62.29,8.305 -81.759,-15.943 C 7.17,95.324 2.125,80.992 2.125,66.405"
          id="path5"
-         style="fill:#4d4d4d" />
+         style="fill:#4d4d4d"
+         inkscape:connector-curvature="0" />
     </g>
   </g>
   <rect
-     style="fill:none;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+     style="fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
      id="HMIEditor"
      y="191.36218"
-     x="240"
+     x="206"
      height="24"
      width="24" />
   <text
@@ -87492,10 +87858,10 @@
        y="509.33417"
        x="26.008392">%% ico48 ico24 ico32 ico16 icoplay24 icostop24 %%</tspan></text>
   <g
-     transform="translate(1084.009,-193.72536)"
+     transform="translate(1050.009,-193.72536)"
      id="g17590">
     <rect
-       style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="rect16798"
        width="8"
        height="1"
@@ -87507,9 +87873,9 @@
        height="1"
        width="8"
        id="rect17570"
-       style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <rect
-       style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="rect17572"
        width="4"
        height="1"
@@ -87521,9 +87887,9 @@
        height="1"
        width="4"
        id="rect17574"
-       style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <rect
-       style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="rect17576"
        width="4"
        height="1"
@@ -87535,16 +87901,16 @@
        height="1"
        width="4"
        id="rect17578"
-       style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <rect
-       style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="rect17580"
        width="6"
        height="1"
        x="-828"
        y="396.23816" />
     <rect
-       style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="rect17582"
        width="4"
        height="1"
@@ -87556,9 +87922,9 @@
        height="1"
        width="4"
        id="rect17584"
-       style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <rect
-       style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="rect17586"
        width="4"
        height="1"
@@ -87570,10 +87936,10 @@
        height="1"
        width="4"
        id="rect17588"
-       style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
   </g>
   <g
-     transform="translate(1083.788,-193.94633)"
+     transform="translate(1049.788,-193.94633)"
      style="fill:#4fadf7;fill-opacity:1"
      id="g17603">
     <rect
@@ -87582,9 +87948,9 @@
        height="1"
        width="8"
        id="rect17605"
-       style="opacity:1;fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       style="fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <rect
-       style="opacity:1;fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="rect17607"
        width="8"
        height="1"
@@ -87596,9 +87962,9 @@
        height="1"
        width="4"
        id="rect17609"
-       style="opacity:1;fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       style="fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <rect
-       style="opacity:1;fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="rect17611"
        width="4"
        height="1"
@@ -87610,9 +87976,9 @@
        height="1"
        width="4"
        id="rect17613"
-       style="opacity:1;fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       style="fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <rect
-       style="opacity:1;fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="rect17615"
        width="4"
        height="1"
@@ -87624,16 +87990,16 @@
        height="1"
        width="6"
        id="rect17617"
-       style="opacity:1;fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       style="fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <rect
        y="398.23816"
        x="-826"
        height="1"
        width="4"
        id="rect17619"
-       style="opacity:1;fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       style="fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <rect
-       style="opacity:1;fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="rect17621"
        width="4"
        height="1"
@@ -87645,9 +88011,9 @@
        height="1"
        width="4"
        id="rect17623"
-       style="opacity:1;fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+       style="fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     <rect
-       style="opacity:1;fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       style="fill:#4fadf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
        id="rect17625"
        width="4"
        height="1"
@@ -87655,8 +88021,8 @@
        y="404.23816" />
   </g>
   <path
-     transform="translate(-0.212,-80.07035)"
-     d="M 263.65515,289.22899 L 258.6897,286.36218 L 263.65515,283.49538 L 263.65515,289.22899 z"
+     transform="translate(-34.212,-80.07035)"
+     d="m 263.65515,289.22899 -4.96545,-2.86681 4.96545,-2.8668 z"
      inkscape:randomized="0"
      inkscape:rounded="0"
      inkscape:flatsided="true"
@@ -87668,11 +88034,11 @@
      sodipodi:cx="262"
      sodipodi:sides="3"
      id="path17627"
-     style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+     style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
      sodipodi:type="star" />
   <path
      sodipodi:type="star"
-     style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+     style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
      id="path17629"
      sodipodi:sides="3"
      sodipodi:cx="262"
@@ -87684,10 +88050,10 @@
      inkscape:flatsided="true"
      inkscape:rounded="0"
      inkscape:randomized="0"
-     d="M 263.65515,289.22899 L 258.6897,286.36218 L 263.65515,283.49538 L 263.65515,289.22899 z"
-     transform="translate(-0.5214,-80.3797)" />
+     d="m 263.65515,289.22899 -4.96545,-2.86681 4.96545,-2.8668 z"
+     transform="translate(-34.5214,-80.3797)" />
   <g
-     transform="matrix(8.8340245e-2,0,0,8.8340245e-2,320.46956,174.13123)"
+     transform="matrix(0.08834025,0,0,0.08834025,286.46956,174.13123)"
      id="g17968">
     <g
        style="display:inline"
@@ -87703,24 +88069,27 @@
          sodipodi:cy="218.57143"
          sodipodi:cx="133.21428"
          id="path7253"
-         style="opacity:1;fill:#d19f34;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.55946827;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+         style="fill:#d19f34;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.55946827;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
          sodipodi:type="arc" />
       <path
          id="path7255"
-         d="M 208.41798,154.46582 L 214.1659,160.20421"
-         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+         d="m 208.41798,154.46582 5.74792,5.73839"
+         style="fill:none;stroke:#000000;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:connector-curvature="0" />
       <path
          id="path7257"
-         d="M 250.50021,137.35283 L 250.50021,145.46814"
-         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+         d="m 250.50021,137.35283 0,8.11531"
+         style="fill:none;stroke:#000000;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:connector-curvature="0" />
       <path
          id="path7259"
-         d="M 292.70994,154.57618 L 286.96202,160.31457"
-         style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
+         d="m 292.70994,154.57618 -5.74792,5.73839"
+         style="fill:none;stroke:#000000;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+         inkscape:connector-curvature="0" />
     </g>
     <text
        xml:space="preserve"
-       style="font-size:10.49618816px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Bitstream Vera Sans"
+       style="font-size:10.49618816px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans"
        x="-903.8222"
        y="392.43793"
        id="text7261"
@@ -87731,7 +88100,7 @@
          y="392.43793">100</tspan></text>
     <text
        xml:space="preserve"
-       style="font-size:10.49618816px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Bitstream Vera Sans"
+       style="font-size:10.49618816px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans"
        x="-850.90784"
        y="370.95535"
        id="text7265"
@@ -87742,7 +88111,7 @@
          y="370.95535">200</tspan></text>
     <text
        xml:space="preserve"
-       style="font-size:10.49618816px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Bitstream Vera Sans"
+       style="font-size:10.49618816px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans"
        x="-793.92377"
        y="392.13516"
        id="text7269"
@@ -87753,7 +88122,7 @@
          y="392.13516">300</tspan></text>
     <text
        xml:space="preserve"
-       style="font-size:10.49618816px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Bitstream Vera Sans"
+       style="font-size:10.49618816px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans"
        x="-777.50763"
        y="438.86819"
        id="text7273"
@@ -87764,7 +88133,7 @@
          y="438.86819">400</tspan></text>
     <text
        xml:space="preserve"
-       style="font-size:10.49618816px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;font-family:Bitstream Vera Sans"
+       style="font-size:10.49618816px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Bitstream Vera Sans"
        x="-909.64709"
        y="439.1181"
        id="text7277"
@@ -87774,12 +88143,13 @@
          x="-909.64709"
          y="439.1181">0</tspan></text>
     <path
-       style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
-       d="M -890.18653,431.39368 L -893.96778,433.64368 L -897.59278,435.79993 L -893.81153,438.08118 L -890.21778,440.23743 L -890.21778,436.83118 L -841.90528,436.83118 L -840.90528,436.83118 L -840.90528,434.83118 L -841.90528,434.83118 L -890.21778,434.83118 L -890.18653,431.39368 z"
-       id="counter2_rotating" />
+       style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
+       d="m -890.18653,431.39368 -3.78125,2.25 -3.625,2.15625 3.78125,2.28125 3.59375,2.15625 0,-3.40625 48.3125,0 1,0 0,-2 -1,0 -48.3125,0 0.0312,-3.4375 z"
+       id="counter2_rotating"
+       inkscape:connector-curvature="0" />
     <path
        sodipodi:type="arc"
-       style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible"
        id="counter2_center"
        sodipodi:cx="91.923882"
        sodipodi:cy="199.42668"
@@ -88796,7 +89166,7 @@
   </g>
   <g
      id="g16550"
-     transform="translate(1541.0897,-400.03854)">
+     transform="translate(1641.0897,-400.03854)">
     <g
        id="g16553">
       <rect
@@ -88805,13 +89175,13 @@
          x="-1061.0897"
          y="591.4007"
          id="ShowMaster"
-         style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+         style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
     </g>
     <g
        id="g16589"
        transform="matrix(2.2224022,0,0,2.2224022,1296.2569,-749.24613)">
       <g
-         transform="matrix(6.7098911e-3,0,0,6.7098911e-3,-1061.8606,624.91055)"
+         transform="matrix(0.00670989,0,0,0.00670989,-1061.8606,624.91055)"
          id="g16559">
         <rect
            width="996.81232"
@@ -88820,7 +89190,7 @@
            y="-2666.4033"
            transform="matrix(0.926956,0.375171,0,1,0,0)"
            id="rect16561"
-           style="opacity:1;fill:#3d993d;fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+           style="fill:#3d993d;fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" />
         <rect
            width="593.28876"
            height="420.25934"
@@ -88828,7 +89198,7 @@
            y="-1753.9264"
            transform="matrix(0.929224,-0.369517,0,1,0,0)"
            id="rect16563"
-           style="opacity:1;fill:url(#linearGradient16607);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+           style="fill:url(#linearGradient16607);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" />
         <rect
            width="995.74323"
            height="593.25934"
@@ -88836,34 +89206,40 @@
            y="-4162.4521"
            transform="matrix(0.926288,0.376817,-0.92919,0.369603,0,0)"
            id="rect16565"
-           style="opacity:1;fill:url(#linearGradient16609);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+           style="fill:url(#linearGradient16609);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" />
         <g
            transform="matrix(1,0.428039,0,1,508,-889.8732)"
            id="g16567">
           <path
-             d="M -171.2884,-1442.3646 L -193.54603,-1442.3646 C -233.29689,-1442.3646 -261.95449,-1409.0137 -261.95449,-1368.5517 C -261.95449,-1327.8764 -233.22578,-1294.4544 -193.54603,-1294.4544 L -171.2884,-1294.4544 L -171.2884,-1330.0098 L -186.71941,-1330.0098 C -207.48372,-1330.0098 -223.55473,-1342.5252 -223.55473,-1368.5517 C -223.55473,-1394.5782 -207.48372,-1406.8093 -186.71941,-1406.8093 L -171.2884,-1406.8093 L -171.2884,-1442.3646 z"
+             d="m -171.2884,-1442.3646 -22.25763,0 c -39.75086,0 -68.40846,33.3509 -68.40846,73.8129 0,40.6753 28.72871,74.0973 68.40846,74.0973 l 22.25763,0 0,-35.5554 -15.43101,0 c -20.76431,0 -36.83532,-12.5154 -36.83532,-38.5419 0,-26.0265 16.07101,-38.2576 36.83532,-38.2576 l 15.43101,0 0,-35.5553 z"
              id="path16569"
-             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible"
+             inkscape:connector-curvature="0" />
           <path
-             d="M -103.37772,-1294.4544 L -103.37772,-1393.5116 C -103.37772,-1404.5337 -97.546644,-1411.5026 -88.586701,-1411.5026 C -79.484536,-1411.5026 -73.511241,-1404.3915 -73.511241,-1393.5116 L -73.511241,-1379.7872 L -96.622205,-1379.7872 L -96.622205,-1346.3652 L -73.511241,-1346.3652 L -73.511241,-1294.4544 L -36.533698,-1294.4544 L -36.533698,-1391.8049 C -36.533698,-1423.5203 -57.582453,-1444.9246 -88.586701,-1444.9246 C -119.51984,-1444.9246 -140.35526,-1423.4492 -140.35526,-1391.8049 L -140.35526,-1294.4544 L -103.37772,-1294.4544 z"
+             d="m -103.37772,-1294.4544 0,-99.0572 c 0,-11.0221 5.831076,-17.991 14.791019,-17.991 9.102165,0 15.07546,7.1111 15.07546,17.991 l 0,13.7244 -23.110964,0 0,33.422 23.110964,0 0,51.9108 36.977543,0 0,-97.3505 c 0,-31.7154 -21.048755,-53.1197 -52.053003,-53.1197 -30.933139,0 -51.768559,21.4754 -51.768559,53.1197 l 0,97.3505 36.97754,0 z"
              id="path16571"
-             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible"
+             inkscape:connector-curvature="0" />
           <path
-             d="M 34.576962,-1294.4544 L 34.576962,-1381.2094 L 34.576962,-1381.2094 L 68.923411,-1315.2187 C 78.594461,-1296.3744 85.634416,-1291.8944 95.163245,-1291.8944 C 104.40763,-1291.8944 114.93201,-1299.9299 114.93201,-1313.5121 L 114.93201,-1442.3646 L 77.954465,-1442.3646 L 77.954465,-1364.2851 L 77.38558,-1364.2851 L 44.532455,-1429.4936 C 39.056934,-1440.3024 31.661425,-1444.9246 19.145949,-1444.9246 C 6.7015837,-1444.9246 -2.4005808,-1436.5335 -2.4005808,-1424.8003 L -2.4005808,-1294.4544 L 34.576962,-1294.4544 z"
+             d="m 34.576962,-1294.4544 0,-86.755 0,0 34.346449,65.9907 c 9.67105,18.8443 16.711005,23.3243 26.239834,23.3243 9.244385,0 19.768765,-8.0355 19.768765,-21.6177 l 0,-128.8525 -36.977545,0 0,78.0795 -0.568885,0 -32.853125,-65.2085 c -5.475521,-10.8088 -12.87103,-15.431 -25.386506,-15.431 -12.4443653,0 -21.5465298,8.3911 -21.5465298,20.1243 l 0,130.3459 36.9775428,0 z"
              id="path16573"
-             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible"
+             inkscape:connector-curvature="0" />
           <path
-             d="M 252.34055,-1353.787 L 261.74631,-1354.8885 C 268.4121,-1362.9102 273.7505,-1366.921 277.76151,-1366.9211 C 280.47292,-1366.921 281.82871,-1365.8195 281.82886,-1363.6164 C 281.82871,-1361.0742 279.68205,-1358.6451 275.38889,-1356.3291 C 272.05577,-1354.4648 268.77929,-1353.222 265.55945,-1352.6006 C 264.09054,-1349.2111 262.62178,-1345.7934 261.15315,-1342.3475 C 258.89338,-1337.8282 256.549,-1335.5686 254.12002,-1335.5686 C 253.55498,-1335.5686 252.76411,-1335.5968 251.7474,-1335.6533 C 250.73043,-1335.7098 249.99605,-1335.7663 249.54425,-1335.8228 L 248.52741,-1336.3312 C 248.64027,-1337.6305 250.2785,-1340.342 253.44213,-1344.4659 C 256.04058,-1347.7989 258.24373,-1350.3974 260.05158,-1352.2617 L 251.06951,-1351.1601 C 240.05364,-1332.2356 228.78369,-1318.1976 217.25963,-1309.0461 C 202.91083,-1297.5784 186.246,-1291.8446 167.26508,-1291.8446 C 159.80823,-1291.8446 153.53773,-1292.8331 148.45357,-1294.8103 C 141.2227,-1297.6349 137.60728,-1302.1824 137.6073,-1308.4529 C 137.60728,-1310.5996 138.28517,-1312.379 139.64097,-1313.7913 C 141.05323,-1315.2601 142.80445,-1315.9944 144.89464,-1315.9945 C 146.30689,-1315.9944 147.52145,-1315.373 148.53831,-1314.1303 C 149.61161,-1312.9439 150.14828,-1311.6164 150.1483,-1310.1476 C 150.14828,-1308.9048 149.72459,-1307.6903 148.87726,-1306.504 C 147.97337,-1305.1482 146.92829,-1304.4703 145.742,-1304.4703 C 143.87778,-1304.4703 142.15481,-1305.0352 140.57308,-1306.165 C 142.26779,-1297.9738 150.99564,-1293.8782 166.75666,-1293.8782 C 178.50674,-1293.8782 188.95757,-1296.7593 198.10918,-1302.5214 C 205.33995,-1307.0971 212.68377,-1314.1585 220.14067,-1323.7055 C 226.52406,-1332.631 232.90753,-1341.5284 239.29113,-1350.3975 C 228.38826,-1349.776 217.96568,-1347.7424 208.02335,-1344.2965 C 201.18786,-1341.9803 198.08086,-1340.8222 198.70233,-1340.8223 L 198.10918,-1340.8223 L 197.43128,-1341.8391 L 198.19391,-1342.8559 C 208.58818,-1348.166 222.76741,-1351.4143 240.73165,-1352.6006 C 246.21116,-1359.8879 254.6848,-1369.3219 266.15261,-1380.9026 C 278.52399,-1393.4435 287.84499,-1401.663 294.11566,-1405.561 L 295.21724,-1405.8152 L 295.89513,-1405.0526 L 295.55618,-1404.1205 C 293.91777,-1402.1996 291.51691,-1399.94 288.35358,-1397.3415 C 284.39905,-1394.065 281.8852,-1391.9183 280.81203,-1390.9016 C 269.00526,-1379.7162 259.51478,-1367.3447 252.34055,-1353.787 M 279.45624,-1363.108 C 279.45609,-1364.1247 278.94767,-1364.6332 277.93098,-1364.6332 C 276.06663,-1364.6332 273.86348,-1363.4751 271.32154,-1361.159 C 269.17473,-1359.2383 267.50825,-1357.2611 266.32208,-1355.2275 C 268.29912,-1355.6229 270.81297,-1356.6114 273.86363,-1358.1933 C 277.59188,-1360.0574 279.45609,-1361.6956 279.45624,-1363.108 M 245.13795,-1411.4925 C 231.46701,-1411.4924 218.55883,-1408.8656 206.41336,-1403.612 C 190.82177,-1396.8895 183.02602,-1387.5685 183.02608,-1375.649 C 183.02602,-1371.0731 185.42688,-1367.5989 190.22868,-1365.2264 C 193.95702,-1363.3056 198.36331,-1362.3453 203.44758,-1362.3453 C 211.13027,-1362.3453 219.88637,-1364.6614 229.7159,-1369.2937 C 241.18346,-1374.7168 246.91729,-1380.8178 246.91742,-1387.5968 C 246.91729,-1390.6472 245.67449,-1393.0199 243.18901,-1394.7147 C 241.04223,-1396.1834 238.4154,-1396.9177 235.30851,-1396.9178 C 222.14601,-1396.9177 209.26607,-1391.2969 196.66866,-1380.0553 C 194.86087,-1378.078 192.06457,-1375.2817 188.27974,-1371.6664 L 187.51711,-1371.5816 L 186.92396,-1372.2595 L 187.17817,-1373.1916 C 190.05914,-1379.0101 197.09227,-1384.8287 208.27756,-1390.6473 C 218.95427,-1396.2399 227.7951,-1399.0362 234.80009,-1399.0363 C 238.4154,-1399.0362 241.55065,-1398.217 244.20585,-1396.5789 C 247.36922,-1394.6581 248.95097,-1391.9748 248.95109,-1388.5289 C 248.95097,-1380.5636 243.16064,-1373.6435 231.5801,-1367.7685 C 221.63759,-1362.6842 212.26009,-1360.1421 203.44758,-1360.1422 C 197.62893,-1360.1421 192.65772,-1361.3002 188.53395,-1363.6164 C 183.4497,-1366.4409 180.9076,-1370.5647 180.90766,-1375.9879 C 180.9076,-1380.8461 182.17865,-1385.0829 184.72081,-1388.6984 C 193.58983,-1401.3523 208.30572,-1409.4305 228.86854,-1412.9331 C 238.07646,-1414.4582 255.56041,-1415.2208 281.32045,-1415.2209 C 287.76026,-1415.2208 297.39197,-1415.1643 310.2156,-1415.0515 C 323.09535,-1414.9949 332.72706,-1414.9666 339.11076,-1414.9667 C 344.30771,-1414.9666 348.23383,-1415.5315 350.88913,-1416.6615 C 352.75311,-1417.3957 355.97309,-1419.5141 360.5491,-1423.0167 L 361.39646,-1423.3556 L 362.32856,-1422.1693 L 362.07435,-1421.322 C 352.75311,-1411.2664 337.30283,-1406.2388 315.72348,-1406.2389 C 307.81455,-1406.2388 296.03618,-1407.1144 280.38834,-1408.8657 C 264.74019,-1410.6168 252.99007,-1411.4924 245.13795,-1411.4925"
+             d="m 252.34055,-1353.787 9.40576,-1.1015 c 6.66579,-8.0217 12.00419,-12.0325 16.0152,-12.0326 2.71141,10e-5 4.0672,1.1016 4.06735,3.3047 -1.5e-4,2.5422 -2.14681,4.9713 -6.43997,7.2873 -3.33312,1.8643 -6.6096,3.1071 -9.82944,3.7285 -1.46891,3.3895 -2.93767,6.8072 -4.4063,10.2531 -2.25977,4.5193 -4.60415,6.7789 -7.03313,6.7789 -0.56504,0 -1.35591,-0.028 -2.37262,-0.085 -1.01697,-0.057 -1.75135,-0.113 -2.20315,-0.1695 l -1.01684,-0.5084 c 0.11286,-1.2993 1.75109,-4.0108 4.91472,-8.1347 2.59845,-3.333 4.8016,-5.9315 6.60945,-7.7958 l -8.98207,1.1016 c -11.01587,18.9245 -22.28582,32.9625 -33.80988,42.114 -14.3488,11.4677 -31.01363,17.2015 -49.99455,17.2015 -7.45685,0 -13.72735,-0.9885 -18.81151,-2.9657 -7.23087,-2.8246 -10.84629,-7.3721 -10.84627,-13.6426 -2e-5,-2.1467 0.67787,-3.9261 2.03367,-5.3384 1.41226,-1.4688 3.16348,-2.2031 5.25367,-2.2032 1.41225,10e-5 2.62681,0.6215 3.64367,1.8642 1.0733,1.1864 1.60997,2.5139 1.60999,3.9827 -2e-5,1.2428 -0.42371,2.4573 -1.27104,3.6436 -0.90389,1.3558 -1.94897,2.0337 -3.13526,2.0337 -1.86422,0 -3.58719,-0.5649 -5.16892,-1.6947 1.69471,8.1912 10.42256,12.2868 26.18358,12.2868 11.75008,0 22.20091,-2.8811 31.35252,-8.6432 7.23077,-4.5757 14.57459,-11.6371 22.03149,-21.1841 6.38339,-8.9255 12.76686,-17.8229 19.15046,-26.692 -10.90287,0.6215 -21.32545,2.6551 -31.26778,6.101 -6.83549,2.3162 -9.94249,3.4743 -9.32102,3.4742 l -0.59315,0 -0.6779,-1.0168 0.76263,-1.0168 c 10.39427,-5.3101 24.5735,-8.5584 42.53774,-9.7447 5.47951,-7.2873 13.95315,-16.7213 25.42096,-28.302 12.37138,-12.5409 21.69238,-20.7604 27.96305,-24.6584 l 1.10158,-0.2542 0.67789,0.7626 -0.33895,0.9321 c -1.63841,1.9209 -4.03927,4.1805 -7.2026,6.779 -3.95453,3.2765 -6.46838,5.4232 -7.54155,6.4399 -11.80677,11.1854 -21.29725,23.5569 -28.47148,37.1146 m 27.11569,-9.321 c -1.5e-4,-1.0167 -0.50857,-1.5252 -1.52526,-1.5252 -1.86435,0 -4.0675,1.1581 -6.60944,3.4742 -2.14681,1.9207 -3.81329,3.8979 -4.99946,5.9315 1.97704,-0.3954 4.49089,-1.3839 7.54155,-2.9658 3.72825,-1.8641 5.59246,-3.5023 5.59261,-4.9147 m -34.31829,-48.3845 c -13.67094,10e-5 -26.57912,2.6269 -38.72459,7.8805 -15.59159,6.7225 -23.38734,16.0435 -23.38728,27.963 -6e-5,4.5759 2.4008,8.0501 7.2026,10.4226 3.72834,1.9208 8.13463,2.8811 13.2189,2.8811 7.68269,0 16.43879,-2.3161 26.26832,-6.9484 11.46756,-5.4231 17.20139,-11.5241 17.20152,-18.3031 -1.3e-4,-3.0504 -1.24293,-5.4231 -3.72841,-7.1179 -2.14678,-1.4687 -4.77361,-2.203 -7.8805,-2.2031 -13.1625,1e-4 -26.04244,5.6209 -38.63985,16.8625 -1.80779,1.9773 -4.60409,4.7736 -8.38892,8.3889 l -0.76263,0.085 -0.59315,-0.6779 0.25421,-0.9321 c 2.88097,-5.8185 9.9141,-11.6371 21.09939,-17.4557 10.67671,-5.5926 19.51754,-8.3889 26.52253,-8.389 3.61531,10e-5 6.75056,0.8193 9.40576,2.4574 3.16337,1.9208 4.74512,4.6041 4.74524,8.05 -1.2e-4,7.9653 -5.79045,14.8854 -17.37099,20.7604 -9.94251,5.0843 -19.32001,7.6264 -28.13252,7.6263 -5.81865,10e-5 -10.78986,-1.158 -14.91363,-3.4742 -5.08425,-2.8245 -7.62635,-6.9483 -7.62629,-12.3715 -6e-5,-4.8582 1.27099,-9.095 3.81315,-12.7105 8.86902,-12.6539 23.58491,-20.7321 44.14773,-24.2347 9.20792,-1.5251 26.69187,-2.2877 52.45191,-2.2878 6.43981,10e-5 16.07152,0.057 28.89515,0.1694 12.87975,0.057 22.51146,0.085 28.89516,0.085 5.19695,10e-5 9.12307,-0.5648 11.77837,-1.6948 1.86398,-0.7342 5.08396,-2.8526 9.65997,-6.3552 l 0.84736,-0.3389 0.9321,1.1863 -0.25421,0.8473 c -9.32124,10.0556 -24.77152,15.0832 -46.35087,15.0831 -7.90893,10e-5 -19.6873,-0.8755 -35.33514,-2.6268 -15.64815,-1.7511 -27.39827,-2.6267 -35.25039,-2.6268"
              id="path16575"
-             style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Exmouth" />
+             style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Exmouth"
+             inkscape:connector-curvature="0" />
           <path
-             d="M 600.625,-1391.1562 C 594.66668,-1390.8552 586.27312,-1385.8817 575.4375,-1376.25 C 567.41574,-1369.0191 558.08905,-1359.2151 547.46875,-1346.8438 C 541.81963,-1340.0648 536.18031,-1333.2789 530.53125,-1326.5 C 527.93266,-1323.5059 524.31977,-1320.4135 519.6875,-1317.25 C 515.62015,-1314.6514 485.27559,-1291.8844 480.375,-1293.7188 C 479.84163,-1293.9185 479.10702,-1294.2969 479,-1294.8125 C 478.76166,-1295.9608 483.197,-1301.2366 491.21875,-1310.2188 C 496.18993,-1315.6419 501.15375,-1321.0768 506.125,-1326.5 L 496.375,-1326.5 C 491.8557,-1321.2463 488.91226,-1317.9122 487.5,-1316.5 C 487.89541,-1317.7993 488.06247,-1318.9518 488.0625,-1319.9688 C 488.06247,-1324.3185 485.23681,-1326.5 479.53125,-1326.5 C 472.63934,-1326.5 465.18397,-1323.7609 457.21875,-1318.2812 C 452.88726,-1315.3086 449.78577,-1312.9412 447.625,-1309.8125 C 447.62501,-1309.8124 444.92066,-1308.9918 443,-1308.0312 C 441.07928,-1307.0709 439.36899,-1306.5935 437.84375,-1306.5938 C 436.7704,-1306.5938 435.78483,-1306.9531 434.9375,-1307.6875 C 443.18516,-1314.3534 447.31246,-1319.9493 447.3125,-1324.4688 C 447.31247,-1325.9375 446.59373,-1326.6562 445.125,-1326.6562 C 442.30042,-1326.6561 439.16468,-1324.5118 435.71875,-1320.2188 C 432.38576,-1316.1513 430.71873,-1312.6561 430.71875,-1309.7188 C 430.71873,-1309.7186 430.84251,-1309.1611 431.125,-1308.0312 C 420.10924,-1298.3713 411.37747,-1293.5312 404.9375,-1293.5312 C 402.79085,-1293.5312 401.71876,-1294.0457 401.71875,-1295.0625 C 401.71876,-1296.1924 404.89178,-1299.8053 411.21875,-1305.9062 C 417.54574,-1312.0637 420.71873,-1316.9038 420.71875,-1320.4062 C 420.71874,-1324.4735 419.09498,-1326.5 415.875,-1326.5 C 413.50238,-1326.5 408.8979,-1323.9221 402.0625,-1318.7812 C 396.24747,-1314.4438 386.48772,-1305.525 380.375,-1301.4062 C 372.69222,-1296.209 367.05295,-1293.7056 363.4375,-1293.875 L 362,-1294.8125 C 362.113,-1295.9988 366.16577,-1301.1181 374.1875,-1310.1562 C 379.10221,-1315.636 384.02278,-1321.0768 388.9375,-1326.5 L 379.375,-1326.5 C 373.44344,-1321.4158 350.68937,-1301.074 326.90625,-1293.875 C 326.90292,-1293.8751 326.87779,-1293.875 326.875,-1293.875 C 326.86825,-1293.8737 326.85105,-1293.8759 326.84375,-1293.875 C 326.82062,-1293.8733 326.77455,-1293.874 326.75,-1293.875 C 326.73383,-1293.8762 326.7025,-1293.8729 326.6875,-1293.875 C 326.43459,-1293.9202 326.13441,-1294.1012 325.9375,-1294.25 C 325.86661,-1294.3058 325.79572,-1294.3728 325.75,-1294.4375 C 325.73632,-1294.4583 325.70212,-1294.5059 325.6875,-1294.5312 C 325.67728,-1294.5563 325.66164,-1294.5991 325.65625,-1294.625 C 325.65636,-1294.6281 325.6562,-1294.6535 325.65625,-1294.6562 C 325.65598,-1294.6607 325.65634,-1294.6828 325.65625,-1294.6875 C 325.65635,-1294.6924 325.65596,-1294.7137 325.65625,-1294.7188 C 325.77511,-1296.0299 331.77518,-1303.0575 342.65625,-1315.3125 C 349.43516,-1322.8257 356.22105,-1330.3304 363,-1337.8438 C 370.66156,-1337.646 375.06535,-1337.9334 376.15625,-1338.6875 C 376.16166,-1338.6929 376.18213,-1338.7132 376.1875,-1338.7188 C 376.21612,-1338.7444 376.2576,-1338.7854 376.28125,-1338.8125 C 376.28404,-1338.8152 376.30926,-1338.8406 376.3125,-1338.8438 C 376.34255,-1338.8848 376.38932,-1338.9555 376.40625,-1339 C 376.40624,-1339.0027 376.40644,-1339.0284 376.40625,-1339.0312 L 375.28125,-1340.2188 L 364.625,-1340.2188 L 379.53125,-1356.75 L 369.625,-1356.75 L 354.875,-1340.2188 C 350.86104,-1340.3604 348.34934,-1340.0935 347.375,-1339.4062 C 347.27002,-1339.3291 347.16564,-1339.2205 347.09375,-1339.125 C 347.05986,-1339.0771 347.02254,-1339.0155 347,-1338.9688 L 348.4375,-1337.8438 L 352.84375,-1337.8438 C 345.6129,-1329.7654 324.65713,-1313.4626 317.8125,-1309.2812 C 311.01344,-1305.1278 307.82814,-1304.3955 305.625,-1304 C 307.65866,-1307.333 308.68749,-1310.989 308.6875,-1315 C 308.68749,-1316.0168 308.52644,-1317.5228 308.1875,-1319.5 C 307.90504,-1321.4772 307.74999,-1322.9832 307.75,-1324 C 307.74999,-1325.5253 307.83052,-1326.7582 308,-1327.7188 C 311.50243,-1330.5432 314.15502,-1332.6502 315.90625,-1334.0625 L 314.625,-1335.5 C 314.62176,-1335.4999 314.60041,-1335.5 314.59375,-1335.5 C 314.59097,-1335.5002 314.56523,-1335.5 314.5625,-1335.5 C 313.33562,-1335.0933 306.73704,-1330.633 294.78125,-1322.125 C 283.86923,-1314.3597 271.71049,-1305.7091 264.03125,-1300.625 C 255.89654,-1295.2019 249.1479,-1292.5 243.78125,-1292.5 C 242.35133,-1292.5 241.31292,-1292.8306 240.6875,-1293.4688 C 240.21828,-1293.9631 239.96875,-1294.6577 239.96875,-1295.5312 C 239.96876,-1299.5986 242.67064,-1303.0504 248.09375,-1305.875 C 253.12146,-1308.0781 258.15979,-1310.2595 263.1875,-1312.4062 C 268.61062,-1315.0049 271.31249,-1317.9855 271.3125,-1321.375 C 271.31249,-1324.3125 269.52768,-1325.7812 265.96875,-1325.7812 C 259.75474,-1325.7812 252.96282,-1322.8381 245.5625,-1316.9062 C 237.82325,-1310.6923 233.93754,-1304.5385 233.9375,-1298.4375 C 233.93753,-1292.7319 237.66219,-1289.875 245.0625,-1289.875 C 250.93757,-1289.875 261.57796,-1295.4336 277,-1306.5625 C 277,-1306.5625 302.61056,-1324.3317 304.53125,-1325.6875 C 297.52637,-1303.5995 289.18521,-1292.5624 279.46875,-1292.5625 C 277.81773,-1292.5625 276.6748,-1292.9258 276.09375,-1293.6562 C 276.05453,-1293.7072 276.00289,-1293.7891 275.96875,-1293.8438 C 275.78567,-1294.1464 275.68538,-1294.4987 275.65625,-1294.9062 C 279.8366,-1294.7933 281.90626,-1296.5346 281.90625,-1300.0938 C 281.90626,-1302.1839 280.71038,-1303.2188 278.28125,-1303.2188 C 274.55286,-1303.2187 272.68753,-1300.9941 272.6875,-1296.5312 C 272.68752,-1292.238 275.38937,-1290.0935 280.8125,-1290.0938 C 287.59143,-1290.0938 295.1766,-1293.8244 303.59375,-1301.2812 C 305.51444,-1301.3942 311.02431,-1303.1064 314.90625,-1305.0625 C 318.83811,-1307.0438 331.12012,-1315.4711 336.65625,-1319.3125 C 333.2103,-1315.8665 329.75845,-1312.4147 326.3125,-1308.9688 C 322.41464,-1304.4495 320.46877,-1300.1671 320.46875,-1296.1562 C 320.46877,-1292.5974 322.21654,-1290.851 325.71875,-1290.8125 C 336.95076,-1290.6875 363.62424,-1311.3699 365.875,-1313.0312 C 361.97713,-1308.1729 359.95073,-1305.6324 359.78125,-1305.4062 C 357.57812,-1302.1862 356.46875,-1299.168 356.46875,-1296.3438 C 356.46876,-1292.6718 358.21031,-1290.8124 361.65625,-1290.8125 C 364.42432,-1290.8125 370.29919,-1293.1922 379.28125,-1297.9375 C 387.58277,-1302.2643 397.28732,-1311.2605 402.0625,-1315.8125 C 408.10704,-1321.5745 412.3954,-1324.4255 414.9375,-1324.3125 L 416.125,-1323.4375 C 416.12538,-1323.4266 416.12499,-1323.3862 416.125,-1323.375 C 416.1232,-1323.3735 416.10075,-1323.3508 416.09375,-1323.3438 C 415.72203,-1322.5118 412.59294,-1319.106 406.71875,-1313.125 C 400.50475,-1306.798 397.40627,-1301.8774 397.40625,-1298.375 C 397.40626,-1293.5167 400.1021,-1291.0935 405.46875,-1291.0938 C 411.68276,-1291.0938 420.85441,-1296.0575 433,-1306 C 434.41225,-1304.7007 435.9615,-1304.0312 437.65625,-1304.0312 C 440.36569,-1304.0312 443.11356,-1304.8649 445.90625,-1306.4688 C 444.80167,-1304.2055 444.28125,-1301.9051 444.28125,-1299.5625 C 444.28127,-1293.6874 447.26198,-1290.75 453.25,-1290.75 C 459.01209,-1290.75 466.07682,-1294.0467 474.4375,-1300.6562 C 473.92908,-1299.2439 473.6875,-1297.7752 473.6875,-1296.25 C 473.68749,-1292.6345 475.36053,-1290.8125 478.75,-1290.8125 C 488.86059,-1290.8125 514.72718,-1311.3365 517.15625,-1313.0312 C 513.31488,-1308.2859 511.25122,-1305.7452 510.96875,-1305.4062 C 508.76561,-1302.1862 507.65626,-1299.1683 507.65625,-1296.3438 C 507.65627,-1292.6718 509.44106,-1290.8124 513,-1290.8125 C 516.27649,-1290.8125 522.23187,-1293.0685 530.875,-1297.5312 C 538.28254,-1302.0011 542.38101,-1305.3761 545.21875,-1307.9062 L 544,-1309.375 C 543.99545,-1309.3737 543.9752,-1309.3777 543.96875,-1309.375 C 543.45891,-1309.1302 539.40437,-1306.3789 531.8125,-1301.1562 C 524.52516,-1296.1286 518.61822,-1294.5288 514.5,-1293.875 C 513.63137,-1293.7371 512.81714,-1294.0255 513.0625,-1294.8125 C 513.5224,-1296.2877 514.3726,-1297.2536 514.9375,-1297.875 C 520.30415,-1304.3714 525.70185,-1310.81 531.125,-1317.25 C 537.67794,-1325.1022 543.43501,-1331.2499 548.40625,-1335.6562 C 550.60937,-1337.5205 557.3953,-1341.7715 568.75,-1348.4375 C 580.50007,-1355.3293 589.07678,-1361.0432 594.5,-1365.5625 C 602.91708,-1372.5673 607.1249,-1378.9998 607.125,-1384.875 C 607.12492,-1386.5131 606.52998,-1387.9759 605.34375,-1389.2188 C 604.21385,-1390.5179 602.82567,-1391.1562 601.1875,-1391.1562 C 601.00037,-1391.1562 600.8172,-1391.166 600.625,-1391.1562 z M 600,-1388.9375 C 600.23304,-1388.9543 600.46109,-1388.9375 600.6875,-1388.9375 C 603.51197,-1388.9374 604.93744,-1387.5864 604.9375,-1384.875 C 604.93742,-1378.8868 597.32104,-1370.4652 582.125,-1359.5625 C 578.34005,-1356.8509 567.78018,-1350.1022 550.4375,-1339.3125 C 562.24408,-1354.9605 569.86649,-1364.7271 573.3125,-1368.625 C 584.70399,-1381.7061 593.60434,-1388.4775 600,-1388.9375 z M 479.9375,-1324.0312 C 479.96959,-1324.0342 479.99941,-1324.0287 480.03125,-1324.0312 C 480.23171,-1324.0474 480.43434,-1324.0312 480.625,-1324.0312 C 483.90146,-1324.0313 485.53122,-1322.5996 485.53125,-1319.7188 C 485.53123,-1314.8605 481.24288,-1309.1408 472.65625,-1302.5312 C 464.35207,-1296.2042 457.6467,-1293.0313 452.5625,-1293.0312 C 451.27204,-1293.0312 450.32365,-1293.3323 449.71875,-1293.9062 C 449.70262,-1293.922 449.67189,-1293.9525 449.65625,-1293.9688 C 449.1868,-1294.4717 448.93751,-1295.2002 448.9375,-1296.0938 C 448.93752,-1300.0481 453.18861,-1305.6875 461.71875,-1313.0312 C 469.78551,-1319.9761 475.86178,-1323.6539 479.9375,-1324.0312 z M 266.03125,-1323.25 C 266.06455,-1323.2545 266.09185,-1323.246 266.125,-1323.25 C 266.13701,-1323.2506 266.17617,-1323.2507 266.1875,-1323.25 C 266.19137,-1323.2499 266.21476,-1323.2499 266.21875,-1323.25 C 266.23077,-1323.2505 266.26994,-1323.2506 266.28125,-1323.25 C 266.28512,-1323.2499 266.30851,-1323.2499 266.3125,-1323.25 C 266.32454,-1323.2504 266.36371,-1323.2505 266.375,-1323.25 C 266.37887,-1323.2499 266.40225,-1323.2499 266.40625,-1323.25 C 266.4183,-1323.2504 266.45748,-1323.2504 266.46875,-1323.25 C 266.47261,-1323.2499 266.496,-1323.2499 266.5,-1323.25 C 266.63863,-1323.2587 266.77032,-1323.25 266.90625,-1323.25 C 268.14904,-1323.2499 268.78122,-1322.6118 268.78125,-1321.3125 C 268.78123,-1317.923 262.42923,-1314.118 249.71875,-1309.9375 C 256.34901,-1318.1989 261.80237,-1322.6812 266.03125,-1323.25 z"
+             d="m 600.625,-1391.1562 c -5.95832,0.301 -14.35188,5.2745 -25.1875,14.9062 -8.02176,7.2309 -17.34845,17.0349 -27.96875,29.4062 -5.64912,6.779 -11.28844,13.5649 -16.9375,20.3438 -2.59859,2.9941 -6.21148,6.0865 -10.84375,9.25 -4.06735,2.5986 -34.41191,25.3656 -39.3125,23.5312 -0.53337,-0.1997 -1.26798,-0.5781 -1.375,-1.0937 -0.23834,-1.1483 4.197,-6.4241 12.21875,-15.4063 4.97118,-5.4231 9.935,-10.858 14.90625,-16.2812 l -9.75,0 c -4.5193,5.2537 -7.46274,8.5878 -8.875,10 0.39541,-1.2993 0.56247,-2.4518 0.5625,-3.4688 -3e-5,-4.3497 -2.82569,-6.5312 -8.53125,-6.5312 -6.89191,0 -14.34728,2.7391 -22.3125,8.2188 -4.33149,2.9726 -7.43298,5.34 -9.59375,8.4687 10e-6,10e-5 -2.70434,0.8207 -4.625,1.7813 -1.92072,0.9603 -3.63101,1.4377 -5.15625,1.4374 -1.07335,0 -2.05892,-0.3593 -2.90625,-1.0937 8.24766,-6.6659 12.37496,-12.2618 12.375,-16.7813 -3e-5,-1.4687 -0.71877,-2.1874 -2.1875,-2.1874 -2.82458,10e-5 -5.96032,2.1444 -9.40625,6.4374 -3.33299,4.0675 -5.00002,7.5627 -5,10.5 -2e-5,2e-4 0.12376,0.5577 0.40625,1.6876 -11.01576,9.6599 -19.74753,14.5 -26.1875,14.5 -2.14665,0 -3.21874,-0.5145 -3.21875,-1.5313 10e-6,-1.1299 3.17303,-4.7428 9.5,-10.8437 6.32699,-6.1575 9.49998,-10.9976 9.5,-14.5 -10e-6,-4.0673 -1.62377,-6.0938 -4.84375,-6.0938 -2.37262,0 -6.9771,2.5779 -13.8125,7.7188 -5.81503,4.3374 -15.57478,13.2562 -21.6875,17.375 -7.68278,5.1972 -13.32205,7.7006 -16.9375,7.5312 L 362,-1294.8125 c 0.113,-1.1863 4.16577,-6.3056 12.1875,-15.3437 4.91471,-5.4798 9.83528,-10.9206 14.75,-16.3438 l -9.5625,0 c -5.93156,5.0842 -28.68563,25.426 -52.46875,32.625 -0.003,-10e-5 -0.0285,0 -0.0312,0 -0.007,0 -0.024,-9e-4 -0.0312,0 -0.0231,0 -0.0692,10e-4 -0.0937,0 -0.0162,0 -0.0475,0 -0.0625,0 -0.25291,-0.045 -0.55309,-0.2262 -0.75,-0.375 -0.0709,-0.056 -0.14178,-0.1228 -0.1875,-0.1875 -0.0137,-0.021 -0.0479,-0.068 -0.0625,-0.094 -0.0102,-0.025 -0.0259,-0.068 -0.0312,-0.094 1.1e-4,0 -5e-5,-0.028 0,-0.031 -2.7e-4,0 9e-5,-0.027 0,-0.031 10e-5,0 -2.9e-4,-0.026 0,-0.031 0.11886,-1.3111 6.11893,-8.3387 17,-20.5937 6.77891,-7.5132 13.5648,-15.0179 20.34375,-22.5313 7.66156,0.1978 12.06535,-0.09 13.15625,-0.8437 0.005,-0.01 0.0259,-0.026 0.0312,-0.031 0.0286,-0.026 0.0701,-0.067 0.0937,-0.094 0.003,0 0.028,-0.028 0.0312,-0.031 0.0301,-0.041 0.0768,-0.1117 0.0937,-0.1562 -10e-6,0 1.9e-4,-0.028 0,-0.031 l -1.125,-1.1876 -10.65625,0 14.90625,-16.5312 -9.90625,0 -14.75,16.5312 c -4.01396,-0.1416 -6.52566,0.1253 -7.5,0.8126 -0.10498,0.077 -0.20936,0.1857 -0.28125,0.2812 -0.0339,0.048 -0.0712,0.1095 -0.0937,0.1562 l 1.4375,1.125 4.40625,0 c -7.23085,8.0784 -28.18662,24.3812 -35.03125,28.5626 -6.79906,4.1534 -9.98436,4.8857 -12.1875,5.2812 2.03366,-3.333 3.06249,-6.989 3.0625,-11 -10e-6,-1.0168 -0.16106,-2.5228 -0.5,-4.5 -0.28246,-1.9772 -0.43751,-3.4832 -0.4375,-4.5 -10e-6,-1.5253 0.0805,-2.7582 0.25,-3.7188 3.50243,-2.8244 6.15502,-4.9314 7.90625,-6.3437 l -1.2813,-1.4383 c -0.003,10e-5 -0.0246,0 -0.0312,0 -0.003,-2e-4 -0.0285,0 -0.0312,0 -1.22688,0.4067 -7.82546,4.867 -19.78125,13.375 -10.91202,7.7653 -23.07076,16.4159 -30.75,21.5 -8.13471,5.4231 -14.88335,8.125 -20.25,8.125 -1.42992,0 -2.46833,-0.3306 -3.09375,-0.9688 -0.46922,-0.4943 -0.71875,-1.1889 -0.71875,-2.0624 1e-5,-4.0674 2.70189,-7.5192 8.125,-10.3438 5.02771,-2.2031 10.06604,-4.3845 15.09375,-6.5312 5.42312,-2.5987 8.12499,-5.5793 8.125,-8.9688 -10e-6,-2.9375 -1.78482,-4.4062 -5.34375,-4.4062 -6.21401,0 -13.00593,2.9431 -20.40625,8.875 -7.73925,6.2139 -11.62496,12.3677 -11.625,18.4687 3e-5,5.7056 3.72469,8.5625 11.125,8.5625 5.87507,0 16.51546,-5.5586 31.9375,-16.6875 0,0 25.61056,-17.7692 27.53125,-19.125 -7.00488,22.088 -15.34604,33.1251 -25.0625,33.125 -1.65102,0 -2.79395,-0.3633 -3.375,-1.0937 -0.0392,-0.051 -0.0909,-0.1329 -0.125,-0.1876 -0.18308,-0.3026 -0.28337,-0.6549 -0.3125,-1.0624 4.18035,0.1129 6.25001,-1.6284 6.25,-5.1876 1e-5,-2.0901 -1.19587,-3.125 -3.625,-3.125 -3.72839,1e-4 -5.59372,2.2247 -5.59375,6.6876 2e-5,4.2932 2.70187,6.4377 8.125,6.4374 6.77893,0 14.3641,-3.7306 22.78125,-11.1874 1.92069,-0.113 7.43056,-1.8252 11.3125,-3.7813 3.93186,-1.9813 16.21387,-10.4086 21.75,-14.25 -3.44595,3.446 -6.8978,6.8978 -10.34375,10.3437 -3.89786,4.5193 -5.84373,8.8017 -5.84375,12.8126 2e-5,3.5588 1.74779,5.3052 5.25,5.3437 11.23201,0.125 37.90549,-20.5574 40.15625,-22.2187 -3.89787,4.8583 -5.92427,7.3988 -6.09375,7.625 -2.20313,3.22 -3.3125,6.2382 -3.3125,9.0624 1e-5,3.672 1.74156,5.5314 5.1875,5.5313 2.76807,0 8.64294,-2.3797 17.625,-7.125 8.30152,-4.3268 18.00607,-13.323 22.78125,-17.875 6.04454,-5.762 10.3329,-8.613 12.875,-8.5 l 1.1875,0.875 c 3.8e-4,0.011 -10e-6,0.051 0,0.062 -0.002,0 -0.0242,0.024 -0.0312,0.031 -0.37172,0.832 -3.50081,4.2378 -9.375,10.2188 -6.214,6.327 -9.31248,11.2476 -9.3125,14.75 10e-6,4.8583 2.69585,7.2815 8.0625,7.2812 6.21401,0 15.38566,-4.9637 27.53125,-14.9062 1.41225,1.2993 2.9615,1.9688 4.65625,1.9688 2.70944,0 5.45731,-0.8337 8.25,-2.4376 -1.10458,2.2633 -1.625,4.5637 -1.625,6.9063 2e-5,5.8751 2.98073,8.8125 8.96875,8.8125 5.76209,0 12.82682,-3.2967 21.1875,-9.9062 -0.50842,1.4123 -0.75,2.881 -0.75,4.4062 -1e-5,3.6155 1.67303,5.4375 5.0625,5.4375 10.11059,0 35.97718,-20.524 38.40625,-22.2187 -3.84137,4.7453 -5.90503,7.286 -6.1875,7.625 -2.20314,3.22 -3.31249,6.2379 -3.3125,9.0624 2e-5,3.672 1.78481,5.5314 5.34375,5.5313 3.27649,0 9.23187,-2.256 17.875,-6.7187 7.40754,-4.4699 11.50601,-7.8449 14.34375,-10.375 L 544,-1309.375 c -0.005,0 -0.0248,0 -0.0312,0 -0.50984,0.2448 -4.56438,2.9961 -12.15625,8.2188 -7.28734,5.0276 -13.19428,6.6274 -17.3125,7.2812 -0.86863,0.1379 -1.68286,-0.1505 -1.4375,-0.9375 0.4599,-1.4752 1.3101,-2.4411 1.875,-3.0625 5.36665,-6.4964 10.76435,-12.935 16.1875,-19.375 6.55294,-7.8522 12.31001,-13.9999 17.28125,-18.4062 2.20312,-1.8643 8.98905,-6.1153 20.34375,-12.7813 11.75007,-6.8918 20.32678,-12.6057 25.75,-17.125 8.41708,-7.0048 12.6249,-13.4373 12.625,-19.3125 -8e-5,-1.6381 -0.59502,-3.1009 -1.78125,-4.3438 -1.1299,-1.2991 -2.51808,-1.9374 -4.15625,-1.9374 -0.18713,0 -0.3703,-0.01 -0.5625,0 z m -0.625,2.2187 c 0.23304,-0.017 0.46109,0 0.6875,0 2.82447,10e-5 4.24994,1.3511 4.25,4.0625 -8e-5,5.9882 -7.61646,14.4098 -22.8125,25.3125 -3.78495,2.7116 -14.34482,9.4603 -31.6875,20.25 11.80658,-15.648 19.42899,-25.4146 22.875,-29.3125 11.39149,-13.0811 20.29184,-19.8525 26.6875,-20.3125 z m -120.0625,64.9063 c 0.0321,0 0.0619,0 0.0937,0 0.20046,-0.016 0.40309,0 0.59375,0 3.27646,-1e-4 4.90622,1.4316 4.90625,4.3124 -2e-5,4.8583 -4.28837,10.578 -12.875,17.1876 -8.30418,6.327 -15.00955,9.4999 -20.09375,9.5 -1.29046,0 -2.23885,-0.3011 -2.84375,-0.875 -0.0161,-0.016 -0.0469,-0.046 -0.0625,-0.063 -0.46945,-0.5029 -0.71874,-1.2314 -0.71875,-2.125 2e-5,-3.9543 4.25111,-9.5937 12.78125,-16.9374 8.06676,-6.9449 14.14303,-10.6227 18.21875,-11 z m -213.90625,0.7812 c 0.0333,0 0.0606,0 0.0937,0 0.012,-6e-4 0.0512,-7e-4 0.0625,0 0.004,10e-5 0.0273,10e-5 0.0312,0 0.012,-5e-4 0.0512,-6e-4 0.0625,0 0.004,10e-5 0.0273,10e-5 0.0312,0 0.012,-4e-4 0.0512,-5e-4 0.0625,0 0.004,10e-5 0.0272,10e-5 0.0312,0 0.012,-4e-4 0.0512,-4e-4 0.0625,0 0.004,10e-5 0.0272,10e-5 0.0312,0 0.13863,-0.01 0.27032,0 0.40625,0 1.24279,10e-5 1.87497,0.6382 1.875,1.9375 -2e-5,3.3895 -6.35202,7.1945 -19.0625,11.375 6.63026,-8.2614 12.08362,-12.7437 16.3125,-13.3125 z"
              id="path16577"
-             style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Exmouth" />
+             style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Exmouth"
+             inkscape:connector-curvature="0" />
           <path
-             d="M 406.81523,-1346.1607 C 406.02433,-1344.1834 404.18837,-1342.2627 401.30736,-1340.3986 C 399.21717,-1341.8108 397.55068,-1343.6185 396.3079,-1345.8217 C 397.38121,-1348.1943 399.10418,-1350.0302 401.47683,-1351.3296 C 403.22802,-1350.4822 405.00749,-1348.7592 406.81523,-1346.1607"
+             d="m 406.81523,-1346.1607 c -0.7909,1.9773 -2.62686,3.898 -5.50787,5.7621 -2.09019,-1.4122 -3.75668,-3.2199 -4.99946,-5.4231 1.07331,-2.3726 2.79628,-4.2085 5.16893,-5.5079 1.75119,0.8474 3.53066,2.5704 5.3384,5.1689"
              id="path16579"
-             style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Exmouth" />
+             style="font-size:173.54040527px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Exmouth"
+             inkscape:connector-curvature="0" />
         </g>
       </g>
       <text
@@ -88872,84 +89248,101 @@
          transform="matrix(0.9283218,0.3717759,-1.4068753,0.5137849,0,0)"
          id="text16585"
          xml:space="preserve"
-         style="font-size:1.71082616px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Nimbus Mono L"
+         style="font-size:1.71082616px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Nimbus Mono L"
          sodipodi:linespacing="125%"><tspan
            x="310.24417"
            y="957.45349"
            id="tspan16587">Master</tspan></text>
     </g>
     <g
-       transform="matrix(7.1599763e-2,0,0,7.1599763e-2,-1054.8048,591.12577)"
+       transform="matrix(0.07159976,0,0,0.07159976,-1054.8048,591.12577)"
        id="g16611">
       <path
-         d="M 144.80549,88.557517 C 144.80549,127.69251 113.04391,159.45419 73.909089,159.45419 C 34.773922,159.45419 3.0123414,127.69251 3.0123414,88.557517 C 3.0123414,49.42256 34.773922,17.660874 73.909089,17.660874 C 113.04391,17.660874 144.80549,49.42256 144.80549,88.557517 z"
+         d="m 144.80549,88.557517 c 0,39.134993 -31.76158,70.896673 -70.896401,70.896673 -39.135167,0 -70.8967476,-31.76168 -70.8967476,-70.896673 0,-39.134957 31.7615806,-70.896643 70.8967476,-70.896643 39.134821,0 70.896401,31.761686 70.896401,70.896643 z"
          id="path16613"
-         style="fill:#373737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.61199999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+         style="fill:#373737;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.61199999;marker:none;visibility:visible;display:inline;overflow:visible"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 202.60774,194.21232 C 206.53396,198.1377 206.53396,204.50243 202.60774,208.42864 L 193.39155,217.64481 C 189.46533,221.57186 183.1005,221.57018 179.17498,217.64481 L 28.710589,67.179433 C 24.785075,63.25322 24.785075,56.888486 28.710589,52.963112 L 37.927485,43.746112 C 41.852999,39.820703 48.218536,39.819899 52.14405,43.746112 L 202.60774,194.21232 z"
+         d="m 202.60774,194.21232 c 3.92622,3.92538 3.92622,10.29011 0,14.21632 l -9.21619,9.21617 c -3.92622,3.92705 -10.29105,3.92537 -14.21657,0 L 28.710589,67.179433 c -3.925514,-3.926213 -3.925514,-10.290947 0,-14.216321 l 9.216896,-9.217 c 3.925514,-3.925409 10.291051,-3.926213 14.216565,0 L 202.60774,194.21232 z"
          id="path16615"
-         style="fill:#373737;fill-opacity:1;stroke:none" />
+         style="fill:#373737;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 199.13799,197.60713 C 201.91414,200.38255 201.91414,204.88271 199.13799,207.65872 L 192.6217,214.17498 C 189.84589,216.95159 185.3457,216.9504 182.57024,214.17498 L 76.185068,107.78914 C 73.409612,105.01316 73.409612,100.513 76.185068,97.737581 L 82.701708,91.220731 C 85.477165,88.445309 89.978058,88.444715 92.753514,91.220731 L 199.13799,197.60713 z"
+         d="m 199.13799,197.60713 c 2.77615,2.77542 2.77615,7.27558 0,10.05159 l -6.51629,6.51626 c -2.77581,2.77661 -7.276,2.77542 -10.05146,0 L 76.185068,107.78914 c -2.775456,-2.77598 -2.775456,-7.27614 0,-10.051559 l 6.51664,-6.51685 c 2.775457,-2.775422 7.27635,-2.776016 10.051806,0 L 199.13799,197.60713 z"
          id="path16617"
-         style="fill:#483737;fill-opacity:1;stroke:none" />
+         style="fill:#483737;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 122.71901,137.13232 C 96.07357,163.77768 51.576017,163.78789 24.921487,137.15278 C -1.7256976,110.50332 -1.7256976,66.003808 24.921487,39.354384 C 51.570071,12.70699 96.070422,12.70699 122.71901,39.354384 C 149.36934,65.987473 149.36934,110.49821 122.71901,137.13232"
+         d="m 122.71901,137.13232 c -26.64544,26.64536 -71.142993,26.65557 -97.797523,0.0205 -26.6471846,-26.64946 -26.6471846,-71.148972 0,-97.798396 26.648584,-26.647394 71.148935,-26.647394 97.797523,0 26.65033,26.633089 26.65033,71.143826 0,97.777936"
          id="path16619"
-         style="fill:#d3d3d3" />
+         style="fill:#d3d3d3"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 119.72914,131.79305 C 96.539469,154.98447 58.641452,157.67301 32.468212,137.86093 C 5.2505454,117.25588 -1.9740372,78.180456 16.213163,49.255298 C -15.910434,97.006413 24.656009,162.35931 81.618108,155.06621 C 137.97055,147.85076 159.82233,77.723686 120.43603,38.336577 C 145.41374,64.115378 145.10524,106.4005 119.72914,131.79305"
+         d="M 119.72914,131.79305 C 96.539469,154.98447 58.641452,157.67301 32.468212,137.86093 5.2505454,117.25588 -1.9740372,78.180456 16.213163,49.255298 -15.910434,97.006413 24.656009,162.35931 81.618108,155.06621 137.97055,147.85076 159.82233,77.723686 120.43603,38.336577 c 24.97771,25.778801 24.66921,68.063923 -0.70689,93.456473"
          id="path16621"
-         style="fill:#aaaaaa" />
+         style="fill:#aaaaaa"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 35.564411,48.442913 C 54.720486,29.286873 86.052194,27.495541 107.43703,44.037614 C 129.36541,61.002773 135.32486,92.743158 120.53921,116.31268 C 146.97723,76.924557 112.85188,23.262925 66.150052,29.558683 C 21.626965,35.557098 1.2907536,93.929556 35.237373,124.97001 C 14.812318,103.89896 14.724525,69.267689 35.564411,48.442913"
+         d="M 35.564411,48.442913 C 54.720486,29.286873 86.052194,27.495541 107.43703,44.037614 129.36541,61.002773 135.32486,92.743158 120.53921,116.31268 146.97723,76.924557 112.85188,23.262925 66.150052,29.558683 21.626965,35.557098 1.2907536,93.929556 35.237373,124.97001 14.812318,103.89896 14.724525,69.267689 35.564411,48.442913"
          id="path16623"
-         style="opacity:0.32790701;fill:#7c7c7c" />
+         style="opacity:0.32790701;fill:#7c7c7c"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 6.4268355,77.270973 C 12.631477,38.853648 51.158387,13.082017 89.041013,21.675965 C 122.98658,29.373722 145.9461,62.537617 141.54279,96.976788 C 136.88206,133.41579 102.86723,160.1061 66.344176,156.11364 C 27.956476,151.91782 0.27291119,115.34192 6.4268355,77.270973 M 73.8143,18.290503 C 36.041503,18.290503 4.4544597,49.455578 3.868938,87.153524 C 3.2711742,125.67508 35.201696,158.20645 73.812201,158.20645 C 111.5836,158.20645 143.18288,127.04336 143.77365,89.343389 C 144.37771,50.807525 112.4318,18.290503 73.8143,18.290503"
+         d="M 6.4268355,77.270973 C 12.631477,38.853648 51.158387,13.082017 89.041013,21.675965 122.98658,29.373722 145.9461,62.537617 141.54279,96.976788 136.88206,133.41579 102.86723,160.1061 66.344176,156.11364 27.956476,151.91782 0.27291119,115.34192 6.4268355,77.270973 M 73.8143,18.290503 c -37.772797,0 -69.3598403,31.165075 -69.945362,68.863021 -0.5977638,38.521556 31.332758,71.052926 69.943263,71.052926 37.771399,0 69.370679,-31.16309 69.961449,-68.863061 C 144.37771,50.807525 112.4318,18.290503 73.8143,18.290503"
          id="path16625"
-         style="fill:url(#linearGradient16647)" />
+         style="fill:url(#linearGradient16647)"
+         inkscape:connector-curvature="0" />
       <path
-         style="opacity:1;fill:url(#linearGradient16669);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
-         d="M 85.93064,79.962195 L 23.081268,104.84007 C 30.368583,125.38637 51.262926,140.6293 76.328652,140.6293 C 104.02106,140.6293 126.62882,122.1925 131.32185,98.293262 L 85.93064,79.962195 z"
-         id="rect16657" />
+         style="fill:url(#linearGradient16669);fill-opacity:1;fill-rule:nonzero;stroke:#3d993d;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
+         d="M 85.93064,79.962195 23.081268,104.84007 c 7.287315,20.5463 28.181658,35.78923 53.247384,35.78923 27.692408,0 50.300168,-18.4368 54.993198,-42.336038 L 85.93064,79.962195 z"
+         id="rect16657"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 127.15904,88.252024 C 127.15904,117.32332 102.88857,141.59078 73.819197,141.59078 C 44.750177,141.59078 20.481456,117.32129 20.481456,88.252024 C 20.481456,59.178702 44.740733,34.897983 73.819197,34.897983 C 102.90081,34.896969 127.15904,59.176673 127.15904,88.252024"
+         d="m 127.15904,88.252024 c 0,29.071296 -24.27047,53.338756 -53.339843,53.338756 -29.06902,0 -53.337741,-24.26949 -53.337741,-53.338756 0,-29.073322 24.259277,-53.354041 53.337741,-53.354041 29.081613,-0.001 53.339843,24.27869 53.339843,53.354041"
          id="path16627"
-         style="opacity:0.32790701;fill:#ffffff" />
+         style="opacity:0.32790701;fill:#ffffff"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 73.819197,140.73953 C 45.584038,140.73953 21.921475,117.52157 21.337003,89.339297 C 20.735042,60.324247 44.737935,35.749193 73.820246,35.749193 C 102.06905,35.749193 125.73651,58.963101 126.31293,87.160694 C 126.90475,116.16861 102.89276,140.73953 73.819197,140.73953 M 73.83039,34.11421 C 43.875392,34.11421 19.08166,59.439284 19.708105,89.392462 C 20.377223,121.34236 49.544529,146.16264 81.142066,141.88403 C 108.49649,138.18283 129.01669,113.57405 127.9163,86.056038 C 126.77289,57.399646 102.53599,34.11421 73.83039,34.11421"
+         d="m 73.819197,140.73953 c -28.235159,0 -51.897722,-23.21796 -52.482194,-51.400233 -0.601961,-29.01505 23.400932,-53.590104 52.483243,-53.590104 28.248804,0 51.916264,23.213908 52.492684,51.411501 0.59182,29.007916 -23.42017,53.578836 -52.493733,53.578836 M 73.83039,34.11421 c -29.954998,0 -54.74873,25.325074 -54.122285,55.278252 0.669118,31.949898 29.836424,56.770178 61.433961,52.491568 C 108.49649,138.18283 129.01669,113.57405 127.9163,86.056038 126.77289,57.399646 102.53599,34.11421 73.83039,34.11421"
          id="path16629"
-         style="opacity:0.32790701;fill:url(#linearGradient16649)" />
+         style="opacity:0.32790701;fill:url(#linearGradient16649)"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 28.153749,44.866368 C 50.655412,22.362642 87.40407,19.643463 112.92218,38.70342 C 139.70648,58.707626 146.88734,97.037089 129.0772,125.35014 C 160.21058,79.127714 121.42939,15.757264 66.209513,22.062221 C 12.268761,28.223106 -13.149317,98.215302 27.461896,135.99293 C 3.0945383,110.85893 3.3949942,69.623269 28.153749,44.866368"
+         d="M 28.153749,44.866368 C 50.655412,22.362642 87.40407,19.643463 112.92218,38.70342 139.70648,58.707626 146.88734,97.037089 129.0772,125.35014 160.21058,79.127714 121.42939,15.757264 66.209513,22.062221 12.268761,28.223106 -13.149317,98.215302 27.461896,135.99293 3.0945383,110.85893 3.3949942,69.623269 28.153749,44.866368"
          id="path16631"
-         style="fill:#e5e5e5" />
+         style="fill:#e5e5e5"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 134.07092,88.35101 C 134.07092,121.65058 107.07571,148.64572 73.776175,148.64572 C 40.476638,148.64572 13.481428,121.65058 13.481428,88.35101 C 13.481428,55.051473 40.476638,28.056298 73.776175,28.056298 C 107.07571,28.056298 134.07092,55.051473 134.07092,88.35101 z"
+         d="m 134.07092,88.35101 c 0,33.29957 -26.99521,60.29471 -60.294745,60.29471 -33.299537,0 -60.294747,-26.99514 -60.294747,-60.29471 0,-33.299537 26.99521,-60.294712 60.294747,-60.294712 33.299535,0 60.294745,26.995175 60.294745,60.294712 z"
          id="path16633"
-         style="opacity:0.32790701;fill:url(#linearGradient16651);stroke:none" />
+         style="opacity:0.32790701;fill:url(#linearGradient16651);stroke:none"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 113.21565,127.99475 C 93.854253,147.36845 62.271058,150.60166 39.848094,134.53678 C 15.699345,117.24158 9.6569986,83.200902 25.45804,58.257992 C -2.0681264,98.926533 31.780556,154.8455 80.752768,148.06741 C 128.1391,141.51005 148.27,81.978757 114.42446,48.287578 C 135.79601,70.367204 134.79146,106.43422 113.21565,127.99475"
+         d="M 113.21565,127.99475 C 93.854253,147.36845 62.271058,150.60166 39.848094,134.53678 15.699345,117.24158 9.6569986,83.200902 25.45804,58.257992 -2.0681264,98.926533 31.780556,154.8455 80.752768,148.06741 128.1391,141.51005 148.27,81.978757 114.42446,48.287578 c 21.37155,22.079626 20.367,58.146642 -1.20881,79.707172"
          id="path16635"
-         style="opacity:0.32790701;fill:#e5e5e5" />
+         style="opacity:0.32790701;fill:#e5e5e5"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 25.527645,85.282478 C 25.527645,87.117777 28.546195,80.212958 28.993906,79.384238 C 33.015958,71.950106 38.624934,65.430528 45.413348,60.384513 C 55.11608,53.174201 67.398745,48.453126 79.542899,48.190516 C 83.571946,48.104681 87.597146,48.547145 91.516014,49.480098 C 93.141764,49.867402 102.27751,53.859863 102.27751,50.948554 C 102.27751,46.027198 89.26172,43.500116 86.075629,42.817497 C 75.87237,40.632738 64.630633,40.486603 54.776799,44.264477 C 39.1419,50.2588 25.527645,68.122144 25.527645,85.282478"
+         d="m 25.527645,85.282478 c 0,1.835299 3.01855,-5.06952 3.466261,-5.89824 4.022052,-7.434132 9.631028,-13.95371 16.419442,-18.999725 9.702732,-7.210312 21.985397,-11.931387 34.129551,-12.193997 4.029047,-0.08584 8.054247,0.356629 11.973115,1.289582 1.62575,0.387304 10.761496,4.379765 10.761496,1.468456 0,-4.921356 -13.01579,-7.448438 -16.201881,-8.131057 C 75.87237,40.632738 64.630633,40.486603 54.776799,44.264477 39.1419,50.2588 25.527645,68.122144 25.527645,85.282478"
          id="path16637"
-         style="opacity:0.32790701;fill:#e5e5e5" />
+         style="opacity:0.32790701;fill:#e5e5e5"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 122.26955,92.346689 C 122.26955,90.513453 119.2489,97.416209 118.80014,98.244928 C 114.77599,105.68007 109.16281,112.20067 102.3716,117.24567 C 92.666771,124.45192 80.379559,129.18828 68.234705,129.45296 C 64.205658,129.54082 60.180458,129.09836 56.26159,128.16233 C 54.643885,127.7781 45.51863,123.79791 45.51863,126.6796 C 45.51863,131.60092 58.529175,134.13517 61.719464,134.8188 C 71.916426,137.00356 83.157114,137.15176 93.005002,133.36777 C 108.62941,127.36627 122.26955,109.50702 122.26955,92.346689"
+         d="m 122.26955,92.346689 c 0,-1.833236 -3.02065,5.06952 -3.46941,5.898239 -4.02415,7.435142 -9.63733,13.955742 -16.42854,19.000742 -9.704829,7.20625 -21.992041,11.94261 -34.136895,12.20729 -4.029047,0.0879 -8.054247,-0.3546 -11.973115,-1.29063 -1.617705,-0.38423 -10.74296,-4.36442 -10.74296,-1.48273 0,4.92132 13.010545,7.45557 16.200834,8.1392 10.196962,2.18476 21.43765,2.33296 31.285538,-1.45103 15.624408,-6.0015 29.264548,-23.86075 29.264548,-41.021081"
          id="path16639"
-         style="opacity:0.32790701;fill:#efefef" />
+         style="opacity:0.32790701;fill:#efefef"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 75.557224,82.95634 C 103.00539,65.59034 125.55078,82.012265 125.55078,82.012265 C 124.53153,54.537131 101.93578,32.576428 74.210944,32.576428 C 45.836925,32.576428 22.835085,55.577533 22.835085,83.952357 C 22.835785,83.951517 48.108707,100.32234 75.557224,82.95634 z"
+         d="m 75.557224,82.95634 c 27.448166,-17.366 49.993556,-0.944075 49.993556,-0.944075 -1.01925,-27.475134 -23.615,-49.435837 -51.339836,-49.435837 -28.374019,0 -51.375859,23.001105 -51.375859,51.375929 7e-4,-8.4e-4 25.273622,16.369983 52.722139,-0.996017 z"
          id="path16641"
-         style="opacity:0.47906979;fill:url(#linearGradient16653);stroke:none" />
+         style="opacity:0.47906979;fill:url(#linearGradient16653);stroke:none"
+         inkscape:connector-curvature="0" />
       <path
-         d="M 40.481863,36.421127 C 40.481863,41.058603 33.477476,44.818021 24.837126,44.818021 C 16.196776,44.818021 9.1923885,41.058603 9.1923885,36.421127 C 9.1923885,31.783651 16.196776,28.024233 24.837126,28.024233 C 33.477476,28.024233 40.481863,31.783651 40.481863,36.421127 L 40.481863,36.421127 z"
+         d="m 40.481863,36.421127 c 0,4.637476 -7.004387,8.396894 -15.644737,8.396894 -8.64035,0 -15.6447375,-3.759418 -15.6447375,-8.396894 0,-4.637476 7.0043875,-8.396894 15.6447375,-8.396894 8.64035,0 15.644737,3.759418 15.644737,8.396894 l 0,0 z"
          transform="matrix(5.8942914,0,0,3.3456793,14.375906,106.05328)"
          id="path16643"
-         style="opacity:0.20454544;fill:url(#radialGradient16655);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
+         style="opacity:0.20454544;fill:url(#radialGradient16655);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
+         inkscape:connector-curvature="0" />
     </g>
   </g>
   <g
@@ -89899,7 +90292,7 @@
      y="0"
      xlink:href="#g17987"
      id="use18031"
-     transform="matrix(0.53388959,0,0,0.53388959,278.35752,221.2112)"
+     transform="matrix(0.53388959,0,0,0.53388959,296.50976,221.2112)"
      width="744.09448"
      height="1052.3622" />
   <use
@@ -89907,7 +90300,7 @@
      y="0"
      xlink:href="#HMIEditor"
      id="use18033"
-     transform="matrix(0.53388959,0,0,0.53388959,278.35752,221.2112)"
+     transform="matrix(0.53388959,0,0,0.53388959,296.50976,221.2112)"
      width="744.09448"
      height="1052.3622" />
   <use
@@ -89915,7 +90308,7 @@
      y="0"
      xlink:href="#g17590"
      id="use18035"
-     transform="matrix(0.53388959,0,0,0.53388959,278.35752,221.2112)"
+     transform="matrix(0.53388959,0,0,0.53388959,296.50976,221.2112)"
      width="744.09448"
      height="1052.3622" />
   <use
@@ -89923,7 +90316,7 @@
      y="0"
      xlink:href="#g17603"
      id="use18037"
-     transform="matrix(0.53388959,0,0,0.53388959,278.35752,221.2112)"
+     transform="matrix(0.53388959,0,0,0.53388959,296.50976,221.2112)"
      width="744.09448"
      height="1052.3622" />
   <use
@@ -89931,7 +90324,7 @@
      y="0"
      xlink:href="#path17627"
      id="use18039"
-     transform="matrix(0.53388959,0,0,0.53388959,278.35752,221.2112)"
+     transform="matrix(0.53388959,0,0,0.53388959,296.50976,221.2112)"
      width="744.09448"
      height="1052.3622" />
   <use
@@ -89939,7 +90332,7 @@
      y="0"
      xlink:href="#path17629"
      id="use18041"
-     transform="matrix(0.53388959,0,0,0.53388959,278.35752,221.2112)"
+     transform="matrix(0.53388959,0,0,0.53388959,296.50976,221.2112)"
      width="744.09448"
      height="1052.3622" />
   <use
@@ -89947,7 +90340,94 @@
      y="0"
      xlink:href="#g17968"
      id="use18043"
-     transform="matrix(0.53388959,0,0,0.53388959,278.35752,221.2112)"
+     transform="matrix(0.53388959,0,0,0.53388959,296.50976,221.2112)"
      width="744.09448"
      height="1052.3622" />
+  <g
+     transform="translate(1334.3348,-308.68253)"
+     id="g16313-4">
+    <rect
+       width="24"
+       height="24"
+       x="-1060.788"
+       y="501.19318"
+       id="ImportFile"
+       style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <g
+       id="g17936"
+       transform="translate(-1334.2792,308.62148)">
+      <rect
+         x="277.24219"
+         y="214.31532"
+         width="17"
+         height="2"
+         style="opacity:0.15;fill:url(#linearGradient17971)"
+         id="rect2879" />
+      <path
+         d="m 277.24218,214.31533 v 1.9999 c -0.6205,0.004 -1.5,-0.448 -1.5,-1 0,-0.552 0.6924,-1 1.5,-1 z"
+         style="opacity:0.15;fill:url(#radialGradient17973)"
+         id="path2881"
+         inkscape:connector-curvature="0" />
+      <path
+         d="m 294.24218,214.31533 v 1.9999 c 0.62047,0.004 1.5,-0.44807 1.5,-1.0001 0,-0.552 -0.6924,-0.99982 -1.5,-0.99982 z"
+         style="opacity:0.15;fill:url(#radialGradient17975)"
+         id="path2883"
+         inkscape:connector-curvature="0" />
+      <path
+         d="m 277.24218,192.81529 h 11.5 c 0.683,0.2373 4.541,3.1281 5.5,5 0,5.7292 4e-5,11.271 4e-5,17 h -17 v -22 z"
+         style="fill:url(#linearGradient17977);stroke:url(#linearGradient17979);stroke-width:0.99992001;stroke-linejoin:round"
+         id="path4160"
+         inkscape:connector-curvature="0" />
+      <path
+         d="m 277.91238,214.31533 c -0.0938,0 -0.1702,-0.086 -0.1702,-0.191 v -20.598 c 0,-0.105 0.0764,-0.1905 0.1702,-0.1905 3.5215,0.0527 7.4238,-0.0788 10.941,0.0131 l 4.839,4.3272 0.05,16.448 c 0,0.105 -0.076,0.191 -0.17,0.191 h -15.66 z"
+         style="fill:url(#radialGradient17981)"
+         id="path4191"
+         inkscape:connector-curvature="0" />
+      <path
+         d="m 293.24218,197.99233 v 15.823 h -15 v -20 h 10.394"
+         style="opacity:0.6;fill:none;stroke:url(#linearGradient17983)"
+         id="path2435"
+         inkscape:connector-curvature="0" />
+      <path
+         d="m 287.81718,193.31533 c 1.1563,0.32877 0.33906,4.6144 0.33906,4.6144 0,0 4.5154,-0.42774 5.6077,1.195 1.489,2.2122 -0.068,-0.6352 -0.173,-0.8217 -0.756,-1.3401 -3.867,-4.5471 -5.046,-4.9412 -0.088,-0.0295 -0.283,-0.0465 -0.728,-0.0465 z"
+         style="opacity:0.2;fill-rule:evenodd"
+         id="path3370"
+         inkscape:connector-curvature="0" />
+      <path
+         d="m 287.74218,193.31533 c 1.5262,0 1,4 1,4 0,0 4.9921,-0.45326 4.9921,2 0,-0.59774 0.0557,-1.4784 -0.0641,-1.6559 -0.839,-1.243 -3.744,-3.8619 -4.798,-4.2976 -0.086,-0.0356 -0.686,-0.0465 -1.13,-0.0465 z"
+         style="fill:url(#linearGradient17985);fill-rule:evenodd"
+         id="path4474"
+         inkscape:connector-curvature="0" />
+    </g>
+    <g
+       transform="matrix(0.08604141,0,0,0.08604141,-1059.9338,502.14288)"
+       id="g74019-8">
+      <g
+         transform="matrix(5.0027792,0,0,5.0027792,-215.17835,-168.84627)"
+         id="g39828-7">
+        <circle
+           sodipodi:ry="34.144001"
+           sodipodi:rx="34.144001"
+           sodipodi:cy="110.081"
+           sodipodi:cx="100.287"
+           cx="100.287"
+           cy="110.081"
+           r="34.144001"
+           transform="matrix(0.3316761,0,0,0.3316761,48.927852,9.2318583)"
+           id="circle29-8"
+           style="fill:#84c225;fill-rule:evenodd;stroke:#5d9d35;stroke-width:2.82220006"
+           d="m 134.431,110.081 c 0,18.85721 -15.28679,34.144 -34.144,34.144 -18.857208,0 -34.143998,-15.28679 -34.143998,-34.144 0,-18.85721 15.28679,-34.144 34.143998,-34.144 18.85721,0 34.144,15.28679 34.144,34.144 z" />
+        <path
+           d="m 84.515333,38.943636 0,3.981494 3.981494,0 0,4.799639 -3.981494,0 0,3.981494 -4.782372,0 0,-3.981494 -3.981494,0 0,-4.799639 3.981494,0 0,-3.981494 4.782372,0"
+           id="text1332-4"
+           style="font-size:12px;font-style:normal;font-weight:normal;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
+           inkscape:connector-curvature="0" />
+        <path
+           d="m 82.190677,35.644078 c 5.025924,0 9.194867,3.673581 9.969229,8.481465 -6.921917,-5.82623 -17.958314,0.09291 -16.467662,9.346307 -2.201037,-1.852678 -3.600446,-4.62745 -3.600446,-7.728889 0,-5.576508 4.522377,-10.098883 10.098879,-10.098883 z"
+           id="path33-9"
+           style="fill:url(#linearGradient16528-1);fill-opacity:1;fill-rule:evenodd"
+           inkscape:connector-curvature="0" />
+      </g>
+    </g>
+  </g>
 </svg>